diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..e69de29b diff --git a/arcgis/buffers_cost.html b/arcgis/buffers_cost.html new file mode 100644 index 00000000..80052c1a --- /dev/null +++ b/arcgis/buffers_cost.html @@ -0,0 +1,279 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Buffers, cost surfaces, least cost path

+

Resources: +ESRI virtual campus + +

+Include resulting maps into your report +(use your judgment to decide which results to include). Adjust the colors and symbology of displayed layers to match the cartographic standards (lakes are displayed in blue etc.) + + + +

+Create the workspace for the current assignment as the folder Buffers_cost
+

+To constrain analyses in a similar manner as g.region, +set the spatial extent using the options under Environments, for example:
+to constrain analyses results to the extents defined by intersection of input features:
+ +

+Start ArcMap.
+From the menu Geoprocessing -> Environments... -> Processing extent.
+Choose Intersection of Inputs from the drop down menu.
+Click 'OK'
+
+ +

+ + +To work on a subset, clip your data to a given spatial extent.
+Constrain the drawing of project layers to a user specified extent. + +

+Start -> Programs -> ArcMap
+Add ./ncrast.mdb/elev
+Add ./ncshape.mdb/streets_wake
+Dbl. Click the 'elev' layer in the TOC
+Go to -> Layer Properties -> Extent
+Write down the four numbers in the text fields labeled: 'Left', 'Right', 'Top', 'Bottom' 
+Click 'OK'
+Dbl. Click 'Layers' in the TOC
+Go to ->'Data Frame Properties' -> 'Data Frame' -> 'Clip Options' -> 'Clip to Shape' 
+Click 'Specify Shape'
+Select 'Custom Extent' 
+Uncheck the 'Degrees' check box
+Enter the four numbers you recorded earlier in their appropriate text fields
+Click 'OK'
+Click 'OK'
+
+ +

Find developed areas close to lakes

+Create the buffers: + +
+File -> Add Data -> Add Data...
+Select ./ncrast.mdb/lakes
+Select ./ncrast.mdb/landcl96
+Check out a Spatial Analyst Extension license (Menu -> Customize -> Extensions -> Spatial Analyst box needs to be checked)
+Open the ArcToolbox (you may already have it open)
+Select 'Spatial Analyst Tools->Distance->Euclidean Distance'
+Set 'Input raster' to 'lakes'
+Set Output distance raster' to '\Buffers_cost\lk_dist'
+Set 'Maximum distance' to '500'
+Leave the rest as defaults 
+Click 'OK'
+
+ +

+Select the locations that overlay developed areas: + +

+Select 'Spatial Analyst Tools->Map Algebra->Raster Calculator'
+Type in the expression: SetNull( "landcl96" > 2, "lk_dist")
+Set the Output raster to './Buffers_cost/dev_lakes
+Click 'OK'
+
+ +

Compute cost surface from accident based on speed limits

+ +
+File -> Add Data -> Add Data...
+Select ncshape.mdb/streets_wake
+Open the ArcToolbox (if not already open)
+Select 'Conversion Tools->To Raster->Polyline to Raster'
+Set 'Input Features' to 'streets_wake'
+Set 'Value field' to 'SPEED'
+Set 'Output Raster Dataset to './Buffers_cost/str_speed'
+Set Cellsize to 30
+Leave the others as defaults 
+Click 'OK'
+
+File -> Add Data -> Add Data...
+select ./ncshape.mdb/fire_pt
+
+ +

+Set the working directory: + +

+Select Geoprocessing -> Environments...
+Under 'Workspace' set the 'Current Workspace' to '.\Buffers_cost'
+Under 'Raster Analysis' set the 'Cell Size' to 'Same as layer str_speed'
+Under 'Raster Analysis' set the  'Mask' to '.\ncshape.mdb\boundary_wake'
+Click 'OK'
+
+ +

+Assign travel time per cell in hours, compute cost surface.
+Assign null values a speed of 5. + +

+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst Tools->Map Algebra->Raster Calculator'
+Type in the expression: Con(IsNull("str_speed"),5,"str_speed") 
+Set the Output raster to 'str_speed2'
+Click 'OK'
+
+ +

+Calculate the travel time and cost surface. +

+In ArcGIS cost is defined per map unit (meters in this case). +We create a cost raster where cost is time to cross one map unit. +Where does the 0.00062137 constant come from? + +

+Select 'Spatial Analyst Tools->Map Algebra->Raster Calculator' 
+Type in the expression: 0.00062137 / "str_speed2"
+Set the 'Output raster' to str_trv
+
+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst Tools->Distance->Cost Distance'
+Set 'Input raster or feature source data' to 'fire_pt'
+Set 'Input Cost raster' to 'str_trv'    
+Set 'Output distance raster' to './Buffers_cost/str_cost'
+Set 'Output backlink raster (optional)' to './Buffers_cost/backlink'
+Leave the rest as defaults
+Click 'OK'
+
+ +

Find cost from selected firestations

+ +
+File -> Add Data -> Add Data...
+Select ./ncshape.mdb/firestations
+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst Tools->Extraction->Sample'
+Set 'Input rasters' to 'str_cost'
+Set 'Input Location raster or point features' to 'firestations'
+Set 'Output table' to './Buffers_cost/station_costs'
+Leave everything else as defaults
+Click 'OK'
+
+ +

+Add the table of costs (NOTE: in Arc 10 this should be added automatically at the bottom of the TOC). +However, if the table does not get added: +

+
+File -> Add Data ->
+Select '.\Buffers_cost\station_costs'
+
+ +

+Open the station_costs table and sort on the field 'STR_COST': + +

+right click 'station_costs' -> Open
+right click column named 'STR_COST' and choose 'Sort Ascending'
+Note the range of cost values.
+Close the table
+
+ + + + +

+Find shortest path from nearby firestations.
+Note: create the firestations as a shapefile if the below +does not work with geodatabase firestations. + +

+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst Tools->Distance->Cost Path'
+Set 'Input raster or feature destination data' to 'firestations'
+Set 'Destination field' to 'OBJECTID'
+Set the 'Input cost distance raster' to 'str_cost'
+Set the 'Input cost backlink raster' to 'backlink'
+Set the 'Output raster' to '.\Buffers_cost\cost_path'
+Set the 'Path type' to 'BEST_SINGLE'   
+Click 'OK'
+
+

+Note: to see the resulting least cost (drive-time) path +you may have to turn off some or most of the layers in your TOC. + +

+ + + +
+
+ + + diff --git a/arcgis/data_acquisition.html b/arcgis/data_acquisition.html new file mode 100644 index 00000000..adec1434 --- /dev/null +++ b/arcgis/data_acquisition.html @@ -0,0 +1,257 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Data Introduction

+

Resources: +ESRI virtual campus + +

+Instructions: +LMC, RMC mean left and right mouse click. + +The geodatabases: ncshape.mdb, ncrast.mdb. If you don't already have these +geodatabases downloaded, you can find them on +Course logistics page. +

+You can put the geodatabases in any suitable directory where you have permissions to write +and in these instructions we will refer to this directory C:\Users\myname\arcdata. +

+Move both geodatabases to the directory: C:\Users\myname\arcdata + +

Data management

+Start ArcMap: Start->Programs->ArcGIS->ArcMap 10. +Click the Cancel button to dismiss the Getting Started dialog. + +

+Adding data to ArcMap: +Add the Bridges feature class (located in ncshape.mdb) to your project. +Examine the descriptive attributes associated with the bridge features. + +

+RMC on the Bridges entry in the Table of Contents and select Open Attribute Table from
+the context menu.
+
  • How many attributes (data fields) are associated with the Bridges feature class?
  • +
  • How many bridges are shown in the Bridges feature class?
+ + +

+Create a new geodatabase to store data: + +

+Find the Catalog tab along the right side of the ArcMap map window and LMC to expand.
+Navigate in the catalog tree to C:\Users\myname\arcdata.
+Create a new folder called 'Assign1' in the arcdata folder.
+RMC on the newly minted Assign1 folder icon in the Catalog window and
+choose New -> File Geodatabase from the context menu.
+Name it 'Assign1'.
+
+ +

+Copy data from one geodatabase to another: + +

+Open ncshape.mdb geodatabase in the [Arc]catalog tree
+LMC on ncshape.mdb to open it.
+
+ +

+Copy a feature class from one geodatabase to another: + +

+Find and RMC bridges->Copy.
+Navigate to the Assign1 geodatabase; On the geodatabase icon: RMC -> Paste.
+Click 'OK' in the Data Transfer dialog.
+
+

+Note: you can also remove the data layer using the same menu + +

+Convert a feature class to a shape file: + +

+Open ncshape.mdb in the ArcCatalog window.
+RMC bridges->Export->To Shapefile (single).
+Set Output Location to C:\Users\myname\arcdata\Assign1 (your Assign1 folder).
+Set output Feature Class to 'bridges_shp'.
+Click 'OK'.
+
+ +

Data view and symbology

+

+Adding Raster Data into Data Frame: + +

+File->Data->Add Data...
+Navigate to the ncrast.mdb geodatabase and add the elev raster layer
+
+ +

+Turn the Bridges Layers Off: + +

+LMC the check boxes (to remove the existing checks) next to each
+of the three bridge entries in the TOC.
+
+ +

+Zoom to the elev raster layer: + +

+RMC on elev and select Zoom to Layer
+
+ +

+Change color scheme: + +

+RMC elev->Properties and select the 'Symbology' tab
+Change the Color Ramp (Color Ramp drop down menu) to one that
+represents elevation intuitively (it makes sense to you)
+
+ +

+Add hillshade data into the data frame: + +

+File->Data->Add Data...
+Add elev_sh from the ncrast.mdb geodatabase
+
+ +

+Change the transparency of the hillshade: + +

+RMC elev_sh->Properties
+Click on the 'Display' Tab
+Set Transparency to 70%
+Click 'OK'
+
+ +

+Display vector points and lines: + +

+File->Data->Add Data...
+Add streets_wake, roadsmajor, schools_wake from the ncshape.mdb geodatabase
+Hint: press and hold the control key to add multiple data layers
+
+ +

+Change the line style: + +

+RMC roadsmajor->Properties and select 'Symbology' tab
+Click on the button displaying the current symbol
+Change the color to red and the width to 1.6
+Click 'OK'
+Click 'OK'
+
+ +

+Change the point style: + +

+LMC directly on the symbol for schools_wake in the Table of Contents (shortcut to the
+symbol selector)
+Select 'School 1' It's about half way down in the symbol palette
+Change the size to 14
+Click 'OK'
+
+ +

+Trim the Vector Display to Match the Raster's Geographic Extent: + +

+RMC Layers at the top of the TOC
+Select Properties->Data Frame->Clip Options->Clip to shape
+LMC Specify Shape button
+LMC Custom Extent
+Uncheck the Degrees Check box
+Enter the following in the top, bottom, left, and right fields,
+respectively: 228500, 215000, 630000, 645000. (FYI: These coordinates define
+the geographic extent of the elev and elev_sh raster layers.)
+Click 'OK'
+Click 'OK'
+
+ +

+Your display should now clip the roads and schools data so that these only: +display in the are covered by the elev and hillshade rasters. + +

+Save the map for your report: + +

+LMC File->Export map  (Save the file to your Assign1 workspace as pdf or png)
+
+ +

+Exit ArcMap. You can choose to save your project, if you wish, however, it's not necessary. + +

+ + + +
+
+ + + diff --git a/arcgis/data_models.html b/arcgis/data_models.html new file mode 100644 index 00000000..c24c64c8 --- /dev/null +++ b/arcgis/data_models.html @@ -0,0 +1,289 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Data models

+

Resources: +ESRI virtual campus +

+Create the folder assign2 in your preferred workspace, +in the instructions below we are using C:\Users\myname\arcdata\assign2. +

+Include resulting maps into your report +(use your judgement to decide which results to include). +

Find all used tools in Toolbox Window or use Search window. + +

Convert Data from Raster to Raster: change resolution

+ +

+Compare resampling by nearest neighbor for discrete and continuous raster maps: + +

+File > Add Data > Add Data...
+select ncrast.mdb/elev_ned
+select ncrast.mdb/landcl96
+
+Select 'Data Management Tools->Raster->Raster Processing->Resample'
+Set 'Input Raster' to 'landcl96'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\landcl_10m'
+Set 'Output Cell Size' to 10
+Set 'Resampling Technique' to 'NEAREST'
+Click 'OK'
+
+Select 'Data Management Tools->Raster->Raster Processing->Resample'
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\ned_10m_nn'
+Set 'Output Cell Size' to 10
+Set 'Resampling Technique' to 'NEAREST'
+Click 'OK'
+
+ +

+Check the resampled elevation surface using the aspect map: + +

+Check out a Spatial Analysis Extension license: Customize Menu->Extensions
+
+Select 'Spatial Analyst Tools->Surface->Aspect'
+Set 'Input Surface' to 'ned_10m_nn'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\aspect_10m_nn'
+Click 'OK'
+
+ +

+Reinterpolate DEMs (continuous raster data) using bilinear and bicubic interpolation: + +

+Select 'Data Management Tools->Raster->Raster Processing->Resample'
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\ned_10m_bi'
+Set 'Output Cell Size' to 10
+Set 'Resampling Technique' to 'BILINEAR'
+Click 'OK'
+
+Select 'Data Managemnt Tools->Raster->Raster Processing->Resample'
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\ned_10m_bc'
+Set 'Output Cell Size' to 10
+Set 'Resampling Technique' to 'CUBIC'
+Click 'OK'
+
+ +

+Check the interpolated elevation surface using aspect maps: + +

+'Spatial Analyst Tools->Surface->Aspect'
+Set 'Input Surface' to 'ned_10m_bi'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\aspect_10m_bi'
+Click 'OK'
+
+'Spatial Analyst Tools->Surface->Aspect'
+Set 'Input Surface' to 'ned_10m_bc'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\aspect_10m_bc'
+Click 'OK'
+
+ +

+Resampling to lower resolution (downscaling) for continuous field data: + +

+Select 'Spatial Analyst Tools->Generalization->Aggregate'
+Set 'Input raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\el_90m_mean'
+Set 'Cell factor' to 3
+Set 'Aggregation technique' to 'MEAN'
+Click 'OK'
+
+ +

+Resampling to lower resolution (downscaling) for discrete categories: + + +

+Select 'Data Management' Tools-> Raster -> Raster Processing -> Resample'
+Set 'Input raster' to 'landcl96'
+Set 'Output raster' to 'C:\Users\myname\arcdata\assign2\landcl_mode'
+Set 'X' and 'Y' to 90
+Set 'Resampling technique' to 'MAJORITY'
+Click 'OK'
+
+ +

Convert Data from Vector to Raster using a working region

+Convert SW Wake subarea of geology layer to 30m raster. + +
+Select 'File->Add Data->Add Data...'
+Select ./ncshape.mdb/geology
+Select ./ncshape.mdb/swwake_10m
+
+Select 'Conversion Tools->To Raster->Polygon To Raster'
+Set Input Features to '.\ncshape.mdb\geology'
+Set Value Field to 'GEO_NAME'
+Set Output Raster Dataset to 'C:\Users\myname\arcdata\assign2\rast_geo'
+Set Cellsize to 30
+Leave the remaining fields as their defaults
+
+ +

+Adjust the working region: + +

+Click 'Environments...' button (bottom of dialog)
+Under 'Processing Extent' Set the 'Extent' to 'Same as layer .\ncshape.mdb\swwake_10m'
+Click 'OK'
+Click 'OK'
+
+ +

+Convert SW Wake subset of streets_wake layer +to 30m raster representing speed limit: + +

+Select 'File->Add Data->Add Data...'
+Select ./ncshape.mdb/streets_wake
+
+Select 'Conversion Tools->To Raster->PolyLine To Raster'
+Set Input Features to '.\ncshape.mdb\streets_wake'
+Set Value Field to 'SPEED'
+Set Output Raster Dataset to 'C:\Users\myname\arcdata\assign2\rast_spdroads'
+Set Cellsize to 30
+Leave the remaining fields as their defaults
+
+ +

+Adjust the working region: + +

+Click 'Environmnents...' button (bottom of dialog)
+Under 'Processing Extent' Set the 'Extent' to 'Same as layer .\ncshape.mdb\swwake_10m'
+Click 'OK'
+Click 'OK'
+Click 'OK'
+
+ +

+Convert point data to raster: + +

+Select 'Conversion Tools->To Raster->Point To Raster'
+Set Input Features to .\ncshape.mdb\Schools_Wake
+Set Value Field to 'CORECAPACI'
+Set Output Raster Dataset to sw_rast
+Set Cellsize to 200
+Click 'OK'
+
+ +

Convert Data from Raster to Vector

+ +
+File->Add Data->Add Data...
+Select ./ncrast.mdb/bas_50k
+# if raster bas_50k is floating point, convert the values to integer (check RMC on bas_50k-->Properties)
+
+Select 'Spatial Analyst->Map Algebra
+Type in the expression  Int("bas_50k")
+Set Output to bas_50kint
+Click 'OK'
+
+Select 'Conversion Tools->From Raster->Raster To Polygon'
+Set Input Raster to 'bas_50kint'
+Set Field to 'Value'
+Set 'Output Polygon Features' to 'C:\Users\myname\arcdata\assign2\bas_50Kpoly.shp'
+Click 'OK'
+
+ +

+Export data to format readable by other software

+ +Export vector data to shape file: + +
+From the Catalog Tab in ArcMap:
+Navigate to and open: ncshape.mdb
+RMC roadsmajor->Data->Export->To Shapefile (single)
+Set Output Location to C:\Users\myname\arcdata\assign2
+Set output Feature Class to 'roads_shp'
+Click 'OK'
+
+ +

+Export raster data to grid ascii: + +

+Select 'Conversion Tools->From Raster->Raster to ASCII'
+Set Input Raster to ncrast.mdb\landcl96
+Set output ASCII to: 'C:\Users\myname\arcdata\assign2\landcl96.asc
+Click 'OK'
+
+Navigate to 'C:\Users\myname\arcdata\assign2\ and open landcl96.asc in NotePad
+Examine the contents
+Close landcl96.asc
+
+ +
+ + + +
+
+ + + diff --git a/arcgis/data_visualization.html b/arcgis/data_visualization.html new file mode 100644 index 00000000..a26b8623 --- /dev/null +++ b/arcgis/data_visualization.html @@ -0,0 +1,432 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Data display and visualization

+ +

Resources: +ESRI virtual campus + +Create folder Data_visualization in your preferred workspace. + +Include resulting maps into your report +(use your judgment to decide which results to include). +

+Start ArcGIS
+Start->Programs->ArcMap
+
+

Viewing data in 2D

+ +

Raster data symbology

+Display land use classes using custom color, add labels: + +
+File->Add Data->Add Data... ./ncrast.mdb/landcl96
+right click landcl96->Properties
+left click Symbology Tab
+left click on line 1 in the Label column replace numbers 1-7 with these labels, respectively:
+(hint: the tab key will move you to the next label entry)
+
+developed
+agriculture
+herbaceous
+shrubland
+forest
+water
+sediment
+
+left click on color - replace the color for each land use by more intuitive one.
+Click 'OK'
+
+ +

+Save as layer to preserve the new color scheme and labels: + +

+left click on the landcl96 entry in the Table of Contents (TOC) ->'Save as layer file...'
+Navigate to .\Data_visualization
+Save as landcl96.lyr
+
+ +

+Display only categories 1 and 2 from the land use map: + +

+right click landcl96->Properties
+left click Symbology Tab
+Use left click to select items 3 - 7 (herbaceous - sediment)
+left click Remove button to remove values 3 through 7
+Click 'OK'
+
+ +

+Display only elevation higher than 100 m over the geology map: + +

+File->Add Data->Add Data...  .\ncrast.mdb\geology
+File->Add Data->Add Data...  .\ncrast.mdb\elev
+right click elev->Properties
+left click Symbology Tab
+From the Show panel (far left) select 'Classified'
+left click Classify Button
+Set the method to 'Equal Interval'
+Set Classes to 10
+left click the 'Exclusion' button
+Set the Excluded values to 1-100
+Click 'OK'
+Click 'OK'
+left click Display Tab -> Set the Transparency to 50%
+Click 'OK'
+
+ +

+Change colors for raster maps: +

+right click elev->Properties
+left click Symbology Tab
+Change the color ramp to one that goes from green to white (one of the last in the drop down menu)
+
+ +

+Use a histogram equalized color table to display topographic slope: + + +

+File->Add Data->Add Data...  .\ncrast\slope
+right click slope->Properties
+left click Symbology Tab
+Choose the 'Red to Green Diverging, Bright' color ramp
+Change the Stretch Type to Histogram Equalize
+Click 'OK'
+
+ +

Legend, scale, grid

+

+Make a map with a legend, scale and grid: + +

+Turn off all layers except landcl96 in the TOC
+
+

+add the streams layer +

+File->Add Data->Add Data... ./ncshape.mdb/streams
+change the streams color to blue 
+in the TOC right click streams -> Properties
+left click Symbology Tab
+left click line symbol
+change the color to blue
+Click 'OK'
+Toggle to Layout View: View Menu->Layout View
+
+ +

+Assign a fixed scale for the layout: + +

+right click Layers->Properties
+Select Data Frame tab
+In the Extent panel select Fixed Scale and set it to 1:50,000
+Click 'OK'
+ 
+
+ +

+Add a legend
+ +

+Insert Menu->Legend...
+Accept the defaults for the first panel left click 'Next >'
+Replace the text "Legend" with "Land Classification" in the Legend title
+left click 'Next >'
+Add a Legend Frame Border (select one as you feel appropriate)
+Add a white Frame Background. Set the cap to X:10 and Y:10 (as in the Frame Border)
+left click 'Next >'
+left click 'Next >'
+left click 'Finish'
+Follow the menus until finished
+Drag the legend to a more appropriate location, and resize as you feel is needed to
+make it "fit" into your map.
+
+ +

+Add a scale bar: + +

+Insert Menu->Scale bar...
+Select a scale bar (your choice)
+left click Properties to set Division Units to kilometers
+Click 'OK'
+Click 'OK'
+Place and resize the legend as you see fit for your map design. Make sure that the numbers on the scale are reasonable (round numbers preferably). 
+Hint: You can resize the Data Frame too (select Data Frame by left click on it then drag the corners to the desired position
+
+ +

+Add a grid: + +

+right click Layers->Properties
+Select the Grids tab
+Click 'New Grid...'
+select 'Measured Grid'
+Click 'Next >'
+Leave all the settings as the defaults and click through the remaining windows
+Click 'Finish'
+Click 'OK'
+
+ +

+Display roads with labels: + +

+File->Add Data->Add Data...  ./ncshape.mdb/roadsmajor
+right click (roadsmajor)->Properties
+left click Symbology Tab
+left click line symbol
+change the symbol to Expressway 
+Select Labels tab
+In the Text String Panel set the Label Field to 'ROAD_NAME'
+Check the 'Label features in this layer' box (upper left corner of dialog window)
+In the Text Symbol section left click Symbol...
+In the dialog window select the 'Country 3' style and left click Edit Symbol... button in the right panel of the Sybol Selector dialog window.
+In the Editor dialog window go the the Mask tab and in Style section check the 'Halo' option
+Click 'OK' to come back to the Symbol Selector dialog window
+Click 'OK' to come back to the Layer Properties window
+In the Other Options section left click 'Placement Properties...' button
+In the Position Section, set the position to 'On the line'
+Click 'OK' to come back to the Layer Properties window
+Click 'OK' 
+
+ +

Compare hillshades

+

+

+Switch the Layer mode back to the Data Mode and remove all the layers from TOC (You can also start a new project in menu File -> New project)
+
+

+Compare different types pof displayung the hillshade effect for the elev map +

1. Hillshade generated using the 3D Analyst Extension. + +

+left click Customize Menu->Extensions...
+Check out a 3D Analyst license
+ArcToolBox->3D Analyst Tools->Raster Surface->Hillshade
+Select elev as input, hillsh_el as output, zscale=3
+Click 'OK'
+File->Add Data->Add Data...  .\ncrast.mdb\elev
+right click elev->Properties
+left click Symbology Tab
+From the Show panel (far left) select 'Stretched'
+Change the color ramp to one that goes from green to white (one of the last in the drop down menu)
+left click Display Tab -> Set the Transparency to 50%
+Click 'OK'
+change the layer name left click elev layer in the TOC than again left click elev layer in the TOC. Type the name: elev_transp
+
+

+2. Hillshade generated by the Symbology 'Switch on Hillshade': + +

+File->Add Data->Add Data...  .\ncrast.mdb\elev
+right click elev->Properties
+left click Symbology Tab
+From the Show panel (far left) select 'Stretched'
+Change the color ramp to one that goes from green to white (one of the last in the drop down menu)
+Check the 'Use hillshade effect'
+Set the Z to 3
+Click 'OK'
+change the layer name left click elev layer in the TOC than again left click elev layer in the TOC. Type the name: elev_hillsh
+
+ +

+To examine the differences, zoom into an area of the data and toggle elev_hillsh layer +on and off (by repetitively checking and unchecking the layer in the TOC). The rapid image interchange emphasizes differences. +

+In order to copare the results with elev with no hillshade applied you can load the elev layer again, without checking the hillshade effect in Symbology tab

+File->Add Data->Add Data...  .\ncrast.mdb\elev
+right click elev->Properties
+left click Symbology Tab
+From the Show panel (far left) select 'Streched'
+Change the color ramp to one that goes from green to white (one of the last in the drop down menu)
+
+

+Toggle elev layer on and off by repetitively checking and unchecking the layer in the TOC. + +

Viewing data in 3D using ArcScene

+Start ArcScene: + +
+Start -> Programs -> ArcGIS -> ArcScene
+
+ +

+Add data in ArcScene: + +

+left click on the 'Add Data' Button in the tool bar
+Add .\ncrast.mdb\elev
+Note, you can shift-click (contiguous selections) or control-click
+(non-contiguous selections) to add more than one data set at a time.
+
+ +

+Display 2-dimensional data as a 3-D surface (to render in 3-D): + +

+Dbl. click the 'elev' layer in the TOC
+Select Layer Properties -> Base Heights
+Select 'FLoating on a custom surface' and select .\ncrast.mdb\elev as the
+elevation layer from the drop-down menu.
+Click 'OK'
+
+ +

+To change the vertical exaggeration (z-value multiplier, default is 1) for a layer: + +

+Dbl. Click 'Scene Layers' in the TOC
+Go to ->'Scene Properties' -> 'General' tab -> 'Vertical Exaggeration'
+Choose '10' from the drop-down list.
+Click 'OK'
+
+ +

+Drape a vector feature over the 3-D (raster) surface: + +

+left click on the 'Add Data' Button in the tool bar
+Add  .\ncshape.mdb\streets_wake
+Dbl. click on streets_wake in the TOC.
+From Properties select Base Heights tab -> 'Floating on a custom surface'
+and select .\ncrast.mdb\elev as the elevation layer from the drop-down menu.
+Set Elevations from features to 'No feature-based heights'
+Click 'OK'
+
+ +

+this action will both drape the vector streets on the raster surface, +and clip the extent of the much larger streets data to that of the surface. + +Change the color ramp for a layer: + +

+Dbl-Click on 'elev'
+Go to the Symbology tab.
+Use the 'Color Ramp' drop-down menu to scroll through the available ESRI-provided ramps.
+Choose one of the color ramps
+Click 'OK'
+
+ +

+Change the background color (useful for enhancing visualization). +Here we change illumination to simulate night.
+ +

+Dbl-Click Scene Layers in the TOC
+Go to -> Scene Properties -> General tab.
+Choose the black color patch from the color palette drop-down menu
+Click 'OK'.
+
+ +

+Adjust the direction (azimuth and altitude) and contrast of the light applied the surface: + +

+Reset the background color to white (refer to previous task)
+Dbl-Click on 'elev'
+Go to -> Rendering tab -> Effects
+Check 'Shade areal features relative to the scene's light position'
+Click 'OK'
+Dbl-Click Scene Layers in the TOC
+Go to -> Scene Properties -> Illumination tab
+Reposition the light source by dragging the yellow "solar" indicators
+to shift altitude and azimuth
+Click 'OK'
+
+

+Note: the changes you make to solar altitude and azimuth are reflected immediately +in the view frame, so you might want to drag the Scene Properties dialog to a position +such that you can see the rendered surface in ArcScene. From here, when you move the +Sun you'll see the changes made immediately applied to the rendered surface. + + +

+Adjust the lighting contrast: + +

+Dbl. Click Scene Layers in the TOC
+Go to -> Scene Properties -> Illumination tab
+Use the contrast slider to adjust contrast value
+Click 'OK'
+
+

+Note: changes made using the contrast slider, like those controls associated with +solar altitude and azimuth, are reflected immediately in the data frame. + + +

+ + + +
+
+ + + diff --git a/arcgis/hydrology.html b/arcgis/hydrology.html new file mode 100644 index 00000000..5cc089ea --- /dev/null +++ b/arcgis/hydrology.html @@ -0,0 +1,191 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Flow routing and watershed analysis

+

Resources: +ESRI virtual campus + +

+Create the assignment working directory (folder) .\Hydro
+Start ArcMap
+ +

+Start->Programs->ArcGIS->ArcMap
+
+ +

Derive flow pattern and streams from 10m NED

+ +Fill the sinks in DEM: + +
+In ArcMap: add the raster feature layer ncrast.mdb/elev
+Open the ArcToolbox
+Select 'Spatial Analyst Tools->Hydrology->Fill'
+Set 'Input' to 'elev'
+Set 'Output Raster' to '.\Hydro\Fill_elev1'
+Click 'OK'
+
+ +

+Compute flow direction: + +

+In ArcToolbox
+Select 'Spatial Analyst Tools->Hydrology->Flow Direction'
+Set 'Input' to 'Fill_elev1'
+Set 'Output Raster' to '.\Hydro\FlowDir_fill1'
+Click 'OK'
+
+ +

+Compute flow accumulation: + +

+In ArcToolbox
+Select 'Spatial Analyst Tools->Hydrology->Flow Accumulation'
+Set 'Input' to 'FlowDir_fill1'
+Set 'Output Raster' to '.\Hydro\FlowAcc_fill1'
+Click 'OK'
+
+ +

+Change the color table to something better - +e.g. STRECHED yellow-green-blue, histogram equalized (Strech type) works well.
+If the resolution of your screen is not good enough to see connected streams, +zoom-in to see the detail.
+Compare with streams digitized from high resolution orthophoto: + + +

+In ArcMap add ncshape.mdb/streams
+
+ +

+Change color to red: how do the derived streams fit with the digitized data? + +

+Derive drainage basins: +

+
+In ArcToolbox
+Select 'Spatial Analyst Tools->Hydrology->Basin'
+Set 'Input' to 'FlowDir_fill1'
+Set 'Output Raster' to '.\Hydro\Basins_fill1'
+Click 'OK'
+
+ +

+Derive flow path length: + +

+In ArcToolbox
+Select 'Spatial Analyst Tools->Hydrology->Flow Length'
+Set 'Input' to 'FlowDir_fill1'
+Set 'Output Raster' to '.\Hydro\flowlength'
+Click 'OK'
+
+ +

Derive stream network and watersheds from 30m NED

+Set your workspace and scratch workspace to C:\path\.Hydro +
 
+Geoprocessing>Environments>Workspace
+Add ncrast/elev_ned
+
+First check whether we have sinks, if yes, fill them in. +
+Spatial Analyst Tools->Hydrology->Flow Direction
+input=elev_ned output=FlowDir_el30
+Spatial Analyst Tools->Hydrology->Sink
+input=FlowDir_el30 output=sinks30
+Spatial Analyst Tools->Hydrology->Fill
+input=elev_ned output=Fill_elev30
+
+Compute flow direction and flow accumulation +
+Spatial Analyst Tools->Hydrology->Flow Direction
+input=Fill_elev30 output=FlowDir_fil30
+Spatial Analyst Tools->Hydrology->Flow Accumulation
+input=FlowDir_fil30 output=Flowacc_fil30
+
+Extract streams from flow accumulation using map algebra +
+Spatial Analyt Tools>Map Algebra>Raster Calculator
+expression= Con( "Flowacc_fil30" > 10000, 1, 0 ) output=Streams_der30
+
+Create stream links from the stream raster and derive watersheds draining into these stream links: +
+Spatial Analyst Tools->Hydrology->Stream Link
+input=Streams_der30 flow dir raster=FlowDir_fil30 output=Source30
+Spatial Analyst Tools->Hydrology->Watershed
+input=FlowDir_fil30 Pour point=Source30 output=Watersheds30
+
+ + + +
+ + + +
+
+ + + diff --git a/arcgis/hydrology_erosion.html b/arcgis/hydrology_erosion.html new file mode 100644 index 00000000..03b160b4 --- /dev/null +++ b/arcgis/hydrology_erosion.html @@ -0,0 +1,323 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Erosion modeling

+

Resources: +ESRI virtual campus + + +Task: Compute soil detachment and net erosion/deposition using simple GIS-based models + +

+Create the assignment working directory (folder) .\Erosion
+Start ArcMap: + +

+Start->Programs->ArcGIS->ArcMap
+
+ +

+Check out a Spatial Analyst Extension license: + +

+Under Tools->Extensions make sure there is a check next to 'Spatial Analyst'
+Select View->Toolbars->Spatial Analyst to activate the extension
+
+Set your workspace and scratch workspace to C:\path\.Erosion +
+Geoprocessing>Environments>Workspace
+
+

Compute soil detachment rate using USLE3D

+ +Compute a map of soil detachment rate using USLE3D equation which assumes that there is no deposition.
+This represents detachment limited sediment transport by overland flow.
+
+E = RKLSCP
+
+

where +

    +
  • E is the annual soil detachment rate (soil loss)
  • +
  • R is the rainfall
  • +
  • K is the soil
  • +
  • C is the land cover
  • +
  • P is the preventive measures factor
  • +
  • LS = 1.4 * (U/22.1)**0.4 * (sin (slope)/0.09)**1.2
    +LS is the topography factor, U is contributing area per unit width (function of flow accumulation)
  • +
+

+For units and explanation of constants see Erosion modeling notes
+ +

+First compute slope, and flow accumulation for the elevation raster map e_lid792 (NOT elid_792): + + +

+In ArcMap
+Add the raster feature layer: ncrast.mdb/e_lid792  (NOT elid_792)
+Open the ArcToolbox
+
+ +

+Compute slope_1m map using the Slope function, we will use it later: + +

+Select 'Spatial Analyst Tools->Surface->Slope'
+input: e_lid792 output: slope_1m
+keep DEGREES for units
+
+ +

+Compute the flow accumulation map Flowacc: + +

+Compute Fill input=e_lid792 output=Fill_e_lid
+Compute FlowDirection input=Fill_e_lid ouput=FlowDir_fil
+Compute FlowAccumulation input=FlowDir_fil output=Flowacc
+
+ +

LS factor

+Build an expression in the Spatial Analyst Raster Calculator for lsfac map +using the Flowacc and slope_1m layers you just generated.
+

+Note that the lsfac map represents the topographic factor LS used in the USLE3D model.
+Flowacc map multiplied by resolution is the contributing area per unit width U. + +

+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+
+ +

+Type in the expression for lsfac layer (make sure you have spaces around operators).
+Slope should be in radians, +flowaccumulation is in number of cells so we multiply by resolution: + +

+1.4 * (Power("Flowacc" * 1. / 22.1 , 0.4) * Power(Sin("slope_1m" * math.pi/180.0) / 0.09, 1.2))
+Set the output raster to lsfac
+Click 'OK'
+
+ +

Soil loss

+ +Now build the expression for soil detachment rate E (soil loss) s_loss. From the formula +
+E = RKLSCP
+
+We computed LS factor +R factor is considered to be constant and set to 270.0 +K factor values can be added as a layer ncrast.mdb/soils_kf +C factior values can be added as a layer ncrast.mdb/cfactb +P factor (prevention measures) is here taken to = 1. +

+Multiplying all the factors in Raster Calculator we will compute the raster map of erosion rate +

+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+expression=
+270.0 * "cfactb" * "lsfac" * "soils_kf"
+output=s_loss
+
+ +Adjust color table for the s_loss map - histogram equalized color ramp may be needed +Find average soil loss rate in the area from the s_loss map (in Properties:Source). + + +

USPED model

+Compute net erosion and deposition as a divergence of sediment flow vector field.
+Note that custom color tables that cover entire range of values +including negative are important in this section. + +

+We have already computed slope_1m and flowaccumulation, but we will also need direction of flow.
+Compute aspect_1m map (direction of flow, direction of gradient vector) using the Aspect function: + +

+'Spatial Analyst Tools->Surface->Aspect'
+input=e_lid792, output=aspect_1m
+
+ +

+Build an expression for sflowtopo (topographic factor LS for sediment flow T) +using the Raster Calculator.
+For the exponents use m=n=1, resolution is 1. + +

+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+expression=
+"Flowacc" * 1. * Sin("slope_1m" * math.pi/180.0)
+output raster = sflowtopo
+
+ +

+OR use m=1.3 and n=1.2 for study areas with extensive rills.
+In this case, channels/streams will have large erosion rates due to high values of flowaccumulation. + + +

+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+expression=
+(Power("Flowacc" * 1. , 1.3) * Power((Sin("slope_1m" * math.pi/180.0)), 1.2))
+output raster = sflowtopo2
+
+ +

Compute divergence of sediment flow

+First compute components of sediment flow in x and y direction: +Calculate qsx +
+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+expression=
+"sflowtopo" * "soils_kf" * "cfactb" * 270. * Cos((- "aspect_1m" + 450.) * math.pi / 180.0)
+Output raster = qsx
+
+Calculate qsy +
+In the ArcToolbox, Select 'Spatial Analyst->Map Algebra->Raster Calculator
+expression=
+"sflowtopo" * "soils_kf" * "cfactb" * 270. * Sin((- "aspect_1m" + 450.) * math.pi / 180.0)
+Output raster = qsy
+
+ +

+Compute components of change in sediment flow in x and y direction +as partial derivatives of sediment flow field, derived from slope and aspect + - see eqs 1,2,3 from here. + +

+In ArcToolbox
+'Spatial Analyst Tools->Surface->Slope'
+input=qsx, output=Slope_qsx
+
+ +

+In the same way compute Aspect_qsx, Slope_qsy and Aspect_qsy + +

+In ArcToolbox
+'Spatial Analyst Tools->Surface->Aspect'
+input=qsx, output=Aspect_qsx
+'Spatial Analyst Tools->Surface->Slope'
+input=qsy, output=Slope_qsy
+In ArcToolbox
+'Spatial Analyst Tools->Surface->Aspect'
+input=qsy, output=Aspect_qsy
+
+Compute qsx_dx and qsy_dy +
+'Spatial Analyst->Map Algebra->Raster Calculator:
+expression=
+Cos((- "Aspect_qsx" + 450) * math.pi / 180.0) * Tan("Slope_qsx" * math.pi/180.0)
+output=qsx_dx
+expression=
+Sin((- "Aspect_qsy" + 450) * math.pi / 180.0) * Tan("Slope_qsy" * math.pi/180.0)
+output=qsy_dy
+
+ +

+Finally compute net erosion deposition: + +

+'Spatial Analyst->Map Algebra->Raster Calculator:
+expression="qsx_dx" + "qsy_dy"
+output=erdep
+
+ +

+Assign an appropriate color classification scheme to the erdep raster and generate a map for the report.
+ +Note: the differences in the erdep are subtle and the default color table will almost assuredly render
+the erosion deposition map in a way that little detail is revealed.
+You are free to experiment with the the tools in Arc in order to define classification scheme which will +reveal the erosion/deposition pattern.
+Here's an option that should yield pretty good contrast between erosion and deposition: + +

+Open Layer Properties for the erdep layer
+Under the Symbology tab‚
+Select Classified from options (Unique Values, Classified, Stretched, Discrete) in the left column
+Set Classes to 11
+Choose a broad, divergent color ramp from the Color Ramp drop down field
+that ranges from brown grading through white to green
+Click on Classify
+Edit the eleven break values (located in column on far right in Classification dialog to:
+-250000.00  (data minimum)
+-50.00
+-5.00
+-1.00
+-0.10
+0.10
+1.00
+5.00
+50.00
+330000.00    (data maximum)
+Click OK
+Click Apply
+
+ +You should now see the erosion and deposition areas rendered with pretty good contrast. + +
+ + + +
+
+ + + diff --git a/arcgis/interpolation_1.html b/arcgis/interpolation_1.html new file mode 100644 index 00000000..d1257edb --- /dev/null +++ b/arcgis/interpolation_1.html @@ -0,0 +1,274 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation I: methods

+

Resources: +ESRI virtual campus + + +

+Create the assignment working directory (folder) .\Interpolation
+ +

+Start ArcMap
+
+ +

Compute DEM based on voronoi polygons

+Compute DEM based on voronoi polygons and check it with hillshade.
+Compute and display voronoi polygons with centroids (clear data frame). + +
+ArcMap File->Add Data->Add Data...
+Select ncshape.mdb/elev_lid792_randpts
+Open the ArcToolbox
+Select 'Analysis Tools->Proximity->Create Thiessen Polygons' 
+Set 'Input Features' to 'elev_lid792_randpts'
+Set 'Output Feature Class' to '.\Interpolation\elev_vor.shp'
+Set 'Output Fields' to 'ALL'    
+Click 'OK'
+NOTE: this process may take a while...
+Select 'Data Management Tools->Features->Feature to Point'
+Set 'Input Features' to 'elev_vor'
+Set 'Output Feature Class' to '.\Interpolation\vor_center.shp'
+Leave the 'Inside' box unchecked
+Click 'OK'
+
+ +

+Convert to raster and display with standard elevation color. + +

+Open the ArcToolbox (if it's not already open)
+Select 'Conversion Tools->To Raster->Polygon To Raster'
+Set 'Input Feature' to 'elev_vor'
+Set 'Value Field' to 'value_'
+Set 'Output Raster Dataset' to '.\Interpolation\elev_vor2m'
+Set 'Cellsize' to '2'         
+Click 'OK'
+
+ +

+Set the Raster Analyst Cell Size to 2m in Environment Settings. + +

+Select Menu Geoprocessing->Environments...->Raster Analyst
+NOTE: this will set the default cell size to 2 units (meters) for all subsequent processing.
+Set Cell Size to 'As Specified Below'
+Set the cell value to 2
+Click 'OK'
+
+ +

+Check the result using hillshade. + +

+Check out a 3-D Analyst Extension license
+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst->Raster Surface->Hillshade'
+Set 'Input Surface' to 'elev_vor2m'
+Set 'Output Raster' to '.\Interpolation\Hillsh_vor_2m'
+Click 'OK'
+
+ +

Interpolate DEM using TIN and check it in ArcScene or hillshade

+First create TIN: + +
+Select 3D Analyst Tools->Data Management->TIN->Create TIN
+Set 'Output TIN' to '.\Interpolation\elev_lid792_TIN'
+Set Input Feature Class to 'elev_lid792_randpts'
+In the tablem change the entry in the  'height_field' column to 'value_'
+and 'SF_type' to 'Mass_Points'
+Click 'OK'
+
+ +

+Interpolate TIN to raster DEM.
+

+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools->Conversion->From TIN->TIN to Raster'
+Set 'Input Tin' to 'elev_lid792_TIN'
+Change the 'Sampling Distance' to CELLSIZE 2 (Note: you will have erase the previous value and type 2)
+Set Output Raster to .\Interpolation\tinrast_2m
+Leave all else as default
+Click OK
+
+ +

+Display as hillshade: + +

+Open the ArcToolbox (if it's not already open)
+Select 3D Analyst Tools->Raster Surface->Hillshade'
+Set 'Input Surface' to 'tinrast_2m'
+Set 'Output Raster' to '.\Interpolation\Hlshtinrast2m'
+Click 'OK'
+
+

Create the Terrain Model using the Terrain Wizard in ArcCatalog.

+

+Create a new empty file geodatabase and feature dataset. +

+right mouse click on the Interpolation folder in ArcCatalog
+Choose New->File geodatabase
+Set the geodatabase name to 'Interpolation_terrain'
+
+ +

+Create a new feature dataset called 'terrain' in the new 'Interpolation_terrain' geodatabase. +

+right mouse click on the 'Interpolation_terrain' geodatabase and select New->Feature dataset
+Set name to 'terrain'
+click 'Next'
+
+

+Set (Import) the horizontal coordinate system for the dataset to that associated +with the vector point feature class 'elev_lid792_randpts'.
+

+Click on the globe with star icon (next to the search window) -> Import
+Inticate the path ./ncshape.mdb/elev_lid792_randpts
+Finish with defaults
+
+ +

+Add the feature class data that will be used to create the terrain +

+In the ArcCatalog,
+Drag the elev_lid792_randpts into the created feature dataset
+(or use right click to Copy and Paste)
+Click 'OK' in the pop up window
+
+

+Construct the Terrain Model:
+

+In ArcCatalog right mouse click on the 'terrain' feature data set, select NEW->Terrain
+
+ +

+In the Terrain Wizard:
+

+Set the terrain name to 'elev_lid792_TER'
+Set the participating feature class to 'elev_lid792_randpts'
+Set the Approximate point spacing to 1m (average distance between points)
+Click 'Next'
+Set the Height Source to 'value_' (Note: this is a drop-down menu)
+Click 'Next'
+For Select pyramid type, choose defaults
+Click 'Next'
+Click 'Calculate pyramid properties' to generate two 2 pyramid levels
+Click 'Next'
+Review the displayed summary
+Click 'Next'
+Click 'Finish' to build new terrain
+Click 'Yes' in the pop up window to build the created terrain
+
+ +

+Add the terrain to your ArcMap project +

+ArcMap File->Add Data->Add Data...
+Select ./Interpolation/Interpolation_terrain.mdb/terrain/elev_lid792_TER
+
+ +Compute a raster DEM from Terrain, +
+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools->Conversion->From Terrain->Terrain to Raster'
+Set 'Input Terrain' to 'elev_lid792_TER'
+Change the 'Sampling Distance' to CELLSIZE 2 (Note: to will have to erase the previous value and type 2)
+Set Output Raster to .\Interpolation\terrast_2m
+Leave all else as default
+Click OK
+
+ +

Interpolate DEM using IDW and check it with hillshade

+ +Interpolate DEM using IDW: + +
+Open the ArcToolbox (if it's not already open)
+Check out a Spatial Analyst Extension license
+Select 'Spatial Analyst Tools->Interpolation->IDW'
+Set 'Input point features' to 'elev_lid792_randpts'
+Set 'Z value field' to 'value_'
+Set 'Output Raster' to '.\Interpolation\elev_idw_2m'
+Leave the other inputs as defaults
+Click 'OK'
+
+ +

+Check the interpolated elevation surface using hillshade: + +

+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools->Raster Surface->Hillshade'
+Set 'Input raster' to 'elev_idw_2m'
+Set 'Output Raster' to '.\Interpolation\Hillsh_idw_2m'
+
+ +
+ + + +
+
+ + + diff --git a/arcgis/interpolation_2.html b/arcgis/interpolation_2.html new file mode 100644 index 00000000..c4bec974 --- /dev/null +++ b/arcgis/interpolation_2.html @@ -0,0 +1,147 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation II

+

Resources: +ESRI virtual campus +

+Create the assignment working directory (folder) .\Interpolation2. + +

Interpolation using splines

+Interpolate elevation surfaces from spot point heights using the Spline tool +in the Spatial Analyst toolbox.
+Use three different weights (0.1, 1, 1000) to control the tension, and thus, the resulting surface character.
+For the first interpolation, you'll leave the Weight field blank, accepting the default 0.1 value.
+In subsequent interpolations, you'll enter the explicit weights. + +
+ArcMap File->Add Data->Add Data...
+Select ncshape.mdb/elev_lid792_randpts
+Check out a Spatial Analyst Extension license
+Open the ArcToolbox
+Select 'Spatial Analyst Tools->Interpolation->Spline'
+Set 'Input Point Features' to 'elev_lid792_randpts'
+Set 'Z value field' to 'value_'
+Set 'Output Raster' to '.\Interpolation2\elev_tps'
+Set 'Output cell size' to '2'
+Set to Spline Type to 'TENSION'
+Leave the other inputs as defaults     
+Click 'OK'
+
+ +

+Evaluate impact of interpolation function parameters on the resulting surface +using hillshade. +

+Check out a 3D Analyst Extension license.
+Set the default output raster cell size environment variable to 2. + +

+Geoprocessing->Environments...->Raster Analysis->Cell Size
+Set 'As Specified Below' and enter 2 in the field that follows.
+Click 'OK'
+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools -> Raster Surface -> Hillshade'
+Set 'Input Surface' to 'elev_tps'
+Set 'Output Raster' to '.\Interpolation2\Hillsh_tps'
+Leave the other inputs as defaults
+Click 'OK'
+
+ +

+Repeat the spline interpolations above, using weights of 1 and then 1000,
+and generate the associated hill shade surfaces.
+Compare the three hill shade surfaces, and discuss your findings in your report.
+ +

Interpolate surface using Radial Basis Functions

+Use the Geostatistical Analyst tool's Radial Basis Functions to generate at least +two different elevation surfaces by selecting different Kernel functions.
+In the first surface you'll use the RBF multi-quadric method.
+In the second, you'll choose Regularized Spline. + +
+Check out a Geostatistical Analyst Extension license
+Customize->Toolbars->Geostatistical Analysis'
+Select 'Geostatistical Analysis->Geostatistical Wizard'
+Select the 'Deterministic Methods->Radial Basis Functions' method
+Set the 'Source Dataset' to 'elev_lid792_randpts'
+Set the Data Field to 'value_'
+Click 'Next'
+Set the Kernel function to 'Multiquadric'
+Click Next/Finish/OK through remainder of dialogs
+
+ +

+Rerun the interpolation in the Geostatistical Analyst Wizard using
+ Kernal Type = Completely Regularized Spline and compare your results. +

Optional: compute empirical and model variogram for 'elev_lid792_randpts' +and interpolate the surface using kriging with a model variogram that +fits the best with the empirical variogram. + +

+ + + +
+
+ + + diff --git a/arcgis/map_algebra.html b/arcgis/map_algebra.html new file mode 100644 index 00000000..d10357e4 --- /dev/null +++ b/arcgis/map_algebra.html @@ -0,0 +1,349 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Analysis I: global, zonal and focal operations, map algebra

+

Resources: +ESRI virtual campus + +Create folder Map_algebra in your preferred workspace. +Include resulting maps into your report +(use your judgment to decide which results to include). + +

+Start ArcMap: + +

+Start->Programs->ArcGIS->ArcMap
+
+ +

Compute zonal statistics for feature data

+Add landuse feature class data. + +
+File->Add Data->Add Data...  ./ncrast.mdb/landcl96
+right click landcl96->Open Attribute Table
+
+ +

+Add a field (column) to the attribute table: + +

+left click Table Options menu (upper right corner of Table window) icon->Add Field...
+
+Set Name to 'area_sq_meters' and Type to 'Double'
+
+ +

+Calculate area (populate the area_sq_meters field): + +

+right click the column heading and select 'Field Calculator'
+
+

+You may see the pop-up window with the warning: +You are about to do a calculate outside of an edit session. This method is faster than calculating in an edit session, but there is no way to undo your results once the calculation begins. Do you wish to continue? +Click YES +

+double left click on Count to populate equation in the bottom menu
+Click on Multiply * button
+Type in 812.25 (i.e. area of each cell in square meters) 
+Click 'OK'
+Note the new values in the area_sq_meters field
+Close the Table
+
+ +

+Compute %area for each category in each zipcode zone. +Add zipcode data: + +

+File->Add Data->Add Data... ./ncrast.mdb/zipcodes
+
+ +

+Check out a Spatial Analyst Extension license: + +

+left click Customize Menu->Extensions...  check Spatial Analyst
+
+Open the ArcToolbox
+Select Spatial Analyst Tools->Zonal->Tabulate Area
+Set Input Raster or feature zone data to 'zipcodes'
+Set Zone field to 'VALUE'
+Set Input Raster or feature class data to 'landcl96'
+Set Class field to 'VALUE'
+Set Output Table to '.\Map_algebra\zip_sum'
+Set Processing cell size to 28.5
+Click 'OK'
+
+ +

+View the Tabulate results: + +

+Click on the 'List by Source' button at the top of the Table of Contents (TOC)
+right click zip_sum->Open
+
+Explain how the data are presented. + +

Handling NULL data

+Create a copy of SRTM DSM map, converting cells with elevation=0 to NULL: + +
+File->Add Data->Add Data... ncrast.mdb/elev_srt
+right click elev_srt->Data->Export Data...
+Set the Location to '.\Map_algebra'
+Set the format to 'GRID' and the Name to 'elev_srt2'
+Click 'Save'
+Click 'Yes' to add the GRID layer to the TOC
+
+ +

+Replace cells with elevation = 0 to nodata / NULL (i.e. -9999 for ArcGIS): + +

+Open the ArcToolbox (if not already open)
+Select Spatial Analyst Tools->Conditional->Set Null
+Set Input Conditional Raster to 'elev_srt2'
+Set the Expression to VALUE = 0
+Set Input false raster or constant value to 'elev_srt2'
+Set Output raster to .\Map_algebra\elev_srt3
+Click 'OK'
+
+ +

Reclassification

+Recode a 360-direction aspect map to 8 directions (D8): + +
+File->Add Data->Add Data...  .\ncrast.mdb\aspect
+select Spatial Analyst->Reclass->Reclassify
+Set Input raster to aspect
+Click the 'Classify' Button
+Set the Method to 'Equal Interval' and Classes to '8'
+Click 'OK'
+Set the Output Raster to '.\Map_algebra\aspect_d8'
+Click 'OK'
+
+ +

Mosaicking

+Patching raster data (often called mosaicking): + +
+File->Add Data->Add Data...
+Select ncrast.mdb/elid_782 (hold down control key to select multiple layers)
+   select ncrast.mdb/elid_783
+   select ncrast.mdb/elid_792
+   select ncrast.mdb/elid_793
+
+Open the ArcToolbox (if not already open)
+Open Data Management Tools->Raster->Raster Dataset->Mosaic To New Raster
+Set Input Rasters to 'elid_782' , 'elid_783' , 'elid_792' , 'elid_793'
+Set Output Location to '.\Map_algebra\'
+Set Raster dataset name to 'elev_6m'
+Set Number of Bands to 1
+Set Pixel type to 32_BIT_FLOAT
+Leave the remaining fields as their defaults
+Click 'OK'
+
+ +

+Optional - have a look at the patched DEM in ArcScene. + +

Creating a subset

+Create a subset of the map elevation for a subregion: + +
+File->Add Data->Add Data...
+Select ./ncrast.mdb/elev
+(Note: hold down control key to select multiple layers)
+Select ncrast.mdb/ortho01
+Open the ArcToolbox (if not already open)
+Select Spatial Analyst Tools->Extraction->Extract by Mask
+Set Input Raster to 'elev'
+Set Input raster of feature mask data to 'ortho01'
+Set the out put raster to '.\Map_algebra\elev_mask'
+Click 'OK'
+
+ +

Map Algebra

+ +Compute Normalized Difference Vegetation Index (NDVI) +

+Explain the difference between FP and INT handling.
+(Note: make sure you have spaces around operators (=,-,/) ). + +

+File->Add Data->Add Data...
+Select ./ncrast.mdb/lsat7_40
+Select ./ncrast.mdb/lsat7_30
+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst->Map Algebra->Raster Calculator
+Type in the expression:
+   ("lsat7_40" - "lsat7_30") / ("lsat7_40" + "lsat7_30")
+   Set Output raster to './Map_algebra/ndvi1
+Click 'OK'
+Select 'Spatial Analyst->Raster Calculator
+Type in the expression: 
+   Float("lsat7_40" - "lsat7_30") / Float("lsat7_40" + "lsat7_30")
+   Set Output raster to './Map_algebra/ndvi2
+Click 'OK'
+Assign the ndvi2 map a color ramp that has green for high values
+
+ +

+Compute the difference between the SRTM DSM and lidar-based NED DEM: + +

+File->Add Data->Add Data...
+Select ncrast.mdb/elev_ned
+Select ncrast.mdb/elev_srt
+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst->Map Algebra->Raster Calculator
+Type in the expression: "elev_srt" - "elev_ned"  
+Set Output raster to './Map_algebra/elev_diff
+Click 'OK'
+
+ +

+Create a custom color table to distinguish the negative and positive values: + +

+right click elev_diff->Properties
+Click on Symbology tab
+Select a 'Red to Green' color ramp
+Click 'OK'
+
+ +

Working with the conditional function

+Create map of urban areas: + +
+File->Add Data->a Add Data...
+Select ncrast.mdb/landcl96
+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst->Map Algebra->Raster Calculator
+Type in the expression: Con( ("landcl96" == 1) | ("landcl96" == 2),"landcl96",0)  
+(Note: in ArcGIS 10 map algebra components are case-sensitive - i.e. con != Con) 
+Set Output raster to './Map_algebra/calcmap5a
+Click 'OK'
+
+ +

+Alternatively use the 'pick' operation: + +

+Open the ArcToolbox (if not already open)
+Select Spatial Analyst Tools->Conditional->Pick
+Set input position raster to landcl96
+Set the input rasters as constant values: 1 and 2. 
+Enter 1 and then 2 such that there are two entries (each value is on its own line).
+Set output raster to '.\Map_algebra\urban_pick'
+Click 'OK'
+
+ +

Handling null values

+ + +

+Create a map where all land use categories > 1 are set to null: + +

+Open the ArcToolbox (if not already open)
+Select 'Spatial Analyst->Map Algebra->Raster Calculator'
+Type in the expression: SetNull( "landcl96" > 1, "landcl96" )     
+Set output raster to '.\Map_algebra\developed'
+Click 'OK'
+
+ +

+Create mask for areas with elevation between 60 and 100m and land use 1 or 2: + +

+File->Add Data->Add Data...
+Select ncrast.mdb/landcl96 (this layer may already be present in your project)
+Select ncrast.mdb/elev   (this layer may already be present in your project)
+Open the ArcToolbox (if not already open)
+select 'Spatial Analyst->Map Algebra->Raster Calculator'
+Type in the expression: 
+SetNull( (("elev" < 100) & ("elev" > 60)) & (("landcl96" == 1) | ("landcl96" == 2)), 1)
+Set output raster to 'mask'
+
+ +
+ + + +
+
+ + + diff --git a/arcgis/terrain_analysis.html b/arcgis/terrain_analysis.html new file mode 100644 index 00000000..a0fddabf --- /dev/null +++ b/arcgis/terrain_analysis.html @@ -0,0 +1,213 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry II: Spatial and Temporal Terrain Analysis

+

Resources: +ESRI virtual campus + + +

+Create the assignment working directory (folder) .\Analysis.
+Start ArcMap.
+Disable background processing. + + +

+Start->Programs->ArcGIS->ArcMap
+Geoprocessing -> Geoporocessing Options... -> Uncheck "Enable" Background Processing
+
+ +

Compute basic topographic parameters from 10m NED

+ +
+In ArcMap
+Select File->Add Data->Add Data...
+Select ncrast.mdb/elev
+Check out a Spatial Analyst Extension license
+Open the ArcToolbox
+Select 'Spatial Analyst Tools->Surface->Slope'
+Set 'Input raster' to 'elev'
+Set 'Output raster' to '.\Analysis\Slope_elev'
+Set 'Output measurement' to 'DEGREE'
+Click 'OK'
+
+ +

+Do the same for Aspect and Curvature
+Try to create a meaningful diverging color table for curvatures +with two color shades and light color in the middle. + +

Compute topographic parameters from SRTM DEM and compare with NED

+ +
+In ArcMap
+Select File->Add Data->Add Data...
+Select ncrast.mdb/elev_srt
+Open the ArcToolbox (if it's not already open)
+Select 'Spatial Analyst Tools->Surface->Slope'
+Set 'Input raster' to 'elev_srt'
+Set 'Output raster' to '.\Analysis\Slope_el_srt'
+Set 'Output measurement' to 'DEGREE'
+Click 'OK'
+
+right mouse click 'Slope_el_srt->Properties->Symbology->Classify 
+
+ +

+Compare mean and stddev in Classification statistics with 10m NED derived slope.
+Explain the differences between slope from 10m NED and 30m SRTM. + +

Compare slope and aspect, from TIN and from 1m raster DEM

+Use a previously created TIN or create a new one,
+see the first assignment of two covering the topic of Spatial interpolation. + +
+In ArcMap
+Select File->Add Data->Add Data...
+Select ncshape.mdb/elev_lid792_randpts
+
+ +

+Create TIN 'tin' in 3D Analyst from these points if you don't have it already: + +

+Open ArcToolbox (if it's not already open)
+Select 3D Analyst Tools->Data Management->TIN->Create TIN
+Set 'Output TIN' to .\Analysis\lid792_tin
+Set 'Input feature class' to elev_lid792_randpts
+In the Input feature class list, find the "height_field" (2nd field from left). 
+Click on the entry for the elev_lid792_randpts (Shape_Z is displayed by default). 
+By clicking on the field it should convert to a drop-down list. 
+Click the down arrow to display your list of options and select "Value_".  
+Click 'OK'
+
+ +

+ +Compute slope.
+The output from this process is a polygon feature class whose attribute (found +in the slope class field) consists of the slopes binned into 7 classes.
+The default (ESRI) breaks (bins) are at 0.57, 1.43, 2.66, 5.71, 12.13, 24.89, +45.0, 90.0. + +

+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools-> Triangulated Surface -> Surface Slope'
+Set 'Input Surface' to 'lid792_tin'
+Set 'Output Feature Class' as '.\Analysis\lid792_tin_SurfaceSlope' 
+Set 'Slope Units' to 'DEGREE'
+Click 'OK'
+
+ +

+Do the same for Surface Aspect to create: '.\Analysis\lid792_tin_SurfaceAspect'.
+As with slope, the aspect that comes from this process is in the form of a +polygon feature class whose aspect attribute is binned into eight 45 degree wide
+directions (code = 1 - 8 ).
+These are: N, NE, E, SE, S, SW, W, and NW, respectively.
+Assign suitable colors to the slope and aspect polygons. + +

+Derive slope from 1m raster DEM: + +

+Select File->Add Data->Add Data...
+Select ncrast.mdb/elid_792
+Open the ArcToolbox (if it's not already open)
+Select '3D Analyst Tools -> Raster Surface -> Slope'
+Set 'Input raster' to 'elid_792'
+Set 'Output raster' to '.\Analysis\slope_elid72'
+Click 'OK'
+
+ +

+Choose similar color table as for the TIN. To get more continuous color table: + +

+right mouse click 'Slope_elid72' 
+Select 'Properties -> Symbology"
+Change Classes to 32
+Click 'OK'
+
+ +

+Compute the aspect and curvature.
+For curvature change the color table to one that has lighter break in the middle.
+Compare the resulting slope, aspect and curvature with the topographic parameters derived from TIN. + + +

+ + + +
+
+ + + diff --git a/arcgis/terrain_modeling.html b/arcgis/terrain_modeling.html new file mode 100644 index 00000000..e8326f6c --- /dev/null +++ b/arcgis/terrain_modeling.html @@ -0,0 +1,264 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry I: Terrain Modeling

+

Resources: +ESRI virtual campus + +Create the folder 'Modeling'.
+Download the Raleigh 2013 lidar data as LAS file +LAS tile 0793_016 in NC State Plane Meters +and the +orthophoto +to the Modeling folder. Unpack the package containing orthophoto. + + +

Bring lidar data into ArcGIS

+There are multiple ways of handling lidar data in ArcGIS. We will use LAS datasets and multipoint files. For other workflows refer to the FYI section at the end of the assignment +

Analyze multiple return lidar data

+

Create a LAS dataset from .las point cloud

+LAS datasets provide a way to quickly view the properties of a point cloud. You can also use binning or TINs to create a DSM or DEM. This is especially useful if you want to process several .las files at once. +
Open ArcToolbox
+Select 'Data Management->LAS Dataset->Create LAS Dataset'
+Set 'Input Files' to 'tile_0793_016_spm.las'
+Set 'Output LAS Dataset' to '.\Modeling\lidar_all'
+Set 'Coordinate System' to 'NAD_1983_HARN_StatePlane_North_Carolina_FIPS_3200' (you can type 3358 in search window)
+Check 'Compute Statistics'
+Click 'OK'
+
+ +

View LAS dataset properties and filter points

+
Open ArcCatalog
+Right click on LAS dataset and select 'Properties...'
+Select the 'Files' tab and take note of average point spacing (will use in later step).
+Select the 'Statistics' tab to view point statistics by returns and classes.
+Click 'Ok'
+What percentage of the points are classified as ground? +
Open ArcMap and add the LAS dataset to the layer manager ('Add data' button or drag and drop from ArcCatalog)
+Right click on LAS dataset in Layers and click 'Properties...'
+Select 'Filter' tab.
+Try applying several filter settings using classes and returns and view the results.
+Check box next to '2 Ground' under 'Classification Codes'
+What is the difference between 'Last Return' and 'Last of Many'? + +

With the LAS dataset filtered for ground points only, now we can analyze the point density of ground points and create a DEM with binning. +

+

Compute a raster map representing number of points per cell (at two different resolutions)

+Calculate point density at 2m resolution: +
+Open ArcToolbox
+Select 'Data Management->LAS Dataset->LAS Point Statistics as Raster'
+Set 'Input Features' to 'lidar_all'
+Set 'Output Raster' to '.\Modeling\ground_count2m'
+Set 'Method' to 'POINT_COUNT'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '2'                            
+Click 'OK'
+Right click on resulting raster in Layers and select 'Properties'
+Click 'Symbology' tab and change color ramp to something appropriate.
+Set 'Display NoData as' to red to highlight any areas with zero points.
+
+ +

+Calculate point density at 6m resolution: + +

+Open ArcToolbox
+Select 'Data Management->LAS Dataset->LAS Point Statistics as Raster'
+Set 'Input Features' to 'lidar_all'
+Set 'Output Raster' to '.\Modeling\ground_count2m'
+Set 'Method' to 'POINT_COUNT'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'                            
+Click 'OK'
+Right click on resulting raster in Layers and select 'Properties'
+Click 'Symbology' tab and change color ramp to something appropriate.
+Set 'Display NoData as' to red to highlight any areas with zero points.
+
+ +

Compute a raster map representing range of elevation values per cell at 6m resolution

+ +
+Open ArcToolbox
+Select 'Data Management->LAS Dataset->LAS Point Statistics as Raster'
+Set 'Input Features' to 'lidar_all'
+Set 'Output Raster' to '.\Modeling\ground_range6m'
+Set 'Method' to 'Z_RANGE'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'                            
+Click 'OK'
+
+ +

Use binning to compute a raster map representing average elevation per cell for ground points

+Based on the point density rasters created in the previous steps, what would be an appropriate resolution for binning the ground points? What does the range raster tell you about binning at this resolution? + +
+Ensure that the LAS dataset is still filtered to include only class 2 (ground) points.
+Open ArcToolbox
+Select 'Conversion Tools->To Raster->LAS Dataset to Raster'
+Set 'Input LAS Dataset' to 'lidar_all'
+Set 'Output Raster' to '.\Modeling\ground_mean6m'
+Set 'Value field' to 'ELEVATION'
+Set 'Interpolation Type' to 'Binning'
+Set 'Cell Assignment Type' to 'Average'
+Set 'Void Fill Method' to 'LINEAR'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'                            
+Click 'OK'
+
+ + +

Use multipoint file to interpolate DSM from multiple return lidar data

+LAS to multipoint can be used to create a vector point file from a point cloud. The points can be filtered by class or return and then interpolated to create a raster. + +

Add some background data to give context: + +

+Select Menu File -> Add Data -> Add Data...
+Select ncshape.mdb/streets_wake
+Select ncshape.mdb/lakes
+Select ncshape.mdb/streams
+
+

+Display orthophoto: + +

+Select Menu 'File -> Add Data -> Add Data...'
+Select ./Modeling/ortho_0793_016_ncspm.tif
+
+ +

Create Multipoint files from .las point cloud and interpolate DSM

+
Turn on the 3D Analyst Extension
+Menu -> Customize ->Extensions...
+Open the ArcToolbox
+Select '3D Analyst->Conversion->From File->LAS to Multipoint'
+Set 'Input' to 'tile_0793_016_spm.las'
+Set 'Output Feature Class' to '.\Modeling\lidar_first'
+Set 'Average Point Spacing' to value listed in Files tab of LAS dataset properties, noted earlier.
+Leave the 'Input Class Codes' empty
+For 'Input Return Value', uncheck 'ANY_RETURNS' and check '1'
+Set 'Coordinate System' to 'NAD_1983_StatePlane_North_Carolina_FIPS_3200' (you can type 3358 in the search window)
+Click 'OK'
+
+ +

+Interpolate DSM: + +

+Check out a Geostatistical Analyst Extension license
+Turn on the Geostatistical Analyst Extension
+Menu -> Customize ->Extensions...
+Add Geostatistical Analyst toolbar by right clicking on the empty space next to the Main Toolbar -> check Geostatistical Analyst
+Select 'Geostatistical Analyst Toolbar->Geostatistical Wizard'
+Under 'Deterministic Methods' select 'Radial Basis Function' 
+Set 'Source Dataset' to 'lidar_first'
+Set 'Data Field' to 'Z' (or 'Shape.Z')
+Click 'Next'
+Under 'General Properties->Kernel Functions' select 'Spline with Tension'
+Click 'Finish'
+Click 'OK' to close report
+
+ +

+Find out what areas have multiple returns: +

+Select '3D Analyst->Conversion->From File->LAS to Multipoint'
+Set 'Output Feature Class' to '.\Modeling\lidar_multi'
+Fill the rest as before but in 'Input return values', uncheck 'ANY_RETURNS' and check all values greater than 1. (2-8)
+
+ +Overlay result with orthophoto. Where do we have multiple returns? + +

Optional - display the multiple return data as points in ArcScene

+Start ArcScene, add lidar_multi and manipulate with the 3D scene. + + + +

FYI: Handling LAS data in ArcGIS

+There are three different formats (datasets) that can be used to manage and work with your lidar data in ArcGIS +

1. LAS Datasets

+To import LAS files into ArcGIS, run the Create LAS Dataset tool in the Data Management toolbox. +This will prompt you to load all of your LAS files and create a dataset from them. +You can then use the LAS Dataset to Raster tool in the Conversion toolbox to create a raster DEM. +See ArcGIS help. + +

2. Mosaics

+You can also import LAS using the Add Rasters to Mosaic Dataset tool. +See ArcGIS help. + +

3. Terrains

+The Terrain Wizard in ArcCatalog. Create a feature dataset inside a geodatabase. +Import your LAS files using the LAS to Multipoint tool in the 3D Analyst. +Save the multipoint feature class in your new feature dataset. +Right click on the feature dataset and select New/Terrain to launch the Terrain Wizard. +See ArcGIS help here +and here. +

+ +

+ + + +
+
+ + + diff --git a/arcgis/viewshed_solar.html b/arcgis/viewshed_solar.html new file mode 100644 index 00000000..bdf061ee --- /dev/null +++ b/arcgis/viewshed_solar.html @@ -0,0 +1,284 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Viewshed and solar radiation analysis

+

Resources: +ESRI virtual campus + +

+Create a ./Viewshed folder on your computer
+Start ArcMap
+Load the Spatial Analysis Extension
+
+ + +

Viewshed Analysis

+ +
+Add the raster elev_ned
+Add the point feature class fire_pt
+
+ +

+Use Viewshed tool (not Viewshed 2) to compute the area visible from the fire_pt location. +

+Open the ArcToolbox
+ToolBox Spatial Analyst Tools->Surface->Viewshed 
+Set input surface to elev_ned
+Set observer feature to fire_pt 
+Give your viewshed a name, and store it in your ./Viewshed folder
+Click OK to run the analysis
+
+ +

+What is the ground elevation at the fire_pt site?
+In the output (viewshed) raster the visible cells are given a value of 1, +while those not visible are assigned a value of 0.
+How many cells are visible in this view shed?
+How much area (in sq. meters) do these visible cells represent?

+ +

Rerun the viewshed, with elevation offset at the fire_pnt site at +60 m. +

Add the field OFFSETA to the fire_pt attribute table. +

+right mouse click on the fire_pt layer > Open Attribute Table
+left mouse click on the first icon in the Attribute Table toolbar > Add Field
+Type the name OFFSETA
+Click 'OK'
+In the Editor Toolbar (open if not visible) left mouse click on the Editor button > Start Editing
+Choose the layer fire_pt and click 'OK'
+In the fire_pt Attribute Table type '60' in the OFFSETA column
+In the Editor Toolbar left mouse click on the Editor button > Stop Editing
+Click 'Yes' to save your edits
+
+

Rerun the viewshed +

+ToolBox Spatial Analyst Tools->Surface->Viewshed 
+Set input surface to elev_ned
+Set observer feature to fire_pt 
+Give your viewshed a name, but different from the first one and store it in your ./Viewshed folder
+Click OK to run the analysis
+
+

+Now, how many cell are visible in this viewshed?
+How much additional area was gained by adding the 60 m of elevation +to the observer?
+

+Rerun the viewshed again, using the +60 m observer, but this time limit your search radius to 2000m. +

Add the fields RADIUS1 and RADIUS2 to the fire_pt attribute table. +

+right mouse click on the fire_pt layer > Open Attribute Table
+left mouse click on the first icon in the Attribute Table toolbar > Add Field
+Type the name RADIUS1
+Click 'OK'
+Add another column and name it RADIUS2
+In the Editor Toolbar (open if not visible) left mouse click on the Editor button > Start Editing
+Choose the layer fire_pt and click 'OK'
+In the fire_pt Attribute Table type '0' in the ORADIUS1 column and '2000' in the RADIUS2 column
+In the Editor Toolbar left mouse click on the Editor button > Stop Editing
+Click 'Yes' to save your edits
+
+

Rerun the viewshed +

+ToolBox Spatial Analyst Tools->Surface->Viewshed 
+Set input surface to elev_ned
+Set observer feature to fire_pt 
+Give your viewshed a name, choose a different namet one and store it in your ./Viewshed folder
+Click OK to run the analysis
+
+

+How many cells are visible in this viewshed? +How much ground area is visible? +

+Restrict the search area to an annulus 1000 m wide (from 1000m to 2000m) and restrict the search azimuth to the arc from NE (45 deg) to SE (135 deg). +

+ +

+add two fields: AZIMUTH1 and AZIMUTH2 (as doubles) to the fire_pt Attribute table (see instructions above)
+Start editing (see instructions above)
+modify RADIUS1 and RADIUS2 fields: RADIUS1 =  '1000', RADIUS2 =  '2000', 
+and populate: AZIMUTH1=45, and AZIMUTH2=135.
+
+

Rerun the viewshed (see instructions above) +

+How many cells and area are visible now? +

+To expand our repertoire a bit, let's next add our own data, +but instead of a single point, let's add a pair to the project
+(so that you know how to do this) and run one more +(just one, I promise) viewshed analysis.
+

+You can do this with any point data you wish, but if you don't have one handy,
+here's the coordinates (in NC State Plane NAD83) for Red Hat's Headquarters +over on Centennial Campus: + +

+x=638898 and y=224528
+
+ +

+And for Jordan Hall on Central Campus: + +

+x=638887, y=225365.
+
+ +

+Put these values into a text file (use e.g. Notepad but avoid MS Word). and save the file in a known location (with the extension .txt)
+Your text file should look something like this: + +

+X,Y
+638898,224528
+638887,225365
+
+ +

+Load your points to ArcGIS: + +

+Add XY Data. (File->Add Data->Add XY Data...)
+browse for your saved .txt file
+Set 'X Field' to 'X' and 'Y Field' to 'Y'
+Click 'OK'
+Click 'OK' for the warning
+
+ +

+Convert it from the resulting event to a shape file. + +

+ right mouse click on the .txt Events
+Data > Export Data
+save in the ./Viewshed folder and click 'Yes' to add the layer to the project
+Open the Attribute Table of newly created shapefile
+Add the fields OFFSETA, VERT1, VERT2, AZIMUTH1, and AZIMUTH2. 
+Populate (in the editing mode)
+point FID=0: 
+OFFSETA=35m, VERT1=12, VERT2=-12, AZIMUTH1=300, AZIMUTH2=60. 
+For point FID=1: 
+OFFSETA=40m, VERT1=12, VERT2=-12, AZIMUTH1=150, AZIMUTH2=240. 
+Save the edits
+
+
+ +

+Run a viewshed on your new data with these attributes. + +For an observer standing atop the Red Hat Building, +what do you think that this view shed result represents?
+Can the observer see Jordan Hall on the NCSU Central Campus?
+Do you think an observer standing atop Jordan Hall could see +his counterpart on the Red Hat Building?
+ +

Solar radiation analysis

+Perform solar radiation analysis in Spatial Analyst: + +
+Display the Arc Toolbox. 
+Select Geoprocessing->Environments. 
+Under Workspace set the Current Workspace to point to the ncrast,mdb geodatabase
+
+ +

+Compute the incident solar radiation for the summer solstice (day number=172) + +

+Spatial Analysis Toolbox > Solar Radiation > Area Solar Radiation
+use elev_ned for the input raster
+Set the output raster = ned_solar172
+Set the latitude = 35.7716 (~for Raleigh, NC)
+Set the Time Configuration to Within a day
+Set the Date/Time settings-Day number of year to 172
+the remainder of the fields can be left at their default values.
+
+ +

+Repeat the above steps to generate a incident solar radiation raster +for the winter solstice (day number=356).
+Note: the computation can take some time. +

+What are the data units for the resulting incident radiation maps?
+

+Determine the difference in radiation energy between the two solstice extremes +by differencing the two radiation rasters just created.
+ +

+Spatial Analyst > Map Algebra > Raster Calculator
+Set output to solar_diff
+In the calculator's expression field type:
+"ned_solar172" - "ned_solar356"
+
+ +

+Change the color ramp to one that emphasizes contrast in the difference raster.
+Where do you see the greatest differences in insolation between summer and winter?
+Where does the least difference in annual insolation occur?
+Do these differences make sense? Explain.
+ +

+ + + +
+
+ + + diff --git a/arcpro/buffers_cost.html b/arcpro/buffers_cost.html new file mode 100644 index 00000000..045d8d5c --- /dev/null +++ b/arcpro/buffers_cost.html @@ -0,0 +1,268 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Buffers, cost surfaces, least cost path

+

Resources: +ESRI Academy (Formerly ESRI virtual campus) +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +Adjust the colors and symbology of displayed layers to match the cartographic standards (lakes are displayed in blue etc.) + +

+To constrain analyses in a similar manner as g.region, +set the spatial extent using the options under Environments, for example:
+to constrain analyses results to the extents defined by intersection of input features:
+ +

+Analysis tab on the ribbon Geoprocessing->Environments-> 'Processing extent'
+Choose 'Intersection of Inputs' from the drop down menu.
+Click 'Run'
+
+ + + +

Find developed areas close to lakes

+Create the buffers: + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+Select 'lakes'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+Select 'landcl96'
+In the Geoprocessing pane, search for and select the 'Euclidean Distance' tool
+Set 'Input raster' to 'lakes'
+Set Output distance raster' to 'lk_dist'
+Set 'Maximum distance' to '500'
+Leave the rest as defaults 
+Click 'Run'
+
+ +

+Select the locations that overlay developed areas: + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: SetNull( "landcl96" > 2, "lk_dist")
+Set the Output raster to 'dev_lakes'
+Click 'Run'
+
+ +

Compute cost surface from accident based on speed limits

+ +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+Select 'streets_wake'
+In the Geoprocessing pane, search for and select the 'Polyline to Raster' tool
+Set 'Input Features' to 'streets_wake'
+Set 'Value field' to 'SPEED'
+Set 'Output Raster Dataset to 'str_speed'
+Set Cellsize to 30
+Leave the others as defaults 
+Click 'Run'
+
+ +

+Verify the working directory then modify mask and cell size: + +

+Analysis tab on the ribbon Geoprocessing->Environments-> 'Workspace' 
+verify workspace is set to the assignment  gdb you created at the begining of this assignment
+Under 'Raster Analysis' set the 'Cell Size' to 'Same as layer str_speed'
+Under 'Raster Analysis' set the  'Mask' to 'boundary_wake' in the ncshape.gdb
+Click 'Run'
+
+ +

+Assign travel time per cell in hours, compute cost surface.
+Assign null values a speed of 5. + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: Con(IsNull("str_speed"),5,"str_speed") 
+Set the Output raster to 'str_speed2'
+Click 'Run'
+
+ +

+Calculate the travel time and cost surface. +

+In ArcGIS cost is defined per map unit (meters in this case). +We create a cost raster where cost is time to cross one map unit. +Where does the 0.00062137 constant come from? +

+Create travel time +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: 0.00062137 / "str_speed2"
+Set the 'Output raster' to str_trv
+
+

+Create a fire location +

+Browse to your project GDB in the 'Catalog' pane
+right click->new->feature class
+set name to 'fire_pt'
+select 'point'
+click 'finish'
+add the layer to your map
+From the 'edit' ribbon->'features' group->'Create'
+From the 'create features' pane->selec fire_pt
+RMC on the map-> 'Absolute x,y,x'
+paste '634886' for x and '224328' for y.  Hit the enter key to add the point
+'Edit' ribbon->'manage edits' group->save.
+clear the selection in the 'selection' group of the 'edit 'window
+
+

+Create cost surface +

+In the Geoprocessing pane, search for and select the 'Cost Distance' tool
+Set 'Input raster or feature source data' to 'fire_pt'
+Set 'Input Cost raster' to 'str_trv'    
+Set 'Output distance raster' to 'str_cost'
+Set 'Output backlink raster' to './Buffers_cost/backlink'
+Leave the rest as defaults
+Click 'Run'
+
+ +

Find cost from selected firestations

+Find cost +

+

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+Select 'firestations'
+In the Geoprocessing pane, search for and select the 'Sample' tool
+Set 'Input rasters' to 'str_cost'
+Set 'Input Location raster or point features' to 'firestations'
+Set 'Output table' to 'station_costs'
+Leave everything else as defaults
+Click 'Run'
+
+ +

+Add the table of costs (NOTE: this should be added automatically at the bottom of the Contents pane). +However, if the table does not get added: +

+
+Map->layer-> Add Data ->
+Select 'station_costs' from your project GDB
+
+ +

+Open the station_costs table and sort on the field 'STR_COST_Band_1': + +

+RMC 'station_costs' -> Open
+RMC column named 'STR_COST_Band_1' and choose 'Sort Ascending'
+Note the range of cost values.
+Close the table
+
+ +

+Find shortest path from nearby firestations.
+Note: create the firestations as a shapefile if the below +does not work with geodatabase firestations. + +

+In the Geoprocessing pane, search for and select the 'Cost Path' tool
+Set 'Input raster or feature destination data' to 'firestations'
+Set 'Destination field' to 'OBJECTID'
+Set the 'Input cost distance raster' to 'str_cost'
+Set the 'Input cost backlink raster' to 'backlink'
+Set the 'Output raster' to 'cost_path'
+Set the 'Path type' to 'BEST_SINGLE'   
+Click 'Run'
+
+

+Note: to see the resulting least cost (drive-time) path +you may have to turn off some or most of the layers in your TOC. +How does this compare to the table values? + +

+ + + +
+
+ + + diff --git a/arcpro/data_acquisition.html b/arcpro/data_acquisition.html new file mode 100644 index 00000000..45de8fcf --- /dev/null +++ b/arcpro/data_acquisition.html @@ -0,0 +1,264 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Data Introduction

+

Resources: +ESRI Academy (Formerly ESRI virtual campus) + +ArcGIS Pro tips for Arcmap users +

+Request AGOL account and download latest ArcGIS Pro software. +NCSU Software download page. +

+Make sure you have a Geostatistical Analyst, and 3d or Spatial Analysis Extension license: Project->Licensing. +If you do not have one of these extentions, you will need to work with NCSU IT. +Licenses are allocated through the online organizational account. +

+We will use sample data in geodatabes ncshape.gdb, ncrast.gdb. +If you don't already have them downloaded, you can find the link to gdbs.zip file on Course logistics page or + +here: gdbs.zip +

+You can put the geodatabases in any directory where you have permissions to write. +In these instructions we will refer to this directory C:\Users\myname\Documents\ArcGIS\582data. +

+Move both geodatabases to the directory: C:\Users\username\Documents\ArcGIS\582data +

+In the following instructions: LMC, RMC mean left and right mouse click. + +

Data management

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. Give the project a meaningful name like “Assignment1.” +Set the location to a directory where you have permissions to write. +We will use the default C:\Users\username\Documents\ArcGIS\Projects +On the ribbon, click the View tab. In the Windows group, click 'Reset Panes' and then click 'Reset Panes for Geoprocessing' +(This ensures that the Contents, Geoprocessing and Catalog panes are open and that other panes are closed) + +

+Adding data to ArcGIS Pro: +Add the bridges feature class located in ncshape.gdb to your project. +On the Map tab, in the Layer group, click Add Data. +Browse to, or search for, the dataset you want to add to your map. +Click the dataset to add it to the map. +Examine the descriptive attributes associated with the bridge features. + +

+RMC on the Bridges entry in the Table of Contents and select 'Attribute Table' from
+the context menu.
+
+ +
  • How many attributes (data fields) are associated with the Bridges feature class?
  • +
  • How many bridges are shown in the Bridges feature class?
+ +

+Create a new geodatabase to store data: + +

+Find the Catalog tab on the right side of the ArcGIS Pro map window.
+RMC on “folders” and 'add a new folder' connection to your data folder C:\Users\username\Documents\ArcGIS\582data
+Navigate to and expand your assignment1 project folder connection.
+
+ +

+Copy data from one geodatabase to another: + +

+Open ncshape.gdb geodatabase in the catalog tree.
+LMC on ncshape.gdb to open it.
+
+ +

+Copy a feature class from one geodatabase to another: + +

+Find and RMC bridges->Copy.
+Navigate to the Assignment1 geodatabase; On the geodatabase icon: RMC -> Paste.
+
+

+ +Convert a feature class to a shapefile: + +

+Open ncshape.gdb in the Catalog pane.
+RMC bridges->Export Feature Class To Shapefile.
+Set Output Location to C:\Users\username\Documents\ArcGIS\Projects\Assignment1 (your Assignment 1 folder).
+Set output Feature Class to 'bridges.shp'.
+Click 'Run'.
+
+ +

Data view and symbology

+

+Adding Raster Data into Data Frame: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\username\Documents\ArcGIS\582data\ncrast.gdb and select the elev raster layer, 'OK.'
+
+You can also browse to a dataset in the catalog pane and drag a feature or raster onto the map frame or contents pane. + +

+Turn the Bridges Layers Off: + +

+LMC the check boxes (to remove the existing checks) next to each
+of the three bridge entries in the TOC.
+
+ +

+Zoom to the elev raster layer: + +

+RMC on elev and select 'Zoom to Layer'
+
+ +

+Change color scheme: + +

+RMC elev-> and select 'Symbology'
+Change the Color Ramp (Color Scheme drop down menu) to one that
+represents elevation intuitively (it makes sense to you)
+
+ +

+Add hillshade data into the data frame: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Select elev_sh from the ncrast.gdb geodatabase and click 'OK'
+
+ +

+Change the transparency of the hillshade: + +

+Select the elev_sh layer in the contents window
+Select the 'Appearance' tab from the top ribbon
+Set Transparency to 70% in the 'Effects' group of the ribbon
+
+ +

+Display vector points and lines: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Add streets_wake, roadsmajor, schools_wake from the ncshape.gdb geodatabase
+Hint: press and hold the control key to add multiple data layers
+
+ +

+Change the line style: + +

+RMC roadsmajor and select 'Symbology'
+Click next to 'symbol' on the line represnting the road symbol
+Select the 'Properties' tab in the symbology pane
+Change the color to red and the width to 1.6
+Click 'Apply'
+
+
+ +

+Change the point style: + +

+LMC directly on the symbol for schools_wake in the Contents pane (shortcut to the
+symbol selector)
+On the 'Gallery' tab in the symbology pane, search or select 'School'
+On the 'Properties' tab in the symbology pane, Change the size to 14
+Click 'Apply'
+
+ +

+Trim the Vector Display to Match the Raster's Geographic Extent: + +

+RMC 'Map' at the top Contents pane
+Select 'Properties'->'Clip Layers'->'Clip to custom extent'
+Expand 'extent of a layer' and select elev or elev_sh raster layer.
+Click 'Apply'
+Click 'OK'
+
+ +

+Your display should now clip the roads and schools data so that these only: +display in the are covered by the elev and hillshade rasters. + +

+Save the map for your report: + +

+Select the 'Share' tab from the top ribbon->Export Group->Map  (Save the file to your Assign1 workspace as pdf or png)
+Click 'Export'
+
+ +

+Exit ArcMap. You can choose to save your project, if you wish, however, it's not necessary. + +

+ + + +
+
+ + + diff --git a/arcpro/data_models.html b/arcpro/data_models.html new file mode 100644 index 00000000..8ef090b1 --- /dev/null +++ b/arcpro/data_models.html @@ -0,0 +1,299 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Data models

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +Please use the export to image method from the previous lesson rather than screen shots of the whole program. + +

Find the geoprocessing tools used in the assignment in theGeoprocessing pane. +You can search or browse the toolboxes. + +

Convert Data from Raster to Raster: change resolution

+ +

+Compare resampling by nearest neighbor for discrete and continuous raster maps: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select elev_ned
+select landcl96
+"OK"
+You can also browse to the dataset in the catalog pane and drag a feature or raster onto the map frame or contents pane.
+
+In the Geoprocessing pane, search for and select the "resample" tool.
+Set 'Input Raster' to 'landcl96'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\landcl_10m'
+Set 'Output Cell Size' for x and y each to '10'
+Set 'Resampling Technique' to 'NEAREST'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the "resample" tool.
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\ned_10m_nn'
+Set 'Output Cell Size' for x and y each to '10'
+Set 'Resampling Technique' to 'NEAREST'
+Click 'Run'
+
+ +

+Check the resampled elevation surface using the aspect map: + +

+In the Geoprocessing pane, search for and select the "aspect" tool.
+Set 'Input Raster' to 'ned_10m_nn'
+Set 'Output Raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\aspect_10m_nn'
+Leave method as 'Planar'
+Click 'Run'
+
+ +

+Reinterpolate DEMs (continuous raster data) using bilinear and bicubic interpolation: + +

+In the Geoprocessing pane, search for and select the "resample" tool.
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\ned_10m_bi'
+Set 'Output Cell Size' for x and y each to '10'
+Set 'Resampling Technique' to 'Bilinear'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the "resample" tool.
+Set 'Input Raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\ned_10m_bc'
+Set 'Output Cell Size' for x and y each to '10'
+Set 'Resampling Technique' to 'Cubic'
+Click 'Run'
+
+ +

+Check the interpolated elevation surface using aspect maps: + +

+In the Geoprocessing pane, search for and select the "aspect" tool.
+Set 'Input Surface' to 'ned_10m_bi'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\aspect_10m_bi'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the "aspect" tool.
+Set 'Input Surface' to 'ned_10m_bc'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\aspect_10m_bc'
+Click 'Run'
+
+ +

+Resampling to lower resolution (downscaling) for continuous field data: + +

+In the Geoprocessing pane, search for and select the "Aggregate" tool.
+Set 'Input raster' to 'elev_ned'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\el_90m_mean'
+Set 'Cell factor' to 3
+Set 'Aggregation technique' to 'MEAN'
+Click 'Run'
+
+ +

+Resampling to lower resolution (downscaling) for discrete categories: + + +

+In the Geoprocessing pane, search for and select the "resample" tool.
+Set 'Input raster' to 'landcl96'
+Set 'Output raster' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\landcl_mode'
+Set 'Output Cell Size' for x and y each to '90'
+Set 'Resampling technique' to 'Majority'
+Click 'Run'
+
+ +

Convert Data from Vector to Raster using a working region

+Convert SW Wake subarea of geology layer to 30m raster. + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+Select 'geology'
+Select 'swwake_10m'
+
+In the Geoprocessing pane, search for and select the "Polygon To Raster" tool.
+Set Input Features to 'geology'
+Set Value Field to 'GEO_NAME'
+Set Output Raster Dataset to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\rast_geo'
+Set Cellsize to 30
+Leave the remaining fields as their defaults
+Click 'Run'
+
+ +

+Adjust the working region: + +

+Click 'Environments' tab (top of geoprocessing pane pane)
+Under 'Processing Extent' Set the processing extent to 'Same as layer' and select 'swwake_10m'
+Click 'Run'
+
+ +

+Convert SW Wake subset of streets_wake layer +to 30m raster representing speed limit: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to 'C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb'
+Select 'streets_wake'
+
+In the Geoprocessing pane, search for and select the "PolyLine To Raster" tool.
+Set Input Features to 'streets_wake'
+Set Value Field to 'SPEED'
+Set Output Raster Dataset to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\rast_spdroads'
+Set Cellsize to 30
+Leave the remaining fields as their defaults
+Click 'Run'
+
+ +

+Adjust the working region: + +

+Click 'Environments' tab (top of geoprocessing pane pane)
+Under 'Processing Extent' Set the processing extent to 'Same as layer' and select 'swwake_10m'
+Click 'Run'
+
+ +

+Convert point data to raster. +We will try this without loading the point layer into the map first: + +

+In the Geoprocessing pane, search for and select the "Point To Raster" tool.
+Set Input Features to 'C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb\Schools_Wake'
+Set Value Field to 'CORECAPACI'
+Set Output Raster Dataset to sw_rast
+Set Cellsize to 200
+Click 'Run'
+
+ +

Convert Data from Raster to Vector

+ +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to 'C:\Users\myname\Documents\ArcGIS\582data\ncsrast.gdb'
+Select 'bas_50k'
+# The raster 'bas_50k' is floating point, convert the values to integer (check with RMC on 'bas_50k'-->Properties. Look at 'Pixel Type')
+
+In the Geoprocessing pane, search for and select the "Raster Calculator" tool.
+Type in the expression  Int("bas_50k")
+Set Output to bas_50kint
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the "Raster To Polygon" tool.
+Set Input Raster to 'bas_50kint'
+Set Field to 'Value'
+Set 'Output Polygon Features' to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\Assignment2a.gdb\bas_50Kpoly
+Uncheck 'Simplify Polygons' if checked.
+Click 'Run'
+
+ +

+Export data to format readable by other software

+ +Export vector data to shapefile: + +
+From the Catalog Tab"
+Navigate to and open: ncshape.gdb
+RMC roadsmajor->Export->To Shapefile
+Set Output Location to 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a'
+Set output Feature Class to 'roads_shp'
+Click 'Run'
+
+ +

+Export raster data to grid ascii: + +

+In the Geoprocessing pane, search for and select the "Raster to ASCII" tool.
+Set Input Raster to ncrast.gdb\landcl96
+Set output ASCII to: 'C:\Users\username\Documents\ArcGIS\Projects\Assignment2a\landcl96.asc
+Click 'Run'
+
+Navigate to and open landcl96.asc in NotePad
+Examine the contents
+Close landcl96.asc
+
+ +
+ + + +
+
+ + + diff --git a/arcpro/data_visualization.html b/arcpro/data_visualization.html new file mode 100644 index 00000000..ffd58a06 --- /dev/null +++ b/arcpro/data_visualization.html @@ -0,0 +1,405 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Data display and visualization

+

Resources: +ESRI Academy (Formerly ESRI virtual campus) +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +

Viewing data in 2D

+ +

Raster data symbology

+Display land use classes using custom color, add labels: + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'landcl96'
+'OK'
+RMC landcl96->Symbology
+In the 'symbology' pane, in the Label column, LMC on the label number to replace numbers 1-7 with these labels, respectively:
+developed
+agriculture
+herbaceous
+shrubland
+forest
+water
+sediment
+
+In the 'symbology' pane, LMC on the color column boxes and replace the color for each land use with a more intuitive one.
+
+ +

+Save as layer to preserve the new color scheme and labels: + +

+RMC on the landcl96 entry in the Contents ->'Sharing'->'Save as layer file...'
+Save as landcl96.lyr in your assignment folder
+
+ +

+Display only categories 1 and 2 from the land use map: + +

+RMC landcl96->Symbology
+In the 'symbology' pane, LMC to select items 3 - 7 (herbaceous - sediment)
+RMC Remove button to remove values 3 through 7
+
+ +

+Display only elevation higher than 100 m over a geology map: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'geology'
+select 'elev'
+'OK'
+RMC elev->Symbology
+In the 'Symbology' pane, Change 'Strech' to 'Classify'
+Set the method to 'Equal Interval'
+Set Classes to 10
+On the 'Advanced symbol options' tab of the 'Symbology' pane->'Data Exclusion'-> enter '0-100'
+Select the "Appearance" tab from the top ribbon
+Set Transparency to 50% in the "Effects" group of the ribbon
+
+ +

+Change colors for raster maps: +

+RMC elev->Symbology
+In the 'Symbology' pane, change the color scheme to one of the predifined elevation ramps
+(hover over each scheme to see the color ramp name)
+
+ +

+Use a histogram equalized color table to display topographic slope: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'slope'
+'OK'
+RMC slope->Symbology
+Choose the 'Green to Red' color ramp
+Change the Stretch Type to 'Histogram Equalize'
+
+ +

Legend, scale, grid

+

+Make a map with a legend, scale and grid: + +

+Turn off all layers except landcl96 in the Contents pane
+
+

+add the streams layer +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select 'streams'
+'OK'
+Change the streams color to blue 
+RMC streams->Symbology
+Click the symbol line to open the 'Format line symbol' option
+Click the 'Properties' tab
+Change the color to a blue and line width to 1.25
+'Apply'
+Toggle to Layout View: 
+Select the 'Insert' tab from the top ribbon, project group->'New Layout'
+Select a template appropriate for your map
+On the topr ribbon->Insert tab->Map frames group-> add a 'Map Frame' 
+by dragging a box on the layout
+
+ +

+Assign a fixed scale for the layout: + +

+In the map layout window, Contents pane, RMC 'Map Frame'->Properties
+Click the 'Dispay Options' tab in the 'Element/Format Map Frame' pane
+Select 'Fixed Scale' under constraint and set it to 1:50,000
+
+ +

+Add a legend
+ +

+On the 'Insert' tab in the 'Map Surrounds' group, click 'Legend'
+Click and drag on the layout to create the legend
+RMC on your new legend->Properties.  A new 'Element' pane will open
+In the legend/Element pane, Click to show on legend title
+Replace the text "Legend" with "Land Classification" 
+
+On the 'Display' tab of the element pane
+Add a Legend Frame Border (select one as you feel appropriate)
+Add a white Frame Background. Set the cap to X:0.1in and Y:0.1in (as in the Frame Border)
+Adjust the border x and y gap to 0.1 in each
+Drag the legend to a more appropriate location, and resize it to make it "fit" into your map.
+
+ +

+Add a scale bar: + +

+On the 'Insert' tab, in the 'Map Surrounds' group, click the 'Scale Bar' button
+Select a scale bar (your choice)
+Click and drag on the layout to create the scale bar.
+RMC on the scale bar-> Properties 
+In the 'Element' pane, set Division Units to kilometers
+Set the division value to a whole number and set 'Resize Behavior to 'Adjust width'
+Place and resize the legend as you see fit for your map design. Make sure that the numbers on the scale are reasonable (round numbers preferably). 
+
+ +

+Add a grid: + +

+On the 'Insert' tab, in 'the Map Frames' group, click the 'Grid' button
+select a 'Measured Grid' option
+
+ +

+Display roads with labels: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select 'roadsmajor'
+'OK'
+RMC roadsmajor->Symbology
+Click the symbol line to open the 'Format line symbol' option
+Search or browse the 'Gallery' and change the symbol to Expressway 
+Select roadmajor in the contents pane. On the ribbon, under Feature Layer, click the Labeling tab, and click 'Label'
+In the 'Label class' group, select 'Road_Name' from the dropdown.
+Change the font and size in the 'Text Symbol' group.
+Use the 'Label placement' group to select 'North American Streets'
+
+Or, RMC roadsmajor->Labeling Properties
+Language should be 'Arcade'
+Expression $feature.ROAD_NAME
+Font, size and placement options can be changed in this pane as well.
+Find and use the 'Halo' option under 'Symbol'
+
+Export the layout to pdf
+Share tab on the ribbon->export group->layout
+
+ +

Compare hillshades

+ +

+

+Go back to the Map window and remove all the layers from TOC (or you can create a new project)
+Add 'elev' from the ncrast geodatabase
+Change the color ramp for elev to an appropriate elevation color scheme
+
+

+Compare different types of hillshade effects from an elevation map +

1. Hillshade generated using the 3D Analyst Extension. + +

+In the Geoprocessing pane, search for and select the "hillshade" tool.
+Select elev as input, hillsh_el as output, z factor=3
+Click 'Run'
+The new hillshade should have been added to the contents pane above your elev raster
+If not, drag the hillshade above the elev raster
+Change the Hillshade to 50% transparency
+
+ +

+2. Hillshade generated with the "Raster Functions" tool: + +

+On the Analysis ribbon --> Raster group->'Raster Functions' pane
+Expand the Surface functions and select the Hillshade option (or search for Hillshade in the Raster Functions pane).
+Select 'elev' as the raster
+Set the Z to 3 to exaggerate the height variation in the terrain
+Click 'Create new layer' to create a new layer in the current map.
+(Note that this is only a new display of the processed data—it is not a new raster dataset)
+The new hillshade should have been added to the contents pane above your elev raster
+If not, drag the hillshade above the elev raster
+Change the Hillshade to 50% transparency
+
+ +

+To examine the differences, zoom into an area of the data and toggle the hillshade layer +on and off (by repetitively checking and unchecking the layer in the TOC). The rapid image interchange emphasizes differences. +

+In order to copare the results with elev with no hillshade applied you can load the elev layer again, without checking the hillshade effect in Symbology tab + +

Viewing data in 3D using a Scene

+In ArcGIS Pro, a 3D map is called a scene. +A scene can be viewed in either global or local mode. +Global mode is best for very large study areas. Local mode is best for smaller study areas. +You can view any scene as a global scene or a local scene by clicking the Global button or the Local button in the View group on the View tab. +Start a Local Scene: + +
+With the 'elev' raster still in the map
+View tab on the ribbon->view->convert->'To Local Scene'
+A new 'Map_3d' window tab should open
+
+ +

+Or create a new Local Scene: + +

+Start a new projectSelect 'Local Scene' from the templates
+On the Map tab, in the Layer group, click 'Add Data'
+Add 'ncrast.gdb\elev'
+
+ +

+Display 2-dimensional data as a 3-D surface (to render in 3-D): + +Add a ground elevation surface: +

+On the Map tab, in the Layer group, click 'Add Data'->'Elevation source'
+Add 'ncrast.gdb\elev'
+
+ +

+To change the vertical exaggeration (z-value multiplier, default is 1) for a layer: + +

+In the Contents pane, under Elevation Surfaces, click Ground
+The Elevation Surface contextual tab set appears on the ribbon
+Under Elevation Surface, click the Appearance tab
+In the Drawing group, for Vertical Exaggeration, type 10
+
+ +

+Drape a vector feature over the 3-D (raster) surface: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Add  'ncshape.gdb\streets_wake'
+It may add the layer to the 3d layers in the contents pane.  
+If so, Drag the layer to the 2d Layers group above 'elev'
+
+ +

+this action will both drape the vector streets on the raster surface, +and clip the extent of the much larger streets data to that of the surface. + +Change the color ramp for a layer: + +

+RMC 'elev'-> Symbology
+Use the 'Gallery' tab to scroll through the available ESRI-provided ramps.
+Choose one of the color ramps
+
+ +

+Change the background color (useful for enhancing visualization). + +

+RMC 'Scene' in the 'Contents' pane->Properties ***May be Map_3d instead of scene***
+Go to the 'General' tab
+Choose the black color patch from the color palette drop-down menu
+Click 'OK'.
+
+ +

+Adjust the direction (azimuth and altitude) and contrast of the light applied the surface: + +

+Reset the background color to white (refer to previous task)
+In the 'Contents' pane, under 'Elevation Surfaces', click 'Ground'
+The 'Elevation Surface' contextual tab set appears on the ribbon
+In the 'Surface' group, Check 'Shade relative to light position'
+
+RMC 'Map_3d' in the 'Contents' pane->Properties
+Go to the 'Illumination' tab
+Reposition the light source by changing altitude and azimuth
+Click 'OK'
+
+

+ + +

+Adjust the lighting contrast: + +

+RMC 'Map_3d' in the 'Contents' pane->Properties
+Go to the 'Illumination' tab
+Use the contrast slider to adjust contrast value
+Click 'OK'
+
+ + + +
+ + + +
+
+ + + diff --git a/arcpro/hydrology.html b/arcpro/hydrology.html new file mode 100644 index 00000000..7ea2835c --- /dev/null +++ b/arcpro/hydrology.html @@ -0,0 +1,217 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Flow routing and watershed analysis

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +

Derive flow pattern and streams from 10m NED

+ +Fill the sinks in DEM: + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'elev'
+'Ok'
+In the Geoprocessing pane, search for and select the 'Fill' tool
+Set 'Input surface raster' to 'elev'
+Set 'Output Surface Raster' to 'Fill_elev1'
+Click 'Run'
+
+ +

+Compute flow direction: + +

+In the Geoprocessing pane, search for and select the 'Flow Direction' tool
+Set 'Input surface raster' to 'Fill_elev1'
+Set 'Output flow direction raster' to 'FlowDir_fill1'
+Click 'Run'
+
+ +

+Compute flow accumulation: + +

+In the Geoprocessing pane, search for and select the 'Flow Accumulation' tool
+Set 'Input flow direction raster' to 'FlowDir_fill1'
+Set 'Output accumulation raster' to 'FlowAcc_fill1'
+Click 'Run'
+
+ +

+Change the color table to something better - +e.g. STRECHED yellow-green-blue, histogram equalized (Strech type) works well.
+If the resolution of your screen is not good enough to see connected streams, +zoom-in to see the detail.
+Compare with streams digitized from high resolution orthophoto: + + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select 'streams'
+'OK'
+
+ +

+Change color to red: how do the derived streams fit with the digitized data? + +

+Derive drainage basins: +

+In the Geoprocessing pane, search for and select the 'Basin' tool
+Set 'Input d8 flow direction raster' to 'FlowDir_fill1'
+Set 'Output Raster' to 'Basins_fill1'
+Click 'Run'
+
+ +

+Derive flow path length: + +

+In the Geoprocessing pane, search for and select the 'Flow Length' tool
+Set 'Input flow direction raster' to 'FlowDir_fill1'
+Set 'Output Raster' to 'flowlength'
+Click 'Run'
+
+ +

Derive stream network and watersheds from 30m NED

+ + +First check whether we have sinks, if yes, fill them in. +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'elev_ned'
+In the Geoprocessing pane, search for and select the 'Flow Direction' tool
+Set 'Input surface raster' tp 'elev_ned' 
+Set 'Output flow direction raster' to 'FlowDir_el30'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the 'Sink' tool
+Set 'input d8 flow direction raster' to 'FlowDir_el30'
+Set 'output raster' to 'sinks30'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the 'Fill' tool
+Set 'Input surface raster' to 'elev_ned'
+Set 'Output Surface Raster' to 'Fill_elev30'
+Click 'Run'
+
+Compute flow direction and flow accumulation +
+In the Geoprocessing pane, search for and select the 'Flow Direction' tool
+Set 'Input surface raster' to 'Fill_elev30'
+Set 'Output flow direction raster' to 'FlowDir_fil30'
+Click 'Run'
+
+In the Geoprocessing pane, search for and select the 'Flow Accumulation' tool
+Set 'Input flow direction raster' to 'FlowDir_fil30'
+Set 'Output accumulation raster' to 'Flowacc_fil30'
+Click 'Run'
+
+ +Extract streams from flow accumulation using map algebra +
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression= Con( "Flowacc_fil30" > 10000, 1, 0 ) output=Streams_der30
+Click 'Run'
+
+Create stream links from the stream raster and derive watersheds draining into these stream links: +
+In the Geoprocessing pane, search for and select the 'Stream Link' tool
+Set 'Input stream raster' to 'Streams_der30'
+Set 'Input flow dir raster' to 'FlowDir_fil30'
+Set 'Output' to 'Source30'
+
+In the Geoprocessing pane, search for and select the 'Watershed' tool
+Set Input d8 flow direction raster to 'FlowDir_fil30'
+Set 'Input raster or Pour point data' to 'Source30'
+Leave 'Pour point field' set to 'value'
+Set 'Output' to 'Watersheds30'
+
+ + + +
+ + + +
+
+ + + diff --git a/arcpro/hydrology_erosion.html b/arcpro/hydrology_erosion.html new file mode 100644 index 00000000..9ffb3fa2 --- /dev/null +++ b/arcpro/hydrology_erosion.html @@ -0,0 +1,309 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Erosion modeling

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +

Compute soil detachment rate using USLE3D

+ +Compute a map of soil detachment rate using USLE3D equation which assumes that there is no deposition.
+This represents detachment limited sediment transport by overland flow.
+
+E = RKLSCP
+
+

where +

    +
  • E is the annual soil detachment rate (soil loss)
  • +
  • R is the rainfall
  • +
  • K is the soil
  • +
  • C is the land cover
  • +
  • P is the preventive measures factor
  • +
  • LS = 1.4 * (U/22.1)**0.4 * (sin (slope)/0.09)**1.2
    +LS is the topography factor, U is contributing area per unit width (function of flow accumulation)
  • +
+

+For units and explanation of constants see Erosion modeling notes
+ +

+First compute slope, and flow accumulation for the elevation raster map e_lid792 (NOT elid_792): +--Leave other values defaul if not specified-- +

+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'e_lid792'  (NOT elid_792)
+"Ok"
+
+ +

+Compute slope_1m map using the Slope function, we will use it later: + +

+In the Geoprocessing pane, search for and select the 'Slope' tool
+input'e_lid792
+output=slope_1m
+Keep 'DEGREES' for output measurement
+
+ +

+Compute the flow accumulation map Flowacc: +

+In the Geoprocessing pane, search for and select the 'Fill' tool
+input=e_lid792 
+output=Fill_e_lid
+
+In the Geoprocessing pane, search for and select the 'Flow Direction' tool
+input=Fill_e_lid 
+ouput=FlowDir_fil
+
+In the Geoprocessing pane, search for and select the 'Flow Accumulation' tool
+input=FlowDir_fil 
+output=Flowacc
+
+ +

LS factor

+Build an expression in the Spatial Analyst Raster Calculator for lsfac map +using the Flowacc and slope_1m layers you just generated.
+

+Note that the lsfac map represents the topographic factor LS used in the USLE3D model.
+Flowacc map multiplied by resolution is the contributing area per unit width U. + +

+Type in the expression for lsfac layer (make sure you have spaces around operators).
+Slope should be in radians, +flowaccumulation is in number of cells so we multiply by resolution: + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+1.4 * (Power("Flowacc" * 1. / 22.1 , 0.4) * Power(Sin("slope_1m" * math.pi/180.0) / 0.09, 1.2))
+Set the 'output raster' to 'lsfac'
+Click 'Run'
+
+ +

Soil loss

+ +Now build the expression for soil detachment rate E (soil loss) s_loss. From the formula +
+E = RKLSCP
+
+We computed LS factor +R factor is considered to be constant and set to 270.0 +K factor values can be added as a layer ncrast.gdb/soils_kf +C factior values can be added as a layer ncrast.gdb/cfactb +P factor (prevention measures) is here taken to = 1. +

+Multiplying all the factors in Raster Calculator we will compute the raster map of erosion rate +

+Add ncrast.gdb/soils_kf
+Add ncrast.gdb/cfactb
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+270.0 * "cfactb" * "lsfac" * "soils_kf"
+Set the 'output raster' to 's_loss'
+
+ +Adjust color scheme for the s_loss map - histogram equalized stretch type may be needed +Find average soil loss rate in the area from the s_loss map (in Properties:Source). + +

USPED model

+Compute net erosion and deposition as a divergence of sediment flow vector field.
+Note that custom color tables that cover entire range of values +including negative are important in this section. + +

+We have already computed slope_1m and flowaccumulation, but we will also need direction of flow.
+Compute aspect_1m map (direction of flow, direction of gradient vector) using the Aspect function: + +

+In the Geoprocessing pane, search for and select the 'Aspect'
+input=e_lid792 
+output=aspect_1m
+
+ +

+Build an expression for sflowtopo (topographic factor LS for sediment flow T) +using the Raster Calculator.
+For the exponents use m=n=1, resolution is 1. + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+"Flowacc" * 1. * Sin("slope_1m" * math.pi/180.0)
+output raster = sflowtopo
+
+ +

+OR use m=1.3 and n=1.2 for study areas with extensive rills.
+In this case, channels/streams will have large erosion rates due to high values of flowaccumulation. + + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+(Power("Flowacc" * 1. , 1.3) * Power((Sin("slope_1m" * math.pi/180.0)), 1.2))
+output raster = sflowtopo2
+
+ +

Compute divergence of sediment flow

+First compute components of sediment flow in x and y direction: +Calculate qsx +
+Be sure the 'cfactb' layer from earlier is in your map or you will recieve an error-
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+"sflowtopo" * "soils_kf" * "cfactb" * 270. * Cos((- "aspect_1m" + 450.) * math.pi / 180.0)
+Output raster = qsx
+
+Calculate qsy +
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+"sflowtopo" * "soils_kf" * "cfactb" * 270. * Sin((- "aspect_1m" + 450.) * math.pi / 180.0)
+Output raster = qsy
+
+ +

+Compute components of change in sediment flow in x and y direction +as partial derivatives of sediment flow field, derived from slope and aspect + - see eqs 1,2,3 from here. + +

+In the Geoprocessing pane, search for and select the 'Slope' tool
+input=qsx
+output=Slope_qsx
+In the Geoprocessing pane, search for and select the 'Aspect' tool
+input=qsx
+output=Aspect_qsx
+In the Geoprocessing pane, search for and select the 'Slope' tool
+input=qsy
+output=Slope_qsy
+In the Geoprocessing pane, search for and select the 'Aspect' tool
+input=qsy
+output=Aspect_qsy
+
+Compute qsx_dx and qsy_dy +
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression=
+Cos((- "Aspect_qsx" + 450) * math.pi / 180.0) * Tan("Slope_qsx" * math.pi/180.0)
+output=qsx_dx
+expression=
+Sin((- "Aspect_qsy" + 450) * math.pi / 180.0) * Tan("Slope_qsy" * math.pi/180.0)
+output=qsy_dy
+
+ +

+Finally compute net erosion deposition: + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+expression="qsx_dx" + "qsy_dy"
+output=erdep
+
+ +

+Assign an appropriate color classification scheme to the erdep raster and generate a map for the report.
+ +Note: the differences in the erdep are subtle and the default color table will almost assuredly render
+the erosion deposition map in a way that little detail is revealed.
+You are free to experiment with the the tools in Arc in order to define classification scheme which will +reveal the erosion/deposition pattern.
+Here's an option that should yield pretty good contrast between erosion and deposition: + +

+RMC the erdep layer->Symbology
+Select 'Classify' from 'Primary symbology'
+Set Classes to 11
+Choose a broad, divergent color ramp from the Color Scheme drop down field
+that ranges from brown grading through white to green (brown-green continuous)
+Edit the eleven break values (located in the classes tab) to:
+-250000.00  (data minimum)
+-50.00
+-5.00
+-1.00
+-0.10
+0.10
+1.00
+5.00
+50.00
+330000.00    (data maximum)
+
+ +You should now see the erosion and deposition areas rendered with pretty good contrast. + +
+ + + +
+
+ + + diff --git a/arcpro/interpolation_1.html b/arcpro/interpolation_1.html new file mode 100644 index 00000000..a4dc0f78 --- /dev/null +++ b/arcpro/interpolation_1.html @@ -0,0 +1,272 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation I: methods

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. + +

Compute DEM based on voronoi polygons

+Compute DEM based on voronoi polygons and check it with hillshade.
+Compute and display voronoi polygons with centroids (clear data frame). + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select 'elev_lid792_randpts'
+'OK'
+
+In the Geoprocessing pane, search for and select the 'Create Thiessen Polygons' tool
+Set 'Input Features' to 'elev_lid792_randpts'
+Set 'Output Feature Class' to 'elev_vor.shp'
+Set 'Output Fields' to 'All fields'    
+Click 'Run'
+In the Geoprocessing pane, search for and select the 'Feature to Point' tool
+Set 'Input Features' to 'elev_vor'
+Set 'Output Feature Class' to 'vor_center.shp'
+Leave the 'Inside' box unchecked
+Click 'Run'
+
+ +

+Convert to raster and display with standard elevation color. + +

+In the Geoprocessing pane, search for and select the 'Polygon To Raster' tool
+Set 'Input Feature' to 'elev_vor'
+Set 'Value Field' to 'value_'
+Set 'Output Raster Dataset' to 'elev_vor2m'
+Set 'Cellsize' to '2'         
+Click 'Run'
+
+ +

+Set the Raster Analyst Cell Size to 2m in Environment Settings. + +

+On the top ribbon->'Analysis' tab->'Geoprocessing' group->'Environments'->'Raster Analysis' section
+NOTE: this will set the default cell size to 2 units (meters) for all subsequent processing.
+Set 'Cell Size' to a value of 2 by typing in the box
+Click 'OK'
+
+ +

+Check the result using hillshade. + +

+In the Geoprocessing pane, search for and select the 'Hillshade' tool
+Set 'Input Raster' to 'elev_vor2m'
+Set 'Output Raster' to 'Hillsh_vor_2m'
+Click 'Run'
+
+ +

Interpolate DEM using TIN and check it in a Scene or with hillshade

+First create TIN: + +
+In the Geoprocessing pane, search for and select the 'Create TIN' tool
+Set 'Output TIN' to 'elev_lid792_TIN'
+Set Input Feature Class to 'elev_lid792_randpts'
+Set the 'height field' to 'value_'
+Set 'Type' to 'Mass_Points'
+Click 'Run'
+
+ +

+Interpolate TIN to raster DEM.
+

+In the Geoprocessing pane, search for and select the 'TIN to Raster' tool
+Set 'Input Tin' to 'elev_lid792_TIN'
+Set Output Raster to tinrast_2m
+Change the 'Sampling Distance' to 'CELLSIZE' and sampling value to '2'
+Leave all else as default
+Click 'Run'
+
+ +

+Display as hillshade: + +

+In the Geoprocessing pane, search for and select the 'Hillshade' tool
+Set 'Input Raster' to 'tinrast_2m'
+Set 'Output Raster' to 'Hlshtinrast2m'
+Click 'Run'
+
+ +Alternatively, convert your map to a Local Scene and visualize as described in the previous assignment. + +

Create the Terrain Model using the Terrain Wizard

+

+A terrain dataset is a multiresolution, TIN-based surface built from lidar/sonar/photogrammetric measurements stored as features in a geodatabase. + +

+Create a new feature dataset called 'terrain' in the your assignment 3 geodatabase. +

+In the Geoprocessing pane, search for and select the 'Create Feature Dataset' tool
+Set 'Output geodatabase' to the project geodatabase
+Set 'feature dataset name' to 'terrain'
+Set 'coordinate system' to match elev_lid792_randpts
+click "Run"
+
+ +

+Add the feature class data that will be used to create the terrain +

+In the Geoprocessing pane, search for and select the 'Feature class to feature class' tool
+Set 'input features' to 'elev_lid792_randpts'
+Set 'output location' to 'terrain'
+Set 'output feature class' to 'elev_lid792_rand_fc'
+Click 'Run'
+
+ +

+Run the Create Terrain tool +

+In the Geoprocessing pane, search for and select the 'Create Terrain' tool
+Set 'Input feature dataset' to 'terrain'
+Set 'Output Terrain' to 'elev_lid792_TER'
+Set the 'Average point spacing' to '1' (average distance between points)
+Set 'Pyramid type' to 'Z tolerance'
+Click 'Run'
+
+ +Build Terrain Pyramids +
+In the Geoprocessing pane, search for and select the 'Add terrain pyramid level' tool
+Set 'Input terrain' to 'elev_lid792_TER'
+For 'Pyramid levels definition' type each of the following on a new line:
+1 5000
+2.5 10000
+5 25000
+10 50000
+Click 'Run'
+
+ +

+Using the settings above, the full-resolution data is used in map displays up to a scale of 1:5,000, +Between 1:5,000 and 1:10,000, only the data necessary to achieve an approximate vertical tolerance of 2.5, relative to the full-resolution data, is used. +Between 1:10,000 and 1:25,000, a tolerance of 5 is used. For any scale smaller, a tolerance of 10 is used to display the terrain data. + +

+Add the feature class to the terrain +

+In the Geoprocessing pane, search for and select the 'Add Feature class to terrain' tool
+Set 'input terrain' to 'elev_lid792_TER'
+Set 'input features' to ''elev_lid792_rand_fc'
+Set 'height field' to 'value_'
+Click "Run"
+
+ +

+Build terrain +

+In the Geoprocessing pane, search for and select the 'Build terrain' tool
+Set 'input terrain' to 'elev_lid792_TER'
+Click "Run"
+
+ +Compute a raster DEM from Terrain, +
+In the Geoprocessing pane, search for and select the 'Terrain to Raster' tool
+Set 'Input Terrain' to 'elev_lid792_TER'
+Set Output Raster 'terrast_2m'
+Change the 'Sampling Distance' to 'CELLSIZE' and value to '2' 
+Leave all else as default
+Click 'Run'
+
+ +

Interpolate DEM using IDW and check it with hillshade

+ +Interpolate DEM using IDW: + +
+In the Geoprocessing pane, search for and select the 'IDW' tool
+Set 'Input point features' to 'elev_lid792_randpts'
+Set 'Z value field' to 'value_'
+Set 'Output Raster' to 'elev_idw_2m'
+Leave the other inputs as defaults
+Click 'Run'
+
+ +

+Check the interpolated elevation surface using hillshade: + +

+In the Geoprocessing pane, search for and select the 'Hillshade' tool
+Set 'Input raster' to 'elev_idw_2m'
+Set 'Output Raster' to 'Hillsh_idw_2m'
+
+ +
+ + + +
+
+ + + diff --git a/arcpro/interpolation_2.html b/arcpro/interpolation_2.html new file mode 100644 index 00000000..5949d604 --- /dev/null +++ b/arcpro/interpolation_2.html @@ -0,0 +1,148 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation II

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. + +

Interpolation using splines

+Interpolate elevation surfaces from spot point heights using the Spline tool +in the Spatial Analyst toolbox.
+Use three different weights (0.1, 1, 1000) to control the tension, and thus, the resulting surface character.
+For the first interpolation, you'll leave the Weight field blank, accepting the default 0.1 value.
+In subsequent interpolations, you'll enter the explicit weights. + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select elev_lid792_randpts
+'OK'
+
+In the Geoprocessing pane, search for and select the 'Spline' tool
+Set 'Input Point Features' to 'elev_lid792_randpts'
+Set 'Z value field' to 'value_'
+Set 'Output Raster' to 'elev_tps'
+Set 'Output cell size' to '2'
+Set to Spline Type to 'TENSION'
+Leave the other inputs as defaults 
+Click 'Run'
+
+ +

+Evaluate impact of interpolation function parameters on the resulting surface +using hillshade. +

+ +

+Top ribbon->Analysis->Geoprocessing Group->Raster Analysis->cell size
+enter '2' for cell size
+Click 'OK'
+In the Geoprocessing pane, search for and select the 'Hillshade' tool
+Set 'Input raster' to 'elev_tps'
+Set 'Output Raster' to 'Hillsh_tps'
+Leave the other inputs as defaults
+Click 'Run'
+
+ +

+Repeat the spline interpolations above, using weights of 1 and then 1000,
+and generate the associated hill shade surfaces.
+Compare the three hill shade surfaces, and discuss your findings in your report.
+(Tip, use the 'history' tab to reload and change values for previously run geoprocessing tools) + +

Interpolate surface using Radial Basis Functions

+Use the Geostatistical Analyst tool's Radial Basis Functions to generate at least +two different elevation surfaces by selecting different Kernel functions.
+In the first surface you'll use the RBF multi-quadric method.
+In the second, you'll choose Regularized Spline. + +
+In the Geoprocessing pane, search for and select the 'Radial Basis Functions' tool
+Set the 'input features' to 'elev_lid792_randpts'
+Set the 'Z value' to 'value_'
+Set the 'output raster' to 'elev_lid792_multi'
+Set the Radial basis function to 'Multiquadric'
+Click 'Run'
+
+ +

+Rerun the interpolation in the Radial Basis Functions tool using
+Set the Radial basis function to 'Completely Regularized Spline' and compare your results. +

Optional: compute empirical and model variogram for 'elev_lid792_randpts' +and interpolate the surface using kriging with a model variogram that +fits the best the empirical variogram. + +

+ + + +
+
+ + + diff --git a/arcpro/map_algebra.html b/arcpro/map_algebra.html new file mode 100644 index 00000000..6fa673b2 --- /dev/null +++ b/arcpro/map_algebra.html @@ -0,0 +1,345 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Analysis I: global, zonal and focal operations, map algebra

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +

Compute zonal statistics for feature data

+Add landuse feature class data. + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'landcl96'
+'Ok'
+RMC landcl96->'Attribute Table' in the Contents pane
+
+ +

+Add a field (column) to the attribute table: + +

+LMC Field, 'Add' along the top of the attribute window
+
+Set Field Name to 'area_sq_meters' and Data Type to 'Double'
+Click the 'X' on the fields tab to close the window.
+Save changes
+
+ +

+Calculate area (populate the area_sq_meters field): + +

+RMC the column heading and select 'Calculate Field'
+You will see the 'Calculate field' tool in the geoprocessing pane (this can also be searched like other geoprocessing tools)
+Input=landcl96
+Field=area_sq_meters
+Expression type= python 3
+Click on the empty acreage 'area_sq_meters=' field
+double left click on Count to add it to the equation
+Click on Multiply * button
+Type in 812.25 (i.e. area of each cell in square meters) 
+The field should now look like- !COUNT! * 812.25
+Click 'Run'
+Note the new values in the area_sq_meters field
+Close the Table
+
+ +

+Compute %area for each category in each zipcode zone. +Add zipcode data: + +

+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'zipcodes'
+'Ok'
+
+In the Geoprocessing pane, search for and select the 'Tabulate Area' tool
+Set Input Raster or feature zone data to 'zipcodes'
+Set Zone field to 'VALUE'
+Set Input Raster or feature class data to 'landcl96'
+Set Class field to 'VALUE'
+Set Output Table to 'zip_sum'
+Set Processing cell size to '28.5'
+Click 'Run'
+
+ +

+View the Tabulate results: + +

+Look for a new 'Standalone Tables section at the bottom of the Contents pane
+RMC zip_sum->Open
+
+Explain how the data are presented. + +

Handling NULL data

+Create a copy of SRTM DSM map, converting cells with elevation=0 to NULL: + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'elev_srt'
+'Ok'
+RMC elev_srt->Data->Export Raster
+You will see the 'Export Raster' tool in the geoprocessing pane
+Set Output raster dataset to 'elev_srt2'
+Set the format to 'GRID'
+Click 'Export'
+
+ +

+Replace cells with elevation = 0 to nodata / NULL (i.e. -9999 for ArcGIS): + +

+In the Geoprocessing pane, search for and select the 'Set Null' tool
+Set Input Conditional Raster to 'elev_srt2'
+Click the 'New Expression' button and modify to 'Where VALUE is equal to 0'
+Set Input false raster or constant value to 'elev_srt2'
+Set Output raster to .\Map_algebra\elev_srt3
+Click 'Run'
+
+ +

Reclassification

+Recode a 360-direction aspect map to 8 directions (D8): + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'aspect'
+'Ok'
+In the Geoprocessing pane, search for and select the 'Reclassify' tool
+Set Input raster to 'aspect'
+Leave Reclass field as 'VALUE'
+Click the 'Classify' Button
+Set the Classes to '8'
+Click 'OK'
+Set the Output Raster to 'aspect_d8'
+Click 'Run'
+
+ +

Mosaicking

+Patching raster data (often called mosaicking): + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+(hold down control key to select multiple layers)
+elid_782
+elid_783
+elid_792
+elid_793
+'Ok'
+In the Geoprocessing pane, search for and select the 'Mosaic To New Raster' tool
+Set Input Rasters to 'elid_782' , 'elid_783' , 'elid_792' , 'elid_793'
+Set Output Location to your project gdb
+Set Raster dataset name to 'elev_6m.tiff' (you do not need an extention for GDB rasters)
+Set Spatial reference to match one of the inputs
+Set Pixel type to 32_BIT_FLOAT
+Set Number of Bands to 1
+Leave the remaining fields as their defaults
+Click 'Run'
+
+ +

+Optional - have a look at the patched DEM in ArcScene. + +

Creating a subset

+Create a subset of the map elevation for a subregion: + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+Select 'ortho01'
+Select 'elev'
+In the Geoprocessing pane, search for and select the 'Extract by Mask' tool
+Set Input Raster to 'elev'
+Set Input raster of feature mask data to 'ortho01'
+Set the out put raster to 'elev_mask'
+Click 'Run'
+
+ +

Map Algebra

+ +Compute Normalized Difference Vegetation Index (NDVI) +

+Explain the difference between FP and INT handling.
+(Note: make sure you have spaces around operators (=,-,/) ). + +

+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+Select 'lsat7_40'
+Select 'lsat7_30'
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression:
+   ("lsat7_40" - "lsat7_30") / ("lsat7_40" + "lsat7_30")
+   Set Output raster to 'ndvi1'
+Click 'Run'
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: 
+   Float("lsat7_40" - "lsat7_30") / Float("lsat7_40" + "lsat7_30")
+   Set Output raster to 'ndvi2'
+Click 'Run'
+Assign the ndvi2 map a color ramp that has green for high values
+
+ +

+Compute the difference between the SRTM DSM and lidar-based NED DEM: + +

+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+Select 'elev_ned'
+Select 'elev_srt'
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: "elev_srt" - "elev_ned"  
+Set Output raster to 'elev_diff'
+Click 'Run'
+
+ +

+Create a custom color table to distinguish the negative and positive values: + +

+right click elev_diff->Symbology
+Select a 'Red to Green' color scheme
+
+ +

Working with the conditional function

+Create map of urban areas: + +
+In the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+Select 'landcl96' (this layer may already be present in your project)
+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: Con( ("landcl96" == 1) | ("landcl96" == 2),"landcl96",0)  
+Set Output raster to 'calcmap5a'
+Click 'Run'
+
+ +

+Alternatively use the 'pick' tool: + +

+In the Geoprocessing pane, search for and select the 'Pick' tool
+Set input position raster to 'landcl96'
+Set the input rasters as constant values: 1 and 2. 
+Enter 1 and then 2 such that there are two entries (each value is on its own line).
+Set output raster to 'urban_pick'
+Click 'Run'
+
+ +

Handling null values

+ + +

+Create a map where all land use categories > 1 are set to null: + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: SetNull( "landcl96" > 1, "landcl96" )     
+Set output raster to 'developed'
+Click 'Run'
+
+ +

+Create mask for areas with elevation between 60 and 100m and land use 1 or 2: + +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Type in the expression: 
+SetNull( (("elev" < 100) & ("elev" > 60)) & (("landcl96" == 1) | ("landcl96" == 2)), 1)
+Set output raster to 'mask'
+Click 'Run'
+
+ +
+ + + +
+
+ + + diff --git a/arcpro/terrain_analysis.html b/arcpro/terrain_analysis.html new file mode 100644 index 00000000..aeaa236e --- /dev/null +++ b/arcpro/terrain_analysis.html @@ -0,0 +1,188 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +Geomorphometry II: Spatial and Temporal Terrain Analysis +

Resources: +ESRI Academy (Formerly ESRI virtual campus) +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +

Compute basic topographic parameters from 10m NED

+ +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'elev'
+In the Geoprocessing pane, search for and select the 'Slope' tool
+Set 'Input raster' to 'elev'
+Set 'Output raster' to 'Slope_elev'
+Set 'Output measurement' to 'DEGREE'
+Leave other fields as defaults
+Click 'Run'
+
+ +

+Do the same for Aspect and Curvature
+Try to create a meaningful diverging color table for curvatures +with two color shades and light color in the middle. + +

Compute topographic parameters from SRTM DEM and compare with NED

+ +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'elev_srt'
+In the Geoprocessing pane, search for and select the 'Slope' tool
+Set 'Input raster' to 'elev_srt'
+Set 'Output raster' to '.\Analysis\Slope_el_srt'
+Set 'Output measurement' to 'DEGREE'
+Leave other fields as defaults
+Click 'Run'
+
+right mouse click 'Slope_el_srt->Symbology->primary symbology 'Classify' 
+Classes tab->more->'Show Statistics'
+
+ +

+Compare mean and stddev in Classification statistics with 10m NED derived slope.
+Explain the differences between slope from 10m NED and 30m SRTM. + +

Compare slope and aspect, from TIN and from 1m raster DEM

+Use a previously created TIN or create a new one,
+see the first assignment of two covering the topic of Spatial interpolation. + +
+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select elev_lid792_randpts
+'OK'
+
+ +

+Create TIN 'tin' in 3D Analyst from these points if you don't have it already: + +

+In the Geoprocessing pane, search for and select the 'Create TIN' tool
+Set 'Output TIN' to 'lid792_TIN'
+Set Input Feature Class to 'elev_lid792_randpts'
+Set the 'height field' to 'value_'
+Set 'Type' to 'Mass_Points'
+Click 'Run'
+
+ +

+Compute slope.
+

+In the Geoprocessing pane, search for and select the 'Surface Slope' tool
+Set 'Input Surface' to 'lid792_tin'
+Set 'Output Feature Class' as 'tin_SurfaceSlope' 
+Set 'Slope Units' to 'DEGREE'
+Click 'Run'
+
+ +

+Do the same for Surface Aspect to create: 'tin_SurfaceAspect'.
+ +

+Derive slope from 1m raster DEM: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncrast.gdb
+select 'e_lid_792'
+In the Geoprocessing pane, search for and select the 'Slope' tool
+Set 'Input raster' to 'e_lid_792'
+Set 'Output raster' to 'slope_elid72'
+Click 'Run'
+
+ +

+Choose similar color table as for the TIN. To get more continuous color table: + +

+right mouse click 'Slope_elid72' 
+Select 'Symbology'
+Method "Natural Breaks'
+Change Classes to 32
+Click 'OK'
+
+ +

+Compute the aspect and curvature.
+For curvature change the color table to one that has lighter break in the middle.
+Compare the resulting slope, aspect and curvature with the topographic parameters derived from TIN. + + +

+ + + +
+
+ + + diff --git a/arcpro/terrain_modeling.html b/arcpro/terrain_modeling.html new file mode 100644 index 00000000..021dfcd6 --- /dev/null +++ b/arcpro/terrain_modeling.html @@ -0,0 +1,241 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry I: Terrain Modeling

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+ +Download the Raleigh 2013 lidar data as LAS file +LAS tile 0793_016 in NC State Plane Meters +and the +orthophoto +to the project. Unzip the file containing orthophoto. + + +

Bring lidar data into ArcGIS

+There are multiple ways of handling lidar data in ArcGIS. We will use LAS datasets and multipoint files. For other workflows refer to the FYI section at the end of the assignment + +

Analyze multiple return lidar data

+

Create a LAS dataset from .las point cloud

+LAS datasets provide a way to quickly view the properties of a point cloud. You can also use binning or TINs to create a DSM or DEM. This is especially useful if you want to process several .las files at once. +
In the Geoprocessing pane, search for and select the 'Create LAS Dataset' tool
+Set 'Input Files' to 'tile_0793_016_spm.las'
+Set 'Output LAS Dataset' to 'lidar_all'
+Be sure'Coordinate System' is set to 'NAD_1983_HARN_StatePlane_North_Carolina_FIPS_3200' (you can type 3358 in search window)
+Check 'Compute Statistics'
+Click 'Run'
+
+ +

View LAS dataset properties and filter points

+
In the Catalog pane, Right click on the LAS dataset and select 'Properties...'
+Select the 'LAS Files' tab and take note of average point spacing (will use in later step).
+Select the 'Statistics' tab to view point statistics by returns and classes.
+Click 'Ok'
+What percentage of the points are classified as ground? +
Right click on the LAS dataset in the Contents pane and click 'Properties...'
+Select 'LAS Filter' tab.
+Try applying several filter settings using classes and returns and view the results.
+Check box next to '2 Ground' under 'Classification Codes'
+What is the difference between 'Last Return' and 'Last of Many'? + +

With the LAS dataset filtered for ground points only, now we can analyze the point density of ground points and create a DEM with binning. +

+

Compute a raster map representing number of points per cell (at two different resolutions)

+Calculate point density at 2m resolution: +
In the Geoprocessing pane, search for and select the 'LAS Point Statistics as Raster' tool
+Set 'Input LAS' to 'lidar_all'
+Set 'Output Raster' to 'ground_count2m'
+Set 'Method' to 'POINT_COUNT'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '2'                            
+Click 'RUN'
+Right click on resulting raster in Contents and select 'Symbology'
+Change color scheme to something appropriate.
+On the 'Mask' tab, Set 'NoData' to red to highlight any areas with zero points.
+
+ +

+Calculate point density at 6m resolution: +(remember the tip with the geoprocessing history) +

In the Geoprocessing pane, search for and select the 'LAS Point Statistics as Raster' tool
+Set 'Input LAS' to 'lidar_all'
+Set 'Output Raster' to 'ground_count6m'
+Set 'Method' to 'POINT_COUNT'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'                            
+Click 'Run'
+Right click on resulting raster in Contents and select 'Symbology'
+Change color scheme to something appropriate.
+On the 'Mask' tab, Set 'NoData' to red to highlight any areas with zero points.
+
+ +

Compute a raster map representing range of elevation values per cell at 6m resolution

+ +
In the Geoprocessing pane, search for and select the 'LAS Point Statistics as Raster' tool
+Set 'Input LAS' to 'lidar_all'
+Set 'Output Raster' to 'ground_range6m'
+Set 'Method' to 'Range of Elevation Values'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'                            
+Click 'Run'
+
+ +

Use binning to compute a raster map representing average elevation per cell for ground points

+Based on the point density rasters created in the previous steps, what would be an appropriate resolution for binning the ground points? What does the range raster tell you about binning at this resolution? + +
+Ensure that the LAS dataset is still filtered to include only class 2 (ground) points.
+In the Geoprocessing pane, search for and select the 'LAS Dataset to Raster' tool
+Set 'Input LAS Dataset' to 'lidar_all'
+Set 'Output Raster' to 'ground_mean6m'
+Set 'Value field' to 'ELEVATION'
+Set 'Interpolation Type' to 'Binning'
+Set 'Cell Assignment Type' to 'Average'
+Set 'Void Fill Method' to 'LINEAR'
+Set 'Sampling Type' to 'CELLSIZE'
+Set 'Sampling Value' to '6'   
+Set 'Z factor' to '1'                         
+Click 'Run'
+
+ +

Use multipoint file to interpolate DSM from multiple return lidar data

+LAS to multipoint can be used to create a vector point file from a point cloud. The points can be filtered by class or return and then interpolated to create a raster. + +

Add some background data to give context: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data\ncshape.gdb
+select  streets_wake
+Select lakes
+Select streams
+
+

+Display orthophoto: + +

+On the Map tab, in the Layer group, click 'Add Data'
+Browse to C:\Users\myname\Documents\ArcGIS\582data
+select ortho_0793_016_ncspm.tif
+
+ +

Create Multipoint files from .las point cloud and interpolate DSM

+
In the Geoprocessing pane, search for and select the 'LAS to Multipoint' tool
+Set 'Input' to 'tile_0793_016_spm.las'
+Set 'Output ' to 'lidar_first'
+Set 'Average Point Spacing' to value listed in Files tab of LAS dataset properties, noted earlier.
+Leave the 'Class Codes' empty
+For 'Return Value', uncheck 'ALL_RETURNS' and check '1'
+Set 'Coordinate System' to 'NAD_1983_StatePlane_North_Carolina_FIPS_3200' (you can type 3358 in the search window)
+Click 'Run'
+
+ +

+Interpolate DSM: + +

+In the Geoprocessing pane, search for and select the 'Radial Basis Functions' tool
+Set 'Input features' to 'lidar_first'
+Set 'Z field' to 'Shape.Z'
+Set 'Output raster' to 'lidar_spline'
+Set 'Radial basis function' to 'Spline with Tension'
+Click 'Run'
+
+ +

+Find out what areas have multiple returns: +

+In the Geoprocessing pane, search for and select the 'LAS to Multipoint' tool
+Set 'Input' to 'tile_0793_016_spm.las'
+Set 'Output ' to 'lidar_multi'
+Fill the rest as before but in 'Return values', uncheck 'All_RETURNS' and check values greater than 1. (2-8)
+
+ +Overlay result with orthophoto. Where do we have multiple returns? + +

Optional - display the multiple return data as points in a Scene

+(Hint, look back at the 'Data visualization' assignment) + +

FYI: Handling LAS data in ArcGIS

+There are three different formats (datasets) that can be used to manage and work with your lidar data in ArcGIS Pro +

1. LAS Dataset or LAS file

+

2. Mosaic dataset

+

3. POint cloud scene layer

+More information here. +

+ +

+ + + +
+
+ + + diff --git a/arcpro/viewshed_solar.html b/arcpro/viewshed_solar.html new file mode 100644 index 00000000..a281421f --- /dev/null +++ b/arcpro/viewshed_solar.html @@ -0,0 +1,269 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Viewshed and solar radiation analysis

+

Resources: +ESRI Academy +

+Launch ArcGIS Pro and login with ArcGIS Online credentials if required. +Select New> Map> Create New Project. +Create a new project in your preferred workspace, +in the instructions below we are using the default C:\Users\myname\Documents\ArcGIS\Projects\ folder. +

+Use your judgement to decide which maps to include in your report. +

+

Viewshed Analysis

+ +
+Add the raster elev_ned
+Add the point feature class fire_pt
+
+ +

+Use Viewshed tool (not 'Viewshed 2' or the 'Ready to use tool') to compute the area visible from the fire_pt location. +

+In the Geoprocessing pane, search for and select the 'Viewshed' tool
+Set input surface to 'elev_ned'
+Set observer feature to 'fire_pt'
+Set output raster to 'viewshe_elev1'
+Click 'Run'
+
+ +

+What is the ground elevation at the fire_pt site?
+In the output (viewshed) raster the visible cells are given a value of 1, +while those not visible are assigned a value of 0.
+How many cells are visible in this view shed?
+How much area (in sq. meters) do these visible cells represent?

+ +

Rerun the viewshed, with elevation offset at the fire_pnt site at +60 m. +

Add the field OFFSETA to the fire_pt attribute table. +

+RMC on the fire_pt layer > Open Attribute Table
+LMC on the first icon in the Attribute Table toolbar > Field:Add
+Type the name OFFSETA in the new field name row then hit the enter key
+Fields tab on the ribbon->changes->'save'
+Click the 'X' to close the fields tab
+In the fire_pt Attribute Table, double LMC and then type '60' in the OFFSETA column
+You can close the attribute table
+Edit tab on the ribbon->manage edits->'save'
+
+ +

Rerun the viewshed +

+In the Geoprocessing pane, search for and select the 'Viewshed' tool
+Set input surface to 'elev_ned'
+Set observer feature to 'fire_pt'
+Set output raster to 'viewshe_elev60'
+Click 'Run'
+
+

+Now, how many cell are visible in this viewshed?
+How much additional area was gained by adding the 60 m of elevation +to the observer?
+

+Rerun the viewshed again, using the +60 m observer, but this time limit your search radius to 2000m. +

Add the fields RADIUS1 and RADIUS2 to the fire_pt attribute table. +

+RMC on the fire_pt layer > Open Attribute Table
+LMC on the first icon in the Attribute Table toolbar > Field:Add
+Type the name RADIUS1 in the new field name row then hit the enter key
+Add another column and name it RADIUS2
+Fields tab on the ribbon->changes->'save'
+Click the 'X' to close the fields tab
+In the fire_pt Attribute Table, double LMC and then type '0' in the RADIUS1 column and '2000' in the RADIUS2 column
+You can close the attribute table
+Edit tab on the ribbon->manage edits->'save'
+
+

Rerun the viewshed +

+In the Geoprocessing pane, search for and select the 'Viewshed' tool
+Set input surface to 'elev_ned'
+Set observer feature to 'fire_pt'
+Set output raster to 'viewshe_elev60_2000'
+Click 'Run'
+
+

+How many cells are visible in this viewshed? +How much ground area is visible? +

+Restrict the search area to an annulus 1000 m wide (from 1000m to 2000m) and restrict the search azimuth to the arc from NE (45 deg) to SE (135 deg). +

+ +

+Add two fields: AZIMUTH1 and AZIMUTH2 (as doubles) to the fire_pt Attribute table (see instructions above)
+Start editing (see instructions above)
+modify RADIUS1 and RADIUS2 fields: RADIUS1 =  '1000', RADIUS2 =  '2000', 
+and populate: AZIMUTH1=45, and AZIMUTH2=135.
+
+

Rerun the viewshed (see instructions above) +

+How many cells and area are visible now? +

+Now let's next add our own data, +but instead of a single point, let's add a pair to the project
+ +

+Here are the the coordinates (in NC State Plane NAD83) for a building on Centennial Campus: + +

+x=638898 and y=224528
+
+ +

+And for Jordan Hall on Central Campus: + +

+x=638887, y=225365.
+
+ +

+Put these values into a text file (use e.g. Notepad but avoid MS Word). and save the file in a known location (with the extension .txt)
+Your text file should look something like this: + +

+X,Y
+638898,224528
+638887,225365
+
+ +

+Load your points to ArcGIS Pro: + +

+In the Map tab, in the Layer group, click 'Add Data'->'XY Point data'
+A new tool will open in the geoprocessing pane
+browse for your saved .txt file
+Set Output feature class to 'xy_points'
+Set 'X Field' to 'X' and 'Y Field' to 'Y'
+Make sure the coordinate system is correct
+Click 'Run'
+
+ +Open the Attribute Table of newly created shapefile +Add the fields OFFSETA, VERT1, VERT2, AZIMUTH1, and AZIMUTH2. +Populate +point FID=0: +OFFSETA=35m, VERT1=12, VERT2=-12, AZIMUTH1=300, AZIMUTH2=60. +For point FID=1: +OFFSETA=40m, VERT1=12, VERT2=-12, AZIMUTH1=150, AZIMUTH2=240. +Save the edits + + + +

+Run a viewshed on your new data with these attributes. + +For an observer standing atop the Red Hat Building, +what do you think that this view shed result represents?
+Can the observer see Jordan Hall on the NCSU Central Campus?
+Do you think an observer standing atop Jordan Hall could see +his counterpart on the Red Hat Building?
+ +

Solar radiation analysis

+Perform solar radiation analysis in Spatial Analyst: + +

+Compute the incident solar radiation for the summer solstice (day number=172) + +

+In the Geoprocessing pane, search for and select the 'Area Solar Radiation' tool
+Set input raster = elev_ned
+Set the output raster = ned_solar172
+Set the latitude = 35.7716 (~for Raleigh, NC)
+Set the Time Configuration to Within a day
+Set the Date/Time settings-Day number of year to 172
+the remainder of the fields can be left at their default values.
+Click 'Run'
+
+ +

+Repeat the above steps to generate a incident solar radiation raster +for the winter solstice (day number=356).
+Note: the computation can take some time. +

+What are the data units for the resulting incident radiation maps?
+

+Determine the difference in radiation energy between the two solstice extremes +by differencing the two radiation rasters just created.
+ +

+In the Geoprocessing pane, search for and select the 'Raster Calculator' tool
+Set output to solar_diff
+In the calculator's expression field type:
+"ned_solar172" - "ned_solar356"
+
+ +

+Change the color ramp to one that emphasizes contrast in the difference raster.
+Where do you see the greatest differences in insolation between summer and winter?
+Where does the least difference in annual insolation occur?
+Do these differences make sense? Explain.
+ +

+ + + +
+
+ + + diff --git a/assignments.html b/assignments.html new file mode 100644 index 00000000..382a5062 --- /dev/null +++ b/assignments.html @@ -0,0 +1,381 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Assignments: in class practice and homework

+ +For formal requirements go to Course logistics. + +This course is using GRASS GIS and ArcGIS and dedicated datasets, see +Course logistics for details. + +

1. Explore the provided data set

+ + + + +

2. Geospatial data models and visualization

+ + +

2.A. Geospatial data models

+ + + +

2.B. Data display and visualization

+ + + +

3. Geospatial Analysis

+ + +

3.A. Global, zonal and focal operations, map algebra

+ + + + +

3.B. Buffers, cost surfaces, least cost path

+ +
    +
  • Approach: + GRASS solution, + ArcGIS solution +
  • Homework: + Prepare a paper on applications of global and zonal statistics, + neighborhood operations and map algebra for analysis of continuous and discrete geospatial data. + In this paper also explain and demonstrate the use of buffers and cost surfaces + for solving proximity problems. Comment on specific results for the study area and given tasks. +
  • Comments/answers to HW questions +
+ + +

4. Spatial interpolation and approximation

+ + +

4.A. Spatial interpolation and approximation I: methods

+ + + + +

4.B. Spatial interpolation and approximation II: splines

+ + + + +

5. Geomorphometry

+ +

5.A. Terrain modeling, working with point clouds

+ + + +

5.B. Spatial and Temporal Terrain analysis

+ +
    +
  • Approach: + GRASS solution, + ArcGIS solution + +
  • Homework: + Prepare a paper on properties of lidar data and on computing topographic parameters from + digital elevation models. + Discuss how the topographic analysis methods and types of DEM influence the result. + Describe results of elevation time series analysis. +
  • Comments/answers to HW questions +
+ +

6. Viewshed, solar potential analysis

+ +
    +
  • Approach: + GRASS solution, + ArcGIS solution +
  • Homework: + Prepare a paper on the results of viewshed computation and solar irradiation mapping. + Note that this is a single assignment paper. +
+ + +

7. Hydrology and modeling geospatial processes

+ + +

7.A. Flow routing, watershed analysis

+ + + + +

7.B. Modeling Geospatial Processes: Hydrologic and erosion modeling

+ +
    +
  • Brief theoretical background + (equations used to write map algebra expressions) +
  • Approach: + GRASS solution, + ArcGIS solution +
  • Optional: process based hydrologic modeling using path sampling method: SIMWE +
  • GRASS solution: SIMWE + +
  • Homework: + Prepare a paper where you compare different methods for flowrouting and watershed analysis, + explain and discuss impact of model parameters and land use scenarios on + spatial pattern and magnitude of erosion as simulated by simple GIS-based models. +
+ + + +
+ + + +
+
+ + + diff --git a/faq.html b/faq.html new file mode 100644 index 00000000..7a13b13d --- /dev/null +++ b/faq.html @@ -0,0 +1,508 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

FAQs

+ +

Using GRASS GIS

+
+
When I open GRASS, nc_spm_08_grass7 doesn't show up under "Project Locations", +although it is downloaded and unzipped on my computer.
+
+Make sure that when you unzip your nc_spm_08_grass7 is not hidden under another nc_spm_08_grass7. +Some zip software tools create an extra directory by default, so you need to specify +that you do not want a new directory created. +Your directory structure should look something like: +C:\Users\username\Documents\grassdata\nc_spm_08_grass7\PERMANENT +
+ +
How do I run the commands in GUI?
+
+You can copy and paste the commands into Layer Manager command console and press Enter to execute. +Copy and execute each command separately one after each other. +Alternatively, you can use the module dialogs, you can find the modules in Modules tab, +or menu, or you can type the module name in command console. +See documentation how to use module dialogs. + +
+ +
When I run GRASS command for the second time, it gives me an error?
+ ERROR: option <aspect> <aspect> exists. To overwrite, use the --overwrite flag +
+
+You probably already created the raster or vector maps by the first run +and now GRASS doesn't want you to overwrite the already created data. +Give your output a new name or you can force overwrite by adding --o to your command +(this applies to practically all GRASS commands). There is an equivalent overwrite +checkbox in each module's GUI.
+ +
Is there a way to reorder the layers?
+
yes - just grab a layer with the mouse and move it where you want it to be.
+ + +
Image rendering in GRASS GIS is slow.
+
+Do not keep large number of layers in the Layer Manager, start each assignment +with empty list and if you accumulate many layers, remove those that you don't need.
+ +
Can I use data with different projections at the same time?
+
+GRASS GIS manages integrity of the data by allowing to work with data in +one projection at the time (i.e. it considers on-the-fly projection as +such a bad practice, that it doesn't allow it at all) and it also +requires you to import the data, to have all the data in one format, +e.g. to store vector data in GRASS topological format.
+ + +
The image I see in 3D in GRASS GIS is just a lot of spikes or outliers, no digital elevation model.
+ +
+
+When visualizing rasters in GRASS GIS 3D view, you have to switch off +aspect and any other raster map layers which you don't want to show as surface. +You can however, show any raster by draping it over a +surface in 3D (by selecting method of coloring for a surface). +For example, to show aspect draped over elevation, you have to have +elevation layer in Layer Manager (not aspect layer), and in 3D view properties, +select aspect layer as color.
+ + +
When I show the raster map in GRASS GIS 3D view as a surface, + I cannot see much detail and the view seems not precise, coarse or blurry.
+
Set fine mode resolution in 3D view tab, in the Surface part to 1 + to get the surface in the actual (full, native) resolution of the raster.
+ +
What does the fine mode resolution in GRASS GIS 3D mean?
+
Fine mode resolution in 3D is resolution of resampling when using + the raster in 3D, for example fine mode resolution 2 means that raster + with resolution 3 is shown as if it would have resolution 6. + This is for performance purposes. To see raster in its full (native) + resolution, use fine mode resolution 1.
+ + +
I cannot change or create data in my other mapsets, only in the current one.
+
+That's how it should be. GRASS GIS is always connected to +one GRASS project inside a GRASS Database. GRASS project contains +multiple GRASS mapsets and you can access data in any of these mapsets. +However, you can change (create, modify, delete) the data only in a +current mapset. Data can be copied into current mapset using +g.copy if you need to modify them (e.g. attributes of a vector map). +By default, you see data only in the current mapset and in the +PERMANENT mapset (that's the special thing about PERMANENT mapset). +Use Data tab in Layer Manager to manage your data, you can "unlock" +the functionality to be able to change data outside of your current mapset.
+ + +
When using GRASS GIS, can I access data in a different mapset or project?
+
+If desired, you can show data from other mapsets (in the current +project) using Settings > GRASS working environment > Mapset access. +This helps to maintain safety of data and gives a system to organize +the data. Data in other projects are accessible only if you start +GRASS session in the project. Accessing data from multiple projects +wouldn't be safe because data in different projects are (can be) in +different coordinate systems (while all mapsets in one project +contains data in one particular coordinate system).
+ + +
What is happening when (computational) region is set?
+
+ It sets the spatial extent AND resolution at which all raster operations are done. + If any of the rasters has different resolution, it is quietly resampled using nearest neighbor. + It also sets the viewing area of the Map Display + when the option Zoom into computational region is selected. + It does not affect vector operations, so vector data need to be clipped if the operation + is to be performed on a subset of the data. + However, some vector modules can work with the region when it is advantageous + or when rasters are involved. +
+ +
+

Geospatial data introduction

+ + +
+
Should we list and provide information about all the files +in each project and geodatabase, or a subset?
+
+Rather than listing +properties for each file you should provide a general description +that will characterize the data. For example, +after looking at most of the data in the data set, are you able to generalize some +common properties? are all the data local? regional? do they have all same level of detail? +do they represent natural or anthropogenic features? how are they georeferenced? +The goal in this assignment is to ensure that the students understand the basic properties +of digital geospatial data and can make general observations and conclusions based +on broad range of specific technical information. +The reports will get more meaningful for more complex +assignments - the first ones are just a warm up. +In the approach section - do not write about software issues, focus on general methodology, +in the results sections focus on what is interesting in the data and the derived maps. +Put software issues, including fixes and suggestions for improvements into +the discussion section.
+ + + +
data were in ... geographic coordinate system
+
there are no data in geographic coordinate system in the provided data set - everything is +in State Plane coordinate system (datum:NAD83, projection:LCC)
+ + + + +
Why there is no space after comma in g.copy raster=slope,myslope? +
+The comma syntax (as in to,from) is used in GRASS GIS a +lot, so you should remember not to put space after comma in this case. +Basically, the reason is that the same syntax is usable in command line +where the space would have a meaning. Generally speaking, GRASS GIS is +aiming at being easily used when scripting or programming in different +languages, so this requires to be strict sometimes. Similarly, +ArcGIS raster map calculator, it requires spaces here and there, +e.g. around operators. On the other hand, GRASS GIS raster map calculator +does not require spaces because there is just no advantage in requiring them. +However they are considered as a good practice +when used around operators and after comma. + +
+ + +

Geospatial data models, display and visualization

+
+ +
How do I approach the Methodology sections while working with two different +software packages, yet remaining “software independent?”
+
+In your methods section you should write your general, software independent methods: +For example: We have compared methods for resampling raster data to higher and lower resolution, +highlighting the difference between methods used for continuous and discrete data. +We have resampled a 30m resolution DEM to 10m resolution DEM using nearest neighbor, +bilinear and bicubic methods (here you can add equations or references to literature for extra points). +Then we have used aspect derived from the resampled 10m DEMs to highlight the differences between the methods. +In the results you then show the outputs from GRASS and ArcGIS and comment on what you have observed, +e.g. :The nearest neighbor method resampling of DEMs has resulted in discontinuous checkerboard pattern +observed in both the ArcGIS and GRASS output, while both bicubic and bilinear methods preserved +the continuity of the DEM surface. It is important to note that the differences were not visible +in the elevation display but appeared in the derived aspect (and 3D representation if you chose to use it). +You can try to explain what is causing the differences between the nn and bilinear methods. + +
I'm not sure what setting the grid parameters "size=0:02" did.
+
+It draws the lat/long grid - you should read the numbers along the image broder to find out. +Maps used to provide both x/y grid in meters and lat/long in degrees:min:sec so that +both cartesian and geographic coordinates could be derived. + +
What is the ArcGIS equivalent to setting the computational region in GRASS GIS?
+
rather than clipping the data set, +which would be a pain if you need to use many data sets with different +spatial extent and if you need to work on different regions (you would be +also creating a lot of extra files) is under: +Environments > General Settings > Extent
+ + + +
Why we just don't use very high resolution for all raster data?
+
+When you have low resolution (big cells) it does not necessary mean +that it is worse. Sometimes we can even rescale hight resolution data +because we don't need the precision because other data for analysis are +in the lower resolution or because we are hitting some storage limits. +Re-scaling to higher resolution (smaller cells) does not give use more +precise information, although the image might be smoother. Similarly, +when comparing raster and vector, it is important to realize that there +both has limited (spatial, yx) precision and although the area boundary +in vector looks nicer it might be much less accurate then the raster +representation depending on how the data were acquired.
+ +
GRASS GIS Map Display is not using my system default font. + Is there any way to change it?
+
You can change the default font used in Map Display by going to +the main menu > Settings > Preferences > Map Display tab and click Set font +button. Select name of any font you like.
+ +
The maps composed in GRASS GIS Map Display are not good enough for me. + Is there something else I can use?
+
+Advanced cartography in GRASS GIS is done in completely separate +application/module called GRASS GIS Cartographic Composer +(which is a GUI frontend for ps.map module). However, some +users stay just with the GRASS GIS Map Display +because it is easily scriptable thanks to display modules (d.*) +or they combine it with Inkscape. +Some other GRASS GIS users, however, use QGIS for +high-quality cartography tasks.
+ +
+ + +

Global, zonal and focal operations, map algebra

+ +
+
What does the difference between SRTM and NED DEMs mean?
+
+ SRTM represents surface with vegetation and buildings, while NED is derived from bare earth lidar data, + so it is lower in most areas. The issue is complicated by the fact, that in SRTM v1 +surface water was assigned value 0 instead of NULL or actual value (there were no data), +so lakes have the elevation value 0 leading the large negative difference. Both DEMs are properly +georeferenced to the same vertical datum.
+ +
What is happening in the map algebra example with relative coordinates?
+
+South-east corner is replaced.
+ +
How we got from the computer raster to the plane? How would I use it?
+
+We are computing an equation for a plane here: +ax+by+cz+d=0 which we can rewrite as
+z = -1/c (ax + by) - d/c +and use it to model, for example, a geologic fault.
+ +
NDVI computed with integers gives 0 in GRASS and -1, 0 in ArcGIS, what is going on?
+
+The correct values for NDVI range between (-0.957, 0.979) so +when the decimals are simply cut-off the result is 0, when the numbers are rounded down to nearest +integer the result will be -1,0. Neither of them is correct.
+ +
Subsetting a raster using map algebra - what is happening there?
+
+We set the spatial extent to orthophoto and resolution to 10m (that means that the 1m resolution +of ortho is ignored). Then we compute a new raster by assigning it the same values +as in the original raster only within the defined spatial extent. So the resulting +map has the spatial extent of the orthophoto but the values and resolution are the same as in +the original raster.
+ +
+ + +

Buffers, cost surfaces, least cost path

+ +
+ +
Can I manually set region by drawing a rectangle on the map in display window?
+
+ Yes, find toolbar button 'Various zoom options' on Map Display toolbar, + select 'Set computational region extent interactively' and then draw the rectangle.
+ + + + + +
Coordinates of firestations are not stored in the attribute table. Where do they come from?
+
+ v.out.ascii pulls them from the coor file that defines the geometry of each vector map + and combines them with attributes from the SQLite table (or any other DBMS that you may use - + GRASS supports several).
+ +
What are the friction values?
+
+ These are empirically selected values that measure how difficult it is to walk + through cells with different types of cover, they increase the cost to pass a grid cell.
+ +
What is the best way to get the min and max raster value in GRASS?
+
+ Use r.info -r.
+ +
In GRASS I don't get any firestations for the given condition CVLAG < 0.1, + I had to use CVLAG < 0.5 and the stations that I got were far away + (S. East St. and W main St stations)
+
+ you may be searching in a wrong region, reset it with g.region swwake_30m -p
+ +
+ + +

Terrain modeling

+ +
+ +
Is 2m or 6m resolution more suitable for DEM from the given lidar data?
+
+ If we are going to generate the DEM using binning, e.g. mean elevation for each cell, + 6m provides more complete coverage, but as the range map shows we lose some detail. + 2m resolution is not suitable for generating DEM by binning - the data are not dense enough. + But if we interpolate (computationally more intensive task than binning) + we will get a more detailed DEM.
+ + + +
When I show the TIN in GRASS GIS 3D view, I get just large spheres or flat thick plate. + How to view the 3D TIN. +
+When visualizing vectors in GRASS GIS 3D view, +go through a Vector section of the Data tab and +check values of all the fields. In case of TIN, you probably don't want +to show any points or set the size of points to a small number. +Note also that depending on vector type, you need to specify if you want +to show the features on an existing raster surface (flat plane by default) +or as actual 3D features. +Switching off other layers beforehand in 2D is also a good idea. + +
+ +

Spatial interpolation and approximation

+ +
+ +
How to design an experiment to test IDW with different parameters?
+
+Run the command with the suggested parameters, you should vary only one parameter at a time, +keep the other constant to not mix up the effects of both parameters. +Then compare the results +visually and statistically using shaded relief (hillshade), contours, univariate statistics +and histograms. For example, you should be able to conclude that the lower +the number of points, the rougher the surface +The univariate statistics shows almost no difference +illustrating the fact that summary statistics does not reveal subtle but +significant differences in surface geometry.
+ +
+ + +

Spatial interpolation and approximation: splines

+ +
+ +
GRASS defines spline method as regularized spline with tension, +while ArcGIS defines spline method with two functions, regularized and tension. +It seems the functions from these two software are different when both state +it is a spline interpolation method.
+
+There are many different spline interpolation methods based on what type +of smoothness seminorm (also called roughness penalty) they minimize, see + +Table 1 in this paper +(this paper has lot of typos as we were not given the proofs after the chapter was typeset, +but it has a good overview of interpolation methods, +note that in Table 1 regular should be regularized, and the spline by Hutchinson in Topo to grid +is thin plate spline with tension, not just thin plate spline). +Regularized spline with tension is equivalent +to completely regularized spline but the others are different.
+ +
Another confusion I have is radial basis functions. +Radial basis function methods are part of spline method? +Or some are spline (thin-plate spline, spline with tension, +and completely regularized spline), and some are not?
+
+Splines are a special type of radial basis function methods, multiquadrics is another group RBF methods. +But there are also splines that are smoothly connected piecewise polynomials +that we have not covered at all (they are applied to meshes which are not very well supported in GIS).
+ +
And does spline with tension under radial basis functions create +the same results from spline interpolation with tension type?
+
+Spline with tension under radial basis functions and the one in Spatial Analyst are probably +based on the same equations but the implementation may be different +so unless it calls the same code, the results will be different +( e.g. the data are usually normalized to avoid numerical problems +and each program does it differently, and the search for points may be different too - we +covered that in the lecture.)
+ +
+ + +

Spatial and Temporal Terrain analysis

+ +
+ +
In the time series analysis task my surfaces are fuzzy and the cutting plane does not work.
+
+Make sure you set display to computational region and use fine resolution=1 in nviz. +When using cutting planes both surfaces should have their resolution set to same value (e.g. fine=1), +use constant plane for reference (-1m for the coast) and set its resolution to fine=1 too. +When comparing two surfaces assign each of them different constant color +and use top or bottom surface option to color the cutting plane. You can lower your light source +and reduce its brightness to create contrast between the cross-section and the surface if you +are coloring the cross-section using the top surface option. + +
+ + +
+ + + +
+
+ + + diff --git a/grass/buffers_cost.html b/grass/buffers_cost.html new file mode 100644 index 00000000..d907ecae --- /dev/null +++ b/grass/buffers_cost.html @@ -0,0 +1,438 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Analysis II: buffers, cost surfaces, least cost path

+

Resources: +

+ +

+Text files with recode rules, color rules and site locations: +

+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_buffers_cost) in nc_spm_08_grass7 project. +Remove MASK in case it was left over +from previous assignment (use command r.mask -r). +

+Change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +

cd
+
+Download all text files with recode rules, color rules and site locations (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + + + + +

Buffers

+

Find developed areas close to lakes

+Set region, create buffers: + +
g.region swwake_30m -p
+r.buffer lakes output=lakes_buff distances=60,120,240,500
+d.rast lakes_buff
+
+ +

+List categories in land use map to identify category numbers for developed areas. +Then run r.mapcalc to extract the developed areas within the buffers +and use r.support to assign the labels from the original buffer raster +to the new developed buffer raster map (needed for legend): + +

r.category landuse96_28m
+r.mapcalc "developed_lake = if(landuse96_28m==1 || landuse96_28m==2, lakes_buff, null())"
+r.support developed_lake raster=lakes_buff
+r.category developed_lake
+
+ +

+Display results:
+In GUI: switch off previous map, use Add raster, Add vector icons. + +

d.rast developed_lake
+d.vect streets_wake color=grey
+d.rast lakes
+d.legend -c developed_lake use=2,3,4,5 at=5,25,2,5
+d.out.file mylakesbuffmap
+
+ +

+Find the total area within buffers and the developed area in ha: + +

r.report -n lakes_buff units=h
+r.report -n developed_lake units=h
+
+ +

Find developed areas impacted by noise from highways

+Set region and create buffers along major roads.
+Intersect developed areas from landuse map with road buffers.
+Transfer the category labels and compute the affected area.
+Run r.category from GUI and browse to the txt file, +or run r.category command (assuming noise_cats.txt +is in your working directory). + +
g.region raster=landuse96_28m -p
+r.buffer roadsmajor output=roads_buffers distances=250,500,2500
+r.mapcalc "noise = if(landuse96_28m==1 || landuse96_28m==2, roads_buffers, null())"
+r.colors noise color=ryg
+r.category noise rules=noise_cats.txt separator=:
+r.report -n noise units=p,h
+
+ +

+Display the results. In GUI switch off previous maps. + +

d.rast noise
+d.vect streets_wake
+d.legend -c noise at=5,25,2,5
+
+ +

Find schools affected by high levels of noise

+Convert schools to raster using CORECAPACI attribute (school capacity).
+Use map algebra to overlay with noise impact buffers and +compute the number of students exposed to noise (see result of r.univar). + +
v.to.rast schools_wake output=schoolscap_10m use=attr attrcolumn=CORECAPACI type=point
+r.mapcalc "schools_noise = if(int(schoolscap_10m) && roads_buffers == 2, int(schoolscap_10m), null())"
+r.univar schools_noise
+r.to.vect schools_noise output=schools_noise type=point
+d.vect schools_wake icon=basic/circle size=10 fill_color=blue
+d.vect schools_noise size=14 fill_color=cyan icon=basic/circle color=black
+d.out.file mynoisemap
+
+ +

Cost surfaces

+ +

Compute cumulative cost surface to a given accident site based on speed limits

+ +Use 5mi/hr speed limit for off-road areas (nulls).
+For legend set the discrete speed limit values in GUI legend dialog:
+tab Required > streets_speed, Subset > List of discrete category numbers + +
g.region swwake_30m -p
+v.info -c streets_wake
+v.to.rast streets_wake output=streets_speedtmp use=attr attrcolumn=SPEED type=line
+r.mapcalc "streets_speed = if(isnull(streets_speedtmp),5,streets_speedtmp)"
+r.info streets_speed
+r.colors streets_speed color=gyr
+d.rast streets_speed
+d.legend streets_speed at=5,40,2,5 use=5,25,35,45,65
+d.out.file myspeedmap
+
+ +

+Import the accident point location from GeoJSON file fire_pt.json
+Run v.in.ogr from GUI, use file browser to provide full path to the file, +or run the command assuming the file is in your working directory. + +

v.in.ogr input=fire_pt.json output=fire_pt
+
+ + +

+Assign travel time to cross a 30m grid cell in hours.
+Note that cost in GRASS GIS is defined as travel time per cell. +

+Compute cumulative cost surface to the given point.
+Where does the 0.018641 constant come from? +You can modify the expression to get time in minutes. + +

r.mapcalc "streets_travtime = 0.018641/streets_speed"
+r.cost -k streets_travtime output=streets_cost start_points=fire_pt
+
+ + +

+ +Compute isochrones and display the cumulative cost surface map. + +

r.contour streets_cost output=streets_cost_04 step=0.04
+r.colors streets_cost color=elevation
+d.rast streets_cost
+d.vect fire_pt color=red icon=basic/marker size=20
+d.vect streets_cost_04
+d.legend streets_cost at=5,50,2,5
+d.out.file mycostmap
+
+ +

Find cost (travel time) from selected firestations

+ +First make your own copy of the firestations map and list attributes.
+Then query the cumulative cost surface at the firestations location.
+The travel time in hours will be stored in the attribute column CVLAG. + +
g.copy vector=firestations,myfirestations
+v.info -c myfirestations
+v.what.rast myfirestations raster=streets_cost column=CVLAG
+
+ +

+Add myfirestations to Layer Manager and right click on Show attribute data.
+Click on CVLAG to order them and find the lowest cost (shortest time) > 0 +(firestations with 0 cost are outside the region).
+You should see a table like this.
+Export firestations with traveltime less than 0.1 hr: + +

v.out.ascii input=myfirestations separator=space precision=3 columns=ID,LOCATION,CVLAG where="CVLAG<0.1 AND CVLAG>0"
+
+ +

+You should get something like the following: +

+635775.565 228121.693 19 19 4021 District Dr 0.076
+635940.262 225912.796 20 0 5001 Western Blvd 0.037
+637386.831 222569.152 21 0 1721 Trailwood Dr 0.071
+633178.155 221353.037 52 27 6000 Holly Springs Rd 0.060
+
+ +

+To get the computed time, you can also query the cumulative cost raster directly +using coordinates (in this example it's Western Blvd firestation), +or using GUI query tool by selecting the cost layer and clicking on the map: + +

r.what map=streets_cost coordinates=635940.262,225912.796 separator=space
+
+ +

+Find the least cost path for the two closest stations: + +

r.drain -n input=streets_cost output=route_20Westernb start_coordinates=635940.3,225912.8
+r.drain -n input=streets_cost output=route_52Hollyb start_coordinates=633178.2,221353.0
+r.colors route_20Westernb color=grey
+r.colors route_52Hollyb color=grey
+
+ +

+Display the results in GUI.
+You already may have some of these maps in GUI layer tree, +so just switch them on and off and re-order as needed: + +

d.erase
+d.rast streets_cost
+d.vect fire_pt color=red icon=basic/marker size=20
+d.rast route_20Westernb
+d.rast route_52Hollyb
+d.out.file mylcpmap
+
+ +

+Print the length of the path in cells (multiply by 30m to get approx. m).
+You should have the time in hr already from the cost map.
+At what average speed [km/hr] needs the truck travel to get there in estimated time? +Is the time, speed and distance realistic? + +

r.describe route_20Westernb
+r.describe route_52Hollyb
+
+ +

+If you would like to display streets_cost surface in 3D as shown in the lecture, +you need to multiply the surface by 1000 using r.mapcalc because the numbers +in hours are very low.
+Then switch off all layers except for the streets_cost_1000 +and change display to 3D. + +

Compute accessibility map for help in search for lost person

+Create friction map based on land cover.
+Reminder: Time to time, you should remove or at least uncheck previously +used map layers in the Layer Manager, so the layers are not rendered +when you don't need them anymore.
+First display land cover classes: + +
g.region swwake_30m -p
+r.category landclass96
+
+ +

+Recode the landuse map to friction map using the rules in +friction_rules.txt.
+ +

r.recode landclass96 out=friction rules=friction_rules.txt
+
+ +

+Add the streets to friction map - they are missed by the landuse map. + +

r.mapcalc "friction2 = if(streets_speed > 6, 0.1, friction)"
+r.colors friction2 rules=friction_color.txt
+d.erase
+d.rast friction2
+d.legend friction2 at=5,50,2,5
+
+ +

+Compute the cost map and generate isochrones: + +

r.walk -k elevation=elev_ned_30m friction=friction2 output=walkcost start_coordinates=635576,216485 lambda=0.5 max_cost=10000
+r.contour walkcost output=walkcost step=1000
+
+ +

+To display the input, import coordinates of the point where the lost person was last seen +given in the file lostperson.txt. + +

v.in.ascii input=lostperson.txt output=lostperson separator=comma
+
+ +

+ +Uncheck the friction map and display the results: + +

d.erase
+r.colors -e map=walkcost color=viridis
+d.rast lakes
+d.rast walkcost
+d.vect streets_wake
+d.vect walkcost color=red
+d.vect walkcost color=red where=level=6000 width=3
+d.vect lostperson color=yellow fill_color=yellow icon=basic/marker size=30
+d.legend walkcost at=5,50,2,5
+d.out.file mywalkcostmap
+
+ +

Cost surfaces to line features

+Compute the shortest distance to a major road.
+Set region, convert vector road map to raster: + +
g.region swwake_30m -p
+v.to.rast roadsmajor output=roadsmajor use=val type=line
+
+ +

+Compute the distance map and cost surface to highways: + +

r.mapcalc "area_one = 1"
+r.cost input=area_one output=dist_toroad start_rast=roadsmajor
+r.mapcalc "dist_meters = dist_toroad * (ewres() + nsres())/2."
+r.mapcalc "dist_class = int(dist_meters/500)"
+d.erase
+d.rast dist_class
+d.vect roadsmajor
+d.out.file dist_roadsmaj
+r.cost -k input=streets_travtime output=cdist_toroadk start_rast=roadsmajor
+r.colors cdist_toroadk color=bgyr
+d.rast cdist_toroadk
+d.vect streets_wake color=black
+d.vect roadsmajor color=red
+d.legend cdist_toroadk at=5,50,2,5
+d.out.file cost_roadsmaj
+
+ + + + +
+ + + +
+
+ + + diff --git a/grass/data/cfac_color.txt b/grass/data/cfac_color.txt new file mode 100644 index 00000000..029c61f3 --- /dev/null +++ b/grass/data/cfac_color.txt @@ -0,0 +1,5 @@ +0.0 grey +0.0005 0 100 0 +0.005 green +0.5 orange +0.8 brown diff --git a/grass/data/cfac_rules.txt b/grass/data/cfac_rules.txt new file mode 100644 index 00000000..d5824f51 --- /dev/null +++ b/grass/data/cfac_rules.txt @@ -0,0 +1,11 @@ +1:1:0.0:0.0 +2:2:0.0005:0.0005 +3:3:0.0:0.0 +4:4:0.8:0.8 +5:5:0.0:0.0 +6:6:0.5:0.5 +7:7:0.5:0.5 +8:8:0.5:0.5 +9:9:0.0:0.0 +10:10:0.8:0.8 +11:11:0.005:0.0050 diff --git a/grass/data/cfactor.txt b/grass/data/cfactor.txt new file mode 100644 index 00000000..766b1f6b --- /dev/null +++ b/grass/data/cfactor.txt @@ -0,0 +1,17 @@ +C-factor values for different types of land cover + +Source (see for more detailed values and descriptions): +Haan, Barfield, Hayes: Design Hydrology and Sedimentology for Small Catchments + +Dense Forest 0.0001 - 0.001 values depend on effective canopy 100-75% and at least 5cm litter +Sparse Forest 0.002 - 0.009 canopy 75-20% + +Pasture, idle land 0.100 - 0.011 cover 40-100% +Grassland 0.012 - 0.003 cover 40-100% + +Bare soil 1.200 - 0.900 buldozed, freshly disturbed, or compacted +Mulch on bare soil 0.100 - 0.200 + +Corn, soy 0.650 - 0.20 from tilled seedbed to grown crop + +wetland, water, developed paved area has C=0 as there is no soil. diff --git a/grass/data/deviations_color.txt b/grass/data/deviations_color.txt new file mode 100644 index 00000000..a73651af --- /dev/null +++ b/grass/data/deviations_color.txt @@ -0,0 +1,9 @@ +-0.85 red +-0.4 orange +-0.1 yellow +-0.001 220 220 220 +0.001 220 220 220 +0.1 cyan +0.4 aqua +0.8 blue +1.9 violet diff --git a/grass/data/erdep_class.txt b/grass/data/erdep_class.txt new file mode 100644 index 00000000..3f812dd9 --- /dev/null +++ b/grass/data/erdep_class.txt @@ -0,0 +1,9 @@ +-1200:-50:-4:-4 +-50:-5:-3:-3 +-5:-1:-2:-2 +-1:-0.1:-1:-1 +-0.1:0.1:0:0 +0.1:1:1:1 +1:5:2:2 +5:50:3:3 +50:1500:4:4 diff --git a/grass/data/erdep_color.txt b/grass/data/erdep_color.txt new file mode 100644 index 00000000..1bb982ed --- /dev/null +++ b/grass/data/erdep_color.txt @@ -0,0 +1,11 @@ +-15000 100 0 100 #dark magenta +-100 magenta +-10 red +-1 orange +-0.1 yellow +0 200 255 200 #light green +0.1 cyan +1 aqua +10 blue +100 0 0 100 #dark blue +18000 black diff --git a/grass/data/erdep_label.txt b/grass/data/erdep_label.txt new file mode 100644 index 00000000..28b73714 --- /dev/null +++ b/grass/data/erdep_label.txt @@ -0,0 +1,9 @@ +-4:severe erosion +-3:high erosion +-2:moderate erosion +-1:low erosion +0:stable +1:low deposition +2:moderate deposition +3:high deposition +4:severe deposition diff --git a/grass/data/fire_pt.json b/grass/data/fire_pt.json new file mode 100644 index 00000000..9d4245f3 --- /dev/null +++ b/grass/data/fire_pt.json @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3358" } }, + +"features": [ +{ "type": "Feature", "properties": { "cat": 1 }, "geometry": { "type": "Point", "coordinates": [ 634886.0, 224328.0 ] } } +] +} diff --git a/grass/data/fire_pt.txt b/grass/data/fire_pt.txt new file mode 100644 index 00000000..fa185e88 --- /dev/null +++ b/grass/data/fire_pt.txt @@ -0,0 +1 @@ +634886 224328 diff --git a/grass/data/friction_color.txt b/grass/data/friction_color.txt new file mode 100644 index 00000000..b97d8f57 --- /dev/null +++ b/grass/data/friction_color.txt @@ -0,0 +1,4 @@ +0.1 grey +0.3 brown +10 green +1000 aqua diff --git a/grass/data/friction_rules.txt b/grass/data/friction_rules.txt new file mode 100644 index 00000000..9a9edf76 --- /dev/null +++ b/grass/data/friction_rules.txt @@ -0,0 +1,4 @@ +1:3:0.1:0.1 +4:5:10.:10. +6:6:1000.0:1000.0 +7:7:0.3:0.3 diff --git a/grass/data/geod_pts_spm.zip b/grass/data/geod_pts_spm.zip new file mode 100644 index 00000000..dd94d153 Binary files /dev/null and b/grass/data/geod_pts_spm.zip differ diff --git a/grass/data/lc96ras_cut.tif b/grass/data/lc96ras_cut.tif new file mode 100644 index 00000000..b06ad9ca Binary files /dev/null and b/grass/data/lc96ras_cut.tif differ diff --git a/grass/data/lid_be_pts.txt b/grass/data/lid_be_pts.txt new file mode 100644 index 00000000..758bef59 --- /dev/null +++ b/grass/data/lid_be_pts.txt @@ -0,0 +1,319214 @@ +637044.619|221234.188|116.659 +637062.660|221227.693|118.726 +637068.652|221225.535|119.430 +637092.704|221216.915|121.308 +637117.173|221208.287|120.219 +637123.379|221206.110|119.732 +637135.285|221201.846|120.616 +637171.193|221189.066|121.554 +637195.077|221180.568|122.112 +637200.908|221178.486|122.411 +637218.959|221172.110|121.875 +637224.914|221170.007|121.731 +637231.026|221167.873|120.966 +637237.079|221165.752|120.463 +637242.977|221163.664|120.354 +637248.866|221161.567|120.555 +637260.780|221157.370|119.966 +637272.735|221153.172|119.046 +637278.684|221151.082|118.604 +637284.680|221148.985|118.007 +637302.636|221142.700|116.233 +637326.306|221134.397|114.328 +637332.207|221132.330|113.776 +637360.816|221122.171|114.187 +637372.039|221118.169|114.739 +637405.131|221106.297|117.796 +637437.796|221094.593|120.472 +637454.170|221088.765|121.064 +637427.607|221100.253|119.951 +637405.990|221108.056|117.650 +637400.412|221110.058|117.306 +637394.847|221112.046|117.168 +637383.847|221116.017|115.989 +637378.324|221118.005|115.501 +637372.810|221119.992|114.998 +637361.575|221124.034|114.044 +637332.820|221134.257|114.261 +637327.038|221136.311|114.373 +637321.137|221138.393|114.706 +637315.205|221140.484|115.187 +637303.324|221144.672|116.022 +637285.305|221150.984|118.104 +637279.279|221153.105|118.589 +637273.311|221155.202|119.122 +637261.335|221159.427|119.921 +637249.405|221163.652|120.357 +637243.474|221165.764|120.341 +637237.506|221167.879|120.497 +637231.379|221170.022|121.326 +637225.314|221172.162|121.664 +637219.285|221174.298|121.878 +637207.233|221178.565|122.335 +637201.192|221180.711|122.387 +637195.196|221182.851|122.274 +637183.193|221187.130|122.143 +637177.180|221189.267|122.152 +637165.259|221193.543|121.490 +637147.038|221200.029|121.417 +637135.026|221204.336|120.750 +637128.972|221206.488|120.796 +637123.004|221208.655|119.887 +637098.218|221217.406|121.308 +637092.040|221219.598|121.487 +637079.814|221223.956|121.259 +637061.779|221230.503|118.567 +637042.689|220479.216|124.828 +637049.090|220484.708|124.465 +637050.239|220488.274|124.557 +637046.856|220491.088|124.712 +637041.174|220493.191|124.950 +637035.530|220495.285|125.096 +637034.862|220500.259|125.249 +637040.541|220498.168|125.011 +637046.301|220496.056|124.511 +637039.559|220499.845|124.776 +637033.829|220501.954|125.218 +637036.377|220511.582|125.163 +637042.132|220509.464|124.855 +637035.694|220513.945|124.886 +637036.118|220526.304|124.520 +637039.160|220529.901|124.304 +637045.006|220527.764|123.679 +637050.779|220525.640|123.325 +637068.052|220519.294|122.094 +637063.419|220522.601|122.371 +637040.257|220531.132|124.301 +637034.472|220533.266|124.770 +637044.811|220533.876|123.734 +637073.703|220523.275|121.515 +637065.866|220527.868|121.945 +637060.023|220530.017|122.518 +637048.465|220534.284|123.307 +637036.919|220538.542|124.130 +637034.688|220543.785|124.231 +637051.986|220537.408|123.316 +637057.807|220535.287|122.560 +637069.387|220531.041|121.573 +637075.184|220528.907|121.186 +637075.013|220531.145|120.981 +637069.164|220533.296|121.551 +637063.394|220535.418|122.109 +637057.600|220537.554|122.545 +637051.782|220539.709|122.859 +637045.981|220541.846|123.368 +637040.108|220544.007|123.911 +637034.329|220546.150|124.157 +637035.097|220549.908|123.935 +637040.909|220547.765|123.591 +637052.467|220543.501|122.960 +637058.228|220541.377|122.624 +637064.083|220539.237|122.003 +637075.663|220534.985|121.030 +637081.478|220532.858|120.384 +637077.549|220536.561|120.655 +637065.940|220540.837|121.759 +637060.093|220542.989|122.374 +637054.330|220545.123|122.731 +637036.843|220551.588|123.926 +637047.088|220551.984|123.112 +637052.845|220549.850|122.978 +637058.725|220547.704|122.237 +637064.385|220545.601|122.249 +637070.231|220543.458|121.661 +637075.943|220541.352|121.320 +637081.180|220541.285|120.381 +637075.404|220543.410|120.920 +637069.597|220545.549|121.359 +637063.766|220547.695|121.908 +637052.169|220551.981|122.627 +637040.409|220556.306|123.758 +637034.704|220558.433|123.752 +637035.338|220562.761|123.520 +637041.184|220560.607|123.277 +637052.751|220556.348|122.600 +637058.661|220554.187|121.969 +637070.249|220549.920|121.341 +637087.730|220543.522|119.686 +637084.432|220546.147|120.085 +637078.589|220548.296|120.625 +637072.819|220550.420|121.173 +637067.064|220552.551|121.469 +637049.590|220559.000|122.746 +637037.977|220563.295|123.432 +637035.103|220568.775|123.252 +637040.925|220566.639|122.841 +637046.670|220564.511|122.713 +637052.461|220562.377|122.454 +637058.359|220560.223|121.844 +637064.114|220558.092|121.743 +637069.911|220555.964|121.298 +637075.644|220553.849|121.091 +637081.347|220551.749|120.783 +637087.248|220549.609|119.835 +637087.007|220551.261|119.646 +637081.039|220553.432|120.607 +637075.254|220555.565|120.978 +637069.539|220557.684|121.140 +637063.757|220559.814|121.551 +637052.050|220564.124|122.469 +637040.525|220568.394|122.847 +637034.664|220570.558|123.182 +637035.892|220574.402|123.066 +637041.635|220572.280|122.926 +637053.272|220567.989|122.408 +637059.139|220565.840|121.902 +637064.912|220563.719|121.509 +637093.871|220553.087|119.351 +637096.097|220554.370|119.180 +637084.374|220558.668|120.387 +637067.095|220565.047|121.329 +637061.304|220567.190|121.579 +637055.518|220569.330|121.811 +637049.581|220571.509|122.371 +637043.817|220573.643|122.573 +637035.618|220580.477|122.219 +637047.042|220576.228|122.387 +637052.879|220574.088|121.954 +637058.737|220571.939|121.466 +637064.577|220569.781|121.295 +637070.402|220567.638|120.960 +637076.102|220565.529|120.850 +637081.917|220563.395|120.381 +637087.626|220561.283|120.271 +637098.041|220559.671|119.140 +637092.174|220561.826|119.759 +637086.319|220563.975|120.344 +637080.585|220566.099|120.552 +637074.779|220568.251|120.805 +637069.183|220570.348|120.585 +637063.300|220572.512|121.134 +637057.509|220574.658|121.387 +637051.605|220576.822|122.054 +637040.071|220581.120|122.048 +637041.927|220584.698|121.807 +637053.458|220580.416|121.859 +637065.068|220576.142|121.262 +637088.190|220567.620|120.195 +637099.757|220563.377|119.320 +637100.845|220564.453|119.427 +637083.584|220570.823|120.369 +637077.982|220572.920|120.143 +637072.075|220575.088|120.741 +637066.257|220577.236|121.064 +637060.447|220579.382|121.366 +637054.549|220581.552|121.771 +637048.825|220583.680|121.829 +637043.113|220585.817|121.631 +637037.380|220587.969|121.295 +637035.493|220593.324|121.164 +637041.403|220591.151|120.887 +637047.088|220589.032|121.186 +637058.551|220584.783|121.274 +637064.318|220582.656|121.116 +637070.192|220580.510|120.613 +637075.937|220578.386|120.564 +637087.458|220574.140|120.201 +637093.241|220572.018|119.857 +637098.904|220569.930|119.713 +637103.781|220569.482|119.546 +637092.323|220573.728|119.863 +637086.565|220575.868|119.927 +637080.820|220577.992|120.195 +637075.038|220580.132|120.375 +637069.317|220582.250|120.597 +637063.419|220584.424|120.994 +637057.646|220586.560|121.210 +637034.566|220595.144|121.289 +637035.676|220599.069|121.061 +637047.267|220594.787|120.820 +637064.504|220588.401|120.905 +637081.835|220582.025|120.146 +637087.617|220579.891|119.991 +637093.311|220577.788|119.930 +637105.917|220575.024|119.616 +637100.190|220577.145|119.759 +637088.839|220581.363|119.759 +637083.069|220583.500|119.869 +637077.284|220585.640|120.064 +637065.684|220589.919|120.616 +637054.171|220594.193|120.707 +637048.444|220596.329|120.570 +637042.744|220598.457|120.344 +637036.846|220600.633|120.604 +637041.909|220603.096|120.405 +637047.770|220600.932|120.296 +637053.528|220598.801|120.341 +637059.261|220596.671|120.485 +637064.989|220594.555|120.448 +637070.798|220592.409|120.366 +637076.635|220590.273|119.976 +637082.429|220588.139|119.765 +637093.890|220583.909|119.598 +637099.593|220581.802|119.518 +637105.265|220579.702|119.573 +637110.940|220577.602|119.619 +637109.770|220580.327|119.537 +637104.122|220582.430|119.415 +637098.383|220584.549|119.622 +637092.655|220586.679|119.589 +637086.980|220588.782|119.616 +637081.244|220590.910|119.637 +637075.452|220593.046|119.872 +637069.676|220595.180|120.073 +637052.327|220601.614|120.183 +637040.711|220605.918|120.287 +637034.704|220608.113|120.966 +637035.850|220611.560|120.485 +637041.744|220609.393|120.229 +637047.600|220607.247|119.906 +637053.324|220605.120|120.064 +637070.847|220598.673|119.406 +637076.510|220596.567|119.610 +637082.289|220594.439|119.439 +637088.074|220592.309|119.268 +637093.780|220590.194|119.384 +637099.416|220588.100|119.518 +637105.106|220585.996|119.500 +637110.821|220583.887|119.403 +637108.855|220586.646|119.259 +637097.541|220590.855|119.116 +637091.835|220592.970|119.232 +637086.096|220595.101|119.259 +637080.512|220597.189|119.000 +637074.636|220599.344|119.537 +637068.902|220601.471|119.601 +637063.026|220603.635|119.963 +637057.289|220605.772|119.845 +637051.477|220607.936|119.796 +637045.762|220610.067|119.640 +637039.809|220612.240|120.344 +637033.868|220614.422|120.808 +637038.221|220617.324|120.549 +637044.253|220615.132|119.808 +637050.126|220612.980|119.424 +637055.863|220610.853|119.540 +637061.563|220608.735|119.802 +637067.375|220606.592|119.692 +637073.227|220604.440|119.461 +637079.000|220602.315|119.296 +637090.534|220598.064|119.061 +637096.258|220595.942|119.107 +637101.888|220593.854|119.275 +637107.551|220591.757|119.354 +637113.248|220589.651|119.320 +637118.432|220589.115|119.119 +637112.784|220591.202|119.204 +637089.979|220599.664|119.086 +637084.331|220601.773|118.805 +637078.531|220603.910|119.055 +637072.673|220606.071|119.299 +637066.805|220608.229|119.598 +637061.072|220610.350|119.683 +637055.336|220612.499|119.329 +637049.590|220614.632|119.259 +637043.598|220616.824|119.848 +637037.709|220618.994|120.098 +637037.511|220623.719|120.171 +637043.461|220621.548|119.710 +637049.480|220619.378|118.799 +637055.369|220617.217|118.601 +637060.983|220615.117|119.156 +637066.769|220612.983|119.140 +637072.593|220610.844|118.991 +637084.154|220606.589|118.830 +637089.851|220604.483|118.961 +637095.670|220602.349|118.683 +637101.418|220600.231|118.668 +637107.060|220598.143|118.802 +637112.635|220596.067|119.171 +637121.468|220594.238|119.006 +637115.802|220596.341|118.924 +637110.172|220598.435|118.744 +637104.503|220600.538|118.720 +637092.991|220604.800|118.851 +637087.324|220606.912|118.644 +637075.830|220611.176|118.586 +637069.999|220613.316|118.991 +637064.205|220615.462|119.058 +637058.551|220617.592|118.424 +637052.766|220619.732|118.485 +637046.761|220621.923|119.131 +637040.793|220624.109|119.653 +637034.850|220626.288|120.125 +637038.221|220629.894|119.354 +637044.113|220627.736|119.086 +637050.026|220625.572|118.769 +637055.966|220623.414|118.138 +637061.758|220621.283|118.065 +637067.491|220619.162|118.211 +637073.300|220617.025|118.098 +637079.052|220614.901|118.217 +637084.798|220612.785|118.141 +637090.415|220610.694|118.519 +637096.100|220608.588|118.683 +637101.790|220606.482|118.848 +637118.871|220600.179|118.951 +637124.355|220600.255|118.875 +637118.640|220602.364|118.961 +637095.856|220610.813|118.561 +637090.211|220612.916|118.272 +637084.578|220615.017|117.952 +637078.759|220617.174|117.842 +637072.999|220619.296|117.994 +637067.211|220621.433|118.037 +637061.383|220623.591|118.001 +637055.619|220625.721|117.997 +637049.569|220627.928|118.564 +637043.634|220630.101|118.970 +637037.813|220632.253|119.003 +637039.093|220636.167|118.339 +637045.030|220634.003|117.915 +637050.940|220631.842|117.620 +637056.835|220629.684|117.400 +637068.466|220625.401|117.333 +637074.245|220623.274|117.342 +637079.982|220621.161|117.290 +637085.813|220619.009|117.385 +637091.461|220616.915|117.671 +637097.218|220614.785|117.821 +637102.836|220612.706|118.016 +637128.232|220605.583|118.802 +637122.556|220607.683|118.763 +637111.215|220611.892|118.476 +637105.637|220613.974|118.156 +637099.946|220616.086|118.004 +637094.365|220618.189|117.269 +637088.638|220620.317|117.040 +637082.902|220622.435|117.089 +637077.117|220624.572|117.095 +637071.335|220626.721|116.882 +637065.516|220628.864|117.040 +637059.658|220631.025|117.141 +637053.760|220633.192|117.382 +637047.871|220635.353|117.623 +637041.876|220637.547|118.028 +637035.944|220639.730|118.229 +637039.111|220642.881|117.812 +637045.027|220640.720|117.452 +637051.007|220638.547|116.894 +637056.838|220636.401|116.885 +637062.602|220634.277|116.903 +637068.485|220632.116|116.742 +637074.358|220629.973|116.412 +637080.134|220627.843|116.443 +637085.934|220625.709|116.400 +637091.625|220623.606|116.534 +637097.300|220621.494|116.955 +637108.471|220617.333|117.781 +637114.077|220615.245|118.260 +637125.388|220611.054|118.702 +637113.208|220617.711|118.022 +637107.664|220619.787|117.577 +637101.988|220621.896|117.363 +637096.529|220623.965|116.434 +637090.827|220626.090|116.129 +637085.047|220628.230|116.096 +637079.329|220630.357|115.879 +637073.587|220632.475|115.983 +637067.564|220634.667|116.626 +637061.700|220636.828|116.745 +637055.954|220638.971|116.449 +637050.044|220641.138|116.769 +637044.058|220643.320|117.382 +637034.365|220651.763|117.266 +637040.544|220649.547|116.187 +637052.071|220645.283|116.608 +637057.954|220643.140|116.181 +637070.091|220638.760|114.550 +637075.529|220636.697|115.763 +637081.381|220634.554|115.532 +637087.190|220632.421|115.468 +637092.881|220630.308|115.830 +637098.532|220628.202|116.345 +637104.082|220626.123|116.979 +637115.223|220621.972|117.949 +637120.913|220619.869|118.159 +637126.589|220617.778|118.208 +637134.145|220616.656|118.442 +637128.564|220618.735|118.077 +637122.858|220620.850|117.921 +637117.109|220622.975|117.924 +637111.455|220625.078|117.629 +637105.902|220627.163|117.001 +637100.382|220629.242|116.254 +637089.071|220633.457|115.519 +637083.274|220635.609|115.321 +637077.543|220637.736|115.138 +637072.093|220639.809|113.983 +637066.107|220641.991|114.495 +637060.142|220644.171|114.953 +637054.333|220646.332|114.654 +637047.962|220648.578|116.617 +637042.452|220650.672|115.507 +637036.023|220652.940|117.501 +637051.766|220651.788|116.513 +637057.634|220649.642|116.361 +637063.522|220647.490|116.156 +637069.405|220645.338|115.989 +637075.224|220643.211|115.830 +637081.308|220641.034|114.776 +637087.282|220638.861|114.352 +637092.933|220636.761|114.849 +637098.538|220634.682|115.288 +637109.480|220630.567|117.104 +637120.846|220626.373|117.531 +637126.500|220624.279|117.863 +637132.154|220622.198|117.982 +637137.827|220620.110|118.065 +637131.633|220624.093|117.949 +637125.946|220626.191|117.952 +637114.638|220630.394|117.342 +637109.054|220632.482|116.818 +637103.561|220634.563|115.766 +637097.980|220636.660|115.026 +637092.506|220638.727|114.157 +637086.834|220640.842|113.758 +637080.472|220643.092|115.547 +637074.602|220645.250|115.650 +637068.789|220647.386|115.800 +637062.803|220649.578|116.120 +637051.023|220653.897|116.617 +637064.257|220653.684|116.361 +637070.182|220651.526|116.028 +637076.132|220649.361|115.632 +637081.957|220647.234|115.468 +637087.824|220645.094|115.175 +637093.771|220642.942|114.636 +637099.541|220640.821|114.724 +637105.155|220638.727|115.355 +637110.703|220636.645|116.236 +637121.779|220632.518|117.406 +637127.485|220630.415|117.555 +637133.243|220628.315|117.327 +637112.696|220638.008|116.598 +637107.216|220640.083|115.504 +637101.778|220642.138|114.495 +637096.093|220644.262|113.889 +637090.016|220646.448|114.892 +637078.144|220650.770|115.754 +637072.188|220652.952|115.943 +637066.296|220655.107|116.163 +637060.380|220657.268|116.489 +637048.377|220661.639|117.348 +637053.296|220664.092|117.159 +637059.289|220661.928|116.553 +637071.164|220657.600|116.025 +637076.946|220655.479|115.998 +637082.883|220653.321|115.681 +637088.809|220651.172|115.187 +637094.780|220649.002|114.788 +637100.836|220646.829|113.895 +637106.387|220644.747|114.764 +637111.836|220642.695|115.760 +637117.317|220640.638|116.653 +637128.756|220636.420|117.092 +637134.507|220634.307|117.114 +637140.119|220632.235|117.397 +637145.776|220630.153|117.543 +637139.089|220634.963|117.150 +637133.422|220637.066|116.858 +637110.971|220645.423|115.105 +637105.420|220647.511|114.258 +637099.775|220649.617|113.739 +637093.667|220651.806|114.852 +637087.797|220653.949|115.169 +637075.897|220658.286|115.946 +637064.035|220662.623|116.455 +637057.963|220664.824|117.126 +637051.937|220667.012|117.659 +637045.996|220669.186|117.903 +637033.963|220673.581|118.552 +637047.594|220672.651|118.040 +637071.429|220663.998|116.300 +637077.351|220661.843|115.992 +637083.298|220659.679|115.614 +637089.245|220657.518|115.263 +637095.213|220655.360|114.636 +637106.880|220651.105|114.133 +637112.480|220649.014|114.837 +637117.917|220646.954|116.099 +637129.347|220642.759|116.089 +637135.891|220642.299|116.233 +637130.350|220644.366|115.751 +637124.656|220646.484|115.352 +637118.850|220648.612|115.568 +637113.214|220650.721|114.998 +637107.685|220652.806|114.066 +637102.147|220654.894|113.179 +637095.965|220657.097|114.547 +637089.979|220659.264|115.257 +637083.941|220661.465|115.715 +637078.058|220663.623|115.882 +637072.106|220665.793|116.315 +637066.199|220667.954|116.608 +637054.095|220672.359|117.589 +637042.080|220676.733|118.592 +637035.874|220683.298|119.613 +637054.028|220676.723|118.101 +637066.001|220672.398|116.906 +637072.069|220670.207|116.278 +637083.908|220665.900|115.702 +637089.903|220663.730|115.172 +637095.840|220661.581|114.648 +637102.016|220659.377|113.550 +637113.379|220655.168|114.370 +637118.999|220653.083|114.782 +637124.675|220650.992|115.023 +637130.533|220648.852|114.888 +637136.208|220646.758|115.163 +637141.682|220644.710|115.903 +637152.917|220640.553|116.684 +637151.162|220642.711|116.425 +637134.410|220648.956|114.898 +637128.719|220651.071|114.465 +637122.919|220653.196|114.657 +637117.225|220655.311|114.270 +637105.972|220659.517|113.072 +637093.713|220663.925|114.977 +637069.814|220672.627|116.705 +637057.704|220677.016|117.933 +637035.459|220689.589|119.707 +637053.421|220683.060|118.833 +637065.537|220678.705|117.306 +637083.508|220672.206|115.812 +637095.435|220667.884|114.971 +637101.418|220665.729|114.282 +637107.359|220663.580|113.767 +637113.427|220661.410|112.834 +637130.414|220655.122|114.126 +637141.743|220650.943|114.730 +637147.248|220648.895|115.373 +637152.978|220646.792|115.495 +637154.838|220647.889|115.574 +637138.074|220654.144|113.852 +637126.662|220658.353|113.575 +637115.448|220662.550|112.225 +637103.250|220666.933|114.117 +637091.308|220671.277|114.992 +637085.316|220673.450|115.544 +637079.265|220675.647|116.080 +637073.270|220677.830|116.464 +637067.238|220680.021|116.982 +637055.022|220684.423|118.665 +637042.887|220688.830|119.686 +637041.229|220693.588|120.253 +637071.569|220682.670|116.714 +637077.543|220680.512|116.187 +637083.456|220678.363|115.900 +637101.333|220671.883|114.684 +637125.141|220663.269|112.782 +637130.862|220661.169|112.871 +637136.583|220659.069|112.977 +637142.100|220657.009|113.791 +637147.489|220654.958|115.257 +637153.350|220652.842|114.715 +637152.146|220655.220|114.700 +637135.632|220661.419|112.154 +637117.896|220667.860|113.450 +637111.913|220670.036|113.874 +637099.937|220674.383|114.806 +637094.067|220676.519|115.126 +637088.089|220678.689|115.626 +637070.030|220685.246|116.982 +637045.521|220694.082|120.009 +637059.502|220693.012|118.616 +637077.656|220686.477|116.565 +637083.691|220684.295|116.062 +637095.530|220680.003|115.266 +637101.516|220677.839|114.776 +637125.214|220669.247|113.236 +637131.091|220667.107|113.011 +637142.984|220662.812|111.929 +637148.525|220660.755|112.450 +637159.669|220656.619|113.547 +637161.007|220658.484|113.392 +637155.389|220660.575|112.895 +637138.177|220666.909|112.721 +637132.383|220669.027|112.892 +637126.470|220671.179|113.264 +637114.668|220675.477|113.977 +637108.688|220677.647|114.419 +637102.851|220679.781|114.605 +637090.979|220684.118|115.053 +637072.855|220690.674|116.897 +637066.699|220692.896|117.668 +637060.532|220695.103|118.735 +637041.062|220706.121|121.317 +637071.600|220695.142|117.370 +637077.626|220692.960|116.861 +637083.624|220690.796|116.242 +637101.616|220684.295|114.535 +637107.463|220682.152|114.550 +637119.395|220677.845|113.340 +637131.018|220673.590|113.282 +637136.952|220671.438|112.868 +637148.790|220667.162|111.749 +637160.071|220662.983|112.581 +637163.348|220663.821|112.715 +637158.011|220665.848|111.496 +637140.226|220672.316|112.770 +637122.556|220678.766|113.617 +637116.530|220680.948|114.191 +637110.706|220683.085|114.319 +637104.716|220685.258|114.806 +637092.756|220689.613|115.559 +637080.701|220693.993|116.504 +637074.623|220696.191|117.196 +637062.236|220700.647|119.034 +637049.861|220705.091|120.936 +637043.720|220707.319|121.530 +637058.685|220706.481|119.726 +637064.821|220704.274|118.988 +637077.104|220699.885|117.098 +637089.080|220695.542|116.419 +637107.048|220689.056|114.864 +637112.946|220686.907|114.706 +637118.941|220684.740|114.236 +637124.900|220682.588|113.681 +637130.737|220680.460|113.575 +637136.687|220678.299|113.328 +637142.618|220676.150|112.929 +637148.510|220674.020|112.481 +637154.384|220671.892|112.103 +637160.269|220669.762|111.709 +637166.265|220667.610|110.972 +637167.036|220668.850|111.530 +637161.217|220670.978|111.697 +637155.301|220673.136|111.987 +637149.373|220675.282|112.560 +637143.508|220677.415|112.938 +637137.598|220679.567|113.270 +637131.716|220681.713|113.535 +637113.812|220688.214|114.870 +637107.944|220690.366|114.937 +637089.882|220696.919|116.416 +637083.874|220699.105|116.836 +637059.310|220707.969|119.732 +637052.989|220710.212|121.198 +637046.929|220712.425|121.484 +637040.824|220714.641|121.951 +637045.372|220717.335|121.826 +637051.376|220715.159|121.503 +637063.583|220710.779|119.939 +637081.914|220704.216|117.388 +637093.884|220699.888|116.480 +637105.945|220695.542|115.346 +637117.762|220691.256|114.703 +637123.629|220689.126|114.437 +637135.529|220684.822|113.633 +637147.285|220680.561|112.962 +637153.170|220678.433|112.514 +637159.032|220676.309|112.173 +637164.869|220674.187|111.938 +637170.764|220672.057|111.523 +637157.060|220678.601|112.438 +637151.162|220680.741|112.919 +637145.343|220682.865|113.148 +637133.477|220687.178|114.017 +637127.491|220689.351|114.431 +637115.680|220693.658|115.020 +637109.724|220695.825|115.394 +637085.733|220704.546|117.053 +637079.674|220706.737|117.687 +637067.311|220711.181|119.461 +637048.904|220717.826|121.573 +637042.793|220720.042|122.085 +637036.615|220722.270|122.865 +637045.384|220723.318|121.911 +637111.715|220699.388|115.641 +637123.617|220695.072|114.946 +637135.480|220690.781|114.026 +637141.359|220688.644|113.773 +637153.173|220684.368|112.926 +637159.065|220682.234|112.465 +637164.863|220680.134|112.139 +637176.591|220678.183|111.173 +637170.693|220680.314|111.822 +637164.792|220682.454|112.270 +637158.934|220684.581|112.599 +637153.024|220686.730|112.892 +637147.077|220688.885|113.340 +637123.388|220697.474|114.995 +637117.356|220699.663|115.391 +637099.468|220706.149|116.684 +637087.209|220710.562|118.156 +637069.006|220717.143|119.759 +637062.849|220719.356|120.604 +637050.590|220723.775|121.911 +637044.576|220725.973|122.054 +637038.434|220728.186|122.701 +637044.335|220729.932|122.509 +637056.454|220725.546|121.652 +637062.504|220723.370|120.936 +637074.623|220718.999|119.756 +637092.753|220712.461|117.991 +637098.806|220710.279|117.412 +637128.643|220699.492|115.035 +637134.517|220697.358|114.767 +637152.326|220690.924|113.230 +637158.322|220688.763|112.633 +637164.165|220686.642|112.356 +637170.056|220684.508|111.938 +637175.893|220682.396|111.502 +637178.036|220683.969|111.264 +637166.268|220688.248|112.048 +637148.553|220694.679|113.383 +637142.600|220696.837|113.889 +637136.598|220699.004|114.587 +637130.633|220701.174|114.956 +637124.742|220703.317|115.318 +637118.713|220705.497|115.949 +637106.816|220709.834|116.489 +637100.739|220712.019|117.370 +637094.606|220714.223|118.241 +637076.321|220720.834|120.137 +637052.083|220729.634|121.948 +637045.957|220731.853|122.518 +637039.855|220734.066|123.042 +637033.820|220736.263|123.328 +637037.236|220739.144|123.216 +637067.418|220728.210|121.103 +637073.605|220725.997|120.146 +637103.512|220715.162|118.080 +637109.611|220712.979|117.135 +637115.567|220710.821|116.720 +637127.464|220706.518|115.779 +637133.355|220704.381|115.425 +637139.457|220702.193|114.596 +637145.395|220700.044|114.136 +637163.125|220693.631|112.703 +637169.057|220691.491|112.133 +637179.697|220689.540|111.200 +637167.868|220693.832|112.179 +637161.897|220695.987|112.904 +637150.080|220700.294|113.544 +637144.045|220702.467|114.322 +637126.077|220708.983|115.910 +637113.994|220713.360|117.059 +637108.081|220715.515|117.336 +637071.685|220728.707|120.658 +637059.502|220733.127|121.686 +637041.223|220739.765|123.054 +637035.155|220741.987|123.213 +637041.260|220744.535|123.219 +637053.424|220740.149|122.140 +637059.459|220737.970|121.686 +637071.426|220733.624|121.241 +637077.476|220731.450|120.564 +637083.594|220729.253|119.902 +637101.397|220722.794|119.122 +637107.591|220720.587|118.058 +637113.620|220718.411|117.610 +637131.520|220711.952|116.120 +637137.580|220709.776|115.431 +637149.589|220705.466|114.050 +637155.475|220703.342|113.572 +637161.388|220701.199|113.249 +637167.456|220699.026|112.426 +637173.257|220696.916|112.304 +637179.173|220694.780|111.819 +637185.086|220692.658|111.142 +637187.076|220693.439|111.185 +637181.121|220695.594|111.795 +637175.262|220697.727|112.103 +637169.316|220699.876|112.721 +637145.502|220708.499|114.879 +637139.461|220710.681|115.501 +637133.477|220712.842|116.172 +637121.480|220717.186|117.229 +637115.518|220719.350|117.665 +637109.462|220721.544|118.235 +637085.319|220730.295|120.198 +637079.244|220732.496|120.725 +637073.209|220734.690|121.113 +637061.127|220739.086|121.780 +637055.061|220741.295|122.124 +637048.953|220743.508|122.643 +637042.775|220745.745|123.216 +637044.457|220749.543|123.328 +637050.489|220747.367|122.829 +637068.564|220740.835|121.545 +637074.517|220738.668|121.433 +637086.568|220734.319|120.494 +637092.658|220732.139|119.710 +637116.479|220723.532|118.055 +637122.373|220721.389|117.848 +637128.399|220719.222|117.208 +637134.334|220717.073|116.903 +637152.421|220710.611|114.261 +637170.166|220704.198|113.002 +637176.088|220702.065|112.459 +637181.816|220699.980|112.365 +637187.796|220697.846|111.459 +637176.744|220703.525|112.636 +637170.888|220705.655|112.965 +637165.039|220707.783|113.285 +637159.038|220709.950|113.922 +637141.030|220716.442|116.007 +637128.966|220720.801|117.272 +637110.971|220727.308|118.991 +637105.058|220729.472|119.073 +637093.082|220733.825|119.845 +637087.001|220736.028|120.372 +637068.844|220742.612|121.762 +637062.867|220744.791|121.993 +637038.529|220753.637|123.557 +637043.058|220756.490|123.548 +637049.063|220754.307|123.383 +637061.169|220749.946|122.262 +637067.250|220747.745|121.875 +637073.191|220745.581|121.795 +637085.142|220741.262|120.960 +637091.180|220739.089|120.344 +637097.172|220736.922|119.924 +637121.029|220728.293|118.403 +637138.830|220721.867|117.004 +637144.935|220719.682|116.150 +637150.936|220717.527|115.446 +637156.859|220715.400|114.815 +637186.406|220704.738|112.441 +637177.646|220710.096|113.145 +637129.823|220727.357|117.964 +637123.858|220729.518|118.406 +637117.835|220731.700|118.839 +637111.775|220733.889|119.424 +637099.879|220738.223|119.866 +637081.850|220744.773|120.893 +637069.682|220749.178|121.847 +637063.635|220751.381|122.097 +637057.494|220753.597|122.728 +637051.401|220755.804|123.203 +637039.218|220760.224|123.972 +637065.248|220755.039|122.429 +637077.171|220750.714|121.835 +637107.228|220739.848|119.750 +637124.986|220733.416|118.769 +637142.899|220726.955|117.217 +637166.761|220718.362|114.943 +637184.470|220711.974|113.444 +637195.452|220710.218|112.499 +637189.478|220712.373|113.176 +637183.571|220714.513|113.648 +637177.661|220716.652|114.169 +637165.826|220720.932|115.324 +637159.952|220723.074|115.565 +637154.018|220725.235|115.797 +637129.999|220733.904|118.424 +637124.050|220736.065|118.830 +637112.187|220740.387|119.354 +637106.121|220742.588|119.768 +637100.169|220744.758|120.046 +637088.175|220749.120|120.747 +637082.039|220751.326|121.518 +637076.096|220753.503|121.612 +637069.999|220755.700|122.292 +637038.681|220771.495|124.490 +637062.873|220762.741|122.890 +637086.870|220754.054|121.433 +637092.997|220751.854|120.719 +637116.732|220743.237|119.710 +637122.760|220741.061|119.235 +637134.657|220736.769|118.217 +637146.507|220732.481|117.458 +637158.623|220728.137|115.867 +637164.363|220726.040|115.873 +637170.322|220723.891|115.367 +637187.997|220717.506|113.989 +637193.867|220715.381|113.651 +637184.522|220720.578|114.690 +637142.990|220735.641|117.775 +637137.132|220737.775|118.034 +637107.203|220748.638|120.113 +637101.110|220750.842|120.661 +637089.141|220755.200|121.265 +637052.586|220768.462|123.874 +637040.477|220772.873|124.395 +637041.437|220776.887|124.423 +637077.613|220763.823|122.286 +637095.606|220757.325|121.280 +637101.607|220755.164|120.820 +637113.565|220750.845|120.116 +637119.530|220748.699|119.622 +637137.488|220742.240|118.037 +637143.386|220740.104|117.869 +637149.324|220737.967|117.351 +637161.290|220733.678|116.071 +637167.069|220731.569|116.166 +637172.934|220729.442|115.995 +637190.615|220723.074|114.614 +637178.640|220728.869|115.702 +637166.886|220733.133|116.379 +637161.068|220735.260|116.440 +637155.112|220737.412|116.995 +637149.144|220739.564|117.620 +637143.338|220741.686|117.702 +637137.245|220743.880|118.345 +637119.338|220750.357|119.805 +637113.376|220752.524|120.076 +637101.354|220756.886|120.808 +637083.243|220763.439|122.259 +637077.272|220765.612|122.460 +637065.107|220770.023|123.277 +637059.082|220772.214|123.517 +637053.050|220774.409|123.792 +637046.929|220776.628|124.185 +637040.827|220778.841|124.526 +637038.800|220783.891|124.718 +637044.820|220781.712|124.423 +637050.831|220779.536|124.194 +637104.869|220760.028|120.844 +637116.637|220755.770|120.329 +637122.657|220753.603|119.845 +637128.616|220751.457|119.372 +637134.666|220749.293|118.598 +637140.588|220747.163|118.068 +637146.520|220745.020|117.766 +637193.486|220728.067|114.803 +637205.200|220723.858|113.761 +637201.561|220726.726|114.309 +637183.867|220733.121|115.696 +637177.996|220735.248|116.108 +637172.205|220737.357|116.266 +637154.457|220743.786|117.479 +637148.565|220745.934|117.626 +637142.624|220748.077|118.180 +637136.696|220750.229|118.485 +637100.669|220763.262|121.277 +637094.661|220765.445|121.554 +637088.662|220767.612|122.057 +637064.486|220776.390|123.316 +637052.303|220780.795|124.325 +637046.359|220782.971|124.292 +637040.175|220785.208|124.715 +637034.054|220787.424|125.172 +637048.414|220786.427|124.432 +637054.415|220784.254|124.240 +637060.441|220782.075|123.978 +637072.566|220777.710|122.990 +637096.429|220769.087|121.780 +637108.337|220764.786|121.161 +637126.278|220758.337|119.634 +637132.331|220756.164|119.064 +637138.318|220754.012|118.528 +637144.191|220751.890|118.186 +637150.107|220749.751|117.936 +637208.854|220728.573|114.014 +637208.083|220731.200|114.130 +637202.167|220733.334|114.611 +637184.519|220739.707|115.882 +637172.797|220743.953|116.449 +637161.132|220748.196|116.672 +637143.155|220754.664|118.378 +637137.223|220756.810|118.705 +637131.271|220758.959|119.128 +637107.088|220767.667|121.210 +637088.982|220774.208|122.384 +637070.880|220780.764|123.261 +637058.771|220785.141|123.956 +637052.675|220787.351|124.252 +637046.548|220789.561|124.688 +637040.541|220791.752|124.685 +637044.933|220793.956|124.734 +637087.093|220778.737|122.374 +637110.962|220770.120|121.076 +637116.881|220767.990|120.689 +637122.904|220765.823|120.177 +637128.860|220763.680|119.698 +637140.902|220759.370|118.351 +637170.477|220748.717|116.342 +637176.213|220746.629|116.345 +637182.151|220744.493|115.907 +637193.788|220740.280|115.446 +637199.637|220738.180|114.931 +637205.428|220736.089|114.617 +637211.375|220733.956|114.035 +637201.338|220739.899|114.666 +637189.558|220744.157|115.550 +637183.724|220746.273|115.843 +637177.902|220748.385|116.123 +637172.013|220750.519|116.419 +637166.265|220752.616|116.480 +637154.350|220756.916|117.431 +637148.348|220759.081|117.982 +637136.519|220763.360|118.775 +637124.443|220767.716|119.842 +637118.426|220769.874|120.564 +637112.480|220772.031|120.820 +637106.365|220774.229|121.487 +637100.336|220776.411|121.856 +637082.396|220782.928|122.557 +637070.259|220787.308|123.560 +637033.823|220800.512|125.502 +637042.726|220801.600|125.115 +637150.561|220762.790|117.680 +637156.438|220760.672|117.354 +637179.972|220752.189|115.937 +637197.507|220745.864|114.995 +637209.153|220741.664|114.392 +637184.108|220752.253|115.519 +637178.137|220754.402|116.068 +637172.220|220756.538|116.449 +637166.399|220758.645|116.760 +637148.635|220765.061|117.933 +637142.594|220767.240|118.412 +637130.615|220771.547|119.534 +637112.519|220778.048|121.381 +637106.484|220780.231|121.753 +637082.530|220788.911|122.731 +637039.977|220804.295|125.267 +637039.090|220808.976|125.331 +637081.305|220793.822|122.798 +637111.157|220783.093|121.204 +637123.117|220778.813|120.216 +637129.119|220776.661|119.805 +637135.129|220774.519|119.140 +637147.087|220770.255|117.894 +637153.015|220768.124|117.604 +637158.922|220766.009|117.174 +637176.530|220759.684|116.181 +637182.480|220757.553|115.693 +637188.320|220755.456|115.379 +637199.957|220751.265|114.946 +637211.592|220747.093|114.166 +637213.649|220747.986|113.813 +637202.067|220752.168|114.428 +637196.199|220754.283|114.794 +637184.519|220758.501|115.416 +637178.612|220760.623|115.980 +637172.729|220762.735|116.498 +637166.819|220764.878|116.662 +637160.915|220767.005|117.059 +637155.011|220769.133|117.479 +637149.001|220771.288|118.068 +637143.097|220773.412|118.528 +637131.109|220777.725|119.473 +637113.019|220784.220|121.103 +637106.932|220786.406|121.667 +637100.918|220788.564|122.234 +637040.522|220810.385|125.194 +637043.022|220813.884|125.112 +637138.912|220779.484|118.906 +637150.787|220775.223|118.168 +637186.253|220762.522|115.431 +637192.115|220760.422|115.041 +637198.028|220758.309|114.495 +637203.850|220756.212|114.270 +637209.580|220754.143|114.160 +637215.459|220752.046|113.572 +637221.211|220749.982|113.206 +637225.612|220750.342|112.758 +637219.757|220752.442|113.233 +637208.065|220756.651|113.959 +637202.289|220758.733|114.224 +637184.617|220765.076|115.660 +637178.694|220767.207|116.062 +637161.010|220773.577|117.117 +637155.130|220775.707|117.232 +637149.004|220777.878|118.232 +637143.109|220779.996|118.683 +637137.187|220782.130|119.015 +637106.865|220792.980|122.176 +637100.922|220795.135|122.243 +637094.838|220797.312|122.859 +637082.874|220801.643|123.139 +637040.473|220816.935|125.252 +637034.307|220819.154|125.675 +637034.804|220823.442|125.389 +637040.784|220821.278|125.450 +637052.803|220816.950|125.154 +637094.841|220801.871|123.011 +637118.883|220793.297|120.829 +637124.781|220791.170|120.753 +637136.888|220786.872|119.305 +637142.868|220784.739|118.769 +637148.830|220782.608|118.314 +637154.841|220780.468|117.711 +637160.720|220778.362|117.370 +637172.477|220774.147|116.757 +637178.399|220772.028|116.321 +637213.649|220759.422|113.825 +637209.187|220763.296|113.739 +637203.243|220765.420|114.358 +637197.306|220767.542|114.992 +637191.408|220769.663|115.273 +637185.546|220771.769|115.681 +637167.883|220778.112|116.870 +637161.888|220780.261|117.370 +637156.118|220782.355|117.339 +637150.046|220784.513|118.159 +637138.022|220788.817|119.232 +637119.886|220795.300|121.021 +637095.716|220803.962|123.005 +637047.368|220821.394|124.907 +637041.260|220823.585|125.346 +637035.203|220825.783|125.349 +637044.741|220826.585|125.096 +637110.797|220802.899|121.679 +637116.799|220800.756|121.180 +637122.751|220798.622|120.896 +637128.628|220796.510|120.664 +637134.611|220794.379|120.073 +637146.779|220790.070|118.467 +637158.636|220785.830|117.610 +637176.320|220779.487|116.733 +637188.070|220775.293|115.772 +637194.011|220773.181|115.105 +637211.698|220766.865|113.706 +637217.529|220764.783|113.276 +637223.360|220762.699|112.868 +637229.188|220760.614|112.496 +637220.845|220766.054|113.395 +637215.011|220768.145|113.831 +637209.153|220770.242|114.367 +637191.545|220776.564|115.568 +637185.571|220778.701|116.153 +637173.821|220782.922|116.931 +637161.994|220787.177|117.595 +637144.176|220793.569|118.933 +637138.165|220795.727|119.366 +637126.022|220800.058|120.756 +637101.927|220808.699|122.649 +637095.908|220810.860|123.039 +637089.973|220813.009|123.139 +637047.621|220828.279|124.795 +637041.586|220830.447|125.200 +637035.487|220832.650|125.386 +637037.486|220836.366|125.340 +637049.614|220832.016|124.813 +637061.590|220827.716|124.474 +637073.593|220823.418|123.859 +637139.558|220799.863|119.265 +637145.508|220797.738|118.836 +637157.358|220793.499|118.205 +637169.182|220789.280|117.303 +637175.070|220787.174|116.967 +637216.161|220772.504|114.059 +637227.865|220768.331|113.093 +637233.653|220768.100|113.008 +637227.816|220770.187|113.416 +637221.946|220772.284|113.953 +637204.319|220778.588|115.321 +637192.621|220782.785|116.004 +637180.843|220787.003|116.809 +637174.964|220789.116|117.098 +637169.087|220791.225|117.403 +637163.165|220793.352|117.653 +637157.230|220795.471|118.202 +637151.284|220797.601|118.580 +637145.243|220799.759|119.086 +637121.276|220808.333|120.884 +637054.827|220832.178|124.459 +637036.633|220838.719|125.240 +637034.429|220843.897|125.145 +637040.528|220841.712|124.965 +637046.573|220839.548|124.779 +637052.568|220837.402|124.542 +637058.600|220835.238|124.438 +637064.669|220833.080|123.962 +637076.678|220828.779|123.572 +637106.606|220818.090|122.121 +637154.390|220801.082|118.677 +637160.397|220798.951|118.083 +637166.240|220796.864|117.851 +637172.178|220794.754|117.327 +637178.064|220792.642|117.223 +637183.891|220790.563|116.888 +637195.745|220786.357|115.818 +637201.564|220784.275|115.577 +637219.154|220778.015|114.291 +637230.773|220773.872|113.617 +637240.343|220772.156|113.221 +637234.543|220774.235|113.499 +637222.903|220778.402|114.255 +637205.316|220784.684|115.519 +637193.563|220788.896|116.190 +637181.843|220793.096|116.827 +637146.261|220805.831|119.125 +637140.198|220807.989|119.747 +637134.209|220810.132|120.134 +637128.131|220812.290|120.869 +637122.169|220814.426|121.198 +637110.130|220818.739|121.881 +637079.985|220829.550|123.414 +637067.848|220833.900|124.036 +637061.916|220836.046|123.975 +637055.768|220838.252|124.282 +637049.739|220840.410|124.642 +637043.649|220842.605|124.764 +637037.480|220844.809|125.221 +637039.141|220848.719|124.910 +637045.134|220846.567|124.898 +637051.215|220844.400|124.569 +637057.192|220842.261|124.398 +637063.242|220840.109|123.978 +637069.317|220837.939|123.731 +637075.300|220835.808|123.359 +637081.271|220833.677|123.057 +637111.157|220823.003|121.759 +637117.137|220820.879|121.314 +637123.041|220818.764|121.161 +637158.885|220806.035|118.281 +637164.768|220803.929|118.132 +637176.567|220799.732|117.303 +637182.419|220797.641|117.083 +637188.287|220795.544|116.836 +637194.151|220793.462|116.397 +637205.855|220789.292|115.654 +637211.686|220787.214|115.388 +637234.964|220778.932|113.794 +637240.886|220778.926|113.651 +637235.168|220780.974|113.883 +637229.374|220783.047|114.157 +637211.781|220789.320|115.382 +637205.953|220791.408|115.644 +637194.178|220795.611|116.403 +637188.204|220797.732|116.995 +637182.346|220799.832|117.223 +637170.578|220804.036|117.906 +637164.698|220806.148|118.028 +637152.814|220810.391|118.784 +637146.797|220812.536|119.232 +637140.850|220814.655|119.683 +637122.797|220821.089|121.009 +637116.817|220823.235|121.192 +637110.782|220825.387|121.609 +637098.831|220829.672|122.057 +637086.684|220834.019|122.588 +637074.590|220838.341|123.271 +637056.311|220844.876|124.249 +637050.209|220847.067|124.395 +637038.133|220851.414|124.508 +637038.337|220855.641|124.292 +637044.213|220853.508|124.764 +637050.291|220851.356|124.176 +637056.311|220849.198|124.112 +637062.389|220847.031|123.834 +637068.347|220844.894|123.795 +637074.453|220842.736|123.200 +637080.521|220840.578|122.777 +637086.547|220838.429|122.548 +637116.366|220827.789|121.393 +637122.297|220825.670|121.155 +637128.226|220823.555|120.948 +637140.219|220819.306|119.854 +637152.180|220815.060|118.973 +637175.872|220806.629|117.607 +637187.592|220802.460|116.925 +637193.435|220800.369|116.778 +637205.307|220796.166|115.690 +637211.104|220794.093|115.544 +637216.959|220792.008|115.218 +637240.185|220783.745|113.880 +637237.073|220787.284|113.892 +637231.276|220789.356|114.194 +637219.690|220793.496|114.828 +637196.163|220801.881|116.419 +637190.344|220803.956|116.714 +637178.576|220808.160|117.360 +637172.638|220810.266|117.903 +637166.749|220812.375|118.061 +637160.830|220814.490|118.342 +637154.829|220816.618|118.958 +637148.937|220818.727|119.189 +637142.960|220820.858|119.515 +637136.952|220822.997|119.982 +637124.928|220827.280|120.762 +637107.008|220833.687|121.558 +637100.986|220835.845|121.722 +637094.899|220838.012|122.161 +637088.900|220840.164|122.283 +637082.832|220842.325|122.691 +637076.745|220844.501|122.941 +637052.382|220853.185|124.508 +637046.399|220855.352|124.203 +637040.385|220857.525|124.042 +637034.326|220859.689|124.343 +637042.516|220860.549|123.834 +637054.388|220856.275|124.054 +637060.377|220854.126|124.112 +637066.427|220851.978|123.682 +637078.564|220847.671|122.758 +637090.595|220843.388|122.109 +637102.595|220839.118|121.405 +637108.520|220837.009|121.125 +637120.380|220832.769|120.838 +637126.260|220830.660|120.783 +637132.243|220828.535|120.372 +637144.127|220824.308|119.677 +637150.058|220822.199|119.287 +637161.930|220817.992|118.305 +637167.868|220815.880|117.958 +637191.350|220807.516|116.803 +637197.254|220805.416|116.449 +637203.164|220803.325|115.864 +637220.629|220797.107|114.946 +637226.579|220795.007|114.312 +637232.324|220792.953|114.178 +637238.128|220790.886|113.861 +637249.609|220786.793|113.499 +637248.939|220789.195|113.419 +637220.004|220799.537|114.739 +637202.387|220805.813|115.989 +637196.531|220807.910|116.163 +637172.903|220816.331|117.805 +637166.978|220818.459|117.860 +637161.110|220820.553|118.208 +637149.150|220824.814|119.073 +637143.176|220826.947|119.393 +637131.222|220831.199|120.375 +637119.249|220835.485|120.783 +637113.357|220837.600|120.911 +637107.310|220839.764|121.161 +637101.324|220841.904|121.436 +637095.213|220844.074|121.975 +637083.182|220848.384|122.371 +637077.080|220850.563|122.691 +637071.018|220852.721|123.136 +637058.740|220857.098|123.929 +637052.647|220859.272|124.319 +637046.694|220861.423|124.157 +637034.728|220865.758|123.606 +637035.700|220869.967|123.655 +637041.738|220867.803|123.719 +637047.682|220865.666|123.926 +637071.898|220857.056|122.905 +637083.984|220852.764|122.228 +637095.987|220848.497|121.731 +637102.052|220846.345|121.381 +637108.033|220844.230|120.896 +637119.944|220839.978|120.661 +637137.821|220833.632|119.707 +637149.671|220829.419|119.183 +637155.572|220827.322|118.924 +637161.586|220825.204|118.269 +637167.517|220823.098|117.952 +637173.488|220820.986|117.507 +637220.510|220804.301|114.815 +637226.469|220802.213|113.934 +637232.202|220800.168|113.837 +637245.830|220796.952|112.968 +637234.211|220801.094|113.633 +637228.456|220803.152|113.806 +637216.630|220807.349|114.852 +637210.650|220809.467|115.410 +637204.718|220811.564|116.041 +637198.891|220813.655|116.120 +637193.023|220815.740|116.577 +637187.037|220817.867|117.013 +637163.436|220826.295|118.001 +637145.407|220832.693|119.500 +637139.534|220834.802|119.464 +637133.432|220836.963|120.055 +637121.499|220841.224|120.546 +637103.503|220847.668|120.945 +637091.363|220851.990|121.698 +637085.249|220854.157|122.280 +637073.112|220858.497|122.667 +637060.904|220862.829|123.667 +637034.155|220877.002|122.859 +637040.111|220874.853|123.240 +637076.196|220862.009|122.429 +637082.231|220859.872|122.112 +637088.321|220857.723|121.609 +637118.259|220847.095|120.405 +637130.188|220842.861|119.893 +637142.076|220838.643|119.396 +637148.096|220836.518|118.897 +637159.940|220832.324|118.205 +637165.908|220830.218|117.720 +637171.788|220828.124|117.583 +637177.682|220826.042|117.174 +637189.420|220821.879|116.611 +637212.978|220813.539|115.212 +637218.907|220811.454|114.617 +637224.811|220809.373|114.130 +637230.669|220807.309|113.593 +637236.579|220805.221|113.121 +637242.440|220803.155|112.621 +637248.140|220801.128|112.459 +637259.686|220798.717|111.898 +637253.904|220800.780|112.090 +637248.195|220802.816|112.273 +637242.474|220804.865|112.304 +637236.637|220806.934|112.724 +637230.632|220809.043|113.523 +637224.744|220811.134|113.959 +637218.837|220813.222|114.474 +637212.878|220815.322|115.187 +637207.004|220817.407|115.632 +637201.055|220819.513|116.132 +637195.145|220821.626|116.297 +637189.289|220823.717|116.513 +637183.318|220825.823|117.156 +637177.506|220827.901|117.266 +637171.498|220830.038|117.616 +637165.615|220832.141|117.790 +637159.666|220834.253|118.217 +637153.716|220836.375|118.424 +637135.681|220842.782|119.631 +637105.734|220853.471|120.631 +637099.696|220855.623|120.878 +637087.574|220859.945|121.384 +637081.463|220862.106|121.978 +637075.324|220864.282|122.469 +637069.295|220866.440|122.545 +637051.001|220872.966|123.213 +637044.948|220875.136|123.213 +637038.910|220877.307|123.170 +637039.708|220881.680|122.911 +637045.634|220879.553|123.158 +637051.672|220877.407|122.975 +637057.615|220875.274|123.179 +637069.859|220870.955|122.240 +637075.855|220868.824|122.042 +637099.998|220860.283|120.619 +637105.932|220858.171|120.527 +637117.862|220853.931|120.155 +637123.809|220851.825|119.823 +637135.739|220847.595|119.345 +637141.707|220845.482|119.003 +637159.553|220839.161|118.086 +637171.364|220834.985|117.336 +637177.283|220832.888|117.065 +637189.085|220828.706|116.483 +637194.949|220826.627|116.230 +637206.690|220822.473|115.522 +637212.539|220820.394|115.391 +637236.247|220812.064|112.883 +637247.884|220807.949|112.154 +637259.476|220803.853|111.441 +637244.531|220811.415|111.926 +637238.560|220813.515|112.584 +637232.644|220815.594|113.294 +637226.673|220817.694|113.995 +637214.813|220821.888|114.983 +637208.964|220823.963|115.340 +637197.144|220828.154|116.083 +637191.173|220830.273|116.477 +637179.402|220834.461|116.952 +637173.473|220836.567|117.257 +637167.530|220838.676|117.638 +637161.604|220840.791|117.741 +637155.578|220842.922|118.229 +637149.586|220845.050|118.619 +637113.586|220857.854|120.125 +637107.618|220859.982|120.332 +637101.516|220862.152|120.579 +637095.514|220864.295|120.710 +637089.394|220866.465|121.070 +637071.182|220872.939|121.963 +637058.819|220877.316|122.874 +637052.818|220879.462|122.896 +637046.673|220881.656|122.999 +637034.758|220885.960|122.268 +637033.350|220891.020|121.512 +637039.212|220888.907|122.024 +637051.108|220884.637|122.640 +637063.227|220880.330|122.405 +637069.274|220878.197|121.996 +637075.257|220876.072|121.847 +637081.472|220873.899|121.070 +637099.574|220867.492|120.262 +637111.516|220863.261|119.808 +637129.457|220856.912|118.958 +637135.425|220854.794|118.833 +637159.163|220846.388|117.863 +637165.122|220844.288|117.400 +637176.951|220840.100|116.879 +637182.751|220838.039|116.815 +637188.607|220835.963|116.583 +637200.472|220831.775|115.849 +637212.155|220827.636|115.388 +637218.005|220825.570|115.047 +637235.893|220819.306|112.993 +637253.575|220813.100|111.182 +637259.390|220811.058|110.655 +637264.383|220811.845|109.975 +637258.522|220813.908|110.658 +637246.897|220818.026|111.533 +637240.852|220820.141|112.444 +637234.933|220822.223|113.194 +637229.014|220824.314|113.733 +637223.168|220826.377|114.282 +637217.270|220828.462|114.794 +637205.435|220832.656|115.568 +637199.637|220834.720|115.806 +637181.855|220841.029|116.833 +637170.066|220845.226|117.242 +637164.171|220847.323|117.473 +637152.232|220851.566|118.074 +637146.245|220853.688|118.464 +637134.413|220857.918|118.555 +637128.408|220860.052|118.842 +637122.431|220862.179|119.049 +637116.457|220864.307|119.253 +637098.331|220870.750|120.064 +637086.187|220875.063|120.683 +637080.113|220877.224|120.914 +637073.925|220879.404|121.618 +637067.732|220881.592|122.115 +637061.724|220883.741|122.164 +637055.671|220885.908|122.140 +637043.723|220890.203|121.768 +637037.675|220892.382|121.521 +637038.791|220896.369|121.265 +637050.700|220892.092|121.801 +637056.753|220889.934|121.820 +637062.709|220887.801|121.990 +637068.701|220885.676|121.780 +637074.785|220883.521|121.481 +637080.933|220881.357|120.951 +637099.105|220874.938|119.817 +637111.120|220870.680|119.305 +637117.103|220868.559|119.049 +637123.050|220866.456|118.711 +637128.957|220864.346|118.787 +637158.730|220853.803|117.363 +637176.381|220847.537|116.833 +637182.279|220845.443|116.641 +637194.053|220841.282|115.925 +637199.976|220839.182|115.718 +637211.713|220835.034|115.029 +637223.427|220830.882|114.511 +637241.176|220824.646|112.718 +637253.182|220820.458|110.993 +637258.991|220818.404|110.701 +637264.907|220816.337|109.844 +637266.206|220818.029|109.475 +637260.280|220820.102|110.356 +637254.352|220822.186|111.048 +637248.402|220824.271|111.837 +637230.492|220830.572|113.883 +637224.698|220832.638|114.014 +637218.800|220834.723|114.517 +637206.885|220838.929|115.556 +637189.335|220845.193|115.922 +637183.291|220847.317|116.620 +637177.411|220849.417|116.748 +637171.586|220851.514|116.455 +637165.603|220853.627|117.004 +637159.638|220855.748|117.272 +637153.698|220857.863|117.458 +637135.699|220864.258|118.342 +637123.699|220868.537|118.647 +637117.707|220870.680|118.668 +637105.658|220874.972|119.022 +637093.414|220879.303|119.973 +637087.279|220881.473|120.421 +637075.026|220885.814|121.308 +637062.751|220890.175|121.856 +637056.710|220892.339|121.783 +637050.727|220894.497|121.481 +637044.646|220896.668|121.603 +637038.715|220898.813|121.125 +637044.113|220901.587|121.030 +637050.075|220899.447|121.420 +637056.049|220897.305|121.768 +637062.120|220895.159|121.478 +637080.308|220888.737|120.582 +637092.634|220884.411|119.476 +637098.678|220882.290|118.921 +637116.677|220875.917|118.421 +637122.669|220873.798|118.159 +637134.532|220869.580|118.156 +637140.491|220867.477|117.830 +637146.425|220865.377|117.626 +637164.256|220859.080|116.787 +637170.169|220856.979|116.742 +637181.822|220852.840|116.623 +637187.832|220850.734|116.044 +637199.619|220846.567|115.571 +637211.299|220842.425|115.312 +637217.325|220840.334|114.337 +637223.098|220838.286|114.267 +637228.950|220836.210|114.169 +637258.634|220825.832|110.765 +637264.596|220823.750|109.981 +637270.528|220821.687|109.106 +637263.335|220825.798|109.890 +637257.251|220827.920|110.880 +637245.120|220832.141|113.051 +637233.473|220836.271|113.669 +637221.760|220840.432|114.151 +637215.819|220842.532|114.593 +637204.075|220846.692|115.306 +637198.229|220848.771|115.477 +637192.221|220850.893|116.025 +637186.250|220853.014|116.217 +637174.455|220857.211|116.626 +637168.642|220859.290|116.550 +637162.656|220861.414|116.888 +637156.770|220863.517|116.867 +637144.752|220867.788|117.336 +637138.695|220869.930|117.778 +637096.557|220884.920|119.043 +637078.049|220891.455|120.570 +637071.962|220893.613|120.875 +637065.812|220895.796|121.219 +637053.708|220900.124|121.149 +637047.667|220902.285|121.109 +637041.638|220904.458|120.759 +637035.783|220906.592|119.970 +637036.700|220910.807|119.640 +637042.607|220908.680|120.213 +637048.511|220906.549|120.811 +637054.464|220904.428|120.957 +637084.868|220893.693|119.674 +637097.020|220889.422|118.738 +637121.127|220880.928|117.437 +637127.144|220878.797|117.318 +637133.081|220876.700|117.037 +637138.976|220874.600|117.178 +637144.916|220872.503|116.934 +637150.778|220870.403|117.226 +637156.676|220868.324|116.931 +637162.625|220866.224|116.702 +637168.542|220864.136|116.379 +637180.362|220859.954|116.089 +637186.122|220857.906|116.150 +637197.982|220853.721|115.590 +637221.559|220845.424|114.069 +637227.453|220843.346|113.800 +637233.284|220841.285|113.547 +637244.909|220837.186|112.990 +637250.807|220835.113|112.572 +637262.987|220830.919|110.057 +637264.999|220832.025|109.737 +637235.183|220842.471|113.389 +637223.500|220846.607|114.014 +637211.589|220850.804|115.062 +637205.651|220852.910|115.321 +637199.805|220854.986|115.522 +637194.032|220857.050|115.480 +637188.009|220859.177|115.873 +637176.226|220863.362|116.254 +637158.419|220869.693|116.748 +637128.719|220880.288|116.845 +637116.674|220884.570|117.153 +637110.617|220886.704|117.714 +637104.555|220888.862|117.824 +637098.413|220891.029|118.275 +637086.218|220895.336|119.134 +637073.767|220899.700|120.613 +637067.671|220901.870|120.744 +637061.645|220904.028|120.604 +637055.582|220906.189|120.634 +637049.541|220908.347|120.610 +637043.531|220910.515|120.198 +637037.264|220917.226|119.390 +637043.171|220915.099|119.966 +637049.139|220912.965|120.305 +637061.047|220908.707|120.866 +637073.200|220904.409|120.521 +637079.265|220902.282|120.024 +637085.496|220900.115|119.159 +637091.689|220897.954|118.476 +637109.931|220891.562|116.873 +637115.979|220889.428|116.608 +637139.659|220881.031|116.443 +637157.331|220874.752|116.547 +637169.282|220870.555|115.681 +637175.223|220868.455|115.526 +637186.878|220864.298|115.858 +637192.724|220862.234|115.626 +637204.520|220858.061|115.318 +637210.494|220855.974|114.696 +637222.327|220851.813|113.922 +637228.228|220849.731|113.624 +637234.110|220847.668|113.182 +637239.871|220845.620|113.176 +637281.549|220831.111|107.619 +637278.041|220834.345|107.793 +637272.143|220836.415|108.341 +637266.270|220838.469|109.055 +637260.113|220840.584|110.527 +637254.194|220842.654|111.225 +637242.203|220846.842|112.758 +637206.812|220859.323|115.013 +637183.160|220867.708|115.684 +637177.335|220869.784|115.638 +637171.541|220871.866|115.269 +637165.548|220873.981|115.626 +637159.452|220876.124|116.156 +637153.509|220878.239|116.150 +637147.513|220880.364|116.345 +637135.586|220884.610|116.321 +637129.588|220886.746|116.345 +637123.650|220888.868|116.160 +637117.655|220891.001|116.217 +637111.599|220893.141|116.531 +637099.276|220897.475|117.531 +637080.555|220904.013|119.924 +637068.341|220908.332|120.494 +637050.157|220914.815|120.308 +637044.140|220916.976|119.912 +637038.251|220919.107|119.272 +637037.355|220923.414|118.933 +637049.200|220919.153|119.966 +637055.159|220917.013|120.351 +637061.139|220914.870|120.668 +637067.159|220912.737|120.573 +637073.285|220910.573|120.323 +637079.439|220908.418|119.729 +637085.654|220906.250|118.921 +637122.212|220893.412|115.983 +637128.174|220891.303|115.833 +637134.111|220889.194|115.797 +637140.009|220887.091|115.922 +637151.832|220882.891|115.888 +637198.948|220866.194|115.001 +637210.769|220862.015|114.651 +637216.685|220859.933|114.251 +637222.516|220857.879|113.938 +637228.529|220855.779|113.249 +637234.436|220853.697|112.944 +637264.252|220843.297|109.247 +637255.519|220848.686|110.697 +637249.497|220850.789|111.560 +637243.568|220852.874|112.127 +637237.765|220854.934|112.276 +637231.757|220857.040|112.938 +637219.900|220861.213|113.998 +637214.042|220863.289|114.209 +637202.289|220867.462|114.572 +637196.358|220869.559|114.861 +637184.592|220873.740|115.160 +637178.752|220875.831|114.946 +637172.861|220877.934|114.934 +637166.944|220880.038|115.029 +637155.057|220884.265|115.254 +637148.958|220886.408|115.852 +637137.040|220890.657|115.818 +637131.213|220892.754|115.452 +637125.181|220894.897|115.632 +637119.158|220897.033|115.803 +637113.126|220899.185|115.782 +637107.048|220901.331|116.205 +637100.873|220903.501|116.781 +637075.928|220912.234|119.848 +637069.692|220914.419|120.552 +637063.666|220916.574|120.421 +637057.670|220918.723|120.195 +637051.730|220920.866|119.759 +637045.707|220923.030|119.400 +637039.745|220925.188|118.805 +637036.453|220930.183|118.186 +637042.305|220928.062|118.982 +637048.228|220925.931|119.488 +637054.153|220923.801|119.991 +637060.145|220921.658|120.238 +637066.147|220919.515|120.454 +637084.478|220913.072|119.137 +637090.781|220910.893|117.976 +637096.987|220908.725|117.232 +637109.230|220904.443|115.995 +637121.221|220900.203|115.583 +637127.232|220898.076|115.471 +637133.142|220895.973|115.516 +637139.186|220893.848|115.071 +637144.993|220891.772|115.303 +637150.961|220889.660|115.187 +637156.935|220887.557|114.828 +637168.718|220883.372|114.779 +637174.647|220881.272|114.645 +637197.970|220872.981|114.779 +637209.674|220868.845|114.334 +637221.431|220864.700|113.797 +637233.373|220860.515|112.697 +637245.275|220856.358|111.377 +637280.678|220845.815|106.997 +637269.199|220849.917|106.851 +637257.327|220854.087|108.110 +637238.829|220860.466|112.221 +637185.714|220879.300|114.404 +637173.827|220883.534|114.492 +637167.871|220885.646|114.730 +637162.052|220887.734|114.483 +637156.087|220889.858|114.562 +637150.046|220891.992|114.934 +637144.020|220894.138|115.038 +637138.119|220896.247|114.919 +637126.043|220900.535|115.303 +637120.066|220902.666|115.297 +637101.677|220909.167|116.428 +637095.514|220911.335|116.982 +637089.217|220913.535|117.836 +637082.938|220915.718|118.924 +637064.483|220922.243|120.006 +637058.429|220924.417|119.735 +637052.379|220926.575|119.750 +637034.509|220933.030|118.150 +637035.258|220937.346|118.113 +637041.370|220935.182|118.080 +637053.178|220930.930|119.268 +637059.106|220928.803|119.787 +637083.523|220920.192|118.869 +637089.738|220918.046|117.799 +637102.174|220913.718|116.239 +637108.343|220911.572|115.440 +637114.318|220909.454|115.425 +637126.400|220905.193|114.959 +637132.334|220903.093|114.913 +637138.433|220900.950|114.501 +637144.383|220898.844|114.440 +637156.255|220894.647|114.239 +637162.107|220892.565|114.355 +637168.020|220890.474|114.264 +637173.900|220888.386|114.306 +637179.770|220886.310|114.166 +637185.613|220884.229|114.383 +637209.114|220875.914|114.032 +637215.002|220873.841|113.712 +637220.900|220871.765|113.380 +637232.717|220867.608|112.700 +637244.900|220863.395|110.624 +637250.929|220861.301|109.728 +637263.014|220857.120|107.695 +637274.993|220852.950|106.141 +637288.685|220849.375|107.342 +637260.055|220859.592|107.168 +637253.986|220861.704|108.171 +637223.515|220872.293|113.383 +637194.020|220882.769|114.160 +637188.049|220884.887|114.398 +637182.175|220886.984|114.303 +637176.287|220889.087|114.279 +637170.401|220891.187|114.264 +637152.539|220897.548|114.373 +637146.581|220899.682|114.212 +637140.573|220901.822|114.267 +637134.593|220903.943|114.468 +637128.451|220906.113|114.824 +637122.355|220908.262|115.279 +637110.282|220912.554|115.535 +637091.637|220919.095|117.577 +637085.313|220921.295|118.589 +637079.089|220923.481|119.220 +637060.712|220930.004|119.793 +637054.607|220932.183|119.774 +637048.862|220934.295|118.531 +637042.805|220936.465|118.327 +637033.503|220944.134|117.507 +637039.519|220941.982|117.863 +637045.561|220939.824|118.116 +637051.367|220937.730|118.845 +637057.366|220935.578|119.302 +637063.303|220933.448|119.781 +637069.289|220931.323|119.790 +637075.431|220929.162|119.451 +637087.782|220924.855|118.058 +637093.966|220922.701|117.367 +637100.257|220920.527|116.272 +637106.353|220918.394|115.727 +637112.477|220916.242|115.370 +637118.466|220914.120|115.297 +637124.580|220911.981|114.751 +637130.548|220909.875|114.550 +637148.477|220903.547|113.992 +637154.441|220901.438|113.883 +637160.388|220899.331|113.867 +637177.966|220893.095|113.925 +637183.827|220891.007|114.050 +637195.498|220886.868|114.072 +637207.340|220882.699|113.550 +637213.222|220880.617|113.468 +637230.934|220874.393|112.401 +637248.988|220868.111|110.128 +637261.225|220863.908|107.525 +637295.689|220853.310|106.531 +637266.977|220863.511|107.022 +637248.762|220869.839|110.112 +637207.126|220884.497|113.386 +637201.231|220886.591|113.563 +637195.337|220888.679|113.745 +637171.672|220897.094|114.059 +637159.876|220901.300|113.947 +637153.932|220903.419|113.962 +637148.050|220905.525|113.779 +637141.981|220907.671|114.066 +637129.923|220911.947|114.401 +637123.818|220914.111|114.651 +637117.640|220916.281|115.202 +637105.545|220920.570|115.599 +637099.291|220922.761|116.281 +637093.021|220924.941|117.296 +637086.834|220927.108|118.019 +637080.475|220929.324|118.948 +637074.431|220931.467|119.140 +637068.183|220933.664|119.674 +637062.184|220935.813|119.470 +637056.158|220937.977|119.113 +637050.230|220940.114|118.644 +637045.177|220945.957|117.580 +637050.998|220943.842|118.510 +637056.899|220941.717|119.116 +637062.916|220939.571|119.235 +637068.902|220937.432|119.515 +637075.041|220935.271|119.183 +637087.382|220930.945|118.058 +637093.570|220928.784|117.339 +637106.033|220924.447|115.647 +637112.047|220922.323|115.446 +637118.109|220920.189|115.071 +637130.301|220915.910|114.142 +637136.193|220913.809|114.245 +637154.112|220907.473|113.752 +637166.076|220903.242|113.456 +637171.891|220901.176|113.468 +637177.753|220899.088|113.572 +637183.617|220897.000|113.685 +637201.247|220890.748|113.508 +637254.718|220871.988|109.183 +637260.823|220869.891|107.805 +637272.454|220865.788|107.317 +637285.762|220863.170|107.116 +637268.492|220869.315|107.247 +637262.560|220871.400|107.765 +637250.399|220875.618|109.911 +637220.477|220886.128|112.697 +637196.976|220894.479|113.020 +637191.106|220896.576|112.895 +637185.126|220898.676|113.435 +637173.138|220902.931|113.700 +637167.371|220905.010|113.264 +637161.367|220907.134|113.496 +637149.412|220911.402|113.300 +637143.316|220913.541|113.931 +637131.170|220917.845|114.355 +637125.141|220919.982|114.556 +637112.864|220924.310|115.367 +637106.722|220926.474|115.824 +637100.556|220928.638|116.400 +637088.044|220933.018|117.851 +637069.433|220939.568|119.329 +637063.394|220941.720|119.272 +637057.332|220943.890|119.067 +637045.436|220948.197|117.751 +637039.419|220950.358|117.394 +637036.923|220955.015|117.077 +637042.955|220952.873|117.074 +637048.923|220950.724|117.638 +637060.746|220946.451|119.015 +637066.753|220944.308|119.177 +637072.831|220942.168|118.811 +637078.930|220940.007|118.638 +637085.108|220937.837|118.171 +637091.232|220935.688|117.690 +637103.634|220931.360|116.172 +637109.761|220929.217|115.501 +637115.884|220927.062|115.120 +637121.904|220924.935|114.919 +637128.006|220922.792|114.416 +637134.050|220920.658|114.160 +637146.062|220916.425|113.520 +637152.113|220914.297|113.063 +637158.062|220912.185|113.008 +637164.015|220910.073|112.956 +637169.898|220907.985|112.956 +637175.790|220905.891|112.926 +637181.697|220903.797|112.862 +637187.543|220901.709|113.041 +637199.229|220897.561|113.005 +637216.965|220891.294|112.334 +637222.750|220889.236|112.371 +637228.654|220887.158|112.011 +637252.685|220878.760|109.344 +637264.855|220874.551|107.180 +637287.655|220866.437|107.442 +637299.243|220862.353|106.830 +637297.975|220864.846|106.723 +637286.505|220868.925|106.979 +637280.976|220870.933|106.333 +637269.110|220875.100|107.592 +637257.555|220879.205|107.875 +637251.325|220881.354|109.265 +637245.074|220883.506|110.758 +637233.260|220887.673|111.670 +637227.304|220889.767|112.215 +637215.578|220893.949|112.246 +637209.726|220896.037|112.258 +637203.825|220898.131|112.456 +637192.048|220902.325|112.587 +637180.197|220906.552|112.584 +637174.302|220908.655|112.624 +637168.362|220910.774|112.602 +637162.345|220912.904|112.886 +637156.392|220915.026|112.953 +637150.314|220917.178|113.267 +637144.350|220919.311|113.163 +637138.202|220921.469|113.791 +637132.112|220923.618|114.221 +637126.010|220925.782|114.474 +637119.950|220927.925|114.831 +637107.673|220932.256|115.736 +637101.467|220934.432|116.498 +637095.368|220936.587|116.854 +637088.992|220938.809|117.839 +637082.877|220940.967|118.302 +637064.528|220947.484|118.839 +637058.554|220949.630|118.543 +637052.489|220951.815|118.116 +637046.643|220953.943|117.321 +637040.510|220956.137|117.205 +637034.438|220958.307|117.132 +637034.960|220961.916|117.059 +637041.053|220959.746|117.050 +637047.011|220957.609|117.363 +637058.880|220953.324|118.503 +637064.827|220951.184|118.912 +637070.996|220949.002|118.677 +637077.031|220946.862|118.485 +637095.542|220940.355|116.918 +637101.559|220938.227|116.632 +637107.700|220936.069|116.120 +637132.142|220927.474|114.084 +637138.205|220925.334|113.770 +637150.232|220921.088|113.066 +637168.191|220914.736|112.243 +637173.985|220912.657|112.569 +637185.711|220908.488|112.508 +637203.362|220902.206|112.456 +637209.293|220900.112|112.145 +637215.219|220898.027|111.639 +637221.010|220895.954|111.868 +637244.537|220887.636|110.765 +637250.719|220885.503|109.506 +637256.906|220883.375|108.030 +637302.803|220867.065|107.497 +637263.969|220882.510|107.162 +637239.557|220890.998|111.493 +637227.752|220895.189|111.962 +637222.004|220897.253|111.798 +637216.145|220899.344|111.804 +637210.247|220901.441|111.965 +637204.310|220903.556|112.063 +637192.478|220907.765|112.389 +637186.598|220909.881|112.087 +637174.677|220914.120|112.377 +637156.679|220920.527|112.795 +637144.657|220924.801|113.182 +637138.452|220926.983|113.776 +637113.979|220935.639|115.324 +637107.801|220937.813|115.946 +637101.565|220940.007|116.577 +637095.453|220942.168|116.982 +637089.248|220944.354|117.537 +637082.947|220946.566|118.247 +637076.827|220948.740|118.513 +637070.704|220950.910|118.808 +637058.649|220955.238|118.394 +637052.745|220957.390|117.549 +637046.746|220959.554|117.120 +637040.601|220961.752|117.050 +637034.435|220963.952|117.101 +637038.285|220966.674|116.909 +637044.317|220964.531|116.903 +637050.395|220962.352|117.272 +637056.326|220960.218|117.720 +637062.236|220958.091|118.275 +637068.235|220955.933|118.741 +637074.276|220953.799|118.516 +637092.771|220947.304|116.964 +637098.873|220945.143|116.845 +637105.015|220942.985|116.330 +637111.193|220940.824|115.684 +637117.253|220938.690|115.282 +637123.388|220936.532|114.873 +637135.519|220932.271|113.892 +637147.733|220927.980|112.953 +637177.576|220917.427|111.883 +637189.402|220913.221|111.962 +637195.266|220911.142|111.850 +637212.991|220904.867|111.377 +637218.736|220902.815|111.533 +637224.634|220900.727|111.395 +637242.319|220894.473|110.658 +637248.320|220892.385|109.777 +637260.146|220888.221|108.924 +637266.343|220886.097|107.454 +637272.012|220884.061|107.805 +637289.358|220877.913|107.372 +637300.761|220873.859|107.345 +637306.391|220871.835|107.698 +637304.900|220873.710|107.671 +637299.319|220875.731|107.165 +637293.604|220877.764|107.345 +637270.671|220885.969|107.137 +637223.052|220902.754|111.466 +637217.200|220904.845|111.463 +637199.640|220911.124|111.328 +637193.681|220913.243|111.554 +637187.726|220915.358|111.780 +637175.896|220919.585|111.758 +637163.945|220923.840|112.008 +637151.887|220928.123|112.514 +637139.683|220932.436|113.416 +637133.514|220934.612|113.913 +637127.326|220936.791|114.511 +637121.297|220938.931|114.770 +637108.901|220943.299|115.922 +637096.566|220947.655|116.937 +637090.397|220949.834|117.357 +637084.157|220952.025|118.089 +637077.985|220954.220|118.318 +637071.895|220956.384|118.488 +637059.816|220960.731|117.921 +637053.952|220962.864|117.193 +637047.917|220965.034|116.931 +637041.763|220967.232|116.915 +637035.627|220969.426|116.842 +637035.261|220973.566|116.906 +637041.367|220971.395|116.824 +637047.466|220969.228|116.784 +637053.455|220967.089|116.964 +637059.347|220964.958|117.565 +637065.248|220962.831|118.150 +637071.225|220960.688|118.415 +637077.324|220958.530|118.196 +637083.426|220956.369|117.988 +637095.755|220952.038|116.854 +637101.821|220949.892|116.605 +637107.831|220947.767|116.336 +637114.043|220945.600|115.550 +637132.383|220939.154|114.005 +637138.522|220937.002|113.343 +637144.465|220934.893|113.236 +637156.657|220930.613|112.136 +637162.607|220928.510|111.807 +637168.532|220926.401|111.850 +637174.418|220924.310|111.801 +637180.410|220922.185|111.624 +637186.266|220920.110|111.490 +637192.148|220918.013|111.520 +637198.061|220915.925|111.213 +637203.920|220913.834|111.362 +637209.866|220911.737|110.975 +637221.522|220907.595|110.877 +637227.392|220905.510|110.829 +637233.235|220903.437|110.661 +637239.078|220901.368|110.512 +637245.010|220899.280|110.067 +637251.298|220897.143|108.180 +637256.943|220895.101|108.780 +637280.105|220886.890|108.219 +637297.433|220880.757|107.631 +637303.035|220878.742|108.052 +637308.692|220876.727|108.085 +637310.158|220877.892|108.116 +637304.522|220879.910|108.015 +637298.932|220881.918|107.774 +637293.400|220883.930|107.134 +637287.679|220885.975|107.144 +637275.825|220890.133|108.610 +637246.872|220900.459|108.942 +637229.044|220906.750|110.432 +637223.131|220908.850|110.630 +637205.526|220915.129|110.868 +637199.570|220917.248|111.072 +637193.663|220919.342|111.347 +637181.867|220923.566|111.182 +637169.816|220927.839|111.798 +637139.631|220938.550|113.209 +637133.499|220940.708|113.825 +637127.326|220942.884|114.376 +637121.136|220945.061|115.023 +637115.061|220947.207|115.504 +637096.587|220953.738|116.775 +637078.095|220960.276|118.095 +637065.940|220964.620|118.104 +637059.959|220966.784|117.592 +637054.013|220968.942|116.949 +637048.033|220971.103|116.455 +637041.866|220973.304|116.507 +637035.697|220975.489|116.870 +637039.160|220978.144|116.638 +637045.253|220975.989|116.330 +637057.320|220971.661|116.839 +637063.151|220969.539|117.705 +637069.158|220967.390|117.842 +637075.151|220965.245|118.043 +637087.413|220960.910|117.376 +637099.580|220956.613|116.662 +637105.667|220954.461|116.327 +637111.760|220952.309|115.986 +637117.865|220950.166|115.373 +637124.059|220947.993|114.684 +637130.146|220945.850|114.191 +637142.286|220941.580|113.160 +637148.391|220939.428|112.670 +637166.448|220933.052|111.584 +637172.355|220930.955|111.453 +637178.195|220928.867|111.581 +637190.176|220924.627|111.024 +637195.946|220922.560|111.228 +637213.798|220916.251|110.201 +637237.094|220907.957|110.167 +637243.111|220905.851|109.399 +637249.362|220903.708|107.845 +637289.721|220889.358|107.342 +637300.846|220885.353|108.171 +637306.506|220883.323|108.393 +637312.167|220881.309|108.402 +637312.264|220883.384|108.326 +637306.592|220885.408|108.347 +637300.974|220887.423|108.204 +637295.503|220889.425|107.369 +637255.096|220903.836|107.918 +637249.320|220905.906|107.781 +637243.248|220908.015|108.936 +637225.420|220914.328|110.033 +637207.748|220920.631|110.280 +637195.727|220924.883|111.100 +637183.815|220929.126|111.374 +637172.004|220933.347|111.341 +637166.027|220935.490|111.258 +637159.925|220937.648|111.664 +637153.893|220939.782|112.078 +637135.620|220946.243|113.392 +637129.414|220948.426|114.078 +637123.199|220950.605|114.837 +637117.058|220952.775|115.321 +637104.765|220957.125|116.147 +637092.533|220961.459|116.824 +637086.242|220963.657|117.793 +637067.960|220970.188|117.854 +637061.950|220972.356|117.482 +637056.162|220974.480|116.434 +637050.038|220976.675|116.281 +637037.727|220981.058|116.601 +637038.980|220984.060|116.562 +637045.109|220981.884|116.358 +637057.259|220977.552|116.214 +637063.096|220975.410|117.321 +637069.058|220973.264|117.635 +637081.113|220968.954|117.760 +637099.529|220962.447|116.464 +637105.600|220960.295|116.172 +637111.663|220958.143|115.952 +637117.951|220955.954|114.834 +637130.161|220951.641|113.913 +637160.528|220940.925|111.514 +637166.457|220938.821|111.258 +637172.422|220936.697|111.133 +637178.310|220934.588|111.328 +637184.275|220932.472|110.990 +637196.071|220928.266|110.896 +637213.911|220921.951|109.893 +637225.643|220917.769|109.759 +637237.189|220913.639|109.896 +637249.481|220909.362|107.707 +637255.154|220907.323|107.979 +637260.991|220905.245|107.909 +637283.921|220897.045|108.113 +637295.464|220892.943|107.723 +637306.580|220888.929|108.604 +637312.243|220886.908|108.604 +637317.915|220884.881|108.594 +637316.897|220887.298|108.607 +637311.292|220889.304|108.634 +637294.574|220895.363|107.378 +637271.272|220903.650|108.604 +637265.874|220905.650|107.366 +637260.043|220907.726|107.637 +637248.500|220911.877|107.372 +637230.535|220918.208|109.414 +637224.695|220920.302|109.384 +637212.939|220924.502|109.637 +637207.038|220926.602|109.875 +637189.128|220932.975|110.774 +637177.164|220937.246|111.072 +637171.306|220939.361|110.786 +637165.274|220941.501|111.173 +637159.321|220943.628|111.289 +637153.192|220945.795|111.856 +637147.126|220947.950|112.194 +637134.828|220952.297|113.352 +637122.507|220956.643|114.709 +637116.369|220958.813|115.202 +637110.139|220961.014|115.843 +637091.814|220967.521|116.946 +637085.672|220969.704|117.327 +637079.558|220971.880|117.613 +637073.468|220974.066|117.552 +637067.479|220976.220|117.360 +637061.547|220978.385|116.662 +637055.598|220980.549|116.050 +637049.572|220982.722|115.788 +637043.369|220984.932|116.016 +637037.105|220987.135|116.827 +637035.947|220991.265|116.412 +637042.089|220989.086|116.129 +637048.157|220986.916|116.199 +637054.296|220984.734|115.977 +637060.200|220982.597|116.513 +637066.186|220980.433|116.989 +637072.097|220978.293|117.519 +637084.252|220973.965|117.223 +637090.311|220971.816|116.909 +637096.362|220969.667|116.665 +637114.741|220963.181|115.141 +637120.813|220961.026|114.901 +637151.275|220950.288|112.124 +637157.337|220948.151|111.557 +637163.381|220946.015|111.088 +637169.343|220943.893|110.966 +637175.275|220941.787|110.719 +637181.185|220939.669|110.829 +637192.962|220935.466|110.752 +637198.808|220933.381|110.673 +637204.855|220931.250|110.100 +637210.793|220929.150|109.716 +637216.670|220927.056|109.576 +637222.506|220924.968|109.594 +637234.235|220920.792|109.265 +637251.981|220914.514|108.018 +637269.376|220908.311|107.735 +637291.992|220900.182|108.585 +637308.890|220894.119|108.975 +637314.587|220892.089|108.847 +637320.253|220890.066|108.841 +637321.753|220890.919|108.823 +637316.071|220892.955|108.866 +637310.390|220894.988|108.927 +637287.658|220903.169|108.491 +637281.918|220905.220|108.610 +637276.322|220907.259|108.030 +637270.604|220909.317|107.881 +637259.168|220913.435|107.640 +637235.415|220921.865|109.317 +637217.959|220928.135|109.213 +637211.906|220930.278|109.756 +637205.977|220932.384|110.103 +637188.113|220938.767|110.591 +637182.166|220940.900|110.609 +637176.210|220943.034|110.673 +637170.248|220945.167|110.774 +637164.180|220947.328|111.060 +637158.191|220949.465|111.322 +637151.991|220951.644|112.164 +637145.904|220953.818|112.346 +637139.805|220955.979|112.840 +637133.694|220958.140|113.413 +637121.361|220962.504|114.568 +637102.866|220969.067|115.967 +637096.682|220971.243|116.739 +637090.516|220973.444|116.931 +637084.438|220975.620|117.046 +637072.182|220979.991|117.507 +637066.266|220982.155|116.729 +637060.383|220984.298|116.080 +637054.257|220986.504|115.961 +637048.182|220988.684|115.907 +637035.850|220993.085|116.373 +637037.596|220996.423|116.114 +637049.846|220992.070|115.727 +637055.957|220989.894|115.635 +637061.919|220987.736|116.190 +637067.793|220985.617|116.601 +637073.752|220983.459|117.199 +637079.811|220981.298|117.114 +637098.075|220974.818|116.382 +637116.424|220968.341|114.977 +637128.549|220964.044|114.337 +637134.709|220961.889|113.541 +637140.914|220959.722|112.590 +637146.904|220957.600|112.264 +637159.071|220953.312|111.200 +637165.042|220951.190|111.008 +637171.056|220949.063|110.682 +637177.006|220946.941|110.615 +637182.919|220944.838|110.463 +637188.780|220942.741|110.527 +637194.651|220940.644|110.563 +637206.532|220936.435|109.954 +637230.053|220928.074|109.140 +637248.009|220921.750|107.329 +637253.724|220919.689|107.649 +637259.512|220917.629|107.497 +637270.921|220913.523|108.052 +637304.952|220901.310|108.951 +637310.667|220899.264|108.972 +637316.327|220897.244|108.975 +637321.993|220895.217|108.966 +637321.055|220896.744|108.997 +637315.388|220898.777|109.012 +637309.719|220900.810|109.049 +637304.077|220902.840|109.024 +637293.171|220906.833|107.491 +637270.098|220915.102|107.787 +637252.807|220921.314|107.747 +637247.204|220923.362|107.037 +637211.497|220936.042|109.722 +637193.685|220942.409|110.252 +637187.723|220944.533|110.569 +637181.806|220946.661|110.478 +637175.787|220948.804|110.810 +637169.831|220950.937|110.905 +637163.912|220953.065|110.896 +637157.791|220955.232|111.417 +637151.631|220957.408|112.127 +637145.611|220959.557|112.316 +637139.494|220961.724|112.913 +637133.386|220963.900|113.240 +637127.125|220966.095|114.197 +637102.604|220974.806|115.964 +637084.197|220981.375|116.745 +637078.013|220983.575|117.077 +637072.011|220985.739|116.937 +637066.071|220987.907|116.269 +637060.087|220990.080|115.803 +637054.031|220992.259|115.669 +637041.796|220996.651|115.699 +637035.551|220998.867|116.181 +637040.382|221000.793|115.519 +637046.466|220998.620|115.480 +637052.486|220996.456|115.739 +637064.525|220992.137|116.031 +637076.400|220987.864|116.537 +637082.448|220985.691|116.760 +637088.419|220983.554|116.790 +637094.496|220981.402|116.376 +637100.580|220979.235|116.248 +637106.630|220977.083|116.001 +637143.182|220964.184|112.731 +637155.365|220959.892|111.511 +637161.324|220957.771|111.331 +637173.187|220953.549|110.990 +637179.112|220951.443|110.740 +637185.050|220949.322|110.725 +637190.969|220947.225|110.298 +637196.833|220945.140|110.103 +637238.176|220930.461|108.250 +637267.218|220920.119|107.637 +637289.752|220912.017|108.637 +637301.008|220907.970|109.149 +637306.604|220905.961|109.320 +637312.258|220903.943|109.295 +637317.921|220901.922|109.268 +637323.511|220899.926|109.274 +637324.993|220900.980|109.155 +637319.296|220903.020|109.268 +637313.654|220905.046|109.216 +637307.988|220907.076|109.259 +637302.303|220909.125|109.158 +637296.881|220911.121|108.189 +637291.166|220913.169|108.213 +637279.535|220917.303|109.030 +637274.131|220919.308|107.811 +637245.427|220929.647|107.080 +637227.533|220935.984|108.756 +637215.664|220940.208|109.445 +637209.787|220942.321|109.372 +637203.853|220944.430|109.771 +637197.860|220946.560|110.161 +637191.972|220948.673|110.198 +637185.946|220950.818|110.515 +637179.944|220952.961|110.768 +637174.031|220955.073|110.947 +637162.086|220959.353|111.088 +637137.659|220968.009|113.215 +637131.508|220970.192|113.727 +637119.322|220974.532|114.367 +637113.178|220976.708|114.937 +637106.853|220978.921|115.995 +637100.775|220981.100|116.086 +637094.716|220983.258|116.370 +637088.550|220985.459|116.595 +637082.502|220987.629|116.620 +637070.490|220991.970|116.099 +637064.562|220994.121|115.660 +637058.390|220996.331|115.733 +637046.301|221000.687|115.398 +637040.163|221002.891|115.382 +637036.371|221008.017|116.038 +637042.598|221005.826|115.337 +637048.682|221003.653|115.297 +637060.685|220999.337|115.718 +637066.741|220997.179|115.577 +637072.685|220995.033|115.940 +637078.595|220992.890|116.446 +637084.666|220990.726|116.303 +637090.680|220988.568|116.412 +637096.703|220986.425|116.245 +637114.927|220979.973|114.953 +637139.250|220971.368|113.054 +637157.511|220964.925|111.362 +637169.349|220960.706|111.075 +637181.243|220956.472|110.658 +637187.134|220954.369|110.560 +637193.047|220952.263|110.408 +637222.677|220941.751|108.750 +637228.548|220939.669|108.390 +637246.058|220933.420|108.061 +637251.816|220931.366|107.954 +637257.662|220929.284|107.784 +637263.347|220927.242|107.979 +637269.056|220925.206|107.872 +637291.763|220917.050|108.500 +637302.904|220913.029|109.173 +637308.488|220911.021|109.378 +637314.114|220909.003|109.448 +637319.762|220906.982|109.466 +637325.392|220904.976|109.338 +637329.693|220905.717|109.173 +637323.969|220907.759|109.378 +637318.375|220909.768|109.387 +637312.709|220911.798|109.423 +637307.092|220913.819|109.326 +637301.523|220915.839|108.847 +637295.957|220917.848|108.597 +637284.427|220921.972|108.838 +637261.804|220930.144|107.759 +637255.937|220932.238|107.985 +637250.176|220934.310|107.854 +637244.361|220936.392|107.933 +637238.603|220938.477|107.585 +637226.752|220942.686|108.387 +637220.821|220944.796|108.732 +637202.880|220951.169|109.942 +637196.967|220953.281|110.064 +637191.030|220955.400|110.295 +637179.097|220959.655|110.786 +637173.043|220961.816|111.027 +637167.136|220963.937|110.969 +637161.178|220966.065|111.133 +637155.075|220968.229|111.630 +637142.932|220972.542|112.459 +637124.513|220979.058|114.181 +637118.451|220981.219|114.401 +637112.297|220983.395|115.029 +637093.981|220989.918|115.922 +637087.836|220992.101|116.345 +637081.835|220994.277|115.919 +637075.779|220996.444|116.001 +637069.798|220998.614|115.510 +637063.718|221000.800|115.468 +637057.609|221002.985|115.562 +637051.599|221005.158|115.251 +637045.472|221007.359|115.196 +637037.965|221013.485|116.236 +637044.290|221011.282|115.105 +637050.343|221009.108|115.187 +637056.375|221006.950|115.105 +637062.404|221004.780|115.343 +637074.392|221000.473|115.602 +637080.442|220998.297|115.794 +637098.428|220991.854|115.815 +637104.469|220989.702|115.577 +637116.692|220985.377|114.605 +637134.959|220978.912|113.087 +637141.009|220976.766|112.706 +637147.105|220974.611|112.154 +637159.151|220970.347|111.213 +637165.183|220968.210|110.737 +637171.047|220966.101|110.932 +637176.942|220963.995|110.777 +637182.904|220961.867|110.640 +637194.718|220957.652|110.344 +637200.677|220955.537|110.033 +637206.654|220953.424|109.430 +637212.485|220951.340|109.384 +637224.427|220947.118|108.344 +637241.956|220940.867|107.881 +637253.523|220936.721|107.936 +637265.057|220932.604|107.710 +637276.426|220928.513|108.134 +637282.104|220926.480|108.158 +637287.834|220924.435|108.018 +637298.929|220920.408|109.052 +637310.064|220916.397|109.536 +637315.693|220914.379|109.603 +637321.289|220912.377|109.561 +637326.968|220910.347|109.490 +637332.594|220908.338|109.387 +637332.710|220910.161|109.335 +637327.102|220912.176|109.384 +637321.405|220914.215|109.521 +637315.757|220916.248|109.515 +637310.131|220918.272|109.442 +637304.562|220920.290|109.198 +637270.653|220932.546|107.933 +637264.889|220934.615|108.015 +637247.512|220940.864|107.976 +637241.691|220942.951|108.094 +637224.223|220949.230|108.125 +637200.402|220957.716|109.588 +637194.352|220959.859|110.252 +637188.466|220961.983|110.064 +637182.495|220964.111|110.460 +637176.500|220966.250|110.737 +637170.535|220968.399|110.667 +637164.549|220970.536|110.938 +637158.575|220972.673|111.200 +637146.431|220976.995|112.033 +637134.267|220981.326|112.785 +637128.085|220983.514|113.468 +637121.941|220985.694|114.029 +637109.633|220990.049|115.318 +637103.537|220992.232|115.495 +637097.489|220994.393|115.754 +637091.384|220996.587|115.745 +637079.415|221000.915|115.318 +637073.419|221003.076|115.169 +637067.287|221005.271|115.352 +637061.212|221007.459|115.312 +637055.208|221009.633|114.983 +637049.078|221011.839|114.928 +637036.837|221016.232|115.105 +637034.088|221021.291|114.895 +637040.211|221019.097|114.928 +637046.146|221016.954|115.251 +637052.303|221014.769|114.879 +637058.396|221012.589|114.824 +637070.390|221008.267|115.315 +637076.510|221006.097|114.919 +637082.445|221003.948|115.337 +637088.440|221001.793|115.522 +637094.380|220999.657|115.672 +637112.537|220993.183|115.117 +637124.745|220988.867|113.995 +637130.905|220986.709|113.124 +637136.909|220984.581|112.645 +637143.069|220982.405|112.078 +637149.007|220980.287|111.914 +637161.104|220976.001|111.027 +637167.066|220973.877|110.835 +637172.900|220971.783|110.896 +637178.832|220969.673|110.603 +637184.842|220967.537|110.286 +637190.697|220965.437|110.332 +637196.608|220963.327|110.185 +637202.466|220961.240|110.009 +637214.420|220957.006|109.073 +637220.419|220954.891|108.448 +637231.888|220950.754|108.920 +637243.751|220946.551|108.046 +637249.585|220944.469|107.869 +637255.327|220942.403|108.046 +637261.073|220940.345|107.985 +637266.776|220938.297|108.101 +637278.242|220934.185|108.162 +637284.043|220932.116|107.985 +637289.645|220930.095|108.280 +637295.192|220928.092|108.552 +637300.758|220926.075|109.003 +637306.336|220924.054|109.420 +637311.911|220922.045|109.643 +637317.552|220920.024|109.655 +637323.142|220918.022|109.625 +637328.742|220916.016|109.588 +637334.350|220914.011|109.536 +637336.831|220914.532|109.588 +637331.262|220916.541|109.478 +637325.639|220918.555|109.576 +637319.951|220920.594|109.689 +637314.319|220922.621|109.625 +637308.728|220924.639|109.436 +637291.937|220930.729|108.351 +637280.632|220934.804|108.082 +637274.932|220936.862|107.896 +637269.208|220938.922|107.820 +637263.380|220941.001|108.134 +637257.668|220943.070|107.817 +637251.837|220945.146|108.171 +637246.049|220947.240|107.924 +637240.215|220949.316|108.329 +637216.703|220957.734|108.902 +637198.729|220964.129|110.082 +637192.804|220966.247|110.271 +637186.802|220968.393|110.527 +637174.894|220972.660|110.737 +637168.990|220974.785|110.670 +637162.948|220976.943|110.908 +637150.817|220981.262|111.645 +637101.754|220998.693|115.431 +637095.780|221000.842|115.382 +637089.751|221003.012|115.321 +637077.632|221007.371|115.236 +637071.548|221009.557|115.190 +637065.546|221011.721|115.084 +637059.536|221013.897|114.760 +637053.373|221016.107|114.840 +637035.075|221022.693|114.626 +637034.999|221026.839|114.483 +637041.059|221024.672|114.504 +637046.734|221022.535|116.547 +637053.168|221020.331|114.654 +637059.249|221018.158|114.645 +637065.278|221016.006|114.599 +637071.240|221013.860|114.861 +637077.226|221011.708|115.032 +637089.223|221007.417|115.053 +637095.228|221005.262|115.202 +637101.299|221003.098|115.096 +637125.470|220994.524|113.736 +637137.766|220990.199|112.356 +637143.786|220988.059|112.087 +637149.808|220985.934|111.572 +637155.792|220983.810|111.243 +637161.775|220981.689|110.932 +637167.767|220979.561|110.609 +637173.696|220977.446|110.554 +637185.546|220973.221|110.274 +637197.281|220969.036|110.021 +637203.170|220966.936|109.972 +637209.086|220964.839|109.591 +637215.100|220962.727|108.872 +637220.839|220960.657|109.192 +637232.565|220956.472|108.975 +637238.469|220954.388|108.515 +637244.394|220952.294|107.994 +637250.106|220950.236|108.256 +637255.967|220948.151|108.015 +637261.707|220946.100|107.979 +637267.480|220944.043|107.854 +637278.895|220939.958|107.869 +637307.031|220929.833|109.021 +637312.560|220927.836|109.402 +637318.168|220925.825|109.530 +637323.783|220923.810|109.649 +637329.431|220921.798|109.457 +637340.608|220919.037|109.890 +637335.118|220921.015|109.747 +637329.607|220923.008|109.478 +637323.920|220925.044|109.591 +637318.345|220927.050|109.564 +637312.709|220929.086|109.314 +637307.156|220931.098|109.024 +637296.006|220935.121|108.625 +637273.314|220943.305|108.000 +637267.614|220945.347|108.094 +637261.935|220947.399|107.902 +637256.205|220949.456|107.899 +637244.601|220953.616|108.006 +637209.296|220966.214|109.622 +637203.338|220968.338|109.920 +637197.458|220970.448|109.945 +637191.459|220972.590|110.185 +637185.601|220974.696|110.164 +637179.719|220976.803|110.262 +637173.726|220978.942|110.548 +637167.679|220981.100|110.816 +637161.781|220983.219|110.774 +637155.865|220985.343|110.810 +637149.674|220987.532|111.459 +637143.639|220989.671|112.029 +637131.450|220994.015|112.673 +637119.057|220998.370|114.523 +637112.918|221000.556|114.846 +637100.806|221004.890|115.172 +637094.783|221007.057|115.081 +637088.769|221009.224|114.971 +637082.789|221011.382|114.736 +637076.678|221013.574|114.821 +637070.630|221015.741|114.913 +637064.620|221017.917|114.581 +637058.542|221020.100|114.572 +637052.288|221022.303|115.361 +637034.091|221028.872|114.776 +637037.060|221031.719|114.459 +637043.067|221029.558|114.703 +637048.910|221027.415|115.684 +637055.150|221025.223|114.922 +637061.252|221023.059|114.511 +637067.336|221020.883|114.480 +637073.328|221018.734|114.602 +637079.314|221016.597|114.471 +637085.358|221014.424|114.678 +637097.255|221010.157|114.861 +637103.256|221008.002|115.026 +637121.398|221001.562|113.989 +637139.613|220995.130|112.356 +637145.669|220992.985|111.914 +637157.663|220988.736|111.078 +637163.604|220986.617|110.914 +637175.473|220982.396|110.445 +637181.410|220980.274|110.362 +637187.278|220978.177|110.310 +637193.157|220976.077|110.237 +637199.012|220973.995|110.021 +637204.923|220971.886|109.871 +637210.769|220969.801|109.728 +637216.706|220967.701|109.277 +637222.561|220965.613|109.143 +637234.132|220961.486|108.972 +637240.197|220959.359|108.140 +637251.642|220955.259|108.308 +637257.388|220953.211|108.219 +637268.891|220949.093|108.277 +637274.667|220947.036|108.140 +637280.348|220945.006|108.113 +637286.070|220942.967|107.963 +637308.375|220934.923|109.301 +637313.947|220932.920|109.515 +637319.473|220930.936|109.673 +637325.026|220928.949|109.762 +637330.628|220926.946|109.692 +637336.090|220924.974|110.112 +637341.528|220923.014|110.399 +637343.692|220924.246|110.472 +637338.270|220926.212|110.109 +637332.786|220928.199|109.753 +637327.141|220930.226|109.719 +637321.585|220932.223|109.631 +637315.998|220934.237|109.433 +637299.304|220940.278|108.485 +637293.702|220942.305|108.174 +637282.394|220946.374|107.951 +637276.636|220948.438|107.991 +637270.854|220950.504|108.140 +637259.400|220954.616|108.116 +637253.578|220956.698|108.219 +637247.808|220958.771|108.165 +637224.506|220967.119|108.457 +637218.636|220969.204|108.860 +637212.536|220971.350|109.664 +637206.636|220973.462|109.743 +637200.741|220975.562|110.064 +637194.870|220977.668|110.067 +637188.948|220979.793|110.036 +637183.041|220981.917|109.972 +637177.113|220984.029|110.256 +637171.108|220986.166|110.606 +637165.091|220988.315|110.765 +637159.157|220990.439|110.886 +637147.081|220994.740|111.493 +637141.033|220996.889|111.871 +637134.977|220999.041|112.307 +637104.354|221009.904|114.690 +637098.398|221012.047|114.584 +637092.399|221014.208|114.398 +637086.309|221016.396|114.361 +637080.311|221018.554|114.212 +637068.204|221022.901|114.184 +637062.160|221025.065|114.303 +637049.703|221029.478|115.388 +637043.777|221031.652|114.459 +637037.663|221033.849|114.395 +637038.949|221037.071|114.352 +637045.018|221034.901|114.328 +637063.202|221028.405|114.181 +637069.250|221026.247|114.041 +637075.282|221024.092|113.995 +637081.286|221021.941|114.096 +637087.327|221019.783|114.044 +637099.309|221015.491|114.160 +637105.277|221013.354|114.212 +637111.215|221011.221|114.404 +637123.276|221006.938|113.813 +637129.436|221004.783|112.901 +637135.605|221002.610|112.225 +637147.666|220998.343|111.307 +637153.664|220996.206|111.146 +637159.635|220994.085|110.847 +637165.503|220991.994|110.740 +637177.439|220987.748|110.280 +637183.379|220985.642|109.942 +637195.084|220981.454|110.003 +637206.791|220977.272|109.868 +637253.581|220960.618|108.326 +637265.075|220956.503|108.399 +637270.906|220954.436|108.046 +637282.296|220950.358|108.110 +637293.534|220946.316|108.549 +637299.194|220944.287|108.652 +637310.335|220940.269|109.274 +637315.919|220938.264|109.457 +637321.490|220936.258|109.692 +637327.041|220934.268|109.786 +637332.619|220932.271|109.804 +637338.072|220930.299|110.256 +637343.607|220928.321|110.222 +637343.153|220930.622|110.475 +637332.177|220934.597|109.789 +637326.614|220936.596|109.716 +637321.012|220938.614|109.570 +637315.440|220940.626|109.341 +637304.620|220944.597|107.576 +637298.716|220946.679|108.293 +637293.098|220948.694|108.274 +637287.328|220950.760|108.344 +637281.702|220952.790|108.162 +637275.941|220954.851|108.229 +637270.171|220956.917|108.351 +637264.429|220958.975|108.396 +637258.677|220961.044|108.244 +637252.892|220963.108|108.475 +637247.089|220965.187|108.558 +637223.835|220973.520|108.725 +637217.947|220975.632|108.732 +637211.860|220977.775|109.503 +637205.965|220979.872|109.811 +637200.146|220981.972|109.612 +637194.136|220984.112|109.923 +637188.338|220986.203|109.673 +637182.361|220988.336|109.887 +637176.277|220990.485|110.536 +637170.288|220992.631|110.588 +637164.360|220994.752|110.673 +637158.437|220996.874|110.755 +637152.308|220999.050|111.167 +637146.251|221001.202|111.578 +637140.241|221003.345|111.822 +637134.099|221005.521|112.356 +637127.915|221007.700|113.096 +637115.659|221012.041|114.194 +637103.732|221016.341|113.736 +637097.654|221018.515|113.889 +637085.535|221022.867|113.816 +637079.464|221025.034|113.995 +637073.410|221027.214|113.849 +637067.363|221029.378|113.971 +637061.154|221031.591|114.261 +637055.067|221033.770|114.319 +637036.749|221040.341|114.285 +637034.307|221045.176|114.072 +637040.367|221043.008|114.056 +637046.387|221040.860|113.971 +637058.499|221036.522|114.075 +637064.495|221034.373|114.139 +637070.643|221032.188|113.837 +637076.690|221030.030|113.721 +637088.690|221025.741|113.685 +637094.694|221023.586|113.809 +637100.690|221021.447|113.712 +637112.592|221017.173|113.971 +637118.585|221015.031|113.950 +637142.917|221006.451|111.542 +637148.940|221004.311|111.246 +637154.899|221002.193|110.978 +637160.873|221000.074|110.673 +637166.807|220997.956|110.539 +637172.717|220995.844|110.515 +637178.603|220993.747|110.359 +637190.478|220989.531|109.713 +637196.379|220987.428|109.561 +637202.170|220985.355|109.591 +637208.004|220983.274|109.487 +637219.806|220979.086|108.826 +637225.734|220976.986|108.424 +637237.280|220972.846|108.591 +637243.093|220970.774|108.433 +637266.111|220962.541|108.347 +637271.927|220960.465|108.271 +637277.636|220958.429|108.134 +637288.846|220954.394|108.616 +637300.328|220950.294|108.451 +637305.961|220948.279|108.421 +637316.931|220944.302|109.436 +637322.441|220942.321|109.640 +637328.007|220940.315|109.899 +637333.533|220938.340|109.865 +637344.479|220934.384|110.627 +637349.843|220932.436|111.170 +637345.798|220935.880|110.771 +637340.376|220937.846|110.426 +637334.947|220939.824|109.890 +637329.351|220941.830|109.932 +637323.850|220943.820|109.679 +637318.253|220945.835|109.524 +637312.731|220947.840|109.146 +637307.287|220949.840|108.271 +637301.578|220951.873|108.552 +637295.863|220953.921|108.649 +637290.230|220955.951|108.469 +637284.573|220957.987|108.393 +637278.904|220960.023|108.381 +637273.149|220962.099|108.210 +637267.434|220964.153|108.152 +637261.664|220966.217|108.323 +637256.007|220968.259|108.091 +637221.056|220980.768|108.847 +637215.130|220982.886|109.009 +637197.586|220989.174|109.231 +637191.554|220991.317|109.631 +637179.591|220995.575|110.374 +637173.632|220997.703|110.560 +637167.731|220999.824|110.542 +637161.772|221001.964|110.512 +637155.722|221004.119|110.868 +637149.744|221006.259|110.950 +637143.719|221008.407|111.249 +637137.626|221010.562|111.847 +637119.179|221017.088|113.694 +637107.130|221021.410|113.761 +637101.217|221023.562|113.203 +637089.086|221027.902|113.453 +637082.981|221030.079|113.773 +637076.989|221032.237|113.636 +637070.899|221034.422|113.663 +637064.763|221036.611|113.916 +637052.632|221040.969|113.846 +637046.615|221043.139|113.627 +637040.464|221045.343|113.739 +637034.301|221047.544|113.925 +637036.752|221050.683|113.297 +637042.747|221048.528|113.599 +637048.773|221046.379|113.483 +637054.796|221044.218|113.688 +637060.825|221042.070|113.611 +637066.817|221039.924|113.712 +637072.926|221037.751|113.596 +637078.997|221035.593|113.383 +637084.965|221033.462|113.368 +637091.028|221031.301|113.236 +637097.084|221029.158|112.874 +637108.996|221024.879|113.352 +637120.971|221020.615|113.093 +637139.147|221014.202|111.600 +637145.163|221012.068|111.319 +637151.192|221009.931|111.018 +637157.093|221007.837|110.725 +637168.947|221003.616|110.515 +637174.948|221001.491|110.149 +637186.878|220997.288|109.021 +637192.764|220995.179|109.167 +637198.497|220993.119|109.420 +637216.103|220986.855|108.975 +637245.068|220976.522|108.610 +637262.448|220970.332|108.219 +637273.841|220966.250|108.418 +637285.207|220962.181|108.555 +637290.895|220960.148|108.518 +637296.573|220958.118|108.533 +637302.142|220956.122|108.710 +637307.835|220954.086|108.704 +637313.316|220952.102|109.207 +637318.823|220950.111|109.643 +637324.380|220948.124|109.695 +637329.848|220946.149|110.051 +637335.374|220944.165|110.243 +637340.870|220942.186|110.542 +637346.320|220940.227|110.786 +637351.696|220938.279|111.283 +637350.629|220940.041|111.127 +637345.137|220942.025|110.792 +637334.219|220945.975|110.131 +637328.675|220947.969|110.006 +637323.109|220949.977|109.734 +637317.537|220951.989|109.500 +637312.124|220953.970|108.738 +637306.537|220955.979|108.582 +637300.798|220958.030|108.735 +637289.526|220962.078|108.616 +637278.111|220966.183|108.366 +637272.430|220968.216|108.405 +637266.636|220970.295|108.402 +637261.006|220972.319|108.293 +637255.132|220974.407|108.597 +637226.082|220984.810|108.832 +637214.673|220988.946|107.960 +637202.832|220993.161|108.543 +637190.862|220997.416|109.204 +637178.786|221001.687|110.377 +637172.815|221003.829|110.362 +637166.886|221005.948|110.448 +637160.943|221008.072|110.609 +637154.920|221010.218|110.850 +637148.903|221012.361|111.097 +637130.649|221018.847|112.270 +637124.467|221021.023|113.017 +637118.402|221023.181|113.316 +637106.414|221027.491|113.105 +637094.310|221031.825|113.176 +637088.230|221033.992|113.374 +637082.140|221036.178|113.352 +637076.077|221038.342|113.511 +637063.916|221042.704|113.489 +637057.780|221044.889|113.755 +637051.751|221047.059|113.566 +637039.550|221051.433|113.602 +637033.274|221053.661|114.020 +637037.931|221056.240|113.560 +637043.957|221054.097|113.422 +637050.023|221051.933|113.407 +637056.101|221049.769|113.364 +637062.093|221047.626|113.425 +637068.146|221045.462|113.529 +637080.168|221041.186|113.310 +637086.294|221039.009|113.154 +637092.171|221036.894|113.538 +637098.233|221034.751|113.145 +637128.296|221024.059|112.551 +637134.303|221021.944|111.981 +637140.445|221019.783|111.420 +637146.434|221017.667|110.984 +637152.415|221015.543|110.868 +637164.317|221011.321|110.402 +637170.270|221009.209|110.195 +637176.146|221007.118|110.051 +637199.845|220998.724|108.954 +637205.660|220996.651|108.893 +637217.233|220992.503|109.305 +637223.070|220990.436|108.981 +637228.980|220988.345|108.652 +637240.538|220984.215|108.774 +637252.078|220980.107|108.564 +637257.842|220978.061|108.384 +637263.609|220975.998|108.451 +637269.287|220973.965|108.619 +637275.039|220971.917|108.533 +637280.748|220969.887|108.393 +637297.780|220963.797|108.634 +637303.358|220961.797|108.786 +637314.468|220957.807|109.289 +637319.997|220955.817|109.649 +637325.593|220953.812|109.798 +637331.073|220951.839|110.128 +637336.590|220949.861|110.347 +637347.575|220945.920|110.768 +637352.925|220943.982|111.365 +637354.982|220944.719|111.423 +637349.599|220946.673|110.944 +637344.046|220948.666|110.829 +637338.666|220950.617|110.353 +637333.140|220952.608|110.167 +637327.641|220954.589|109.893 +637322.021|220956.604|109.832 +637316.480|220958.606|109.512 +637310.969|220960.599|109.097 +637299.783|220964.629|108.655 +637294.061|220966.668|108.792 +637282.766|220970.725|108.588 +637277.105|220972.764|108.332 +637259.777|220978.951|108.640 +637254.041|220981.003|108.716 +637242.471|220985.139|108.802 +637236.771|220987.193|108.561 +637219.193|220993.454|109.222 +637207.486|220997.639|109.317 +637190.051|221003.912|108.722 +637165.981|221012.443|110.408 +637148.062|221018.835|110.862 +637141.957|221021.002|111.246 +637135.961|221023.135|111.463 +637129.756|221025.315|112.316 +637111.650|221031.767|112.871 +637105.591|221033.931|112.941 +637099.544|221036.096|112.965 +637093.469|221038.263|113.139 +637087.455|221040.421|113.072 +637081.402|221042.579|113.185 +637069.183|221046.943|113.413 +637063.181|221049.092|113.371 +637057.067|221051.287|113.270 +637050.992|221053.460|113.310 +637044.963|221055.627|113.148 +637038.782|221057.825|113.410 +637040.656|221061.129|113.407 +637046.905|221058.946|112.532 +637052.729|221056.831|113.325 +637058.905|221054.640|113.115 +637064.876|221052.503|113.282 +637076.891|221048.220|113.322 +637082.947|221046.069|113.157 +637088.952|221043.938|112.965 +637100.979|221039.659|112.840 +637106.984|221037.525|112.718 +637112.970|221035.394|112.679 +637118.911|221033.267|112.855 +637131.024|221028.994|112.039 +637142.990|221024.763|111.380 +637149.071|221022.623|110.826 +637154.947|221020.529|110.862 +637160.931|221018.414|110.475 +637166.896|221016.305|110.195 +637172.854|221014.193|109.957 +637184.958|221009.962|108.317 +637190.761|221007.886|108.503 +637213.881|220999.608|109.268 +637219.675|220997.541|109.320 +637225.490|220995.469|109.314 +637231.321|220993.408|109.021 +637243.004|220989.275|108.430 +637248.698|220987.233|108.698 +637260.125|220983.149|108.908 +637265.852|220981.113|108.872 +637277.307|220977.031|108.844 +637282.982|220975.010|108.805 +637288.743|220972.965|108.725 +637300.011|220968.945|108.799 +637305.613|220966.945|108.853 +637311.271|220964.937|108.732 +637327.690|220959.014|110.134 +637333.198|220957.042|110.365 +637338.733|220955.064|110.509 +637349.590|220951.154|111.341 +637354.976|220949.221|111.575 +637359.615|220949.675|111.840 +637354.101|220951.647|111.789 +637348.721|220953.595|111.301 +637337.825|220957.539|110.377 +637332.277|220959.527|110.271 +637326.669|220961.538|110.158 +637321.225|220963.504|109.722 +637316.022|220965.443|108.250 +637310.234|220967.482|108.796 +637304.608|220969.494|108.808 +637298.908|220971.527|108.863 +637293.199|220973.563|108.963 +637287.463|220975.614|108.945 +637276.100|220979.683|108.805 +637270.314|220981.740|109.018 +637241.596|220992.024|108.646 +637235.793|220994.091|108.789 +637223.970|220998.294|109.228 +637218.090|221000.382|109.472 +637200.631|221006.640|109.161 +637194.739|221008.737|109.283 +637189.027|221010.821|108.472 +637183.065|221012.943|108.661 +637170.922|221017.216|109.948 +637164.972|221019.331|110.146 +637158.928|221021.474|110.490 +637152.917|221023.611|110.710 +637146.888|221025.751|111.045 +637140.817|221027.906|111.304 +637134.754|221030.048|111.813 +637116.591|221036.498|112.590 +637110.648|221038.631|112.423 +637104.539|221040.802|112.700 +637092.460|221045.115|112.731 +637086.325|221047.300|112.919 +637080.186|221049.467|113.419 +637074.178|221051.616|113.371 +637068.082|221053.807|113.163 +637062.081|221055.953|113.124 +637049.959|221060.303|112.782 +637043.771|221062.500|113.060 +637037.578|221064.698|113.404 +637037.706|221068.648|113.307 +637043.842|221066.484|112.938 +637050.008|221064.299|112.749 +637055.970|221062.165|112.938 +637061.995|221060.010|113.133 +637068.085|221057.846|113.060 +637074.023|221055.731|113.108 +637086.212|221051.409|112.749 +637092.186|221049.287|112.703 +637098.242|221047.135|112.609 +637104.207|221045.011|112.639 +637110.270|221042.871|112.273 +637116.280|221040.738|112.164 +637122.294|221038.604|112.042 +637140.323|221032.221|111.350 +637146.349|221030.094|111.018 +637152.323|221027.985|110.640 +637158.367|221025.854|110.268 +637164.265|221023.754|110.262 +637176.326|221019.527|108.969 +637205.468|221009.118|109.695 +637211.284|221007.051|109.646 +637217.093|221004.985|109.634 +637240.502|220996.700|108.637 +637257.729|220990.552|108.948 +637263.459|220988.504|109.131 +637269.150|220986.471|109.225 +637274.880|220984.432|109.204 +637280.592|220982.408|109.018 +637286.286|220980.375|109.167 +637291.934|220978.360|109.244 +637297.676|220976.327|109.021 +637303.312|220974.325|108.945 +637309.033|220972.295|108.832 +637320.067|220968.338|109.359 +637325.523|220966.366|109.975 +637331.131|220964.364|110.073 +637336.621|220962.395|110.371 +637342.138|220960.420|110.588 +637353.699|220958.268|111.676 +637348.350|220960.212|111.109 +637343.040|220962.148|110.417 +637337.502|220964.135|110.283 +637331.988|220966.116|110.079 +637326.456|220968.101|109.954 +637315.733|220972.029|108.116 +637309.935|220974.072|108.719 +637304.196|220976.117|108.914 +637287.072|220982.219|109.268 +637281.449|220984.237|109.125 +637275.743|220986.282|109.058 +637269.940|220988.355|109.122 +637264.215|220990.400|109.152 +637258.537|220992.436|109.036 +637252.734|220994.505|109.155 +637247.031|220996.557|108.927 +637241.209|220998.639|108.902 +637229.636|221002.778|108.899 +637206.194|221011.129|109.487 +637200.381|221013.217|109.314 +637188.677|221017.414|109.061 +637170.724|221023.785|110.006 +637164.747|221025.918|110.079 +637158.831|221028.027|110.195 +637152.853|221030.158|110.307 +637122.596|221040.905|111.667 +637116.512|221043.060|112.090 +637110.450|221045.224|112.185 +637104.338|221047.376|112.770 +637098.361|221049.525|112.526 +637092.247|221051.707|112.618 +637074.072|221058.194|112.865 +637067.988|221060.367|112.904 +637061.934|221062.534|112.840 +637055.762|221064.732|113.035 +637049.749|221066.893|112.828 +637043.656|221069.075|112.691 +637037.465|221071.257|113.343 +637041.351|221074.125|113.063 +637047.478|221071.961|112.737 +637053.452|221069.828|112.849 +637059.743|221067.624|112.121 +637065.571|221065.509|112.926 +637071.652|221063.360|112.606 +637077.607|221061.226|112.871 +637083.722|221059.071|112.459 +637095.679|221054.807|112.584 +637101.702|221052.674|112.362 +637107.645|221050.552|112.490 +637113.687|221048.412|112.215 +637119.776|221046.270|111.767 +637125.690|221044.161|111.810 +637137.729|221039.899|111.328 +637143.639|221037.802|111.179 +637149.690|221035.672|110.737 +637155.661|221033.563|110.393 +637161.604|221031.459|110.161 +637167.551|221029.353|109.951 +637173.546|221027.238|109.561 +637185.318|221023.050|109.472 +637191.231|221020.959|109.210 +637202.807|221016.811|109.737 +637208.662|221014.738|109.509 +637226.121|221008.529|109.362 +637237.707|221004.405|109.292 +637249.241|221000.288|109.494 +637260.704|220996.215|109.305 +637266.419|220994.179|109.298 +637272.165|220992.128|109.436 +637277.889|220990.089|109.417 +637283.570|220988.068|109.353 +637289.233|220986.050|109.362 +637294.912|220984.029|109.332 +637306.281|220979.997|109.058 +637311.981|220977.967|109.006 +637328.522|220972.026|109.960 +637333.978|220970.064|110.350 +637339.519|220968.085|110.472 +637344.991|220966.119|110.832 +637350.395|220964.175|111.219 +637355.802|220962.230|111.594 +637361.172|220960.289|112.112 +637366.552|220958.347|112.606 +637364.199|220961.087|112.273 +637358.807|220963.038|111.825 +637353.391|220964.995|111.459 +637347.941|220966.964|110.990 +637342.506|220968.924|110.722 +637337.102|220970.883|110.134 +637331.494|220972.883|110.256 +637325.913|220974.885|110.067 +637320.564|220976.836|109.335 +637309.362|220980.850|109.167 +637303.650|220982.886|109.274 +637297.984|220984.913|109.228 +637280.824|220991.031|109.558 +637275.203|220993.045|109.417 +637269.400|220995.118|109.487 +637263.725|220997.154|109.344 +637257.872|220999.230|109.625 +637252.203|221001.263|109.490 +637240.599|221005.408|109.533 +637211.564|221015.790|109.445 +637205.669|221017.890|109.567 +637199.823|221019.984|109.524 +637193.983|221022.072|109.475 +637182.181|221026.296|109.393 +637164.253|221032.666|110.054 +637152.256|221036.937|110.435 +637146.209|221039.076|110.862 +637140.098|221041.234|111.310 +637134.206|221043.350|111.139 +637128.101|221045.523|111.331 +637122.114|221047.647|111.591 +637115.991|221049.821|111.923 +637103.906|221054.124|112.206 +637097.852|221056.282|112.298 +637085.700|221060.601|112.743 +637079.680|221062.769|112.462 +637073.563|221064.945|112.633 +637067.479|221067.118|112.673 +637061.703|221069.249|111.341 +637055.326|221071.455|112.752 +637049.227|221073.626|112.929 +637043.095|221075.829|112.694 +637036.974|221077.999|113.005 +637039.154|221081.715|112.819 +637051.276|221077.408|112.795 +637057.375|221075.247|112.636 +637063.614|221073.086|111.575 +637069.503|221070.949|112.407 +637075.507|221068.813|112.450 +637087.586|221064.527|112.285 +637093.600|221062.388|112.337 +637099.626|221060.257|112.084 +637105.686|221058.108|111.981 +637117.686|221053.853|111.807 +637129.701|221049.604|111.374 +637135.687|221047.489|111.149 +637141.716|221045.349|111.033 +637147.748|221043.225|110.667 +637153.734|221041.119|110.234 +637159.708|221039.000|110.143 +637165.634|221036.903|110.009 +637171.486|221034.828|109.926 +637195.084|221026.458|109.551 +637206.892|221022.279|109.198 +637212.661|221020.221|109.317 +637218.395|221018.170|109.594 +637235.799|221011.977|109.722 +637258.845|221003.784|109.753 +637264.569|221001.751|109.701 +637270.290|220999.718|109.679 +637276.008|220997.685|109.676 +637281.796|220995.639|109.460 +637287.490|220993.609|109.579 +637293.178|220991.589|109.512 +637304.553|220987.550|109.433 +637310.237|220985.541|109.195 +637321.737|220981.497|108.332 +637337.947|220975.623|110.490 +637343.445|220973.657|110.758 +637348.880|220971.709|111.036 +637354.281|220969.771|111.435 +637359.648|220967.835|111.959 +637365.028|220965.897|112.453 +637370.377|220963.977|112.837 +637371.109|220965.226|112.804 +637365.748|220967.159|112.471 +637360.380|220969.100|111.941 +637354.958|220971.054|111.615 +637349.669|220972.983|110.847 +637322.262|220982.871|108.808 +637316.513|220984.913|108.991 +637310.810|220986.934|109.277 +637305.144|220988.961|109.213 +637299.359|220991.006|109.591 +637293.613|220993.042|109.844 +637276.462|220999.172|109.713 +637270.720|221001.217|109.792 +637265.023|221003.253|109.722 +637259.241|221005.317|109.750 +637253.444|221007.380|109.847 +637247.695|221009.438|109.789 +637236.088|221013.577|109.878 +637230.395|221015.631|109.411 +637224.427|221017.743|109.756 +637218.757|221019.795|109.225 +637207.004|221023.974|109.548 +637189.317|221030.286|109.533 +637177.597|221034.489|109.164 +637165.548|221038.738|110.182 +637159.556|221040.881|110.070 +637153.600|221043.005|110.097 +637147.516|221045.148|110.661 +637141.423|221047.303|111.027 +637135.407|221049.449|111.100 +637129.387|221051.592|111.203 +637117.192|221055.908|111.874 +637111.224|221058.041|111.828 +637105.164|221060.199|111.917 +637093.036|221064.512|112.182 +637086.937|221066.688|112.237 +637080.863|221068.859|112.191 +637074.809|221071.010|112.353 +637068.585|221073.211|112.731 +637062.572|221075.372|112.474 +637056.503|221077.536|112.487 +637050.325|221079.728|112.721 +637038.044|221084.102|112.929 +637036.429|221088.997|113.087 +637048.612|221084.696|112.709 +637060.804|221080.386|112.365 +637073.060|221076.098|111.267 +637078.961|221073.964|112.051 +637085.023|221071.821|111.840 +637090.964|221069.712|111.914 +637096.932|221067.581|112.164 +637103.025|221065.436|111.895 +637108.947|221063.339|111.816 +637115.031|221061.190|111.624 +637121.002|221059.068|111.655 +637133.029|221054.829|111.155 +637138.924|221052.732|111.298 +637144.919|221050.616|111.048 +637150.884|221048.519|110.661 +637156.929|221046.398|110.256 +637162.851|221044.304|110.106 +637168.804|221042.207|109.838 +637186.427|221035.952|109.878 +637192.273|221033.880|109.859 +637204.051|221029.719|109.554 +637221.491|221023.529|109.609 +637233.010|221019.438|109.750 +637244.480|221015.351|110.149 +637250.198|221013.315|110.320 +637261.801|221009.212|110.073 +637267.492|221007.191|110.149 +637273.247|221005.155|110.012 +637290.440|220999.074|109.713 +637307.482|220993.049|109.426 +637318.836|220989.031|109.268 +637357.006|220975.361|111.938 +637371.588|220971.667|112.980 +637360.706|220975.583|112.188 +637355.256|220977.537|111.947 +637349.813|220979.500|111.487 +637338.785|220983.453|111.075 +637322.658|220989.327|108.686 +637311.149|220993.393|109.384 +637305.415|220995.429|109.585 +637293.952|220999.492|110.012 +637288.310|221001.507|109.942 +637282.625|221003.540|109.801 +637276.880|221005.585|109.893 +637265.322|221009.691|110.152 +637242.242|221017.926|110.015 +637236.500|221019.975|109.987 +637230.727|221022.038|109.835 +637219.218|221026.174|109.201 +637213.265|221028.280|109.551 +637207.358|221030.374|109.731 +637201.545|221032.456|109.573 +637195.574|221034.572|109.804 +637189.798|221036.644|109.539 +637178.201|221040.820|108.701 +637171.967|221042.987|109.798 +637166.027|221045.108|109.743 +637160.096|221047.212|109.935 +637154.033|221049.360|110.146 +637147.977|221051.497|110.627 +637141.935|221053.628|111.063 +637129.939|221057.901|111.121 +637123.836|221060.050|111.618 +637111.824|221064.332|111.594 +637105.762|221066.487|111.716 +637093.722|221070.782|111.639 +637087.687|221072.931|111.700 +637081.570|221075.104|111.868 +637075.462|221077.271|112.008 +637069.618|221079.392|111.267 +637051.032|221085.955|112.505 +637044.881|221088.122|112.953 +637038.797|221090.298|112.828 +637035.511|221095.839|112.980 +637041.641|221093.669|112.895 +637047.703|221091.536|112.557 +637053.876|221089.359|112.313 +637059.901|221087.229|112.179 +637065.985|221085.074|112.106 +637078.119|221080.782|111.868 +637084.142|221078.649|111.840 +637090.260|221076.500|111.408 +637096.243|221074.369|111.584 +637102.104|221072.266|112.045 +637108.221|221070.114|111.676 +637114.232|221067.993|111.523 +637120.264|221065.865|111.298 +637126.196|221063.750|111.508 +637132.188|221061.638|111.228 +637144.191|221057.398|110.902 +637150.232|221055.277|110.472 +637156.157|221053.186|110.286 +637162.165|221051.067|110.039 +637185.705|221042.725|109.942 +637191.603|221040.643|109.713 +637197.418|221038.577|109.844 +637203.331|221036.492|109.600 +637214.972|221032.359|109.643 +637226.475|221028.262|110.033 +637232.284|221026.202|110.033 +637238.003|221024.153|110.374 +637249.420|221020.090|110.704 +637255.175|221018.048|110.728 +637260.933|221016.003|110.743 +637272.445|221011.928|110.621 +637295.287|221003.832|110.524 +637306.686|220999.815|110.070 +637329.095|220991.845|110.509 +637356.402|220982.079|112.154 +637361.782|220980.146|112.612 +637372.566|220976.291|113.273 +637373.288|220978.071|113.340 +637362.465|220981.966|112.590 +637357.061|220983.911|112.209 +637351.590|220985.877|111.834 +637340.623|220989.815|111.228 +637329.635|220993.774|110.283 +637319.006|220997.669|108.125 +637301.447|221003.814|110.204 +637295.604|221005.875|110.594 +637266.956|221016.064|110.813 +637255.157|221020.228|111.551 +637249.594|221022.245|110.816 +637238.064|221026.357|110.682 +637232.251|221028.439|110.432 +637226.505|221030.496|110.210 +637220.601|221032.593|110.353 +637203.213|221038.820|109.640 +637197.248|221040.933|109.841 +637179.502|221047.245|109.966 +637173.623|221049.354|109.655 +637149.513|221057.883|110.691 +637125.196|221066.478|111.898 +637119.408|221068.581|111.082 +637113.290|221070.742|111.420 +637107.152|221072.903|111.871 +637095.008|221077.222|111.965 +637089.129|221079.347|111.347 +637083.027|221081.514|111.432 +637076.995|221083.687|110.954 +637070.829|221085.845|111.655 +637064.608|221088.040|112.066 +637052.370|221092.383|112.319 +637040.117|221096.742|112.420 +637033.820|221098.951|113.011 +637039.934|221100.835|112.417 +637045.978|221098.689|112.444 +637058.182|221094.383|112.029 +637064.260|221092.231|111.972 +637070.356|221090.076|111.850 +637076.422|221087.936|111.594 +637082.539|221085.775|111.429 +637094.554|221081.523|111.264 +637100.528|221079.392|111.493 +637106.841|221077.216|110.283 +637112.632|221075.137|110.795 +637118.704|221072.992|110.661 +637124.632|221070.876|110.893 +637130.429|221068.795|111.429 +637136.434|221066.667|111.359 +637142.362|221064.567|111.371 +637148.428|221062.442|110.835 +637154.463|221060.321|110.445 +637160.458|221058.206|110.237 +637172.214|221054.033|110.320 +637178.137|221051.927|110.463 +637184.071|221049.842|110.060 +637190.076|221047.748|109.405 +637195.827|221045.675|110.042 +637201.704|221043.597|109.932 +637207.623|221041.512|109.673 +637213.237|221039.485|110.371 +637230.620|221033.307|110.704 +637236.442|221031.243|110.664 +637259.296|221023.099|111.539 +637265.060|221021.054|111.542 +637276.502|221016.991|111.691 +637293.705|221010.913|111.310 +637299.578|221008.868|110.563 +637305.342|221006.841|110.240 +637311.094|221004.817|109.975 +637317.367|221002.699|107.902 +637338.888|220994.908|111.094 +637355.281|220989.037|112.221 +637360.761|220987.090|112.353 +637374.157|220984.636|113.401 +637368.860|220986.550|112.871 +637363.330|220988.528|112.694 +637357.926|220990.473|112.322 +637341.598|220996.340|111.228 +637330.650|221000.266|110.637 +637319.488|221004.262|110.146 +637314.059|221006.228|109.503 +637308.207|221008.276|110.131 +637296.594|221012.358|111.133 +637285.015|221016.439|111.871 +637273.515|221020.526|111.926 +637250.597|221028.692|111.703 +637216.097|221041.030|110.490 +637210.354|221043.094|110.048 +637198.659|221047.266|109.798 +637180.871|221053.579|110.155 +637168.977|221057.797|110.365 +637163.019|221059.916|110.414 +637157.121|221062.022|110.240 +637150.875|221064.192|111.246 +637144.916|221066.307|111.374 +637132.855|221070.578|111.722 +637127.147|221072.669|110.573 +637121.227|221074.802|110.042 +637115.144|221076.957|110.237 +637103.320|221081.215|109.192 +637096.895|221083.410|110.947 +637090.753|221085.583|111.210 +637084.645|221087.747|111.347 +637078.552|221089.911|111.429 +637072.414|221092.078|111.743 +637066.263|221094.261|111.847 +637060.157|221096.422|112.060 +637054.010|221098.601|112.197 +637047.862|221100.780|112.346 +637041.711|221102.960|112.545 +637035.560|221105.136|112.761 +637038.913|221108.025|112.679 +637045.024|221105.877|112.371 +637069.378|221097.269|111.822 +637075.526|221095.108|111.475 +637087.599|221090.838|111.255 +637093.747|221088.689|110.697 +637099.629|221086.570|111.319 +637111.544|221082.328|111.679 +637117.832|221080.170|110.320 +637124.056|221078.015|109.274 +637129.804|221075.927|110.274 +637135.733|221073.824|110.262 +637141.423|221071.757|111.255 +637153.570|221067.496|110.362 +637159.407|221065.417|110.530 +637165.393|221063.305|110.362 +637171.282|221061.217|110.356 +637183.093|221057.035|110.265 +637188.991|221054.944|110.268 +637194.855|221052.869|110.167 +637200.768|221050.787|109.905 +637212.262|221046.669|110.713 +637241.093|221036.403|111.642 +637246.833|221034.367|111.670 +637252.535|221032.337|111.859 +637263.947|221028.271|112.270 +637275.316|221024.236|112.404 +637292.678|221018.124|111.636 +637310.146|221012.019|109.975 +637326.901|221006.054|110.530 +637338.093|221002.077|110.740 +637359.752|220994.304|112.679 +637365.193|220992.363|112.944 +637370.606|220990.424|113.304 +637376.056|220988.483|113.553 +637385.977|220986.712|114.678 +637380.604|220988.650|114.160 +637375.337|220990.558|113.508 +637369.881|220992.512|113.270 +637364.467|220994.460|112.916 +637358.954|220996.432|112.679 +637353.470|220998.401|112.365 +637325.965|221008.292|110.588 +637291.666|221020.456|111.551 +637245.458|221036.888|112.042 +637239.755|221038.939|111.633 +637205.011|221051.384|110.256 +637199.070|221053.494|110.371 +637187.326|221057.688|110.112 +637175.369|221061.924|110.530 +637169.508|221064.030|110.161 +637163.546|221066.149|110.225 +637151.531|221070.413|110.515 +637145.605|221072.525|110.475 +637139.378|221074.705|111.188 +637133.697|221076.796|109.887 +637127.723|221078.926|109.841 +637121.599|221081.087|110.185 +637115.357|221083.266|111.054 +637109.377|221085.394|111.103 +637091.488|221091.834|109.704 +637078.967|221096.208|111.335 +637072.804|221098.382|111.752 +637066.683|221100.564|111.700 +637054.421|221104.926|111.780 +637048.261|221107.108|111.984 +637042.025|221109.296|112.578 +637035.883|221111.476|112.731 +637037.681|221115.344|112.599 +637043.857|221113.173|112.304 +637049.956|221111.025|112.075 +637056.146|221108.851|111.749 +637068.354|221104.551|111.383 +637080.433|221100.277|111.377 +637086.517|221098.125|111.362 +637092.680|221095.977|110.716 +637104.771|221091.691|110.829 +637116.680|221087.454|111.261 +637122.846|221085.303|110.725 +637128.954|221083.166|110.185 +637134.959|221081.060|109.838 +637146.736|221076.847|110.734 +637152.747|221074.735|110.432 +637158.718|221072.629|110.307 +637164.686|221070.523|110.207 +637170.568|221068.441|110.225 +637176.549|221066.329|110.128 +637182.437|221064.244|110.152 +637188.326|221062.159|110.198 +637200.003|221058.011|110.484 +637205.742|221055.959|110.905 +637211.585|221053.890|110.947 +637217.328|221051.848|111.133 +637228.886|221047.724|111.789 +637234.665|221045.675|111.880 +637251.920|221039.534|112.584 +637268.955|221033.468|113.258 +637274.728|221031.426|113.249 +637280.601|221029.366|112.892 +637286.417|221027.326|112.523 +637292.477|221025.245|111.307 +637304.019|221021.188|110.765 +637309.777|221019.164|110.463 +637315.882|221017.082|108.951 +637321.070|221015.156|110.694 +637348.877|221005.268|111.624 +637359.655|221001.400|112.676 +637365.171|220999.434|112.910 +637370.545|220997.508|113.398 +637376.025|220995.560|113.560 +637378.272|220996.231|113.755 +637372.855|220998.172|113.398 +637367.409|221000.120|113.160 +637361.950|221002.083|112.749 +637345.661|221007.947|111.295 +637334.633|221011.894|110.740 +637312.048|221019.947|110.262 +637306.345|221021.968|110.374 +637294.808|221026.028|111.139 +637282.887|221030.185|112.682 +637236.792|221046.584|112.365 +637184.339|221065.326|110.387 +637178.414|221067.438|110.259 +637172.452|221069.553|110.313 +637166.484|221071.669|110.393 +637136.580|221082.300|110.323 +637130.573|221084.443|110.140 +637124.388|221086.610|110.749 +637118.341|221088.744|111.060 +637106.265|221093.044|110.847 +637093.984|221097.370|111.609 +637087.907|221099.531|111.612 +637081.884|221101.682|111.371 +637069.850|221105.980|110.905 +637063.833|221108.144|110.390 +637045.049|221114.716|112.438 +637036.301|221122.244|112.670 +637042.378|221120.108|112.505 +637048.572|221117.938|112.103 +637060.913|221113.634|111.005 +637067.156|221111.457|110.466 +637072.923|221109.363|111.551 +637078.942|221107.227|111.780 +637084.971|221105.087|111.981 +637091.034|221102.957|111.755 +637097.026|221100.832|111.868 +637103.235|221098.668|111.322 +637115.323|221094.419|110.920 +637133.386|221088.052|110.627 +637139.439|221085.927|110.344 +637157.270|221079.624|110.457 +637163.192|221077.527|110.536 +637169.093|221075.448|110.454 +637180.953|221071.260|110.368 +637204.246|221062.985|111.338 +637210.052|221060.925|111.496 +637233.028|221052.747|112.731 +637244.547|221048.659|113.075 +637255.964|221044.596|113.624 +637261.713|221042.566|113.654 +637267.455|221040.533|113.724 +637273.256|221038.491|113.593 +637285.009|221034.389|112.602 +637290.846|221032.350|112.161 +637296.744|221030.298|111.520 +637302.578|221028.259|111.142 +637314.139|221024.214|110.350 +637319.653|221022.236|110.932 +637347.578|221012.336|111.606 +637352.961|221010.404|112.252 +637363.812|221006.530|113.060 +637391.006|220998.437|114.998 +637385.435|221000.406|115.135 +637363.958|221008.127|113.133 +637353.037|221012.056|112.151 +637347.551|221014.028|111.655 +637330.848|221019.987|111.075 +637319.592|221023.989|110.966 +637314.038|221025.982|110.548 +637284.878|221036.217|112.779 +637273.064|221040.357|113.803 +637267.221|221042.414|114.111 +637261.542|221044.444|113.834 +637255.824|221046.480|113.715 +637227.078|221056.761|112.218 +637209.616|221062.991|111.618 +637203.792|221065.073|111.298 +637197.949|221067.161|111.072 +637192.139|221069.255|110.463 +637186.238|221071.346|110.481 +637180.334|221073.452|110.280 +637174.360|221075.567|110.390 +637168.343|221077.689|110.682 +637162.321|221079.822|110.761 +637144.359|221086.202|110.667 +637138.421|221088.320|110.457 +637132.389|221090.448|110.673 +637126.153|221092.633|111.246 +637120.200|221094.748|111.164 +637114.177|221096.888|111.124 +637108.112|221099.049|111.018 +637101.918|221101.207|111.770 +637095.828|221103.365|111.810 +637083.670|221107.678|111.865 +637065.793|221114.112|110.115 +637046.966|221120.693|112.081 +637040.754|221122.872|112.587 +637034.548|221125.064|112.798 +637073.005|221115.728|111.941 +637079.037|221113.588|112.109 +637085.093|221111.461|111.886 +637091.159|221109.315|111.926 +637097.200|221107.187|111.819 +637109.264|221102.929|111.740 +637115.363|221100.789|111.432 +637121.334|221098.680|111.432 +637127.433|221096.541|111.179 +637133.480|221094.419|110.886 +637139.421|221092.325|110.801 +637145.425|221090.207|110.734 +637151.220|221088.116|111.572 +637157.215|221086.013|111.313 +637163.265|221083.900|110.847 +637169.233|221081.797|110.734 +637187.040|221075.509|110.676 +637192.776|221073.464|111.060 +637221.659|221063.180|112.651 +637233.290|221059.053|112.977 +637244.684|221054.987|113.782 +637302.843|221034.584|111.146 +637308.704|221032.551|110.432 +637319.933|221028.555|111.054 +637336.715|221022.605|111.487 +637347.853|221018.664|111.652 +637353.287|221016.722|112.106 +637385.627|221005.140|115.263 +637391.049|221003.220|115.394 +637393.603|221004.710|115.312 +637382.749|221008.596|114.657 +637377.315|221010.538|114.383 +637366.510|221014.421|113.413 +637361.105|221016.366|112.837 +637350.236|221020.267|111.932 +637344.695|221022.245|111.627 +637333.225|221026.281|112.188 +637311.359|221034.181|109.268 +637293.400|221040.411|111.868 +637263.822|221050.738|114.879 +637246.738|221056.846|113.822 +637194.325|221075.534|111.670 +637176.850|221081.791|110.365 +637170.828|221083.910|110.688 +637164.783|221086.031|111.127 +637158.663|221088.186|111.362 +637152.777|221090.295|110.908 +637146.803|221092.417|110.829 +637140.829|221094.535|110.786 +637134.773|221096.681|110.835 +637128.646|221098.833|111.203 +637122.587|221100.975|111.301 +637116.439|221103.139|111.527 +637110.431|221105.273|111.447 +637104.338|221107.431|111.472 +637098.175|221109.595|111.834 +637092.076|221111.753|111.935 +637086.029|221113.902|111.828 +637079.899|221116.060|112.103 +637061.782|221122.540|110.935 +637043.080|221129.108|112.084 +637048.063|221131.269|111.310 +637060.301|221126.963|110.975 +637066.342|221124.823|111.063 +637078.263|221120.562|112.023 +637084.322|221118.419|112.069 +637090.442|221116.267|111.853 +637096.493|221114.137|111.694 +637102.534|221112.006|111.591 +637108.602|221109.857|111.682 +637120.581|221105.621|111.758 +637126.695|221103.478|111.423 +637132.514|221101.387|112.103 +637138.729|221099.241|111.100 +637144.755|221097.120|110.935 +637150.680|221095.026|110.950 +637168.566|221088.707|110.896 +637174.506|221086.607|110.917 +637186.302|221082.431|111.094 +637226.868|221067.990|113.154 +637232.717|221065.923|113.191 +637244.001|221061.872|114.392 +637266.968|221053.731|114.974 +637308.594|221039.302|109.692 +637313.947|221037.342|111.051 +637342.040|221027.390|111.682 +637347.688|221025.400|111.609 +637353.162|221023.437|112.161 +637358.569|221021.502|112.721 +637364.025|221019.554|113.130 +637369.500|221017.603|113.486 +637374.879|221015.680|113.947 +637380.204|221013.766|114.608 +637385.636|221011.830|114.910 +637390.970|221009.913|115.559 +637396.389|221007.993|115.724 +637400.976|221008.654|116.467 +637385.017|221014.403|114.876 +637379.585|221016.344|114.593 +637374.206|221018.289|113.916 +637368.732|221020.246|113.578 +637363.303|221022.197|113.093 +637357.811|221024.169|112.612 +637352.388|221026.119|112.133 +637346.877|221028.082|111.969 +637307.835|221042.036|109.829 +637301.697|221044.133|111.335 +637295.808|221046.191|111.972 +637283.805|221050.357|113.651 +637225.911|221070.907|113.258 +637214.310|221075.052|112.663 +637196.894|221081.270|111.810 +637190.987|221083.373|111.615 +637179.197|221087.576|111.179 +637173.296|221089.679|111.011 +637167.335|221091.801|110.847 +637161.360|221093.910|111.021 +637155.383|221096.031|110.954 +637149.312|221098.180|111.045 +637143.310|221100.305|111.118 +637130.978|221104.606|112.474 +637125.059|221106.730|111.990 +637119.030|221108.867|111.987 +637107.027|221113.146|111.530 +637100.888|221115.310|111.798 +637094.798|221117.465|111.856 +637088.793|221119.596|111.850 +637082.615|221121.775|112.075 +637058.594|221130.386|110.231 +637052.284|221132.589|110.874 +637033.686|221139.139|111.688 +637042.269|221140.124|111.237 +637072.441|221129.416|112.221 +637078.500|221127.277|112.240 +637090.601|221123.009|112.112 +637096.700|221120.861|112.002 +637108.779|221116.606|111.816 +637114.708|221114.490|112.240 +637132.849|221108.108|111.776 +637138.759|221106.005|112.069 +637144.898|221103.871|111.408 +637150.897|221101.756|111.365 +637156.807|221099.665|111.432 +637168.703|221095.455|111.594 +637186.253|221089.222|112.228 +637209.644|221080.923|112.996 +637232.845|221072.705|113.499 +637284.939|221054.313|113.368 +637314.059|221044.130|111.447 +637353.290|221030.225|112.407 +637358.865|221028.247|112.612 +637364.260|221026.311|113.218 +637369.673|221024.370|113.767 +637375.087|221022.443|114.105 +637380.488|221020.502|114.721 +637385.892|221018.576|115.114 +637401.882|221012.848|116.653 +637403.022|221014.037|116.729 +637386.983|221019.807|115.138 +637376.129|221023.696|114.306 +637370.679|221025.653|113.880 +637365.263|221027.613|113.124 +637359.780|221029.573|112.825 +637326.218|221041.542|111.584 +637309.244|221047.605|110.807 +637303.477|221049.641|110.960 +637279.330|221057.992|115.053 +637273.472|221060.050|115.434 +637261.780|221064.186|115.666 +637244.525|221070.334|115.074 +637198.031|221086.958|112.508 +637192.188|221089.052|112.054 +637180.267|221093.276|112.145 +637168.389|221097.504|111.874 +637156.471|221101.743|111.560 +637150.430|221103.889|111.505 +637138.366|221108.160|111.655 +637132.301|221110.305|111.770 +637126.253|221112.448|111.828 +637101.924|221121.065|112.017 +637095.865|221123.217|111.932 +637089.760|221125.375|112.093 +637077.571|221129.697|112.060 +637065.269|221134.046|112.343 +637059.203|221136.207|112.112 +637053.458|221142.440|112.731 +637059.584|221140.285|112.657 +637065.784|221138.118|112.276 +637071.850|221135.982|112.246 +637077.936|221133.827|112.423 +637083.914|221131.715|112.542 +637090.010|221129.572|112.417 +637096.124|221127.423|112.240 +637114.180|221121.043|112.542 +637126.296|221116.782|112.304 +637132.371|221114.652|112.145 +637144.392|221110.412|112.148 +637150.430|221108.294|111.941 +637156.343|221106.206|112.002 +637162.318|221104.097|112.087 +637186.080|221095.702|112.395 +637191.868|221093.642|112.801 +637197.726|221091.569|112.938 +637209.431|221087.424|113.319 +637221.010|221083.306|114.002 +637226.749|221081.261|114.434 +637249.887|221073.056|115.343 +637255.666|221071.013|115.452 +637291.050|221058.669|112.831 +637303.145|221054.515|110.667 +637319.991|221048.510|111.886 +637325.648|221046.514|111.932 +637359.313|221034.593|112.852 +637375.568|221028.777|114.459 +637381.055|221026.827|114.782 +637386.483|221024.894|115.093 +637397.148|221021.066|116.385 +637402.564|221019.136|116.772 +637395.530|221023.013|116.126 +637390.205|221024.934|115.471 +637384.776|221026.884|114.949 +637379.332|221028.823|114.718 +637373.816|221030.798|114.297 +637363.056|221034.675|113.005 +637357.487|221036.659|112.798 +637351.900|221038.644|112.663 +637334.935|221044.654|112.621 +637318.235|221050.638|111.304 +637294.942|221058.818|112.609 +637218.895|221085.687|113.806 +637189.490|221096.153|112.785 +637183.516|221098.275|112.651 +637177.676|221100.366|112.240 +637171.538|221102.509|112.807 +637159.650|221106.754|112.118 +637153.689|221108.870|112.014 +637141.716|221113.122|111.786 +637135.617|221115.267|112.054 +637129.448|221117.435|112.371 +637117.369|221121.708|112.484 +637111.233|221123.881|112.444 +637105.170|221126.018|112.657 +637099.218|221128.154|112.103 +637093.052|221130.331|112.243 +637086.922|221132.486|112.542 +637080.826|221134.650|112.404 +637074.706|221136.817|112.407 +637062.422|221141.154|112.660 +637044.030|221147.695|112.130 +637034.740|221155.053|113.023 +637047.106|221150.740|112.185 +637089.546|221135.771|112.435 +637095.566|221133.638|112.670 +637101.586|221131.519|112.612 +637107.652|221129.380|112.670 +637119.670|221125.140|112.761 +637131.645|221120.915|112.846 +637143.786|221116.666|112.279 +637149.662|221114.573|112.727 +637155.697|221112.457|112.511 +637161.674|221110.348|112.566 +637167.481|221108.275|113.078 +637173.235|221106.197|114.090 +637179.533|221104.054|112.587 +637185.333|221101.981|113.182 +637191.124|221099.921|113.547 +637202.774|221095.775|114.319 +637208.565|221093.727|114.465 +637226.060|221087.534|115.047 +637249.265|221079.344|115.346 +637254.931|221077.320|115.861 +637260.686|221075.284|116.038 +637290.328|221064.994|113.047 +637296.341|221062.921|112.170 +637330.750|221050.808|111.935 +637341.879|221046.858|112.502 +637353.001|221042.905|113.142 +637364.147|221038.970|113.291 +637375.004|221035.084|114.498 +637380.536|221033.127|114.645 +637386.014|221031.179|115.001 +637396.599|221027.372|116.528 +637401.943|221025.470|116.918 +637407.466|221023.522|116.943 +637408.228|221024.742|116.979 +637402.683|221026.702|117.028 +637397.319|221028.625|116.498 +637386.721|221032.453|115.029 +637381.244|221034.410|114.690 +637375.693|221036.379|114.608 +637364.845|221040.280|113.404 +637359.194|221042.277|113.486 +637353.751|221044.225|113.087 +637348.069|221046.236|113.078 +637342.604|221048.196|112.560 +637308.643|221060.272|111.533 +637278.751|221070.639|115.644 +637255.458|221078.871|115.876 +637232.163|221087.140|115.416 +637220.568|221091.274|114.818 +637214.627|221093.368|114.989 +637208.656|221095.480|115.038 +637202.923|221097.540|114.407 +637197.031|221099.653|113.904 +637191.200|221101.740|113.438 +637185.287|221103.837|113.316 +637179.411|221105.947|112.795 +637167.484|221110.168|112.791 +637161.479|221112.302|112.584 +637155.511|221114.420|112.505 +637149.440|221116.563|112.624 +637143.459|221118.693|112.365 +637137.379|221120.833|112.557 +637131.219|221123.000|112.834 +637125.202|221125.131|112.785 +637119.155|221127.280|112.615 +637113.001|221129.441|112.935 +637106.963|221131.590|112.755 +637094.740|221135.909|112.837 +637088.665|221138.057|112.895 +637082.539|221140.225|112.895 +637076.382|221142.395|113.072 +637045.899|221153.243|111.926 +637033.311|221157.644|112.959 +637071.155|221147.963|113.410 +637089.501|221141.523|112.926 +637101.623|221137.262|112.731 +637137.787|221124.506|112.923 +637143.828|221122.391|112.636 +637149.808|221120.284|112.633 +637161.680|221116.078|113.063 +637167.655|221113.969|113.148 +637173.412|221111.902|113.874 +637191.176|221105.630|114.120 +637196.903|221103.566|115.020 +637237.945|221089.088|115.324 +637255.266|221082.959|115.809 +637266.706|221078.893|116.458 +637272.576|221076.835|116.236 +637290.657|221070.605|113.462 +637308.387|221064.457|111.508 +637314.120|221062.427|111.691 +637347.825|221050.479|113.047 +637364.620|221044.535|113.550 +637370.036|221042.600|114.066 +637375.547|221040.637|114.495 +637397.087|221032.935|116.684 +637407.901|221029.082|117.479 +637413.333|221027.162|117.604 +637411.760|221029.664|117.537 +637395.499|221035.471|116.528 +637384.947|221039.296|114.712 +637379.308|221041.292|114.703 +637373.874|221043.237|114.239 +637368.317|221045.203|114.206 +637362.864|221047.163|113.596 +637351.715|221051.119|113.273 +637317.952|221063.128|111.889 +637312.261|221065.158|111.551 +637306.869|221067.124|110.368 +637300.557|221069.255|112.322 +637294.634|221071.318|112.880 +637276.478|221077.582|115.913 +637259.019|221083.745|116.059 +637253.154|221085.818|116.065 +637223.875|221096.187|115.724 +637194.419|221106.642|114.959 +637188.567|221108.742|114.322 +637176.716|221112.948|113.968 +637170.846|221115.051|113.456 +637164.893|221117.163|113.300 +637158.919|221119.294|112.980 +637146.943|221123.537|112.770 +637134.703|221127.840|113.243 +637116.594|221134.263|112.846 +637098.312|221140.709|113.115 +637086.041|221145.043|113.194 +637079.954|221147.204|113.035 +637073.749|221149.375|113.453 +637067.564|221151.560|113.505 +637033.829|221166.748|113.572 +637039.925|221164.599|113.550 +637070.420|221153.837|113.639 +637076.605|221151.670|113.307 +637082.694|221149.530|113.154 +637088.714|221147.396|113.346 +637100.906|221143.108|113.072 +637106.981|221140.965|113.063 +637113.043|221138.822|113.145 +637125.007|221134.586|113.477 +637143.155|221128.194|113.243 +637149.141|221126.085|113.197 +637155.167|221123.954|113.279 +637161.056|221121.869|113.416 +637167.042|221119.745|113.700 +637172.882|221117.663|114.072 +637184.531|221113.494|115.248 +637190.457|221111.400|115.306 +637219.696|221101.030|116.385 +637237.326|221094.818|116.211 +637278.212|221080.426|115.623 +637296.290|221074.189|112.938 +637313.889|221068.057|111.511 +637319.506|221066.054|111.892 +637325.258|221064.030|111.810 +637380.948|221044.243|114.788 +637386.440|221042.292|115.081 +637396.996|221038.488|116.699 +637407.886|221034.608|117.458 +637413.324|221032.688|117.559 +637413.412|221034.556|117.543 +637407.938|221036.504|117.373 +637397.142|221040.369|116.565 +637386.480|221044.231|114.913 +637380.963|221046.194|114.736 +637375.410|221048.163|114.687 +637369.929|221050.129|114.181 +637358.822|221054.085|113.709 +637325.163|221066.079|112.218 +637319.607|221068.075|111.627 +637313.962|221070.090|111.377 +637284.131|221080.447|115.312 +637278.221|221082.520|115.678 +637272.152|221084.632|116.419 +637225.265|221101.213|116.778 +637189.908|221113.768|116.004 +637184.016|221115.877|115.577 +637178.259|221117.965|114.596 +637172.336|221120.077|114.319 +637166.475|221122.177|113.800 +637154.618|221126.411|113.105 +637142.524|221130.687|113.212 +637130.365|221134.982|113.398 +637118.338|221139.255|113.096 +637112.214|221141.413|113.319 +637106.192|221143.556|113.105 +637100.031|221145.729|113.249 +637093.969|221147.875|113.249 +637081.731|221152.206|113.255 +637075.586|221154.373|113.413 +637069.378|221156.562|113.596 +637038.629|221167.440|113.709 +637033.649|221172.607|113.892 +637039.864|221170.430|113.578 +637046.015|221168.257|113.593 +637052.227|221166.093|113.038 +637058.316|221163.941|113.090 +637076.525|221157.485|113.657 +637082.624|221155.346|113.447 +637088.647|221153.212|113.599 +637094.697|221151.072|113.648 +637118.944|221142.520|113.563 +637125.083|221140.365|113.322 +637137.077|221136.119|113.572 +637143.057|221134.013|113.526 +637149.065|221131.885|113.648 +637161.031|221127.648|113.898 +637166.868|221125.570|114.248 +637172.711|221123.476|114.870 +637178.618|221121.373|115.233 +637184.303|221119.315|116.263 +637190.079|221117.243|116.922 +637249.116|221096.449|116.099 +637278.236|221086.180|115.916 +637284.201|221084.102|115.355 +637302.194|221077.887|112.743 +637308.000|221075.854|112.386 +637319.729|221071.745|111.786 +637353.333|221059.785|113.688 +637369.926|221053.881|114.629 +637375.529|221051.896|114.733 +637381.052|221049.940|114.882 +637386.498|221047.995|115.312 +637397.215|221044.148|116.577 +637408.060|221040.274|117.455 +637413.519|221038.348|117.461 +637418.947|221036.412|117.799 +637416.088|221038.674|117.531 +637410.593|221040.625|117.412 +637405.189|221042.557|117.010 +637383.523|221050.324|115.026 +637361.230|221058.267|114.029 +637355.665|221060.245|113.843 +637333.305|221068.231|112.441 +637321.978|221072.272|111.749 +637316.449|221074.266|111.057 +637304.589|221078.405|112.164 +637245.098|221099.229|116.669 +637239.115|221101.332|116.949 +637233.226|221103.417|116.876 +637203.508|221113.920|117.159 +637197.406|221116.060|117.549 +637191.389|221118.172|117.876 +637185.680|221120.254|116.690 +637179.959|221122.336|115.547 +637174.080|221124.439|115.096 +637168.185|221126.560|114.422 +637156.270|221130.812|113.672 +637150.226|221132.952|113.700 +637144.203|221135.086|113.648 +637138.162|221137.219|113.697 +637126.004|221141.526|113.624 +637113.860|221145.827|113.550 +637107.813|221147.973|113.438 +637101.662|221150.146|113.529 +637095.533|221152.313|113.547 +637089.379|221154.483|113.694 +637083.304|221156.644|113.483 +637065.013|221163.139|112.990 +637058.944|221165.313|112.511 +637052.574|221167.529|113.212 +637040.092|221171.921|113.758 +637038.517|221175.609|113.998 +637063.193|221166.971|112.889 +637081.298|221160.552|113.685 +637087.398|221158.397|113.779 +637093.454|221156.263|113.803 +637099.519|221154.126|113.788 +637111.666|221149.847|113.776 +637123.772|221145.586|113.712 +637129.725|221143.471|114.026 +637147.839|221137.094|113.922 +637159.797|221132.854|114.465 +637177.460|221126.569|115.721 +637183.242|221124.500|116.336 +637206.724|221116.170|117.485 +637212.661|221114.076|117.540 +637259.857|221097.501|116.513 +637265.614|221095.452|116.925 +637283.302|221089.271|115.937 +637295.378|221085.120|113.849 +637301.496|221083.017|112.801 +637307.360|221080.968|112.465 +637324.685|221074.884|112.078 +637341.659|221068.862|112.880 +637358.286|221062.933|114.309 +637363.852|221060.961|114.507 +637369.417|221058.989|114.715 +637375.071|221056.990|114.861 +637380.637|221055.030|114.873 +637386.050|221053.082|115.647 +637402.433|221047.260|116.635 +637407.764|221045.349|117.281 +637413.034|221044.453|117.891 +637407.667|221046.379|117.382 +637402.339|221048.297|116.751 +637396.779|221050.266|116.675 +637380.530|221056.103|114.879 +637374.913|221058.093|114.828 +637369.329|221060.074|114.690 +637363.736|221062.055|114.596 +637358.195|221064.043|114.111 +637341.598|221069.998|112.377 +637330.296|221074.013|112.051 +637307.214|221082.169|112.142 +637301.221|221084.248|112.971 +637295.192|221086.330|113.968 +637259.476|221098.817|116.769 +637241.819|221105.054|116.946 +637212.055|221115.545|117.601 +637188.277|221123.976|117.187 +637182.456|221126.070|116.473 +637170.757|221130.279|115.059 +637158.764|221134.540|114.669 +637140.814|221140.919|114.026 +637134.693|221143.074|114.172 +637128.698|221145.202|114.072 +637110.471|221151.661|113.800 +637104.305|221153.831|113.959 +637079.869|221162.481|113.776 +637055.421|221171.165|113.047 +637042.894|221175.554|113.822 +637036.670|221177.752|113.898 +637037.157|221180.406|114.090 +637073.831|221167.474|114.169 +637080.006|221165.313|113.846 +637086.032|221163.185|113.953 +637110.227|221154.645|114.148 +637134.428|221146.104|114.331 +637152.411|221139.758|114.483 +637181.840|221129.270|116.745 +637187.607|221127.203|117.412 +637193.206|221125.161|118.781 +637199.098|221123.076|118.945 +637217.182|221116.767|117.635 +637305.879|221085.748|112.810 +637323.359|221079.624|112.029 +637346.027|221071.605|112.676 +637373.681|221061.741|115.087 +637379.238|221059.782|115.114 +637384.816|221057.806|115.300 +637420.157|221046.483|118.333 +637348.855|221071.949|112.907 +637343.281|221073.936|112.572 +637326.300|221079.972|111.859 +637308.856|221086.101|112.493 +637303.007|221088.165|112.560 +637249.311|221106.898|117.321 +637195.458|221125.817|119.503 +637189.884|221127.871|117.769 +637184.068|221129.965|117.053 +637178.234|221132.056|116.409 +637166.496|221136.265|115.184 +637148.580|221142.636|114.364 +637124.300|221151.213|114.389 +637093.844|221161.987|114.111 +637087.763|221164.145|113.941 +637075.465|221168.486|114.014 +637063.382|221172.817|112.825 +637044.637|221179.385|113.877 +637038.483|221181.559|113.919 +637036.752|221184.744|114.379 +637042.942|221182.570|114.154 +637061.651|221176.045|112.636 +637085.654|221167.492|114.355 +637097.822|221163.197|114.361 +637103.936|221161.052|114.108 +637109.944|221158.918|114.370 +637115.997|221156.778|114.431 +637122.032|221154.642|114.602 +637128.079|221152.514|114.456 +637152.040|221144.031|115.041 +637181.514|221133.531|117.071 +637187.272|221131.465|117.763 +637193.060|221129.395|118.351 +637204.846|221125.219|118.677 +637216.993|221120.986|117.626 +637228.493|221116.886|118.473 +637275.761|221100.290|116.809 +637305.693|221089.914|113.154 +637311.615|221087.854|112.590 +637323.185|221083.788|112.295 +637340.266|221077.750|112.621 +637351.647|221073.732|112.706 +637390.110|221060.007|116.038 +637406.445|221054.182|117.370 +637422.102|221050.174|118.577 +637416.677|221052.110|118.260 +637345.109|221077.704|112.651 +637339.538|221079.691|112.325 +637322.374|221085.772|112.106 +637316.464|221087.835|112.599 +637286.661|221098.226|115.638 +637280.644|221100.317|116.440 +637245.053|221112.838|117.775 +637233.107|221117.032|118.375 +637221.312|221121.226|117.940 +637215.472|221123.311|117.525 +637203.136|221127.594|119.140 +637197.153|221129.700|119.360 +637191.432|221131.779|118.247 +637185.595|221133.872|117.620 +637179.783|221135.966|116.906 +637167.935|221140.206|115.900 +637137.906|221150.862|115.154 +637119.795|221157.293|114.657 +637113.711|221159.454|114.443 +637107.627|221161.603|114.547 +637095.319|221165.953|114.565 +637089.287|221168.105|114.191 +637083.109|221170.290|114.215 +637076.949|221172.454|114.477 +637058.871|221178.962|112.206 +637046.106|221183.378|114.194 +637041.391|221187.844|114.437 +637047.581|221185.670|114.215 +637060.036|221181.324|113.172 +637084.075|221172.765|114.648 +637096.215|221168.477|114.748 +637108.377|221164.194|114.538 +637114.382|221162.060|114.824 +637126.439|221157.784|115.199 +637138.476|221153.523|115.452 +637180.060|221138.761|117.144 +637191.719|221134.583|118.464 +637197.519|221132.510|118.988 +637203.228|221130.450|119.909 +637221.458|221124.110|117.985 +637250.896|221113.722|117.903 +637292.312|221099.235|115.187 +637304.431|221095.044|113.419 +637310.429|221092.971|112.566 +637316.187|221090.935|112.615 +637327.711|221086.875|112.505 +637361.617|221074.845|113.767 +637416.424|221055.289|118.113 +637428.789|221052.387|118.574 +637423.327|221054.326|118.580 +637412.364|221058.236|118.101 +637406.996|221060.163|117.620 +637368.588|221073.933|114.507 +637363.044|221075.921|114.047 +637357.570|221077.896|113.355 +637329.293|221087.982|112.121 +637317.668|221092.087|112.398 +637305.921|221096.211|113.209 +637240.285|221119.239|118.037 +637204.188|221131.946|119.826 +637198.311|221134.052|119.357 +637192.502|221136.149|118.622 +637186.634|221138.252|118.138 +637180.767|221140.368|117.406 +637144.962|221153.139|115.815 +637132.971|221157.409|115.379 +637126.927|221159.558|115.263 +637102.574|221168.208|114.904 +637096.505|221170.369|114.690 +637090.455|221172.527|114.428 +637078.141|221176.880|114.632 +637047.395|221187.795|114.261 +637041.086|221190.023|114.471 +637034.841|221192.224|114.703 +637034.399|221195.272|114.791 +637040.525|221193.120|114.547 +637046.789|221190.922|114.276 +637077.245|221180.135|114.998 +637083.338|221177.980|115.050 +637095.606|221173.661|114.861 +637113.656|221167.257|115.462 +637125.772|221162.975|115.565 +637131.877|221160.826|115.437 +637137.796|221158.714|115.873 +637143.825|221156.574|116.120 +637161.726|221150.216|116.925 +637173.525|221146.019|117.568 +637185.336|221141.816|118.217 +637191.203|221139.722|118.735 +637197.104|221137.618|119.110 +637208.757|221133.473|119.726 +637268.239|221112.597|117.220 +637292.028|221104.295|115.300 +637315.876|221095.992|112.755 +637327.379|221091.929|112.688 +637344.707|221085.821|112.328 +637355.869|221081.837|113.176 +637361.392|221079.859|113.712 +637410.675|221062.232|117.952 +637421.599|221058.343|118.555 +637427.049|221056.404|118.799 +637425.421|221057.986|118.726 +637419.996|221059.925|118.400 +637414.455|221061.897|118.260 +637408.965|221063.857|117.955 +637370.588|221077.625|114.645 +637359.472|221081.617|113.578 +637348.237|221085.629|112.974 +637319.445|221095.833|112.987 +637295.683|221104.148|115.175 +637253.861|221118.834|117.988 +637247.957|221120.915|118.247 +637241.925|221123.040|118.513 +637211.814|221133.638|120.009 +637205.907|221135.750|119.646 +637200.061|221137.841|119.296 +637194.062|221139.978|119.076 +637085.505|221178.636|115.330 +637079.299|221180.842|115.218 +637073.243|221182.997|115.020 +637048.572|221191.772|114.364 +637042.311|221193.979|114.654 +637036.057|221196.198|114.596 +637038.803|221198.505|114.654 +637057.503|221191.967|113.325 +637075.489|221185.518|115.394 +637093.722|221179.077|115.474 +637099.736|221176.944|115.641 +637123.940|221168.379|116.083 +637141.862|221162.015|116.842 +637159.760|221155.660|117.580 +637189.463|221145.114|118.823 +637195.288|221143.038|119.238 +637201.173|221140.950|119.400 +637207.062|221138.850|119.829 +637213.021|221136.753|119.726 +637242.861|221126.274|118.555 +637248.768|221124.192|118.519 +637260.543|221120.053|118.162 +637290.337|221109.650|115.757 +637296.323|221107.568|115.102 +637314.148|221101.366|113.291 +637325.819|221097.272|112.828 +637354.442|221087.162|113.041 +637360.072|221085.156|113.425 +637365.623|221083.178|113.867 +637371.094|221081.212|114.593 +637376.614|221079.246|114.931 +637409.529|221067.499|117.723 +637414.997|221065.551|118.101 +637420.356|221063.637|118.634 +637425.839|221061.696|118.763 +637431.228|221059.772|119.220 +637426.500|221062.552|118.823 +637415.604|221066.445|118.144 +637410.178|221068.380|117.857 +637404.658|221070.346|117.674 +637371.780|221082.151|114.456 +637366.275|221084.132|113.852 +637360.703|221086.122|113.489 +637326.434|221098.287|113.020 +637260.957|221121.232|118.266 +637255.093|221123.305|118.360 +637243.187|221127.514|118.534 +637237.186|221129.621|118.973 +637231.181|221131.739|119.192 +637225.073|221133.869|119.857 +637213.207|221138.076|119.820 +637207.138|221140.225|119.857 +637201.301|221142.309|119.491 +637195.361|221144.425|119.296 +637189.405|221146.552|118.921 +637183.385|221148.677|119.095 +637177.530|221150.789|118.318 +637159.599|221157.174|117.638 +637141.524|221163.615|116.879 +637092.975|221180.885|115.474 +637080.613|221185.256|115.626 +637068.369|221189.611|115.291 +637056.351|221193.952|113.575 +637050.026|221196.165|114.154 +637043.720|221198.374|114.663 +637037.407|221200.599|114.925 +637037.499|221203.992|114.818 +637049.931|221199.639|114.008 +637140.445|221167.501|117.626 +637152.436|221163.261|117.775 +637193.931|221148.524|119.488 +637199.851|221146.421|119.753 +637205.855|221144.306|119.683 +637211.732|221142.218|119.890 +637217.639|221140.130|119.994 +637223.433|221138.067|120.314 +637241.489|221131.757|118.903 +637253.227|221127.618|118.854 +637259.147|221125.542|118.519 +637300.770|221111.006|115.166 +637336.014|221098.680|112.740 +637369.856|221086.665|114.151 +637375.285|221084.717|114.800 +637380.930|221082.721|114.931 +637391.738|221078.832|116.431 +637397.282|221076.860|116.723 +637408.054|221072.998|117.964 +637413.549|221071.047|118.226 +637418.908|221069.130|118.747 +637429.823|221065.247|119.369 +637427.616|221067.432|119.159 +637422.197|221069.377|118.616 +637405.673|221075.265|117.933 +637400.297|221077.210|117.062 +637389.397|221081.121|116.080 +637372.795|221087.076|114.526 +637350.480|221095.068|112.798 +637327.401|221103.228|113.115 +637315.513|221107.388|114.178 +637297.704|221113.634|115.516 +637243.931|221132.522|118.884 +637237.929|221134.625|119.329 +637219.879|221140.990|119.979 +637213.972|221143.090|119.875 +637208.019|221145.205|119.710 +637202.033|221147.326|119.710 +637196.065|221149.445|119.637 +637184.007|221153.721|119.540 +637160.236|221162.201|118.351 +637154.182|221164.365|117.936 +637136.059|221170.805|117.495 +637130.155|221172.933|116.760 +637069.049|221194.634|115.721 +637062.922|221196.823|115.291 +637050.791|221201.176|114.197 +637038.261|221205.583|114.861 +637109.054|221183.637|117.790 +637121.288|221179.324|117.488 +637181.102|221158.083|119.521 +637204.904|221149.658|119.750 +637210.878|221147.543|119.817 +637216.740|221145.458|120.094 +637222.653|221143.376|119.927 +637228.560|221141.279|120.055 +637258.314|221130.818|118.836 +637264.231|221128.743|118.546 +637270.324|221126.621|117.836 +637276.249|221124.543|117.543 +637317.717|221110.043|114.224 +637323.676|221107.958|113.745 +637335.499|221103.831|112.731 +637346.996|221099.777|112.511 +637352.644|221097.769|112.779 +637363.955|221093.745|113.328 +637369.457|221091.770|113.922 +637374.907|221089.807|114.718 +637407.706|221078.064|117.976 +637418.588|221074.174|118.869 +637424.190|221072.196|118.799 +637439.665|221068.718|119.966 +637434.209|221070.654|119.970 +637423.437|221074.531|118.897 +637417.899|221076.500|118.772 +637412.461|221078.448|118.318 +637406.941|221080.426|117.936 +637385.102|221088.274|115.705 +637379.701|221090.225|114.968 +637374.151|221092.212|114.532 +637368.704|221094.181|113.745 +637362.965|221096.214|113.767 +637340.342|221104.279|112.840 +637304.995|221116.706|115.001 +637299.057|221118.788|115.486 +637269.062|221129.288|118.235 +637257.126|221133.495|118.769 +637251.155|221135.598|119.073 +637245.242|221137.689|119.168 +637227.091|221144.059|120.463 +637221.208|221146.168|120.006 +637215.243|221148.290|119.890 +637209.348|221150.384|119.759 +637203.371|221152.505|119.732 +637197.324|221154.648|119.750 +637191.365|221156.763|119.677 +637185.376|221158.897|119.491 +637179.353|221161.033|119.464 +637167.402|221165.288|119.043 +637161.339|221167.440|118.958 +637131.231|221178.166|117.903 +637112.943|221184.649|117.924 +637106.880|221186.807|117.702 +637070.158|221199.892|116.336 +637045.622|221208.640|115.306 +637039.614|221210.829|114.023 +637034.551|221215.690|114.983 +637058.886|221207.031|116.004 +637107.234|221189.831|117.918 +637113.284|221187.691|117.900 +637125.315|221183.418|118.235 +637137.431|221179.129|118.263 +637143.484|221176.987|118.324 +637149.434|221174.868|118.580 +637155.417|221172.744|118.705 +637167.395|221168.480|119.241 +637173.312|221166.379|119.424 +637185.229|221162.146|119.765 +637191.188|221160.034|119.817 +637203.027|221155.833|120.046 +637209.016|221153.715|120.024 +637214.935|221151.621|120.061 +637220.827|221149.527|120.210 +637226.783|221147.424|120.128 +637244.647|221141.133|119.473 +637274.350|221130.700|117.909 +637280.214|221128.639|117.601 +637292.120|221124.460|116.882 +637315.958|221116.145|114.379 +637373.343|221095.852|114.233 +637406.067|221084.102|117.891 +637411.608|221082.126|118.202 +637422.489|221078.234|119.092 +637438.863|221072.403|119.918 +637440.213|221073.513|119.774 +637434.657|221075.482|119.893 +637423.760|221079.383|119.226 +637418.316|221081.328|119.025 +637385.557|221093.130|115.638 +637380.116|221095.093|115.053 +637369.158|221099.049|113.697 +637363.489|221101.076|113.486 +637352.044|221105.142|113.477 +637334.984|221111.226|112.968 +637317.229|221117.462|114.468 +637311.298|221119.538|115.141 +637275.551|221132.120|117.586 +637251.557|221140.557|119.400 +637245.568|221142.675|119.552 +637239.609|221144.778|119.872 +637233.568|221146.918|120.021 +637227.609|221149.030|120.104 +637221.653|221151.139|120.210 +637215.694|221153.264|120.076 +637209.714|221155.388|120.055 +637203.725|221157.516|120.088 +637197.876|221159.619|119.552 +637191.780|221161.771|119.793 +637185.812|221163.892|119.802 +637179.889|221166.017|119.342 +637173.833|221168.163|119.479 +637167.853|221170.296|119.305 +637161.872|221172.442|118.875 +637155.810|221174.597|118.823 +637149.830|221176.727|118.695 +637143.755|221178.898|118.442 +637137.729|221181.046|118.278 +637125.592|221185.366|118.101 +637119.520|221187.517|118.202 +637113.412|221189.703|117.891 +637107.295|221191.873|117.955 +637058.438|221209.326|115.910 +637052.202|221211.533|116.105 +637040.053|221215.922|114.575 +637033.768|221218.129|115.084 +637056.914|221213.614|116.184 +637074.867|221207.162|118.257 +637105.344|221196.378|118.260 +637111.480|221194.214|118.129 +637117.506|221192.077|118.220 +637123.571|221189.931|118.171 +637129.585|221187.795|118.360 +637135.635|221185.652|118.406 +637141.643|221183.512|118.677 +637153.609|221179.269|118.891 +637159.638|221177.124|119.104 +637165.628|221174.999|119.226 +637171.626|221172.884|119.055 +637177.518|221170.772|119.637 +637195.257|221164.447|120.634 +637219.154|221156.007|120.287 +637225.021|221153.931|120.290 +637230.971|221151.828|120.235 +637236.930|221149.725|120.165 +637242.901|221147.628|119.799 +637248.768|221145.562|119.622 +637254.693|221143.471|119.485 +637272.561|221137.201|118.351 +637278.477|221135.122|118.083 +637284.433|221133.031|117.684 +637296.320|221128.880|116.559 +637314.230|221122.625|114.736 +637331.784|221116.444|113.968 +637337.651|221114.384|113.605 +637349.212|221110.299|113.346 +637354.897|221108.278|113.480 +637366.205|221104.249|114.002 +637410.184|221088.466|118.193 +637431.965|221080.679|119.704 +637437.449|221078.731|119.823 +637442.947|221076.780|119.902 +637442.527|221078.015|119.793 +637431.533|221081.928|119.671 +637393.256|221095.678|116.403 +637354.266|221109.668|113.462 +637277.575|221136.695|117.940 +637271.582|221138.795|118.519 +637265.544|221140.916|119.046 +637259.613|221143.017|119.177 +637235.601|221151.493|120.271 +637229.648|221153.602|120.326 +637223.680|221155.730|120.204 +637217.563|221157.879|120.725 +637211.570|221159.991|121.009 +637205.572|221162.131|120.802 +637163.762|221177.051|119.348 +637157.755|221179.199|119.043 +637151.692|221181.354|118.985 +637145.550|221183.521|119.320 +637139.634|221185.655|118.647 +637133.557|221187.822|118.439 +637127.494|221189.974|118.464 +637121.358|221192.163|118.253 +637115.247|221194.336|118.257 +637109.133|221196.506|118.290 +637102.930|221198.701|118.455 +637060.106|221213.992|116.693 +637047.740|221218.406|116.220 +637048.249|221221.844|116.614 +637090.391|221206.781|119.823 +637108.968|221200.276|118.412 +637114.988|221198.143|118.513 +637120.990|221196.009|118.708 +637127.019|221193.872|118.799 +637138.982|221189.605|119.476 +637162.991|221181.086|120.049 +637192.721|221170.503|121.399 +637204.654|221166.291|121.161 +637216.566|221162.067|121.372 +637222.650|221159.945|120.710 +637228.648|221157.839|120.421 +637234.513|221155.763|120.442 +637240.383|221153.685|120.460 +637252.359|221149.475|119.854 +637270.232|221143.199|118.839 +637276.197|221141.115|118.345 +637282.162|221139.027|117.879 +637294.141|221134.848|116.580 +637300.051|221132.778|116.147 +637305.958|221130.709|115.757 +637311.773|221128.663|115.483 +637317.708|221126.585|115.032 +637335.386|221120.391|113.816 +637347.039|221116.298|113.200 +637358.326|221112.268|113.986 +637391.686|221100.351|116.547 +637397.054|221098.409|117.415 +637413.583|221092.517|118.382 +637429.914|221086.680|119.698 +637435.394|221084.726|120.034 +637440.875|221082.782|120.165 +637446.334|221080.852|120.158 +637442.585|221083.416|120.241 +637437.104|221085.379|119.909 +637431.584|221087.339|119.942 +637426.113|221089.301|119.592 +637420.688|221091.252|119.107 +637409.831|221095.166|117.967 +637393.253|221101.116|116.781 +637387.824|221103.078|116.153 +637382.252|221105.075|115.797 +637337.041|221121.251|113.657 +637325.255|221125.393|114.642 +637313.538|221129.532|115.218 +637307.546|221131.638|115.666 +637301.621|221133.723|116.144 +637295.717|221135.814|116.306 +637283.646|221140.039|117.708 +637277.675|221142.139|118.199 +637271.631|221144.260|118.750 +637265.681|221146.354|119.217 +637259.622|221148.488|119.622 +637247.662|221152.715|120.131 +637241.648|221154.840|120.424 +637235.723|221156.946|120.372 +637229.800|221159.055|120.335 +637223.732|221161.198|120.652 +637217.587|221163.350|121.320 +637211.579|221165.480|121.420 +637205.611|221167.602|121.387 +637181.624|221176.142|121.113 +637139.552|221191.160|119.835 +637133.550|221193.318|119.311 +637127.549|221195.461|119.089 +637115.433|221199.792|118.625 +637109.352|221201.956|118.531 +637096.877|221206.342|119.595 +637059.085|221223.417|117.342 +637082.893|221214.840|120.396 +637088.915|221212.694|120.674 +637101.443|221208.323|119.262 +637107.487|221206.183|119.201 +637113.586|221204.025|119.198 +637119.652|221201.883|119.080 +637161.674|221186.932|120.457 +637167.554|221184.820|121.024 +637185.373|221178.477|121.737 +637203.289|221172.134|121.637 +637209.214|221170.025|121.832 +637221.147|221165.806|121.682 +637227.255|221163.679|120.917 +637233.223|221161.585|120.482 +637239.158|221159.482|120.482 +637245.010|221157.406|120.564 +637250.981|221155.309|120.189 +637256.955|221153.209|119.826 +637262.890|221151.115|119.640 +637286.676|221142.773|117.924 +637298.774|221138.569|116.169 +637304.589|221136.512|116.105 +637322.332|221130.297|114.648 +637334.128|221126.158|113.840 +637368.329|221114.015|114.507 +637390.385|221106.114|116.425 +637401.248|221102.198|117.906 +637406.835|221100.213|118.007 +637412.318|221098.260|118.260 +637417.622|221096.342|119.131 +637428.533|221092.441|119.875 +637433.983|221090.502|120.073 +637439.378|221088.576|120.451 +637443.667|221088.625|120.244 +637438.141|221090.585|120.283 +637432.703|221092.526|120.043 +637410.892|221100.372|118.049 +637388.824|221108.297|116.230 +637377.815|221112.265|115.068 +637360.929|221118.300|114.276 +637344.149|221124.347|112.505 +637320.338|221132.693|114.879 +637302.608|221138.938|116.059 +637296.533|221141.069|116.632 +637284.421|221145.296|118.211 +637278.501|221147.384|118.519 +637272.485|221149.500|118.961 +637260.427|221153.745|119.787 +637254.501|221155.846|119.939 +637242.547|221160.079|120.207 +637236.552|221162.198|120.454 +637230.578|221164.322|120.363 +637224.335|221166.492|121.411 +637218.343|221168.608|121.710 +637206.258|221172.887|121.984 +637194.209|221177.169|121.923 +637176.274|221183.567|121.369 +637158.230|221190.002|120.890 +637152.213|221192.150|120.686 +637140.165|221196.445|120.381 +637122.050|221202.928|119.360 +637109.749|221207.290|119.528 +637097.380|221211.658|120.113 +637042.388|221231.369|116.440 +637036.590|221265.095|117.970 +637042.732|221262.904|118.113 +637048.782|221260.721|118.744 +637066.827|221254.217|120.613 +637084.785|221247.737|122.685 +637090.726|221245.594|123.316 +637102.848|221241.266|123.709 +637108.901|221239.108|123.810 +637127.208|221232.625|123.240 +637139.339|221228.312|123.213 +637151.305|221224.045|123.444 +637157.319|221221.899|123.588 +637163.320|221219.768|123.511 +637169.224|221217.650|123.908 +637187.226|221211.252|123.880 +637193.233|221209.116|123.883 +637199.272|221206.985|123.490 +637205.304|221204.858|123.139 +637211.305|221202.730|122.950 +637223.317|221198.487|122.326 +637229.325|221196.360|122.182 +637247.244|221190.020|121.500 +637253.377|221187.889|120.396 +637259.366|221185.783|119.906 +637265.285|221183.686|119.726 +637271.342|221181.565|119.015 +637301.041|221171.101|116.873 +637312.993|221166.910|115.654 +637318.915|221164.825|115.163 +637330.671|221160.686|114.328 +637336.459|221158.625|114.407 +637342.281|221156.568|114.133 +637347.962|221154.538|114.407 +637359.399|221150.472|114.471 +637376.102|221144.467|115.980 +637392.677|221138.505|117.580 +637441.981|221120.815|121.247 +637452.893|221116.926|121.554 +637460.778|221116.164|121.914 +637428.107|221127.901|120.207 +637417.173|221131.836|119.427 +637389.607|221141.761|117.491 +637383.941|221143.779|117.546 +637361.886|221151.776|114.764 +637350.565|221155.836|114.267 +637333.277|221162.006|114.197 +637327.404|221164.087|114.462 +637315.565|221168.266|115.404 +637297.609|221174.585|117.266 +637285.804|221178.782|117.562 +637279.821|221180.897|117.927 +637273.631|221183.049|119.153 +637267.638|221185.164|119.619 +637261.737|221187.264|119.726 +637255.785|221189.383|119.814 +637249.585|221191.529|121.198 +637225.497|221200.072|122.192 +637219.440|221202.215|122.585 +637207.324|221206.510|123.164 +637195.190|221210.801|123.926 +637189.192|221212.944|123.898 +637183.169|221215.087|123.999 +637177.103|221217.248|124.023 +637171.056|221219.406|123.984 +637165.103|221221.551|123.548 +637159.062|221223.706|123.517 +637140.924|221230.183|123.325 +637134.821|221232.360|123.371 +637122.514|221236.734|123.697 +637116.433|221238.901|123.706 +637098.023|221245.466|123.731 +637061.715|221258.588|120.040 +637055.637|221260.791|119.204 +637049.547|221262.983|118.784 +637043.409|221265.196|118.305 +637037.215|221267.412|118.119 +637041.796|221240.891|117.025 +637047.844|221238.727|117.403 +637108.136|221217.141|121.131 +637132.319|221208.552|121.216 +637138.351|221206.406|121.262 +637144.267|221204.291|121.588 +637156.310|221200.002|121.881 +637162.250|221197.881|122.143 +637168.270|221195.747|122.064 +637180.142|221191.513|122.405 +637204.069|221183.012|122.530 +637215.932|221178.812|122.307 +637221.982|221176.679|122.006 +637227.926|221174.573|121.890 +637233.964|221172.451|121.417 +637240.054|221170.333|120.475 +637245.994|221168.224|120.451 +637251.901|221166.133|120.326 +637257.830|221164.039|120.116 +637263.764|221161.939|119.918 +637311.435|221145.208|115.809 +637317.434|221143.111|115.068 +637323.234|221141.063|114.852 +637352.446|221130.760|113.297 +637369.128|221124.759|114.949 +637380.311|221120.754|115.644 +637391.247|221116.804|117.031 +637396.743|221114.835|117.418 +637418.591|221106.977|119.531 +637424.150|221105.002|119.531 +637434.992|221101.106|120.509 +637440.369|221099.177|120.945 +637451.308|221095.279|121.225 +637456.834|221093.316|121.207 +637449.303|221097.543|120.939 +637427.412|221105.395|119.826 +637361.276|221129.236|114.044 +637326.581|221141.581|114.495 +637308.933|221147.817|115.620 +637302.928|221149.932|116.184 +637296.881|221152.051|116.925 +637290.809|221154.172|117.799 +637260.841|221164.749|119.982 +637254.861|221166.873|120.137 +637248.948|221168.973|120.287 +637242.971|221171.095|120.460 +637236.847|221173.253|121.000 +637230.754|221175.389|121.695 +637224.756|221177.523|121.759 +637206.648|221183.939|122.563 +637200.610|221186.088|122.609 +637194.617|221188.215|122.758 +637188.585|221190.364|122.819 +637182.541|221192.522|122.667 +637152.497|221203.260|122.009 +637146.389|221205.440|121.972 +637140.451|221207.579|121.460 +637122.306|221214.066|120.994 +637097.569|221222.838|121.920 +637091.418|221225.026|121.978 +637079.122|221229.415|121.798 +637039.568|221247.304|117.293 +637051.654|221242.961|118.394 +637057.762|221240.775|118.778 +637106.021|221223.493|121.942 +637112.160|221221.323|121.704 +637160.370|221204.166|122.618 +637178.316|221197.780|122.886 +637184.309|221195.649|122.963 +637202.307|221189.273|122.676 +637226.237|221180.812|121.963 +637232.178|221178.706|121.868 +637238.228|221176.581|121.353 +637244.376|221174.441|120.457 +637250.286|221172.351|120.302 +637256.196|221170.260|120.162 +637291.986|221157.680|117.464 +637304.065|221153.471|115.766 +637309.798|221151.435|115.751 +637362.084|221132.955|114.160 +637389.778|221123.003|116.720 +637400.787|221119.053|117.659 +637444.273|221103.466|121.030 +637449.729|221101.518|121.210 +637455.261|221100.738|121.466 +637449.778|221102.694|121.369 +637444.377|221104.639|121.000 +637422.599|221112.466|119.576 +637411.550|221116.435|118.924 +637406.079|221118.419|118.202 +637356.107|221136.421|114.075 +637338.797|221142.584|114.130 +637321.265|221148.796|114.956 +637309.341|221152.999|115.928 +637297.417|221157.196|116.995 +637255.367|221172.034|120.094 +637249.378|221174.158|120.299 +637243.425|221176.276|120.381 +637237.173|221178.440|121.710 +637231.163|221180.577|121.804 +637225.131|221182.717|122.021 +637213.006|221187.002|122.761 +637207.096|221189.121|122.524 +637188.869|221195.582|123.219 +637158.861|221206.302|122.615 +637146.800|221210.624|122.121 +637140.802|221212.773|121.887 +637128.655|221217.114|121.603 +637110.230|221223.661|121.987 +637091.713|221230.238|122.411 +637073.432|221236.810|121.210 +637036.990|221249.980|117.205 +637035.987|221254.083|117.418 +637041.994|221251.928|117.949 +637048.188|221249.718|118.177 +637072.084|221241.101|121.143 +637083.996|221236.810|122.533 +637090.080|221234.640|122.768 +637102.205|221230.333|122.862 +637108.340|221228.169|122.591 +637126.598|221221.719|122.015 +637144.618|221215.306|122.445 +637156.575|221211.033|123.085 +637162.604|221208.902|122.905 +637168.508|221206.787|123.298 +637186.497|221200.401|123.380 +637204.599|221194.016|122.582 +637210.427|221191.934|122.880 +637228.484|221185.570|122.006 +637234.439|221183.464|121.838 +637240.499|221181.342|121.259 +637246.567|221179.227|120.411 +637252.551|221177.115|120.207 +637258.464|221175.036|119.784 +637264.407|221172.927|119.777 +637270.311|221170.851|119.436 +637306.174|221158.290|115.891 +637335.664|221147.924|113.867 +637352.845|221141.813|114.230 +637375.224|221133.796|115.903 +637391.823|221127.847|117.248 +637397.410|221125.853|117.531 +637430.195|221114.088|120.448 +637435.553|221112.165|120.917 +637457.474|221104.362|121.521 +637461.083|221104.331|121.567 +637455.609|221106.285|121.426 +637450.156|221108.239|121.237 +637417.344|221120.022|119.320 +637411.812|221122.007|119.049 +637361.965|221139.990|114.523 +637350.754|221144.044|113.334 +637339.035|221148.186|114.090 +637333.280|221150.249|113.858 +637327.361|221152.340|114.273 +637321.439|221154.431|114.718 +637315.425|221156.534|115.532 +637309.503|221158.634|115.769 +637303.486|221160.750|116.397 +637297.533|221162.841|117.056 +637285.454|221167.087|118.382 +637279.498|221169.199|118.607 +637273.475|221171.320|119.137 +637267.498|221173.436|119.506 +637261.521|221175.560|119.640 +637255.486|221177.694|120.027 +637249.561|221179.794|120.253 +637243.498|221181.943|120.543 +637231.269|221186.240|121.884 +637225.219|221188.383|122.182 +637213.128|221192.662|122.835 +637188.866|221201.273|123.648 +637176.881|221205.549|123.539 +637158.812|221212.014|123.066 +637152.750|221214.184|122.841 +637146.733|221216.336|122.707 +637140.768|221218.479|122.347 +637122.373|221225.029|122.545 +637110.108|221229.394|122.697 +637097.840|221233.756|122.935 +637091.656|221235.962|122.883 +637085.660|221238.117|122.530 +637079.451|221240.339|122.301 +637055.439|221249.057|118.958 +637049.328|221251.266|118.278 +637037.090|221255.671|117.388 +637033.332|221260.538|117.854 +637039.553|221258.341|117.574 +637051.635|221254.001|118.622 +637087.550|221241.050|122.743 +637099.623|221236.731|123.386 +637117.865|221230.266|123.045 +637130.067|221225.953|122.649 +637136.071|221223.813|122.783 +637154.167|221217.379|122.908 +637160.108|221215.245|123.405 +637172.022|221210.999|123.712 +637183.998|221206.738|123.810 +637190.006|221204.620|123.533 +637196.010|221202.483|123.563 +637214.140|221196.082|122.710 +637232.126|221189.733|121.871 +637238.176|221187.609|121.320 +637244.062|221185.524|121.204 +637250.121|221183.396|120.661 +637256.129|221181.290|120.088 +637262.060|221179.193|119.857 +637268.007|221177.093|119.582 +637274.036|221174.978|118.997 +637321.664|221158.257|114.828 +637327.532|221156.184|114.572 +637395.225|221132.004|117.607 +637400.742|221130.032|117.879 +637411.574|221126.124|119.186 +637455.231|221110.506|121.689 +637460.611|221108.586|121.896 +637450.272|221114.356|121.420 +637417.542|221126.118|119.284 +637411.964|221128.121|118.939 +637395.469|221134.071|117.391 +637344.875|221152.243|114.309 +637333.277|221156.370|114.434 +637327.452|221158.439|114.501 +637321.512|221160.533|115.017 +637315.529|221162.643|115.486 +637309.615|221164.727|115.952 +637291.632|221171.064|117.424 +637273.667|221177.401|118.811 +637267.544|221179.550|119.509 +637261.591|221181.656|119.817 +637255.590|221183.784|120.076 +637249.375|221185.954|120.981 +637237.356|221190.203|121.682 +637219.151|221196.646|122.594 +637194.885|221205.242|123.648 +637188.878|221207.384|123.645 +637176.805|221211.685|123.661 +637164.774|221215.989|123.292 +637158.696|221218.147|123.411 +637152.698|221220.296|123.185 +637146.547|221222.490|123.091 +637128.357|221228.979|122.911 +637122.221|221231.156|123.127 +637116.027|221233.353|123.341 +637097.599|221239.916|123.392 +637091.506|221242.095|123.194 +637085.428|221244.287|122.637 +637049.105|221257.426|118.394 +637042.951|221259.639|117.958 +637036.782|221261.852|117.635 +637033.731|221271.962|118.336 +637039.852|221269.774|118.564 +637052.010|221265.418|119.156 +637112.001|221243.838|124.130 +637118.106|221241.671|123.996 +637124.144|221239.529|123.898 +637142.341|221233.064|123.648 +637148.355|221230.918|123.746 +637154.371|221228.772|123.844 +637160.358|221226.645|123.816 +637166.335|221224.514|123.859 +637172.269|221222.393|124.090 +637178.316|221220.238|124.139 +637184.312|221218.104|124.142 +637190.246|221215.992|124.148 +637196.275|221213.849|124.051 +637202.292|221211.722|123.737 +637208.306|221209.609|123.194 +637214.332|221207.467|123.167 +637220.330|221205.351|122.731 +637232.333|221201.118|121.908 +637250.240|221194.787|120.985 +637256.248|221192.662|120.661 +637262.368|221190.532|119.625 +637268.199|221188.462|119.543 +637274.201|221186.350|119.049 +637280.312|221184.216|118.132 +637327.650|221167.535|114.587 +637333.466|221165.477|114.291 +637339.169|221163.441|114.437 +637344.902|221161.399|114.489 +637350.693|221159.348|114.343 +637362.114|221155.279|114.465 +637367.701|221153.270|114.876 +637373.236|221151.274|115.498 +637395.347|221143.315|117.473 +637422.715|221133.476|119.710 +637438.982|221127.627|121.036 +637444.487|221125.658|121.231 +637449.827|221123.735|121.759 +637455.271|221121.787|121.957 +637471.690|221115.950|121.896 +637471.434|221117.672|121.954 +637455.024|221123.540|121.759 +637449.537|221125.500|121.701 +637416.768|221137.323|119.134 +637411.193|221139.319|119.031 +637361.608|221157.287|113.520 +637355.643|221159.381|114.270 +637338.364|221165.550|114.367 +637326.770|221169.693|114.312 +637320.716|221171.811|115.300 +637314.767|221173.917|115.654 +637308.829|221176.011|116.242 +637290.971|221182.339|117.318 +637285.106|221184.427|117.458 +637279.050|221186.557|118.125 +637272.917|221188.703|119.131 +637266.949|221190.815|119.494 +637261.073|221192.928|119.253 +637254.840|221195.095|120.494 +637248.826|221197.225|120.850 +637230.681|221203.654|121.984 +637218.550|221207.945|122.832 +637212.506|221210.088|123.194 +637206.440|221212.243|123.395 +637200.344|221214.404|123.761 +637194.276|221216.559|124.023 +637188.223|221218.711|124.252 +637182.218|221220.853|124.273 +637176.198|221223.011|124.103 +637170.154|221225.172|124.060 +637164.201|221227.303|123.914 +637158.142|221229.464|123.978 +637152.058|221231.643|123.877 +637145.941|221233.823|123.956 +637139.948|221235.972|123.780 +637127.738|221240.324|123.926 +637121.566|221242.522|124.042 +637109.368|221246.868|124.261 +637103.275|221249.054|124.069 +637097.191|221251.236|123.834 +637085.060|221255.613|122.929 +637072.993|221259.990|121.414 +637060.886|221264.373|120.146 +637042.604|221270.972|118.634 +637036.377|221273.197|118.638 +637036.734|221276.854|118.955 +637042.894|221274.663|118.961 +637049.032|221272.474|119.116 +637055.064|221270.313|119.518 +637061.099|221268.134|120.241 +637067.128|221265.973|120.671 +637079.131|221261.636|122.192 +637085.041|221259.499|122.954 +637091.134|221257.314|123.432 +637097.090|221255.171|123.965 +637103.128|221253.019|124.115 +637115.235|221248.706|124.310 +637121.310|221246.545|124.331 +637127.360|221244.402|124.182 +637133.453|221242.238|124.157 +637139.531|221240.089|123.932 +637145.520|221237.950|124.136 +637151.567|221235.804|124.087 +637157.608|221233.658|124.093 +637163.582|221231.531|124.121 +637169.611|221229.385|124.215 +637181.578|221225.127|124.292 +637187.646|221222.972|124.273 +637193.608|221220.860|124.176 +637199.640|221218.732|123.786 +637205.675|221216.592|123.694 +637235.890|221205.958|121.448 +637241.913|221203.836|120.997 +637247.942|221201.703|120.817 +637253.867|221199.609|120.549 +637259.829|221197.509|120.149 +637266.026|221195.357|119.095 +637271.787|221193.299|119.299 +637277.870|221191.175|118.485 +637283.948|221189.063|117.467 +637313.553|221178.614|115.861 +637325.340|221174.475|114.831 +637331.253|221172.390|114.410 +637337.014|221170.333|114.581 +637348.569|221166.233|114.355 +637365.705|221160.122|114.636 +637415.363|221142.245|119.241 +637420.880|221140.267|119.552 +637442.670|221132.437|121.216 +637458.959|221126.609|121.935 +637464.375|221124.668|122.249 +637469.816|221122.732|122.268 +637475.262|221120.793|122.295 +637471.967|221123.281|122.198 +637466.445|221125.250|122.240 +637460.986|221127.207|122.079 +637455.533|221129.163|121.905 +637450.116|221131.111|121.631 +637422.840|221140.938|119.729 +637406.307|221146.884|118.775 +637367.659|221160.875|114.651 +637361.931|221162.926|114.520 +637356.223|221164.962|114.581 +637350.544|221167.001|114.303 +637344.625|221169.095|114.700 +637338.885|221171.147|114.681 +637333.125|221173.210|114.520 +637327.218|221175.301|114.928 +637321.329|221177.386|115.285 +637315.334|221179.501|115.843 +637291.507|221187.935|117.418 +637285.692|221190.011|117.363 +637279.541|221192.160|118.430 +637273.408|221194.314|119.189 +637267.480|221196.430|119.134 +637261.396|221198.563|120.012 +637243.315|221204.970|121.030 +637237.329|221207.092|121.338 +637231.160|221209.268|121.896 +637218.922|221213.578|123.222 +637206.818|221217.869|123.792 +637200.777|221220.021|123.932 +637194.669|221222.195|124.100 +637188.619|221224.343|124.328 +637182.681|221226.474|124.066 +637170.504|221230.808|124.374 +637164.494|221232.960|124.212 +637158.398|221235.139|124.176 +637152.347|221237.294|124.218 +637140.155|221241.647|124.240 +637134.050|221243.823|124.316 +637127.899|221246.018|124.322 +637115.662|221250.383|124.414 +637091.329|221259.112|123.499 +637085.246|221261.307|122.987 +637079.208|221263.495|122.268 +637067.153|221267.869|120.719 +637061.038|221270.082|120.088 +637054.964|221272.273|119.589 +637048.813|221274.489|119.180 +637042.613|221276.708|119.040 +637036.395|221278.930|119.022 +637039.879|221281.180|119.412 +637046.100|221278.970|119.412 +637052.138|221276.809|119.741 +637058.246|221274.623|120.043 +637064.242|221272.465|120.631 +637112.175|221255.253|124.569 +637118.237|221253.098|124.615 +637124.248|221250.962|124.621 +637136.361|221246.661|124.560 +637142.402|221244.518|124.471 +637160.516|221238.084|124.414 +637166.573|221235.935|124.343 +637190.533|221227.422|124.325 +637196.507|221225.307|124.148 +637202.530|221223.173|124.069 +637262.697|221201.989|119.845 +637268.800|221199.865|118.887 +637274.621|221197.786|119.101 +637280.611|221195.677|118.656 +637286.697|221193.565|117.586 +637292.608|221191.480|117.245 +637298.454|221189.407|117.184 +637316.126|221183.177|116.083 +637322.003|221181.107|115.736 +637333.762|221176.959|115.093 +637345.298|221172.872|114.873 +637351.184|221170.796|114.608 +637356.985|221168.745|114.431 +637368.329|221164.697|114.831 +637373.977|221162.694|114.791 +637379.357|221160.728|115.971 +637384.877|221158.738|116.656 +637406.886|221150.822|118.799 +637417.932|221146.875|119.345 +637423.401|221144.912|119.820 +637428.844|221142.953|120.393 +637434.315|221140.999|120.652 +637450.583|221135.171|121.801 +637456.045|221133.226|121.923 +637461.479|221131.297|121.929 +637466.850|221129.368|122.387 +637477.798|221125.478|122.429 +637476.945|221127.167|122.399 +637460.665|221132.982|122.012 +637455.219|221134.930|121.826 +637449.775|221136.878|121.640 +637438.970|221140.779|120.597 +637427.951|221144.729|120.110 +637416.969|221148.683|119.323 +637372.953|221164.584|114.858 +637367.265|221166.614|114.821 +637361.575|221168.653|114.572 +637344.253|221174.816|114.852 +637326.764|221181.025|115.458 +637314.953|221185.207|116.120 +637297.140|221191.516|117.034 +637291.260|221193.604|117.248 +637285.119|221195.747|118.269 +637279.096|221197.865|118.830 +637273.082|221199.999|119.134 +637267.166|221202.099|119.320 +637255.102|221206.360|120.174 +637249.073|221208.491|120.631 +637242.931|221210.661|121.039 +637224.686|221217.086|122.758 +637206.450|221223.539|123.850 +637200.436|221225.681|123.886 +637194.386|221227.827|124.112 +637188.344|221229.973|124.298 +637164.189|221238.581|124.398 +637152.040|221242.909|124.462 +637145.998|221245.076|124.221 +637139.826|221247.258|124.609 +637133.733|221249.428|124.657 +637127.592|221251.617|124.645 +637121.505|221253.784|124.700 +637115.400|221255.970|124.560 +637109.285|221258.152|124.465 +637097.072|221262.532|123.965 +637091.049|221264.702|123.481 +637084.996|221266.887|122.826 +637066.866|221273.447|120.799 +637060.755|221275.654|120.165 +637048.462|221280.061|119.643 +637042.281|221282.274|119.430 +637035.207|221288.504|120.195 +637052.970|221282.185|120.283 +637058.871|221280.085|120.351 +637064.726|221277.988|120.664 +637093.649|221267.570|123.630 +637099.492|221265.473|124.075 +637111.074|221261.334|124.584 +637116.924|221259.246|124.734 +637122.794|221257.158|124.804 +637128.594|221255.092|124.913 +637152.030|221246.771|124.727 +637157.889|221244.692|124.648 +637163.683|221242.634|124.599 +637169.584|221240.547|124.371 +637192.877|221232.274|124.200 +637198.683|221230.211|124.212 +637204.542|221228.138|124.014 +637216.231|221224.005|123.514 +637228.078|221219.845|122.417 +637233.943|221217.790|121.756 +637239.932|221215.690|121.140 +637245.839|221213.614|120.613 +637251.694|221211.560|120.067 +637257.479|221209.512|119.829 +637263.331|221207.442|119.607 +637269.153|221205.391|119.265 +637274.969|221203.349|118.705 +637280.684|221201.310|118.836 +637286.569|221199.255|118.043 +637292.519|221197.177|117.287 +637298.262|221195.144|117.110 +637315.477|221189.063|116.217 +637321.241|221187.024|116.031 +637326.919|221185.009|115.949 +637332.671|221182.979|115.599 +637344.052|221178.953|115.172 +637404.753|221157.226|118.470 +637410.123|221155.291|119.015 +637415.604|221153.337|119.186 +637431.822|221147.521|120.314 +637437.251|221145.583|120.482 +637442.573|221143.666|121.033 +637447.882|221141.761|121.405 +637458.654|221137.908|121.905 +637469.340|221134.092|122.301 +637474.747|221132.166|122.411 +637480.090|221130.261|122.527 +637480.066|221132.391|122.509 +637474.769|221134.302|122.009 +637458.355|221140.151|121.887 +637442.100|221145.988|120.911 +637436.687|221147.936|120.445 +637431.264|221149.887|120.018 +637420.188|221153.855|119.555 +637409.136|221157.824|118.830 +637403.570|221159.823|118.506 +637387.105|221165.767|116.797 +637370.612|221171.753|114.315 +637359.018|221175.859|114.849 +637353.217|221177.916|115.047 +637347.365|221179.992|115.202 +637341.495|221182.074|115.452 +637329.885|221186.195|115.760 +637318.150|221190.355|116.129 +637312.206|221192.455|116.516 +637300.410|221196.634|116.998 +637294.479|221198.740|117.153 +637288.450|221200.849|117.964 +637282.391|221202.977|118.680 +637276.471|221205.089|118.592 +637270.491|221207.198|119.034 +637264.474|221209.326|119.372 +637252.532|221213.560|119.768 +637246.321|221215.730|120.725 +637240.325|221217.848|121.085 +637203.642|221230.775|124.048 +637197.616|221232.917|124.157 +637191.514|221235.082|124.340 +637179.377|221239.385|124.752 +637173.367|221241.534|124.587 +637167.243|221243.713|124.666 +637161.193|221245.865|124.712 +637155.078|221248.039|124.798 +637148.986|221250.209|124.785 +637130.719|221256.713|124.849 +637124.571|221258.902|124.886 +637118.524|221261.060|124.758 +637112.416|221263.242|124.639 +637106.252|221265.443|124.496 +637100.211|221267.613|124.090 +637094.192|221269.783|123.578 +637076.041|221276.336|121.609 +637070.036|221278.516|120.735 +637063.824|221280.735|120.622 +637057.670|221282.929|120.558 +637051.449|221285.160|120.210 +637056.314|221286.837|120.732 +637068.515|221282.481|121.100 +637074.541|221280.320|121.530 +637080.539|221278.159|122.118 +637086.538|221275.998|122.707 +637110.462|221267.406|124.602 +637116.479|221265.257|124.846 +637122.538|221263.099|124.898 +637128.506|221260.968|125.115 +637152.664|221252.394|124.761 +637164.716|221248.106|124.849 +637170.745|221245.972|124.606 +637176.683|221243.854|124.804 +637182.648|221241.729|124.895 +637194.693|221237.471|124.343 +637206.693|221233.216|124.075 +637212.725|221231.089|123.688 +637218.706|221228.970|123.560 +637249.076|221218.327|120.140 +637255.068|221216.224|119.561 +637261.049|221214.108|119.326 +637267.007|221212.008|118.930 +637272.924|221209.914|118.747 +637278.834|221207.832|118.333 +637284.643|221205.754|118.616 +637290.639|221203.654|117.897 +637296.649|221201.550|117.162 +637302.520|221199.472|117.004 +637308.439|221197.384|116.672 +637314.282|221195.320|116.406 +637320.088|221193.260|116.297 +637325.883|221191.202|116.266 +637331.802|221189.124|115.772 +637337.529|221187.088|115.779 +637343.332|221185.024|115.760 +637349.121|221182.976|115.574 +637360.798|221178.858|114.895 +637366.500|221176.834|114.849 +637372.371|221174.777|114.200 +637410.693|221160.942|118.973 +637416.271|221158.945|119.275 +637449.031|221147.195|121.686 +637459.916|221143.312|122.033 +637470.904|221139.405|122.094 +637481.773|221135.531|122.387 +637485.181|221136.323|122.585 +637458.081|221146.019|122.057 +637452.652|221147.966|121.847 +637425.501|221157.744|119.869 +637420.020|221159.720|119.454 +637414.552|221161.689|119.019 +637387.081|221171.607|116.501 +637381.567|221173.606|115.812 +637376.102|221175.594|114.959 +637370.670|221177.578|113.995 +637364.775|221179.657|114.511 +637358.902|221181.720|115.218 +637353.123|221183.774|115.343 +637347.292|221185.838|115.684 +637341.434|221187.920|115.910 +637318.177|221196.195|116.318 +637312.328|221198.283|116.355 +637306.412|221200.377|116.675 +637294.494|221204.580|117.720 +637288.438|221206.708|118.409 +637282.510|221208.814|118.610 +637276.648|221210.908|118.567 +637270.653|221213.035|118.814 +637264.673|221215.160|119.040 +637258.729|221217.263|119.378 +637246.653|221221.536|120.143 +637240.535|221223.676|121.024 +637234.427|221225.828|121.628 +637228.337|221227.974|122.195 +637209.958|221234.451|123.935 +637203.993|221236.572|124.054 +637197.882|221238.742|124.264 +637191.807|221240.906|124.343 +637179.761|221245.189|124.670 +637173.714|221247.344|124.685 +637167.648|221249.502|124.804 +637155.408|221253.860|125.035 +637125.004|221264.705|125.017 +637118.893|221266.891|124.913 +637112.806|221269.070|124.715 +637100.626|221273.444|124.066 +637088.565|221277.802|122.883 +637082.490|221279.991|122.356 +637076.434|221282.179|121.765 +637064.239|221286.562|121.042 +637058.048|221288.778|120.853 +637051.824|221290.997|120.881 +637059.987|221291.662|121.173 +637090.238|221280.817|122.999 +637102.199|221276.513|124.081 +637114.193|221272.218|124.727 +637126.223|221267.915|125.252 +637132.292|221265.754|125.273 +637144.261|221261.483|125.581 +637150.357|221259.331|125.246 +637156.383|221257.186|125.249 +637162.430|221255.040|125.179 +637168.432|221252.909|125.038 +637180.474|221248.630|124.938 +637192.526|221244.360|124.593 +637204.542|221240.102|124.212 +637228.770|221231.570|122.316 +637234.860|221229.431|121.753 +637240.904|221227.309|121.149 +637246.936|221225.188|120.631 +637252.980|221223.060|120.073 +637258.930|221220.963|119.680 +637264.892|221218.863|119.244 +637270.927|221216.736|118.805 +637276.846|221214.639|118.604 +637282.753|221212.557|118.202 +637288.560|221210.478|118.506 +637294.449|221208.396|118.223 +637306.369|221204.217|116.909 +637312.270|221202.130|116.653 +637323.929|221197.990|116.504 +637329.732|221195.939|116.184 +637335.459|221193.894|116.428 +637341.330|221191.818|116.138 +637352.943|221187.712|115.617 +637376.224|221179.501|114.126 +637436.355|221157.824|120.555 +637463.515|221148.091|122.185 +637468.944|221146.159|122.204 +637474.455|221144.199|122.185 +637479.816|221142.282|122.457 +637480.197|221143.751|122.560 +637469.465|221147.616|121.847 +637463.912|221149.591|122.024 +637447.489|221155.474|121.637 +637420.170|221165.331|119.406 +637414.638|221167.315|119.189 +637392.853|221175.228|116.284 +637387.169|221177.261|116.205 +637381.734|221179.245|115.233 +637376.202|221181.248|114.623 +637364.583|221185.369|115.269 +637358.777|221187.441|115.248 +637352.912|221189.514|115.705 +637341.293|221193.635|116.263 +637329.647|221197.795|116.269 +637323.798|221199.871|116.519 +637312.109|221204.041|116.550 +637306.165|221206.144|116.986 +637300.151|221208.256|117.720 +637294.125|221210.384|118.281 +637288.200|221212.490|118.455 +637282.314|221214.590|118.497 +637276.334|221216.717|118.668 +637270.415|221218.820|118.878 +637264.359|221220.957|119.421 +637258.360|221223.085|119.741 +637252.368|221225.209|120.064 +637246.266|221227.361|120.597 +637240.161|221229.513|121.164 +637234.174|221231.634|121.533 +637228.011|221233.807|122.134 +637203.642|221242.415|124.133 +637197.595|221244.561|124.368 +637191.487|221246.731|124.593 +637185.452|221248.877|124.804 +637179.359|221251.041|125.023 +637173.306|221253.199|125.069 +637167.277|221255.354|125.035 +637161.190|221257.515|125.276 +637155.127|221259.685|125.139 +637149.071|221261.840|125.291 +637136.845|221266.205|125.291 +637130.774|221268.372|125.261 +637124.714|221270.539|125.209 +637118.618|221272.721|125.035 +637112.592|221274.898|124.538 +637100.452|221279.253|124.014 +637088.385|221283.630|122.533 +637070.048|221290.217|121.615 +637063.903|221292.415|121.518 +637051.513|221296.834|121.585 +637045.289|221302.955|122.024 +637057.646|221298.581|121.774 +637063.711|221296.423|121.963 +637069.838|221294.256|121.829 +637075.974|221292.070|122.003 +637082.024|221289.909|122.307 +637106.124|221281.286|123.886 +637112.089|221279.147|124.380 +637124.086|221274.858|125.069 +637130.057|221272.731|125.258 +637136.099|221270.579|125.428 +637142.103|221268.445|125.486 +637148.211|221266.284|125.386 +637154.231|221264.147|125.410 +637160.181|221262.032|125.480 +637166.320|221259.865|125.297 +637172.321|221257.740|125.163 +637178.329|221255.613|125.035 +637184.419|221253.461|124.849 +637190.454|221251.330|124.639 +637196.464|221249.203|124.557 +637202.499|221247.069|124.392 +637214.588|221242.820|123.469 +637238.917|221234.289|121.301 +637244.861|221232.198|120.860 +637250.877|221230.086|120.415 +637256.882|221227.971|120.040 +637262.768|221225.889|119.918 +637274.816|221221.661|118.857 +637280.726|221219.573|118.711 +637286.640|221217.495|118.293 +637292.449|221215.431|118.327 +637298.304|221213.361|118.199 +637304.281|221211.267|117.598 +637310.286|221209.167|116.915 +637316.102|221207.110|116.739 +637321.981|221205.028|116.595 +637327.900|221202.953|116.071 +637333.551|221200.923|116.592 +637339.263|221198.893|116.650 +637356.841|221192.693|115.748 +637368.347|221188.624|115.474 +637385.300|221182.583|115.961 +637390.912|221180.577|116.303 +637396.414|221178.599|116.818 +637423.800|221168.757|119.506 +637440.277|221162.874|120.232 +637445.563|221160.957|121.131 +637451.006|221159.009|121.509 +637472.714|221151.261|122.438 +637483.513|221147.418|122.725 +637488.777|221145.519|123.341 +637476.305|221151.353|122.359 +637470.904|221153.282|122.231 +637465.457|221155.233|122.064 +637459.958|221157.205|121.844 +637448.982|221161.137|121.396 +637438.083|221165.066|120.509 +637432.703|221167.007|119.957 +637421.709|221170.961|119.241 +637394.146|221180.912|116.541 +637388.605|221182.903|116.181 +637383.042|221184.911|115.675 +637377.345|221186.954|115.446 +637371.627|221188.987|115.544 +637365.888|221191.035|115.501 +637360.151|221193.083|115.455 +637354.284|221195.140|116.175 +637348.389|221197.225|116.531 +637342.561|221199.298|116.650 +637336.810|221201.355|116.492 +637325.304|221205.470|116.245 +637319.311|221207.579|116.830 +637307.396|221211.783|117.805 +637301.462|221213.889|117.982 +637295.500|221216.001|118.287 +637289.672|221218.089|118.068 +637283.701|221220.201|118.452 +637277.691|221222.329|118.753 +637271.643|221224.462|119.226 +637259.610|221228.717|120.003 +637253.538|221230.863|120.396 +637247.555|221232.981|120.710 +637241.508|221235.121|121.036 +637235.336|221237.294|121.655 +637210.927|221245.899|123.743 +637204.831|221248.054|124.167 +637192.691|221252.364|124.557 +637186.601|221254.525|124.734 +637180.575|221256.664|124.938 +637174.488|221258.826|125.142 +637168.368|221261.002|125.236 +637162.302|221263.157|125.389 +637156.185|221265.333|125.502 +637150.107|221267.503|125.468 +637144.090|221269.646|125.447 +637137.961|221271.834|125.389 +637131.898|221273.998|125.328 +637107.530|221282.731|124.295 +637101.543|221284.898|123.615 +637095.417|221287.093|123.338 +637077.135|221293.667|122.115 +637052.385|221302.510|121.686 +637036.203|221312.272|122.295 +637048.468|221307.917|122.441 +637060.859|221303.546|121.978 +637066.939|221301.385|122.057 +637085.243|221294.877|122.417 +637091.198|221292.732|123.219 +637115.201|221284.154|124.633 +637121.240|221282.009|124.770 +637133.224|221277.726|125.523 +637139.238|221275.596|125.508 +637145.243|221273.462|125.547 +637151.329|221271.307|125.532 +637157.267|221269.195|125.633 +637163.387|221267.034|125.493 +637169.407|221264.909|125.255 +637175.436|221262.785|125.002 +637181.486|221260.639|124.947 +637187.518|221258.512|124.724 +637193.535|221256.384|124.581 +637199.555|221254.257|124.450 +637205.624|221252.120|124.121 +637211.616|221250.008|123.868 +637229.782|221243.631|122.438 +637235.863|221241.501|121.908 +637241.986|221239.361|121.219 +637247.939|221237.273|120.728 +637253.980|221235.142|120.436 +637259.848|221233.067|120.369 +637277.800|221226.760|119.070 +637283.759|221224.666|118.708 +637289.651|221222.594|118.372 +637295.537|221220.506|118.345 +637301.398|221218.436|118.177 +637307.406|221216.339|117.455 +637313.288|221214.276|116.992 +637325.154|221210.100|116.263 +637336.581|221206.037|116.562 +637353.894|221199.898|116.611 +637365.604|221195.796|115.519 +637371.316|221193.763|115.666 +637377.001|221191.736|115.928 +637393.923|221185.710|116.574 +637486.513|221152.578|123.450 +637491.950|221150.649|123.478 +637493.361|221151.569|123.484 +637487.927|221153.505|123.435 +637482.501|221155.440|123.377 +637444.752|221169.022|120.588 +637422.593|221176.959|119.753 +637384.014|221190.879|115.961 +637366.894|221196.994|115.696 +637355.134|221201.148|116.495 +637337.825|221207.317|116.473 +637332.030|221209.378|116.516 +637326.267|221211.447|116.196 +637314.440|221215.623|117.053 +637308.472|221217.735|117.345 +637302.450|221219.845|118.138 +637296.533|221221.948|118.275 +637290.632|221224.045|118.357 +637284.616|221226.175|118.677 +637278.660|221228.278|119.037 +637260.482|221234.691|120.491 +637254.605|221236.791|120.338 +637248.515|221238.937|120.835 +637236.381|221243.223|121.731 +637211.942|221251.836|123.716 +637205.825|221253.994|124.246 +637199.814|221256.131|124.325 +637193.709|221258.295|124.566 +637187.686|221260.435|124.734 +637181.605|221262.593|124.907 +637175.506|221264.754|125.182 +637169.450|221266.906|125.297 +637163.308|221269.085|125.514 +637157.182|221271.258|125.703 +637151.119|221273.422|125.599 +637145.035|221275.590|125.605 +637138.970|221277.754|125.569 +637132.849|221279.936|125.493 +637096.474|221292.978|123.694 +637090.327|221295.191|123.225 +637078.147|221299.568|122.411 +637071.920|221301.784|122.420 +637065.821|221303.973|122.106 +637059.572|221306.192|122.265 +637053.318|221308.410|122.478 +637059.493|221310.410|122.594 +637065.717|221308.221|122.234 +637077.900|221303.881|122.649 +637083.953|221301.723|122.932 +637096.029|221297.410|123.685 +637101.976|221295.277|124.221 +637120.164|221288.818|124.490 +637132.069|221284.545|125.624 +637138.065|221282.417|125.688 +637144.127|221280.265|125.761 +637150.141|221278.132|125.785 +637156.157|221275.998|125.794 +637162.208|221273.858|125.681 +637168.234|221271.734|125.401 +637174.290|221269.591|125.297 +637180.310|221267.467|125.093 +637186.333|221265.342|124.907 +637192.353|221263.215|124.740 +637198.369|221261.087|124.624 +637204.444|221258.950|124.249 +637210.479|221256.832|123.807 +637216.447|221254.723|123.679 +637240.715|221246.210|121.676 +637246.741|221244.098|121.143 +637252.755|221241.985|120.683 +637258.714|221239.882|120.485 +637276.499|221233.609|119.863 +637282.592|221231.479|119.201 +637288.566|221229.379|118.778 +637294.458|221227.306|118.455 +637300.325|221225.236|118.260 +637306.235|221223.146|118.165 +637312.270|221221.042|117.333 +637341.370|221210.768|116.483 +637358.576|221204.650|116.909 +637370.326|221200.542|115.666 +637375.949|221198.539|115.894 +637387.312|221194.497|116.211 +637392.890|221192.501|116.653 +637398.465|221190.514|116.882 +637404.021|221188.520|117.427 +637453.231|221170.897|121.466 +637490.950|221157.424|123.789 +637489.332|221160.171|123.722 +637446.148|221175.670|120.738 +637435.087|221179.617|120.466 +637429.585|221181.589|120.134 +637402.150|221191.483|117.239 +637396.645|221193.473|116.510 +637385.398|221197.500|115.974 +637379.683|221199.527|116.059 +637368.168|221203.620|116.132 +637356.488|221207.741|116.897 +637344.908|221211.859|116.864 +637339.120|221213.919|116.864 +637333.375|221215.967|116.729 +637315.654|221222.246|117.287 +637309.597|221224.359|118.199 +637303.736|221226.447|118.107 +637297.841|221228.541|118.159 +637291.824|221230.656|118.717 +637285.878|221232.756|119.028 +637279.788|221234.893|119.689 +637273.811|221236.996|120.162 +637261.838|221241.242|120.475 +637255.907|221243.348|120.558 +637249.814|221245.490|121.082 +637243.711|221247.633|121.676 +637237.606|221249.776|122.304 +637231.535|221251.925|122.545 +637219.343|221256.213|123.572 +637213.301|221258.356|123.749 +637207.157|221260.523|124.112 +637201.070|221262.669|124.551 +637194.971|221264.827|124.758 +637188.887|221266.985|124.935 +637182.794|221269.140|125.160 +637176.722|221271.292|125.322 +637170.626|221273.462|125.325 +637164.518|221275.617|125.700 +637158.422|221277.784|125.749 +637152.329|221279.948|125.785 +637146.248|221282.109|125.800 +637140.116|221284.292|125.773 +637134.069|221286.447|125.657 +637127.945|221288.626|125.633 +637121.916|221290.793|125.154 +637109.761|221295.152|124.398 +637103.686|221297.322|124.191 +637085.416|221303.878|122.917 +637079.272|221306.067|122.819 +637073.093|221308.276|122.566 +637060.670|221312.684|122.832 +637042.083|221319.304|122.621 +637035.859|221321.529|122.377 +637039.291|221324.294|122.783 +637070.024|221313.400|122.899 +637076.193|221311.215|122.865 +637082.298|221309.051|122.844 +637088.263|221306.905|123.603 +637100.327|221302.607|124.093 +637106.405|221300.428|124.609 +637112.437|221298.285|124.731 +637118.542|221296.133|124.511 +637124.434|221294.006|125.371 +637130.426|221291.863|125.739 +637136.431|221289.723|126.062 +637142.490|221287.586|125.822 +637148.522|221285.438|126.050 +637154.551|221283.304|126.011 +637160.589|221281.167|125.938 +637166.697|221279.006|125.846 +637172.751|221276.879|125.450 +637178.795|221274.739|125.410 +637184.815|221272.615|125.215 +637190.835|221270.490|125.051 +637196.925|221268.338|124.865 +637202.996|221266.205|124.502 +637209.034|221264.086|124.026 +637215.094|221261.953|123.764 +637221.053|221259.844|123.694 +637227.021|221257.731|123.591 +637257.306|221247.121|120.988 +637281.156|221238.724|119.753 +637287.146|221236.627|119.262 +637293.089|221234.533|118.970 +637299.024|221232.451|118.488 +637304.925|221230.375|118.165 +637310.780|221228.306|118.037 +637316.864|221226.197|117.031 +637322.688|221224.133|117.059 +637334.359|221220.006|116.864 +637340.123|221217.961|116.943 +637345.929|221215.907|116.867 +637351.547|221213.898|117.293 +637363.071|221209.826|117.086 +637369.033|221207.741|116.504 +637375.026|221205.659|115.586 +637380.585|221203.669|116.059 +637397.499|221197.646|116.711 +637403.064|221195.665|116.973 +637419.310|221189.794|119.473 +637446.837|221179.971|121.082 +637490.060|221164.542|123.746 +637495.465|221162.621|123.883 +637500.896|221160.692|123.938 +637501.350|221162.911|124.057 +637495.940|221164.843|123.950 +637490.588|221166.764|123.658 +637485.254|221168.678|123.310 +637474.513|221172.527|122.688 +637447.385|221182.257|121.052 +637397.974|221200.033|116.842 +637381.088|221206.074|116.150 +637375.510|221208.076|115.754 +637363.522|221212.264|117.424 +637357.765|221214.309|117.525 +637352.089|221216.336|117.321 +637346.423|221218.375|116.854 +637340.611|221220.436|116.967 +637334.786|221222.512|116.885 +637323.152|221226.648|116.986 +637317.092|221228.763|117.903 +637311.167|221230.863|118.049 +637305.421|221232.920|117.757 +637299.310|221235.051|118.686 +637293.385|221237.151|118.897 +637287.289|221239.288|119.579 +637281.333|221241.391|119.951 +637275.313|221243.512|120.357 +637269.248|221245.655|120.713 +637263.301|221247.764|120.860 +637257.278|221249.883|121.353 +637251.261|221252.013|121.573 +637245.229|221254.147|121.871 +637226.923|221260.581|123.572 +637220.912|221262.718|123.603 +637214.829|221264.879|123.703 +637208.751|221267.022|124.072 +637202.679|221269.167|124.438 +637196.531|221271.331|124.889 +637190.509|221273.465|125.078 +637184.355|221275.644|125.319 +637178.286|221277.796|125.477 +637172.245|221279.942|125.529 +637166.088|221282.118|125.855 +637159.995|221284.282|125.892 +637147.791|221288.614|126.133 +637141.783|221290.766|125.816 +637135.632|221292.951|125.919 +637129.567|221295.121|125.617 +637123.471|221297.297|125.486 +637105.256|221303.820|124.487 +637086.986|221310.376|123.261 +637074.645|221314.778|123.033 +637062.157|221319.207|123.359 +637049.764|221323.620|123.243 +637043.558|221325.842|122.902 +637037.441|221328.037|122.426 +637038.389|221332.020|122.950 +637044.558|221329.826|123.139 +637075.166|221318.957|123.603 +637087.449|221314.607|123.499 +637099.489|221310.297|124.404 +637117.500|221303.881|125.163 +637123.486|221301.741|125.529 +637135.477|221297.459|126.224 +637141.561|221295.307|126.163 +637147.562|221293.177|126.206 +637159.647|221288.906|125.971 +637165.658|221286.773|126.029 +637171.730|221284.630|125.822 +637177.838|221282.481|125.462 +637183.870|221280.357|125.203 +637189.871|221278.235|125.081 +637195.971|221276.083|124.840 +637201.954|221273.977|124.578 +637208.013|221271.844|124.276 +637214.060|221269.710|124.048 +637220.053|221267.598|123.798 +637226.097|221265.476|123.359 +637244.211|221259.118|121.963 +637250.192|221257.003|121.890 +637256.147|221254.903|121.667 +637262.115|221252.800|121.411 +637291.900|221242.324|119.640 +637297.826|221240.248|119.168 +637303.763|221238.166|118.665 +637309.765|221236.072|117.943 +637315.556|221234.015|118.080 +637321.551|221231.921|117.415 +637327.410|221229.860|117.077 +637333.274|221227.800|116.720 +637338.989|221225.764|116.982 +637344.765|221223.716|117.013 +637356.113|221219.665|117.665 +637373.611|221213.517|116.586 +637379.457|221211.463|116.227 +637402.068|221203.425|116.848 +637412.986|221199.499|118.180 +637445.822|221187.731|121.177 +637456.770|221183.832|121.646 +637462.168|221181.906|121.945 +637467.584|221179.967|122.414 +637472.989|221178.038|122.701 +637489.140|221172.274|123.655 +637499.906|221168.443|124.057 +637505.407|221166.504|123.895 +637502.777|221169.571|124.051 +637491.999|221173.423|123.682 +637486.699|221175.331|123.222 +637475.808|221179.224|122.871 +637470.431|221181.156|122.481 +637464.997|221183.110|122.079 +637459.647|221185.033|121.612 +637404.728|221204.775|117.370 +637382.259|221212.837|115.989 +637376.400|221214.904|116.406 +637370.527|221216.958|117.132 +637364.608|221219.034|117.824 +637358.850|221221.088|117.680 +637353.138|221223.124|117.610 +637347.533|221225.151|116.900 +637341.687|221227.221|117.144 +637335.862|221229.296|117.065 +637330.058|221231.369|116.925 +637324.252|221233.430|117.059 +637318.168|221235.548|118.074 +637312.282|221237.642|118.055 +637306.281|221239.757|118.531 +637300.325|221241.848|119.104 +637294.257|221243.985|119.637 +637282.220|221248.221|120.625 +637264.270|221254.570|121.463 +637258.269|221256.698|121.594 +637252.267|221258.829|121.737 +637246.281|221260.953|121.847 +637233.991|221265.260|123.219 +637215.776|221271.700|124.100 +637209.720|221273.843|124.374 +637203.673|221275.983|124.630 +637197.562|221278.144|124.919 +637191.456|221280.305|125.203 +637185.379|221282.457|125.371 +637179.289|221284.615|125.627 +637173.214|221286.767|125.837 +637167.100|221288.934|125.944 +637160.967|221291.107|126.178 +637154.865|221293.271|126.273 +637148.787|221295.435|126.285 +637136.598|221299.775|126.212 +637124.458|221304.119|125.660 +637118.414|221306.286|125.273 +637100.096|221312.839|124.517 +637087.803|221317.237|123.969 +637075.434|221321.642|123.898 +637069.277|221323.830|123.914 +637050.639|221330.475|123.624 +637044.494|221332.676|123.316 +637049.444|221335.614|123.459 +637055.558|221333.444|123.633 +637067.872|221329.076|123.923 +637073.995|221326.915|123.761 +637092.357|221320.404|124.127 +637098.450|221318.231|124.538 +637116.634|221311.775|125.041 +637122.626|221309.627|125.715 +637128.628|221307.490|126.017 +637140.683|221303.208|126.410 +637146.687|221301.080|126.450 +637152.866|221298.904|126.267 +637158.870|221296.776|126.334 +637164.936|221294.643|126.126 +637170.992|221292.506|125.986 +637177.073|221290.366|125.764 +637183.099|221288.245|125.505 +637189.183|221286.102|125.307 +637195.205|221283.981|125.121 +637201.222|221281.859|124.987 +637207.263|221279.735|124.752 +637213.323|221277.604|124.471 +637225.417|221273.358|123.789 +637231.373|221271.255|123.755 +637237.524|221269.106|123.149 +637243.556|221267.000|122.542 +637249.603|221264.879|122.182 +637255.623|221262.760|121.948 +637261.533|221260.670|121.929 +637267.510|221258.569|121.658 +637285.372|221252.284|120.988 +637291.297|221250.212|120.482 +637303.367|221246.003|119.180 +637309.390|221243.899|118.616 +637315.373|221241.812|117.970 +637321.164|221239.757|118.129 +637333.024|221235.609|117.129 +637338.779|221233.567|117.229 +637344.558|221231.521|117.242 +637350.410|221229.464|116.998 +637356.058|221227.440|117.552 +637367.415|221223.402|117.982 +637379.162|221219.293|116.998 +637385.023|221217.248|116.342 +637396.328|221213.233|116.656 +637401.940|221211.234|116.976 +637445.959|221195.497|120.594 +637462.293|221189.660|121.850 +637467.780|221187.709|122.082 +637478.457|221183.884|123.127 +637483.873|221181.967|123.185 +637489.295|221180.035|123.456 +637494.614|221178.126|124.087 +637500.015|221176.209|124.234 +637505.435|221174.298|124.109 +637505.493|221175.874|124.103 +637500.034|221177.809|124.148 +637494.611|221179.739|124.081 +637489.347|221181.638|123.499 +637483.913|221183.579|123.283 +637467.743|221189.386|122.012 +637462.345|221191.318|121.722 +637456.886|221193.281|121.195 +637445.910|221197.210|120.613 +637423.629|221205.162|119.842 +637407.203|221211.106|117.546 +637401.653|221213.102|116.989 +637396.072|221215.105|116.559 +637384.709|221219.159|116.248 +637378.753|221221.241|117.025 +637349.892|221231.494|117.007 +637344.034|221233.564|117.290 +637338.200|221235.639|117.257 +637332.442|221237.688|117.174 +637326.285|221239.827|118.199 +637320.488|221241.894|118.071 +637314.681|221243.960|117.988 +637308.570|221246.088|118.906 +637302.556|221248.200|119.445 +637296.472|221250.322|120.308 +637290.526|221252.419|120.637 +637266.498|221260.901|121.826 +637254.471|221265.156|122.204 +637248.494|221267.278|122.271 +637230.233|221273.697|123.758 +637224.049|221275.870|124.267 +637217.971|221278.013|124.627 +637211.970|221280.143|124.648 +637205.864|221282.301|124.886 +637199.826|221284.435|125.112 +637193.742|221286.590|125.300 +637187.668|221288.739|125.456 +637181.596|221290.887|125.617 +637175.384|221293.085|125.877 +637169.322|221295.231|126.047 +637163.192|221297.398|126.255 +637157.072|221299.562|126.447 +637151.019|221301.720|126.322 +637132.615|221308.240|126.681 +637120.557|221312.568|125.745 +637102.263|221319.106|124.865 +637096.221|221321.270|124.526 +637090.010|221323.480|124.441 +637077.476|221327.893|125.261 +637071.520|221330.060|124.188 +637065.315|221332.267|124.139 +637052.915|221336.693|123.697 +637046.746|221338.894|123.499 +637035.786|221347.529|122.286 +637041.839|221345.352|123.103 +637047.926|221343.188|123.399 +637060.090|221338.863|124.075 +637066.253|221336.675|124.328 +637090.622|221328.034|125.014 +637096.746|221325.879|124.901 +637102.766|221323.730|125.358 +637108.852|221321.575|125.468 +637114.842|221319.447|125.782 +637120.923|221317.292|125.959 +637126.881|221315.165|126.443 +637132.889|221313.031|126.709 +637151.113|221306.600|126.602 +637157.118|221304.475|126.642 +637163.171|221302.348|126.456 +637169.307|221300.193|126.212 +637175.363|221298.059|126.072 +637181.413|221295.929|125.962 +637187.430|221293.814|125.758 +637193.441|221291.698|125.593 +637199.525|221289.559|125.401 +637205.563|221287.437|125.154 +637211.540|221285.337|124.913 +637217.560|221283.216|124.795 +637223.604|221281.091|124.587 +637235.701|221276.864|123.652 +637241.752|221274.748|123.200 +637247.768|221272.648|122.652 +637253.773|221270.536|122.457 +637259.735|221268.430|122.472 +637265.648|221266.357|122.158 +637289.410|221258.009|121.213 +637295.491|221255.890|120.588 +637307.482|221251.715|119.329 +637313.435|221249.639|118.784 +637319.625|221247.508|117.559 +637325.243|221245.500|118.150 +637331.067|221243.439|118.193 +637337.078|221241.360|117.272 +637342.897|221239.300|117.373 +637348.712|221237.255|117.260 +637354.488|221235.213|117.306 +637360.063|221233.216|117.900 +637371.484|221229.165|118.336 +637377.351|221227.114|117.869 +637383.222|221225.075|117.162 +637394.777|221221.015|116.754 +637406.103|221217.004|117.028 +637422.386|221211.146|119.387 +637444.654|221203.248|120.213 +637450.046|221201.322|120.725 +637455.508|221199.368|121.225 +637460.937|221197.433|121.631 +637466.387|221195.494|121.981 +637471.803|221193.571|122.231 +637487.963|221187.804|123.563 +637493.459|221185.862|123.591 +637504.212|221182.046|124.048 +637509.629|221180.129|124.164 +637512.945|221180.662|124.578 +637502.198|221184.497|124.100 +637491.353|221188.362|123.776 +637464.308|221198.057|121.740 +637458.840|221200.008|121.487 +637447.971|221203.910|120.549 +637386.565|221225.867|117.065 +637374.751|221230.001|118.302 +637357.545|221236.127|117.869 +637351.943|221238.148|117.165 +637346.082|221240.227|117.214 +637340.211|221242.305|117.324 +637328.345|221246.466|118.351 +637322.545|221248.542|117.997 +637316.541|221250.651|118.458 +637310.563|221252.742|119.116 +637304.495|221254.860|119.896 +637298.438|221256.985|120.393 +637286.344|221261.218|121.649 +637268.403|221267.558|122.225 +637262.478|221269.658|122.320 +637256.431|221271.786|122.682 +637250.505|221273.895|122.527 +637226.140|221282.451|124.529 +637220.028|221284.609|124.755 +637213.999|221286.739|124.913 +637207.977|221288.870|125.066 +637201.893|221291.019|125.246 +637195.818|221293.167|125.392 +637189.725|221295.319|125.651 +637183.654|221297.465|125.831 +637177.576|221299.611|126.056 +637171.391|221301.796|126.215 +637165.350|221303.936|126.315 +637159.227|221306.097|126.538 +637153.085|221308.276|126.553 +637146.998|221310.431|126.639 +637128.637|221316.951|126.568 +637122.596|221319.112|126.184 +637110.462|221323.455|125.401 +637104.363|221325.620|125.364 +637098.157|221327.829|125.249 +637092.101|221329.987|125.017 +637055.101|221343.170|123.850 +637048.938|221345.368|123.627 +637065.748|221344.185|124.587 +637071.816|221342.021|125.029 +637096.191|221333.401|125.361 +637102.305|221331.231|125.645 +637120.496|221324.790|126.029 +637126.430|221322.669|126.639 +637132.444|221320.520|127.181 +637138.436|221318.405|127.199 +637144.575|221316.256|126.843 +637150.653|221314.110|126.791 +637156.666|221311.989|126.770 +637162.775|221309.840|126.632 +637168.846|221307.709|126.370 +637174.976|221305.554|126.169 +637181.032|221303.424|126.032 +637187.040|221301.312|125.843 +637193.124|221299.175|125.627 +637199.198|221297.038|125.462 +637205.218|221294.920|125.294 +637211.244|221292.802|125.108 +637217.279|221290.683|124.910 +637223.226|221288.586|124.846 +637229.252|221286.465|124.731 +637241.331|221282.240|123.880 +637253.468|221278.004|122.883 +637259.384|221275.919|122.798 +637265.389|221273.806|122.630 +637271.311|221271.722|122.569 +637295.119|221263.382|121.198 +637301.090|221261.294|120.771 +637313.154|221257.106|119.229 +637319.177|221255.006|118.677 +637325.105|221252.946|117.994 +637330.851|221250.904|118.333 +637342.689|221246.768|117.431 +637348.481|221244.725|117.394 +637354.281|221242.683|117.333 +637359.880|221240.672|118.061 +637365.656|221238.632|118.129 +637377.028|221234.603|118.506 +637388.851|221230.488|117.254 +637394.588|221228.473|117.065 +637400.449|221226.434|116.446 +637405.990|221224.453|117.013 +637433.654|221214.587|119.262 +637444.563|221210.694|120.244 +637466.368|221202.922|121.926 +637471.815|221200.983|122.271 +637477.204|221199.069|122.606 +637487.924|221195.244|123.511 +637509.440|221187.618|124.325 +637515.392|221187.734|124.758 +637499.238|221193.482|124.167 +637493.870|221195.406|123.719 +637488.351|221197.366|123.578 +637483.026|221199.280|123.005 +637477.692|221201.194|122.487 +637472.242|221203.138|122.140 +637461.293|221207.052|121.430 +637450.235|221211.002|120.695 +637444.734|221212.965|120.366 +637439.354|221214.907|119.610 +637428.305|221218.863|118.708 +637411.751|221224.813|116.900 +637406.018|221226.837|117.022 +637400.385|221228.842|116.797 +637394.621|221230.881|116.836 +637388.748|221232.942|117.299 +637382.771|221235.018|118.171 +637371.179|221239.111|118.375 +637365.452|221241.153|118.125 +637354.119|221245.210|117.193 +637348.289|221247.267|117.385 +637342.452|221249.334|117.357 +637330.497|221253.528|118.238 +637324.791|221255.570|117.751 +637318.665|221257.695|118.723 +637312.615|221259.807|119.400 +637300.523|221264.022|120.826 +637294.430|221266.162|121.231 +637282.442|221270.365|122.118 +637276.438|221272.487|122.234 +637270.357|221274.620|122.694 +637264.392|221276.720|122.957 +637258.446|221278.830|122.899 +637252.386|221280.966|123.057 +637246.318|221283.091|123.560 +637240.231|221285.233|123.898 +637234.101|221287.379|124.441 +637228.106|221289.488|124.700 +637222.022|221291.637|124.807 +637215.993|221293.765|124.968 +637209.961|221295.892|125.172 +637203.874|221298.041|125.361 +637197.799|221300.184|125.511 +637191.719|221302.330|125.718 +637185.589|221304.491|125.864 +637179.487|221306.637|126.227 +637173.379|221308.795|126.319 +637167.328|221310.931|126.477 +637161.232|221313.086|126.565 +637155.045|221315.265|126.812 +637148.943|221317.417|126.971 +637142.804|221319.591|127.029 +637136.641|221321.764|127.218 +637130.563|221323.925|127.001 +637124.541|221326.080|126.538 +637106.207|221332.602|125.916 +637081.634|221341.335|125.252 +637050.879|221352.302|123.682 +637052.446|221356.197|123.752 +637076.827|221347.529|125.240 +637082.981|221345.358|125.261 +637095.149|221341.042|125.733 +637101.263|221338.875|126.011 +637125.534|221330.286|126.599 +637131.545|221328.140|127.145 +637137.562|221326.010|127.376 +637143.618|221323.870|127.416 +637149.717|221321.727|127.266 +637155.844|221319.578|126.998 +637161.985|221317.426|126.681 +637168.017|221315.302|126.620 +637174.156|221313.147|126.367 +637180.221|221311.017|126.194 +637186.226|221308.907|126.017 +637192.362|221306.752|125.852 +637198.409|221304.634|125.532 +637204.414|221302.522|125.419 +637210.494|221300.382|125.276 +637216.514|221298.267|125.157 +637222.534|221296.148|125.038 +637228.581|221294.027|124.831 +637234.577|221291.924|124.593 +637246.695|221287.681|123.892 +637252.779|221285.563|123.328 +637258.787|221283.453|123.130 +637264.813|221281.341|122.868 +637270.729|221279.256|122.829 +637276.694|221277.162|122.591 +637282.689|221275.065|122.268 +637288.624|221272.987|121.935 +637294.610|221270.899|121.423 +637300.596|221268.799|121.192 +637318.714|221262.514|118.951 +637324.697|221260.435|118.318 +637330.537|221258.377|118.272 +637336.285|221256.335|118.607 +637348.185|221252.193|117.495 +637353.967|221250.154|117.498 +637359.642|221248.133|117.930 +637365.360|221246.103|118.220 +637371.103|221244.067|118.418 +637376.754|221242.061|118.747 +637388.425|221237.980|118.040 +637400.102|221233.905|117.165 +637405.792|221231.899|117.184 +637411.425|221229.900|117.427 +637433.538|221222.006|119.579 +637439.061|221220.049|119.820 +637444.557|221218.083|120.399 +637460.989|221212.240|121.463 +637466.426|221210.307|121.829 +637471.861|221208.372|122.222 +637477.286|221206.439|122.661 +637482.724|221204.504|123.066 +637493.453|221200.682|123.956 +637509.690|221194.936|124.459 +637507.705|221198.216|124.487 +637491.563|221203.971|123.755 +637486.168|221205.909|123.197 +637480.764|221207.838|122.929 +637469.904|221211.734|121.902 +637459.013|221215.626|121.262 +637453.509|221217.589|120.933 +637442.518|221221.527|120.034 +637420.426|221229.452|118.049 +637414.903|221231.439|117.412 +637403.634|221235.453|116.973 +637397.773|221237.511|117.373 +637385.965|221241.638|118.570 +637380.226|221243.671|118.583 +637374.447|221245.710|118.769 +637368.668|221247.770|118.467 +637363.010|221249.788|118.226 +637357.362|221251.815|117.696 +637351.529|221253.885|117.659 +637345.756|221255.942|117.403 +637339.489|221258.082|119.101 +637333.850|221260.115|118.357 +637327.977|221262.200|118.296 +637322.039|221264.294|118.510 +637315.937|221266.412|119.409 +637297.777|221272.752|121.430 +637291.788|221274.861|121.710 +637279.678|221279.107|122.621 +637273.701|221281.222|122.658 +637267.711|221283.341|122.761 +637261.704|221285.459|122.966 +637255.702|221287.577|123.170 +637249.582|221289.723|123.630 +637243.492|221291.863|123.975 +637237.390|221294.006|124.417 +637231.312|221296.142|124.758 +637225.256|221298.276|125.038 +637213.116|221302.567|125.203 +637207.068|221304.710|125.227 +637201.055|221306.832|125.401 +637194.898|221309.002|125.660 +637188.762|221311.166|125.852 +637182.672|221313.309|126.154 +637176.546|221315.470|126.358 +637170.428|221317.631|126.529 +637164.265|221319.807|126.642 +637158.142|221321.965|126.898 +637151.979|221324.141|127.065 +637145.797|221326.318|127.337 +637139.729|221328.466|127.391 +637133.572|221330.652|127.269 +637127.543|221332.810|126.846 +637109.154|221339.351|126.224 +637103.009|221341.533|126.136 +637084.499|221348.111|125.700 +637041.565|221363.479|122.259 +637045.201|221366.640|122.536 +637051.285|221364.460|123.200 +637057.305|221362.305|123.880 +637069.408|221357.986|124.913 +637075.626|221355.795|124.877 +637081.625|221353.655|125.386 +637087.669|221351.494|125.983 +637093.774|221349.342|125.931 +637099.894|221347.172|126.154 +637111.986|221342.893|126.443 +637118.033|221340.744|126.767 +637130.112|221336.461|127.202 +637136.117|221334.331|127.474 +637142.179|221332.191|127.468 +637148.269|221330.048|127.334 +637154.399|221327.902|127.044 +637160.483|221325.757|126.986 +637166.545|221323.629|126.754 +637172.565|221321.508|126.760 +637178.603|221319.380|126.681 +637184.708|221317.244|126.312 +637202.853|221310.864|125.846 +637208.879|221308.749|125.654 +637233.037|221300.263|124.810 +637239.033|221298.160|124.569 +637245.059|221296.051|124.221 +637251.103|221293.939|123.807 +637257.168|221291.820|123.335 +637269.123|221287.623|122.935 +637275.051|221285.535|122.841 +637281.040|221283.438|122.509 +637287.066|221281.335|122.045 +637293.001|221279.256|121.725 +637299.042|221277.159|120.991 +637334.819|221264.659|118.452 +637340.589|221262.623|118.446 +637346.603|221260.535|117.763 +637352.400|221258.493|117.690 +637358.128|221256.463|117.900 +637363.769|221254.449|118.467 +637369.460|221252.422|118.848 +637380.975|221248.359|118.903 +637386.727|221246.332|118.857 +637392.652|221244.274|118.180 +637398.489|221242.241|117.613 +637404.293|221240.205|117.434 +637426.805|221232.226|118.266 +637437.751|221228.294|119.765 +637443.331|221226.312|120.034 +637454.271|221222.414|120.917 +637459.815|221220.451|121.116 +637465.198|221218.525|121.655 +637481.532|221212.703|122.944 +637503.185|221205.016|124.063 +637513.945|221201.191|124.712 +637515.743|221202.782|124.746 +637488.747|221212.407|123.517 +637483.398|221214.325|123.048 +637467.133|221220.149|121.789 +637461.690|221222.106|121.237 +637456.075|221224.093|121.301 +637450.531|221226.078|120.899 +637445.121|221228.025|120.265 +637439.589|221230.004|119.842 +637434.145|221231.970|119.116 +637428.536|221233.963|118.991 +637417.448|221237.934|118.086 +637400.461|221243.982|117.531 +637394.606|221246.024|118.171 +637388.659|221248.109|118.702 +637382.853|221250.151|118.964 +637377.092|221252.190|119.086 +637371.402|221254.223|118.692 +637365.647|221256.268|118.570 +637359.999|221258.295|118.052 +637354.229|221260.353|117.757 +637348.410|221262.419|117.671 +637342.543|221264.480|118.061 +637336.551|221266.586|118.452 +637330.732|221268.661|118.171 +637324.642|221270.768|119.253 +637288.499|221283.438|122.109 +637276.465|221287.672|122.749 +637270.506|221289.784|122.713 +637258.391|221294.048|123.304 +637252.307|221296.176|123.877 +637246.229|221298.315|124.182 +637240.142|221300.455|124.538 +637234.101|221302.586|124.718 +637185.318|221319.786|126.480 +637166.972|221326.263|126.971 +637160.848|221328.436|126.922 +637154.749|221330.588|127.074 +637148.583|221332.764|127.266 +637142.356|221334.959|127.477 +637136.248|221337.126|127.437 +637130.173|221339.287|127.233 +637117.920|221343.652|126.779 +637105.631|221348.013|126.572 +637099.458|221350.211|126.312 +637093.347|221352.387|126.081 +637087.190|221354.585|125.770 +637081.039|221356.779|125.444 +637074.898|221358.971|125.078 +637068.707|221361.168|124.999 +637062.553|221363.378|124.389 +637056.491|221365.561|123.624 +637050.352|221367.767|122.947 +637044.274|221369.953|122.280 +637038.090|221372.178|121.509 +637038.849|221376.658|121.579 +637044.930|221374.485|122.277 +637051.023|221372.309|122.893 +637057.113|221370.133|123.545 +637063.132|221367.978|124.246 +637081.341|221361.485|125.901 +637087.458|221359.318|126.111 +637093.561|221357.154|126.401 +637105.698|221352.863|126.745 +637130.018|221344.267|127.385 +637136.089|221342.115|127.620 +637142.146|221339.982|127.650 +637148.239|221337.842|127.501 +637154.329|221335.702|127.401 +637160.422|221333.560|127.300 +637178.582|221327.171|127.099 +637221.013|221312.300|125.502 +637239.121|221305.957|124.727 +637245.138|221303.854|124.417 +637251.146|221301.748|124.161 +637257.269|221299.626|123.426 +637263.316|221297.514|123.051 +637275.216|221293.329|122.935 +637281.187|221291.238|122.676 +637293.260|221287.032|121.689 +637311.173|221280.783|120.396 +637317.242|221278.671|119.875 +637329.040|221274.544|119.235 +637335.045|221272.462|118.537 +637340.833|221270.414|118.705 +637346.899|221268.320|117.802 +637358.377|221264.260|118.104 +637369.795|221260.209|118.720 +637375.449|221258.204|118.997 +637381.128|221256.192|119.208 +637392.811|221252.102|118.689 +637398.767|221250.038|117.909 +637404.411|221248.042|118.074 +637410.212|221246.018|117.677 +637415.814|221244.027|118.025 +637432.801|221238.032|118.269 +637438.238|221236.078|119.034 +637454.661|221230.211|120.759 +637465.725|221226.279|121.475 +637471.117|221224.353|121.993 +637476.555|221222.420|122.374 +637481.947|221220.494|122.911 +637487.378|221218.561|123.328 +637514.347|221208.985|124.913 +637530.623|221203.239|125.169 +637514.036|221210.990|124.977 +637487.104|221220.600|123.313 +637481.700|221222.536|122.813 +637476.280|221224.474|122.368 +637470.852|221226.416|121.969 +637465.381|221228.373|121.506 +637448.922|221234.265|120.104 +637437.906|221238.203|119.299 +637409.928|221248.185|117.571 +637392.296|221254.357|119.006 +637386.471|221256.402|119.326 +637375.001|221260.471|119.092 +637369.277|221262.511|118.842 +637363.565|221264.544|118.558 +637357.908|221266.570|118.061 +637352.144|221268.625|117.751 +637346.289|221270.691|117.821 +637340.254|221272.788|118.616 +637334.438|221274.861|118.302 +637328.309|221276.986|119.278 +637322.365|221279.076|119.525 +637316.370|221281.173|120.006 +637298.362|221287.492|121.146 +637292.272|221289.613|121.847 +637280.086|221293.878|122.832 +637274.131|221295.975|123.042 +637268.230|221298.075|122.780 +637262.173|221300.211|122.914 +637249.890|221304.491|124.289 +637237.689|221308.782|124.840 +637213.338|221317.356|125.721 +637188.975|221325.940|126.419 +637182.840|221328.101|126.648 +637176.713|221330.259|126.846 +637170.541|221332.435|126.989 +637164.360|221334.611|127.190 +637158.242|221336.766|127.422 +637152.088|221338.936|127.547 +637145.953|221341.106|127.599 +637139.750|221343.295|127.696 +637133.654|221345.459|127.586 +637127.512|221347.638|127.404 +637121.413|221349.815|127.029 +637108.987|221354.204|127.175 +637102.872|221356.380|126.940 +637096.700|221358.575|126.666 +637090.540|221360.769|126.367 +637084.371|221362.964|126.130 +637053.702|221373.958|123.091 +637047.542|221376.165|122.536 +637041.400|221378.368|121.856 +637035.249|221380.572|121.256 +637037.252|221384.483|121.186 +637043.302|221382.315|122.027 +637055.503|221377.972|123.164 +637067.555|221373.653|124.816 +637079.723|221369.325|125.861 +637085.782|221367.170|126.355 +637104.018|221360.714|127.266 +637110.151|221358.550|127.428 +637116.274|221356.401|127.324 +637122.346|221354.259|127.519 +637128.433|221352.113|127.641 +637140.637|221347.812|127.800 +637146.709|221345.681|127.733 +637152.780|221343.548|127.690 +637158.885|221341.408|127.519 +637164.933|221339.293|127.318 +637171.117|221337.129|127.114 +637177.149|221335.010|127.038 +637183.221|221332.886|126.806 +637189.366|221330.737|126.547 +637195.379|221328.634|126.331 +637201.460|221326.506|126.114 +637207.516|221324.379|126.041 +637213.585|221322.264|125.639 +637219.672|221320.133|125.462 +637225.689|221318.024|125.340 +637237.756|221313.796|125.008 +637243.745|221311.699|124.798 +637249.774|221309.596|124.423 +637255.836|221307.475|124.209 +637261.902|221305.381|123.453 +637273.884|221301.178|123.197 +637279.833|221299.096|123.011 +637285.878|221296.996|122.451 +637291.934|221294.896|121.850 +637297.999|221292.792|121.250 +637303.974|221290.714|120.777 +637309.926|221288.638|120.430 +637315.870|221286.562|120.131 +637321.817|221284.484|119.848 +637333.801|221280.323|118.726 +637339.660|221278.269|118.604 +637345.524|221276.211|118.488 +637351.425|221274.160|117.991 +637357.231|221272.112|118.144 +637368.573|221268.082|119.031 +637374.306|221266.055|119.250 +637379.933|221264.056|119.659 +637385.776|221262.011|119.488 +637397.374|221257.951|119.070 +637403.317|221255.896|118.348 +637409.121|221253.876|117.930 +637437.202|221243.933|119.284 +637442.853|221241.949|119.293 +637459.337|221236.078|120.823 +637475.689|221230.263|122.225 +637481.105|221228.336|122.682 +637486.531|221226.407|123.112 +637491.868|221224.505|123.639 +637497.312|221222.573|124.039 +637508.184|221218.729|124.478 +637518.989|221214.907|124.965 +637529.794|221211.091|125.300 +637535.208|221209.192|125.230 +637527.328|221213.709|124.974 +637516.493|221217.546|124.801 +637500.158|221223.347|124.249 +637494.767|221225.270|123.908 +637489.469|221227.172|123.255 +637484.050|221229.110|122.816 +637478.621|221231.049|122.417 +637473.153|221232.994|122.158 +637462.253|221236.895|121.100 +637456.718|221238.873|120.664 +637451.265|221240.824|120.171 +637445.785|221242.790|119.561 +637440.332|221244.750|118.857 +637394.646|221260.874|119.384 +637388.793|221262.931|119.570 +637377.327|221266.994|119.345 +637371.630|221269.024|119.000 +637360.112|221273.118|118.574 +637354.391|221275.148|118.360 +637348.624|221277.199|118.083 +637342.577|221279.308|118.686 +637336.852|221281.350|118.284 +637318.793|221287.650|119.960 +637312.840|221289.738|120.299 +637306.817|221291.848|120.680 +637300.849|221293.951|120.872 +637282.592|221300.312|122.771 +637264.523|221306.658|123.545 +637252.374|221310.913|124.365 +637246.272|221313.050|124.785 +637240.243|221315.174|124.898 +637228.106|221319.444|125.279 +637215.969|221323.711|125.761 +637209.872|221325.854|126.014 +637203.743|221328.012|126.142 +637197.662|221330.152|126.370 +637191.551|221332.304|126.456 +637185.452|221334.443|126.828 +637179.264|221336.620|127.020 +637173.171|221338.769|127.093 +637166.975|221340.945|127.394 +637160.879|221343.094|127.522 +637154.716|221345.264|127.693 +637148.525|221347.449|127.715 +637142.374|221349.616|127.879 +637130.146|221353.951|127.559 +637123.967|221356.133|127.608 +637117.829|221358.309|127.455 +637111.641|221360.489|127.596 +637105.469|221362.683|127.330 +637099.334|221364.856|127.224 +637080.927|221371.419|125.980 +637074.831|221373.604|125.380 +637068.652|221375.814|124.901 +637062.632|221377.990|123.886 +637056.479|221380.197|123.280 +637050.386|221382.379|122.701 +637037.590|221391.639|121.585 +637043.689|221389.469|122.118 +637049.788|221387.296|122.664 +637055.896|221385.123|123.164 +637061.986|221382.953|123.780 +637074.056|221378.633|125.304 +637080.140|221376.460|125.980 +637110.535|221365.692|127.614 +637116.616|221363.546|127.718 +637122.709|221361.400|127.772 +637128.750|221359.260|128.096 +637140.969|221354.960|128.117 +637153.122|221350.695|127.928 +637159.215|221348.559|127.766 +637165.311|221346.422|127.635 +637171.425|221344.282|127.419 +637177.536|221342.140|127.242 +637183.593|221340.018|127.059 +637189.652|221337.897|126.867 +637195.739|221335.769|126.578 +637201.823|221333.642|126.337 +637207.812|221331.539|126.251 +637213.935|221329.402|125.855 +637226.027|221325.162|125.575 +637232.041|221323.053|125.459 +637238.091|221320.938|125.209 +637244.096|221318.841|124.901 +637268.278|221310.404|123.444 +637274.179|221308.328|123.426 +637280.175|221306.240|123.008 +637304.281|221297.852|121.097 +637322.085|221291.643|119.994 +637328.147|221289.546|119.244 +637333.987|221287.498|119.153 +637339.946|221285.428|118.601 +637345.692|221283.392|118.933 +637351.629|221281.323|118.522 +637357.433|221279.290|118.406 +637363.074|221277.281|118.930 +637380.244|221271.210|119.668 +637385.922|221269.204|119.857 +637391.677|221267.186|119.787 +637409.246|221261.069|118.522 +637420.663|221257.061|118.403 +637432.054|221253.068|118.208 +637443.130|221249.124|119.214 +637448.586|221247.185|119.677 +637464.951|221241.351|121.372 +637470.395|221239.422|121.698 +637475.863|221237.477|122.173 +637481.258|221235.557|122.691 +637486.708|221233.625|123.024 +637492.093|221231.704|123.588 +637497.458|221229.799|124.011 +637535.796|221218.689|125.489 +637514.115|221226.373|124.959 +637497.866|221232.158|123.941 +637492.456|221234.094|123.459 +637486.994|221236.048|122.926 +637481.563|221237.983|122.539 +637470.562|221241.903|121.811 +637465.149|221243.845|121.167 +637459.593|221245.826|120.799 +637454.188|221247.764|120.137 +637448.696|221249.730|119.570 +637443.100|221251.727|119.153 +637432.011|221255.689|118.208 +637409.060|221263.785|118.372 +637403.238|221265.815|118.903 +637397.319|221267.872|119.561 +637391.461|221269.929|119.781 +637385.608|221271.984|119.994 +637379.915|221274.014|119.616 +637374.209|221276.044|119.311 +637362.672|221280.134|118.967 +637356.945|221282.176|118.522 +637351.120|221284.234|118.488 +637345.189|221286.309|118.887 +637339.443|221288.367|118.299 +637333.308|221290.482|119.317 +637327.404|221292.564|119.412 +637321.381|221294.661|120.006 +637303.352|221300.976|121.009 +637279.056|221309.447|123.231 +637272.985|221311.580|123.426 +637242.730|221322.191|124.868 +637236.704|221324.312|125.008 +637230.648|221326.436|125.304 +637224.573|221328.576|125.410 +637218.480|221330.716|125.624 +637212.369|221332.859|125.947 +637206.230|221335.017|126.126 +637200.094|221337.159|126.605 +637194.002|221339.311|126.626 +637187.915|221341.445|126.934 +637181.794|221343.597|127.111 +637175.604|221345.770|127.358 +637169.496|221347.919|127.541 +637163.339|221350.086|127.650 +637157.163|221352.253|127.903 +637151.025|221354.417|127.980 +637144.807|221356.602|128.163 +637132.590|221360.934|127.803 +637120.264|221365.289|127.754 +637114.101|221367.463|127.763 +637107.978|221369.633|127.568 +637083.411|221378.365|126.379 +637077.284|221380.566|125.599 +637059.011|221387.122|123.411 +637052.845|221389.323|122.886 +637046.688|221391.523|122.326 +637040.525|221393.724|121.798 +637034.411|221395.922|121.000 +637043.092|221397.168|122.018 +637049.200|221394.995|122.518 +637055.390|221392.798|122.908 +637061.419|221390.646|123.511 +637067.479|221388.475|124.310 +637073.511|221386.305|125.267 +637079.631|221384.126|125.752 +637085.630|221381.977|126.565 +637097.840|221377.655|127.041 +637110.011|221373.336|127.782 +637116.082|221371.190|127.922 +637122.163|221369.044|128.028 +637128.247|221366.899|128.144 +637152.695|221358.291|128.181 +637158.815|221356.151|127.885 +637164.927|221354.012|127.672 +637171.007|221351.872|127.605 +637177.167|221349.708|127.498 +637183.273|221347.580|127.062 +637189.396|221345.435|126.876 +637195.471|221343.307|126.642 +637201.548|221341.180|126.404 +637207.708|221339.025|126.114 +637213.728|221336.915|125.904 +637219.818|221334.785|125.681 +637225.884|221332.651|125.599 +637231.934|221330.536|125.328 +637237.990|221328.418|125.032 +637244.083|221326.281|124.898 +637286.262|221311.541|122.685 +637298.457|221307.310|121.396 +637304.431|221305.231|120.899 +637322.371|221298.959|120.006 +637328.306|221296.883|119.759 +637334.207|221294.822|119.421 +637340.373|221292.707|118.293 +637346.015|221290.683|119.031 +637351.879|221288.629|118.906 +637357.722|221286.575|118.881 +637363.486|221284.535|119.189 +637374.901|221280.494|119.765 +637380.631|221278.470|119.997 +637386.364|221276.443|120.232 +637392.201|221274.398|120.076 +637398.023|221272.368|119.759 +637403.939|221270.320|119.119 +637409.825|221268.274|118.607 +637415.677|221266.235|118.241 +637432.670|221260.243|118.622 +637443.889|221256.277|119.107 +637449.424|221254.311|119.518 +637465.789|221248.478|121.216 +637471.279|221246.527|121.603 +637476.753|221244.582|122.060 +637487.585|221240.720|123.176 +637493.035|221238.788|123.527 +637498.391|221236.886|123.987 +637509.293|221233.027|124.505 +637514.707|221231.110|124.804 +637533.190|221227.157|125.840 +637522.260|221231.022|125.776 +637516.993|221232.920|124.999 +637511.598|221234.844|124.654 +637500.741|221238.709|124.008 +637495.257|221240.656|123.780 +637489.856|221242.589|123.286 +637473.555|221248.423|121.743 +637468.005|221250.404|121.353 +637462.500|221252.373|120.808 +637451.552|221256.305|119.549 +637446.032|221258.274|119.095 +637429.131|221264.269|118.586 +637417.676|221268.314|118.607 +637406.100|221272.389|118.918 +637400.135|221274.456|119.774 +637394.237|221276.519|120.146 +637388.458|221278.552|120.338 +637382.688|221280.594|120.274 +637376.940|221282.643|119.893 +637353.808|221290.857|119.025 +637347.901|221292.939|119.076 +637342.098|221295.005|118.753 +637336.103|221297.102|119.201 +637330.113|221299.196|119.656 +637324.121|221301.299|119.881 +637306.101|221307.618|120.863 +637300.063|221309.724|121.375 +637287.853|221313.982|122.499 +637281.680|221316.119|123.386 +637275.655|221318.234|123.685 +637245.400|221328.860|124.901 +637239.371|221330.984|125.057 +637233.269|221333.127|125.285 +637227.216|221335.248|125.590 +637221.089|221337.409|125.678 +637214.990|221339.549|125.959 +637208.925|221341.686|126.114 +637202.789|221343.844|126.312 +637196.635|221346.002|126.617 +637184.367|221350.308|127.117 +637178.216|221352.463|127.492 +637172.059|221354.633|127.599 +637165.890|221356.801|127.806 +637159.736|221358.968|127.952 +637153.506|221361.156|128.181 +637128.899|221369.852|128.074 +637122.779|221372.010|128.184 +637116.582|221374.205|128.056 +637110.462|221376.375|127.861 +637104.347|221378.560|127.318 +637085.843|221385.129|126.657 +637079.793|221387.305|125.819 +637073.630|221389.512|125.261 +637067.595|221391.685|124.337 +637061.486|221393.886|123.469 +637055.396|221396.065|122.874 +637043.034|221400.469|122.039 +637036.624|221407.245|121.676 +637042.753|221405.072|122.027 +637067.147|221396.379|124.258 +637073.212|221394.209|125.017 +637085.255|221389.887|126.712 +637091.390|221387.726|126.767 +637097.526|221385.562|126.846 +637103.595|221383.407|127.294 +637109.621|221381.267|127.647 +637115.665|221379.112|128.263 +637121.825|221376.942|128.272 +637127.927|221374.796|128.272 +637140.052|221370.523|128.412 +637146.145|221368.374|128.516 +637152.244|221366.237|128.300 +637158.398|221364.079|128.141 +637164.494|221361.943|127.977 +637170.596|221359.803|127.794 +637176.698|221357.663|127.657 +637182.773|221355.542|127.355 +637194.989|221351.268|126.809 +637201.061|221349.141|126.596 +637207.199|221346.992|126.383 +637213.219|221344.886|126.151 +637219.315|221342.752|125.898 +637225.399|221340.619|125.718 +637231.434|221338.506|125.489 +637237.478|221336.391|125.249 +637243.577|221334.255|125.066 +637249.533|221332.164|124.974 +637285.814|221319.502|122.795 +637303.986|221313.187|121.213 +637321.990|221306.908|120.018 +637327.861|221304.841|120.030 +637333.795|221302.766|119.799 +637339.757|221300.684|119.473 +637345.689|221298.617|119.046 +637351.398|221296.584|119.509 +637357.295|221294.524|119.253 +637363.111|221292.472|119.336 +637380.253|221286.389|120.375 +637397.553|221280.296|120.442 +637409.419|221276.190|119.006 +637493.038|221246.545|123.450 +637498.421|221244.634|123.801 +637503.865|221242.702|124.182 +637536.207|221231.229|126.026 +637541.645|221229.312|126.075 +637547.177|221227.388|125.614 +637545.888|221229.821|125.685 +637534.997|221233.661|125.870 +637524.104|221237.511|125.928 +637502.569|221245.219|124.011 +637497.083|221247.170|123.804 +637491.682|221249.102|123.316 +637475.302|221254.967|121.844 +637458.821|221260.868|120.363 +637453.366|221262.828|119.674 +637442.067|221266.833|119.503 +637419.484|221274.873|118.330 +637413.693|221276.900|118.741 +637407.752|221278.967|119.485 +637401.830|221281.024|120.183 +637395.938|221283.091|120.552 +637390.092|221285.145|120.756 +637384.340|221287.184|120.634 +637378.671|221289.211|120.201 +637372.874|221291.268|120.024 +637367.180|221293.311|119.467 +637361.410|221295.362|119.211 +637355.598|221297.419|119.147 +637349.660|221299.510|119.342 +637343.796|221301.586|119.262 +637337.852|221303.674|119.521 +637331.854|221305.783|119.756 +637325.947|221307.865|119.906 +637307.878|221314.205|120.856 +637301.813|221316.317|121.494 +637289.675|221320.569|122.326 +637277.456|221324.824|123.615 +637271.384|221326.958|123.853 +637247.122|221335.483|124.959 +637241.099|221337.604|125.096 +637234.994|221339.750|125.337 +637228.968|221341.871|125.535 +637222.869|221344.014|125.800 +637216.721|221346.175|126.023 +637210.656|221348.312|126.184 +637204.514|221350.473|126.425 +637192.295|221354.765|126.968 +637179.972|221359.093|127.495 +637173.802|221361.266|127.681 +637167.633|221363.436|127.897 +637161.479|221365.603|128.053 +637155.307|221367.770|128.324 +637149.156|221369.938|128.519 +637142.896|221372.144|128.653 +637136.784|221374.302|128.681 +637130.664|221376.475|128.452 +637124.516|221378.652|128.382 +637118.380|221380.828|128.278 +637112.251|221383.017|127.809 +637106.192|221385.181|127.318 +637099.974|221387.393|127.035 +637093.890|221389.561|126.696 +637057.198|221402.697|123.210 +637038.642|221409.327|121.719 +637036.438|221414.585|121.426 +637060.892|221405.874|123.652 +637066.979|221403.700|124.282 +637073.057|221401.527|124.987 +637091.232|221395.047|126.776 +637097.407|221392.865|126.965 +637109.538|221388.567|127.586 +637115.595|221386.409|128.138 +637121.624|221384.269|128.507 +637127.735|221382.120|128.464 +637133.764|221379.981|128.858 +637139.933|221377.811|128.879 +637146.005|221375.680|128.766 +637152.140|221373.525|128.672 +637158.236|221371.391|128.477 +637164.375|221369.249|128.099 +637170.483|221367.109|127.897 +637176.594|221364.969|127.711 +637182.700|221362.830|127.562 +637188.835|221360.684|127.297 +637200.972|221356.435|126.864 +637207.084|221354.304|126.483 +637213.173|221352.174|126.224 +637219.263|221350.043|125.995 +637225.305|221347.931|125.724 +637231.391|221345.797|125.550 +637237.436|221343.685|125.304 +637249.454|221339.461|125.191 +637273.673|221331.008|123.856 +637279.724|221328.899|123.466 +637285.768|221326.790|123.124 +637291.885|221324.669|122.481 +637310.018|221318.368|120.869 +637315.958|221316.296|120.549 +637322.006|221314.189|120.067 +637327.989|221312.096|119.878 +637333.838|221310.044|119.732 +637339.751|221307.972|119.604 +637345.707|221305.890|119.323 +637351.480|221303.848|119.546 +637357.301|221301.796|119.573 +637363.084|221299.766|119.531 +637368.887|221297.715|119.674 +637374.700|221295.664|119.787 +637380.287|221293.661|120.555 +637391.744|221289.604|121.006 +637403.430|221285.523|120.427 +637415.317|221281.411|118.921 +637443.676|221271.399|119.601 +637449.555|221269.359|118.994 +637460.605|221265.415|120.137 +637487.902|221255.677|122.813 +637493.288|221253.754|123.365 +637525.673|221242.229|125.983 +637536.637|221238.373|125.953 +637542.002|221236.484|126.014 +637547.531|221234.548|125.773 +637548.853|221235.554|125.663 +637543.398|221237.471|125.886 +637537.896|221239.410|126.066 +637510.689|221249.069|125.297 +637500.021|221252.912|123.807 +637494.584|221254.854|123.429 +637483.675|221258.765|122.387 +637478.155|221260.731|122.100 +637472.638|221262.706|121.594 +637467.307|221264.635|120.674 +637461.751|221266.616|120.323 +637456.237|221268.591|119.835 +637450.683|221270.569|119.503 +637444.965|221272.590|119.552 +637433.486|221276.647|119.601 +637410.486|221284.767|119.842 +637375.654|221297.066|120.162 +637369.981|221299.105|119.512 +637364.044|221301.196|119.653 +637358.274|221303.250|119.412 +637352.324|221305.341|119.643 +637346.527|221307.408|119.287 +637340.498|221309.511|119.875 +637334.655|221311.596|119.476 +637328.635|221313.696|120.076 +637322.603|221315.820|120.216 +637316.629|221317.923|120.418 +637310.594|221320.033|120.887 +637292.260|221326.430|122.603 +637273.875|221332.865|123.969 +637267.760|221334.989|124.694 +637249.506|221341.417|125.218 +637231.266|221347.849|125.590 +637225.192|221349.988|125.736 +637219.087|221352.131|126.038 +637212.945|221354.292|126.248 +637206.785|221356.453|126.559 +637188.366|221362.927|127.370 +637182.114|221365.125|127.608 +637175.991|221367.277|127.870 +637169.761|221369.468|128.059 +637163.610|221371.638|128.196 +637157.428|221373.808|128.510 +637151.198|221375.997|128.763 +637145.002|221378.182|128.888 +637138.839|221380.362|128.858 +637132.670|221382.541|128.870 +637114.220|221389.103|128.062 +637108.103|221391.292|127.535 +637101.918|221393.486|127.404 +637095.822|221395.672|126.773 +637077.318|221402.277|125.496 +637046.569|221413.317|122.076 +637040.379|221415.520|121.728 +637034.216|221417.724|121.241 +637041.327|221419.489|121.765 +637047.405|221417.319|122.420 +637059.664|221412.951|123.530 +637077.924|221406.434|125.425 +637096.106|221399.951|127.163 +637102.299|221397.769|127.269 +637108.377|221395.611|127.669 +637114.418|221393.471|127.940 +637138.750|221384.861|128.967 +637144.849|221382.712|129.022 +637150.994|221380.560|128.858 +637157.108|221378.423|128.556 +637163.287|221376.262|128.288 +637169.380|221374.125|128.135 +637175.549|221371.964|127.943 +637181.611|221369.846|127.681 +637187.735|221367.703|127.449 +637193.858|221365.558|127.248 +637206.044|221361.303|126.593 +637212.131|221359.175|126.319 +637218.224|221357.044|126.062 +637224.302|221354.914|125.892 +637230.294|221352.808|125.840 +637236.253|221350.708|125.962 +637242.410|221348.562|125.483 +637248.488|221346.443|125.118 +637254.483|221344.334|125.127 +637260.518|221342.216|124.990 +637272.610|221338.007|124.127 +637278.724|221335.876|123.719 +637309.097|221325.339|120.689 +637315.035|221323.251|120.622 +637321.070|221321.151|120.174 +637326.992|221319.078|119.954 +637332.899|221317.006|119.817 +637350.523|221310.815|119.653 +637356.393|221308.746|119.729 +637368.037|221304.655|119.576 +637373.849|221302.604|119.683 +637379.418|221300.605|120.503 +637385.176|221298.562|120.841 +637390.881|221296.538|121.155 +637396.602|221294.524|121.173 +637402.497|221292.466|120.808 +637414.321|221288.358|119.750 +637420.203|221286.325|119.000 +637425.973|221284.295|118.936 +637431.636|221282.298|119.043 +637476.354|221266.433|121.612 +637487.323|221262.532|122.429 +637492.804|221260.581|122.874 +637503.627|221256.725|123.816 +637509.004|221254.805|124.423 +637525.222|221249.029|125.776 +637530.687|221247.100|125.907 +637536.128|221245.186|125.907 +637547.019|221241.351|125.934 +637552.566|221239.413|125.639 +637555.864|221239.897|125.502 +637550.368|221241.830|125.639 +637544.891|221243.750|125.953 +637539.441|221245.676|125.968 +637534.025|221247.594|125.895 +637528.609|221249.511|125.828 +637523.150|221251.443|125.697 +637517.733|221253.373|125.441 +637512.360|221255.299|124.825 +637507.026|221257.222|124.078 +637501.676|221259.133|123.630 +637496.248|221261.072|123.237 +637490.771|221263.029|122.786 +637485.336|221264.964|122.435 +637479.859|221266.921|122.021 +637474.351|221268.893|121.497 +637468.907|221270.841|120.972 +637463.351|221272.834|120.405 +637457.880|221274.797|119.774 +637452.280|221276.784|119.622 +637435.315|221282.789|119.387 +637400.348|221295.060|121.073 +637394.585|221297.090|121.225 +637371.722|221305.237|119.747 +637365.869|221307.301|119.820 +637360.033|221309.361|119.863 +637354.156|221311.440|119.808 +637348.340|221313.510|119.540 +637342.406|221315.595|119.765 +637336.548|221317.667|119.701 +637330.537|221319.776|120.012 +637324.615|221321.870|119.982 +637318.622|221323.974|120.259 +637312.505|221326.107|120.826 +637287.978|221334.623|123.853 +637282.010|221336.742|123.624 +637275.908|221338.878|123.993 +637269.906|221340.988|124.234 +637251.633|221347.398|125.151 +637245.510|221349.546|125.471 +637239.405|221351.689|125.715 +637233.278|221353.835|126.093 +637227.200|221355.990|125.974 +637221.138|221358.123|126.087 +637215.051|221360.263|126.352 +637208.858|221362.439|126.535 +637202.640|221364.607|127.166 +637190.429|221368.907|127.431 +637184.254|221371.081|127.623 +637178.039|221373.254|128.041 +637171.879|221375.424|128.205 +637165.673|221377.609|128.312 +637159.492|221379.776|128.629 +637153.277|221381.962|128.836 +637147.087|221384.144|128.925 +637140.896|221386.327|129.053 +637116.280|221395.059|128.303 +637110.175|221397.245|127.733 +637097.813|221401.643|127.099 +637073.310|221410.439|124.356 +637067.122|221412.631|124.313 +637060.843|221414.859|124.109 +637042.470|221421.464|121.905 +637040.440|221426.207|121.893 +637046.612|221424.015|122.310 +637070.978|221415.331|124.572 +637083.072|221411.012|125.910 +637095.222|221406.684|126.968 +637101.354|221404.508|127.352 +637107.359|221402.374|127.788 +637113.437|221400.219|128.160 +637119.523|221398.058|128.519 +637125.620|221395.900|128.815 +637131.706|221393.758|128.858 +637137.778|221391.612|129.004 +637143.847|221389.469|129.174 +637149.909|221387.342|129.080 +637156.042|221385.190|128.973 +637162.220|221383.032|128.650 +637174.397|221378.765|128.345 +637180.444|221376.646|128.111 +637186.659|221374.482|127.702 +637192.718|221372.361|127.462 +637198.741|221370.245|127.425 +637204.907|221368.093|127.029 +637210.927|221365.990|126.739 +637217.020|221363.863|126.431 +637223.083|221361.735|126.285 +637229.108|221359.629|126.047 +637235.195|221357.499|125.846 +637241.172|221355.392|125.867 +637253.285|221351.162|125.255 +637259.265|221349.068|125.051 +637283.332|221340.652|124.054 +637289.313|221338.552|123.953 +637319.747|221328.030|120.171 +637325.587|221325.973|120.253 +637331.488|221323.903|120.107 +637337.374|221321.837|120.037 +637343.217|221319.789|119.906 +637349.185|221317.707|119.549 +637354.933|221315.659|120.094 +637366.513|221311.583|120.116 +637372.334|221309.532|120.152 +637378.116|221307.490|120.369 +637383.706|221305.500|120.841 +637389.388|221303.482|121.225 +637395.130|221301.455|121.390 +637400.906|221299.422|121.430 +637424.251|221291.284|119.930 +637447.114|221283.258|119.564 +637452.774|221281.262|119.723 +637469.435|221275.352|120.710 +637474.857|221273.416|121.301 +637480.356|221271.453|121.865 +637491.252|221267.582|122.688 +637496.699|221265.638|123.234 +637502.097|221263.715|123.737 +637518.245|221257.951|125.447 +637523.634|221256.040|125.800 +637529.066|221254.129|125.794 +637534.519|221252.205|125.965 +637539.944|221250.294|126.005 +637545.391|221248.377|125.995 +637550.911|221246.448|125.764 +637557.321|221246.207|125.514 +637551.871|221248.124|125.727 +637546.366|221250.062|125.916 +637540.907|221251.989|125.968 +637535.494|221253.906|125.877 +637530.029|221255.842|125.758 +637524.530|221257.786|125.767 +637519.099|221259.716|125.566 +637502.990|221265.498|123.706 +637492.151|221269.381|122.649 +637481.172|221273.297|121.884 +637475.787|221275.236|121.158 +637470.279|221277.208|120.643 +637442.353|221287.148|119.162 +637436.437|221289.208|119.732 +637418.957|221295.331|120.856 +637413.178|221297.364|121.021 +637407.371|221299.416|121.049 +637401.562|221301.452|121.366 +637395.731|221303.503|121.524 +637390.004|221305.539|121.317 +637384.273|221307.584|120.875 +637378.531|221309.633|120.497 +637366.958|221313.738|120.128 +637361.142|221315.796|120.088 +637355.253|221317.878|120.101 +637343.582|221322.017|119.738 +637337.581|221324.126|120.000 +637331.622|221326.226|120.098 +637325.660|221328.326|120.241 +637319.762|221330.414|120.140 +637289.121|221341.064|123.731 +637283.119|221343.173|123.941 +637258.769|221351.720|125.087 +637252.709|221353.847|125.377 +637240.514|221358.136|125.797 +637234.458|221360.272|125.855 +637228.371|221362.412|126.072 +637222.214|221364.573|126.343 +637216.151|221366.710|126.489 +637209.991|221368.868|126.824 +637203.850|221371.026|127.108 +637197.702|221373.181|127.422 +637191.533|221375.354|127.571 +637185.342|221377.527|127.849 +637179.155|221379.700|128.147 +637172.989|221381.867|128.348 +637166.838|221384.035|128.501 +637160.608|221386.223|128.754 +637154.451|221388.387|128.982 +637148.248|221390.569|129.156 +637142.060|221392.749|129.263 +637135.891|221394.943|128.976 +637129.768|221397.117|128.778 +637123.544|221399.314|128.815 +637117.457|221401.481|128.477 +637111.321|221403.670|128.062 +637105.073|221405.883|127.958 +637080.622|221414.652|125.316 +637074.520|221416.834|124.795 +637068.320|221419.041|124.487 +637062.145|221421.245|124.057 +637055.939|221423.467|123.441 +637049.870|221425.664|122.387 +637043.677|221427.883|121.722 +637044.719|221431.419|122.256 +637050.870|221429.240|122.423 +637056.981|221427.045|123.243 +637063.059|221424.872|123.865 +637069.204|221422.674|124.490 +637087.468|221416.161|125.941 +637093.554|221413.981|126.568 +637099.535|221411.829|127.468 +637111.681|221407.507|128.217 +637117.795|221405.340|128.412 +637123.873|221403.179|128.797 +637129.926|221401.033|128.998 +637136.071|221398.863|129.080 +637142.118|221396.717|129.339 +637148.248|221394.562|129.190 +637154.368|221392.407|129.123 +637160.455|221390.268|128.931 +637166.624|221388.107|128.653 +637172.717|221385.967|128.464 +637178.829|221383.824|128.211 +637184.946|221381.678|127.958 +637191.082|221379.530|127.635 +637197.181|221377.387|127.504 +637203.222|221375.262|127.379 +637215.472|221370.974|126.690 +637221.488|221368.865|126.456 +637227.572|221366.731|126.224 +637233.680|221364.591|125.892 +637239.673|221362.482|125.825 +637251.743|221358.233|125.657 +637257.802|221356.109|125.355 +637263.874|221353.984|125.023 +637269.842|221351.887|124.886 +637275.929|221349.757|124.538 +637282.013|221347.641|123.938 +637287.944|221345.544|124.029 +637293.876|221343.459|123.862 +637312.164|221337.117|121.689 +637318.363|221334.977|120.753 +637324.289|221332.901|120.472 +637330.189|221330.829|120.305 +637336.148|221328.732|120.177 +637342.028|221326.659|120.146 +637347.807|221324.617|120.268 +637359.511|221320.490|120.250 +637371.146|221316.384|120.314 +637376.873|221314.357|120.472 +637382.594|221312.321|120.927 +637399.711|221306.246|121.801 +637405.466|221304.226|121.676 +637468.481|221282.070|120.735 +637474.055|221280.091|121.006 +637479.536|221278.132|121.637 +637484.949|221276.193|122.262 +637495.785|221272.325|123.298 +637501.244|221270.390|123.584 +637517.163|221264.659|126.053 +637528.170|221260.785|125.962 +637533.616|221258.859|126.139 +637539.109|221256.920|126.163 +637544.589|221254.997|126.032 +637550.067|221253.074|125.931 +637558.366|221252.333|125.563 +637552.923|221254.250|125.764 +637547.433|221256.186|125.916 +637536.457|221260.066|126.026 +637530.974|221262.011|125.983 +637519.916|221265.921|126.026 +637493.090|221275.577|122.755 +637476.649|221281.481|121.113 +637471.129|221283.456|120.646 +637454.670|221289.367|118.967 +637402.238|221307.773|121.957 +637396.548|221309.806|121.606 +637390.802|221311.846|121.478 +637385.035|221313.903|121.198 +637379.372|221315.927|120.774 +637373.550|221318.003|120.485 +637356.058|221324.199|120.326 +637350.325|221326.260|119.744 +637344.290|221328.375|120.128 +637338.337|221330.478|120.207 +637332.451|221332.557|120.302 +637320.451|221336.784|120.680 +637314.367|221338.903|121.396 +637295.927|221345.316|123.685 +637289.880|221347.434|124.081 +637277.813|221351.698|124.264 +637271.726|221353.832|124.624 +637265.645|221355.969|124.980 +637259.592|221358.096|125.240 +637253.462|221360.251|125.581 +637247.406|221362.391|125.605 +637241.361|221364.515|125.898 +637235.253|221366.676|125.916 +637229.157|221368.822|126.200 +637223.098|221370.959|126.328 +637216.938|221373.123|126.657 +637210.778|221375.284|127.004 +637204.639|221377.445|127.294 +637198.516|221379.600|127.522 +637192.353|221381.773|127.650 +637186.165|221383.949|127.937 +637180.048|221386.101|128.205 +637173.796|221388.299|128.528 +637167.658|221390.466|128.647 +637161.437|221392.654|128.873 +637155.286|221394.821|129.101 +637149.123|221397.004|129.077 +637142.841|221399.211|129.373 +637136.739|221401.387|129.065 +637130.551|221403.584|128.915 +637124.422|221405.758|128.793 +637118.283|221407.949|128.403 +637112.123|221410.144|128.147 +637105.914|221412.357|127.827 +637099.836|221414.542|127.141 +637093.734|221416.727|126.620 +637075.251|221423.348|125.011 +637069.222|221425.527|124.100 +637062.962|221427.755|123.810 +637056.838|221429.959|123.088 +637042.467|221439.018|121.804 +637054.665|221434.665|122.746 +637060.785|221432.489|123.124 +637079.028|221425.942|125.352 +637103.339|221417.264|127.321 +637109.377|221415.106|127.873 +637121.529|221410.781|128.623 +637127.622|221408.617|128.940 +637133.764|221406.447|128.998 +637139.823|221404.298|129.181 +637145.883|221402.152|129.373 +637152.027|221399.994|129.144 +637158.169|221397.836|128.967 +637164.232|221395.702|128.885 +637170.325|221393.563|128.669 +637188.704|221387.110|127.977 +637194.834|221384.961|127.690 +637200.881|221382.837|127.504 +637207.001|221380.688|127.288 +637213.094|221378.557|126.934 +637219.172|221376.424|126.678 +637225.320|221374.269|126.410 +637231.318|221372.160|126.273 +637237.396|221370.023|126.081 +637243.394|221367.911|125.989 +637249.442|221365.792|125.691 +637261.539|221361.537|125.438 +637267.526|221359.437|125.188 +637273.612|221357.307|124.810 +637279.635|221355.200|124.450 +637285.667|221353.091|124.078 +637315.949|221342.533|121.515 +637339.715|221334.203|120.375 +637345.594|221332.130|120.326 +637357.274|221327.994|120.619 +637363.181|221325.927|120.250 +637368.939|221323.897|120.262 +637374.666|221321.855|120.668 +637380.408|221319.810|121.015 +637386.056|221317.792|121.503 +637391.781|221315.762|121.698 +637403.305|221311.687|121.850 +637432.414|221301.479|120.454 +637461.056|221291.412|119.598 +637466.530|221289.449|120.204 +637477.454|221285.538|121.305 +637488.375|221281.640|122.228 +637520.598|221270.079|125.992 +637531.522|221266.214|126.187 +637537.015|221264.272|126.203 +637548.076|221260.398|125.581 +637553.441|221258.493|125.855 +637558.863|221256.585|125.730 +637564.313|221254.671|125.529 +637557.915|221258.765|125.611 +637552.444|221260.700|125.694 +637546.979|221262.632|125.764 +637541.462|221264.574|126.038 +637536.040|221266.497|126.008 +637530.511|221268.448|126.139 +637487.250|221283.978|122.024 +637481.797|221285.934|121.551 +637476.256|221287.916|121.158 +637465.378|221291.842|119.689 +637459.809|221293.826|119.439 +637454.225|221295.825|119.025 +637442.816|221299.864|119.104 +637431.136|221303.954|120.040 +637425.370|221305.993|120.134 +637407.600|221312.190|122.094 +637401.863|221314.232|121.917 +637396.112|221316.274|121.807 +637390.363|221318.313|121.710 +637384.590|221320.371|121.472 +637378.820|221322.428|121.228 +637373.124|221324.470|120.713 +637367.372|221326.522|120.442 +637361.428|221328.616|120.683 +637343.909|221334.843|120.277 +637337.959|221336.946|120.357 +637319.982|221343.267|121.268 +637313.971|221345.374|121.695 +637295.570|221351.784|123.895 +637289.560|221353.899|124.145 +637283.543|221356.029|124.173 +637265.374|221362.415|125.197 +637253.322|221366.667|125.520 +637247.168|221368.837|125.733 +637241.148|221370.959|125.928 +637235.095|221373.098|126.005 +637228.947|221375.265|126.245 +637222.891|221377.402|126.373 +637216.749|221379.566|126.636 +637210.659|221381.706|126.989 +637204.508|221383.867|127.337 +637198.351|221386.043|127.434 +637192.221|221388.198|127.748 +637186.031|221390.377|128.050 +637179.865|221392.551|128.281 +637173.687|221394.724|128.586 +637167.536|221396.891|128.772 +637161.403|221399.058|128.888 +637155.219|221401.244|128.982 +637149.031|221403.429|129.104 +637142.847|221405.614|129.235 +637136.733|221407.791|129.019 +637130.615|221409.967|128.842 +637124.409|221412.165|128.797 +637118.329|221414.338|128.458 +637112.178|221416.529|128.166 +637106.094|221418.718|127.532 +637099.986|221420.903|127.023 +637075.440|221429.712|124.691 +637063.209|221434.101|123.536 +637057.079|221436.305|122.856 +637050.837|221438.533|122.505 +637044.677|221440.737|122.030 +637033.963|221448.311|122.454 +637052.641|221441.724|122.271 +637064.818|221437.369|123.399 +637077.016|221432.992|124.816 +637083.054|221430.815|125.694 +637101.254|221424.317|127.187 +637107.353|221422.135|127.760 +637113.415|221419.974|128.187 +637119.499|221417.809|128.525 +637125.583|221415.642|128.870 +637131.655|221413.494|128.970 +637137.766|221411.326|129.202 +637143.853|221409.174|129.248 +637149.982|221407.017|129.098 +637156.072|221404.865|129.168 +637162.150|221402.728|128.992 +637168.270|221400.567|128.943 +637174.415|221398.406|128.809 +637180.545|221396.260|128.440 +637186.671|221394.111|128.111 +637192.724|221391.987|127.870 +637198.921|221389.814|127.559 +637204.962|221387.689|127.425 +637211.040|221385.559|127.117 +637217.188|221383.404|126.821 +637223.226|221381.288|126.462 +637229.325|221379.136|126.428 +637235.351|221377.021|126.184 +637241.410|221374.887|126.078 +637247.503|221372.748|125.858 +637253.526|221370.629|125.681 +637259.525|221368.514|125.639 +637265.560|221366.393|125.450 +637283.704|221360.028|124.551 +637289.639|221357.944|124.340 +637295.616|221355.840|124.240 +637301.791|221353.707|123.304 +637319.985|221347.370|121.542 +637325.971|221345.282|120.978 +637343.738|221339.034|120.488 +637361.182|221332.852|120.960 +637372.795|221328.747|121.076 +637378.570|221326.699|121.283 +637384.218|221324.681|121.756 +637390.013|221322.626|121.908 +637395.761|221320.590|122.009 +637401.467|221318.576|122.045 +637413.168|221314.467|121.564 +637418.984|221312.431|121.228 +637436.723|221306.262|119.290 +637442.487|221304.229|119.241 +637459.486|221298.221|119.320 +637464.960|221296.261|119.921 +637475.988|221292.308|121.100 +637486.894|221288.409|122.048 +637492.350|221286.459|122.533 +637503.161|221282.588|123.642 +637508.531|221280.661|124.225 +637541.023|221269.094|126.136 +637552.036|221265.229|125.685 +637557.482|221263.306|125.678 +637559.208|221264.089|125.599 +637553.709|221266.031|125.761 +637548.226|221267.970|125.892 +637542.663|221269.935|126.099 +637515.566|221279.631|124.438 +637510.065|221281.591|124.295 +637504.599|221283.554|123.813 +637493.797|221287.443|122.655 +637488.262|221289.431|122.216 +637471.785|221295.362|120.521 +637466.295|221297.337|119.970 +637455.045|221301.357|119.403 +637443.624|221305.414|119.287 +637437.921|221307.435|119.348 +637432.057|221309.493|119.787 +637426.083|221311.571|120.661 +637408.401|221317.774|122.036 +637402.589|221319.831|122.146 +637396.776|221321.901|122.018 +637390.942|221323.971|121.990 +637385.200|221326.013|121.878 +637379.470|221328.067|121.484 +637373.614|221330.152|121.338 +637361.913|221334.315|121.067 +637350.261|221338.470|120.658 +637344.332|221340.576|120.634 +637338.331|221342.691|120.936 +637326.352|221346.925|121.225 +637320.369|221349.034|121.512 +637295.787|221357.614|124.304 +637289.803|221359.733|124.450 +637283.756|221361.869|124.609 +637265.550|221368.282|125.499 +637259.448|221370.437|125.706 +637247.375|221374.711|125.889 +637241.215|221376.884|126.142 +637235.168|221379.027|126.194 +637228.999|221381.200|126.529 +637222.897|221383.361|126.578 +637216.791|221385.510|126.968 +637210.607|221387.692|127.160 +637204.453|221389.859|127.522 +637198.296|221392.039|127.620 +637192.081|221394.221|128.031 +637185.961|221396.379|128.306 +637179.728|221398.580|128.544 +637167.338|221402.950|129.037 +637161.232|221405.118|129.007 +637155.018|221407.309|129.254 +637148.827|221409.516|129.068 +637142.627|221411.704|129.263 +637130.298|221416.090|129.046 +637124.129|221418.291|128.815 +637118.051|221420.464|128.437 +637111.867|221422.680|127.986 +637105.719|221424.878|127.681 +637099.547|221427.091|127.193 +637081.201|221433.687|125.499 +637075.135|221435.893|124.429 +637068.963|221438.103|123.987 +637062.794|221440.334|123.167 +637056.680|221442.523|122.765 +637050.419|221444.775|122.121 +637048.959|221449.149|122.393 +637055.116|221446.970|122.512 +637061.297|221444.766|122.880 +637067.305|221442.593|123.917 +637079.555|221438.210|125.005 +637085.593|221436.034|125.883 +637091.662|221433.854|126.593 +637097.709|221431.696|127.065 +637109.907|221427.347|127.843 +637115.970|221425.186|128.269 +637122.105|221422.997|128.662 +637128.204|221420.830|128.918 +637134.355|221418.657|128.925 +637140.445|221416.505|128.928 +637146.504|221414.356|129.117 +637158.672|221410.046|129.303 +637164.799|221407.888|129.199 +637170.940|221405.727|129.037 +637177.021|221403.584|128.894 +637183.160|221401.436|128.477 +637189.271|221399.290|128.220 +637195.388|221397.141|127.958 +637201.515|221394.992|127.684 +637207.596|221392.859|127.346 +637213.737|221390.704|127.050 +637219.815|221388.570|126.779 +637225.887|221386.436|126.553 +637231.943|221384.303|126.419 +637237.957|221382.191|126.209 +637243.998|221380.057|126.194 +637250.021|221377.939|125.995 +637256.086|221375.799|125.916 +637268.086|221371.580|125.538 +637286.216|221365.216|124.700 +637292.199|221363.110|124.538 +637298.201|221361.001|124.325 +637328.620|221350.415|121.049 +637334.551|221348.321|121.003 +637346.426|221344.157|120.384 +637352.163|221342.103|120.930 +637363.751|221337.991|121.323 +637369.625|221335.928|121.106 +637375.361|221333.883|121.442 +637386.788|221329.814|122.100 +637392.524|221327.781|122.225 +637398.349|221325.732|122.027 +637404.085|221323.696|122.195 +637409.944|221321.639|121.908 +637415.774|221319.600|121.506 +637421.581|221317.564|121.210 +637427.503|221315.494|120.744 +637433.465|221313.427|119.906 +637439.284|221311.398|119.390 +637444.999|221309.383|119.287 +637462.028|221303.357|119.482 +637467.545|221301.373|120.158 +637473.034|221299.407|120.713 +637478.588|221297.428|121.049 +637484.007|221295.484|121.631 +637489.460|221293.524|122.344 +637494.934|221291.567|122.752 +637500.341|221289.626|123.417 +637511.250|221285.730|124.209 +637516.691|221283.792|124.566 +637527.566|221279.924|125.096 +637532.931|221278.007|125.514 +637538.344|221276.080|125.791 +637549.317|221272.209|125.657 +637554.785|221270.283|125.563 +637560.290|221268.347|125.364 +637565.672|221266.446|125.364 +637571.070|221264.541|125.340 +637564.432|221268.354|125.276 +637558.961|221270.289|125.361 +637553.544|221272.203|125.493 +637548.040|221274.142|125.712 +637542.501|221276.099|125.858 +637531.708|221279.945|125.444 +637509.976|221287.715|124.151 +637488.256|221295.517|122.085 +637482.858|221297.462|121.423 +637477.372|221299.437|120.863 +637466.329|221303.406|119.768 +637460.793|221305.384|119.409 +637443.743|221311.431|119.339 +637437.952|221313.476|119.506 +637426.077|221317.612|121.012 +637420.264|221319.658|121.323 +637414.436|221321.703|121.713 +637408.569|221323.766|122.036 +637402.756|221325.821|122.170 +637397.005|221327.863|122.076 +637391.189|221329.917|122.256 +637385.389|221331.978|122.143 +637379.649|221334.029|121.798 +637373.867|221336.086|121.652 +637368.149|221338.135|121.259 +637362.255|221340.219|121.329 +637326.946|221352.759|120.832 +637302.389|221361.318|123.795 +637296.283|221363.451|124.459 +637290.300|221365.564|124.621 +637284.162|221367.725|124.923 +637272.085|221371.974|125.563 +637266.005|221374.122|125.672 +637247.823|221380.557|125.880 +637241.767|221382.684|126.261 +637235.686|221384.845|126.200 +637229.587|221386.991|126.532 +637223.537|221389.128|126.666 +637217.319|221391.316|127.010 +637211.201|221393.474|127.196 +637205.066|221395.635|127.504 +637198.939|221397.790|127.782 +637192.746|221399.970|128.117 +637186.583|221402.146|128.318 +637180.398|221404.322|128.647 +637174.238|221406.492|128.891 +637168.017|221408.687|129.138 +637161.876|221410.854|129.330 +637155.685|221413.039|129.479 +637149.516|221415.225|129.528 +637143.459|221417.398|129.013 +637137.345|221419.574|128.815 +637131.100|221421.796|128.653 +637125.004|221423.970|128.394 +637118.783|221426.188|128.138 +637112.690|221428.362|127.894 +637106.463|221430.578|127.696 +637100.345|221432.772|127.260 +637094.192|221434.982|126.678 +637081.887|221439.405|125.526 +637063.553|221446.028|123.152 +637057.408|221448.238|122.573 +637051.193|221450.448|122.414 +637044.905|221452.700|121.984 +637034.347|221460.183|122.124 +637046.725|221455.803|122.219 +637052.903|221453.605|122.573 +637059.036|221451.426|122.822 +637065.193|221449.225|123.319 +637077.312|221444.873|124.740 +637095.475|221438.359|126.684 +637107.603|221434.019|127.785 +637113.735|221431.852|127.800 +637119.749|221429.694|128.473 +637131.847|221425.384|129.162 +637137.970|221423.217|129.290 +637144.066|221421.065|129.251 +637156.255|221416.740|129.568 +637174.510|221410.308|129.196 +637180.618|221408.166|128.900 +637186.769|221406.017|128.419 +637192.865|221403.871|128.233 +637205.044|221399.595|127.657 +637211.116|221397.464|127.358 +637217.236|221395.312|127.141 +637223.314|221393.182|126.855 +637229.325|221391.069|126.605 +637235.363|221388.939|126.538 +637241.371|221386.827|126.352 +637247.427|221384.690|126.251 +637253.422|221382.578|126.169 +637259.442|221380.459|125.977 +637265.450|221378.341|125.874 +637271.436|221376.241|125.599 +637277.407|221374.138|125.416 +637283.464|221372.013|125.154 +637295.464|221367.798|124.642 +637301.462|221365.689|124.423 +637313.630|221361.470|122.792 +637325.840|221357.227|121.356 +637331.735|221355.155|121.158 +637355.116|221346.882|121.378 +637366.711|221342.771|121.713 +637372.429|221340.744|121.844 +637401.260|221330.536|122.246 +637407.054|221328.491|122.176 +637412.821|221326.464|121.975 +637418.661|221324.409|121.762 +637424.501|221322.367|121.320 +637436.251|221318.280|120.003 +637442.109|221316.232|119.570 +637447.797|221314.226|119.549 +637464.735|221308.228|119.790 +637481.233|221302.324|121.280 +637497.543|221296.484|122.844 +637502.941|221294.545|123.517 +637530.166|221284.846|125.121 +637535.573|221282.923|125.380 +637541.020|221280.991|125.529 +637546.442|221279.073|125.535 +637551.932|221277.144|125.346 +637562.877|221273.288|125.124 +637568.141|221271.411|125.505 +637573.545|221269.503|125.438 +637559.214|221276.214|125.276 +637553.788|221278.144|125.243 +637548.302|221280.082|125.410 +637542.794|221282.036|125.453 +637537.390|221283.956|125.374 +637488.332|221301.537|121.999 +637482.919|221303.491|121.402 +637471.864|221307.456|120.579 +637466.445|221309.419|119.799 +637449.440|221315.467|119.521 +637443.685|221317.509|119.546 +637437.912|221319.542|119.899 +637431.944|221321.617|120.762 +637426.086|221323.672|121.234 +637420.185|221325.748|121.643 +637414.391|221327.790|121.923 +637408.526|221329.856|122.240 +637402.711|221331.914|122.390 +637396.852|221333.989|122.475 +637379.464|221340.165|122.353 +637373.733|221342.219|121.999 +637367.954|221344.289|121.603 +637356.259|221348.452|121.402 +637338.663|221354.707|121.170 +637326.727|221358.937|121.350 +637320.619|221361.062|122.195 +637314.526|221363.198|122.740 +637302.163|221367.505|124.386 +637296.162|221369.624|124.612 +637290.078|221371.766|124.941 +637284.024|221373.903|125.166 +637277.950|221376.043|125.502 +637271.918|221378.176|125.669 +637265.858|221380.313|125.983 +637253.749|221384.608|126.075 +637247.674|221386.753|126.236 +637241.557|221388.920|126.331 +637235.482|221391.066|126.529 +637229.374|221393.230|126.620 +637223.296|221395.376|126.882 +637217.179|221397.537|127.062 +637210.979|221399.726|127.364 +637204.846|221401.887|127.654 +637198.656|221404.069|127.955 +637192.532|221406.227|128.260 +637186.372|221408.403|128.461 +637180.164|221410.586|128.934 +637167.752|221414.975|129.263 +637155.441|221419.330|129.513 +637149.312|221421.516|129.367 +637143.118|221423.720|129.245 +637136.961|221425.902|129.287 +637124.626|221430.303|128.842 +637118.490|221432.498|128.483 +637112.409|221434.689|127.827 +637106.185|221436.908|127.629 +637100.065|221439.100|127.224 +637063.276|221452.356|123.240 +637057.128|221454.562|122.685 +637050.870|221456.797|122.457 +637044.546|221459.031|122.643 +637038.306|221461.259|122.329 +637037.294|221465.185|122.524 +637055.963|221458.561|122.649 +637062.163|221456.373|122.502 +637086.258|221447.649|126.191 +637092.338|221445.464|126.797 +637098.495|221443.273|126.974 +637110.690|221438.914|127.681 +637116.707|221436.750|128.336 +637122.785|221434.580|128.669 +637134.956|221430.233|129.287 +637141.039|221428.078|129.287 +637147.111|221425.923|129.373 +637153.177|221423.765|129.504 +637159.273|221421.604|129.495 +637189.859|221410.808|128.608 +637195.986|221408.653|128.272 +637202.079|221406.517|127.803 +637208.178|221404.362|127.650 +637214.256|221402.225|127.300 +637220.309|221400.088|127.108 +637226.429|221397.930|126.910 +637232.480|221395.791|126.776 +637238.521|221393.669|126.395 +637244.559|221391.530|126.364 +637250.576|221389.408|126.157 +637256.626|221387.265|126.093 +637262.688|221385.138|125.721 +637268.559|221383.044|125.950 +637298.673|221372.440|124.551 +637304.595|221370.349|124.392 +637322.838|221363.988|122.280 +637334.832|221359.772|121.530 +637340.705|221357.697|121.442 +637369.853|221347.355|121.640 +637375.590|221345.294|122.201 +637387.138|221341.198|122.298 +637404.491|221335.050|122.341 +637410.294|221333.014|121.972 +637415.994|221330.993|122.036 +637421.831|221328.936|121.835 +637439.454|221322.785|119.963 +637445.191|221320.764|119.735 +637450.958|221318.725|119.656 +637456.645|221316.713|119.649 +637462.336|221314.695|119.656 +637467.886|221312.717|119.942 +637478.801|221308.788|121.231 +637484.291|221306.829|121.539 +637489.768|221304.860|122.134 +637511.509|221297.063|124.063 +637516.935|221295.124|124.444 +637522.360|221293.183|124.834 +637527.722|221291.265|125.224 +637533.257|221289.312|125.038 +637538.615|221287.394|125.465 +637576.807|221273.889|125.020 +637564.593|221280.311|124.971 +637559.156|221282.246|124.971 +637553.745|221284.173|124.895 +637537.201|221290.028|125.340 +637531.803|221291.960|125.054 +637520.854|221295.874|124.590 +637515.408|221297.822|124.276 +637510.007|221299.763|123.828 +637504.545|221301.729|123.368 +637493.657|221305.646|122.353 +637488.219|221307.603|121.835 +637482.696|221309.587|121.402 +637471.687|221313.559|120.216 +637466.137|221315.543|119.912 +637460.611|221317.536|119.305 +637454.761|221319.584|119.893 +637449.214|221321.569|119.634 +637443.444|221323.614|119.732 +637425.760|221329.807|121.561 +637419.944|221331.856|121.917 +637414.186|221333.904|121.817 +637402.470|221338.034|122.466 +637396.630|221340.094|122.749 +637385.081|221344.218|122.350 +637379.235|221346.291|122.460 +637373.459|221348.348|122.307 +637367.649|221350.427|122.045 +637361.809|221352.521|121.658 +637355.924|221354.594|122.009 +637350.255|221356.648|121.213 +637338.422|221360.851|121.183 +637320.320|221367.216|122.512 +637314.233|221369.352|123.045 +637301.925|221373.653|124.505 +637295.945|221375.768|124.670 +637289.898|221377.893|125.130 +637271.747|221384.306|125.886 +637265.709|221386.452|125.843 +637259.732|221388.576|125.822 +637253.617|221390.731|126.163 +637247.543|221392.880|126.346 +637241.508|221395.023|126.373 +637235.348|221397.196|126.696 +637229.285|221399.339|126.888 +637223.183|221401.503|126.998 +637217.066|221403.667|127.190 +637210.921|221405.831|127.550 +637204.752|221408.013|127.739 +637198.619|221410.174|128.083 +637192.423|221412.357|128.464 +637186.238|221414.536|128.803 +637161.452|221423.299|129.717 +637155.377|221425.460|129.613 +637149.150|221427.670|129.677 +637143.069|221429.849|129.303 +637124.605|221436.433|128.827 +637118.484|221438.627|128.385 +637112.373|221440.822|127.928 +637106.195|221443.038|127.489 +637100.138|221445.229|126.739 +637093.969|221447.442|126.279 +637087.724|221449.661|126.264 +637057.067|221460.732|122.707 +637038.273|221467.413|122.606 +637089.080|221452.578|126.148 +637095.182|221450.408|126.270 +637107.274|221446.055|127.519 +637125.510|221439.520|128.763 +637149.830|221430.858|129.443 +637155.886|221428.700|129.616 +637161.961|221426.539|129.717 +637168.014|221424.396|129.613 +637192.532|221415.749|128.516 +637198.659|221413.591|128.156 +637204.761|221411.436|127.949 +637210.814|221409.303|127.696 +637216.895|221407.163|127.340 +637223.012|221405.002|127.114 +637228.996|221402.886|126.962 +637235.089|221400.725|126.910 +637241.163|221398.583|126.675 +637247.144|221396.464|126.593 +637265.200|221390.088|125.968 +637271.238|221387.942|125.998 +637277.194|221385.836|125.852 +637289.258|221381.587|125.209 +637295.232|221379.475|125.047 +637301.224|221377.372|124.551 +637307.174|221375.262|124.526 +637319.329|221371.029|122.914 +637325.383|221368.898|122.527 +637343.201|221362.622|121.597 +637349.099|221360.537|121.402 +637366.433|221354.347|122.182 +637372.209|221352.293|122.298 +637377.863|221350.269|122.664 +637389.473|221346.142|122.765 +637395.210|221344.100|122.850 +637401.022|221342.045|122.664 +637418.469|221335.888|121.935 +637424.193|221333.858|121.908 +637430.045|221331.804|121.426 +637447.580|221325.653|119.933 +637453.283|221323.632|119.845 +637464.658|221319.606|119.604 +637470.154|221317.631|120.082 +637486.546|221311.721|121.951 +637513.701|221301.970|124.225 +637519.154|221300.019|124.499 +637524.582|221298.075|124.865 +637529.962|221296.148|125.194 +637535.384|221294.213|125.383 +637551.941|221288.361|124.855 +637557.312|221286.456|124.831 +637562.786|221284.520|124.712 +637578.831|221278.796|125.236 +637563.258|221286.059|124.606 +637557.812|221287.998|124.639 +637552.429|221289.921|124.474 +637535.784|221295.804|125.328 +637530.373|221297.739|125.096 +637524.908|221299.696|124.837 +637519.544|221301.626|124.481 +637514.094|221303.579|124.197 +637503.240|221307.487|123.280 +637492.313|221311.428|122.207 +637486.830|221313.397|121.878 +637470.504|221319.298|120.027 +637453.503|221325.360|119.805 +637442.106|221329.408|119.979 +637430.277|221333.550|121.366 +637424.428|221335.608|121.847 +637418.646|221337.665|121.847 +637412.787|221339.723|122.414 +637406.935|221341.789|122.728 +637401.077|221343.868|122.835 +637395.316|221345.919|122.822 +637389.546|221347.971|122.880 +637383.761|221350.034|122.752 +637377.891|221352.125|122.725 +637372.179|221354.179|122.332 +637354.759|221360.412|121.618 +637331.061|221368.825|122.064 +637325.038|221370.943|122.573 +637319.058|221373.053|122.929 +637306.793|221377.341|124.484 +637300.855|221379.456|124.453 +637294.723|221381.608|125.014 +637282.644|221385.876|125.694 +637276.618|221388.012|125.846 +637270.607|221390.146|125.974 +637264.578|221392.295|125.901 +637258.574|221394.425|126.032 +637252.438|221396.583|126.504 +637246.366|221398.735|126.700 +637240.325|221400.881|126.767 +637234.284|221403.027|126.867 +637228.188|221405.194|126.949 +637222.132|221407.337|127.157 +637191.432|221418.200|128.440 +637172.870|221424.759|129.354 +637166.612|221426.963|129.842 +637160.562|221429.127|129.613 +637154.429|221431.315|129.513 +637129.798|221440.100|129.129 +637123.757|221442.273|128.617 +637117.582|221444.495|128.156 +637111.550|221446.668|127.620 +637093.119|221453.297|126.175 +637086.922|221455.498|126.276 +637037.480|221473.265|122.728 +637036.785|221476.795|122.765 +637043.009|221474.585|122.746 +637061.584|221467.977|123.030 +637067.817|221465.764|123.042 +637073.858|221463.578|123.850 +637092.040|221457.022|125.941 +637110.267|221450.475|127.495 +637116.299|221448.305|128.050 +637122.416|221446.113|128.473 +637128.482|221443.940|128.864 +637146.636|221437.457|129.644 +637152.744|221435.293|129.537 +637158.806|221433.135|129.674 +637164.969|221430.949|129.644 +637171.044|221428.801|129.437 +637177.125|221426.655|129.226 +637183.269|221424.482|129.016 +637189.402|221422.327|128.595 +637195.486|221420.175|128.431 +637201.615|221418.017|128.065 +637207.635|221415.883|127.955 +637213.783|221413.722|127.550 +637219.824|221411.585|127.382 +637225.954|221409.424|127.114 +637231.989|221407.285|127.020 +637237.981|221405.166|126.846 +637256.123|221398.753|126.276 +637262.128|221396.629|126.136 +637268.126|221394.504|126.041 +637274.112|221392.380|126.026 +637280.068|221390.274|125.874 +637286.073|221388.158|125.535 +637292.163|221386.016|125.115 +637298.158|221383.900|124.862 +637304.181|221381.779|124.508 +637310.076|221379.691|124.462 +637322.231|221375.439|123.121 +637328.239|221373.330|122.658 +637334.289|221371.215|122.048 +637351.903|221364.975|121.771 +637357.490|221362.948|122.609 +637363.504|221360.845|121.993 +637369.177|221358.806|122.521 +637374.876|221356.761|122.947 +637380.695|221354.697|122.917 +637386.480|221352.637|123.024 +637392.216|221350.598|123.100 +637398.005|221348.550|122.981 +637403.802|221346.498|122.847 +637409.553|221344.453|122.902 +637415.384|221342.408|122.432 +637421.304|221340.335|121.890 +637427.019|221338.305|121.896 +637444.621|221332.148|120.079 +637450.321|221330.128|119.973 +637461.851|221326.055|119.601 +637467.395|221324.071|119.884 +637494.696|221314.250|122.560 +637500.079|221312.306|123.271 +637505.617|221310.331|123.435 +637510.982|221308.401|123.993 +637516.420|221306.457|124.304 +637521.851|221304.512|124.651 +637527.222|221302.589|124.990 +637538.054|221298.724|125.398 +637554.660|221292.875|124.465 +637565.550|221289.013|124.383 +637581.434|221283.335|125.221 +637563.405|221291.012|124.325 +637557.940|221292.957|124.420 +637530.303|221302.775|125.105 +637524.847|221304.732|124.825 +637519.401|221306.688|124.520 +637513.975|221308.642|124.151 +637503.014|221312.586|123.380 +637492.118|221316.518|122.435 +637470.166|221324.458|120.061 +637464.658|221326.442|119.634 +637453.210|221330.509|119.924 +637447.434|221332.563|120.055 +637441.615|221334.620|120.351 +637424.050|221340.811|121.817 +637418.158|221342.890|122.240 +637406.429|221347.035|122.957 +637400.684|221349.086|122.880 +637394.783|221351.174|123.176 +637383.161|221355.319|123.109 +637377.367|221357.389|123.042 +637371.575|221359.468|122.719 +637365.818|221361.543|122.265 +637359.831|221363.653|122.765 +637354.040|221365.743|122.225 +637336.359|221372.044|122.237 +637330.336|221374.180|122.460 +637324.304|221376.317|122.746 +637318.238|221378.441|123.478 +637306.037|221382.739|124.496 +637299.990|221384.873|124.944 +637293.958|221387.015|125.081 +637287.904|221389.161|125.319 +637281.812|221391.310|125.767 +637275.789|221393.450|125.925 +637269.711|221395.611|126.072 +637263.722|221397.741|126.108 +637239.435|221406.361|126.858 +637233.327|221408.531|126.989 +637227.216|221410.702|127.132 +637221.095|221412.872|127.355 +637214.990|221415.042|127.532 +637196.525|221421.583|128.294 +637190.356|221423.768|128.559 +637184.190|221425.954|128.851 +637165.597|221432.537|129.680 +637159.495|221434.711|129.723 +637153.286|221436.924|129.684 +637147.145|221439.115|129.665 +637128.744|221445.714|128.854 +637122.620|221447.918|128.434 +637116.442|221450.140|127.992 +637110.352|221452.337|127.425 +637098.099|221456.757|126.361 +637091.933|221458.979|125.910 +637073.587|221465.627|123.670 +637067.464|221467.843|122.996 +637055.006|221472.283|122.950 +637042.467|221476.764|122.737 +637036.130|221479.004|123.085 +637045.323|221479.340|122.786 +637051.535|221477.130|122.871 +637057.692|221474.941|122.923 +637063.913|221472.732|122.984 +637088.217|221463.965|125.739 +637094.347|221461.774|126.038 +637100.391|221459.607|126.477 +637106.408|221457.421|127.458 +637112.531|221455.248|127.465 +637118.624|221453.057|128.038 +637124.665|221450.886|128.534 +637142.832|221444.385|129.568 +637148.952|221442.206|129.690 +637155.033|221440.045|129.729 +637161.120|221437.884|129.729 +637167.231|221435.720|129.644 +637173.357|221433.549|129.488 +637179.496|221431.379|129.309 +637185.616|221429.227|128.906 +637191.731|221427.072|128.571 +637197.830|221424.917|128.327 +637216.200|221418.440|127.398 +637222.272|221416.285|127.388 +637228.267|221414.167|127.157 +637234.375|221412.006|127.017 +637240.410|221409.866|126.943 +637246.479|221407.724|126.733 +637258.503|221403.459|126.605 +637276.554|221397.077|126.075 +637282.519|221394.968|125.889 +637288.584|221392.831|125.560 +637294.552|221390.719|125.398 +637300.551|221388.604|125.124 +637306.628|221386.476|124.526 +637312.581|221384.364|124.505 +637318.671|221382.242|123.636 +637336.752|221375.902|122.006 +637342.726|221373.796|121.731 +637348.401|221371.745|122.451 +637354.257|221369.666|122.445 +637360.075|221367.594|122.606 +637371.706|221363.457|122.728 +637377.452|221361.406|122.972 +637383.213|221359.349|123.170 +637389.004|221357.285|123.264 +637394.853|221355.216|123.139 +637406.445|221351.110|122.862 +637412.248|221349.053|122.728 +637418.121|221346.986|122.335 +637429.832|221342.865|121.506 +637447.352|221336.714|120.009 +637453.052|221334.693|119.912 +637470.059|221328.643|120.070 +637475.720|221326.625|120.192 +637491.965|221320.749|122.329 +637497.418|221318.789|122.777 +637502.850|221316.832|123.298 +637508.309|221314.872|123.752 +637513.807|221312.903|124.066 +637524.640|221309.026|124.627 +637530.102|221307.075|124.880 +637535.518|221305.128|125.300 +637557.674|221297.316|124.136 +637563.136|221295.377|124.029 +637568.096|221294.579|124.276 +637562.740|221296.496|124.002 +637557.284|221298.434|124.090 +637535.134|221306.268|125.258 +637529.715|221308.218|124.843 +637524.299|221310.157|124.657 +637518.852|221312.111|124.374 +637513.454|221314.055|123.923 +637507.913|221316.040|123.761 +637502.454|221318.006|123.316 +637497.040|221319.962|122.728 +637475.272|221327.845|120.177 +637469.669|221329.844|120.091 +637452.652|221335.913|119.976 +637446.934|221337.940|120.146 +637441.082|221340.003|120.604 +637435.184|221342.073|121.247 +637429.314|221344.136|121.807 +637423.498|221346.203|121.945 +637411.806|221350.327|122.746 +637400.156|221354.466|122.972 +637394.252|221356.554|123.307 +637388.446|221358.623|123.258 +637382.649|221360.693|123.210 +637376.882|221362.756|123.036 +637371.152|221364.823|122.481 +637359.316|221369.029|122.676 +637353.510|221371.108|122.475 +637347.679|221373.190|122.405 +637293.507|221392.337|125.468 +637287.435|221394.483|125.819 +637281.443|221396.620|125.834 +637269.382|221400.908|125.983 +637257.266|221405.215|126.178 +637238.944|221411.698|127.038 +637232.906|221413.844|127.154 +637226.807|221416.011|127.266 +637220.626|221418.203|127.486 +637196.102|221426.886|128.595 +637189.884|221429.090|128.824 +637183.687|221431.276|129.287 +637177.548|221433.452|129.473 +637171.358|221435.649|129.613 +637165.180|221437.844|129.738 +637159.029|221440.036|129.732 +637152.875|221442.227|129.748 +637146.730|221444.416|129.754 +637128.366|221451.005|128.793 +637122.267|221453.206|128.278 +637116.152|221455.407|127.836 +637109.986|221457.629|127.352 +637103.881|221459.832|126.898 +637097.739|221462.054|126.288 +637091.649|221464.252|125.761 +637085.471|221466.477|125.386 +637079.351|221468.696|124.694 +637073.258|221470.930|123.453 +637060.874|221475.374|122.969 +637054.650|221477.596|122.944 +637048.310|221479.861|122.890 +637036.161|221487.600|124.292 +637042.510|221485.387|123.414 +637048.801|221483.174|122.935 +637055.019|221480.964|122.960 +637061.160|221478.776|123.078 +637067.320|221476.584|123.103 +637073.465|221474.377|123.621 +637079.491|221472.192|124.478 +637085.575|221470.007|125.017 +637091.616|221467.839|125.422 +637109.761|221461.298|127.346 +637115.814|221459.128|127.742 +637121.874|221456.955|128.117 +637127.899|221454.788|128.690 +637133.889|221452.639|129.120 +637145.977|221448.311|129.775 +637152.110|221446.129|129.808 +637158.114|221443.992|129.885 +637164.210|221441.831|129.842 +637170.300|221439.667|129.833 +637176.369|221437.521|129.629 +637200.765|221428.910|128.446 +637206.864|221426.755|128.205 +637212.905|221424.619|127.971 +637219.004|221422.461|127.772 +637225.067|221420.321|127.480 +637231.114|221418.184|127.285 +637237.088|221416.066|127.160 +637243.178|221413.905|127.090 +637249.173|221411.784|126.913 +637273.158|221403.289|126.355 +637279.169|221401.161|126.209 +637285.122|221399.055|126.047 +637291.117|221396.940|125.727 +637321.049|221386.400|123.822 +637350.599|221375.951|122.740 +637356.378|221373.885|123.018 +637362.230|221371.806|123.027 +637373.819|221367.688|123.011 +637420.078|221351.293|122.326 +637425.949|221349.226|121.960 +637431.743|221347.184|121.649 +637449.178|221341.064|120.168 +637454.883|221339.043|120.030 +637466.246|221335.010|120.003 +637471.855|221333.017|120.040 +637477.414|221331.030|120.268 +637488.186|221327.131|121.792 +637499.113|221323.202|122.804 +637504.545|221321.249|123.310 +637515.353|221317.372|124.106 +637520.797|221315.424|124.389 +637559.262|221301.787|123.911 +637564.691|221299.861|123.911 +637570.055|221297.956|123.911 +637580.729|221294.143|124.374 +637586.195|221292.216|124.090 +637572.850|221298.748|123.758 +637567.401|221300.690|123.807 +637562.015|221302.610|123.871 +637556.544|221304.555|124.026 +637550.917|221306.536|124.493 +637523.470|221316.317|124.535 +637518.041|221318.268|124.194 +637512.607|221320.218|123.892 +637507.151|221322.187|123.438 +637501.676|221324.156|123.063 +637496.239|221326.119|122.579 +637490.758|221328.101|122.015 +637485.309|221330.064|121.588 +637479.932|221332.023|120.674 +637474.479|221333.998|120.040 +637468.892|221335.995|119.906 +637457.465|221340.058|120.155 +637451.811|221342.076|120.082 +637440.268|221346.163|120.640 +637434.401|221348.227|121.189 +637428.527|221350.290|121.786 +637422.681|221352.363|122.045 +637399.227|221360.644|123.606 +637376.041|221368.932|123.136 +637358.533|221375.174|123.118 +637352.675|221377.274|122.883 +637322.850|221387.835|124.267 +637316.918|221389.954|124.179 +637310.853|221392.090|124.703 +637280.647|221402.792|126.032 +637274.640|221404.926|126.157 +637262.521|221409.220|126.660 +637256.571|221411.360|126.297 +637250.426|221413.524|126.858 +637244.376|221415.673|126.995 +637238.323|221417.822|127.166 +637232.236|221419.989|127.215 +637226.115|221422.159|127.452 +637219.989|221424.329|127.742 +637213.896|221426.493|127.897 +637207.721|221428.682|128.175 +637201.573|221430.864|128.333 +637195.373|221433.053|128.775 +637189.222|221435.235|128.995 +637183.068|221437.414|129.248 +637176.850|221439.618|129.552 +637170.718|221441.794|129.738 +637164.552|221443.986|129.808 +637158.398|221446.180|129.839 +637152.277|221448.369|129.711 +637146.075|221450.579|129.705 +637139.912|221452.785|129.495 +637133.809|221454.986|128.986 +637127.756|221457.165|128.544 +637121.669|221459.363|127.964 +637115.488|221461.585|127.574 +637109.361|221463.786|127.245 +637103.281|221465.980|126.654 +637097.154|221468.196|125.986 +637091.037|221470.412|125.279 +637084.855|221472.631|124.935 +637078.714|221474.847|124.398 +637072.590|221477.063|123.737 +637066.476|221479.276|123.039 +637060.194|221481.516|123.002 +637053.924|221483.756|122.905 +637047.722|221485.972|122.792 +637041.388|221488.209|123.149 +637034.935|221490.453|124.310 +637045.618|221489.992|122.999 +637051.858|221487.780|122.871 +637057.990|221485.588|123.030 +637064.230|221483.369|122.941 +637070.335|221481.178|123.301 +637076.416|221478.989|123.831 +637082.505|221476.795|124.310 +637088.550|221474.606|125.075 +637094.646|221472.415|125.532 +637100.708|221470.223|126.221 +637112.821|221465.855|127.294 +637118.862|221463.682|127.757 +637124.915|221461.509|128.160 +637137.001|221457.159|129.123 +637149.028|221452.843|129.775 +637161.245|221448.494|129.802 +637167.271|221446.348|129.784 +637173.373|221444.178|129.726 +637179.450|221442.026|129.467 +637185.589|221439.853|129.263 +637191.673|221437.698|129.031 +637197.717|221435.561|128.714 +637203.892|221433.376|128.379 +637209.927|221431.239|128.156 +637215.947|221429.102|128.025 +637222.065|221426.938|127.751 +637228.054|221424.817|127.495 +637234.159|221422.653|127.324 +637240.118|221420.534|127.266 +637246.113|221418.410|127.062 +637252.167|221416.261|126.901 +637258.223|221414.112|126.742 +637276.191|221407.742|126.169 +637282.208|221405.608|125.995 +637288.215|221403.475|125.883 +637294.196|221401.359|125.630 +637318.095|221392.910|124.371 +637324.127|221390.780|124.008 +637353.580|221380.328|123.335 +637359.438|221378.243|123.292 +637365.339|221376.152|123.088 +637371.121|221374.092|123.121 +637376.903|221372.031|123.182 +637399.888|221363.832|123.664 +637417.430|221357.645|122.640 +637423.260|221355.594|122.152 +637434.904|221351.494|121.326 +637440.707|221349.446|121.006 +637457.980|221343.344|120.223 +637475.076|221337.275|120.021 +637480.520|221335.306|120.677 +637485.854|221333.368|121.518 +637491.341|221331.392|122.033 +637507.748|221325.491|123.392 +637518.605|221321.590|124.258 +637524.189|221319.615|124.048 +637529.776|221317.649|123.618 +637535.250|221315.692|123.831 +637540.880|221313.717|123.295 +637546.308|221311.779|123.463 +637551.712|221309.855|123.508 +637557.056|221307.941|123.767 +637562.472|221306.015|123.804 +637567.891|221304.085|123.834 +637573.323|221302.156|123.844 +637578.663|221300.251|123.953 +637584.009|221298.346|124.063 +637589.386|221296.432|124.078 +637572.786|221304.482|123.865 +637562.006|221308.334|123.831 +637556.601|221310.267|123.767 +637551.216|221312.196|123.661 +637545.735|221314.153|123.664 +637540.261|221316.110|123.664 +637534.836|221318.054|123.511 +637529.456|221319.990|123.207 +637523.948|221321.962|123.139 +637518.312|221323.967|123.307 +637512.695|221325.955|123.661 +637507.245|221327.924|123.203 +637501.704|221329.911|123.088 +637496.263|221331.877|122.615 +637485.415|221335.824|121.125 +637479.923|221337.808|120.649 +637468.749|221341.826|120.177 +637462.753|221343.908|121.356 +637445.837|221349.976|120.799 +637440.040|221352.034|121.079 +637434.224|221354.094|121.457 +637428.360|221356.157|122.036 +637422.599|221358.206|122.249 +637416.671|221360.294|122.874 +637399.126|221366.518|123.709 +637381.765|221372.733|123.472 +637376.025|221374.793|123.234 +637364.339|221378.972|123.124 +637358.457|221381.066|123.252 +637352.605|221383.154|123.289 +637340.784|221387.375|123.359 +637334.752|221389.512|123.658 +637322.835|221393.755|123.999 +637310.862|221398.010|124.380 +637292.669|221404.450|125.596 +637286.618|221406.596|125.889 +637280.614|221408.736|125.998 +637274.591|221410.875|126.221 +637262.484|221415.176|126.700 +637256.382|221417.352|126.770 +637250.402|221419.483|126.879 +637244.278|221421.659|127.084 +637238.179|221423.832|127.193 +637232.147|221425.981|127.315 +637226.030|221428.151|127.559 +637219.894|221430.328|127.931 +637213.804|221432.492|128.080 +637207.654|221434.683|128.263 +637201.554|221436.847|128.504 +637195.376|221439.036|128.873 +637189.244|221441.218|129.016 +637183.093|221443.404|129.284 +637176.878|221445.607|129.595 +637170.764|221447.787|129.714 +637164.524|221450.006|129.863 +637158.462|221452.176|129.772 +637152.247|221454.392|129.824 +637146.145|221456.583|129.644 +637140.018|221458.790|129.251 +637133.895|221460.994|128.864 +637127.784|221463.197|128.437 +637121.697|221465.401|127.861 +637115.573|221467.605|127.507 +637109.450|221469.808|127.190 +637103.354|221472.024|126.343 +637097.227|221474.243|125.672 +637091.174|221476.441|124.959 +637084.968|221478.684|124.432 +637078.830|221480.903|123.859 +637060.301|221487.584|122.551 +637047.743|221492.050|122.917 +637034.917|221496.539|124.734 +637035.999|221499.792|124.993 +637048.727|221495.357|123.005 +637079.515|221484.347|123.880 +637085.663|221482.135|124.389 +637091.689|221479.961|124.889 +637097.752|221477.770|125.544 +637103.796|221475.581|126.331 +637115.875|221471.217|127.596 +637121.941|221469.040|127.910 +637128.027|221466.861|128.132 +637133.965|221464.712|128.851 +637140.088|221462.512|129.242 +637146.096|221460.357|129.577 +637152.198|221458.174|129.775 +637158.264|221456.010|129.839 +637164.335|221453.843|129.888 +637170.370|221451.697|129.815 +637176.463|221449.530|129.793 +637182.623|221447.351|129.455 +637188.646|221445.220|129.187 +637194.794|221443.041|128.949 +637200.881|221440.883|128.723 +637206.919|221438.746|128.455 +637213.021|221436.585|128.214 +637219.044|221434.449|128.056 +637225.167|221432.281|127.748 +637231.215|221430.139|127.535 +637237.189|221428.017|127.385 +637243.279|221425.853|127.306 +637249.280|221423.729|127.062 +637255.242|221421.604|127.032 +637261.317|221419.452|126.782 +637267.315|221417.325|126.629 +637279.355|221413.058|126.187 +637285.320|221410.945|125.947 +637291.273|221408.833|125.791 +637297.301|221406.693|125.608 +637315.254|221400.347|124.645 +637321.183|221398.247|124.432 +637338.946|221391.953|123.725 +637344.902|221389.844|123.469 +637350.599|221387.787|124.066 +637356.619|221385.680|123.322 +637362.386|221383.623|123.383 +637374.017|221379.478|123.429 +637379.878|221377.390|123.429 +637385.532|221375.360|123.755 +637391.259|221373.318|123.810 +637397.066|221371.248|123.828 +637408.636|221367.139|123.557 +637420.316|221363.022|122.697 +637426.144|221360.955|122.466 +637431.981|221358.901|121.981 +637437.802|221356.846|121.573 +637443.505|221354.822|121.387 +637449.257|221352.780|121.283 +637483.004|221340.738|121.698 +637493.922|221336.787|122.917 +637499.457|221334.809|123.033 +637504.996|221332.831|123.161 +637510.442|221330.880|123.389 +637515.999|221328.896|123.475 +637521.531|221326.927|123.429 +637526.978|221324.986|123.478 +637532.480|221323.023|123.569 +637543.401|221319.127|123.639 +637548.850|221317.183|123.728 +637554.303|221315.235|123.822 +637559.695|221313.309|123.917 +637565.115|221311.379|123.935 +637570.470|221309.468|123.956 +637575.892|221307.536|123.999 +637581.248|221305.625|124.051 +637586.542|221303.738|124.109 +637591.910|221301.824|124.145 +637571.951|221310.764|123.773 +637566.581|221312.684|123.798 +637561.161|221314.622|123.767 +637555.690|221316.582|123.731 +637550.304|221318.512|123.645 +637544.821|221320.471|123.679 +637539.392|221322.419|123.533 +637528.468|221326.339|123.307 +637517.425|221330.289|123.319 +637511.915|221332.258|123.319 +637506.361|221334.248|123.249 +637500.722|221336.266|123.267 +637495.160|221338.253|123.258 +637489.600|221340.244|123.252 +637478.448|221344.246|122.954 +637439.201|221358.358|121.442 +637433.413|221360.425|121.494 +637427.464|221362.506|122.426 +637421.700|221364.558|122.673 +637415.845|221366.630|123.033 +637409.989|221368.706|123.423 +637404.131|221370.794|123.603 +637398.364|221372.851|123.679 +637392.555|221374.930|123.697 +637386.751|221377.003|123.697 +637381.036|221379.063|123.365 +637375.187|221381.157|123.338 +637369.478|221383.215|123.005 +637363.465|221385.345|123.420 +637357.643|221387.433|123.338 +637351.599|221389.564|123.926 +637345.859|221391.636|123.523 +637322.006|221400.131|124.276 +637316.035|221402.259|124.420 +637310.018|221404.392|124.776 +637304.019|221406.523|125.078 +637297.966|221408.675|125.368 +637291.967|221410.802|125.715 +637285.963|221412.945|125.831 +637279.940|221415.088|126.044 +637267.846|221419.391|126.480 +637261.774|221421.549|126.703 +637255.757|221423.689|126.983 +637249.667|221425.862|127.044 +637243.672|221427.996|127.269 +637237.591|221430.169|127.312 +637231.489|221432.342|127.492 +637225.442|221434.491|127.724 +637219.245|221436.689|128.108 +637213.167|221438.856|128.236 +637207.068|221441.026|128.489 +637200.920|221443.215|128.693 +637194.843|221445.379|128.891 +637188.634|221447.585|129.144 +637182.483|221449.771|129.431 +637176.277|221451.978|129.705 +637170.200|221454.151|129.677 +637164.012|221456.355|129.903 +637157.898|221458.546|129.760 +637145.611|221462.954|129.522 +637139.552|221465.139|129.129 +637121.215|221471.756|127.885 +637115.110|221473.960|127.465 +637102.994|221478.358|126.084 +637096.889|221480.580|125.319 +637090.808|221482.781|124.788 +637084.615|221485.024|124.182 +637078.516|221487.225|123.773 +637072.334|221489.468|123.136 +637066.135|221491.690|122.981 +637059.886|221493.933|122.774 +637047.350|221498.402|123.069 +637034.524|221502.876|125.361 +637052.598|221500.383|123.377 +637058.844|221498.185|122.813 +637065.077|221495.970|122.746 +637077.293|221491.565|123.853 +637083.429|221489.371|124.057 +637089.513|221487.176|124.587 +637095.572|221484.985|125.264 +637101.656|221482.793|125.816 +637107.648|221480.605|126.904 +637113.726|221478.428|127.157 +637119.752|221476.255|127.705 +637131.987|221471.878|128.156 +637137.900|221469.729|129.019 +637143.962|221467.550|129.406 +637156.136|221463.207|129.632 +637162.165|221461.045|129.903 +637168.249|221458.878|129.912 +637174.366|221456.708|129.754 +637180.404|221454.559|129.717 +637186.567|221452.380|129.360 +637192.645|221450.228|129.162 +637198.726|221448.070|128.952 +637204.837|221445.912|128.623 +637210.836|221443.779|128.574 +637216.932|221441.617|128.361 +637222.976|221439.478|128.120 +637229.051|221437.332|127.757 +637235.162|221435.165|127.550 +637241.154|221433.043|127.324 +637247.183|221430.901|127.251 +637253.236|221428.752|127.077 +637265.224|221424.500|126.770 +637271.244|221422.366|126.526 +637277.273|221420.233|126.267 +637283.305|221418.096|126.008 +637289.328|221415.962|125.816 +637295.290|221413.847|125.642 +637301.325|221411.723|125.151 +637307.253|221409.610|125.166 +637319.201|221405.386|124.578 +637325.136|221403.283|124.337 +637331.107|221401.173|123.972 +637342.930|221396.973|123.813 +637348.822|221394.885|123.588 +637354.705|221392.801|123.414 +637360.389|221390.743|124.081 +637366.339|221388.646|123.661 +637372.234|221386.567|123.231 +637377.946|221384.516|123.563 +637383.795|221382.431|123.609 +637389.525|221380.389|123.636 +637395.341|221378.320|123.603 +637401.104|221376.268|123.523 +637406.960|221374.202|123.106 +637412.790|221372.141|122.804 +637418.609|221370.078|122.579 +637424.184|221368.069|123.066 +637429.975|221366.009|122.975 +637435.657|221363.982|123.082 +637446.956|221359.943|123.335 +637452.668|221357.907|123.371 +637458.312|221355.892|123.429 +637463.985|221353.871|123.405 +637469.672|221351.848|123.338 +637475.238|221349.857|123.502 +637480.910|221347.849|123.292 +637486.540|221345.843|123.252 +637492.148|221343.844|123.310 +637497.690|221341.865|123.380 +637503.304|221339.863|123.444 +637508.885|221337.876|123.420 +637514.402|221335.913|123.392 +637519.916|221333.947|123.392 +637525.417|221331.984|123.463 +637530.931|221330.018|123.499 +637536.381|221328.073|123.545 +637541.849|221326.125|123.539 +637547.296|221324.181|123.627 +637552.773|221322.230|123.633 +637558.229|221320.282|123.712 +637563.627|221318.356|123.792 +637569.053|221316.424|123.783 +637574.399|221314.516|123.847 +637579.836|221312.580|123.828 +637585.207|221310.666|123.834 +637590.511|221308.776|123.856 +637595.826|221306.871|124.063 +637573.170|221316.323|123.728 +637567.766|221318.262|123.645 +637562.429|221320.176|123.575 +637556.961|221322.139|123.523 +637551.533|221324.080|123.563 +637546.061|221326.040|123.548 +637540.572|221328.003|123.612 +637535.040|221329.984|123.612 +637529.535|221331.959|123.527 +637524.030|221333.934|123.456 +637518.465|221335.931|123.392 +637512.890|221337.927|123.371 +637507.379|221339.902|123.377 +637501.811|221341.899|123.371 +637496.190|221343.914|123.331 +637490.530|221345.934|123.447 +637484.937|221347.943|123.347 +637479.331|221349.952|123.298 +637467.984|221354.015|123.277 +637462.318|221356.045|123.271 +637456.639|221358.078|123.325 +637450.897|221360.129|123.392 +637445.154|221362.183|123.475 +637439.433|221364.229|123.490 +637433.727|221366.274|123.478 +637428.040|221368.313|123.405 +637422.282|221370.376|123.365 +637416.509|221372.455|123.164 +637410.840|221374.503|122.813 +637405.021|221376.573|123.063 +637399.132|221378.667|123.371 +637393.213|221380.779|123.557 +637387.394|221382.858|123.618 +637381.545|221384.943|123.822 +637369.878|221389.131|123.639 +637364.013|221391.228|123.694 +637358.076|221393.349|123.807 +637346.271|221397.577|123.813 +637340.327|221399.692|124.008 +637334.347|221401.829|124.124 +637316.379|221408.236|124.688 +637310.310|221410.394|124.993 +637304.361|221412.521|125.078 +637298.274|221414.679|125.505 +637292.214|221416.831|125.831 +637280.099|221421.150|126.267 +637274.018|221423.317|126.471 +637267.995|221425.460|126.736 +637261.868|221427.645|126.913 +637255.824|221429.803|127.017 +637249.762|221431.964|127.227 +637243.657|221434.144|127.370 +637237.609|221436.299|127.556 +637231.434|221438.499|127.775 +637225.289|221440.679|128.178 +637219.181|221442.855|128.428 +637213.042|221445.046|128.541 +637206.962|221447.217|128.696 +637200.744|221449.433|128.931 +637194.660|221451.600|129.159 +637188.469|221453.809|129.299 +637182.242|221456.019|129.659 +637176.128|221458.205|129.793 +637169.962|221460.408|129.869 +637163.823|221462.606|129.836 +637157.611|221464.828|129.876 +637145.349|221469.239|129.473 +637139.275|221471.430|129.165 +637133.182|221473.655|128.275 +637127.040|221475.868|128.010 +637114.747|221480.306|127.221 +637102.516|221484.741|126.133 +637096.438|221486.963|125.194 +637090.266|221489.191|124.816 +637084.087|221491.419|124.490 +637077.921|221493.647|124.109 +637065.586|221498.115|123.030 +637059.310|221500.365|122.981 +637036.246|221512.368|125.715 +637042.549|221510.155|125.081 +637049.005|221507.933|123.487 +637061.523|221503.504|122.950 +637067.729|221501.288|123.048 +637079.845|221496.908|124.359 +637092.125|221492.501|125.081 +637104.268|221488.118|126.303 +637110.236|221485.951|127.169 +637116.387|221483.750|127.330 +637122.401|221481.580|127.949 +637128.512|221479.382|128.367 +637134.556|221477.206|128.833 +637140.610|221475.030|129.257 +637146.706|221472.850|129.452 +637158.846|221468.510|129.845 +637164.911|221466.346|129.921 +637177.049|221462.030|129.769 +637189.301|221457.684|129.415 +637195.394|221455.529|129.132 +637207.486|221451.240|128.784 +637213.618|221449.061|128.675 +637219.657|221446.924|128.446 +637237.868|221440.474|127.693 +637255.986|221434.055|127.004 +637262.118|221431.897|126.480 +637268.041|221429.779|126.678 +637274.051|221427.652|126.468 +637280.083|221425.515|126.191 +637286.103|221423.381|125.992 +637292.129|221421.260|125.489 +637298.112|221419.129|125.508 +637304.150|221417.005|124.999 +637310.060|221414.908|124.807 +637316.120|221412.765|124.548 +637321.993|221410.671|124.548 +637333.850|221406.471|124.164 +637339.772|221404.368|124.020 +637345.695|221402.265|123.908 +637357.484|221398.077|123.685 +637369.195|221393.925|123.350 +637374.953|221391.868|123.472 +637380.762|221389.789|123.664 +637386.517|221387.732|123.840 +637392.296|221385.680|123.679 +637398.102|221383.614|123.670 +637403.881|221381.560|123.533 +637409.645|221379.508|123.493 +637415.409|221377.457|123.450 +637426.967|221373.345|123.325 +637432.673|221371.312|123.322 +637438.162|221369.316|124.154 +637444.042|221367.264|123.277 +637449.760|221365.228|123.277 +637455.490|221363.186|123.243 +637461.174|221361.165|123.161 +637466.826|221359.151|123.216 +637472.486|221357.130|123.255 +637478.094|221355.133|123.271 +637483.760|221353.113|123.325 +637489.372|221351.110|123.353 +637494.986|221349.107|123.383 +637500.579|221347.120|123.274 +637506.184|221345.130|123.142 +637511.710|221343.152|123.310 +637517.221|221341.189|123.313 +637522.775|221339.208|123.423 +637528.322|221337.235|123.322 +637533.766|221335.282|123.612 +637539.310|221333.310|123.560 +637544.714|221331.371|123.783 +637550.112|221329.436|124.045 +637555.498|221327.512|124.127 +637560.936|221325.568|124.273 +637566.169|221323.675|124.907 +637571.646|221321.730|124.731 +637577.020|221319.819|124.691 +637582.476|221317.878|124.615 +637587.789|221315.976|124.810 +637593.031|221314.098|125.032 +637598.323|221312.199|125.328 +637562.210|221326.540|124.602 +637556.922|221328.451|124.176 +637551.408|221330.417|124.310 +637540.673|221334.291|123.615 +637535.204|221336.245|123.642 +637529.727|221338.211|123.478 +637524.250|221340.177|123.328 +637518.745|221342.149|123.298 +637513.177|221344.139|123.283 +637507.660|221346.123|123.082 +637502.067|221348.117|123.182 +637496.428|221350.132|123.228 +637490.868|221352.119|123.231 +637485.235|221354.131|123.295 +637479.627|221356.139|123.274 +637473.955|221358.166|123.277 +637468.368|221360.169|123.216 +637462.650|221362.214|123.173 +637456.999|221364.238|123.133 +637451.342|221366.262|123.139 +637445.602|221368.310|123.234 +637439.884|221370.352|123.267 +637434.148|221372.397|123.380 +637428.445|221374.436|123.386 +637422.672|221376.500|123.432 +637416.902|221378.560|123.481 +637411.163|221380.615|123.420 +637405.338|221382.696|123.469 +637399.568|221384.754|123.578 +637393.743|221386.833|123.673 +637387.940|221388.908|123.685 +637382.085|221391.002|123.667 +637376.278|221393.075|123.737 +637370.441|221395.166|123.685 +637364.541|221397.278|123.652 +637358.749|221399.357|123.438 +637346.868|221403.591|123.804 +637340.900|221405.709|124.124 +637323.060|221412.073|124.414 +637317.098|221414.201|124.526 +637311.118|221416.328|124.740 +637305.074|221418.477|124.980 +637298.990|221420.632|125.407 +637292.998|221422.772|125.462 +637286.920|221424.924|125.925 +637280.897|221427.066|126.157 +637274.801|221429.230|126.450 +637268.787|221431.370|126.696 +637256.669|221435.686|127.059 +637213.954|221450.880|128.733 +637195.553|221457.437|129.181 +637189.417|221459.622|129.394 +637164.792|221468.400|129.909 +637158.657|221470.595|129.885 +637152.579|221472.802|129.242 +637146.401|221474.999|129.504 +637140.262|221477.206|129.208 +637134.160|221479.413|128.745 +637128.052|221481.616|128.306 +637121.959|221483.823|127.812 +637115.829|221486.048|127.163 +637109.681|221488.255|126.998 +637103.561|221490.480|126.337 +637097.428|221492.702|125.742 +637091.290|221494.927|125.182 +637085.142|221497.152|124.715 +637078.961|221499.377|124.438 +637072.822|221501.599|123.926 +637066.641|221503.843|123.304 +637060.456|221506.065|123.091 +637054.171|221508.311|123.161 +637047.767|221510.542|124.404 +637041.306|221512.813|125.273 +637034.932|221519.122|126.053 +637041.318|221516.888|125.215 +637047.542|221514.700|124.682 +637053.952|221512.481|123.365 +637066.418|221508.052|123.124 +637078.458|221503.678|124.846 +637084.648|221501.462|125.038 +637090.753|221499.271|125.392 +637096.837|221497.079|125.898 +637108.907|221492.720|127.117 +637115.009|221490.544|127.181 +637121.087|221488.353|127.760 +637127.128|221486.179|128.184 +637133.160|221484.006|128.687 +637139.201|221481.830|129.147 +637145.270|221479.654|129.464 +637151.339|221477.493|129.458 +637230.315|221449.445|127.797 +637242.428|221445.156|127.245 +637254.636|221440.852|126.319 +637272.494|221434.476|126.663 +637278.450|221432.367|126.404 +637284.485|221430.233|126.093 +637290.523|221428.097|125.803 +637302.535|221423.860|124.996 +637308.539|221421.738|124.627 +637314.511|221419.620|124.447 +637320.433|221417.523|124.212 +637332.201|221413.320|124.407 +637338.056|221411.244|124.258 +637343.973|221409.141|124.130 +637349.813|221407.065|124.075 +637355.671|221404.983|123.962 +637361.581|221402.880|123.920 +637367.363|221400.823|123.898 +637373.209|221398.741|123.883 +637378.997|221396.681|123.871 +637384.804|221394.617|123.813 +637390.610|221392.551|123.752 +637396.432|221390.481|123.667 +637402.135|221388.457|123.554 +637407.935|221386.391|123.575 +637413.690|221384.342|123.551 +637419.450|221382.291|123.520 +637425.144|221380.264|123.508 +637430.850|221378.234|123.475 +637436.632|221376.180|123.414 +637442.341|221374.147|123.408 +637447.983|221372.135|123.417 +637453.682|221370.117|123.231 +637459.355|221368.100|123.164 +637465.134|221366.051|122.954 +637470.895|221364.018|122.591 +637476.469|221362.028|122.701 +637482.120|221360.022|122.551 +637487.741|221358.023|122.521 +637493.313|221356.042|122.448 +637498.915|221354.042|122.527 +637504.380|221352.079|122.868 +637509.970|221350.083|123.021 +637515.380|221348.141|123.362 +637520.879|221346.181|123.395 +637531.867|221342.262|123.542 +637537.253|221340.329|123.786 +637548.143|221336.437|124.142 +637558.964|221332.575|124.328 +637575.075|221326.814|124.795 +637580.470|221324.888|124.901 +637585.509|221323.041|125.986 +637601.739|221317.305|125.160 +637578.940|221327.464|124.807 +637573.631|221329.375|124.645 +637568.284|221331.301|124.407 +637546.580|221339.095|123.975 +637541.136|221341.058|123.670 +637519.123|221348.961|123.234 +637513.606|221350.933|123.271 +637508.172|221352.902|122.789 +637502.606|221354.908|122.548 +637497.080|221356.904|122.192 +637491.572|221358.895|121.780 +637486.025|221360.894|121.521 +637480.414|221362.903|121.518 +637474.753|221364.933|121.466 +637469.121|221366.954|121.326 +637463.275|221369.014|122.012 +637457.453|221371.081|122.380 +637451.735|221373.114|122.633 +637446.017|221375.162|122.649 +637440.256|221377.213|122.838 +637434.492|221379.264|123.078 +637428.716|221381.331|123.115 +637422.913|221383.401|123.295 +637417.128|221385.464|123.411 +637411.376|221387.525|123.420 +637405.539|221389.609|123.523 +637399.739|221391.685|123.508 +637393.908|221393.767|123.624 +637388.111|221395.843|123.630 +637382.249|221397.940|123.655 +637376.388|221400.037|123.691 +637370.521|221402.131|123.773 +637364.662|221404.225|123.834 +637358.716|221406.346|124.026 +637352.833|221408.455|123.965 +637346.996|221410.543|123.999 +637335.142|221414.783|124.069 +637329.190|221416.910|124.106 +637323.197|221419.044|124.340 +637317.178|221421.196|124.441 +637311.207|221423.323|124.621 +637305.223|221425.466|124.599 +637299.274|221427.591|124.724 +637293.254|221429.736|124.907 +637287.136|221431.910|125.258 +637281.080|221434.055|125.654 +637275.042|221436.201|125.986 +637268.992|221438.362|126.108 +637262.880|221440.529|126.541 +637257.059|221442.657|125.611 +637251.021|221444.815|125.736 +637244.842|221447.000|126.251 +637232.690|221451.328|126.672 +637220.422|221455.696|127.126 +637214.292|221457.872|127.538 +637208.147|221460.064|127.730 +637201.963|221462.256|128.135 +637189.676|221466.629|128.617 +637140.338|221484.265|129.159 +637128.183|221488.657|128.312 +637122.029|221490.885|127.812 +637115.963|221493.086|127.175 +637103.643|221497.521|126.681 +637097.505|221499.743|126.136 +637091.360|221501.965|125.657 +637085.194|221504.190|125.294 +637079.022|221506.412|125.002 +637072.743|221508.661|124.999 +637066.790|221510.871|123.338 +637060.496|221513.118|123.450 +637054.244|221515.343|123.731 +637035.066|221522.100|125.858 +637039.221|221524.584|125.422 +637051.836|221520.149|124.036 +637058.027|221517.955|123.746 +637064.153|221515.739|124.301 +637070.298|221513.544|124.350 +637082.475|221509.137|125.572 +637088.583|221506.939|125.898 +637094.749|221504.720|126.255 +637100.867|221502.523|126.535 +637113.053|221498.146|127.077 +637119.133|221495.966|127.269 +637155.542|221482.875|129.126 +637167.932|221478.501|128.144 +637174.098|221476.322|127.675 +637180.200|221474.164|127.263 +637186.311|221471.988|127.138 +637192.395|221469.830|126.870 +637198.534|221467.650|126.657 +637204.612|221465.489|126.443 +637210.711|221463.325|126.166 +637216.788|221461.164|126.008 +637222.790|221459.025|125.956 +637228.865|221456.861|125.852 +637234.887|221454.715|125.718 +637240.904|221452.572|125.651 +637246.927|221450.426|125.566 +637252.953|221448.280|125.483 +637258.912|221446.153|125.435 +637264.944|221444.004|125.368 +637270.906|221441.877|125.352 +637276.923|221439.740|125.099 +637282.909|221437.609|125.011 +637288.889|221435.476|124.962 +637294.836|221433.360|124.801 +637300.834|221431.224|124.712 +637306.775|221429.105|124.627 +637312.706|221426.990|124.602 +637318.638|221424.872|124.587 +637324.554|221422.772|124.392 +637330.452|221420.672|124.279 +637336.420|221418.544|124.170 +637342.263|221416.465|124.075 +637348.154|221414.362|124.057 +637354.046|221412.259|124.054 +637359.904|221410.174|123.944 +637365.751|221408.086|123.911 +637371.545|221406.023|123.837 +637377.412|221403.932|123.746 +637383.207|221401.865|123.709 +637388.998|221399.799|123.709 +637394.813|221397.729|123.633 +637400.632|221395.657|123.557 +637406.405|221393.602|123.423 +637412.181|221391.548|123.307 +637417.920|221389.500|123.341 +637423.794|221387.427|122.877 +637429.591|221385.367|122.725 +637435.416|221383.312|122.240 +637441.207|221381.264|121.905 +637447.047|221379.207|121.411 +637452.856|221377.149|121.045 +637458.562|221375.125|120.850 +637464.238|221373.104|120.799 +637469.892|221371.084|120.841 +637475.515|221369.072|121.006 +637481.035|221367.085|121.338 +637486.631|221365.076|121.640 +637492.231|221363.073|121.701 +637503.261|221359.114|122.246 +637508.784|221357.136|122.393 +637514.112|221355.194|123.249 +637519.650|221353.213|123.371 +637525.189|221351.241|123.274 +637536.085|221347.334|123.764 +637541.566|221345.380|123.682 +637557.982|221339.528|123.630 +637563.292|221337.607|124.203 +637573.905|221333.785|124.941 +637579.306|221331.865|124.788 +637589.938|221328.061|125.108 +637595.287|221326.147|125.172 +637605.991|221322.334|125.115 +637585.463|221331.953|125.023 +637580.111|221333.883|124.779 +637574.697|221335.812|124.980 +637558.729|221341.591|123.856 +637553.209|221343.560|124.039 +637542.407|221347.452|123.615 +637536.860|221349.437|123.716 +637531.404|221351.403|123.499 +637520.464|221355.338|123.213 +637514.874|221357.337|123.295 +637509.415|221359.324|122.685 +637503.962|221361.296|122.292 +637498.516|221363.281|121.652 +637492.889|221365.295|121.682 +637487.314|221367.301|121.542 +637476.116|221371.327|121.256 +637470.587|221373.336|120.741 +637464.878|221375.372|120.914 +637459.157|221377.423|120.920 +637453.454|221379.456|121.113 +637447.675|221381.514|121.372 +637441.844|221383.593|121.597 +637436.096|221385.644|121.783 +637430.228|221387.726|122.198 +637424.440|221389.783|122.573 +637418.490|221391.889|123.094 +637412.757|221393.947|123.042 +637406.990|221396.007|123.139 +637401.165|221398.089|123.234 +637395.219|221400.204|123.581 +637389.406|221402.283|123.664 +637383.581|221404.374|123.554 +637377.775|221406.453|123.645 +637371.840|221408.571|123.764 +637365.985|221410.668|123.825 +637360.139|221412.759|123.883 +637354.223|221414.874|123.975 +637348.261|221417.008|124.017 +637342.351|221419.120|124.130 +637336.441|221421.232|124.252 +637330.497|221423.363|124.273 +637324.545|221425.490|124.356 +637318.610|221427.615|124.374 +637312.606|221429.764|124.441 +637306.656|221431.891|124.569 +637300.648|221434.037|124.685 +637294.586|221436.204|124.791 +637288.578|221438.350|124.953 +637282.604|221440.487|124.974 +637276.554|221442.651|125.087 +637270.525|221444.809|125.112 +637264.487|221446.967|125.206 +637252.420|221451.283|125.416 +637246.321|221453.459|125.563 +637240.234|221455.635|125.678 +637234.141|221457.812|125.840 +637228.066|221459.982|125.934 +637222.004|221462.152|125.989 +637215.889|221464.340|126.002 +637209.787|221466.529|125.989 +637203.682|221468.717|125.992 +637197.574|221470.903|126.050 +637191.459|221473.088|126.145 +637185.281|221475.295|126.276 +637179.170|221477.477|126.413 +637172.922|221479.705|126.629 +637166.774|221481.891|127.007 +637160.507|221484.119|127.370 +637154.316|221486.320|127.693 +637148.074|221488.542|127.983 +637117.268|221499.624|127.074 +637111.062|221501.855|126.910 +637104.905|221504.062|126.843 +637092.472|221508.539|126.370 +637086.312|221510.765|125.995 +637080.076|221512.993|126.111 +637067.906|221517.452|124.106 +637061.657|221519.695|123.938 +637055.366|221521.945|124.069 +637049.060|221524.188|124.334 +637036.292|221528.702|125.553 +637049.712|221527.992|124.456 +637055.942|221525.776|124.289 +637062.154|221523.560|124.282 +637068.213|221521.369|124.871 +637086.553|221514.748|126.440 +637104.951|221508.155|126.995 +637111.120|221505.955|127.001 +637117.204|221503.775|127.154 +637123.388|221501.572|127.111 +637129.460|221499.392|127.382 +637135.626|221497.204|127.117 +637141.777|221495.019|126.977 +637147.864|221492.851|126.852 +637154.021|221490.660|126.715 +637160.108|221488.493|126.639 +637166.259|221486.301|126.593 +637172.345|221484.131|126.553 +637178.423|221481.961|126.590 +637184.467|221479.809|126.504 +637190.573|221477.633|126.437 +637196.690|221475.456|126.319 +637202.704|221473.320|126.123 +637208.760|221471.162|126.053 +637214.822|221469.004|125.956 +637220.891|221466.843|125.864 +637226.963|221464.682|125.782 +637232.958|221462.542|125.767 +637238.969|221460.402|125.721 +637244.961|221458.260|125.758 +637250.978|221456.117|125.721 +637257.040|221453.965|125.462 +637263.024|221451.837|125.325 +637269.004|221449.710|125.209 +637275.036|221447.558|125.160 +637281.016|221445.431|125.099 +637287.002|221443.297|125.008 +637292.995|221441.163|124.926 +637298.905|221439.054|124.947 +637304.821|221436.942|124.944 +637310.856|221434.799|124.734 +637316.760|221432.702|124.545 +637328.623|221428.484|124.282 +637334.536|221426.380|124.121 +637340.431|221424.280|124.072 +637346.310|221422.180|124.090 +637352.251|221420.074|123.880 +637358.054|221417.995|123.990 +637369.939|221413.801|123.109 +637381.399|221409.690|123.536 +637387.288|221407.596|123.383 +637399.023|221403.438|122.798 +637404.777|221401.387|122.731 +637410.547|221399.332|122.618 +637416.381|221397.254|122.539 +637422.236|221395.184|122.131 +637427.991|221393.142|121.881 +637439.564|221389.030|121.445 +637445.334|221386.973|121.454 +637451.009|221384.952|121.350 +637456.749|221382.907|121.253 +637462.458|221380.880|121.052 +637468.109|221378.847|121.332 +637473.659|221376.847|121.765 +637479.277|221374.845|121.710 +637484.842|221372.836|122.103 +637490.466|221370.831|122.067 +637496.035|221368.837|122.243 +637501.576|221366.844|122.533 +637507.126|221364.860|122.560 +637512.579|221362.894|122.966 +637518.041|221360.928|123.347 +637523.585|221358.953|123.207 +637539.969|221353.079|123.789 +637545.476|221351.110|123.844 +637550.883|221349.168|124.042 +637556.303|221347.227|124.203 +637572.466|221341.423|124.880 +637577.813|221339.503|125.127 +637583.223|221337.583|124.941 +637588.682|221335.638|124.834 +637594.025|221333.727|124.907 +637599.395|221331.810|124.913 +637604.687|221329.920|124.965 +637609.932|221328.037|125.188 +637585.737|221338.488|124.932 +637580.345|221340.418|125.038 +637574.941|221342.359|124.993 +637558.854|221348.163|124.292 +637553.459|221350.110|124.057 +637548.021|221352.064|123.978 +637542.550|221354.033|123.798 +637526.155|221359.940|123.286 +637520.714|221361.903|123.060 +637515.072|221363.912|123.335 +637504.127|221367.880|122.475 +637498.531|221369.892|122.399 +637492.980|221371.894|122.170 +637487.400|221373.900|122.060 +637481.806|221375.909|122.015 +637476.204|221377.929|121.783 +637470.584|221379.953|121.631 +637464.969|221381.986|121.222 +637459.324|221384.010|121.192 +637453.646|221386.043|121.301 +637447.940|221388.088|121.289 +637419.018|221398.412|122.292 +637413.132|221400.506|122.606 +637407.402|221402.576|122.307 +637401.571|221404.660|122.429 +637389.687|221408.876|123.386 +637383.920|221410.945|123.310 +637372.209|221415.155|123.133 +637366.311|221417.270|123.130 +637354.418|221421.498|123.844 +637348.532|221423.622|123.572 +637342.558|221425.743|123.969 +637336.752|221427.840|123.655 +637330.668|221430.005|124.026 +637318.686|221434.275|124.557 +637312.734|221436.402|124.694 +637306.744|221438.548|124.721 +637300.715|221440.700|124.959 +637294.793|221442.834|124.724 +637282.808|221447.119|124.944 +637276.749|221449.283|125.121 +637270.714|221451.444|125.194 +637264.673|221453.605|125.313 +637258.656|221455.760|125.340 +637252.627|221457.918|125.444 +637246.555|221460.091|125.474 +637240.532|221462.246|125.581 +637234.430|221464.423|125.813 +637228.310|221466.617|125.831 +637222.247|221468.787|125.901 +637216.124|221470.979|125.968 +637210.065|221473.146|126.072 +637203.953|221475.335|126.130 +637197.839|221477.523|126.224 +637191.734|221479.708|126.282 +637185.510|221481.936|126.352 +637179.405|221484.119|126.462 +637173.235|221486.326|126.599 +637167.085|221488.526|126.660 +637160.922|221490.730|126.818 +637154.722|221492.949|126.855 +637148.586|221495.147|126.901 +637142.387|221497.366|126.977 +637136.196|221499.584|127.023 +637130.021|221501.797|127.007 +637123.809|221504.013|127.212 +637117.594|221506.247|127.105 +637111.422|221508.457|127.141 +637105.210|221510.688|127.038 +637099.081|221512.895|126.867 +637092.841|221515.145|126.590 +637086.700|221517.348|126.514 +637080.369|221519.601|126.855 +637068.223|221524.060|124.734 +637055.829|221528.507|124.621 +637043.232|221532.997|125.121 +637047.435|221535.478|126.892 +637053.876|221533.259|125.331 +637072.313|221526.639|126.172 +637090.662|221520.037|127.315 +637096.807|221517.839|127.410 +637102.939|221515.638|127.599 +637109.096|221513.441|127.672 +637115.314|221511.234|127.398 +637121.480|221509.033|127.462 +637127.543|221506.872|127.407 +637133.736|221504.665|127.346 +637139.887|221502.477|127.181 +637146.093|221500.267|127.096 +637152.183|221498.100|126.968 +637158.322|221495.912|126.949 +637164.411|221493.741|126.876 +637170.507|221491.571|126.788 +637176.664|221489.380|126.730 +637182.709|221487.228|126.629 +637188.814|221485.052|126.553 +637194.925|221482.875|126.480 +637200.997|221480.720|126.288 +637207.068|221478.562|126.136 +637213.140|221476.401|125.986 +637219.196|221474.243|125.953 +637225.247|221472.082|125.959 +637231.239|221469.946|125.974 +637237.241|221467.806|125.953 +637243.254|221465.663|125.892 +637249.280|221463.517|125.782 +637261.216|221459.253|125.907 +637267.166|221457.114|126.224 +637279.050|221452.868|126.392 +637285.082|221450.716|126.367 +637291.114|221448.591|125.791 +637303.215|221444.309|125.124 +637309.222|221442.184|124.734 +637315.181|221440.066|124.590 +637327.199|221435.826|123.621 +637350.693|221427.435|123.776 +637368.509|221421.120|122.987 +637374.248|221419.062|123.155 +637385.931|221414.893|123.228 +637397.678|221410.732|122.566 +637403.497|221408.672|122.231 +637409.304|221406.599|122.222 +637449.656|221392.243|121.295 +637455.328|221390.210|121.448 +637461.037|221388.171|121.481 +637466.676|221386.153|121.539 +637472.242|221384.150|121.902 +637477.871|221382.133|122.030 +637483.516|221380.115|122.131 +637489.103|221378.115|122.207 +637494.669|221376.122|122.374 +637500.253|221374.122|122.493 +637505.898|221372.111|122.411 +637511.302|221370.154|122.981 +637516.791|221368.182|123.249 +637544.352|221358.322|123.719 +637549.686|221356.395|124.154 +637555.163|221354.432|124.334 +637560.594|221352.488|124.465 +637565.950|221350.567|124.639 +637576.706|221346.715|124.880 +637582.095|221344.788|124.983 +637587.594|221342.838|124.724 +637592.973|221340.920|124.670 +637598.323|221339.006|124.727 +637603.647|221337.098|124.883 +637588.182|221344.054|124.670 +637582.741|221345.989|124.959 +637577.349|221347.928|124.880 +637566.553|221351.811|124.554 +637561.186|221353.740|124.423 +637555.724|221355.700|124.398 +637550.347|221357.642|124.106 +637544.879|221359.611|123.908 +637534.046|221363.518|123.423 +637522.909|221367.511|123.374 +637517.349|221369.505|123.344 +637500.820|221375.467|122.557 +637495.239|221377.472|122.432 +637489.664|221379.478|122.292 +637484.025|221381.505|122.167 +637478.365|221383.535|122.134 +637472.736|221385.559|121.999 +637467.109|221387.592|121.628 +637461.479|221389.615|121.536 +637455.749|221391.667|121.588 +637450.141|221393.694|121.192 +637438.650|221397.808|121.253 +637432.977|221399.848|121.146 +637427.140|221401.935|121.210 +637409.538|221408.187|122.374 +637403.717|221410.269|122.435 +637386.017|221416.572|123.222 +637380.149|221418.669|123.298 +637374.282|221420.781|123.133 +637326.928|221437.722|123.661 +637308.768|221444.172|124.791 +637278.297|221454.992|126.742 +637248.262|221465.803|125.712 +637242.157|221467.983|125.907 +637236.061|221470.156|126.084 +637229.995|221472.329|126.136 +637223.863|221474.521|126.227 +637217.758|221476.709|126.203 +637211.646|221478.898|126.224 +637205.547|221481.083|126.200 +637199.430|221483.272|126.303 +637193.194|221485.500|126.383 +637187.076|221487.685|126.520 +637180.846|221489.913|126.623 +637174.735|221492.096|126.779 +637168.502|221494.321|126.931 +637162.290|221496.543|127.001 +637156.133|221498.740|127.129 +637149.924|221500.962|127.230 +637143.725|221503.178|127.285 +637137.467|221505.418|127.355 +637131.271|221507.634|127.446 +637125.022|221509.871|127.504 +637118.832|221512.084|127.602 +637112.595|221514.319|127.632 +637106.283|221516.577|127.772 +637100.047|221518.808|127.839 +637093.807|221521.039|127.949 +637087.538|221523.289|127.900 +637081.298|221525.517|128.047 +637050.154|221536.743|126.846 +637043.933|221538.983|126.584 +637057.262|221538.203|128.626 +637063.474|221535.993|128.547 +637069.692|221533.780|128.443 +637075.873|221531.589|128.217 +637082.100|221529.373|128.108 +637088.263|221527.178|128.028 +637094.493|221524.962|127.940 +637100.595|221522.771|128.275 +637106.829|221520.570|127.855 +637112.940|221518.394|127.800 +637119.167|221516.172|127.815 +637125.299|221513.992|127.678 +637131.499|221511.789|127.541 +637137.589|221509.628|127.337 +637143.776|221507.424|127.306 +637149.933|221505.235|127.135 +637156.014|221503.074|127.044 +637162.162|221500.886|126.959 +637168.252|221498.719|126.867 +637174.409|221496.527|126.767 +637180.447|221494.382|126.654 +637186.555|221492.211|126.529 +637192.660|221490.038|126.447 +637198.689|221487.889|126.447 +637204.749|221485.734|126.319 +637210.796|221483.582|126.270 +637216.923|221481.403|126.157 +637222.909|221479.269|126.136 +637228.938|221477.115|126.230 +637258.726|221466.450|127.209 +637276.810|221460.027|126.690 +637294.836|221453.648|125.752 +637306.985|221449.362|124.837 +637312.938|221447.247|124.676 +637318.887|221445.132|124.563 +637325.060|221442.986|123.469 +637330.884|221440.898|123.661 +637342.781|221436.677|123.310 +637372.115|221426.234|123.002 +637377.915|221424.158|123.173 +637383.697|221422.098|123.158 +637389.482|221420.038|123.161 +637401.290|221415.871|122.252 +637407.066|221413.807|122.356 +637412.836|221411.756|122.234 +637418.658|221409.696|121.935 +637424.605|221407.599|121.405 +637436.111|221403.508|121.201 +637441.707|221401.494|121.603 +637447.425|221399.457|121.551 +637458.837|221395.385|121.585 +637464.500|221393.355|121.792 +637470.120|221391.347|121.932 +637475.704|221389.341|122.225 +637481.355|221387.323|122.283 +637498.156|221381.316|122.630 +637503.819|221379.304|122.466 +637509.379|221377.311|122.697 +637547.741|221363.564|124.109 +637553.209|221361.604|124.313 +637558.662|221359.660|124.356 +637564.081|221357.718|124.526 +637569.568|221355.764|124.484 +637574.944|221353.844|124.602 +637580.245|221351.933|124.996 +637591.209|221348.044|124.602 +637596.433|221346.160|125.063 +637601.901|221344.228|124.734 +637607.174|221342.329|125.063 +637589.099|221350.366|124.654 +637573.003|221356.139|124.368 +637562.067|221360.053|124.343 +637556.580|221362.013|124.426 +637551.118|221363.979|124.203 +637545.799|221365.905|123.728 +637540.273|221367.880|123.761 +637534.714|221369.861|123.932 +637523.753|221373.805|123.514 +637518.178|221375.811|123.316 +637512.719|221377.783|122.950 +637507.202|221379.776|122.563 +637495.977|221383.794|122.551 +637479.100|221389.844|122.307 +637473.495|221391.862|122.106 +637467.886|221393.877|121.920 +637462.232|221395.913|121.686 +637456.645|221397.924|121.451 +637439.433|221404.075|121.600 +637427.973|221408.175|121.640 +637422.148|221410.257|121.682 +637416.372|221412.332|121.554 +637404.686|221416.484|122.131 +637398.858|221418.562|122.271 +637392.796|221420.690|123.118 +637386.946|221422.772|123.377 +637381.183|221424.850|123.039 +637375.276|221426.963|123.048 +637321.814|221446.037|124.209 +637315.818|221448.168|124.532 +637309.795|221450.313|124.712 +637297.655|221454.614|125.584 +637291.559|221456.766|126.172 +637285.448|221458.933|126.572 +637279.425|221461.088|126.584 +637225.189|221480.504|126.447 +637218.980|221482.714|126.654 +637213.027|221484.866|126.200 +637206.922|221487.051|126.224 +637200.817|221489.233|126.276 +637194.602|221491.440|126.599 +637188.552|221493.616|126.398 +637182.373|221495.817|126.559 +637176.162|221498.039|126.596 +637170.035|221500.218|126.879 +637163.820|221502.437|126.971 +637157.614|221504.653|127.032 +637151.409|221506.869|127.129 +637145.267|221509.064|127.230 +637139.086|221511.274|127.230 +637132.828|221513.511|127.340 +637126.638|221515.724|127.434 +637120.380|221517.958|127.593 +637114.186|221520.168|127.742 +637107.950|221522.399|127.812 +637101.708|221524.627|127.949 +637095.472|221526.855|128.068 +637089.199|221529.101|128.047 +637082.981|221531.326|128.092 +637076.763|221533.551|128.172 +637070.478|221535.795|128.281 +637064.199|221538.038|128.400 +637057.917|221540.281|128.556 +637051.626|221542.522|128.793 +637045.353|221544.762|128.931 +637039.035|221547.024|128.992 +637038.315|221551.413|128.958 +637044.509|221549.206|128.897 +637050.715|221546.999|128.809 +637056.914|221544.792|128.766 +637063.141|221542.583|128.568 +637069.366|221540.370|128.409 +637075.586|221538.157|128.291 +637081.743|221535.965|128.205 +637087.971|221533.753|128.105 +637094.140|221531.558|127.995 +637100.306|221529.363|127.928 +637106.478|221527.166|127.846 +637112.647|221524.968|127.794 +637118.841|221522.771|127.635 +637125.034|221520.570|127.486 +637131.106|221518.394|127.724 +637137.190|221516.214|127.885 +637143.319|221514.035|127.812 +637149.549|221511.844|127.196 +637155.697|221509.658|127.062 +637161.848|221507.473|126.937 +637167.932|221505.306|126.870 +637174.022|221503.138|126.776 +637180.136|221500.953|126.913 +637186.223|221498.786|126.885 +637192.246|221496.637|126.888 +637198.302|221494.470|127.059 +637204.371|221492.318|126.855 +637210.424|221490.148|127.062 +637276.545|221466.608|126.453 +637312.621|221453.840|124.578 +637342.400|221443.282|123.402 +637354.253|221439.078|123.008 +637360.020|221436.997|123.530 +637377.598|221430.760|122.905 +637383.395|221428.685|123.091 +637389.196|221426.609|123.280 +637395.002|221424.543|123.191 +637406.886|221420.370|121.966 +637412.632|221418.325|121.923 +637452.738|221404.039|121.826 +637464.061|221399.985|122.198 +637469.730|221397.970|122.124 +637475.305|221395.967|122.429 +637480.877|221393.977|122.515 +637486.537|221391.959|122.518 +637497.845|221387.939|122.405 +637514.289|221382.029|123.408 +637547.311|221370.230|124.115 +637558.113|221366.362|124.505 +637563.584|221364.415|124.478 +637568.967|221362.494|124.542 +637574.438|221360.544|124.538 +637590.556|221354.792|124.743 +637606.589|221349.083|124.700 +637591.138|221356.499|124.526 +637574.935|221362.308|124.401 +637569.470|221364.268|124.380 +637564.008|221366.225|124.368 +637558.549|221368.179|124.362 +637547.674|221372.092|124.011 +637520.004|221382.023|123.588 +637492.221|221392.026|122.542 +637486.555|221394.056|122.536 +637480.898|221396.083|122.527 +637475.290|221398.101|122.341 +637469.697|221400.116|122.115 +637463.966|221402.164|122.173 +637394.502|221426.993|123.097 +637388.638|221429.090|123.164 +637382.856|221431.175|122.911 +637377.053|221433.260|122.758 +637353.434|221441.706|122.990 +637347.386|221443.849|123.432 +637311.411|221456.669|124.697 +637299.246|221460.975|125.700 +637268.864|221471.774|127.346 +637262.737|221473.954|127.635 +637208.181|221493.504|127.300 +637202.073|221495.704|127.068 +637189.847|221500.084|127.020 +637183.690|221502.285|127.093 +637177.597|221504.480|126.828 +637171.428|221506.680|127.023 +637165.259|221508.878|127.230 +637159.056|221511.097|127.282 +637152.875|221513.313|127.254 +637146.675|221515.526|127.349 +637140.399|221517.744|127.907 +637134.218|221519.957|127.937 +637128.091|221522.161|127.687 +637121.898|221524.389|127.465 +637115.707|221526.599|127.620 +637109.392|221528.848|127.794 +637103.226|221531.055|127.836 +637096.947|221533.301|127.843 +637090.695|221535.527|128.077 +637084.404|221537.773|128.202 +637078.180|221539.995|128.318 +637071.898|221542.238|128.422 +637065.693|221544.457|128.464 +637059.420|221546.697|128.580 +637053.147|221548.935|128.696 +637046.822|221551.193|128.766 +637040.550|221553.431|128.940 +637034.277|221555.668|129.129 +637036.560|221558.917|129.202 +637042.769|221556.707|129.053 +637048.987|221554.497|128.876 +637055.217|221552.284|128.629 +637061.450|221550.072|128.397 +637067.726|221547.856|127.900 +637074.047|221545.637|127.163 +637080.305|221543.415|126.849 +637086.544|221541.217|126.291 +637092.771|221538.995|126.218 +637104.847|221534.609|127.711 +637123.376|221528.004|127.526 +637129.420|221525.825|127.922 +637135.568|221523.624|128.092 +637141.798|221521.414|127.794 +637147.949|221519.226|127.620 +637154.027|221517.043|127.894 +637160.083|221514.876|127.946 +637166.228|221512.688|127.861 +637172.318|221510.518|127.769 +637178.493|221508.323|127.574 +637184.547|221506.153|127.715 +637190.646|221503.980|127.638 +637196.717|221501.809|127.711 +637202.774|221499.655|127.577 +637250.938|221482.424|128.257 +637263.060|221478.123|127.684 +637269.132|221475.972|127.379 +637299.338|221465.267|125.736 +637311.444|221460.997|124.731 +637317.391|221458.878|124.602 +637329.391|221454.626|123.941 +637341.351|221450.377|123.551 +637347.234|221448.277|123.523 +637353.062|221446.186|123.770 +637376.775|221437.777|122.624 +637382.542|221435.701|122.944 +637388.345|221433.620|123.121 +637394.121|221431.556|123.155 +637434.645|221417.096|123.014 +637440.357|221415.060|122.926 +637469.081|221404.834|122.402 +637474.790|221402.792|122.435 +637480.435|221400.774|122.490 +637486.107|221398.753|122.457 +637491.636|221396.751|122.966 +637508.458|221390.734|123.246 +637541.694|221378.841|123.804 +637547.147|221376.884|124.020 +637552.606|221374.924|124.231 +637558.043|221372.967|124.535 +637563.536|221371.013|124.432 +637568.995|221369.051|124.685 +637574.411|221367.118|124.645 +637579.830|221365.186|124.609 +637585.335|221363.226|124.526 +637590.675|221361.318|124.575 +637596.030|221359.394|124.804 +637601.352|221357.477|125.148 +637606.869|221355.533|124.648 +637612.237|221353.615|124.663 +637623.173|221349.763|123.627 +637599.036|221360.510|124.502 +637593.720|221362.421|124.380 +637588.252|221364.372|124.563 +637582.906|221366.286|124.563 +637577.499|221368.225|124.569 +637572.009|221370.184|124.645 +637566.608|221372.132|124.426 +637561.146|221374.086|124.444 +637555.647|221376.061|124.374 +637550.256|221378.015|123.941 +637544.818|221379.975|123.679 +637539.283|221381.953|123.776 +637533.778|221383.925|123.786 +637522.738|221387.893|123.493 +637511.570|221391.908|123.252 +637505.992|221393.910|123.130 +637500.396|221395.916|123.088 +637489.173|221399.945|122.935 +637483.635|221401.951|122.487 +637477.993|221403.975|122.441 +637472.291|221406.020|122.387 +637466.633|221408.056|122.195 +637449.458|221414.195|122.469 +637437.839|221418.334|122.899 +637432.087|221420.394|122.923 +637420.407|221424.564|123.207 +637414.561|221426.649|123.405 +637408.840|221428.712|123.103 +637403.159|221430.782|122.405 +637397.139|221432.903|123.103 +637391.259|221435.000|123.246 +637385.477|221437.085|123.018 +637379.607|221439.191|122.890 +637313.965|221462.615|124.685 +637301.773|221466.937|125.550 +637277.474|221475.572|126.901 +637271.305|221477.758|127.367 +637253.044|221484.265|128.059 +637192.011|221506.122|128.031 +637179.749|221510.518|127.974 +637173.519|221512.740|128.166 +637167.395|221514.931|128.147 +637161.190|221517.150|128.260 +637155.024|221519.363|128.160 +637148.864|221521.573|128.050 +637142.630|221523.807|128.019 +637136.428|221526.020|128.175 +637130.262|221528.248|127.794 +637124.132|221530.452|127.568 +637117.914|221532.680|127.504 +637105.445|221537.136|127.669 +637099.529|221539.346|125.794 +637093.359|221541.589|125.115 +637087.166|221543.814|124.990 +637080.890|221546.057|125.011 +637068.283|221550.550|125.465 +637061.907|221552.793|126.221 +637055.576|221555.037|126.693 +637049.206|221557.298|127.056 +637042.881|221559.536|127.562 +637036.474|221561.797|128.242 +637036.438|221565.671|126.815 +637042.723|221563.440|126.568 +637055.247|221558.999|126.081 +637061.468|221556.808|125.517 +637067.771|221554.570|125.282 +637086.401|221547.965|124.496 +637092.564|221545.750|124.849 +637098.675|221543.555|125.136 +637104.637|221541.348|126.751 +637110.651|221539.157|127.650 +637116.817|221536.959|127.644 +637122.992|221534.758|127.593 +637129.049|221532.582|127.900 +637135.184|221530.385|128.114 +637141.222|221528.208|128.562 +637147.334|221526.026|128.589 +637153.475|221523.840|128.473 +637159.580|221521.658|128.577 +637165.716|221519.473|128.534 +637177.887|221515.123|128.723 +637183.943|221512.956|128.821 +637190.051|221510.786|128.665 +637196.077|221508.637|128.638 +637202.118|221506.470|128.891 +637226.185|221497.853|129.546 +637232.236|221495.713|129.193 +637250.420|221489.267|128.394 +637280.720|221478.541|126.776 +637286.719|221476.410|126.575 +637382.024|221442.608|122.768 +637387.766|221440.542|123.179 +637393.591|221438.460|123.267 +637399.379|221436.393|123.267 +637422.526|221428.142|123.161 +637434.032|221424.040|123.100 +637439.866|221421.973|122.774 +637445.642|221419.928|122.445 +637462.811|221413.801|122.445 +637485.363|221405.730|122.905 +637502.140|221399.713|123.496 +637507.849|221397.693|123.139 +637519.001|221393.700|123.438 +637524.393|221391.755|123.810 +637552.072|221381.858|124.212 +637557.427|221379.929|124.560 +637562.847|221377.990|124.700 +637568.382|221376.015|124.676 +637573.771|221374.092|124.718 +637579.260|221372.135|124.657 +637584.765|221370.187|124.331 +637590.133|221368.264|124.496 +637595.546|221366.332|124.514 +637600.907|221364.418|124.508 +637606.314|221362.485|124.572 +637622.832|221356.666|123.024 +637628.178|221354.765|122.929 +637600.395|221366.402|124.471 +637594.979|221368.343|124.450 +637589.550|221370.288|124.493 +637584.177|221372.217|124.359 +637578.703|221374.168|124.590 +637573.189|221376.134|124.749 +637567.775|221378.082|124.575 +637562.307|221380.039|124.602 +637556.839|221382.008|124.423 +637551.389|221383.971|124.191 +637534.887|221389.896|123.886 +637529.313|221391.892|123.920 +637518.309|221395.852|123.514 +637507.120|221399.869|123.383 +637501.396|221401.908|123.566 +637490.231|221405.925|123.197 +637444.795|221422.232|122.563 +637433.212|221426.362|122.880 +637421.630|221430.504|123.018 +637415.741|221432.595|123.386 +637409.968|221434.668|123.307 +637398.294|221438.853|123.179 +637392.415|221440.953|123.316 +637321.100|221466.410|124.959 +637315.141|221468.547|124.880 +637303.007|221472.863|125.468 +637296.933|221475.011|125.983 +637284.747|221479.343|126.669 +637278.760|221481.476|126.852 +637223.689|221501.069|129.449 +637217.566|221503.254|129.598 +637211.393|221505.458|129.696 +637199.281|221509.826|129.065 +637180.852|221516.422|129.135 +637168.599|221520.829|128.745 +637162.482|221523.021|128.708 +637156.258|221525.258|128.592 +637150.132|221527.446|128.647 +637143.874|221529.680|128.763 +637137.784|221531.884|128.297 +637125.467|221536.316|127.824 +637119.222|221538.562|127.596 +637113.046|221540.769|127.693 +637106.786|221543.015|127.577 +637100.937|221545.222|125.307 +637094.771|221547.444|125.017 +637088.617|221549.663|124.657 +637069.740|221556.396|125.130 +637063.477|221558.615|125.560 +637057.100|221560.880|125.947 +637044.405|221565.379|126.849 +637038.175|221567.613|126.736 +637041.296|221570.158|126.992 +637047.459|221567.951|127.181 +637066.391|221561.294|125.349 +637078.936|221556.866|124.508 +637085.160|221554.650|124.432 +637091.293|221552.437|124.962 +637103.573|221548.029|125.596 +637109.435|221545.847|127.431 +637115.601|221543.631|127.791 +637121.745|221541.455|127.559 +637140.043|221534.868|128.845 +637146.191|221532.671|129.028 +637152.338|221530.485|128.864 +637158.443|221528.306|128.967 +637164.527|221526.126|129.205 +637195.004|221515.242|129.626 +637207.102|221510.926|129.693 +637213.231|221508.753|129.491 +637237.518|221500.130|128.839 +637255.654|221493.690|128.336 +637267.873|221489.389|127.288 +637273.908|221487.243|127.151 +637285.996|221482.964|126.587 +637298.076|221478.693|125.846 +637304.123|221476.557|125.477 +637310.146|221474.423|125.246 +637316.141|221472.305|124.874 +637322.164|221470.168|124.697 +637328.077|221468.056|124.734 +637392.997|221444.986|123.438 +637398.828|221442.919|123.240 +637404.637|221440.837|123.423 +637410.450|221438.771|123.347 +637416.259|221436.704|123.289 +637433.584|221430.535|123.158 +637450.942|221424.390|122.286 +637462.214|221420.336|123.054 +637467.938|221418.297|122.993 +637484.928|221412.235|123.124 +637490.582|221410.220|123.155 +637496.163|221408.227|123.225 +637501.679|221406.230|123.792 +637518.517|221400.229|123.807 +637524.177|221398.220|123.673 +637529.688|221396.245|123.862 +637535.272|221394.258|123.795 +637557.114|221386.439|124.526 +637573.573|221380.563|124.731 +637579.007|221378.630|124.621 +637589.971|221374.735|124.374 +637595.387|221372.806|124.374 +637600.740|221370.898|124.389 +637606.077|221368.990|124.474 +637617.101|221365.109|123.514 +637622.685|221363.153|122.832 +637604.105|221371.117|124.447 +637598.761|221373.031|124.407 +637593.348|221374.967|124.395 +637587.944|221376.902|124.368 +637582.442|221378.856|124.685 +637576.950|221380.819|124.758 +637560.509|221386.705|124.718 +637555.026|221388.683|124.374 +637516.191|221402.603|123.914 +637510.604|221404.609|123.810 +637493.886|221410.619|123.216 +637488.241|221412.643|123.146 +637482.550|221414.685|123.030 +637471.132|221418.760|123.228 +637459.742|221422.842|123.152 +637453.987|221424.902|123.118 +637407.667|221441.468|123.313 +637401.815|221443.562|123.322 +637395.969|221445.653|123.316 +637390.104|221447.747|123.408 +637324.602|221471.116|124.770 +637306.461|221477.572|125.468 +637300.456|221479.711|125.645 +637276.051|221488.380|126.925 +637269.973|221490.538|127.266 +637251.642|221497.061|127.992 +637245.479|221499.252|128.230 +637239.335|221501.428|128.720 +637233.254|221503.611|128.605 +637227.069|221505.802|129.019 +637214.761|221510.173|129.626 +637208.574|221512.380|129.818 +637196.260|221516.778|129.936 +637184.022|221521.167|129.738 +637159.449|221529.994|129.059 +637153.207|221532.226|129.037 +637147.029|221534.438|129.046 +637140.850|221536.648|129.092 +637122.419|221543.326|127.556 +637116.171|221545.554|127.718 +637109.992|221547.780|127.452 +637104.061|221549.992|125.675 +637097.934|221552.233|124.724 +637091.671|221554.461|125.032 +637079.171|221558.950|124.761 +637066.470|221563.465|125.471 +637060.051|221565.708|126.535 +637053.638|221567.973|127.184 +637047.344|221570.213|127.498 +637034.786|221574.706|127.535 +637046.792|221574.471|127.547 +637059.353|221570.039|126.733 +637072.020|221565.620|124.938 +637078.253|221563.410|124.749 +637084.496|221561.197|124.529 +637090.677|221558.987|124.731 +637096.834|221556.777|125.096 +637108.840|221552.409|126.989 +637114.945|221550.200|127.705 +637121.093|221548.008|127.779 +637151.601|221537.084|129.062 +637157.691|221534.908|129.199 +637163.726|221532.735|129.680 +637181.998|221526.218|129.924 +637188.067|221524.057|129.940 +637194.160|221521.878|130.183 +637206.315|221517.549|130.202 +637218.486|221513.249|129.565 +637224.585|221511.078|129.534 +637230.663|221508.927|129.312 +637236.805|221506.766|128.787 +637242.925|221504.605|128.403 +637248.969|221502.468|128.117 +637273.247|221493.882|126.989 +637285.323|221489.611|126.410 +637291.480|221487.453|125.755 +637297.396|221485.338|125.947 +637303.446|221483.204|125.538 +637309.405|221481.080|125.569 +637315.431|221478.962|125.032 +637327.346|221474.728|124.929 +637398.209|221449.579|123.423 +637403.973|221447.521|123.496 +637409.767|221445.461|123.466 +637427.302|221439.246|122.908 +637455.962|221429.035|123.054 +637467.365|221424.963|123.322 +637473.098|221422.924|123.231 +637484.348|221418.910|123.444 +637490.030|221416.892|123.353 +637495.644|221414.883|123.542 +637501.204|221412.884|123.935 +637518.099|221406.870|123.953 +637523.643|221404.892|123.981 +637551.313|221395.013|124.593 +637556.809|221393.054|124.663 +637584.110|221383.330|124.712 +637589.678|221381.364|124.407 +637595.113|221379.432|124.337 +637600.542|221377.503|124.313 +637605.927|221375.579|124.447 +637617.101|221371.675|122.972 +637605.748|221377.009|124.389 +637600.353|221378.941|124.292 +637594.924|221380.880|124.337 +637589.486|221382.821|124.432 +637583.933|221384.790|124.715 +637561.942|221392.651|124.798 +637556.483|221394.614|124.612 +637550.926|221396.605|124.542 +637539.984|221400.539|124.081 +637528.907|221404.520|123.688 +637523.201|221406.544|124.014 +637517.621|221408.547|123.892 +637511.918|221410.580|123.999 +637506.398|221412.570|123.691 +637500.698|221414.600|123.810 +637495.096|221416.615|123.594 +637489.515|221418.623|123.310 +637472.388|221424.750|123.274 +637466.682|221426.789|123.283 +637461.043|221428.819|123.051 +637449.488|221432.943|123.207 +637432.298|221439.124|122.505 +637408.740|221447.497|123.520 +637402.924|221449.582|123.389 +637397.047|221451.676|123.539 +637307.592|221483.564|125.505 +637289.517|221490.008|125.849 +637283.299|221492.196|126.526 +637277.249|221494.348|126.739 +637252.849|221503.017|127.855 +637246.662|221505.211|128.230 +637240.526|221507.381|128.705 +637228.176|221511.758|129.479 +637222.049|221513.941|129.653 +637209.696|221518.327|130.281 +637203.618|221520.500|130.275 +637197.470|221522.694|130.321 +637185.287|221527.071|129.863 +637148.364|221540.303|129.275 +637129.945|221546.954|128.068 +637123.830|221549.172|127.407 +637117.628|221551.376|127.675 +637111.376|221553.623|127.501 +637093.052|221560.292|125.136 +637086.959|221562.507|124.410 +637080.610|221564.754|124.938 +637067.933|221569.237|125.941 +637061.572|221571.478|126.648 +637048.919|221575.949|127.690 +637072.478|221571.322|125.575 +637078.686|221569.134|125.136 +637084.968|221566.900|125.057 +637091.183|221564.705|124.645 +637097.325|221562.495|125.105 +637103.433|221560.304|125.398 +637109.456|221558.097|126.629 +637115.439|221555.915|127.724 +637121.645|221553.699|127.827 +637139.848|221547.146|129.229 +637146.069|221544.942|128.952 +637152.116|221542.769|129.339 +637158.242|221540.571|129.638 +637164.302|221538.398|129.973 +637182.575|221531.875|130.220 +637188.744|221529.690|130.031 +637194.754|221527.529|130.369 +637206.907|221523.200|130.415 +637219.148|221518.872|129.726 +637225.155|221516.726|129.851 +637249.618|221508.088|128.342 +637292.166|221493.046|126.090 +637310.198|221486.658|125.422 +637357.972|221469.714|123.978 +637375.754|221463.408|123.423 +637387.541|221459.220|123.173 +637399.071|221455.096|123.536 +637404.890|221453.017|123.658 +637422.325|221446.820|123.408 +637428.134|221444.757|123.368 +637439.750|221440.633|123.082 +637456.956|221434.497|123.280 +637474.028|221428.417|123.395 +637479.688|221426.390|123.581 +637491.048|221422.345|123.609 +637496.644|221420.342|123.844 +637502.231|221418.340|124.130 +637507.827|221416.346|124.142 +637513.463|221414.332|124.264 +637519.056|221412.338|124.334 +637524.658|221410.342|124.380 +637535.823|221406.364|124.420 +637546.836|221402.435|124.602 +637552.340|221400.466|124.849 +637557.848|221398.503|124.855 +637563.338|221396.547|124.938 +637568.842|221394.584|124.987 +637579.766|221390.694|124.974 +637590.754|221386.805|124.584 +637596.265|221384.848|124.462 +637601.721|221382.913|124.325 +637607.052|221381.011|124.410 +637612.563|221379.063|124.112 +637618.275|221377.088|122.954 +637603.742|221384.254|124.225 +637598.304|221386.196|124.304 +637592.836|221388.140|124.502 +637587.264|221390.115|124.840 +637581.778|221392.072|124.916 +637576.316|221394.026|124.919 +637570.763|221396.007|125.026 +637565.285|221397.973|124.886 +637559.774|221399.942|124.880 +637554.288|221401.908|124.791 +637548.725|221403.898|124.767 +637543.236|221405.874|124.499 +637532.083|221409.866|124.383 +637526.499|221411.869|124.264 +637509.629|221417.904|124.188 +637503.965|221419.931|124.188 +637498.375|221421.943|123.926 +637492.767|221423.957|123.749 +637481.486|221428.005|123.423 +637464.204|221434.174|123.594 +637458.547|221436.204|123.450 +637441.244|221442.407|123.149 +637435.535|221444.452|123.021 +637429.664|221446.537|123.298 +637412.196|221452.791|123.146 +637406.243|221454.898|123.581 +637400.333|221457.010|123.597 +637370.847|221467.547|123.688 +637364.958|221469.665|123.444 +637334.691|221480.376|125.614 +637310.737|221488.953|125.334 +637304.711|221491.093|125.621 +637292.492|221495.433|126.187 +637286.408|221497.591|126.529 +637249.603|221510.652|128.449 +637237.237|221515.017|129.583 +637231.038|221517.223|129.781 +637224.917|221519.403|129.936 +637218.809|221521.597|129.714 +637200.238|221528.199|130.482 +637188.037|221532.576|130.125 +637181.828|221534.792|130.241 +637175.582|221537.008|130.577 +637169.468|221539.212|130.199 +637157.270|221543.616|129.293 +637151.037|221545.844|129.278 +637144.916|221548.045|128.982 +637138.717|221550.270|128.812 +637126.482|221554.705|127.519 +637120.234|221556.930|127.684 +637113.952|221559.173|127.687 +637108.084|221561.358|125.913 +637089.421|221568.076|124.923 +637076.839|221572.554|125.243 +637070.472|221574.794|125.953 +637064.108|221577.031|126.672 +637057.679|221579.290|127.465 +637051.318|221581.545|127.806 +637046.954|221586.818|128.242 +637059.514|221582.380|127.404 +637072.185|221577.936|125.938 +637078.476|221575.721|125.361 +637084.718|221573.508|125.124 +637097.057|221569.100|125.288 +637109.407|221564.672|125.822 +637115.241|221562.492|127.824 +637121.465|221560.273|127.821 +637139.701|221553.714|129.007 +637145.898|221551.495|129.232 +637151.991|221549.316|129.342 +637158.117|221547.118|129.635 +637164.177|221544.939|129.982 +637170.197|221542.766|130.546 +637182.361|221538.422|130.689 +637188.558|221536.231|130.321 +637194.581|221534.070|130.598 +637200.750|221531.878|130.439 +637225.052|221523.237|129.991 +637231.175|221521.061|129.854 +637237.189|221518.927|129.647 +637243.312|221516.766|129.239 +637261.545|221510.301|128.501 +637292.050|221499.542|126.178 +637316.099|221490.998|125.563 +637381.515|221467.757|124.008 +637399.096|221461.503|123.694 +637404.927|221459.424|123.764 +637422.492|221453.188|123.216 +637439.756|221447.031|123.274 +637491.197|221428.670|123.731 +637496.797|221426.661|123.947 +637502.457|221424.631|124.197 +637508.132|221422.610|124.167 +637513.756|221420.595|124.340 +637519.291|221418.611|124.615 +637530.492|221414.621|124.481 +637536.064|221412.628|124.670 +637541.727|221410.613|124.535 +637547.211|221408.644|124.834 +637552.798|221406.657|124.779 +637558.250|221404.703|124.980 +637569.284|221400.768|124.983 +637574.835|221398.796|124.889 +637591.361|221392.926|124.456 +637596.890|221390.963|124.273 +637607.784|221387.080|124.307 +637613.419|221385.117|123.368 +637619.067|221383.138|122.646 +637635.142|221377.399|122.801 +637640.550|221375.476|122.728 +637612.130|221387.640|123.630 +637606.601|221389.591|124.234 +637601.118|221391.542|124.478 +637595.799|221393.459|124.167 +637590.218|221395.434|124.548 +637584.722|221397.397|124.654 +637579.315|221399.339|124.468 +637573.646|221401.341|124.990 +637568.208|221403.301|124.712 +637562.649|221405.279|124.886 +637557.144|221407.248|124.877 +637551.591|221409.239|124.825 +637546.022|221411.229|124.846 +637535.006|221415.188|124.487 +637529.364|221417.200|124.578 +637523.802|221419.199|124.410 +637512.625|221423.201|124.295 +637507.047|221425.213|123.969 +637501.332|221427.246|124.185 +637490.100|221431.291|123.664 +637484.449|221433.324|123.444 +637461.522|221441.511|123.703 +637444.346|221447.665|123.426 +637438.607|221449.731|123.167 +637426.967|221453.886|123.359 +637421.154|221455.961|123.447 +637409.496|221460.137|123.295 +637403.525|221462.246|123.828 +637397.663|221464.350|123.664 +637379.954|221470.662|124.087 +637356.070|221479.178|124.633 +637338.044|221485.594|125.212 +637332.027|221487.725|125.681 +637314.130|221494.141|125.340 +637295.823|221500.630|126.517 +637289.843|221502.776|126.370 +637265.176|221511.478|128.729 +637252.974|221515.830|128.952 +637222.263|221526.770|129.842 +637197.568|221535.563|130.589 +637191.435|221537.773|130.263 +637185.174|221539.992|130.668 +637172.803|221544.415|130.708 +637160.586|221548.819|129.936 +637154.487|221551.020|129.525 +637148.300|221553.245|129.269 +637142.112|221555.467|129.031 +637123.650|221562.126|127.812 +637117.439|221564.348|127.794 +637111.245|221566.589|127.303 +637099.074|221571.036|125.337 +637092.826|221573.276|125.194 +637086.523|221575.516|125.453 +637080.265|221577.754|125.422 +637073.901|221580.012|125.709 +637067.549|221582.252|126.367 +637061.200|221584.508|126.608 +637034.716|221597.563|128.726 +637040.992|221595.338|128.470 +637047.225|221593.137|128.102 +637078.677|221582.051|125.624 +637084.874|221579.842|125.663 +637091.080|221577.632|125.685 +637103.464|221573.206|125.925 +637109.560|221571.014|126.303 +637115.464|221568.835|127.864 +637121.697|221566.616|127.782 +637127.814|221564.425|128.053 +637140.006|221560.039|128.885 +637146.160|221557.844|128.982 +637152.168|221555.671|129.568 +637158.248|221553.479|130.119 +637188.683|221542.604|130.769 +637194.879|221540.412|130.415 +637200.917|221538.251|130.604 +637213.024|221533.926|130.875 +637225.378|221529.571|129.933 +637243.553|221523.115|129.568 +637328.260|221493.120|125.819 +637346.210|221486.752|125.246 +637352.117|221484.658|125.057 +637358.121|221482.534|124.755 +637381.792|221474.118|124.392 +637387.672|221472.037|124.179 +637393.527|221469.955|124.081 +637399.452|221467.849|123.984 +637405.234|221465.788|123.962 +637411.135|221463.697|123.731 +637416.933|221461.634|123.691 +637422.803|221459.546|123.633 +637428.634|221457.476|123.490 +637463.122|221445.171|123.731 +637468.843|221443.126|123.898 +637485.991|221437.021|123.792 +637491.612|221435.000|124.154 +637502.862|221430.977|124.395 +637508.537|221428.956|124.356 +637514.173|221426.941|124.471 +637525.320|221422.945|124.987 +637530.983|221420.934|124.813 +637536.674|221418.919|124.563 +637542.233|221416.938|124.563 +637547.674|221414.978|125.017 +637553.246|221412.991|125.008 +637558.702|221411.037|125.185 +637569.860|221407.071|124.962 +637580.854|221403.158|124.929 +637586.475|221401.170|124.618 +637592.001|221399.211|124.426 +637597.506|221397.263|124.103 +637599.100|221398.238|124.115 +637593.659|221400.180|124.225 +637588.002|221402.182|124.648 +637582.500|221404.145|124.791 +637576.923|221406.133|124.974 +637571.427|221408.102|124.895 +637565.858|221410.086|125.087 +637560.277|221412.082|125.105 +637554.754|221414.067|124.932 +637549.143|221416.066|125.093 +637515.560|221428.118|124.450 +637509.906|221430.142|124.414 +637504.313|221432.144|124.395 +637481.553|221440.307|124.026 +637475.808|221442.355|124.188 +637464.369|221446.467|123.862 +637452.759|221450.612|124.014 +637429.618|221458.906|123.722 +637417.996|221463.069|123.627 +637406.222|221467.279|123.703 +637400.297|221469.382|124.066 +637394.371|221471.497|124.182 +637382.524|221475.734|124.191 +637376.513|221477.870|124.453 +637370.603|221479.980|124.587 +637358.618|221484.244|125.069 +637346.630|221488.517|125.377 +637249.250|221523.158|129.452 +637243.123|221525.343|129.580 +637224.701|221531.912|129.985 +637212.277|221536.322|130.695 +637199.966|221540.733|130.555 +637193.855|221542.924|130.446 +637175.220|221549.572|130.869 +637156.840|221556.186|130.068 +637144.545|221560.633|129.120 +637138.412|221562.855|128.580 +637132.249|221565.077|128.245 +637126.089|221567.299|127.888 +637119.880|221569.524|127.852 +637113.659|221571.746|127.916 +637107.652|221573.977|126.258 +637088.922|221580.704|125.803 +637082.667|221582.944|125.767 +637076.394|221585.182|125.867 +637057.265|221591.942|127.614 +637034.545|221603.881|128.571 +637047.106|221599.440|128.041 +637053.427|221597.218|127.516 +637059.670|221595.014|127.151 +637078.500|221588.376|125.938 +637084.700|221586.169|125.971 +637091.015|221583.935|125.675 +637097.160|221581.750|125.706 +637109.441|221577.333|126.654 +637115.439|221575.129|128.031 +637121.621|221572.938|127.885 +637127.799|221570.728|128.166 +637133.974|221568.533|128.099 +637140.003|221566.348|128.931 +637146.081|221564.160|129.479 +637152.189|221561.965|129.851 +637158.258|221559.795|130.098 +637164.387|221557.600|130.388 +637170.440|221555.427|130.766 +637176.573|221553.251|130.695 +637188.762|221548.895|131.058 +637195.004|221546.704|130.455 +637201.079|221544.543|130.449 +637207.163|221542.363|130.759 +637213.271|221540.199|130.616 +637225.551|221535.859|130.055 +637243.800|221529.388|129.644 +637249.862|221527.236|129.531 +637268.099|221520.783|128.812 +637286.396|221514.331|127.693 +637334.746|221497.222|125.858 +637340.699|221495.113|125.712 +637346.664|221493.001|125.523 +637358.664|221488.746|125.191 +637370.569|221484.530|124.807 +637382.429|221480.333|124.426 +637388.480|221478.215|123.749 +637394.280|221476.130|124.161 +637400.086|221474.057|124.301 +637405.969|221471.973|124.121 +637417.695|221467.809|123.999 +637423.532|221465.742|123.819 +637452.451|221455.431|124.243 +637458.200|221453.386|124.252 +637469.617|221449.301|124.651 +637475.290|221447.278|124.764 +637509.638|221435.064|124.606 +637515.310|221433.046|124.584 +637520.790|221431.071|125.063 +637532.050|221427.060|125.188 +637554.532|221419.065|125.063 +637559.970|221417.118|125.316 +637565.660|221415.115|124.916 +637571.086|221413.167|125.243 +637576.645|221411.195|125.108 +637582.287|221409.208|124.703 +637593.427|221405.267|124.225 +637598.886|221403.331|124.063 +637604.376|221401.381|124.036 +637615.742|221397.412|122.493 +637621.326|221395.452|121.978 +637626.626|221393.553|122.204 +637631.927|221391.658|122.460 +637642.845|221387.799|121.942 +637648.270|221385.885|121.600 +637631.073|221393.191|122.265 +637625.745|221395.102|122.140 +637620.381|221397.028|121.926 +637614.776|221399.000|122.533 +637603.458|221402.978|123.975 +637597.984|221404.935|123.978 +637592.446|221406.904|124.221 +637586.807|221408.900|124.599 +637581.263|221410.881|124.676 +637564.465|221416.868|125.102 +637553.337|221420.848|125.075 +637547.738|221422.845|125.218 +637519.602|221432.915|125.005 +637514.106|221434.900|124.621 +637508.449|221436.936|124.371 +637468.362|221451.271|124.404 +637451.122|221457.449|124.118 +637433.736|221463.670|124.057 +637422.059|221467.852|123.923 +637410.288|221472.058|123.999 +637404.387|221474.167|123.987 +637398.413|221476.285|124.316 +637392.591|221478.370|124.292 +637356.661|221491.169|125.255 +637350.626|221493.318|125.456 +637338.715|221497.573|125.517 +637314.428|221506.205|126.550 +637308.341|221508.366|126.852 +637302.242|221510.527|127.257 +637296.201|221512.682|127.401 +637259.509|221525.715|129.098 +637247.150|221530.110|129.549 +637241.011|221532.296|129.775 +637228.697|221536.682|130.144 +637210.156|221543.281|130.747 +637204.048|221545.469|130.592 +637197.784|221547.706|130.638 +637191.609|221549.901|130.900 +637185.409|221552.114|130.988 +637179.216|221554.327|131.061 +637173.086|221556.530|130.775 +637166.981|221558.734|130.369 +637160.754|221560.965|130.311 +637148.458|221565.391|129.699 +637136.196|221569.835|128.565 +637130.060|221572.054|128.041 +637123.843|221574.279|128.028 +637117.585|221576.522|127.919 +637111.538|221578.738|126.873 +637086.568|221587.699|126.197 +637080.378|221589.918|126.126 +637074.053|221592.177|126.169 +637054.951|221598.931|127.727 +637048.630|221601.187|127.833 +637035.904|221605.713|128.300 +637035.158|221609.849|128.083 +637041.528|221607.609|127.571 +637047.703|221605.411|127.617 +637053.924|221603.189|127.775 +637060.154|221600.992|127.471 +637066.485|221598.767|126.904 +637072.740|221596.563|126.495 +637079.003|221594.338|126.468 +637085.139|221592.155|126.480 +637115.930|221581.128|128.071 +637122.087|221578.939|128.050 +637128.354|221576.726|127.763 +637134.346|221574.562|128.397 +637140.421|221572.359|129.312 +637146.465|221570.192|129.665 +637152.561|221568.003|130.083 +637158.669|221565.815|130.449 +637164.762|221563.641|130.564 +637176.960|221559.277|131.110 +637189.180|221554.924|131.253 +637195.413|221552.739|130.674 +637201.457|221550.581|130.802 +637207.608|221548.398|130.732 +637213.625|221546.262|130.714 +637225.841|221541.930|130.439 +637256.324|221531.140|129.485 +637262.371|221529.004|129.174 +637280.653|221522.548|128.284 +637298.819|221516.126|127.568 +637352.888|221496.997|125.685 +637358.813|221494.887|125.697 +637364.836|221492.766|125.291 +637370.807|221490.651|125.145 +637382.679|221486.454|124.666 +637394.515|221482.257|124.426 +637400.370|221480.181|124.334 +637423.742|221471.872|124.346 +637429.551|221469.812|124.267 +637435.379|221467.733|124.395 +637441.244|221465.660|124.130 +637446.901|221463.633|124.459 +637469.834|221455.465|124.740 +637475.558|221453.410|125.139 +637481.325|221451.374|124.883 +637498.613|221445.257|124.285 +637504.243|221443.239|124.630 +637509.924|221441.221|124.551 +637515.520|221439.222|124.801 +637521.086|221437.222|125.179 +637526.646|221435.238|125.358 +637532.251|221433.232|125.624 +637543.632|221429.212|125.096 +637549.183|221427.225|125.361 +637554.788|221425.241|125.215 +637560.351|221423.262|125.249 +637566.020|221421.263|124.910 +637577.066|221417.328|125.087 +637582.680|221415.347|124.758 +637588.267|221413.372|124.560 +637593.842|221411.409|124.185 +637599.447|221409.427|123.947 +637604.891|221407.498|123.840 +637616.336|221403.520|121.993 +637632.573|221397.738|122.192 +637637.977|221395.824|122.085 +637643.518|221393.880|121.551 +637648.889|221391.981|121.378 +637654.284|221390.064|121.366 +637634.670|221398.723|122.076 +637618.336|221404.538|122.472 +637607.061|221408.501|123.764 +637601.547|221410.464|123.908 +637596.024|221412.427|124.093 +637590.431|221414.411|124.322 +637579.266|221418.367|124.980 +637573.676|221420.361|125.017 +637562.429|221424.360|125.377 +637551.362|221428.325|125.176 +637545.684|221430.343|125.386 +637528.813|221436.372|125.273 +637523.198|221438.387|125.081 +637517.596|221440.401|124.852 +637511.963|221442.416|124.746 +637500.652|221446.467|124.532 +637477.597|221454.669|125.206 +637471.873|221456.729|124.822 +637466.201|221458.772|124.514 +637460.394|221460.835|124.740 +637454.627|221462.902|124.581 +637448.891|221464.965|124.304 +637443.082|221467.038|124.350 +637437.214|221469.132|124.374 +637425.495|221473.314|124.438 +637419.661|221475.402|124.389 +637413.830|221477.483|124.340 +637407.889|221479.599|124.511 +637396.090|221483.811|124.551 +637390.208|221485.911|124.532 +637384.206|221488.057|124.493 +637366.211|221494.446|125.279 +637360.182|221496.576|125.736 +637348.225|221500.849|125.675 +637342.211|221502.989|125.831 +637323.999|221509.451|126.654 +637299.645|221518.098|127.708 +637293.595|221520.262|127.623 +637287.560|221522.408|127.782 +637256.775|221533.320|129.488 +637250.676|221535.496|129.482 +637244.525|221537.678|129.760 +637238.310|221539.882|130.065 +637232.227|221542.058|130.055 +637226.003|221544.259|130.461 +637207.516|221550.858|130.513 +637201.341|221553.053|130.756 +637195.178|221555.259|130.625 +637176.546|221561.889|131.119 +637170.386|221564.114|130.671 +637164.311|221566.293|130.482 +637158.056|221568.539|130.266 +637151.927|221570.737|130.061 +637145.761|221572.959|129.711 +637133.550|221577.391|128.318 +637127.366|221579.610|128.126 +637121.099|221581.850|128.068 +637114.912|221584.069|127.937 +637077.464|221597.508|126.730 +637071.179|221599.742|126.946 +637064.839|221601.997|127.157 +637058.487|221604.250|127.468 +637052.160|221606.502|127.641 +637045.841|221608.752|127.772 +637039.522|221611.004|127.937 +637042.631|221613.748|128.108 +637055.284|221609.282|127.391 +637061.453|221607.082|127.507 +637074.014|221602.628|127.126 +637086.471|221598.197|127.129 +637092.719|221595.987|126.840 +637105.064|221591.573|127.288 +637111.254|221589.363|127.428 +637117.347|221587.157|128.196 +637123.516|221584.965|128.105 +637135.766|221580.567|128.918 +637141.878|221578.375|129.217 +637160.163|221571.804|130.537 +637166.323|221569.609|130.628 +637172.449|221567.415|130.924 +637178.505|221565.242|131.281 +637197.013|221558.691|130.534 +637203.152|221556.509|130.503 +637215.286|221552.172|130.955 +637227.551|221547.831|130.430 +637233.702|221545.658|130.104 +637239.749|221543.512|130.028 +637245.882|221541.339|129.851 +637251.965|221539.184|129.613 +637258.065|221537.029|129.333 +637294.577|221524.121|127.626 +637300.575|221521.984|127.681 +637306.686|221519.832|127.236 +637354.689|221502.818|125.910 +637360.731|221500.682|125.697 +637366.699|221498.563|125.544 +637372.566|221496.475|125.572 +637378.631|221494.345|125.038 +637390.491|221490.142|124.654 +637396.386|221488.048|124.651 +637402.232|221485.957|124.862 +637408.127|221483.857|124.892 +637419.840|221479.693|124.779 +637431.475|221475.554|124.807 +637443.130|221471.421|124.566 +637471.791|221461.183|125.343 +637483.312|221457.095|125.084 +637494.843|221453.002|124.871 +637500.509|221450.990|124.804 +637506.209|221448.957|124.862 +637517.605|221444.903|124.810 +637523.165|221442.907|125.203 +637528.782|221440.898|125.404 +637534.363|221438.908|125.499 +637545.623|221434.906|125.395 +637551.277|221432.900|125.282 +637562.466|221428.916|125.300 +637568.117|221426.920|125.017 +637584.817|221420.992|124.706 +637590.437|221419.010|124.368 +637596.018|221417.044|123.965 +637601.572|221415.069|123.898 +637618.470|221409.147|122.106 +637640.303|221401.396|121.750 +637645.817|221399.454|121.289 +637656.393|221395.672|121.713 +637639.251|221403.999|121.661 +637617.455|221411.774|121.978 +637600.462|221417.745|123.923 +637594.927|221419.724|123.947 +637589.255|221421.723|124.453 +637583.732|221423.695|124.465 +637572.418|221427.697|125.255 +637566.895|221429.678|125.084 +637561.289|221431.675|125.218 +637550.024|221435.695|125.279 +637533.080|221441.742|125.428 +637527.417|221443.766|125.410 +637521.802|221445.781|125.221 +637516.252|221447.784|124.810 +637499.086|221453.913|124.880 +637493.358|221455.955|124.953 +637487.592|221458.013|124.956 +637464.491|221466.251|125.261 +637447.160|221472.457|124.941 +637441.295|221474.551|124.965 +637423.797|221480.812|124.746 +637411.977|221485.030|124.788 +637400.114|221489.255|125.105 +637394.265|221491.364|124.663 +637388.303|221493.491|124.727 +637376.324|221497.750|125.148 +637370.268|221499.886|125.685 +637364.291|221502.023|125.611 +637315.809|221519.253|127.394 +637309.750|221521.405|127.599 +637303.650|221523.578|127.718 +637297.558|221525.749|127.846 +637291.462|221527.919|127.989 +637272.945|221534.463|129.403 +637266.879|221536.639|129.187 +637248.396|221543.211|129.787 +637242.255|221545.393|130.034 +637236.107|221547.591|130.025 +637229.877|221549.791|130.449 +637217.483|221554.205|130.714 +637205.203|221558.606|130.458 +637198.997|221560.819|130.543 +637180.279|221567.473|131.171 +637167.965|221571.895|130.628 +637143.222|221580.796|129.336 +637130.871|221585.249|128.449 +637124.699|221587.465|128.196 +637118.432|221589.705|128.178 +637112.227|221591.942|127.779 +637106.036|221594.176|127.291 +637093.509|221598.648|127.318 +637080.969|221603.134|127.105 +637055.671|221612.144|127.571 +637049.273|221614.415|127.836 +637042.912|221616.664|128.315 +637055.625|221615.835|127.507 +637061.907|221613.610|127.239 +637068.113|221611.404|127.111 +637086.873|221604.716|127.141 +637105.408|221598.087|127.590 +637111.577|221595.877|127.836 +637117.740|221593.664|128.135 +637123.931|221591.451|128.284 +637130.085|221589.257|128.278 +637142.313|221584.852|129.208 +637148.458|221582.640|129.693 +637154.569|221580.445|130.004 +637166.749|221576.059|130.933 +637178.944|221571.685|131.461 +637185.071|221569.503|131.424 +637197.455|221565.129|130.641 +637203.691|221562.916|130.397 +637215.816|221558.573|130.848 +637221.900|221556.405|130.823 +637228.093|221554.211|130.558 +637234.159|221552.062|130.336 +637240.298|221549.886|130.077 +637246.409|221547.712|129.991 +637252.499|221545.554|129.711 +637258.677|221543.372|129.321 +637289.118|221532.582|128.132 +637295.140|221530.442|128.035 +637301.179|221528.297|127.873 +637307.217|221526.151|127.754 +637313.282|221524.002|127.513 +637319.211|221521.881|127.647 +637343.390|221513.319|126.507 +637349.425|221511.182|126.255 +637385.285|221498.460|125.051 +637391.171|221496.363|125.041 +637397.078|221494.247|125.236 +637402.951|221492.163|125.038 +637408.782|221490.084|125.054 +637420.584|221485.890|124.804 +637426.406|221483.811|124.910 +637432.167|221481.754|125.011 +637438.034|221479.663|124.962 +637443.764|221477.608|125.230 +637455.377|221473.472|125.194 +637472.592|221467.324|125.575 +637501.350|221457.110|125.121 +637518.523|221451.008|124.837 +637524.073|221449.012|125.264 +637529.657|221447.009|125.587 +637535.329|221445.001|125.349 +637546.607|221440.983|125.416 +637552.249|221438.978|125.343 +637557.824|221436.985|125.538 +637563.490|221434.985|125.182 +637569.001|221433.010|125.389 +637580.312|221429.011|124.840 +637585.923|221427.030|124.517 +637591.529|221425.049|124.243 +637597.152|221423.061|123.923 +637602.666|221421.107|123.767 +637619.692|221415.146|121.756 +637625.127|221413.201|121.942 +637641.635|221407.370|121.033 +637646.996|221405.459|121.091 +637652.230|221403.569|121.588 +637657.646|221401.646|121.494 +637642.500|221409.327|120.969 +637636.947|221411.281|121.588 +637631.442|221413.237|121.853 +637626.038|221415.176|121.789 +637620.585|221417.130|121.676 +637614.922|221419.123|122.307 +637603.617|221423.107|123.563 +637598.051|221425.079|123.917 +637592.422|221427.085|124.060 +637586.822|221429.072|124.340 +637569.839|221435.101|125.270 +637564.243|221437.097|125.395 +637558.619|221439.097|125.624 +637553.102|221441.087|125.246 +637547.457|221443.102|125.355 +637541.767|221445.135|125.410 +637536.146|221447.144|125.465 +637530.495|221449.167|125.410 +637524.875|221451.185|125.258 +637519.303|221453.194|124.929 +637513.588|221455.239|124.916 +637502.201|221459.305|125.035 +637490.640|221463.423|125.392 +637479.069|221467.550|125.608 +637473.309|221469.607|125.651 +637461.839|221473.725|125.325 +637456.023|221475.816|125.121 +637450.211|221477.892|125.188 +637438.586|221482.052|125.105 +637432.715|221484.149|125.191 +637426.915|221486.231|125.017 +637421.023|221488.340|124.962 +637415.134|221490.450|124.929 +637409.221|221492.559|124.999 +637403.326|221494.668|125.020 +637391.525|221498.893|124.898 +637385.572|221501.020|124.941 +637379.576|221503.151|125.206 +637373.566|221505.296|125.270 +637361.459|221509.585|126.133 +637349.502|221513.846|126.419 +637307.070|221528.955|127.711 +637301.032|221531.107|127.888 +637294.921|221533.280|128.111 +637288.849|221535.447|128.181 +637276.560|221539.812|128.790 +637245.830|221550.742|129.970 +637239.703|221552.922|130.180 +637233.458|221555.147|130.385 +637227.359|221557.320|130.494 +637221.123|221559.542|130.695 +637202.652|221566.156|130.458 +637196.428|221568.372|130.677 +637183.952|221572.798|131.360 +637165.411|221579.451|130.872 +637153.116|221583.892|130.013 +637146.971|221586.108|129.562 +637128.488|221592.783|128.251 +637122.270|221595.002|128.327 +637116.027|221597.243|128.181 +637109.858|221599.477|127.586 +637103.637|221601.714|127.327 +637097.401|221603.973|126.785 +637078.558|221610.700|126.962 +637059.557|221617.460|127.602 +637053.226|221619.734|127.407 +637046.850|221621.983|127.995 +637037.764|221629.308|129.229 +637050.501|221624.842|127.736 +637056.732|221622.642|127.364 +637063.081|221620.395|127.065 +637069.256|221618.188|127.135 +637075.513|221615.963|127.087 +637081.713|221613.757|127.044 +637106.594|221604.878|127.321 +637112.696|221602.668|128.001 +637118.822|221600.461|128.510 +637124.986|221598.270|128.425 +637131.173|221596.054|128.595 +637149.498|221589.461|129.900 +637155.606|221587.269|130.241 +637161.665|221585.078|130.866 +637167.795|221582.883|131.095 +637173.973|221580.683|131.058 +637198.659|221571.911|130.586 +637204.831|221569.725|130.339 +637216.956|221565.382|130.775 +637223.092|221563.196|130.805 +637229.194|221561.026|130.677 +637253.654|221552.355|129.842 +637278.047|221543.701|129.068 +637302.346|221535.088|128.202 +637308.411|221532.939|127.937 +637314.407|221530.814|127.721 +637320.442|221528.669|127.644 +637374.648|221509.475|125.218 +637380.533|221507.366|125.441 +637386.511|221505.245|125.282 +637392.436|221503.129|125.368 +637398.285|221501.038|125.535 +637404.158|221498.941|125.599 +637410.099|221496.835|125.419 +637421.794|221492.672|125.322 +637433.450|221488.511|125.477 +637439.348|221486.420|125.300 +637468.142|221476.130|125.895 +637479.670|221472.015|126.059 +637491.158|221467.928|125.934 +637496.989|221465.877|125.447 +637508.522|221461.777|125.267 +637514.289|221459.729|125.087 +637519.870|221457.726|125.374 +637525.515|221455.711|125.435 +637531.148|221453.700|125.563 +637536.789|221451.685|125.660 +637542.459|221449.664|125.685 +637548.082|221447.662|125.654 +637553.779|221445.644|125.374 +637559.387|221443.644|125.428 +637564.868|221441.675|125.727 +637570.567|221439.658|125.486 +637581.876|221435.656|124.935 +637587.539|221433.665|124.423 +637593.135|221431.684|124.161 +637598.734|221429.703|123.917 +637604.342|221427.716|123.648 +637615.812|221423.720|121.853 +637621.347|221421.757|121.682 +637626.828|221419.803|121.710 +637632.247|221417.870|121.734 +637637.749|221415.923|121.503 +637643.363|221413.951|120.905 +637648.779|221412.027|120.768 +637654.043|221410.135|121.161 +637659.310|221408.239|121.545 +637652.239|221412.256|120.792 +637646.859|221414.179|120.805 +637630.235|221420.080|121.670 +637624.807|221422.022|121.692 +637619.332|221423.982|121.664 +637613.611|221425.999|122.271 +637602.108|221430.038|123.761 +637596.521|221432.028|123.965 +637590.922|221434.019|124.240 +637568.236|221442.078|125.374 +637562.573|221444.096|125.499 +637557.007|221446.098|125.291 +637551.304|221448.125|125.596 +637539.993|221452.167|125.672 +637534.260|221454.218|125.672 +637528.624|221456.239|125.553 +637517.374|221460.290|125.063 +637505.749|221464.423|125.563 +637500.009|221466.468|125.685 +637488.427|221470.601|125.883 +637482.684|221472.658|125.828 +637465.177|221478.910|126.096 +637447.812|221485.140|125.706 +637436.089|221489.343|125.508 +637430.219|221491.452|125.346 +637424.352|221493.546|125.453 +637418.484|221495.653|125.307 +637412.550|221497.768|125.456 +637388.836|221506.253|125.364 +637382.911|221508.378|125.297 +637376.839|221510.533|125.630 +637370.883|221512.673|125.453 +637358.737|221516.979|126.221 +637340.641|221523.441|126.413 +637316.281|221532.107|127.373 +637310.106|221534.292|127.855 +637304.038|221536.447|128.147 +637297.957|221538.620|128.217 +637291.855|221540.809|128.123 +637279.532|221545.180|128.861 +637267.172|221549.563|129.568 +637254.937|221553.930|129.754 +637230.197|221562.742|130.485 +637223.951|221564.964|130.720 +637217.819|221567.159|130.708 +637205.502|221571.584|130.336 +637199.278|221573.800|130.531 +637186.702|221578.257|131.409 +637168.106|221584.923|131.201 +637161.973|221587.145|130.662 +637155.795|221589.367|130.394 +637143.417|221593.832|129.671 +637131.112|221598.291|128.553 +637124.854|221600.534|128.467 +637118.591|221602.778|128.455 +637112.397|221605.018|128.001 +637106.195|221607.255|127.611 +637074.861|221618.509|126.815 +637068.515|221620.764|127.096 +637062.102|221623.041|127.434 +637055.799|221625.296|127.462 +637049.453|221627.549|127.833 +637037.489|221635.739|129.342 +637043.823|221633.523|128.617 +637050.227|221631.283|127.864 +637056.445|221629.085|127.593 +637062.797|221626.842|127.260 +637068.997|221624.641|127.169 +637081.524|221620.191|127.038 +637094.018|221615.759|126.785 +637100.315|221613.531|126.578 +637118.658|221606.917|128.391 +637124.836|221604.707|128.611 +637131.100|221602.494|128.306 +637137.190|221600.291|129.117 +637161.574|221591.518|131.107 +637167.636|221589.330|131.741 +637180.060|221584.935|131.293 +637198.577|221578.372|130.790 +637204.795|221576.187|130.296 +637216.974|221571.831|130.781 +637223.140|221569.646|130.647 +637235.396|221565.309|130.162 +637241.541|221563.123|130.211 +637265.938|221554.476|129.568 +637284.332|221547.996|128.367 +637290.386|221545.841|128.406 +637296.433|221543.701|128.175 +637302.498|221541.543|128.196 +637308.536|221539.404|128.062 +637344.692|221526.590|127.151 +637350.800|221524.435|126.849 +637356.820|221522.301|126.672 +637368.945|221518.037|125.730 +637374.882|221515.925|125.706 +637380.878|221513.806|125.456 +637386.764|221511.700|125.700 +637392.686|221509.591|125.806 +637457.108|221486.670|126.023 +637462.927|221484.604|125.971 +637468.724|221482.537|126.020 +637480.289|221478.422|126.050 +637491.865|221474.310|125.849 +637497.677|221472.253|125.681 +637503.377|221470.220|125.718 +637514.954|221466.130|125.172 +637526.390|221462.045|125.474 +637532.028|221460.030|125.572 +637537.643|221458.022|125.788 +637543.324|221456.001|125.767 +637549.073|221453.968|125.526 +637554.748|221451.959|125.322 +637560.445|221449.932|125.300 +637582.897|221441.962|124.950 +637588.682|221439.938|124.249 +637594.330|221437.939|124.039 +637599.981|221435.936|123.844 +637617.104|221429.953|121.643 +637633.615|221424.085|121.509 +637639.239|221422.116|120.863 +637644.765|221420.166|120.573 +637650.206|221418.227|120.591 +637655.564|221416.307|120.887 +637656.625|221417.224|120.829 +637651.425|221419.114|120.256 +637645.923|221421.071|120.469 +637634.789|221425.009|121.399 +637601.133|221436.933|123.755 +637595.491|221438.941|123.950 +637589.892|221440.929|124.240 +637584.049|221442.986|124.953 +637561.652|221450.984|125.233 +637555.961|221453.020|125.261 +637550.182|221455.068|125.627 +637544.489|221457.101|125.703 +637538.844|221459.113|125.864 +637533.193|221461.149|125.581 +637527.548|221463.173|125.526 +637521.854|221465.215|125.435 +637516.218|221467.245|125.127 +637498.912|221473.414|125.602 +637493.051|221475.493|126.005 +637481.560|221479.620|125.685 +637475.738|221481.687|125.983 +637469.904|221483.768|126.093 +637458.236|221487.944|126.102 +637440.677|221494.238|125.846 +637434.867|221496.323|125.703 +637417.134|221502.660|125.855 +637399.422|221509.015|125.538 +637387.416|221513.294|125.816 +637381.524|221515.413|125.636 +637375.590|221517.534|125.669 +637357.411|221523.999|126.419 +637351.239|221526.175|127.029 +637345.231|221528.318|127.224 +637321.045|221536.959|127.401 +637308.847|221541.296|127.977 +637302.678|221543.491|128.190 +637296.600|221545.661|128.278 +637290.514|221547.831|128.437 +637278.178|221552.217|128.989 +637272.034|221554.406|129.196 +637247.314|221563.190|130.314 +637234.994|221567.607|130.156 +637228.767|221569.811|130.631 +637222.622|221572.005|130.683 +637204.142|221578.641|130.208 +637197.876|221580.860|130.677 +637185.318|221585.316|131.485 +637129.661|221605.378|128.723 +637123.404|221607.621|128.653 +637117.241|221609.858|127.998 +637104.783|221614.360|127.151 +637098.532|221616.600|127.105 +637092.253|221618.862|126.855 +637079.677|221623.358|126.943 +637067.034|221627.872|127.166 +637060.615|221630.152|127.550 +637054.278|221632.404|127.833 +637047.831|221634.678|128.492 +637044.692|221639.768|129.190 +637051.071|221637.528|128.574 +637057.411|221635.306|127.827 +637063.675|221633.084|127.666 +637069.963|221630.859|127.340 +637076.230|221628.634|127.215 +637082.484|221626.409|127.184 +637088.751|221624.181|127.090 +637094.966|221621.974|126.937 +637101.205|221619.746|127.087 +637125.754|221610.916|128.815 +637132.002|221608.703|128.577 +637138.098|221606.496|129.315 +637168.462|221595.533|132.283 +637174.601|221593.338|132.439 +637193.279|221586.748|131.174 +637199.503|221584.563|130.583 +637205.694|221582.377|130.226 +637217.843|221578.019|130.836 +637223.994|221575.833|130.744 +637236.290|221571.475|130.324 +637242.413|221569.305|130.116 +637248.457|221567.156|130.028 +637291.236|221551.995|128.531 +637297.253|221549.858|128.425 +637303.340|221547.697|128.321 +637309.384|221545.554|128.120 +637315.401|221543.412|128.083 +637327.510|221539.117|127.718 +637333.545|221536.971|127.647 +637339.522|221534.847|127.586 +637345.542|221532.716|127.340 +637375.663|221522.067|125.800 +637381.686|221519.927|125.681 +637393.375|221515.739|126.215 +637399.370|221513.614|125.992 +637405.231|221511.520|126.087 +637416.988|221507.329|126.200 +637440.512|221498.960|126.053 +637446.291|221496.899|126.093 +637463.762|221490.669|126.276 +637481.032|221484.515|126.386 +637510.214|221474.198|124.965 +637515.825|221472.180|125.355 +637527.078|221468.150|125.806 +637532.739|221466.136|125.806 +637538.448|221464.097|125.892 +637544.147|221462.073|125.773 +637555.516|221458.040|125.480 +637561.234|221456.010|125.361 +637566.858|221454.020|125.127 +637572.488|221452.017|125.127 +637589.529|221445.982|124.441 +637595.119|221444.004|124.188 +637600.779|221442.002|123.935 +637617.970|221435.997|121.667 +637640.248|221428.109|120.756 +637645.792|221426.155|120.381 +637651.251|221424.216|120.317 +637662.041|221420.367|120.424 +637667.479|221418.431|120.475 +637672.877|221416.520|120.235 +637660.380|221422.897|120.518 +637649.593|221426.774|120.223 +637644.082|221428.731|120.488 +637638.440|221430.712|121.204 +637616.297|221438.606|121.747 +637604.568|221442.687|124.069 +637599.094|221444.653|123.904 +637593.434|221446.665|124.176 +637587.789|221448.671|124.420 +637576.371|221452.718|125.172 +637570.836|221454.703|125.084 +637565.197|221456.717|125.133 +637559.436|221458.763|125.413 +637553.806|221460.774|125.474 +637542.340|221464.852|125.941 +637536.722|221466.870|125.761 +637530.968|221468.925|125.877 +637525.423|221470.930|125.468 +637519.733|221472.969|125.368 +637508.086|221477.118|125.752 +637502.280|221479.172|126.166 +637490.716|221483.314|126.099 +637478.999|221487.475|126.706 +637444.127|221499.981|126.069 +637438.223|221502.093|126.059 +637420.468|221508.433|126.297 +637408.660|221512.663|126.154 +637384.852|221521.183|126.102 +637378.930|221523.316|125.803 +637372.932|221525.459|125.843 +637348.606|221534.094|127.190 +637342.586|221536.234|127.443 +637336.459|221538.416|127.635 +637330.415|221540.574|127.757 +637324.337|221542.747|127.751 +637312.127|221547.100|128.089 +637306.037|221549.270|128.208 +637299.892|221551.465|128.312 +637293.796|221553.635|128.513 +637287.639|221555.826|128.726 +637262.957|221564.601|129.775 +637256.861|221566.799|129.470 +637250.579|221569.012|130.150 +637244.422|221571.210|130.205 +637238.283|221573.407|130.193 +637232.050|221575.629|130.357 +637225.841|221577.830|130.753 +637219.580|221580.067|130.784 +637207.340|221584.484|130.046 +637201.113|221586.700|130.296 +637182.133|221593.396|132.241 +637175.899|221595.624|132.287 +637169.663|221597.849|132.369 +637132.737|221611.248|128.729 +637126.519|221613.470|128.809 +637101.574|221622.468|127.419 +637095.335|221624.723|126.931 +637089.007|221626.985|127.026 +637082.676|221629.241|127.199 +637076.358|221631.499|127.288 +637063.647|221636.028|127.623 +637057.314|221638.281|127.910 +637039.376|221648.547|129.583 +637045.716|221646.303|129.211 +637052.056|221644.060|128.864 +637058.350|221641.838|128.431 +637064.675|221639.613|127.827 +637077.211|221635.160|127.465 +637083.578|221632.910|127.093 +637089.748|221630.704|127.227 +637102.162|221626.263|127.477 +637120.636|221619.612|128.714 +637126.808|221617.402|128.937 +637133.026|221615.186|128.882 +637139.140|221612.976|129.498 +637169.572|221601.979|132.408 +637181.907|221597.581|132.381 +637188.113|221595.377|132.192 +637194.422|221593.167|131.436 +637200.725|221590.970|130.385 +637206.898|221588.784|130.101 +637225.213|221582.231|130.534 +637231.324|221580.046|130.674 +637237.414|221577.876|130.622 +637255.858|221571.331|129.985 +637274.152|221564.839|129.348 +637286.368|221560.514|128.742 +637292.446|221558.353|128.626 +637298.515|221556.192|128.568 +637304.531|221554.052|128.480 +637310.637|221551.885|128.288 +637316.662|221549.739|128.205 +637328.772|221545.442|127.818 +637334.804|221543.293|127.754 +637352.873|221536.877|127.257 +637371.027|221530.467|125.992 +637377.019|221528.330|125.980 +637382.853|221526.227|126.416 +637388.806|221524.112|126.334 +637441.917|221505.178|126.233 +637453.536|221501.029|126.322 +637470.840|221494.830|126.946 +637488.341|221488.615|126.422 +637494.157|221486.554|126.181 +637499.881|221484.506|126.322 +637511.506|221480.379|125.983 +637517.371|221478.315|125.389 +637528.666|221474.262|125.919 +637534.354|221472.229|126.053 +637540.039|221470.205|125.974 +637545.711|221468.184|125.962 +637551.441|221466.151|125.755 +637557.132|221464.124|125.703 +637562.896|221462.085|125.413 +637568.580|221460.070|125.188 +637574.237|221458.058|125.075 +637579.907|221456.044|124.947 +637585.548|221454.044|124.697 +637591.196|221452.045|124.447 +637596.844|221450.042|124.209 +637602.471|221448.043|124.066 +637619.759|221441.998|121.667 +637647.600|221432.144|120.302 +637653.080|221430.197|120.158 +637658.533|221428.255|120.119 +637663.940|221426.320|120.247 +637669.417|221424.372|120.155 +637670.262|221426.295|120.113 +637664.864|221428.228|120.183 +637659.395|221430.181|120.280 +637653.958|221432.129|120.287 +637648.481|221434.083|120.436 +637620.582|221443.998|121.856 +637614.901|221445.994|122.597 +637603.303|221450.064|124.276 +637597.768|221452.054|124.112 +637592.053|221454.087|124.374 +637586.399|221456.096|124.663 +637580.711|221458.122|124.859 +637575.088|221460.125|125.075 +637569.382|221462.164|125.142 +637563.688|221464.188|125.410 +637557.933|221466.233|125.694 +637552.231|221468.269|125.800 +637546.525|221470.305|125.941 +637540.843|221472.335|126.014 +637535.107|221474.387|126.062 +637529.428|221476.429|125.907 +637523.750|221478.468|125.770 +637518.139|221480.495|125.392 +637494.888|221488.782|126.151 +637488.997|221490.876|126.447 +637465.698|221499.213|126.517 +637454.003|221503.416|126.209 +637448.166|221505.507|126.160 +637424.483|221513.971|126.483 +637418.579|221516.096|126.273 +637412.638|221518.223|126.233 +637406.710|221520.335|126.437 +637400.723|221522.481|126.367 +637376.946|221531.025|125.773 +637370.923|221533.170|125.959 +637364.824|221535.341|126.221 +637340.391|221544.015|127.663 +637334.350|221546.173|127.760 +637328.254|221548.350|127.855 +637322.204|221550.507|128.056 +637316.028|221552.705|128.266 +637309.942|221554.878|128.373 +637303.815|221557.055|128.708 +637297.725|221559.243|128.568 +637291.663|221561.410|128.620 +637285.442|221563.626|128.864 +637273.030|221568.030|129.592 +637266.861|221570.222|129.973 +637242.136|221579.055|130.327 +637235.991|221581.253|130.363 +637229.694|221583.496|130.570 +637223.521|221585.694|130.805 +637205.044|221592.347|130.022 +637198.668|221594.591|130.781 +637185.994|221599.047|132.335 +637167.252|221605.753|132.408 +637142.637|221614.671|130.232 +637130.295|221619.149|129.028 +637124.022|221621.389|129.083 +637117.786|221623.650|128.547 +637111.608|221625.888|128.025 +637099.132|221630.405|126.977 +637092.796|221632.663|127.145 +637080.155|221637.178|127.337 +637073.736|221639.454|127.705 +637067.418|221641.710|127.846 +637054.644|221646.236|128.772 +637048.209|221648.528|128.946 +637041.808|221650.799|129.345 +637033.457|221657.688|130.004 +637046.042|221653.222|129.418 +637052.342|221651.000|128.888 +637058.655|221648.751|128.757 +637064.992|221646.526|128.010 +637071.292|221644.276|128.007 +637077.519|221642.070|127.678 +637083.786|221639.838|127.526 +637090.040|221637.607|127.495 +637102.467|221633.163|127.602 +637114.790|221628.716|128.473 +637127.083|221624.291|129.190 +637133.294|221622.075|129.147 +637151.363|221615.464|132.253 +637169.864|221608.849|132.402 +637207.263|221595.618|129.921 +637219.346|221591.253|130.866 +637225.497|221589.062|130.741 +637237.759|221584.697|130.458 +637243.852|221582.527|130.378 +637262.265|221575.974|129.918 +637286.694|221567.302|128.845 +637292.836|221565.117|128.705 +637298.841|221562.974|128.644 +637304.879|221560.813|128.739 +637316.958|221556.518|128.358 +637323.082|221554.345|128.108 +637329.132|221552.193|127.931 +637335.176|221550.041|127.806 +637341.235|221547.886|127.620 +637347.213|221545.753|127.547 +637353.315|221543.592|127.212 +637365.461|221539.300|126.303 +637371.490|221537.157|126.096 +637377.543|221535.008|125.785 +637401.162|221526.550|126.282 +637418.902|221520.207|126.450 +637424.812|221518.098|126.367 +637483.065|221497.265|126.937 +637488.905|221495.198|126.578 +637494.706|221493.123|126.648 +637506.245|221489.008|126.581 +637518.008|221484.863|125.474 +637535.037|221478.745|126.191 +637540.706|221476.721|126.166 +637546.418|221474.691|125.992 +637552.148|221472.643|126.014 +637563.563|221468.592|125.563 +637569.254|221466.572|125.310 +637574.914|221464.557|125.179 +637580.635|221462.518|125.090 +637586.271|221460.518|124.846 +637591.986|221458.491|124.590 +637597.643|221456.486|124.307 +637603.202|221454.507|124.167 +637620.597|221448.424|121.597 +637642.763|221440.538|121.033 +637648.462|221438.539|120.338 +637653.940|221436.591|120.195 +637662.008|221435.817|120.616 +637651.151|221439.725|120.366 +637645.594|221441.706|120.588 +637617.443|221451.712|122.341 +637605.805|221455.794|124.188 +637600.218|221457.796|124.212 +637594.549|221459.811|124.542 +637588.871|221461.841|124.706 +637583.192|221463.868|124.880 +637577.517|221465.895|125.060 +637560.332|221472.018|125.822 +637554.605|221474.064|126.026 +637549.015|221476.081|125.755 +637543.221|221478.145|126.005 +637537.573|221480.175|125.974 +637531.733|221482.257|126.200 +637520.504|221486.332|125.230 +637514.777|221488.383|125.325 +637502.883|221492.586|126.520 +637491.344|221496.732|126.416 +637485.406|221498.835|126.928 +637479.609|221500.913|126.907 +637473.738|221503.020|126.946 +637467.944|221505.110|126.687 +637456.289|221509.298|126.492 +637444.621|221513.502|126.151 +637438.766|221515.611|125.971 +637403.086|221528.394|126.184 +637373.349|221539.077|125.825 +637367.256|221541.248|126.075 +637361.206|221543.415|126.145 +637342.891|221549.910|127.547 +637336.843|221552.071|127.696 +637330.744|221554.253|127.812 +637324.715|221556.411|127.925 +637318.601|221558.591|128.160 +637300.203|221565.162|128.656 +637294.162|221567.332|128.617 +637288.033|221569.524|128.733 +637263.395|221578.308|129.696 +637244.720|221584.956|130.659 +637238.597|221587.157|130.598 +637232.385|221589.379|130.695 +637226.259|221591.576|130.689 +637220.108|221593.792|130.497 +637213.939|221596.005|130.421 +637207.815|221598.215|130.098 +637170.187|221611.583|132.344 +637145.410|221620.499|131.628 +637139.430|221622.733|129.845 +637133.285|221624.973|129.104 +637127.015|221627.217|129.168 +637102.177|221636.193|127.605 +637095.935|221638.455|127.154 +637089.641|221640.692|127.480 +637083.243|221642.972|127.715 +637070.560|221647.486|128.327 +637057.856|221652.015|128.778 +637045.103|221656.538|129.693 +637033.615|221664.600|130.321 +637039.928|221662.360|130.101 +637046.262|221660.117|129.748 +637052.583|221657.870|129.510 +637058.969|221655.624|128.815 +637065.199|221653.399|128.861 +637071.600|221651.150|128.117 +637077.879|221648.922|127.870 +637084.145|221646.690|127.724 +637090.516|221644.438|127.294 +637096.679|221642.228|127.483 +637102.875|221639.994|127.867 +637121.371|221633.337|128.931 +637127.567|221631.103|129.376 +637133.712|221628.908|129.357 +637139.823|221626.674|130.360 +637170.398|221615.659|132.296 +637207.827|221602.412|129.988 +637219.925|221598.047|130.848 +637226.067|221595.859|130.793 +637262.978|221582.743|129.534 +637268.995|221580.573|129.943 +637287.450|221574.035|128.882 +637293.531|221571.874|128.729 +637299.591|221569.710|128.711 +637317.787|221563.230|128.345 +637323.859|221561.078|128.041 +637329.903|221558.929|127.894 +637342.004|221554.622|127.586 +637347.984|221552.492|127.504 +637360.255|221548.173|126.267 +637366.232|221546.039|126.264 +637372.285|221543.896|125.938 +637384.133|221539.635|126.495 +637390.037|221537.523|126.605 +637395.978|221535.402|126.578 +637407.908|221531.153|126.370 +637413.818|221529.050|126.255 +637419.868|221526.910|125.837 +637425.781|221524.804|125.742 +637437.552|221520.594|125.867 +637443.478|221518.482|125.785 +637466.630|221510.176|126.568 +637489.841|221501.874|126.867 +637501.448|221497.750|126.462 +637507.108|221495.707|126.852 +637519.013|221491.529|125.419 +637524.543|221489.517|126.108 +637530.206|221487.484|126.297 +637535.896|221485.448|126.401 +637541.685|221483.393|126.157 +637547.336|221481.373|126.203 +637558.699|221477.319|126.117 +637564.493|221475.258|125.919 +637575.956|221471.195|125.346 +637581.571|221469.199|125.157 +637587.252|221467.178|124.968 +637592.888|221465.176|124.737 +637604.196|221461.155|124.441 +637621.646|221455.053|121.865 +637649.502|221445.168|120.573 +637655.025|221443.199|120.482 +637660.438|221441.264|120.558 +637665.854|221439.325|120.643 +637665.784|221440.910|120.619 +637654.964|221444.800|120.451 +637649.416|221446.781|120.622 +637627.041|221454.751|121.707 +637621.247|221456.797|122.380 +637603.961|221462.893|124.414 +637592.644|221466.934|124.773 +637586.932|221468.967|125.054 +637581.248|221470.997|125.267 +637575.517|221473.045|125.410 +637569.738|221475.100|125.764 +637564.090|221477.121|125.886 +637552.700|221481.208|125.822 +637541.108|221485.341|126.337 +637535.375|221487.395|126.395 +637529.688|221489.441|126.288 +637523.994|221491.498|125.980 +637518.379|221493.543|125.383 +637506.486|221497.737|126.794 +637483.102|221506.110|127.062 +637477.323|221508.189|126.977 +637471.501|221510.286|126.812 +637454.039|221516.583|126.169 +637436.428|221522.920|125.739 +637430.368|221525.087|125.889 +637418.478|221529.339|126.102 +637400.501|221535.767|126.492 +637394.414|221537.947|126.620 +637370.548|221546.536|126.011 +637364.446|221548.712|126.306 +637358.393|221550.876|126.392 +637333.878|221559.600|127.818 +637327.711|221561.803|127.955 +637297.073|221572.755|128.693 +637290.995|221574.928|128.858 +637284.802|221577.141|128.986 +637278.724|221579.326|128.854 +637272.457|221581.548|129.409 +637260.021|221585.974|130.083 +637253.776|221588.205|130.275 +637228.950|221597.081|130.778 +637222.817|221599.282|130.811 +637191.350|221610.471|132.753 +637185.242|221612.681|132.436 +637135.711|221630.600|129.507 +637129.411|221632.868|129.357 +637123.196|221635.114|129.074 +637104.460|221641.884|128.096 +637098.233|221644.148|127.529 +637091.933|221646.410|127.477 +637085.630|221648.672|127.474 +637079.253|221650.933|127.995 +637072.877|221653.216|128.120 +637060.139|221657.752|128.772 +637053.684|221660.028|129.565 +637039.163|221669.401|130.421 +637045.457|221667.161|130.339 +637051.803|221664.917|129.888 +637058.155|221662.674|129.406 +637064.455|221660.449|128.906 +637070.758|221658.203|128.870 +637077.092|221655.978|128.178 +637083.374|221653.750|127.897 +637095.904|221649.290|127.641 +637102.132|221647.056|127.812 +637126.772|221638.171|129.589 +637132.968|221635.958|129.626 +637151.122|221629.329|132.546 +637169.651|221622.721|132.475 +637188.210|221616.101|132.411 +637207.148|221609.462|130.025 +637237.734|221598.511|130.662 +637250.015|221594.146|130.318 +637280.705|221583.252|129.126 +637286.822|221581.070|129.074 +637292.912|221578.909|128.845 +637298.978|221576.748|128.778 +637317.211|221570.252|128.486 +637323.289|221568.104|128.138 +637329.357|221565.952|127.849 +637335.463|221563.779|127.715 +637341.470|221561.648|127.465 +637353.760|221557.317|126.337 +637359.712|221555.189|126.416 +637371.749|221550.898|126.312 +637395.627|221542.388|126.069 +637407.533|221538.133|126.218 +637419.484|221533.881|125.953 +637443.118|221525.456|125.742 +637454.749|221521.280|126.258 +637495.367|221506.756|126.696 +637501.167|221504.681|126.767 +637518.751|221498.460|125.624 +637524.421|221496.415|126.026 +637530.126|221494.363|126.303 +637535.738|221492.352|126.450 +637558.668|221484.177|126.148 +637564.337|221482.153|126.175 +637575.865|221478.066|125.584 +637581.555|221476.045|125.337 +637587.258|221474.021|125.078 +637592.964|221471.997|124.825 +637598.618|221469.979|124.776 +637604.257|221467.977|124.572 +637615.983|221463.886|122.637 +637621.631|221461.890|122.237 +637632.991|221457.872|121.487 +637638.547|221455.888|121.454 +637655.323|221449.939|120.643 +637660.791|221447.991|120.536 +637666.150|221446.065|120.805 +637688.742|221438.140|118.010 +637668.506|221446.537|120.878 +637657.740|221450.417|120.546 +637652.172|221452.404|120.796 +637646.524|221454.404|121.341 +637640.979|221456.382|121.564 +637635.408|221458.378|121.655 +637629.720|221460.393|122.176 +637618.589|221464.374|122.423 +637612.755|221466.425|123.286 +637606.796|221468.495|124.612 +637601.200|221470.500|124.682 +637595.546|221472.527|124.752 +637589.849|221474.560|124.987 +637584.152|221476.593|125.236 +637578.416|221478.629|125.657 +637567.041|221482.699|125.962 +637561.314|221484.756|125.925 +637549.929|221488.831|126.126 +637544.132|221490.898|126.410 +637538.393|221492.952|126.492 +637532.626|221495.025|126.462 +637521.357|221499.109|125.660 +637503.740|221505.379|126.724 +637497.876|221507.473|126.931 +637486.223|221511.661|126.831 +637480.417|221513.742|126.855 +637474.491|221515.858|127.123 +637462.906|221520.055|126.373 +637457.133|221522.143|126.078 +637451.342|221524.231|125.858 +637445.419|221526.364|125.675 +637439.549|221528.480|125.566 +637433.630|221530.598|125.672 +637427.619|221532.756|125.639 +637397.755|221543.451|126.075 +637373.642|221552.096|126.312 +637367.677|221554.253|125.998 +637361.563|221556.427|126.370 +637355.476|221558.597|126.645 +637349.462|221560.758|126.605 +637337.105|221565.147|127.550 +637330.985|221567.329|127.788 +637324.862|221569.515|128.059 +637318.723|221571.697|128.425 +637300.313|221578.290|128.723 +637294.183|221580.485|128.836 +637288.036|221582.679|129.050 +637281.851|221584.895|129.178 +637275.743|221587.099|128.918 +637244.647|221598.178|130.531 +637238.432|221600.403|130.631 +637225.911|221604.875|131.070 +637207.513|221611.538|129.924 +637188.402|221618.277|132.354 +637169.669|221624.998|132.466 +637150.915|221631.728|132.509 +637138.763|221636.211|130.159 +637132.581|221638.455|129.662 +637126.244|221640.725|129.772 +637120.075|221642.969|129.223 +637101.391|221649.741|127.967 +637095.018|221652.027|128.007 +637082.329|221656.572|128.178 +637076.025|221658.834|128.230 +637056.850|221665.649|129.568 +637050.346|221667.947|130.296 +637037.633|221672.498|130.570 +637033.451|221678.003|130.994 +637039.785|221675.735|130.994 +637058.743|221669.026|129.632 +637065.059|221666.777|129.421 +637083.978|221660.068|128.266 +637090.232|221657.837|128.166 +637096.471|221655.606|128.172 +637102.686|221653.372|128.373 +637108.919|221651.137|128.489 +637127.336|221644.478|129.909 +637133.611|221642.237|129.799 +637145.675|221637.815|131.924 +637151.729|221635.623|132.469 +637170.297|221628.985|132.418 +637188.823|221622.355|132.430 +637207.675|221615.735|130.055 +637225.896|221609.163|131.156 +637232.138|221606.963|130.494 +637238.274|221604.771|130.464 +637244.403|221602.577|130.470 +637269.114|221593.829|128.748 +637281.281|221589.470|128.845 +637287.258|221587.318|129.147 +637293.345|221585.154|128.906 +637299.411|221582.990|128.787 +637317.629|221576.489|128.492 +637323.688|221574.337|128.196 +637329.778|221572.179|127.760 +637335.831|221570.027|127.538 +637341.970|221567.848|127.242 +637348.075|221565.699|126.523 +637360.118|221561.392|126.535 +637378.083|221554.979|126.288 +637384.020|221552.861|126.187 +637390.068|221550.712|125.910 +637396.057|221548.572|125.907 +637401.888|221546.463|126.325 +637413.748|221542.220|126.367 +637425.741|221537.980|125.368 +637431.658|221535.859|125.511 +637437.580|221533.747|125.377 +637443.408|221531.662|125.401 +637449.226|221529.562|125.745 +637466.451|221523.338|127.004 +637478.054|221519.180|127.163 +637495.522|221512.947|126.910 +637501.271|221510.893|126.907 +637507.056|221508.832|126.773 +637524.539|221502.620|126.005 +637530.181|221500.578|126.501 +637535.848|221498.545|126.666 +637541.593|221496.497|126.547 +637547.314|221494.452|126.538 +637558.787|221490.367|126.221 +637564.471|221488.337|126.163 +637587.280|221480.227|125.392 +637592.998|221478.200|125.069 +637598.591|221476.203|124.980 +637604.312|221474.173|124.679 +637616.065|221470.080|122.606 +637638.364|221462.128|122.237 +637644.003|221460.140|121.689 +637655.262|221456.166|120.713 +637688.650|221444.345|118.467 +637688.269|221446.528|118.741 +637660.459|221456.397|120.771 +637654.951|221458.369|120.838 +637649.243|221460.378|121.597 +637643.643|221462.377|121.771 +637637.971|221464.389|122.222 +637632.323|221466.395|122.606 +637615.617|221472.375|122.822 +637603.849|221476.496|124.752 +637598.228|221478.501|124.935 +637592.495|221480.553|125.069 +637586.786|221482.583|125.377 +637569.647|221488.700|125.968 +637563.938|221490.739|126.114 +637558.211|221492.793|126.099 +637552.426|221494.857|126.322 +637540.993|221498.947|126.547 +637535.198|221501.020|126.611 +637529.486|221503.081|126.392 +637523.866|221505.126|125.834 +637512.268|221509.271|126.120 +637506.255|221511.386|126.885 +637494.660|221515.550|126.791 +637488.826|221517.638|126.913 +637483.059|221519.726|126.523 +637465.445|221526.044|126.474 +637453.786|221530.244|126.090 +637447.998|221532.344|125.621 +637442.097|221534.475|125.361 +637436.224|221536.584|125.285 +637424.327|221540.854|125.267 +637418.301|221542.997|125.621 +637406.143|221547.322|126.303 +637400.263|221549.441|126.087 +637394.371|221551.577|125.657 +637388.281|221553.751|125.834 +637382.277|221555.899|125.953 +637364.111|221562.401|126.218 +637358.033|221564.568|126.456 +637351.964|221566.732|126.684 +637345.899|221568.911|126.614 +637339.696|221571.106|127.209 +637333.573|221573.288|127.468 +637327.425|221575.474|127.855 +637321.244|221577.677|128.129 +637315.120|221579.857|128.449 +637308.960|221582.054|128.672 +637302.849|221584.246|128.672 +637296.728|221586.437|128.745 +637290.572|221588.632|129.019 +637284.405|221590.842|129.037 +637278.224|221593.052|129.165 +637272.250|221595.225|128.553 +637259.589|221599.684|130.150 +637253.377|221601.909|130.205 +637247.229|221604.113|130.269 +637240.990|221606.338|130.519 +637234.790|221608.557|130.558 +637228.514|221610.785|131.058 +637172.227|221630.917|132.424 +637153.472|221637.644|132.503 +637147.282|221639.887|132.073 +637141.207|221642.128|130.894 +637135.129|221644.368|129.754 +637128.805|221646.636|129.787 +637116.290|221651.144|129.470 +637110.102|221653.405|128.662 +637097.605|221657.931|127.882 +637091.217|221660.214|128.047 +637084.886|221662.476|128.294 +637078.634|221664.735|127.977 +637065.748|221669.291|129.306 +637059.335|221671.568|129.805 +637052.888|221673.842|130.589 +637040.166|221678.390|130.973 +637033.747|221680.682|131.162 +637044.826|221680.645|130.991 +637057.545|221676.152|129.808 +637063.870|221673.903|129.513 +637076.522|221669.422|128.574 +637082.868|221667.167|128.214 +637095.344|221662.699|128.257 +637132.551|221649.293|129.839 +637138.726|221647.074|129.994 +637156.965|221640.405|132.719 +637187.899|221629.344|132.396 +637206.876|221622.672|130.007 +637231.266|221613.897|130.839 +637237.515|221611.675|130.525 +637243.544|221609.505|130.735 +637249.832|221607.280|130.244 +637255.916|221605.103|130.208 +637268.266|221600.714|129.574 +637274.420|221598.526|129.239 +637286.633|221594.158|129.123 +637292.769|221591.973|128.955 +637298.853|221589.802|128.751 +637310.993|221585.468|128.544 +637317.101|221583.292|128.281 +637323.243|221581.116|127.894 +637329.336|221578.955|127.452 +637335.450|221576.778|127.242 +637341.522|221574.617|126.949 +637347.530|221572.481|126.681 +637353.623|221570.301|126.639 +637359.667|221568.140|126.541 +637389.799|221557.399|125.651 +637395.801|221555.253|125.590 +637407.648|221550.992|125.925 +637413.604|221548.880|125.572 +637425.613|221544.607|125.054 +637437.443|221540.382|124.828 +637443.298|221538.261|125.273 +637449.059|221536.185|125.593 +637460.672|221531.997|126.154 +637466.545|221529.885|126.309 +637483.961|221523.633|126.675 +637501.283|221517.424|126.785 +637507.093|221515.343|126.797 +637519.032|221511.142|125.398 +637524.585|221509.125|125.965 +637530.215|221507.083|126.492 +637535.924|221505.025|126.739 +637541.666|221502.977|126.623 +637547.360|221500.935|126.709 +637558.906|221496.820|126.337 +637564.639|221494.781|126.093 +637570.302|221492.751|126.123 +637576.020|221490.712|125.959 +637593.162|221484.616|125.188 +637598.896|221482.570|125.051 +637604.498|221480.571|124.938 +637610.064|221478.578|124.974 +637616.224|221476.462|123.155 +637644.259|221466.483|122.076 +637655.585|221462.481|121.076 +637688.876|221450.664|119.086 +637694.679|221448.658|117.732 +637691.147|221452.133|118.738 +637668.847|221460.061|120.543 +637657.768|221464.023|120.872 +637652.129|221466.035|121.177 +637646.445|221468.044|121.890 +637640.714|221470.068|122.542 +637635.133|221472.064|122.719 +637618.430|221478.069|122.728 +637606.552|221482.229|124.843 +637600.941|221484.250|124.764 +637595.217|221486.289|125.118 +637589.557|221488.316|125.255 +637583.720|221490.386|125.822 +637578.056|221492.422|125.764 +637572.344|221494.470|125.913 +637566.654|221496.509|125.998 +637555.114|221500.639|126.334 +637537.835|221506.836|126.626 +637532.190|221508.875|126.407 +637526.481|221510.938|126.200 +637520.848|221513.002|125.453 +637515.060|221515.087|125.328 +637474.034|221529.799|125.962 +637468.161|221531.906|126.066 +637462.171|221534.042|126.404 +637456.450|221536.136|125.651 +637450.519|221538.276|125.526 +637438.863|221542.491|124.987 +637432.877|221544.649|124.871 +637414.915|221551.087|125.191 +637390.912|221559.688|125.681 +637348.426|221574.904|126.764 +637323.904|221583.652|127.995 +637317.763|221585.852|128.126 +637311.627|221588.038|128.547 +637305.461|221590.253|128.528 +637299.307|221592.451|128.772 +637293.171|221594.649|128.961 +637262.213|221605.716|130.049 +637249.823|221610.172|130.031 +637231.138|221616.832|131.034 +637224.863|221619.078|131.232 +637174.887|221636.952|132.631 +637156.167|221643.679|132.533 +637143.868|221648.169|131.147 +637137.735|221650.430|129.952 +637131.472|221652.677|130.022 +637112.742|221659.452|129.098 +637100.172|221663.979|128.842 +637093.878|221666.262|128.382 +637087.571|221668.523|128.434 +637081.210|221670.806|128.489 +637074.879|221673.065|128.769 +637068.390|221675.366|129.351 +637049.267|221682.169|130.558 +637042.784|221684.464|131.244 +637050.529|221685.574|130.644 +637056.863|221683.324|130.244 +637063.233|221681.075|129.592 +637069.506|221678.822|129.696 +637075.815|221676.591|129.098 +637107.112|221665.396|128.766 +637113.223|221663.180|129.257 +637131.850|221656.462|130.101 +637137.982|221654.265|130.110 +637144.100|221652.024|131.019 +637174.772|221640.960|132.451 +637193.352|221634.300|132.521 +637212.064|221627.677|130.927 +637249.042|221614.461|130.263 +637255.157|221612.281|130.049 +637261.317|221610.078|129.940 +637267.483|221607.892|129.491 +637279.675|221603.528|129.403 +637285.771|221601.342|129.391 +637291.839|221599.178|129.220 +637297.935|221597.008|128.940 +637304.117|221594.813|128.556 +637310.158|221592.646|128.592 +637316.251|221590.473|128.388 +637322.344|221588.300|128.202 +637328.403|221586.145|127.907 +637334.533|221583.962|127.602 +637346.688|221579.640|126.946 +637352.739|221577.482|126.779 +637358.795|221575.337|126.315 +637430.600|221549.672|124.999 +637442.472|221545.426|124.880 +637471.398|221534.987|126.291 +637483.071|221530.799|126.434 +637500.384|221524.575|126.788 +637506.191|221522.493|126.800 +637518.066|221518.311|125.355 +637523.817|221516.233|125.642 +637529.349|221514.206|126.535 +637535.000|221512.170|126.727 +637540.770|221510.100|126.733 +637546.427|221508.073|126.700 +637558.016|221503.934|126.376 +637569.434|221499.859|126.032 +637575.109|221497.826|126.023 +637580.848|221495.777|125.782 +637586.566|221493.735|125.648 +637592.330|221491.684|125.374 +637597.911|221489.688|125.294 +637603.644|221487.648|124.932 +637609.173|221485.649|125.304 +637621.045|221481.522|122.783 +637643.372|221473.530|122.496 +637649.051|221471.531|121.801 +637654.735|221469.516|121.332 +637671.383|221463.591|120.524 +637676.958|221461.603|120.277 +637693.673|221455.687|118.799 +637692.622|221457.802|119.019 +637681.451|221461.765|120.174 +637675.937|221463.737|120.433 +637664.861|221467.699|120.954 +637659.331|221469.680|121.097 +637653.711|221471.692|121.344 +637619.884|221483.777|123.149 +637608.238|221487.880|124.919 +637602.495|221489.938|125.084 +637596.808|221491.974|125.307 +637591.166|221494.001|125.383 +637585.436|221496.055|125.563 +637579.718|221498.094|125.956 +637574.036|221500.136|125.986 +637568.306|221502.200|125.989 +637556.824|221506.314|126.355 +637551.054|221508.381|126.553 +637545.318|221510.441|126.657 +637539.536|221512.520|126.696 +637533.812|221514.590|126.532 +637522.537|221518.695|125.575 +637510.702|221522.917|126.367 +637504.788|221525.023|126.779 +637499.028|221527.105|126.608 +637493.191|221529.214|126.511 +637452.265|221543.997|125.456 +637434.642|221550.379|124.731 +637416.713|221556.823|124.916 +637350.099|221580.704|126.806 +637344.003|221582.893|126.913 +637337.919|221585.078|126.998 +637325.514|221589.488|128.068 +637319.366|221591.695|128.227 +637313.230|221593.896|128.339 +637307.076|221596.100|128.574 +637300.868|221598.325|128.790 +637288.529|221602.741|129.205 +637282.375|221604.957|129.208 +637276.200|221607.158|129.680 +637269.994|221609.389|129.680 +637263.837|221611.602|129.757 +637251.392|221616.049|130.372 +637208.001|221631.679|130.104 +637189.012|221638.397|132.375 +637157.758|221649.629|132.640 +637151.564|221651.878|132.232 +637145.447|221654.124|131.348 +637139.378|221656.371|130.168 +637133.081|221658.642|130.055 +637120.569|221663.159|129.775 +637108.100|221667.694|128.848 +637101.787|221669.962|128.928 +637095.484|221672.227|128.982 +637089.196|221674.516|128.513 +637070.106|221681.322|129.720 +637063.815|221683.605|129.333 +637050.992|221688.162|130.452 +637044.500|221690.460|131.235 +637035.133|221697.461|131.585 +637041.470|221695.190|131.555 +637047.776|221692.944|131.287 +637054.150|221690.697|130.561 +637066.817|221686.196|129.802 +637079.500|221681.688|129.050 +637085.742|221679.432|129.412 +637098.239|221674.961|129.254 +637104.494|221672.723|129.174 +637110.760|221670.483|129.013 +637129.256|221663.790|130.305 +637135.519|221661.546|130.266 +637141.658|221659.327|130.644 +637147.748|221657.087|131.720 +637153.859|221654.868|132.293 +637172.403|221648.217|132.372 +637190.966|221641.558|132.509 +637209.882|221634.904|130.058 +637277.493|221610.696|129.482 +637283.616|221608.511|129.318 +637289.752|221606.323|129.120 +637295.805|221604.158|129.034 +637301.944|221601.967|128.851 +637308.037|221599.794|128.623 +637314.151|221597.621|128.306 +637320.247|221595.444|128.089 +637326.367|221593.268|127.797 +637338.636|221588.918|126.824 +637344.616|221586.770|126.962 +637363.090|221580.247|125.002 +637375.065|221575.949|125.105 +637393.253|221569.490|123.965 +637411.099|221563.077|124.276 +637446.514|221550.352|124.895 +637475.570|221539.891|125.803 +637487.204|221535.706|126.136 +637492.977|221533.631|126.239 +637504.508|221529.482|126.559 +637522.135|221523.219|125.343 +637533.415|221519.125|126.291 +637539.021|221517.095|126.672 +637544.809|221515.020|126.620 +637550.551|221512.965|126.504 +637556.345|221510.902|126.215 +637573.484|221504.769|125.895 +637579.221|221502.712|125.898 +637590.639|221498.640|125.453 +637596.256|221496.625|125.468 +637602.041|221494.564|125.133 +637607.625|221492.565|125.066 +637613.386|221490.523|124.630 +637625.078|221486.423|122.752 +637658.740|221474.429|121.198 +637664.294|221472.448|120.978 +637675.370|221468.489|120.686 +637680.924|221466.517|120.296 +637686.450|221464.551|120.012 +637692.073|221462.563|119.424 +637697.800|221460.555|118.519 +637696.532|221462.353|118.464 +637690.787|221464.371|119.442 +637685.163|221466.364|120.046 +637679.622|221468.342|120.387 +637674.014|221470.330|120.981 +637668.552|221472.302|120.869 +637663.038|221474.283|120.951 +637657.448|221476.276|121.317 +637651.702|221478.309|121.996 +637646.009|221480.330|122.524 +637640.342|221482.360|122.761 +637623.630|221488.374|122.780 +637600.456|221496.588|125.236 +637594.756|221498.627|125.517 +637589.093|221500.670|125.438 +637583.357|221502.712|125.883 +637577.718|221504.748|125.758 +637571.936|221506.820|125.938 +637560.439|221510.938|126.343 +637554.706|221512.999|126.392 +637548.954|221515.062|126.535 +637543.148|221517.147|126.657 +637537.359|221519.226|126.721 +637531.727|221521.280|126.218 +637526.085|221523.335|125.755 +637520.364|221525.413|125.358 +637514.432|221527.526|125.800 +637502.658|221531.732|126.416 +637496.845|221533.823|126.459 +637479.362|221540.147|125.840 +637473.531|221542.250|125.764 +637455.938|221548.624|124.990 +637432.310|221557.170|124.179 +637420.578|221561.425|123.511 +637408.441|221565.763|124.133 +637402.497|221567.912|123.932 +637396.459|221570.088|123.883 +637384.353|221574.428|124.255 +637353.656|221585.355|126.587 +637347.505|221587.550|126.956 +637341.418|221589.738|127.035 +637322.886|221596.353|128.126 +637316.751|221598.556|128.227 +637310.612|221600.757|128.367 +637304.419|221602.964|128.809 +637298.216|221605.186|129.001 +637292.047|221607.405|129.050 +637285.868|221609.624|129.168 +637279.666|221611.843|129.437 +637273.481|221614.058|129.638 +637261.088|221618.505|129.894 +637248.622|221622.971|130.305 +637242.404|221625.202|130.461 +637211.393|221636.385|130.119 +637192.267|221643.155|132.436 +637173.592|221649.885|132.320 +637148.644|221658.901|131.707 +637142.466|221661.171|130.833 +637136.284|221663.421|130.372 +637129.942|221665.692|130.577 +637123.721|221667.962|129.994 +637111.254|221672.501|129.037 +637104.939|221674.772|129.123 +637085.913|221681.614|129.275 +637073.172|221686.186|129.577 +637066.897|221688.448|129.543 +637053.988|221693.032|130.823 +637041.178|221697.610|131.509 +637039.955|221701.615|131.296 +637046.204|221699.369|131.470 +637058.954|221694.852|130.366 +637084.127|221685.866|129.586 +637090.382|221683.635|129.412 +637096.615|221681.398|129.403 +637102.878|221679.164|129.202 +637109.166|221676.905|129.275 +637115.281|221674.689|129.717 +637121.499|221672.452|129.906 +637127.741|221670.212|129.918 +637133.843|221667.996|130.497 +637140.104|221665.756|130.433 +637146.166|221663.537|131.265 +637152.216|221661.321|132.186 +637195.416|221645.816|132.539 +637238.862|221630.335|130.677 +637245.040|221628.116|130.714 +637251.194|221625.936|130.223 +637257.357|221623.736|130.037 +637288.039|221612.778|129.229 +637294.110|221610.611|129.016 +637300.206|221608.426|129.016 +637306.321|221606.252|128.629 +637312.365|221604.085|128.632 +637318.543|221601.888|128.278 +637324.599|221599.736|127.937 +637330.729|221597.557|127.583 +637336.907|221595.371|127.007 +637342.894|221593.219|127.090 +637373.581|221582.365|124.228 +637391.561|221575.934|123.938 +637415.585|221567.351|123.335 +637462.366|221550.474|125.428 +637474.165|221546.256|125.218 +637479.926|221544.171|125.581 +637497.309|221537.913|126.078 +637502.981|221535.868|126.334 +637508.784|221533.786|126.343 +637526.286|221527.547|125.636 +637531.919|221525.502|126.142 +637537.570|221523.453|126.578 +637543.337|221521.387|126.590 +637549.106|221519.329|126.361 +637554.828|221517.281|126.334 +637560.576|221515.224|126.221 +637572.052|221511.127|125.898 +637577.788|221509.070|125.889 +637583.418|221507.058|125.816 +637589.188|221505.007|125.480 +637594.775|221502.998|125.590 +637600.538|221500.944|125.313 +637606.159|221498.929|125.346 +637623.478|221492.818|123.441 +637646.030|221484.777|122.573 +637651.657|221482.778|122.262 +637657.396|221480.766|121.366 +637663.044|221478.757|121.036 +637668.576|221476.782|120.887 +637685.240|221470.860|119.884 +637701.979|221464.938|118.369 +637703.345|221465.806|118.397 +637686.693|221471.738|119.653 +637681.030|221473.737|120.418 +637669.972|221477.709|120.658 +637664.397|221479.699|120.954 +637624.944|221493.802|123.051 +637618.985|221495.881|124.404 +637613.240|221497.929|124.801 +637607.473|221499.981|125.288 +637601.858|221502.005|125.261 +637596.174|221504.041|125.496 +637590.480|221506.089|125.547 +637584.756|221508.140|125.724 +637579.062|221510.188|125.806 +637573.384|221512.231|125.858 +637567.632|221514.297|125.950 +637556.156|221518.421|126.105 +637550.384|221520.488|126.331 +637544.641|221522.551|126.471 +637538.862|221524.630|126.529 +637533.162|221526.709|126.038 +637527.475|221528.769|125.767 +637521.863|221530.820|125.215 +637516.033|221532.917|125.273 +637510.001|221535.045|126.160 +637504.136|221537.157|126.145 +637498.321|221539.248|126.212 +637492.532|221541.348|125.925 +637480.907|221545.551|125.599 +637475.168|221547.639|125.157 +637469.163|221549.794|125.307 +637463.317|221551.913|125.078 +637457.511|221554.025|124.688 +637451.573|221556.168|124.615 +637433.971|221562.547|123.828 +637422.251|221566.817|122.868 +637416.207|221568.985|123.072 +637410.175|221571.146|123.240 +637404.079|221573.319|123.728 +637398.181|221575.462|123.341 +637392.076|221577.647|123.627 +637386.117|221579.796|123.542 +637373.846|221584.182|124.215 +637361.614|221588.556|124.804 +637355.451|221590.741|125.493 +637342.973|221595.152|127.123 +637336.901|221597.334|127.169 +637324.523|221601.757|127.855 +637318.330|221603.966|128.260 +637306.019|221608.374|128.778 +637299.877|221610.575|128.995 +637293.714|221612.793|129.034 +637281.336|221617.231|129.443 +637275.109|221619.469|129.555 +637268.906|221621.685|129.882 +637250.310|221628.360|130.302 +637213.015|221641.780|130.598 +637194.026|221648.519|132.536 +637175.366|221655.249|132.387 +637156.575|221662.016|132.469 +637150.366|221664.287|131.790 +637144.200|221666.536|131.229 +637138.061|221668.785|130.506 +637131.758|221671.059|130.491 +637106.758|221680.136|129.080 +637094.048|221684.693|129.516 +637075.001|221691.530|130.010 +637068.671|221693.813|129.936 +637062.373|221696.099|129.638 +637049.480|221700.677|130.891 +637058.173|221700.978|130.299 +637064.470|221698.726|130.119 +637070.734|221696.473|130.223 +637077.040|221694.218|130.043 +637083.319|221691.987|129.638 +637089.595|221689.728|129.705 +637102.171|221685.235|129.321 +637120.688|221678.539|130.232 +637133.054|221674.080|130.644 +637139.305|221671.836|130.604 +637145.374|221669.617|131.381 +637151.540|221667.377|131.942 +637176.195|221658.501|132.405 +637194.681|221651.860|132.500 +637213.490|221645.209|130.537 +637225.692|221640.789|131.311 +637250.307|221631.978|130.817 +637256.556|221629.771|130.162 +637281.083|221620.993|129.592 +637293.342|221616.616|129.150 +637299.469|221614.424|128.970 +637305.513|221612.260|128.925 +637329.979|221603.549|127.486 +637336.072|221601.370|127.309 +637342.141|221599.193|127.269 +637384.779|221584.045|124.203 +637390.857|221581.875|124.014 +637396.846|221579.741|123.667 +637408.919|221575.431|123.188 +637414.909|221573.294|122.917 +637420.862|221571.164|122.829 +637426.830|221569.015|122.966 +637461.836|221556.366|124.557 +637473.403|221552.178|125.276 +637485.071|221547.984|125.368 +637490.871|221545.893|125.587 +637519.946|221535.484|125.066 +637525.664|221533.426|125.191 +637542.602|221527.282|126.504 +637548.344|221525.230|126.358 +637559.912|221521.094|126.038 +637565.636|221519.043|126.017 +637571.332|221517.007|125.870 +637576.996|221514.974|125.858 +637582.659|221512.941|125.874 +637588.453|221510.874|125.663 +637594.098|221508.853|125.538 +637599.746|221506.833|125.413 +637605.412|221504.797|125.486 +637616.787|221500.749|124.828 +637662.111|221484.655|121.539 +637667.753|221482.659|120.997 +637673.304|221480.681|120.774 +637684.353|221476.737|120.351 +637689.997|221474.749|119.653 +637695.588|221472.768|119.156 +637701.251|221470.784|118.226 +637706.664|221468.836|118.345 +637706.103|221470.997|118.171 +637700.623|221472.957|118.488 +637689.379|221476.944|119.671 +637683.712|221478.946|120.454 +637678.132|221480.940|120.738 +637672.633|221482.918|120.777 +637667.128|221484.896|120.844 +637661.508|221486.908|121.100 +637655.646|221488.962|122.201 +637650.084|221490.959|122.295 +637644.421|221492.986|122.530 +637638.922|221494.982|122.207 +637633.216|221497.015|122.637 +637610.073|221505.217|125.209 +637604.330|221507.275|125.404 +637598.673|221509.317|125.310 +637593.013|221511.344|125.477 +637587.243|221513.416|125.584 +637581.540|221515.465|125.712 +637575.813|221517.525|125.706 +637570.147|221519.564|125.733 +637564.404|221521.628|125.813 +637558.558|221523.722|126.062 +637552.819|221525.782|126.178 +637547.022|221527.864|126.279 +637541.224|221529.946|126.401 +637529.770|221534.094|125.913 +637524.210|221536.136|125.169 +637494.873|221546.673|125.663 +637489.042|221548.776|125.578 +637483.306|221550.864|125.108 +637442.192|221565.760|123.338 +637436.306|221567.893|123.088 +637430.368|221570.033|123.075 +637418.463|221574.340|122.670 +637394.231|221583.011|123.697 +637369.695|221591.762|125.340 +637345.116|221600.528|127.007 +637338.995|221602.717|127.294 +637332.872|221604.920|127.315 +637326.684|221607.130|127.675 +637320.622|221609.310|127.757 +637308.137|221613.748|128.824 +637302.032|221615.945|128.867 +637295.854|221618.164|128.989 +637289.785|221620.353|128.888 +637283.461|221622.599|129.488 +637277.352|221624.809|129.299 +637258.656|221631.496|130.205 +637239.956|221638.186|131.012 +637177.518|221660.598|132.338 +637158.767|221667.341|132.555 +637152.597|221669.590|132.009 +637146.364|221671.858|131.503 +637140.256|221674.107|130.574 +637133.941|221676.378|130.622 +637121.392|221680.916|130.229 +637108.859|221685.452|129.787 +637096.289|221689.981|129.696 +637077.202|221696.836|130.022 +637070.877|221699.095|130.360 +637064.449|221701.399|130.589 +637051.775|221705.959|130.659 +637042.665|221712.701|131.409 +637067.933|221703.670|130.470 +637074.218|221701.411|130.439 +637080.567|221699.156|129.946 +637086.821|221696.922|129.726 +637093.085|221694.663|129.915 +637099.327|221692.423|129.839 +637111.809|221687.924|130.189 +637118.030|221685.680|130.308 +637124.190|221683.462|130.436 +637130.429|221681.218|130.485 +637136.644|221678.975|130.695 +637142.804|221676.753|130.887 +637148.882|221674.531|131.619 +637211.031|221652.283|130.122 +637241.733|221641.225|130.711 +637266.376|221632.410|129.982 +637284.756|221625.830|129.565 +637303.160|221619.252|128.885 +637315.440|221614.878|128.190 +637321.661|221612.690|127.315 +637327.657|221610.520|127.593 +637333.743|221608.343|127.440 +637345.911|221604.000|126.910 +637352.083|221601.824|126.111 +637358.195|221599.635|125.931 +637406.621|221582.359|123.639 +637412.781|221580.186|122.880 +637418.728|221578.052|122.807 +637424.763|221575.894|122.661 +637436.483|221571.661|123.085 +637442.432|221569.524|123.078 +637448.284|221567.400|123.496 +637459.992|221563.178|123.847 +637483.196|221554.781|125.038 +637494.760|221550.611|125.361 +637500.579|221548.514|125.538 +637506.328|221546.438|125.739 +637512.128|221544.354|125.749 +637523.869|221540.175|125.029 +637529.511|221538.111|125.706 +637535.192|221536.057|125.998 +637540.886|221533.999|126.264 +637546.613|221531.948|126.160 +637552.423|221529.866|126.002 +637563.932|221525.749|125.681 +637569.680|221523.691|125.578 +637575.325|221521.661|125.636 +637581.056|221519.601|125.633 +637586.798|221517.540|125.593 +637592.416|221515.526|125.557 +637598.118|221513.480|125.474 +637603.794|221511.453|125.261 +637609.451|221509.414|125.374 +637615.129|221507.384|125.194 +637638.270|221499.213|122.457 +637643.866|221497.204|122.438 +637649.456|221495.220|121.993 +637655.019|221493.226|121.899 +637671.962|221487.207|120.610 +637677.528|221485.219|120.347 +637682.987|221483.253|120.466 +637688.547|221481.278|120.043 +637699.839|221477.291|118.671 +637710.837|221473.369|118.150 +637707.920|221476.441|118.107 +637702.436|221478.401|118.442 +637680.189|221486.341|120.168 +637674.651|221488.331|120.341 +637669.064|221490.328|120.707 +637663.416|221492.336|121.289 +637657.722|221494.360|121.835 +637617.891|221508.579|124.767 +637612.182|221510.624|125.063 +637606.506|221512.660|125.276 +637600.874|221514.690|125.334 +637595.244|221516.717|125.413 +637589.499|221518.787|125.450 +637583.796|221520.838|125.587 +637578.102|221522.899|125.474 +637572.427|221524.941|125.538 +637566.672|221527.010|125.688 +637560.951|221529.074|125.721 +637555.178|221531.144|125.980 +637549.405|221533.222|125.995 +637543.635|221535.304|126.035 +637532.233|221539.437|125.617 +637526.591|221541.507|124.947 +637520.842|221543.595|124.700 +637508.940|221547.840|125.636 +637503.069|221549.956|125.672 +637497.333|221552.038|125.462 +637479.831|221558.384|124.782 +637474.007|221560.502|124.471 +637462.354|221564.751|123.612 +637450.494|221569.036|123.426 +637444.612|221571.173|123.164 +637438.778|221573.300|122.688 +637420.758|221579.796|122.813 +637414.695|221581.966|123.146 +637408.633|221584.136|123.508 +637402.449|221586.334|124.148 +637396.410|221588.510|124.148 +637384.176|221592.881|124.956 +637371.901|221597.270|125.752 +637347.371|221606.054|126.977 +637335.094|221610.459|127.474 +637328.973|221612.662|127.529 +637322.771|221614.894|127.687 +637316.574|221617.103|128.156 +637310.426|221619.307|128.425 +637304.141|221621.557|128.751 +637291.751|221626.004|129.226 +637285.542|221628.226|129.577 +637248.134|221641.643|130.991 +637216.904|221652.866|131.713 +637210.942|221655.091|130.202 +637154.344|221675.393|132.158 +637148.138|221677.664|131.482 +637141.932|221679.938|130.811 +637135.684|221682.187|130.830 +637116.911|221689.000|129.970 +637110.529|221691.292|130.144 +637091.631|221698.116|129.933 +637072.520|221704.971|130.561 +637066.180|221707.254|130.610 +637059.776|221709.562|130.674 +637053.373|221711.838|131.256 +637047.054|221714.118|131.204 +637040.553|221716.441|131.646 +637035.584|221721.876|131.951 +637079.781|221706.050|130.519 +637086.133|221703.767|130.455 +637092.335|221701.551|130.168 +637098.648|221699.287|129.979 +637104.884|221697.046|129.949 +637111.141|221694.782|130.199 +637117.362|221692.538|130.302 +637123.590|221690.295|130.363 +637135.925|221685.827|130.955 +637142.185|221683.577|130.872 +637148.248|221681.355|131.680 +637154.435|221679.127|131.692 +637166.731|221674.674|132.287 +637172.922|221672.443|132.326 +637179.121|221670.212|132.341 +637185.223|221668.005|132.579 +637234.772|221650.244|131.296 +637253.154|221643.621|131.448 +637259.305|221641.414|131.290 +637271.750|221637.007|129.955 +637296.296|221628.216|129.114 +637302.404|221626.025|129.031 +637308.503|221623.849|128.690 +637326.898|221617.283|127.644 +637332.966|221615.104|127.556 +637339.050|221612.922|127.413 +637345.119|221610.757|127.062 +637357.308|221606.417|126.175 +637363.440|221604.241|125.599 +637387.580|221595.581|125.038 +637429.801|221580.512|122.685 +637435.785|221578.369|122.481 +637441.682|221576.239|122.685 +637447.477|221574.133|123.075 +637465.036|221567.790|123.554 +637476.576|221563.596|124.386 +637488.171|221559.405|124.785 +637523.040|221546.859|124.731 +637534.421|221542.726|125.444 +637540.042|221540.678|125.983 +637545.818|221538.602|125.922 +637551.594|221536.526|125.883 +637557.296|221534.487|125.651 +637563.112|221532.402|125.493 +637568.821|221530.348|125.514 +637574.548|221528.288|125.486 +637585.902|221524.209|125.383 +637591.580|221522.167|125.340 +637597.244|221520.128|125.389 +637602.946|221518.080|125.297 +637608.607|221516.050|125.148 +637614.273|221514.020|124.990 +637619.994|221511.978|124.657 +637648.478|221501.837|122.569 +637671.124|221493.787|120.628 +637676.687|221491.800|120.366 +637682.295|221489.803|119.970 +637693.247|221485.865|119.881 +637698.879|221483.872|119.238 +637704.658|221481.851|118.129 +637710.169|221479.876|117.927 +637708.346|221482.296|118.366 +637686.102|221490.236|120.223 +637680.631|221492.217|120.158 +637675.032|221494.223|120.539 +637669.384|221496.244|120.884 +637640.940|221506.394|123.389 +637618.141|221514.562|124.727 +637612.456|221516.605|124.947 +637606.784|221518.644|125.130 +637601.084|221520.701|125.206 +637595.442|221522.734|125.319 +637589.773|221524.782|125.313 +637584.070|221526.846|125.206 +637578.285|221528.925|125.425 +637572.652|221530.967|125.337 +637566.913|221533.036|125.425 +637561.207|221535.100|125.407 +637549.570|221539.285|125.773 +637543.800|221541.367|125.809 +637532.336|221545.530|125.374 +637526.704|221547.603|124.663 +637520.949|221549.694|124.441 +637509.068|221553.943|125.276 +637503.228|221556.058|125.200 +637491.597|221560.276|124.889 +637485.778|221562.398|124.514 +637480.072|221564.489|123.947 +637468.325|221568.759|123.441 +637450.574|221575.181|123.237 +637432.862|221581.622|122.463 +637426.842|221583.792|122.554 +637420.782|221585.965|122.844 +637414.674|221588.144|123.383 +637359.743|221607.856|125.944 +637353.540|221610.066|126.596 +637347.423|221612.260|126.867 +637341.260|221614.461|127.382 +637335.127|221616.671|127.462 +637328.995|221618.883|127.571 +637322.798|221621.099|128.016 +637291.836|221632.218|129.251 +637285.698|221634.437|129.226 +637273.180|221638.912|130.183 +637248.192|221647.888|131.174 +637211.076|221661.357|130.104 +637192.033|221668.130|132.192 +637185.833|221670.370|132.180 +637179.548|221672.635|132.332 +637173.281|221674.897|132.390 +637148.327|221683.949|131.713 +637142.085|221686.247|130.897 +637135.839|221688.500|130.933 +637123.327|221693.051|130.363 +637117.052|221695.324|130.241 +637104.424|221699.893|130.162 +637085.364|221706.770|130.385 +637066.290|221713.634|130.921 +637059.972|221715.920|130.863 +637053.522|221718.227|131.345 +637047.155|221720.507|131.701 +637039.056|221727.316|132.207 +637045.366|221725.067|131.826 +637051.715|221722.793|131.640 +637057.975|221720.537|131.683 +637070.658|221716.002|131.080 +637077.022|221713.722|130.881 +637083.310|221711.464|130.823 +637089.610|221709.202|130.692 +637102.162|221704.697|130.391 +637108.493|221702.432|130.110 +637114.692|221700.189|130.339 +637120.913|221697.946|130.442 +637127.125|221695.699|130.628 +637133.322|221693.453|130.939 +637139.503|221691.228|130.930 +637145.733|221688.960|131.467 +637151.878|221686.732|131.732 +637164.198|221682.276|132.143 +637170.370|221680.026|132.677 +637182.824|221675.561|132.341 +637189.015|221673.348|132.052 +637195.230|221671.114|132.015 +637207.846|221666.630|130.891 +637214.054|221664.430|130.247 +637238.640|221655.533|131.107 +637269.568|221644.456|130.040 +637288.008|221637.842|129.565 +637300.289|221633.450|129.007 +637312.569|221629.055|128.531 +637318.702|221626.872|128.056 +637324.761|221624.693|127.980 +637330.927|221622.489|127.687 +637337.014|221620.307|127.519 +637349.273|221615.945|126.507 +637355.235|221613.790|126.706 +637367.369|221609.435|126.443 +637379.515|221605.091|125.913 +637409.776|221594.280|124.322 +637421.974|221589.955|123.042 +637428.137|221587.775|122.304 +637434.056|221585.639|122.374 +637439.997|221583.502|122.380 +637451.710|221579.259|122.871 +637469.349|221572.889|123.325 +637475.061|221570.804|123.844 +637486.668|221566.598|124.438 +637492.468|221564.498|124.633 +637498.186|221562.425|124.916 +637521.501|221554.055|124.468 +637527.274|221551.971|124.615 +637532.928|221549.904|125.243 +637544.260|221545.798|125.694 +637550.064|221543.720|125.535 +637555.830|221541.641|125.547 +637561.622|221539.574|125.224 +637567.324|221537.520|125.267 +637573.073|221535.456|125.148 +637578.696|221533.423|125.273 +637590.108|221529.321|125.206 +637595.784|221527.279|125.194 +637601.404|221525.255|125.151 +637607.061|221523.216|125.236 +637612.767|221521.177|124.919 +637618.455|221519.140|124.697 +637624.148|221517.101|124.468 +637635.438|221513.066|123.959 +637641.226|221511.008|123.456 +637652.580|221506.976|122.374 +637658.185|221504.970|122.112 +637663.882|221502.949|121.561 +637669.524|221500.935|121.219 +637680.789|221496.920|120.418 +637686.392|221494.936|119.823 +637691.835|221492.976|119.777 +637703.070|221488.996|118.583 +637714.049|221485.067|118.092 +637705.804|221489.328|118.141 +637700.047|221491.355|119.186 +637689.028|221495.314|119.701 +637683.356|221497.335|120.308 +637672.130|221501.361|120.969 +637666.442|221503.394|121.466 +637660.849|221505.406|121.661 +637655.192|221507.430|122.100 +637649.438|221509.481|122.667 +637626.587|221517.659|124.340 +637620.887|221519.707|124.590 +637615.221|221521.750|124.737 +637609.378|221523.834|125.304 +637603.843|221525.852|125.011 +637598.128|221527.910|125.157 +637592.492|221529.955|125.029 +637586.752|221532.030|125.063 +637581.043|221534.085|125.246 +637575.374|221536.145|125.038 +637563.862|221540.306|125.112 +637558.022|221542.406|125.364 +637552.289|221544.472|125.489 +637546.479|221546.563|125.666 +637540.663|221548.670|125.645 +637534.958|221550.754|125.209 +637529.276|221552.824|124.935 +637523.549|221554.912|124.615 +637505.852|221561.291|125.011 +637500.098|221563.379|124.868 +637494.267|221565.507|124.520 +637488.384|221567.640|124.407 +637470.898|221574.026|123.210 +637465.091|221576.144|122.835 +637435.318|221586.931|122.448 +637429.436|221589.071|122.225 +637380.448|221606.612|125.560 +637368.140|221611.010|126.578 +637349.803|221617.625|126.937 +637337.493|221622.041|127.623 +637331.424|221624.230|127.721 +637325.221|221626.464|127.879 +637300.398|221635.376|129.171 +637294.211|221637.601|129.388 +637275.545|221644.319|130.049 +637269.357|221646.556|130.007 +637238.237|221657.764|130.857 +637213.417|221666.761|130.363 +637200.728|221671.288|131.537 +637194.398|221673.559|131.912 +637188.101|221675.805|132.475 +637150.528|221689.414|131.982 +637144.359|221691.691|131.080 +637138.107|221693.947|131.128 +637131.767|221696.248|130.976 +637125.516|221698.525|130.671 +637112.894|221703.097|130.479 +637106.633|221705.371|130.266 +637100.257|221707.666|130.473 +637093.948|221709.936|130.674 +637087.513|221712.250|130.887 +637081.149|221714.539|131.076 +637074.834|221716.807|131.393 +637068.436|221719.117|131.430 +637055.662|221723.713|131.878 +637042.912|221728.304|132.250 +637036.804|221734.086|132.689 +637055.713|221727.310|132.046 +637062.075|221725.033|131.762 +637068.280|221722.802|131.747 +637074.660|221720.525|131.381 +637080.936|221718.267|131.351 +637087.254|221716.008|131.025 +637093.573|221713.750|130.726 +637099.803|221711.509|130.674 +637106.115|221709.248|130.473 +637112.348|221707.007|130.418 +637137.153|221698.034|131.302 +637143.402|221695.788|131.238 +637149.501|221693.563|131.796 +637155.758|221691.316|131.704 +637186.506|221680.197|132.674 +637192.791|221677.942|132.533 +637198.997|221675.729|132.155 +637205.346|221673.485|131.323 +637211.592|221671.266|130.759 +637254.824|221655.743|130.037 +637273.195|221649.132|130.049 +637279.288|221646.943|129.906 +637297.722|221640.347|129.165 +637309.957|221635.961|128.851 +637322.256|221631.578|127.986 +637328.400|221629.378|127.766 +637334.460|221627.198|127.696 +637340.486|221625.040|127.480 +637346.697|221622.846|126.700 +637370.765|221614.183|126.700 +637376.867|221611.995|126.559 +637382.886|221609.843|126.251 +637400.952|221603.369|125.700 +637406.999|221601.211|125.349 +637413.110|221599.044|124.737 +637419.264|221596.868|123.956 +637431.563|221592.527|122.252 +637437.571|221590.382|121.923 +637443.499|221588.248|121.960 +637449.342|221586.123|122.393 +637467.030|221579.747|122.536 +637472.739|221577.668|123.057 +637484.312|221573.453|123.996 +637495.836|221569.283|124.401 +637519.193|221560.904|123.926 +637525.033|221558.795|124.042 +637536.219|221554.708|125.267 +637547.686|221550.568|125.438 +637553.493|221548.490|125.270 +637559.278|221546.411|125.206 +637565.060|221544.344|124.929 +637570.769|221542.287|124.935 +637576.453|221540.236|125.057 +637582.189|221538.175|125.005 +637587.856|221536.136|124.983 +637593.546|221534.091|124.892 +637599.194|221532.055|124.980 +637604.891|221530.010|124.904 +637616.272|221525.928|124.612 +637621.987|221523.886|124.279 +637627.568|221521.881|124.218 +637633.225|221519.851|124.142 +637644.658|221515.785|123.155 +637650.355|221513.755|122.771 +637655.930|221511.758|122.594 +637667.311|221507.720|121.503 +637684.179|221501.712|120.274 +637689.668|221499.746|120.049 +637695.277|221497.747|119.668 +637700.870|221495.762|119.134 +637706.560|221493.769|118.083 +637706.591|221495.165|118.321 +637700.912|221497.180|119.122 +637695.316|221499.173|119.680 +637684.151|221503.181|120.317 +637667.332|221509.207|121.436 +637661.569|221511.252|122.243 +637650.200|221515.330|122.911 +637644.543|221517.351|123.417 +637633.177|221521.433|123.969 +637627.556|221523.456|124.167 +637621.923|221525.505|123.953 +637616.144|221527.565|124.526 +637610.216|221529.665|125.428 +637604.766|221531.668|124.852 +637599.097|221533.719|124.846 +637593.437|221535.767|124.825 +637587.691|221537.840|124.901 +637581.991|221539.907|124.822 +637576.252|221541.979|124.904 +637570.567|221544.043|124.804 +637564.834|221546.109|124.901 +637553.243|221550.291|125.133 +637541.681|221554.464|125.322 +637535.912|221556.561|125.157 +637530.178|221558.649|124.865 +637524.607|221560.712|123.941 +637518.837|221562.806|123.819 +637501.079|221569.192|124.581 +637495.312|221571.295|124.249 +637489.454|221573.425|124.051 +637483.635|221575.547|123.706 +637471.967|221579.808|122.908 +637466.237|221581.917|122.234 +637460.303|221584.066|122.158 +637454.396|221586.215|121.996 +637448.470|221588.361|121.917 +637430.475|221594.856|122.201 +637418.103|221599.239|123.990 +637405.786|221603.625|125.377 +637399.635|221605.820|125.919 +637387.449|221610.194|126.587 +637381.442|221612.385|126.245 +637375.358|221614.567|126.587 +637369.244|221616.768|126.806 +637356.991|221621.169|127.419 +637344.914|221625.562|126.943 +637326.343|221632.215|128.202 +637313.998|221636.659|128.675 +637307.768|221638.891|129.071 +637295.436|221643.341|129.299 +637270.650|221652.271|130.010 +637264.401|221654.515|130.357 +637208.370|221674.735|131.299 +637201.984|221677.009|131.994 +637189.414|221681.523|132.619 +637164.500|221690.569|131.963 +637158.279|221692.828|131.799 +637152.003|221695.108|131.598 +637145.767|221697.388|131.150 +637139.525|221699.643|131.168 +637114.378|221708.772|130.561 +637108.075|221711.070|130.244 +637101.687|221713.366|130.552 +637095.313|221715.658|130.787 +637088.928|221717.950|131.131 +637076.211|221722.531|131.500 +637069.829|221724.817|131.921 +637063.501|221727.106|131.933 +637057.113|221729.416|131.979 +637044.366|221734.007|132.354 +637038.011|221736.287|132.698 +637035.371|221740.773|132.875 +637041.623|221738.518|132.872 +637054.205|221733.982|132.780 +637060.609|221731.705|132.146 +637066.875|221729.447|132.119 +637085.785|221722.668|131.360 +637092.146|221720.382|131.186 +637104.750|221715.877|130.436 +637110.992|221713.634|130.299 +637135.788|221704.624|131.631 +637142.064|221702.374|131.381 +637148.187|221700.149|131.738 +637160.632|221695.647|132.040 +637179.121|221688.954|132.567 +637241.130|221666.676|131.037 +637247.314|221664.469|130.598 +637271.979|221655.612|129.909 +637278.184|221653.378|129.824 +637296.558|221646.779|129.354 +637302.727|221644.578|128.903 +637308.826|221642.380|128.833 +637314.940|221640.183|128.711 +637321.109|221637.979|128.333 +637333.225|221633.621|128.141 +637363.571|221622.718|127.446 +637369.646|221620.545|127.096 +637381.771|221616.198|126.596 +637393.771|221611.879|126.486 +637399.885|221609.694|126.069 +637411.958|221605.387|125.166 +637418.173|221603.189|124.392 +637430.435|221598.864|122.530 +637436.553|221596.685|121.984 +637442.566|221594.536|121.637 +637466.118|221586.035|121.814 +637471.910|221583.911|122.518 +637483.416|221579.713|123.463 +637489.216|221577.613|123.624 +637512.619|221569.192|123.377 +637518.322|221567.116|123.755 +637524.146|221565.022|123.661 +637529.639|221562.989|124.636 +637535.351|221560.910|125.002 +637564.161|221550.541|124.633 +637569.863|221548.487|124.651 +637575.554|221546.429|124.715 +637581.174|221544.396|124.825 +637586.911|221542.333|124.764 +637592.580|221540.291|124.718 +637598.301|221538.227|124.743 +637603.913|221536.203|124.715 +637620.994|221530.080|124.060 +637626.739|221528.031|123.624 +637632.280|221526.017|123.923 +637637.916|221523.996|123.682 +637654.884|221517.933|122.618 +637660.575|221515.913|122.030 +637677.400|221509.899|121.015 +637694.164|221503.910|119.936 +637707.859|221501.047|118.339 +637702.247|221503.047|118.933 +637662.873|221517.129|122.179 +637651.593|221521.180|122.789 +637645.875|221523.225|123.274 +637640.156|221525.279|123.551 +637634.548|221527.300|123.694 +637628.976|221529.330|123.493 +637623.286|221531.375|123.728 +637617.427|221533.451|124.587 +637611.691|221535.517|124.801 +637606.095|221537.557|124.511 +637600.417|221539.611|124.551 +637594.720|221541.665|124.666 +637589.005|221543.735|124.630 +637583.296|221545.804|124.578 +637571.869|221549.941|124.587 +637566.130|221552.022|124.465 +637560.396|221554.092|124.587 +637548.725|221558.298|124.919 +637542.940|221560.386|125.044 +637537.149|221562.486|124.962 +637525.786|221566.650|123.975 +637519.964|221568.765|123.807 +637514.198|221570.871|123.438 +637484.769|221581.521|123.432 +637473.226|221585.752|122.399 +637467.496|221587.876|121.445 +637461.559|221590.028|121.384 +637455.618|221592.180|121.359 +637449.613|221594.353|121.353 +637437.546|221598.690|121.935 +637418.966|221605.286|124.423 +637400.601|221611.855|125.907 +637376.150|221620.657|126.824 +637363.949|221625.040|127.468 +637345.585|221631.667|127.827 +637339.522|221633.874|127.599 +637333.332|221636.092|128.019 +637327.181|221638.305|128.288 +637314.824|221642.749|128.818 +637308.671|221644.974|128.848 +637296.280|221649.431|129.388 +637283.893|221653.899|129.674 +637277.627|221656.164|129.735 +637271.485|221658.383|129.830 +637258.976|221662.887|130.278 +637240.279|221669.621|130.961 +637158.910|221699.006|132.268 +637152.634|221701.286|132.085 +637146.450|221703.566|131.314 +637140.140|221705.846|131.378 +637133.880|221708.123|131.137 +637121.340|221712.680|130.836 +637115.110|221714.957|130.424 +637108.758|221717.252|130.464 +637102.442|221719.526|130.692 +637096.069|221721.821|130.933 +637057.847|221735.582|132.363 +637051.428|221737.890|132.686 +637039.559|221745.644|133.109 +637045.887|221743.364|132.991 +637052.214|221741.081|132.887 +637058.475|221738.819|132.829 +637071.118|221734.275|132.369 +637077.403|221732.010|132.216 +637083.685|221729.742|132.116 +637096.353|221725.210|131.198 +637102.692|221722.942|130.766 +637127.613|221713.920|131.046 +637139.939|221709.437|131.570 +637146.270|221707.160|131.348 +637177.073|221695.964|132.506 +637226.710|221678.079|131.375 +637232.934|221675.851|131.006 +637239.115|221673.620|130.897 +637245.330|221671.388|130.616 +637263.844|221664.728|129.991 +637269.967|221662.516|129.976 +637276.133|221660.300|129.744 +637294.577|221653.661|129.162 +637300.663|221651.464|129.107 +637306.775|221649.263|128.952 +637318.982|221644.859|128.793 +637331.192|221640.466|128.382 +637337.233|221638.299|128.062 +637343.360|221636.089|127.964 +637349.371|221633.922|127.846 +637355.421|221631.734|127.855 +637367.625|221627.360|127.132 +637385.675|221620.859|126.684 +637403.884|221614.324|125.721 +637422.142|221607.804|124.170 +637434.495|221603.427|122.460 +637440.686|221601.248|121.305 +637446.663|221599.096|121.134 +637452.622|221596.947|121.052 +637458.453|221594.829|121.262 +637464.430|221592.674|121.140 +637470.194|221590.561|121.673 +637475.848|221588.480|122.414 +637481.563|221586.376|123.167 +637487.366|221584.258|123.560 +637493.163|221582.152|123.740 +637498.933|221580.052|124.036 +637516.584|221573.703|123.389 +637522.342|221571.615|123.557 +637545.126|221563.318|124.801 +637550.914|221561.236|124.670 +637568.233|221554.997|124.304 +637573.932|221552.937|124.328 +637585.305|221548.819|124.535 +637591.013|221546.752|124.590 +637596.610|221544.732|124.581 +637602.370|221542.656|124.468 +637613.584|221538.581|124.950 +637625.188|221534.457|123.612 +637630.909|221532.408|123.267 +637636.423|221530.409|123.450 +637642.101|221528.364|123.292 +637647.679|221526.349|123.271 +637659.024|221522.295|122.405 +637664.726|221520.268|121.789 +637670.350|221518.253|121.457 +637676.001|221516.233|121.058 +637681.551|221514.242|120.805 +637687.199|221512.231|120.226 +637704.168|221506.199|118.324 +637707.840|221506.857|118.388 +637702.455|221508.820|118.253 +637679.835|221516.897|120.826 +637640.352|221531.107|123.127 +637634.710|221533.152|123.182 +637629.062|221535.197|123.267 +637623.335|221537.258|123.658 +637617.717|221539.294|123.676 +637611.892|221541.370|124.465 +637606.287|221543.415|124.231 +637600.590|221545.475|124.350 +637594.924|221547.530|124.374 +637589.224|221549.602|124.307 +637583.509|221551.678|124.301 +637566.471|221557.878|124.008 +637560.698|221559.969|124.048 +637554.892|221562.066|124.240 +637549.070|221564.166|124.511 +637543.279|221566.260|124.691 +637537.460|221568.369|124.734 +637531.718|221570.463|124.493 +637520.391|221574.645|123.170 +637514.560|221576.766|123.078 +637491.011|221585.288|123.530 +637467.886|221593.804|121.149 +637462.028|221595.935|121.042 +637456.115|221598.102|120.649 +637450.129|221600.263|120.847 +637444.148|221602.424|121.061 +637431.810|221606.819|122.655 +637419.380|221611.233|124.490 +637413.287|221613.415|125.054 +637407.149|221615.616|125.550 +637401.022|221617.817|126.038 +637394.947|221619.990|126.590 +637388.891|221622.194|126.504 +637370.682|221628.783|126.843 +637352.236|221635.422|127.928 +637346.176|221637.620|127.995 +637340.065|221639.835|128.041 +637333.929|221642.051|128.214 +637278.322|221662.156|129.680 +637265.889|221666.646|130.086 +637259.619|221668.910|130.260 +637253.380|221671.154|130.644 +637247.168|221673.412|130.555 +637240.987|221675.646|130.653 +637234.671|221677.929|130.848 +637178.368|221698.253|132.643 +637147.154|221709.632|131.537 +637140.863|221711.915|131.506 +637122.020|221718.776|130.948 +637115.680|221721.077|130.921 +637103.080|221725.652|130.784 +637096.651|221727.950|131.491 +637077.540|221734.830|132.451 +637071.149|221737.143|132.533 +637064.821|221739.435|132.594 +637058.469|221741.724|132.881 +637052.096|221744.035|132.884 +637045.734|221746.321|133.329 +637039.370|221748.628|133.298 +637043.878|221750.682|133.167 +637056.515|221746.116|133.097 +637062.779|221743.852|133.052 +637069.113|221741.566|132.942 +637081.707|221737.033|132.396 +637087.937|221734.790|132.213 +637100.592|221730.251|131.378 +637106.890|221727.978|131.223 +637113.147|221725.728|130.945 +637119.399|221723.454|131.171 +637137.958|221716.691|132.012 +637144.249|221714.435|131.592 +637150.339|221712.201|132.168 +637156.554|221709.943|132.302 +637162.723|221707.708|132.369 +637168.837|221705.471|132.814 +637175.031|221703.234|132.744 +637181.224|221700.994|132.710 +637187.451|221698.750|132.475 +637224.637|221685.354|131.180 +637230.809|221683.126|131.064 +637243.218|221678.661|130.567 +637261.667|221672.001|130.186 +637267.876|221669.764|130.022 +637273.960|221667.569|129.876 +637280.126|221665.347|129.638 +637310.685|221654.323|128.925 +637316.800|221652.116|128.769 +637328.952|221647.727|128.592 +637335.039|221645.535|128.330 +637341.089|221643.350|128.269 +637347.176|221641.155|128.038 +637353.214|221638.970|128.077 +637359.228|221636.797|127.952 +637401.574|221621.560|126.194 +637407.676|221619.383|125.535 +637413.684|221617.219|125.346 +637432.054|221610.687|123.066 +637438.266|221608.490|122.073 +637450.357|221604.177|120.786 +637502.963|221585.057|122.277 +637508.650|221582.975|122.670 +637514.435|221580.869|122.947 +637520.141|221578.784|123.289 +637537.198|221572.551|124.401 +637542.971|221570.454|124.532 +637554.629|221566.263|123.917 +637560.372|221564.193|123.731 +637566.133|221562.108|123.737 +637571.832|221560.045|123.752 +637588.837|221553.860|124.228 +637594.519|221551.809|124.133 +637600.194|221549.742|124.313 +637605.799|221547.716|124.301 +637622.990|221541.534|123.441 +637634.341|221537.444|123.057 +637639.922|221535.426|122.993 +637645.509|221533.405|122.926 +637662.358|221527.337|122.289 +637673.767|221523.271|121.055 +637679.296|221521.268|121.073 +637684.935|221519.253|120.497 +637702.119|221513.169|117.799 +637703.046|221514.239|117.220 +637685.648|221520.399|120.424 +637680.003|221522.423|121.009 +637674.392|221524.450|121.283 +637668.722|221526.486|121.762 +637646.179|221534.630|122.771 +637640.513|221536.685|122.877 +637634.935|221538.712|122.935 +637628.967|221540.818|124.176 +637623.557|221542.823|123.423 +637606.324|221549.051|124.200 +637600.651|221551.111|124.228 +637595.015|221553.165|124.142 +637589.328|221555.241|124.014 +637583.601|221557.320|124.063 +637572.226|221561.477|123.661 +637566.578|221563.541|123.450 +637560.796|221565.641|123.530 +637554.946|221567.762|123.639 +637543.199|221571.996|124.346 +637537.451|221574.087|124.365 +637525.960|221578.299|123.667 +637520.144|221580.424|123.502 +637514.499|221582.521|122.649 +637508.687|221584.642|122.499 +637490.920|221591.080|122.950 +637479.301|221595.341|122.237 +637449.915|221606.100|120.771 +637437.613|221610.501|122.158 +637419.136|221617.097|124.566 +637412.909|221619.313|125.450 +637406.826|221621.499|126.005 +637400.665|221623.721|126.355 +637388.632|221628.094|126.376 +637382.411|221630.320|127.077 +637370.198|221634.739|127.495 +637364.089|221636.949|127.742 +637357.993|221639.153|127.943 +637351.903|221641.372|127.846 +637345.789|221643.578|128.187 +637339.666|221645.800|128.297 +637333.478|221648.044|128.416 +637315.084|221654.716|128.739 +637308.863|221656.956|129.132 +637277.989|221668.157|129.604 +637265.590|221672.653|129.808 +637259.305|221674.924|130.095 +637253.130|221677.167|130.141 +637246.805|221679.438|130.695 +637234.397|221683.940|130.872 +637228.154|221686.202|131.034 +637177.996|221704.356|132.655 +637171.702|221706.648|132.591 +637159.257|221711.204|131.970 +637146.803|221715.758|131.457 +637140.472|221718.047|131.744 +637121.633|221724.927|131.195 +637115.360|221727.210|131.159 +637109.038|221729.489|131.476 +637102.634|221731.815|131.540 +637096.273|221734.092|132.223 +637089.930|221736.393|132.326 +637083.603|221738.694|132.363 +637077.181|221741.014|132.661 +637070.826|221743.309|132.954 +637064.507|221745.604|132.975 +637058.137|221747.924|132.942 +637051.751|221750.213|133.548 +637045.405|221752.529|133.378 +637034.207|221760.265|133.673 +637046.728|221755.721|133.923 +637078.290|221744.339|133.030 +637084.596|221742.072|132.704 +637103.506|221735.262|131.979 +637109.855|221732.992|131.445 +637116.061|221730.739|131.540 +637122.279|221728.487|131.558 +637134.831|221723.954|131.293 +637140.975|221721.699|131.893 +637147.245|221719.440|131.625 +637153.344|221717.206|132.128 +637159.541|221714.947|132.415 +637178.137|221708.208|132.497 +637190.551|221703.725|132.287 +637196.778|221701.478|132.076 +637203.072|221699.229|131.491 +637215.408|221694.760|131.570 +637227.837|221690.280|131.168 +637240.267|221685.812|130.494 +637246.452|221683.577|130.382 +637252.593|221681.364|130.162 +637264.929|221676.914|129.879 +637271.003|221674.702|130.116 +637289.508|221668.039|129.382 +637313.992|221659.202|128.760 +637320.134|221656.993|128.470 +637326.111|221654.816|128.733 +637374.703|221637.293|127.297 +637380.783|221635.096|127.218 +637398.919|221628.567|126.431 +637404.960|221626.400|126.041 +637417.213|221622.026|124.855 +637423.303|221619.847|124.313 +637429.436|221617.664|123.621 +637435.583|221615.488|122.600 +637459.833|221606.826|120.323 +637465.768|221604.674|120.369 +637471.440|221602.574|121.274 +637477.128|221600.483|121.859 +637506.428|221589.857|122.176 +637512.235|221587.745|122.356 +637523.552|221583.591|123.426 +637534.958|221579.418|124.188 +637552.508|221573.096|123.466 +637558.336|221570.999|123.173 +637564.042|221568.933|123.142 +637569.812|221566.845|123.124 +637575.429|221564.790|123.453 +637581.147|221562.709|123.661 +637586.783|221560.663|123.709 +637592.443|221558.603|123.920 +637603.833|221554.476|123.898 +637637.806|221542.196|123.298 +637643.619|221540.135|122.411 +637649.182|221538.105|122.676 +637654.692|221536.109|122.661 +637665.970|221532.055|122.042 +637688.470|221523.981|120.527 +637700.419|221519.832|116.973 +637706.134|221517.799|116.224 +637709.511|221517.662|116.242 +637704.155|221519.622|115.995 +637698.117|221521.713|118.083 +637680.722|221527.885|121.167 +637675.151|221529.906|121.323 +637647.063|221540.071|122.445 +637641.516|221542.092|122.384 +637635.682|221544.177|123.136 +637629.839|221546.262|123.947 +637624.462|221548.264|123.078 +637607.287|221554.473|123.929 +637601.630|221556.530|123.911 +637595.921|221558.612|123.874 +637590.258|221560.682|123.673 +637584.591|221562.754|123.511 +637578.861|221564.836|123.594 +637573.265|221566.894|123.185 +637567.556|221568.981|122.981 +637561.804|221571.075|122.950 +637556.004|221573.179|123.130 +637538.344|221579.558|124.048 +637532.617|221581.646|124.026 +637521.062|221585.883|123.386 +637515.319|221587.995|122.944 +637509.656|221590.095|122.204 +637503.871|221592.213|121.963 +637462.869|221607.216|120.427 +637444.703|221613.775|121.466 +637438.726|221615.936|121.704 +637432.447|221618.155|123.027 +637413.961|221624.763|125.349 +637407.792|221626.988|125.730 +637401.659|221629.192|126.261 +637389.516|221633.581|126.824 +637377.293|221638.007|127.276 +637346.719|221649.083|128.263 +637328.355|221655.746|128.669 +637316.062|221660.220|128.675 +637309.807|221662.467|129.269 +637303.638|221664.701|129.437 +637291.318|221669.188|129.427 +637260.302|221680.438|130.061 +637254.139|221682.684|130.019 +637247.860|221684.952|130.321 +637235.339|221689.484|130.753 +637229.060|221691.749|131.122 +637216.566|221696.291|131.189 +637210.342|221698.549|131.293 +637197.677|221703.109|132.174 +637185.095|221707.663|132.634 +637172.574|221712.207|132.817 +637160.105|221716.767|132.341 +637153.826|221719.059|132.226 +637147.611|221721.348|131.680 +637141.280|221723.637|131.942 +637135.044|221725.923|131.576 +637116.085|221732.827|131.457 +637109.727|221735.131|131.604 +637103.378|221737.414|132.158 +637077.866|221746.638|133.228 +637065.162|221751.255|133.271 +637058.771|221753.575|133.408 +637052.419|221755.867|133.753 +637046.030|221758.183|133.917 +637039.672|221760.500|133.844 +637033.326|221762.816|133.676 +637043.979|221762.310|134.192 +637056.588|221757.766|133.664 +637062.910|221755.477|133.567 +637075.495|221750.923|133.399 +637094.295|221744.138|132.765 +637100.571|221741.867|132.689 +637106.868|221739.597|132.463 +637119.423|221735.070|131.966 +637131.856|221730.562|131.997 +637138.043|221728.304|132.244 +637144.319|221726.048|131.884 +637150.473|221723.811|131.979 +637156.639|221721.552|132.415 +637175.180|221714.816|132.725 +637187.625|221710.330|132.210 +637193.855|221708.065|132.329 +637200.037|221705.840|132.012 +637212.448|221701.366|131.531 +637218.663|221699.116|131.439 +637224.832|221696.906|130.933 +637243.431|221690.188|130.455 +637261.865|221683.526|130.061 +637322.975|221661.431|128.845 +637329.138|221659.218|128.443 +637335.222|221657.026|128.163 +637341.257|221654.841|128.141 +637353.397|221650.455|127.815 +637359.463|221648.260|127.708 +637377.589|221641.713|127.245 +637395.700|221635.172|126.742 +637401.729|221633.008|126.376 +637413.863|221628.646|125.621 +637444.670|221617.722|120.838 +637456.691|221613.400|120.131 +637462.497|221611.282|120.424 +637468.441|221609.127|120.402 +637491.542|221600.684|121.762 +637497.461|221598.541|121.661 +637503.280|221596.429|121.737 +637509.016|221594.326|122.173 +637520.446|221590.141|122.987 +637531.833|221585.971|123.773 +637537.533|221583.898|123.898 +637555.132|221577.568|122.935 +637560.872|221575.498|122.728 +637566.678|221573.389|122.786 +637572.335|221571.331|122.944 +637577.944|221569.280|123.292 +637583.625|221567.217|123.383 +637589.325|221565.147|123.417 +637594.958|221563.090|123.722 +637600.679|221561.017|123.709 +637606.311|221558.981|123.563 +637617.586|221554.884|123.764 +637634.829|221548.709|122.286 +637640.327|221546.694|122.728 +637646.073|221544.643|122.079 +637651.602|221542.631|122.204 +637657.128|221540.623|122.368 +637673.913|221534.569|121.756 +637679.518|221532.561|121.250 +637702.900|221524.346|116.190 +637713.775|221520.396|116.339 +637719.219|221518.424|116.300 +637724.608|221516.473|116.242 +637725.845|221517.546|116.184 +637720.447|221519.506|116.275 +637714.982|221521.490|116.376 +637704.107|221525.456|116.227 +637698.075|221527.556|118.083 +637658.298|221541.818|122.286 +637652.778|221543.838|122.109 +637647.200|221545.878|121.911 +637630.342|221551.992|122.341 +637613.057|221558.222|123.557 +637607.372|221560.285|123.633 +637601.733|221562.343|123.566 +637596.006|221564.425|123.594 +637590.428|221566.470|123.335 +637584.671|221568.570|123.264 +637578.977|221570.643|123.219 +637573.369|221572.703|122.871 +637567.681|221574.788|122.588 +637561.905|221576.888|122.667 +637556.056|221579.009|122.792 +637550.259|221581.109|122.987 +637532.684|221587.474|123.658 +637526.841|221589.604|123.606 +637521.184|221591.689|123.078 +637509.601|221595.944|122.365 +637503.856|221598.069|121.701 +637498.071|221600.187|121.484 +637492.097|221602.357|121.539 +637480.285|221606.652|121.673 +637468.660|221610.940|120.521 +637462.823|221613.074|120.360 +637456.831|221615.256|120.329 +637413.744|221630.670|125.584 +637407.652|221632.871|125.928 +637401.534|221635.074|126.407 +637395.463|221637.269|126.681 +637389.367|221639.482|126.812 +637383.271|221641.692|126.965 +637364.931|221648.324|127.800 +637352.766|221652.750|127.867 +637346.643|221654.975|127.986 +637340.455|221657.218|128.123 +637284.972|221677.353|129.342 +637272.564|221681.855|129.632 +637260.155|221686.372|129.647 +637247.732|221690.886|129.839 +637241.517|221693.133|130.165 +637222.641|221699.951|131.220 +637210.113|221704.496|131.604 +637203.938|221706.751|131.467 +637197.562|221709.034|132.226 +637191.298|221711.311|132.308 +637178.804|221715.862|132.317 +637172.416|221718.157|132.896 +637166.246|221720.428|132.436 +637159.986|221722.720|132.204 +637153.673|221725.012|132.335 +637147.446|221727.301|131.909 +637141.134|221729.593|132.088 +637122.236|221736.475|132.027 +637115.893|221738.783|132.073 +637109.560|221741.069|132.512 +637096.834|221745.674|133.042 +637084.103|221750.301|133.241 +637077.775|221752.602|133.311 +637071.447|221754.901|133.426 +637065.129|221757.199|133.478 +637058.746|221759.518|133.576 +637052.321|221761.835|134.048 +637039.678|221766.450|133.841 +637033.295|221768.763|134.036 +637035.316|221771.406|134.323 +637041.632|221769.120|134.210 +637047.929|221766.828|134.249 +637054.193|221764.563|134.064 +637066.836|221759.979|133.871 +637085.755|221753.145|133.125 +637091.991|221750.868|133.305 +637104.552|221746.318|133.067 +637110.794|221744.065|132.799 +637142.085|221732.729|132.186 +637148.345|221730.468|131.945 +637154.478|221728.206|132.607 +637160.745|221725.942|132.366 +637173.098|221721.434|132.747 +637210.363|221707.964|131.448 +637228.990|221701.222|130.991 +637241.380|221696.748|130.467 +637247.598|221694.507|130.119 +637253.803|221692.267|129.857 +637259.933|221690.048|129.705 +637278.392|221683.361|129.330 +637284.503|221681.139|129.373 +637296.835|221676.683|128.915 +637339.483|221661.232|128.086 +637345.597|221659.032|127.672 +637351.596|221656.843|127.870 +637387.879|221643.722|126.760 +637393.914|221641.536|126.623 +637399.980|221639.348|126.355 +637442.957|221624.035|120.521 +637454.917|221619.697|120.335 +637460.784|221617.567|120.347 +637466.673|221615.418|120.555 +637472.516|221613.287|120.704 +637495.855|221604.777|121.341 +637501.643|221602.665|121.527 +637518.718|221596.392|122.850 +637530.236|221592.186|123.344 +637559.183|221581.716|122.551 +637564.983|221579.619|122.362 +637576.325|221575.480|122.786 +637587.645|221571.356|123.106 +637593.214|221569.320|123.389 +637604.568|221565.193|123.420 +637615.888|221561.084|123.411 +637644.283|221550.840|122.185 +637649.934|221548.804|121.859 +637655.540|221546.777|121.719 +637661.041|221544.780|121.728 +637677.665|221538.760|121.448 +637688.909|221534.722|120.558 +637700.928|221530.558|116.678 +637706.527|221528.547|116.288 +637722.788|221522.640|116.352 +637733.934|221518.662|115.029 +637739.281|221516.714|115.145 +637725.848|221523.581|116.242 +637704.140|221531.482|116.458 +637698.172|221533.570|118.116 +637675.215|221541.763|121.445 +637664.016|221545.826|121.798 +637658.594|221547.816|121.497 +637652.912|221549.864|121.899 +637624.810|221560.090|122.161 +637619.003|221562.181|122.655 +637607.509|221566.324|123.523 +637601.846|221568.396|123.316 +637596.155|221570.475|123.231 +637584.899|221574.596|122.868 +637579.154|221576.693|122.783 +637573.567|221578.750|122.356 +637567.876|221580.835|122.097 +637556.278|221585.044|122.472 +637550.402|221587.169|122.734 +637532.867|221593.530|123.283 +637527.039|221595.658|123.179 +637515.520|221599.894|122.466 +637503.923|221604.149|121.862 +637498.208|221606.259|121.372 +637492.353|221608.398|121.213 +637480.624|221612.696|120.738 +637474.702|221614.860|120.640 +637468.773|221617.021|120.591 +637462.891|221619.176|120.357 +637456.956|221621.340|120.360 +637444.953|221625.708|120.463 +637438.906|221627.896|120.753 +637432.685|221630.106|121.847 +637413.818|221636.781|125.703 +637407.767|221638.976|125.852 +637401.668|221641.177|126.264 +637395.569|221643.392|126.398 +637389.464|221645.593|126.885 +637383.328|221647.809|127.245 +637346.768|221661.107|127.721 +637297.506|221679.005|128.687 +637291.273|221681.264|128.946 +637272.735|221688.000|129.306 +637260.344|221692.514|129.242 +637254.047|221694.785|129.656 +637247.768|221697.056|130.004 +637216.398|221708.400|131.573 +637191.289|221717.514|132.174 +637185.031|221719.788|132.250 +637178.746|221722.061|132.546 +637172.379|221724.360|132.994 +637159.903|221728.919|132.637 +637153.716|221731.187|132.363 +637147.434|221733.501|131.902 +637141.070|221735.790|132.463 +637122.169|221742.669|132.518 +637115.814|221744.976|132.671 +637103.076|221749.585|133.268 +637096.816|221751.865|133.256 +637084.090|221756.489|133.466 +637077.744|221758.790|133.719 +637071.362|221761.109|133.789 +637065.110|221763.383|133.826 +637058.710|221765.703|134.085 +637052.355|221768.019|134.012 +637045.954|221770.336|134.338 +637039.608|221772.652|134.222 +637033.301|221774.944|134.326 +637044.677|221774.088|134.536 +637050.916|221771.817|134.521 +637057.253|221769.525|134.237 +637076.123|221762.682|133.673 +637088.705|221758.110|133.539 +637107.414|221751.322|133.158 +637138.650|221739.999|132.287 +637144.871|221737.737|132.262 +637151.144|221735.470|131.927 +637157.258|221733.205|132.698 +637169.541|221728.718|133.039 +637175.713|221726.472|133.052 +637182.032|221724.198|132.518 +637188.244|221721.949|132.305 +637194.453|221719.699|132.149 +637200.668|221717.447|131.954 +637206.852|221715.213|131.604 +637231.681|221706.227|130.659 +637237.850|221703.987|130.531 +637262.609|221695.035|129.403 +637293.217|221683.928|128.781 +637299.359|221681.697|128.672 +637323.706|221672.854|128.336 +637341.851|221666.256|128.248 +637384.200|221650.906|127.035 +637402.366|221644.334|126.258 +637433.337|221633.325|121.134 +637439.378|221631.158|120.561 +637457.169|221624.687|120.439 +637463.116|221622.526|120.366 +637474.775|221618.265|120.732 +637480.734|221616.101|120.674 +637486.561|221613.967|120.902 +637492.337|221611.855|121.106 +637498.141|221609.736|121.204 +637515.322|221603.415|122.542 +637526.862|221599.196|122.890 +637561.728|221586.568|121.875 +637567.504|221584.471|121.780 +637573.216|221582.387|121.957 +637578.773|221580.338|122.493 +637584.445|221578.269|122.606 +637590.075|221576.205|122.890 +637595.759|221574.133|122.981 +637601.377|221572.084|123.103 +637607.076|221570.009|123.164 +637658.015|221551.574|121.381 +637663.565|221549.563|121.225 +637685.877|221541.491|120.396 +637703.598|221535.277|115.925 +637736.342|221523.417|114.956 +637741.692|221521.466|115.071 +637731.133|221527.266|115.020 +637703.607|221537.264|116.364 +637663.687|221551.611|121.161 +637658.115|221553.647|121.173 +637624.371|221565.949|121.826 +637607.107|221572.191|123.127 +637601.514|221574.248|122.917 +637595.823|221576.330|122.850 +637590.163|221578.409|122.670 +637584.536|221580.482|122.393 +637573.286|221584.633|121.609 +637567.559|221586.733|121.509 +637561.817|221588.833|121.481 +637555.967|221590.948|121.896 +637550.091|221593.082|122.185 +637544.239|221595.213|122.405 +637526.774|221601.574|122.804 +637520.925|221603.726|122.560 +637515.127|221605.853|122.387 +637509.336|221607.981|122.210 +637497.775|221612.254|121.262 +637491.972|221614.394|120.905 +637486.183|221616.518|120.771 +637480.267|221618.685|120.652 +637474.372|221620.852|120.463 +637468.450|221623.020|120.402 +637462.543|221625.184|120.305 +637456.627|221627.348|120.253 +637450.665|221629.533|120.143 +637432.615|221636.089|120.963 +637413.751|221642.780|124.880 +637401.470|221647.205|126.108 +637395.453|221649.403|126.181 +637383.304|221653.820|126.639 +637377.257|221656.029|126.611 +637371.103|221658.255|127.138 +637365.083|221660.458|127.023 +637358.899|221662.699|127.440 +637322.210|221676.082|127.967 +637316.068|221678.326|128.010 +637297.591|221685.053|128.522 +637247.954|221703.115|129.839 +637241.721|221705.386|129.958 +637229.313|221709.900|130.290 +637210.442|221716.721|131.631 +637204.215|221718.983|131.869 +637197.946|221721.263|132.012 +637191.670|221723.546|132.229 +637185.455|221725.823|132.067 +637179.121|221728.103|132.686 +637166.573|221732.675|132.866 +637154.027|221737.244|133.097 +637147.900|221739.536|132.027 +637141.551|221741.831|132.518 +637135.239|221744.120|132.771 +637128.881|221746.433|132.951 +637122.605|221748.722|132.988 +637109.892|221753.343|133.448 +637103.671|221755.629|133.152 +637097.270|221757.958|133.301 +637090.979|221760.241|133.573 +637084.590|221762.566|133.701 +637078.244|221764.871|133.984 +637071.926|221767.172|134.060 +637065.531|221769.495|134.307 +637059.216|221771.796|134.420 +637052.861|221774.118|134.399 +637046.493|221776.438|134.481 +637040.217|221778.736|134.329 +637033.777|221781.077|134.560 +637035.597|221783.777|134.542 +637041.897|221781.485|134.496 +637060.804|221774.600|134.472 +637073.377|221770.031|134.295 +637079.653|221767.754|134.085 +637085.980|221765.453|133.981 +637092.253|221763.176|133.838 +637098.544|221760.896|133.585 +637111.081|221756.333|133.478 +637123.596|221751.786|133.186 +637129.862|221749.524|132.780 +637136.108|221747.259|132.564 +637142.387|221744.970|132.561 +637148.614|221742.724|132.088 +637154.774|221740.456|132.527 +637167.210|221735.918|132.674 +637179.624|221731.398|132.625 +637185.818|221729.145|132.512 +637192.039|221726.890|132.253 +637198.266|221724.634|131.976 +637204.481|221722.378|131.802 +637210.610|221720.144|131.802 +637223.034|221715.645|131.241 +637235.479|221711.140|130.638 +637247.899|221706.651|129.930 +637260.448|221702.149|128.605 +637266.587|221699.902|128.745 +637284.933|221693.221|128.662 +637315.504|221682.114|127.943 +637327.705|221677.682|127.687 +637364.065|221664.460|127.093 +637370.076|221662.278|126.956 +637400.303|221651.308|126.023 +637406.344|221649.132|125.578 +637412.419|221646.931|125.282 +637431.246|221640.293|120.933 +637443.283|221635.943|120.268 +637449.202|221633.785|120.268 +637455.127|221631.624|120.253 +637460.995|221629.472|120.509 +637466.935|221627.311|120.475 +637472.784|221625.174|120.582 +637478.630|221623.035|120.710 +637484.473|221620.898|120.869 +637490.338|221618.755|120.945 +637496.181|221616.631|120.866 +637507.650|221612.397|121.935 +637513.433|221610.279|122.167 +637519.141|221608.182|122.441 +637559.906|221593.381|121.350 +637565.596|221591.305|121.317 +637571.272|221589.235|121.369 +637576.874|221587.163|121.963 +637593.787|221580.960|122.676 +637599.395|221578.909|122.807 +637605.101|221576.827|122.841 +637640.022|221564.306|118.741 +637650.517|221560.356|121.207 +637689.488|221546.207|120.034 +637701.464|221542.025|116.467 +637704.226|221542.446|116.233 +637681.234|221550.684|119.662 +637642.656|221564.885|118.193 +637637.169|221566.921|117.714 +637601.843|221579.598|122.667 +637596.229|221581.658|122.554 +637590.575|221583.737|122.356 +637584.914|221585.819|122.204 +637579.184|221587.922|122.085 +637573.579|221590.004|121.509 +637567.891|221592.101|121.253 +637562.259|221594.173|121.049 +637556.376|221596.310|121.341 +637550.502|221598.447|121.615 +637532.845|221604.869|122.466 +637527.033|221607.002|122.320 +637521.232|221609.121|122.396 +637509.595|221613.403|121.984 +637492.154|221619.837|120.997 +637486.308|221621.986|120.838 +637480.389|221624.160|120.738 +637474.549|221626.305|120.588 +637468.575|221628.497|120.485 +637462.662|221630.667|120.411 +637456.731|221632.837|120.430 +637450.781|221635.023|120.271 +637444.801|221637.211|120.262 +637438.811|221639.403|120.317 +637426.711|221643.795|121.052 +637407.645|221650.531|125.724 +637401.626|221652.732|125.797 +637395.533|221654.957|125.925 +637389.449|221657.160|126.334 +637383.408|221659.376|126.258 +637377.281|221661.601|126.632 +637371.210|221663.832|126.431 +637352.858|221670.507|127.294 +637346.765|221672.736|127.303 +637322.204|221681.700|127.836 +637316.068|221683.946|127.843 +637303.687|221688.460|128.166 +637297.545|221690.704|128.266 +637279.023|221697.470|128.553 +637260.344|221704.289|128.867 +637254.096|221706.547|129.379 +637235.332|221713.375|130.135 +637222.775|221717.922|131.058 +637210.153|221722.506|131.741 +637203.947|221724.771|131.838 +637197.674|221727.060|132.012 +637191.420|221729.343|132.082 +637185.107|221731.629|132.546 +637178.844|221733.912|132.738 +637159.964|221740.819|132.780 +637153.804|221743.096|132.354 +637147.538|221745.394|132.244 +637134.855|221749.987|133.149 +637128.555|221752.307|132.896 +637109.560|221759.229|133.439 +637103.198|221761.542|133.753 +637084.133|221768.495|134.213 +637058.810|221777.745|134.533 +637052.461|221780.071|134.435 +637046.137|221782.375|134.682 +637039.739|221784.722|134.536 +637033.341|221787.045|134.941 +637038.483|221788.389|134.804 +637051.013|221783.826|134.771 +637057.399|221781.510|134.539 +637063.605|221779.236|134.813 +637076.141|221774.688|134.390 +637082.445|221772.390|134.448 +637088.733|221770.113|134.167 +637094.984|221767.833|134.192 +637113.824|221760.994|133.747 +637126.351|221756.449|133.350 +637145.041|221749.679|132.582 +637151.360|221747.390|132.329 +637163.683|221742.876|132.802 +637188.479|221733.857|132.515 +637194.709|221731.605|132.204 +637200.963|221729.349|131.759 +637207.087|221727.115|131.777 +637219.425|221722.625|131.695 +637225.646|221720.367|131.549 +637293.748|221695.748|127.809 +637306.019|221691.283|127.702 +637312.066|221689.073|127.806 +637318.180|221686.857|127.577 +637324.279|221684.644|127.455 +637330.318|221682.450|127.346 +637342.467|221678.033|127.138 +637366.656|221669.233|126.885 +637378.772|221664.841|126.477 +637384.834|221662.650|126.130 +637390.894|221660.458|125.819 +637396.834|221658.282|126.105 +637402.997|221656.072|125.340 +637421.691|221649.449|121.740 +637433.925|221645.063|120.344 +637439.918|221642.883|120.268 +637445.892|221640.707|120.290 +637451.808|221638.549|120.311 +637457.627|221636.422|120.485 +637463.634|221634.236|120.421 +637469.471|221632.103|120.558 +637475.336|221629.966|120.585 +637481.267|221627.802|120.631 +637487.080|221625.668|120.914 +637493.002|221623.519|120.759 +637498.766|221621.407|121.018 +637504.548|221619.277|121.481 +637510.305|221617.164|121.792 +637516.051|221615.064|121.902 +637521.802|221612.952|122.277 +637533.409|221608.718|122.374 +637545.141|221604.472|121.774 +637551.130|221602.327|121.009 +637556.909|221600.230|120.860 +637562.701|221598.126|120.674 +637568.431|221596.036|120.750 +637574.030|221593.963|121.350 +637585.378|221589.805|121.768 +637590.989|221587.742|122.106 +637596.640|221585.672|122.310 +637602.315|221583.597|122.451 +637607.899|221581.548|122.694 +637631.753|221573.093|118.013 +637637.938|221570.932|116.172 +637643.445|221568.905|116.580 +637682.051|221554.772|117.778 +637704.396|221546.697|116.358 +637704.643|221547.728|116.324 +637698.815|221549.797|117.543 +637693.177|221551.830|118.141 +637682.438|221555.805|117.290 +637676.861|221557.835|117.510 +637643.695|221570.030|116.419 +637638.142|221572.075|116.187 +637632.155|221574.197|117.552 +637625.916|221576.373|119.640 +637602.559|221584.779|122.390 +637596.893|221586.861|122.240 +637591.251|221588.937|122.015 +637585.655|221591.006|121.618 +637568.690|221597.261|120.716 +637562.929|221599.379|120.521 +637557.117|221601.491|120.799 +637551.313|221603.604|121.070 +637545.296|221605.774|121.695 +637533.571|221610.035|122.304 +637527.792|221612.163|122.033 +637516.081|221616.454|121.893 +637510.299|221618.582|121.689 +637504.481|221620.727|121.375 +637498.741|221622.861|120.753 +637492.840|221625.016|120.820 +637486.970|221627.168|120.774 +637481.008|221629.359|120.604 +637475.131|221631.508|120.616 +637469.218|221633.678|120.539 +637463.259|221635.864|120.399 +637457.328|221638.034|120.430 +637451.442|221640.195|120.296 +637445.407|221642.405|120.253 +637439.430|221644.593|120.271 +637402.342|221657.904|125.392 +637390.186|221662.345|125.563 +637377.915|221666.792|126.386 +637371.886|221669.005|126.300 +637353.485|221675.695|127.132 +637335.173|221682.401|127.087 +637304.345|221693.639|127.955 +637279.434|221702.697|129.104 +637267.212|221707.202|128.464 +637254.602|221711.768|129.440 +637248.482|221714.021|129.248 +637235.854|221718.578|130.479 +637229.511|221720.876|130.955 +637223.284|221723.147|131.137 +637210.744|221727.706|131.704 +637198.193|221732.284|132.061 +637191.904|221734.570|132.357 +637179.280|221739.161|132.951 +637166.704|221743.745|133.335 +637154.268|221748.347|132.408 +637147.977|221750.646|132.469 +637141.655|221752.944|132.786 +637129.000|221757.559|133.137 +637122.617|221759.875|133.524 +637116.241|221762.188|133.902 +637109.919|221764.505|133.887 +637103.582|221766.818|134.009 +637097.252|221769.129|134.137 +637090.881|221771.464|134.094 +637084.575|221773.774|134.048 +637078.238|221776.081|134.280 +637071.844|221778.413|134.505 +637065.501|221780.717|134.832 +637059.170|221783.046|134.588 +637046.399|221787.697|135.057 +637035.917|221795.028|135.450 +637048.569|221790.447|134.789 +637054.930|221788.127|134.722 +637067.439|221783.555|134.938 +637080.009|221778.980|134.701 +637086.303|221776.703|134.304 +637092.552|221774.423|134.304 +637098.888|221772.122|134.106 +637111.330|221767.580|134.146 +637117.548|221765.322|133.996 +637123.836|221763.036|133.789 +637142.719|221756.220|132.335 +637148.827|221753.977|132.643 +637155.060|221751.709|132.536 +637161.168|221749.442|133.311 +637167.414|221747.171|133.149 +637173.583|221744.922|133.100 +637186.004|221740.420|132.533 +637192.270|221738.146|132.326 +637198.482|221735.890|132.110 +637204.718|221733.632|131.750 +637210.915|221731.394|131.275 +637217.090|221729.139|131.348 +637340.071|221684.498|126.931 +637358.158|221677.902|126.864 +637388.437|221666.920|125.575 +637406.457|221660.370|125.118 +637425.242|221653.728|121.012 +637437.309|221649.357|120.366 +637443.234|221647.199|120.280 +637449.129|221645.047|120.347 +637455.085|221642.868|120.439 +637461.001|221640.710|120.454 +637466.844|221638.574|120.518 +637472.757|221636.416|120.591 +637478.618|221634.276|120.610 +637484.492|221632.133|120.604 +637496.181|221627.854|120.890 +637502.094|221625.717|120.494 +637507.742|221623.617|121.241 +637513.494|221621.505|121.558 +637519.236|221619.389|121.926 +637524.954|221617.292|122.149 +637548.207|221608.846|121.399 +637554.075|221606.734|120.860 +637559.957|221604.607|120.536 +637565.718|221602.510|120.451 +637571.445|221600.416|120.530 +637582.689|221596.276|121.292 +637588.325|221594.210|121.509 +637593.936|221592.146|121.844 +637599.572|221590.077|122.088 +637605.208|221588.019|122.115 +637634.914|221577.467|116.626 +637640.437|221575.434|116.949 +637646.121|221573.374|116.699 +637651.364|221571.405|117.827 +637673.886|221563.248|116.672 +637690.372|221557.234|116.672 +637701.388|221553.220|116.592 +637706.975|221551.205|116.193 +637712.388|221549.230|116.178 +637717.829|221547.240|116.315 +637723.294|221545.256|116.156 +637734.407|221541.257|115.062 +637732.072|221543.540|115.074 +637720.862|221547.581|116.288 +637715.448|221549.566|116.275 +637710.005|221551.568|116.163 +637704.466|221553.586|116.376 +637693.402|221557.628|116.605 +637687.961|221559.639|116.318 +637682.533|221561.633|116.220 +637676.973|221563.675|116.141 +637671.405|221565.705|116.345 +637649.026|221573.895|116.528 +637643.296|221575.974|116.931 +637637.688|221578.031|116.909 +637632.110|221580.091|116.559 +637626.114|221582.216|117.994 +637602.379|221590.708|121.951 +637596.747|221592.774|121.926 +637591.126|221594.850|121.622 +637585.466|221596.944|121.241 +637568.504|221603.204|120.347 +637562.743|221605.314|120.424 +637556.906|221607.444|120.546 +637551.060|221609.563|120.997 +637545.178|221611.702|121.359 +637539.200|221613.866|121.862 +637533.287|221616.018|122.124 +637521.757|221620.261|121.780 +637510.156|221624.541|121.241 +637504.407|221626.677|120.649 +637498.516|221628.835|120.664 +637492.581|221631.011|120.625 +637486.717|221633.163|120.561 +637480.843|221635.315|120.558 +637474.857|221637.513|120.518 +637468.944|221639.683|120.448 +637463.025|221641.853|120.421 +637457.063|221644.042|120.329 +637451.153|221646.209|120.305 +637445.185|221648.397|120.262 +637439.217|221650.586|120.253 +637433.169|221652.799|120.323 +637427.116|221654.996|120.750 +637408.197|221661.717|124.852 +637402.183|221663.918|124.913 +637396.170|221666.118|124.993 +637390.058|221668.343|125.252 +637383.911|221670.572|125.718 +637377.793|221672.797|126.069 +637365.598|221677.253|126.325 +637359.441|221679.493|126.617 +637353.367|221681.706|126.846 +637341.190|221686.183|126.544 +637335.018|221688.439|126.696 +637328.778|221690.697|127.224 +637316.534|221695.190|127.111 +637310.374|221697.437|127.282 +637298.149|221701.939|126.852 +637273.320|221711.019|127.279 +637267.038|221713.283|127.977 +637229.176|221726.978|131.649 +637210.555|221733.805|131.601 +637197.985|221738.387|132.140 +637191.722|221740.673|132.326 +637185.458|221742.959|132.536 +637179.115|221745.266|132.872 +637172.851|221747.549|133.137 +637166.524|221749.853|133.417 +637154.109|221754.459|132.427 +637147.809|221756.757|132.607 +637141.518|221759.080|132.283 +637128.756|221763.697|133.478 +637122.373|221766.017|133.917 +637109.712|221770.647|134.094 +637103.409|221772.963|134.024 +637097.057|221775.277|134.335 +637090.729|221777.587|134.475 +637084.423|221779.900|134.490 +637078.019|221782.232|134.798 +637071.746|221784.543|134.597 +637065.345|221786.871|134.929 +637046.265|221793.857|135.115 +637039.949|221796.158|135.377 +637033.823|221801.834|135.402 +637040.105|221799.536|135.420 +637052.723|221794.939|135.075 +637065.354|221790.337|134.749 +637071.652|221788.033|134.774 +637077.900|221785.750|134.701 +637090.467|221781.162|134.533 +637102.985|221776.590|134.374 +637109.249|221774.304|134.271 +637115.525|221772.018|134.124 +637128.091|221767.440|133.771 +637146.770|221760.652|132.893 +637153.103|221758.357|132.482 +637159.236|221756.108|132.637 +637165.338|221753.834|133.423 +637171.553|221751.581|133.058 +637177.783|221749.305|133.012 +637183.989|221747.049|132.756 +637190.213|221744.790|132.381 +637196.409|221742.532|132.235 +637202.633|221740.270|131.927 +637208.876|221738.009|131.546 +637215.075|221735.744|131.445 +637239.716|221726.731|131.479 +637258.500|221719.986|129.007 +637264.737|221717.730|128.528 +637271.012|221715.487|127.492 +637295.640|221706.520|126.700 +637319.951|221697.616|126.968 +637338.178|221690.969|126.578 +637356.204|221684.367|126.779 +637368.454|221679.935|125.834 +637374.398|221677.753|125.974 +637380.500|221675.537|125.688 +637398.629|221668.947|124.871 +637404.634|221666.768|124.529 +637410.590|221664.576|124.743 +637435.401|221655.728|120.360 +637441.332|221653.564|120.229 +637447.279|221651.384|120.332 +637453.180|221649.223|120.363 +637459.087|221647.062|120.405 +637465.052|221644.877|120.472 +637470.904|221642.734|120.503 +637476.756|221640.591|120.549 +637482.675|221638.424|120.604 +637488.543|221636.278|120.622 +637500.195|221632.005|120.786 +637506.123|221629.862|120.329 +637529.035|221621.407|121.768 +637558.244|221610.800|120.393 +637563.981|221608.718|120.143 +637569.775|221606.597|120.186 +637581.019|221602.452|120.924 +637586.667|221600.382|121.082 +637592.263|221598.315|121.451 +637597.890|221596.246|121.725 +637603.474|221594.195|121.929 +637621.198|221587.870|118.985 +637627.443|221585.697|116.821 +637633.073|221583.633|116.952 +637638.657|221581.588|117.034 +637644.277|221579.537|117.007 +637649.892|221577.485|117.004 +637655.439|221575.458|117.037 +637660.892|221573.444|117.415 +637666.714|221571.365|116.498 +637677.891|221567.299|116.141 +637683.389|221565.287|116.190 +637688.842|221563.294|116.193 +637694.344|221561.279|116.260 +637721.538|221551.352|116.132 +637732.712|221547.325|115.013 +637738.214|221547.450|114.922 +637732.773|221549.447|114.971 +637727.089|221551.486|115.852 +637721.657|221553.476|115.900 +637705.372|221559.453|115.873 +637694.310|221563.498|116.108 +637688.784|221565.525|116.126 +637683.277|221567.546|116.092 +637677.793|221569.564|115.989 +637666.628|221573.654|116.065 +637660.807|221575.754|116.760 +637655.220|221577.799|116.854 +637649.590|221579.860|116.894 +637643.979|221581.920|116.885 +637638.361|221583.981|116.915 +637632.695|221586.059|116.891 +637627.071|221588.129|116.736 +637620.945|221590.287|118.479 +637603.081|221596.673|121.707 +637597.439|221598.754|121.487 +637591.824|221600.830|121.167 +637586.158|221602.927|120.820 +637580.537|221605.003|120.552 +637574.902|221607.091|120.116 +637569.159|221609.212|119.854 +637563.347|221611.327|120.131 +637557.562|221613.440|120.332 +637545.711|221617.747|121.149 +637539.822|221619.883|121.567 +637522.415|221626.293|121.103 +637516.578|221628.433|121.131 +637510.851|221630.569|120.436 +637504.962|221632.727|120.451 +637499.034|221634.895|120.640 +637493.169|221637.046|120.579 +637487.238|221639.223|120.543 +637481.316|221641.399|120.506 +637475.384|221643.575|120.506 +637469.468|221645.745|120.466 +637463.509|221647.937|120.357 +637457.599|221650.107|120.332 +637451.643|221652.296|120.238 +637445.657|221654.490|120.311 +637439.698|221656.676|120.268 +637433.611|221658.895|120.549 +637408.749|221667.819|124.340 +637402.717|221670.023|124.493 +637396.615|221672.251|124.715 +637390.555|221674.458|125.057 +637378.266|221678.929|125.700 +637372.225|221681.145|125.718 +637366.083|221683.388|125.931 +637347.716|221690.097|126.428 +637317.001|221701.338|126.956 +637298.624|221708.111|126.355 +637292.525|221710.351|126.279 +637286.249|221712.640|126.507 +637280.044|221714.905|126.718 +637217.182|221737.704|131.400 +637210.906|221739.996|131.598 +637204.706|221742.261|131.707 +637192.075|221746.860|132.335 +637185.766|221749.146|132.847 +637179.459|221751.450|132.954 +637166.886|221756.038|133.399 +637160.675|221758.339|132.933 +637154.396|221760.661|132.503 +637148.135|221762.938|132.835 +637141.820|221765.261|132.728 +637116.363|221774.505|134.341 +637110.062|221776.822|134.240 +637103.723|221779.135|134.445 +637091.019|221783.781|134.643 +637084.718|221786.094|134.609 +637078.345|221788.426|134.694 +637065.607|221793.086|134.859 +637059.365|221795.369|134.926 +637052.925|221797.719|135.170 +637046.582|221800.045|135.088 +637033.865|221804.696|135.310 +637037.047|221806.976|135.487 +637068.536|221795.485|134.597 +637074.782|221793.202|134.512 +637081.082|221790.895|134.524 +637087.330|221788.609|134.463 +637093.579|221786.323|134.426 +637099.879|221784.012|134.484 +637106.085|221781.744|134.368 +637112.321|221779.455|134.478 +637124.879|221774.874|134.146 +637131.011|221772.625|134.182 +637143.569|221768.083|133.082 +637149.872|221765.785|132.856 +637156.072|221763.533|132.521 +637162.156|221761.256|133.433 +637174.561|221756.723|133.237 +637180.767|221754.465|132.945 +637187.009|221752.185|132.863 +637205.639|221745.418|131.726 +637211.826|221743.157|131.689 +637261.582|221725.085|128.742 +637292.608|221713.856|126.102 +637298.734|221711.616|126.029 +637310.795|221707.184|126.306 +637322.957|221702.722|126.456 +637335.091|221698.293|126.160 +637341.181|221696.068|126.099 +637353.235|221691.658|126.014 +637359.258|221689.451|126.029 +637371.417|221685.022|125.563 +637383.484|221680.615|125.316 +637389.543|221678.414|124.941 +637401.586|221674.034|124.346 +637413.623|221669.636|124.161 +637432.075|221663.006|121.622 +637444.276|221658.605|120.338 +637450.202|221656.438|120.259 +637456.093|221654.277|120.332 +637462.058|221652.088|120.387 +637467.895|221649.946|120.469 +637473.781|221647.785|120.634 +637479.743|221645.608|120.475 +637485.574|221643.463|120.637 +637491.386|221641.335|120.610 +637497.309|221639.162|120.680 +637503.127|221637.034|120.674 +637508.982|221634.895|120.521 +637514.923|221632.746|120.037 +637520.525|221630.630|121.256 +637537.826|221624.291|121.323 +637543.690|221622.148|121.256 +637549.515|221620.036|120.841 +637555.364|221617.920|120.357 +637561.268|221615.781|119.924 +637567.035|221613.674|119.814 +637572.786|221611.571|119.771 +637578.410|221609.489|120.262 +637584.043|221607.417|120.460 +637589.700|221605.326|120.847 +637595.275|221603.262|121.298 +637600.883|221601.202|121.390 +637624.798|221592.680|116.891 +637630.424|221590.613|117.019 +637636.033|221588.559|117.001 +637641.638|221586.507|117.010 +637647.252|221584.453|116.998 +637652.858|221582.399|117.031 +637658.582|221580.323|116.653 +637669.862|221576.233|115.870 +637675.437|221574.194|115.852 +637680.884|221572.188|116.071 +637686.367|221570.176|116.181 +637691.887|221568.155|116.172 +637697.380|221566.150|116.047 +637702.915|221564.126|116.025 +637713.894|221560.127|115.660 +637719.374|221558.121|115.641 +637735.727|221552.163|115.102 +637741.131|221550.191|114.962 +637751.854|221546.262|115.026 +637737.613|221553.281|115.111 +637732.097|221555.296|115.422 +637726.650|221557.295|115.507 +637710.303|221563.297|115.693 +637704.814|221565.315|115.785 +637699.321|221567.329|115.900 +637693.753|221569.369|116.059 +637682.746|221573.422|115.986 +637677.293|221575.437|115.794 +637671.807|221577.458|115.736 +637666.071|221579.537|116.358 +637660.490|221581.597|116.199 +637654.738|221583.691|116.690 +637649.060|221585.767|116.918 +637643.518|221587.806|116.915 +637637.916|221589.866|116.903 +637632.259|221591.948|116.873 +637626.617|221594.027|116.812 +637620.201|221596.240|119.659 +637602.779|221602.564|121.308 +637591.526|221606.731|120.792 +637585.911|221608.825|120.265 +637580.278|221610.907|120.064 +637574.655|221613.001|119.598 +637568.915|221615.110|119.589 +637563.063|221617.253|119.805 +637557.239|221619.377|120.180 +637545.455|221623.666|121.024 +637539.496|221625.836|121.484 +637533.879|221627.936|120.847 +637522.180|221632.243|120.710 +637510.534|221636.544|120.433 +637504.612|221638.711|120.607 +637498.756|221640.872|120.506 +637492.880|221643.033|120.524 +637486.936|221645.215|120.570 +637481.029|221647.391|120.479 +637469.203|221651.747|120.408 +637463.244|221653.945|120.317 +637457.346|221656.115|120.250 +637451.375|221658.312|120.256 +637445.361|221660.528|120.183 +637433.075|221664.960|121.875 +637414.622|221671.644|123.874 +637408.596|221673.854|123.999 +637402.641|221676.055|123.813 +637396.514|221678.289|124.167 +637384.298|221682.736|125.078 +637372.060|221687.211|125.587 +637359.944|221691.667|125.560 +637347.798|221696.141|125.456 +637341.580|221698.406|125.855 +637329.278|221702.905|126.364 +637310.896|221709.680|126.090 +637304.824|221711.927|125.843 +637298.685|221714.195|125.630 +637292.440|221716.471|126.050 +637254.760|221730.133|129.607 +637248.472|221732.419|130.104 +637217.243|221743.824|131.427 +637211.043|221746.095|131.549 +637198.497|221750.682|132.012 +637179.597|221757.571|133.067 +637167.112|221762.164|132.988 +637160.812|221764.468|133.149 +637154.676|221766.751|132.616 +637148.297|221769.077|132.966 +637141.963|221771.378|133.457 +637135.626|221773.679|134.003 +637129.268|221776.002|134.274 +637123.029|221778.300|134.146 +637116.610|221780.641|134.484 +637104.079|221785.256|134.252 +637097.788|221787.575|134.131 +637091.448|221789.889|134.420 +637085.102|221792.227|134.295 +637078.787|221794.540|134.448 +637072.435|221796.875|134.414 +637059.761|221801.520|134.667 +637053.470|221803.827|134.688 +637047.066|221806.156|135.200 +637040.742|221808.488|135.030 +637034.332|221810.810|135.655 +637034.420|221814.233|135.639 +637047.057|221809.640|135.030 +637066.013|221802.736|134.356 +637072.334|221800.432|134.170 +637091.128|221793.552|134.118 +637097.404|221791.239|134.384 +637103.610|221788.971|134.246 +637128.570|221779.827|134.265 +637141.152|221775.258|133.439 +637147.431|221772.985|132.930 +637153.670|221770.711|132.747 +637159.928|221768.431|132.445 +637166.085|221766.154|132.887 +637172.205|221763.898|133.158 +637215.712|221748.040|131.589 +637221.869|221745.793|131.393 +637234.296|221741.273|130.747 +637240.474|221739.024|130.482 +637246.674|221736.771|130.125 +637252.865|221734.519|129.842 +637259.177|221732.254|128.873 +637277.813|221725.494|127.550 +637284.073|221723.247|126.663 +637290.239|221721.004|126.334 +637326.852|221707.611|125.941 +637345.116|221700.948|125.432 +637369.256|221692.093|125.596 +637375.315|221689.896|125.182 +637387.446|221685.479|124.651 +637393.533|221683.273|124.176 +637399.620|221681.066|123.709 +637405.652|221678.865|123.545 +637411.617|221676.686|123.414 +637429.701|221670.090|122.874 +637448.074|221663.488|120.329 +637454.045|221661.303|120.335 +637459.891|221659.160|120.347 +637465.847|221656.971|120.457 +637471.763|221654.804|120.488 +637483.535|221650.485|120.576 +637495.303|221646.178|120.466 +637501.109|221644.051|120.500 +637506.956|221641.902|120.668 +637512.774|221639.768|120.680 +637518.782|221637.607|119.933 +637535.985|221631.252|120.933 +637559.293|221622.754|120.000 +637565.081|221620.642|119.774 +637570.875|221618.530|119.555 +637576.636|221616.421|119.479 +637582.296|221614.327|119.817 +637587.883|221612.260|120.198 +637599.103|221608.112|120.829 +637604.769|221606.027|120.948 +637616.050|221601.879|121.180 +637621.939|221599.766|120.268 +637628.431|221597.544|117.135 +637634.152|221595.459|116.918 +637639.748|221593.405|116.931 +637645.335|221591.354|117.001 +637656.643|221587.233|116.464 +637662.343|221585.169|115.943 +637668.000|221583.100|115.830 +637673.611|221581.052|115.660 +637695.508|221572.996|116.178 +637701.043|221570.978|115.897 +637706.548|221568.966|115.751 +637712.050|221566.958|115.626 +637717.500|221564.964|115.474 +637723.013|221562.949|115.340 +637728.463|221560.956|115.215 +637733.901|221558.966|115.163 +637750.065|221553.053|114.901 +637755.459|221551.077|114.821 +637760.800|221549.124|114.724 +637733.803|221560.252|115.041 +637728.378|221562.248|115.065 +637722.901|221564.251|115.276 +637717.378|221566.275|115.437 +637711.937|221568.271|115.553 +637706.429|221570.289|115.696 +637700.827|221572.325|116.178 +637695.316|221574.355|116.135 +637673.288|221582.484|115.602 +637667.671|221584.542|115.791 +637662.050|221586.596|116.001 +637656.381|221588.675|116.181 +637644.981|221592.823|117.043 +637639.334|221594.905|116.955 +637633.673|221596.987|116.934 +637604.284|221607.603|120.732 +637598.594|221609.697|120.704 +637592.986|221611.775|120.378 +637587.322|221613.879|120.015 +637581.738|221615.951|119.622 +637576.072|221618.051|119.302 +637570.214|221620.197|119.503 +637564.432|221622.315|119.689 +637558.546|221624.461|120.040 +637529.236|221635.199|120.869 +637505.809|221643.831|120.585 +637499.945|221645.989|120.515 +637494.014|221648.175|120.485 +637488.073|221650.357|120.503 +637482.130|221652.539|120.561 +637476.219|221654.716|120.497 +637470.242|221656.916|120.463 +637464.335|221659.093|120.421 +637458.386|221661.287|120.299 +637452.399|221663.485|120.357 +637440.140|221667.917|121.862 +637421.730|221674.601|123.569 +637409.776|221679.011|123.307 +637403.713|221681.240|123.328 +637397.544|221683.480|123.868 +637391.409|221685.717|124.276 +637385.258|221687.951|124.798 +637379.156|221690.179|125.090 +637366.973|221694.648|125.346 +637360.849|221696.891|125.508 +637354.802|221699.128|125.291 +637348.670|221701.387|125.224 +637342.561|221703.624|125.371 +637317.869|221712.680|125.907 +637311.795|221714.926|125.636 +637274.350|221728.578|128.007 +637261.811|221733.159|128.644 +637249.152|221737.743|130.104 +637243.017|221740.002|130.086 +637236.649|221742.309|130.741 +637211.646|221751.466|131.570 +637173.933|221765.273|132.939 +637167.682|221767.583|132.747 +637161.461|221769.891|132.351 +637155.136|221772.201|132.698 +637148.824|221774.509|133.000 +637142.411|221776.837|133.606 +637129.728|221781.467|134.320 +637123.419|221783.790|134.249 +637117.134|221786.091|134.472 +637110.800|221788.438|134.170 +637104.475|221790.760|134.280 +637091.820|221795.424|134.115 +637079.174|221800.084|133.978 +637072.877|221802.401|133.957 +637066.494|221804.739|134.195 +637060.121|221807.073|134.362 +637053.677|221809.402|135.185 +637047.331|221811.740|135.161 +637040.961|221814.072|135.380 +637037.166|221818.909|135.417 +637056.076|221812.011|134.865 +637062.410|221809.713|134.460 +637068.661|221807.433|134.289 +637075.020|221805.132|133.728 +637081.305|221802.824|133.847 +637087.541|221800.538|133.862 +637093.774|221798.252|133.932 +637100.019|221795.966|133.948 +637106.234|221793.674|134.210 +637112.464|221791.385|134.371 +637124.940|221786.829|134.140 +637149.961|221777.721|133.021 +637156.212|221775.447|132.744 +637162.464|221773.173|132.482 +637168.694|221770.897|132.375 +637174.878|221768.641|132.201 +637181.127|221766.361|132.034 +637187.332|221764.103|131.753 +637193.566|221761.841|131.329 +637199.796|221759.558|131.351 +637205.910|221757.321|131.336 +637230.675|221748.280|130.756 +637236.893|221746.013|130.601 +637243.102|221743.760|130.144 +637249.274|221741.511|129.933 +637261.762|221737.000|128.745 +637267.946|221734.744|128.547 +637280.358|221730.245|127.623 +637286.573|221728.005|126.968 +637292.806|221725.759|126.255 +637305.245|221721.263|125.057 +637311.301|221719.047|125.060 +637317.336|221716.810|125.529 +637329.437|221712.372|125.700 +637335.551|221710.144|125.456 +637341.671|221707.916|125.224 +637347.734|221705.709|124.980 +637353.863|221703.475|124.737 +637365.897|221699.064|124.837 +637396.170|221688.027|123.868 +637402.250|221685.824|123.435 +637408.289|221683.638|122.917 +637456.526|221666.106|120.363 +637462.500|221663.918|120.360 +637468.398|221661.754|120.433 +637474.260|221659.611|120.415 +637480.173|221657.441|120.451 +637486.104|221655.271|120.439 +637491.965|221653.122|120.466 +637497.842|221650.973|120.448 +637503.716|221648.821|120.454 +637509.498|221646.696|120.600 +637521.464|221642.368|119.531 +637526.999|221640.293|120.500 +637532.891|221638.147|120.256 +637538.615|221636.041|120.469 +637544.434|221633.904|120.573 +637550.274|221631.776|120.344 +637556.074|221629.667|120.040 +637561.975|221627.528|119.616 +637567.757|221625.418|119.427 +637579.352|221621.194|118.985 +637584.902|221619.133|119.506 +637590.550|221617.042|119.921 +637596.226|221614.948|120.235 +637601.883|221612.867|120.381 +637613.127|221608.727|120.750 +637636.749|221600.266|116.970 +637642.421|221598.191|116.958 +637648.090|221596.124|116.739 +637653.833|221594.045|116.263 +637659.466|221591.997|115.967 +637665.159|221589.924|115.711 +637670.768|221587.876|115.556 +637676.367|221585.831|115.437 +637681.820|221583.825|115.629 +637687.318|221581.807|115.675 +637709.285|221573.752|115.873 +637714.918|221571.716|115.303 +637720.365|221569.728|115.169 +637725.882|221567.713|115.035 +637731.325|221565.723|114.946 +637736.736|221563.751|114.767 +637742.188|221561.758|114.675 +637747.586|221559.786|114.559 +637752.881|221557.835|114.818 +637758.322|221555.851|114.590 +637739.454|221563.843|114.703 +637734.066|221565.818|114.831 +637728.616|221567.817|114.949 +637723.157|221569.820|115.108 +637717.643|221571.844|115.254 +637690.107|221581.960|115.663 +637679.168|221586.011|115.163 +637673.590|221588.050|115.434 +637667.988|221590.107|115.586 +637662.306|221592.186|115.803 +637656.680|221594.243|116.077 +637650.943|221596.343|116.291 +637645.250|221598.413|116.848 +637639.559|221600.501|116.943 +637633.798|221602.592|117.552 +637604.733|221613.153|120.238 +637599.075|221615.244|120.094 +637587.776|221619.432|119.543 +637582.156|221621.526|119.049 +637576.542|221623.605|118.799 +637570.607|221625.763|119.326 +637564.791|221627.899|119.393 +637558.979|221630.024|119.735 +637547.265|221634.306|120.317 +637541.395|221636.461|120.439 +637535.576|221638.607|120.357 +637529.770|221640.750|120.238 +637523.991|221642.886|120.034 +637518.126|221645.051|119.933 +637512.192|221647.212|120.411 +637506.312|221649.376|120.415 +637500.381|221651.561|120.381 +637494.511|221653.722|120.384 +637488.564|221655.908|120.454 +637482.636|221658.090|120.463 +637476.732|221660.266|120.384 +637470.824|221662.442|120.347 +637464.850|221664.643|120.332 +637458.879|221666.841|120.326 +637453.039|221669.005|120.037 +637434.584|221675.677|122.420 +637428.555|221677.893|122.505 +637422.434|221680.118|123.036 +637410.459|221684.531|122.926 +637398.279|221688.997|123.271 +637367.713|221700.171|124.804 +637361.703|221702.387|124.731 +637355.573|221704.648|124.627 +637349.407|221706.895|125.072 +637337.145|221711.396|125.349 +637318.784|221718.160|125.246 +637300.249|221724.963|125.584 +637293.924|221727.246|126.462 +637268.882|221736.366|128.458 +637262.652|221738.633|128.940 +637243.836|221745.495|130.217 +637237.606|221747.777|130.455 +637231.309|221750.082|130.750 +637225.094|221752.359|130.930 +637200.174|221761.545|130.692 +637193.877|221763.844|131.140 +637187.564|221766.139|131.720 +637181.288|221768.431|132.067 +637174.927|221770.766|132.201 +637168.691|221773.055|132.344 +637162.382|221775.365|132.573 +637156.084|221777.672|132.768 +637149.784|221779.980|133.009 +637130.694|221786.938|134.374 +637124.464|221789.243|134.173 +637118.091|221791.590|134.173 +637105.503|221796.235|133.960 +637099.199|221798.557|133.942 +637092.902|221800.877|133.887 +637086.541|221803.221|133.887 +637080.262|221805.540|133.747 +637061.188|221812.529|134.387 +637048.407|221817.193|135.170 +637042.058|221819.528|135.231 +637035.630|221825.377|135.258 +637048.209|221820.771|135.094 +637054.531|221818.470|134.771 +637067.107|221813.883|134.240 +637073.407|221811.603|133.667 +637079.735|221809.295|133.396 +637085.980|221807.006|133.326 +637098.480|221802.404|133.664 +637104.686|221800.112|133.954 +637110.907|221797.820|134.143 +637117.149|221795.528|134.185 +637123.385|221793.257|133.826 +637129.554|221790.986|133.987 +637135.806|221788.691|134.027 +637142.012|221786.417|133.963 +637148.379|221784.119|133.170 +637154.554|221781.866|132.951 +637160.806|221779.590|132.622 +637166.978|221777.331|132.466 +637173.214|221775.051|132.311 +637179.389|221772.792|132.155 +637191.901|221768.248|131.290 +637198.144|221765.983|130.787 +637204.386|221763.716|130.308 +637210.625|221761.448|129.885 +637235.189|221752.404|130.525 +637253.685|221745.668|129.525 +637259.970|221743.388|129.031 +637272.347|221738.890|128.144 +637278.584|221736.628|127.647 +637284.735|221734.388|127.327 +637297.100|221729.898|126.389 +637321.692|221720.949|124.932 +637346.018|221712.040|124.609 +637352.022|221709.833|124.654 +637358.143|221707.599|124.453 +637364.175|221705.389|124.404 +637388.281|221696.571|123.868 +637400.373|221692.167|123.243 +637406.472|221689.957|122.704 +637412.510|221687.753|122.487 +637418.469|221685.571|122.371 +637460.531|221670.248|120.232 +637466.402|221668.084|120.402 +637472.315|221665.914|120.384 +637478.207|221663.750|120.497 +637484.059|221661.601|120.503 +637489.978|221659.428|120.527 +637495.843|221657.276|120.524 +637501.722|221655.121|120.479 +637525.109|221646.568|119.954 +637530.937|221644.429|119.951 +637536.735|221642.295|120.091 +637542.468|221640.183|120.250 +637565.675|221631.716|119.430 +637571.506|221629.600|119.025 +637577.316|221627.485|118.744 +637583.031|221625.385|118.842 +637588.606|221623.318|119.247 +637599.819|221619.176|119.866 +637611.066|221615.025|120.408 +637616.733|221612.955|120.302 +637640.074|221604.552|117.263 +637645.878|221602.452|116.745 +637651.519|221600.403|116.367 +637657.192|221598.334|116.138 +637662.791|221596.292|115.955 +637668.393|221594.246|115.769 +637679.653|221590.144|115.279 +637685.185|221588.123|115.169 +637690.750|221586.093|114.968 +637701.385|221582.137|116.111 +637723.468|221574.093|115.059 +637728.924|221572.103|114.898 +637734.367|221570.112|114.791 +637745.145|221566.174|114.556 +637750.552|221564.199|114.392 +637755.962|221562.224|114.242 +637766.646|221558.310|114.233 +637745.310|221567.817|114.474 +637739.909|221569.798|114.620 +637734.459|221571.798|114.730 +637723.562|221575.794|114.986 +637706.893|221581.878|115.934 +637696.072|221585.886|115.407 +637690.714|221587.885|114.855 +637685.090|221589.946|115.032 +637679.552|221591.976|115.160 +637668.241|221596.115|115.605 +637662.620|221598.169|115.836 +637656.939|221600.248|116.080 +637651.269|221602.324|116.303 +637645.582|221604.399|116.601 +637622.097|221612.876|119.832 +637610.704|221617.058|120.027 +637604.973|221619.173|119.906 +637593.699|221623.343|119.488 +637588.072|221625.437|119.006 +637582.427|221627.534|118.616 +637576.734|221629.637|118.421 +637570.891|221631.764|118.845 +637564.974|221633.916|119.332 +637559.110|221636.059|119.631 +637547.442|221640.332|120.034 +637541.608|221642.481|120.015 +637535.805|221644.621|119.872 +637529.998|221646.764|119.771 +637518.355|221651.061|119.464 +637500.442|221657.605|120.387 +637494.498|221659.791|120.424 +637488.631|221661.949|120.442 +637482.703|221664.128|120.457 +637476.728|221666.329|120.418 +637470.843|221668.502|120.290 +637464.835|221670.703|120.439 +637446.770|221677.311|121.219 +637440.643|221679.539|121.710 +637428.533|221683.958|122.402 +637416.585|221688.369|122.137 +637410.477|221690.603|122.359 +637386.075|221699.515|123.679 +637379.927|221701.765|123.926 +637367.854|221706.203|123.972 +637361.621|221708.477|124.401 +637349.493|221712.948|124.215 +637330.985|221719.711|125.115 +637312.615|221726.487|124.791 +637306.357|221728.764|125.236 +637281.299|221737.871|127.480 +637275.097|221740.139|127.766 +637268.778|221742.434|128.400 +637219.004|221760.707|129.351 +637212.725|221763.005|129.589 +637206.422|221765.304|130.025 +637200.125|221767.599|130.455 +637193.813|221769.894|131.003 +637187.442|221772.210|131.579 +637181.145|221774.502|132.088 +637174.842|221776.813|132.262 +637168.545|221779.123|132.415 +637162.253|221781.434|132.552 +637155.993|221783.720|132.936 +637149.641|221786.048|133.113 +637136.952|221790.678|133.899 +637130.691|221792.979|133.942 +637124.373|221795.305|133.975 +637111.742|221799.950|134.067 +637105.405|221802.294|133.826 +637092.826|221806.936|133.615 +637080.229|221811.597|133.134 +637073.886|221813.910|133.539 +637061.078|221818.577|134.472 +637054.766|221820.890|134.740 +637048.371|221823.246|134.640 +637041.946|221825.572|135.429 +637035.667|221827.882|135.441 +637039.093|221830.034|135.149 +637045.384|221827.730|135.057 +637051.708|221825.425|134.652 +637064.312|221820.811|134.374 +637083.283|221813.910|133.049 +637089.522|221811.618|133.042 +637095.792|221809.305|133.323 +637126.921|221797.862|133.695 +637133.166|221795.567|133.774 +637145.578|221791.020|133.673 +637151.866|221788.743|133.049 +637158.093|221786.466|132.899 +637164.354|221784.189|132.539 +637170.483|221781.909|133.106 +637176.698|221779.650|132.680 +637182.983|221777.368|132.238 +637195.556|221772.838|130.577 +637201.774|221770.574|130.241 +637208.004|221768.306|129.869 +637214.246|221766.038|129.455 +637220.492|221763.767|129.037 +637226.664|221761.518|128.708 +637232.830|221759.250|128.854 +637269.738|221745.732|128.382 +637275.996|221743.468|127.748 +637282.196|221741.206|127.480 +637288.350|221738.966|127.154 +637300.752|221734.470|126.044 +637306.951|221732.224|125.544 +637313.133|221729.989|124.816 +637319.336|221727.737|124.365 +637331.381|221723.296|124.801 +637361.773|221712.201|123.743 +637367.896|221709.961|123.560 +637373.880|221707.772|123.469 +637392.061|221701.134|122.822 +637404.061|221696.739|122.670 +637416.277|221692.313|121.579 +637422.200|221690.134|121.649 +637434.035|221685.766|122.201 +637440.043|221683.574|121.917 +637452.256|221679.164|120.543 +637458.221|221676.991|120.250 +637470.059|221672.638|120.439 +637475.930|221670.489|120.347 +637481.895|221668.295|120.421 +637487.756|221666.146|120.408 +637493.621|221663.994|120.402 +637499.485|221661.842|120.408 +637511.506|221657.493|119.241 +637523.086|221653.231|119.494 +637528.941|221651.089|119.372 +637540.459|221646.846|119.726 +637546.296|221644.703|119.726 +637552.029|221642.603|119.649 +637557.863|221640.475|119.454 +637569.562|221636.220|118.720 +637575.432|221634.096|118.180 +637586.829|221629.899|118.522 +637598.082|221625.735|119.220 +637603.766|221623.650|119.247 +637614.974|221619.514|119.713 +637620.735|221617.411|119.494 +637626.398|221615.339|119.430 +637632.180|221613.245|118.930 +637638.255|221611.096|117.357 +637644.040|221609.011|116.650 +637649.721|221606.941|116.355 +637655.381|221604.875|116.160 +637661.057|221602.805|115.922 +637666.720|221600.739|115.745 +637677.979|221596.633|115.233 +637683.527|221594.609|115.068 +637689.068|221592.582|114.931 +637694.563|221590.564|114.983 +637700.016|221588.553|115.202 +637705.411|221586.553|115.632 +637721.992|221580.506|114.949 +637727.497|221578.506|114.611 +637743.725|221572.563|114.443 +637749.135|221570.588|114.270 +637754.530|221568.616|114.157 +637759.928|221566.641|114.056 +637765.326|221564.665|113.971 +637770.666|221562.712|113.877 +637746.114|221573.742|114.248 +637740.664|221575.736|114.581 +637729.911|221579.713|114.343 +637724.431|221581.719|114.614 +637713.254|221585.794|115.483 +637707.831|221587.797|115.376 +637702.400|221589.815|115.084 +637696.926|221591.838|114.953 +637691.476|221593.856|114.748 +637685.934|221595.892|114.882 +637680.317|221597.953|115.074 +637674.660|221600.007|115.660 +637663.458|221604.128|115.785 +637657.792|221606.207|115.998 +637652.135|221608.282|116.196 +637646.469|221610.358|116.446 +637611.780|221622.995|119.259 +637606.040|221625.101|119.448 +637594.750|221629.292|118.872 +637589.160|221631.383|118.272 +637583.491|221633.486|117.994 +637577.813|221635.590|117.757 +637571.884|221637.748|118.281 +637565.953|221639.906|118.848 +637560.146|221642.027|119.186 +637554.294|221644.170|119.479 +637548.445|221646.322|119.515 +637536.817|221650.616|119.348 +637531.038|221652.756|119.153 +637525.192|221654.920|118.973 +637519.352|221657.066|119.061 +637501.356|221663.631|120.402 +637495.446|221665.811|120.323 +637489.524|221667.993|120.326 +637483.611|221670.175|120.296 +637477.713|221672.352|120.223 +637471.708|221674.555|120.360 +637453.945|221681.118|120.058 +637411.571|221696.638|121.908 +637399.367|221701.109|122.420 +637381.067|221707.821|123.027 +637375.062|221710.040|122.911 +637368.908|221712.290|123.249 +637362.797|221714.536|123.383 +637325.950|221728.066|124.325 +637319.732|221730.346|124.532 +637313.572|221732.601|124.791 +637307.278|221734.887|125.462 +637294.726|221739.447|126.721 +637288.487|221741.721|127.169 +637282.269|221743.992|127.522 +637276.008|221746.284|127.803 +637238.746|221759.985|128.099 +637232.544|221762.265|128.193 +637226.252|221764.566|128.461 +637219.995|221766.846|128.937 +637213.682|221769.144|129.409 +637207.388|221771.442|129.781 +637201.106|221773.737|130.116 +637188.418|221778.349|131.287 +637182.087|221780.641|132.055 +637175.729|221782.955|132.616 +637169.380|221785.265|133.140 +637163.244|221787.551|132.619 +637156.874|221789.880|132.917 +637150.574|221792.187|133.164 +637144.173|221794.513|133.753 +637137.918|221796.817|133.731 +637131.606|221799.142|133.695 +637125.367|221801.444|133.606 +637119.030|221803.766|133.811 +637112.669|221806.110|133.734 +637106.445|221808.411|133.576 +637100.138|221810.755|133.109 +637093.902|221813.081|132.564 +637087.538|221815.422|132.594 +637081.210|221817.738|132.881 +637074.907|221820.055|132.954 +637068.421|221822.408|133.573 +637055.686|221827.050|134.478 +637049.331|221829.385|134.606 +637042.933|221831.713|135.127 +637036.505|221834.064|135.426 +637042.449|221835.155|135.008 +637048.758|221832.850|134.719 +637055.070|221830.543|134.441 +637067.689|221825.956|133.451 +637092.884|221816.757|132.280 +637098.980|221814.483|132.972 +637105.234|221812.188|132.866 +637117.646|221807.595|133.500 +637123.833|221805.318|133.509 +637130.076|221803.020|133.573 +637136.254|221800.743|133.692 +637142.515|221798.445|133.655 +637148.665|221796.189|133.567 +637154.993|221793.888|133.097 +637161.178|221791.629|132.802 +637167.365|221789.346|132.957 +637173.607|221787.063|132.725 +637179.862|221784.799|132.006 +637186.183|221782.513|131.317 +637192.481|221780.245|130.385 +637198.653|221777.977|130.345 +637204.862|221775.709|130.065 +637217.355|221771.165|129.123 +637229.800|221766.639|128.211 +637235.979|221764.383|127.882 +637242.139|221762.128|127.681 +637248.320|221759.872|127.388 +637254.453|221757.595|127.797 +637291.303|221744.096|126.956 +637297.420|221741.849|126.843 +637309.777|221737.369|125.688 +637315.961|221735.131|124.935 +637334.332|221728.417|124.225 +637346.493|221723.951|124.100 +637358.661|221719.516|123.371 +637364.827|221717.273|122.932 +637376.961|221712.832|122.533 +637388.976|221708.434|122.179 +637419.207|221697.379|121.061 +637448.940|221686.452|121.042 +637455.039|221684.242|120.390 +637478.691|221675.555|120.256 +637484.601|221673.382|120.296 +637490.438|221671.230|120.375 +637496.278|221669.078|120.475 +637508.409|221664.707|118.766 +637514.201|221662.574|118.860 +637525.908|221658.270|118.839 +637531.727|221656.130|118.860 +637543.218|221651.884|119.317 +637548.991|221649.763|119.317 +637554.773|221647.635|119.299 +637560.610|221645.502|119.076 +637566.486|221643.359|118.726 +637572.360|221641.228|118.135 +637578.221|221639.101|117.626 +637583.872|221637.004|117.976 +637589.596|221634.898|118.043 +637600.874|221630.719|118.641 +637629.330|221620.273|118.311 +637635.353|221618.131|116.897 +637641.001|221616.064|116.678 +637646.716|221613.973|116.473 +637652.367|221611.907|116.288 +637658.042|221609.831|116.031 +637663.641|221607.783|115.833 +637669.332|221605.704|115.550 +637674.815|221603.689|115.568 +637680.445|221601.632|115.321 +637686.111|221599.565|114.953 +637691.729|221597.511|114.779 +637697.288|221595.475|114.602 +637708.151|221591.464|114.946 +637719.021|221587.458|115.111 +637724.669|221585.413|114.483 +637730.152|221583.411|114.218 +637735.596|221581.414|114.090 +637741.079|221579.412|113.861 +637751.774|221575.465|114.130 +637767.956|221569.539|113.630 +637773.336|221567.564|113.617 +637740.735|221581.384|113.639 +637735.260|221583.392|113.843 +637729.801|221585.401|114.029 +637724.312|221587.410|114.322 +637713.217|221591.476|114.931 +637702.415|221595.478|114.578 +637696.938|221597.508|114.465 +637691.369|221599.550|114.690 +637674.575|221605.728|115.077 +637668.960|221607.789|115.312 +637657.600|221611.943|116.062 +637651.958|221614.016|116.211 +637646.313|221616.091|116.382 +637640.586|221618.192|116.644 +637634.883|221620.285|116.836 +637629.062|221622.389|117.741 +637611.883|221628.701|118.269 +637606.113|221630.813|118.567 +637600.493|221632.901|118.311 +637594.784|221635.017|118.165 +637589.142|221637.120|117.763 +637583.491|221639.223|117.412 +637577.706|221641.347|117.610 +637571.774|221643.508|118.153 +637565.950|221645.636|118.558 +637560.006|221647.809|118.945 +637554.191|221649.949|119.089 +637548.408|221652.079|119.116 +637536.847|221656.368|118.692 +637531.035|221658.517|118.631 +637519.297|221662.854|118.506 +637507.559|221667.176|118.723 +637501.265|221669.416|120.287 +637489.484|221673.766|120.283 +637483.565|221675.948|120.290 +637465.975|221682.498|119.110 +637447.715|221689.146|120.850 +637435.571|221693.584|121.731 +637429.634|221695.791|121.420 +637417.670|221700.229|120.954 +637411.522|221702.475|121.399 +637387.337|221711.381|121.759 +637381.207|221713.634|121.923 +637368.869|221718.145|122.728 +637362.806|221720.388|122.615 +637356.668|221722.638|122.932 +637350.465|221724.890|123.612 +637338.047|221729.428|124.438 +637332.152|221731.650|123.542 +637325.907|221733.936|123.868 +637313.377|221738.475|125.529 +637307.162|221740.755|125.779 +637300.874|221743.041|126.474 +637294.671|221745.318|126.712 +637276.066|221752.133|127.593 +637263.776|221756.684|127.248 +637257.665|221758.964|126.696 +637251.435|221761.253|126.907 +637245.184|221763.539|127.257 +637238.944|221765.825|127.571 +637232.665|221768.111|128.153 +637226.399|221770.412|128.300 +637220.160|221772.695|128.708 +637213.820|221774.996|129.382 +637207.532|221777.297|129.751 +637195.117|221781.888|129.482 +637188.799|221784.207|129.726 +637182.373|221786.502|131.144 +637175.927|221788.819|132.351 +637169.627|221791.108|132.994 +637163.409|221793.418|132.664 +637157.163|221795.707|132.972 +637150.811|221798.036|133.192 +637144.505|221800.343|133.567 +637138.260|221802.651|133.494 +637132.020|221804.955|133.411 +637125.726|221807.284|133.286 +637106.978|221814.239|132.439 +637100.708|221816.541|132.689 +637094.472|221818.866|132.180 +637088.199|221821.189|131.988 +637081.871|221823.508|132.283 +637075.477|221825.846|132.637 +637056.436|221832.783|134.313 +637043.704|221837.453|134.826 +637037.383|221839.760|135.277 +637035.514|221843.966|135.207 +637048.191|221839.343|134.649 +637054.485|221837.038|134.539 +637060.877|221834.740|133.570 +637073.566|221830.129|132.613 +637079.912|221827.824|132.162 +637086.242|221825.514|131.893 +637092.497|221823.222|131.762 +637104.939|221818.607|132.610 +637111.175|221816.309|132.695 +637117.436|221813.989|133.082 +637123.626|221811.716|133.067 +637129.865|221809.417|133.173 +637136.086|221807.119|133.423 +637142.286|221804.842|133.417 +637148.537|221802.541|133.460 +637154.795|221800.261|133.070 +637161.031|221797.981|132.844 +637167.228|221795.701|132.917 +637179.801|221791.132|131.878 +637186.302|221788.865|129.498 +637192.441|221786.600|129.680 +637204.846|221782.043|129.626 +637211.012|221779.775|129.662 +637229.819|221772.954|127.934 +637242.242|221768.422|127.282 +637248.433|221766.163|126.931 +637254.681|221763.883|126.629 +637260.890|221761.622|126.224 +637267.093|221759.360|125.880 +637273.097|221757.110|126.733 +637291.480|221750.350|126.855 +637297.609|221748.107|126.687 +637303.760|221745.857|126.419 +637322.393|221739.112|124.417 +637328.653|221736.850|123.652 +637334.740|221734.619|123.523 +637359.127|221725.701|122.710 +637365.165|221723.485|122.621 +637377.354|221719.041|121.935 +637383.459|221716.834|121.268 +637395.560|221712.408|120.853 +637407.588|221707.986|120.899 +637413.504|221705.809|120.960 +637431.383|221699.223|121.237 +637437.360|221697.019|121.387 +637461.607|221688.226|119.140 +637467.612|221686.040|118.692 +637473.427|221683.882|119.122 +637485.007|221679.569|120.238 +637508.879|221670.892|118.430 +637514.670|221668.743|118.799 +637520.644|221666.569|118.397 +637526.435|221664.448|118.253 +637532.248|221662.308|118.314 +637543.757|221658.062|118.692 +637561.076|221651.689|118.753 +637566.907|221649.568|118.311 +637572.750|221647.440|117.848 +637578.660|221645.291|117.385 +637590.062|221641.094|117.440 +637601.377|221636.909|117.900 +637624.170|221628.539|117.623 +637629.982|221626.433|116.976 +637635.670|221624.348|116.839 +637641.379|221622.261|116.626 +637647.024|221620.194|116.443 +637652.723|221618.103|116.297 +637664.126|221613.958|115.364 +637680.954|221607.786|114.989 +637686.395|221605.777|115.190 +637697.627|221601.684|114.392 +637703.201|221599.644|114.166 +637708.642|221597.642|114.206 +637714.025|221595.648|114.459 +637724.946|221591.631|114.462 +637730.533|221589.610|113.828 +637736.019|221587.605|113.566 +637741.487|221585.602|113.380 +637746.931|221583.606|113.285 +637757.398|221579.713|114.123 +637762.875|221577.717|113.749 +637768.423|221575.708|113.157 +637773.720|221573.758|113.200 +637745.611|221585.553|113.151 +637740.204|221587.538|113.349 +637734.727|221589.546|113.575 +637729.189|221591.576|113.797 +637723.638|221593.597|114.312 +637718.131|221595.621|114.462 +637712.754|221597.617|114.178 +637707.322|221599.638|113.870 +637701.793|221601.662|114.151 +637696.130|221603.735|114.459 +637684.855|221607.856|115.184 +637662.547|221616.079|115.297 +637651.062|221620.264|116.312 +637645.366|221622.358|116.440 +637639.715|221624.431|116.672 +637634.003|221626.525|116.888 +637628.315|221628.616|117.040 +637622.478|221630.743|117.543 +637616.751|221632.849|117.641 +637611.152|221634.922|117.510 +637605.406|221637.031|117.714 +637594.043|221641.237|117.427 +637582.622|221645.462|117.171 +637576.788|221647.593|117.571 +637565.005|221651.896|118.372 +637553.361|221656.176|118.695 +637547.595|221658.303|118.656 +637541.840|221660.455|118.061 +637536.000|221662.595|118.360 +637530.218|221664.738|118.177 +637524.344|221666.905|118.113 +637518.383|221669.087|118.455 +637506.693|221673.424|117.921 +637488.430|221680.039|120.305 +637471.071|221686.543|118.299 +637440.610|221697.635|121.061 +637434.544|221699.860|121.335 +637428.652|221702.057|120.799 +637404.561|221710.945|120.735 +637398.532|221713.173|120.646 +637374.084|221722.129|121.841 +637361.791|221726.630|122.460 +637330.964|221737.939|123.636 +637324.633|221740.234|124.438 +637299.652|221749.344|126.443 +637281.162|221756.181|126.172 +637268.827|221760.756|125.648 +637262.554|221763.051|126.044 +637256.278|221765.343|126.492 +637250.030|221767.632|126.818 +637243.724|221769.943|127.126 +637212.165|221781.455|129.711 +637205.938|221783.756|129.677 +637193.435|221788.374|129.586 +637187.229|221790.669|129.449 +637180.612|221792.989|131.805 +637174.196|221795.305|132.811 +637167.837|221797.643|132.994 +637161.653|221799.932|132.841 +637155.304|221802.264|133.015 +637148.976|221804.574|133.506 +637142.661|221806.906|133.484 +637136.370|221809.237|133.289 +637130.073|221811.566|133.164 +637123.711|221813.916|133.076 +637117.490|221816.224|132.881 +637111.172|221818.574|132.494 +637104.908|221820.902|132.149 +637092.271|221825.602|131.412 +637085.934|221827.922|131.741 +637079.525|221830.263|132.198 +637073.136|221832.607|132.524 +637053.936|221839.586|134.515 +637047.517|221841.946|134.685 +637041.144|221844.280|135.018 +637034.789|221846.615|135.219 +637045.298|221846.295|134.740 +637057.966|221841.693|133.710 +637076.958|221834.807|131.970 +637083.304|221832.500|131.525 +637095.767|221827.919|131.570 +637102.013|221825.602|132.049 +637114.455|221821.015|132.384 +637120.602|221818.744|132.683 +637126.887|221816.428|132.860 +637133.069|221814.154|132.930 +637139.296|221811.859|133.122 +637145.471|221809.582|133.265 +637151.653|221807.308|133.387 +637157.916|221805.031|132.908 +637164.137|221802.754|132.765 +637170.309|221800.474|133.009 +637176.567|221798.195|132.664 +637183.001|221795.912|131.101 +637189.402|221793.647|129.394 +637207.949|221786.835|129.443 +637232.818|221777.779|127.980 +637245.287|221773.253|126.977 +637257.659|221768.742|126.340 +637263.868|221766.483|125.907 +637270.077|221764.225|125.514 +637276.276|221761.963|125.212 +637282.378|221759.707|125.496 +637288.410|221757.476|125.846 +637319.031|221746.266|125.221 +637325.273|221744.025|124.167 +637331.473|221741.788|123.380 +637337.581|221739.542|123.459 +637343.613|221737.320|123.636 +637349.621|221735.113|123.636 +637355.793|221732.876|123.103 +637361.947|221730.651|122.371 +637374.267|221726.185|121.256 +637386.425|221721.763|120.451 +637392.521|221719.538|120.149 +637398.520|221717.340|120.046 +637404.564|221715.121|120.067 +637410.459|221712.951|120.207 +637422.605|221708.531|119.430 +637434.306|221704.176|120.564 +637452.274|221697.595|120.268 +637464.405|221693.221|118.695 +637470.486|221691.014|118.177 +637476.448|221688.838|117.933 +637499.875|221680.209|118.467 +637511.634|221675.899|118.360 +637517.550|221673.735|118.177 +637523.418|221671.593|117.943 +637529.377|221669.422|117.623 +637535.150|221667.304|117.562 +637546.613|221663.070|118.125 +637558.199|221658.809|118.260 +637563.972|221656.700|118.028 +637575.676|221652.439|117.281 +637581.485|221650.324|116.979 +637587.249|221648.211|116.876 +637592.958|221646.108|117.010 +637604.406|221641.905|116.961 +637610.100|221639.817|116.955 +637615.739|221637.748|116.934 +637621.286|221635.681|117.519 +637627.135|221633.560|116.967 +637632.792|221631.484|116.928 +637638.501|221629.399|116.702 +637644.134|221627.342|116.544 +637649.843|221625.254|116.364 +637655.424|221623.199|116.431 +637661.337|221621.087|115.285 +637694.902|221608.804|114.474 +637700.480|221606.768|114.224 +637706.076|221604.728|113.931 +637711.681|221602.686|113.624 +637717.061|221600.699|113.895 +637722.379|221598.733|114.163 +637738.985|221592.692|113.047 +637744.450|221590.695|112.874 +637749.936|221588.690|112.645 +637755.103|221586.760|113.294 +637760.556|221584.776|112.990 +637771.297|221580.844|112.767 +637776.567|221578.903|112.892 +637781.755|221576.976|113.313 +637751.546|221589.260|112.563 +637746.081|221591.268|112.734 +637740.604|221593.280|112.950 +637735.129|221595.289|113.179 +637718.536|221601.379|113.889 +637713.220|221603.366|113.401 +637707.603|221605.420|113.761 +637701.997|221607.475|114.105 +637696.395|221609.523|114.443 +637662.767|221621.892|115.330 +637657.018|221623.989|115.867 +637645.618|221628.168|116.419 +637639.922|221630.262|116.595 +637634.219|221632.356|116.800 +637628.544|221634.447|116.928 +637617.245|221638.638|116.541 +637611.456|221640.753|116.912 +637605.772|221642.865|116.638 +637600.063|221644.968|116.733 +637594.281|221647.096|116.891 +637582.772|221651.336|117.019 +637576.950|221653.481|117.129 +637571.131|221655.609|117.507 +637565.261|221657.758|117.851 +637553.602|221662.055|118.019 +637547.777|221664.207|117.970 +637536.204|221668.511|117.348 +637530.352|221670.663|117.464 +637524.415|221672.842|117.705 +637518.477|221675.022|117.961 +637500.802|221681.544|117.994 +637477.079|221690.304|117.949 +637471.138|221692.490|118.101 +637446.895|221701.356|119.710 +637434.757|221705.791|120.588 +637423.032|221710.186|119.272 +637416.884|221712.433|119.726 +637386.568|221723.598|120.201 +637374.300|221728.087|120.954 +637361.898|221732.601|122.188 +637355.616|221734.881|122.941 +637331.092|221743.913|123.362 +637318.510|221748.475|124.971 +637312.255|221750.758|125.456 +637299.798|221755.318|126.191 +637293.708|221757.568|126.160 +637287.676|221759.848|125.087 +637281.552|221762.115|124.907 +637275.304|221764.410|125.124 +637269.098|221766.681|125.486 +637262.832|221768.976|125.880 +637256.528|221771.268|126.514 +637250.277|221773.558|126.870 +637244.086|221775.844|126.873 +637237.783|221778.151|127.202 +637193.858|221794.244|129.501 +637187.570|221796.564|129.543 +637181.011|221798.859|131.948 +637174.604|221801.176|132.908 +637168.362|221803.489|132.735 +637162.025|221805.824|132.820 +637155.752|221808.134|132.914 +637149.431|221810.441|133.372 +637143.146|221812.773|133.146 +637136.928|221815.081|132.887 +637130.627|221817.409|132.811 +637124.318|221819.738|132.814 +637118.036|221822.067|132.613 +637111.705|221824.417|132.341 +637105.530|221826.721|131.787 +637099.205|221829.071|131.497 +637086.562|221833.740|131.403 +637073.855|221838.404|131.951 +637067.476|221840.742|132.213 +637061.020|221843.073|133.222 +637054.604|221845.408|133.926 +637048.209|221847.740|134.438 +637041.839|221850.072|134.789 +637037.090|221855.067|135.118 +637043.467|221852.745|134.710 +637056.192|221848.118|133.643 +637075.251|221841.202|131.796 +637081.506|221838.913|131.579 +637087.782|221836.627|131.192 +637094.128|221834.313|130.784 +637106.542|221829.696|131.805 +637131.408|221820.506|132.713 +637137.559|221818.229|133.000 +637143.795|221815.931|133.128 +637149.958|221813.654|133.353 +637156.197|221811.374|133.027 +637162.421|221809.094|132.853 +637168.630|221806.814|132.792 +637174.808|221804.534|132.991 +637181.087|221802.273|132.046 +637187.628|221799.984|129.754 +637193.806|221797.719|129.620 +637237.375|221781.821|127.190 +637243.556|221779.565|126.812 +637249.792|221777.288|126.526 +637262.118|221772.774|126.175 +637268.367|221770.510|125.502 +637274.509|221768.269|125.154 +637280.699|221766.008|124.886 +637286.810|221763.767|124.752 +637292.909|221761.506|125.087 +637305.004|221757.031|125.666 +637329.699|221748.061|123.502 +637341.900|221743.596|123.045 +637348.017|221741.343|123.103 +637366.333|221734.683|121.609 +637372.478|221732.458|120.963 +637390.738|221725.804|119.771 +637396.855|221723.576|119.375 +637402.827|221721.379|119.409 +637408.782|221719.181|119.552 +637420.880|221714.761|118.973 +637426.827|221712.564|119.211 +637462.409|221699.473|119.366 +637480.490|221692.895|117.964 +637486.287|221690.752|118.196 +637498.077|221686.421|118.116 +637515.740|221679.941|117.827 +637521.583|221677.801|117.684 +637527.453|221675.656|117.446 +637533.330|221673.507|117.202 +637539.200|221671.358|117.013 +637544.931|221669.230|117.418 +637550.615|221667.136|117.498 +637573.801|221658.639|116.946 +637585.506|221654.374|116.214 +637591.178|221652.274|116.473 +637602.669|221648.065|116.190 +637608.390|221645.968|116.050 +637619.543|221641.823|116.940 +637630.805|221637.684|116.964 +637636.563|221635.577|116.778 +637642.193|221633.517|116.592 +637659.350|221627.268|115.398 +637664.973|221625.205|115.321 +637692.872|221614.976|114.785 +637698.404|221612.949|114.660 +637704.070|221610.895|114.087 +637709.675|221608.852|113.745 +637715.211|221606.832|113.444 +637726.025|221602.839|113.773 +637731.517|221600.827|113.672 +637737.022|221598.821|113.310 +637742.560|221596.810|112.855 +637748.086|221594.798|112.462 +637753.539|221592.799|112.337 +637758.745|221590.860|112.843 +637764.219|221588.867|112.453 +637769.505|221586.922|112.493 +637774.802|221584.965|112.731 +637751.835|221595.307|112.194 +637746.425|221597.291|112.401 +637735.343|221601.330|113.319 +637729.814|221603.357|113.535 +637724.412|221605.347|113.563 +637719.014|221607.350|113.355 +637713.470|221609.389|113.447 +637707.862|221611.440|113.788 +637702.257|221613.488|114.133 +637663.053|221627.884|115.315 +637657.317|221629.984|115.586 +637651.410|221632.106|116.751 +637645.756|221634.191|116.757 +637640.163|221636.263|116.541 +637634.451|221638.354|116.800 +637628.745|221640.445|117.050 +637617.662|221644.593|115.846 +637606.241|221648.809|115.751 +637600.505|221650.915|115.961 +637594.708|221653.042|116.172 +637588.962|221655.158|116.190 +637583.174|221657.282|116.416 +637577.325|221659.428|116.632 +637571.390|221661.598|116.967 +637565.557|221663.738|117.168 +637553.910|221668.026|117.287 +637548.107|221670.172|117.159 +637542.340|221672.315|116.900 +637536.463|221674.482|116.839 +637530.511|221676.664|117.117 +637524.637|221678.816|117.363 +637518.693|221680.993|117.656 +637500.933|221687.534|117.796 +637494.895|221689.734|118.314 +637488.856|221691.947|118.577 +637483.141|221694.099|117.680 +637477.152|221696.306|117.760 +637471.132|221698.513|117.994 +637453.122|221705.121|118.604 +637446.785|221707.382|120.125 +637434.959|221711.787|119.247 +637416.951|221718.437|119.037 +637410.852|221720.690|118.951 +637404.847|221722.900|119.058 +637398.709|221725.152|119.217 +637361.706|221738.661|121.914 +637343.253|221745.431|122.539 +637337.102|221747.710|122.341 +637330.842|221749.978|123.118 +637324.481|221752.273|124.136 +637318.235|221754.538|124.883 +637312.020|221756.815|125.163 +637293.647|221763.624|124.508 +637287.417|221765.916|124.584 +637281.181|221768.211|124.727 +637274.987|221770.479|125.011 +637268.726|221772.771|125.343 +637249.978|221779.638|126.285 +637243.678|221781.946|126.602 +637193.419|221800.334|129.519 +637187.012|221802.675|129.976 +637180.490|221804.970|132.171 +637174.101|221807.281|133.033 +637167.880|221809.591|132.701 +637161.604|221811.901|132.802 +637155.249|221814.233|133.055 +637148.952|221816.541|133.366 +637142.679|221818.869|133.042 +637136.480|221821.177|132.658 +637117.673|221828.160|131.704 +637111.334|221830.485|132.012 +637105.079|221832.811|131.625 +637098.785|221835.161|131.083 +637092.497|221837.483|130.979 +637086.142|221839.827|130.982 +637079.808|221842.144|131.332 +637073.398|221844.482|131.863 +637060.627|221849.127|133.149 +637047.798|221853.787|134.576 +637041.467|221856.122|134.560 +637035.082|221858.451|135.072 +637034.280|221862.178|135.149 +637040.595|221859.877|134.719 +637059.648|221852.943|133.128 +637072.356|221848.331|131.854 +637078.741|221846.024|131.000 +637085.066|221843.713|130.711 +637091.351|221841.394|130.784 +637097.593|221839.102|130.729 +637103.832|221836.779|131.259 +637110.038|221834.484|131.552 +637122.498|221829.888|131.796 +637159.751|221816.132|132.960 +637165.975|221813.852|132.789 +637172.181|221811.572|132.796 +637178.335|221809.311|132.744 +637184.775|221807.025|131.116 +637191.200|221804.736|129.656 +637247.204|221784.308|126.370 +637253.337|221782.055|126.364 +637284.344|221770.744|124.572 +637290.465|221768.504|124.417 +637308.600|221761.786|125.334 +637333.430|221752.782|122.841 +637339.629|221750.542|122.094 +637345.585|221748.341|122.353 +637351.681|221746.107|122.207 +637363.888|221741.651|121.558 +637370.021|221739.426|120.963 +637388.327|221732.751|119.820 +637406.560|221726.109|118.647 +637412.537|221723.909|118.686 +637418.512|221721.708|118.775 +637424.504|221719.519|118.476 +637430.490|221717.316|118.540 +637436.519|221715.103|118.427 +637442.432|221712.924|118.570 +637454.341|221708.547|118.531 +637490.100|221695.462|117.299 +637519.446|221684.678|117.208 +637531.193|221680.368|116.976 +637537.067|221678.219|116.766 +637542.882|221676.094|116.553 +637548.677|221673.955|116.702 +637554.431|221671.836|116.781 +637560.207|221669.712|116.778 +637566.032|221667.581|116.586 +637571.845|221665.451|116.470 +637577.605|221663.342|116.324 +637583.418|221661.220|115.989 +637589.218|221659.102|115.733 +637595.009|221656.983|115.519 +637606.461|221652.780|115.431 +637617.936|221648.580|115.059 +637634.518|221642.396|116.809 +637640.178|221640.320|116.745 +637645.783|221638.250|116.909 +637663.102|221631.962|115.385 +637668.661|221629.923|115.309 +637707.923|221615.570|113.782 +637713.461|221613.552|113.453 +637718.990|221611.532|113.182 +637729.957|221607.499|113.233 +637740.869|221603.509|112.862 +637751.954|221599.480|111.962 +637757.319|221597.511|111.923 +637762.723|221595.520|111.993 +637768.045|221593.558|112.124 +637773.357|221591.598|112.301 +637778.557|221589.668|112.651 +637783.779|221587.736|112.932 +637757.617|221599.526|111.792 +637752.265|221601.504|111.810 +637746.782|221603.503|112.279 +637735.797|221607.527|112.898 +637730.289|221609.550|113.051 +637724.976|221611.526|112.785 +637719.466|221613.546|112.987 +637713.915|221615.576|113.343 +637708.310|221617.628|113.688 +637702.650|221619.688|114.242 +637697.197|221621.706|114.081 +637674.651|221629.963|115.318 +637669.149|221631.999|115.172 +637663.388|221634.096|115.772 +637651.949|221638.269|116.720 +637646.262|221640.360|116.864 +637640.614|221642.441|116.879 +637634.938|221644.529|117.016 +637618.564|221650.686|114.754 +637612.517|221652.856|115.885 +637607.083|221654.914|114.919 +637601.358|221657.017|115.084 +637595.573|221659.141|115.260 +637583.884|221663.421|115.888 +637578.099|221665.542|116.126 +637572.360|221667.658|116.199 +637566.477|221669.819|116.361 +637560.661|221671.958|116.519 +637554.791|221674.116|116.665 +637549.088|221676.235|116.397 +637543.154|221678.414|116.580 +637537.323|221680.563|116.605 +637531.398|221682.739|116.790 +637525.494|221684.912|116.906 +637513.710|221689.250|117.086 +637507.742|221691.441|117.257 +637495.873|221695.815|117.388 +637489.999|221697.991|117.193 +637484.001|221700.198|117.309 +637478.027|221702.387|117.610 +637447.928|221713.445|118.503 +637442.137|221715.618|117.784 +637436.004|221717.864|118.104 +637429.948|221720.086|118.385 +637423.989|221722.293|118.217 +637411.858|221726.761|118.363 +637405.737|221728.999|118.732 +637375.132|221740.221|120.055 +637368.899|221742.480|120.844 +637356.533|221747.000|121.664 +637350.346|221749.268|121.972 +637344.192|221751.530|122.128 +637338.020|221753.794|122.408 +637331.704|221756.086|123.161 +637325.499|221758.348|123.679 +637312.974|221762.914|124.740 +637300.700|221767.474|124.103 +637294.525|221769.744|124.206 +637288.285|221772.040|124.343 +637282.040|221774.313|124.926 +637250.810|221785.777|125.959 +637244.562|221788.060|126.334 +637231.903|221792.672|127.431 +637193.992|221806.510|130.235 +637187.787|221808.802|130.177 +637181.227|221811.115|132.219 +637174.842|221813.428|133.070 +637168.624|221815.736|132.728 +637162.366|221818.046|132.716 +637149.687|221822.704|133.049 +637143.493|221825.011|132.597 +637137.226|221827.340|132.247 +637124.669|221831.994|131.796 +637112.102|221836.645|131.454 +637086.895|221845.984|130.595 +637080.494|221848.322|131.025 +637067.710|221852.967|132.369 +637061.255|221855.323|132.850 +637054.906|221857.631|133.509 +637042.080|221862.312|134.441 +637035.752|221864.617|135.002 +637057.430|221860.484|133.204 +637076.464|221853.589|131.000 +637082.810|221851.276|130.500 +637089.107|221848.959|130.497 +637095.362|221846.667|130.318 +637107.844|221842.046|130.793 +637114.028|221839.745|131.275 +637120.264|221837.444|131.317 +637126.485|221835.146|131.494 +637138.936|221830.540|131.866 +637151.244|221825.956|132.896 +637157.471|221823.652|133.119 +637163.659|221821.390|132.728 +637169.919|221819.086|132.728 +637176.018|221816.824|133.036 +637188.835|221812.249|130.196 +637195.081|221809.981|129.549 +637201.289|221807.710|129.202 +637232.470|221796.320|127.358 +637244.946|221791.782|126.248 +637251.130|221789.523|125.886 +637269.854|221782.708|124.273 +637275.850|221780.473|124.798 +637282.068|221778.187|124.727 +637288.212|221775.941|124.374 +637294.394|221773.673|124.203 +637300.514|221771.427|124.066 +637306.628|221769.181|123.965 +637312.633|221766.940|124.508 +637318.845|221764.685|123.904 +637325.011|221762.448|123.225 +637331.162|221760.192|123.021 +637337.322|221757.955|122.441 +637343.479|221755.715|121.905 +637349.541|221753.480|121.923 +637355.671|221751.240|121.582 +637367.942|221746.772|120.597 +637373.962|221744.571|120.259 +637380.122|221742.322|119.878 +637386.200|221740.112|119.299 +637410.413|221731.242|118.351 +637416.451|221729.032|118.092 +637422.328|221726.856|118.345 +637428.381|221724.640|118.049 +637434.376|221722.433|118.055 +637446.346|221718.044|117.641 +637452.235|221715.862|117.918 +637458.209|221713.667|117.821 +637476.067|221707.114|117.330 +637488.037|221702.743|116.629 +637493.782|221700.604|117.107 +637511.451|221694.102|116.964 +637517.331|221691.938|116.922 +637523.174|221689.795|116.760 +637529.066|221687.643|116.425 +637534.924|221685.479|116.522 +637552.368|221679.075|116.120 +637563.993|221674.799|116.059 +637569.757|221672.687|115.864 +637581.303|221668.447|115.718 +637587.118|221666.323|115.379 +637592.839|221664.213|115.428 +637598.707|221662.080|114.916 +637604.483|221659.974|114.529 +637610.198|221657.877|114.416 +637621.582|221653.689|114.407 +637637.861|221647.562|117.065 +637643.518|221645.483|117.010 +637649.154|221643.405|117.046 +637654.781|221641.344|116.906 +637660.374|221639.284|116.891 +637672.011|221635.084|115.269 +637700.126|221624.815|113.752 +637705.561|221622.800|113.980 +637711.102|221620.779|113.627 +637716.719|221618.731|113.255 +637722.267|221616.707|112.904 +637744.310|221608.642|112.014 +637749.772|221606.640|111.831 +637755.164|221604.664|111.685 +637760.519|221602.692|111.673 +637765.850|221600.726|111.752 +637776.351|221596.825|112.508 +637781.557|221594.893|112.834 +637757.608|221605.469|111.505 +637752.238|221607.450|111.581 +637746.776|221609.462|111.755 +637741.277|221611.480|112.075 +637735.696|221613.522|112.465 +637724.711|221617.576|112.697 +637719.170|221619.609|113.017 +637674.349|221636.077|115.166 +637668.479|221638.199|116.150 +637657.091|221642.371|116.888 +637651.477|221644.444|116.982 +637645.817|221646.535|117.037 +637629.165|221652.744|116.007 +637623.908|221654.777|114.322 +637606.729|221661.132|114.236 +637600.947|221663.250|114.642 +637589.368|221667.511|115.056 +637583.491|221669.669|115.379 +637577.721|221671.794|115.562 +637571.927|221673.933|115.590 +637566.053|221676.101|115.715 +637560.247|221678.243|115.843 +637554.419|221680.398|115.800 +637542.681|221684.723|116.135 +637530.919|221689.061|116.382 +637525.033|221691.234|116.422 +637513.177|221695.608|116.653 +637507.334|221697.772|116.559 +637501.314|221699.976|116.976 +637489.588|221704.337|116.501 +637483.541|221706.556|116.827 +637471.718|221710.939|116.617 +637465.579|221713.183|117.141 +637453.628|221717.593|117.339 +637447.681|221719.806|117.028 +637441.667|221722.013|117.360 +637435.568|221724.244|117.824 +637429.484|221726.490|117.933 +637411.306|221733.190|118.348 +637405.259|221735.424|118.360 +637399.117|221737.670|118.872 +637393.039|221739.908|119.092 +637386.907|221742.163|119.278 +637380.750|221744.422|119.631 +637374.648|221746.674|119.717 +637368.445|221748.936|120.351 +637362.273|221751.191|120.866 +637349.922|221755.718|121.673 +637337.581|221760.271|121.841 +637331.302|221762.548|122.734 +637318.872|221767.102|123.566 +637306.522|221771.662|123.691 +637300.346|221773.939|123.810 +637294.171|221776.215|123.935 +637281.690|221780.790|124.688 +637275.520|221783.083|124.493 +637263.191|221787.661|124.078 +637250.554|221792.251|125.688 +637244.254|221794.561|126.029 +637206.437|221808.375|129.272 +637193.916|221812.996|129.470 +637187.494|221815.315|130.537 +637180.950|221817.632|132.509 +637174.695|221819.924|132.896 +637168.404|221822.262|132.686 +637155.831|221826.907|132.707 +637149.635|221829.220|132.299 +637143.374|221831.555|131.912 +637137.095|221833.887|131.683 +637130.905|221836.197|131.275 +637124.525|221838.547|131.393 +637118.310|221840.854|131.201 +637105.817|221845.518|130.342 +637099.489|221847.868|130.107 +637093.137|221850.218|130.098 +637086.837|221852.541|130.189 +637080.512|221854.863|130.506 +637074.066|221857.201|131.424 +637067.680|221859.539|131.823 +637054.921|221864.187|133.192 +637048.450|221866.540|133.932 +637042.083|221868.875|134.295 +637035.706|221871.207|134.822 +637035.676|221874.940|134.905 +637048.319|221870.341|133.929 +637054.753|221868.021|133.003 +637067.415|221863.413|132.079 +637073.770|221861.108|131.451 +637086.538|221856.472|130.345 +637092.738|221854.205|130.138 +637099.145|221851.870|129.726 +637105.362|221849.575|129.924 +637111.574|221847.274|130.156 +637117.780|221844.951|130.997 +637124.047|221842.653|130.814 +637130.240|221840.352|131.244 +637136.416|221838.075|131.354 +637154.984|221831.192|132.390 +637161.141|221828.909|132.698 +637167.335|221826.629|132.725 +637173.534|221824.346|132.741 +637179.700|221822.064|133.021 +637186.153|221819.781|131.281 +637192.590|221817.491|129.687 +637198.866|221815.224|128.870 +637205.115|221812.935|128.702 +637211.275|221810.667|128.736 +637236.290|221801.569|126.596 +637242.553|221799.292|126.078 +637248.802|221797.012|125.700 +637279.739|221785.689|124.526 +637285.875|221783.430|124.593 +637298.252|221778.916|123.795 +637304.446|221776.645|123.600 +637329.025|221767.666|122.390 +637335.264|221765.404|121.719 +637365.784|221754.242|120.387 +637371.975|221751.993|119.811 +637384.124|221747.552|119.287 +637390.183|221745.330|119.128 +637396.310|221743.099|118.665 +637402.293|221740.901|118.631 +637420.417|221734.260|118.098 +637426.452|221732.050|117.882 +637432.395|221729.864|117.842 +637438.430|221727.655|117.677 +637444.511|221725.436|117.318 +637450.479|221723.244|117.220 +637456.523|221721.043|116.784 +637468.474|221716.670|116.315 +637509.775|221701.469|116.461 +637515.661|221699.305|116.373 +637521.495|221697.165|116.257 +637527.368|221695.004|116.269 +637533.275|221692.852|115.876 +637539.069|221690.716|115.989 +637544.931|221688.567|115.836 +637550.819|221686.412|115.590 +637556.617|221684.284|115.465 +637568.217|221680.023|115.273 +637574.030|221677.890|115.154 +637585.539|221673.665|114.925 +637597.076|221669.432|114.663 +637602.892|221667.304|114.367 +637625.892|221658.885|113.425 +637631.272|221656.843|114.678 +637658.835|221646.578|116.973 +637664.425|221644.520|116.992 +637676.004|221640.338|115.355 +637681.634|221638.281|115.044 +637687.419|221636.196|114.191 +637709.639|221628.034|113.816 +637715.147|221626.019|113.593 +637726.314|221621.956|112.654 +637731.831|221619.935|112.444 +637737.360|221617.923|111.993 +637742.844|221615.918|111.709 +637748.324|221613.912|111.456 +637753.789|221611.910|111.274 +637759.209|221609.916|111.267 +637764.536|221607.950|111.359 +637769.712|221606.012|111.987 +637780.139|221602.135|112.773 +637785.363|221600.196|113.044 +637759.391|221611.449|111.146 +637754.030|221613.427|111.194 +637748.556|221615.439|111.408 +637743.066|221617.451|111.700 +637737.455|221619.499|112.200 +637732.014|221621.499|112.359 +637726.424|221623.553|112.599 +637715.171|221627.656|113.624 +637709.627|221629.686|113.983 +637687.407|221637.885|114.139 +637681.768|221639.963|114.236 +637664.272|221646.282|117.016 +637658.640|221648.367|116.925 +637631.180|221658.657|114.017 +637625.636|221660.736|113.416 +637602.593|221669.200|114.309 +637590.974|221673.476|114.623 +637585.128|221675.622|114.821 +637573.506|221679.908|115.010 +637567.702|221682.044|115.099 +637561.850|221684.205|115.154 +637556.035|221686.342|115.330 +637550.137|221688.521|115.334 +637544.214|221690.685|115.736 +637538.338|221692.859|115.702 +637532.403|221695.038|115.913 +637526.518|221697.211|115.955 +637520.601|221699.387|116.141 +637514.682|221701.576|116.089 +637508.729|221703.767|116.193 +637502.783|221705.959|116.297 +637496.848|221708.147|116.361 +637490.987|221710.324|116.126 +637485.062|221712.524|115.897 +637467.097|221719.141|116.211 +637461.104|221721.345|116.364 +637454.990|221723.582|116.833 +637436.897|221730.230|117.482 +637430.810|221732.470|117.595 +637418.725|221736.924|117.784 +637412.623|221739.164|118.058 +637406.563|221741.398|118.122 +637400.477|221743.635|118.357 +637394.277|221745.897|118.887 +637382.018|221750.405|119.268 +637375.910|221752.654|119.390 +637369.713|221754.913|120.000 +637363.501|221757.168|120.710 +637332.628|221768.519|121.698 +637326.392|221770.805|122.030 +637320.027|221773.100|123.121 +637307.649|221777.657|123.392 +637301.462|221779.934|123.557 +637288.999|221784.491|124.490 +637282.817|221786.783|124.322 +637264.182|221793.656|124.484 +637245.336|221800.551|125.809 +637232.754|221805.147|126.834 +637213.792|221812.081|128.166 +637201.198|221816.702|128.745 +637194.943|221818.979|129.443 +637188.424|221821.320|130.726 +637181.938|221823.615|132.716 +637175.601|221825.953|132.808 +637169.358|221828.266|132.646 +637156.813|221832.911|132.415 +637150.555|221835.246|131.973 +637138.046|221839.888|131.540 +637131.798|221842.220|131.052 +637125.543|221844.552|130.641 +637112.906|221849.233|130.357 +637106.685|221851.565|129.677 +637093.993|221856.238|129.997 +637087.608|221858.582|130.260 +637081.314|221860.904|130.284 +637068.445|221865.577|131.878 +637062.059|221867.915|132.271 +637055.656|221870.249|132.881 +637042.823|221874.907|134.475 +637036.401|221877.263|134.792 +637033.366|221881.807|134.902 +637039.739|221879.485|134.405 +637052.367|221874.882|133.542 +637065.071|221870.280|132.076 +637071.423|221867.976|131.393 +637084.103|221863.361|130.406 +637090.388|221861.072|129.897 +637096.694|221858.755|129.766 +637102.936|221856.463|129.702 +637109.203|221854.144|129.967 +637121.621|221849.553|130.506 +637127.845|221847.255|130.665 +637133.986|221844.981|131.009 +637146.404|221840.385|131.619 +637158.721|221835.807|132.610 +637171.102|221831.250|132.686 +637177.222|221828.995|132.823 +637183.449|221826.715|132.634 +637189.935|221824.432|130.638 +637202.588|221819.881|128.620 +637215.027|221815.349|127.824 +637221.266|221813.078|127.334 +637227.456|221810.810|127.215 +637239.908|221806.287|126.151 +637246.165|221804.010|125.651 +637258.653|221799.493|124.164 +637264.746|221797.241|124.407 +637283.165|221790.471|124.401 +637301.715|221783.701|123.411 +637307.854|221781.458|123.158 +637320.195|221776.959|122.362 +637326.355|221774.728|121.713 +637344.677|221768.022|121.164 +637362.959|221761.323|120.686 +637369.091|221759.104|120.046 +637375.172|221756.885|119.698 +637381.274|221754.663|119.262 +637387.349|221752.444|119.006 +637393.436|221750.222|118.705 +637399.437|221748.024|118.531 +637411.468|221743.620|118.129 +637423.602|221739.185|117.620 +637429.527|221737.009|117.641 +637435.526|221734.802|117.613 +637459.571|221726.015|116.586 +637465.536|221723.842|116.245 +637471.556|221721.644|115.952 +637477.521|221719.465|115.647 +637483.455|221717.276|115.794 +637495.175|221712.960|115.952 +637506.946|221708.632|115.949 +637512.792|221706.480|116.019 +637524.576|221702.161|115.797 +637530.376|221700.027|115.830 +637536.232|221697.885|115.647 +637542.090|221695.739|115.483 +637547.976|221693.590|115.218 +637553.791|221691.463|114.989 +637559.576|221689.341|114.919 +637565.471|221687.186|114.687 +637571.253|221685.065|114.681 +637577.002|221682.959|114.565 +637582.747|221680.852|114.477 +637588.557|221678.722|114.422 +637594.324|221676.610|114.282 +637600.118|221674.494|114.069 +637605.830|221672.403|113.931 +637617.412|221668.179|113.349 +637634.533|221661.909|112.996 +637639.772|221659.907|114.535 +637645.070|221657.895|115.858 +637684.816|221643.395|113.974 +637718.060|221631.210|113.502 +637729.259|221627.153|112.456 +637734.797|221625.132|112.173 +637740.366|221623.105|111.807 +637745.892|221621.099|111.377 +637751.390|221619.097|111.063 +637756.871|221617.094|110.838 +637762.077|221615.159|111.335 +637767.246|221613.217|112.179 +637777.686|221609.349|112.910 +637761.110|221617.167|111.289 +637755.932|221619.109|110.713 +637750.442|221621.121|110.996 +637744.938|221623.135|111.347 +637739.345|221625.181|111.807 +637733.843|221627.192|112.188 +637722.718|221631.261|112.987 +637717.055|221633.325|113.532 +637689.315|221643.545|114.047 +637683.575|221645.627|114.767 +637638.888|221662.186|113.691 +637633.494|221664.226|112.767 +637622.018|221668.447|113.108 +637616.251|221670.575|113.169 +637604.720|221674.811|113.590 +637598.801|221676.972|114.059 +637593.034|221679.097|114.206 +637587.301|221681.212|114.230 +637581.491|221683.355|114.319 +637575.575|221685.525|114.605 +637569.818|221687.656|114.520 +637563.996|221689.795|114.721 +637558.071|221691.978|114.828 +637552.212|221694.133|114.953 +637546.360|221696.291|115.084 +637534.494|221700.649|115.529 +637528.590|221702.822|115.657 +637522.705|221704.993|115.718 +637516.752|221707.187|115.830 +637510.805|221709.376|115.928 +637504.974|221711.537|115.821 +637498.985|221713.747|115.858 +637487.147|221718.126|115.660 +637481.185|221720.330|115.632 +637475.189|221722.537|115.782 +637463.052|221726.981|116.537 +637457.054|221729.185|116.781 +637450.973|221731.413|117.126 +637444.999|221733.626|116.986 +637438.961|221735.845|117.178 +637432.868|221738.088|117.351 +637414.711|221744.775|117.702 +637402.470|221749.268|118.217 +637390.238|221753.758|118.766 +637384.103|221756.010|119.031 +637371.725|221760.539|119.845 +637365.586|221762.789|120.201 +637347.109|221769.568|121.061 +637328.547|221776.395|121.570 +637322.405|221778.654|121.768 +637309.871|221783.223|122.957 +637303.550|221785.527|123.551 +637291.077|221790.102|124.194 +637284.954|221792.370|124.057 +637260.165|221801.511|124.395 +637247.582|221806.110|125.322 +637222.412|221815.312|127.151 +637216.066|221817.638|127.532 +637209.775|221819.939|127.995 +637203.420|221822.262|128.495 +637197.132|221824.557|129.001 +637190.661|221826.876|130.406 +637177.792|221831.506|132.826 +637171.562|221833.817|132.613 +637152.866|221840.775|131.625 +637134.099|221847.746|130.817 +637121.541|221852.406|130.406 +637115.198|221854.756|130.241 +637102.683|221859.414|129.549 +637096.322|221861.761|129.577 +637089.973|221864.080|130.089 +637083.603|221866.424|130.272 +637077.248|221868.741|130.897 +637070.865|221871.082|131.238 +637064.403|221873.410|132.384 +637057.999|221875.742|133.009 +637051.635|221878.077|133.311 +637045.237|221880.408|133.954 +637038.861|221882.737|134.423 +637037.041|221887.160|134.676 +637043.415|221884.837|134.204 +637056.067|221880.241|133.131 +637068.799|221875.614|132.052 +637075.163|221873.313|131.302 +637081.503|221871.033|130.253 +637087.833|221868.725|129.888 +637100.403|221864.120|129.501 +637106.694|221861.803|129.543 +637112.992|221859.487|129.580 +637119.176|221857.189|130.065 +637125.400|221854.891|130.211 +637131.630|221852.592|130.339 +637137.796|221850.291|131.006 +637150.208|221845.692|131.692 +637156.313|221843.436|131.902 +637162.497|221841.132|132.448 +637174.863|221836.572|132.661 +637181.002|221834.292|133.122 +637187.387|221832.009|131.814 +637193.785|221829.748|130.025 +637206.398|221825.194|128.339 +637212.695|221822.902|127.827 +637218.928|221820.634|127.349 +637225.164|221818.363|126.904 +637243.836|221811.563|125.563 +637305.604|221788.962|123.222 +637317.997|221784.460|122.097 +637324.173|221782.211|121.710 +637330.369|221779.955|121.225 +637348.727|221773.237|120.500 +637354.836|221771.003|120.262 +637360.865|221768.775|120.482 +637366.955|221766.559|120.046 +637385.240|221759.878|119.140 +637397.331|221755.458|118.647 +637409.447|221751.030|118.107 +637415.546|221748.799|117.824 +637433.553|221742.203|117.303 +637439.585|221739.993|117.135 +637445.563|221737.804|116.937 +637451.512|221735.619|116.912 +637457.465|221733.431|116.879 +637469.553|221729.026|116.022 +637481.599|221724.640|115.163 +637487.454|221722.476|115.398 +637493.377|221720.300|115.337 +637510.982|221713.804|115.721 +637516.843|221711.649|115.724 +637528.572|221707.349|115.489 +637534.476|221705.182|115.355 +637540.340|221703.036|115.157 +637546.183|221700.893|115.065 +637551.978|221698.769|114.922 +637557.842|221696.620|114.779 +637563.685|221694.471|114.730 +637575.255|221690.234|114.379 +637581.077|221688.101|114.221 +637586.829|221685.991|114.096 +637592.605|221683.876|113.904 +637598.365|221681.764|113.788 +637604.166|221679.642|113.532 +637621.103|221673.379|114.181 +637632.610|221669.182|113.450 +637638.523|221667.048|112.627 +637644.034|221664.997|113.115 +637649.300|221662.988|114.547 +637688.397|221648.595|114.767 +637694.185|221646.498|114.136 +637738.638|221630.259|111.935 +637744.206|221628.229|111.548 +637749.732|221626.220|111.115 +637755.146|221624.230|111.082 +637781.456|221614.476|112.590 +637786.738|221612.531|112.639 +637797.549|221608.587|111.965 +637756.804|221625.598|111.411 +637751.540|221627.564|110.923 +637746.044|221629.576|111.249 +637740.436|221631.621|111.758 +637734.864|221633.657|112.161 +637729.250|221635.699|112.740 +637723.620|221637.757|113.157 +637695.816|221647.971|114.066 +637690.095|221650.049|114.703 +637650.965|221664.521|114.087 +637645.643|221666.548|112.865 +637640.013|221668.639|112.575 +637622.542|221675.012|114.093 +637605.589|221681.297|113.480 +637599.837|221683.419|113.547 +637593.958|221685.571|113.874 +637588.228|221687.686|113.895 +637582.397|221689.826|114.069 +637576.569|221691.969|114.258 +637570.647|221694.136|114.587 +637564.801|221696.294|114.632 +637559.006|221698.424|114.736 +637553.105|221700.600|114.779 +637547.262|221702.752|114.864 +637541.334|221704.932|115.050 +637535.406|221707.108|115.273 +637523.589|221711.451|115.599 +637517.691|221713.634|115.458 +637505.852|221718.005|115.431 +637494.090|221722.375|114.852 +637488.119|221724.564|115.145 +637482.163|221726.765|115.093 +637463.942|221733.421|116.422 +637457.877|221735.646|116.675 +637451.899|221737.844|116.836 +637427.713|221746.750|117.193 +637415.543|221751.207|117.894 +637409.462|221753.441|118.095 +637397.203|221757.949|118.433 +637391.098|221760.180|118.839 +637384.962|221762.429|119.086 +637366.534|221769.196|119.799 +637360.353|221771.464|120.067 +637348.072|221775.987|120.241 +637335.630|221780.534|121.045 +637329.461|221782.814|121.018 +637323.252|221785.094|121.241 +637316.967|221787.377|121.920 +637310.691|221789.660|122.597 +637298.140|221794.238|123.667 +637260.786|221807.982|124.554 +637235.613|221817.187|126.230 +637229.343|221819.491|126.465 +637223.046|221821.792|126.919 +637216.752|221824.093|127.376 +637210.452|221826.392|127.907 +637204.097|221828.711|128.419 +637191.228|221833.344|130.680 +637184.739|221835.636|132.735 +637178.420|221837.968|132.710 +637172.181|221840.278|132.570 +637159.693|221844.920|131.939 +637153.402|221847.252|131.768 +637147.129|221849.584|131.457 +637134.596|221854.241|130.823 +637128.293|221856.570|130.820 +637122.059|221858.899|130.229 +637115.811|221861.227|129.799 +637109.557|221863.556|129.443 +637103.174|221865.927|129.129 +637096.837|221868.247|129.501 +637090.442|221870.588|129.857 +637084.118|221872.907|130.196 +637071.280|221877.574|131.555 +637064.851|221879.906|132.390 +637058.457|221882.237|132.966 +637052.056|221884.566|133.628 +637039.260|221889.248|134.393 +637035.161|221894.554|134.566 +637041.440|221892.250|134.411 +637047.816|221889.924|133.932 +637054.144|221887.623|133.384 +637060.487|221885.322|132.728 +637066.860|221882.993|132.378 +637073.230|221880.692|131.534 +637079.607|221878.385|130.686 +637092.223|221873.785|129.778 +637104.866|221869.155|129.315 +637111.126|221866.860|129.123 +637142.085|221855.360|131.275 +637148.358|221853.037|131.564 +637160.748|221848.456|131.994 +637173.068|221843.896|132.539 +637179.252|221841.613|132.664 +637185.409|221839.330|132.972 +637191.926|221837.047|130.735 +637210.857|221830.229|127.867 +637217.157|221827.937|127.346 +637229.636|221823.392|126.389 +637235.875|221821.119|125.974 +637248.299|221816.589|125.157 +637254.602|221814.309|124.401 +637260.704|221812.054|124.569 +637266.858|221809.798|124.420 +637273.006|221807.540|124.337 +637303.940|221796.241|122.719 +637322.521|221789.468|121.445 +637328.632|221787.237|121.073 +637334.795|221784.985|120.792 +637340.979|221782.729|120.405 +637347.100|221780.495|120.052 +637353.272|221778.255|119.448 +637359.362|221776.020|119.332 +637365.376|221773.792|119.637 +637371.402|221771.579|119.552 +637383.569|221767.120|119.174 +637389.641|221764.901|118.927 +637395.758|221762.673|118.452 +637401.732|221760.475|118.436 +637407.792|221758.253|118.302 +637413.802|221756.050|118.135 +637419.850|221753.843|117.802 +637426.022|221751.603|117.193 +637438.089|221747.198|116.473 +637443.959|221745.022|116.790 +637455.892|221740.630|116.851 +637473.903|221734.055|115.833 +637485.940|221729.666|115.032 +637491.865|221727.490|114.949 +637497.839|221725.308|114.666 +637503.527|221723.177|115.404 +637509.504|221720.992|115.141 +637515.435|221718.824|114.834 +637538.813|221710.214|115.010 +637544.617|221708.089|114.800 +637550.499|221705.925|114.815 +637562.140|221701.652|114.617 +637573.811|221697.388|114.108 +637579.632|221695.254|113.941 +637585.402|221693.142|113.742 +637591.145|221691.036|113.675 +637596.975|221688.899|113.532 +637602.760|221686.781|113.340 +637608.372|221684.705|113.590 +637625.398|221678.426|113.950 +637648.526|221670.011|112.176 +637653.982|221667.969|112.910 +637664.787|221663.899|114.806 +637698.483|221651.561|113.828 +637726.208|221641.408|113.026 +637731.770|221639.384|112.627 +637742.981|221635.315|111.584 +637748.480|221633.297|111.459 +637769.956|221625.388|111.798 +637775.342|221623.413|111.691 +637786.031|221619.478|111.801 +637791.469|221617.500|111.347 +637797.083|221615.488|110.332 +637802.621|221613.488|109.588 +637747.102|221636.160|111.581 +637697.136|221654.496|113.834 +637658.341|221668.883|112.639 +637652.900|221670.931|111.865 +637630.055|221679.331|112.545 +637624.310|221681.441|112.779 +637601.285|221689.917|113.282 +637595.506|221692.039|113.493 +637589.672|221694.184|113.675 +637583.884|221696.321|113.697 +637578.136|221698.436|113.834 +637572.323|221700.573|113.992 +637566.437|221702.737|114.200 +637560.561|221704.895|114.401 +637554.736|221707.047|114.404 +637542.980|221711.375|114.636 +637537.076|221713.548|114.767 +637525.323|221717.886|114.834 +637513.585|221722.229|114.626 +637501.798|221726.591|114.425 +637489.868|221730.983|114.657 +637483.855|221733.193|114.888 +637477.783|221735.406|115.401 +637471.742|221737.615|115.800 +637447.715|221746.473|116.111 +637441.750|221748.683|115.952 +637435.611|221750.929|116.352 +637429.466|221753.157|117.129 +637423.318|221755.401|117.638 +637417.192|221757.641|118.071 +637411.221|221759.848|118.049 +637405.091|221762.100|118.229 +637398.959|221764.353|118.430 +637392.896|221766.584|118.641 +637386.742|221768.836|119.000 +637380.604|221771.086|119.317 +637368.381|221775.594|119.396 +637362.300|221777.852|119.144 +637356.165|221780.114|119.198 +637343.713|221784.668|120.012 +637337.532|221786.932|120.399 +637325.151|221791.471|120.988 +637318.863|221793.775|121.359 +637306.342|221798.332|122.566 +637300.121|221800.606|122.978 +637275.097|221809.774|124.270 +637268.906|221812.057|124.243 +637262.655|221814.364|124.231 +637256.470|221816.647|124.225 +637250.164|221818.955|124.612 +637243.900|221821.237|125.169 +637237.588|221823.542|125.660 +637231.224|221825.864|126.117 +637224.841|221828.166|127.160 +637212.204|221832.783|128.041 +637199.631|221837.395|128.605 +637193.166|221839.687|130.446 +637186.522|221842.019|132.753 +637180.276|221844.329|132.646 +637174.040|221846.637|132.485 +637161.565|221851.276|131.787 +637155.301|221853.604|131.418 +637142.725|221858.262|131.101 +637117.658|221867.595|129.437 +637111.334|221869.942|129.159 +637105.015|221872.264|129.345 +637092.338|221876.925|129.638 +637085.938|221879.262|130.116 +637079.503|221881.594|130.955 +637066.628|221886.279|132.219 +637060.246|221888.611|132.686 +637053.833|221890.936|133.481 +637047.414|221893.289|133.780 +637041.107|221895.594|134.185 +637034.691|221897.947|134.524 +637033.978|221902.156|134.414 +637040.254|221899.849|134.326 +637046.624|221897.526|133.923 +637052.940|221895.222|133.481 +637065.662|221890.595|132.424 +637071.962|221888.315|131.668 +637084.697|221883.703|130.156 +637091.040|221881.393|129.690 +637097.374|221879.080|129.321 +637103.622|221876.787|129.214 +637109.944|221874.468|129.034 +637116.137|221872.167|129.421 +637134.700|221865.232|131.247 +637140.945|221862.931|131.256 +637153.408|221858.326|131.500 +637165.768|221853.738|132.155 +637171.879|221851.477|132.329 +637178.094|221849.172|132.652 +637184.178|221846.908|133.036 +637190.621|221844.600|131.726 +637203.432|221840.047|128.483 +637209.623|221837.779|128.236 +637222.116|221833.213|127.486 +637228.426|221830.936|126.523 +637234.717|221828.659|125.709 +637247.195|221824.103|124.892 +637253.395|221821.844|124.389 +637259.634|221819.561|124.045 +637265.782|221817.303|123.941 +637271.921|221815.044|123.886 +637321.399|221796.954|121.064 +637327.535|221794.702|120.881 +637333.588|221792.473|120.835 +637346.003|221787.953|119.805 +637352.111|221785.734|119.186 +637358.240|221783.476|119.171 +637364.315|221781.239|119.116 +637370.271|221779.032|119.396 +637376.336|221776.795|119.448 +637388.501|221772.344|118.753 +637400.641|221767.894|118.293 +637412.736|221763.463|117.839 +637418.813|221761.231|117.644 +637424.784|221759.028|117.702 +637436.922|221754.614|116.595 +637442.981|221752.395|116.275 +637448.949|221750.204|116.123 +637454.938|221748.009|115.888 +637460.851|221745.824|116.041 +637472.818|221741.428|115.733 +637478.786|221739.249|115.388 +637484.870|221737.033|114.821 +637490.822|221734.854|114.596 +637496.781|221732.669|114.361 +637520.342|221723.991|114.306 +637543.702|221715.380|114.303 +637549.527|221713.237|114.273 +637555.367|221711.101|113.931 +637561.177|221708.958|114.008 +637566.980|221706.812|114.130 +637572.820|221704.676|113.843 +637578.507|221702.576|113.944 +637595.893|221696.193|113.569 +637601.660|221694.078|113.428 +637607.400|221691.965|113.413 +637636.033|221681.462|112.587 +637647.484|221677.268|112.148 +637658.941|221673.083|111.523 +637664.422|221671.044|111.932 +637669.823|221669.005|112.892 +637697.407|221658.803|113.779 +637774.525|221630.563|110.746 +637780.029|221628.561|110.243 +637785.641|221626.537|109.399 +637790.594|221624.653|110.563 +637796.156|221622.651|109.701 +637801.628|221620.663|109.170 +637765.042|221636.028|110.451 +637732.033|221648.166|111.743 +637726.647|221650.180|111.301 +637720.889|221652.262|112.200 +637704.064|221658.434|113.194 +637687.193|221664.652|113.563 +637676.294|221668.724|112.685 +637670.826|221670.785|111.969 +637665.342|221672.845|111.316 +637659.606|221674.948|111.645 +637653.936|221677.039|111.725 +637648.173|221679.149|112.194 +637630.979|221685.485|112.584 +637625.176|221687.619|112.795 +637613.700|221691.853|112.990 +637602.081|221696.129|113.313 +637596.274|221698.275|113.364 +637590.544|221700.390|113.389 +637584.719|221702.551|113.285 +637578.885|221704.694|113.508 +637573.009|221706.861|113.663 +637567.212|221708.998|113.773 +637561.298|221711.180|113.849 +637555.474|221713.332|113.837 +637549.564|221715.511|113.941 +637543.614|221717.697|114.239 +637531.876|221722.037|114.197 +637525.957|221724.229|114.139 +637502.231|221732.989|114.325 +637496.214|221735.204|114.529 +637490.341|221737.384|114.376 +637484.193|221739.627|114.922 +637478.158|221741.840|115.282 +637472.111|221744.053|115.705 +637466.103|221746.275|115.669 +637460.141|221748.475|115.748 +637454.030|221750.725|115.946 +637435.827|221757.415|116.678 +637417.515|221764.139|117.543 +637386.901|221775.399|118.650 +637380.753|221777.651|119.022 +637368.549|221782.165|118.997 +637362.407|221784.433|119.046 +637356.274|221786.697|119.086 +637350.096|221788.983|119.055 +637331.473|221795.802|120.265 +637325.166|221798.094|121.061 +637318.976|221800.374|121.237 +637312.731|221802.654|121.753 +637306.415|221804.958|122.338 +637275.182|221816.412|124.045 +637268.998|221818.720|123.612 +637262.792|221821.009|123.712 +637256.477|221823.319|124.164 +637250.204|221825.608|124.764 +637243.928|221827.913|124.996 +637237.570|221830.220|125.803 +637218.480|221837.154|128.199 +637205.953|221841.772|128.412 +637193.081|221846.405|130.796 +637186.516|221848.718|133.021 +637180.325|221851.032|132.530 +637174.034|221853.367|132.351 +637167.819|221855.677|132.052 +637161.543|221858.012|131.777 +637155.274|221860.343|131.482 +637149.053|221862.654|131.281 +637142.765|221864.982|131.137 +637136.455|221867.311|131.214 +637111.468|221876.659|128.995 +637105.164|221878.985|129.062 +637098.834|221881.332|128.879 +637092.418|221883.673|129.482 +637085.983|221886.011|130.284 +637079.579|221888.348|130.845 +637066.756|221893.015|132.244 +637060.368|221895.347|132.805 +637053.958|221897.675|133.582 +637041.187|221902.363|134.182 +637034.847|221904.695|134.396 +637044.655|221904.890|134.003 +637057.341|221900.269|133.161 +637063.730|221897.950|132.628 +637070.045|221895.645|132.268 +637076.397|221893.347|131.601 +637082.804|221891.052|130.458 +637095.548|221886.443|128.943 +637108.078|221881.838|128.952 +637114.333|221879.549|128.803 +637126.625|221874.919|130.948 +637132.907|221872.627|130.638 +637145.343|221868.030|131.086 +637151.552|221865.732|131.418 +637157.703|221863.455|131.741 +637163.957|221861.157|131.741 +637170.114|221858.877|132.027 +637176.274|221856.597|132.317 +637182.434|221854.318|132.628 +637188.591|221852.038|132.960 +637195.114|221849.758|130.653 +637201.606|221847.475|128.620 +637220.208|221840.659|128.199 +637245.336|221831.573|125.236 +637257.885|221827.020|124.069 +637264.087|221824.764|123.594 +637270.333|221822.484|123.274 +637307.354|221808.942|121.987 +637319.726|221804.428|121.329 +637344.305|221795.451|120.186 +637350.440|221793.220|119.747 +637356.698|221790.956|119.025 +637362.779|221788.724|118.939 +637368.853|221786.493|118.924 +637374.788|221784.290|119.342 +637380.914|221782.052|119.076 +637387.071|221779.827|118.339 +637405.192|221773.177|118.156 +637453.539|221755.504|116.242 +637471.599|221748.902|115.516 +637477.646|221746.702|115.099 +637483.702|221744.498|114.651 +637489.658|221742.322|114.419 +637501.533|221737.969|114.151 +637513.503|221733.601|113.563 +637519.492|221731.428|112.999 +637531.126|221727.127|113.456 +637537.073|221724.945|113.413 +637542.831|221722.817|113.669 +637554.565|221718.523|113.276 +637589.346|221705.736|113.255 +637600.938|221701.487|112.968 +637612.502|221697.251|112.615 +637629.839|221690.905|111.999 +637646.826|221684.659|111.932 +637652.626|221682.544|111.572 +637664.083|221678.362|110.978 +637675.279|221674.232|111.200 +637680.969|221672.156|110.865 +637686.447|221670.117|111.341 +637691.945|221668.084|111.514 +637703.064|221663.985|111.688 +637719.792|221657.864|111.078 +637725.711|221655.773|109.366 +637731.283|221653.734|109.164 +637736.690|221651.726|109.561 +637747.370|221647.757|110.387 +637752.988|221645.718|109.856 +637758.614|221643.685|109.091 +637764.110|221641.679|108.792 +637769.276|221639.747|109.414 +637779.773|221635.839|110.362 +637790.749|221631.856|109.295 +637796.190|221629.878|108.832 +637801.673|221627.893|108.262 +637807.071|221625.921|107.985 +637772.559|221640.055|109.588 +637767.359|221642.012|108.860 +637762.129|221643.978|108.253 +637756.590|221645.986|108.945 +637750.988|221648.031|109.417 +637745.489|221650.055|109.561 +637740.122|221652.055|109.247 +637734.678|221654.079|108.991 +637729.219|221656.093|109.042 +637723.562|221658.166|109.344 +637706.478|221664.378|111.246 +637695.514|221668.453|110.755 +637684.398|221672.577|110.393 +637678.671|221674.668|110.862 +637667.378|221678.844|110.780 +637661.745|221680.916|110.957 +637656.027|221683.026|110.993 +637650.230|221685.138|111.584 +637633.109|221691.441|111.962 +637627.306|221693.575|112.170 +637621.570|221695.696|112.121 +637615.745|221697.830|112.453 +637609.905|221699.966|112.859 +637604.178|221702.082|112.846 +637598.396|221704.218|112.798 +637569.269|221714.957|113.230 +637563.420|221717.112|113.307 +637557.644|221719.254|113.108 +637540.002|221725.771|113.093 +637534.031|221727.969|113.255 +637528.179|221730.133|113.179 +637516.301|221734.516|113.316 +637504.307|221738.908|114.041 +637486.287|221745.534|114.581 +637480.206|221747.765|114.855 +637474.144|221749.978|115.361 +637468.112|221752.200|115.443 +637456.039|221756.629|116.041 +637437.818|221763.316|116.891 +637419.542|221770.046|117.278 +637407.283|221774.524|118.257 +637388.973|221781.272|118.522 +637382.737|221783.549|119.034 +637376.608|221785.795|119.332 +637364.431|221790.315|118.872 +637358.301|221792.580|118.906 +637345.734|221797.143|120.396 +637333.378|221801.703|120.457 +637308.509|221810.822|121.737 +637289.749|221817.711|122.505 +637264.785|221826.876|123.584 +637258.455|221829.187|124.109 +637207.891|221847.636|128.477 +637201.634|221849.931|128.793 +637195.001|221852.269|130.967 +637188.460|221854.583|132.988 +637182.261|221856.896|132.536 +637176.043|221859.207|132.241 +637169.758|221861.541|131.988 +637163.494|221863.873|131.610 +637144.703|221870.847|130.973 +637138.436|221873.176|130.662 +637132.121|221875.504|130.753 +637113.385|221882.521|128.836 +637100.763|221887.196|128.583 +637081.539|221894.185|130.741 +637075.081|221896.514|131.826 +637068.698|221898.849|132.247 +637055.884|221903.540|133.082 +637043.128|221908.200|134.067 +637043.610|221911.830|133.835 +637056.293|221907.210|132.936 +637062.584|221904.905|132.713 +637068.963|221902.580|132.296 +637075.288|221900.278|131.820 +637081.719|221897.956|130.967 +637094.496|221893.350|129.065 +637100.766|221891.064|128.702 +637119.594|221884.136|128.669 +637138.186|221877.190|130.781 +637144.362|221874.913|130.848 +637150.580|221872.615|131.070 +637162.982|221868.015|131.814 +637169.230|221865.714|131.857 +637175.378|221863.434|132.195 +637181.529|221861.154|132.539 +637187.659|221858.874|133.042 +637194.014|221856.594|131.890 +637206.901|221852.028|128.507 +637250.560|221836.142|125.075 +637256.903|221833.841|124.435 +637263.139|221831.585|123.709 +637269.397|221829.306|123.264 +637275.606|221827.047|122.777 +637287.938|221822.527|122.414 +637306.500|221815.739|121.664 +637331.131|221806.732|120.625 +637337.294|221804.480|120.290 +637343.305|221802.258|120.518 +637355.646|221797.768|119.567 +637361.852|221795.525|118.766 +637367.918|221793.293|118.753 +637386.020|221786.637|118.714 +637392.128|221784.399|118.555 +637422.355|221773.332|117.507 +637428.381|221771.128|117.284 +637434.358|221768.928|117.315 +637458.498|221760.104|116.202 +637488.463|221749.149|114.907 +637494.623|221746.945|113.718 +637500.552|221744.769|113.614 +637512.433|221740.410|113.361 +637518.251|221738.262|113.532 +637530.023|221733.943|113.325 +637536.034|221731.763|112.706 +637541.788|221729.636|112.947 +637553.541|221725.326|112.697 +637559.311|221723.192|112.926 +637565.115|221721.065|112.749 +637582.488|221714.676|112.767 +637588.417|221712.527|112.157 +637617.083|221701.993|112.106 +637622.941|221699.863|111.648 +637634.280|221695.687|111.780 +637662.992|221685.211|110.252 +637668.753|221683.126|109.594 +637691.329|221674.848|109.186 +637696.929|221672.800|108.988 +637702.436|221670.767|109.140 +637708.017|221668.721|109.049 +637713.537|221666.685|109.198 +637719.109|221664.649|108.933 +637730.121|221660.592|109.167 +637741.000|221656.590|109.228 +637746.559|221654.563|108.866 +637752.134|221652.536|108.472 +637757.617|221650.534|108.174 +637763.022|221648.550|108.183 +637768.438|221646.559|108.149 +637773.559|221644.639|108.936 +637778.704|221642.701|109.853 +637783.964|221640.750|110.176 +637795.013|221636.757|108.844 +637816.831|221628.835|106.936 +637774.034|221646.026|108.893 +637768.865|221647.977|108.064 +637763.436|221649.979|108.137 +637758.029|221651.976|108.149 +637752.491|221654.009|108.415 +637746.916|221656.036|109.042 +637730.417|221662.125|109.116 +637724.998|221664.143|108.802 +637719.530|221666.170|108.686 +637713.933|221668.231|108.805 +637708.459|221670.255|108.741 +637702.747|221672.348|109.079 +637697.249|221674.388|108.893 +637691.598|221676.454|109.286 +637680.131|221680.654|110.030 +637674.721|221682.687|109.332 +637669.027|221684.784|109.475 +637663.257|221686.891|109.935 +637657.649|221688.957|110.033 +637651.730|221691.103|110.859 +637634.539|221697.431|111.255 +637623.103|221701.655|111.274 +637605.699|221708.044|112.045 +637599.901|221710.183|112.060 +637594.189|221712.308|111.758 +637588.346|221714.454|111.996 +637582.592|221716.584|111.895 +637564.919|221723.076|112.621 +637559.000|221725.241|113.014 +637547.308|221729.575|112.706 +637535.497|221733.921|112.999 +637523.585|221738.310|113.236 +637517.657|221740.484|113.557 +637511.665|221742.693|113.611 +637505.834|221744.867|113.236 +637475.528|221755.940|115.529 +637457.368|221762.612|116.202 +637451.308|221764.837|116.498 +637445.194|221767.081|116.793 +637439.153|221769.296|117.053 +637433.099|221771.531|117.071 +637427.034|221773.765|117.178 +637420.913|221776.005|117.598 +637408.721|221780.492|117.921 +637390.363|221787.243|118.464 +637365.854|221796.287|118.662 +637359.645|221798.554|119.116 +637353.394|221800.825|119.857 +637328.653|221809.929|120.518 +637322.414|221812.209|120.972 +637316.150|221814.511|121.237 +637303.745|221819.083|121.481 +637297.530|221821.356|121.893 +637278.776|221828.254|122.463 +637272.521|221830.546|122.856 +637266.184|221832.860|123.399 +637259.912|221835.146|123.962 +637253.560|221837.456|124.691 +637209.339|221853.610|128.178 +637203.011|221855.930|128.568 +637196.406|221858.243|131.040 +637189.884|221860.554|132.960 +637183.632|221862.888|132.463 +637177.405|221865.199|132.241 +637171.117|221867.531|132.046 +637164.896|221869.841|131.829 +637158.651|221872.173|131.326 +637152.421|221874.507|130.714 +637146.099|221876.836|130.854 +637139.814|221879.165|130.705 +637121.014|221886.175|129.397 +637114.814|221888.510|128.553 +637102.119|221893.204|128.440 +637095.709|221895.545|128.989 +637082.838|221900.211|130.692 +637076.385|221902.540|131.765 +637070.021|221904.878|132.040 +637063.641|221907.210|132.503 +637057.268|221909.544|132.933 +637050.855|221911.900|133.183 +637038.069|221916.579|133.990 +637036.444|221920.956|133.768 +637042.744|221918.658|133.369 +637049.105|221916.335|133.021 +637055.457|221914.010|132.814 +637061.761|221911.708|132.500 +637068.064|221909.404|132.210 +637080.817|221904.777|130.930 +637087.129|221902.470|130.653 +637093.551|221900.172|129.382 +637112.586|221893.241|127.992 +637118.761|221890.939|128.559 +637131.094|221886.312|130.333 +637143.615|221881.695|130.513 +637156.051|221877.092|130.982 +637162.174|221874.812|131.494 +637180.764|221867.930|132.357 +637186.866|221865.671|132.600 +637193.102|221863.367|132.783 +637206.059|221858.822|128.388 +637249.847|221842.866|125.273 +637256.141|221840.589|124.517 +637262.426|221838.309|123.856 +637274.917|221833.771|122.746 +637287.341|221829.226|122.195 +637293.537|221826.965|121.847 +637299.752|221824.697|121.423 +637324.319|221815.678|121.003 +637336.639|221811.179|120.341 +637342.735|221808.933|120.433 +637367.415|221799.941|118.604 +637391.601|221791.047|118.506 +637397.697|221788.825|118.119 +637409.828|221784.381|117.702 +637415.875|221782.159|117.632 +637427.973|221777.727|117.208 +637439.994|221773.317|116.946 +637452.061|221768.897|116.544 +637458.053|221766.706|116.269 +637464.098|221764.493|116.071 +637476.000|221760.131|115.736 +637488.076|221755.727|114.953 +637523.857|221742.632|113.511 +637529.758|221740.468|113.331 +637535.662|221738.304|113.166 +637547.470|221733.988|112.624 +637564.974|221727.557|112.447 +637570.769|221725.430|112.331 +637576.572|221723.302|112.191 +637588.188|221719.041|111.929 +637599.767|221714.795|111.621 +637611.228|221710.561|111.877 +637617.056|221708.437|111.508 +637622.902|221706.319|110.829 +637628.544|221704.237|110.990 +637634.246|221702.128|111.173 +637657.183|221693.739|110.106 +637663.053|221691.612|109.487 +637668.555|221689.570|109.795 +637674.361|221687.464|109.222 +637679.805|221685.431|109.789 +637685.477|221683.358|109.503 +637691.089|221681.294|109.475 +637702.421|221677.155|108.820 +637713.501|221673.086|108.692 +637719.142|221671.026|108.396 +637724.632|221669.002|108.439 +637730.012|221666.999|108.878 +637735.538|221664.969|108.823 +637741.119|221662.939|108.351 +637762.875|221654.929|108.402 +637768.359|221652.924|108.131 +637773.610|221650.964|108.680 +637783.977|221647.093|109.811 +637795.059|221643.075|108.573 +637800.582|221641.073|108.049 +637776.317|221651.991|109.402 +637771.068|221653.957|108.853 +637749.400|221661.979|108.418 +637744.039|221663.985|107.863 +637738.391|221666.033|108.567 +637727.378|221670.099|108.552 +637721.834|221672.150|108.472 +637716.314|221674.183|108.564 +637710.754|221676.235|108.561 +637705.113|221678.313|108.649 +637699.547|221680.365|108.716 +637693.850|221682.450|109.052 +637688.257|221684.516|109.009 +637682.612|221686.592|109.177 +637676.833|221688.701|109.628 +637671.240|221690.777|109.399 +637665.549|221692.868|109.542 +637659.819|221694.968|109.871 +637654.165|221697.065|109.679 +637648.410|221699.165|110.137 +637642.577|221701.289|110.673 +637636.923|221703.386|110.527 +637631.192|221705.505|110.445 +637625.343|221707.641|110.856 +637619.637|221709.741|110.966 +637607.933|221714.039|111.399 +637602.187|221716.157|111.469 +637584.613|221722.610|112.133 +637578.800|221724.759|112.036 +637572.972|221726.899|112.282 +637567.062|221729.075|112.356 +637549.384|221735.579|112.746 +637543.413|221737.777|112.898 +637537.500|221739.950|113.084 +637531.644|221742.114|113.044 +637513.588|221748.707|114.364 +637495.586|221755.315|115.099 +637489.515|221757.543|115.315 +637471.486|221764.173|115.846 +637465.430|221766.395|116.099 +637459.391|221768.614|116.275 +637453.350|221770.833|116.498 +637447.367|221773.042|116.446 +637441.292|221775.280|116.565 +637435.218|221777.514|116.696 +637429.158|221779.745|116.778 +637416.966|221784.216|117.379 +637410.834|221786.469|117.580 +637404.707|221788.718|117.772 +637398.602|221790.968|117.891 +637374.069|221799.975|118.802 +637367.939|221802.255|118.476 +637361.685|221804.525|119.214 +637330.735|221815.885|120.387 +637324.508|221818.165|120.796 +637287.179|221831.884|122.003 +637280.952|221834.170|122.195 +637274.679|221836.459|122.707 +637262.073|221841.056|123.831 +637255.715|221843.366|124.593 +637249.369|221845.670|125.313 +637205.176|221861.822|128.510 +637192.033|221866.439|133.018 +637185.839|221868.750|132.558 +637179.554|221871.082|132.335 +637129.521|221889.720|129.077 +637123.285|221892.049|128.547 +637110.742|221896.727|127.614 +637104.341|221899.068|128.031 +637097.922|221901.406|128.672 +637091.464|221903.735|129.705 +637085.017|221906.067|130.686 +637065.845|221913.059|132.293 +637059.466|221915.387|132.805 +637053.071|221917.747|132.866 +637040.318|221922.428|133.344 +637033.975|221924.757|133.603 +637035.612|221927.744|133.399 +637041.979|221925.421|132.933 +637048.240|221923.111|132.997 +637054.601|221920.785|132.677 +637060.828|221918.499|132.509 +637067.204|221916.171|132.067 +637079.851|221911.559|131.162 +637086.251|221909.227|130.628 +637105.381|221902.333|127.626 +637111.705|221900.016|127.367 +637117.923|221897.691|128.068 +637130.374|221893.064|128.836 +637148.900|221886.157|130.534 +637155.115|221883.856|130.766 +637167.511|221879.250|131.585 +637179.801|221874.690|132.314 +637186.034|221872.386|132.488 +637192.170|221870.103|132.945 +637205.124|221865.540|128.925 +637211.345|221863.276|128.425 +637217.624|221860.987|127.974 +637223.732|221858.719|128.321 +637248.875|221849.608|125.474 +637255.163|221847.331|124.755 +637261.387|221845.076|124.063 +637267.626|221842.796|123.706 +637273.948|221840.513|122.868 +637280.166|221838.251|122.316 +637286.377|221835.990|121.829 +637323.386|221822.420|120.756 +637329.568|221820.168|120.268 +637335.624|221817.924|120.543 +637341.827|221815.650|120.347 +637366.461|221806.665|118.711 +637372.590|221804.428|118.360 +637378.558|221802.221|118.577 +637384.700|221799.959|118.525 +637390.793|221797.740|118.113 +637402.906|221793.299|117.732 +637409.002|221791.074|117.357 +637415.067|221788.849|117.181 +637421.118|221786.627|117.107 +637427.125|221784.424|116.931 +637433.191|221782.196|116.824 +637439.137|221780.013|116.684 +637445.209|221777.785|116.592 +637451.226|221775.575|116.458 +637457.194|221773.387|116.297 +637463.220|221771.174|116.169 +637481.188|221764.578|115.846 +637487.119|221762.402|115.657 +637493.121|221760.204|115.455 +637540.865|221742.754|112.974 +637552.560|221738.451|112.947 +637558.397|221736.305|112.859 +637570.098|221732.010|112.627 +637576.005|221729.852|112.307 +637587.566|221725.612|111.996 +637599.295|221721.318|111.600 +637605.202|221719.184|110.871 +637622.362|221712.863|111.085 +637639.794|221706.526|109.618 +637651.309|221702.298|109.414 +637668.174|221696.083|109.695 +637673.928|221693.986|109.317 +637696.542|221685.696|108.777 +637713.269|221679.557|108.527 +637724.434|221675.457|108.396 +637729.917|221673.437|108.469 +637735.437|221671.407|108.433 +637740.914|221669.398|108.341 +637752.101|221665.320|107.598 +637757.425|221663.351|107.863 +637784.016|221653.490|109.436 +637789.509|221651.494|108.978 +637795.117|221649.473|108.140 +637800.567|221647.483|107.863 +637805.959|221645.517|107.573 +637822.147|221639.604|106.772 +637762.534|221663.777|107.896 +637757.136|221665.786|107.686 +637751.744|221667.780|107.689 +637740.604|221671.867|108.329 +637735.138|221673.894|108.186 +637729.643|221675.927|108.165 +637724.025|221677.993|108.366 +637718.393|221680.063|108.628 +637712.934|221682.087|108.533 +637690.464|221690.374|108.933 +637679.043|221694.562|109.567 +637673.605|221696.601|109.009 +637662.221|221700.792|109.378 +637656.338|221702.929|110.070 +637650.684|221705.029|109.911 +637645.070|221707.108|109.859 +637639.318|221709.220|110.112 +637633.445|221711.354|110.865 +637627.809|221713.460|110.441 +637621.887|221715.624|110.929 +637616.138|221717.733|111.246 +637610.399|221719.864|111.024 +637587.024|221728.453|112.060 +637563.496|221737.103|113.002 +637557.687|221739.264|112.709 +637521.976|221752.374|114.489 +637515.965|221754.587|114.663 +637492.036|221763.386|115.617 +637486.007|221765.611|115.687 +637480.017|221767.815|115.891 +637467.990|221772.256|115.986 +637462.028|221774.451|116.114 +637456.005|221776.670|116.269 +637449.921|221778.913|116.428 +637443.859|221781.132|116.809 +637437.805|221783.369|116.861 +637431.786|221785.597|116.766 +637425.720|221787.831|116.909 +637419.603|221790.087|117.034 +637413.549|221792.318|117.162 +637407.435|221794.570|117.312 +637401.333|221796.820|117.424 +637395.207|221799.072|117.674 +637389.098|221801.322|117.869 +637382.950|221803.571|118.287 +637376.733|221805.863|118.433 +637370.691|221808.101|118.330 +637345.786|221817.214|120.162 +637339.580|221819.494|120.390 +637333.359|221821.774|120.732 +637327.230|221824.048|120.570 +637314.834|221828.617|120.738 +637302.511|221833.180|120.552 +637283.695|221840.059|121.905 +637277.398|221842.351|122.600 +637264.801|221846.947|123.673 +637258.442|221849.258|124.444 +637252.103|221851.562|125.133 +637220.452|221863.087|128.406 +637214.176|221865.403|128.419 +637207.952|221867.695|128.544 +637194.782|221872.340|132.850 +637188.567|221874.651|132.552 +637182.297|221876.982|132.219 +637169.794|221881.622|131.811 +637163.534|221883.953|131.442 +637151.043|221888.614|130.534 +637138.567|221893.277|129.513 +637132.276|221895.630|128.943 +637119.725|221900.309|128.080 +637100.705|221907.322|128.348 +637087.824|221911.986|130.150 +637081.353|221914.339|130.860 +637075.029|221916.649|131.351 +637068.570|221919.002|132.021 +637062.224|221921.337|132.177 +637055.881|221923.672|132.369 +637043.080|221928.381|132.719 +637036.715|221930.707|133.192 +637041.653|221932.572|132.747 +637047.953|221930.271|132.405 +637054.302|221927.942|132.213 +637073.340|221920.980|131.278 +637086.011|221916.366|130.238 +637092.378|221914.061|129.467 +637105.140|221909.447|127.794 +637111.455|221907.158|127.087 +637117.679|221904.832|127.754 +637123.876|221902.531|128.132 +637130.128|221900.205|128.562 +637136.300|221897.901|129.156 +637148.717|221893.268|130.235 +637154.923|221890.967|130.546 +637167.249|221886.355|131.896 +637179.606|221881.792|132.091 +637185.818|221879.485|132.445 +637191.938|221877.199|133.003 +637198.208|221874.916|132.472 +637211.162|221870.347|128.525 +637217.386|221868.058|128.452 +637223.561|221865.790|128.303 +637229.724|221863.519|128.288 +637248.664|221856.674|125.681 +637254.946|221854.397|124.980 +637261.167|221852.138|124.292 +637279.928|221845.311|122.615 +637286.201|221843.046|121.747 +637298.777|221838.486|120.296 +637304.848|221836.243|120.378 +637310.990|221833.960|120.796 +637317.132|221831.710|120.500 +637347.749|221820.442|120.235 +637366.290|221813.685|118.823 +637372.450|221811.441|118.287 +637378.552|221809.201|118.092 +637384.663|221806.961|117.882 +637390.689|221804.745|117.805 +637396.801|221802.501|117.647 +637402.851|221800.279|117.482 +637408.901|221798.057|117.348 +637414.961|221795.832|117.190 +637420.999|221793.610|117.162 +637426.951|221791.410|117.266 +637432.990|221789.185|117.287 +637439.009|221786.978|117.083 +637445.047|221784.765|116.827 +637451.086|221782.552|116.580 +637457.093|221780.342|116.510 +637463.104|221778.148|116.150 +637469.133|221775.932|116.028 +637475.098|221773.740|115.925 +637481.078|221771.543|115.763 +637487.019|221769.351|115.812 +637498.930|221764.977|115.550 +637510.857|221760.594|115.291 +637516.749|221758.436|115.081 +637528.700|221754.059|114.544 +637534.546|221751.901|114.605 +637587.447|221732.498|112.855 +637599.136|221728.218|112.319 +637605.110|221726.070|111.280 +637651.138|221709.165|110.216 +637656.890|221707.056|110.024 +637662.584|221704.956|110.070 +637673.944|221700.783|109.817 +637679.570|221698.717|109.676 +637690.836|221694.568|109.646 +637702.424|221690.371|108.244 +637708.048|221688.311|107.973 +637719.197|221684.211|107.835 +637724.553|221682.200|108.585 +637730.335|221680.121|107.573 +637735.803|221678.100|107.704 +637763.101|221668.020|108.073 +637773.833|221664.055|108.335 +637779.188|221662.071|108.530 +637790.137|221658.069|107.909 +637795.510|221656.090|107.854 +637800.908|221654.109|107.738 +637806.303|221652.137|107.421 +637811.680|221650.168|107.189 +637792.359|221658.882|107.753 +637786.878|221660.885|108.183 +637781.483|221662.881|108.116 +637776.012|221664.896|108.332 +637765.305|221668.874|108.006 +637754.487|221672.906|107.421 +637748.982|221674.933|107.610 +637743.478|221676.957|107.811 +637737.997|221678.990|107.701 +637732.395|221681.057|107.820 +637721.230|221685.168|108.198 +637709.950|221689.308|108.838 +637698.760|221693.453|108.741 +637687.266|221697.659|109.606 +637675.882|221701.856|109.896 +637670.109|221703.965|110.374 +637653.126|221710.260|110.155 +637647.368|221712.378|110.402 +637641.586|221714.512|110.518 +637635.825|221716.624|110.819 +637618.616|221723.006|110.533 +637606.775|221727.319|111.844 +637589.118|221733.796|112.889 +637529.901|221755.599|114.846 +637517.998|221759.982|115.178 +637511.997|221762.195|115.330 +637500.012|221766.614|115.599 +637494.029|221768.821|115.727 +637488.110|221771.019|115.574 +637482.008|221773.268|115.696 +637476.030|221775.472|115.861 +637470.008|221777.694|115.958 +637463.848|221779.946|116.434 +637457.852|221782.165|116.434 +637451.863|221784.378|116.437 +637433.502|221791.126|117.254 +637427.457|221793.360|117.306 +637421.471|221795.589|117.065 +637415.366|221797.841|117.129 +637403.125|221802.349|117.501 +637397.032|221804.598|117.586 +637390.866|221806.872|117.741 +637384.700|221809.143|117.918 +637378.540|221811.414|118.083 +637372.380|221813.681|118.269 +637366.196|221815.949|118.610 +637359.947|221818.223|119.345 +637353.671|221820.515|119.915 +637347.432|221822.801|120.311 +637316.635|221834.213|119.954 +637304.199|221838.809|120.061 +637297.954|221841.107|120.326 +637285.247|221845.728|121.899 +637278.922|221848.023|122.746 +637272.521|221850.340|123.740 +637266.239|221852.629|124.401 +637259.921|221854.961|124.502 +637253.651|221857.247|125.154 +637240.871|221861.886|126.922 +637234.531|221864.187|127.727 +637228.188|221866.513|128.175 +637221.952|221868.811|128.333 +637215.664|221871.130|128.449 +637209.394|221873.450|128.440 +637196.284|221878.080|132.765 +637189.996|221880.415|132.558 +637183.794|221882.728|132.174 +637146.230|221896.737|130.028 +637127.427|221903.787|128.227 +637121.176|221906.118|127.861 +637102.177|221913.144|127.922 +637095.712|221915.479|129.025 +637089.324|221917.820|129.470 +637070.070|221924.848|131.265 +637063.699|221927.183|131.692 +637044.613|221934.218|132.207 +637034.173|221941.750|132.613 +637040.516|221939.424|132.387 +637046.810|221937.126|132.067 +637065.885|221930.149|131.192 +637084.919|221923.215|129.766 +637091.256|221920.910|129.232 +637110.376|221913.991|126.898 +637116.646|221911.672|127.123 +637135.227|221904.744|128.803 +637147.626|221900.117|130.061 +637153.792|221897.816|130.705 +637166.085|221893.231|131.854 +637172.379|221890.909|131.976 +637184.729|221886.349|132.259 +637190.880|221884.066|132.607 +637197.120|221881.762|132.762 +637210.052|221877.223|128.455 +637222.506|221872.648|128.278 +637241.240|221865.821|126.986 +637247.555|221863.547|126.002 +637253.834|221861.273|125.297 +637260.101|221858.996|124.703 +637272.552|221854.442|124.161 +637291.422|221847.633|121.533 +637297.689|221845.366|120.756 +637303.949|221843.098|120.037 +637316.202|221838.593|119.973 +637322.530|221836.298|119.317 +637328.544|221834.076|119.473 +637346.710|221827.327|120.686 +637352.952|221825.069|119.948 +637359.109|221822.835|119.363 +637365.339|221820.573|118.741 +637371.450|221818.336|118.473 +637377.574|221816.099|118.153 +637383.670|221813.864|118.019 +637389.705|221811.630|118.217 +637395.780|221809.411|117.906 +637401.863|221807.174|117.888 +637407.877|221804.958|117.933 +637420.112|221800.502|117.028 +637426.129|221798.283|117.120 +637432.115|221796.067|117.391 +637450.229|221789.441|116.577 +637456.295|221787.228|116.217 +637462.220|221785.030|116.562 +637468.252|221782.817|116.412 +637474.235|221780.626|116.220 +637480.282|221778.425|115.739 +637486.314|221776.209|115.650 +637492.270|221774.018|115.647 +637504.060|221769.662|115.958 +637509.985|221767.486|115.855 +637515.932|221765.310|115.687 +637527.850|221760.942|115.279 +637557.193|221750.149|115.218 +637574.792|221743.690|114.885 +637592.534|221737.241|113.322 +637598.509|221735.067|112.782 +637604.406|221732.918|112.313 +637616.214|221728.630|111.142 +637621.999|221726.512|110.941 +637633.426|221722.293|111.176 +637639.178|221720.175|111.170 +637650.578|221715.981|111.097 +637662.117|221711.759|110.551 +637679.192|221705.483|110.295 +637696.218|221699.247|109.646 +637707.484|221695.111|109.472 +637713.089|221693.057|109.265 +637718.737|221690.981|109.164 +637724.373|221688.920|108.881 +637729.990|221686.863|108.698 +637735.568|221684.821|108.427 +637741.308|221682.751|107.607 +637746.989|221680.691|107.012 +637790.435|221664.674|107.406 +637806.660|221658.712|107.159 +637812.091|221656.721|106.967 +637817.450|221654.758|106.799 +637822.845|221652.783|106.537 +637828.157|221650.827|106.561 +637790.170|221666.161|107.055 +637784.766|221668.151|107.256 +637773.687|221672.199|108.189 +637757.450|221678.231|107.695 +637746.550|221682.273|107.473 +637740.853|221684.345|108.146 +637729.558|221688.479|108.985 +637724.016|221690.530|108.924 +637718.362|221692.602|109.301 +637712.867|221694.645|109.109 +637707.152|221696.739|109.506 +637701.501|221698.817|109.682 +637684.520|221705.072|110.192 +637673.069|221709.275|110.786 +637661.718|221713.484|110.585 +637644.479|221719.824|111.240 +637638.739|221721.949|111.216 +637632.951|221724.079|111.402 +637627.248|221726.195|111.261 +637621.561|221728.307|111.082 +637615.751|221730.453|111.155 +637609.762|221732.623|111.978 +637603.855|221734.781|112.490 +637597.859|221736.966|113.124 +637580.059|221743.468|114.684 +637562.219|221750.021|115.559 +637532.726|221760.927|115.522 +637526.795|221763.115|115.614 +637520.806|221765.325|115.693 +637514.877|221767.513|115.812 +637502.902|221771.927|116.050 +637496.982|221774.124|115.894 +637491.024|221776.340|115.635 +637485.071|221778.541|115.666 +637479.036|221780.766|115.809 +637472.915|221782.997|116.373 +637466.871|221785.222|116.608 +637460.784|221787.466|116.772 +637454.841|221789.691|116.242 +637448.708|221791.934|116.656 +637430.377|221798.673|117.431 +637424.406|221800.898|117.129 +637418.237|221803.157|117.543 +637412.117|221805.409|117.726 +637405.999|221807.662|117.918 +637399.833|221809.935|118.068 +637387.571|221814.453|118.375 +637381.457|221816.717|118.302 +637375.254|221819.006|118.394 +637369.103|221821.271|118.570 +637362.919|221823.539|118.948 +637356.640|221825.828|119.549 +637350.331|221828.120|120.347 +637337.898|221832.686|120.957 +637331.994|221834.963|119.089 +637325.718|221837.249|119.784 +637319.479|221839.547|119.930 +637307.028|221844.140|120.128 +637300.767|221846.438|120.469 +637288.112|221851.032|122.094 +637281.741|221853.348|122.838 +637262.798|221860.261|124.618 +637256.434|221862.590|125.051 +637231.020|221871.825|128.150 +637224.710|221874.148|128.376 +637199.031|221883.432|132.408 +637192.721|221885.742|132.820 +637186.473|221888.077|132.332 +637180.228|221890.412|131.826 +637167.697|221895.057|131.625 +637148.964|221902.055|130.196 +637130.216|221909.078|128.431 +637123.922|221911.431|127.882 +637117.606|221913.784|127.544 +637111.330|221916.140|126.837 +637104.911|221918.481|127.443 +637092.140|221923.135|128.763 +637072.846|221930.158|130.918 +637060.081|221934.852|131.363 +637047.331|221939.546|131.759 +637034.548|221944.228|132.640 +637040.397|221945.858|132.210 +637053.135|221941.216|131.256 +637059.414|221938.906|131.147 +637072.112|221934.279|130.150 +637097.493|221925.025|128.193 +637103.866|221922.718|127.370 +637110.224|221920.407|126.754 +637116.506|221918.088|126.873 +637122.678|221915.784|127.410 +637135.132|221911.132|128.644 +637184.650|221892.707|132.177 +637190.798|221890.424|132.509 +637196.928|221888.141|132.991 +637203.389|221885.840|131.461 +637209.936|221883.581|128.473 +637228.590|221876.717|128.330 +637259.985|221865.330|124.834 +637272.351|221860.798|124.368 +637278.620|221858.518|123.801 +637284.960|221856.232|122.829 +637291.190|221853.970|122.204 +637297.381|221851.705|121.859 +637303.727|221849.416|120.954 +637346.661|221833.612|120.683 +637359.103|221829.095|119.387 +637365.205|221826.861|119.095 +637371.341|221824.606|119.012 +637377.424|221822.371|118.878 +637383.511|221820.137|118.741 +637389.607|221817.897|118.592 +637413.927|221808.994|117.543 +637419.956|221806.772|117.513 +637426.031|221804.547|117.281 +637432.011|221802.331|117.559 +637450.171|221795.683|116.742 +637456.139|221793.479|116.827 +637474.068|221786.877|116.784 +637480.194|221784.664|115.888 +637486.165|221782.473|115.763 +637492.118|221780.281|115.751 +637503.901|221775.911|116.336 +637515.810|221771.534|116.114 +637533.543|221765.017|115.800 +637539.353|221762.865|116.010 +637556.879|221756.397|116.281 +637615.907|221734.887|111.853 +637633.140|221728.551|111.728 +637684.542|221709.674|110.944 +637690.278|221707.590|110.390 +637701.488|221703.456|110.569 +637707.261|221701.362|109.942 +637729.676|221693.142|109.408 +637740.832|221689.067|108.844 +637746.401|221687.028|108.622 +637757.657|221682.928|107.814 +637763.311|221680.883|107.122 +637774.098|221676.899|107.381 +637784.958|221672.912|107.229 +637790.499|221670.895|106.790 +637796.065|221668.871|106.284 +637811.997|221662.982|106.808 +637817.416|221660.998|106.653 +637822.775|221659.035|106.488 +637828.100|221657.075|106.446 +637798.473|221669.605|106.208 +637792.968|221671.626|106.506 +637787.555|221673.626|106.510 +637781.938|221675.668|107.223 +637765.585|221681.709|107.305 +637760.013|221683.748|107.720 +637754.490|221685.790|107.741 +637748.928|221687.826|108.162 +637731.996|221694.020|109.469 +637726.327|221696.096|109.871 +637720.715|221698.171|109.853 +637715.110|221700.232|110.067 +637686.867|221710.641|110.783 +637629.540|221731.769|112.115 +637582.226|221749.073|115.846 +637576.441|221751.222|115.699 +637558.708|221757.738|116.461 +637535.195|221766.459|115.961 +637529.206|221768.672|116.031 +637499.464|221779.669|115.986 +637493.575|221781.863|115.693 +637487.564|221784.085|115.699 +637481.535|221786.307|115.809 +637475.354|221788.551|116.681 +637457.246|221795.229|117.025 +637451.241|221797.460|116.809 +637445.148|221799.700|117.071 +637439.034|221801.941|117.446 +637432.904|221804.199|117.607 +637426.930|221806.421|117.327 +637420.785|221808.680|117.620 +637365.388|221829.068|119.476 +637359.161|221831.372|119.421 +637352.955|221833.637|119.985 +637346.612|221835.950|120.649 +637340.367|221838.236|121.167 +637315.654|221847.383|121.109 +637296.933|221854.272|121.859 +637290.651|221856.567|122.435 +637284.320|221858.883|122.944 +637252.804|221870.411|125.526 +637208.519|221886.648|128.464 +637195.407|221891.268|132.936 +637189.116|221893.628|132.317 +637182.904|221895.938|132.070 +637132.898|221914.638|128.315 +637107.740|221924.031|126.645 +637101.324|221926.372|127.297 +637082.027|221933.404|129.412 +637075.657|221935.742|129.766 +637069.253|221938.074|130.513 +637062.834|221940.433|130.839 +637050.117|221945.133|130.909 +637037.316|221949.815|132.024 +637034.262|221954.804|131.677 +637046.944|221950.150|131.302 +637059.600|221945.520|130.665 +637097.718|221931.642|127.440 +637110.422|221927.019|126.297 +637116.710|221924.699|126.367 +637122.937|221922.373|127.017 +637141.518|221915.439|128.714 +637160.038|221908.499|130.942 +637178.658|221901.589|131.887 +637184.873|221899.285|132.168 +637191.036|221897.005|132.390 +637197.223|221894.697|132.893 +637203.597|221892.418|131.555 +637210.208|221890.138|128.522 +637247.634|221876.461|126.337 +637260.177|221871.911|124.968 +637266.477|221869.609|124.542 +637272.686|221867.354|123.944 +637278.937|221865.053|123.920 +637297.643|221858.243|122.274 +637328.547|221846.896|121.561 +637340.818|221842.378|121.436 +637346.993|221840.126|121.000 +637353.239|221837.867|120.198 +637359.432|221835.609|119.704 +637365.513|221833.359|119.899 +637371.664|221831.104|119.704 +637383.917|221826.608|119.308 +637390.013|221824.371|119.156 +637402.305|221819.899|118.019 +637420.468|221813.218|117.805 +637426.613|221810.969|117.525 +637432.581|221808.771|117.537 +637438.598|221806.549|117.641 +637444.648|221804.321|117.577 +637456.657|221799.908|117.363 +637462.699|221797.695|117.110 +637474.689|221793.278|117.104 +637480.740|221791.077|116.562 +637486.839|221788.868|115.821 +637492.852|221786.652|115.815 +637498.769|221784.463|115.986 +637504.578|221782.287|116.669 +637522.421|221775.734|116.297 +637528.377|221773.536|116.367 +637540.157|221769.199|116.309 +637545.940|221767.050|116.635 +637551.673|221764.910|117.193 +637563.374|221760.591|117.339 +637569.312|221758.433|116.787 +637581.007|221754.139|116.522 +637604.544|221745.540|115.077 +637610.481|221743.385|114.422 +637702.336|221709.693|111.274 +637719.280|221703.484|110.566 +637730.530|221699.354|110.280 +637736.160|221697.290|110.027 +637747.370|221693.197|109.289 +637758.949|221689.042|107.092 +637764.280|221687.043|107.765 +637780.999|221680.953|106.409 +637786.442|221678.954|106.287 +637802.731|221672.967|105.955 +637807.937|221671.020|106.482 +637818.672|221667.075|106.269 +637824.055|221665.094|106.244 +637829.456|221663.119|105.949 +637834.735|221661.165|106.083 +637796.894|221677.189|106.476 +637791.691|221679.149|105.754 +637786.046|221681.194|106.567 +637780.599|221683.215|106.485 +637775.201|221685.211|106.479 +637763.997|221689.301|107.497 +637758.541|221691.331|107.287 +637752.564|221693.468|108.704 +637746.901|221695.535|109.280 +637735.526|221699.695|110.182 +637729.890|221701.762|110.478 +637690.247|221716.353|111.880 +637650.270|221731.105|112.523 +637615.285|221743.946|114.428 +637609.390|221746.101|114.913 +637573.948|221759.116|116.736 +637567.907|221761.314|117.464 +637556.120|221765.672|117.434 +637544.544|221770.001|116.562 +637526.829|221776.572|116.199 +637520.769|221778.803|116.345 +637502.835|221785.423|116.632 +637497.025|221787.606|115.986 +637491.051|221789.822|115.815 +637484.940|221792.056|116.327 +637478.740|221794.299|117.293 +637472.726|221796.518|117.400 +637454.542|221803.233|117.583 +637448.629|221805.437|117.251 +637436.373|221809.939|117.882 +637430.347|221812.185|117.549 +637424.175|221814.443|117.979 +637418.280|221816.659|117.327 +637405.859|221821.198|118.400 +637387.276|221828.016|119.445 +637374.971|221832.549|119.814 +637362.575|221837.118|120.101 +637356.427|221839.398|119.988 +637350.136|221841.687|120.713 +637343.817|221843.994|121.280 +637337.621|221846.274|121.533 +637331.393|221848.572|121.606 +637325.258|221850.843|121.533 +637300.325|221860.023|122.335 +637294.025|221862.337|122.609 +637281.464|221866.942|123.426 +637275.167|221869.253|123.801 +637268.858|221871.560|124.255 +637262.612|221873.846|124.758 +637256.214|221876.175|125.456 +637211.921|221892.402|128.434 +637205.294|221894.710|131.147 +637198.756|221897.041|132.823 +637192.493|221899.376|132.475 +637186.223|221901.711|132.155 +637136.233|221920.429|127.733 +637129.917|221922.782|127.388 +637117.338|221927.491|126.258 +637110.983|221929.841|126.285 +637104.622|221932.185|126.428 +637098.221|221934.526|126.943 +637072.526|221943.914|129.138 +637066.180|221946.221|129.940 +637059.761|221948.577|130.272 +637053.348|221950.933|130.580 +637040.486|221955.633|131.653 +637034.112|221957.992|131.607 +637059.377|221952.427|129.812 +637065.586|221950.135|129.830 +637071.993|221947.809|129.040 +637078.336|221945.471|128.973 +637084.691|221943.164|128.208 +637090.994|221940.850|127.986 +637097.352|221938.540|127.279 +637103.799|221936.208|126.334 +637110.041|221933.910|126.209 +637116.357|221931.591|126.017 +637122.572|221929.259|126.718 +637128.841|221926.933|126.971 +637134.974|221924.623|127.888 +637141.125|221922.312|128.629 +637153.503|221917.673|130.004 +637172.016|221910.751|131.750 +637178.204|221908.441|132.229 +637184.510|221906.140|131.768 +637190.630|221903.851|132.296 +637196.748|221901.565|132.875 +637203.127|221899.260|131.939 +637209.772|221896.977|128.601 +637247.226|221883.264|126.529 +637253.483|221880.988|125.895 +637259.759|221878.708|125.176 +637266.084|221876.403|124.587 +637272.262|221874.145|124.157 +637278.501|221871.862|123.789 +637284.750|221869.579|123.371 +637290.956|221867.293|123.258 +637297.161|221865.028|122.780 +637303.388|221862.739|122.576 +637328.086|221853.665|121.823 +637334.204|221851.416|121.646 +637352.821|221844.604|120.494 +637358.981|221842.348|120.177 +637389.458|221831.122|119.747 +637395.600|221828.858|119.677 +637401.741|221826.611|119.287 +637420.029|221819.912|118.345 +637426.174|221817.659|118.049 +637432.255|221815.428|117.781 +637438.226|221813.209|118.092 +637468.368|221802.114|117.552 +637474.305|221799.908|117.818 +637492.508|221793.254|116.571 +637522.217|221782.287|116.617 +637528.151|221780.105|116.492 +637534.065|221777.922|116.467 +637545.744|221773.579|117.138 +637551.600|221771.415|117.147 +637557.409|221769.260|117.376 +637563.231|221767.102|117.574 +637610.249|221749.847|115.702 +637633.942|221741.233|113.249 +637639.684|221739.118|113.224 +637645.414|221737.000|113.273 +637651.205|221734.872|113.105 +637668.210|221728.587|113.368 +637747.727|221699.439|109.762 +637765.103|221693.197|106.561 +637776.165|221689.128|106.308 +637792.356|221683.138|106.656 +637797.921|221681.112|106.147 +637803.267|221679.136|106.180 +637814.067|221675.156|106.150 +637819.434|221673.187|105.936 +637824.814|221671.202|105.915 +637830.248|221669.221|105.507 +637835.448|221667.283|105.900 +637809.805|221678.905|106.226 +637798.936|221682.928|106.342 +637793.361|221684.967|106.924 +637771.489|221693.047|107.473 +637669.286|221730.620|113.654 +637657.829|221734.863|113.764 +637652.245|221736.951|113.395 +637646.496|221739.082|113.444 +637640.754|221741.209|113.489 +637634.947|221743.358|113.547 +637611.313|221752.011|115.657 +637599.627|221756.324|116.041 +637581.805|221762.862|117.354 +637569.970|221767.227|117.775 +637564.148|221769.394|117.613 +637558.275|221771.582|117.397 +637552.420|221773.768|117.138 +637546.482|221775.962|117.235 +637528.895|221782.513|116.669 +637516.892|221786.941|117.074 +637510.924|221789.151|117.144 +637498.955|221793.583|117.223 +637486.912|221798.036|117.431 +637462.778|221806.951|118.046 +637456.709|221809.195|118.177 +637438.543|221815.928|118.232 +637432.590|221818.153|117.863 +637401.830|221829.482|119.259 +637395.627|221831.759|119.689 +637389.525|221834.027|119.601 +637377.235|221838.565|119.936 +637364.766|221843.147|120.674 +637358.670|221845.426|120.296 +637352.422|221847.716|120.796 +637333.817|221854.558|121.679 +637327.568|221856.860|121.920 +637308.808|221863.754|122.923 +637302.651|221866.046|122.707 +637296.427|221868.338|122.941 +637290.145|221870.652|123.170 +637283.906|221872.944|123.545 +637277.614|221875.254|123.886 +637271.329|221877.565|124.218 +637265.029|221879.875|124.663 +637258.708|221882.182|125.300 +637252.374|221884.490|126.056 +637214.438|221898.422|128.242 +637208.144|221900.742|128.486 +637201.311|221903.067|132.393 +637195.044|221905.381|132.552 +637188.786|221907.719|132.168 +637176.101|221912.382|132.829 +637170.026|221914.699|131.521 +637145.005|221924.086|129.174 +637132.581|221928.786|127.263 +637126.263|221931.139|126.956 +637120.054|221933.477|126.245 +637113.665|221935.852|126.062 +637107.377|221938.180|126.078 +637101.001|221940.524|126.401 +637088.166|221945.227|127.352 +637075.343|221949.894|128.937 +637062.517|221954.615|129.443 +637056.168|221956.953|129.738 +637043.314|221961.659|130.747 +637036.892|221964.009|131.287 +637034.658|221968.654|131.067 +637041.013|221966.329|130.708 +637047.395|221964.009|130.077 +637053.744|221961.680|129.845 +637085.557|221950.086|127.184 +637091.970|221947.754|126.514 +637098.285|221945.441|126.248 +637104.610|221943.124|125.901 +637110.968|221940.780|125.858 +637117.274|221938.461|125.730 +637123.498|221936.132|126.407 +637129.737|221933.803|126.910 +637135.931|221931.499|127.318 +637148.248|221926.857|129.248 +637154.457|221924.525|130.028 +637160.601|221922.215|130.814 +637179.252|221915.268|131.988 +637191.652|221910.678|132.287 +637197.836|221908.368|132.805 +637217.139|221901.516|127.522 +637223.384|221899.199|127.708 +637248.293|221890.065|126.581 +637273.366|221880.924|124.350 +637279.608|221878.641|123.956 +637285.832|221876.355|123.682 +637292.007|221874.093|123.371 +637304.388|221869.539|123.011 +637310.591|221867.253|122.987 +637329.159|221860.441|122.140 +637353.879|221851.382|120.881 +637360.029|221849.124|120.622 +637366.065|221846.874|121.024 +637372.221|221844.616|120.768 +637378.366|221842.372|120.262 +637390.522|221837.880|120.411 +637402.790|221833.387|119.668 +637414.854|221828.928|119.787 +637433.297|221822.204|118.156 +637439.314|221819.979|118.235 +637469.261|221808.920|118.321 +637499.229|221797.881|117.860 +637523.122|221789.093|117.232 +637529.075|221786.908|117.016 +637534.951|221784.732|117.159 +637540.901|221782.543|116.986 +637552.581|221778.212|117.400 +637558.412|221776.051|117.525 +637564.209|221773.896|117.821 +637570.034|221771.735|117.997 +637587.606|221765.264|117.699 +637593.418|221763.118|117.741 +637599.316|221760.969|117.174 +637611.158|221756.650|116.175 +637617.107|221754.489|115.449 +637634.582|221748.085|114.453 +637640.367|221745.958|114.236 +637646.143|221743.833|114.069 +637657.591|221739.609|113.959 +637663.282|221737.494|114.194 +637686.081|221729.099|113.636 +637691.851|221726.993|113.142 +637697.477|221724.896|113.465 +637703.168|221722.814|113.078 +637708.639|221720.772|113.538 +637765.420|221700.037|108.796 +637771.154|221697.958|108.037 +637776.674|221695.931|107.817 +637798.543|221687.872|107.393 +637804.295|221685.808|106.241 +637820.611|221679.810|105.662 +637825.887|221677.856|105.760 +637831.285|221675.866|105.684 +637836.576|221673.906|105.744 +637841.934|221671.934|105.604 +637813.311|221683.852|105.851 +637807.754|221685.876|106.528 +637780.325|221695.992|107.671 +637769.017|221700.128|108.829 +637706.609|221723.055|113.194 +637695.030|221727.295|114.255 +637689.540|221729.361|113.675 +637677.973|221733.620|114.315 +637672.225|221735.741|114.526 +637666.537|221737.850|114.523 +637660.892|221739.953|114.367 +637655.229|221742.072|114.047 +637649.413|221744.211|114.349 +637643.646|221746.345|114.480 +637637.840|221748.497|114.532 +637590.434|221765.886|118.296 +637578.715|221770.241|118.168 +637572.866|221772.415|118.086 +637566.977|221774.609|117.915 +637561.097|221776.801|117.723 +637555.291|221778.965|117.501 +637549.286|221781.187|117.610 +637543.449|221783.369|117.275 +637531.480|221787.801|117.418 +637519.553|221792.224|117.446 +637513.585|221794.436|117.510 +637501.487|221798.890|118.165 +637495.492|221801.115|118.113 +637465.219|221812.313|118.738 +637459.157|221814.556|118.836 +637447.013|221819.058|118.887 +637441.006|221821.308|118.446 +637434.956|221823.563|118.241 +637428.680|221825.840|119.241 +637397.941|221837.206|119.927 +637385.520|221841.760|120.917 +637360.834|221850.916|120.927 +637354.662|221853.205|120.997 +637342.122|221857.804|121.972 +637329.662|221862.416|122.228 +637323.408|221864.720|122.533 +637310.947|221869.323|122.920 +637304.656|221871.645|123.164 +637292.163|221876.260|123.517 +637279.602|221880.896|124.029 +637273.314|221883.210|124.371 +637266.986|221885.523|125.011 +637260.683|221887.836|125.520 +637247.951|221892.500|126.657 +637229.075|221899.462|127.446 +637222.766|221901.812|127.315 +637216.471|221904.134|127.510 +637210.031|221906.478|128.403 +637203.289|221908.788|132.082 +637196.885|221911.126|132.786 +637190.652|221913.470|132.226 +637178.121|221918.152|131.622 +637171.827|221920.490|131.561 +637165.591|221922.828|131.049 +637159.276|221925.190|130.708 +637146.843|221929.899|128.836 +637140.628|221932.240|128.160 +637134.401|221934.608|127.050 +637128.107|221936.973|126.520 +637109.194|221944.023|125.855 +637102.790|221946.401|125.825 +637096.420|221948.751|126.084 +637090.016|221951.095|126.706 +637070.719|221958.160|128.480 +637064.345|221960.501|128.958 +637057.914|221962.863|129.458 +637052.803|221968.447|129.114 +637059.158|221966.118|128.797 +637065.528|221963.790|128.352 +637071.840|221961.482|127.937 +637078.257|221959.160|127.074 +637084.666|221956.831|126.346 +637090.976|221954.518|126.059 +637097.346|221952.180|125.797 +637103.656|221949.863|125.566 +637109.947|221947.541|125.520 +637116.195|221945.215|125.916 +637122.471|221942.893|126.056 +637128.741|221940.567|126.258 +637134.965|221938.235|126.907 +637159.614|221928.951|130.497 +637165.862|221926.622|130.958 +637172.047|221924.315|131.427 +637178.280|221922.011|131.503 +637190.701|221917.396|132.107 +637196.897|221915.086|132.515 +637203.109|221912.803|132.357 +637209.891|221910.504|128.388 +637216.151|221908.240|127.513 +637222.442|221905.926|127.346 +637234.903|221901.342|127.093 +637241.081|221899.071|126.928 +637253.560|221894.499|126.258 +637259.893|221892.201|125.526 +637266.108|221889.921|125.224 +637291.041|221880.796|123.792 +637303.407|221876.248|123.478 +637309.625|221873.959|123.328 +637321.975|221869.405|123.261 +637328.126|221867.159|122.826 +637346.691|221860.340|122.161 +637352.906|221858.064|121.832 +637359.121|221855.805|121.167 +637365.171|221853.555|121.472 +637383.456|221846.813|121.405 +637414.098|221835.575|120.003 +637438.473|221826.660|118.473 +637450.412|221822.222|119.134 +637456.346|221820.021|119.339 +637462.403|221817.790|119.262 +637468.368|221815.583|119.354 +637474.439|221813.364|118.933 +637516.395|221797.926|118.083 +637528.273|221793.546|117.979 +637540.097|221789.188|117.921 +637546.004|221787.005|117.943 +637551.868|221784.844|117.885 +637557.839|221782.653|117.659 +637563.652|221780.498|117.863 +637569.482|221778.340|118.013 +637575.252|221776.203|118.168 +637581.071|221774.042|118.403 +637598.603|221767.590|118.049 +637616.361|221761.122|116.425 +637622.228|221758.976|116.065 +637639.742|221752.557|115.184 +637645.448|221750.445|115.297 +637651.202|221748.323|115.239 +637662.575|221744.114|115.443 +637674.020|221739.904|115.175 +637679.765|221737.792|114.980 +637702.598|221729.404|114.227 +637708.176|221727.344|114.276 +637781.855|221700.436|108.741 +637787.403|221698.403|108.460 +637798.406|221694.364|108.034 +637809.940|221690.243|105.409 +637836.765|221680.340|105.485 +637842.191|221678.344|105.345 +637847.558|221676.372|105.196 +637810.778|221691.325|105.946 +637804.892|221693.422|107.555 +637799.299|221695.465|108.183 +637726.055|221722.318|114.005 +637680.619|221739.100|115.257 +637669.186|221743.327|115.483 +637651.983|221749.698|115.672 +637640.559|221753.941|115.535 +637628.888|221758.244|115.940 +637623.057|221760.396|116.163 +637617.165|221762.554|116.653 +637581.659|221775.630|118.339 +637569.997|221779.971|118.040 +637564.109|221782.162|117.888 +637558.278|221784.329|117.784 +637552.325|221786.527|117.964 +637534.424|221793.150|118.223 +637516.554|221799.773|118.241 +637480.301|221813.151|119.454 +637468.285|221817.610|119.400 +637456.221|221822.085|119.339 +637444.176|221826.572|118.951 +637438.180|221828.818|118.476 +637413.501|221837.886|120.101 +637407.307|221840.163|120.448 +637395.021|221844.707|120.677 +637388.818|221846.981|121.152 +637364.138|221856.128|121.180 +637357.945|221858.414|121.362 +637351.678|221860.703|122.009 +637320.497|221872.194|123.283 +637314.303|221874.492|123.286 +637308.082|221876.787|123.466 +637301.813|221879.104|123.581 +637264.170|221892.981|125.041 +637257.827|221895.292|125.840 +637245.129|221899.949|126.797 +637238.856|221902.275|126.797 +637232.550|221904.597|127.047 +637226.249|221906.920|127.276 +637219.894|221909.267|127.489 +637213.609|221911.586|127.647 +637206.770|221913.915|131.616 +637200.363|221916.229|132.811 +637194.126|221918.566|132.268 +637187.784|221920.929|132.094 +637175.265|221925.604|131.412 +637156.465|221932.636|130.162 +637143.987|221937.367|128.175 +637137.827|221939.710|127.010 +637131.530|221942.070|126.520 +637106.228|221951.491|125.691 +637099.888|221953.841|125.666 +637093.475|221956.212|125.770 +637087.120|221958.559|125.931 +637080.664|221960.922|126.523 +637074.276|221963.259|127.126 +637067.823|221965.618|127.760 +637061.392|221967.978|128.248 +637048.624|221972.675|128.906 +637035.795|221977.387|129.708 +637040.007|221979.368|129.068 +637046.432|221977.018|128.592 +637059.091|221972.379|127.861 +637065.446|221970.047|127.574 +637071.755|221967.737|127.163 +637078.165|221965.408|126.376 +637084.487|221963.098|125.922 +637090.851|221960.757|125.700 +637097.130|221958.437|125.724 +637103.433|221956.118|125.541 +637109.718|221953.795|125.563 +637116.064|221951.448|125.575 +637128.558|221946.821|125.858 +637134.757|221944.487|126.706 +637140.991|221942.155|127.242 +637153.301|221937.507|129.162 +637165.670|221932.865|130.561 +637171.839|221930.557|131.122 +637178.073|221928.250|131.183 +637184.260|221925.943|131.610 +637190.387|221923.657|132.058 +637196.656|221921.325|132.341 +637202.810|221919.039|132.604 +637215.822|221914.479|127.858 +637222.129|221912.166|127.532 +637228.365|221909.874|127.291 +637234.601|221907.581|127.093 +637240.779|221905.308|126.882 +637247.025|221903.012|126.678 +637253.246|221900.714|126.651 +637265.788|221896.161|125.142 +637309.167|221880.201|123.865 +637321.500|221875.669|123.435 +637352.327|221864.333|122.426 +637358.597|221862.050|121.753 +637364.736|221859.795|121.521 +637370.883|221857.521|121.615 +637376.870|221855.293|121.923 +637407.453|221844.049|120.881 +637437.985|221832.866|119.031 +637444.112|221830.613|118.830 +637449.988|221828.419|119.278 +637467.886|221821.786|119.701 +637473.879|221819.558|119.942 +637485.812|221815.157|119.829 +637491.978|221812.923|118.976 +637503.914|221808.530|118.677 +637509.879|221806.333|118.561 +637515.819|221804.135|118.595 +637527.722|221799.755|118.314 +637557.257|221788.846|118.238 +637563.112|221786.685|118.232 +637568.906|221784.530|118.513 +637574.682|221782.378|118.878 +637586.417|221778.056|118.601 +637592.153|221775.923|118.912 +637598.030|221773.765|118.644 +637615.647|221767.318|117.501 +637621.594|221765.145|117.031 +637627.446|221763.002|116.726 +637662.078|221750.271|115.681 +637667.799|221748.168|115.513 +637673.511|221746.065|115.404 +637679.201|221743.964|115.407 +637684.810|221741.889|115.489 +637690.455|221739.795|115.693 +637696.057|221737.719|115.824 +637718.566|221729.419|115.654 +637724.248|221727.338|115.340 +637730.033|221725.237|114.654 +637735.626|221723.183|114.468 +637747.120|221719.001|113.258 +637780.935|221706.678|110.216 +637808.891|221696.492|107.616 +637825.762|221690.380|105.363 +637836.375|221686.452|105.562 +637841.782|221684.473|105.245 +637847.131|221682.492|105.348 +637819.571|221694.492|105.854 +637808.062|221698.638|108.158 +637746.187|221721.293|113.450 +637734.706|221725.487|114.657 +637729.039|221727.575|114.895 +637723.288|221729.675|115.468 +637717.478|221731.800|116.038 +637700.659|221738.042|115.839 +637695.057|221740.127|115.715 +637689.403|221742.230|115.547 +637683.731|221744.336|115.462 +637678.071|221746.442|115.355 +637672.383|221748.549|115.367 +637666.607|221750.682|115.486 +637660.846|221752.813|115.574 +637655.122|221754.925|115.782 +637643.467|221759.217|116.327 +637637.575|221761.378|116.760 +637625.962|221765.669|116.995 +637620.110|221767.821|117.333 +637614.178|221769.997|117.763 +637602.270|221774.353|118.863 +637596.424|221776.526|118.735 +637590.642|221778.675|118.619 +637584.768|221780.851|118.625 +637578.788|221783.043|119.125 +637572.975|221785.222|118.631 +637567.084|221787.411|118.516 +637561.247|221789.578|118.442 +637549.393|221793.964|118.589 +637531.471|221800.599|118.747 +637501.652|221811.642|118.869 +637495.580|221813.874|119.223 +637489.417|221816.132|119.741 +637483.370|221818.357|120.037 +637453.320|221829.516|119.649 +637447.303|221831.765|119.284 +637441.289|221834.012|118.903 +637435.154|221836.255|119.515 +637428.878|221838.544|120.226 +637416.695|221843.049|120.448 +637410.447|221845.329|121.091 +637379.646|221856.698|122.006 +637373.526|221858.978|121.747 +637367.403|221861.261|121.530 +637361.218|221863.547|121.670 +637355.015|221865.833|121.957 +637330.061|221875.029|123.091 +637323.816|221877.327|123.389 +637311.362|221881.923|123.853 +637305.141|221884.218|124.069 +637273.801|221895.789|125.084 +637267.535|221898.099|125.358 +637261.271|221900.406|125.651 +637254.971|221902.714|126.203 +637248.643|221905.042|126.556 +637242.343|221907.368|126.757 +637236.034|221909.694|127.041 +637229.745|221912.016|127.193 +637223.393|221914.363|127.394 +637217.096|221916.683|127.666 +637210.726|221919.002|128.507 +637203.850|221921.352|132.375 +637197.604|221923.666|132.378 +637191.344|221926.007|132.052 +637185.092|221928.344|131.671 +637160.004|221937.717|130.372 +637141.314|221944.813|127.196 +637135.090|221947.151|126.599 +637128.811|221949.513|125.971 +637122.480|221951.869|125.797 +637116.165|221954.225|125.529 +637109.767|221956.602|125.450 +637103.497|221958.934|125.343 +637097.093|221961.306|125.368 +637090.735|221963.653|125.578 +637084.353|221966.030|125.428 +637077.879|221968.386|126.248 +637065.068|221973.086|127.269 +637052.245|221977.811|127.858 +637045.311|221984.178|127.660 +637058.097|221979.493|126.870 +637064.452|221977.158|126.593 +637077.126|221972.510|125.931 +637083.517|221970.178|125.368 +637089.793|221967.856|125.413 +637096.148|221965.515|125.282 +637102.427|221963.189|125.352 +637108.764|221960.842|125.447 +637121.322|221956.191|125.642 +637127.570|221953.862|126.072 +637133.867|221951.537|126.035 +637140.064|221949.199|126.928 +637146.209|221946.885|127.718 +637158.572|221942.213|129.726 +637164.677|221939.899|130.857 +637189.579|221930.643|131.835 +637195.779|221928.329|132.216 +637201.951|221926.043|132.320 +637208.236|221923.733|132.046 +637214.509|221921.447|131.445 +637221.248|221919.142|127.846 +637227.530|221916.850|127.266 +637233.766|221914.555|127.065 +637240.011|221912.260|126.821 +637246.186|221909.983|126.660 +637252.450|221907.685|126.334 +637258.668|221905.408|125.931 +637264.980|221903.107|125.340 +637271.140|221900.827|125.380 +637314.489|221884.871|124.020 +637320.634|221882.603|123.938 +637326.916|221880.308|123.411 +637333.109|221878.037|123.097 +637339.184|221875.788|123.136 +637345.399|221873.493|123.109 +637351.562|221871.237|122.658 +637357.780|221868.957|122.280 +637363.949|221866.699|121.859 +637370.131|221864.419|121.759 +637376.141|221862.187|121.935 +637382.222|221859.932|122.097 +637394.457|221855.412|122.039 +637406.679|221850.925|121.448 +637412.745|221848.682|121.448 +637424.851|221844.216|121.283 +637430.966|221841.967|121.088 +637443.371|221837.480|119.186 +637449.342|221835.255|119.464 +637455.319|221833.033|119.738 +637467.240|221828.620|119.869 +637479.170|221824.185|120.341 +637497.159|221817.555|119.939 +637503.234|221815.330|119.570 +637515.234|221810.923|119.040 +637521.208|221808.719|118.912 +637527.139|221806.522|119.022 +637533.028|221804.342|119.043 +637539.060|221802.130|118.717 +637550.798|221797.774|119.046 +637562.594|221793.406|119.171 +637574.259|221789.084|119.390 +637586.070|221784.738|119.043 +637591.937|221782.580|118.796 +637603.535|221778.273|119.195 +637609.408|221776.127|118.708 +637632.957|221767.510|117.028 +637638.806|221765.361|116.763 +637644.671|221763.210|116.446 +637650.419|221761.103|116.102 +637656.213|221758.976|115.858 +637661.995|221756.848|115.678 +637667.765|221754.721|115.562 +637673.471|221752.618|115.474 +637679.201|221750.493|115.547 +637684.773|221748.424|115.760 +637690.461|221746.321|115.791 +637696.136|221744.217|115.885 +637701.757|221742.136|115.946 +637707.386|221740.054|116.004 +637713.007|221737.972|116.105 +637718.609|221735.902|116.047 +637724.291|221733.808|115.961 +637741.280|221727.578|115.041 +637758.245|221721.363|113.907 +637763.893|221719.294|113.599 +637786.598|221711.037|111.018 +637803.274|221704.938|109.792 +637831.254|221694.776|106.318 +637842.050|221690.807|105.909 +637847.607|221688.796|105.104 +637852.965|221686.823|104.964 +637822.363|221700.213|107.247 +637816.642|221702.283|108.293 +637810.997|221704.334|109.100 +637805.459|221706.364|109.558 +637788.713|221712.509|110.829 +637765.847|221720.836|113.803 +637760.193|221722.915|114.148 +637754.731|221724.948|114.053 +637748.906|221727.066|114.824 +637731.932|221733.321|115.663 +637726.226|221735.427|115.839 +637720.606|221737.506|115.967 +637715.012|221739.578|116.001 +637709.304|221741.697|116.004 +637703.625|221743.794|116.153 +637697.925|221745.909|116.150 +637692.317|221747.994|116.068 +637686.687|221750.094|115.833 +637681.027|221752.200|115.739 +637675.254|221754.337|115.833 +637669.518|221756.464|115.815 +637663.833|221758.570|115.861 +637657.978|221760.732|116.096 +637652.208|221762.862|116.257 +637646.387|221765.014|116.403 +637640.544|221767.169|116.644 +637634.682|221769.324|116.976 +637628.742|221771.506|117.400 +637622.890|221773.658|117.754 +637616.934|221775.840|118.287 +637605.086|221780.202|118.897 +637593.415|221784.536|118.836 +637581.421|221788.938|119.701 +637569.677|221793.318|119.287 +637551.908|221799.914|119.201 +637545.970|221802.123|119.080 +637540.011|221804.333|119.073 +637534.031|221806.546|119.180 +637510.089|221815.416|119.345 +637503.950|221817.674|119.726 +637497.863|221819.909|120.174 +637467.725|221831.092|120.098 +637455.667|221835.581|119.777 +637449.674|221837.813|119.604 +637443.652|221840.062|119.299 +637418.829|221849.157|121.436 +637406.463|221853.726|121.765 +637400.300|221856.000|122.024 +637394.164|221858.268|122.155 +637387.961|221860.560|122.350 +637381.853|221862.843|122.015 +637375.699|221865.129|121.957 +637369.564|221867.409|121.817 +637363.300|221869.716|122.067 +637357.079|221872.002|122.460 +637350.791|221874.306|122.914 +637344.527|221876.611|123.246 +637338.303|221878.909|123.371 +637332.082|221881.207|123.496 +637313.380|221888.099|124.267 +637300.773|221892.728|125.011 +637275.801|221901.970|125.227 +637269.525|221904.277|125.572 +637263.219|221906.606|125.730 +637256.949|221908.913|126.081 +637250.542|221911.260|126.544 +637244.306|221913.562|126.709 +637237.939|221915.909|126.977 +637231.599|221918.231|127.510 +637218.465|221922.879|131.625 +637212.116|221925.220|131.909 +637205.806|221927.531|132.393 +637199.540|221929.868|132.076 +637193.172|221932.228|132.094 +637187.031|221934.544|131.326 +637161.866|221943.932|130.129 +637155.673|221946.270|129.269 +637143.197|221950.997|127.257 +637136.940|221953.359|126.428 +637118.009|221960.431|125.361 +637111.681|221962.784|125.191 +637098.949|221967.508|125.072 +637092.604|221969.855|125.157 +637079.848|221974.567|125.392 +637073.432|221976.933|125.645 +637067.012|221979.295|125.934 +637054.214|221983.989|126.892 +637047.859|221986.360|126.559 +637041.437|221988.713|127.044 +637051.077|221988.771|125.761 +637063.843|221984.074|125.221 +637070.131|221981.755|125.069 +637076.464|221979.411|125.060 +637082.807|221977.064|125.011 +637089.089|221974.741|124.947 +637095.438|221972.397|124.874 +637101.732|221970.075|124.749 +637120.621|221963.067|125.054 +637133.124|221958.401|125.773 +637139.296|221956.060|126.852 +637151.683|221951.384|128.614 +637157.828|221949.068|129.406 +637164.040|221946.733|130.122 +637182.657|221939.774|131.433 +637188.802|221937.488|131.717 +637195.050|221935.154|132.177 +637201.244|221932.865|132.091 +637207.477|221930.551|132.219 +637213.673|221928.262|132.168 +637219.952|221925.949|131.973 +637226.173|221923.657|131.793 +637245.455|221916.777|126.910 +637251.746|221914.479|126.373 +637264.179|221909.898|126.005 +637270.409|221907.618|125.557 +637276.673|221905.311|125.313 +637295.150|221898.483|125.200 +637301.343|221896.194|125.124 +637313.752|221891.637|124.496 +637357.003|221875.724|122.847 +637369.277|221871.207|122.359 +637375.443|221868.945|121.972 +637381.591|221866.665|122.088 +637387.617|221864.431|122.188 +637399.763|221859.932|122.301 +637412.019|221855.436|121.530 +637418.036|221853.199|121.795 +637442.509|221844.226|120.216 +637448.626|221841.988|119.717 +637460.470|221837.566|120.494 +637508.461|221819.842|119.957 +637514.466|221817.635|119.653 +637520.467|221815.428|119.375 +637526.374|221813.249|119.281 +637532.364|221811.042|119.125 +637538.188|221808.853|119.732 +637544.178|221806.662|119.308 +637567.620|221797.960|119.890 +637597.076|221787.106|119.022 +637602.821|221784.981|119.046 +637614.675|221780.629|118.421 +637620.512|221778.486|118.116 +637626.379|221776.334|117.702 +637632.192|221774.195|117.540 +637638.062|221772.043|117.156 +637643.869|221769.900|117.071 +637649.566|221767.800|116.918 +637655.320|221765.663|117.059 +637672.682|221759.287|116.214 +637684.106|221755.062|116.239 +637701.022|221748.783|116.644 +637712.364|221744.601|116.428 +637718.128|221742.492|115.986 +637723.718|221740.426|115.986 +637729.353|221738.347|115.830 +637735.001|221736.268|115.644 +637757.605|221727.965|114.568 +637763.244|221725.896|114.282 +637768.840|221723.845|113.928 +637785.833|221717.657|112.029 +637825.140|221703.338|107.829 +637836.238|221699.299|106.558 +637841.630|221697.309|106.482 +637847.134|221695.297|106.055 +637852.791|221693.264|104.912 +637858.174|221691.283|104.699 +637823.000|221706.154|108.335 +637811.747|221710.247|110.054 +637777.923|221722.622|113.709 +637772.336|221724.683|114.023 +637766.789|221726.734|114.215 +637749.876|221732.967|115.178 +637744.307|221735.031|115.288 +637738.659|221737.122|115.474 +637733.026|221739.207|115.614 +637727.372|221741.294|115.849 +637721.685|221743.401|115.992 +637715.997|221745.491|116.391 +637693.237|221753.928|116.760 +637687.699|221756.004|116.437 +637681.960|221758.138|116.419 +637647.310|221770.958|117.476 +637629.845|221777.428|117.805 +637623.999|221779.596|117.876 +637618.156|221781.751|118.229 +637612.252|221783.924|118.580 +637606.296|221786.118|118.909 +637600.383|221788.307|119.076 +637588.401|221792.702|120.149 +637553.127|221805.839|119.576 +637541.163|221810.271|119.787 +637535.262|221812.478|119.555 +637523.387|221816.891|119.482 +637505.176|221823.603|120.500 +637499.043|221825.861|120.896 +637474.833|221834.810|121.740 +637456.935|221841.525|120.497 +637450.982|221843.771|119.829 +637444.877|221846.033|119.951 +637426.153|221852.882|121.984 +637413.979|221857.408|121.948 +637407.786|221859.685|122.371 +637401.647|221861.959|122.515 +637395.420|221864.257|122.832 +637389.360|221866.519|122.573 +637383.298|221868.802|122.003 +637377.150|221871.088|121.929 +637370.804|221873.407|122.652 +637364.681|221875.669|122.847 +637358.454|221877.976|122.938 +637352.208|221880.262|123.542 +637333.564|221887.169|123.828 +637327.340|221889.470|124.029 +637314.812|221894.088|124.609 +637302.282|221898.703|125.319 +637296.070|221901.016|125.163 +637271.055|221910.288|125.462 +637258.263|221914.927|127.526 +637252.097|221917.256|126.779 +637232.626|221924.227|131.726 +637226.274|221926.567|132.000 +637220.074|221928.866|132.082 +637213.795|221931.207|131.866 +637207.489|221933.547|131.875 +637201.170|221935.888|131.991 +637194.861|221938.226|132.061 +637188.652|221940.543|131.842 +637182.361|221942.905|131.311 +637176.085|221945.243|131.165 +637163.579|221949.946|130.004 +637157.383|221952.287|129.205 +637151.140|221954.652|128.284 +637145.002|221957.002|126.940 +637138.702|221959.361|126.517 +637132.429|221961.726|125.834 +637126.116|221964.085|125.544 +637119.743|221966.466|125.258 +637113.467|221968.798|125.209 +637107.152|221971.154|124.965 +637100.797|221973.537|124.526 +637094.460|221975.887|124.532 +637088.059|221978.262|124.593 +637081.713|221980.609|124.724 +637075.388|221982.962|124.648 +637062.614|221987.704|124.621 +637056.213|221990.073|124.801 +637043.387|221994.794|125.508 +637037.694|222000.604|124.682 +637050.425|221995.903|124.538 +637056.735|221993.596|124.103 +637063.145|221991.234|123.917 +637069.494|221988.893|123.798 +637075.800|221986.546|124.142 +637082.121|221984.199|124.322 +637088.400|221981.877|124.337 +637094.734|221979.533|124.435 +637101.050|221977.213|124.115 +637107.347|221974.860|124.618 +637113.589|221972.528|125.041 +637119.871|221970.203|125.127 +637126.189|221967.853|125.441 +637132.435|221965.521|125.877 +637138.689|221963.189|126.245 +637144.862|221960.851|127.334 +637151.110|221958.520|127.757 +637163.424|221953.868|129.665 +637182.053|221946.885|131.439 +637188.290|221944.575|131.479 +637194.462|221942.262|132.073 +637200.704|221939.948|132.094 +637206.968|221937.638|131.973 +637213.228|221935.324|131.915 +637219.437|221933.032|131.777 +637225.704|221930.716|131.723 +637231.885|221928.424|131.854 +637238.085|221926.129|131.854 +637244.315|221923.833|131.677 +637250.573|221921.535|131.311 +637263.664|221916.957|126.218 +637269.930|221914.653|125.934 +637300.919|221903.208|125.532 +637307.137|221900.918|125.297 +637313.371|221898.626|124.996 +637319.555|221896.356|124.645 +637325.691|221894.088|124.630 +637331.945|221891.793|124.279 +637356.704|221882.685|123.185 +637362.782|221880.415|123.648 +637375.123|221875.873|123.136 +637381.335|221873.605|122.515 +637387.419|221871.347|122.661 +637393.430|221869.094|123.219 +637399.550|221866.833|123.173 +637423.961|221857.847|122.256 +637448.601|221848.837|120.198 +637454.505|221846.637|120.506 +637478.256|221837.761|122.140 +637520.580|221822.225|119.741 +637532.477|221817.821|119.768 +637538.441|221815.617|119.729 +637550.295|221811.228|119.768 +637591.355|221796.009|120.265 +637603.251|221791.654|119.351 +637609.122|221789.493|119.131 +637615.029|221787.325|118.766 +637620.875|221785.167|118.692 +637626.629|221783.037|118.738 +637718.615|221749.094|116.345 +637724.269|221747.015|116.096 +637729.841|221744.934|116.400 +637735.486|221742.855|116.214 +637741.268|221740.749|115.541 +637746.885|221738.682|115.254 +637752.463|221736.625|115.135 +637758.142|221734.534|114.901 +637774.976|221728.340|114.096 +637780.569|221726.298|113.547 +637786.177|221724.238|113.197 +637802.923|221718.108|111.853 +637808.501|221716.075|111.231 +637819.839|221711.970|109.426 +637831.077|221707.879|108.058 +637842.117|221703.847|107.000 +637847.573|221701.841|106.720 +637853.112|221699.829|105.961 +637858.769|221697.793|104.821 +637831.513|221709.467|107.985 +637825.923|221711.503|108.799 +637797.641|221721.799|112.721 +637780.892|221727.969|113.703 +637764.021|221734.189|114.596 +637758.389|221736.265|114.892 +637752.732|221738.359|115.050 +637747.099|221740.432|115.376 +637724.434|221748.808|116.190 +637718.719|221750.917|116.440 +637695.874|221759.366|117.095 +637620.536|221787.246|118.948 +637614.724|221789.407|118.909 +637608.817|221791.580|119.296 +637602.888|221793.769|119.512 +637596.899|221795.966|120.027 +637543.526|221815.779|120.192 +637537.634|221817.982|119.902 +637525.634|221822.426|120.085 +637501.399|221831.351|121.545 +637495.312|221833.600|121.728 +637489.234|221835.850|121.890 +637459.141|221847.060|121.213 +637453.216|221849.304|120.384 +637447.077|221851.568|120.680 +637434.693|221856.119|121.579 +637397.648|221869.783|123.325 +637391.494|221872.072|123.243 +637385.334|221874.361|123.210 +637379.144|221876.653|123.383 +637366.747|221881.250|123.517 +637360.535|221883.557|123.508 +637354.299|221885.846|124.045 +637335.624|221892.759|124.499 +637329.382|221895.082|124.429 +637323.109|221897.386|124.947 +637316.858|221899.705|124.962 +637310.630|221902.004|125.258 +637273.137|221915.921|125.505 +637253.550|221922.895|131.250 +637247.180|221925.242|131.585 +637240.901|221927.567|131.713 +637234.671|221929.893|131.506 +637228.343|221932.240|131.585 +637222.016|221934.584|131.692 +637215.691|221936.928|131.811 +637209.431|221939.247|131.912 +637203.036|221941.612|132.140 +637196.803|221943.929|132.091 +637190.463|221946.294|131.930 +637177.899|221951.000|131.189 +637165.402|221955.709|129.900 +637159.108|221958.072|129.409 +637140.393|221965.183|126.398 +637134.178|221967.523|125.736 +637127.787|221969.907|125.590 +637115.159|221974.628|124.993 +637108.773|221977.009|124.837 +637102.500|221979.374|124.154 +637089.763|221984.108|124.145 +637083.356|221986.482|124.249 +637076.986|221988.860|124.002 +637070.630|221991.243|123.584 +637057.847|221995.989|123.618 +637051.486|221998.333|123.993 +637045.027|222000.725|124.142 +637042.659|222005.203|123.560 +637055.326|222000.527|123.429 +637061.678|221998.193|123.188 +637067.988|221995.846|123.444 +637074.315|221993.505|123.487 +637086.885|221988.832|123.953 +637093.207|221986.485|124.127 +637099.498|221984.166|123.993 +637112.053|221979.487|124.706 +637118.307|221977.161|124.965 +637124.611|221974.808|125.386 +637130.816|221972.504|125.578 +637137.132|221970.151|125.913 +637143.255|221967.837|126.879 +637149.446|221965.503|127.779 +637155.636|221963.168|128.662 +637161.818|221960.830|129.641 +637168.023|221958.526|129.866 +637192.788|221949.263|131.890 +637198.942|221946.977|132.107 +637205.191|221944.670|132.055 +637211.454|221942.359|131.924 +637217.663|221940.073|131.759 +637223.936|221937.763|131.607 +637230.142|221935.474|131.515 +637236.357|221933.182|131.375 +637242.572|221930.890|131.262 +637248.789|221928.597|131.165 +637254.904|221926.327|131.372 +637261.152|221924.031|131.092 +637280.528|221917.173|125.249 +637317.513|221903.497|125.325 +637342.229|221894.384|124.871 +637348.404|221892.110|124.657 +637360.755|221887.583|123.917 +637366.875|221885.313|124.103 +637391.293|221876.294|123.923 +637403.552|221871.773|123.685 +637421.883|221865.046|122.783 +637428.000|221862.800|122.490 +637452.539|221853.827|120.576 +637494.261|221838.322|122.195 +637530.456|221825.057|119.970 +637536.390|221822.859|120.040 +637542.300|221820.664|120.244 +637548.146|221818.491|120.463 +637554.026|221816.315|120.546 +637565.837|221811.950|120.524 +637571.628|221809.795|120.771 +637577.578|221807.604|120.622 +637583.348|221805.452|120.991 +637589.264|221803.279|120.735 +637601.142|221798.935|119.826 +637607.073|221796.756|119.589 +637612.880|221794.622|119.345 +637618.650|221792.480|119.555 +637641.882|221783.912|119.140 +637659.267|221777.505|118.741 +637676.827|221771.086|117.336 +637693.963|221764.755|117.272 +637699.626|221762.655|117.379 +637716.628|221756.385|117.046 +637722.459|221754.267|116.367 +637728.015|221752.194|116.714 +637762.074|221739.709|114.660 +637767.682|221737.646|114.477 +637773.315|221735.576|114.224 +637778.899|221733.528|113.931 +637790.015|221729.447|113.349 +637795.635|221727.389|112.983 +637801.140|221725.375|112.590 +637806.760|221723.314|112.270 +637823.750|221717.160|109.844 +637829.428|221715.106|108.951 +637835.064|221713.073|108.009 +637840.615|221711.043|107.598 +637857.062|221705.032|106.287 +637862.792|221702.984|104.925 +637805.736|221725.076|112.325 +637800.213|221727.115|112.572 +637794.617|221729.166|113.090 +637789.000|221731.233|113.471 +637783.391|221733.296|113.843 +637777.811|221735.366|113.901 +637772.236|221737.423|114.191 +637766.621|221739.499|114.407 +637760.858|221741.599|115.178 +637749.464|221745.784|116.071 +637726.997|221754.111|116.443 +637721.374|221756.202|116.364 +637715.589|221758.324|116.906 +637698.443|221764.666|117.394 +637675.657|221773.131|117.415 +637658.091|221779.590|118.695 +637640.601|221786.051|119.342 +637617.339|221794.686|119.461 +637611.411|221796.890|119.412 +637605.543|221799.057|119.665 +637599.615|221801.246|119.927 +637593.568|221803.449|120.713 +637587.630|221805.653|120.786 +637581.860|221807.814|120.418 +637569.915|221812.237|120.680 +637564.011|221814.431|120.686 +637552.225|221818.827|120.351 +637546.318|221821.018|120.427 +637540.410|221823.222|120.223 +637528.511|221827.654|119.963 +637522.433|221829.894|120.317 +637498.144|221838.834|121.881 +637485.927|221843.336|122.551 +637456.002|221854.540|120.872 +637425.141|221865.897|122.899 +637418.978|221868.174|123.139 +637400.431|221875.017|123.975 +637369.509|221886.462|124.767 +637357.265|221891.043|124.130 +637350.992|221893.350|124.566 +637332.381|221900.236|125.124 +637319.927|221904.853|125.264 +637313.624|221907.173|125.648 +637301.182|221911.806|125.462 +637288.749|221916.433|125.279 +637282.491|221918.746|125.483 +637262.926|221925.723|130.991 +637256.656|221928.052|131.022 +637250.402|221930.377|130.982 +637244.068|221932.724|131.070 +637237.820|221935.026|131.448 +637231.516|221937.373|131.363 +637225.186|221939.717|131.512 +637218.721|221942.054|132.716 +637212.506|221944.374|132.482 +637206.236|221946.718|132.229 +637199.890|221949.080|132.116 +637193.678|221951.396|131.909 +637168.618|221960.809|129.976 +637149.906|221967.886|127.550 +637143.636|221970.251|126.852 +637137.388|221972.617|125.956 +637131.075|221974.979|125.624 +637118.466|221979.700|124.916 +637112.096|221982.084|124.606 +637099.458|221986.796|124.200 +637086.703|221991.554|123.825 +637080.317|221993.931|123.740 +637073.968|221996.312|123.292 +637067.649|221998.668|123.164 +637061.273|222001.042|123.033 +637054.823|222003.435|123.057 +637048.423|222005.803|123.216 +637035.624|222010.577|122.874 +637042.138|222011.573|122.548 +637048.462|222009.229|122.597 +637054.778|222006.885|122.758 +637061.127|222004.548|122.539 +637067.430|222002.198|122.899 +637073.764|221999.854|122.893 +637080.122|221997.479|123.319 +637086.389|221995.154|123.386 +637098.946|221990.475|124.011 +637117.777|221983.468|124.795 +637124.074|221981.112|125.240 +637130.338|221978.783|125.474 +637136.592|221976.454|125.782 +637142.795|221974.116|126.587 +637148.989|221971.779|127.471 +637155.264|221969.419|128.132 +637167.581|221964.768|129.949 +637179.981|221960.123|131.052 +637186.180|221957.816|131.320 +637192.350|221955.502|131.881 +637198.561|221953.192|132.098 +637204.749|221950.881|132.497 +637236.034|221939.369|131.229 +637242.258|221937.077|131.025 +637248.475|221934.782|130.881 +637254.614|221932.511|130.891 +637260.853|221930.213|130.653 +637267.023|221927.918|130.933 +637273.216|221925.641|130.607 +637286.338|221921.051|125.520 +637292.519|221918.768|125.425 +637298.722|221916.485|125.215 +637310.941|221911.916|126.069 +637317.086|221909.651|125.889 +637323.258|221907.365|125.947 +637347.932|221898.267|125.340 +637360.365|221893.713|124.414 +637409.240|221875.657|123.804 +637415.387|221873.392|123.609 +637421.450|221871.152|123.560 +637427.598|221868.902|123.075 +637433.809|221866.644|122.277 +637452.049|221859.935|121.497 +637458.114|221857.704|121.241 +637463.994|221855.491|121.969 +637469.959|221853.266|122.277 +637481.901|221848.834|122.533 +637499.966|221842.183|121.871 +637530.087|221831.122|120.250 +637536.049|221828.903|120.454 +637541.922|221826.727|120.509 +637547.787|221824.551|120.625 +637553.675|221822.356|120.927 +637559.531|221820.180|121.113 +637583.083|221811.478|120.887 +637588.938|221809.295|121.155 +637600.868|221804.928|120.262 +637612.660|221800.590|119.768 +637618.458|221798.454|119.558 +637641.559|221789.892|119.854 +637647.347|221787.770|119.521 +637659.027|221783.476|119.031 +637664.812|221781.348|118.784 +637670.658|221779.212|118.302 +637676.489|221777.075|117.918 +637688.059|221772.826|117.309 +637699.327|221768.653|117.449 +637704.860|221766.575|118.061 +637716.335|221762.359|117.498 +637722.206|221760.232|116.629 +637727.817|221758.150|116.754 +637767.286|221743.632|115.291 +637772.958|221741.566|114.626 +637778.685|221739.481|114.029 +637784.272|221737.430|113.721 +637789.865|221735.378|113.410 +637806.465|221729.273|112.752 +637823.302|221723.150|110.761 +637845.818|221714.996|107.454 +637851.136|221713.033|107.390 +637862.152|221709.016|106.278 +637867.861|221706.974|104.976 +637825.122|221724.107|110.252 +637808.135|221730.291|112.535 +637791.542|221736.418|113.169 +637785.946|221738.475|113.502 +637780.356|221740.532|113.825 +637774.567|221742.639|114.651 +637768.852|221744.729|115.230 +637751.842|221750.981|116.388 +637729.158|221759.363|117.092 +637723.650|221761.433|116.580 +637712.056|221765.672|117.799 +637706.332|221767.791|117.921 +637700.729|221769.888|117.589 +637695.021|221772.015|117.431 +637689.357|221774.121|117.363 +637683.517|221776.255|118.010 +637666.089|221782.686|118.695 +637648.502|221789.160|119.686 +637642.671|221791.312|119.936 +637625.139|221797.804|120.183 +637619.467|221799.941|119.570 +637613.584|221802.108|119.869 +637607.552|221804.327|120.290 +637601.700|221806.500|120.229 +637595.747|221808.689|120.619 +637589.715|221810.902|121.103 +637583.768|221813.102|121.244 +637577.892|221815.291|121.088 +637571.970|221817.485|121.149 +637565.998|221819.701|121.167 +637560.098|221821.890|121.180 +637548.293|221826.297|120.686 +637542.376|221828.501|120.533 +637536.387|221830.729|120.445 +637530.459|221832.930|120.372 +637524.427|221835.161|120.512 +637500.079|221844.116|122.082 +637487.902|221848.609|122.573 +637481.880|221850.846|122.524 +637475.845|221853.086|122.548 +637469.788|221855.342|122.387 +637463.857|221857.567|121.929 +637457.837|221859.834|121.298 +637433.276|221868.890|122.420 +637414.638|221875.742|123.609 +637408.478|221878.016|123.883 +637402.238|221880.308|124.279 +637383.627|221887.178|125.035 +637371.344|221891.747|124.935 +637358.996|221896.353|124.548 +637352.754|221898.639|125.182 +637334.048|221905.564|125.581 +637327.843|221907.862|125.694 +637321.542|221910.181|126.047 +637315.291|221912.501|126.133 +637309.067|221914.796|126.450 +637302.962|221917.106|125.596 +637296.774|221919.420|125.304 +637290.453|221921.758|125.514 +637277.230|221926.409|130.424 +637270.985|221928.716|130.668 +637264.749|221931.045|130.442 +637258.461|221933.371|130.586 +637252.173|221935.696|130.759 +637245.909|221938.022|130.784 +637239.523|221940.369|131.272 +637201.646|221954.371|132.500 +637195.407|221956.712|132.015 +637189.131|221959.077|131.366 +637182.852|221961.415|131.226 +637170.328|221966.118|130.235 +637139.125|221977.929|125.938 +637132.819|221980.292|125.566 +637126.506|221982.651|125.276 +637120.225|221985.016|124.685 +637113.845|221987.396|124.462 +637107.530|221989.753|124.228 +637101.144|221992.133|124.097 +637094.835|221994.489|123.798 +637088.522|221996.845|123.575 +637082.103|221999.250|123.185 +637069.414|222003.981|122.819 +637063.050|222006.361|122.496 +637056.689|222008.739|122.173 +637050.273|222011.104|122.536 +637037.538|222015.856|122.115 +637034.874|222020.300|121.615 +637041.242|222017.928|121.865 +637047.630|222015.563|121.862 +637053.897|222013.241|121.868 +637060.252|222010.866|122.304 +637072.892|222006.169|122.609 +637079.211|222003.819|122.789 +637085.523|222001.469|123.021 +637091.796|221999.110|123.716 +637098.087|221996.784|123.600 +637104.387|221994.431|123.993 +637110.700|221992.078|124.313 +637116.960|221989.747|124.514 +637123.276|221987.393|124.807 +637129.490|221985.056|125.480 +637135.751|221982.724|125.736 +637142.054|221980.368|126.148 +637148.144|221978.048|127.410 +637154.445|221975.689|127.876 +637160.519|221973.367|129.269 +637166.737|221971.032|129.888 +637191.560|221961.738|131.884 +637197.842|221959.407|132.018 +637203.981|221957.118|132.344 +637210.442|221954.792|131.089 +637216.743|221952.506|130.208 +637223.070|221950.196|129.620 +637229.249|221947.900|129.720 +637235.467|221945.584|130.019 +637247.735|221940.994|130.985 +637254.008|221938.699|130.476 +637260.232|221936.403|130.354 +637266.443|221934.105|130.339 +637272.625|221931.828|130.122 +637278.797|221929.530|130.421 +637316.388|221915.823|126.483 +637334.969|221908.974|125.925 +637353.437|221902.162|125.517 +637359.688|221899.882|124.849 +637371.844|221895.362|125.279 +637384.100|221890.830|125.209 +637390.232|221888.571|125.002 +637402.458|221884.072|124.523 +637408.673|221881.783|124.276 +637420.865|221877.299|123.786 +637451.445|221866.068|122.109 +637457.486|221863.839|121.981 +637463.567|221861.605|121.670 +637475.363|221857.189|122.652 +637481.416|221854.955|122.545 +637487.366|221852.748|122.655 +637493.328|221850.538|122.716 +637505.453|221846.091|121.929 +637511.454|221843.875|121.862 +637517.575|221841.641|121.247 +637523.607|221839.434|120.792 +637541.428|221832.838|120.829 +637559.104|221826.282|121.119 +637564.993|221824.084|121.451 +637594.494|221813.197|120.881 +637600.435|221811.018|120.539 +637606.217|221808.856|120.908 +637618.010|221804.547|119.902 +637623.892|221802.370|119.896 +637629.501|221800.264|120.518 +637641.098|221795.973|120.488 +637646.954|221793.824|120.131 +637652.824|221791.672|119.735 +637658.588|221789.550|119.543 +637687.647|221778.882|117.903 +637693.271|221776.788|118.125 +637704.600|221772.576|118.543 +637710.273|221770.485|118.366 +637722.017|221766.221|116.815 +637727.665|221764.130|116.797 +637750.080|221755.833|116.836 +637767.133|221749.582|115.745 +637784.074|221743.388|114.312 +637789.875|221741.297|113.246 +637795.455|221739.243|112.990 +637801.000|221737.210|112.657 +637806.468|221735.189|112.596 +637823.360|221729.029|110.850 +637828.849|221727.014|110.576 +637845.626|221720.909|108.576 +637851.261|221718.873|107.662 +637856.787|221716.855|107.131 +637862.301|221714.850|106.449 +637867.992|221712.799|105.418 +637827.527|221729.511|110.679 +637810.766|221735.643|112.441 +637805.319|221737.667|112.429 +637799.747|221739.725|112.636 +637794.172|221741.782|112.877 +637788.408|221743.873|113.813 +637765.740|221752.194|115.690 +637731.606|221764.770|117.595 +637726.183|221766.828|116.775 +637720.435|221768.940|117.199 +637714.452|221771.104|118.290 +637697.465|221777.413|118.281 +637691.787|221779.535|118.031 +637686.038|221781.668|118.074 +637680.293|221783.799|118.122 +637662.718|221790.255|119.509 +637639.273|221798.896|120.753 +637633.454|221801.057|120.744 +637627.803|221803.193|120.046 +637621.987|221805.367|119.787 +637604.138|221811.938|120.829 +637598.252|221814.133|120.677 +637592.275|221816.324|121.207 +637568.477|221825.136|121.701 +637562.591|221827.340|121.372 +637544.797|221833.960|121.103 +637538.914|221836.161|120.820 +637532.949|221838.386|120.646 +637526.944|221840.614|120.677 +637514.874|221845.073|121.088 +637508.754|221847.313|121.743 +637502.557|221849.575|122.496 +637496.495|221851.818|122.615 +637490.463|221854.058|122.612 +637484.443|221856.299|122.560 +637478.441|221858.533|122.438 +637466.396|221863.038|121.811 +637460.352|221865.290|121.643 +637448.047|221869.835|122.155 +637435.745|221874.370|122.734 +637423.266|221878.955|123.719 +637417.207|221881.201|123.780 +637404.732|221885.791|124.575 +637386.172|221892.658|125.054 +637361.425|221901.851|124.907 +637355.153|221904.158|125.337 +637330.241|221913.357|126.276 +637317.708|221917.993|126.605 +637311.411|221920.310|127.001 +637286.070|221929.564|129.964 +637279.864|221931.871|129.903 +637273.585|221934.200|129.936 +637267.303|221936.525|130.022 +637261.018|221938.851|130.147 +637248.387|221943.523|130.470 +637242.230|221945.849|129.741 +637223.384|221952.860|129.458 +637210.592|221957.535|130.851 +637204.045|221959.888|132.335 +637197.799|221962.229|131.921 +637191.511|221964.567|131.851 +637172.726|221971.632|130.052 +637166.426|221973.994|129.620 +637153.996|221978.704|127.803 +637141.490|221983.437|126.093 +637135.178|221985.796|125.791 +637128.887|221988.158|125.279 +637122.538|221990.542|124.752 +637116.232|221992.901|124.426 +637109.907|221995.257|124.267 +637103.558|221997.641|123.746 +637097.218|221999.991|123.798 +637090.854|222002.371|123.466 +637084.496|222004.752|123.072 +637078.132|222007.129|122.777 +637071.776|222009.513|122.344 +637052.669|222016.642|121.676 +637046.289|222019.013|121.579 +637039.873|222021.415|121.216 +637033.481|222023.784|121.320 +637034.307|222026.865|120.655 +637040.586|222024.503|121.274 +637046.935|222022.125|121.765 +637053.260|222019.779|121.804 +637059.633|222017.404|122.015 +637072.249|222012.698|122.542 +637078.577|222010.348|122.624 +637084.874|222007.992|123.030 +637091.177|222005.636|123.392 +637097.499|222003.286|123.548 +637110.050|221998.595|124.234 +637116.317|221996.263|124.377 +637122.629|221993.907|124.700 +637128.841|221991.569|125.386 +637135.090|221989.234|125.733 +637141.329|221986.897|126.181 +637153.725|221982.215|127.843 +637159.885|221979.871|128.982 +637166.109|221977.533|129.571 +637172.339|221975.195|130.110 +637190.917|221968.228|131.637 +637197.171|221965.893|132.000 +637203.353|221963.576|132.460 +637216.130|221958.962|130.129 +637228.642|221954.353|129.586 +637234.793|221952.055|129.912 +637241.169|221949.738|129.007 +637247.317|221947.440|129.400 +637259.662|221942.841|129.866 +637265.846|221940.539|130.019 +637272.024|221938.260|129.818 +637278.230|221935.955|129.854 +637284.469|221933.651|129.693 +637290.614|221931.371|129.787 +637303.154|221926.796|128.352 +637309.442|221924.507|127.583 +637315.690|221922.215|127.096 +637321.868|221919.926|127.090 +637334.265|221915.363|126.492 +637359.005|221906.259|125.176 +637365.141|221903.963|125.578 +637371.213|221901.711|125.645 +637395.703|221892.652|125.264 +637414.089|221885.877|124.508 +637420.237|221883.609|124.316 +637426.266|221881.384|124.100 +637438.610|221876.873|122.896 +637444.761|221874.614|122.448 +637456.755|221870.161|122.585 +637462.961|221867.896|121.926 +637468.953|221865.665|122.076 +637474.851|221863.465|122.399 +637480.865|221861.230|122.472 +637486.817|221859.021|122.551 +637492.764|221856.811|122.673 +637498.738|221854.595|122.676 +637504.715|221852.379|122.704 +637510.802|221850.148|122.204 +637540.788|221839.096|121.006 +637593.839|221819.433|120.978 +637599.737|221817.254|120.808 +637623.210|221808.582|120.287 +637628.979|221806.446|120.216 +637634.652|221804.312|120.841 +637646.182|221800.039|120.817 +637657.917|221795.747|119.790 +637663.702|221793.604|119.768 +637681.164|221787.194|118.616 +637692.725|221782.930|118.278 +637698.315|221780.854|118.375 +637703.890|221778.767|118.811 +637721.291|221772.396|117.336 +637727.028|221770.290|116.964 +637738.046|221766.157|117.991 +637743.712|221764.072|117.699 +637749.373|221761.987|117.446 +637755.139|221759.884|116.818 +637760.879|221757.784|116.321 +637766.460|221755.724|116.178 +637789.198|221747.409|114.090 +637794.907|221745.333|113.358 +637800.658|221743.245|112.496 +637806.245|221741.191|112.246 +637811.817|221739.149|111.834 +637828.334|221733.074|110.947 +637833.821|221731.056|110.688 +637839.344|221729.029|110.304 +637862.009|221720.836|106.427 +637873.195|221716.776|104.787 +637839.972|221730.858|110.188 +637834.485|221732.876|110.673 +637829.023|221734.897|110.874 +637823.555|221736.917|111.109 +637817.916|221738.984|111.728 +637812.469|221741.011|111.697 +637806.925|221743.056|112.029 +637801.289|221745.120|112.697 +637795.495|221747.220|113.712 +637789.807|221749.301|114.386 +637767.255|221757.613|115.867 +637755.770|221761.820|117.141 +637750.101|221763.914|117.415 +637744.420|221766.011|117.769 +637727.753|221772.250|117.013 +637722.032|221774.371|117.089 +637716.104|221776.517|118.232 +637698.974|221782.875|118.528 +637693.350|221784.978|118.314 +637687.660|221787.103|118.138 +637681.820|221789.255|118.577 +637675.925|221791.425|118.985 +637658.347|221797.899|120.195 +637646.643|221802.218|120.893 +637640.787|221804.388|121.021 +637635.018|221806.546|120.805 +637629.315|221808.692|120.338 +637623.347|221810.893|120.722 +637599.853|221819.622|120.872 +637593.915|221821.826|120.969 +637564.145|221832.856|121.811 +637558.183|221835.069|121.844 +637552.298|221837.276|121.545 +637546.406|221839.480|121.295 +637540.423|221841.711|121.201 +637534.555|221843.912|120.869 +637528.499|221846.149|121.149 +637522.424|221848.386|121.533 +637498.101|221857.381|122.548 +637492.072|221859.624|122.524 +637486.061|221861.864|122.429 +637479.987|221864.129|122.365 +637473.985|221866.366|122.259 +637467.935|221868.625|122.100 +637461.766|221870.893|122.585 +637443.441|221877.693|122.883 +637430.960|221882.286|123.831 +637424.787|221884.566|124.142 +637418.624|221886.843|124.453 +637412.412|221889.138|124.688 +637406.228|221891.433|124.807 +637400.114|221893.704|124.901 +637393.887|221895.996|125.300 +637387.590|221898.309|125.794 +637362.995|221907.481|125.221 +637356.747|221909.788|125.553 +637350.447|221912.096|126.212 +637331.744|221919.018|126.782 +637325.584|221921.313|126.675 +637319.250|221923.632|127.309 +637313.005|221925.949|127.413 +637293.970|221932.919|129.446 +637287.773|221935.227|129.327 +637281.461|221937.559|129.586 +637275.203|221939.890|129.501 +637268.943|221942.198|129.894 +637262.691|221944.548|129.367 +637256.611|221946.855|128.507 +637250.256|221949.202|128.751 +637243.937|221951.528|129.202 +637231.215|221956.218|129.927 +637218.611|221960.906|129.866 +637199.457|221967.917|131.933 +637193.191|221970.258|131.738 +637187.019|221972.601|130.747 +637168.167|221979.670|129.616 +637149.443|221986.744|127.394 +637143.142|221989.134|126.459 +637136.934|221991.478|125.773 +637124.288|221996.227|124.886 +637118.012|221998.592|124.276 +637111.611|222000.966|124.295 +637105.301|222003.325|124.051 +637099.029|222005.691|123.405 +637092.643|222008.068|123.338 +637086.364|222010.430|122.789 +637079.927|222012.832|122.646 +637073.593|222015.182|122.701 +637067.220|222017.557|122.566 +637060.849|222019.934|122.399 +637041.720|222027.097|121.405 +637035.350|222029.471|121.268 +637039.477|222031.358|121.445 +637045.853|222028.990|121.612 +637058.521|222024.262|122.295 +637064.885|222021.888|122.640 +637071.185|222019.535|123.027 +637083.859|222014.844|123.024 +637090.189|222012.497|123.085 +637096.535|222010.150|123.045 +637102.820|222007.791|123.624 +637115.375|222003.106|124.368 +637121.700|222000.753|124.581 +637127.982|221998.394|125.240 +637134.175|221996.083|125.553 +637140.454|221993.724|126.230 +637165.274|221984.370|129.373 +637171.593|221982.014|129.693 +637183.971|221977.362|130.997 +637190.234|221975.028|131.278 +637196.397|221972.711|131.890 +637202.655|221970.376|132.226 +637215.392|221965.762|130.202 +637221.629|221963.470|129.827 +637227.889|221961.153|129.763 +637234.132|221958.834|129.854 +637240.346|221956.538|129.705 +637246.644|221954.219|129.431 +637259.140|221949.623|128.781 +637271.430|221945.017|129.720 +637277.669|221942.716|129.534 +637283.933|221940.411|129.202 +637290.084|221938.129|129.260 +637296.341|221935.821|129.028 +637308.811|221931.249|128.108 +637315.065|221928.960|127.568 +637321.265|221926.668|127.413 +637327.519|221924.376|126.934 +637333.713|221922.084|126.864 +637346.036|221917.521|126.828 +637352.230|221915.244|126.437 +637358.445|221912.967|125.965 +637364.665|221910.687|125.462 +637395.255|221899.340|125.697 +637401.467|221897.051|125.404 +637407.533|221894.810|125.264 +637419.871|221890.275|124.587 +637426.004|221888.025|124.148 +637432.139|221885.755|124.051 +637444.438|221881.247|123.133 +637468.727|221872.292|122.219 +637474.711|221870.064|122.417 +637480.721|221867.832|122.505 +637486.705|221865.601|122.737 +637492.764|221863.364|122.615 +637504.627|221858.944|123.066 +637522.875|221852.251|121.676 +637534.900|221847.819|121.265 +637546.775|221843.415|121.320 +637558.522|221839.038|121.762 +637564.371|221836.862|121.975 +637594.034|221825.910|121.125 +637599.871|221823.743|121.210 +637605.613|221821.588|121.731 +637629.193|221812.898|120.799 +637634.984|221810.761|120.655 +637640.669|221808.637|120.963 +637652.352|221804.312|120.878 +637675.711|221795.732|119.378 +637681.463|221793.616|119.025 +637692.994|221789.368|118.537 +637698.642|221787.255|118.900 +637721.715|221778.779|117.437 +637727.403|221776.679|117.239 +637749.815|221768.348|117.674 +637755.408|221766.288|117.440 +637761.156|221764.185|116.894 +637772.586|221760.003|115.876 +637806.593|221747.570|112.484 +637812.277|221745.507|111.676 +637817.855|221743.462|111.252 +637823.406|221741.419|110.954 +637828.889|221739.389|110.890 +637839.932|221735.336|110.124 +637862.569|221727.155|106.083 +637873.430|221723.159|105.504 +637879.068|221721.126|104.449 +637826.576|221741.776|110.853 +637821.065|221743.818|111.014 +637815.478|221745.869|111.453 +637809.751|221747.960|112.179 +637803.950|221750.064|113.188 +637786.833|221756.324|115.129 +637775.528|221760.491|115.846 +637764.189|221764.670|116.519 +637758.434|221766.779|117.077 +637752.677|221768.885|117.674 +637746.934|221770.991|118.241 +637730.100|221777.282|117.604 +637724.550|221779.361|117.281 +637701.351|221787.895|118.970 +637689.879|221792.160|118.936 +637684.237|221794.263|118.827 +637660.691|221802.916|120.716 +637654.808|221805.092|120.908 +637643.147|221809.426|120.920 +637637.358|221811.584|120.768 +637631.558|221813.745|120.701 +637596.186|221826.867|121.161 +637566.319|221837.916|122.097 +637560.381|221840.129|122.015 +637554.456|221842.336|121.896 +637548.567|221844.539|121.615 +637530.681|221851.202|121.329 +637524.543|221853.461|121.719 +637518.559|221855.689|121.682 +637506.282|221860.188|122.890 +637476.076|221871.435|122.493 +637470.084|221873.669|122.350 +637445.486|221882.761|123.292 +637433.096|221887.324|124.072 +637420.679|221891.902|124.770 +637408.282|221896.474|125.453 +637402.107|221898.764|125.541 +637395.908|221901.059|125.785 +637389.726|221903.348|125.959 +637365.019|221912.550|125.627 +637358.771|221914.857|125.950 +637346.228|221919.472|126.931 +637333.774|221924.092|127.093 +637327.571|221926.391|127.251 +637315.029|221931.030|127.724 +637308.668|221933.371|128.202 +637296.116|221938.001|128.909 +637289.874|221940.314|129.062 +637283.589|221942.649|129.129 +637277.246|221944.980|129.632 +637270.958|221947.312|129.751 +637264.670|221949.641|129.921 +637258.476|221951.973|129.403 +637252.118|221954.323|129.662 +637239.502|221958.995|129.985 +637233.174|221961.342|130.095 +637226.911|221963.692|129.748 +637220.559|221966.036|130.089 +637214.237|221968.380|130.211 +637201.417|221973.053|132.018 +637195.096|221975.418|131.750 +637188.841|221977.786|130.918 +637182.572|221980.127|130.735 +637170.053|221984.836|129.693 +637157.474|221989.594|128.117 +637151.217|221991.962|127.330 +637144.929|221994.328|126.779 +637138.668|221996.699|126.014 +637132.319|221999.086|125.474 +637125.988|222001.445|125.395 +637119.673|222003.837|124.542 +637100.708|222010.945|123.447 +637094.335|222013.329|123.210 +637087.946|222015.706|123.158 +637081.561|222018.084|123.091 +637068.792|222022.839|122.963 +637062.370|222025.241|122.661 +637056.082|222027.603|122.234 +637049.636|222029.998|122.252 +637036.849|222034.781|121.734 +637038.556|222037.466|122.097 +637044.917|222035.095|122.417 +637057.609|222030.383|122.637 +637063.971|222028.008|122.954 +637070.271|222025.658|123.301 +637089.272|222018.626|123.197 +637095.636|222016.252|123.554 +637101.897|222013.923|123.688 +637108.197|222011.570|124.087 +637114.510|222009.217|124.346 +637120.740|222006.885|124.865 +637127.028|222004.529|125.389 +637133.282|222002.198|125.645 +637139.528|221999.866|126.008 +637151.948|221995.193|127.419 +637170.575|221988.183|129.565 +637189.210|221981.203|131.073 +637195.425|221978.868|131.756 +637201.628|221976.558|132.018 +637214.356|221971.925|130.467 +637220.595|221969.636|130.028 +637226.856|221967.322|129.930 +637233.050|221965.006|130.354 +637239.310|221962.692|130.311 +637270.400|221951.192|130.074 +637276.630|221948.915|129.479 +637289.145|221944.313|128.864 +637295.323|221942.033|128.733 +637301.514|221939.753|128.531 +637307.762|221937.446|128.370 +637313.931|221935.184|127.955 +637332.597|221928.320|127.041 +637338.687|221926.055|127.221 +637357.222|221919.222|126.651 +637363.526|221916.942|125.621 +637369.615|221914.671|125.910 +637387.922|221907.874|126.297 +637394.015|221905.618|126.273 +637412.522|221898.812|125.398 +637418.603|221896.572|125.191 +637424.790|221894.304|124.746 +637430.920|221892.058|124.328 +637437.016|221889.812|124.100 +637449.217|221885.316|123.685 +637461.278|221880.847|123.749 +637473.598|221876.345|122.573 +637479.536|221874.142|122.688 +637521.662|221858.576|122.103 +637527.652|221856.372|121.811 +637545.586|221849.749|121.515 +637551.444|221847.557|121.920 +637557.315|221845.381|121.984 +637563.264|221843.177|121.993 +637592.946|221832.229|121.225 +637598.777|221830.065|121.314 +637610.307|221825.755|122.124 +637633.911|221817.086|120.789 +637639.672|221814.940|121.027 +637645.457|221812.791|121.189 +637651.199|221810.661|121.268 +637657.012|221808.518|121.097 +637680.372|221799.947|119.653 +637686.221|221797.807|119.177 +637697.678|221793.562|119.238 +637726.510|221782.982|117.519 +637731.962|221780.925|118.229 +637743.158|221776.764|118.586 +637748.940|221774.649|118.110 +637754.609|221772.564|117.818 +637760.355|221770.467|117.272 +637777.423|221764.221|115.907 +637783.050|221762.152|115.647 +637799.991|221755.940|114.520 +637817.221|221749.713|111.645 +637822.939|221747.643|110.746 +637828.538|221745.595|110.292 +637834.061|221743.571|109.884 +637862.173|221733.367|106.052 +637867.632|221731.361|105.757 +637873.073|221729.358|105.555 +637878.495|221727.371|105.205 +637845.848|221740.447|109.463 +637834.915|221744.510|109.640 +637829.358|221746.549|110.173 +637823.750|221748.610|110.688 +637817.953|221750.716|111.648 +637800.725|221756.989|114.343 +637783.742|221763.252|115.449 +637778.064|221765.340|115.925 +637772.297|221767.455|116.501 +637760.922|221771.643|117.388 +637755.146|221773.771|117.833 +637749.412|221775.889|118.144 +637743.722|221777.986|118.555 +637732.426|221782.199|118.375 +637727.028|221784.253|117.479 +637721.179|221786.399|118.071 +637686.547|221799.225|119.311 +637680.753|221801.368|119.582 +637674.876|221803.535|119.963 +637657.216|221810.048|121.091 +637651.337|221812.225|121.308 +637645.536|221814.389|121.216 +637639.754|221816.547|121.067 +637634.009|221818.702|120.768 +637598.576|221831.857|121.320 +637592.687|221834.054|121.231 +637586.533|221836.304|122.051 +637580.589|221838.504|122.243 +637562.847|221845.122|121.963 +637556.897|221847.335|121.966 +637550.890|221849.572|121.975 +637544.976|221851.779|121.847 +637533.059|221856.232|121.484 +637526.975|221858.472|121.929 +637520.870|221860.731|122.207 +637508.644|221865.226|123.203 +637478.475|221876.480|122.731 +637472.385|221878.741|122.792 +637466.152|221881.018|123.606 +637447.885|221887.815|123.642 +637435.529|221892.378|124.301 +637429.353|221894.658|124.645 +637423.175|221896.938|125.032 +637416.957|221899.236|125.328 +637410.757|221901.531|125.544 +637404.546|221903.826|125.843 +637392.165|221908.410|126.297 +637367.494|221917.618|125.831 +637361.230|221919.908|126.626 +637336.301|221929.143|127.452 +637311.322|221938.400|128.175 +637305.010|221940.738|128.379 +637298.771|221943.054|128.510 +637292.531|221945.368|128.672 +637279.894|221950.037|129.293 +637273.539|221952.369|129.921 +637267.330|221954.679|129.985 +637254.727|221959.358|130.150 +637248.427|221961.711|130.040 +637242.090|221964.034|130.674 +637235.784|221966.384|130.650 +637229.581|221968.709|130.311 +637223.320|221971.056|129.976 +637216.910|221973.424|130.330 +637204.072|221978.097|132.332 +637197.845|221980.441|131.799 +637191.530|221982.806|131.509 +637172.736|221989.887|129.879 +637166.521|221992.231|129.263 +637160.260|221994.599|128.522 +637154.057|221996.976|127.233 +637135.148|222004.100|125.581 +637128.829|222006.462|125.380 +637122.526|222008.824|125.047 +637116.213|222011.186|124.810 +637109.861|222013.573|124.359 +637103.500|222015.956|124.026 +637097.136|222018.340|123.734 +637090.759|222020.720|123.575 +637071.615|222027.856|123.399 +637065.309|222030.212|123.182 +637058.902|222032.620|122.752 +637052.519|222034.994|122.740 +637046.091|222037.396|122.597 +637033.384|222042.160|121.935 +637038.684|222043.471|122.728 +637044.981|222041.121|123.018 +637057.740|222036.387|123.164 +637064.047|222034.037|123.399 +637070.423|222031.666|123.523 +637076.729|222029.316|123.764 +637083.039|222026.966|123.996 +637089.357|222024.616|124.142 +637120.846|222012.878|125.468 +637127.189|222010.528|125.444 +637133.486|222008.172|125.867 +637139.698|222005.864|125.977 +637158.401|221998.830|127.961 +637164.646|221996.464|128.912 +637170.818|221994.151|129.403 +637189.454|221987.168|130.915 +637195.654|221984.827|131.701 +637201.856|221982.517|131.948 +637220.839|221975.567|130.269 +637227.021|221973.275|130.299 +637239.420|221968.642|131.040 +637251.975|221964.030|130.214 +637276.807|221954.838|130.037 +637283.043|221952.558|129.409 +637295.540|221947.952|128.937 +637301.779|221945.669|128.373 +637307.957|221943.383|128.275 +637314.151|221941.100|128.080 +637338.852|221931.969|127.620 +637369.814|221920.578|125.998 +637375.830|221918.329|126.355 +637387.998|221913.802|126.700 +637394.173|221911.522|126.541 +637406.420|221907.002|126.163 +637430.969|221897.962|125.066 +637449.281|221891.217|124.267 +637479.648|221880.034|122.926 +637485.525|221877.833|123.347 +637509.571|221868.936|123.109 +637515.588|221866.714|122.911 +637521.623|221864.507|122.347 +637527.673|221862.279|122.048 +637533.705|221860.054|121.865 +637539.642|221857.856|121.844 +637545.555|221855.659|121.951 +637557.455|221851.251|121.884 +637563.365|221849.069|121.780 +637575.121|221844.689|122.198 +637592.949|221838.126|121.381 +637598.850|221835.935|121.420 +637616.236|221829.452|122.213 +637622.048|221827.300|122.158 +637639.696|221820.808|121.228 +637651.190|221816.531|121.585 +637657.003|221814.373|121.640 +637662.882|221812.234|120.924 +637668.655|221810.094|120.924 +637674.501|221807.957|120.384 +637680.384|221805.796|119.973 +637686.123|221803.675|119.915 +637697.584|221799.441|119.656 +637709.063|221795.189|119.646 +637726.543|221788.810|117.787 +637732.042|221786.746|118.302 +637754.633|221778.392|117.991 +637760.309|221776.304|117.674 +637777.463|221770.016|116.385 +637783.126|221767.940|115.955 +637805.596|221759.695|114.419 +637828.663|221751.353|110.448 +637834.321|221749.292|109.780 +637839.871|221747.262|109.286 +637845.367|221745.242|108.991 +637862.262|221739.115|106.397 +637867.751|221737.103|105.976 +637873.186|221735.101|105.769 +637878.541|221733.126|105.610 +637883.982|221731.120|105.418 +637859.909|221741.889|106.906 +637843.090|221748.037|108.844 +637837.530|221750.076|109.378 +637831.824|221752.151|110.213 +637826.152|221754.221|110.950 +637786.183|221768.815|115.852 +637780.538|221770.894|116.208 +637774.860|221772.991|116.480 +637769.151|221775.091|116.870 +637757.721|221779.291|117.778 +637752.021|221781.388|118.202 +637729.475|221789.791|117.680 +637723.800|221791.888|117.860 +637717.820|221794.052|118.988 +637706.103|221798.359|119.884 +637688.876|221804.754|120.018 +637683.213|221806.869|119.781 +637665.616|221813.352|120.856 +637653.784|221817.711|121.582 +637648.033|221819.848|121.558 +637642.208|221822.024|121.320 +637636.401|221824.197|121.024 +637624.453|221828.577|122.188 +637618.452|221830.790|122.509 +637612.642|221832.957|122.301 +637600.956|221837.334|121.676 +637595.116|221839.519|121.366 +637583.125|221843.945|121.917 +637577.212|221846.140|121.990 +637565.313|221850.575|121.664 +637559.342|221852.787|121.780 +637553.386|221854.997|121.835 +637547.351|221857.231|121.996 +637541.361|221859.459|121.957 +637535.378|221861.685|121.914 +637529.410|221863.907|121.801 +637523.326|221866.144|122.277 +637511.101|221870.649|122.984 +637486.772|221879.665|123.435 +637480.846|221881.890|122.966 +637406.868|221909.215|126.108 +637394.423|221913.821|126.572 +637388.257|221916.107|126.693 +637375.955|221920.712|126.084 +637369.780|221923.017|125.950 +637363.391|221925.330|127.132 +637357.210|221927.631|127.087 +637344.771|221932.234|127.541 +637319.796|221941.487|128.169 +637313.593|221943.804|128.013 +637307.287|221946.142|128.163 +637301.044|221948.455|128.303 +637294.692|221950.790|128.821 +637288.468|221953.100|128.900 +637282.092|221955.435|129.635 +637275.795|221957.764|129.863 +637250.661|221967.097|130.107 +637225.536|221976.460|129.723 +637206.328|221983.474|132.256 +637200.034|221985.839|131.768 +637193.749|221988.177|131.726 +637187.561|221990.524|130.872 +637162.424|221999.985|128.684 +637156.249|222002.332|127.708 +637149.946|222004.694|127.361 +637124.736|222014.173|125.364 +637118.414|222016.529|125.240 +637112.038|222018.910|125.066 +637105.716|222021.266|124.941 +637099.300|222023.674|124.581 +637080.241|222030.785|124.090 +637073.931|222033.141|123.929 +637067.503|222035.540|123.731 +637061.115|222037.911|123.807 +637054.750|222040.289|123.621 +637037.444|222050.536|123.182 +637050.130|222045.781|124.145 +637062.828|222041.069|124.261 +637069.228|222038.704|124.060 +637075.532|222036.354|124.316 +637088.245|222031.635|124.383 +637094.551|222029.282|124.657 +637100.928|222026.908|124.816 +637107.173|222024.576|125.112 +637113.495|222022.226|125.258 +637119.813|222019.873|125.450 +637126.129|222017.520|125.688 +637132.410|222015.158|126.258 +637138.644|222012.823|126.700 +637151.208|222008.135|127.303 +637157.474|222005.800|127.452 +637169.904|222001.094|129.318 +637176.134|221998.759|129.848 +637188.607|221994.084|130.772 +637194.733|221991.767|131.649 +637201.006|221989.433|131.826 +637207.251|221987.095|132.256 +637213.670|221984.790|130.775 +637220.001|221982.456|130.558 +637226.164|221980.164|130.705 +637282.385|221959.373|129.702 +637294.787|221954.789|129.458 +637301.096|221952.482|128.824 +637307.363|221950.196|128.129 +637313.605|221947.888|128.016 +637319.802|221945.599|127.836 +637325.941|221943.313|128.053 +637350.629|221934.172|127.849 +637356.780|221931.898|127.687 +637362.904|221929.628|127.736 +637375.440|221925.065|126.120 +637381.573|221922.788|126.181 +637387.632|221920.514|126.681 +637393.722|221918.259|126.660 +637399.879|221915.979|126.629 +637406.006|221913.717|126.447 +637430.615|221904.652|125.325 +637448.903|221897.907|124.654 +637479.322|221886.681|123.673 +637485.373|221884.465|123.197 +637515.426|221873.343|122.816 +637521.534|221871.094|122.518 +637527.487|221868.896|122.371 +637551.399|221860.045|122.152 +637557.397|221857.832|121.887 +637563.304|221855.649|121.798 +637569.281|221853.440|121.692 +637575.197|221851.251|121.594 +637581.114|221849.063|121.518 +637587.030|221846.871|121.448 +637592.931|221844.683|121.478 +637598.859|221842.488|121.411 +637627.843|221831.689|122.509 +637639.754|221827.337|121.280 +637645.503|221825.191|121.576 +637651.276|221823.042|121.786 +637691.997|221808.037|120.076 +637720.938|221797.396|118.400 +637726.720|221795.272|118.052 +637732.292|221793.193|118.272 +637754.911|221784.820|118.092 +637760.696|221782.702|117.601 +637783.422|221774.362|115.958 +637789.177|221772.256|115.455 +637800.460|221768.117|114.626 +637840.289|221753.624|109.478 +637845.970|221751.566|108.546 +637851.520|221749.533|108.076 +637868.190|221743.437|106.525 +637873.747|221741.398|106.116 +637857.168|221749.682|107.412 +637851.597|221751.731|107.945 +637846.031|221753.773|108.482 +637840.273|221755.855|109.704 +637828.791|221760.012|111.868 +637800.576|221770.378|114.517 +637789.210|221774.560|115.452 +637777.884|221778.730|116.336 +637772.181|221780.833|116.708 +637766.481|221782.933|117.104 +637760.708|221785.045|117.787 +637754.978|221787.164|118.083 +637743.502|221791.385|119.052 +637732.340|221795.573|118.424 +637726.744|221797.673|118.065 +637720.993|221799.801|118.324 +637686.191|221812.657|120.168 +637680.305|221814.828|120.594 +637650.983|221825.675|121.844 +637645.228|221827.830|121.588 +637633.408|221832.198|122.176 +637627.437|221834.411|122.359 +637621.564|221836.596|122.417 +637615.666|221838.782|122.600 +637598.201|221845.344|121.411 +637592.233|221847.563|121.417 +637586.323|221849.761|121.469 +637580.416|221851.958|121.515 +637574.390|221854.199|121.561 +637568.406|221856.418|121.704 +637562.435|221858.633|121.826 +637556.416|221860.871|121.887 +637520.166|221874.315|122.786 +637507.961|221878.823|123.450 +637501.801|221881.082|124.121 +637495.690|221883.350|124.237 +637489.731|221885.599|123.609 +637483.730|221887.855|123.222 +637477.518|221890.129|123.923 +637459.093|221896.959|124.456 +637434.407|221906.100|125.364 +637428.198|221908.398|125.596 +637391.043|221922.166|126.581 +637384.901|221924.470|126.224 +637378.711|221926.775|126.166 +637372.429|221929.085|126.678 +637366.089|221931.395|127.593 +637353.595|221936.022|127.971 +637347.338|221938.345|128.077 +637328.656|221945.300|127.916 +637322.454|221947.617|127.751 +637316.144|221949.955|127.894 +637309.939|221952.247|128.202 +637303.532|221954.606|128.647 +637297.256|221956.919|129.062 +637290.965|221959.251|129.181 +637284.661|221961.583|129.431 +637221.559|221984.995|130.534 +637208.784|221989.667|132.034 +637202.451|221992.029|131.881 +637196.135|221994.395|131.601 +637189.817|221996.757|131.363 +637171.084|222003.834|129.229 +637158.535|222008.565|127.989 +637145.956|222013.292|127.068 +637120.529|222022.799|126.123 +637114.247|222025.161|125.608 +637107.871|222027.542|125.444 +637101.516|222029.922|125.105 +637088.784|222034.683|124.639 +637082.359|222037.049|125.084 +637069.631|222041.803|124.694 +637044.079|222051.316|124.468 +637037.688|222053.724|123.889 +637037.148|222057.479|124.078 +637043.488|222055.099|124.606 +637049.809|222052.712|125.343 +637068.847|222045.653|125.179 +637075.184|222043.306|124.996 +637081.561|222040.935|125.112 +637094.219|222036.235|125.090 +637106.792|222031.513|126.081 +637113.098|222029.157|126.370 +637119.435|222026.804|126.343 +637131.923|222022.135|126.974 +637138.257|222019.779|127.047 +637144.520|222017.444|127.187 +637157.075|222012.747|127.864 +637163.262|222010.403|128.787 +637169.514|222008.065|129.086 +637188.158|222001.039|131.037 +637194.379|221998.699|131.643 +637200.591|221996.382|131.799 +637206.834|221994.041|132.229 +637225.701|221987.101|130.958 +637281.778|221966.332|129.815 +637288.139|221964.003|129.171 +637294.311|221961.720|129.013 +637300.535|221959.410|128.958 +637312.932|221954.835|128.416 +637319.174|221952.543|127.888 +637325.419|221950.229|127.791 +637331.552|221947.958|127.632 +637350.002|221941.079|128.163 +637374.739|221931.944|127.123 +637380.924|221929.682|126.462 +637387.151|221927.375|126.331 +637393.225|221925.117|126.364 +637399.361|221922.837|126.440 +637417.713|221916.040|126.008 +637448.272|221904.750|124.871 +637472.528|221895.776|124.212 +637478.539|221893.542|124.215 +637484.714|221891.293|123.395 +637490.725|221889.056|123.438 +637502.640|221884.596|124.127 +637508.675|221882.371|123.792 +637520.784|221877.915|123.002 +637526.774|221875.708|122.658 +637532.928|221873.450|122.143 +637550.719|221866.823|122.457 +637556.769|221864.605|121.948 +637562.667|221862.419|121.862 +637568.702|221860.182|121.762 +637580.464|221855.808|121.853 +637586.362|221853.616|121.841 +637592.348|221851.413|121.463 +637598.207|221849.243|121.405 +637621.378|221840.568|122.725 +637685.480|221816.876|120.607 +637691.189|221814.754|120.652 +637714.424|221806.205|119.226 +637720.322|221804.059|118.388 +637726.031|221801.944|118.305 +637731.676|221799.853|118.232 +637742.789|221795.683|119.073 +637754.323|221791.452|118.135 +637760.001|221789.361|117.793 +637771.449|221785.164|116.821 +637777.219|221783.055|116.202 +637782.849|221780.967|116.117 +637788.546|221778.882|115.571 +637794.279|221776.788|114.922 +637799.906|221774.725|114.437 +637805.563|221772.643|114.099 +637850.920|221756.096|108.604 +637856.577|221754.050|107.549 +637862.124|221752.014|107.122 +637873.082|221747.976|106.561 +637878.456|221745.982|106.555 +637870.104|221750.923|106.750 +637864.642|221752.953|106.875 +637859.098|221754.995|107.296 +637802.429|221775.761|114.197 +637796.793|221777.846|114.483 +637790.905|221779.992|115.474 +637785.220|221782.083|115.974 +637779.569|221784.180|116.144 +637773.897|221786.283|116.412 +637768.151|221788.395|116.967 +637756.554|221792.647|118.302 +637745.194|221796.869|118.592 +637734.029|221801.051|118.211 +637728.296|221803.178|118.378 +637722.611|221805.296|118.378 +637716.808|221807.448|118.604 +637687.632|221818.217|120.677 +637658.387|221829.062|121.777 +637652.470|221831.244|122.182 +637629.001|221839.983|122.380 +637599.798|221850.925|121.283 +637593.812|221853.153|121.366 +637587.712|221855.393|121.975 +637581.799|221857.594|122.064 +637575.865|221859.810|121.978 +637569.988|221862.017|121.631 +637564.008|221864.239|121.795 +637557.933|221866.500|121.826 +637533.906|221875.428|122.374 +637527.801|221877.690|122.652 +637515.645|221882.185|123.350 +637509.507|221884.462|123.563 +637503.386|221886.718|124.020 +637491.395|221891.220|123.441 +637485.321|221893.484|123.414 +637472.979|221898.029|124.423 +637460.690|221902.601|124.618 +637448.409|221907.167|124.855 +637429.887|221914.031|125.593 +637423.687|221916.329|125.803 +637417.521|221918.627|125.852 +637411.327|221920.923|126.093 +637405.177|221923.215|126.099 +637398.949|221925.531|126.224 +637392.802|221927.820|126.264 +637386.556|221930.134|126.541 +637380.347|221932.423|126.989 +637374.062|221934.757|127.193 +637336.819|221948.626|127.483 +637330.583|221950.945|127.544 +637324.270|221953.292|127.718 +637317.967|221955.612|128.254 +637305.360|221960.272|129.025 +637299.097|221962.610|128.955 +637292.879|221964.924|129.019 +637286.591|221967.261|129.181 +637280.175|221969.617|129.833 +637229.721|221988.360|131.064 +637223.439|221990.710|130.948 +637217.081|221993.078|130.988 +637210.735|221995.419|131.442 +637204.319|221997.781|132.003 +637198.077|222000.125|131.659 +637191.792|222002.496|131.156 +637185.559|222004.840|130.717 +637173.050|222009.586|129.171 +637166.740|222011.951|128.922 +637160.437|222014.316|128.592 +637154.179|222016.688|127.879 +637147.830|222019.077|127.413 +637141.518|222021.443|127.209 +637128.826|222026.188|126.916 +637122.529|222028.551|126.623 +637116.131|222030.931|126.724 +637090.711|222040.471|125.520 +637084.313|222042.846|125.700 +637071.566|222047.601|125.639 +637058.728|222052.365|126.023 +637052.385|222054.748|125.669 +637045.963|222057.147|125.575 +637039.654|222059.543|124.758 +637033.274|222061.957|124.078 +637041.900|222062.140|125.432 +637060.889|222055.044|126.550 +637086.349|222045.635|125.953 +637099.047|222040.916|126.160 +637105.286|222038.588|126.486 +637124.208|222031.532|127.303 +637130.533|222029.179|127.422 +637136.815|222026.853|127.361 +637143.133|222024.500|127.565 +637149.385|222022.168|127.846 +637161.915|222017.477|128.745 +637174.394|222012.808|129.613 +637186.830|222008.132|130.863 +637193.051|222005.794|131.464 +637199.311|222003.459|131.729 +637205.550|222001.122|132.186 +637211.875|221998.817|131.436 +637218.212|221996.483|131.110 +637224.485|221994.169|130.839 +637230.718|221991.853|130.939 +637268.278|221977.960|130.132 +637274.527|221975.634|130.241 +637280.720|221973.357|129.885 +637287.078|221971.029|129.263 +637293.257|221968.749|129.065 +637299.469|221966.441|129.083 +637305.671|221964.137|129.196 +637311.813|221961.851|129.303 +637324.377|221957.252|128.144 +637330.628|221954.960|127.614 +637336.828|221952.668|127.443 +637343.025|221950.375|127.327 +637349.142|221948.086|127.727 +637361.355|221943.523|128.321 +637367.521|221941.250|128.080 +637379.954|221936.669|127.440 +637392.329|221932.109|126.876 +637398.578|221929.823|126.288 +637404.695|221927.561|126.120 +637410.870|221925.275|125.998 +637417.012|221923.010|125.736 +637423.163|221920.743|125.456 +637429.314|221918.475|125.200 +637435.468|221916.207|124.935 +637447.650|221911.690|124.843 +637453.783|221909.419|124.773 +637465.999|221904.914|124.301 +637484.217|221898.187|123.667 +637490.252|221895.953|123.578 +637496.224|221893.710|124.167 +637502.155|221891.500|124.316 +637514.313|221887.013|123.847 +637544.528|221875.879|122.435 +637562.490|221869.237|122.048 +637568.412|221867.049|121.878 +637574.252|221864.854|122.384 +637598.225|221856.021|121.253 +637604.001|221853.863|121.570 +637621.381|221847.359|122.652 +637644.860|221838.681|122.088 +637662.407|221832.189|121.734 +637668.244|221830.037|121.439 +637685.605|221823.612|121.021 +637691.351|221821.481|120.924 +637697.224|221819.317|120.579 +637702.955|221817.190|120.576 +637708.731|221815.053|120.408 +637714.598|221812.913|119.659 +637720.548|221810.758|118.604 +637726.299|221808.622|118.598 +637731.999|221806.506|118.561 +637737.644|221804.412|118.506 +637743.188|221802.337|118.848 +637748.894|221800.231|118.589 +637760.434|221795.991|117.659 +637766.219|221793.869|117.178 +637771.910|221791.772|116.821 +637777.606|221789.675|116.461 +637789.058|221785.481|115.364 +637794.712|221783.400|114.986 +637800.457|221781.299|114.306 +637817.477|221775.063|112.697 +637823.076|221773.000|112.392 +637839.837|221766.846|111.027 +637856.867|221760.652|108.469 +637862.597|221758.580|107.409 +637868.236|221756.522|106.689 +637873.701|221754.511|106.351 +637879.059|221752.520|106.382 +637884.457|221750.518|106.302 +637889.800|221748.539|106.199 +637895.238|221746.528|106.013 +637873.122|221756.099|106.366 +637867.669|221758.113|106.686 +637861.969|221760.189|107.634 +637839.295|221768.455|111.021 +637822.436|221774.667|112.325 +637811.180|221778.828|112.965 +637805.368|221780.946|113.864 +637788.369|221787.213|115.102 +637776.878|221791.425|116.391 +637771.114|221793.552|116.772 +637748.102|221802.029|118.598 +637742.344|221804.160|118.827 +637736.751|221806.263|118.439 +637731.021|221808.390|118.595 +637725.333|221810.509|118.610 +637719.639|221812.627|118.665 +637713.574|221814.818|119.930 +637707.716|221816.976|120.427 +637701.933|221819.119|120.640 +637696.200|221821.253|120.680 +637690.354|221823.417|120.920 +637684.508|221825.578|121.201 +637673.035|221829.866|120.914 +637667.040|221832.064|121.597 +637649.459|221838.587|122.109 +637596.576|221858.332|121.183 +637572.497|221867.238|122.341 +637566.596|221869.448|122.134 +637560.631|221871.664|122.249 +637554.547|221873.907|122.643 +637548.543|221876.141|122.691 +637542.562|221878.372|122.637 +637536.521|221880.625|122.600 +637512.183|221889.626|123.816 +637494.008|221896.401|123.700 +637487.948|221898.663|123.612 +637481.819|221900.931|123.895 +637469.535|221905.484|124.331 +637463.354|221907.786|124.295 +637457.291|221910.044|124.322 +637451.147|221912.324|124.474 +637438.799|221916.905|124.819 +637432.575|221919.207|125.127 +637426.375|221921.505|125.334 +637420.231|221923.782|125.605 +637413.970|221926.101|125.846 +637389.077|221935.300|127.327 +637345.597|221951.509|127.227 +637339.398|221953.811|127.404 +637333.070|221956.157|127.614 +637326.764|221958.480|128.138 +637314.133|221963.122|129.391 +637307.869|221965.460|129.299 +637301.614|221967.798|129.159 +637295.351|221970.136|129.086 +637289.063|221972.470|129.229 +637282.772|221974.784|129.857 +637276.414|221977.140|130.089 +637270.122|221979.472|130.345 +637263.783|221981.825|130.516 +637244.748|221988.878|131.296 +637232.184|221993.578|130.958 +637225.902|221995.925|130.823 +637213.164|222000.634|131.531 +637206.797|222002.975|132.180 +637200.503|222005.343|131.704 +637194.181|222007.711|131.509 +637187.890|222010.080|131.015 +637175.387|222014.795|129.940 +637169.060|222017.188|129.257 +637150.150|222024.287|128.281 +637143.813|222026.679|127.690 +637131.082|222031.419|127.739 +637118.390|222036.165|127.483 +637105.670|222040.935|126.907 +637092.960|222045.702|126.267 +637086.523|222048.104|126.221 +637067.293|222055.248|126.629 +637060.913|222057.623|126.721 +637054.482|222060.021|126.669 +637048.164|222062.411|125.980 +637041.766|222064.819|125.550 +637035.298|222070.808|126.154 +637041.693|222068.449|125.816 +637054.388|222063.700|126.504 +637060.679|222061.350|126.788 +637067.012|222058.970|127.303 +637073.413|222056.611|126.971 +637079.771|222054.273|126.504 +637098.773|222047.204|126.751 +637105.082|222044.851|126.919 +637111.269|222042.511|127.742 +637117.634|222040.133|128.001 +637123.900|222037.807|127.989 +637130.228|222035.457|128.019 +637142.749|222030.794|128.230 +637155.374|222026.082|128.672 +637161.644|222023.750|128.763 +637167.895|222021.415|129.010 +637174.101|222019.074|129.723 +637192.764|222012.058|131.372 +637198.958|222009.741|131.665 +637205.224|222007.407|131.848 +637211.430|222005.090|132.034 +637217.831|222002.761|131.134 +637224.146|222000.451|130.491 +637230.392|221998.138|130.439 +637236.588|221995.818|130.787 +637242.715|221993.523|131.232 +637255.205|221988.884|131.253 +637261.530|221986.567|130.717 +637267.751|221984.269|130.491 +637274.027|221981.971|129.915 +637286.487|221977.366|129.516 +637292.662|221975.086|129.303 +637305.086|221970.477|129.287 +637311.207|221968.194|129.513 +637317.357|221965.908|129.562 +637336.142|221959.038|127.620 +637342.345|221956.746|127.422 +637348.499|221954.475|127.157 +637354.668|221952.183|127.230 +637409.925|221931.712|126.538 +637416.061|221929.448|126.273 +637422.236|221927.180|125.819 +637428.381|221924.915|125.550 +637434.556|221922.645|125.139 +637440.661|221920.395|124.798 +637446.748|221918.149|124.581 +637452.832|221915.899|124.423 +637458.910|221913.650|124.301 +637465.058|221911.376|124.154 +637471.093|221909.145|123.975 +637477.134|221906.914|123.783 +637483.221|221904.658|123.722 +637489.234|221902.427|123.703 +637495.236|221900.196|123.786 +637513.177|221893.536|123.825 +637543.327|221882.414|122.548 +637549.213|221880.219|122.758 +637555.230|221877.991|122.655 +637561.198|221875.785|122.505 +637567.114|221873.599|122.320 +637596.966|221862.572|121.369 +637602.864|221860.395|121.103 +637608.631|221858.222|121.728 +637626.050|221851.715|122.603 +637631.948|221849.535|122.448 +637649.520|221843.049|121.780 +637666.970|221836.587|121.539 +637672.740|221834.448|121.512 +637678.528|221832.302|121.445 +637684.395|221830.147|121.064 +637690.071|221828.031|121.231 +637695.901|221825.880|121.052 +637701.668|221823.749|120.875 +637713.220|221819.494|120.277 +637719.267|221817.315|119.067 +637725.010|221815.196|118.833 +637730.707|221813.084|118.793 +637736.431|221810.969|118.662 +637747.797|221806.759|118.522 +637770.834|221798.313|116.614 +637776.536|221796.219|116.224 +637816.371|221781.613|112.944 +637827.697|221777.468|111.859 +637833.260|221775.426|111.481 +637838.844|221773.378|111.039 +637861.335|221765.166|108.500 +637867.017|221763.106|107.604 +637872.637|221761.067|106.720 +637878.279|221759.012|106.016 +637883.710|221757.007|105.802 +637889.051|221755.035|105.699 +637875.283|221761.466|106.528 +637864.020|221765.578|108.189 +637824.753|221780.028|111.825 +637818.998|221782.129|112.715 +637813.277|221784.232|113.270 +637807.675|221786.298|113.666 +637801.838|221788.435|114.456 +637796.184|221790.523|114.843 +637779.225|221796.805|115.635 +637773.348|221798.954|116.446 +637767.697|221801.047|116.693 +637750.290|221807.454|118.272 +637738.863|221811.694|118.668 +637733.148|221813.819|118.790 +637727.396|221815.964|118.811 +637721.700|221818.083|118.894 +637715.717|221820.262|119.860 +637686.748|221831.015|120.808 +637680.811|221833.192|121.494 +637674.998|221835.365|121.430 +637669.186|221837.532|121.369 +637645.734|221846.246|121.929 +637633.847|221850.657|122.350 +637616.193|221857.247|122.222 +637604.675|221861.608|120.927 +637598.704|221863.833|120.948 +637568.650|221874.968|122.338 +637562.615|221877.208|122.490 +637556.669|221879.421|122.563 +637550.594|221881.682|122.658 +637538.673|221886.139|122.420 +637532.550|221888.400|122.829 +637496.092|221901.933|123.990 +637490.021|221904.213|123.664 +637483.955|221906.475|123.630 +637477.865|221908.740|123.749 +637471.708|221911.029|123.908 +637465.618|221913.290|124.075 +637459.471|221915.573|124.240 +637453.323|221917.856|124.420 +637447.081|221920.164|124.807 +637440.914|221922.443|125.157 +637434.724|221924.745|125.304 +637428.491|221927.046|125.721 +637416.043|221931.642|126.520 +637354.092|221954.710|126.971 +637347.822|221957.035|127.187 +637341.607|221959.337|127.471 +637335.295|221961.662|128.028 +637322.515|221966.329|129.836 +637316.394|221968.621|129.623 +637310.082|221970.983|129.458 +637297.579|221975.634|129.604 +637291.349|221977.969|129.351 +637285.052|221980.304|129.610 +637278.754|221982.636|129.879 +637272.460|221984.967|130.153 +637259.808|221989.649|130.805 +637247.134|221994.349|131.284 +637240.910|221996.699|130.659 +637234.631|221999.049|130.491 +637228.337|222001.396|130.464 +637221.970|222003.764|130.555 +637215.630|222006.081|131.470 +637209.202|222008.443|132.137 +637202.902|222010.811|131.726 +637196.647|222013.155|131.485 +637190.341|222015.520|131.165 +637177.762|222020.257|130.272 +637165.268|222024.972|129.144 +637158.919|222027.362|128.714 +637152.664|222029.703|128.537 +637133.566|222036.826|128.388 +637120.886|222041.569|128.083 +637108.164|222046.336|127.602 +637095.441|222051.100|127.193 +637082.682|222055.852|127.263 +637069.951|222060.607|127.044 +637057.210|222065.395|126.264 +637050.892|222067.788|125.596 +637044.445|222070.177|125.822 +637038.053|222072.543|126.133 +637034.201|222077.432|126.282 +637040.586|222075.069|126.066 +637046.963|222072.704|125.995 +637053.427|222070.324|125.596 +637059.716|222067.971|125.938 +637066.068|222065.593|126.270 +637072.386|222063.210|127.007 +637078.668|222060.853|127.428 +637085.044|222058.482|127.468 +637104.128|222051.395|127.495 +637110.352|222049.061|127.919 +637116.631|222046.702|128.431 +637135.590|222039.645|128.726 +637141.878|222037.317|128.562 +637148.211|222034.964|128.559 +637154.551|222032.611|128.516 +637167.130|222027.920|128.906 +637173.242|222025.597|129.921 +637179.551|222023.238|130.217 +637192.026|222018.562|131.046 +637198.257|222016.221|131.537 +637204.462|222013.908|131.717 +637210.705|222011.567|132.131 +637217.023|222009.260|131.384 +637223.415|222006.925|130.598 +637229.660|222004.606|130.540 +637235.887|222002.286|130.656 +637242.175|221999.942|130.790 +637248.341|221997.644|130.918 +637254.568|221995.321|131.086 +637260.890|221993.002|130.543 +637267.157|221990.676|130.433 +637273.387|221988.375|130.199 +637279.678|221986.049|129.970 +637285.847|221983.766|129.751 +637292.147|221981.438|129.516 +637298.283|221979.155|129.580 +637310.637|221974.558|129.665 +637316.845|221972.248|129.723 +637322.950|221969.962|130.083 +637341.839|221963.055|127.891 +637348.023|221960.781|127.416 +637354.244|221958.486|127.135 +637360.401|221956.209|126.898 +637366.558|221953.911|127.065 +637378.653|221949.345|128.440 +637397.188|221942.518|127.260 +637415.589|221935.687|127.111 +637440.238|221926.604|125.648 +637446.331|221924.355|125.386 +637452.430|221922.102|125.112 +637458.526|221919.831|125.209 +637470.821|221915.311|124.264 +637476.826|221913.080|124.255 +637482.989|221910.815|123.767 +637488.988|221908.581|123.837 +637495.010|221906.347|123.801 +637506.888|221901.888|124.630 +637519.065|221897.410|123.709 +637525.164|221895.179|123.088 +637555.105|221884.072|122.701 +637572.988|221877.443|122.396 +637578.965|221875.242|121.966 +637596.799|221868.637|121.542 +637602.867|221866.406|121.088 +637608.698|221864.236|121.140 +637626.026|221857.731|122.411 +637643.671|221851.202|121.890 +637672.740|221840.409|121.686 +637678.525|221838.264|121.600 +637684.334|221836.112|121.433 +637695.898|221831.829|121.116 +637724.940|221821.128|119.272 +637730.688|221819.003|119.009 +637736.400|221816.885|118.891 +637742.057|221814.779|119.015 +637771.044|221804.144|116.263 +637782.471|221799.941|115.376 +637805.224|221791.568|113.733 +637810.817|221789.496|113.593 +637822.098|221785.353|112.584 +637827.758|221783.278|112.039 +637833.482|221781.190|111.289 +637839.115|221779.126|110.658 +637855.803|221772.978|109.606 +637861.375|221770.936|109.045 +637878.200|221764.795|106.878 +637883.848|221762.731|106.135 +637889.374|221760.704|105.613 +637894.784|221758.702|105.485 +637900.103|221756.723|105.464 +637860.942|221772.847|109.109 +637855.385|221774.902|109.405 +637844.129|221779.038|110.542 +637838.655|221781.074|110.615 +637832.897|221783.177|111.466 +637827.271|221785.253|111.871 +637821.580|221787.341|112.535 +637815.862|221789.441|113.078 +637810.174|221791.538|113.541 +637804.542|221793.623|113.822 +637798.830|221795.720|114.413 +637781.764|221802.032|115.352 +637775.927|221804.175|116.013 +637758.626|221810.539|117.601 +637741.149|221816.976|119.086 +637735.516|221819.073|119.122 +637729.737|221821.222|119.259 +637718.067|221825.532|120.021 +637694.731|221834.164|121.280 +637677.272|221840.653|121.622 +637665.696|221844.985|121.338 +637636.185|221855.948|121.993 +637618.461|221862.559|121.868 +637606.811|221866.955|120.866 +637600.898|221869.158|120.914 +637576.746|221878.092|122.173 +637570.665|221880.341|122.536 +637528.468|221896.045|122.993 +637516.121|221900.589|124.112 +637497.921|221907.368|124.185 +637491.917|221909.627|123.819 +637485.790|221911.913|123.776 +637479.615|221914.183|124.340 +637467.307|221918.755|124.670 +637454.905|221923.346|125.267 +637436.358|221930.228|125.874 +637392.799|221946.364|127.900 +637380.280|221951.009|128.361 +637368.119|221955.612|127.068 +637361.907|221957.938|126.885 +637355.613|221960.266|127.230 +637349.404|221962.570|127.462 +637343.128|221964.896|127.757 +637324.029|221971.888|130.205 +637311.545|221976.567|129.744 +637299.091|221981.221|129.583 +637292.833|221983.556|129.528 +637286.524|221985.891|129.876 +637280.190|221988.250|129.973 +637273.905|221990.582|130.202 +637267.559|221992.935|130.442 +637261.231|221995.288|130.564 +637254.873|221997.638|130.958 +637248.637|221999.966|130.915 +637242.288|222002.341|130.799 +637236.003|222004.691|130.683 +637229.721|222007.038|130.570 +637223.360|222009.409|130.610 +637216.953|222011.747|131.579 +637210.540|222014.109|132.116 +637204.307|222016.456|131.680 +637197.985|222018.824|131.476 +637191.685|222021.193|131.113 +637179.100|222025.932|130.278 +637166.554|222030.672|129.095 +637160.251|222033.037|128.787 +637147.562|222037.789|128.428 +637115.805|222049.625|128.519 +637103.131|222054.401|127.571 +637090.345|222059.150|127.949 +637083.984|222061.530|127.785 +637077.613|222063.947|127.017 +637071.292|222066.337|126.389 +637064.900|222068.748|125.846 +637058.548|222071.131|125.581 +637052.150|222073.497|125.983 +637045.719|222075.892|125.995 +637039.340|222078.264|126.178 +637039.596|222081.266|126.328 +637045.978|222078.901|126.157 +637052.364|222076.532|125.983 +637058.740|222074.164|125.934 +637065.147|222071.799|125.535 +637071.484|222069.415|126.017 +637077.790|222067.062|126.160 +637084.084|222064.666|127.209 +637090.403|222062.277|127.913 +637096.697|222059.921|128.181 +637121.907|222050.493|129.065 +637128.201|222048.134|129.394 +637134.514|222045.778|129.531 +637140.863|222043.425|129.333 +637153.484|222038.737|129.123 +637172.288|222031.699|129.961 +637178.512|222029.355|130.452 +637184.827|222026.993|130.708 +637191.057|222024.649|131.159 +637197.309|222022.308|131.454 +637203.572|222019.967|131.640 +637209.818|222017.624|132.012 +637216.017|222015.304|132.244 +637222.485|222012.975|130.796 +637228.737|222010.656|130.656 +637235.022|222008.312|130.778 +637241.243|222005.989|130.945 +637247.473|222003.667|131.028 +637260.000|221999.019|130.781 +637266.276|221996.693|130.610 +637272.491|221994.392|130.427 +637278.779|221992.063|130.211 +637297.457|221985.141|129.693 +637309.853|221980.520|129.876 +637316.062|221978.210|129.915 +637322.158|221975.921|130.321 +637340.833|221969.017|129.455 +637353.482|221964.418|127.474 +637359.703|221962.116|127.196 +637365.866|221959.836|126.934 +637372.054|221957.535|126.916 +637396.459|221948.400|128.019 +637414.921|221941.564|127.465 +637433.432|221934.727|126.474 +637451.823|221927.927|125.678 +637476.192|221918.902|124.910 +637488.527|221914.369|123.871 +637494.535|221912.132|123.883 +637518.529|221903.198|124.048 +637524.643|221900.946|123.642 +637530.681|221898.715|123.319 +637536.808|221896.474|122.594 +637542.742|221894.256|122.838 +637554.693|221889.818|122.655 +637602.614|221872.090|120.792 +637608.451|221869.917|120.808 +637614.261|221867.735|121.247 +637631.869|221861.182|121.317 +637637.752|221858.996|121.219 +637643.555|221856.838|121.207 +637649.462|221854.650|121.052 +637701.473|221835.310|121.030 +637718.801|221828.912|120.186 +637736.114|221822.521|119.336 +637741.875|221820.393|119.046 +637776.607|221807.656|115.687 +637782.346|221805.537|115.391 +637822.065|221790.925|112.474 +637827.801|221788.822|111.895 +637833.449|221786.761|111.182 +637839.103|221784.683|110.688 +637844.723|221782.625|110.118 +637850.259|221780.580|109.859 +637855.855|221778.523|109.411 +637883.634|221768.333|106.805 +637889.319|221766.264|105.961 +637894.781|221764.261|105.443 +637900.145|221762.265|105.479 +637905.455|221760.290|105.491 +637885.000|221769.787|106.747 +637862.661|221778.008|109.061 +637857.211|221780.031|109.225 +637851.612|221782.095|109.695 +637846.135|221784.134|109.762 +637840.560|221786.195|110.198 +637829.099|221790.389|111.746 +637823.445|221792.470|112.282 +637806.535|221798.722|113.377 +637794.995|221802.956|114.791 +637783.650|221807.159|115.340 +637778.015|221809.253|115.510 +637772.211|221811.389|116.077 +637766.441|221813.517|116.550 +637748.986|221819.936|118.406 +637737.464|221824.203|118.976 +637720.084|221830.628|120.137 +637696.788|221839.260|121.286 +637673.745|221847.874|120.951 +637667.945|221850.044|120.875 +637662.062|221852.236|120.884 +637656.232|221854.409|120.972 +637650.355|221856.600|121.009 +637638.587|221860.980|121.186 +637632.668|221863.190|121.189 +637626.757|221865.394|121.161 +637620.838|221867.601|121.201 +637614.968|221869.801|121.049 +637609.134|221871.993|120.741 +637603.184|221874.218|120.680 +637585.192|221880.899|121.286 +637561.018|221889.860|122.377 +637554.983|221892.101|122.594 +637543.007|221896.581|122.332 +637536.927|221898.824|122.844 +637530.840|221901.083|123.091 +637524.591|221903.375|123.871 +637500.344|221912.409|124.078 +637494.315|221914.671|123.856 +637488.250|221916.933|123.847 +637469.621|221923.812|125.236 +637451.122|221930.682|125.822 +637413.842|221944.499|127.513 +637401.443|221949.101|127.870 +637395.188|221951.415|128.242 +637376.797|221958.346|126.824 +637370.554|221960.675|126.809 +637364.327|221962.979|127.123 +637358.051|221965.308|127.379 +637351.754|221967.633|127.794 +637345.103|221969.968|130.546 +637338.931|221972.288|130.226 +637320.177|221979.286|130.132 +637313.986|221981.599|129.988 +637307.665|221983.961|129.940 +637301.477|221986.272|129.808 +637295.171|221988.631|129.705 +637288.849|221990.966|130.141 +637282.589|221993.297|130.186 +637276.252|221995.650|130.348 +637269.906|221998.004|130.601 +637263.575|222000.354|130.775 +637250.932|222005.054|131.046 +637244.629|222007.404|131.089 +637225.728|222014.466|130.747 +637219.141|222016.846|132.213 +637212.872|222019.190|132.088 +637206.568|222021.559|131.741 +637200.247|222023.924|131.558 +637193.977|222026.268|131.488 +637181.398|222031.001|130.647 +637175.064|222033.391|130.052 +637168.746|222035.756|129.933 +637162.439|222038.118|129.684 +637156.054|222040.502|129.650 +637136.961|222047.622|129.626 +637124.300|222052.365|129.187 +637092.555|222064.282|127.641 +637086.175|222066.693|126.992 +637073.529|222071.473|125.770 +637067.104|222073.871|125.709 +637060.715|222076.240|125.956 +637054.278|222078.636|126.056 +637047.847|222081.028|126.145 +637041.464|222083.396|126.370 +637035.039|222085.792|126.398 +637038.934|222087.597|126.331 +637045.305|222085.225|126.297 +637051.678|222082.854|126.282 +637064.449|222078.114|125.995 +637070.832|222075.743|125.886 +637077.257|222073.381|125.313 +637089.848|222068.623|126.657 +637096.051|222066.279|127.306 +637102.324|222063.880|128.574 +637121.212|222056.803|129.434 +637127.518|222054.443|129.632 +637133.834|222052.087|129.741 +637140.113|222049.756|129.650 +637152.792|222045.043|129.461 +637158.962|222042.724|129.888 +637165.289|222040.365|129.967 +637171.535|222038.024|130.284 +637190.344|222030.977|131.128 +637196.580|222028.633|131.546 +637202.801|222026.316|131.567 +637209.056|222023.973|131.869 +637215.304|222021.629|132.219 +637221.748|222019.297|130.930 +637227.999|222016.974|130.769 +637234.165|222014.649|131.336 +637252.965|222007.657|131.180 +637259.168|222005.355|131.028 +637265.428|222003.030|130.933 +637271.646|222000.725|130.714 +637284.122|221996.089|130.519 +637290.325|221993.782|130.479 +637302.803|221989.161|129.946 +637308.991|221986.851|130.101 +637315.132|221984.562|130.141 +637339.797|221975.369|130.296 +637346.079|221973.050|129.921 +637352.376|221970.767|128.662 +637358.652|221968.465|128.001 +637364.937|221966.161|127.318 +637371.100|221963.878|127.047 +637377.324|221961.574|126.809 +637383.481|221959.291|126.623 +637407.819|221950.165|127.812 +637413.927|221947.900|127.647 +637426.217|221943.341|127.309 +637487.503|221920.676|124.225 +637493.569|221918.435|123.935 +637499.668|221916.168|123.795 +637529.742|221904.991|123.392 +637541.877|221900.501|122.804 +637553.809|221896.066|122.673 +637601.691|221878.333|120.808 +637607.610|221876.132|120.719 +637613.511|221873.934|120.738 +637619.393|221871.737|120.853 +637625.243|221869.561|120.856 +637631.159|221867.357|120.860 +637637.029|221865.171|120.802 +637642.839|221863.010|120.747 +637648.715|221860.825|120.701 +637654.537|221858.661|120.637 +637660.356|221856.497|120.607 +637666.180|221854.330|120.570 +637671.959|221852.169|120.738 +637677.723|221850.023|120.719 +637683.511|221847.871|120.625 +637712.263|221837.169|120.686 +637718.097|221835.021|120.268 +637729.545|221830.781|119.848 +637741.201|221826.489|118.958 +637746.940|221824.362|118.766 +637775.979|221813.718|115.586 +637781.642|221811.624|115.321 +637798.662|221805.345|114.282 +637804.410|221803.230|113.791 +637832.717|221792.824|111.319 +637844.022|221788.679|110.124 +637849.558|221786.633|109.853 +637855.141|221784.576|109.436 +637871.704|221778.462|108.482 +637882.747|221774.399|107.576 +637888.484|221772.317|106.531 +637894.135|221770.263|105.583 +637899.453|221768.288|105.552 +637887.078|221774.496|106.805 +637881.363|221776.581|107.787 +637875.886|221778.605|108.219 +637859.180|221784.786|109.423 +637853.666|221786.838|109.603 +637848.122|221788.892|109.905 +637842.465|221790.983|110.390 +637836.875|221793.059|110.667 +637797.086|221807.762|113.852 +637791.234|221809.911|114.529 +637785.513|221812.026|114.986 +637774.043|221816.269|115.839 +637768.206|221818.412|116.562 +637750.808|221824.840|117.949 +637739.226|221829.129|118.766 +637733.294|221831.305|119.497 +637715.985|221837.736|120.192 +637692.799|221846.387|120.460 +637687.029|221848.545|120.460 +637681.237|221850.715|120.317 +637675.431|221852.891|120.244 +637669.597|221855.067|120.302 +637663.715|221857.265|120.320 +637657.823|221859.463|120.384 +637652.010|221861.633|120.405 +637646.064|221863.852|120.491 +637634.268|221868.256|120.543 +637628.406|221870.445|120.588 +637622.435|221872.676|120.573 +637616.519|221874.885|120.610 +637610.618|221877.089|120.600 +637604.669|221879.314|120.536 +637598.633|221881.551|120.893 +637592.675|221883.776|120.911 +637586.755|221885.995|120.777 +637580.662|221888.239|121.466 +637544.425|221901.708|122.829 +637519.955|221910.779|124.209 +637501.786|221917.570|124.173 +637495.715|221919.856|123.837 +637489.646|221922.123|123.844 +637483.367|221924.409|124.965 +637471.050|221928.991|125.392 +637452.570|221935.870|125.874 +637440.155|221940.482|126.389 +637433.968|221942.765|126.928 +637427.726|221945.087|127.111 +637415.238|221949.711|127.931 +637390.744|221958.934|126.611 +637384.572|221961.245|126.535 +637378.339|221963.558|126.831 +637372.118|221965.868|127.099 +637365.778|221968.225|127.355 +637359.484|221970.535|128.141 +637353.123|221972.870|128.995 +637321.737|221984.513|130.570 +637309.268|221989.195|130.122 +637303.023|221991.536|130.010 +637296.768|221993.877|129.961 +637284.046|221998.570|131.080 +637277.825|222000.908|130.848 +637271.528|222003.264|130.778 +637265.200|222005.621|130.936 +637258.875|222007.977|131.101 +637252.560|222010.330|131.235 +637233.665|222017.383|131.336 +637227.380|222019.760|130.778 +637221.031|222022.132|130.781 +637208.297|222026.844|131.704 +637202.042|222029.191|131.506 +637195.650|222031.583|131.433 +637189.366|222033.955|130.994 +637176.762|222038.694|130.394 +637170.511|222041.038|130.238 +637157.822|222045.793|129.967 +637145.072|222050.569|129.772 +637138.723|222052.926|130.046 +637125.985|222057.696|129.851 +637106.960|222064.862|128.736 +637100.705|222067.273|127.379 +637094.393|222069.668|126.660 +637088.071|222072.061|126.050 +637081.698|222074.481|125.316 +637075.285|222076.852|125.809 +637068.908|222079.230|125.898 +637062.474|222081.629|126.008 +637056.034|222084.024|126.187 +637049.672|222086.405|126.151 +637043.244|222088.804|126.194 +637036.883|222091.178|126.227 +637037.517|222093.970|126.139 +637043.884|222091.602|126.139 +637050.258|222089.233|126.093 +637056.692|222086.844|126.059 +637063.007|222084.497|126.053 +637069.390|222082.129|125.941 +637075.769|222079.760|125.883 +637082.097|222077.413|125.761 +637088.504|222075.048|125.425 +637094.777|222072.686|126.011 +637101.092|222070.299|126.767 +637107.331|222067.931|127.715 +637113.552|222065.560|128.858 +637132.310|222058.500|130.485 +637138.650|222056.153|130.318 +637144.923|222053.825|130.260 +637151.284|222051.475|129.949 +637157.544|222049.143|130.037 +637163.866|222046.787|130.159 +637170.114|222044.452|130.385 +637176.363|222042.114|130.659 +637195.175|222035.080|131.454 +637207.721|222030.404|131.634 +637214.015|222028.069|131.585 +637220.257|222025.753|131.473 +637226.637|222023.421|130.732 +637232.818|222021.098|131.195 +637239.118|222018.757|131.177 +637245.336|222016.435|131.342 +637251.581|222014.115|131.323 +637257.830|222011.793|131.290 +637264.036|222009.495|131.140 +637270.287|222007.169|131.125 +637276.508|222004.843|131.375 +637295.265|221997.909|130.610 +637301.474|221995.626|130.129 +637307.729|221993.294|130.229 +637320.043|221988.698|130.546 +637363.641|221972.638|127.617 +637369.862|221970.340|127.373 +637376.025|221968.063|127.117 +637382.249|221965.759|126.888 +637388.419|221963.479|126.651 +637394.652|221961.171|126.413 +637400.717|221958.913|126.465 +637455.901|221938.427|125.867 +637461.979|221936.156|126.050 +637468.100|221933.901|125.685 +637492.679|221924.851|123.944 +637498.732|221922.614|123.725 +637516.700|221915.909|124.185 +637540.950|221906.957|122.975 +637559.080|221900.260|122.143 +637565.172|221898.017|121.679 +637571.214|221895.798|121.192 +637577.221|221893.579|120.878 +637583.208|221891.348|120.985 +637589.224|221889.129|120.677 +637595.131|221886.937|120.600 +637601.102|221884.718|120.546 +637607.061|221882.502|120.555 +637612.904|221880.329|120.549 +637618.881|221878.110|120.530 +637624.788|221875.913|120.549 +637630.659|221873.733|120.472 +637636.529|221871.554|120.418 +637642.403|221869.375|120.366 +637648.285|221867.189|120.287 +637654.165|221865.007|120.256 +637660.051|221862.821|120.210 +637665.805|221860.682|120.195 +637671.609|221858.521|120.259 +637677.476|221856.351|120.085 +637683.255|221854.205|120.027 +637689.034|221852.056|119.991 +637694.801|221849.907|120.021 +637700.559|221847.761|120.098 +637740.966|221832.792|118.741 +637758.334|221826.386|117.629 +637775.863|221819.979|115.370 +637821.394|221803.184|112.453 +637827.072|221801.093|112.051 +637832.733|221799.014|111.505 +637838.365|221796.942|111.069 +637844.068|221794.854|110.414 +637849.631|221792.803|110.039 +637855.166|221790.754|109.786 +637860.689|221788.721|109.359 +637882.851|221780.565|107.625 +637888.581|221778.486|106.592 +637894.214|221776.435|105.699 +637899.618|221774.429|105.592 +637910.923|221770.327|103.565 +637889.904|221779.306|106.058 +637884.189|221781.379|107.272 +637878.547|221783.448|108.040 +637856.348|221791.678|109.375 +637845.071|221795.838|110.432 +637839.429|221797.923|110.899 +637833.766|221800.011|111.453 +637828.151|221802.090|111.865 +637822.382|221804.208|112.612 +637793.919|221814.757|114.349 +637776.686|221821.134|115.593 +637765.103|221825.407|116.726 +637741.871|221833.996|118.540 +637735.974|221836.170|119.147 +637718.585|221842.628|119.924 +637712.766|221844.783|120.308 +637707.069|221846.932|119.976 +637701.284|221849.093|120.012 +637695.490|221851.266|119.842 +637689.714|221853.424|119.875 +637683.883|221855.604|119.884 +637678.022|221857.786|120.043 +637672.154|221859.984|119.985 +637666.324|221862.160|120.061 +637660.438|221864.355|120.113 +637654.564|221866.549|120.134 +637648.685|221868.744|120.192 +637642.750|221870.960|120.244 +637636.813|221873.176|120.326 +637630.887|221875.388|120.369 +637624.965|221877.598|120.418 +637618.997|221879.829|120.421 +637613.084|221882.039|120.472 +637607.180|221884.243|120.497 +637601.157|221886.492|120.512 +637595.189|221888.720|120.588 +637589.227|221890.945|120.652 +637583.211|221893.192|120.698 +637577.236|221895.417|120.863 +637571.177|221897.666|121.152 +637565.136|221899.913|121.375 +637559.076|221902.162|121.722 +637552.929|221904.433|122.201 +637546.808|221906.701|122.576 +637504.167|221922.565|123.999 +637498.153|221924.830|123.706 +637491.990|221927.125|123.874 +637485.824|221929.402|124.426 +637411.654|221957.017|126.401 +637405.539|221959.309|126.258 +637399.318|221961.626|126.401 +637393.091|221963.942|126.611 +637386.815|221966.280|126.773 +637380.643|221968.569|127.074 +637374.352|221970.904|127.358 +637368.146|221973.214|127.550 +637361.800|221975.549|128.248 +637355.451|221977.881|129.019 +637317.769|221991.874|130.708 +637311.557|221994.215|130.311 +637305.293|221996.556|130.290 +637298.993|221998.897|130.564 +637273.719|222008.288|131.592 +637261.143|222013.000|131.311 +637254.831|222015.356|131.403 +637248.527|222017.709|131.421 +637242.255|222020.062|131.244 +637235.872|222022.436|131.457 +637229.648|222024.789|130.897 +637216.846|222029.529|131.768 +637210.616|222031.879|131.311 +637204.258|222034.247|131.445 +637197.909|222036.616|131.543 +637191.633|222038.990|130.961 +637172.641|222046.092|130.851 +637166.365|222048.463|130.345 +637159.986|222050.853|130.241 +637153.646|222053.215|130.369 +637140.896|222057.958|130.811 +637115.585|222067.532|128.547 +637102.994|222072.335|126.645 +637096.724|222074.743|125.383 +637090.275|222077.145|125.520 +637083.871|222079.519|125.883 +637077.495|222081.900|125.895 +637071.057|222084.302|125.962 +637064.614|222086.701|126.136 +637058.256|222089.084|125.980 +637045.399|222093.888|126.041 +637038.974|222096.287|126.032 +637036.828|222100.356|125.995 +637043.192|222097.984|125.995 +637049.550|222095.610|126.069 +637055.991|222093.220|125.928 +637062.300|222090.873|125.895 +637068.671|222088.499|125.883 +637075.041|222086.128|125.907 +637081.420|222083.756|125.813 +637087.739|222081.406|125.755 +637094.124|222079.032|125.654 +637100.458|222076.685|125.444 +637106.774|222074.292|126.227 +637113.013|222071.921|127.126 +637137.930|222062.435|131.067 +637150.525|222057.754|130.961 +637163.147|222053.069|130.644 +637169.474|222050.710|130.668 +637194.520|222041.358|131.110 +637200.762|222039.018|131.427 +637207.038|222036.680|131.454 +637213.356|222034.342|131.137 +637219.443|222032.013|132.332 +637225.884|222029.685|131.025 +637232.169|222027.341|131.046 +637238.387|222025.021|131.183 +637244.595|222022.699|131.384 +637250.816|222020.379|131.521 +637269.507|222013.408|131.814 +637300.657|222001.868|130.839 +637306.909|221999.561|130.494 +637313.115|221997.251|130.488 +637319.223|221994.965|130.756 +637356.573|221981.166|128.864 +637362.901|221978.862|127.846 +637369.030|221976.588|127.748 +637375.166|221974.290|128.013 +637381.344|221972.010|127.635 +637387.620|221969.706|127.071 +637393.792|221967.423|126.806 +637399.940|221965.140|126.700 +637406.124|221962.854|126.410 +637412.294|221960.568|126.227 +637418.466|221958.282|126.050 +637424.556|221956.017|126.017 +637430.704|221953.731|126.026 +637436.754|221951.485|125.898 +637442.902|221949.196|125.962 +637448.986|221946.928|126.035 +637455.014|221944.682|126.090 +637461.156|221942.408|125.880 +637467.213|221940.155|125.828 +637473.269|221937.903|125.806 +637485.638|221933.374|124.441 +637491.813|221931.106|123.853 +637497.845|221928.869|123.712 +637503.840|221926.634|123.798 +637527.956|221917.689|123.286 +637534.095|221915.433|122.752 +637540.154|221913.199|122.310 +637546.189|221910.968|122.033 +637552.209|221908.740|121.844 +637558.250|221906.505|121.576 +637564.331|221904.265|121.134 +637570.296|221902.055|120.978 +637576.255|221899.843|120.872 +637582.214|221897.630|120.786 +637588.173|221895.417|120.713 +637594.110|221893.204|120.759 +637600.100|221890.985|120.597 +637606.010|221888.790|120.518 +637611.911|221886.596|120.506 +637617.821|221884.398|120.479 +637623.639|221882.228|120.573 +637629.522|221880.034|120.695 +637635.432|221877.836|120.716 +637641.242|221875.678|120.637 +637647.115|221873.496|120.579 +637652.989|221871.313|120.533 +637658.822|221869.149|120.411 +637664.665|221866.982|120.274 +637670.515|221864.815|120.122 +637676.403|221862.639|119.832 +637682.249|221860.468|119.732 +637687.967|221858.344|119.646 +637693.801|221856.177|119.653 +637699.586|221854.025|119.601 +637705.314|221851.897|119.546 +637711.032|221849.773|119.546 +637716.796|221847.624|119.625 +637734.069|221841.226|119.067 +637739.835|221839.099|118.708 +637763.064|221830.567|116.653 +637768.709|221828.467|116.623 +637774.631|221826.306|115.815 +637803.359|221815.754|113.255 +637809.022|221813.669|112.825 +637814.640|221811.581|112.819 +637825.884|221807.424|112.353 +637854.072|221797.079|109.631 +637859.634|221795.028|109.274 +637876.203|221788.904|108.503 +637881.952|221786.826|107.366 +637887.584|221784.768|106.650 +637893.239|221782.705|105.882 +637898.618|221780.705|105.833 +637891.974|221784.539|105.888 +637886.457|221786.573|106.439 +637880.699|221788.663|107.595 +637858.467|221796.884|109.295 +637852.880|221798.947|109.750 +637824.570|221809.396|112.313 +637818.858|221811.499|112.871 +637813.448|221813.535|112.612 +637807.788|221815.641|112.795 +637802.060|221817.760|113.249 +637796.242|221819.890|114.053 +637779.039|221826.248|115.437 +637773.232|221828.385|116.050 +637767.389|221830.540|116.583 +637761.607|221832.686|116.912 +637732.602|221843.415|118.973 +637715.290|221849.858|119.518 +637709.541|221852.013|119.390 +637703.762|221854.171|119.396 +637697.977|221856.332|119.457 +637692.134|221858.512|119.500 +637686.288|221860.691|119.582 +637680.488|221862.849|119.753 +637674.584|221865.037|120.119 +637668.707|221867.235|120.119 +637662.767|221869.439|120.405 +637656.905|221871.630|120.381 +637651.026|221873.825|120.457 +637645.070|221876.041|120.591 +637639.126|221878.257|120.716 +637633.222|221880.463|120.671 +637627.309|221882.673|120.692 +637621.402|221884.880|120.704 +637615.477|221887.102|120.530 +637609.539|221889.327|120.439 +637603.635|221891.531|120.488 +637597.612|221893.780|120.527 +637591.644|221896.005|120.631 +637585.652|221898.230|120.856 +637579.666|221900.470|120.789 +637573.646|221902.717|120.899 +637567.623|221904.960|121.042 +637561.533|221907.225|121.222 +637555.507|221909.465|121.430 +637549.369|221911.736|121.887 +637543.276|221913.997|122.161 +637537.198|221916.259|122.380 +637531.062|221918.539|122.603 +637524.960|221920.801|122.984 +637518.864|221923.074|123.051 +637512.652|221925.360|123.743 +637506.575|221927.631|123.761 +637494.358|221932.191|123.850 +637488.143|221934.486|124.337 +637481.947|221936.781|124.746 +637475.756|221939.073|125.151 +637469.575|221941.381|125.191 +637463.448|221943.664|125.300 +637457.276|221945.968|125.337 +637451.147|221948.251|125.511 +637444.968|221950.555|125.627 +637438.738|221952.881|125.694 +637432.590|221955.179|125.678 +637426.421|221957.480|125.800 +637420.173|221959.803|126.044 +637414.010|221962.101|126.194 +637407.773|221964.421|126.413 +637401.549|221966.740|126.590 +637388.998|221971.398|127.282 +637382.731|221973.714|127.800 +637376.422|221976.049|128.236 +637370.335|221978.356|127.696 +637364.080|221980.688|127.815 +637351.379|221985.354|129.421 +637319.918|221997.046|130.820 +637313.700|221999.387|130.482 +637301.090|222004.069|131.110 +637263.261|222018.178|131.823 +637250.707|222022.891|131.503 +637244.370|222025.268|131.348 +637238.100|222027.621|131.174 +637231.824|222029.974|131.058 +637225.439|222032.345|131.348 +637219.032|222034.686|132.421 +637212.832|222037.070|131.162 +637206.465|222039.438|131.396 +637200.134|222041.809|131.320 +637193.828|222044.181|131.067 +637174.808|222051.283|131.275 +637168.526|222053.654|130.833 +637155.840|222058.378|131.204 +637143.091|222063.155|131.052 +637136.793|222065.520|130.845 +637130.542|222067.928|129.482 +637117.987|222072.738|127.242 +637111.690|222075.142|126.325 +637105.384|222077.544|125.465 +637098.998|222079.925|125.578 +637092.616|222082.308|125.675 +637079.738|222087.115|125.816 +637073.371|222089.499|125.767 +637067.000|222091.879|125.791 +637060.566|222094.281|125.861 +637054.199|222096.661|125.895 +637047.767|222099.060|125.989 +637041.351|222101.468|125.843 +637034.996|222103.849|125.745 +637035.755|222106.857|125.767 +637042.193|222104.467|125.630 +637048.548|222102.093|125.797 +637054.909|222099.719|125.880 +637061.282|222097.347|125.803 +637067.659|222094.976|125.758 +637074.093|222092.580|125.721 +637080.408|222090.230|125.709 +637086.782|222087.856|125.709 +637093.106|222085.506|125.633 +637099.486|222083.131|125.611 +637105.875|222080.757|125.499 +637112.196|222078.404|125.523 +637118.454|222076.036|126.242 +637124.702|222073.664|127.090 +637137.110|222068.909|129.687 +637143.307|222066.532|131.015 +637149.543|222064.197|131.284 +637168.438|222057.150|131.494 +637193.654|222047.790|130.891 +637199.936|222045.424|131.415 +637206.157|222043.108|131.406 +637212.463|222040.770|131.183 +637218.642|222038.423|132.104 +637231.324|222033.744|131.204 +637237.545|222031.425|131.287 +637243.824|222029.078|131.412 +637249.960|222026.777|131.732 +637256.251|222024.430|131.781 +637312.410|222003.560|130.753 +637318.577|222001.271|130.595 +637324.734|221998.958|130.945 +637355.936|221987.457|128.565 +637362.194|221985.153|127.989 +637368.381|221982.855|127.894 +637386.791|221975.976|128.312 +637393.015|221973.687|127.687 +637399.221|221971.401|127.215 +637417.771|221964.533|126.364 +637423.888|221962.266|126.145 +637430.070|221959.974|125.941 +637436.193|221957.700|125.752 +637442.323|221955.429|125.535 +637448.452|221953.155|125.361 +637454.649|221950.857|125.169 +637460.726|221948.601|124.977 +637466.847|221946.325|124.901 +637472.909|221944.069|124.828 +637479.002|221941.811|124.621 +637485.107|221939.549|124.371 +637491.264|221937.281|123.862 +637497.370|221935.017|123.664 +637503.429|221932.773|123.392 +637509.464|221930.533|123.274 +637515.481|221928.290|123.267 +637521.574|221926.040|122.890 +637527.667|221923.788|122.542 +637533.687|221921.560|122.277 +637539.694|221919.331|122.091 +637545.772|221917.076|121.902 +637551.725|221914.869|121.719 +637557.808|221912.611|121.533 +637563.755|221910.401|121.426 +637569.790|221908.164|121.216 +637575.767|221905.948|121.003 +637581.744|221903.729|120.826 +637587.703|221901.516|120.747 +637593.659|221899.297|120.695 +637646.737|221879.528|120.646 +637658.451|221875.175|120.430 +637687.650|221864.324|119.915 +637693.527|221862.157|119.448 +637699.276|221860.023|119.275 +637705.073|221857.865|119.171 +637710.864|221855.710|119.119 +637716.604|221853.574|119.031 +637722.331|221851.440|119.006 +637728.046|221849.307|119.049 +637739.543|221845.039|118.683 +637745.352|221842.903|118.159 +637774.232|221832.244|116.053 +637780.124|221830.095|115.111 +637785.717|221828.010|115.074 +637803.216|221821.600|112.907 +637808.803|221819.525|112.743 +637814.448|221817.427|112.612 +637820.059|221815.346|112.380 +637825.551|221813.300|112.377 +637853.956|221802.846|109.710 +637859.439|221800.807|109.606 +637865.066|221798.740|109.030 +637870.613|221796.698|108.512 +637876.127|221794.650|108.369 +637881.805|221792.580|107.445 +637887.469|221790.514|106.607 +637892.992|221788.484|106.034 +637910.097|221782.281|102.660 +637915.602|221780.251|102.245 +637894.061|221789.721|106.019 +637888.627|221791.748|106.074 +637882.887|221793.836|107.165 +637871.665|221797.969|108.332 +637866.026|221800.033|109.161 +637854.959|221804.153|109.460 +637849.323|221806.223|110.112 +637843.629|221808.317|110.755 +637826.579|221814.611|112.264 +637821.034|221816.684|112.225 +637815.423|221818.769|112.450 +637809.754|221820.875|112.663 +637804.109|221822.978|112.810 +637780.892|221831.512|115.480 +637769.325|221835.776|116.556 +637763.534|221837.922|116.912 +637746.187|221844.347|118.016 +637740.283|221846.521|118.659 +637728.735|221850.818|118.979 +637723.056|221852.949|118.793 +637717.247|221855.116|118.884 +637711.452|221857.277|118.927 +637705.652|221859.438|119.022 +637699.779|221861.627|119.171 +637693.923|221863.794|119.540 +637676.260|221870.350|120.351 +637664.534|221874.736|120.256 +637658.661|221876.931|120.283 +637652.793|221879.122|120.308 +637646.795|221881.344|120.625 +637599.197|221899.114|120.905 +637587.267|221903.576|120.805 +637581.254|221905.820|120.869 +637575.225|221908.063|121.012 +637569.190|221910.309|121.213 +637563.100|221912.574|121.399 +637556.986|221914.842|121.728 +637550.990|221917.076|121.804 +637544.858|221919.359|121.957 +637538.783|221921.617|122.161 +637532.653|221923.882|122.661 +637526.597|221926.153|122.499 +637520.522|221928.408|122.780 +637514.344|221930.707|122.966 +637508.233|221932.980|123.146 +637502.051|221935.279|123.399 +637495.943|221937.549|123.627 +637489.777|221939.842|123.834 +637483.608|221942.134|124.103 +637477.454|221944.420|124.292 +637471.230|221946.733|124.560 +637465.085|221949.019|124.767 +637458.812|221951.348|125.011 +637452.668|221953.631|125.258 +637446.416|221955.959|125.441 +637440.226|221958.261|125.648 +637433.971|221960.586|125.895 +637427.796|221962.884|126.087 +637421.560|221965.207|126.282 +637415.326|221967.523|126.474 +637409.093|221969.843|126.696 +637402.805|221972.163|127.291 +637396.484|221974.503|127.724 +637390.266|221976.796|128.327 +637371.639|221983.788|127.769 +637365.385|221986.116|127.925 +637359.078|221988.466|128.028 +637327.416|222000.143|131.107 +637321.216|222002.484|130.647 +637314.940|222004.825|130.729 +637308.619|222007.166|131.177 +637302.276|222009.525|131.369 +637258.104|222025.999|132.067 +637251.831|222028.353|131.887 +637245.534|222030.730|131.430 +637239.261|222033.083|131.287 +637232.922|222035.454|131.211 +637220.144|222040.164|132.497 +637213.978|222042.547|130.961 +637207.586|222044.912|131.418 +637201.265|222047.284|131.296 +637194.882|222049.676|131.165 +637188.631|222052.020|130.988 +637175.842|222056.766|131.653 +637156.840|222063.883|131.372 +637125.434|222075.862|126.748 +637119.146|222078.264|125.706 +637112.806|222080.656|125.258 +637106.417|222083.040|125.404 +637100.025|222085.417|125.569 +637093.588|222087.822|125.599 +637087.218|222090.203|125.596 +637080.783|222092.608|125.630 +637074.413|222094.988|125.657 +637068.043|222097.366|125.700 +637061.614|222099.767|125.681 +637055.247|222102.145|125.755 +637048.834|222104.550|125.581 +637042.406|222106.948|125.657 +637036.023|222109.317|125.998 +637033.969|222112.950|126.075 +637040.400|222110.557|125.956 +637046.728|222108.213|125.590 +637053.165|222105.818|125.480 +637059.523|222103.440|125.611 +637065.885|222101.063|125.700 +637072.261|222098.685|125.627 +637078.577|222096.332|125.596 +637084.895|222093.979|125.532 +637091.268|222091.602|125.532 +637097.587|222089.246|125.535 +637103.966|222086.865|125.505 +637110.294|222084.509|125.398 +637116.625|222082.153|125.294 +637122.922|222079.788|125.596 +637129.167|222077.413|126.468 +637135.413|222075.039|127.349 +637160.178|222065.581|131.625 +637166.505|222063.222|131.598 +637172.769|222060.881|131.637 +637185.440|222056.190|130.976 +637191.740|222053.852|130.720 +637197.940|222051.502|131.439 +637204.228|222049.161|131.345 +637210.564|222046.796|131.381 +637216.779|222044.473|131.442 +637222.891|222042.117|132.942 +637229.179|222039.773|132.896 +637235.564|222037.460|131.552 +637248.049|222032.787|131.884 +637304.239|222011.878|131.137 +637310.451|222009.565|131.034 +637316.684|222007.254|130.830 +637322.893|222004.938|130.808 +637335.307|222000.329|130.403 +637347.844|221995.715|129.312 +637354.162|221993.410|128.269 +637360.353|221991.112|128.108 +637366.543|221988.811|127.967 +637372.801|221986.485|127.818 +637385.035|221981.904|128.196 +637397.322|221977.317|128.324 +637403.515|221975.028|127.910 +637409.800|221972.714|127.358 +637416.052|221970.419|126.660 +637422.221|221968.127|126.492 +637428.399|221965.835|126.291 +637434.520|221963.564|126.087 +637440.716|221961.266|125.816 +637446.837|221958.992|125.666 +637452.954|221956.718|125.550 +637459.096|221954.438|125.319 +637465.173|221952.165|125.465 +637471.355|221949.900|124.715 +637477.503|221947.617|124.535 +637483.608|221945.355|124.258 +637489.774|221943.069|124.014 +637495.821|221940.826|123.773 +637501.920|221938.561|123.597 +637508.038|221936.294|123.365 +637514.085|221934.047|123.185 +637520.147|221931.798|122.954 +637526.198|221929.551|122.804 +637532.248|221927.302|122.664 +637538.313|221925.050|122.490 +637544.355|221922.815|122.140 +637550.420|221920.560|121.999 +637556.440|221918.326|121.801 +637562.405|221916.113|121.591 +637568.483|221913.854|121.463 +637616.352|221896.081|120.006 +637669.116|221876.400|120.232 +637674.995|221874.209|120.213 +637698.358|221865.540|119.400 +637704.168|221863.385|119.244 +637709.965|221861.240|118.900 +637715.729|221859.103|118.720 +637721.517|221856.945|118.705 +637727.299|221854.802|118.485 +637733.041|221852.665|118.439 +637738.772|221850.529|118.464 +637750.372|221846.240|117.772 +637756.221|221844.091|117.141 +637767.682|221839.849|116.620 +637773.440|221837.727|116.160 +637779.219|221835.600|115.647 +637785.028|221833.466|115.029 +637790.682|221831.360|115.026 +637802.402|221827.093|113.075 +637813.713|221822.908|112.478 +637819.382|221820.805|112.282 +637830.489|221816.678|112.060 +637847.534|221810.411|110.405 +637858.720|221806.281|109.634 +637875.478|221800.112|108.143 +637881.239|221798.018|107.165 +637886.829|221795.963|106.567 +637892.370|221793.921|106.159 +637903.437|221789.855|105.010 +637920.152|221783.738|102.831 +637890.056|221796.823|106.110 +637884.475|221798.883|106.686 +637878.709|221800.977|107.918 +637873.049|221803.062|108.597 +637850.603|221811.374|110.347 +637845.095|221813.425|110.588 +637839.405|221815.532|111.042 +637833.787|221817.613|111.472 +637828.100|221819.717|111.944 +637822.549|221821.795|111.947 +637816.880|221823.908|112.167 +637811.223|221826.014|112.350 +637805.645|221828.096|112.511 +637799.756|221830.244|113.587 +637793.901|221832.396|114.331 +637782.395|221836.651|115.385 +637776.664|221838.779|115.724 +637765.109|221843.058|116.605 +637759.379|221845.195|116.763 +637753.576|221847.344|117.223 +637741.929|221851.657|118.141 +637736.214|221853.799|118.071 +637730.451|221855.951|118.217 +637724.699|221858.097|118.336 +637718.896|221860.264|118.412 +637713.065|221862.437|118.634 +637707.274|221864.589|118.973 +637695.447|221868.978|119.653 +637683.758|221873.331|120.131 +637677.891|221875.529|120.085 +637672.103|221877.714|119.735 +637666.241|221879.909|119.707 +637660.359|221882.106|119.784 +637654.446|221884.310|120.024 +637648.490|221886.529|120.177 +637642.564|221888.733|120.512 +637624.828|221895.380|120.338 +637613.066|221899.803|119.924 +637607.098|221902.034|120.000 +637595.043|221906.509|120.759 +637576.962|221913.239|121.481 +637564.834|221917.753|121.932 +637558.869|221919.990|121.878 +637552.816|221922.251|121.945 +637546.741|221924.516|122.146 +637540.673|221926.778|122.344 +637534.610|221929.036|122.545 +637528.496|221931.316|122.697 +637522.372|221933.596|122.920 +637516.310|221935.855|123.176 +637510.141|221938.153|123.365 +637504.033|221940.430|123.591 +637497.869|221942.725|123.795 +637491.697|221945.020|124.057 +637485.589|221947.291|124.359 +637479.392|221949.604|124.484 +637473.242|221951.896|124.718 +637467.042|221954.207|124.898 +637460.894|221956.493|125.166 +637454.688|221958.803|125.425 +637448.495|221961.107|125.654 +637442.304|221963.412|125.886 +637436.114|221965.713|126.148 +637429.823|221968.039|126.654 +637423.675|221970.334|126.718 +637417.469|221972.650|126.764 +637411.108|221974.976|127.779 +637386.261|221984.248|128.138 +637380.043|221986.580|128.025 +637373.907|221988.884|127.809 +637367.592|221991.237|127.958 +637361.398|221993.544|128.163 +637355.095|221995.894|128.278 +637348.849|221998.199|128.867 +637336.103|222002.896|130.235 +637323.508|222007.559|131.083 +637317.214|222009.921|130.887 +637310.929|222012.262|131.086 +637304.659|222014.600|131.195 +637298.262|222016.959|131.820 +637247.851|222035.799|131.988 +637241.563|222038.176|131.479 +637235.211|222040.523|132.037 +637222.427|222045.257|132.927 +637216.267|222047.640|131.348 +637209.924|222050.009|131.409 +637203.591|222052.377|131.409 +637197.260|222054.745|131.396 +637191.008|222057.120|130.674 +637184.650|222059.485|130.936 +637165.478|222066.611|131.723 +637159.157|222068.973|131.759 +637152.899|222071.378|130.522 +637146.654|222073.783|129.110 +637140.415|222076.194|127.617 +637134.163|222078.568|126.873 +637127.842|222081.001|125.575 +637121.489|222083.390|125.282 +637115.107|222085.774|125.349 +637108.660|222088.179|125.444 +637102.284|222090.559|125.480 +637095.920|222092.946|125.413 +637089.485|222095.348|125.425 +637083.112|222097.728|125.496 +637076.687|222100.133|125.486 +637070.243|222102.529|125.694 +637063.891|222104.912|125.544 +637057.475|222107.317|125.416 +637051.038|222109.713|125.663 +637044.594|222112.106|125.983 +637038.175|222114.504|126.008 +637039.605|222117.004|126.072 +637045.981|222114.629|125.895 +637052.422|222112.234|125.742 +637058.807|222109.865|125.486 +637065.193|222107.491|125.291 +637071.551|222105.107|125.453 +637077.921|222102.727|125.496 +637084.301|222100.350|125.450 +637090.680|222097.969|125.410 +637097.002|222095.610|125.368 +637103.381|222093.229|125.349 +637109.764|222090.849|125.340 +637116.027|222088.511|125.307 +637122.422|222086.131|125.206 +637128.759|222083.771|125.069 +637135.026|222081.397|125.755 +637147.398|222076.654|128.150 +637153.597|222074.271|129.467 +637159.785|222071.887|130.915 +637165.963|222069.534|131.805 +637184.918|222062.502|130.955 +637197.431|222057.812|131.317 +637203.770|222055.446|131.302 +637209.985|222053.124|131.348 +637216.365|222050.758|131.040 +637222.412|222048.421|132.570 +637228.599|222046.068|133.430 +637234.836|222043.745|133.338 +637241.291|222041.407|131.927 +637247.537|222039.082|131.814 +637253.736|222036.753|132.067 +637284.966|222025.103|131.814 +637291.120|222022.793|132.058 +637297.338|222020.480|131.842 +637309.807|222015.856|131.244 +637322.240|222011.226|130.994 +637347.252|222001.987|128.979 +637353.495|221999.686|128.416 +637359.670|221997.385|128.342 +637365.866|221995.081|128.126 +637372.014|221992.776|128.272 +637378.232|221990.469|127.986 +637384.316|221988.189|128.166 +637390.470|221985.882|128.321 +637415.131|221976.722|127.349 +637421.355|221974.427|126.815 +637427.336|221972.163|127.379 +637439.713|221967.588|126.501 +637445.904|221965.286|126.273 +637452.049|221963.006|125.965 +637458.218|221960.726|125.557 +637464.369|221958.443|125.264 +637470.456|221956.182|125.011 +637476.607|221953.899|124.795 +637482.693|221951.634|124.581 +637488.789|221949.370|124.356 +637494.888|221947.102|124.142 +637500.994|221944.834|123.914 +637507.035|221942.588|123.709 +637513.149|221940.317|123.481 +637519.199|221938.068|123.289 +637525.195|221935.839|123.075 +637531.315|221933.566|122.886 +637537.301|221931.335|122.758 +637543.352|221929.082|122.658 +637549.384|221926.845|122.344 +637555.352|221924.614|122.377 +637561.375|221922.376|122.164 +637567.413|221920.136|121.887 +637585.582|221913.427|120.375 +637591.526|221911.209|120.351 +637609.494|221904.530|119.768 +637615.440|221902.308|119.811 +637621.271|221900.114|120.101 +637662.477|221884.755|119.543 +637674.145|221880.396|119.576 +637679.945|221878.214|119.896 +637697.416|221871.719|119.326 +637708.996|221867.406|119.156 +637726.436|221860.944|118.238 +637732.188|221858.804|118.144 +637737.955|221856.658|117.997 +637755.246|221850.245|117.217 +637766.826|221845.963|116.431 +637772.522|221843.851|116.187 +637778.271|221841.726|115.757 +637807.269|221831.070|112.520 +637812.850|221828.995|112.377 +637818.492|221826.895|112.246 +637824.061|221824.822|112.176 +637829.624|221822.746|112.136 +637835.290|221820.652|111.752 +637841.102|221818.540|110.621 +637874.573|221806.165|108.399 +637885.951|221802.005|106.677 +637891.434|221799.972|106.439 +637902.651|221795.872|104.736 +637908.439|221793.787|103.318 +637914.099|221791.724|102.346 +637919.534|221789.706|102.154 +637891.958|221801.294|106.360 +637886.521|221803.327|106.446 +637880.678|221805.452|107.713 +637875.075|221807.515|108.399 +637829.852|221824.273|111.978 +637824.216|221826.379|112.048 +637818.675|221828.458|112.023 +637813.006|221830.570|112.243 +637807.324|221832.683|112.538 +637778.134|221843.451|115.788 +637772.385|221845.594|115.971 +637766.573|221847.749|116.419 +637760.757|221849.916|116.665 +637743.331|221856.390|117.668 +637737.562|221858.545|117.805 +637731.813|221860.694|117.888 +637725.946|221862.876|118.193 +637719.938|221865.080|119.104 +637708.325|221869.433|119.086 +637696.712|221873.779|119.150 +637684.874|221878.186|119.692 +637679.104|221880.357|119.503 +637673.160|221882.582|119.537 +637655.421|221889.208|119.878 +637613.968|221904.756|119.485 +637595.942|221911.480|120.012 +637589.980|221913.708|120.116 +637583.817|221915.994|120.594 +637547.396|221929.551|122.222 +637516.837|221940.930|123.548 +637510.729|221943.207|123.746 +637504.569|221945.508|123.904 +637498.473|221947.782|124.081 +637492.304|221950.080|124.340 +637486.147|221952.375|124.557 +637479.981|221954.670|124.849 +637473.808|221956.962|125.188 +637467.594|221959.276|125.456 +637461.446|221961.565|125.730 +637455.246|221963.875|125.968 +637449.034|221966.185|126.291 +637430.335|221973.132|127.483 +637418.091|221977.743|126.965 +637411.739|221980.075|127.928 +637393.097|221987.031|128.495 +637386.907|221989.366|128.202 +637380.750|221991.676|128.102 +637368.302|221996.342|128.019 +637362.038|221998.677|128.281 +637349.553|222003.341|128.559 +637330.424|222010.372|131.153 +637311.694|222017.386|131.220 +637305.421|222019.730|131.357 +637299.103|222022.071|131.854 +637292.766|222024.436|132.073 +637286.472|222026.798|131.985 +637280.224|222029.136|132.043 +637255.044|222038.569|132.003 +637248.783|222040.929|131.759 +637242.322|222043.300|132.695 +637229.602|222048.024|133.518 +637223.396|222050.380|132.887 +637217.224|222052.767|131.445 +637210.912|222055.145|131.220 +637204.633|222057.495|131.253 +637198.226|222059.887|131.381 +637192.033|222062.246|130.659 +637185.607|222064.633|131.015 +637147.852|222078.974|127.218 +637141.682|222081.370|125.596 +637135.346|222083.768|125.066 +637128.969|222086.161|125.032 +637122.572|222088.548|125.215 +637116.192|222090.937|125.230 +637109.819|222093.324|125.203 +637103.439|222095.713|125.258 +637097.005|222098.121|125.288 +637090.622|222100.505|125.404 +637084.261|222102.895|125.310 +637077.824|222105.299|125.435 +637071.475|222107.689|125.203 +637065.037|222110.094|125.358 +637058.591|222112.493|125.669 +637052.163|222114.898|125.733 +637045.728|222117.296|125.971 +637039.367|222119.677|125.971 +637037.185|222123.575|125.938 +637043.552|222121.204|125.831 +637049.974|222118.808|125.855 +637056.405|222116.416|125.764 +637062.776|222114.044|125.703 +637069.164|222111.676|125.441 +637075.574|222109.314|124.874 +637081.917|222106.927|125.267 +637088.281|222104.550|125.364 +637094.667|222102.175|125.218 +637101.046|222099.798|125.191 +637107.365|222097.445|125.157 +637113.744|222095.067|125.145 +637120.124|222092.687|125.157 +637126.388|222090.352|125.136 +637132.779|222087.975|125.029 +637139.104|222085.615|125.038 +637145.395|222083.250|125.432 +637151.598|222080.867|126.782 +637157.733|222078.511|128.129 +637163.921|222076.130|129.571 +637176.338|222071.378|131.930 +637182.727|222069.028|131.314 +637188.978|222066.718|130.909 +637195.315|222064.356|130.872 +637201.548|222062.012|131.250 +637207.821|222059.671|131.293 +637214.149|222057.336|130.848 +637220.288|222054.983|132.101 +637226.432|222052.630|133.286 +637232.608|222050.307|133.673 +637238.972|222047.942|133.515 +637245.205|222045.623|133.451 +637251.627|222043.309|131.869 +637276.590|222034.007|131.808 +637282.872|222031.654|131.991 +637289.038|222029.346|132.155 +637295.296|222027.018|132.107 +637301.508|222024.710|131.960 +637307.777|222022.400|131.400 +637313.995|222020.089|131.265 +637320.223|222017.776|131.083 +637326.422|222015.463|131.134 +637345.305|222008.534|129.013 +637351.507|222006.236|128.711 +637363.894|222001.618|128.714 +637376.217|221997.040|128.440 +637382.426|221994.736|128.227 +637388.583|221992.432|128.348 +637394.725|221990.152|128.214 +637400.864|221987.869|128.135 +637419.508|221980.977|126.983 +637468.566|221962.753|125.745 +637553.803|221931.191|121.625 +637577.953|221922.239|120.637 +637590.005|221917.774|120.079 +637595.985|221915.555|119.906 +637601.947|221913.336|119.845 +637607.927|221911.114|119.710 +637613.941|221908.901|119.153 +637619.781|221906.710|119.412 +637655.211|221893.512|119.314 +637661.108|221891.320|119.168 +637666.909|221889.144|119.448 +637684.310|221882.649|119.601 +637696.112|221878.284|118.951 +637707.615|221873.986|119.092 +637730.932|221865.339|118.055 +637736.803|221863.175|117.504 +637742.557|221861.032|117.421 +637748.284|221858.905|117.214 +637765.606|221852.483|116.419 +637771.379|221850.343|116.123 +637777.140|221848.218|115.644 +637806.075|221837.553|113.093 +637811.960|221835.411|112.051 +637817.608|221833.311|111.901 +637828.801|221829.126|112.036 +637845.876|221822.838|110.408 +637851.475|221820.765|110.079 +637857.132|221818.680|109.564 +637862.737|221816.617|109.024 +637873.807|221812.502|108.735 +637879.647|221810.387|107.442 +637885.390|221808.293|106.522 +637890.867|221806.247|106.519 +637902.343|221802.087|104.147 +637908.067|221800.011|102.937 +637913.617|221797.960|102.553 +637919.235|221795.906|101.749 +637924.231|221793.988|102.806 +637906.028|221801.834|102.968 +637888.791|221808.104|106.513 +637883.268|221810.152|106.903 +637877.432|221812.273|108.177 +637860.616|221818.500|109.509 +637855.071|221820.570|109.618 +637843.760|221824.749|110.688 +637832.272|221828.982|112.020 +637821.220|221833.140|111.618 +637815.530|221835.255|111.923 +637809.805|221837.377|112.365 +637780.767|221848.084|115.544 +637774.973|221850.236|115.910 +637769.200|221852.382|116.214 +637757.572|221856.683|117.202 +637751.848|221858.832|117.129 +637746.066|221860.987|117.293 +637740.311|221863.135|117.382 +637734.440|221865.306|117.943 +637705.198|221876.193|119.098 +637699.382|221878.372|119.055 +637687.623|221882.752|119.543 +637670.134|221889.315|119.247 +637664.248|221891.528|119.064 +637658.286|221893.750|119.220 +637652.297|221895.978|119.521 +637628.525|221904.875|119.567 +637622.539|221907.109|119.677 +637616.684|221909.325|119.208 +637610.728|221911.553|119.223 +637598.637|221916.049|119.842 +637592.541|221918.323|119.988 +637586.460|221920.581|120.369 +637574.420|221925.074|120.631 +637568.361|221927.339|120.692 +637543.855|221936.440|122.146 +637420.264|221982.471|126.873 +637413.991|221984.778|127.724 +637401.513|221989.439|127.974 +637395.289|221991.758|128.236 +637389.028|221994.096|128.348 +637382.798|221996.431|128.318 +637376.544|221998.769|128.443 +637364.071|222003.435|128.537 +637351.593|222008.096|128.757 +637345.347|222010.427|128.958 +637326.273|222017.477|130.772 +637319.963|222019.824|131.107 +637313.675|222022.168|131.302 +637307.390|222024.512|131.521 +637301.017|222026.877|131.957 +637294.674|222029.240|132.201 +637288.420|222031.580|132.244 +637282.162|222033.943|131.884 +637275.834|222036.302|132.079 +637256.955|222043.379|131.973 +637250.512|222045.754|132.728 +637244.129|222048.104|133.512 +637231.428|222052.855|133.612 +637225.195|222055.212|133.210 +637219.035|222057.601|131.625 +637212.832|222059.960|130.948 +637206.413|222062.353|131.140 +637200.061|222064.724|131.290 +637193.788|222067.105|130.723 +637187.439|222069.473|130.878 +637181.044|222071.835|131.525 +637149.879|222083.817|125.483 +637143.545|222086.222|124.895 +637137.211|222088.590|124.962 +637130.819|222090.980|125.044 +637124.434|222093.370|125.075 +637118.054|222095.759|125.063 +637111.675|222098.149|125.093 +637105.231|222100.557|125.145 +637098.916|222102.922|125.148 +637092.466|222105.330|125.331 +637086.102|222107.720|125.233 +637079.738|222110.106|125.157 +637073.291|222112.511|125.374 +637066.842|222114.910|125.651 +637060.474|222117.293|125.681 +637053.979|222119.720|125.825 +637047.621|222122.106|125.758 +637041.193|222124.508|125.825 +637034.768|222126.913|125.904 +637035.350|222129.607|125.809 +637041.699|222127.230|125.980 +637048.075|222124.862|125.745 +637054.500|222122.466|125.691 +637060.862|222120.088|125.736 +637067.238|222117.717|125.584 +637073.602|222115.340|125.599 +637079.991|222112.968|125.294 +637086.367|222110.591|125.206 +637092.735|222108.213|125.258 +637099.105|222105.833|125.297 +637105.439|222103.480|125.054 +637111.812|222101.099|125.081 +637118.198|222098.719|124.996 +637124.455|222096.384|124.983 +637130.835|222094.001|124.999 +637137.217|222091.617|125.008 +637143.493|222089.282|124.849 +637149.885|222086.899|124.822 +637156.060|222084.543|125.791 +637168.432|222079.775|128.684 +637180.785|222075.011|131.674 +637187.107|222072.680|131.128 +637193.425|222070.345|130.659 +637199.692|222067.977|131.256 +637205.977|222065.636|131.147 +637212.250|222063.292|131.165 +637218.507|222060.948|131.342 +637224.613|222058.589|132.875 +637230.849|222056.242|133.234 +637237.070|222053.895|133.743 +637243.306|222051.572|133.618 +637249.579|222049.225|133.719 +637255.986|222046.884|132.744 +637262.283|222044.562|132.189 +637274.758|222039.908|132.165 +637281.010|222037.579|132.061 +637293.464|222032.915|132.320 +637312.221|222025.963|131.369 +637318.446|222023.649|131.180 +637324.673|222021.336|130.976 +637330.912|222019.023|130.708 +637349.730|222012.085|128.992 +637355.918|222009.787|128.781 +637362.148|222007.465|128.717 +637368.314|222005.163|128.708 +637374.498|222002.862|128.568 +637380.671|222000.558|128.547 +637386.870|221998.253|128.382 +637392.975|221995.974|128.437 +637399.184|221993.663|128.248 +637405.366|221991.377|127.885 +637411.526|221989.088|127.660 +637417.743|221986.796|127.126 +637448.440|221975.375|126.416 +637454.658|221973.089|125.672 +637460.766|221970.815|125.602 +637466.908|221968.535|125.340 +637473.034|221966.256|125.209 +637485.235|221961.717|124.947 +637491.331|221959.452|124.691 +637546.110|221939.159|121.759 +637552.206|221936.915|121.125 +637558.253|221934.675|120.765 +637564.215|221932.447|120.832 +637570.223|221930.210|120.710 +637582.150|221925.763|120.649 +637588.240|221923.513|120.186 +637594.235|221921.291|119.909 +637600.142|221919.094|119.771 +637606.183|221916.847|119.619 +637612.215|221914.628|118.945 +637618.119|221912.428|118.884 +637647.472|221901.452|119.339 +637653.363|221899.260|119.168 +637665.083|221894.886|119.153 +637694.112|221884.051|119.232 +637700.025|221881.862|118.863 +637705.826|221879.692|118.976 +637711.477|221877.574|119.192 +637723.004|221873.270|119.287 +637734.617|221868.972|118.592 +637740.649|221866.784|117.379 +637746.492|221864.629|116.952 +637752.259|221862.483|116.845 +637757.922|221860.380|116.653 +637769.334|221856.131|116.501 +637775.226|221853.973|115.742 +637781.017|221851.830|115.382 +637786.781|221849.706|114.916 +637815.743|221839.071|111.639 +637821.388|221836.971|111.502 +637849.463|221826.568|110.207 +637855.160|221824.465|109.762 +637866.358|221820.332|108.936 +637877.669|221816.172|107.796 +637883.396|221814.093|106.659 +637888.883|221812.051|106.619 +637911.667|221803.754|102.654 +637917.434|221801.669|101.325 +637922.774|221799.673|101.453 +637907.052|221806.830|102.721 +637901.291|221808.927|103.864 +637889.733|221813.118|106.589 +637884.259|221815.166|106.604 +637878.520|221817.266|107.549 +637867.248|221821.426|108.802 +637861.640|221823.496|109.359 +637856.065|221825.572|109.594 +637822.314|221838.126|111.304 +637816.651|221840.236|111.530 +637810.735|221842.394|112.697 +637799.040|221846.688|114.370 +637793.410|221848.785|114.544 +637787.698|221850.913|114.815 +637781.934|221853.046|115.300 +637776.152|221855.195|115.626 +637758.876|221861.624|116.467 +637753.146|221863.757|116.678 +637747.382|221865.912|116.784 +637741.497|221868.085|117.394 +637712.193|221878.964|119.275 +637706.533|221881.103|118.851 +637700.729|221883.283|118.753 +637671.484|221894.237|118.720 +637659.676|221898.639|119.101 +637653.757|221900.858|119.101 +637647.813|221903.076|119.241 +637630.049|221909.730|119.186 +637624.139|221911.955|118.964 +637618.253|221914.174|118.638 +637612.285|221916.393|119.006 +637606.162|221918.658|119.531 +637600.084|221920.916|119.869 +637594.156|221923.138|119.835 +637581.933|221927.674|120.643 +637575.956|221929.917|120.594 +637563.880|221934.425|120.856 +637551.685|221938.976|121.158 +637545.629|221941.237|121.305 +637539.453|221943.527|121.750 +637533.324|221945.794|122.298 +637520.973|221950.385|123.014 +637514.832|221952.664|123.395 +637502.481|221957.264|123.935 +637496.348|221959.556|124.002 +637490.204|221961.830|124.511 +637483.964|221964.149|124.880 +637477.820|221966.438|125.102 +637471.586|221968.770|125.133 +637465.466|221971.056|125.258 +637459.190|221973.391|125.593 +637453.030|221975.695|125.651 +637446.794|221978.006|126.163 +637421.965|221987.281|126.724 +637415.692|221989.603|127.233 +637409.386|221991.950|127.605 +637403.134|221994.270|128.038 +637396.849|221996.611|128.324 +637390.662|221998.924|128.422 +637384.334|222001.283|128.629 +637378.135|222003.594|128.842 +637371.886|222005.950|128.592 +637365.760|222008.254|128.388 +637359.450|222010.610|128.571 +637353.196|222012.939|128.842 +637346.877|222015.292|129.147 +637334.158|222019.992|130.433 +637327.843|222022.339|130.805 +637321.558|222024.683|131.006 +637315.212|222027.051|131.229 +637308.927|222029.392|131.461 +637302.532|222031.757|132.098 +637296.268|222034.095|132.241 +637283.674|222038.816|132.189 +637277.404|222041.179|131.979 +637271.031|222043.559|132.119 +637264.813|222045.894|132.000 +637258.360|222048.268|132.841 +637251.953|222050.643|133.344 +637245.604|222052.993|133.911 +637239.283|222055.370|133.737 +637233.062|222057.726|133.262 +637226.722|222060.101|133.292 +637220.544|222062.484|131.918 +637214.347|222064.871|130.671 +637207.964|222067.239|131.134 +637201.634|222069.610|131.125 +637195.285|222072.009|130.756 +637189.006|222074.353|130.860 +637182.593|222076.743|131.140 +637176.347|222079.154|129.766 +637170.187|222081.546|128.120 +637163.939|222083.957|126.724 +637157.749|222086.350|125.307 +637151.415|222088.749|124.776 +637145.008|222091.135|125.032 +637138.699|222093.507|124.892 +637132.322|222095.899|124.865 +637125.940|222098.286|124.916 +637119.560|222100.676|124.953 +637113.120|222103.084|125.032 +637106.752|222105.473|124.962 +637100.355|222107.854|125.307 +637093.926|222110.265|125.258 +637087.559|222112.648|125.261 +637081.186|222115.032|125.389 +637074.760|222117.440|125.364 +637068.378|222119.817|125.630 +637061.959|222122.225|125.605 +637055.534|222124.627|125.663 +637049.176|222127.010|125.688 +637042.753|222129.412|125.724 +637036.340|222131.817|125.675 +637034.329|222135.414|125.474 +637040.669|222133.030|125.794 +637047.103|222130.634|125.642 +637053.455|222128.254|125.837 +637059.837|222125.886|125.544 +637066.269|222123.487|125.499 +637072.633|222121.106|125.544 +637078.955|222118.756|125.358 +637085.386|222116.355|125.364 +637091.768|222113.977|125.227 +637098.142|222111.597|125.230 +637104.454|222109.241|125.270 +637110.788|222106.884|125.047 +637117.183|222104.507|124.883 +637123.504|222102.148|124.877 +637129.829|222099.789|124.819 +637136.217|222097.405|124.788 +637142.481|222095.064|124.804 +637148.873|222092.681|124.767 +637155.161|222090.343|124.554 +637161.467|222087.975|124.822 +637198.644|222073.771|131.147 +637204.926|222071.430|131.086 +637211.256|222069.062|131.147 +637217.557|222066.721|130.924 +637223.677|222064.365|132.351 +637229.858|222062.012|133.237 +637236.119|222059.665|133.417 +637242.358|222057.315|133.792 +637248.597|222054.992|133.652 +637254.879|222052.645|133.707 +637261.113|222050.320|133.664 +637267.568|222048.000|131.857 +637273.792|222045.671|131.945 +637280.013|222043.343|132.082 +637311.182|222031.724|131.646 +637317.434|222029.410|131.241 +637323.667|222027.097|130.988 +637329.906|222024.780|130.714 +637342.351|222020.169|130.052 +637348.685|222017.843|129.205 +637354.891|222015.545|128.858 +637361.142|222013.222|128.641 +637367.278|222010.921|128.815 +637373.453|222008.620|128.739 +637391.973|222001.707|128.696 +637398.133|221999.421|128.403 +637404.369|221997.110|128.056 +637410.617|221994.797|127.666 +637416.753|221992.526|127.242 +637423.032|221990.210|126.727 +637441.451|221983.352|126.343 +637447.669|221981.051|125.919 +637453.774|221978.777|125.819 +637466.097|221974.196|125.398 +637472.193|221971.919|125.432 +637496.669|221962.842|124.191 +637502.722|221960.580|124.212 +637521.101|221953.783|122.929 +637527.222|221951.525|122.377 +637533.385|221949.263|121.618 +637539.414|221947.013|121.585 +637545.418|221944.764|121.701 +637557.525|221940.287|120.863 +637587.609|221929.094|120.067 +637593.586|221926.872|119.866 +637605.592|221922.404|119.579 +637617.754|221917.923|118.369 +637623.597|221915.732|118.607 +637641.129|221909.145|119.384 +637647.197|221906.914|118.674 +637653.025|221904.719|119.061 +637664.854|221900.327|118.561 +637670.761|221898.133|118.366 +637676.470|221895.981|118.775 +637693.969|221889.458|118.534 +637699.785|221887.288|118.552 +637705.506|221885.142|118.726 +637711.175|221883.005|119.119 +637728.436|221876.559|119.110 +637734.267|221874.392|118.912 +637751.991|221867.893|116.531 +637757.776|221865.741|116.355 +637763.506|221863.611|116.166 +637769.145|221861.499|116.342 +637780.721|221857.225|115.358 +637792.267|221852.952|114.581 +637815.310|221844.463|112.267 +637821.187|221842.308|111.499 +637826.835|221840.217|111.115 +637843.657|221833.966|110.527 +637849.234|221831.887|110.475 +637860.497|221827.739|109.344 +637866.059|221825.669|109.170 +637871.704|221823.584|108.719 +637877.432|221821.494|107.784 +637883.192|221819.393|106.744 +637888.651|221817.354|106.784 +637900.203|221813.166|104.284 +637906.010|221811.066|102.980 +637911.459|221809.045|102.675 +637922.472|221804.979|101.755 +637927.541|221803.035|102.773 +637932.710|221801.081|103.251 +637914.715|221809.823|102.498 +637909.332|221811.831|102.578 +637903.733|221813.898|103.178 +637897.743|221816.038|105.123 +637886.393|221820.201|106.744 +637880.891|221822.252|106.866 +637875.094|221824.359|108.043 +637869.367|221826.465|108.771 +637863.749|221828.547|109.131 +637858.116|221830.631|109.567 +637846.705|221834.847|110.566 +637829.867|221841.114|111.203 +637824.290|221843.204|111.091 +637818.459|221845.353|111.679 +637812.463|221847.523|113.145 +637795.245|221853.900|114.367 +637789.481|221856.030|114.828 +637783.721|221858.173|115.050 +637777.929|221860.307|115.663 +637772.163|221862.450|115.955 +637766.429|221864.598|115.897 +637760.684|221866.735|116.141 +637754.908|221868.887|116.272 +637731.225|221877.613|118.833 +637708.087|221886.270|118.775 +637702.345|221888.434|118.427 +637696.590|221890.601|118.156 +637673.179|221899.361|118.052 +637667.272|221901.574|117.973 +637655.296|221906.009|118.833 +637625.645|221917.113|118.561 +637619.750|221919.331|118.275 +637613.681|221921.572|118.814 +637607.613|221923.815|119.378 +637595.540|221928.314|119.698 +637589.499|221930.560|119.915 +637546.930|221946.395|121.597 +637534.814|221950.924|121.646 +637528.651|221953.207|122.082 +637522.357|221955.520|122.902 +637503.917|221962.366|123.877 +637472.967|221973.863|125.404 +637466.804|221976.168|125.435 +637448.169|221983.105|126.130 +637442.039|221985.403|126.047 +637435.650|221987.738|127.157 +637423.410|221992.343|126.642 +637417.055|221994.690|127.257 +637410.803|221997.010|127.675 +637404.549|221999.326|128.117 +637398.267|222001.664|128.385 +637391.963|222003.999|128.818 +637373.337|222010.970|128.833 +637367.107|222013.295|128.900 +637360.859|222015.645|128.696 +637348.273|222020.321|129.348 +637341.869|222022.671|130.275 +637335.588|222025.015|130.388 +637329.333|222027.338|130.772 +637322.978|222029.703|131.034 +637316.678|222032.044|131.342 +637310.277|222034.406|132.003 +637303.995|222036.744|132.250 +637285.140|222043.818|131.842 +637278.748|222046.199|132.079 +637272.527|222048.530|131.976 +637266.032|222050.905|133.125 +637259.610|222053.276|133.716 +637253.337|222055.629|133.637 +637246.994|222058.004|133.631 +637240.694|222060.351|133.789 +637234.403|222062.725|133.387 +637221.897|222067.480|131.921 +637215.648|222069.885|130.580 +637209.318|222072.229|131.098 +637202.999|222074.597|130.991 +637196.611|222076.990|130.973 +637184.031|222081.763|129.668 +637177.871|222084.152|127.983 +637165.426|222088.980|124.602 +637159.108|222091.352|124.502 +637152.692|222093.735|124.801 +637146.315|222096.125|124.718 +637139.927|222098.512|124.801 +637133.486|222100.923|124.776 +637127.165|222103.288|124.801 +637120.727|222105.696|124.822 +637114.327|222108.076|125.118 +637107.935|222110.457|125.368 +637101.501|222112.862|125.377 +637095.082|222115.273|125.230 +637088.702|222117.650|125.368 +637082.216|222120.079|125.368 +637075.843|222122.460|125.462 +637062.989|222127.263|125.572 +637056.567|222129.665|125.566 +637050.145|222132.067|125.599 +637043.735|222134.472|125.456 +637037.383|222136.855|125.352 +637033.356|222141.577|125.215 +637039.779|222139.178|125.166 +637046.076|222136.822|125.236 +637052.495|222134.420|125.307 +637058.835|222132.034|125.642 +637065.202|222129.656|125.624 +637071.581|222127.282|125.404 +637084.322|222122.524|125.358 +637090.702|222120.146|125.224 +637097.014|222117.787|125.224 +637103.378|222115.404|125.313 +637109.739|222113.020|125.483 +637116.067|222110.661|125.349 +637122.419|222108.308|124.926 +637128.756|222105.952|124.712 +637135.077|222103.590|124.706 +637141.408|222101.227|124.639 +637147.733|222098.865|124.639 +637154.060|222096.500|124.639 +637160.330|222094.156|124.627 +637166.676|222091.794|124.438 +637172.931|222089.416|125.267 +637179.063|222087.054|126.666 +637191.252|222082.321|130.174 +637197.510|222079.946|130.881 +637203.770|222077.602|130.979 +637210.031|222075.258|131.089 +637216.383|222072.920|130.394 +637222.430|222070.583|131.906 +637228.645|222068.205|133.027 +637241.066|222063.530|133.701 +637247.272|222061.204|133.820 +637253.563|222058.854|133.771 +637259.790|222056.528|133.771 +637266.044|222054.206|133.551 +637272.332|222051.880|133.091 +637278.703|222049.554|132.018 +637316.019|222035.628|131.823 +637322.295|222033.315|131.229 +637328.553|222031.001|130.796 +637334.798|222028.685|130.497 +637341.059|222026.365|130.107 +637347.286|222024.067|129.546 +637359.706|222019.446|129.178 +637372.081|222014.826|129.211 +637402.909|222003.344|128.592 +637421.605|221996.446|126.956 +637440.158|221989.561|126.099 +637470.843|221978.137|125.413 +637525.996|221957.703|122.210 +637532.062|221955.450|121.942 +637592.553|221932.971|119.811 +637598.530|221930.749|119.610 +637610.493|221926.299|119.238 +637628.541|221919.618|118.089 +637634.341|221917.430|118.534 +637640.254|221915.211|118.784 +637663.931|221906.405|118.122 +637675.660|221902.025|118.113 +637693.119|221895.511|117.988 +637698.992|221893.317|118.028 +637704.735|221891.156|118.366 +637733.432|221880.424|118.787 +637745.078|221876.117|118.010 +637756.977|221871.761|116.318 +637762.802|221869.615|115.748 +637768.526|221867.485|115.593 +637774.308|221865.333|115.483 +637779.962|221863.215|115.635 +637791.591|221858.944|114.288 +637820.412|221848.313|111.764 +637826.262|221846.176|110.880 +637831.888|221844.091|110.582 +637871.113|221829.546|108.728 +637876.892|221827.446|107.601 +637882.577|221825.364|106.833 +637888.051|221823.322|106.802 +637899.703|221819.116|103.946 +637905.412|221817.025|103.187 +637921.923|221810.923|101.998 +637910.454|221816.970|102.273 +637904.803|221819.049|103.056 +637887.231|221825.416|107.482 +637881.967|221827.425|106.805 +637876.340|221829.507|107.403 +637859.287|221835.810|109.253 +637847.857|221840.028|110.582 +637836.759|221844.192|110.563 +637831.190|221846.289|110.414 +637825.558|221848.386|110.755 +637819.535|221850.578|112.072 +637790.841|221861.227|114.258 +637779.194|221865.546|115.248 +637773.528|221867.677|115.163 +637767.792|221869.817|115.379 +637762.061|221871.956|115.580 +637750.016|221876.373|117.604 +637744.185|221878.537|118.034 +637738.360|221880.701|118.446 +637732.526|221882.877|118.674 +637709.316|221891.579|118.726 +637703.622|221893.743|118.199 +637697.919|221895.908|117.726 +637692.119|221898.084|117.668 +637662.639|221909.121|118.092 +637656.683|221911.343|118.272 +637632.960|221920.246|118.211 +637627.169|221922.440|117.754 +637621.241|221924.669|117.641 +637614.998|221926.958|118.708 +637608.966|221929.198|119.119 +637602.879|221931.459|119.534 +637596.881|221933.709|119.537 +637590.779|221935.971|120.064 +637536.110|221956.395|121.618 +637529.998|221958.660|122.146 +637523.817|221960.964|122.399 +637468.197|221981.666|125.496 +637437.318|221993.212|126.059 +637430.935|221995.547|127.184 +637424.854|221997.857|126.526 +637412.233|222002.509|128.065 +637368.588|222018.812|129.120 +637362.437|222021.138|128.687 +637356.110|222023.491|129.037 +637343.509|222028.170|129.900 +637337.191|222030.520|130.299 +637330.887|222032.864|130.607 +637324.551|222035.211|131.198 +637286.697|222049.341|132.256 +637280.391|222051.700|132.341 +637273.939|222054.053|133.631 +637267.657|222056.409|133.594 +637261.347|222058.763|133.780 +637255.007|222061.140|133.768 +637248.728|222063.493|133.765 +637242.416|222065.870|133.539 +637236.098|222068.248|133.378 +637229.834|222070.598|133.295 +637223.570|222073.006|132.125 +637217.489|222075.371|130.397 +637211.083|222077.736|131.104 +637204.709|222080.132|130.945 +637192.225|222084.893|129.306 +637186.110|222087.292|127.193 +637179.859|222089.703|125.831 +637173.601|222092.117|124.484 +637167.252|222094.485|124.715 +637160.882|222096.881|124.551 +637154.499|222099.274|124.511 +637141.728|222104.056|124.599 +637135.346|222106.446|124.666 +637128.960|222108.832|124.764 +637122.428|222111.222|125.904 +637116.073|222113.614|125.715 +637109.733|222116.007|125.337 +637103.317|222118.421|125.145 +637096.956|222120.811|125.075 +637090.516|222123.213|125.264 +637084.151|222125.599|125.255 +637077.720|222128.004|125.337 +637071.283|222130.406|125.569 +637064.876|222132.817|125.346 +637058.469|222135.228|125.166 +637052.056|222137.636|125.069 +637045.695|222140.016|125.151 +637039.279|222142.421|125.115 +637034.012|222147.517|124.886 +637040.440|222145.122|124.801 +637046.789|222142.738|124.990 +637053.211|222140.336|125.054 +637059.575|222137.956|125.041 +637065.997|222135.554|125.118 +637072.417|222133.149|125.221 +637078.775|222130.766|125.358 +637085.157|222128.391|125.209 +637091.528|222126.011|125.185 +637097.840|222123.652|125.200 +637104.290|222121.250|124.999 +637110.593|222118.887|125.130 +637116.878|222116.483|126.276 +637123.294|222114.108|125.809 +637129.661|222111.758|125.206 +637136.038|222109.408|124.569 +637142.356|222107.043|124.633 +637148.687|222104.681|124.596 +637155.082|222102.294|124.502 +637161.354|222099.953|124.468 +637167.688|222097.588|124.444 +637174.022|222095.223|124.444 +637180.343|222092.851|124.557 +637192.630|222088.100|127.806 +637198.741|222085.734|129.385 +637204.904|222083.351|131.006 +637211.171|222081.004|131.067 +637217.493|222078.663|130.656 +637223.619|222076.304|132.034 +637229.758|222073.948|133.274 +637248.527|222066.904|133.881 +637254.733|222064.575|134.039 +637261.067|222062.228|133.637 +637267.215|222059.921|133.792 +637273.518|222057.568|133.701 +637279.760|222055.239|133.646 +637286.179|222052.910|132.201 +637292.409|222050.576|132.290 +637311.014|222043.614|132.357 +637329.787|222036.664|130.964 +637336.060|222034.345|130.464 +637342.327|222032.022|130.034 +637348.529|222029.724|129.629 +637354.802|222027.399|129.226 +637361.008|222025.097|128.876 +637373.291|222020.492|129.110 +637422.888|222002.064|126.751 +637441.341|221995.196|126.105 +637472.010|221983.757|125.502 +637527.060|221963.342|122.121 +637533.040|221961.098|122.286 +637599.466|221936.400|119.482 +637605.449|221934.172|119.278 +637611.426|221931.947|119.119 +637617.583|221929.692|118.150 +637623.706|221927.442|117.367 +637629.610|221925.235|117.333 +637694.164|221901.098|117.333 +637699.900|221898.934|117.677 +637711.306|221894.618|118.695 +637716.997|221892.488|118.732 +637740.149|221883.853|118.278 +637745.931|221881.701|118.046 +637757.700|221877.360|116.842 +637763.625|221875.193|115.861 +637769.544|221873.014|115.190 +637780.996|221868.747|114.895 +637792.490|221864.477|114.279 +637798.247|221862.346|113.840 +637827.118|221851.684|111.188 +637832.900|221849.566|110.313 +637838.594|221847.450|110.024 +637855.187|221841.229|110.313 +637877.998|221832.847|107.360 +637883.576|221830.781|106.948 +637888.990|221828.748|107.125 +637900.514|221824.551|104.891 +637912.118|221820.341|102.279 +637917.519|221818.318|102.370 +637923.450|221816.184|100.697 +637933.469|221812.325|102.904 +637938.773|221810.329|103.154 +637916.422|221820.326|102.130 +637910.963|221822.356|102.477 +637905.303|221824.438|103.297 +637887.847|221830.793|107.107 +637882.452|221832.826|106.878 +637859.637|221841.245|109.570 +637837.329|221849.596|109.856 +637831.678|221851.696|110.240 +637796.915|221864.550|113.788 +637779.636|221870.981|114.754 +637773.836|221873.145|114.934 +637768.063|221875.294|115.282 +637762.086|221877.488|116.208 +637750.284|221881.847|117.531 +637744.444|221884.011|117.988 +637732.734|221888.385|118.324 +637721.087|221892.732|118.738 +637698.050|221901.437|117.400 +637692.250|221903.628|117.077 +637686.331|221905.838|117.269 +637668.424|221912.510|118.074 +637662.581|221914.717|117.748 +637627.035|221928.076|117.150 +637621.006|221930.332|117.211 +637608.643|221934.870|119.104 +637602.599|221937.126|119.311 +637590.504|221941.637|119.823 +637584.405|221943.911|120.052 +637578.315|221946.169|120.582 +637572.180|221948.461|120.735 +637529.383|221964.424|122.356 +637523.272|221966.704|122.582 +637467.472|221987.467|125.651 +637436.352|221999.070|126.931 +637424.031|222003.709|126.550 +637373.922|222022.366|129.199 +637367.710|222024.698|129.144 +637361.483|222027.051|128.821 +637355.217|222029.383|129.190 +637348.886|222031.733|129.601 +637342.558|222034.086|130.034 +637336.240|222036.436|130.433 +637329.882|222038.783|131.137 +637292.016|222052.929|132.158 +637285.570|222055.288|133.350 +637279.245|222057.647|133.600 +637266.651|222062.362|133.728 +637260.296|222064.740|133.807 +637253.956|222067.120|133.765 +637241.325|222071.851|133.890 +637235.073|222074.204|133.673 +637216.371|222081.351|130.985 +637210.034|222083.726|131.040 +637203.709|222086.100|130.982 +637197.607|222088.526|128.224 +637191.453|222090.922|126.480 +637185.318|222093.324|124.502 +637178.941|222095.723|124.325 +637172.608|222098.094|124.368 +637166.222|222100.490|124.343 +637159.830|222102.885|124.386 +637153.503|222105.257|124.435 +637147.047|222107.671|124.545 +637140.725|222110.039|124.563 +637134.230|222112.441|125.218 +637127.802|222114.821|125.834 +637121.447|222117.214|125.617 +637115.119|222119.616|125.051 +637108.700|222122.033|124.883 +637102.314|222124.417|125.063 +637095.886|222126.828|125.054 +637089.513|222129.214|125.112 +637083.066|222131.616|125.425 +637076.665|222134.033|125.087 +637070.301|222136.420|125.075 +637063.879|222138.828|125.066 +637057.463|222141.235|125.002 +637051.117|222143.625|124.795 +637044.704|222146.036|124.700 +637038.261|222148.432|125.084 +637038.172|222151.300|126.157 +637044.579|222148.950|125.340 +637051.035|222146.569|124.804 +637057.408|222144.198|124.606 +637063.821|222141.796|124.798 +637070.173|222139.419|124.968 +637076.547|222137.044|124.859 +637082.963|222134.643|125.014 +637089.248|222132.280|125.322 +637095.639|222129.912|125.026 +637102.016|222127.535|124.947 +637108.325|222125.179|124.968 +637114.711|222122.804|124.810 +637121.081|222120.421|124.904 +637127.354|222118.055|125.432 +637133.694|222115.666|125.867 +637140.067|222113.319|125.224 +637146.450|222110.972|124.535 +637152.789|222108.616|124.340 +637159.120|222106.257|124.313 +637165.451|222103.894|124.289 +637171.782|222101.532|124.255 +637178.051|222099.191|124.270 +637184.379|222096.829|124.356 +637190.716|222094.464|124.319 +637208.922|222087.341|130.884 +637215.225|222084.975|131.177 +637221.488|222082.631|131.268 +637227.615|222080.278|132.607 +637233.754|222077.953|133.289 +637239.956|222075.578|134.475 +637246.226|222073.262|134.006 +637252.551|222070.921|133.640 +637258.820|222068.574|133.768 +637265.081|222066.227|134.003 +637271.336|222063.904|133.789 +637277.499|222061.576|134.356 +637283.902|222059.232|133.497 +637290.105|222056.928|133.311 +637296.503|222054.599|132.091 +637333.969|222040.670|131.162 +637346.518|222036.058|129.769 +637352.772|222033.741|129.455 +637358.993|222031.443|128.998 +637371.328|222026.826|129.303 +637420.935|222008.425|127.202 +637427.198|222006.130|126.404 +637439.424|222001.554|126.681 +637445.706|221999.250|125.855 +637470.291|221990.109|125.261 +637476.378|221987.854|124.968 +637500.863|221978.749|124.368 +637525.442|221969.685|122.289 +637537.512|221965.192|122.079 +637543.562|221962.942|121.926 +637561.750|221956.200|121.088 +637567.858|221953.939|120.750 +637579.925|221949.464|120.235 +637585.957|221947.224|120.015 +637592.004|221944.983|119.744 +637597.999|221942.761|119.457 +637604.053|221940.515|119.208 +637610.051|221938.290|118.951 +637622.298|221933.803|117.333 +637628.309|221931.588|116.809 +637651.861|221922.773|117.400 +637657.774|221920.566|117.403 +637669.515|221916.192|117.303 +637687.166|221909.633|116.836 +637693.045|221907.438|116.830 +637698.806|221905.277|117.074 +637727.497|221894.515|118.189 +637733.340|221892.347|117.921 +637744.880|221888.044|117.790 +637750.695|221885.889|117.434 +637762.409|221881.564|116.483 +637774.290|221877.214|114.712 +637780.042|221875.081|114.480 +637785.793|221872.944|114.261 +637791.466|221870.819|114.370 +637797.254|221868.686|113.806 +637808.739|221864.434|113.087 +637831.885|221855.906|110.792 +637837.804|221853.751|109.664 +637843.465|221851.657|109.286 +637849.012|221849.584|109.314 +637860.058|221845.445|109.622 +637877.249|221839.129|107.534 +637882.900|221837.054|106.863 +637888.346|221835.018|106.921 +637894.086|221832.920|105.973 +637911.335|221826.629|102.971 +637916.958|221824.566|102.303 +637933.109|221818.531|102.376 +637938.315|221816.556|102.946 +637923.783|221823.188|102.398 +637918.467|221825.191|102.248 +637895.717|221833.524|106.001 +637884.546|221837.669|106.866 +637879.059|221839.718|106.979 +637850.780|221850.203|109.198 +637845.257|221852.278|109.082 +637839.581|221854.382|109.536 +637833.690|221856.536|110.566 +637810.656|221865.046|112.993 +637804.932|221867.189|113.032 +637799.272|221869.295|113.346 +637787.720|221873.581|114.175 +637776.171|221877.888|114.590 +637758.462|221884.401|117.001 +637752.613|221886.572|117.479 +637746.767|221888.748|117.702 +637735.236|221893.064|117.836 +637729.314|221895.264|118.171 +637700.464|221906.134|117.019 +637694.679|221908.307|116.897 +637688.888|221910.492|116.550 +637670.999|221917.158|117.278 +637659.213|221921.587|117.071 +637653.235|221923.812|117.370 +637641.446|221928.247|117.010 +637629.501|221932.731|116.839 +637623.551|221934.946|117.126 +637611.112|221939.506|119.086 +637605.159|221941.734|119.168 +637599.045|221944.011|119.433 +637592.989|221946.264|119.738 +637586.896|221948.537|119.951 +637580.793|221950.808|120.235 +637568.629|221955.347|120.668 +637562.521|221957.614|121.052 +637556.345|221959.907|121.478 +637550.213|221962.193|121.725 +637544.141|221964.454|121.996 +637537.957|221966.758|122.228 +637525.728|221971.334|122.362 +637507.032|221978.249|124.118 +637500.887|221980.545|124.307 +637494.687|221982.858|124.456 +637488.582|221985.144|124.468 +637482.319|221987.482|124.676 +637476.174|221989.771|124.947 +637469.913|221992.103|125.200 +637463.686|221994.416|125.624 +637445.057|222001.375|126.062 +637426.421|222008.342|126.373 +637419.984|222010.695|127.547 +637413.717|222013.018|128.062 +637363.663|222031.718|129.217 +637357.408|222034.068|129.077 +637351.081|222036.421|129.491 +637338.419|222041.118|130.415 +637300.459|222055.263|131.973 +637294.016|222057.623|133.085 +637287.679|222059.982|133.399 +637281.293|222062.362|133.661 +637268.693|222067.074|133.850 +637262.359|222069.452|133.753 +637256.086|222071.808|133.664 +637249.737|222074.182|133.740 +637243.431|222076.535|133.984 +637237.082|222078.934|133.558 +637230.901|222081.293|132.741 +637224.683|222083.674|131.698 +637212.101|222088.429|130.933 +637199.915|222093.254|125.727 +637193.672|222095.671|124.221 +637187.329|222098.042|124.298 +637181.005|222100.417|124.243 +637174.616|222102.812|124.194 +637168.225|222105.205|124.231 +637161.836|222107.598|124.246 +637155.450|222109.993|124.221 +637149.034|222112.377|124.609 +637142.582|222114.754|125.407 +637136.169|222117.138|125.834 +637129.835|222119.537|125.331 +637117.070|222124.346|124.801 +637110.687|222126.733|124.923 +637104.256|222129.141|124.901 +637097.886|222131.528|124.923 +637091.451|222133.935|124.999 +637085.029|222136.346|124.935 +637078.662|222138.730|124.993 +637072.246|222141.141|124.849 +637065.897|222143.528|124.645 +637059.478|222145.935|124.621 +637053.022|222148.328|125.145 +637046.612|222150.687|126.035 +637040.178|222153.083|126.322 +637033.698|222155.454|127.443 +637037.310|222157.237|128.031 +637043.701|222154.881|127.382 +637050.163|222152.507|126.657 +637056.564|222150.151|125.983 +637069.445|222145.414|124.520 +637075.809|222143.037|124.548 +637082.158|222140.653|124.782 +637088.528|222138.276|124.770 +637094.890|222135.898|124.865 +637101.242|222133.512|125.108 +637107.572|222131.162|124.868 +637113.949|222128.784|124.813 +637120.325|222126.404|124.813 +637126.656|222124.051|124.596 +637132.950|222121.686|124.904 +637139.217|222119.314|125.496 +637145.566|222116.928|125.858 +637151.951|222114.578|125.151 +637158.294|222112.255|124.267 +637164.628|222109.893|124.200 +637170.962|222107.531|124.151 +637177.292|222105.168|124.142 +637183.568|222102.828|124.112 +637189.841|222100.484|124.112 +637196.187|222098.118|124.039 +637220.818|222088.666|129.205 +637226.981|222086.283|130.805 +637245.479|222079.230|133.786 +637251.700|222076.907|133.771 +637257.994|222074.563|133.649 +637264.221|222072.241|133.628 +637270.555|222069.869|133.734 +637276.731|222067.568|133.673 +637283.040|222065.218|133.521 +637289.285|222062.893|133.426 +637295.537|222060.564|133.308 +637301.874|222058.235|132.558 +637308.149|222055.903|132.305 +637351.974|222039.688|129.446 +637358.167|222037.390|129.123 +637364.370|222035.070|129.190 +637370.536|222032.772|129.126 +637426.330|222012.061|126.742 +637432.554|222009.769|126.169 +637457.154|222000.597|125.874 +637463.375|221998.296|125.453 +637475.662|221993.739|124.865 +637481.819|221991.459|124.520 +637494.096|221986.894|124.139 +637518.572|221977.829|122.713 +637524.689|221975.558|122.438 +637548.908|221966.545|121.865 +637554.974|221964.308|121.329 +637561.030|221962.055|121.186 +637567.050|221959.821|120.920 +637573.079|221957.584|120.646 +637579.111|221955.347|120.369 +637585.164|221953.103|120.021 +637591.196|221950.863|119.799 +637597.237|221948.620|119.549 +637603.242|221946.395|119.211 +637621.463|221939.671|117.641 +637627.574|221937.443|116.601 +637633.576|221935.212|116.394 +637639.510|221932.990|116.519 +637657.109|221926.409|116.769 +637662.949|221924.214|117.092 +637686.544|221915.439|116.437 +637698.087|221911.114|116.769 +637703.918|221908.941|116.711 +637709.526|221906.801|117.592 +637767.258|221885.316|116.370 +637779.051|221880.997|114.684 +637784.894|221878.848|114.099 +637790.646|221876.711|113.880 +637802.109|221872.468|113.166 +637842.425|221857.609|109.420 +637848.207|221855.482|108.820 +637853.904|221853.382|108.329 +637876.200|221845.097|107.582 +637881.915|221843.000|106.887 +637887.325|221840.973|107.052 +637910.292|221832.610|102.861 +637915.864|221830.558|102.346 +637921.292|221828.531|102.331 +637932.558|221824.407|100.767 +637937.398|221822.512|102.547 +637942.567|221820.558|103.017 +637920.314|221830.272|102.328 +637914.934|221832.283|102.413 +637909.244|221834.371|103.349 +637897.655|221838.602|105.562 +637891.943|221840.702|106.430 +637886.402|221842.763|106.714 +637880.861|221844.838|106.799 +637858.439|221853.181|107.960 +637852.788|221855.284|108.296 +637847.113|221857.390|108.738 +637841.279|221859.523|109.771 +637835.317|221861.694|111.063 +637829.465|221863.843|111.993 +637800.841|221874.489|113.621 +637795.218|221876.598|113.572 +637789.426|221878.750|113.944 +637783.705|221880.890|114.062 +637777.786|221883.063|114.959 +637765.999|221887.407|116.400 +637760.217|221889.552|116.845 +637754.362|221891.723|117.348 +637731.149|221900.391|117.985 +637708.157|221909.060|116.937 +637702.354|221911.251|116.620 +637696.557|221913.427|116.556 +637690.759|221915.616|116.224 +637684.840|221917.838|116.172 +637672.974|221922.270|116.507 +637655.183|221928.927|116.736 +637631.482|221937.830|116.342 +637625.438|221940.073|116.763 +637601.038|221949.095|119.171 +637594.903|221951.375|119.567 +637588.868|221953.625|119.811 +637582.766|221955.898|120.082 +637576.666|221958.169|120.387 +637570.558|221960.440|120.744 +637564.481|221962.708|120.981 +637558.388|221964.991|120.994 +637552.301|221967.255|121.323 +637546.107|221969.547|121.908 +637540.002|221971.827|122.064 +637521.623|221978.701|122.332 +637515.399|221981.008|122.871 +637496.833|221987.902|124.115 +637484.464|221992.526|124.340 +637478.252|221994.843|124.645 +637472.035|221997.156|125.005 +637465.789|221999.488|125.206 +637447.129|222006.437|126.251 +637434.782|222011.080|126.011 +637428.463|222013.430|126.431 +637390.744|222027.441|129.153 +637372.081|222034.461|128.793 +637365.760|222036.817|129.132 +637359.511|222039.167|128.961 +637353.199|222041.520|129.287 +637346.896|222043.870|129.562 +637340.522|222046.220|130.363 +637308.777|222058.034|132.238 +637302.358|222060.396|133.167 +637296.046|222062.758|133.286 +637289.736|222065.118|133.423 +637283.445|222067.477|133.430 +637277.051|222069.857|133.801 +637270.723|222072.238|133.670 +637264.468|222074.597|133.448 +637258.104|222076.974|133.625 +637251.819|222079.327|133.707 +637245.476|222081.729|133.225 +637239.289|222084.116|131.945 +637233.190|222086.481|130.366 +637226.899|222088.889|129.415 +637220.693|222091.279|128.227 +637195.733|222100.849|124.026 +637183.010|222105.623|124.033 +637176.619|222108.018|124.042 +637170.285|222110.390|124.121 +637163.906|222112.785|124.081 +637157.444|222115.166|124.944 +637150.988|222117.546|125.800 +637144.578|222119.963|125.514 +637138.318|222122.344|124.883 +637131.911|222124.764|124.511 +637125.525|222127.154|124.688 +637119.152|222129.543|124.688 +637112.717|222131.954|124.752 +637106.286|222134.365|124.782 +637099.922|222136.752|124.758 +637093.500|222139.166|124.691 +637087.077|222141.574|124.666 +637080.735|222143.970|124.398 +637074.300|222146.374|124.538 +637067.857|222148.773|124.901 +637061.355|222151.148|126.187 +637054.848|222153.513|127.675 +637048.456|222155.878|128.318 +637036.234|222163.489|129.915 +637042.589|222161.118|129.857 +637049.020|222158.731|129.543 +637055.476|222156.357|128.861 +637061.907|222154.013|127.696 +637068.402|222151.641|126.572 +637074.837|222149.291|125.514 +637081.329|222146.917|124.545 +637087.715|222144.543|124.307 +637094.006|222142.180|124.569 +637100.425|222139.775|124.758 +637106.801|222137.395|124.718 +637113.117|222135.039|124.694 +637119.493|222132.658|124.676 +637125.876|222130.278|124.624 +637132.194|222127.919|124.618 +637138.589|222125.538|124.447 +637144.819|222123.194|124.791 +637151.140|222120.799|125.508 +637157.435|222118.430|125.837 +637163.848|222116.083|124.889 +637170.255|222113.733|124.036 +637176.582|222111.368|124.060 +637182.922|222109.003|124.017 +637189.192|222106.659|124.072 +637195.541|222104.297|123.935 +637201.838|222101.953|123.761 +637226.670|222092.483|127.708 +637232.848|222090.130|128.669 +637245.190|222085.393|131.204 +637263.642|222078.383|133.622 +637269.940|222076.036|133.530 +637276.240|222073.689|133.433 +637282.449|222071.360|133.612 +637288.715|222069.034|133.338 +637294.955|222066.706|133.311 +637301.276|222064.353|133.137 +637307.497|222062.045|132.808 +637313.828|222059.713|132.152 +637351.455|222045.805|129.324 +637357.707|222043.486|129.034 +637363.891|222041.188|128.800 +637370.088|222038.868|128.940 +637394.847|222029.639|128.605 +637419.636|222020.431|127.647 +637432.164|222015.819|126.322 +637438.330|222013.527|126.105 +637444.426|222011.238|126.355 +637450.677|222008.937|125.666 +637462.927|222004.371|125.547 +637469.118|222002.070|125.310 +637475.278|221999.790|124.916 +637481.432|221997.507|124.590 +637487.589|221995.224|124.270 +637493.742|221992.941|123.999 +637499.823|221990.679|123.807 +637505.962|221988.396|123.655 +637512.024|221986.135|123.603 +637518.312|221983.846|122.377 +637548.695|221972.541|121.591 +637554.687|221970.312|121.411 +637560.808|221968.036|121.259 +637566.818|221965.801|121.033 +637572.850|221963.564|120.725 +637578.943|221961.303|120.454 +637584.945|221959.084|120.034 +637591.050|221956.819|119.762 +637597.097|221954.573|119.476 +637603.102|221952.351|119.119 +637621.393|221945.614|117.208 +637627.513|221943.368|116.409 +637633.524|221941.137|116.163 +637639.559|221938.915|115.538 +637651.123|221934.544|116.629 +637680.747|221923.519|115.900 +637686.642|221921.325|115.779 +637692.384|221919.167|116.071 +637703.954|221914.820|116.577 +637709.742|221912.665|116.440 +637715.439|221910.514|116.970 +637755.661|221895.475|117.330 +637761.504|221893.314|116.885 +637767.371|221891.150|116.358 +637779.063|221886.834|115.306 +637790.795|221882.533|113.688 +637796.553|221880.393|113.462 +637802.283|221878.260|113.352 +637813.923|221873.977|112.036 +637848.238|221861.304|109.213 +637854.111|221859.155|108.293 +637859.732|221857.079|107.842 +637865.398|221854.979|107.488 +637871.003|221852.903|107.134 +637876.569|221850.837|106.939 +637882.086|221848.776|106.933 +637887.636|221846.707|106.830 +637916.016|221836.307|102.843 +637921.445|221834.292|102.602 +637932.680|221830.171|101.115 +637942.851|221826.276|103.038 +637948.045|221824.319|103.428 +637923.228|221835.676|102.605 +637917.775|221837.712|102.715 +637912.115|221839.800|103.334 +637900.578|221844.015|105.367 +637889.224|221848.191|106.884 +637883.741|221850.248|106.759 +637878.194|221852.318|106.878 +637872.646|221854.388|107.015 +637866.983|221856.491|107.351 +637861.329|221858.591|107.668 +637855.602|221860.718|108.040 +637849.792|221862.846|108.963 +637843.772|221865.025|110.451 +637826.548|221871.392|111.999 +637815.203|221875.632|112.145 +637803.670|221879.902|113.075 +637797.915|221882.045|113.291 +637792.164|221884.188|113.505 +637774.439|221890.705|115.852 +637768.673|221892.844|116.224 +637762.756|221895.036|116.696 +637756.865|221897.221|117.092 +637751.073|221899.376|117.373 +637733.703|221905.881|117.263 +637716.460|221912.373|116.513 +637710.620|221914.567|116.327 +637704.774|221916.750|116.455 +637693.097|221921.136|116.156 +637687.361|221923.312|115.586 +637681.405|221925.534|115.705 +637657.701|221934.398|115.876 +637639.867|221941.088|115.590 +637633.814|221943.331|116.038 +637627.827|221945.563|116.199 +637621.667|221947.833|116.891 +637597.177|221956.868|119.564 +637591.102|221959.132|119.701 +637578.779|221963.686|120.887 +637572.789|221965.939|120.674 +637566.696|221968.203|120.985 +637560.558|221970.489|121.244 +637554.504|221972.748|121.402 +637548.405|221975.025|121.512 +637517.657|221986.491|122.365 +637505.215|221991.091|123.523 +637499.015|221993.401|123.685 +637492.862|221995.690|123.956 +637486.644|221998.004|124.270 +637480.417|222000.314|124.657 +637474.202|222002.624|125.011 +637467.929|222004.956|125.355 +637461.748|222007.260|125.566 +637455.603|222009.559|125.587 +637449.394|222011.881|125.621 +637436.976|222016.523|125.794 +637430.694|222018.846|126.361 +637424.400|222021.187|126.648 +637399.273|222030.498|128.583 +637393.049|222032.830|128.562 +637374.285|222039.844|128.821 +637367.994|222042.194|128.931 +637361.800|222044.516|128.809 +637355.439|222046.887|129.034 +637349.179|222049.213|129.412 +637342.741|222051.581|130.244 +637317.367|222060.994|132.024 +637310.883|222063.374|132.930 +637298.316|222068.068|133.155 +637292.013|222070.424|133.219 +637285.628|222072.802|133.497 +637279.346|222075.158|133.439 +637273.018|222077.535|133.277 +637260.344|222082.260|133.652 +637254.142|222084.640|132.466 +637241.809|222089.413|129.400 +637235.595|222091.794|128.281 +637223.180|222096.567|125.816 +637216.987|222098.954|124.447 +637197.976|222106.101|123.840 +637191.575|222108.494|123.892 +637185.178|222110.886|123.953 +637178.850|222113.258|123.932 +637172.361|222115.666|124.359 +637165.890|222118.043|125.273 +637159.449|222120.421|125.913 +637153.137|222122.822|125.154 +637146.812|222125.221|124.526 +637140.375|222127.632|124.499 +637133.995|222130.019|124.548 +637127.622|222132.408|124.523 +637121.185|222134.816|124.578 +637114.747|222137.221|124.612 +637108.377|222139.608|124.618 +637101.946|222142.013|124.648 +637095.542|222144.427|124.346 +637089.117|222146.835|124.319 +637082.630|222149.218|125.163 +637063.205|222156.317|128.681 +637056.710|222158.682|129.982 +637043.890|222163.483|130.025 +637037.499|222165.888|129.784 +637035.597|222169.725|129.571 +637041.933|222167.342|129.805 +637048.322|222164.937|130.165 +637054.729|222162.535|130.266 +637067.485|222157.804|129.488 +637073.977|222155.436|128.336 +637086.928|222150.715|125.870 +637093.387|222148.365|124.557 +637106.137|222143.604|124.426 +637112.492|222141.217|124.666 +637118.813|222138.858|124.548 +637125.187|222136.474|124.563 +637131.511|222134.115|124.493 +637137.891|222131.729|124.459 +637144.212|222129.367|124.432 +637150.610|222126.983|124.267 +637156.886|222124.609|124.807 +637163.083|222122.256|125.541 +637169.465|222119.869|125.581 +637175.817|222117.540|124.657 +637182.227|222115.184|123.798 +637188.555|222112.816|123.880 +637194.834|222110.469|123.810 +637201.106|222108.122|123.865 +637220.016|222101.057|123.789 +637226.201|222098.697|124.731 +637232.352|222096.335|125.950 +637238.509|222093.976|127.126 +637250.801|222089.255|129.583 +637256.833|222086.917|131.259 +637262.972|222084.561|132.530 +637275.392|222079.879|133.305 +637281.604|222077.550|133.445 +637287.840|222075.225|133.399 +637300.356|222070.564|133.045 +637306.546|222068.257|132.954 +637312.804|222065.925|132.844 +637325.316|222061.280|132.238 +637344.180|222054.334|130.214 +637350.517|222052.014|129.266 +637356.704|222049.716|128.970 +637362.956|222047.396|128.675 +637369.091|222045.098|128.787 +637381.487|222040.474|128.662 +637393.853|222035.866|128.400 +637399.931|222033.586|128.592 +637418.710|222026.670|126.587 +637424.851|222024.381|126.465 +637431.075|222022.068|126.239 +637443.374|222017.483|126.026 +637455.670|222012.914|125.535 +637461.802|222010.619|125.602 +637467.923|222008.345|125.398 +637474.129|222006.041|125.087 +637480.295|222003.758|124.679 +637486.461|222001.475|124.282 +637492.551|221999.214|124.011 +637498.775|221996.903|123.697 +637504.871|221994.639|123.435 +637517.145|221990.100|122.539 +637547.549|221978.789|121.561 +637553.578|221976.539|121.506 +637559.634|221974.287|121.332 +637565.645|221972.053|121.100 +637571.726|221969.791|120.844 +637583.851|221965.292|120.293 +637589.797|221963.061|120.451 +637620.533|221951.787|116.251 +637626.556|221949.555|115.900 +637632.543|221947.327|115.751 +637638.623|221945.084|115.187 +637644.530|221942.862|115.437 +637650.346|221940.671|115.839 +637656.463|221938.418|115.184 +637662.358|221936.214|115.263 +637668.207|221934.026|115.276 +637685.919|221927.412|115.273 +637691.704|221925.232|115.641 +637714.891|221916.543|116.236 +637720.752|221914.360|116.080 +637726.406|221912.224|116.553 +637755.133|221901.464|117.242 +637766.844|221897.142|116.260 +637772.662|221894.984|115.937 +637778.417|221892.853|115.647 +637790.362|221888.477|113.928 +637796.163|221886.343|113.282 +637801.911|221884.206|113.099 +637807.626|221882.088|112.822 +637813.335|221879.954|112.831 +637819.251|221877.796|111.831 +637853.672|221865.080|109.164 +637865.249|221860.828|107.759 +637876.484|221856.674|106.976 +637882.040|221854.604|106.827 +637887.600|221852.537|106.680 +637927.087|221838.017|102.218 +637932.899|221835.923|100.700 +637943.034|221832.040|102.751 +637948.356|221830.043|102.937 +637930.418|221838.620|102.258 +637924.913|221840.672|102.538 +637919.430|221842.708|103.004 +637913.816|221844.780|103.699 +637908.131|221846.877|104.434 +637902.437|221848.974|105.223 +637896.722|221851.074|106.116 +637885.536|221855.247|106.641 +637880.004|221857.320|106.726 +637874.365|221859.411|107.204 +637868.675|221861.523|107.646 +637863.036|221863.626|107.939 +637857.168|221865.772|109.067 +637851.402|221867.909|109.615 +637828.444|221876.434|111.435 +637822.854|221878.531|111.444 +637811.201|221882.847|112.560 +637805.450|221884.999|112.755 +637799.756|221887.123|112.990 +637793.883|221889.290|113.685 +637782.120|221893.643|114.971 +637770.376|221897.995|116.038 +637752.823|221904.533|117.046 +637747.111|221906.676|117.031 +637735.650|221911.007|116.434 +637729.865|221913.187|116.242 +637724.147|221915.357|115.794 +637718.265|221917.551|116.053 +637706.411|221921.977|116.449 +637689.104|221928.536|115.175 +637683.246|221930.749|114.892 +637665.452|221937.418|115.090 +637653.522|221941.896|115.062 +637647.472|221944.145|115.452 +637635.621|221948.608|115.181 +637629.616|221950.848|115.437 +637623.566|221953.106|115.641 +637617.434|221955.377|116.248 +637611.149|221957.666|117.601 +637598.582|221962.257|120.137 +637592.507|221964.512|120.594 +637586.466|221966.780|120.604 +637574.304|221971.318|121.091 +637568.306|221973.577|120.957 +637562.115|221975.872|121.497 +637556.068|221978.149|121.341 +637550.030|221980.407|121.460 +637543.830|221982.718|121.814 +637537.795|221984.989|121.631 +637519.349|221991.874|122.405 +637513.039|221994.187|123.472 +637506.928|221996.495|123.152 +637500.786|221998.790|123.353 +637494.602|222001.088|123.822 +637488.332|222003.426|124.100 +637482.184|222005.715|124.401 +637475.875|222008.053|124.953 +637469.724|222010.339|125.337 +637463.491|222012.668|125.511 +637457.355|222014.969|125.493 +637451.165|222017.291|125.453 +637444.938|222019.617|125.663 +637438.711|222021.940|125.892 +637432.487|222024.262|126.120 +637426.226|222026.606|126.218 +637420.084|222028.901|126.373 +637413.790|222031.242|126.733 +637388.669|222040.572|128.525 +637382.429|222042.904|128.693 +637369.951|222047.585|128.626 +637363.751|222049.911|128.571 +637357.457|222052.261|128.763 +637351.132|222054.611|129.205 +637344.732|222056.961|130.235 +637331.994|222061.649|131.939 +637325.730|222063.993|132.052 +637319.381|222066.355|132.399 +637313.112|222068.696|132.637 +637306.775|222071.055|132.939 +637300.456|222073.414|133.137 +637294.168|222075.773|133.091 +637281.610|222080.489|132.945 +637275.252|222082.869|133.061 +637262.886|222087.612|130.866 +637256.739|222089.974|129.738 +637250.579|222092.364|128.132 +637238.262|222097.119|125.380 +637232.019|222099.505|124.481 +637225.774|222101.892|123.600 +637219.425|222104.266|123.682 +637200.354|222111.417|123.709 +637194.017|222113.788|123.767 +637187.698|222116.163|123.682 +637181.221|222118.543|124.609 +637174.750|222120.924|125.557 +637168.386|222123.319|125.374 +637162.071|222125.721|124.642 +637155.795|222128.099|124.176 +637149.400|222130.488|124.346 +637143.024|222132.878|124.380 +637136.650|222135.267|124.371 +637130.213|222137.678|124.417 +637123.830|222140.062|124.569 +637117.405|222142.473|124.526 +637111.050|222144.866|124.334 +637104.725|222147.264|123.801 +637091.689|222152.022|126.395 +637072.273|222159.130|129.845 +637059.423|222163.919|130.391 +637046.630|222168.732|130.049 +637040.242|222171.142|129.778 +637033.859|222173.553|129.379 +637034.445|222176.537|129.059 +637040.778|222174.154|129.367 +637047.170|222171.749|129.735 +637053.629|222169.323|130.004 +637059.959|222166.939|130.369 +637066.354|222164.537|130.671 +637079.144|222159.773|130.421 +637092.094|222155.061|127.919 +637098.568|222152.717|126.386 +637111.477|222148.008|124.130 +637117.847|222145.628|124.188 +637124.269|222143.220|124.377 +637130.588|222140.858|124.392 +637143.356|222136.093|124.295 +637149.684|222133.734|124.225 +637156.066|222131.348|124.243 +637162.345|222129.010|124.097 +637168.697|222126.617|124.496 +637174.955|222124.243|125.258 +637181.264|222121.878|125.471 +637187.686|222119.525|124.548 +637194.050|222117.193|123.603 +637200.442|222114.803|123.661 +637219.358|222107.744|123.560 +637225.640|222105.394|123.588 +637232.004|222103.026|123.456 +637238.234|222100.673|123.987 +637244.373|222098.310|125.386 +637256.669|222093.592|127.913 +637262.813|222091.233|129.153 +637268.970|222088.904|129.790 +637275.115|222086.545|131.037 +637281.226|222084.186|132.555 +637287.377|222081.854|133.219 +637293.699|222079.501|133.000 +637306.189|222074.835|132.902 +637312.395|222072.524|132.716 +637318.668|222070.189|132.512 +637324.901|222067.876|132.171 +637331.150|222065.541|132.201 +637337.377|222063.225|131.963 +637350.160|222058.561|129.632 +637356.482|222056.239|128.830 +637362.672|222053.938|128.534 +637368.924|222051.615|128.288 +637387.416|222044.687|128.589 +637412.394|222035.445|126.669 +637418.588|222033.153|126.200 +637424.760|222030.840|126.285 +637430.883|222028.551|126.294 +637437.046|222026.259|126.099 +637443.271|222023.957|125.544 +637449.418|222021.662|125.471 +637455.627|222019.346|125.432 +637504.843|222001.058|123.246 +637510.924|221998.790|123.082 +637523.223|221994.227|122.423 +637547.546|221985.178|121.558 +637553.572|221982.928|121.518 +637565.621|221978.423|121.515 +637577.736|221973.921|120.948 +637583.753|221971.684|120.741 +637614.535|221960.391|116.440 +637620.637|221958.148|115.702 +637626.651|221955.914|115.394 +637632.716|221953.658|115.169 +637644.619|221949.217|114.971 +637656.491|221944.795|114.696 +637674.151|221938.174|115.093 +637685.944|221933.779|114.806 +637709.108|221925.062|115.980 +637720.676|221920.734|116.041 +637726.531|221918.551|115.946 +637732.417|221916.363|115.721 +637738.135|221914.211|115.952 +637743.807|221912.068|116.376 +637772.614|221901.318|115.897 +637778.417|221899.160|115.657 +637784.281|221897.002|114.931 +637796.019|221892.671|113.782 +637801.942|221890.497|112.913 +637807.711|221888.352|112.648 +637813.366|221886.251|112.356 +637870.677|221865.034|107.979 +637881.970|221860.846|107.208 +637887.639|221858.755|106.659 +637898.856|221854.601|105.821 +637904.504|221852.519|105.187 +637932.512|221842.193|102.200 +637943.543|221838.105|101.428 +637948.654|221836.148|102.300 +637953.915|221834.161|102.693 +637933.329|221843.259|102.166 +637922.353|221847.344|102.840 +637905.275|221853.626|105.318 +637899.716|221855.692|105.650 +637888.493|221859.859|106.516 +637882.799|221861.962|107.156 +637871.482|221866.165|108.012 +637848.664|221874.626|109.945 +637837.113|221878.894|111.210 +637825.798|221883.124|111.438 +637814.274|221887.404|112.292 +637808.498|221889.559|112.566 +637796.830|221893.868|113.852 +637790.926|221896.054|114.437 +637785.083|221898.215|115.053 +637773.394|221902.558|115.870 +637750.199|221911.224|116.522 +637738.814|221915.540|115.565 +637732.950|221917.731|115.693 +637727.144|221919.901|115.855 +637691.994|221933.108|115.330 +637686.215|221935.309|114.681 +637680.274|221937.531|114.754 +637674.315|221939.759|114.916 +637650.520|221948.687|114.776 +637644.576|221950.921|114.690 +637638.504|221953.170|115.218 +637632.457|221955.447|115.065 +637626.468|221957.681|115.260 +637620.424|221959.940|115.422 +637614.172|221962.226|116.601 +637583.003|221973.690|121.100 +637577.023|221975.945|120.844 +637558.702|221982.785|121.454 +637552.554|221985.086|121.497 +637546.467|221987.366|121.554 +637527.917|221994.279|122.405 +637521.735|221996.580|122.737 +637515.542|221998.881|123.170 +637509.357|222001.198|123.225 +637503.185|222003.511|123.228 +637490.761|222008.144|123.761 +637478.347|222012.771|124.368 +637471.992|222015.115|125.191 +637453.426|222022.074|125.304 +637447.209|222024.402|125.450 +637440.920|222026.731|126.020 +637434.639|222029.078|126.221 +637428.466|222031.398|126.154 +637422.230|222033.738|126.120 +637415.930|222036.085|126.514 +637403.144|222040.779|128.580 +637390.692|222045.449|128.617 +637384.420|222047.805|128.568 +637371.965|222052.490|128.321 +637365.693|222054.843|128.318 +637359.450|222057.171|128.577 +637353.046|222059.546|129.126 +637346.621|222061.899|130.318 +637340.144|222064.270|131.482 +637333.820|222066.617|132.006 +637327.495|222068.982|132.134 +637321.170|222071.351|132.271 +637314.849|222073.713|132.415 +637308.497|222076.078|132.832 +637302.245|222078.416|132.966 +637295.881|222080.800|133.039 +637289.596|222083.159|132.997 +637283.406|222085.548|131.683 +637271.113|222090.303|128.784 +637264.862|222092.690|127.958 +637258.668|222095.055|127.126 +637246.269|222099.837|124.502 +637240.036|222102.227|123.481 +637233.696|222104.611|123.411 +637227.344|222106.988|123.490 +637220.940|222109.390|123.502 +637201.868|222116.547|123.502 +637195.507|222118.918|123.767 +637189.009|222121.301|124.904 +637182.568|222123.688|125.453 +637176.308|222126.072|124.779 +637169.983|222128.477|124.124 +637163.592|222130.872|124.203 +637157.209|222133.265|124.221 +637150.836|222135.661|124.154 +637144.395|222138.075|124.197 +637137.997|222140.461|124.429 +637131.630|222142.854|124.353 +637125.269|222145.250|124.209 +637118.853|222147.667|124.005 +637112.364|222150.062|124.782 +637105.905|222152.422|126.023 +637092.914|222157.149|128.973 +637073.624|222164.306|130.622 +637067.217|222166.714|130.552 +637060.834|222169.128|130.147 +637054.439|222171.539|129.921 +637041.665|222176.367|129.187 +637035.341|222178.759|128.803 +637033.743|222182.347|128.284 +637052.900|222175.126|129.647 +637059.243|222172.749|129.802 +637065.565|222170.365|130.275 +637071.956|222167.963|130.598 +637078.311|222165.589|130.574 +637091.110|222160.831|130.205 +637104.046|222156.110|128.004 +637116.969|222151.410|125.459 +637123.434|222149.057|124.237 +637129.765|222146.704|124.045 +637136.123|222144.317|124.258 +637142.451|222141.961|124.157 +637148.830|222139.577|124.151 +637155.155|222137.218|124.097 +637161.421|222134.880|124.072 +637167.807|222132.497|124.060 +637174.147|222130.138|123.911 +637180.426|222127.766|124.432 +637186.689|222125.392|125.130 +637192.892|222123.075|125.188 +637199.351|222120.725|123.923 +637218.352|222113.654|123.441 +637224.637|222111.310|123.435 +637230.922|222108.963|123.411 +637237.207|222106.616|123.420 +637243.498|222104.266|123.402 +637249.820|222101.892|123.697 +637255.916|222099.557|124.877 +637262.088|222097.173|126.483 +637274.417|222092.489|128.150 +637280.550|222090.157|129.010 +637292.669|222085.469|132.393 +637305.144|222080.790|132.872 +637317.616|222076.157|132.506 +637323.840|222073.847|132.201 +637330.129|222071.515|131.924 +637336.316|222069.208|131.951 +637342.653|222066.870|131.360 +637355.366|222062.262|128.687 +637361.611|222059.945|128.440 +637367.863|222057.626|128.147 +637374.032|222055.327|128.053 +637386.331|222050.713|128.589 +637417.454|222039.210|126.407 +637423.660|222036.902|126.248 +637429.862|222034.595|126.142 +637435.980|222032.309|126.203 +637448.315|222027.731|125.776 +637454.597|222025.411|125.276 +637460.675|222023.144|125.288 +637472.940|222018.578|125.090 +637479.240|222016.267|124.234 +637485.370|222013.990|124.039 +637491.594|222011.686|123.688 +637497.647|222009.434|123.621 +637503.837|222007.148|123.155 +637509.924|222004.868|123.289 +637516.026|222002.606|123.021 +637522.132|222000.341|122.761 +637534.366|221995.806|122.170 +637540.542|221993.529|121.618 +637546.561|221991.286|121.570 +637552.596|221989.042|121.472 +637558.619|221986.796|121.451 +637570.735|221982.291|121.113 +637576.770|221980.057|120.789 +637619.860|221964.265|115.123 +637625.819|221962.043|115.059 +637631.906|221959.791|114.727 +637649.858|221953.125|114.108 +637655.808|221950.915|113.910 +637679.369|221942.103|114.364 +637685.297|221939.893|114.364 +637696.813|221935.562|115.044 +637714.360|221929.027|114.898 +637731.652|221922.538|115.693 +637737.473|221920.374|115.495 +637743.292|221918.213|115.321 +637749.019|221916.064|115.556 +637789.472|221901.013|114.611 +637795.242|221898.876|114.309 +637807.017|221894.551|112.852 +637812.829|221892.415|112.206 +637818.614|221890.272|111.935 +637824.265|221888.163|111.941 +637830.114|221886.014|111.213 +637836.024|221883.853|110.304 +637841.636|221881.762|110.274 +637858.723|221875.431|109.369 +637887.307|221864.906|106.485 +637892.848|221862.843|106.418 +637904.233|221858.661|105.034 +637921.262|221852.409|102.959 +637926.831|221850.355|102.453 +637932.415|221848.301|101.919 +637937.843|221846.274|101.925 +637943.509|221844.198|101.160 +637949.002|221842.168|100.767 +637953.818|221840.278|102.642 +637941.528|221846.149|101.770 +637936.090|221848.176|102.026 +637930.616|221850.218|102.194 +637925.084|221852.272|102.587 +637902.419|221860.633|105.296 +637896.539|221862.773|106.543 +637891.071|221864.830|106.369 +637885.451|221866.906|106.997 +637845.620|221881.701|109.673 +637834.189|221885.941|110.548 +637828.221|221888.120|111.716 +637822.570|221890.235|111.722 +637816.813|221892.372|112.151 +637811.070|221894.518|112.295 +637805.230|221896.666|113.084 +637799.366|221898.831|113.745 +637793.532|221900.989|114.306 +637752.917|221916.140|115.727 +637747.269|221918.283|115.202 +637741.445|221920.456|115.407 +637735.574|221922.648|115.562 +637712.458|221931.359|114.553 +637694.664|221938.004|115.050 +637688.848|221940.207|114.572 +637683.027|221942.411|114.130 +637677.040|221944.639|114.416 +637653.437|221953.518|113.706 +637635.283|221960.272|114.724 +637623.210|221964.783|114.977 +637617.129|221967.042|115.358 +637579.843|221980.740|120.887 +637573.807|221982.998|120.933 +637567.632|221985.290|121.384 +637555.434|221989.853|121.591 +637549.381|221992.124|121.484 +637543.294|221994.401|121.576 +637518.492|222003.627|122.944 +637512.351|222005.919|123.106 +637506.200|222008.230|123.005 +637500.012|222010.525|123.484 +637493.837|222012.835|123.569 +637487.625|222015.146|123.877 +637481.410|222017.459|124.231 +637475.116|222019.791|124.709 +637462.772|222024.399|125.066 +637456.490|222026.746|125.185 +637450.263|222029.054|125.764 +637437.830|222033.696|126.096 +637431.569|222036.037|126.181 +637425.379|222038.350|126.258 +637419.146|222040.688|126.224 +637412.864|222043.029|126.523 +637400.086|222047.710|128.611 +637387.626|222052.374|128.751 +637381.384|222054.724|128.516 +637375.254|222057.046|127.955 +637368.972|222059.396|128.031 +637362.602|222061.771|128.306 +637356.357|222064.097|128.617 +637349.816|222066.468|130.189 +637337.029|222071.180|131.787 +637330.769|222073.521|131.896 +637324.447|222075.883|132.015 +637318.104|222078.245|132.311 +637311.767|222080.605|132.616 +637299.161|222085.320|132.747 +637292.970|222087.706|131.439 +637286.932|222090.069|129.370 +637280.711|222092.455|128.257 +637274.502|222094.842|127.065 +637268.382|222097.180|126.126 +637262.042|222099.560|126.032 +637255.925|222101.953|123.981 +637249.658|222104.339|123.240 +637243.306|222106.717|123.271 +637236.951|222109.094|123.362 +637230.608|222111.472|123.335 +637224.268|222113.846|123.347 +637217.858|222116.245|123.438 +637198.677|222123.371|124.609 +637192.225|222125.758|125.279 +637185.967|222128.138|124.542 +637179.639|222130.540|123.914 +637173.245|222132.930|124.029 +637166.865|222135.322|123.999 +637160.419|222137.733|124.036 +637154.097|222140.102|124.078 +637147.650|222142.510|124.203 +637141.274|222144.899|124.203 +637134.913|222147.292|124.023 +637128.463|222149.697|124.231 +637122.005|222152.059|125.401 +637115.476|222154.439|126.760 +637108.980|222156.826|127.724 +637102.519|222159.176|129.147 +637096.002|222161.547|130.570 +637089.571|222163.943|130.842 +637076.827|222168.732|130.561 +637070.426|222171.136|130.415 +637064.050|222173.550|129.885 +637057.655|222175.958|129.659 +637051.282|222178.375|129.095 +637044.884|222180.780|128.934 +637038.501|222183.194|128.470 +637033.515|222188.419|127.809 +637039.916|222186.017|128.047 +637046.301|222183.609|128.559 +637052.696|222181.204|128.915 +637059.021|222178.817|129.385 +637065.424|222176.419|129.574 +637071.752|222174.035|130.022 +637078.095|222171.658|130.199 +637084.499|222169.256|130.400 +637090.851|222166.881|130.479 +637097.203|222164.507|130.567 +637116.457|222157.430|128.288 +637129.384|222152.723|125.846 +637135.876|222150.373|124.401 +637142.234|222148.023|123.883 +637148.544|222145.661|124.045 +637154.932|222143.281|123.969 +637161.260|222140.918|123.944 +637167.584|222138.556|123.956 +637173.976|222136.173|123.898 +637180.246|222133.835|123.895 +637186.589|222131.473|123.783 +637192.865|222129.098|124.359 +637199.083|222126.748|124.950 +637218.200|222119.692|123.313 +637224.482|222117.348|123.316 +637230.834|222114.980|123.258 +637237.122|222112.630|123.271 +637243.410|222110.283|123.277 +637249.774|222107.912|123.173 +637256.010|222105.586|123.161 +637262.280|222103.233|123.386 +637274.435|222098.509|127.175 +637280.675|222096.180|127.138 +637286.920|222093.827|127.593 +637292.955|222091.489|129.232 +637299.024|222089.157|130.613 +637305.104|222086.798|132.338 +637317.516|222082.162|132.390 +637323.786|222079.830|132.177 +637330.061|222077.496|131.970 +637336.298|222075.185|131.604 +637342.519|222072.872|131.387 +637348.737|222070.537|131.671 +637355.272|222068.214|129.229 +637361.614|222065.895|128.257 +637367.793|222063.597|128.031 +637374.047|222061.277|127.724 +637380.259|222058.955|127.757 +637392.454|222054.361|128.556 +637398.690|222052.036|128.480 +637411.324|222047.412|126.532 +637417.533|222045.104|126.303 +637423.724|222042.797|126.233 +637436.031|222038.201|126.197 +637442.164|222035.912|126.166 +637448.434|222033.595|125.688 +637454.594|222031.300|125.517 +637460.793|222029.005|125.142 +637466.963|222026.710|124.987 +637473.159|222024.408|124.673 +637479.280|222022.132|124.478 +637485.491|222019.830|124.145 +637491.642|222017.547|123.819 +637497.796|222015.264|123.511 +637503.956|222012.978|123.191 +637510.113|222010.692|122.920 +637516.267|222008.406|122.688 +637522.360|222006.142|122.466 +637528.478|222003.874|122.149 +637540.666|221999.336|121.807 +637546.796|221997.065|121.487 +637552.810|221994.818|121.481 +637571.000|221988.043|121.119 +637577.035|221985.790|121.064 +637583.028|221983.559|120.954 +637632.171|221965.494|115.084 +637644.247|221961.007|114.581 +637650.325|221958.779|113.752 +637656.366|221956.542|113.410 +637685.733|221945.541|114.041 +637691.512|221943.350|114.690 +637703.198|221938.976|114.910 +637709.154|221936.769|114.568 +637715.153|221934.565|113.782 +637720.941|221932.398|113.934 +637749.604|221921.630|115.224 +637755.429|221919.466|115.050 +637761.065|221917.332|115.663 +637795.711|221904.463|114.294 +637801.579|221902.305|113.599 +637807.422|221900.153|113.041 +637813.289|221897.992|112.410 +637819.041|221895.865|111.993 +637824.844|221893.716|111.652 +637830.520|221891.613|111.325 +637842.209|221887.315|109.948 +637847.921|221885.203|109.554 +637864.883|221878.918|108.637 +637870.574|221876.815|108.165 +637887.588|221870.530|106.836 +637893.211|221868.448|106.449 +637904.483|221864.291|105.427 +637927.087|221855.985|102.733 +637932.652|221853.933|102.242 +637938.020|221851.931|102.215 +637943.540|221849.883|101.916 +637948.795|221847.904|102.300 +637954.174|221845.896|102.270 +637959.548|221843.890|102.285 +637949.794|221849.151|101.962 +637944.427|221851.163|101.971 +637938.913|221853.214|102.261 +637933.506|221855.244|102.209 +637927.971|221857.298|102.617 +637922.332|221859.383|103.169 +637916.659|221861.477|103.858 +637905.281|221865.674|105.196 +637893.921|221869.875|106.318 +637888.331|221871.956|106.604 +637871.192|221878.314|107.951 +637848.430|221886.779|109.320 +637842.663|221888.922|109.695 +637831.023|221893.210|111.161 +637825.210|221895.371|111.533 +637819.477|221897.505|111.871 +637802.012|221903.979|113.300 +637790.326|221908.298|114.526 +637767.033|221916.969|115.693 +637761.382|221919.115|115.151 +637755.597|221921.294|114.907 +637749.778|221923.468|115.071 +637743.990|221925.635|115.129 +637721.029|221934.325|113.425 +637715.171|221936.525|113.322 +637709.157|221938.750|113.904 +637691.351|221945.395|114.514 +637685.578|221947.590|113.858 +637679.628|221949.827|113.718 +637655.976|221958.715|113.233 +637649.913|221960.964|113.697 +637619.704|221972.220|115.026 +637582.351|221985.927|120.914 +637564.063|221992.758|121.411 +637551.926|221997.309|121.341 +637545.830|221999.585|121.487 +637539.661|222001.887|121.713 +637533.504|222004.185|121.896 +637527.392|222006.462|122.192 +637521.168|222008.781|122.460 +637515.024|222011.073|122.646 +637508.806|222013.390|122.923 +637502.640|222015.682|123.267 +637496.428|222017.998|123.563 +637490.216|222020.309|123.889 +637484.001|222022.622|124.252 +637477.747|222024.954|124.511 +637471.568|222027.258|124.715 +637465.326|222029.587|124.965 +637452.881|222034.217|125.666 +637446.681|222036.536|125.712 +637440.402|222038.862|126.297 +637434.242|222041.179|126.163 +637427.988|222043.519|126.242 +637421.816|222045.833|126.227 +637396.542|222055.190|128.617 +637384.100|222059.869|128.275 +637378.007|222062.195|127.455 +637371.688|222064.545|127.785 +637365.376|222066.898|128.105 +637359.072|222069.245|128.388 +637352.422|222071.619|130.769 +637346.128|222073.966|131.052 +637339.785|222076.331|131.287 +637333.463|222078.672|131.842 +637327.154|222081.034|131.881 +637295.994|222092.870|128.781 +637289.883|222095.235|127.282 +637283.668|222097.622|126.102 +637265.014|222104.760|123.124 +637258.656|222107.140|123.173 +637252.298|222109.521|123.267 +637245.958|222111.901|123.185 +637239.609|222114.279|123.246 +637233.199|222116.678|123.283 +637226.856|222119.055|123.322 +637220.531|222121.433|123.203 +637201.283|222128.583|124.484 +637195.013|222130.964|123.862 +637188.579|222133.384|123.706 +637182.184|222135.773|123.819 +637175.802|222138.169|123.795 +637169.416|222140.559|123.822 +637163.031|222142.948|123.892 +637156.593|222145.366|123.856 +637150.153|222147.776|123.892 +637143.828|222150.142|124.026 +637137.205|222152.544|125.660 +637130.768|222154.912|126.532 +637117.728|222159.676|129.046 +637111.285|222162.032|130.232 +637098.431|222166.833|130.583 +637092.024|222169.237|130.482 +637079.232|222174.056|130.037 +637072.849|222176.467|129.653 +637066.452|222178.875|129.434 +637060.002|222181.308|129.144 +637053.696|222183.706|128.443 +637047.319|222186.126|127.852 +637040.845|222188.547|127.995 +637034.527|222190.942|127.437 +637033.420|222194.527|125.047 +637039.727|222192.067|127.163 +637046.054|222189.680|127.644 +637052.449|222187.273|127.995 +637058.841|222184.868|128.370 +637065.159|222182.478|129.001 +637071.557|222180.073|129.299 +637077.891|222177.693|129.610 +637084.285|222175.285|129.952 +637090.631|222172.907|130.116 +637096.980|222170.530|130.250 +637103.390|222168.131|130.391 +637109.727|222165.748|130.705 +637128.933|222158.688|128.397 +637135.416|222156.338|126.937 +637141.871|222153.979|125.919 +637148.306|222151.647|124.468 +637154.688|222149.300|123.731 +637161.056|222146.911|123.923 +637167.395|222144.552|123.761 +637173.720|222142.189|123.758 +637180.048|222139.827|123.764 +637186.385|222137.462|123.694 +637192.709|222135.097|123.767 +637199.006|222132.759|123.505 +637224.253|222123.335|123.402 +637230.568|222120.991|123.094 +637236.911|222118.619|123.124 +637243.141|222116.294|123.091 +637249.494|222113.922|123.094 +637255.727|222111.597|123.085 +637262.033|222109.244|122.987 +637268.345|222106.894|122.859 +637274.630|222104.541|122.975 +637280.729|222102.203|124.179 +637293.062|222097.512|125.950 +637299.109|222095.174|127.550 +637305.223|222092.818|129.077 +637311.264|222090.483|130.662 +637317.284|222088.173|131.948 +637323.520|222085.841|132.009 +637329.787|222083.509|131.845 +637336.078|222081.174|131.537 +637342.330|222078.864|131.098 +637348.599|222076.526|131.000 +637361.349|222071.890|128.492 +637367.561|222069.592|128.038 +637373.840|222067.273|127.565 +637380.034|222064.974|127.282 +637411.102|222053.413|126.447 +637417.387|222051.103|125.736 +637423.559|222048.796|125.788 +637429.603|222046.516|126.258 +637435.788|222044.208|126.255 +637466.682|222032.742|124.874 +637472.909|222030.422|124.746 +637479.030|222028.145|124.551 +637485.214|222025.847|124.371 +637491.386|222023.564|123.929 +637503.682|222019.001|123.380 +637509.857|222016.712|123.008 +637516.008|222014.426|122.771 +637522.098|222012.165|122.573 +637528.279|222009.872|122.231 +637534.394|222007.605|121.945 +637540.499|222005.337|121.728 +637546.580|222003.069|121.667 +637552.596|222000.823|121.631 +637564.761|221996.300|121.277 +637582.918|221989.542|120.881 +637620.055|221975.954|115.224 +637626.181|221973.696|114.654 +637632.128|221971.477|114.645 +637638.145|221969.230|114.642 +637650.251|221964.768|113.456 +637656.259|221962.534|113.270 +637662.267|221960.315|112.801 +637668.113|221958.102|113.377 +637679.887|221953.695|113.645 +637685.782|221951.488|113.764 +637697.163|221947.151|115.559 +637715.235|221940.512|113.368 +637721.209|221938.314|112.721 +637744.084|221929.682|114.605 +637749.805|221927.521|115.093 +637755.621|221925.354|114.949 +637761.394|221923.209|114.739 +637767.118|221921.057|114.998 +637790.134|221912.470|114.730 +637801.750|221908.167|114.026 +637807.715|221905.987|112.980 +637825.103|221899.556|111.697 +637830.855|221897.425|111.310 +637836.597|221895.295|110.987 +637859.680|221886.782|108.774 +637865.425|221884.657|108.302 +637871.083|221882.551|108.171 +637876.795|221880.445|107.643 +637882.394|221878.369|107.287 +637888.078|221876.263|106.891 +637893.726|221874.178|106.409 +637910.676|221867.924|104.851 +637916.412|221865.815|104.150 +637927.736|221861.648|102.870 +637933.244|221859.606|102.568 +637938.745|221857.564|102.303 +637949.971|221853.440|100.859 +637954.970|221851.510|102.108 +637960.289|221849.514|102.303 +637953.004|221854.375|101.998 +637948.267|221856.256|99.883 +637936.734|221860.459|102.197 +637931.183|221862.517|102.663 +637925.593|221864.589|103.047 +637919.942|221866.677|103.666 +637914.276|221868.765|104.370 +637908.494|221870.883|105.263 +637902.660|221873.014|106.357 +637897.158|221875.077|106.311 +637891.486|221877.171|106.897 +637885.917|221879.259|106.894 +637880.214|221881.369|107.384 +637874.536|221883.475|107.808 +637868.931|221885.575|107.759 +637863.115|221887.718|108.491 +637857.431|221889.833|108.765 +637845.702|221894.140|110.466 +637840.051|221896.246|110.688 +637834.244|221898.404|111.021 +637828.490|221900.537|111.423 +637816.913|221904.841|112.054 +637811.022|221907.011|112.801 +637793.346|221913.537|114.700 +637787.589|221915.689|114.770 +637781.800|221917.847|114.992 +637770.276|221922.172|114.745 +637764.558|221924.327|114.477 +637758.715|221926.503|114.724 +637752.844|221928.695|114.843 +637747.099|221930.865|114.468 +637735.931|221935.151|112.420 +637730.048|221937.354|112.389 +637724.254|221939.531|112.273 +637718.335|221941.737|112.435 +637694.091|221950.680|115.196 +637688.437|221952.856|114.038 +637682.563|221955.078|113.563 +637634.560|221973.010|114.416 +637622.393|221977.530|115.196 +637615.967|221979.831|117.257 +637590.998|221989.003|120.869 +637584.985|221991.261|120.808 +637566.730|221998.080|121.143 +637560.567|222000.363|121.600 +637554.443|222002.661|121.551 +637542.239|222007.227|121.622 +637536.079|222009.522|121.829 +637529.898|222011.820|122.164 +637523.665|222014.140|122.478 +637517.517|222016.432|122.701 +637511.293|222018.745|123.024 +637505.093|222021.056|123.225 +637498.860|222023.369|123.633 +637492.642|222025.679|123.969 +637480.179|222030.315|124.542 +637474.010|222032.620|124.697 +637467.786|222034.942|124.816 +637461.565|222037.265|124.953 +637436.525|222046.570|126.291 +637424.211|222051.213|125.624 +637417.945|222053.550|125.822 +637411.638|222055.885|126.303 +637386.398|222065.261|127.827 +637380.277|222067.583|127.169 +637373.959|222069.930|127.492 +637361.112|222074.630|129.723 +637329.400|222086.405|131.674 +637316.836|222091.123|131.375 +637304.672|222095.848|127.913 +637292.385|222100.596|124.852 +637279.946|222105.345|122.990 +637273.612|222107.726|122.761 +637267.233|222110.106|122.975 +637260.869|222112.484|123.057 +637254.523|222114.861|123.014 +637248.171|222117.239|123.036 +637241.822|222119.613|123.060 +637235.482|222121.987|123.033 +637229.041|222124.380|123.380 +637203.572|222133.914|123.389 +637197.150|222136.301|123.722 +637190.771|222138.696|123.606 +637184.434|222141.062|123.694 +637177.990|222143.476|123.688 +637171.608|222145.865|123.652 +637165.271|222148.231|123.840 +637158.831|222150.642|123.816 +637152.347|222153.004|125.075 +637145.825|222155.393|126.166 +637139.296|222157.777|127.373 +637132.837|222160.136|128.580 +637126.330|222162.480|130.473 +637119.874|222164.873|130.933 +637113.485|222167.284|130.525 +637107.082|222169.689|130.382 +637100.690|222172.100|130.010 +637094.338|222174.477|130.001 +637081.478|222179.314|129.559 +637075.148|222181.698|129.254 +637062.389|222186.529|128.153 +637056.006|222188.943|127.650 +637049.547|222191.369|127.428 +637043.165|222193.783|126.931 +637036.849|222196.240|125.087 +637039.946|222198.471|125.154 +637046.210|222196.045|126.843 +637052.620|222193.643|126.934 +637059.002|222191.229|127.477 +637065.324|222188.836|128.041 +637071.716|222186.425|128.412 +637078.101|222184.014|128.900 +637084.441|222181.631|129.165 +637090.775|222179.244|129.504 +637103.521|222174.456|129.912 +637109.864|222172.072|130.125 +637116.216|222169.692|130.260 +637128.878|222164.915|131.049 +637135.355|222162.565|129.571 +637141.807|222160.203|128.501 +637148.214|222157.868|127.291 +637161.193|222153.147|124.596 +637167.536|222150.821|123.648 +637173.921|222148.432|123.627 +637180.249|222146.067|123.621 +637186.580|222143.701|123.569 +637192.913|222141.333|123.545 +637199.241|222138.965|123.566 +637230.751|222127.151|124.130 +637237.131|222124.810|123.194 +637243.498|222122.438|122.993 +637249.789|222120.085|122.978 +637256.083|222117.732|122.938 +637262.316|222115.404|122.917 +637268.665|222113.026|122.987 +637274.969|222110.670|122.929 +637281.251|222108.338|122.576 +637287.511|222105.979|122.914 +637293.650|222103.641|123.789 +637299.847|222101.279|124.703 +637305.869|222098.941|126.514 +637311.944|222096.604|127.873 +637317.912|222094.287|129.580 +637336.414|222087.283|131.430 +637342.610|222084.969|131.375 +637348.874|222082.653|130.863 +637355.162|222080.315|130.628 +637361.422|222077.995|130.202 +637367.680|222075.676|129.802 +637374.126|222073.372|127.696 +637380.427|222071.046|127.096 +637386.559|222068.748|127.251 +637392.707|222066.425|127.742 +637411.407|222059.503|126.370 +637417.670|222057.193|125.782 +637460.918|222041.084|124.624 +637467.036|222038.792|124.755 +637473.120|222036.521|124.734 +637503.780|222025.100|123.926 +637522.235|222018.258|122.850 +637528.362|222015.987|122.454 +637534.574|222013.689|121.951 +637540.694|222011.418|121.637 +637546.729|222009.171|121.478 +637552.840|222006.898|121.268 +637558.808|222004.654|121.494 +637564.919|222002.380|121.320 +637570.964|222000.128|121.195 +637595.034|221991.152|120.811 +637626.163|221979.798|115.081 +637644.259|221973.080|114.184 +637656.418|221968.590|113.096 +637668.305|221964.149|113.038 +637674.245|221961.936|112.907 +637680.049|221959.742|113.416 +637685.962|221957.532|113.444 +637691.738|221955.356|113.819 +637697.608|221953.161|113.788 +637715.534|221946.529|112.478 +637721.794|221944.267|110.880 +637727.403|221942.124|111.798 +637733.136|221939.963|112.200 +637755.801|221931.380|114.511 +637767.414|221927.052|114.334 +637773.132|221924.912|114.379 +637784.595|221920.618|114.648 +637807.769|221912.019|113.438 +637813.750|221909.840|112.350 +637819.535|221907.694|112.036 +637825.298|221905.551|111.819 +637831.056|221903.424|111.408 +637836.811|221901.293|111.027 +637842.602|221899.154|110.527 +637854.151|221894.880|109.722 +637859.918|221892.753|109.146 +637865.758|221890.613|108.314 +637871.342|221888.531|108.207 +637888.447|221882.204|106.964 +637894.071|221880.122|106.561 +637899.697|221878.028|106.391 +637910.871|221873.889|105.711 +637928.126|221867.576|103.010 +637933.713|221865.519|102.428 +637944.802|221861.407|101.837 +637955.643|221857.353|101.919 +637960.996|221855.351|101.989 +637966.476|221853.309|101.874 +637955.433|221859.365|101.718 +637939.074|221865.488|102.230 +637933.533|221867.558|102.434 +637899.444|221880.174|106.342 +637893.854|221882.259|106.625 +637888.115|221884.383|107.235 +637871.128|221890.711|108.366 +637859.592|221894.996|109.277 +637848.098|221899.273|110.128 +637842.398|221901.394|110.539 +637836.616|221903.543|111.024 +637830.815|221905.704|111.353 +637824.975|221907.874|111.865 +637819.269|221910.017|111.892 +637813.494|221912.160|112.444 +637807.495|221914.366|113.377 +637784.239|221923.044|114.511 +637778.551|221925.190|114.343 +637772.845|221927.351|114.005 +637755.414|221933.892|114.105 +637738.494|221940.381|111.435 +637732.590|221942.582|111.767 +637727.073|221944.734|110.210 +637721.185|221946.943|110.219 +637715.086|221949.187|111.167 +637702.763|221953.719|113.133 +637696.974|221955.923|112.526 +637690.884|221958.172|113.261 +637684.956|221960.397|113.322 +637678.985|221962.641|113.291 +637673.151|221964.863|112.670 +637667.204|221967.103|112.581 +637661.157|221969.355|112.950 +637655.180|221971.611|112.749 +637649.038|221973.872|113.605 +637642.744|221976.174|114.916 +637636.724|221978.432|114.986 +637630.686|221980.691|115.154 +637624.502|221982.983|115.736 +637618.372|221985.254|116.403 +637599.335|221992.185|120.823 +637575.002|222001.295|121.347 +637568.986|222003.572|121.049 +637562.798|222005.883|121.311 +637556.772|222008.156|121.067 +637550.606|222010.464|121.274 +637544.440|222012.768|121.497 +637538.280|222015.069|121.713 +637525.743|222019.711|123.042 +637513.417|222024.326|123.344 +637507.160|222026.649|123.889 +637500.951|222028.965|124.203 +637494.730|222031.297|124.240 +637488.631|222033.580|124.316 +637476.241|222038.219|124.578 +637469.977|222040.569|124.596 +637463.854|222042.870|124.535 +637457.608|222045.214|124.487 +637445.072|222049.871|125.514 +637438.906|222052.188|125.419 +637413.991|222061.524|125.694 +637401.232|222066.230|127.382 +637394.987|222068.583|127.160 +637388.867|222070.912|126.538 +637382.554|222073.268|126.803 +637376.153|222075.603|128.156 +637369.698|222077.959|129.522 +637363.315|222080.330|129.970 +637357.082|222082.656|130.269 +637350.712|222085.024|130.680 +637344.421|222087.371|131.006 +637338.126|222089.736|130.921 +637331.759|222092.102|131.418 +637325.645|222094.467|129.982 +637319.537|222096.835|128.495 +637307.342|222101.572|125.267 +637295.034|222106.308|122.877 +637288.746|222108.698|122.271 +637282.400|222111.057|122.694 +637276.026|222113.441|122.853 +637269.684|222115.800|123.304 +637263.389|222118.186|122.819 +637257.043|222120.567|122.829 +637250.694|222122.947|122.865 +637244.345|222125.328|122.905 +637237.911|222127.699|123.804 +637231.468|222130.065|124.834 +637218.898|222134.859|123.307 +637199.845|222142.007|123.377 +637193.453|222144.402|123.420 +637187.125|222146.774|123.484 +637180.682|222149.191|123.472 +637174.351|222151.562|123.600 +637167.883|222153.936|124.670 +637154.896|222158.667|127.559 +637148.364|222161.054|128.848 +637141.914|222163.419|129.952 +637135.480|222165.784|130.961 +637129.067|222168.195|130.897 +637122.748|222170.588|130.409 +637116.366|222173.005|129.994 +637110.026|222175.394|129.808 +637103.704|222177.787|129.367 +637097.297|222180.195|129.309 +637090.918|222182.612|128.812 +637084.575|222184.999|128.708 +637078.183|222187.413|128.431 +637071.813|222189.833|127.818 +637065.437|222192.253|127.248 +637059.051|222194.670|126.852 +637052.672|222197.090|126.352 +637046.393|222199.510|125.060 +637039.928|222201.940|124.956 +637046.097|222203.012|125.124 +637058.880|222198.187|126.111 +637065.269|222195.776|126.654 +637071.664|222193.366|127.081 +637078.028|222190.942|128.022 +637084.368|222188.559|128.330 +637090.772|222186.154|128.565 +637097.191|222183.752|128.614 +637109.870|222178.985|129.235 +637122.602|222174.191|130.022 +637128.939|222171.804|130.394 +637154.445|222162.334|129.263 +637160.940|222159.978|127.785 +637173.876|222155.281|125.069 +637180.386|222152.915|123.685 +637186.674|222150.578|123.453 +637193.075|222148.191|123.365 +637199.412|222145.826|123.362 +637224.710|222136.377|123.322 +637230.916|222134.021|124.060 +637237.177|222131.643|124.852 +637243.559|222129.303|123.956 +637249.951|222126.962|122.984 +637256.266|222124.615|122.771 +637262.563|222122.262|122.740 +637268.867|222119.912|122.688 +637275.164|222117.555|122.728 +637281.461|222115.202|122.761 +637287.773|222112.846|122.694 +637294.065|222110.518|122.304 +637300.362|222108.155|122.408 +637306.314|222105.812|124.831 +637312.569|222103.474|124.770 +637318.683|222101.112|126.346 +637324.685|222098.792|127.812 +637330.695|222096.454|129.668 +637336.770|222094.116|131.003 +637343.028|222091.779|130.982 +637349.273|222089.462|130.580 +637355.549|222087.121|130.446 +637361.770|222084.826|129.848 +637368.079|222082.482|129.540 +637374.258|222080.181|129.293 +637380.637|222077.855|128.117 +637387.068|222075.523|126.623 +637393.341|222073.195|126.270 +637399.458|222070.894|126.593 +637405.609|222068.586|126.684 +637411.876|222066.276|126.029 +637418.076|222063.965|125.861 +637467.542|222045.531|124.551 +637473.616|222043.260|124.596 +637485.955|222038.658|124.334 +637492.109|222036.357|124.331 +637510.540|222029.502|123.569 +637541.236|222018.105|121.881 +637547.439|222015.807|121.487 +637553.493|222013.554|121.250 +637559.610|222011.278|121.021 +637571.643|222006.779|121.018 +637595.902|221997.741|120.308 +637601.895|221995.504|120.244 +637620.604|221988.674|116.922 +637626.803|221986.403|115.961 +637632.811|221984.172|115.647 +637644.866|221979.685|115.196 +637651.105|221977.417|113.870 +637657.186|221975.171|113.328 +637680.914|221966.304|113.191 +637686.824|221964.091|113.243 +637693.000|221961.836|112.121 +637699.084|221959.596|111.453 +637704.908|221957.407|111.661 +637710.888|221955.194|111.213 +637717.088|221952.942|109.838 +637723.175|221950.708|108.991 +637729.024|221948.525|108.905 +637756.993|221937.830|113.712 +637774.308|221931.341|113.883 +637780.127|221929.167|113.788 +637785.775|221927.040|114.130 +637820.565|221914.125|112.036 +637826.320|221911.980|111.844 +637843.650|221905.554|110.652 +637849.439|221903.412|110.176 +637855.126|221901.299|109.850 +637866.620|221897.038|109.076 +637872.384|221894.908|108.533 +637889.334|221888.614|107.576 +637895.095|221886.492|106.900 +637900.727|221884.404|106.470 +637911.965|221880.235|105.769 +637934.886|221871.825|102.389 +637940.397|221869.768|102.303 +637945.878|221867.726|102.111 +637956.887|221863.632|101.605 +637962.187|221861.636|101.846 +637967.521|221859.633|101.986 +637964.592|221862.139|101.657 +637959.176|221864.163|101.816 +637954.290|221866.086|99.969 +637948.328|221868.235|101.770 +637942.830|221870.286|102.029 +637937.340|221872.334|102.264 +637908.695|221882.880|106.348 +637903.148|221884.956|106.458 +637897.399|221887.071|107.308 +637869.028|221897.639|108.881 +637857.598|221901.888|109.664 +637851.856|221904.027|109.945 +637846.065|221906.176|110.435 +637840.252|221908.328|111.027 +637834.439|221910.480|111.645 +637828.706|221912.626|111.734 +637822.875|221914.790|112.218 +637811.153|221919.136|113.243 +637805.398|221921.282|113.502 +637787.970|221927.796|114.026 +637782.334|221929.929|113.648 +637776.524|221932.106|113.703 +637753.426|221940.805|113.041 +637736.726|221947.248|109.433 +637731.082|221949.406|108.661 +637725.168|221951.619|108.765 +637719.136|221953.865|109.122 +637713.040|221956.106|110.042 +637706.914|221958.364|110.865 +637700.961|221960.592|110.957 +637694.963|221962.827|111.271 +637688.541|221965.128|113.483 +637682.630|221967.359|113.179 +637646.320|221980.889|115.035 +637634.039|221985.449|115.998 +637627.943|221987.713|116.452 +637621.734|221990.006|117.178 +637615.355|221992.307|119.067 +637609.067|221994.608|120.253 +637602.974|221996.894|120.219 +637596.936|221999.159|120.232 +637572.436|222008.315|120.978 +637566.358|222010.595|120.981 +637560.216|222012.896|121.021 +637554.047|222015.200|121.219 +637547.878|222017.505|121.430 +637541.602|222019.818|122.256 +637529.166|222024.430|123.374 +637510.662|222031.373|123.389 +637473.382|222045.312|124.584 +637467.139|222047.662|124.474 +637417.146|222066.376|125.593 +637410.858|222068.717|126.011 +637404.521|222071.080|126.349 +637398.303|222073.436|125.934 +637392.037|222075.773|126.282 +637385.526|222078.157|127.492 +637379.140|222080.492|128.736 +637372.749|222082.869|129.208 +637366.500|222085.198|129.555 +637360.121|222087.572|130.010 +637353.812|222089.919|130.406 +637347.444|222092.291|130.836 +637341.132|222094.659|130.881 +637334.984|222097.027|129.680 +637328.922|222099.395|127.791 +637316.720|222104.135|124.581 +637310.515|222106.531|123.292 +637304.330|222108.899|122.304 +637297.969|222111.289|122.271 +637291.623|222113.654|122.664 +637285.262|222116.041|122.679 +637278.913|222118.427|122.624 +637272.564|222120.814|122.585 +637266.203|222123.197|122.676 +637259.854|222125.581|122.670 +637253.468|222127.961|123.024 +637247.015|222130.336|124.060 +637240.557|222132.732|124.618 +637234.296|222135.118|123.859 +637228.026|222137.505|123.225 +637221.620|222139.907|123.335 +637202.512|222147.082|123.289 +637196.129|222149.480|123.222 +637189.731|222151.876|123.371 +637183.273|222154.260|124.209 +637170.261|222159.002|127.132 +637144.410|222168.512|131.113 +637131.639|222173.349|130.241 +637125.330|222175.748|129.626 +637118.908|222178.156|129.687 +637112.583|222180.552|129.242 +637106.192|222182.969|128.915 +637099.794|222185.383|128.672 +637093.408|222187.800|128.263 +637080.640|222192.640|127.358 +637074.255|222195.060|126.901 +637067.869|222197.477|126.483 +637061.459|222199.885|126.453 +637055.080|222202.308|125.898 +637048.715|222204.744|125.011 +637046.329|222209.304|125.343 +637052.690|222206.932|125.224 +637059.115|222204.536|125.118 +637065.495|222202.119|125.794 +637071.804|222199.721|126.614 +637078.217|222197.322|126.675 +637084.548|222194.935|127.099 +637090.942|222192.527|127.492 +637097.337|222190.116|127.894 +637103.607|222187.754|128.324 +637109.992|222185.343|128.809 +637116.344|222182.963|128.934 +637122.684|222180.579|129.223 +637129.088|222178.171|129.510 +637135.324|222175.797|130.397 +637141.652|222173.410|130.830 +637167.142|222163.934|129.845 +637180.106|222159.246|126.693 +637193.011|222154.564|123.831 +637199.415|222152.211|123.051 +637205.739|222149.843|123.118 +637224.683|222142.763|123.158 +637231.035|222140.394|123.063 +637237.308|222138.044|123.127 +637243.580|222135.667|123.813 +637249.722|222133.335|124.569 +637256.172|222130.973|123.645 +637262.563|222128.629|122.716 +637268.867|222126.279|122.606 +637275.164|222123.926|122.588 +637281.467|222121.573|122.539 +637287.770|222119.220|122.518 +637293.994|222116.885|122.667 +637300.383|222114.507|122.499 +637306.683|222112.176|122.054 +637312.910|222109.841|122.243 +637325.172|222105.141|124.648 +637331.177|222102.803|126.568 +637349.361|222095.842|130.019 +637355.619|222093.507|129.994 +637361.819|222091.190|129.976 +637368.152|222088.852|129.443 +637374.437|222086.533|128.873 +637386.901|222081.915|128.141 +637393.317|222079.586|126.751 +637399.678|222077.258|125.797 +637405.881|222074.954|125.523 +637412.077|222072.631|125.730 +637424.501|222068.016|125.194 +637455.481|222056.483|124.426 +637461.629|222054.194|124.322 +637467.752|222051.901|124.404 +637473.863|222049.612|124.560 +637480.008|222047.317|124.542 +637535.177|222026.774|123.307 +637541.316|222024.503|122.859 +637547.585|222022.202|122.073 +637559.909|222017.648|121.082 +637565.953|222015.399|120.908 +637578.047|222010.881|120.927 +637583.966|222008.659|121.131 +637590.108|222006.379|120.866 +637608.271|221999.640|119.976 +637626.715|221992.868|117.635 +637632.838|221990.612|117.034 +637657.250|221981.624|114.428 +637663.330|221979.380|113.870 +637675.306|221974.930|113.395 +637681.274|221972.714|113.145 +637687.193|221970.504|113.124 +637693.329|221968.261|112.167 +637699.730|221965.975|110.085 +637705.640|221963.774|109.905 +637711.657|221961.559|109.292 +637717.789|221959.324|108.210 +637723.571|221957.157|108.369 +637729.558|221954.941|107.963 +637740.933|221950.619|109.439 +637769.054|221939.948|112.923 +637780.538|221935.641|113.331 +637786.339|221933.486|113.081 +637803.466|221927.070|113.505 +637832.400|221916.351|111.825 +637843.943|221912.086|110.926 +637849.750|221909.944|110.384 +637855.519|221907.810|109.990 +637861.277|221905.689|109.436 +637872.625|221901.473|108.991 +637878.376|221899.349|108.518 +637883.997|221897.261|108.305 +637889.691|221895.158|107.851 +637895.457|221893.039|107.144 +637901.200|221890.924|106.567 +637918.202|221884.651|105.034 +637923.904|221882.563|104.217 +637929.598|221880.475|103.455 +637935.328|221878.378|102.590 +637946.460|221874.261|101.825 +637952.144|221872.170|101.188 +637962.797|221868.168|101.703 +637968.247|221866.135|101.688 +637973.633|221864.126|101.672 +637968.369|221867.506|101.624 +637962.977|221869.524|101.691 +637952.202|221873.584|101.404 +637946.582|221875.675|101.855 +637941.001|221877.741|102.419 +637929.741|221881.917|103.486 +637924.020|221884.033|104.138 +637906.692|221890.415|106.583 +637901.179|221892.485|106.607 +637895.436|221894.612|107.214 +637889.669|221896.740|107.936 +637884.009|221898.849|108.305 +637878.337|221900.967|108.500 +637872.512|221903.116|109.262 +637866.910|221905.231|108.994 +637861.180|221907.362|109.457 +637855.385|221909.514|109.945 +637849.570|221911.669|110.530 +637843.757|221913.821|111.127 +637837.960|221915.982|111.441 +637832.163|221918.140|111.783 +637826.481|221920.264|111.953 +637803.152|221928.951|113.404 +637785.958|221935.425|113.072 +637780.097|221937.610|113.349 +637774.336|221939.781|113.240 +637745.877|221950.604|110.432 +637740.421|221952.744|108.597 +637728.637|221957.166|108.610 +637722.724|221959.379|108.728 +637716.710|221961.623|109.042 +637704.805|221966.085|109.189 +637698.742|221968.331|109.777 +637692.171|221970.657|112.642 +637686.090|221972.915|113.099 +637680.107|221975.159|113.142 +637674.120|221977.390|113.508 +637668.034|221979.661|113.788 +637661.980|221981.913|114.212 +637643.497|221988.747|116.288 +637637.337|221991.024|117.037 +637588.127|222009.299|121.003 +637582.046|222011.582|120.997 +637575.975|222013.865|120.951 +637563.831|222018.425|120.933 +637557.604|222020.754|121.116 +637551.438|222023.040|121.655 +637545.043|222025.384|122.795 +637483.285|222048.503|124.048 +637464.668|222055.483|124.197 +637458.404|222057.830|124.264 +637452.064|222060.180|124.831 +637427.144|222069.525|125.014 +637420.916|222071.863|124.987 +637408.346|222076.560|125.377 +637402.083|222078.898|125.663 +637395.627|222081.260|126.873 +637389.312|222083.595|127.605 +637382.874|222085.972|128.352 +637376.568|222088.325|128.659 +637370.207|222090.675|129.363 +637363.836|222093.046|129.754 +637357.551|222095.393|129.988 +637351.218|222097.765|130.138 +637345.128|222100.109|128.970 +637338.953|222102.498|127.477 +637326.794|222107.238|123.929 +637320.661|222109.609|122.521 +637314.425|222111.978|121.945 +637308.024|222114.364|122.222 +637301.712|222116.729|122.320 +637295.332|222119.116|122.463 +637289.041|222121.481|122.417 +637282.680|222123.865|122.466 +637276.322|222126.251|122.484 +637269.979|222128.635|122.426 +637263.542|222131.009|123.219 +637257.098|222133.384|124.139 +637250.697|222135.786|124.112 +637244.443|222138.172|123.310 +637238.146|222140.556|122.905 +637231.730|222142.955|123.075 +637225.399|222145.332|123.039 +637199.854|222154.897|123.514 +637186.811|222159.639|126.596 +637173.754|222164.397|129.485 +637167.277|222166.763|130.784 +637135.446|222178.769|129.574 +637129.039|222181.180|129.415 +637122.666|222183.600|128.839 +637116.317|222185.989|128.717 +637109.925|222188.403|128.379 +637097.215|222193.216|127.492 +637090.766|222195.658|127.132 +637084.426|222198.044|126.928 +637078.034|222200.461|126.572 +637071.655|222202.884|126.017 +637058.893|222207.728|124.919 +637052.483|222210.133|124.898 +637046.054|222212.528|125.279 +637034.094|222220.660|124.993 +637046.969|222215.829|125.328 +637053.345|222213.467|124.907 +637059.813|222211.093|123.987 +637072.523|222206.280|125.255 +637078.900|222203.860|125.971 +637085.285|222201.446|126.520 +637091.643|222199.068|126.550 +637098.020|222196.648|127.242 +637104.366|222194.265|127.477 +637117.091|222189.467|128.330 +637142.402|222179.909|130.272 +637148.702|222177.510|131.089 +637174.022|222168.027|131.448 +637193.450|222160.999|126.721 +637206.370|222156.311|123.844 +637225.460|222149.215|122.984 +637231.745|222146.868|122.938 +637238.024|222144.521|122.947 +637244.382|222142.150|122.838 +637250.643|222139.797|123.060 +637256.918|222137.419|123.752 +637263.161|222135.063|124.161 +637269.546|222132.719|123.310 +637276.005|222130.348|122.390 +637282.238|222128.016|122.408 +637288.529|222125.660|122.505 +637294.854|222123.307|122.326 +637301.157|222120.948|122.323 +637307.415|222118.613|122.231 +637313.730|222116.254|122.201 +637320.030|222113.919|121.783 +637326.258|222111.581|122.015 +637332.347|222109.241|123.313 +637338.346|222106.897|125.304 +637350.450|222102.221|128.382 +637356.460|222099.904|129.744 +637362.642|222097.588|129.851 +637368.981|222095.247|129.269 +637381.509|222090.605|128.425 +637387.806|222088.279|127.800 +637394.033|222085.978|127.294 +637400.288|222083.653|127.026 +637406.637|222081.342|125.752 +637412.952|222079.010|125.148 +637419.161|222076.703|124.895 +637425.415|222074.371|124.749 +637437.744|222069.754|124.916 +637450.122|222065.148|124.444 +637456.292|222062.853|124.185 +637462.494|222060.539|124.136 +637468.618|222058.244|124.194 +637480.953|222053.651|123.847 +637542.221|222030.785|122.993 +637554.544|222026.234|121.908 +637560.774|222023.945|121.049 +637566.818|222021.696|120.863 +637572.902|222019.422|120.823 +637621.222|222001.405|119.869 +637627.398|221999.140|118.970 +637633.551|221996.879|118.193 +637645.780|221992.374|116.836 +637658.118|221987.848|115.071 +637664.187|221985.604|114.559 +637676.236|221981.142|113.721 +637682.329|221978.890|113.172 +637688.245|221976.680|113.160 +637694.198|221974.461|113.005 +637700.726|221972.153|110.338 +637706.719|221969.925|110.057 +637712.659|221967.722|109.771 +637718.579|221965.515|109.582 +637724.522|221963.308|109.314 +637730.390|221961.110|109.387 +637736.370|221958.907|108.738 +637742.399|221956.694|107.902 +637747.775|221954.576|110.088 +637753.353|221952.451|110.911 +637770.413|221945.992|112.584 +637776.122|221943.856|112.648 +637793.438|221937.385|112.691 +637839.438|221920.246|111.679 +637856.781|221913.836|110.259 +637862.606|221911.687|109.679 +637868.342|221909.569|109.201 +637874.085|221907.447|108.713 +637879.705|221905.347|108.707 +637885.384|221903.235|108.494 +637891.071|221901.132|108.043 +637896.850|221899.010|107.284 +637902.495|221896.926|106.793 +637908.076|221894.841|106.772 +637913.715|221892.756|106.342 +637936.758|221884.316|102.913 +637953.519|221878.129|101.416 +637964.117|221874.126|102.312 +637969.652|221872.075|101.986 +637975.090|221870.051|101.782 +637972.371|221872.895|101.825 +637966.763|221874.968|102.398 +637961.691|221876.931|101.194 +637956.500|221878.918|100.389 +637950.754|221881.018|101.496 +637945.042|221883.121|102.270 +637905.056|221897.892|106.836 +637899.496|221899.980|106.796 +637893.656|221902.122|107.781 +637887.731|221904.290|108.866 +637882.223|221906.374|108.469 +637876.612|221908.481|108.469 +637870.863|221910.611|108.975 +637865.069|221912.760|109.436 +637859.247|221914.915|110.024 +637841.825|221921.377|111.533 +637836.088|221923.522|111.645 +637830.355|221925.665|111.767 +637801.433|221936.470|112.642 +637795.675|221938.638|112.471 +637789.823|221940.820|112.688 +637778.265|221945.160|112.602 +637766.731|221949.519|111.956 +637755.331|221953.865|110.554 +637749.827|221955.996|109.173 +637744.353|221958.123|107.689 +637738.330|221960.370|107.966 +637732.145|221962.625|109.222 +637726.180|221964.844|109.582 +637720.246|221967.072|109.558 +637714.217|221969.313|109.957 +637708.261|221971.541|110.070 +637695.886|221976.082|112.124 +637689.665|221978.347|113.480 +637683.770|221980.575|113.142 +637677.693|221982.831|113.642 +637671.575|221985.089|114.346 +637665.482|221987.357|114.675 +637653.293|221991.877|115.721 +637640.864|221996.452|117.424 +637622.256|222003.310|119.902 +637591.873|222014.682|120.357 +637585.743|222016.968|120.588 +637579.718|222019.242|120.323 +637573.512|222021.552|120.664 +637567.416|222023.832|120.805 +637561.256|222026.134|120.972 +637554.907|222028.456|122.146 +637548.619|222030.770|123.057 +637542.511|222033.062|123.036 +637480.721|222056.220|123.621 +637468.322|222060.856|124.042 +637462.080|222063.200|123.987 +637455.880|222065.526|124.057 +637449.620|222067.852|124.551 +637443.347|222070.196|124.752 +637437.184|222072.533|124.267 +637424.717|222077.194|124.670 +637418.402|222079.556|124.849 +637412.083|222081.897|125.480 +637405.737|222084.256|125.901 +637399.404|222086.594|126.706 +637386.703|222091.306|127.803 +637380.344|222093.662|128.467 +637374.038|222096.012|128.775 +637367.735|222098.362|129.114 +637361.374|222100.734|129.458 +637355.235|222103.081|128.598 +637349.127|222105.449|127.077 +637343.052|222107.817|125.279 +637336.977|222110.188|123.444 +637330.866|222112.560|121.871 +637324.584|222114.931|121.628 +637318.220|222117.299|122.088 +637311.908|222119.665|122.128 +637305.531|222122.054|122.231 +637299.228|222124.420|122.268 +637292.854|222126.806|122.390 +637286.502|222129.190|122.353 +637280.205|222131.552|122.387 +637273.753|222133.929|123.286 +637267.318|222136.307|124.060 +637261.049|222138.693|123.383 +637254.709|222141.104|122.795 +637248.430|222143.461|122.771 +637242.020|222145.862|122.841 +637235.683|222148.243|122.847 +637229.285|222150.642|122.862 +637222.897|222153.043|122.813 +637203.545|222160.145|126.062 +637190.451|222164.909|129.126 +637177.512|222169.652|131.436 +637152.030|222179.232|131.110 +637132.980|222186.477|129.242 +637126.631|222188.867|129.138 +637120.289|222191.299|128.068 +637113.918|222193.722|127.410 +637107.569|222196.112|127.318 +637101.071|222198.535|127.657 +637094.792|222200.949|126.504 +637088.400|222203.366|126.108 +637081.990|222205.774|126.056 +637075.629|222208.206|125.169 +637069.244|222210.626|124.721 +637062.892|222213.068|123.615 +637056.518|222215.497|122.859 +637049.980|222217.832|125.221 +637043.576|222220.240|125.185 +637037.176|222222.654|125.023 +637034.204|222227.406|124.337 +637040.726|222225.013|123.395 +637047.103|222222.590|124.203 +637053.406|222220.179|125.252 +637059.944|222217.847|122.954 +637066.311|222215.418|123.938 +637072.694|222212.998|124.596 +637079.076|222210.578|125.224 +637085.453|222208.157|125.947 +637091.817|222205.780|125.892 +637098.200|222203.366|126.477 +637104.567|222200.943|127.324 +637110.953|222198.572|126.965 +637130.006|222191.336|129.153 +637155.304|222181.774|131.177 +637180.663|222172.295|131.070 +637187.064|222169.917|130.772 +637206.355|222162.882|127.093 +637225.765|222155.838|122.758 +637232.102|222153.467|122.789 +637238.384|222151.120|122.740 +637244.726|222148.746|122.765 +637251.072|222146.374|122.755 +637257.376|222144.024|122.609 +637263.700|222141.647|122.835 +637269.863|222139.312|123.447 +637276.182|222136.935|123.734 +637282.570|222134.585|122.923 +637288.953|222132.235|122.185 +637295.238|222129.879|122.307 +637301.496|222127.544|122.188 +637307.805|222125.185|122.149 +637314.050|222122.850|122.185 +637320.381|222120.488|122.024 +637326.645|222118.150|121.951 +637332.954|222115.812|121.561 +637345.170|222111.127|123.898 +637351.215|222108.786|125.538 +637357.292|222106.446|126.907 +637363.260|222104.129|128.617 +637369.390|222101.813|129.135 +637375.715|222099.469|128.687 +637381.939|222097.170|128.126 +637388.272|222094.823|127.687 +637394.509|222092.522|127.102 +637407.082|222087.886|125.782 +637419.557|222083.250|125.230 +637425.891|222080.912|124.584 +637432.087|222078.605|124.441 +637438.290|222076.292|124.292 +637444.450|222074.003|124.051 +637450.662|222071.668|124.267 +637456.837|222069.373|123.962 +637463.037|222067.056|123.923 +637481.569|222060.165|123.231 +637487.759|222057.845|123.328 +637493.758|222055.577|123.850 +637518.303|222046.412|123.609 +637530.559|222041.840|123.365 +637536.680|222039.554|123.313 +637542.821|222037.265|123.173 +637548.911|222034.997|122.993 +637561.268|222030.437|121.777 +637567.519|222028.148|120.820 +637573.625|222025.871|120.680 +637579.693|222023.616|120.421 +637585.829|222021.336|120.146 +637591.821|222019.087|120.320 +637622.024|222007.830|119.637 +637652.638|221996.547|116.373 +637658.780|221994.294|115.477 +637676.958|221987.552|114.419 +637683.167|221985.281|113.343 +637689.095|221983.068|113.264 +637694.960|221980.865|113.505 +637701.272|221978.579|112.060 +637707.383|221976.347|110.969 +637713.385|221974.132|110.402 +637719.377|221971.903|110.170 +637731.283|221967.481|109.564 +637737.367|221965.247|108.741 +637743.505|221963.015|107.442 +637749.330|221960.824|107.771 +637754.853|221958.693|109.088 +637760.342|221956.569|110.551 +637788.844|221945.822|112.325 +637794.617|221943.661|112.432 +637800.415|221941.503|112.209 +637806.187|221939.339|112.350 +637811.784|221937.226|112.682 +637817.557|221935.074|112.612 +637834.854|221928.631|112.069 +637840.670|221926.476|111.661 +637846.418|221924.345|111.274 +637852.167|221922.215|110.917 +637857.933|221920.066|110.752 +637869.562|221915.784|109.408 +637875.362|221913.638|108.954 +637881.101|221911.513|108.491 +637886.789|221909.410|108.009 +637892.522|221907.286|107.616 +637898.262|221905.161|107.229 +637903.797|221903.086|107.354 +637909.497|221900.976|106.912 +637920.796|221896.798|105.976 +637938.175|221890.446|103.010 +637949.428|221886.285|102.002 +637954.955|221884.237|101.651 +637965.897|221880.149|101.590 +637971.240|221878.135|101.901 +637976.693|221876.111|101.639 +637970.624|221880.701|101.752 +637965.519|221882.670|100.660 +637954.378|221886.803|101.663 +637948.828|221888.864|102.123 +637943.171|221890.955|102.751 +637920.223|221899.413|105.918 +637914.419|221901.549|106.705 +637908.881|221903.622|106.823 +637903.263|221905.722|107.006 +637897.637|221907.822|107.229 +637891.907|221909.956|107.616 +637886.240|221912.062|108.034 +637880.431|221914.217|108.512 +637874.691|221916.347|108.997 +637868.839|221918.512|109.686 +637863.094|221920.639|110.243 +637839.926|221929.262|111.679 +637811.119|221940.046|112.313 +637805.502|221942.176|111.825 +637799.692|221944.343|112.115 +637787.942|221948.736|112.508 +637782.151|221950.906|112.526 +637765.210|221957.371|110.380 +637759.571|221959.529|109.573 +637754.009|221961.687|108.177 +637748.324|221963.866|107.296 +637742.295|221966.100|107.881 +637736.160|221968.350|108.936 +637730.091|221970.599|109.469 +637723.974|221972.858|110.237 +637718.088|221975.064|110.320 +637711.949|221977.335|110.950 +637705.884|221979.578|111.578 +637699.626|221981.867|112.810 +637693.527|221984.129|113.358 +637687.580|221986.366|113.261 +637681.509|221988.622|113.730 +637657.140|221997.684|115.428 +637644.643|222002.256|117.751 +637638.389|222004.557|118.711 +637632.223|222006.843|119.275 +637626.160|222009.114|119.354 +637620.015|222011.396|119.875 +637595.646|222020.525|120.189 +637589.575|222022.808|120.146 +637583.427|222025.113|120.183 +637577.291|222027.399|120.506 +637571.131|222029.688|120.969 +637564.852|222032.019|121.451 +637540.042|222041.255|122.984 +637533.915|222043.550|123.106 +637527.688|222045.885|123.100 +637521.586|222048.174|123.130 +637515.335|222050.509|123.301 +637502.899|222055.151|123.712 +637496.806|222057.452|123.389 +637490.588|222059.799|123.112 +637484.431|222062.103|123.213 +637478.152|222064.453|123.322 +637465.689|222069.101|123.798 +637459.495|222071.424|123.850 +637446.989|222076.106|123.956 +637440.725|222078.447|124.133 +637434.523|222080.766|124.313 +637428.195|222083.125|124.554 +637421.867|222085.466|125.209 +637409.349|222090.157|125.285 +637402.930|222092.516|126.255 +637396.575|222094.872|126.821 +637390.214|222097.225|127.452 +637377.531|222101.925|128.559 +637365.022|222106.641|128.092 +637358.963|222109.009|126.181 +637352.845|222111.377|124.703 +637346.588|222113.745|124.276 +637340.644|222116.117|121.399 +637334.292|222118.485|121.704 +637327.873|222120.875|122.082 +637321.615|222123.216|122.158 +637315.263|222125.605|122.042 +637308.902|222127.992|122.012 +637302.590|222130.354|122.121 +637296.241|222132.738|122.042 +637289.892|222135.097|122.499 +637283.445|222137.474|123.319 +637277.072|222139.855|123.554 +637270.793|222142.238|122.938 +637264.444|222144.646|122.390 +637258.129|222146.999|122.685 +637251.795|222149.380|122.643 +637245.391|222151.779|122.652 +637239.051|222154.156|122.676 +637232.656|222156.555|122.664 +637226.256|222158.920|123.377 +637187.372|222173.145|130.552 +637161.787|222182.701|131.393 +637155.444|222185.087|131.189 +637142.685|222189.924|130.189 +637136.388|222192.323|129.391 +637123.684|222197.179|127.568 +637110.953|222201.985|126.965 +637098.166|222206.813|126.288 +637091.777|222209.230|125.910 +637085.435|222211.617|125.700 +637079.058|222214.040|125.084 +637072.663|222216.454|124.776 +637066.287|222218.877|124.133 +637059.929|222221.313|123.097 +637053.409|222223.657|125.182 +637047.060|222226.098|123.978 +637040.687|222228.524|123.246 +637034.280|222230.932|123.161 +637035.054|222234.258|123.048 +637041.455|222231.844|123.325 +637047.837|222229.417|124.066 +637054.150|222227.009|124.910 +637060.624|222224.641|123.776 +637067.031|222222.230|123.999 +637073.416|222219.810|124.578 +637079.741|222217.408|125.197 +637086.111|222214.982|126.020 +637092.454|222212.595|126.233 +637111.605|222205.384|126.986 +637136.998|222195.746|129.488 +637143.252|222193.375|130.116 +637149.626|222190.955|130.750 +637155.959|222188.562|131.116 +637162.238|222186.197|131.412 +637168.612|222183.813|131.332 +637175.000|222181.433|131.073 +637187.753|222176.696|130.232 +637206.696|222169.600|130.266 +637213.036|222167.238|130.031 +637226.134|222162.562|125.386 +637232.669|222160.215|123.368 +637239.018|222157.871|122.643 +637245.363|222155.497|122.603 +637251.709|222153.120|122.594 +637264.282|222148.410|122.588 +637270.589|222146.057|122.423 +637276.852|222143.698|122.688 +637283.076|222141.336|123.310 +637289.383|222138.977|123.219 +637295.759|222136.624|122.527 +637302.062|222134.289|121.993 +637308.424|222131.902|122.045 +637314.675|222129.565|121.978 +637327.239|222124.862|121.978 +637333.503|222122.521|121.899 +637339.788|222120.180|121.686 +637346.079|222117.836|121.433 +637358.192|222113.169|124.090 +637364.217|222110.826|125.852 +637370.182|222108.506|127.593 +637382.573|222103.839|128.160 +637388.864|222101.514|127.562 +637395.149|222099.188|127.047 +637401.418|222096.881|126.264 +637407.725|222094.549|125.657 +637413.997|222092.239|124.913 +637420.313|222089.904|124.331 +637426.391|222087.597|124.935 +637432.587|222085.286|124.779 +637438.860|222082.970|124.154 +637445.060|222080.653|124.023 +637457.401|222076.045|123.828 +637463.537|222073.750|123.780 +637469.739|222071.433|123.725 +637475.927|222069.132|123.402 +637482.105|222066.831|123.164 +637494.383|222062.231|123.240 +637500.573|222059.924|122.987 +637506.629|222057.647|123.194 +637512.756|222055.346|123.365 +637518.764|222053.090|123.527 +637524.954|222050.780|123.368 +637531.068|222048.494|123.331 +637537.109|222046.232|123.347 +637543.233|222043.943|123.301 +637567.846|222034.811|121.640 +637580.160|222030.261|120.454 +637586.228|222028.002|120.192 +637598.280|222023.491|120.183 +637604.278|222021.239|120.338 +637622.435|222014.481|119.515 +637628.406|222012.244|119.585 +637646.752|222005.462|117.839 +637659.127|222000.945|115.553 +637683.295|221991.972|114.044 +637689.342|221989.740|113.413 +637695.264|221987.512|113.657 +637701.162|221985.299|113.739 +637707.472|221983.023|112.042 +637713.409|221980.816|111.712 +637719.487|221978.573|111.097 +637725.507|221976.351|110.460 +637731.545|221974.122|109.789 +637737.586|221971.894|109.125 +637743.566|221969.675|108.753 +637755.527|221965.259|107.528 +637761.190|221963.104|108.268 +637766.582|221960.992|110.140 +637783.641|221954.548|111.362 +637794.959|221950.263|112.456 +637806.675|221945.913|111.783 +637818.026|221941.652|112.109 +637823.893|221939.479|111.673 +637829.474|221937.370|112.109 +637835.223|221935.230|111.929 +637852.426|221928.823|111.408 +637864.029|221924.525|110.573 +637881.418|221918.115|108.722 +637887.164|221915.988|108.253 +637892.903|221913.863|107.829 +637898.661|221911.733|107.354 +637904.342|221909.630|106.958 +637909.984|221907.533|106.711 +637915.577|221905.442|106.653 +637921.265|221903.345|106.049 +637926.983|221901.242|105.363 +637961.191|221888.656|101.191 +637966.912|221886.565|100.206 +637977.437|221882.573|101.386 +637982.792|221880.555|101.681 +637979.256|221884.005|101.416 +637973.773|221886.059|101.584 +637968.844|221887.998|99.886 +637963.041|221890.116|101.160 +637957.314|221892.229|101.971 +637946.112|221896.386|103.041 +637923.161|221904.856|106.183 +637917.595|221906.938|106.372 +637911.999|221909.038|106.449 +637906.318|221911.154|106.848 +637900.560|221913.296|107.308 +637894.884|221915.409|107.729 +637889.139|221917.545|108.192 +637883.326|221919.694|108.914 +637865.965|221926.144|110.478 +637854.450|221930.432|111.252 +637837.271|221936.867|111.722 +637808.544|221947.672|111.591 +637796.979|221952.012|111.694 +637779.904|221958.504|110.252 +637768.368|221962.872|109.625 +637762.915|221965.003|108.018 +637757.203|221967.191|107.241 +637751.262|221969.413|107.415 +637733.005|221976.162|109.673 +637726.884|221978.423|110.457 +637720.834|221980.660|111.234 +637714.763|221982.910|111.856 +637702.467|221987.461|113.300 +637690.482|221991.956|113.471 +637684.407|221994.215|113.959 +637678.174|221996.495|115.196 +637666.016|222001.021|116.077 +637659.978|222003.298|115.913 +637647.527|222007.873|118.028 +637635.124|222012.463|119.439 +637623.018|222017.011|119.531 +637616.867|222019.294|120.085 +637604.723|222023.854|120.189 +637598.673|222026.137|120.006 +637586.432|222030.733|120.079 +637580.251|222033.046|120.314 +637567.730|222037.682|121.670 +637542.928|222046.930|123.133 +637536.732|222049.253|123.289 +637530.553|222051.569|123.365 +637524.369|222053.889|123.514 +637518.212|222056.202|123.527 +637512.098|222058.528|122.960 +637505.950|222060.841|122.960 +637499.698|222063.176|123.213 +637474.830|222072.521|123.322 +637462.342|222077.197|123.642 +637456.087|222079.547|123.716 +637449.894|222081.869|123.798 +637443.639|222084.213|123.926 +637437.150|222086.591|125.176 +637430.978|222088.929|124.816 +637418.548|222093.629|124.304 +637412.211|222095.970|125.078 +637405.783|222098.356|125.712 +637399.495|222100.691|126.242 +637393.134|222103.050|126.885 +637386.712|222105.431|127.571 +637374.203|222110.158|127.062 +637368.186|222112.508|125.294 +637362.087|222114.882|123.688 +637349.785|222119.631|121.164 +637343.409|222122.006|121.646 +637337.087|222124.377|121.710 +637330.699|222126.773|121.871 +637324.395|222129.141|121.835 +637318.007|222131.534|122.021 +637311.716|222133.902|121.945 +637305.342|222136.292|122.054 +637298.972|222138.654|122.697 +637292.553|222141.040|123.274 +637286.249|222143.430|122.877 +637279.958|222145.820|122.362 +637273.603|222148.203|122.445 +637267.251|222150.587|122.502 +637260.917|222152.973|122.448 +637254.514|222155.378|122.460 +637248.180|222157.762|122.417 +637241.767|222160.164|122.582 +637235.262|222162.523|124.316 +637228.691|222164.897|126.178 +637222.116|222167.272|128.163 +637215.627|222169.618|129.970 +637209.254|222172.014|129.967 +637202.847|222174.437|129.708 +637196.516|222176.803|129.943 +637183.617|222181.591|131.162 +637170.885|222186.370|131.296 +637158.117|222191.174|131.174 +637151.784|222193.570|130.903 +637139.110|222198.398|129.616 +637120.051|222205.649|127.913 +637113.687|222208.078|127.172 +637100.915|222212.918|126.343 +637094.573|222215.311|126.209 +637088.169|222217.725|126.075 +637081.780|222220.142|125.718 +637075.407|222222.572|125.041 +637069.012|222224.992|124.749 +637062.602|222227.400|124.770 +637056.162|222229.789|125.364 +637049.837|222232.246|123.712 +637043.436|222234.660|123.520 +637037.041|222237.080|123.194 +637034.466|222241.463|123.045 +637040.867|222239.052|123.395 +637047.271|222236.641|123.691 +637053.662|222234.224|124.237 +637059.993|222231.773|125.922 +637066.464|222229.402|124.910 +637072.798|222227.012|125.346 +637079.186|222224.598|125.880 +637091.945|222219.810|126.212 +637098.352|222217.402|126.459 +637104.747|222214.988|126.879 +637130.137|222205.408|128.635 +637149.141|222198.203|130.622 +637155.475|222195.813|131.012 +637161.815|222193.426|131.326 +637168.200|222191.052|131.095 +637174.494|222188.690|131.278 +637180.865|222186.306|131.247 +637199.988|222179.226|129.879 +637206.306|222176.864|129.888 +637212.689|222174.477|129.851 +637219.004|222172.112|129.921 +637225.359|222169.783|128.989 +637231.907|222167.415|127.355 +637238.329|222165.089|125.852 +637244.912|222162.748|123.435 +637251.304|222160.410|122.380 +637257.656|222158.039|122.338 +637264.008|222155.665|122.329 +637270.235|222153.336|122.341 +637276.584|222150.959|122.374 +637282.900|222148.606|122.207 +637289.182|222146.249|122.326 +637295.485|222143.869|122.832 +637301.718|222141.534|122.886 +637308.094|222139.181|122.298 +637314.471|222136.825|121.719 +637320.768|222134.466|121.814 +637327.026|222132.125|121.768 +637333.341|222129.763|121.756 +637339.593|222127.422|121.811 +637345.878|222125.078|121.609 +637352.227|222122.713|121.396 +637358.463|222120.390|121.164 +637376.437|222113.383|126.809 +637382.609|222111.039|127.486 +637395.142|222106.388|126.669 +637401.434|222104.059|126.154 +637407.743|222101.730|125.514 +637414.025|222099.420|124.697 +637420.337|222097.085|124.118 +637426.641|222094.772|123.234 +637432.892|222092.437|123.136 +637438.891|222090.133|124.298 +637445.136|222087.819|123.862 +637451.336|222085.503|123.752 +637457.535|222083.186|123.670 +637482.261|222073.957|123.228 +637506.913|222064.731|123.203 +637513.015|222062.451|123.167 +637519.105|222060.152|123.557 +637525.277|222057.845|123.499 +637531.394|222055.559|123.426 +637537.521|222053.273|123.316 +637574.545|222039.545|120.750 +637580.681|222037.265|120.436 +637586.749|222035.006|120.168 +637592.894|222032.720|119.866 +637598.957|222030.462|119.683 +637604.940|222028.212|119.918 +637610.929|222025.960|120.137 +637616.973|222023.713|119.787 +637623.039|222021.452|119.674 +637647.353|222012.421|118.269 +637671.804|222003.399|115.745 +637677.623|222001.189|116.385 +637683.901|221998.924|114.660 +637690.168|221996.632|113.602 +637696.081|221994.419|113.602 +637701.982|221992.209|113.666 +637720.209|221985.485|111.682 +637726.241|221983.263|110.993 +637738.287|221978.816|109.774 +637744.322|221976.588|109.152 +637762.327|221969.944|107.336 +637768.033|221967.780|107.909 +637773.616|221965.634|109.000 +637779.280|221963.491|109.515 +637784.888|221961.354|110.246 +637801.957|221954.899|111.551 +637807.583|221952.780|111.758 +637813.509|221950.586|111.304 +637819.303|221948.425|111.139 +637824.951|221946.300|111.307 +637830.572|221944.182|111.588 +637836.314|221942.027|111.673 +637853.541|221935.596|111.289 +637859.238|221933.471|111.130 +637864.950|221931.344|110.929 +637876.478|221927.064|110.210 +637893.827|221920.660|108.366 +637899.569|221918.542|107.707 +637905.339|221916.408|107.208 +637911.018|221914.302|106.827 +637916.711|221912.190|106.415 +637922.393|221910.081|106.058 +637927.995|221907.999|105.775 +637933.527|221905.929|105.757 +637939.157|221903.838|105.409 +637967.381|221893.420|102.383 +637972.956|221891.360|101.907 +637983.984|221887.254|101.401 +637988.166|221887.190|102.209 +637982.960|221889.178|101.657 +637977.418|221891.241|102.005 +637966.208|221895.399|103.202 +637938.123|221905.844|105.406 +637932.567|221907.929|105.522 +637926.904|221910.044|105.787 +637921.274|221912.141|106.193 +637915.580|221914.260|106.610 +637909.908|221916.375|106.973 +637904.150|221918.518|107.433 +637898.350|221920.663|108.064 +637875.213|221929.250|110.359 +637869.449|221931.395|110.734 +637863.679|221933.544|111.152 +637857.940|221935.696|111.231 +637852.212|221937.848|111.292 +637840.785|221942.128|111.597 +637835.025|221944.295|111.597 +637829.352|221946.443|111.258 +637823.753|221948.565|110.908 +637817.959|221950.735|111.085 +637812.027|221952.942|111.563 +637806.258|221955.118|111.429 +637800.524|221957.285|111.170 +637783.471|221963.774|109.612 +637777.884|221965.914|108.792 +637772.202|221968.084|108.128 +637766.475|221970.276|107.381 +637760.726|221972.467|106.732 +637754.612|221974.708|107.915 +637748.553|221976.951|108.616 +637742.414|221979.219|109.405 +637724.193|221985.967|111.408 +637699.843|221995.001|113.788 +637693.914|221997.242|113.593 +637687.745|221999.528|114.218 +637681.594|222001.795|115.071 +637669.338|222006.352|116.092 +637663.175|222008.632|116.818 +637638.514|222017.773|119.415 +637620.341|222024.591|119.640 +637614.245|222026.868|119.951 +637608.107|222029.179|119.866 +637602.148|222031.437|119.525 +637596.024|222033.729|119.723 +637589.840|222036.043|119.936 +637583.695|222038.335|120.299 +637577.511|222040.645|120.555 +637571.357|222042.953|120.680 +637540.121|222054.568|123.188 +637533.903|222056.891|123.490 +637527.749|222059.208|123.463 +637515.435|222063.853|123.136 +637509.275|222066.166|123.197 +637484.406|222075.520|123.176 +637471.974|222080.181|123.469 +637465.676|222082.531|123.770 +637459.468|222084.878|123.548 +637453.198|222087.228|123.725 +637446.959|222089.572|123.743 +637440.628|222091.922|124.365 +637434.639|222094.253|122.789 +637428.299|222096.622|123.112 +637421.959|222098.966|123.856 +637415.592|222101.331|124.426 +637409.185|222103.696|125.319 +637390.055|222110.798|127.117 +637383.874|222113.154|126.535 +637377.860|222115.504|124.721 +637371.725|222117.903|122.914 +637359.395|222122.633|121.009 +637352.998|222125.011|121.600 +637346.612|222127.407|121.673 +637340.300|222129.781|121.652 +637333.987|222132.155|121.673 +637327.614|222134.548|121.704 +637321.253|222136.944|121.664 +637314.901|222139.312|122.070 +637308.482|222141.699|122.560 +637302.099|222144.088|122.798 +637295.793|222146.481|122.371 +637289.480|222148.874|122.030 +637283.101|222151.257|122.262 +637276.697|222153.668|122.237 +637270.409|222156.030|122.265 +637264.002|222158.438|122.283 +637257.659|222160.825|122.286 +637251.188|222163.224|122.984 +637244.620|222165.607|124.691 +637238.082|222167.960|126.770 +637225.045|222172.724|129.525 +637218.629|222175.114|129.958 +637212.262|222177.513|129.854 +637205.898|222179.912|129.772 +637199.521|222182.307|129.818 +637193.121|222184.694|130.196 +637180.243|222189.485|131.223 +637173.879|222191.878|131.238 +637167.508|222194.265|131.369 +637161.104|222196.682|131.214 +637154.704|222199.099|130.988 +637148.324|222201.522|130.503 +637129.256|222208.773|128.897 +637122.870|222211.196|128.480 +637103.729|222218.469|126.965 +637097.389|222220.862|126.757 +637084.587|222225.693|126.447 +637078.196|222228.113|126.123 +637071.795|222230.527|125.934 +637065.443|222232.968|124.889 +637058.972|222235.343|126.084 +637052.608|222237.842|123.962 +637046.213|222240.262|123.642 +637039.800|222242.670|123.740 +637033.420|222245.105|123.045 +637034.850|222247.952|123.112 +637041.232|222245.526|123.807 +637047.648|222243.130|123.740 +637053.985|222240.741|124.100 +637060.282|222238.266|126.410 +637073.099|222233.462|126.578 +637079.512|222231.060|126.611 +637092.250|222226.266|127.117 +637098.666|222223.867|127.108 +637124.123|222214.266|128.544 +637130.435|222211.873|129.178 +637136.772|222209.483|129.488 +637143.097|222207.094|129.982 +637149.412|222204.701|130.580 +637155.798|222202.287|131.055 +637162.080|222199.925|131.284 +637174.811|222195.161|131.232 +637181.142|222192.808|130.927 +637193.904|222188.080|129.952 +637200.229|222185.718|129.802 +637206.553|222183.359|129.693 +637212.860|222180.991|129.812 +637219.227|222178.604|129.943 +637231.836|222173.898|129.650 +637238.316|222171.551|128.077 +637251.316|222166.851|124.746 +637257.781|222164.522|122.966 +637264.142|222162.178|122.231 +637270.497|222159.804|122.146 +637276.788|222157.451|122.140 +637283.137|222155.073|122.155 +637289.368|222152.739|122.173 +637295.683|222150.386|122.006 +637301.968|222148.026|122.118 +637308.219|222145.667|122.539 +637314.529|222143.308|122.493 +637320.835|222140.973|121.972 +637327.190|222138.614|121.591 +637339.754|222133.914|121.576 +637345.945|222131.598|121.615 +637352.199|222129.257|121.631 +637358.475|222126.916|121.515 +637364.793|222124.572|121.103 +637371.094|222122.228|120.875 +637377.110|222119.909|122.262 +637395.185|222112.926|126.666 +637401.440|222110.624|125.934 +637407.850|222108.271|125.017 +637414.040|222105.967|124.782 +637420.322|222103.638|124.389 +637426.647|222101.325|123.310 +637439.104|222096.704|122.576 +637463.695|222087.463|123.417 +637469.898|222085.149|123.338 +637476.034|222082.854|123.298 +637482.218|222080.537|123.362 +637488.381|222078.239|123.216 +637519.044|222066.767|123.271 +637525.213|222064.465|123.213 +637537.436|222059.899|123.106 +637543.526|222057.616|123.200 +637568.242|222048.472|121.195 +637580.440|222043.940|120.543 +637592.656|222039.405|119.893 +637598.795|222037.122|119.607 +637604.839|222034.866|119.515 +637616.818|222030.383|119.622 +637665.324|222012.366|117.110 +637677.461|222007.867|116.300 +637689.705|222003.359|114.831 +637695.862|222001.116|113.694 +637701.763|221998.906|113.739 +637707.743|221996.669|113.724 +637719.828|221992.215|112.392 +637743.901|221983.324|110.179 +637756.124|221978.859|108.040 +637762.193|221976.637|107.073 +637768.118|221974.439|106.723 +637779.484|221970.136|107.808 +637785.107|221967.984|108.747 +637790.740|221965.844|109.399 +637796.473|221963.686|109.658 +637813.390|221957.285|111.133 +637819.114|221955.139|111.234 +637824.985|221952.966|110.783 +637836.390|221948.690|110.972 +637847.613|221944.456|111.685 +637853.450|221942.298|111.216 +637870.534|221935.916|111.018 +637905.135|221923.117|108.149 +637910.871|221921.002|107.546 +637916.586|221918.902|106.802 +637922.271|221916.792|106.430 +637927.913|221914.705|105.991 +637933.585|221912.598|105.705 +637939.236|221910.504|105.275 +637944.860|221908.417|104.964 +637950.416|221906.353|104.675 +637955.936|221904.296|104.537 +637961.383|221902.253|104.662 +637966.881|221900.211|104.397 +637974.751|221898.712|103.998 +637969.201|221900.778|104.431 +637963.715|221902.842|104.452 +637958.252|221904.899|104.397 +637952.751|221906.963|104.498 +637947.142|221909.060|104.766 +637941.516|221911.160|105.107 +637935.898|221913.257|105.437 +637930.217|221915.375|105.778 +637924.517|221917.500|106.205 +637918.805|221919.624|106.702 +637912.987|221921.779|107.366 +637907.241|221923.907|108.027 +637895.561|221928.219|109.631 +637889.837|221930.353|110.051 +637884.085|221932.499|110.344 +637872.631|221936.784|110.829 +637849.719|221945.380|111.319 +637844.059|221947.516|111.164 +637826.993|221953.963|110.637 +637821.107|221956.164|110.923 +637792.578|221966.987|109.070 +637786.887|221969.160|108.427 +637781.218|221971.330|107.692 +637769.691|221975.713|106.775 +637763.774|221977.935|106.842 +637757.666|221980.188|107.729 +637721.072|221993.733|112.103 +637708.822|221998.263|113.654 +637702.836|222000.512|113.718 +637696.868|222002.755|113.709 +637690.674|222005.032|114.745 +637666.226|222014.124|116.858 +637660.093|222016.401|117.470 +637653.970|222018.672|118.068 +637641.665|222023.238|119.332 +637617.360|222032.373|119.488 +637611.249|222034.665|119.589 +637605.217|222036.948|119.320 +637599.100|222039.240|119.494 +637592.882|222041.560|119.884 +637580.553|222046.165|120.527 +637574.384|222048.472|120.753 +637568.199|222050.783|121.091 +637543.242|222060.064|123.182 +637537.094|222062.380|123.097 +637530.916|222064.697|123.197 +637524.704|222067.035|123.152 +637518.568|222069.345|123.060 +637487.582|222080.989|123.231 +637481.413|222083.314|123.082 +637475.144|222085.667|123.188 +637468.944|222087.993|123.264 +637462.689|222090.343|123.341 +637456.350|222092.675|124.343 +637437.866|222099.716|122.524 +637425.132|222104.431|123.975 +637418.880|222106.769|124.191 +637412.440|222109.155|124.868 +637406.115|222111.517|125.209 +637399.727|222113.877|126.041 +637393.518|222116.233|125.633 +637387.468|222118.586|124.090 +637381.320|222120.960|122.795 +637368.902|222125.715|121.088 +637362.605|222128.068|121.366 +637356.253|222130.446|121.615 +637349.892|222132.841|121.500 +637343.643|222135.191|121.472 +637330.961|222139.958|121.497 +637324.548|222142.351|121.868 +637311.831|222147.109|122.323 +637299.161|222151.891|121.966 +637292.797|222154.278|122.073 +637286.448|222156.668|122.060 +637280.156|222159.030|122.094 +637273.756|222161.441|122.033 +637267.398|222163.824|122.167 +637260.878|222166.217|123.313 +637254.346|222168.579|125.191 +637247.838|222170.938|126.922 +637234.790|222175.702|129.741 +637215.658|222182.893|129.778 +637209.278|222185.288|129.869 +637202.929|222187.687|129.623 +637183.644|222194.865|131.089 +637177.207|222197.276|131.265 +637164.430|222202.080|131.278 +637158.026|222204.497|131.092 +637151.631|222206.914|130.811 +637145.328|222209.319|130.125 +637138.942|222211.739|129.754 +637132.548|222214.156|129.455 +637119.831|222218.972|128.748 +637107.078|222223.821|127.660 +637081.481|222233.480|127.004 +637075.081|222235.891|126.895 +637068.695|222238.314|126.480 +637062.270|222240.713|126.828 +637055.957|222243.182|124.904 +637049.599|222245.624|123.828 +637043.147|222248.068|123.481 +637036.752|222250.488|123.161 +637035.249|222254.463|123.112 +637041.589|222252.070|123.438 +637048.051|222249.635|123.697 +637054.406|222247.193|124.923 +637060.685|222244.764|126.431 +637067.067|222242.347|126.937 +637073.477|222239.942|127.001 +637079.869|222237.528|127.337 +637086.291|222235.129|127.175 +637092.695|222232.721|127.346 +637099.029|222230.332|127.696 +637111.821|222225.507|128.288 +637118.143|222223.111|128.806 +637124.522|222220.694|129.339 +637130.923|222218.283|129.610 +637137.269|222215.896|129.766 +637143.673|222213.488|129.952 +637149.985|222211.090|130.598 +637156.322|222208.700|130.903 +637162.659|222206.310|131.195 +637181.758|222199.157|131.092 +637188.140|222196.776|130.909 +637194.474|222194.417|130.625 +637207.254|222189.680|129.537 +637213.554|222187.312|129.702 +637219.855|222184.941|129.891 +637226.295|222182.560|129.248 +637232.611|222180.219|128.696 +637238.993|222177.857|128.108 +637245.342|222175.489|127.879 +637251.645|222173.145|127.568 +637258.159|222170.792|125.819 +637264.645|222168.460|123.810 +637271.171|222166.098|122.115 +637277.471|222163.745|121.999 +637283.759|222161.386|122.024 +637290.111|222159.005|122.033 +637296.415|222156.646|121.966 +637302.712|222154.287|121.954 +637308.972|222151.949|121.774 +637315.248|222149.587|121.996 +637321.527|222147.225|122.201 +637327.879|222144.863|121.835 +637334.182|222142.522|121.387 +637340.425|222140.178|121.448 +637346.740|222137.809|121.442 +637353.007|222135.466|121.384 +637359.261|222133.119|121.411 +637365.534|222130.772|121.338 +637371.810|222128.425|121.244 +637378.110|222126.096|120.549 +637384.289|222123.746|121.228 +637396.212|222119.098|124.804 +637402.333|222116.772|125.450 +637408.602|222114.440|125.057 +637414.909|222112.109|124.447 +637421.151|222109.795|123.892 +637427.467|222107.461|123.289 +637433.764|222105.141|122.420 +637452.369|222098.173|122.320 +637464.588|222093.546|123.249 +637470.724|222091.248|123.173 +637476.930|222088.929|123.088 +637483.068|222086.630|123.048 +637489.277|222084.305|122.960 +637495.391|222082.007|123.121 +637526.097|222070.503|122.984 +637532.236|222068.196|123.103 +637538.341|222065.907|123.082 +637556.669|222059.040|123.063 +637569.214|222054.437|121.085 +637575.319|222052.157|120.869 +637581.427|222049.881|120.661 +637593.668|222045.330|119.863 +637605.891|222040.779|119.259 +637611.834|222038.530|119.683 +637617.924|222036.262|119.387 +637623.853|222034.031|119.613 +637648.093|222024.988|118.711 +637654.199|222022.726|118.183 +637660.270|222020.467|117.830 +637690.665|222009.208|115.151 +637696.892|222006.919|114.251 +637702.878|222004.694|113.901 +637708.868|222002.451|113.840 +637714.805|222000.232|113.749 +637726.967|221995.742|112.374 +637763.445|221982.319|107.339 +637769.471|221980.100|106.570 +637786.711|221973.589|107.546 +637792.493|221971.407|107.845 +637798.043|221969.279|108.829 +637820.714|221960.705|110.454 +637826.353|221958.572|110.880 +637832.138|221956.423|110.505 +637837.887|221954.268|110.530 +637843.583|221952.122|110.783 +637849.192|221950.001|111.130 +637854.885|221947.867|111.173 +637871.982|221941.466|111.106 +637883.390|221937.220|110.551 +637889.093|221935.090|110.426 +637906.516|221928.668|108.329 +637912.279|221926.534|107.835 +637917.982|221924.422|107.348 +637923.670|221922.312|106.933 +637929.363|221920.200|106.516 +637935.072|221918.094|105.839 +637940.723|221916.000|105.394 +637946.365|221913.906|104.995 +637951.980|221911.818|104.708 +637957.515|221909.755|104.495 +637963.044|221907.691|104.309 +637968.567|221905.631|104.172 +637974.002|221903.598|104.117 +637979.393|221901.571|104.233 +637984.758|221899.553|104.446 +637988.409|221899.894|104.303 +637983.033|221901.924|104.126 +637977.659|221903.951|103.952 +637972.231|221905.990|103.974 +637966.723|221908.057|104.068 +637961.182|221910.126|104.278 +637955.610|221912.214|104.394 +637949.989|221914.311|104.702 +637944.366|221916.408|105.025 +637938.700|221918.512|105.525 +637932.884|221920.654|106.345 +637927.245|221922.764|106.558 +637921.579|221924.876|106.900 +637915.885|221926.991|107.345 +637910.176|221929.122|107.640 +637904.419|221931.261|108.131 +637886.874|221937.748|110.256 +637881.178|221939.869|110.612 +637875.399|221942.030|110.819 +637858.211|221948.467|111.222 +637852.624|221950.589|110.777 +637846.854|221952.756|110.798 +637841.200|221954.902|110.384 +637835.436|221957.066|110.411 +637829.611|221959.239|110.691 +637823.893|221961.394|110.576 +637818.139|221963.564|110.365 +637812.549|221965.707|109.524 +637795.452|221972.217|107.842 +637789.829|221974.363|107.165 +637772.315|221980.974|106.540 +637766.292|221983.212|107.052 +637760.111|221985.473|108.256 +637723.437|221999.031|112.721 +637717.225|222001.314|113.727 +637711.303|222003.536|113.758 +637705.308|222005.782|113.867 +637699.266|222008.050|113.913 +637693.119|222010.321|114.745 +637668.600|222019.425|116.879 +637656.293|222023.991|118.055 +637650.108|222026.283|118.671 +637643.979|222028.551|119.369 +637619.634|222037.695|119.387 +637613.590|222039.962|119.488 +637607.500|222042.267|119.183 +637582.796|222051.475|120.607 +637576.642|222053.779|120.756 +637570.494|222056.083|120.884 +637539.301|222067.699|123.045 +637533.132|222070.016|123.094 +637483.577|222088.654|122.932 +637477.317|222091.004|122.987 +637471.114|222093.333|123.091 +637464.829|222095.683|123.347 +637458.617|222098.006|123.539 +637440.131|222105.050|121.719 +637433.767|222107.396|122.609 +637427.381|222109.765|123.274 +637421.051|222112.109|124.011 +637402.129|222119.211|124.234 +637395.853|222121.567|124.285 +637389.955|222123.917|121.622 +637383.749|222126.297|120.735 +637377.452|222128.653|120.948 +637371.094|222131.031|121.207 +637364.754|222133.408|121.341 +637358.435|222135.783|121.347 +637352.114|222138.157|121.390 +637345.789|222140.531|121.481 +637339.431|222142.927|121.375 +637333.094|222145.295|121.603 +637326.748|222147.664|121.939 +637320.393|222150.056|121.893 +637307.662|222154.839|121.999 +637301.377|222157.204|121.923 +637295.022|222159.594|121.945 +637288.660|222161.980|122.042 +637282.333|222164.370|121.868 +637275.975|222166.753|121.978 +637269.455|222169.122|123.627 +637262.853|222171.505|125.560 +637256.321|222173.864|127.510 +637243.583|222178.641|127.757 +637237.231|222181.015|128.041 +637230.754|222183.399|129.037 +637224.347|222185.791|129.373 +637217.944|222188.184|129.659 +637211.552|222190.577|129.882 +637205.230|222192.981|129.324 +637198.845|222195.371|129.522 +637192.307|222197.767|130.799 +637185.936|222200.156|130.881 +637179.554|222202.543|131.150 +637166.761|222207.344|131.317 +637160.370|222209.764|130.994 +637147.629|222214.574|130.631 +637141.259|222217.000|130.007 +637134.855|222219.414|129.879 +637128.457|222221.828|129.696 +637122.066|222224.245|129.397 +637115.753|222226.647|128.812 +637109.355|222229.064|128.611 +637096.630|222233.874|128.099 +637083.776|222238.726|127.715 +637077.458|222241.125|127.230 +637070.981|222243.554|127.419 +637064.592|222245.971|127.114 +637058.329|222248.409|125.505 +637051.940|222250.894|123.914 +637045.551|222253.320|123.475 +637039.151|222255.737|123.338 +637053.647|222253.606|124.410 +637059.993|222251.156|125.803 +637066.318|222248.699|127.468 +637079.116|222243.880|127.861 +637085.514|222241.469|128.092 +637091.930|222239.067|127.989 +637098.331|222236.656|128.199 +637104.728|222234.245|128.406 +637111.059|222231.853|128.778 +637117.442|222229.436|129.278 +637123.830|222227.022|129.650 +637130.167|222224.632|129.921 +637136.577|222222.221|130.016 +637142.920|222219.834|130.171 +637149.235|222217.436|130.781 +637155.645|222215.028|130.875 +637161.994|222212.641|130.991 +637168.343|222210.251|131.165 +637181.087|222205.484|130.924 +637193.849|222200.714|130.586 +637200.229|222198.361|129.751 +637206.642|222195.981|129.321 +637212.924|222193.606|129.668 +637219.297|222191.214|129.687 +637225.658|222188.851|129.211 +637232.025|222186.489|128.733 +637244.812|222181.762|127.346 +637251.109|222179.384|127.663 +637257.464|222177.013|127.419 +637263.776|222174.666|127.020 +637270.314|222172.310|125.112 +637276.852|222169.948|123.304 +637283.329|222167.607|121.539 +637289.657|222165.223|121.750 +637295.875|222162.885|121.899 +637302.239|222160.502|121.817 +637308.536|222158.140|121.823 +637314.831|222155.777|121.859 +637321.155|222153.415|121.682 +637327.455|222151.050|121.719 +637333.765|222148.685|121.713 +637340.071|222146.341|121.262 +637346.387|222143.976|121.250 +637352.568|222141.653|121.344 +637358.896|222139.285|121.292 +637365.159|222136.938|121.268 +637371.362|222134.612|121.274 +637377.650|222132.262|121.103 +637383.953|222129.912|120.856 +637390.202|222127.583|120.600 +637396.285|222125.255|121.533 +637408.407|222120.582|124.154 +637414.583|222118.253|124.435 +637427.171|222113.581|123.456 +637433.425|222111.289|122.469 +637439.750|222108.948|121.844 +637446.032|222106.628|121.161 +637452.268|222104.288|121.186 +637458.297|222101.998|121.774 +637470.419|222097.378|123.344 +637476.668|222095.052|122.972 +637482.815|222092.754|122.865 +637489.021|222090.431|122.813 +637495.157|222088.130|122.813 +637501.393|222085.801|122.627 +637531.940|222074.326|123.118 +637538.097|222072.018|123.136 +637575.002|222058.296|120.911 +637581.089|222056.019|120.811 +637587.161|222053.742|120.808 +637593.333|222051.456|120.302 +637605.586|222046.918|119.195 +637611.700|222044.632|119.064 +637617.680|222042.376|119.308 +637660.005|222026.588|117.793 +637690.464|222015.310|115.062 +637696.593|222013.049|114.300 +637702.552|222010.827|114.059 +637708.572|222008.580|113.864 +637714.503|222006.361|113.785 +637720.414|222004.145|113.828 +637726.494|222001.899|113.127 +637732.615|221999.646|112.301 +637738.452|221997.452|112.447 +637769.090|221986.223|107.354 +637775.086|221984.019|106.442 +637781.112|221981.797|105.699 +637786.851|221979.624|106.171 +637792.560|221977.454|106.769 +637798.363|221975.281|106.726 +637803.597|221973.220|108.741 +637826.402|221964.604|110.131 +637832.153|221962.449|110.128 +637837.887|221960.297|110.219 +637843.629|221958.139|110.286 +637849.329|221956.002|110.292 +637860.634|221951.747|110.697 +637866.267|221949.620|110.996 +637889.041|221941.109|110.493 +637900.971|221936.745|108.387 +637906.860|221934.587|107.409 +637912.502|221932.487|107.119 +637918.168|221930.368|106.991 +637923.706|221928.290|107.107 +637929.464|221926.162|106.452 +637940.739|221921.968|105.842 +637946.518|221919.834|105.187 +637952.108|221917.762|104.748 +637957.737|221915.668|104.422 +637963.300|221913.598|104.129 +637968.847|221911.532|103.900 +637974.361|221909.471|103.800 +637979.771|221907.441|103.843 +637985.273|221905.381|103.821 +637990.671|221903.351|103.937 +637996.017|221901.333|104.236 +637996.368|221903.299|103.870 +637991.046|221905.311|103.727 +637985.587|221907.359|103.821 +637980.229|221909.389|103.608 +637974.742|221911.452|103.605 +637969.210|221913.525|103.785 +637963.580|221915.616|104.309 +637958.015|221917.695|104.638 +637952.495|221919.761|104.827 +637946.819|221921.883|105.120 +637941.083|221924.004|105.876 +637929.860|221928.204|106.330 +637924.109|221930.338|106.982 +637918.519|221932.435|107.064 +637912.898|221934.550|107.049 +637907.305|221936.650|107.177 +637901.368|221938.836|108.113 +637889.520|221943.191|110.188 +637872.463|221949.592|110.499 +637866.696|221951.741|110.944 +637860.978|221953.902|110.731 +637849.722|221958.166|110.170 +637844.028|221960.309|110.164 +637838.289|221962.473|110.100 +637809.930|221973.266|107.677 +637804.273|221975.424|107.119 +637792.840|221979.783|105.991 +637781.115|221984.202|105.845 +637775.089|221986.430|106.619 +637768.843|221988.722|107.799 +637725.973|222004.560|113.621 +637720.060|222006.785|113.602 +637714.065|222009.037|113.688 +637708.002|222011.296|114.096 +637702.028|222013.542|114.126 +637695.944|222015.819|114.398 +637689.778|222018.105|115.062 +637677.400|222022.680|116.699 +637665.162|222027.246|117.495 +637659.054|222029.517|118.043 +637628.422|222040.971|119.448 +637622.359|222043.260|119.311 +637616.348|222045.543|118.918 +637610.185|222047.857|118.994 +637603.986|222050.176|119.275 +637591.550|222054.797|120.430 +637579.166|222059.439|120.789 +637573.027|222061.743|120.890 +637566.800|222064.075|121.143 +637535.585|222075.725|122.896 +637504.676|222087.368|122.448 +637498.458|222089.700|122.551 +637492.246|222092.031|122.658 +637485.988|222094.382|122.676 +637479.783|222096.710|122.780 +637461.181|222103.745|121.960 +637455.176|222106.077|120.445 +637448.867|222108.448|120.521 +637442.536|222110.795|121.161 +637436.129|222113.166|121.920 +637429.698|222115.535|122.890 +637416.975|222120.262|123.990 +637410.767|222122.618|123.533 +637398.541|222127.352|120.850 +637392.332|222129.708|120.396 +637385.938|222132.088|120.881 +637379.592|222134.466|121.027 +637373.252|222136.843|121.158 +637366.936|222139.218|121.109 +637360.615|222141.595|121.149 +637354.299|222143.970|121.146 +637347.947|222146.365|120.985 +637341.604|222148.737|121.259 +637335.264|222151.105|121.527 +637328.894|222153.498|121.591 +637322.597|222155.866|121.542 +637316.224|222158.259|121.679 +637309.875|222160.648|121.600 +637303.513|222163.035|121.676 +637297.161|222165.424|121.682 +637290.803|222167.811|121.753 +637284.390|222170.192|122.350 +637277.840|222172.557|124.270 +637271.299|222174.919|126.197 +637264.822|222177.315|127.007 +637258.479|222179.692|127.138 +637252.097|222182.094|127.074 +637232.867|222189.251|128.565 +637226.448|222191.640|129.016 +637220.004|222194.027|129.748 +637213.652|222196.426|129.571 +637207.364|222198.800|129.336 +637200.899|222201.211|129.738 +637194.416|222203.613|130.409 +637188.110|222205.984|130.449 +637168.852|222213.187|131.198 +637162.446|222215.601|131.104 +637156.106|222217.993|130.897 +637149.696|222220.404|130.854 +637143.319|222222.828|130.351 +637124.184|222230.048|129.851 +637117.856|222232.441|129.549 +637105.103|222237.287|128.574 +637092.363|222242.088|128.361 +637085.959|222244.496|128.333 +637079.555|222246.904|128.315 +637073.163|222249.318|128.117 +637066.784|222251.738|127.678 +637060.481|222254.210|125.596 +637054.132|222256.657|124.401 +637034.579|222267.347|123.237 +637040.976|222264.924|123.609 +637053.708|222260.108|124.310 +637060.072|222257.666|125.276 +637066.385|222255.197|127.248 +637072.749|222252.762|128.120 +637079.137|222250.345|128.507 +637085.560|222247.946|128.227 +637091.899|222245.557|128.403 +637098.285|222243.136|128.821 +637117.396|222235.907|129.848 +637136.483|222228.713|130.342 +637142.880|222226.296|130.592 +637149.217|222223.903|130.833 +637155.621|222221.489|131.022 +637161.970|222219.100|131.144 +637187.464|222209.553|130.543 +637193.858|222207.167|130.235 +637200.168|222204.799|130.208 +637206.629|222202.421|129.168 +637212.890|222200.041|129.763 +637219.221|222197.672|129.577 +637225.618|222195.280|129.357 +637231.992|222192.914|128.778 +637244.778|222188.184|127.337 +637251.069|222185.834|127.074 +637257.415|222183.459|126.931 +637269.979|222178.720|127.327 +637276.450|222176.352|126.084 +637289.395|222171.664|122.588 +637295.793|222169.308|121.612 +637302.087|222166.945|121.622 +637308.436|222164.556|121.676 +637314.681|222162.215|121.631 +637320.985|222159.847|121.609 +637327.291|222157.478|121.585 +637333.597|222155.110|121.582 +637339.864|222152.766|121.417 +637346.207|222150.395|121.170 +637352.461|222148.048|121.137 +637358.722|222145.698|121.100 +637365.031|222143.323|121.170 +637371.240|222140.995|121.109 +637377.501|222138.642|121.134 +637383.688|222136.313|121.262 +637390.007|222133.957|120.890 +637396.331|222131.601|120.506 +637402.537|222129.266|120.570 +637414.641|222124.606|122.883 +637420.807|222122.271|123.249 +637439.549|222115.297|121.972 +637445.947|222112.947|120.890 +637452.229|222110.621|120.198 +637458.410|222108.302|120.201 +637464.521|222105.982|120.658 +637482.614|222099.060|123.191 +637495.044|222094.421|122.554 +637501.189|222092.117|122.521 +637513.487|222087.499|122.438 +637568.784|222066.803|120.972 +637574.853|222064.526|120.927 +637580.928|222062.249|120.850 +637586.972|222059.973|120.975 +637593.199|222057.659|120.488 +637599.374|222055.382|119.634 +637605.507|222053.108|119.052 +637611.542|222050.844|118.979 +637617.571|222048.579|118.958 +637623.645|222046.293|119.049 +637641.641|222039.539|119.012 +637659.798|222032.766|118.080 +637690.269|222021.467|115.157 +637696.273|222019.236|114.654 +637702.250|222016.993|114.590 +637708.115|222014.780|114.770 +637714.129|222012.546|114.312 +637720.267|222010.275|113.596 +637726.211|222008.050|113.489 +637732.087|222005.846|113.416 +637738.119|222003.603|112.953 +637774.638|221990.170|107.284 +637786.638|221985.726|105.985 +637792.593|221983.526|105.296 +637804.042|221979.200|105.876 +637809.650|221977.055|106.650 +637815.164|221974.930|107.808 +637831.980|221968.523|109.731 +637837.640|221966.393|109.841 +637843.285|221964.265|110.024 +637849.042|221962.104|110.051 +637854.727|221959.967|110.121 +637882.951|221949.348|110.716 +637888.734|221947.187|110.515 +637900.587|221942.856|108.183 +637906.482|221940.695|107.168 +637912.121|221938.583|107.119 +637917.693|221936.483|107.314 +637923.289|221934.386|107.214 +637929.089|221932.240|106.625 +637934.646|221930.161|106.470 +637940.239|221928.067|106.436 +637945.948|221925.955|105.772 +637951.666|221923.846|105.114 +637957.119|221921.794|105.153 +637962.864|221919.676|104.434 +637968.454|221917.597|104.050 +637973.989|221915.531|103.870 +637979.549|221913.455|103.623 +637985.066|221911.391|103.541 +637990.485|221909.355|103.580 +637995.807|221907.350|103.736 +638001.226|221905.314|103.797 +637998.507|221908.270|103.608 +637993.113|221910.309|103.474 +637987.699|221912.352|103.425 +637982.188|221914.415|103.721 +637976.696|221916.485|103.742 +637971.277|221918.539|103.529 +637965.647|221920.633|104.059 +637948.782|221926.933|105.226 +637943.128|221929.042|105.693 +637937.404|221931.161|106.433 +637931.823|221933.276|106.217 +637925.998|221935.428|107.116 +637914.779|221939.653|107.232 +637909.177|221941.768|107.162 +637903.596|221943.877|107.031 +637885.701|221950.446|110.518 +637863.011|221959.007|110.356 +637857.394|221961.141|110.027 +637851.712|221963.287|109.957 +637845.964|221965.457|109.920 +637840.295|221967.597|109.826 +637834.564|221969.776|109.497 +637828.679|221971.980|109.789 +637817.407|221976.280|108.701 +637812.049|221978.390|106.933 +637806.550|221980.535|105.473 +637800.960|221982.687|104.653 +637795.004|221984.909|105.056 +637782.962|221989.378|106.479 +637776.899|221991.630|107.131 +637764.445|221996.184|109.926 +637752.183|222000.713|111.767 +637740.079|222005.224|112.788 +637734.011|222007.480|113.398 +637728.043|222009.732|113.331 +637722.108|222011.966|113.407 +637715.918|222014.252|114.361 +637703.881|222018.764|114.809 +637697.956|222021.007|114.657 +637691.863|222023.287|114.983 +637685.645|222025.582|115.919 +637661.215|222034.705|117.610 +637648.804|222039.307|119.095 +637624.572|222048.451|118.909 +637618.458|222050.749|119.022 +637612.407|222053.038|118.854 +637606.318|222055.330|118.897 +637581.437|222064.618|120.713 +637575.298|222066.925|120.811 +637569.114|222069.257|120.832 +637531.766|222083.229|122.893 +637519.541|222087.874|122.152 +637513.353|222090.212|122.048 +637507.129|222092.550|122.192 +637500.914|222094.887|122.310 +637494.639|222097.247|122.429 +637488.411|222099.581|122.670 +637469.895|222106.607|121.704 +637463.866|222108.948|120.357 +637457.639|222111.298|120.296 +637445.035|222116.022|120.796 +637438.625|222118.397|121.585 +637432.221|222120.750|122.813 +637425.885|222123.139|122.795 +637419.706|222125.480|122.545 +637413.427|222127.867|122.149 +637407.389|222130.226|120.497 +637401.141|222132.588|120.335 +637394.758|222134.975|120.713 +637388.391|222137.358|121.009 +637382.076|222139.742|120.957 +637375.815|222142.101|120.969 +637369.436|222144.506|120.997 +637363.129|222146.886|120.927 +637356.814|222149.264|120.948 +637350.504|222151.641|120.966 +637344.165|222154.019|121.228 +637337.773|222156.415|121.463 +637331.400|222158.813|121.539 +637325.099|222161.185|121.579 +637318.747|222163.580|121.533 +637312.383|222165.976|121.615 +637306.049|222168.369|121.481 +637299.703|222170.765|121.454 +637293.242|222173.145|122.481 +637286.655|222175.516|124.727 +637280.141|222177.888|126.398 +637273.710|222180.293|126.742 +637267.391|222182.679|126.648 +637261.000|222185.087|126.700 +637254.654|222187.468|126.904 +637248.250|222189.869|127.145 +637235.336|222194.655|128.763 +637229.002|222197.029|128.979 +637222.510|222199.443|129.665 +637216.209|222201.821|129.574 +637209.799|222204.247|129.363 +637203.426|222206.646|129.488 +637196.992|222209.026|130.302 +637184.190|222213.839|130.613 +637177.798|222216.226|131.049 +637171.379|222218.640|131.095 +637164.963|222221.057|131.147 +637158.614|222223.449|131.128 +637145.889|222228.268|130.665 +637139.488|222230.685|130.592 +637133.093|222233.105|130.427 +637120.380|222237.924|129.851 +637113.979|222240.338|129.824 +637101.220|222245.188|129.031 +637094.822|222247.602|128.937 +637088.416|222250.013|129.034 +637082.039|222252.436|128.583 +637075.663|222254.859|128.163 +637069.253|222257.264|128.336 +637062.974|222259.754|125.840 +637056.634|222262.211|124.459 +637050.270|222264.649|123.563 +637043.881|222267.075|123.164 +637037.486|222269.496|122.944 +637039.620|222271.751|122.935 +637046.030|222269.343|123.042 +637052.446|222266.935|123.069 +637058.786|222264.539|123.408 +637065.062|222262.040|126.285 +637071.359|222259.565|128.553 +637077.775|222257.166|128.388 +637084.154|222254.743|128.964 +637090.543|222252.329|129.342 +637096.883|222249.943|129.504 +637109.709|222245.133|129.449 +637116.046|222242.743|129.699 +637135.181|222235.529|130.436 +637141.582|222233.115|130.665 +637147.934|222230.728|130.729 +637160.751|222225.906|131.031 +637167.042|222223.541|131.125 +637173.470|222221.133|131.049 +637179.783|222218.771|130.924 +637186.186|222216.393|130.436 +637192.593|222214.013|129.958 +637205.340|222209.270|129.217 +637211.683|222206.874|129.559 +637218.005|222204.506|129.513 +637224.320|222202.135|129.510 +637230.684|222199.772|129.025 +637237.100|222197.383|128.672 +637249.832|222192.680|127.224 +637256.224|222190.311|126.614 +637262.560|222187.937|126.593 +637268.915|222185.563|126.395 +637275.240|222183.182|126.535 +637294.354|222176.135|124.087 +637300.910|222173.767|122.249 +637307.302|222171.411|121.420 +637313.599|222169.049|121.423 +637319.957|222166.662|121.469 +637326.206|222164.321|121.414 +637332.573|222161.931|121.414 +637338.824|222159.588|121.396 +637345.149|222157.219|121.298 +637351.492|222154.848|121.070 +637357.789|222152.501|120.728 +637364.080|222150.126|120.960 +637370.292|222147.798|120.863 +637376.614|222145.423|120.905 +637382.822|222143.095|120.878 +637389.095|222140.739|120.844 +637395.365|222138.386|120.863 +637401.607|222136.051|120.652 +637407.950|222133.692|120.204 +637414.138|222131.357|120.439 +637426.342|222126.690|122.121 +637432.551|222124.353|122.231 +637438.805|222122.033|121.658 +637445.154|222119.686|120.890 +637451.461|222117.363|120.049 +637457.739|222115.017|119.805 +637463.860|222112.697|120.219 +637469.974|222110.377|120.674 +637482.233|222105.738|121.423 +637494.474|222101.096|122.362 +637500.628|222098.789|122.262 +637506.843|222096.460|122.195 +637513.012|222094.150|122.054 +637519.193|222091.836|121.853 +637525.311|222089.529|122.054 +637562.210|222075.685|121.878 +637568.458|222073.393|120.820 +637574.643|222071.070|120.811 +637580.705|222068.793|120.808 +637599.094|222061.935|119.878 +637611.402|222057.367|118.817 +637623.511|222052.819|118.872 +637647.667|222043.748|118.887 +637659.773|222039.231|118.275 +637690.382|222027.889|115.279 +637696.462|222025.618|115.020 +637720.423|222016.654|114.367 +637726.558|222014.399|113.410 +637732.566|222012.146|113.319 +637738.488|222009.936|113.066 +637744.377|222007.730|112.980 +637774.936|221996.483|108.454 +637781.014|221994.248|107.470 +637786.997|221992.045|106.641 +637792.990|221989.823|106.055 +637798.958|221987.607|105.595 +637805.130|221985.363|104.074 +637810.503|221983.257|105.802 +637815.932|221981.145|107.308 +637827.002|221976.890|109.210 +637832.665|221974.744|109.554 +637838.399|221972.586|109.625 +637844.108|221970.434|109.807 +637849.850|221968.273|109.884 +637855.541|221966.134|109.923 +637861.164|221964.003|110.234 +637883.805|221955.469|110.835 +637907.390|221946.785|107.311 +637913.005|221944.676|107.329 +637929.793|221938.372|107.232 +637935.652|221936.224|106.229 +637941.254|221934.120|106.159 +637946.999|221932.002|105.370 +637952.565|221929.917|105.223 +637958.161|221927.826|105.001 +637964.172|221925.653|103.370 +637969.661|221923.602|103.099 +637975.263|221921.520|102.684 +637980.722|221919.463|102.788 +637986.072|221917.430|103.263 +637991.357|221915.421|103.748 +637996.877|221913.360|103.458 +638002.217|221911.349|103.568 +638001.863|221912.986|103.462 +637996.368|221915.046|103.660 +637991.049|221917.070|103.288 +637985.773|221919.082|102.788 +637980.415|221921.124|102.343 +637974.980|221923.181|102.181 +637969.359|221925.272|102.672 +637963.711|221927.381|103.038 +637957.539|221929.597|105.254 +637952.019|221931.679|105.239 +637946.384|221933.791|105.403 +637940.626|221935.931|106.019 +637935.021|221938.037|106.122 +637929.013|221940.223|107.677 +637917.930|221944.417|107.293 +637912.264|221946.556|107.211 +637906.644|221948.672|107.223 +637900.706|221950.863|108.186 +637888.801|221955.231|110.518 +637866.032|221963.814|110.402 +637860.384|221965.954|110.188 +637854.764|221968.087|109.887 +637849.015|221970.255|109.838 +637843.224|221972.443|109.716 +637837.536|221974.598|109.472 +637831.818|221976.759|109.356 +637826.176|221978.917|108.692 +637820.583|221981.066|107.854 +637815.069|221983.199|106.705 +637803.734|221987.537|105.406 +637797.693|221989.786|105.900 +637791.725|221992.011|106.382 +637785.650|221994.251|107.336 +637754.978|222005.578|111.920 +637748.964|222007.812|112.523 +637742.810|222010.098|113.209 +637736.912|222012.326|113.084 +637730.966|222014.560|113.191 +637724.803|222016.840|113.995 +637694.573|222028.170|115.233 +637688.507|222030.443|115.455 +637663.882|222039.591|118.055 +637651.583|222044.175|119.003 +637621.225|222055.614|118.979 +637615.123|222057.924|118.750 +637609.021|222060.216|118.854 +637584.104|222069.504|120.866 +637578.005|222071.808|120.741 +637571.756|222074.158|120.771 +637565.584|222076.468|121.091 +637534.385|222088.151|122.518 +637528.328|222090.462|121.966 +637522.150|222092.800|121.786 +637515.914|222095.140|121.954 +637509.687|222097.481|122.091 +637497.184|222102.178|122.350 +637472.550|222111.557|120.442 +637466.371|222113.886|120.430 +637460.190|222116.254|119.628 +637453.939|222118.604|119.710 +637447.501|222120.985|120.640 +637428.494|222128.077|122.018 +637422.346|222130.439|121.088 +637416.119|222132.826|120.302 +637409.828|222135.191|120.396 +637403.454|222137.581|120.661 +637397.148|222139.943|120.924 +637390.772|222142.351|120.823 +637384.499|222144.710|120.866 +637378.113|222147.118|120.884 +637371.798|222149.499|120.838 +637365.476|222151.879|120.869 +637359.115|222154.281|120.750 +637352.748|222156.658|121.195 +637346.377|222159.060|121.192 +637340.050|222161.435|121.359 +637333.689|222163.833|121.332 +637327.321|222166.232|121.381 +637321.021|222168.604|121.387 +637314.590|222171.021|121.484 +637308.250|222173.416|121.375 +637301.681|222175.797|123.286 +637295.144|222178.171|125.026 +637288.657|222180.549|126.361 +637282.247|222182.960|126.465 +637275.926|222185.346|126.340 +637269.549|222187.757|126.197 +637263.133|222190.162|126.425 +637256.790|222192.546|126.593 +637250.335|222194.941|127.297 +637237.442|222199.733|128.629 +637224.610|222204.524|129.501 +637218.178|222206.947|129.504 +637211.802|222209.346|129.580 +637205.456|222211.751|129.327 +637186.135|222218.966|130.628 +637179.691|222221.380|130.915 +637173.275|222223.797|130.894 +637166.899|222226.186|131.171 +637160.486|222228.604|131.162 +637147.681|222233.444|130.894 +637141.283|222235.864|130.680 +637134.885|222238.284|130.516 +637128.485|222240.701|130.378 +637122.114|222243.130|129.793 +637115.768|222245.523|129.790 +637102.878|222250.363|130.092 +637096.557|222252.765|129.711 +637090.186|222255.194|129.114 +637083.722|222257.630|129.159 +637077.391|222260.028|128.934 +637070.954|222262.479|128.489 +637064.675|222264.972|125.919 +637058.466|222267.463|122.978 +637051.980|222269.889|123.359 +637064.687|222268.252|125.861 +637071.033|222265.743|128.324 +637077.330|222263.336|129.239 +637083.725|222260.925|129.409 +637090.135|222258.520|129.354 +637109.331|222251.293|129.711 +637122.050|222246.486|130.299 +637128.390|222244.100|130.473 +637134.730|222241.710|130.589 +637141.137|222239.302|130.659 +637147.468|222236.909|130.958 +637153.807|222234.520|131.159 +637166.573|222229.722|131.192 +637172.937|222227.339|131.086 +637185.687|222222.568|130.695 +637192.008|222220.206|130.461 +637198.397|222217.823|130.168 +637204.731|222215.461|129.827 +637211.134|222213.077|129.446 +637217.438|222210.706|129.504 +637223.744|222208.334|129.565 +637230.166|222205.948|129.062 +637236.445|222203.604|128.803 +637249.207|222198.873|127.541 +637255.602|222196.508|126.837 +637261.957|222194.134|126.556 +637268.291|222191.787|125.956 +637274.630|222189.409|125.880 +637287.210|222184.670|126.191 +637299.920|222179.963|124.837 +637312.840|222175.263|121.811 +637319.198|222172.901|121.265 +637325.496|222170.536|121.295 +637331.796|222168.171|121.308 +637344.344|222163.458|121.305 +637350.669|222161.090|121.167 +637356.860|222158.768|121.173 +637363.209|222156.396|120.887 +637369.487|222154.049|120.722 +637375.736|222151.699|120.802 +637382.012|222149.349|120.716 +637388.208|222147.021|120.765 +637406.966|222139.983|120.704 +637413.208|222137.651|120.524 +637419.508|222135.316|119.951 +637425.601|222133.006|120.415 +637431.776|222130.650|121.164 +637437.857|222128.339|121.737 +637444.188|222125.998|121.042 +637450.491|222123.676|120.168 +637456.849|222121.329|119.384 +637462.936|222119.034|119.589 +637469.142|222116.693|119.835 +637475.192|222114.398|120.287 +637481.215|222112.066|121.710 +637487.232|222109.774|122.393 +637493.529|222107.445|121.750 +637505.800|222102.821|122.121 +637511.963|222100.514|121.972 +637518.130|222098.207|121.838 +637524.302|222095.896|121.689 +637530.486|222093.586|121.503 +637536.515|222091.306|121.856 +637567.297|222079.809|120.738 +637573.420|222077.514|120.695 +637579.455|222075.243|120.811 +637597.875|222068.373|119.960 +637604.184|222066.066|118.735 +637610.207|222063.807|118.702 +637616.297|222061.524|118.671 +637622.246|222059.272|119.046 +637646.393|222050.213|118.985 +637664.629|222043.419|117.940 +637670.585|222041.191|117.830 +637682.871|222036.646|116.507 +637689.065|222034.363|115.644 +637695.005|222032.132|115.699 +637700.906|222029.907|115.949 +637725.043|222020.922|114.462 +637731.063|222018.684|113.998 +637737.199|222016.429|113.060 +637743.152|222014.201|112.944 +637749.123|222011.970|112.767 +637797.488|221994.130|106.552 +637803.453|221991.926|105.833 +637809.498|221989.698|105.089 +637815.225|221987.534|105.388 +637820.717|221985.409|106.644 +637826.246|221983.294|107.503 +637831.715|221981.176|108.853 +637837.298|221979.048|109.509 +637842.983|221976.902|109.768 +637848.759|221974.738|109.698 +637854.489|221972.583|109.832 +637860.116|221970.459|110.109 +637865.809|221968.322|110.161 +637877.041|221964.082|110.646 +637906.351|221953.259|107.265 +637917.574|221949.046|107.336 +637923.213|221946.934|107.284 +637928.775|221944.846|107.308 +637934.609|221942.691|106.595 +637940.242|221940.600|106.168 +637945.999|221938.473|105.555 +637951.577|221936.391|105.351 +637963.410|221932.087|102.678 +637969.234|221929.951|101.703 +637974.800|221927.878|101.407 +637980.421|221925.781|101.166 +637985.758|221923.763|101.462 +637991.058|221921.745|102.123 +637996.289|221919.749|102.806 +638001.571|221917.743|103.318 +638006.822|221915.753|103.724 +638004.530|221917.731|103.492 +637999.279|221919.743|102.898 +637993.975|221921.776|102.255 +637988.748|221923.779|101.584 +637977.906|221927.902|100.926 +637972.374|221929.978|101.121 +637966.567|221932.121|102.038 +637960.285|221934.361|104.641 +637954.595|221936.477|105.226 +637948.959|221938.595|105.406 +637943.235|221940.725|105.915 +637937.614|221942.838|106.080 +637931.668|221945.023|107.189 +637926.032|221947.148|107.223 +637920.399|221949.272|107.262 +637909.149|221953.512|107.329 +637903.486|221955.648|107.287 +637874.182|221966.533|110.582 +637868.504|221968.694|110.231 +637862.740|221970.867|110.216 +637857.117|221973.001|109.942 +637851.426|221975.162|109.676 +637845.680|221977.329|109.646 +637839.880|221979.520|109.597 +637828.709|221983.818|107.845 +637823.220|221985.952|106.595 +637817.581|221988.125|105.699 +637812.073|221990.271|104.266 +637805.889|221992.538|105.583 +637799.838|221994.779|106.397 +637793.758|221997.037|107.104 +637757.075|222010.613|112.209 +637751.034|222012.869|112.676 +637745.069|222015.109|112.837 +637739.043|222017.374|113.005 +637732.907|222019.638|113.947 +637726.903|222021.897|114.078 +637696.517|222033.269|115.809 +637690.592|222035.506|115.702 +637684.392|222037.817|116.315 +637672.048|222042.404|117.641 +637666.046|222044.662|117.693 +637653.586|222049.289|119.153 +637647.600|222051.560|118.897 +637629.327|222058.436|119.162 +637623.207|222060.753|119.000 +637611.063|222065.352|118.595 +637604.986|222067.641|118.619 +637598.627|222069.982|119.787 +637573.932|222079.254|120.573 +637536.741|222093.242|121.366 +637530.523|222095.585|121.384 +637524.335|222097.908|121.622 +637518.041|222100.273|121.771 +637511.872|222102.593|121.957 +637505.532|222104.958|122.438 +637499.281|222107.299|122.786 +637493.276|222109.622|121.643 +637480.883|222114.328|121.012 +637474.741|222116.678|120.354 +637468.630|222119.025|119.512 +637462.412|222121.378|119.366 +637456.182|222123.731|119.332 +637449.751|222126.111|120.223 +637437.074|222130.839|121.298 +637430.902|222133.204|120.543 +637424.699|222135.572|119.997 +637418.371|222137.941|120.347 +637412.010|222140.330|120.506 +637405.716|222142.699|120.664 +637393.119|222147.447|120.677 +637386.800|222149.834|120.628 +637380.463|222152.217|120.741 +637374.218|222154.580|120.658 +637367.826|222156.985|120.762 +637361.471|222159.365|121.085 +637355.168|222161.745|121.039 +637348.782|222164.147|121.180 +637342.476|222166.525|121.183 +637336.112|222168.924|121.195 +637329.818|222171.301|121.170 +637323.447|222173.700|121.253 +637317.050|222176.092|121.637 +637303.949|222180.856|125.185 +637297.506|222183.240|126.130 +637291.193|222185.633|125.889 +637284.838|222188.019|126.062 +637278.498|222190.436|125.547 +637272.061|222192.844|125.971 +637265.712|222195.228|126.172 +637259.293|222197.636|126.486 +637252.907|222200.010|127.126 +637246.446|222202.406|127.974 +637240.008|222204.805|128.598 +637233.586|222207.200|129.086 +637227.203|222209.602|129.214 +637220.757|222212.025|129.394 +637214.441|222214.403|129.449 +637208.059|222216.835|128.964 +637195.221|222221.611|130.278 +637188.777|222224.028|130.577 +637182.352|222226.449|130.644 +637175.973|222228.838|130.939 +637163.125|222233.672|131.232 +637156.779|222236.068|131.174 +637150.372|222238.485|131.144 +637143.981|222240.911|130.881 +637137.583|222243.331|130.753 +637131.188|222245.752|130.543 +637124.851|222248.147|130.415 +637118.451|222250.567|130.348 +637092.893|222260.251|129.464 +637086.495|222262.668|129.367 +637073.648|222267.527|129.156 +637067.372|222270.023|126.596 +637061.139|222272.556|122.954 +637063.785|222274.772|122.957 +637070.033|222272.190|127.629 +637082.688|222267.341|129.485 +637089.080|222264.927|129.726 +637095.478|222262.519|129.839 +637101.821|222260.132|129.866 +637108.270|222257.697|130.132 +637120.999|222252.893|130.540 +637127.393|222250.482|130.714 +637133.736|222248.092|130.799 +637140.140|222245.681|130.891 +637152.814|222240.902|131.265 +637159.224|222238.491|131.302 +637178.371|222231.310|131.012 +637184.760|222228.927|130.641 +637197.516|222224.153|130.238 +637210.281|222219.414|129.150 +637216.569|222217.039|129.360 +637222.924|222214.641|129.571 +637229.255|222212.272|129.345 +637235.592|222209.904|129.095 +637241.971|222207.539|128.428 +637248.335|222205.170|127.983 +637261.119|222200.437|126.599 +637267.413|222198.084|126.337 +637273.804|222195.712|125.752 +637280.111|222193.356|125.438 +637292.705|222188.617|125.614 +637311.731|222181.518|124.593 +637318.269|222179.168|122.426 +637324.697|222176.812|121.262 +637331.003|222174.443|121.210 +637337.319|222172.075|121.106 +637343.558|222169.731|121.140 +637349.867|222167.360|121.106 +637356.107|222165.010|121.177 +637362.443|222162.639|120.994 +637368.704|222160.289|120.939 +637374.998|222157.935|120.661 +637381.271|222155.582|120.573 +637387.516|222153.229|120.704 +637393.798|222150.873|120.591 +637400.007|222148.542|120.585 +637406.280|222146.182|120.564 +637412.489|222143.848|120.591 +637418.725|222141.510|120.457 +637424.967|222139.172|120.287 +637431.231|222136.831|120.003 +637437.321|222134.518|120.515 +637449.748|222129.857|120.314 +637456.121|222127.507|119.400 +637462.360|222125.182|119.000 +637468.481|222122.862|119.403 +637474.607|222120.539|119.762 +637480.706|222118.220|120.311 +637486.778|222115.903|121.045 +637523.567|222102.047|121.618 +637529.800|222099.709|121.478 +637535.921|222097.417|121.317 +637542.105|222095.101|121.140 +637548.091|222092.821|121.768 +637566.690|222085.890|120.539 +637572.808|222083.592|120.515 +637578.873|222081.315|120.451 +637584.917|222079.023|120.875 +637590.998|222076.743|120.762 +637609.637|222069.848|118.543 +637615.647|222067.586|118.577 +637621.640|222065.328|118.735 +637627.687|222063.045|118.927 +637663.955|222049.466|117.857 +637676.025|222044.949|117.476 +637682.118|222042.693|116.751 +637688.300|222040.410|115.931 +637694.283|222038.158|116.065 +637712.132|222031.443|116.150 +637724.391|222026.908|114.703 +637730.347|222024.680|114.514 +637736.321|222022.446|114.261 +637742.493|222020.181|113.169 +637748.519|222017.938|112.743 +637754.429|222015.725|112.560 +637796.772|222000.082|107.110 +637802.795|221997.854|106.409 +637808.891|221995.623|105.168 +637814.798|221993.425|104.714 +637820.483|221991.264|105.178 +637825.981|221989.137|106.394 +637842.550|221982.767|109.259 +637848.241|221980.615|109.503 +637853.938|221978.463|109.725 +637859.643|221976.308|109.935 +637865.319|221974.171|110.027 +637882.287|221967.761|110.606 +637899.792|221961.281|108.637 +637905.903|221959.053|107.259 +637928.345|221950.610|107.351 +637933.942|221948.513|107.238 +637939.882|221946.334|106.150 +637945.594|221944.212|105.668 +637951.221|221942.106|105.501 +637956.722|221940.034|105.562 +637963.145|221937.775|102.447 +637969.018|221935.626|101.264 +637974.983|221933.456|99.801 +637985.614|221929.405|100.941 +637990.912|221927.390|101.364 +638001.476|221923.361|102.562 +638006.798|221921.343|102.940 +638012.035|221919.341|103.605 +638011.955|221921.209|103.315 +638006.749|221923.199|102.779 +638001.467|221925.214|102.270 +637996.157|221927.247|101.654 +637990.878|221929.262|101.157 +637985.493|221931.310|100.822 +637974.709|221935.407|100.218 +637968.863|221937.555|101.276 +637962.678|221939.774|103.544 +637956.503|221941.999|105.589 +637950.937|221944.100|105.525 +637945.317|221946.212|105.680 +637939.614|221948.339|106.144 +637933.646|221950.528|107.336 +637928.132|221952.616|107.159 +637911.109|221959.026|107.308 +637905.525|221961.135|107.226 +637899.466|221963.345|108.658 +637881.897|221969.880|110.417 +637864.865|221976.317|110.103 +637859.235|221978.466|109.597 +637853.499|221980.630|109.512 +637847.784|221982.791|109.362 +637842.123|221984.955|108.765 +637819.919|221993.529|104.733 +637814.012|221995.745|104.922 +637807.974|221997.985|105.647 +637801.878|222000.232|106.650 +637795.876|222002.463|107.296 +637771.196|222011.561|111.374 +637765.076|222013.832|112.124 +637753.106|222018.322|112.557 +637747.093|222020.571|112.932 +637740.856|222022.866|114.017 +637734.834|222025.128|114.212 +637728.713|222027.402|114.849 +637716.597|222031.928|115.666 +637692.488|222041.008|115.861 +637686.465|222043.273|115.931 +637667.936|222050.158|117.894 +637649.560|222057.043|118.775 +637625.151|222066.233|118.970 +637613.026|222070.830|118.479 +637606.887|222073.143|118.485 +637594.226|222077.825|120.259 +637581.848|222082.488|120.320 +637575.731|222084.792|120.338 +637569.549|222087.121|120.384 +637544.659|222096.475|121.003 +637538.420|222098.822|121.140 +637532.245|222101.145|121.289 +637525.999|222103.489|121.497 +637519.745|222105.833|121.801 +637513.164|222108.216|123.703 +637507.102|222110.542|122.908 +637494.770|222115.227|122.246 +637488.774|222117.568|120.671 +637482.578|222119.918|120.351 +637470.273|222124.618|119.192 +637464.052|222126.968|119.073 +637457.770|222129.342|118.979 +637451.427|222131.698|119.701 +637444.977|222134.076|120.762 +637438.842|222136.420|120.162 +637432.563|222138.812|119.701 +637426.205|222141.181|120.244 +637419.898|222143.549|120.448 +637413.559|222145.939|120.472 +637407.289|222148.304|120.469 +637400.958|222150.690|120.479 +637394.694|222153.053|120.463 +637388.364|222155.436|120.524 +637382.054|222157.820|120.442 +637375.638|222160.225|120.725 +637369.292|222162.605|120.966 +637362.965|222164.986|121.088 +637356.607|222167.387|121.000 +637350.297|222169.768|121.006 +637343.915|222172.167|121.158 +637337.642|222174.544|120.939 +637331.284|222176.940|120.905 +637324.828|222179.332|121.765 +637318.333|222181.695|123.514 +637305.290|222186.483|126.114 +637299.054|222188.854|125.745 +637292.684|222191.268|125.489 +637286.408|222193.664|124.923 +637280.031|222196.048|125.331 +637273.585|222198.453|125.864 +637267.215|222200.833|126.255 +637260.774|222203.235|126.828 +637254.364|222205.606|127.702 +637247.945|222208.005|128.120 +637235.165|222212.778|129.083 +637228.758|222215.174|129.476 +637222.391|222217.576|129.476 +637216.036|222219.981|129.315 +637209.635|222222.407|129.034 +637196.824|222227.186|130.058 +637184.010|222231.996|130.516 +637177.530|222234.398|131.336 +637152.018|222244.026|131.183 +637139.217|222248.864|131.003 +637132.883|222251.259|130.857 +637126.482|222253.676|130.799 +637120.090|222256.097|130.622 +637107.356|222260.906|130.436 +637100.973|222263.329|130.132 +637094.585|222265.747|129.936 +637088.193|222268.167|129.781 +637081.817|222270.593|129.418 +637062.925|222278.048|122.871 +637043.713|222285.303|122.749 +637056.223|222283.809|122.950 +637062.642|222281.404|122.765 +637068.860|222278.859|126.879 +637081.551|222273.964|129.306 +637087.925|222271.538|129.836 +637113.446|222261.906|130.470 +637119.837|222259.489|130.689 +637126.232|222257.072|130.887 +637132.563|222254.679|131.131 +637138.903|222252.290|131.226 +637151.659|222247.486|131.265 +637164.488|222242.664|131.198 +637177.241|222237.894|130.653 +637183.611|222235.504|130.479 +637189.987|222233.118|130.269 +637209.196|222225.961|128.845 +637215.469|222223.577|129.281 +637221.839|222221.182|129.251 +637228.225|222218.789|129.104 +637240.880|222214.040|128.809 +637247.253|222211.672|128.233 +637259.985|222206.926|127.315 +637272.735|222202.208|125.773 +637279.111|222199.830|125.371 +637291.815|222195.063|125.075 +637298.048|222192.698|125.493 +637304.300|222190.333|125.764 +637310.606|222187.943|126.087 +637316.894|222185.578|126.050 +637329.927|222180.869|122.161 +637336.447|222178.485|120.808 +637342.674|222176.135|120.927 +637348.977|222173.764|120.960 +637355.284|222171.389|120.954 +637361.538|222169.039|120.942 +637367.845|222166.665|120.991 +637374.123|222164.312|120.817 +637380.454|222161.934|120.735 +637386.696|222159.606|120.411 +637392.960|222157.250|120.415 +637399.209|222154.891|120.549 +637405.433|222152.556|120.445 +637411.708|222150.200|120.424 +637417.914|222147.862|120.479 +637424.199|222145.500|120.433 +637430.396|222143.183|120.183 +637436.729|222140.818|119.832 +637442.893|222138.498|119.866 +637455.338|222133.835|119.567 +637467.847|222129.159|118.961 +637474.095|222126.812|118.945 +637480.127|222124.514|119.534 +637486.287|222122.170|120.088 +637492.343|222119.869|120.539 +637498.324|222117.555|121.856 +637510.479|222112.932|122.893 +637516.441|222110.640|123.938 +637522.997|222108.277|121.853 +637529.221|222105.961|121.387 +637535.345|222103.669|121.183 +637541.520|222101.352|121.070 +637547.704|222099.033|120.924 +637553.819|222096.738|120.832 +637559.930|222094.424|121.137 +637572.238|222089.840|120.299 +637578.425|222087.514|120.235 +637615.169|222073.786|118.442 +637621.256|222071.500|118.430 +637627.172|222069.248|118.967 +637645.286|222062.441|118.857 +637669.497|222053.392|117.805 +637681.594|222048.866|117.303 +637687.846|222046.574|116.138 +637693.771|222044.342|116.227 +637729.777|222030.870|114.852 +637735.821|222028.612|114.559 +637741.798|222026.377|114.312 +637747.782|222024.155|113.767 +637753.981|222021.882|112.599 +637759.900|222019.666|112.392 +637765.881|222017.441|111.941 +637796.245|222006.236|107.628 +637808.245|222001.798|106.132 +637814.408|221999.543|104.888 +637820.397|221997.330|104.123 +637825.948|221995.193|105.144 +637831.410|221993.084|106.253 +637842.535|221988.817|107.957 +637847.988|221986.708|109.113 +637853.822|221984.528|108.805 +637859.497|221982.379|109.128 +637865.139|221980.246|109.350 +637899.630|221967.325|108.357 +637905.543|221965.158|107.208 +637911.210|221963.028|107.244 +637916.809|221960.922|107.296 +637928.126|221956.666|107.250 +637933.728|221954.557|107.345 +637939.644|221952.393|106.092 +637945.326|221950.275|105.711 +637950.928|221948.175|105.623 +637956.427|221946.102|105.693 +637962.517|221943.911|103.708 +637968.917|221941.643|100.913 +637974.611|221939.540|100.157 +637985.444|221935.434|100.816 +637990.784|221933.401|101.319 +637996.100|221931.374|101.907 +638006.841|221927.314|102.303 +638012.190|221925.290|102.596 +638013.805|221926.778|102.517 +638003.134|221930.829|102.099 +637997.706|221932.889|101.889 +637992.338|221934.934|101.489 +637987.090|221936.946|100.913 +637981.756|221938.994|100.194 +637976.425|221941.033|99.703 +637970.691|221943.152|100.609 +637964.327|221945.419|103.288 +637958.201|221947.626|105.403 +637952.656|221949.714|105.510 +637947.051|221951.826|105.616 +637941.458|221953.932|105.702 +637935.487|221956.127|106.927 +637929.872|221958.236|107.122 +637924.221|221960.364|107.244 +637918.631|221962.479|107.153 +637912.956|221964.610|107.387 +637907.372|221966.734|107.080 +637901.688|221968.874|107.150 +637895.412|221971.129|109.436 +637889.477|221973.318|110.487 +637883.857|221975.445|110.393 +637855.739|221986.156|108.460 +637849.951|221988.335|108.600 +637838.905|221992.606|106.601 +637833.254|221994.770|105.997 +637827.682|221996.918|105.074 +637821.830|221999.128|105.031 +637810.022|222003.542|105.946 +637803.892|222005.813|106.845 +637797.808|222008.071|107.570 +637785.546|222012.588|109.795 +637773.367|222017.099|111.520 +637767.289|222019.364|112.115 +637761.321|222021.610|112.258 +637755.274|222023.869|112.764 +637749.126|222026.128|114.017 +637743.082|222028.395|114.282 +637737.034|222030.663|114.599 +637724.888|222035.201|115.529 +637694.731|222046.537|116.458 +637688.790|222048.796|116.163 +637682.557|222051.094|117.278 +637664.406|222057.930|117.568 +637633.716|222069.449|118.906 +637627.635|222071.744|118.894 +637621.664|222074.027|118.333 +637615.455|222076.368|118.369 +637603.062|222081.013|119.043 +637584.329|222088.002|120.683 +637578.276|222090.322|120.037 +637572.079|222092.653|120.168 +637565.901|222094.979|120.223 +637559.613|222097.317|120.917 +637553.499|222099.636|120.677 +637547.262|222101.983|120.774 +637541.011|222104.330|120.981 +637534.778|222106.674|121.116 +637528.535|222109.018|121.335 +637522.086|222111.377|122.789 +637503.563|222118.403|122.067 +637497.495|222120.747|120.963 +637491.353|222123.097|120.305 +637485.178|222125.447|119.866 +637479.054|222127.797|119.104 +637472.873|222130.147|118.717 +637466.579|222132.521|118.686 +637460.251|222134.877|119.293 +637453.923|222137.255|119.534 +637447.596|222139.626|119.796 +637441.317|222141.997|119.753 +637434.983|222144.369|120.104 +637428.597|222146.761|120.415 +637422.337|222149.130|120.326 +637416.003|222151.516|120.314 +637409.666|222153.906|120.366 +637403.378|222156.268|120.518 +637397.020|222158.679|120.332 +637390.753|222161.038|120.372 +637384.334|222163.446|120.671 +637378.016|222165.830|120.683 +637371.682|222168.210|120.853 +637365.315|222170.612|120.823 +637352.638|222175.391|120.853 +637346.265|222177.793|120.954 +637339.986|222180.171|120.762 +637333.411|222182.585|122.091 +637326.943|222184.947|123.606 +637320.323|222187.324|125.986 +637307.607|222192.134|125.770 +637301.325|222194.530|125.249 +637282.238|222201.717|125.477 +637275.831|222204.125|125.654 +637269.363|222206.527|126.443 +637256.537|222211.300|127.711 +637250.115|222213.699|128.172 +637243.693|222216.098|128.669 +637237.314|222218.499|128.751 +637230.846|222220.919|129.165 +637224.463|222223.318|129.348 +637218.050|222225.744|129.205 +637211.686|222228.146|129.196 +637205.319|222230.545|129.260 +637192.502|222235.355|129.744 +637186.043|222237.766|130.266 +637179.612|222240.180|130.503 +637173.248|222242.573|130.656 +637166.822|222244.987|130.863 +637154.033|222249.787|131.342 +637147.617|222252.198|131.506 +637141.216|222254.615|131.451 +637134.824|222257.035|131.284 +637128.436|222259.455|131.067 +637122.041|222261.872|130.988 +637115.674|222264.302|130.415 +637109.258|222266.710|130.692 +637083.716|222276.390|129.741 +637077.321|222278.807|129.653 +637064.836|222283.858|122.783 +637058.417|222286.266|123.048 +637061.806|222288.201|122.874 +637099.818|222273.501|130.427 +637118.932|222266.265|131.107 +637125.333|222263.848|131.183 +637131.734|222261.434|131.241 +637138.071|222259.038|131.393 +637144.471|222256.618|131.540 +637150.830|222254.228|131.393 +637157.176|222251.835|131.461 +637163.613|222249.427|131.101 +637189.134|222239.872|129.848 +637195.498|222237.476|129.808 +637201.911|222235.090|129.202 +637208.214|222232.712|129.245 +637214.582|222230.313|129.232 +637220.900|222227.936|129.132 +637227.277|222225.537|129.074 +637233.583|222223.157|129.132 +637239.923|222220.782|128.858 +637246.324|222218.384|128.608 +637265.377|222211.279|127.068 +637271.781|222208.904|126.315 +637278.206|222206.530|125.395 +637284.503|222204.168|125.166 +637297.143|222199.416|124.929 +637303.449|222197.051|124.685 +637315.940|222192.283|125.931 +637322.228|222189.915|125.907 +637335.106|222185.188|123.362 +637341.659|222182.826|121.241 +637348.036|222180.454|120.637 +637354.324|222178.077|120.771 +637360.563|222175.721|120.835 +637366.802|222173.368|120.908 +637373.127|222170.987|120.823 +637379.381|222168.631|120.802 +637385.651|222166.275|120.710 +637391.933|222163.916|120.530 +637398.236|222161.557|120.235 +637404.427|222159.219|120.320 +637410.687|222156.856|120.390 +637416.899|222154.516|120.363 +637423.187|222152.150|120.268 +637429.335|222149.834|120.308 +637435.562|222147.490|120.253 +637441.817|222145.143|120.027 +637448.111|222142.796|119.552 +637454.256|222140.473|119.698 +637460.586|222138.120|119.046 +637466.822|222135.789|118.653 +637479.161|222131.134|118.790 +637485.281|222128.806|119.180 +637491.341|222126.483|119.985 +637497.452|222124.157|120.451 +637503.466|222121.856|121.170 +637509.458|222119.537|122.384 +637515.508|222117.232|122.877 +637527.908|222112.578|122.515 +637534.287|222110.243|121.128 +637540.438|222107.927|121.119 +637546.641|222105.604|120.826 +637552.767|222103.303|120.646 +637558.958|222100.980|120.469 +637565.041|222098.682|120.582 +637571.238|222096.372|120.079 +637577.364|222094.068|119.976 +637583.329|222091.797|120.451 +637602.017|222084.856|118.409 +637614.105|222080.303|118.354 +637626.123|222075.755|118.747 +637632.229|222073.460|118.631 +637638.248|222071.208|118.354 +637644.198|222068.946|118.744 +637650.245|222066.669|118.683 +637668.457|222059.857|117.644 +637686.678|222053.051|116.495 +637692.713|222050.783|116.336 +637716.411|222041.831|116.797 +637746.559|222030.578|114.608 +637752.674|222028.331|113.486 +637758.684|222026.097|112.852 +637764.762|222023.838|112.231 +637770.675|222021.616|112.069 +637782.553|222017.179|111.307 +637806.946|222008.205|106.936 +637812.936|222005.989|106.104 +637824.838|222001.570|104.845 +637830.568|221999.400|105.135 +637836.149|221997.266|105.781 +637841.745|221995.117|106.625 +637858.446|221988.735|108.549 +637864.008|221986.616|109.064 +637875.225|221982.358|109.765 +637886.435|221978.097|110.548 +637898.402|221973.702|108.338 +637915.638|221967.267|107.253 +637926.843|221963.046|107.345 +637932.415|221960.952|107.296 +637938.099|221958.834|106.854 +637944.000|221956.657|105.900 +637949.608|221954.554|105.775 +637955.144|221952.472|105.699 +637960.871|221950.342|105.199 +637967.360|221948.068|101.831 +637978.875|221943.819|100.063 +637989.552|221939.753|101.035 +637994.740|221937.760|101.825 +638000.242|221935.690|101.782 +638005.655|221933.651|101.843 +638011.074|221931.609|101.883 +638015.311|221931.722|102.343 +638009.986|221933.755|101.986 +638004.750|221935.769|101.334 +637999.032|221937.894|102.099 +637993.829|221939.909|101.133 +637977.677|221946.090|99.700 +637971.914|221948.233|100.496 +637965.507|221950.500|103.550 +637959.325|221952.735|105.629 +637953.802|221954.822|105.662 +637948.215|221956.935|105.711 +637942.513|221959.077|105.949 +637936.654|221961.242|107.003 +637930.915|221963.403|107.177 +637919.683|221967.652|107.177 +637902.623|221974.095|107.360 +637896.546|221976.317|108.914 +637890.428|221978.554|110.408 +637884.847|221980.679|110.161 +637879.187|221982.828|109.987 +637873.612|221984.973|109.250 +637862.237|221989.292|108.924 +637856.708|221991.426|108.046 +637839.892|221997.897|105.848 +637834.284|222000.058|105.059 +637828.612|222002.228|104.541 +637822.750|222004.447|104.534 +637816.663|222006.690|105.720 +637804.590|222011.177|107.247 +637792.270|222015.731|109.393 +637786.180|222017.977|110.481 +637780.023|222020.263|111.353 +637768.121|222024.735|111.981 +637755.871|222029.282|113.648 +637743.673|222033.833|114.934 +637695.432|222051.990|116.638 +637689.485|222054.251|116.379 +637677.184|222058.845|117.552 +637671.118|222061.137|117.623 +637665.031|222063.429|117.812 +637646.734|222070.318|118.415 +637640.598|222072.628|118.634 +637628.422|222077.230|118.647 +637616.214|222081.866|118.272 +637610.152|222084.162|118.220 +637604.028|222086.478|118.183 +637579.135|222095.814|119.717 +637572.951|222098.149|119.808 +637554.355|222105.150|120.442 +637548.107|222107.503|120.631 +637535.604|222112.188|121.487 +637529.215|222114.550|122.585 +637510.686|222121.591|121.905 +637504.630|222123.923|121.094 +637498.500|222126.276|120.369 +637492.398|222128.611|119.869 +637486.189|222130.988|119.262 +637480.121|222133.317|118.552 +637473.830|222135.700|118.488 +637467.584|222138.059|118.567 +637454.947|222142.799|119.339 +637448.580|222145.180|119.881 +637442.277|222147.554|120.034 +637435.989|222149.928|120.091 +637429.649|222152.327|120.122 +637423.370|222154.699|120.162 +637417.106|222157.070|120.122 +637410.760|222159.463|120.265 +637404.454|222161.852|120.122 +637398.105|222164.245|120.326 +637391.814|222166.610|120.594 +637385.438|222169.021|120.594 +637379.116|222171.408|120.649 +637372.804|222173.794|120.674 +637366.424|222176.202|120.777 +637360.142|222178.586|120.579 +637353.778|222180.994|120.607 +637334.307|222188.160|124.508 +637321.417|222192.972|125.736 +637308.832|222197.773|124.910 +637302.541|222200.172|124.499 +637289.797|222204.985|124.654 +637283.436|222207.374|124.959 +637276.941|222209.779|126.035 +637270.494|222212.184|126.639 +637264.115|222214.567|127.260 +637257.684|222216.969|127.812 +637244.858|222221.779|128.669 +637232.080|222226.589|129.117 +637225.716|222228.994|129.101 +637219.291|222231.423|129.123 +637212.927|222233.828|129.168 +637206.498|222236.254|129.272 +637200.113|222238.653|129.616 +637187.278|222243.502|129.668 +637161.644|222253.116|131.265 +637155.222|222255.533|131.531 +637148.824|222257.953|131.476 +637142.475|222260.348|131.592 +637136.092|222262.778|131.302 +637129.698|222265.198|131.223 +637078.619|222284.592|129.525 +637034.167|222301.795|121.405 +637034.277|222304.609|121.180 +637066.263|222292.481|122.905 +637072.450|222289.908|127.797 +637085.093|222285.046|129.872 +637116.969|222272.976|131.290 +637123.358|222270.559|131.506 +637136.169|222265.737|131.494 +637142.566|222263.323|131.646 +637148.909|222260.931|131.701 +637161.693|222256.136|131.351 +637168.063|222253.753|131.095 +637193.642|222244.182|129.882 +637212.747|222237.037|128.989 +637219.108|222234.639|129.059 +637225.414|222232.261|129.098 +637231.785|222229.865|129.110 +637238.091|222227.488|129.168 +637250.749|222222.736|128.854 +637269.940|222215.628|126.559 +637282.723|222210.876|125.331 +637295.451|222206.140|124.218 +637301.685|222203.774|124.636 +637308.021|222201.385|124.700 +637314.285|222199.020|124.880 +637320.546|222196.651|125.093 +637326.861|222194.259|125.374 +637333.128|222191.890|125.578 +637352.504|222184.825|120.994 +637358.877|222182.454|120.460 +637365.114|222180.101|120.567 +637371.405|222177.720|120.735 +637377.659|222175.367|120.719 +637383.990|222172.987|120.634 +637390.177|222170.652|120.710 +637396.517|222168.271|120.579 +637402.756|222165.933|120.320 +637409.072|222163.574|119.973 +637415.256|222161.236|120.158 +637421.538|222158.871|120.098 +637427.753|222156.530|120.110 +637433.974|222154.189|120.098 +637440.201|222151.846|120.061 +637446.434|222149.502|119.991 +637452.622|222147.179|119.851 +637458.953|222144.829|119.180 +637465.259|222142.476|118.714 +637471.492|222140.147|118.351 +637477.707|222137.816|118.147 +637483.913|222135.466|118.397 +637489.984|222133.143|119.128 +637496.077|222130.820|119.732 +637502.182|222128.495|120.271 +637508.217|222126.191|120.875 +637514.304|222123.865|121.542 +637545.239|222112.258|120.658 +637551.377|222109.960|120.411 +637557.562|222107.637|120.265 +637563.688|222105.339|120.140 +637569.900|222103.010|119.893 +637576.054|222100.706|119.640 +637582.074|222098.414|120.162 +637594.330|222093.818|119.720 +637600.740|222091.480|118.202 +637606.820|222089.194|118.144 +637612.886|222086.908|118.180 +637618.887|222084.643|118.247 +637624.941|222082.342|118.702 +637630.991|222080.071|118.552 +637649.172|222073.247|118.071 +637679.381|222061.899|117.568 +637685.569|222059.598|116.952 +637691.598|222057.348|116.522 +637697.526|222055.099|116.879 +637715.369|222048.363|117.211 +637751.890|222034.805|113.279 +637769.861|222028.090|112.240 +637775.835|222025.859|111.831 +637787.787|222021.412|110.798 +637806.148|222014.661|107.525 +637824.280|222007.958|104.946 +637830.325|222005.730|103.977 +637835.896|222003.597|104.653 +637841.614|222001.411|105.269 +637858.238|221995.026|107.759 +637863.594|221992.929|109.317 +637875.069|221988.610|109.274 +637880.617|221986.488|109.871 +637886.313|221984.339|109.926 +637926.663|221969.264|107.372 +637932.320|221967.139|107.232 +637938.047|221965.000|106.869 +637943.793|221962.869|106.229 +637949.480|221960.745|105.821 +637955.083|221958.639|105.726 +637960.639|221956.542|105.818 +637966.759|221954.341|103.715 +637973.334|221952.046|100.084 +637978.903|221949.952|99.969 +637995.289|221943.758|100.395 +638000.672|221941.722|100.538 +638011.196|221937.690|101.892 +638016.539|221935.663|102.203 +638021.791|221933.663|102.614 +638017.509|221936.772|102.200 +638012.181|221938.802|101.849 +637996.258|221944.901|100.221 +637990.677|221946.995|100.560 +637979.637|221951.174|100.417 +637974.230|221953.241|99.978 +637967.689|221955.536|103.519 +637961.496|221957.770|105.653 +637955.887|221959.885|105.760 +637950.312|221961.991|105.769 +637944.607|221964.134|106.034 +637938.760|221966.304|106.808 +637933.049|221968.447|107.140 +637927.407|221970.575|107.223 +637881.226|221987.896|109.875 +637875.703|221990.018|109.192 +637858.845|221996.467|107.589 +637842.148|222002.911|104.937 +637836.381|222005.112|104.522 +637824.539|222009.549|105.245 +637806.404|222016.298|107.369 +637787.845|222023.131|110.999 +637775.842|222027.630|111.758 +637769.736|222029.901|112.474 +637751.787|222036.646|113.203 +637745.422|222038.969|114.898 +637727.061|222045.805|116.931 +637715.019|222050.341|117.254 +637697.090|222057.138|116.818 +637691.150|222059.396|116.528 +637685.026|222061.695|116.839 +637660.596|222070.869|118.004 +637623.935|222084.692|118.665 +637617.897|222086.999|118.168 +637611.837|222089.291|118.110 +637605.711|222091.608|118.089 +637599.505|222093.949|118.180 +637562.185|222107.957|120.058 +637555.989|222110.289|120.274 +637549.795|222112.618|120.482 +637543.440|222114.980|121.314 +637530.895|222119.665|122.466 +637524.677|222122.009|122.569 +637512.530|222126.672|121.094 +637506.383|222129.028|120.463 +637500.302|222131.357|119.790 +637494.160|222133.713|119.116 +637487.976|222136.069|118.723 +637481.828|222138.422|118.110 +637469.279|222143.144|118.555 +637462.894|222145.527|119.156 +637456.572|222147.883|119.765 +637450.260|222150.261|119.945 +637443.969|222152.635|119.994 +637437.684|222155.009|120.012 +637431.402|222157.384|120.049 +637425.120|222159.755|120.104 +637418.792|222162.148|120.061 +637412.477|222164.541|119.960 +637406.109|222166.930|120.253 +637399.824|222169.298|120.411 +637393.481|222171.685|120.570 +637387.172|222174.075|120.512 +637380.856|222176.461|120.518 +637374.541|222178.845|120.552 +637368.235|222181.231|120.506 +637361.892|222183.636|120.314 +637348.941|222188.416|122.664 +637342.360|222190.808|124.551 +637329.623|222195.578|125.419 +637316.989|222200.376|124.950 +637310.661|222202.772|124.834 +637297.993|222207.591|124.194 +637291.681|222209.959|124.548 +637285.262|222212.373|124.795 +637259.488|222221.965|127.751 +637246.628|222226.769|128.903 +637240.231|222229.170|129.187 +637233.891|222231.581|128.885 +637227.511|222233.986|129.016 +637221.089|222236.416|128.970 +637214.640|222238.839|129.232 +637208.297|222241.247|129.019 +637201.923|222243.648|129.190 +637189.091|222248.461|129.876 +637169.834|222255.685|130.961 +637163.339|222258.123|131.345 +637156.977|222260.516|131.561 +637144.154|222265.350|131.771 +637137.760|222267.773|131.643 +637131.371|222270.200|131.442 +637118.637|222275.015|131.345 +637105.798|222279.883|131.031 +637061.383|222297.086|123.024 +637035.691|222306.867|121.740 +637065.266|222298.924|122.923 +637071.499|222296.382|126.821 +637084.161|222291.469|129.775 +637096.910|222286.622|130.665 +637103.290|222284.202|130.997 +637109.672|222281.785|131.290 +637116.000|222279.392|131.448 +637122.392|222276.978|131.579 +637135.132|222272.181|131.573 +637160.696|222262.558|131.461 +637167.078|222260.178|130.991 +637173.485|222257.764|131.025 +637179.880|222255.383|130.424 +637186.257|222252.997|130.129 +637192.697|222250.589|129.793 +637211.817|222243.450|128.534 +637218.133|222241.042|129.086 +637224.506|222238.650|128.986 +637230.818|222236.275|128.928 +637237.173|222233.874|129.065 +637243.477|222231.496|129.138 +637249.826|222229.125|128.745 +637281.720|222217.262|125.712 +637288.081|222214.912|124.810 +637294.476|222212.534|124.200 +637300.737|222210.197|123.764 +637307.055|222207.807|123.969 +637313.285|222205.439|124.417 +637319.503|222203.070|124.983 +637332.012|222198.334|125.465 +637351.077|222191.235|123.831 +637363.995|222186.526|120.722 +637370.338|222184.151|120.436 +637376.525|222181.823|120.448 +637382.819|222179.445|120.619 +637389.031|222177.114|120.463 +637395.359|222174.736|120.424 +637401.555|222172.401|120.442 +637407.819|222170.045|120.442 +637414.129|222167.686|120.119 +637420.371|222165.348|119.884 +637426.564|222163.010|120.021 +637432.795|222160.673|119.915 +637439.000|222158.332|119.979 +637445.224|222155.991|119.957 +637451.454|222153.650|119.927 +637457.630|222151.330|119.851 +637463.814|222149.008|119.744 +637470.087|222146.679|119.073 +637476.436|222144.326|118.351 +637488.853|222139.669|118.004 +637494.849|222137.374|118.820 +637500.988|222135.048|119.134 +637506.953|222132.753|120.143 +637513.049|222130.427|120.735 +637519.077|222128.129|121.381 +637525.225|222125.800|121.670 +637531.090|222123.530|122.932 +637549.817|222116.568|121.234 +637556.019|222114.248|120.960 +637562.295|222111.935|119.936 +637568.434|222109.637|119.723 +637574.594|222107.332|119.424 +637593.132|222100.410|118.342 +637599.231|222098.124|118.138 +637605.312|222095.842|118.043 +637611.392|222093.559|117.979 +637617.449|222091.276|118.055 +637623.423|222088.999|118.580 +637629.476|222086.731|118.382 +637689.967|222064.054|116.641 +637695.965|222061.798|116.647 +637707.731|222057.342|117.205 +637713.744|222055.081|117.193 +637725.650|222050.612|116.915 +637731.673|222048.360|116.638 +637737.659|222046.113|116.547 +637750.031|222041.566|114.401 +637780.118|222030.376|111.679 +637791.975|222025.935|111.304 +637804.301|222021.434|108.539 +637810.263|222019.215|108.040 +637828.334|222012.546|105.424 +637845.976|222005.950|104.513 +637851.490|222003.831|105.440 +637856.967|222001.716|106.522 +637862.566|221999.564|107.378 +637879.248|221993.197|109.213 +637947.950|221967.493|106.220 +637953.693|221965.350|105.842 +637959.185|221963.272|106.135 +637964.925|221961.150|105.348 +637971.584|221958.843|101.368 +637977.732|221956.633|99.219 +637994.140|221950.433|99.761 +637999.565|221948.382|99.962 +638004.899|221946.349|100.490 +638010.142|221944.346|101.115 +638003.796|221948.096|100.261 +637998.440|221950.147|99.825 +637992.945|221952.223|99.871 +637981.777|221956.426|100.420 +637976.452|221958.477|99.706 +637970.213|221960.726|101.962 +637963.617|221963.034|105.757 +637957.984|221965.155|105.964 +637952.477|221967.252|105.741 +637940.900|221971.565|107.128 +637901.310|221986.549|107.244 +637861.283|222001.722|106.915 +637855.736|222003.862|106.129 +637844.443|222008.214|104.598 +637838.902|222010.363|103.553 +637826.603|222014.890|106.122 +637814.539|222019.382|107.625 +637808.537|222021.623|108.283 +637802.390|222023.896|109.320 +637790.082|222028.447|111.536 +637784.114|222030.700|111.645 +637778.158|222032.937|111.978 +637754.051|222041.992|113.435 +637747.620|222044.327|115.446 +637741.509|222046.607|116.062 +637735.431|222048.884|116.574 +637729.387|222051.152|116.961 +637723.391|222053.428|116.858 +637717.387|222055.687|117.098 +637711.318|222057.985|117.077 +637705.417|222060.232|116.894 +637699.419|222062.518|116.589 +637693.405|222064.788|116.662 +637687.404|222067.059|116.702 +637681.097|222069.400|117.623 +637662.898|222076.273|117.979 +637650.687|222080.888|118.095 +637626.209|222090.133|118.540 +637620.113|222092.449|118.351 +637614.142|222094.735|117.848 +637607.951|222097.079|117.848 +637601.809|222099.399|117.952 +637595.592|222101.742|118.147 +637589.340|222104.074|118.884 +637583.113|222106.433|118.845 +637576.944|222108.750|119.186 +637570.726|222111.088|119.473 +637564.462|222113.447|119.692 +637558.263|222115.782|119.942 +637551.770|222118.159|121.533 +637545.403|222120.521|122.454 +637526.938|222127.550|121.637 +637520.806|222129.888|121.262 +637514.701|222132.226|120.735 +637508.565|222134.582|120.015 +637502.451|222136.938|119.177 +637496.315|222139.297|118.482 +637490.243|222141.629|117.769 +637477.579|222146.380|118.546 +637471.181|222148.770|119.211 +637464.957|222151.108|119.579 +637458.568|222153.510|119.845 +637452.341|222155.866|119.857 +637446.062|222158.243|119.854 +637439.787|222160.618|119.829 +637433.428|222163.017|119.979 +637427.174|222165.391|119.851 +637420.895|222167.762|119.909 +637414.531|222170.158|120.174 +637408.267|222172.529|120.189 +637401.863|222174.943|120.332 +637395.548|222177.336|120.308 +637389.229|222179.726|120.338 +637382.914|222182.115|120.344 +637376.592|222184.502|120.436 +637370.283|222186.913|119.963 +637357.250|222191.695|122.950 +637350.739|222194.070|124.749 +637344.259|222196.468|125.834 +637325.325|222203.674|124.968 +637306.385|222210.907|123.703 +637300.109|222213.281|123.728 +637287.271|222218.085|124.813 +637267.967|222225.284|126.901 +637255.077|222230.091|128.330 +637248.661|222232.493|128.806 +637242.264|222234.901|129.117 +637235.915|222237.312|128.931 +637229.581|222239.729|128.559 +637223.137|222242.155|128.772 +637216.749|222244.557|129.089 +637210.342|222246.989|128.918 +637197.632|222251.802|128.848 +637191.142|222254.210|129.802 +637178.295|222259.017|130.900 +637171.879|222261.440|131.028 +637165.469|222263.863|131.064 +637159.032|222266.274|131.543 +637120.694|222280.785|131.506 +637114.305|222283.209|131.363 +637107.917|222285.635|131.232 +637101.531|222288.058|131.028 +637095.094|222290.512|130.674 +637088.787|222292.926|130.122 +637063.452|222302.862|122.987 +637063.544|222305.922|122.963 +637082.536|222298.449|129.278 +637088.903|222296.013|129.967 +637095.271|222293.581|130.574 +637101.653|222291.158|130.933 +637108.029|222288.735|131.302 +637114.427|222286.321|131.369 +637120.755|222283.925|131.555 +637127.153|222281.508|131.646 +637152.707|222271.876|131.613 +637159.062|222269.486|131.506 +637165.494|222267.078|131.168 +637184.672|222259.891|130.278 +637191.066|222257.505|129.760 +637210.223|222250.330|128.815 +637216.566|222247.925|129.059 +637222.955|222245.532|128.781 +637229.346|222243.136|128.483 +637235.640|222240.753|128.672 +637248.311|222235.971|128.806 +637254.608|222233.617|128.342 +637280.202|222224.096|125.788 +637286.505|222221.736|125.432 +637293.028|222219.341|124.176 +637299.341|222216.978|123.831 +637305.726|222214.592|123.380 +637311.975|222212.220|123.679 +637324.526|222207.456|124.340 +637330.766|222205.082|124.752 +637355.906|222195.594|124.968 +637362.322|222193.250|123.496 +637375.330|222188.528|119.799 +637381.585|222186.148|120.259 +637387.839|222183.789|120.256 +637394.091|222181.430|120.293 +637400.348|222179.070|120.308 +637406.612|222176.708|120.290 +637412.891|222174.346|120.186 +637419.094|222172.008|120.207 +637425.406|222169.643|119.912 +637431.584|222167.323|119.713 +637437.839|222164.955|119.881 +637444.014|222162.636|119.744 +637456.465|222157.942|119.717 +637462.683|222155.595|119.781 +637468.877|222153.266|119.628 +637475.140|222150.916|119.421 +637481.413|222148.581|118.796 +637487.704|222146.246|118.080 +637500.009|222141.586|118.516 +637506.099|222139.257|119.137 +637512.107|222136.956|119.899 +637518.154|222134.630|120.789 +637524.198|222132.326|121.332 +637530.325|222130.013|121.402 +637536.396|222127.684|122.176 +637548.686|222123.051|122.161 +637554.870|222120.747|121.600 +637561.222|222118.409|120.482 +637567.483|222116.096|119.570 +637573.618|222113.791|119.384 +637579.779|222111.484|119.083 +637585.935|222109.173|118.836 +637598.246|222104.571|118.086 +637604.348|222102.279|117.860 +637610.426|222099.993|117.787 +637622.435|222095.430|118.476 +637646.697|222086.298|118.165 +637664.784|222079.492|117.924 +637670.746|222077.243|118.007 +637676.827|222074.957|117.830 +637682.853|222072.695|117.641 +637689.050|222070.406|116.662 +637695.027|222068.150|116.760 +637700.964|222065.910|116.760 +637706.911|222063.670|116.729 +637712.915|222061.405|116.757 +637718.798|222059.174|117.065 +637724.803|222056.918|116.824 +637730.679|222054.700|116.915 +637742.621|222050.216|116.571 +637748.733|222047.957|115.669 +637778.905|222036.725|112.734 +637785.007|222034.473|111.776 +637802.944|222027.795|110.100 +637815.136|222023.305|107.963 +637821.013|222021.107|107.589 +637845.208|222012.192|103.507 +637850.765|222010.046|104.504 +637856.281|222007.922|105.415 +637861.795|222005.800|106.348 +637867.282|222003.679|107.387 +637872.902|222001.536|107.918 +637878.413|221999.412|108.878 +637895.485|221992.980|108.786 +637907.345|221988.588|107.186 +637941.165|221975.842|107.244 +637952.662|221971.574|105.897 +637958.277|221969.465|105.741 +637963.885|221967.359|105.620 +637976.519|221962.863|100.255 +637993.189|221956.590|100.029 +637998.730|221954.515|99.822 +638004.165|221952.457|99.984 +638009.468|221950.439|100.386 +638005.682|221953.887|99.972 +637994.777|221958.020|99.773 +637989.065|221960.150|100.359 +637983.517|221962.244|100.401 +637978.113|221964.308|99.962 +637971.953|221966.527|102.172 +637965.333|221968.846|105.830 +637959.813|221970.943|105.629 +637954.147|221973.080|105.744 +637948.450|221975.208|106.214 +637942.449|221977.408|107.570 +637920.027|221985.900|107.229 +637908.789|221990.164|106.906 +637903.007|221992.337|107.128 +637885.244|221998.933|109.521 +637879.632|222001.082|108.930 +637874.158|222003.194|108.079 +637868.644|222005.325|107.140 +637863.085|222007.477|106.132 +637857.583|222009.604|105.153 +637852.045|222011.753|104.074 +637846.409|222013.917|103.382 +637840.319|222016.173|104.257 +637822.013|222022.930|107.485 +637816.033|222025.164|108.040 +637809.851|222027.429|109.454 +637803.743|222029.694|110.323 +637791.548|222034.229|111.822 +637785.696|222036.448|111.703 +637779.392|222038.752|113.255 +637773.485|222040.990|113.145 +637767.554|222043.233|113.154 +637761.580|222045.479|113.377 +637749.190|222050.054|115.556 +637736.943|222054.614|116.946 +637730.984|222056.864|116.940 +637724.934|222059.159|116.790 +637718.993|222061.405|116.739 +637712.979|222063.679|116.760 +637706.978|222065.947|116.742 +637700.992|222068.214|116.662 +637694.926|222070.506|116.684 +637688.891|222072.792|116.583 +637676.525|222077.401|117.863 +637670.475|222079.687|117.906 +637664.391|222081.988|117.821 +637645.990|222088.913|118.436 +637603.227|222105.107|117.827 +637597.061|222107.424|118.071 +637584.588|222112.106|118.732 +637578.297|222114.471|119.067 +637572.226|222116.775|118.894 +637565.785|222119.150|120.131 +637559.409|222121.497|121.387 +637553.051|222123.877|121.871 +637528.343|222133.253|121.283 +637522.226|222135.588|120.814 +637516.045|222137.950|120.366 +637509.991|222140.278|119.531 +637503.810|222142.659|118.735 +637497.744|222144.991|117.967 +637491.453|222147.353|118.269 +637485.071|222149.742|118.796 +637478.746|222152.105|119.363 +637472.428|222154.488|119.525 +637466.179|222156.844|119.659 +637459.891|222159.222|119.665 +637447.266|222163.995|119.646 +637441.024|222166.348|119.835 +637434.712|222168.744|119.671 +637428.351|222171.139|119.866 +637422.041|222173.511|120.158 +637415.707|222175.903|120.223 +637409.380|222178.296|120.259 +637403.061|222180.686|120.244 +637396.731|222183.075|120.335 +637390.378|222185.486|120.149 +637384.127|222187.852|120.155 +637364.632|222195.039|123.844 +637358.124|222197.438|125.093 +637351.760|222199.815|125.706 +637339.132|222204.619|125.136 +637332.863|222207.024|124.481 +637326.501|222209.447|124.115 +637307.573|222216.649|123.289 +637294.763|222221.453|124.066 +637281.882|222226.244|125.669 +637275.408|222228.649|126.608 +637269.059|222231.033|126.898 +637256.126|222235.861|128.175 +637249.692|222238.263|128.854 +637230.639|222245.496|128.297 +637224.174|222247.916|128.775 +637217.800|222250.321|128.937 +637211.393|222252.750|128.766 +637172.928|222267.188|130.985 +637166.512|222269.608|131.113 +637160.089|222272.025|131.369 +637153.673|222274.442|131.555 +637134.526|222281.675|131.726 +637128.128|222284.096|131.686 +637121.752|222286.525|131.366 +637115.357|222288.945|131.354 +637108.968|222291.368|131.183 +637102.586|222293.794|130.970 +637089.857|222298.674|129.757 +637064.510|222308.611|122.838 +637036.334|222322.659|120.930 +637061.886|222312.911|123.124 +637068.314|222310.513|122.603 +637099.894|222298.193|130.686 +637106.274|222295.769|131.064 +637112.601|222293.371|131.287 +637119.002|222290.960|131.223 +637125.379|222288.533|131.619 +637131.716|222286.138|131.683 +637138.116|222283.724|131.695 +637157.212|222276.521|131.625 +637163.570|222274.132|131.439 +637170.008|222271.724|131.009 +637182.730|222266.938|130.717 +637195.553|222262.177|129.214 +637214.640|222255.018|128.370 +637220.903|222252.631|128.848 +637227.295|222250.235|128.541 +637233.653|222247.864|127.934 +637239.917|222245.477|128.473 +637252.584|222240.689|128.653 +637258.939|222238.311|128.208 +637265.252|222235.961|127.611 +637271.613|222233.581|127.160 +637290.837|222226.452|124.715 +637297.186|222224.092|123.965 +637316.220|222216.948|123.219 +637328.696|222212.202|124.033 +637334.969|222209.828|124.142 +637359.932|222200.327|125.849 +637372.788|222195.606|123.228 +637385.663|222190.900|120.201 +637391.994|222188.519|120.067 +637398.255|222186.160|120.043 +637404.497|222183.798|120.165 +637410.764|222181.436|120.134 +637416.972|222179.095|120.113 +637423.251|222176.733|120.018 +637429.466|222174.389|119.988 +637435.775|222172.020|119.732 +637442.012|222169.676|119.579 +637448.211|222167.332|119.704 +637454.393|222165.007|119.564 +637460.675|222162.636|119.598 +637466.838|222160.310|119.613 +637473.083|222157.960|119.525 +637479.261|222155.631|119.473 +637485.534|222153.275|119.253 +637491.786|222150.940|118.790 +637498.156|222148.578|117.997 +637504.240|222146.271|118.260 +637510.388|222143.918|118.918 +637516.353|222141.620|119.936 +637522.427|222139.291|120.649 +637528.538|222136.959|121.170 +637534.668|222134.646|121.222 +637540.721|222132.335|121.725 +637565.392|222123.051|121.308 +637571.787|222120.707|119.979 +637578.035|222118.391|119.156 +637584.271|222116.056|118.793 +637590.434|222113.745|118.497 +637596.619|222111.432|118.135 +637608.780|222106.857|117.891 +637620.905|222102.264|118.278 +637663.416|222086.256|117.723 +637681.463|222079.462|117.495 +637687.635|222077.160|116.903 +637693.679|222074.893|116.662 +637711.562|222068.135|116.928 +637717.539|222065.889|116.787 +637723.526|222063.624|116.912 +637729.411|222061.402|116.934 +637735.349|222059.159|117.022 +637747.294|222054.672|116.675 +637753.469|222052.401|115.498 +637789.701|222038.917|111.810 +637819.782|222027.749|108.219 +637825.795|222025.530|107.275 +637831.818|222023.305|106.330 +637855.367|222014.515|104.464 +637860.911|222012.372|105.528 +637866.440|222010.244|106.415 +637871.866|222008.132|107.692 +637882.979|222003.889|108.771 +637900.642|221997.327|106.744 +637906.311|221995.193|106.683 +637911.981|221993.057|106.647 +637917.671|221990.902|106.796 +637923.176|221988.808|107.156 +637928.751|221986.689|107.518 +637940.099|221982.431|107.083 +637945.908|221980.285|106.168 +637951.492|221978.182|106.095 +637957.234|221976.037|105.705 +637962.849|221973.927|105.552 +637968.363|221971.849|105.543 +637975.087|221969.523|101.313 +637980.994|221967.359|99.990 +637991.963|221963.217|100.115 +638002.961|221959.077|99.990 +638008.404|221957.017|100.136 +638012.242|221957.569|99.969 +638006.807|221959.635|99.801 +638001.367|221961.705|99.661 +637984.801|221967.987|99.505 +637972.837|221972.361|102.718 +637966.458|221974.634|105.543 +637960.971|221976.716|105.482 +637955.363|221978.835|105.632 +637949.627|221980.990|106.028 +637943.988|221983.120|106.089 +637938.075|221985.309|107.165 +637926.879|221989.564|106.851 +637921.372|221991.670|106.519 +637915.715|221993.813|106.488 +637909.996|221995.980|106.479 +637904.327|221998.125|106.537 +637898.594|222000.293|106.613 +637880.976|222006.882|108.314 +637875.402|222009.016|107.866 +637869.888|222011.153|106.936 +637864.493|222013.265|105.549 +637853.233|222017.602|104.126 +637841.538|222022.016|104.498 +637835.311|222024.299|105.979 +637829.307|222026.542|106.589 +637823.171|222028.795|108.037 +637792.901|222040.081|111.667 +637786.955|222042.319|111.969 +637768.913|222049.097|113.054 +637738.354|222060.475|116.998 +637732.407|222062.731|116.952 +637726.476|222064.983|116.861 +637720.493|222067.254|116.739 +637696.404|222076.374|116.864 +637690.485|222078.632|116.537 +637684.322|222080.940|117.086 +637659.947|222090.133|117.894 +637647.798|222094.741|117.766 +637611.018|222108.661|117.982 +637598.728|222113.319|117.933 +637592.550|222115.641|118.302 +637586.274|222118.007|118.537 +637573.670|222122.697|120.085 +637567.230|222125.057|121.707 +637554.812|222129.738|122.057 +637548.655|222132.082|121.792 +637542.590|222134.399|121.362 +637536.375|222136.764|121.085 +637524.034|222141.470|120.445 +637517.904|222143.808|120.085 +637511.838|222146.158|118.948 +637499.442|222150.882|118.366 +637493.127|222153.248|118.839 +637486.833|222155.610|119.214 +637480.548|222157.972|119.561 +637474.260|222160.353|119.534 +637467.975|222162.733|119.528 +637461.674|222165.114|119.619 +637455.392|222167.491|119.628 +637449.126|222169.865|119.564 +637442.798|222172.264|119.500 +637436.483|222174.639|119.799 +637430.146|222177.034|119.845 +637423.855|222179.406|120.034 +637417.539|222181.801|119.991 +637411.160|222184.215|119.973 +637404.902|222186.584|119.970 +637398.514|222188.998|120.055 +637392.302|222191.363|119.762 +637385.806|222193.774|120.728 +637372.712|222198.559|124.167 +637366.211|222200.958|125.364 +637359.895|222203.339|125.569 +637340.979|222210.550|124.523 +637334.618|222212.976|124.145 +637328.400|222215.360|123.600 +637322.051|222217.786|123.121 +637315.724|222220.185|123.030 +637302.888|222225.022|123.459 +637296.488|222227.412|124.142 +637290.020|222229.820|124.941 +637277.191|222234.611|126.194 +637270.656|222237.037|127.184 +637257.824|222241.847|128.105 +637251.402|222244.249|128.687 +637238.697|222249.107|127.696 +637225.875|222253.905|128.818 +637219.458|222256.334|128.806 +637213.067|222258.770|128.455 +637187.363|222268.426|129.927 +637180.868|222270.824|131.131 +637174.500|222273.217|131.461 +637161.693|222278.064|131.500 +637148.882|222282.904|131.689 +637142.481|222285.324|131.765 +637136.153|222287.726|131.592 +637129.756|222290.146|131.662 +637123.315|222292.593|131.430 +637116.997|222295.001|131.110 +637110.535|222297.437|131.272 +637104.165|222299.869|130.802 +637091.424|222304.737|129.784 +637072.331|222312.128|126.358 +637066.077|222314.670|122.792 +637034.018|222326.908|120.457 +637035.207|222329.453|120.524 +637067.226|222317.240|122.899 +637092.552|222307.343|129.519 +637118.012|222297.644|131.080 +637124.391|222295.215|131.454 +637130.789|222292.798|131.506 +637137.187|222290.377|131.561 +637143.584|222287.954|131.631 +637149.991|222285.534|131.622 +637156.334|222283.138|131.610 +637162.753|222280.721|131.464 +637188.378|222271.111|130.007 +637194.767|222268.721|129.574 +637201.207|222266.341|128.501 +637213.942|222261.537|128.355 +637220.266|222259.123|128.839 +637226.637|222256.718|128.766 +637239.417|222251.948|127.586 +637245.647|222249.549|128.473 +637258.372|222244.764|128.074 +637290.261|222232.886|124.633 +637296.634|222230.499|124.243 +637303.004|222228.137|123.319 +637309.384|222225.748|122.923 +637315.696|222223.376|122.627 +637322.009|222220.977|122.923 +637328.254|222218.600|123.289 +637340.726|222213.842|124.188 +637353.232|222209.084|124.834 +637365.720|222204.326|125.672 +637372.057|222201.946|125.355 +637378.430|222199.617|123.764 +637397.742|222192.518|119.781 +637403.979|222190.153|119.939 +637410.239|222187.788|119.936 +637422.703|222183.075|119.954 +637428.963|222180.707|120.000 +637435.199|222178.360|119.814 +637441.417|222176.013|119.771 +637447.614|222173.688|119.464 +637453.890|222171.313|119.503 +637460.041|222168.988|119.549 +637466.277|222166.634|119.473 +637472.434|222164.303|119.546 +637478.664|222161.950|119.537 +637484.778|222159.639|119.509 +637491.057|222157.280|119.238 +637497.220|222154.967|118.961 +637503.548|222152.601|118.439 +637509.644|222150.288|118.616 +637527.853|222143.314|120.475 +637533.900|222141.004|121.003 +637540.093|222138.660|121.039 +637546.193|222136.343|121.286 +637552.328|222134.024|121.338 +637558.382|222131.707|121.878 +637570.692|222127.077|121.475 +637576.977|222124.755|120.418 +637583.311|222122.423|119.119 +637589.544|222120.104|118.433 +637595.701|222117.790|118.177 +637601.803|222115.498|117.918 +637614.047|222110.886|117.577 +637620.037|222108.604|117.982 +637644.308|222099.456|117.479 +637686.526|222083.528|116.964 +637692.539|222081.275|116.547 +637716.366|222072.247|117.034 +637728.344|222067.727|116.949 +637734.279|222065.480|117.031 +637740.158|222063.255|117.101 +637746.148|222060.997|116.986 +637770.599|222051.932|113.453 +637788.482|222045.232|112.249 +637794.459|222042.995|111.828 +637818.370|222034.086|109.320 +637836.655|222027.353|105.760 +637842.837|222025.094|104.217 +637848.789|222022.875|103.617 +637854.511|222020.699|103.967 +637860.012|222018.575|104.931 +637876.429|222012.223|107.970 +637882.065|222010.074|108.448 +637899.691|222003.511|106.494 +637911.063|221999.220|106.494 +637916.729|221997.080|106.470 +637922.380|221994.943|106.519 +637927.974|221992.831|106.558 +637933.564|221990.704|106.869 +637939.135|221988.591|107.009 +637944.988|221986.412|106.400 +637950.675|221984.288|105.933 +637956.296|221982.175|105.723 +637961.907|221980.066|105.574 +637967.515|221977.954|105.449 +637973.627|221975.750|103.334 +637980.137|221973.452|100.103 +637985.742|221971.349|99.840 +637991.208|221969.273|100.072 +637996.776|221967.188|99.749 +638002.235|221965.122|99.807 +638007.749|221963.046|99.706 +638013.156|221961.001|99.749 +638019.295|221960.370|100.410 +638008.581|221964.460|99.749 +638002.991|221966.573|99.895 +637991.951|221970.751|99.990 +637986.480|221972.833|99.776 +637980.570|221975.019|100.880 +637974.303|221977.274|103.269 +637968.131|221979.508|105.373 +637962.477|221981.648|105.431 +637956.875|221983.763|105.559 +637951.184|221985.909|105.793 +637945.506|221988.040|106.238 +637939.690|221990.216|106.714 +637934.155|221992.328|106.436 +637928.440|221994.498|106.357 +637922.783|221996.644|106.321 +637917.141|221998.784|106.241 +637911.456|222000.933|106.348 +637905.638|222003.118|106.717 +637899.996|222005.270|106.449 +637882.330|222011.872|108.326 +637876.694|222014.042|107.616 +637871.128|222016.188|106.887 +637860.116|222020.467|104.726 +637854.529|222022.628|103.849 +637848.735|222024.838|103.544 +637842.797|222027.060|104.089 +637836.610|222029.337|105.409 +637830.331|222031.632|107.144 +637811.982|222038.438|110.042 +637793.916|222045.199|111.740 +637787.762|222047.497|112.377 +637739.128|222065.694|117.031 +637733.127|222067.971|116.943 +637721.118|222072.509|117.168 +637691.156|222083.896|116.455 +637648.386|222100.033|117.778 +637642.327|222102.349|117.357 +637636.212|222104.656|117.543 +637630.037|222106.988|117.748 +637623.938|222109.305|117.577 +637617.869|222111.621|117.260 +637611.706|222113.944|117.461 +637605.479|222116.294|117.699 +637599.319|222118.613|117.930 +637593.092|222120.960|118.226 +637586.795|222123.310|118.930 +637580.406|222125.669|120.189 +637574.021|222128.025|121.460 +637561.579|222132.735|121.551 +637549.332|222137.404|120.948 +637543.190|222139.730|120.966 +637530.831|222144.442|120.393 +637524.695|222146.783|120.049 +637518.584|222149.124|119.576 +637512.479|222151.483|118.677 +637506.312|222153.824|118.567 +637499.939|222156.216|119.009 +637493.672|222158.582|119.171 +637487.409|222160.947|119.351 +637481.176|222163.309|119.357 +637474.881|222165.693|119.400 +637468.663|222168.052|119.339 +637462.363|222170.432|119.451 +637456.103|222172.813|119.299 +637449.799|222175.190|119.482 +637443.420|222177.592|119.793 +637437.211|222179.945|119.777 +637430.804|222182.368|119.899 +637424.541|222184.743|119.872 +637418.210|222187.138|119.933 +637411.967|222189.510|119.799 +637405.661|222191.902|119.723 +637399.254|222194.320|119.951 +637386.322|222199.096|122.399 +637373.380|222203.863|125.154 +637341.836|222215.875|123.947 +637329.245|222220.688|123.094 +637322.950|222223.093|122.688 +637316.629|222225.498|122.521 +637310.252|222227.893|122.899 +637303.803|222230.313|123.420 +637297.405|222232.703|124.063 +637284.555|222237.504|125.456 +637271.668|222242.323|126.757 +637258.814|222247.135|127.910 +637252.468|222249.519|128.318 +637246.037|222251.954|128.333 +637239.783|222254.387|127.077 +637226.859|222259.205|128.675 +637220.492|222261.613|128.757 +637214.176|222264.030|128.236 +637201.329|222268.892|128.391 +637188.463|222273.699|129.763 +637169.157|222280.953|130.982 +637162.802|222283.349|131.201 +637156.389|222285.772|131.369 +637149.985|222288.192|131.445 +637137.178|222293.035|131.662 +637130.789|222295.462|131.525 +637118.018|222300.317|131.189 +637111.632|222302.743|131.064 +637098.904|222307.620|129.976 +637092.539|222310.058|129.403 +637086.166|222312.494|128.986 +637067.238|222319.971|122.874 +637039.218|222333.662|120.914 +637077.452|222318.913|127.562 +637083.810|222316.471|128.455 +637090.189|222314.045|128.903 +637096.560|222311.613|129.516 +637115.680|222304.328|131.000 +637128.399|222299.518|131.305 +637134.791|222297.098|131.445 +637141.198|222294.687|131.363 +637147.532|222292.295|131.503 +637153.945|222289.884|131.339 +637160.361|222287.473|131.168 +637166.722|222285.086|130.915 +637173.150|222282.675|130.625 +637179.563|222280.261|130.583 +637185.936|222277.875|130.260 +637198.830|222273.095|128.580 +637205.197|222270.700|128.467 +637211.610|222268.316|127.760 +637217.877|222265.893|128.952 +637224.268|222263.500|128.626 +637230.718|222261.120|127.593 +637243.443|222256.350|127.035 +637249.649|222253.951|128.227 +637256.044|222251.552|127.986 +637262.405|222249.178|127.449 +637268.775|222246.803|126.892 +637281.549|222242.054|125.523 +637287.938|222239.677|124.862 +637300.663|222234.940|123.633 +637307.058|222232.557|123.075 +637313.380|222230.195|122.646 +637319.759|222227.808|122.301 +637332.259|222223.062|122.917 +637338.532|222220.666|123.569 +637344.698|222218.313|124.087 +637351.026|222215.918|124.289 +637369.792|222208.822|124.715 +637376.001|222206.469|124.944 +637382.335|222204.091|124.691 +637388.766|222201.741|123.203 +637395.216|222199.385|121.640 +637407.996|222194.667|119.607 +637414.244|222192.305|119.717 +637420.505|222189.940|119.765 +637432.983|222185.233|119.765 +637439.192|222182.893|119.781 +637445.435|222180.546|119.604 +637451.662|222178.202|119.549 +637457.928|222175.852|119.232 +637464.155|222173.505|119.241 +637470.309|222171.179|119.311 +637476.549|222168.829|119.272 +637482.718|222166.500|119.293 +637488.960|222164.147|119.272 +637495.077|222161.840|119.272 +637501.359|222159.484|119.022 +637507.526|222157.170|118.769 +637513.719|222154.836|118.738 +637519.769|222152.531|119.250 +637525.862|222150.200|119.872 +637538.103|222145.554|120.451 +637550.304|222140.931|120.963 +637556.477|222138.608|120.814 +637593.595|222124.718|118.598 +637606.007|222120.085|117.641 +637612.109|222117.796|117.418 +637618.278|222115.480|117.214 +637624.328|222113.194|117.303 +637630.366|222110.908|117.488 +637642.473|222106.345|117.434 +637648.542|222104.053|117.513 +637666.616|222097.231|117.592 +637672.621|222094.976|117.440 +637690.918|222088.127|116.382 +637696.889|222085.871|116.477 +637720.612|222076.886|117.232 +637732.657|222072.363|116.867 +637738.592|222070.119|116.973 +637762.671|222061.113|115.522 +637775.000|222056.580|113.130 +637786.781|222052.121|113.489 +637793.023|222049.856|111.664 +637798.951|222047.619|111.737 +637804.852|222045.409|111.411 +637822.872|222038.707|109.518 +637835.232|222034.193|106.546 +637841.621|222031.888|104.406 +637847.631|222029.660|103.562 +637853.395|222027.475|103.730 +637864.621|222023.171|105.053 +637869.967|222021.074|106.641 +637875.624|222018.919|107.019 +637881.162|222016.788|107.878 +637898.731|222010.229|106.366 +637910.188|222005.907|106.269 +637915.879|222003.764|106.144 +637921.600|222001.603|106.174 +637927.266|221999.467|106.177 +637932.930|221997.327|106.217 +637944.192|221993.081|106.086 +637949.791|221990.963|106.165 +637955.613|221988.799|105.461 +637961.249|221986.671|105.446 +637966.845|221984.565|105.363 +637972.389|221982.465|105.473 +637979.009|221980.148|101.822 +637985.267|221977.911|99.252 +637990.601|221975.863|99.953 +638007.216|221969.602|99.761 +638012.751|221967.520|99.584 +638023.209|221963.494|101.136 +638026.564|221963.366|101.569 +638010.828|221969.422|99.551 +638005.289|221971.510|99.755 +637999.766|221973.604|99.685 +637988.574|221977.820|100.127 +637982.944|221979.944|100.252 +637976.531|221982.218|103.404 +637970.359|221984.449|105.507 +637964.845|221986.549|105.312 +637959.258|221988.658|105.388 +637953.473|221990.819|105.955 +637947.807|221992.959|106.129 +637942.171|221995.099|105.958 +637936.532|221997.229|106.061 +637930.863|221999.375|106.052 +637925.249|222001.500|106.098 +637919.518|222003.670|106.116 +637913.800|222005.834|106.104 +637902.319|222010.159|106.543 +637879.077|222018.913|107.491 +637873.521|222021.053|106.729 +637862.505|222025.329|104.583 +637856.864|222027.499|103.919 +637851.185|222029.672|103.419 +637845.257|222031.903|103.672 +637839.112|222034.174|104.830 +637826.487|222038.765|108.613 +637802.106|222047.829|111.978 +637796.233|222050.067|111.691 +637790.213|222052.316|112.307 +637747.516|222068.257|116.797 +637735.516|222072.796|116.903 +637693.426|222088.755|116.400 +637687.382|222091.029|116.690 +637681.149|222093.357|117.306 +637675.093|222095.646|117.394 +637662.898|222100.261|117.431 +637644.631|222107.189|117.171 +637632.296|222111.844|117.485 +637626.157|222114.166|117.522 +637620.104|222116.477|117.129 +637613.883|222118.823|117.324 +637607.717|222121.146|117.577 +637595.165|222125.843|118.665 +637569.885|222135.277|121.490 +637563.868|222137.593|120.725 +637557.616|222139.949|120.960 +637551.551|222142.269|120.494 +637545.248|222144.646|120.710 +637539.121|222146.987|120.277 +637526.822|222151.675|119.698 +637520.665|222154.034|119.110 +637514.484|222156.396|118.665 +637508.202|222158.768|118.872 +637501.917|222161.133|119.128 +637495.669|222163.498|119.183 +637489.426|222165.860|119.223 +637476.905|222170.603|119.174 +637470.596|222172.987|119.311 +637464.329|222175.367|119.174 +637458.017|222177.748|119.381 +637451.692|222180.128|119.686 +637445.398|222182.505|119.814 +637439.076|222184.904|119.717 +637432.798|222187.279|119.784 +637426.467|222189.674|119.793 +637420.157|222192.070|119.677 +637413.857|222194.466|119.497 +637407.472|222196.859|119.997 +637394.515|222201.641|122.560 +637388.031|222204.024|123.950 +637362.590|222213.635|124.499 +637356.314|222216.015|124.383 +637350.014|222218.423|123.950 +637343.646|222220.828|124.112 +637331.128|222225.644|122.582 +637324.855|222228.052|121.942 +637318.470|222230.451|122.347 +637312.029|222232.871|122.716 +637299.179|222237.677|123.889 +637292.797|222240.070|124.432 +637286.414|222242.460|124.974 +637260.671|222252.091|127.337 +637254.264|222254.499|127.739 +637247.899|222256.913|127.654 +637241.651|222259.346|126.282 +637235.198|222261.778|126.547 +637228.706|222264.162|128.047 +637222.296|222266.560|128.629 +637215.917|222269.002|128.086 +637196.672|222276.256|128.790 +637190.195|222278.667|129.650 +637183.754|222281.087|130.034 +637177.320|222283.504|130.427 +637158.114|222290.740|131.159 +637151.698|222293.160|131.400 +637145.300|222295.586|131.351 +637138.900|222298.010|131.342 +637132.499|222300.430|131.409 +637126.113|222302.859|131.162 +637119.719|222305.282|131.171 +637106.975|222310.159|130.287 +637100.611|222312.604|129.635 +637094.246|222315.045|129.028 +637068.856|222324.978|122.865 +637062.453|222327.402|122.908 +637036.785|222337.228|121.006 +637037.974|222339.935|121.006 +637044.405|222337.457|122.042 +637050.818|222335.049|121.765 +637057.195|222332.601|122.603 +637063.586|222330.172|122.972 +637069.993|222327.755|122.896 +637082.591|222322.756|127.833 +637101.702|222315.456|129.626 +637120.764|222308.193|130.973 +637127.153|222305.776|131.131 +637139.942|222300.942|131.232 +637146.282|222298.549|131.238 +637152.695|222296.138|131.058 +637159.105|222293.724|130.918 +637165.457|222291.335|130.772 +637171.812|222288.942|130.647 +637178.237|222286.531|130.363 +637184.650|222284.156|129.452 +637197.458|222279.350|128.842 +637216.581|222272.166|128.169 +637222.906|222269.758|128.620 +637229.307|222267.365|128.135 +637235.762|222265.018|126.343 +637242.160|222262.619|125.998 +637254.748|222257.782|127.742 +637261.109|222255.408|127.209 +637267.428|222253.058|126.480 +637280.245|222248.281|125.243 +637286.627|222245.904|124.630 +637293.019|222243.523|123.969 +637312.106|222236.391|122.487 +637318.388|222234.023|122.445 +637324.755|222231.630|122.195 +637331.040|222229.262|122.164 +637337.264|222226.884|122.713 +637368.591|222214.985|124.261 +637381.094|222210.255|124.478 +637387.379|222207.901|124.133 +637400.187|222203.168|122.128 +637412.992|222198.447|119.851 +637419.310|222196.084|119.427 +637425.555|222193.722|119.564 +637431.752|222191.381|119.631 +637438.016|222189.013|119.683 +637444.170|222186.693|119.640 +637450.442|222184.325|119.668 +637456.685|222181.978|119.497 +637462.921|222179.631|119.384 +637469.139|222177.306|119.000 +637475.345|222174.956|119.140 +637481.499|222172.630|119.244 +637487.732|222170.277|119.226 +637493.910|222167.948|119.201 +637500.094|222165.616|119.156 +637506.288|222163.285|119.076 +637512.503|222160.947|118.881 +637518.745|222158.609|118.549 +637524.872|222156.299|118.580 +637530.940|222153.970|119.345 +637536.985|222151.663|119.890 +637543.114|222149.346|119.939 +637549.177|222147.018|120.777 +637555.285|222144.722|120.613 +637561.487|222142.382|120.652 +637567.568|222140.083|120.695 +637573.737|222137.761|120.607 +637598.518|222128.495|118.872 +637604.757|222126.194|117.836 +637610.954|222123.874|117.412 +637617.056|222121.585|117.187 +637623.146|222119.293|117.053 +637629.205|222116.989|117.431 +637647.353|222110.155|117.184 +637677.446|222098.789|117.431 +637689.662|222094.226|116.483 +637695.685|222091.961|116.324 +637719.405|222082.967|117.278 +637737.312|222076.209|117.263 +637743.271|222073.975|116.961 +637749.178|222071.750|116.922 +637779.868|222060.402|112.246 +637785.723|222058.189|112.298 +637791.648|222055.967|112.060 +637797.616|222053.733|111.679 +637803.444|222051.527|111.898 +637833.687|222040.337|107.430 +637846.074|222035.826|104.156 +637857.790|222031.428|103.702 +637863.341|222029.285|104.733 +637868.940|222027.146|105.312 +637874.301|222025.061|106.589 +637879.980|222022.894|107.137 +637903.138|222014.216|106.013 +637908.832|222012.064|106.092 +637914.568|222009.906|106.013 +637920.241|222007.769|105.964 +637925.916|222005.633|105.909 +637931.570|222003.496|105.964 +637937.203|222001.378|105.866 +637942.903|221999.232|105.775 +637948.557|221997.107|105.635 +637954.223|221994.980|105.476 +637959.840|221992.871|105.266 +637965.482|221990.746|105.232 +637971.002|221988.668|105.168 +637976.739|221986.522|104.836 +637983.310|221984.227|101.118 +637989.473|221982.002|99.121 +637994.749|221979.969|100.014 +638000.230|221977.905|99.972 +638005.820|221975.805|99.798 +638022.117|221969.645|100.103 +638037.754|221963.643|102.291 +638038.714|221964.616|102.303 +638028.137|221968.670|101.361 +638023.135|221970.636|99.935 +638012.248|221974.772|99.652 +638006.792|221976.844|99.581 +637995.658|221981.041|100.023 +637990.458|221983.068|98.871 +637984.371|221985.275|100.843 +637977.732|221987.607|104.562 +637971.923|221989.765|105.403 +637966.382|221991.880|105.077 +637960.819|221993.989|105.071 +637955.095|221996.129|105.671 +637949.517|221998.247|105.519 +637943.814|222000.405|105.604 +637938.175|222002.536|105.723 +637932.491|222004.685|105.772 +637926.800|222006.837|105.869 +637921.143|222008.979|105.854 +637915.471|222011.125|105.915 +637909.734|222013.295|105.994 +637903.952|222015.484|106.019 +637898.146|222017.666|106.406 +637892.309|222019.852|106.927 +637886.353|222022.071|107.680 +637880.754|222024.223|107.073 +637875.142|222026.374|106.537 +637864.078|222030.660|104.586 +637858.510|222032.818|103.650 +637852.877|222034.997|102.715 +637846.683|222037.265|104.303 +637828.066|222044.102|108.658 +637803.722|222053.163|111.917 +637797.921|222055.376|111.594 +637791.895|222057.641|111.969 +637785.946|222059.890|112.054 +637780.014|222062.137|112.072 +637773.967|222064.414|112.328 +637761.318|222069.040|115.669 +637749.074|222073.609|117.083 +637743.136|222075.862|116.995 +637737.089|222078.148|117.141 +637719.057|222084.975|117.190 +637695.167|222094.074|116.217 +637664.571|222105.610|117.303 +637627.873|222119.512|117.223 +637621.795|222121.829|116.970 +637615.580|222124.176|117.117 +637609.417|222126.498|117.367 +637603.044|222128.858|118.436 +637571.777|222140.617|120.302 +637565.621|222142.948|120.357 +637559.378|222145.308|120.558 +637553.209|222147.655|120.357 +637540.929|222152.364|119.284 +637534.738|222154.711|119.247 +637528.599|222157.073|118.546 +637522.433|222159.417|118.406 +637516.118|222161.791|118.827 +637509.848|222164.160|118.982 +637503.548|222166.549|118.976 +637497.303|222168.914|119.025 +637491.051|222171.277|119.144 +637484.751|222173.663|119.201 +637478.542|222176.022|119.080 +637472.214|222178.427|118.930 +637465.939|222180.789|119.308 +637459.654|222183.170|119.342 +637453.350|222185.550|119.537 +637447.017|222187.952|119.531 +637440.689|222190.351|119.515 +637434.419|222192.725|119.543 +637428.101|222195.124|119.482 +637421.794|222197.520|119.369 +637408.941|222202.311|121.012 +637364.233|222219.118|123.883 +637357.923|222221.526|123.542 +637351.586|222223.931|123.453 +637345.323|222226.314|123.274 +637332.719|222231.158|121.984 +637326.404|222233.563|121.774 +637319.954|222235.983|122.231 +637307.211|222240.777|122.957 +637300.810|222243.200|123.063 +637287.978|222248.004|124.249 +637281.543|222250.418|124.804 +637275.091|222252.826|125.581 +637268.690|222255.237|125.849 +637262.295|222257.617|126.739 +637255.803|222260.044|127.431 +637243.193|222264.896|125.995 +637230.270|222269.715|127.568 +637223.774|222272.132|128.513 +637217.352|222274.564|128.562 +637211.049|222276.985|127.910 +637204.599|222279.408|128.361 +637198.220|222281.809|128.705 +637191.767|222284.227|129.309 +637172.525|222291.459|130.500 +637166.115|222293.886|130.625 +637153.295|222298.729|130.930 +637146.898|222301.155|130.918 +637140.491|222303.575|131.061 +637134.102|222306.002|130.964 +637127.707|222308.428|130.933 +637121.383|222310.833|130.769 +637108.581|222315.731|129.845 +637102.214|222318.172|129.296 +637095.840|222320.611|128.891 +637083.097|222325.490|127.833 +637064.102|222332.937|122.880 +637057.664|222335.409|122.249 +637051.227|222337.887|121.509 +637044.890|222340.298|121.320 +637038.440|222342.764|120.908 +637037.633|222346.412|120.866 +637044.030|222343.980|121.231 +637050.425|222341.550|121.530 +637063.227|222336.701|121.862 +637069.558|222334.214|123.880 +637088.580|222326.816|128.288 +637094.950|222324.381|128.879 +637101.284|222321.985|128.982 +637107.652|222319.553|129.638 +637114.031|222317.127|130.001 +637120.401|222314.694|130.522 +637126.793|222312.277|130.671 +637133.124|222309.879|130.814 +637139.518|222307.462|130.887 +637152.268|222302.655|130.787 +637158.684|222300.244|130.586 +637165.106|222297.833|130.321 +637171.398|222295.462|130.232 +637190.609|222288.287|128.745 +637197.013|222285.860|128.903 +637203.423|222283.477|128.184 +637209.760|222281.072|128.437 +637216.167|222278.685|127.818 +637222.403|222276.293|128.629 +637228.788|222273.897|128.339 +637241.697|222269.163|125.517 +637248.027|222266.786|125.297 +637254.224|222264.381|126.623 +637260.594|222261.976|126.648 +637266.962|222259.602|126.081 +637273.298|222257.252|125.209 +637286.070|222252.497|123.908 +637298.847|222247.733|122.685 +637311.536|222242.954|122.512 +637330.458|222235.852|121.713 +637336.798|222233.456|121.780 +637343.015|222231.078|122.368 +637355.515|222226.330|123.057 +637368.064|222221.578|123.377 +637399.465|222209.758|122.746 +637412.169|222205.039|121.186 +637418.487|222202.702|120.250 +637431.139|222197.971|119.314 +637437.324|222195.630|119.461 +637443.591|222193.265|119.497 +637449.799|222190.918|119.525 +637456.020|222188.574|119.476 +637462.229|222186.227|119.528 +637468.462|222183.880|119.436 +637474.677|222181.551|119.083 +637480.932|222179.198|118.909 +637487.086|222176.873|118.997 +637493.331|222174.520|118.936 +637499.500|222172.188|118.976 +637511.866|222167.525|118.933 +637518.120|222165.165|118.887 +637524.277|222162.852|118.699 +637530.538|222160.508|118.287 +637536.600|222158.198|118.711 +637542.712|222155.866|119.235 +637561.003|222148.907|120.405 +637567.111|222146.606|120.274 +637573.256|222144.287|120.320 +637579.449|222141.958|120.088 +637616.577|222128.096|117.110 +637628.748|222123.496|117.217 +637652.989|222114.349|117.193 +637665.092|222109.795|116.906 +637695.304|222098.429|116.184 +637719.216|222089.389|116.489 +637736.973|222082.656|117.141 +637773.574|222069.077|112.435 +637791.347|222062.396|111.908 +637797.248|222060.189|111.520 +637803.146|222057.952|111.694 +637809.007|222055.751|111.514 +637833.159|222046.805|108.091 +637851.655|222040.051|103.504 +637857.647|222037.826|102.739 +637863.167|222035.701|103.635 +637868.614|222033.574|105.065 +637874.161|222031.443|105.863 +637879.769|222029.297|106.421 +637885.359|222027.158|107.052 +637897.000|222022.811|106.110 +637902.861|222020.617|105.766 +637908.500|222018.489|105.787 +637914.230|222016.328|105.723 +637919.890|222014.195|105.705 +637925.547|222012.058|105.711 +637931.223|222009.918|105.668 +637936.889|222007.782|105.677 +637942.522|222005.660|105.586 +637948.164|222003.536|105.476 +637953.824|222001.408|105.327 +637959.484|221999.281|105.190 +637965.083|221997.174|105.059 +637970.734|221995.044|104.989 +637976.150|221992.983|105.306 +637982.161|221990.792|103.769 +637988.632|221988.515|100.426 +637994.338|221986.394|99.801 +637999.693|221984.355|100.191 +638005.295|221982.251|99.956 +638016.366|221978.094|99.569 +638021.858|221976.021|99.542 +638027.137|221974.007|100.029 +638037.488|221970.008|101.959 +638019.499|221979.054|99.493 +638014.022|221981.142|99.261 +637991.704|221989.548|100.106 +637985.535|221991.770|102.379 +637979.241|221994.029|104.909 +637973.672|221996.138|104.894 +637968.131|221998.241|104.812 +637962.480|222000.378|104.894 +637956.817|222002.515|105.040 +637951.212|222004.627|105.226 +637945.506|222006.782|105.327 +637939.849|222008.915|105.510 +637934.188|222011.058|105.479 +637928.519|222013.204|105.507 +637922.853|222015.350|105.531 +637917.123|222017.517|105.574 +637911.463|222019.657|105.607 +637905.763|222021.818|105.574 +637899.898|222024.018|105.930 +637876.904|222032.720|106.031 +637871.284|222034.884|105.287 +637865.819|222037.021|103.928 +637860.357|222039.146|102.818 +637854.431|222041.377|103.059 +637848.030|222043.693|105.229 +637829.566|222050.496|109.015 +637805.380|222059.521|111.639 +637799.552|222061.737|111.429 +637793.599|222063.990|111.502 +637775.698|222070.741|112.036 +637769.261|222073.079|114.056 +637738.823|222084.463|116.870 +637720.785|222091.288|116.967 +637696.895|222100.380|116.001 +637690.830|222102.672|116.092 +637654.165|222116.510|116.931 +637629.552|222125.809|117.318 +637623.459|222128.126|117.156 +637617.217|222130.473|117.473 +637598.560|222137.483|118.543 +637579.779|222144.527|119.881 +637573.570|222146.862|120.201 +637561.158|222151.562|120.177 +637548.924|222156.244|119.192 +637542.730|222158.606|118.793 +637536.613|222160.947|118.321 +637530.358|222163.312|118.324 +637524.116|222165.659|118.665 +637517.834|222168.027|118.900 +637511.595|222170.390|118.872 +637505.349|222172.752|118.903 +637499.113|222175.114|118.921 +637492.813|222177.498|118.958 +637486.543|222179.878|118.811 +637480.240|222182.259|118.918 +637473.970|222184.618|119.235 +637467.618|222187.020|119.296 +637461.330|222189.394|119.366 +637455.054|222191.771|119.378 +637448.705|222194.167|119.485 +637442.469|222196.542|119.262 +637436.129|222198.937|119.354 +637429.792|222201.330|119.451 +637417.000|222206.115|120.604 +637410.562|222208.508|121.567 +637378.702|222220.505|122.859 +637366.074|222225.293|122.713 +637353.406|222230.100|122.457 +637347.088|222232.505|122.222 +637340.733|222234.931|121.780 +637334.487|222237.312|121.460 +637328.105|222239.738|121.286 +637321.737|222242.134|121.564 +637315.297|222244.551|121.981 +637308.978|222246.953|121.823 +637296.146|222251.784|122.365 +637270.372|222261.382|125.596 +637263.950|222263.784|126.166 +637257.479|222266.213|126.590 +637244.845|222271.053|125.435 +637231.931|222275.869|126.949 +637225.396|222278.271|128.376 +637219.007|222280.670|128.775 +637206.218|222285.537|128.260 +637199.845|222287.933|128.589 +637180.596|222295.163|129.775 +637154.938|222304.837|130.598 +637135.800|222312.073|130.738 +637116.658|222319.364|129.940 +637110.273|222321.790|129.738 +637084.734|222331.568|127.632 +637072.054|222336.509|124.804 +637059.292|222341.474|122.118 +637052.894|222343.907|121.969 +637040.062|222348.814|121.000 +637033.664|222351.246|120.820 +637036.545|222353.331|120.908 +637042.884|222350.923|121.119 +637055.735|222346.034|121.804 +637068.494|222341.139|123.277 +637074.818|222338.649|125.313 +637087.532|222333.738|127.477 +637113.037|222324.003|129.403 +637119.335|222321.586|130.183 +637132.093|222316.727|130.933 +637138.506|222314.316|130.674 +637144.898|222311.893|130.802 +637157.685|222307.096|130.122 +637164.082|222304.673|130.244 +637176.802|222299.887|129.790 +637183.233|222297.473|129.473 +637189.603|222295.081|129.217 +637202.365|222290.295|128.422 +637208.733|222287.896|128.294 +637215.146|222285.510|127.565 +637221.418|222283.084|128.690 +637227.798|222280.685|128.440 +637240.615|222275.966|125.901 +637259.598|222268.785|126.050 +637272.332|222264.030|124.907 +637285.128|222259.273|123.289 +637297.859|222254.530|121.908 +637304.144|222252.162|121.780 +637329.443|222242.633|121.155 +637335.737|222240.259|121.058 +637342.046|222237.857|121.414 +637348.234|222235.504|121.747 +637360.795|222230.746|121.942 +637373.337|222225.988|122.332 +637379.589|222223.632|122.216 +637385.870|222221.249|122.384 +637404.698|222214.174|121.628 +637411.013|222211.791|121.603 +637417.253|222209.453|121.256 +637423.647|222207.088|120.213 +637429.972|222204.747|119.287 +637436.217|222202.378|119.436 +637442.451|222200.035|119.232 +637448.659|222197.691|119.259 +637454.856|222195.344|119.363 +637461.077|222192.997|119.332 +637467.292|222190.647|119.348 +637473.467|222188.321|119.250 +637479.697|222185.971|119.198 +637485.912|222183.639|118.872 +637492.167|222181.283|118.720 +637498.327|222178.951|118.805 +637504.511|222176.620|118.769 +637510.680|222174.288|118.820 +637516.865|222171.950|118.808 +637523.055|222169.615|118.778 +637529.279|222167.275|118.558 +637535.451|222164.958|118.318 +637541.700|222162.611|118.004 +637547.747|222160.301|118.543 +637559.829|222155.680|119.750 +637565.980|222153.339|120.085 +637572.094|222151.038|119.921 +637584.396|222146.408|119.613 +637590.642|222144.073|119.137 +637596.832|222141.760|118.650 +637603.029|222139.443|118.150 +637621.454|222132.521|117.394 +637627.553|222130.229|117.193 +637633.585|222127.940|117.367 +637639.611|222125.654|117.592 +637657.923|222118.775|116.851 +637664.013|222116.492|116.522 +637675.955|222111.953|117.092 +637694.252|222105.101|115.900 +637700.181|222102.849|116.178 +637712.126|222098.313|116.647 +637724.071|222093.805|116.605 +637730.039|222091.544|116.769 +637735.974|222089.300|116.827 +637741.920|222087.054|116.830 +637790.368|222068.986|112.185 +637796.522|222066.709|111.234 +637802.359|222064.496|111.389 +637808.224|222062.280|111.459 +637820.007|222057.845|111.127 +637826.027|222055.611|110.338 +637832.156|222053.368|108.853 +637856.781|222044.355|103.135 +637862.798|222042.111|102.547 +637868.260|222039.984|103.940 +637873.686|222037.871|105.205 +637884.841|222033.595|106.577 +637890.550|222031.431|106.769 +637896.494|222029.236|105.818 +637913.785|222022.729|105.446 +637919.226|222020.626|106.491 +637925.182|222018.431|105.370 +637930.836|222016.298|105.403 +637936.511|222014.158|105.370 +637942.113|222012.043|105.388 +637947.837|222009.891|105.211 +637953.546|222007.742|105.120 +637959.036|222005.657|105.351 +637964.812|222003.505|104.809 +637970.396|222001.402|104.745 +637975.940|221999.305|104.839 +637981.567|221997.190|104.653 +637987.455|221995.035|103.343 +637993.990|221992.731|100.017 +638010.696|221986.455|99.450 +638016.195|221984.385|99.383 +638026.915|221980.307|100.008 +638037.333|221976.305|101.496 +638042.652|221974.278|101.877 +638042.539|221976.436|101.782 +638037.248|221978.469|101.331 +638015.966|221986.628|99.578 +637993.353|221995.135|101.069 +637986.953|221997.421|103.952 +637981.295|221999.540|104.486 +637975.635|222001.682|104.577 +637970.094|222003.789|104.498 +637964.516|222005.901|104.571 +637958.649|222008.096|105.239 +637953.132|222010.205|104.882 +637947.502|222012.338|104.955 +637941.802|222014.493|105.068 +637936.118|222016.648|105.147 +637930.516|222018.773|105.171 +637924.791|222020.943|105.190 +637913.252|222025.298|105.616 +637907.653|222027.444|105.205 +637896.149|222031.788|105.620 +637890.227|222034.016|106.007 +637884.466|222036.186|106.293 +637878.846|222038.356|105.543 +637873.344|222040.490|104.598 +637867.852|222042.636|103.358 +637862.344|222044.784|102.184 +637831.358|222056.187|109.262 +637825.198|222058.467|110.374 +637819.260|222060.695|110.850 +637807.303|222065.203|111.420 +637801.411|222067.446|111.225 +637795.541|222069.674|111.240 +637777.551|222076.465|111.929 +637764.939|222081.086|115.163 +637740.789|222090.175|116.650 +637734.788|222092.452|116.614 +637728.802|222094.726|116.547 +637716.738|222099.301|116.595 +637710.773|222101.569|116.473 +637698.895|222106.110|115.733 +637692.860|222108.402|115.699 +637680.457|222113.041|117.031 +637674.404|222115.346|116.842 +637662.264|222119.957|116.699 +637637.642|222129.260|117.440 +637631.570|222131.576|117.159 +637613.044|222138.575|117.769 +637600.602|222143.259|118.345 +637588.167|222147.941|118.985 +637575.676|222152.635|119.683 +637569.516|222154.967|119.765 +637557.296|222159.630|119.037 +637551.149|222161.992|118.369 +637545.080|222164.312|117.961 +637538.780|222166.686|118.235 +637532.544|222169.033|118.528 +637526.277|222171.402|118.634 +637520.086|222173.742|118.695 +637513.780|222176.132|118.714 +637507.544|222178.494|118.708 +637501.305|222180.856|118.735 +637495.102|222183.216|118.555 +637488.762|222185.599|118.887 +637482.440|222187.983|119.131 +637476.146|222190.363|119.211 +637469.874|222192.741|119.171 +637457.322|222197.496|119.189 +637451.034|222199.870|119.308 +637444.734|222202.266|119.122 +637432.075|222207.036|119.653 +637425.671|222209.428|120.283 +637419.292|222211.821|120.768 +637412.897|222214.235|120.951 +637393.948|222221.401|121.198 +637368.552|222231.008|121.442 +637336.950|222243.008|120.860 +637330.525|222245.432|121.088 +637324.151|222247.827|121.442 +637317.833|222250.229|121.280 +637311.493|222252.628|121.359 +637298.688|222257.465|121.606 +637292.291|222259.882|121.728 +637285.829|222262.290|122.533 +637272.902|222267.097|124.350 +637266.389|222269.520|125.252 +637260.043|222271.903|125.645 +637253.712|222274.357|124.538 +637247.317|222276.762|124.849 +637234.357|222281.605|126.181 +637227.825|222283.974|128.352 +637221.388|222286.397|128.605 +637215.057|222288.850|127.550 +637208.653|222291.243|128.205 +637195.818|222296.092|128.440 +637182.998|222300.902|129.400 +637170.218|222305.715|129.958 +637163.814|222308.135|130.058 +637157.401|222310.555|130.257 +637150.997|222312.972|130.400 +637144.590|222315.392|130.561 +637125.415|222322.659|130.470 +637119.060|222325.103|129.677 +637112.678|222327.530|129.443 +637106.256|222329.995|128.754 +637099.876|222332.425|128.483 +637093.497|222334.854|128.141 +637067.988|222344.760|123.088 +637061.678|222347.189|122.286 +637055.223|222349.643|122.064 +637048.779|222352.109|121.548 +637042.449|222354.523|121.122 +637035.987|222356.967|121.180 +637041.818|222357.824|121.134 +637048.215|222355.391|121.433 +637054.674|222352.935|121.795 +637061.072|222350.505|122.076 +637067.476|222348.082|122.192 +637092.945|222338.201|127.504 +637105.701|222333.336|128.486 +637112.089|222330.910|128.778 +637131.170|222323.643|130.016 +637163.180|222311.549|130.147 +637169.550|222309.162|129.796 +637175.979|222306.751|129.491 +637182.404|222304.334|129.290 +637201.591|222297.135|128.342 +637207.958|222294.739|128.199 +637214.377|222292.353|127.425 +637220.699|222289.902|128.720 +637227.097|222287.509|128.269 +637233.613|222285.141|126.364 +637265.474|222273.181|124.993 +637271.860|222270.803|124.246 +637291.013|222263.698|121.719 +637297.454|222261.290|121.247 +637303.724|222258.919|121.292 +637310.100|222256.532|120.908 +637322.652|222251.790|120.972 +637329.004|222249.394|120.881 +637335.328|222247.026|120.515 +637341.613|222244.648|120.549 +637347.947|222242.249|120.704 +637360.502|222237.498|120.972 +637379.332|222230.384|121.006 +637417.082|222216.177|119.957 +637423.318|222213.815|120.116 +637429.600|222211.446|119.970 +637435.870|222209.102|119.485 +637442.225|222206.734|118.845 +637448.458|222204.387|118.689 +637454.621|222202.040|119.046 +637460.827|222199.693|119.113 +637473.266|222194.993|119.131 +637479.429|222192.664|119.137 +637485.671|222190.311|119.037 +637491.853|222187.980|118.948 +637498.083|222185.645|118.577 +637504.261|222183.310|118.555 +637510.418|222180.978|118.702 +637516.606|222178.644|118.680 +637522.793|222176.306|118.662 +637528.926|222173.989|118.631 +637535.119|222171.652|118.625 +637541.304|222169.329|118.321 +637547.570|222166.982|117.918 +637553.697|222164.662|118.013 +637559.753|222162.349|118.537 +637571.906|222157.716|119.393 +637577.959|222155.418|119.604 +637584.204|222153.083|119.089 +637602.770|222146.124|118.007 +637621.228|222139.199|117.065 +637627.340|222136.904|116.797 +637675.757|222118.619|116.635 +637681.710|222116.352|117.037 +637687.824|222114.059|116.659 +637694.027|222111.770|115.571 +637700.001|222109.512|115.629 +637705.926|222107.244|116.233 +637723.849|222100.471|116.254 +637735.818|222095.954|116.153 +637747.684|222091.465|116.333 +637778.350|222080.086|112.115 +637784.275|222077.864|111.825 +637796.263|222073.362|111.271 +637802.124|222071.147|111.322 +637808.065|222068.915|111.063 +637819.888|222064.471|110.576 +637825.905|222062.225|110.051 +637831.803|222060.009|109.789 +637862.630|222048.713|102.629 +637868.309|222046.555|102.892 +637873.847|222044.409|103.974 +637879.352|222042.282|104.928 +637884.869|222040.151|105.848 +637890.495|222037.999|106.354 +637896.308|222035.823|105.897 +637919.244|222027.164|105.735 +637925.069|222024.981|105.330 +637936.523|222020.665|105.089 +637942.202|222018.520|105.046 +637947.920|222016.368|104.882 +637953.543|222014.243|104.842 +637959.075|222012.137|105.162 +637964.833|222009.985|104.665 +637970.502|222007.849|104.516 +637976.117|222005.736|104.352 +637981.646|222003.639|104.498 +637987.312|222001.512|104.181 +637992.905|221999.400|104.141 +638005.155|221994.977|99.953 +638016.259|221990.795|99.636 +638021.797|221988.713|99.441 +638027.281|221986.641|99.438 +638032.645|221984.592|99.865 +638043.036|221980.587|101.444 +638045.313|221981.206|101.389 +638039.942|221983.251|101.194 +638029.423|221987.308|99.862 +638024.004|221989.375|99.648 +638018.566|221991.444|99.499 +638012.986|221993.553|99.642 +638007.438|221995.644|99.920 +637995.146|222000.101|104.022 +637983.892|222004.353|104.364 +637978.296|222006.471|104.458 +637972.697|222008.598|104.345 +637967.061|222010.735|104.370 +637961.255|222012.902|105.043 +637955.747|222015.011|104.644 +637950.108|222017.145|104.748 +637944.341|222019.327|104.851 +637938.651|222021.479|104.943 +637932.960|222023.634|105.046 +637927.126|222025.826|105.464 +637921.426|222027.978|105.641 +637886.938|222041.051|105.723 +637881.339|222043.215|104.885 +637875.795|222045.370|103.824 +637870.244|222047.525|102.806 +637864.575|222049.704|102.261 +637858.241|222052.011|104.144 +637827.530|222063.368|109.981 +637821.498|222065.639|110.313 +637815.533|222067.882|110.646 +637809.565|222070.129|111.021 +637803.560|222072.390|111.301 +637797.595|222074.658|111.164 +637785.592|222079.178|111.807 +637779.548|222081.458|112.078 +637773.574|222083.707|112.328 +637767.591|222085.975|112.374 +637748.729|222092.937|116.199 +637724.736|222102.044|116.028 +637706.606|222108.911|116.153 +637700.638|222111.210|115.462 +637694.582|222113.502|115.529 +637676.102|222120.448|116.763 +637602.248|222148.401|117.711 +637589.688|222153.120|118.686 +637577.206|222157.823|119.320 +637564.916|222162.523|118.564 +637558.796|222164.870|118.065 +637552.587|222167.241|117.726 +637546.378|222169.573|118.168 +637540.075|222171.950|118.452 +637533.872|222174.300|118.531 +637527.551|222176.693|118.589 +637521.348|222179.040|118.702 +637515.048|222181.433|118.692 +637508.903|222183.773|118.476 +637502.606|222186.163|118.473 +637496.318|222188.528|118.848 +637490.018|222190.915|118.906 +637483.715|222193.301|119.003 +637477.430|222195.685|119.012 +637464.878|222200.449|118.970 +637458.547|222202.851|118.930 +637452.366|222205.228|118.287 +637446.008|222207.630|118.470 +637439.656|222210.011|119.095 +637433.297|222212.409|119.351 +637426.939|222214.808|119.628 +637420.618|222217.204|119.643 +637414.244|222219.621|119.634 +637401.586|222224.409|119.933 +637395.200|222226.823|120.070 +637369.780|222236.449|120.387 +637363.495|222238.836|120.332 +637357.152|222241.247|120.256 +637344.460|222246.062|120.223 +637338.035|222248.492|120.399 +637331.668|222250.894|120.643 +637325.291|222253.295|120.975 +637312.618|222258.130|120.418 +637306.202|222260.553|120.625 +637299.773|222262.973|121.003 +637293.437|222265.372|121.103 +637286.941|222267.810|121.594 +637280.544|222270.200|122.402 +637274.064|222272.601|123.493 +637267.538|222275.028|124.478 +637261.198|222277.420|124.767 +637254.776|222279.862|124.642 +637248.411|222282.276|124.590 +637241.913|222284.699|125.438 +637228.898|222289.497|128.281 +637222.519|222291.901|128.580 +637216.191|222294.358|127.452 +637209.799|222296.757|127.910 +637203.377|222299.189|128.053 +637190.518|222304.039|128.608 +637184.071|222306.456|129.159 +637171.315|222311.290|129.266 +637158.483|222316.133|129.702 +637152.070|222318.556|129.952 +637145.675|222320.986|129.842 +637132.889|222325.841|129.748 +637120.121|222330.703|129.370 +637107.377|222335.576|128.534 +637069.183|222350.350|122.765 +637062.800|222352.795|122.298 +637056.357|222355.260|121.862 +637043.567|222360.128|121.545 +637037.108|222362.579|121.497 +637033.978|222366.706|121.463 +637040.379|222364.282|121.603 +637046.783|222361.862|121.673 +637059.584|222357.019|122.003 +637065.976|222354.590|122.335 +637072.438|222352.142|122.509 +637078.738|222349.707|123.694 +637091.467|222344.742|127.035 +637097.794|222342.340|127.361 +637104.158|222339.898|128.108 +637110.535|222337.469|128.629 +637129.701|222330.209|129.245 +637136.025|222327.807|129.528 +637148.815|222322.970|129.790 +637155.170|222320.583|129.543 +637161.577|222318.169|129.491 +637193.523|222306.181|128.236 +637199.921|222303.755|128.434 +637206.303|222301.369|128.050 +637219.041|222296.577|127.724 +637225.417|222294.145|128.309 +637231.818|222291.755|127.788 +637238.292|222289.417|125.672 +637251.155|222284.638|124.209 +637257.461|222282.255|124.261 +637263.840|222279.850|124.221 +637270.205|222277.475|123.697 +637276.627|222275.107|122.566 +637289.432|222270.358|120.914 +637295.774|222267.972|120.780 +637308.485|222263.198|120.347 +637314.828|222260.809|120.277 +637321.088|222258.440|120.454 +637333.698|222253.676|120.561 +637340.004|222251.308|120.347 +637346.414|222248.918|119.787 +637352.690|222246.544|119.927 +637365.309|222241.798|119.622 +637371.667|222239.400|119.637 +637377.891|222237.046|119.750 +637384.228|222234.669|119.467 +637390.540|222232.292|119.400 +637396.822|222229.935|119.134 +637409.413|222225.193|118.939 +637428.274|222218.085|118.808 +637434.501|222215.744|118.631 +637440.796|222213.379|118.439 +637447.105|222211.013|118.177 +637453.426|222208.666|117.412 +637459.605|222206.298|118.116 +637465.658|222203.979|118.857 +637471.934|222201.610|118.918 +637478.088|222199.285|118.970 +637484.327|222196.935|118.897 +637490.490|222194.609|118.930 +637496.803|222192.232|118.827 +637502.932|222189.924|118.720 +637509.223|222187.568|118.385 +637515.402|222185.236|118.412 +637521.559|222182.905|118.607 +637527.694|222180.594|118.549 +637533.958|222178.232|118.488 +637540.103|222175.919|118.409 +637546.308|222173.581|118.375 +637552.499|222171.258|118.080 +637558.720|222168.936|117.616 +637564.831|222166.619|117.824 +637570.936|222164.284|118.473 +637589.255|222157.366|118.628 +637595.470|222155.037|118.348 +637607.939|222150.401|116.958 +637632.579|222141.165|115.800 +637638.483|222138.895|116.669 +637668.933|222127.434|116.120 +637699.169|222116.071|115.279 +637705.177|222113.794|115.501 +637735.062|222102.511|115.742 +637765.573|222091.175|112.234 +637789.439|222082.199|111.679 +637801.350|222077.730|111.207 +637807.245|222075.511|111.130 +637813.183|222073.283|110.893 +637819.141|222071.052|110.594 +637825.125|222068.812|110.207 +637831.062|222066.596|109.768 +637843.068|222062.146|108.155 +637855.529|222057.610|104.821 +637861.689|222055.355|103.361 +637873.420|222050.950|102.895 +637879.041|222048.789|103.650 +637884.436|222046.699|104.803 +637890.087|222044.531|105.470 +637895.765|222042.373|105.781 +637930.153|222029.404|105.546 +637935.886|222027.252|105.281 +637941.711|222025.082|104.696 +637947.408|222022.936|104.611 +637953.129|222020.784|104.443 +637958.856|222018.629|104.278 +637964.409|222016.532|104.294 +637970.073|222014.402|104.163 +637975.724|222012.271|104.089 +637981.225|222010.183|104.336 +638010.337|221999.421|99.743 +638015.921|221997.321|99.600 +638021.547|221995.221|99.085 +638032.337|221991.118|99.703 +638042.914|221987.058|101.099 +638042.326|221988.622|100.980 +638031.798|221992.679|99.691 +638021.115|221996.763|98.972 +638015.427|221998.894|99.481 +638009.825|222001.006|99.716 +638003.147|222003.341|103.736 +637980.762|222011.802|104.251 +637975.242|222013.902|104.089 +637969.603|222016.036|104.141 +637963.964|222018.172|104.208 +637958.356|222020.300|104.184 +637952.623|222022.461|104.394 +637946.923|222024.616|104.501 +637941.187|222026.768|105.001 +637935.362|222028.944|105.607 +637895.238|222044.144|105.808 +637889.645|222046.296|105.193 +637884.088|222048.439|104.428 +637878.535|222050.609|103.169 +637872.829|222052.791|102.764 +637867.169|222054.965|102.191 +637848.436|222061.820|107.168 +637842.306|222064.084|108.347 +637836.140|222066.370|109.451 +637830.145|222068.620|109.875 +637824.162|222070.869|110.265 +637818.184|222073.116|110.667 +637812.174|222075.380|110.950 +637800.326|222079.861|111.136 +637770.279|222091.193|112.292 +637758.056|222095.777|113.325 +637709.337|222114.114|115.934 +637703.464|222116.382|115.099 +637666.744|222130.266|115.830 +637660.718|222132.561|115.550 +637636.014|222141.897|116.114 +637617.684|222148.889|115.276 +637611.322|222151.248|116.306 +637604.973|222153.604|117.293 +637598.603|222155.979|118.083 +637592.388|222158.320|118.382 +637579.910|222163.038|118.631 +637573.740|222165.388|118.382 +637567.635|222167.732|117.772 +637561.460|222170.079|117.577 +637555.178|222172.438|118.065 +637548.856|222174.812|118.418 +637542.672|222177.159|118.354 +637536.354|222179.552|118.385 +637530.160|222181.899|118.418 +637523.848|222184.289|118.449 +637517.678|222186.629|118.378 +637511.372|222189.019|118.406 +637505.087|222191.384|118.720 +637498.787|222193.771|118.759 +637492.474|222196.154|118.887 +637486.193|222198.538|118.866 +637479.898|222200.918|118.924 +637473.629|222203.299|118.851 +637467.344|222205.701|118.455 +637461.190|222208.054|118.019 +637455.033|222210.450|116.739 +637448.580|222212.851|117.604 +637442.234|222215.250|117.714 +637435.843|222217.649|118.196 +637429.509|222220.045|118.275 +637416.853|222224.833|118.403 +637397.767|222232.054|118.634 +637391.369|222234.468|118.897 +637385.051|222236.854|119.015 +637372.310|222241.673|119.195 +637359.539|222246.486|119.726 +637353.178|222248.891|119.817 +637340.379|222253.722|120.232 +637308.573|222265.777|120.149 +637302.221|222268.176|120.354 +637295.829|222270.596|120.354 +637289.404|222273.010|120.744 +637282.967|222275.424|121.292 +637276.496|222277.829|122.256 +637270.022|222280.228|123.313 +637257.147|222285.071|124.081 +637250.777|222287.485|124.069 +637231.248|222294.693|127.903 +637224.799|222297.117|128.324 +637218.511|222299.546|127.410 +637205.630|222304.392|128.099 +637180.048|222314.036|129.080 +637167.228|222318.888|129.226 +637160.827|222321.315|129.208 +637154.420|222323.738|129.315 +637135.236|222331.020|129.062 +637128.902|222333.424|128.958 +637116.070|222338.310|128.504 +637103.317|222343.187|127.620 +637084.267|222350.585|124.057 +637077.860|222353.084|122.658 +637071.523|222355.492|122.481 +637065.068|222357.952|122.231 +637058.615|222360.411|121.966 +637052.220|222362.850|121.695 +637045.817|222365.273|121.765 +637039.361|222367.736|121.445 +637046.481|222368.205|121.917 +637052.940|222365.758|122.124 +637059.347|222363.344|122.027 +637065.744|222360.914|122.277 +637072.139|222358.488|122.527 +637078.595|222356.038|122.856 +637084.929|222353.633|123.118 +637110.343|222343.812|127.690 +637123.099|222338.954|128.598 +637129.481|222336.527|128.934 +637135.821|222334.132|128.958 +637161.363|222324.485|129.043 +637167.697|222322.086|129.235 +637174.046|222319.690|129.193 +637180.471|222317.279|128.885 +637193.264|222312.475|128.385 +637205.989|222307.687|128.089 +637212.384|222305.297|127.577 +637218.757|222302.905|127.355 +637225.045|222300.485|128.278 +637231.425|222298.089|127.998 +637244.327|222293.361|125.087 +637250.795|222290.978|123.898 +637257.107|222288.597|123.895 +637263.426|222286.214|123.850 +637269.879|222283.821|122.984 +637282.695|222279.075|121.067 +637289.044|222276.692|120.820 +637295.400|222274.308|120.530 +637301.767|222271.922|120.155 +637308.064|222269.557|119.921 +637314.428|222267.167|119.637 +637320.683|222264.796|119.848 +637327.010|222262.403|119.979 +637339.666|222257.639|119.698 +637345.948|222255.264|119.720 +637352.266|222252.893|119.454 +637358.582|222250.522|119.250 +637371.210|222245.770|118.906 +637377.540|222243.392|118.631 +637383.801|222241.039|118.458 +637396.401|222236.303|118.043 +637402.732|222233.922|117.882 +637408.999|222231.563|117.769 +637415.323|222229.180|117.690 +637421.578|222226.817|117.705 +637440.357|222219.749|117.299 +637446.706|222217.384|116.702 +637459.236|222212.669|116.382 +637477.542|222205.640|118.823 +637483.769|222203.293|118.772 +637489.929|222200.964|118.811 +637496.153|222198.614|118.827 +637502.323|222196.285|118.827 +637508.577|222193.932|118.686 +637514.786|222191.601|118.482 +637521.007|222189.266|118.214 +637527.167|222186.934|118.357 +637533.351|222184.599|118.360 +637539.511|222182.265|118.537 +637545.684|222179.948|118.293 +637551.889|222177.610|118.220 +637558.049|222175.291|118.095 +637564.237|222172.968|117.827 +637570.510|222170.621|117.437 +637576.514|222168.332|117.915 +637588.779|222163.690|118.159 +637594.930|222161.368|118.202 +637619.970|222152.083|114.818 +637626.181|222149.764|114.331 +637662.483|222136.014|115.309 +637668.421|222133.753|115.736 +637698.636|222122.362|115.458 +637704.716|222120.091|114.977 +637734.745|222108.771|114.715 +637759.105|222099.703|112.179 +637770.983|222095.223|112.136 +637794.898|222086.252|111.054 +637800.808|222084.018|111.130 +637806.675|222081.802|111.142 +637818.541|222077.349|110.661 +637824.497|222075.115|110.353 +637830.416|222072.902|109.960 +637842.422|222068.440|108.552 +637848.433|222066.221|107.595 +637873.106|222057.196|101.797 +637884.341|222052.895|103.087 +637889.739|222050.789|104.467 +637895.232|222048.668|105.498 +637900.846|222046.534|105.799 +637906.589|222044.367|105.879 +637935.103|222033.613|105.793 +637940.790|222031.474|105.696 +637946.569|222029.316|105.269 +637952.394|222027.158|104.461 +637958.082|222025.015|104.416 +637963.632|222022.921|104.419 +637969.436|222020.754|103.995 +637975.065|222018.629|103.974 +637980.567|222016.545|104.208 +638002.887|222008.150|103.690 +638009.462|222005.849|100.023 +638020.673|222001.646|99.542 +638026.253|221999.558|99.188 +638036.970|221995.474|100.048 +638047.614|221991.417|100.977 +638049.647|221992.228|100.941 +638044.276|221994.273|100.755 +638028.363|222000.381|99.133 +638022.779|222002.490|99.277 +638011.602|222006.693|99.865 +638005.061|222008.998|103.416 +637982.515|222017.496|104.263 +637977.022|222019.602|103.779 +637971.392|222021.732|103.800 +637965.711|222023.875|104.019 +637960.017|222026.018|104.300 +637954.305|222028.173|104.437 +637948.444|222030.358|105.141 +637942.683|222032.525|105.504 +637936.935|222034.686|105.836 +637908.430|222045.491|105.659 +637902.721|222047.653|105.708 +637896.981|222049.841|105.394 +637891.437|222051.984|104.574 +637886.088|222054.087|103.001 +637880.467|222056.254|102.239 +637874.883|222058.412|101.343 +637868.714|222060.689|102.553 +637831.903|222074.283|109.649 +637825.911|222076.532|110.085 +637819.949|222078.773|110.417 +637813.984|222081.016|110.789 +637808.016|222083.268|110.923 +637802.027|222085.527|111.161 +637796.196|222087.743|111.027 +637790.146|222090.020|111.292 +637772.114|222096.814|112.023 +637754.158|222103.617|112.029 +637735.800|222110.481|113.791 +637729.920|222112.737|113.209 +637705.442|222121.935|114.748 +637699.288|222124.240|115.285 +637662.828|222138.072|114.824 +637619.793|222154.372|114.849 +637613.511|222156.707|115.769 +637607.116|222159.088|116.687 +637588.362|222166.138|117.869 +637582.095|222168.497|118.183 +637576.063|222170.816|117.498 +637569.793|222173.194|117.498 +637563.591|222175.529|117.860 +637557.287|222177.906|118.113 +637551.082|222180.256|118.171 +637544.806|222182.627|118.299 +637538.627|222184.971|118.247 +637532.370|222187.343|118.311 +637526.152|222189.708|118.138 +637519.830|222192.098|118.266 +637513.542|222194.466|118.595 +637507.288|222196.828|118.723 +637501.000|222199.215|118.705 +637494.712|222201.598|118.695 +637488.418|222203.982|118.763 +637482.197|222206.341|118.766 +637475.942|222208.740|118.156 +637463.592|222213.513|116.294 +637457.441|222215.890|115.398 +637450.976|222218.292|116.361 +637444.609|222220.694|116.626 +637419.164|222230.301|117.363 +637406.472|222235.111|117.400 +637400.153|222237.504|117.501 +637393.762|222239.915|117.680 +637387.373|222242.326|117.900 +637381.033|222244.712|118.241 +637374.584|222247.145|118.494 +637368.198|222249.552|118.756 +637361.855|222251.936|119.204 +637355.467|222254.365|119.037 +637349.084|222256.770|119.357 +637342.650|222259.196|119.610 +637336.298|222261.598|119.704 +637329.949|222264.000|119.805 +637323.557|222266.426|119.762 +637317.181|222268.852|119.579 +637310.774|222271.276|119.698 +637304.336|222273.693|120.162 +637297.957|222276.116|120.076 +637291.516|222278.527|120.637 +637285.097|222280.944|121.012 +637278.687|222283.358|121.338 +637272.155|222285.781|122.377 +637265.672|222288.177|123.624 +637259.287|222290.591|123.783 +637252.852|222293.026|123.837 +637246.406|222295.425|124.782 +637239.938|222297.848|125.325 +637233.367|222300.247|127.230 +637226.935|222302.637|128.208 +637220.522|222305.069|128.208 +637207.779|222309.912|127.928 +637201.344|222312.335|128.248 +637175.674|222322.031|128.970 +637169.276|222324.457|128.912 +637156.481|222329.313|128.806 +637150.086|222331.742|128.733 +637143.685|222334.165|128.751 +637105.323|222348.789|127.151 +637092.597|222353.770|124.011 +637086.236|222356.230|123.036 +637073.395|222361.128|122.472 +637067.000|222363.560|122.283 +637060.596|222365.983|122.353 +637058.057|222370.299|122.408 +637070.871|222365.459|122.441 +637090.122|222358.156|123.213 +637096.505|222355.718|123.773 +637109.176|222350.774|127.010 +637147.516|222336.226|128.583 +637153.853|222333.827|128.681 +637160.260|222331.410|128.669 +637166.670|222328.993|128.595 +637173.007|222326.591|128.781 +637185.842|222321.760|128.541 +637204.999|222314.554|127.952 +637211.439|222312.140|127.647 +637217.819|222309.748|127.349 +637224.088|222307.321|128.531 +637230.492|222304.932|127.967 +637237.027|222302.573|125.782 +637249.881|222297.790|124.359 +637262.633|222293.014|123.581 +637268.992|222290.637|123.115 +637275.408|222288.268|122.039 +637288.221|222283.489|120.881 +637294.601|222281.105|120.366 +637300.953|222278.719|120.155 +637307.244|222276.354|119.957 +637313.675|222273.943|119.595 +637319.979|222271.574|119.354 +637326.315|222269.182|119.406 +637338.937|222264.415|119.467 +637345.241|222262.043|119.311 +637351.538|222259.669|119.226 +637357.905|222257.273|119.107 +637364.233|222254.899|118.796 +637370.585|222252.524|118.311 +637383.179|222247.791|117.876 +637389.595|222245.389|117.470 +637395.904|222243.033|116.949 +637402.202|222240.649|117.065 +637408.499|222238.290|116.726 +637414.814|222235.907|116.720 +637427.345|222231.179|116.638 +637439.857|222226.473|116.312 +637452.518|222221.736|115.449 +637458.748|222219.389|115.330 +637477.234|222212.330|117.010 +637483.312|222209.986|118.016 +637489.390|222207.661|118.604 +637495.605|222205.311|118.683 +637501.844|222202.961|118.625 +637508.013|222200.629|118.647 +637514.192|222198.297|118.631 +637520.449|222195.941|118.522 +637526.688|222193.603|118.165 +637532.830|222191.290|118.040 +637538.999|222188.955|118.177 +637545.196|222186.617|118.153 +637551.395|222184.279|118.122 +637557.543|222181.963|118.055 +637563.761|222179.619|117.967 +637569.943|222177.296|117.748 +637576.136|222174.971|117.488 +637582.336|222172.645|117.205 +637606.951|222163.379|116.675 +637632.073|222154.071|113.093 +637650.169|222147.194|114.041 +637656.180|222144.908|114.383 +637662.221|222142.619|114.590 +637668.280|222140.324|114.715 +637674.187|222138.066|115.315 +637680.223|222135.773|115.599 +637686.239|222133.500|115.666 +637698.319|222128.955|115.330 +637704.524|222126.654|114.550 +637710.608|222124.365|114.373 +637722.678|222119.829|113.974 +637740.997|222112.983|112.532 +637794.864|222092.726|111.008 +637800.704|222090.517|111.124 +637806.684|222088.270|110.914 +637824.497|222081.583|110.161 +637830.468|222079.346|109.801 +637842.520|222074.877|108.201 +637854.888|222070.345|105.397 +637861.049|222068.080|104.156 +637867.135|222065.843|102.992 +637879.148|222061.387|101.383 +637890.355|222057.101|102.547 +637895.771|222054.977|104.120 +637901.337|222052.840|104.882 +637906.866|222050.722|105.528 +637912.612|222048.549|105.601 +637918.299|222046.400|105.674 +637935.399|222039.938|105.836 +637941.098|222037.795|105.690 +637946.826|222035.646|105.452 +637952.598|222033.485|105.059 +637958.423|222031.315|104.510 +637964.175|222029.169|104.007 +637969.890|222027.030|103.657 +637981.064|222022.799|103.946 +638003.439|222014.368|103.684 +638015.723|222009.943|99.389 +638026.759|222005.782|99.307 +638037.491|222001.692|100.103 +638048.208|221997.616|100.779 +638047.519|222000.049|100.621 +638042.106|222002.109|100.374 +638037.141|222004.078|98.603 +638025.976|222008.281|99.091 +638020.484|222010.369|98.938 +638008.401|222014.780|102.288 +637985.535|222023.342|104.291 +637980.052|222025.442|103.766 +637974.486|222027.560|103.559 +637968.826|222029.709|103.480 +637963.084|222031.861|103.946 +637957.274|222034.034|104.437 +637951.465|222036.210|104.961 +637945.722|222038.371|105.260 +637939.910|222040.554|105.592 +637934.185|222042.721|105.616 +637922.758|222047.046|105.629 +637917.046|222049.222|105.418 +637911.350|222051.392|105.159 +637905.717|222053.550|104.662 +637900.084|222055.705|104.178 +637894.555|222057.842|103.300 +637889.194|222059.960|101.526 +637883.390|222062.161|101.486 +637871.515|222066.617|102.297 +637865.419|222068.879|103.236 +637859.326|222071.140|104.211 +637804.676|222091.507|110.810 +637798.732|222093.754|110.893 +637792.758|222096.018|110.838 +637786.659|222098.304|111.356 +637780.749|222100.542|111.356 +637756.694|222109.637|111.667 +637750.647|222111.920|111.804 +637744.654|222114.194|111.706 +637720.090|222123.392|113.758 +637707.868|222127.992|114.361 +637689.415|222134.926|115.416 +637683.322|222137.233|115.419 +637671.225|222141.833|115.041 +637659.030|222146.475|114.602 +637647.002|222151.090|113.328 +637628.574|222158.073|113.273 +637622.170|222160.438|114.498 +637609.551|222165.138|116.004 +637603.266|222167.485|116.681 +637584.610|222174.532|117.034 +637578.291|222176.891|117.671 +637572.067|222179.244|117.763 +637565.840|222181.594|117.900 +637559.622|222183.941|118.022 +637553.404|222186.288|118.150 +637547.147|222188.656|118.171 +637540.904|222191.022|118.116 +637534.680|222193.387|117.979 +637528.459|222195.728|118.217 +637522.135|222198.117|118.369 +637515.868|222200.480|118.552 +637509.583|222202.860|118.494 +637503.408|222205.198|118.546 +637497.062|222207.600|118.519 +637490.862|222209.956|118.351 +637484.720|222212.330|117.388 +637478.582|222214.702|116.391 +637472.400|222217.097|115.251 +637459.794|222221.874|115.187 +637453.420|222224.272|115.474 +637447.132|222226.647|115.617 +637440.780|222229.042|115.782 +637434.404|222231.438|116.175 +637421.666|222236.245|116.480 +637408.959|222241.049|116.614 +637402.662|222243.438|116.513 +637389.900|222248.233|117.245 +637383.487|222250.638|117.687 +637377.101|222253.045|117.900 +637364.303|222257.852|118.702 +637357.923|222260.254|118.958 +637351.547|222262.653|119.229 +637345.137|222265.079|119.287 +637338.828|222267.481|118.985 +637332.460|222269.880|119.244 +637326.069|222272.303|119.156 +637319.649|222274.720|119.393 +637313.249|222277.140|119.448 +637306.891|222279.536|119.744 +637300.462|222281.947|120.140 +637293.976|222284.382|120.543 +637287.603|222286.769|121.100 +637281.107|222289.198|121.692 +637274.679|222291.606|122.243 +637268.208|222293.998|123.371 +637261.759|222296.431|123.563 +637255.401|222298.845|123.414 +637248.899|222301.262|124.319 +637242.413|222303.682|125.060 +637235.970|222306.069|126.114 +637229.404|222308.461|127.992 +637222.951|222310.878|128.519 +637216.679|222313.305|127.434 +637203.819|222318.148|127.934 +637197.418|222320.577|127.849 +637190.984|222322.994|128.254 +637178.155|222327.837|128.534 +637152.555|222337.533|128.425 +637120.575|222349.713|126.980 +637107.831|222354.596|125.825 +637101.437|222357.092|124.353 +637095.018|222359.573|123.316 +637082.231|222364.438|122.886 +637075.782|222366.895|122.594 +637069.448|222369.303|122.384 +637062.977|222371.741|122.658 +637056.518|222374.188|122.573 +637057.173|222377.319|122.716 +637063.580|222374.905|122.576 +637070.042|222372.457|122.691 +637076.446|222370.037|122.679 +637082.783|222367.635|122.868 +637102.034|222360.332|123.432 +637108.389|222357.872|124.590 +637114.775|222355.437|125.044 +637121.108|222353.035|125.224 +637127.521|222350.560|126.309 +637159.382|222338.432|128.111 +637165.780|222336.006|128.248 +637172.126|222333.610|128.230 +637184.888|222328.795|128.135 +637191.310|222326.377|127.943 +637204.072|222321.555|127.931 +637210.424|222319.154|127.943 +637223.165|222314.320|128.358 +637229.541|222311.924|128.105 +637235.954|222309.534|127.388 +637242.498|222307.175|125.118 +637248.942|222304.785|124.173 +637255.288|222302.411|123.709 +637268.041|222297.595|123.627 +637274.362|222295.245|122.874 +637280.821|222292.849|121.981 +637293.574|222288.085|120.838 +637306.257|222283.340|119.951 +637312.630|222280.950|119.518 +637318.970|222278.557|119.491 +637325.346|222276.168|119.110 +637331.640|222273.796|118.945 +637337.928|222271.422|118.894 +637344.268|222269.026|118.936 +637350.556|222266.649|118.921 +637356.847|222264.274|118.884 +637363.218|222261.876|118.729 +637369.490|222259.522|118.369 +637375.897|222257.124|117.946 +637394.874|222250.007|116.851 +637407.499|222245.264|116.321 +637413.775|222242.902|116.138 +637420.124|222240.515|115.903 +637426.314|222238.174|115.971 +637432.636|222235.785|115.977 +637451.518|222228.704|114.946 +637457.764|222226.357|114.718 +637463.985|222224.010|114.696 +637482.535|222216.963|115.516 +637494.590|222212.297|117.833 +637500.735|222209.947|118.418 +637506.895|222207.618|118.476 +637513.134|222205.262|118.442 +637519.309|222202.930|118.467 +637525.500|222200.595|118.394 +637531.638|222198.282|118.278 +637537.939|222195.920|117.952 +637544.074|222193.603|117.897 +637550.240|222191.265|118.080 +637556.391|222188.949|117.979 +637562.588|222186.608|117.988 +637568.745|222184.285|117.906 +637574.908|222181.963|117.793 +637581.095|222179.637|117.568 +637587.341|222177.306|117.034 +637593.498|222174.980|117.028 +637599.667|222172.654|116.992 +637605.872|222170.338|116.397 +637624.666|222163.364|113.864 +637643.195|222156.424|112.727 +637655.305|222151.824|113.255 +637673.319|222144.978|114.136 +637697.374|222135.874|114.507 +637709.544|222131.299|114.108 +637715.570|222129.031|113.928 +637721.627|222126.760|113.621 +637763.939|222110.865|111.904 +637781.877|222104.111|111.496 +637788.003|222101.828|110.850 +637793.898|222099.597|110.957 +637848.201|222079.361|105.461 +637854.157|222077.145|104.751 +637860.204|222074.902|103.943 +637884.018|222066.032|101.511 +637895.506|222061.667|102.084 +637900.983|222059.546|103.190 +637906.549|222057.421|103.702 +637912.270|222055.242|104.126 +637917.888|222053.102|104.449 +637923.490|222050.957|105.104 +637929.138|222048.814|105.360 +637934.771|222046.683|105.424 +637940.504|222044.522|105.385 +637946.301|222042.349|105.123 +637952.089|222040.185|104.662 +637957.862|222038.024|104.300 +637963.617|222035.878|103.775 +637969.436|222033.705|103.269 +637975.084|222031.568|103.422 +637980.634|222029.459|103.696 +637986.041|222027.389|104.257 +638008.828|222018.873|102.575 +638015.323|222016.587|99.200 +638020.785|222014.515|99.450 +638031.990|222010.305|99.039 +638047.931|222004.215|100.575 +638053.280|222002.182|100.849 +638054.417|222003.719|100.779 +638049.080|222005.761|100.493 +638043.804|222007.797|99.789 +638033.112|222011.899|98.883 +638027.476|222014.024|99.216 +638016.351|222018.236|99.444 +638010.133|222020.473|101.889 +638004.046|222022.695|103.666 +637981.655|222031.193|103.654 +637976.166|222033.303|103.190 +637970.569|222035.430|103.120 +637964.851|222037.591|103.273 +637958.947|222039.801|103.885 +637953.245|222041.947|104.263 +637947.392|222044.144|104.733 +637941.671|222046.305|104.979 +637935.959|222048.472|104.979 +637930.269|222050.637|104.900 +637924.660|222052.782|104.531 +637919.073|222054.937|103.836 +637913.438|222057.089|103.596 +637907.723|222059.265|103.428 +637902.117|222061.436|102.605 +637896.634|222063.569|101.553 +637884.966|222067.989|101.736 +637878.995|222070.232|102.148 +637867.108|222074.685|103.346 +637861.152|222076.938|103.513 +637855.074|222079.196|104.461 +637842.742|222083.753|106.918 +637836.415|222086.079|108.475 +637830.349|222088.340|109.241 +637824.475|222090.572|109.213 +637794.407|222101.904|110.780 +637788.497|222104.147|110.768 +637782.383|222106.452|111.106 +637764.305|222113.282|111.664 +637740.280|222122.374|112.167 +637728.012|222126.995|112.865 +637721.907|222129.284|113.404 +637715.744|222131.613|113.660 +637709.605|222133.917|114.123 +637703.482|222136.221|114.538 +637691.290|222140.833|114.852 +637673.185|222147.770|113.447 +637667.119|222150.078|113.377 +637660.990|222152.403|113.343 +637654.897|222154.726|113.112 +637648.798|222157.049|112.950 +637642.817|222159.359|112.170 +637630.385|222164.041|112.852 +637624.011|222166.406|113.913 +637617.717|222168.759|114.590 +637611.395|222171.112|115.449 +637605.110|222173.459|116.138 +637598.856|222175.803|116.678 +637592.632|222178.162|116.720 +637586.362|222180.503|117.412 +637580.092|222182.862|117.775 +637573.945|222185.191|117.799 +637567.672|222187.565|117.860 +637561.475|222189.912|117.872 +637555.257|222192.262|118.016 +637549.100|222194.606|117.815 +637542.849|222196.974|117.836 +637536.552|222199.346|118.168 +637530.297|222201.711|118.250 +637524.107|222204.052|118.339 +637517.813|222206.438|118.333 +637511.573|222208.801|118.372 +637505.304|222211.184|118.241 +637499.171|222213.540|117.626 +637480.776|222220.666|114.489 +637468.228|222225.427|114.416 +637461.799|222227.854|114.636 +637455.539|222230.228|114.547 +637449.162|222232.630|114.888 +637442.877|222235.004|115.050 +637436.443|222237.424|115.416 +637430.103|222239.820|115.559 +637423.855|222242.192|115.510 +637417.466|222244.609|115.602 +637411.154|222246.998|115.614 +637404.792|222249.388|116.038 +637398.383|222251.802|116.403 +637392.037|222254.188|116.763 +637385.624|222256.596|117.202 +637379.268|222258.980|117.699 +637366.485|222263.793|118.394 +637360.124|222266.198|118.513 +637353.763|222268.599|118.668 +637347.414|222271.004|118.723 +637341.077|222273.409|118.686 +637328.336|222278.234|118.723 +637321.893|222280.654|119.195 +637309.125|222285.467|119.692 +637296.338|222290.274|120.485 +637283.403|222295.117|121.713 +637276.971|222297.522|122.350 +637270.464|222299.948|123.200 +637244.800|222309.592|124.855 +637238.295|222312.003|125.938 +637231.736|222314.399|127.806 +637225.335|222316.791|128.431 +637218.983|222319.239|127.620 +637212.646|222321.650|127.474 +637206.245|222324.082|127.337 +637193.398|222328.926|127.806 +637186.991|222331.352|127.855 +637174.266|222336.192|127.544 +637167.831|222338.603|128.105 +637135.983|222350.749|126.456 +637129.606|222353.246|124.804 +637123.221|222355.681|124.487 +637116.823|222358.104|124.471 +637110.453|222360.549|123.780 +637104.006|222363.005|123.463 +637091.217|222367.861|123.219 +637084.767|222370.318|122.914 +637078.375|222372.747|122.743 +637071.911|222375.185|122.920 +637082.088|222374.524|122.911 +637088.492|222372.101|123.051 +637107.755|222364.804|123.530 +637126.918|222357.504|124.880 +637133.343|222355.096|124.532 +637139.713|222352.651|125.340 +637146.059|222350.198|126.547 +637152.384|222347.790|126.931 +637158.785|222345.367|127.047 +637171.571|222340.514|127.602 +637177.920|222338.115|127.644 +637184.394|222335.674|127.583 +637197.083|222330.870|127.849 +637203.517|222328.456|127.568 +637209.879|222326.057|127.492 +637216.289|222323.634|127.602 +637222.705|222321.208|127.644 +637229.032|222318.800|128.056 +637235.497|222316.389|127.486 +637261.259|222306.876|123.182 +637280.437|222299.695|122.006 +637286.880|222297.293|121.359 +637293.260|222294.913|120.771 +637299.636|222292.532|120.283 +637306.007|222290.146|119.863 +637312.359|222287.759|119.704 +637318.738|222285.373|119.278 +637325.090|222282.980|119.144 +637331.406|222280.612|118.823 +637337.773|222278.219|118.589 +637344.061|222275.848|118.567 +637350.419|222273.452|118.497 +637356.722|222271.077|118.382 +637363.081|222268.679|118.345 +637369.393|222266.304|118.186 +637375.751|222263.930|117.674 +637382.115|222261.552|117.129 +637388.434|222259.175|117.019 +637394.761|222256.795|116.827 +637401.065|222254.438|116.382 +637407.411|222252.055|116.129 +637413.757|222249.671|115.882 +637420.039|222247.306|115.690 +637426.421|222244.919|115.221 +637439.012|222240.162|115.245 +637445.291|222237.815|114.703 +637457.843|222233.075|114.700 +637464.137|222230.704|114.593 +637470.379|222228.354|114.434 +637476.619|222226.001|114.309 +637482.843|222223.650|114.337 +637489.039|222221.297|114.578 +637507.236|222214.257|117.976 +637513.369|222211.925|118.235 +637519.547|222209.593|118.238 +637525.786|222207.234|118.260 +637531.961|222204.899|118.314 +637538.176|222202.561|118.125 +637544.391|222200.220|117.976 +637550.566|222197.901|117.705 +637556.745|222195.563|117.827 +637562.856|222193.247|117.991 +637569.065|222190.903|117.961 +637575.237|222188.577|117.793 +637581.406|222186.255|117.677 +637587.578|222183.929|117.559 +637593.757|222181.600|117.443 +637600.072|222179.259|116.550 +637606.263|222176.946|116.053 +637618.823|222172.276|114.486 +637625.112|222169.932|113.895 +637631.336|222167.625|113.005 +637637.599|222165.296|112.261 +637649.791|222160.685|112.331 +637655.784|222158.384|113.099 +637673.986|222151.513|113.020 +637692.098|222144.658|113.270 +637716.088|222135.581|113.584 +637722.215|222133.283|113.252 +637728.250|222131.012|113.066 +637740.354|222126.480|112.319 +637746.401|222124.203|112.148 +637764.451|222117.412|111.609 +637770.373|222115.178|111.514 +637776.378|222112.919|111.365 +637782.511|222110.637|110.655 +637788.387|222108.408|110.838 +637824.332|222094.933|108.765 +637830.200|222092.714|108.850 +637842.389|222088.206|106.903 +637848.683|222085.920|105.007 +637860.616|222081.461|104.038 +637890.361|222070.372|101.075 +637896.085|222068.190|101.432 +637901.852|222066.014|101.395 +637907.323|222063.892|102.523 +637912.877|222061.753|103.327 +637918.668|222059.582|102.989 +637924.350|222057.431|103.084 +637929.979|222055.276|103.641 +637935.484|222053.169|104.196 +637941.144|222051.021|104.409 +637946.789|222048.884|104.461 +637952.592|222046.705|104.184 +637958.368|222044.544|103.788 +637964.199|222042.367|103.205 +637969.884|222040.234|102.953 +637975.544|222038.091|103.041 +637981.006|222036.009|103.385 +637986.346|222033.943|104.412 +638009.380|222025.356|102.020 +638021.218|222021.010|99.502 +638032.279|222016.837|99.316 +638043.380|222012.668|98.853 +638053.814|222008.635|100.697 +638059.120|222006.611|101.115 +638064.341|222004.602|101.822 +638062.634|222006.812|101.270 +638035.961|222017.035|99.124 +638024.870|222021.226|99.399 +638019.301|222023.332|99.530 +638013.449|222025.506|100.441 +638007.173|222027.752|103.099 +637984.572|222036.290|103.772 +637979.104|222038.402|102.971 +637973.502|222040.529|102.907 +637967.921|222042.651|102.788 +637962.041|222044.845|103.541 +637956.308|222047.006|103.772 +637950.450|222049.204|104.248 +637944.744|222051.371|104.175 +637939.163|222053.502|103.894 +637933.573|222055.644|103.425 +637928.016|222057.781|102.824 +637922.298|222059.957|102.611 +637916.382|222062.173|103.181 +637910.777|222064.328|102.572 +637899.575|222068.650|101.084 +637893.726|222070.860|101.218 +637881.851|222075.313|102.233 +637875.914|222077.550|102.523 +637863.975|222082.019|103.684 +637845.933|222088.779|105.251 +637827.359|222095.649|108.777 +637821.571|222097.875|108.110 +637815.560|222100.139|108.424 +637809.491|222102.410|109.003 +637785.193|222111.530|110.850 +637761.095|222120.643|111.344 +637742.838|222127.529|112.072 +637736.705|222129.824|112.676 +637730.591|222132.128|112.919 +637724.510|222134.429|113.038 +637706.249|222141.339|113.297 +637694.054|222145.963|113.258 +637675.800|222152.903|112.834 +637651.285|222162.227|112.252 +637638.949|222166.900|112.331 +637632.668|222169.253|112.855 +637620.037|222173.968|114.367 +637607.342|222178.702|116.025 +637600.959|222181.076|116.931 +637594.677|222183.441|117.293 +637588.429|222185.800|117.498 +637582.199|222188.160|117.623 +637575.969|222190.516|117.757 +637569.772|222192.866|117.720 +637563.493|222195.243|117.827 +637557.269|222197.614|117.635 +637551.057|222199.961|117.751 +637544.754|222202.336|118.080 +637538.475|222204.707|118.275 +637532.187|222207.100|118.168 +637525.948|222209.465|118.174 +637519.647|222211.855|118.174 +637513.457|222214.196|118.299 +637501.210|222218.950|116.047 +637495.081|222221.331|114.953 +637482.568|222226.119|114.096 +637476.262|222228.503|114.251 +637469.928|222230.908|114.200 +637463.528|222233.313|114.660 +637457.264|222235.690|114.593 +637450.915|222238.092|114.715 +637444.560|222240.494|114.904 +637438.208|222242.893|115.099 +637393.570|222259.742|116.693 +637387.169|222262.153|117.013 +637380.802|222264.539|117.610 +637374.364|222266.972|117.793 +637367.982|222269.380|118.052 +637361.624|222271.788|118.129 +637355.208|222274.217|118.189 +637348.916|222276.600|118.235 +637342.488|222279.027|118.452 +637329.717|222283.855|118.750 +637323.307|222286.281|118.891 +637316.925|222288.677|119.384 +637310.509|222291.097|119.619 +637304.068|222293.514|120.152 +637297.655|222295.931|120.436 +637284.786|222300.756|121.585 +637278.355|222303.164|122.201 +637271.851|222305.593|122.987 +637265.462|222308.004|123.161 +637239.661|222317.657|125.855 +637233.092|222320.050|127.821 +637226.694|222322.449|128.388 +637220.348|222324.902|127.477 +637207.529|222329.767|127.404 +637201.113|222332.196|127.501 +637194.696|222334.622|127.586 +637188.299|222337.058|127.468 +637175.528|222341.883|127.760 +637169.136|222344.318|127.590 +637162.759|222346.759|127.090 +637156.374|222349.195|126.791 +637143.673|222354.108|124.849 +637137.275|222356.541|124.770 +637130.871|222358.964|124.868 +637111.702|222366.267|124.246 +637092.491|222373.612|123.088 +637086.093|222376.042|123.033 +637079.692|222378.465|123.115 +637073.243|222380.925|122.853 +637041.315|222393.284|117.827 +637034.914|222395.720|117.705 +637035.865|222398.182|117.684 +637042.211|222395.777|117.839 +637074.230|222383.451|122.774 +637080.622|222381.022|123.146 +637093.494|222376.167|123.091 +637099.830|222373.765|123.301 +637112.653|222368.873|124.371 +637131.786|222361.628|124.889 +637138.202|222359.217|124.682 +637144.602|222356.797|124.767 +637150.985|222354.364|125.240 +637163.701|222349.478|127.023 +637170.029|222347.073|127.367 +637182.834|222342.233|127.516 +637195.535|222337.442|127.477 +637201.939|222335.019|127.590 +637214.716|222330.206|127.425 +637221.065|222327.807|127.516 +637227.417|222325.366|128.382 +637233.821|222322.979|127.754 +637240.249|222320.638|126.072 +637259.582|222313.484|123.161 +637265.980|222311.086|122.853 +637278.718|222306.303|122.335 +637285.167|222303.908|121.567 +637291.471|222301.554|121.100 +637297.890|222299.150|120.738 +637304.263|222296.769|120.244 +637310.646|222294.386|119.683 +637323.322|222289.637|118.979 +637329.702|222287.250|118.574 +637336.066|222284.861|118.330 +637342.400|222282.465|118.415 +637348.724|222280.097|118.040 +637355.000|222277.725|118.147 +637361.364|222275.329|118.013 +637367.683|222272.958|117.781 +637373.992|222270.584|117.638 +637380.341|222268.209|117.181 +637386.660|222265.832|117.025 +637399.291|222261.101|116.312 +637405.682|222258.696|116.147 +637411.974|222256.340|115.815 +637418.252|222253.981|115.614 +637424.601|222251.598|115.401 +637430.874|222249.235|115.309 +637437.214|222246.849|115.199 +637443.450|222244.505|114.965 +637449.790|222242.118|114.910 +637455.993|222239.774|114.971 +637462.302|222237.406|114.724 +637468.551|222235.059|114.520 +637474.860|222232.688|114.315 +637481.051|222230.362|114.123 +637487.387|222227.988|113.788 +637493.581|222225.638|114.038 +637499.686|222223.312|114.507 +637505.733|222220.968|115.763 +637517.846|222216.302|117.751 +637523.976|222213.973|118.083 +637530.218|222211.617|118.074 +637536.402|222209.285|118.061 +637542.587|222206.950|118.095 +637548.741|222204.637|117.924 +637554.959|222202.299|117.787 +637561.204|222199.958|117.485 +637567.370|222197.621|117.705 +637573.506|222195.304|117.735 +637579.660|222192.985|117.693 +637585.832|222190.662|117.568 +637592.007|222188.339|117.424 +637598.188|222186.014|117.278 +637604.284|222183.712|117.303 +637610.664|222181.369|116.092 +637635.908|222172.039|112.103 +637642.046|222169.725|112.048 +637648.157|222167.433|111.840 +637654.287|222165.135|111.539 +637666.385|222160.538|112.194 +637672.282|222158.280|112.846 +637678.363|222155.985|112.880 +637708.703|222144.561|112.417 +637726.650|222137.773|112.846 +637738.692|222133.253|112.343 +637744.785|222130.976|111.935 +637750.763|222128.726|111.801 +637756.816|222126.453|111.630 +637768.804|222121.945|111.316 +637774.866|222119.680|110.883 +637780.843|222117.424|110.859 +637786.778|222115.193|110.758 +637810.964|222106.162|108.896 +637853.209|222090.450|104.318 +637859.159|222088.228|103.900 +637871.040|222083.793|102.937 +637876.932|222081.586|102.568 +637882.875|222079.373|102.011 +637900.596|222072.750|100.657 +637917.476|222066.303|102.276 +637923.414|222064.093|101.636 +637929.114|222061.942|101.688 +637934.691|222059.811|102.221 +637940.330|222057.665|102.532 +637945.996|222055.516|102.757 +637951.638|222053.374|103.081 +637957.213|222051.252|103.431 +637963.068|222049.076|102.757 +637968.725|222046.948|102.593 +637974.404|222044.806|102.620 +637980.006|222042.675|102.934 +637985.453|222040.590|103.580 +637991.000|222038.481|103.888 +637996.548|222036.384|103.964 +638008.179|222032.077|102.279 +638014.263|222029.867|100.523 +638020.182|222027.691|99.392 +638031.277|222023.509|99.313 +638036.818|222021.418|99.319 +638042.292|222019.352|99.353 +638047.748|222017.288|99.466 +638053.018|222015.261|100.209 +638058.255|222013.256|100.859 +638065.067|222011.994|101.535 +638054.509|222016.057|100.325 +638049.190|222018.090|99.984 +638038.449|222022.199|99.237 +638032.895|222024.302|99.286 +638027.418|222026.377|99.319 +638021.809|222028.502|99.365 +638016.024|222030.651|100.282 +638010.047|222032.848|101.669 +638003.869|222035.095|103.565 +637998.239|222037.219|103.772 +637992.668|222039.331|103.797 +637987.020|222041.468|103.879 +637981.609|222043.556|103.117 +637976.132|222045.659|102.608 +637970.472|222047.808|102.535 +637964.736|222049.972|102.770 +637958.947|222052.142|103.209 +637953.391|222054.270|102.812 +637947.837|222056.406|102.160 +637942.156|222058.567|102.014 +637936.444|222060.735|102.005 +637930.875|222062.871|101.450 +637925.258|222065.020|101.108 +637913.505|222069.434|101.959 +637907.732|222071.631|101.767 +637884.405|222080.458|102.087 +637878.486|222082.677|102.556 +637872.610|222084.890|102.895 +637866.578|222087.152|103.367 +637860.652|222089.383|103.678 +637854.690|222091.620|104.163 +637812.122|222107.521|108.893 +637799.960|222112.078|109.984 +637781.846|222118.903|110.816 +637775.802|222121.192|110.883 +637769.800|222123.456|111.060 +637751.604|222130.321|111.755 +637745.575|222132.600|111.853 +637739.357|222134.935|112.292 +637733.328|222137.215|112.429 +637727.204|222139.519|112.755 +637715.208|222144.091|112.267 +637709.160|222146.399|111.965 +637703.122|222148.703|111.639 +637696.916|222151.029|112.176 +637678.470|222157.993|112.743 +637666.363|222162.626|111.804 +637660.212|222164.955|111.874 +637654.113|222167.278|111.694 +637647.917|222169.625|111.703 +637635.511|222174.300|112.206 +637622.707|222179.049|114.346 +637609.859|222183.792|116.891 +637603.660|222186.130|117.141 +637597.414|222188.489|117.309 +637591.184|222190.845|117.409 +637584.948|222193.201|117.565 +637578.739|222195.551|117.586 +637572.463|222197.928|117.668 +637566.297|222200.272|117.476 +637560.012|222202.647|117.647 +637553.703|222205.021|117.994 +637547.500|222207.365|118.104 +637541.203|222209.755|118.028 +637534.958|222212.123|118.046 +637528.724|222214.485|118.022 +637522.479|222216.850|118.092 +637497.973|222226.336|114.056 +637491.652|222228.741|113.861 +637478.978|222233.529|114.172 +637472.659|222235.910|114.447 +637466.307|222238.311|114.568 +637459.943|222240.713|114.788 +637453.612|222243.112|114.794 +637428.186|222252.719|115.358 +637421.849|222255.112|115.522 +637415.467|222257.529|115.596 +637409.047|222259.940|115.983 +637402.668|222262.354|116.080 +637396.289|222264.765|116.196 +637389.906|222267.149|116.909 +637383.475|222269.581|117.004 +637377.074|222271.989|117.394 +637370.676|222274.394|117.784 +637364.321|222276.799|117.845 +637357.975|222279.203|117.830 +637351.538|222281.630|118.107 +637345.204|222284.035|118.031 +637338.751|222286.455|118.534 +637332.344|222288.878|118.628 +637325.962|222291.274|119.080 +637319.567|222293.697|119.110 +637313.121|222296.111|119.695 +637306.692|222298.528|120.104 +637300.270|222300.942|120.509 +637287.423|222305.764|121.451 +637280.915|222308.190|122.237 +637274.496|222310.598|122.758 +637268.083|222313.039|122.521 +637261.664|222315.444|123.094 +637255.279|222317.852|123.325 +637248.780|222320.269|124.246 +637235.671|222325.067|127.742 +637229.294|222327.466|128.068 +637222.961|222329.919|126.983 +637216.523|222332.342|127.349 +637210.104|222334.769|127.443 +637203.697|222337.198|127.422 +637197.269|222339.618|127.754 +637184.470|222344.480|127.535 +637178.079|222346.912|127.324 +637171.687|222349.344|127.163 +637158.937|222354.224|126.148 +637152.607|222356.690|124.782 +637146.194|222359.116|124.901 +637133.331|222363.993|124.852 +637107.773|222373.734|123.694 +637101.388|222376.176|123.292 +637094.932|222378.629|123.097 +637088.525|222381.050|123.283 +637069.308|222388.404|121.817 +637050.123|222395.835|118.546 +637043.735|222398.295|117.781 +637037.328|222400.727|117.693 +637035.908|222404.275|117.623 +637042.318|222401.849|117.751 +637048.718|222399.414|118.132 +637067.936|222392.031|120.750 +637074.389|222389.572|121.228 +637093.539|222382.247|123.167 +637099.946|222379.833|123.133 +637106.338|222377.404|123.417 +637112.769|222374.935|124.252 +637151.125|222360.436|124.721 +637157.514|222358.007|125.081 +637163.845|222355.547|126.501 +637170.230|222353.118|126.843 +637176.561|222350.713|127.172 +637189.305|222345.894|127.349 +637195.699|222343.468|127.590 +637202.054|222341.072|127.526 +637208.467|222338.652|127.526 +637214.810|222336.250|127.672 +637221.242|222333.833|127.428 +637227.478|222331.440|128.275 +637233.866|222329.051|127.833 +637240.404|222326.658|126.267 +637253.261|222321.924|123.862 +637259.698|222319.535|123.051 +637272.475|222314.728|122.691 +637278.712|222312.366|122.890 +637285.204|222309.979|121.600 +637291.620|222307.574|121.234 +637297.999|222305.197|120.619 +637304.352|222302.813|120.344 +637310.722|222300.430|119.893 +637323.484|222295.660|118.927 +637329.769|222293.291|118.833 +637336.148|222290.905|118.446 +637342.433|222288.533|118.403 +637348.798|222286.141|118.214 +637355.165|222283.745|118.025 +637361.477|222281.374|117.815 +637367.784|222278.999|117.674 +637374.096|222276.625|117.491 +637380.494|222274.229|117.138 +637386.782|222271.876|116.717 +637393.134|222269.499|116.300 +637399.434|222267.118|116.342 +637405.747|222264.765|115.797 +637412.050|222262.382|115.852 +637424.653|222257.636|115.550 +637430.957|222255.274|115.181 +637443.496|222250.546|115.053 +637449.766|222248.181|115.026 +637456.051|222245.813|114.898 +637462.339|222243.444|114.760 +637468.578|222241.097|114.565 +637474.830|222238.750|114.328 +637481.163|222236.376|113.950 +637487.415|222234.026|113.739 +637493.630|222231.676|113.816 +637499.863|222229.323|113.794 +637506.062|222226.970|113.998 +637512.091|222224.647|114.968 +637524.177|222219.978|117.120 +637530.276|222217.628|118.031 +637536.448|222215.296|118.065 +637542.642|222212.961|117.982 +637548.829|222210.623|117.976 +637555.023|222208.289|117.949 +637561.170|222205.972|117.827 +637567.422|222203.628|117.491 +637573.573|222201.309|117.412 +637579.742|222198.968|117.616 +637585.893|222196.648|117.577 +637592.114|222194.301|117.507 +637598.225|222192.000|117.382 +637604.397|222189.674|117.272 +637610.600|222187.346|117.034 +637616.775|222185.032|116.611 +637623.197|222182.679|115.184 +637642.141|222175.684|111.923 +637648.322|222173.364|111.633 +637654.446|222171.066|111.344 +637666.598|222166.461|111.667 +637697.011|222155.000|111.164 +637703.052|222152.720|111.161 +637709.075|222150.440|111.243 +637715.107|222148.161|111.313 +637721.002|222145.899|112.072 +637738.955|222139.111|112.194 +637745.023|222136.837|111.889 +637751.083|222134.560|111.639 +637757.130|222132.287|111.469 +637763.125|222130.031|111.258 +637769.157|222127.757|111.213 +637775.083|222125.523|111.075 +637781.060|222123.271|111.021 +637793.057|222118.766|110.512 +637799.174|222116.486|109.899 +637823.561|222107.433|106.711 +637853.450|222096.265|104.315 +637859.454|222094.019|103.910 +637871.329|222089.581|102.922 +637906.601|222076.356|101.191 +637918.034|222072.024|101.532 +637929.778|222067.644|100.508 +637935.359|222065.511|101.008 +637941.034|222063.362|101.169 +637946.746|222061.207|101.212 +637952.306|222059.089|101.590 +637957.548|222057.034|103.169 +637963.340|222054.870|102.709 +637969.061|222052.721|102.535 +637974.553|222050.627|102.977 +637980.274|222048.475|102.831 +637985.654|222046.403|103.699 +637991.208|222044.306|103.730 +637996.913|222042.166|103.458 +638002.546|222040.051|103.227 +638008.395|222037.881|102.489 +638014.305|222035.720|101.099 +638025.796|222031.449|99.776 +638036.903|222027.274|99.417 +638042.618|222025.146|98.822 +638053.161|222021.098|100.270 +638058.523|222019.065|100.484 +638063.808|222017.038|101.179 +638061.766|222019.379|100.761 +638056.429|222021.427|100.249 +638017.628|222036.104|100.645 +638011.846|222038.259|101.352 +638006.024|222040.420|102.224 +638000.156|222042.602|103.047 +637994.445|222044.751|103.343 +637988.760|222046.894|103.562 +637983.292|222048.991|103.001 +637977.778|222051.097|102.629 +637972.133|222053.243|102.514 +637966.519|222055.379|102.294 +637960.666|222057.574|102.730 +637955.122|222059.695|102.288 +637949.858|222061.774|100.563 +637944.088|222063.950|100.737 +637938.416|222066.105|100.569 +637932.707|222068.281|100.307 +637926.943|222070.467|100.270 +637915.135|222074.886|101.346 +637909.308|222077.090|101.361 +637897.881|222081.446|100.807 +637885.957|222085.914|101.785 +637874.088|222090.367|102.645 +637868.089|222092.623|102.980 +637862.021|222094.887|103.632 +637856.083|222097.116|104.019 +637819.943|222110.661|106.924 +637795.419|222119.796|109.981 +637789.320|222122.079|110.542 +637777.274|222126.617|111.033 +637771.178|222128.925|111.082 +637765.186|222131.183|111.243 +637759.157|222133.463|111.316 +637753.106|222135.746|111.502 +637747.047|222138.029|111.752 +637740.881|222140.355|111.941 +637722.687|222147.237|112.060 +637716.994|222149.465|110.640 +637710.785|222151.806|110.819 +637704.722|222154.098|110.929 +637698.675|222156.399|110.661 +637686.209|222161.066|111.767 +637667.933|222168.012|111.255 +637655.640|222172.663|111.362 +637649.541|222174.980|111.197 +637643.229|222177.339|111.868 +637630.494|222182.045|114.251 +637617.696|222186.767|116.845 +637611.444|222189.126|117.013 +637605.260|222191.461|117.171 +637599.014|222193.820|117.351 +637592.790|222196.173|117.437 +637586.573|222198.526|117.491 +637580.367|222200.876|117.519 +637574.152|222203.244|117.223 +637567.900|222205.597|117.574 +637561.622|222207.969|117.720 +637555.407|222210.315|117.872 +637549.167|222212.681|117.827 +637536.680|222217.411|117.854 +637530.389|222219.798|117.787 +637518.242|222224.522|115.263 +637512.107|222226.878|114.617 +637505.870|222229.280|113.828 +637499.622|222231.642|113.974 +637493.294|222234.044|113.822 +637487.012|222236.425|113.825 +637480.706|222238.805|114.008 +637474.330|222241.210|114.270 +637468.036|222243.588|114.431 +637461.668|222245.986|114.678 +637455.295|222248.385|115.010 +637448.961|222250.781|115.074 +637442.643|222253.177|115.044 +637429.984|222257.962|115.221 +637417.177|222262.793|115.681 +637410.843|222265.180|115.907 +637385.294|222274.817|116.760 +637378.961|222277.201|117.123 +637372.511|222279.627|117.440 +637366.141|222282.032|117.641 +637359.719|222284.458|117.778 +637353.357|222286.860|117.949 +637347.018|222289.262|117.912 +637340.556|222291.679|118.516 +637334.152|222294.102|118.595 +637314.922|222301.332|119.762 +637308.506|222303.746|120.070 +637302.029|222306.181|120.448 +637289.200|222311.006|121.201 +637282.726|222313.402|122.301 +637269.906|222318.251|122.487 +637263.508|222320.656|122.862 +637250.588|222325.509|123.697 +637237.570|222330.248|127.626 +637231.129|222332.672|128.010 +637224.841|222335.095|127.148 +637218.364|222337.545|127.245 +637205.590|222342.370|127.486 +637186.406|222349.664|126.956 +637180.002|222352.090|126.953 +637173.613|222354.523|126.721 +637160.830|222359.439|125.227 +637154.429|222361.865|125.218 +637148.044|222364.304|124.849 +637115.991|222376.459|124.633 +637109.639|222378.922|123.490 +637103.189|222381.379|123.249 +637096.782|222383.799|123.392 +637090.385|222386.225|123.356 +637077.677|222391.178|120.509 +637044.942|222403.715|117.845 +637039.205|222405.897|117.659 +637035.341|222410.454|117.690 +637041.812|222408.009|117.726 +637048.221|222405.580|117.851 +637067.448|222398.201|120.283 +637073.913|222395.750|120.448 +637093.036|222388.383|123.414 +637099.510|222385.951|123.149 +637105.850|222383.549|123.286 +637150.692|222366.544|124.746 +637163.467|222361.676|125.608 +637169.849|222359.244|126.087 +637176.219|222356.806|126.757 +637182.620|222354.383|126.888 +637189.012|222351.953|127.166 +637195.334|222349.542|127.641 +637201.753|222347.125|127.510 +637208.153|222344.699|127.690 +637214.533|222342.309|127.288 +637227.267|222337.475|127.830 +637233.613|222335.070|127.964 +637240.081|222332.659|127.315 +637253.075|222327.923|123.862 +637259.521|222325.536|122.893 +637265.852|222323.156|122.673 +637272.262|222320.754|122.265 +637284.945|222315.959|122.411 +637291.434|222313.567|121.189 +637297.750|222311.211|120.610 +637304.150|222308.800|120.451 +637310.530|222306.419|119.906 +637316.885|222304.029|119.668 +637329.571|222299.278|118.881 +637335.938|222296.888|118.607 +637348.666|222292.100|118.186 +637354.985|222289.728|117.866 +637361.313|222287.357|117.522 +637367.656|222284.958|117.607 +637373.971|222282.584|117.406 +637380.290|222280.206|117.199 +637386.663|222277.832|116.544 +637399.343|222273.050|116.434 +637405.615|222270.690|116.227 +637418.216|222265.948|115.907 +637424.568|222263.564|115.605 +637430.856|222261.202|115.352 +637437.168|222258.840|114.949 +637449.684|222254.109|115.056 +637455.993|222251.744|114.742 +637462.211|222249.400|114.687 +637468.505|222247.029|114.553 +637474.769|222244.682|114.197 +637481.078|222242.310|113.995 +637487.329|222239.960|113.806 +637493.581|222237.610|113.617 +637499.829|222235.257|113.502 +637505.962|222232.929|113.752 +637512.219|222230.576|113.599 +637518.325|222228.247|114.084 +637524.378|222225.900|115.318 +637536.372|222221.255|117.699 +637542.538|222218.923|117.805 +637554.922|222214.250|117.754 +637561.106|222211.916|117.802 +637567.327|222209.575|117.644 +637573.481|222207.255|117.540 +637579.684|222204.933|117.174 +637585.862|222202.592|117.348 +637591.983|222200.275|117.513 +637598.118|222197.953|117.601 +637604.327|222195.624|117.290 +637610.448|222193.323|117.144 +637616.641|222190.991|116.967 +637622.761|222188.687|116.876 +637629.144|222186.334|115.696 +637641.824|222181.667|113.249 +637648.228|222179.326|111.743 +637654.513|222177.010|110.576 +637660.548|222174.721|110.783 +637666.613|222172.429|110.850 +637678.814|222167.832|110.670 +637690.961|222163.254|110.551 +637697.066|222160.950|110.509 +637709.224|222156.381|110.118 +637715.299|222154.095|109.984 +637751.073|222140.510|111.600 +637757.118|222138.236|111.441 +637763.165|222135.962|111.301 +637769.127|222133.713|111.271 +637781.166|222129.181|111.036 +637787.189|222126.931|110.515 +637793.224|222124.666|110.243 +637799.326|222122.390|109.695 +637829.904|222111.057|105.440 +637883.573|222090.983|101.712 +637901.374|222084.341|100.215 +637907.073|222082.168|100.691 +637912.840|222079.992|100.654 +637918.570|222077.825|100.788 +637924.572|222075.606|99.889 +637930.369|222073.423|99.795 +637936.273|222071.217|99.310 +637942.061|222069.046|99.051 +637947.862|222066.873|98.771 +637953.086|222064.810|100.660 +637958.204|222062.780|102.703 +637964.053|222060.594|102.270 +637969.655|222058.479|102.294 +637975.547|222056.284|101.749 +637981.381|222054.108|101.191 +637986.776|222052.033|102.029 +637992.162|222049.960|102.892 +637997.800|222047.832|102.861 +638003.744|222045.656|101.526 +638009.240|222043.568|101.816 +638015.119|222041.392|100.980 +638032.057|222035.052|99.950 +638043.347|222030.840|98.990 +638059.388|222024.719|100.404 +638064.799|222022.665|100.682 +638065.177|222024.616|100.538 +638059.824|222026.652|100.310 +638043.685|222032.824|99.066 +638032.368|222037.064|99.938 +638021.038|222041.328|100.471 +638015.406|222043.452|100.654 +638009.685|222045.592|101.172 +637998.053|222049.929|102.480 +637992.558|222052.020|102.245 +637987.102|222054.126|101.410 +637981.756|222056.211|100.188 +637975.964|222058.385|100.599 +637969.935|222060.591|102.151 +637964.230|222062.755|102.056 +637958.451|222064.923|102.489 +637953.232|222066.989|100.593 +637948.008|222069.071|98.478 +637942.220|222071.250|98.743 +637936.496|222073.414|98.783 +637930.650|222075.615|99.063 +637924.767|222077.819|99.496 +637918.839|222080.031|100.142 +637907.369|222084.396|99.731 +637901.368|222086.643|100.212 +637895.400|222088.871|100.852 +637889.465|222091.105|101.118 +637883.494|222093.342|101.553 +637877.566|222095.573|101.840 +637859.500|222102.331|103.486 +637829.483|222113.602|105.342 +637798.668|222125.054|109.673 +637792.551|222127.340|110.310 +637786.510|222129.623|110.356 +637780.444|222131.896|110.826 +637756.228|222141.028|111.551 +637732.048|222150.181|111.539 +637714.205|222157.024|109.771 +637708.100|222159.335|109.780 +637701.982|222161.645|109.878 +637677.354|222170.947|110.295 +637658.865|222177.927|110.704 +637652.489|222180.290|111.700 +637633.317|222187.361|115.477 +637626.934|222189.717|116.659 +637620.744|222192.052|116.800 +637614.483|222194.411|117.004 +637608.296|222196.743|117.162 +637602.041|222199.099|117.397 +637595.835|222201.449|117.360 +637589.697|222203.771|117.315 +637583.470|222206.140|117.077 +637577.212|222208.490|117.421 +637570.991|222210.837|117.562 +637564.709|222213.205|117.708 +637558.473|222215.570|117.616 +637546.025|222220.276|117.717 +637539.746|222222.660|117.540 +637527.639|222227.360|115.132 +637521.507|222229.731|114.014 +637515.313|222232.109|113.322 +637509.050|222234.471|113.538 +637502.679|222236.876|113.642 +637490.097|222241.631|113.700 +637483.846|222244.008|113.477 +637477.423|222246.410|114.062 +637471.026|222248.809|114.504 +637464.732|222251.180|114.669 +637458.319|222253.600|114.831 +637452.049|222255.969|114.867 +637445.627|222258.386|115.141 +637432.956|222263.168|115.385 +637426.616|222265.558|115.568 +637420.276|222267.944|115.788 +637401.095|222275.168|116.449 +637394.771|222277.551|116.644 +637382.015|222282.361|116.995 +637375.617|222284.760|117.394 +637369.265|222287.165|117.409 +637362.846|222289.588|117.498 +637356.479|222291.987|117.711 +637350.114|222294.386|117.912 +637343.692|222296.806|118.119 +637337.264|222299.223|118.385 +637330.894|222301.615|118.741 +637324.444|222304.026|119.326 +637318.028|222306.443|119.573 +637311.627|222308.858|119.713 +637292.345|222316.081|121.143 +637285.765|222318.489|122.786 +637273.058|222323.320|122.341 +637266.608|222325.750|122.539 +637247.183|222332.970|125.182 +637240.688|222335.339|126.977 +637234.205|222337.747|127.907 +637227.792|222340.173|127.916 +637189.454|222354.715|127.114 +637183.047|222357.138|127.129 +637170.337|222362.033|125.386 +637163.921|222364.450|125.614 +637151.147|222369.318|124.950 +637131.880|222376.612|124.974 +637106.286|222386.384|123.286 +637099.833|222388.837|123.078 +637093.414|222391.245|123.548 +637074.187|222398.676|120.475 +637067.826|222401.157|118.973 +637061.361|222403.608|118.924 +637048.575|222408.500|117.851 +637042.113|222410.957|117.641 +637040.757|222414.812|117.638 +637047.167|222412.383|117.754 +637053.613|222409.899|118.769 +637072.834|222402.623|119.064 +637098.200|222392.827|123.371 +637104.610|222390.413|123.234 +637111.004|222387.984|123.444 +637117.335|222385.576|123.837 +637123.702|222383.128|124.654 +637130.106|222380.705|124.703 +637149.257|222373.466|124.782 +637168.304|222366.218|125.806 +637174.732|222363.807|125.465 +637187.317|222358.958|127.382 +637193.715|222356.534|127.519 +637206.410|222351.734|127.608 +637219.181|222346.915|127.477 +637225.576|222344.525|126.913 +637231.833|222342.096|128.257 +637238.237|222339.709|127.596 +637244.763|222337.353|125.377 +637257.592|222332.605|123.325 +637270.342|222327.828|122.499 +637276.752|222325.430|122.070 +637289.410|222320.659|121.777 +637295.842|222318.258|121.222 +637302.227|222315.880|120.506 +637308.588|222313.494|120.152 +637314.965|222311.110|119.616 +637321.286|222308.748|119.083 +637333.932|222303.990|118.711 +637340.315|222301.597|118.293 +637346.682|222299.204|118.037 +637352.964|222296.830|118.031 +637359.271|222294.459|117.827 +637365.586|222292.084|117.577 +637371.886|222289.710|117.482 +637378.211|222287.332|117.208 +637384.606|222284.934|116.854 +637390.927|222282.556|116.665 +637397.179|222280.197|116.565 +637403.512|222277.817|116.303 +637409.809|222275.461|115.870 +637422.383|222270.715|115.766 +637428.713|222268.328|115.660 +637435.017|222265.966|115.297 +637441.308|222263.601|115.044 +637460.163|222256.496|114.639 +637466.316|222254.173|114.599 +637472.620|222251.802|114.401 +637478.874|222249.452|114.133 +637485.168|222247.099|113.605 +637491.380|222244.749|113.697 +637497.592|222242.396|113.797 +637503.862|222240.040|113.511 +637510.043|222237.708|113.453 +637516.289|222235.352|113.398 +637522.537|222233.014|112.923 +637528.606|222230.664|114.072 +637534.616|222228.338|115.205 +637540.618|222226.013|116.382 +637546.607|222223.690|117.626 +637552.727|222221.374|117.653 +637558.924|222219.036|117.613 +637565.112|222216.695|117.644 +637571.235|222214.378|117.720 +637577.395|222212.059|117.580 +637583.579|222209.733|117.318 +637589.825|222207.386|117.089 +637595.948|222205.064|117.248 +637602.029|222202.766|117.303 +637608.192|222200.440|117.263 +637614.319|222198.133|117.092 +637620.506|222195.801|116.961 +637626.645|222193.490|116.766 +637632.844|222191.156|116.598 +637639.099|222188.848|115.471 +637658.222|222181.838|111.085 +637676.635|222174.928|110.155 +637682.801|222172.618|109.740 +637694.844|222168.064|109.841 +637707.063|222163.468|109.439 +637713.147|222161.176|109.241 +637736.827|222152.147|110.941 +637754.758|222145.353|111.316 +637766.792|222140.824|110.984 +637778.822|222136.304|110.481 +637784.836|222134.042|110.268 +637808.854|222125.017|109.219 +637827.551|222118.159|105.046 +637851.514|222109.189|103.334 +637869.299|222102.507|102.535 +637875.255|222100.292|101.861 +637881.251|222098.054|101.300 +637893.229|222093.592|100.066 +637904.931|222089.197|99.505 +637910.588|222087.030|100.154 +637916.425|222084.841|99.850 +637922.417|222082.622|98.966 +637928.230|222080.434|98.807 +637934.003|222078.251|98.807 +637939.763|222076.084|98.633 +637945.561|222073.911|98.344 +637951.352|222071.735|98.100 +637956.131|222069.757|101.672 +637961.700|222067.623|102.273 +637967.488|222065.447|102.062 +637973.322|222063.274|101.468 +637979.902|222060.948|98.161 +637985.313|222058.869|98.941 +637990.519|222056.815|100.697 +637996.045|222054.712|101.075 +638001.680|222052.581|101.060 +638007.725|222050.371|99.615 +638013.129|222048.299|100.231 +638018.707|222046.193|100.249 +638024.278|222044.086|100.307 +638035.611|222039.840|99.581 +638062.872|222029.502|100.499 +638068.334|222027.432|100.596 +638069.197|222029.142|100.569 +638063.750|222031.202|100.657 +638053.234|222035.278|98.905 +638048.114|222037.280|97.686 +638030.832|222043.727|99.834 +638025.117|222045.872|100.282 +638014.092|222050.076|99.813 +638002.647|222054.373|100.679 +637997.130|222056.486|100.273 +637991.707|222058.580|99.542 +637986.352|222060.671|98.344 +637980.817|222062.795|97.804 +637974.373|222065.099|100.627 +637968.326|222067.321|102.032 +637962.681|222069.467|101.962 +637956.917|222071.643|102.117 +637951.894|222073.692|99.246 +637946.280|222075.840|98.856 +637940.528|222078.014|99.005 +637934.655|222080.220|99.386 +637928.854|222082.415|99.499 +637922.963|222084.637|99.746 +637917.156|222086.829|99.941 +637911.271|222089.047|100.209 +637905.479|222091.248|100.112 +637899.548|222093.485|100.340 +637893.882|222095.662|99.798 +637887.728|222097.939|100.959 +637881.882|222100.157|100.916 +637875.999|222102.383|101.026 +637858.007|222109.149|102.136 +637852.008|222111.405|102.568 +637845.839|222113.697|103.458 +637833.906|222118.202|103.888 +637827.630|222120.509|105.330 +637814.975|222125.151|108.518 +637808.888|222127.437|108.969 +637784.687|222136.557|110.094 +637778.618|222138.834|110.585 +637772.626|222141.110|110.463 +637760.522|222145.682|110.838 +637754.435|222148.002|110.637 +637748.370|222150.285|110.932 +637742.362|222152.574|110.682 +637718.478|222161.724|108.820 +637712.376|222164.038|108.802 +637693.972|222171.002|109.049 +637662.956|222182.682|110.643 +637643.653|222189.784|115.029 +637637.215|222192.152|116.486 +637631.031|222194.493|116.580 +637624.770|222196.855|116.778 +637618.583|222199.193|116.931 +637612.337|222201.552|117.095 +637606.110|222203.909|117.168 +637599.917|222206.259|117.071 +637593.796|222208.587|116.912 +637587.484|222210.965|117.202 +637581.257|222213.315|117.360 +637575.033|222215.668|117.537 +637568.793|222218.036|117.449 +637562.539|222220.404|117.479 +637556.358|222222.748|117.452 +637550.088|222225.135|117.211 +637544.031|222227.488|116.022 +637537.981|222229.844|114.809 +637531.858|222232.221|113.648 +637525.740|222234.578|112.852 +637506.770|222241.737|113.450 +637500.485|222244.121|113.435 +637494.191|222246.501|113.508 +637487.823|222248.906|113.681 +637481.523|222251.284|113.846 +637475.140|222253.686|114.203 +637468.758|222256.087|114.581 +637462.430|222258.486|114.572 +637456.133|222260.861|114.815 +637449.769|222263.278|114.666 +637443.466|222265.673|114.544 +637437.059|222268.066|115.227 +637430.725|222270.459|115.404 +637424.385|222272.851|115.635 +637417.969|222275.262|116.031 +637405.253|222280.060|116.449 +637392.521|222284.879|116.556 +637386.142|222287.287|116.793 +637379.777|222289.692|116.888 +637373.364|222292.093|117.464 +637360.660|222296.900|117.616 +637347.792|222301.747|118.247 +637341.461|222304.148|118.211 +637335.048|222306.568|118.388 +637328.665|222308.961|118.915 +637302.888|222318.639|120.786 +637296.482|222321.050|121.106 +637289.986|222323.445|122.475 +637283.573|222325.887|122.225 +637277.279|222328.279|122.051 +637270.808|222330.709|122.542 +637264.353|222333.138|122.883 +637244.989|222340.334|125.727 +637238.432|222342.727|127.629 +637231.986|222345.144|128.147 +637225.670|222347.561|127.684 +637219.291|222349.999|127.263 +637206.514|222354.821|127.611 +637200.125|222357.257|127.376 +637193.706|222359.677|127.605 +637187.375|222362.085|127.440 +637174.613|222367.007|125.630 +637149.031|222376.718|125.191 +637123.422|222386.466|124.212 +637117.036|222388.901|123.880 +637110.660|222391.343|123.331 +637104.192|222393.778|123.569 +637097.785|222396.195|123.795 +637065.808|222408.533|119.137 +637046.630|222415.867|117.690 +637044.988|222419.384|117.708 +637051.394|222416.958|117.894 +637064.245|222412.039|119.323 +637070.655|222409.618|119.311 +637096.209|222399.755|123.780 +637102.631|222397.353|123.374 +637109.044|222394.942|123.194 +637115.436|222392.513|123.520 +637128.216|222387.648|124.356 +637141.006|222382.796|124.889 +637147.410|222380.376|124.941 +637172.937|222370.699|125.861 +637179.304|222368.309|125.593 +637204.837|222358.583|127.446 +637211.174|222356.178|127.696 +637217.593|222353.761|127.608 +637230.325|222348.927|128.193 +637236.701|222346.537|127.894 +637243.172|222344.126|127.227 +637256.190|222339.402|123.429 +637269.001|222334.607|122.566 +637275.414|222332.211|122.106 +637281.744|222329.831|121.942 +637288.081|222327.414|122.451 +637294.552|222325.021|121.405 +637300.901|222322.641|121.134 +637313.657|222317.880|120.027 +637320.085|222315.475|119.637 +637326.498|222313.094|118.820 +637332.792|222310.729|118.650 +637339.160|222308.339|118.357 +637345.509|222305.947|118.284 +637351.882|222303.554|118.022 +637358.259|222301.161|117.738 +637364.580|222298.793|117.418 +637370.929|222296.394|117.452 +637377.275|222294.023|116.976 +637383.578|222291.648|116.918 +637389.958|222289.250|116.742 +637396.289|222286.872|116.470 +637402.601|222284.495|116.406 +637415.259|222279.734|116.062 +637421.624|222277.353|115.629 +637427.869|222274.994|115.705 +637440.546|222270.245|114.931 +637446.885|222267.856|114.809 +637453.183|222265.490|114.575 +637459.486|222263.098|114.770 +637472.022|222258.383|114.392 +637478.301|222256.033|113.919 +637490.856|222251.311|113.575 +637497.162|222248.934|113.428 +637503.386|222246.581|113.480 +637515.886|222241.871|113.258 +637522.083|222239.537|113.121 +637528.340|222237.181|113.014 +637534.528|222234.843|112.993 +637546.622|222230.167|115.196 +637558.634|222225.516|117.519 +637564.837|222223.178|117.455 +637570.970|222220.862|117.473 +637577.166|222218.521|117.476 +637583.351|222216.180|117.598 +637589.529|222213.857|117.385 +637595.790|222211.507|117.086 +637601.962|222209.182|116.949 +637608.094|222206.859|117.092 +637614.258|222204.533|117.056 +637620.369|222202.229|116.998 +637626.556|222199.897|116.876 +637632.765|222197.563|116.659 +637638.907|222195.252|116.477 +637645.091|222192.936|116.108 +637651.373|222190.622|114.879 +637664.251|222185.922|111.551 +637670.582|222183.581|110.530 +637682.917|222178.964|109.661 +637689.068|222176.672|109.027 +637695.210|222174.364|108.789 +637701.312|222172.060|108.777 +637719.481|222165.208|108.597 +637725.516|222162.940|108.384 +637731.606|222160.648|108.223 +637749.306|222153.876|109.987 +637755.283|222151.611|110.140 +637767.234|222147.094|110.201 +637785.254|222140.306|109.875 +637840.221|222119.878|103.084 +637846.193|222117.641|102.745 +637852.087|222115.413|102.757 +637864.301|222110.896|100.816 +637870.077|222108.701|101.121 +637876.026|222106.473|100.724 +637916.644|222091.132|100.581 +637928.288|222086.752|100.127 +637933.926|222084.597|100.636 +637939.690|222082.430|100.420 +637945.460|222080.248|100.459 +637951.126|222078.096|100.654 +637956.421|222076.014|102.267 +637962.224|222073.835|101.971 +637967.823|222071.720|101.974 +637973.758|222069.513|101.233 +637980.372|222067.184|97.786 +637986.044|222065.035|97.826 +637991.741|222062.896|97.570 +637997.136|222060.805|98.658 +638002.537|222058.732|99.255 +638008.237|222056.589|99.027 +638013.854|222054.462|99.115 +638019.289|222052.383|99.627 +638030.457|222048.162|99.652 +638047.663|222041.761|97.548 +638052.789|222039.764|98.761 +638074.180|222031.586|100.670 +638079.536|222029.550|100.923 +638077.487|222031.779|100.740 +638072.016|222033.857|100.660 +638056.097|222039.981|98.829 +638045.063|222044.169|98.658 +638039.430|222046.287|98.999 +638028.119|222050.542|99.661 +638017.030|222054.757|99.386 +638011.559|222056.861|98.777 +638005.896|222059.000|98.868 +638000.434|222061.100|98.252 +637994.923|222063.222|97.579 +637977.491|222069.748|99.197 +637970.963|222072.076|102.126 +637965.342|222074.216|101.959 +637959.588|222076.389|102.069 +637953.973|222078.526|101.913 +637948.298|222080.696|101.508 +637942.638|222082.863|101.060 +637936.947|222085.021|100.993 +637931.171|222087.210|101.017 +637925.550|222089.364|100.453 +637872.978|222109.286|100.414 +637866.962|222111.545|100.843 +637739.604|222159.463|107.701 +637733.404|222161.791|108.067 +637721.197|222166.406|108.265 +637714.942|222168.741|108.981 +637708.862|222171.051|108.872 +637671.703|222185.047|110.469 +637652.327|222192.162|115.117 +637645.914|222194.530|116.391 +637639.730|222196.871|116.467 +637633.469|222199.236|116.629 +637627.266|222201.577|116.839 +637621.000|222203.939|117.086 +637614.837|222206.274|117.120 +637608.640|222208.627|117.007 +637602.453|222210.980|116.879 +637596.134|222213.360|117.165 +637589.913|222215.713|117.251 +637583.683|222218.067|117.434 +637577.438|222220.438|117.348 +637571.177|222222.809|117.373 +637564.929|222225.178|117.360 +637558.717|222227.546|117.120 +637552.676|222229.899|115.824 +637546.665|222232.252|114.315 +637540.514|222234.632|113.310 +637534.388|222236.992|112.542 +637528.051|222239.381|112.764 +637521.775|222241.747|113.032 +637515.408|222244.157|113.118 +637509.095|222246.541|113.261 +637502.777|222248.928|113.468 +637496.428|222251.332|113.480 +637490.128|222253.713|113.596 +637483.684|222256.142|113.913 +637477.396|222258.520|113.992 +637471.026|222260.922|114.264 +637464.680|222263.320|114.398 +637458.328|222265.719|114.575 +637451.948|222268.139|114.520 +637445.590|222270.535|114.809 +637439.177|222272.952|115.084 +637432.825|222275.345|115.379 +637413.729|222282.565|115.763 +637407.289|222284.973|116.406 +637400.940|222287.384|116.284 +637394.539|222289.792|116.665 +637381.731|222294.632|116.982 +637375.367|222297.037|117.123 +637369.003|222299.442|117.269 +637362.581|222301.868|117.427 +637356.152|222304.295|117.647 +637349.758|222306.690|118.186 +637336.987|222311.512|118.561 +637330.574|222313.935|118.766 +637324.069|222316.371|119.323 +637311.219|222321.202|120.122 +637298.362|222326.024|121.180 +637291.861|222328.420|122.606 +637279.105|222333.281|122.027 +637272.616|222335.707|122.719 +637266.245|222338.118|122.752 +637259.805|222340.551|122.935 +637253.267|222342.959|124.407 +637246.793|222345.336|125.953 +637240.252|222347.732|127.626 +637233.808|222350.152|128.074 +637227.365|222352.572|128.544 +637221.031|222355.026|127.446 +637214.603|222357.446|127.763 +637201.804|222362.307|127.547 +637189.061|222367.141|127.474 +637182.693|222369.638|125.800 +637176.338|222372.037|125.965 +637144.331|222384.226|124.877 +637131.554|222389.093|124.392 +637118.792|222393.973|123.514 +637112.342|222396.430|123.313 +637105.948|222398.859|123.191 +637067.515|222413.566|120.375 +637048.307|222420.975|117.763 +637041.964|222423.386|117.671 +637044.213|222425.236|117.708 +637063.440|222417.848|120.457 +637076.257|222413.017|120.366 +637095.429|222405.616|123.792 +637101.848|222403.218|123.316 +637108.258|222400.807|123.185 +637114.714|222398.362|123.380 +637121.054|222395.963|123.530 +637127.503|222393.510|123.886 +637133.895|222391.084|124.249 +637140.210|222388.666|124.916 +637146.666|222386.222|125.093 +637172.184|222376.551|125.986 +637178.591|222374.134|126.020 +637185.010|222371.720|125.834 +637204.060|222364.438|127.775 +637210.461|222362.015|127.928 +637223.259|222357.214|127.394 +637229.541|222354.791|128.422 +637235.985|222352.383|127.995 +637242.425|222349.969|127.675 +637255.407|222345.239|124.197 +637274.630|222338.057|122.707 +637280.992|222335.686|122.131 +637293.726|222330.870|122.380 +637300.136|222328.502|121.347 +637306.503|222326.124|120.820 +637312.947|222323.726|120.213 +637319.329|222321.345|119.634 +637325.685|222318.962|119.357 +637332.009|222316.599|118.811 +637338.440|222314.192|118.482 +637344.802|222311.802|118.250 +637351.114|222309.437|117.921 +637357.472|222307.044|117.781 +637363.800|222304.676|117.385 +637370.179|222302.283|117.120 +637376.473|222299.912|117.083 +637382.832|222297.513|117.040 +637389.144|222295.138|116.873 +637395.472|222292.764|116.614 +637401.845|222290.365|116.510 +637408.139|222288.012|116.068 +637414.452|222285.635|116.031 +637427.119|222280.874|115.641 +637433.462|222278.490|115.419 +637439.768|222276.131|115.032 +637446.130|222273.748|114.712 +637452.357|222271.407|114.529 +637458.739|222269.017|114.111 +637464.972|222266.655|114.389 +637471.199|222264.311|114.279 +637477.506|222261.943|114.053 +637483.797|222259.574|113.953 +637490.060|222257.224|113.648 +637496.309|222254.877|113.474 +637502.536|222252.527|113.468 +637508.806|222250.174|113.185 +637515.060|222247.824|113.035 +637521.281|222245.471|113.151 +637527.584|222243.115|112.727 +637533.796|222240.780|112.532 +637540.069|222238.421|112.343 +637546.089|222236.117|113.044 +637552.139|222233.773|114.337 +637558.129|222231.450|115.620 +637564.109|222229.128|116.943 +637570.189|222226.820|117.269 +637576.432|222224.461|117.367 +637582.574|222222.145|117.345 +637594.936|222217.484|117.251 +637601.163|222215.140|117.159 +637607.305|222212.839|116.842 +637613.459|222210.517|116.861 +637619.595|222208.194|116.995 +637625.770|222205.868|116.922 +637631.893|222203.564|116.809 +637638.096|222201.232|116.635 +637644.238|222198.925|116.473 +637650.389|222196.615|116.284 +637656.683|222194.286|115.337 +637675.882|222187.282|110.387 +637688.315|222182.658|109.015 +637700.547|222178.055|108.796 +637712.754|222173.483|108.152 +637724.925|222168.908|107.796 +637730.966|222166.625|107.860 +637737.007|222164.358|107.649 +637743.054|222162.075|107.723 +637766.688|222153.065|109.625 +637772.662|222150.803|109.829 +637851.679|222121.366|102.233 +637875.834|222112.386|99.520 +637887.170|222108.049|100.816 +637892.943|222105.851|101.191 +637898.819|222103.647|100.907 +637904.562|222101.483|100.929 +637910.594|222099.237|100.331 +637916.388|222097.045|100.429 +637922.228|222094.857|100.127 +637927.986|222092.684|100.161 +637933.271|222090.599|102.032 +637939.029|222088.423|102.090 +637944.710|222086.274|102.212 +637950.526|222084.088|102.081 +637956.189|222081.940|102.297 +637962.020|222079.760|101.904 +637967.683|222077.611|102.154 +637979.506|222073.237|100.395 +637985.456|222071.040|99.414 +637991.247|222068.876|99.030 +637997.331|222066.648|97.615 +638003.000|222064.517|97.500 +638008.615|222062.393|97.585 +638013.976|222060.332|98.359 +638019.225|222058.284|99.789 +638024.854|222056.169|99.624 +638036.227|222051.911|98.975 +638041.923|222049.789|98.414 +638047.748|222047.631|97.655 +638052.945|222045.623|98.637 +638079.780|222035.400|100.749 +638085.491|222034.427|101.105 +638080.115|222036.485|100.700 +638069.282|222040.606|100.432 +638058.678|222044.699|98.981 +638048.053|222048.805|97.411 +638030.914|222055.233|98.883 +638019.475|222059.534|99.633 +638014.397|222061.545|97.853 +638008.910|222063.652|97.314 +638003.232|222065.797|97.475 +637997.310|222068.001|98.316 +637991.412|222070.186|99.322 +637985.617|222072.366|99.743 +637979.653|222074.573|100.807 +637973.605|222076.810|101.974 +637967.848|222078.986|102.078 +637962.172|222081.147|101.901 +637956.418|222083.311|102.282 +637950.806|222085.457|101.892 +637944.914|222087.670|102.343 +637939.172|222089.852|102.239 +637933.445|222092.031|102.096 +637928.105|222094.147|100.212 +637922.384|222096.323|100.063 +637916.467|222098.548|100.447 +637910.673|222100.749|100.371 +637904.702|222102.992|100.767 +637898.813|222105.211|101.112 +637892.900|222107.442|101.310 +637887.100|222109.652|101.069 +637857.437|222120.875|101.575 +637845.452|222125.389|102.154 +637820.900|222134.542|105.306 +637772.022|222152.870|109.451 +637742.192|222164.269|107.628 +637736.089|222166.586|107.543 +637729.981|222168.890|107.820 +637711.577|222175.846|108.219 +637705.423|222178.165|108.506 +637693.094|222182.819|108.924 +637687.041|222185.136|108.436 +637680.658|222187.495|109.679 +637661.212|222194.609|114.940 +637654.793|222196.980|116.248 +637648.606|222199.321|116.300 +637642.409|222201.662|116.446 +637636.197|222204.003|116.687 +637629.982|222206.344|116.973 +637623.761|222208.703|116.967 +637617.629|222211.032|116.833 +637611.432|222213.388|116.739 +637605.229|222215.723|117.059 +637598.954|222218.097|117.083 +637592.778|222220.429|117.299 +637586.521|222222.800|117.263 +637580.324|222225.147|117.269 +637574.079|222227.518|117.217 +637567.900|222229.862|117.135 +637555.839|222234.565|114.389 +637549.710|222236.946|113.230 +637543.614|222239.302|112.276 +637537.338|222241.670|112.490 +637524.658|222246.450|113.017 +637518.361|222248.833|113.051 +637512.076|222251.217|112.996 +637499.436|222255.984|113.480 +637493.075|222258.389|113.621 +637486.772|222260.766|113.797 +637467.685|222267.969|114.450 +637461.400|222270.364|114.142 +637455.042|222272.760|114.395 +637442.271|222277.573|114.971 +637435.940|222279.965|115.081 +637423.184|222284.769|115.696 +637416.814|222287.180|115.742 +637404.030|222292.002|116.220 +637397.691|222294.386|116.608 +637384.868|222299.220|117.086 +637378.561|222301.600|117.245 +637372.167|222304.029|117.144 +637359.368|222308.858|117.610 +637352.946|222311.281|117.839 +637346.573|222313.676|118.171 +637340.150|222316.097|118.458 +637333.722|222318.517|118.808 +637320.884|222323.348|119.461 +637314.428|222325.759|120.219 +637301.526|222330.602|121.140 +637295.009|222332.992|122.746 +637282.196|222337.878|122.124 +637275.776|222340.279|122.731 +637243.355|222352.325|127.666 +637236.981|222354.724|128.010 +637230.489|222357.168|128.330 +637217.752|222362.006|128.068 +637211.357|222364.438|127.910 +637204.953|222366.864|127.916 +637185.866|222374.201|125.806 +637134.587|222393.696|124.276 +637128.201|222396.134|123.834 +637121.813|222398.569|123.536 +637115.357|222401.023|123.350 +637108.962|222403.455|123.115 +637102.494|222405.897|123.283 +637096.084|222408.311|123.566 +637076.845|222415.745|120.485 +637051.227|222425.581|117.738 +637044.756|222428.031|117.729 +637043.957|222431.183|117.857 +637050.370|222428.763|117.830 +637076.053|222418.915|120.978 +637082.548|222416.507|120.079 +637101.729|222409.113|123.280 +637114.540|222404.278|123.210 +637127.336|222399.426|123.670 +637133.785|222396.975|124.036 +637140.174|222394.543|124.429 +637159.279|222387.277|125.599 +637184.885|222377.587|126.059 +637191.231|222375.139|127.151 +637197.543|222372.728|127.736 +637203.938|222370.302|127.995 +637210.357|222367.885|127.821 +637223.113|222363.066|127.934 +637229.505|222360.637|128.242 +637235.869|222358.244|128.077 +637242.315|222355.830|127.669 +637248.768|222353.459|126.379 +637255.297|222351.063|124.956 +637261.765|222348.686|123.621 +637268.175|222346.293|123.109 +637274.566|222343.891|122.856 +637280.989|222341.496|122.271 +637287.356|222339.121|121.655 +637293.680|222336.704|122.283 +637300.124|222334.308|121.554 +637306.503|222331.931|120.884 +637312.941|222329.529|120.320 +637319.296|222327.146|120.034 +637325.681|222324.765|119.421 +637332.046|222322.378|119.104 +637338.419|222319.992|118.732 +637344.783|222317.602|118.455 +637351.108|222315.237|118.016 +637357.472|222312.844|117.799 +637363.751|222310.470|117.857 +637370.124|222308.077|117.623 +637376.464|222305.706|117.162 +637382.768|222303.331|117.046 +637389.165|222300.936|116.687 +637395.463|222298.558|116.687 +637401.787|222296.181|116.458 +637408.109|222293.803|116.306 +637414.446|222291.423|116.050 +637420.785|222289.042|115.785 +637427.083|222286.686|115.391 +637433.419|222284.303|115.212 +637439.717|222281.941|114.876 +637452.311|222277.192|114.773 +637458.636|222274.827|114.300 +637464.917|222272.458|114.187 +637471.205|222270.093|114.029 +637477.466|222267.725|114.130 +637483.705|222265.378|113.944 +637490.024|222263.006|113.645 +637496.272|222260.656|113.459 +637502.533|222258.303|113.197 +637508.766|222255.953|113.142 +637514.996|222253.600|113.151 +637533.760|222246.553|112.368 +637546.159|222241.881|112.145 +637552.301|222239.549|112.447 +637558.366|222237.199|113.648 +637570.257|222232.578|116.352 +637576.301|222230.249|117.281 +637582.513|222227.909|117.196 +637588.648|222225.592|117.202 +637594.787|222223.273|117.229 +637600.983|222220.932|117.278 +637607.147|222218.606|117.193 +637613.361|222216.277|116.830 +637619.552|222213.952|116.626 +637625.678|222211.629|116.809 +637631.796|222209.322|116.720 +637637.965|222206.993|116.699 +637644.101|222204.686|116.544 +637650.309|222202.351|116.355 +637656.460|222200.038|116.175 +637662.578|222197.742|115.849 +637668.920|222195.405|114.678 +637688.327|222188.379|108.457 +637694.502|222186.053|108.338 +637700.519|222183.776|108.418 +637706.615|222181.475|108.418 +637712.729|222179.186|108.034 +637718.783|222176.903|107.982 +637737.043|222170.033|107.448 +637743.103|222167.759|107.147 +637749.101|222165.495|107.162 +637772.778|222156.457|109.173 +637815.463|222140.534|105.153 +637839.956|222131.430|102.181 +637845.936|222129.193|101.782 +637851.807|222126.971|101.861 +637863.780|222122.475|101.398 +637875.758|222118.010|100.188 +637881.479|222115.812|100.990 +637892.937|222111.447|101.779 +637898.743|222109.256|101.752 +637904.608|222107.043|101.767 +637910.505|222104.848|101.157 +637916.473|222102.623|100.548 +637922.329|222100.435|100.161 +637928.099|222098.246|100.374 +637933.387|222096.162|102.221 +637939.093|222093.994|102.456 +637944.777|222091.849|102.544 +637950.669|222089.645|102.099 +637956.439|222087.466|102.142 +637962.123|222085.326|102.032 +637967.805|222083.174|102.194 +637973.496|222081.031|102.102 +637979.198|222078.873|102.212 +637985.060|222076.685|101.767 +637990.967|222074.509|100.691 +637996.895|222072.314|99.804 +638002.647|222070.165|99.353 +638008.273|222068.041|99.371 +638014.464|222065.800|97.387 +638019.627|222063.770|99.097 +638025.339|222061.625|98.862 +638030.969|222059.521|98.475 +638047.952|222053.157|97.567 +638058.703|222049.045|98.731 +638064.043|222047.006|99.213 +638085.434|222038.850|100.944 +638088.533|222039.469|100.938 +638077.765|222043.571|100.423 +638072.330|222045.638|100.237 +638056.304|222051.798|98.377 +638045.428|222055.958|97.460 +638039.683|222058.098|98.219 +638034.072|222060.232|98.070 +638028.259|222062.393|98.865 +638022.718|222064.508|98.496 +638017.335|222066.590|97.582 +638010.989|222068.870|100.127 +638005.615|222070.948|99.210 +637999.836|222073.109|99.761 +637993.859|222075.319|100.828 +637987.910|222077.523|101.831 +637982.085|222079.715|102.151 +637976.397|222081.863|102.224 +637970.701|222084.027|102.120 +637964.952|222086.198|102.209 +637959.271|222088.356|102.069 +637953.501|222090.541|102.041 +637947.761|222092.708|102.151 +637941.903|222094.909|102.492 +637936.112|222097.109|102.352 +637930.577|222099.249|101.477 +637925.072|222101.392|100.237 +637919.122|222103.620|100.749 +637913.151|222105.851|101.383 +637907.147|222108.098|101.913 +637901.291|222110.304|102.139 +637895.488|222112.511|101.895 +637889.514|222114.751|102.379 +637883.948|222116.928|100.941 +637872.162|222121.399|100.788 +637866.194|222123.645|101.051 +637860.253|222125.886|101.227 +637848.280|222130.406|101.471 +637836.223|222134.935|102.184 +637811.564|222144.125|105.168 +637792.868|222151.047|108.372 +637774.677|222157.908|108.954 +637768.633|222160.188|109.097 +637750.930|222166.991|107.012 +637744.819|222169.308|106.942 +637738.708|222171.609|107.195 +637732.447|222173.944|107.902 +637714.189|222180.856|107.896 +637707.956|222183.200|108.259 +637695.789|222187.827|107.851 +637689.397|222190.183|109.113 +637669.887|222197.304|114.614 +637663.428|222199.675|116.080 +637657.301|222201.994|116.129 +637651.093|222204.335|116.312 +637644.890|222206.676|116.489 +637638.611|222209.038|116.760 +637632.451|222211.373|116.745 +637626.255|222213.726|116.608 +637620.110|222216.055|116.534 +637613.834|222218.414|116.891 +637607.610|222220.767|116.973 +637601.380|222223.120|117.104 +637595.177|222225.470|117.101 +637588.919|222227.838|117.086 +637582.732|222230.185|117.031 +637576.511|222232.551|116.821 +637570.461|222234.904|115.556 +637558.375|222239.607|112.913 +637552.231|222241.966|112.252 +637546.007|222244.331|112.106 +637539.682|222246.718|112.237 +637533.388|222249.083|112.602 +637527.030|222251.473|113.002 +637520.745|222253.853|112.953 +637508.160|222258.617|112.996 +637501.786|222261.022|113.188 +637495.431|222263.424|113.279 +637489.103|222265.801|113.642 +637476.390|222270.599|113.950 +637457.355|222277.786|114.376 +637450.936|222280.203|114.666 +637444.612|222282.596|114.733 +637438.186|222285.007|115.129 +637431.877|222287.396|115.093 +637425.488|222289.811|115.257 +637419.078|222292.218|115.617 +637412.733|222294.605|115.977 +637399.967|222299.418|116.373 +637393.591|222301.823|116.562 +637387.209|222304.225|116.854 +637380.747|222306.651|117.312 +637368.037|222311.454|117.498 +637355.253|222316.273|117.876 +637348.816|222318.693|118.281 +637342.378|222321.110|118.711 +637335.969|222323.528|118.909 +637329.546|222325.942|119.247 +637323.139|222328.359|119.445 +637303.827|222335.579|121.274 +637297.280|222337.996|122.563 +637290.898|222340.444|121.951 +637284.521|222342.855|122.036 +637278.087|222345.254|122.822 +637271.649|222347.683|122.932 +637265.176|222350.106|123.566 +637245.684|222357.290|127.544 +637239.249|222359.713|127.843 +637232.803|222362.128|128.367 +637188.177|222379.145|125.919 +637149.757|222393.744|124.919 +637143.374|222396.180|124.535 +637136.989|222398.615|124.151 +637130.603|222401.051|123.816 +637124.160|222403.510|123.420 +637117.762|222405.936|123.365 +637111.373|222408.369|123.085 +637104.920|222410.822|122.899 +637085.724|222418.193|120.808 +637072.843|222423.042|121.402 +637040.845|222435.335|117.796 +637075.184|222425.105|121.710 +637081.585|222422.685|121.768 +637087.989|222420.262|121.890 +637113.696|222410.499|123.030 +637120.084|222408.064|123.527 +637126.482|222405.641|123.703 +637139.275|222400.788|124.161 +637145.663|222398.356|124.572 +637152.110|222395.902|125.014 +637158.428|222393.488|125.572 +637190.420|222381.367|126.486 +637203.082|222376.511|128.083 +637228.721|222366.828|128.147 +637235.061|222364.426|128.312 +637241.514|222362.015|127.803 +637247.902|222359.625|127.343 +637254.474|222357.242|125.319 +637273.804|222350.051|123.118 +637280.193|222347.649|122.911 +637299.356|222340.435|122.502 +637305.845|222338.042|121.274 +637312.218|222335.665|120.707 +637318.577|222333.281|120.347 +637325.047|222330.882|119.488 +637331.406|222328.496|119.183 +637337.779|222326.109|118.790 +637344.204|222323.695|118.497 +637350.507|222321.327|118.269 +637363.263|222316.545|117.580 +637369.628|222314.152|117.418 +637376.004|222311.756|117.162 +637388.699|222306.983|116.717 +637395.014|222304.609|116.574 +637401.354|222302.231|116.199 +637407.703|222299.829|116.336 +637413.979|222297.473|116.038 +637420.368|222295.071|115.882 +637433.078|222290.307|115.166 +637439.369|222287.945|114.861 +637445.703|222285.559|114.767 +637452.024|222283.172|114.767 +637458.334|222280.807|114.422 +637464.658|222278.441|113.971 +637470.962|222276.073|113.739 +637477.207|222273.705|113.953 +637483.510|222271.337|113.752 +637489.817|222268.965|113.547 +637496.114|222266.591|113.447 +637502.365|222264.241|113.264 +637508.696|222261.866|112.983 +637514.886|222259.535|112.828 +637533.659|222252.469|112.420 +637546.156|222247.772|111.984 +637558.564|222243.075|112.215 +637564.612|222240.768|112.758 +637570.680|222238.418|113.962 +637576.535|222236.123|115.708 +637582.613|222233.773|116.830 +637588.727|222231.456|116.979 +637594.924|222229.116|117.043 +637601.069|222226.796|117.043 +637607.214|222224.477|117.059 +637613.389|222222.151|116.928 +637619.567|222219.825|116.800 +637625.785|222217.494|116.464 +637631.939|222215.168|116.525 +637638.017|222212.867|116.684 +637644.204|222210.535|116.601 +637650.334|222208.225|116.507 +637656.488|222205.911|116.294 +637662.642|222203.598|116.117 +637668.735|222201.306|115.949 +637675.096|222198.965|114.703 +637681.372|222196.648|113.636 +637694.380|222191.951|109.216 +637700.729|222189.616|107.896 +637706.816|222187.315|107.951 +637712.867|222185.035|107.893 +637725.098|222180.436|107.509 +637731.133|222178.156|107.595 +637743.264|222173.593|107.208 +637749.385|222171.295|106.948 +637755.225|222169.055|107.741 +637773.046|222162.276|108.762 +637791.350|222155.445|107.110 +637834.263|222139.501|101.840 +637840.240|222137.252|101.718 +637858.098|222130.522|101.480 +637864.033|222128.303|101.069 +637869.994|222126.062|100.843 +637881.836|222121.609|100.508 +637887.237|222119.479|102.379 +637892.851|222117.312|103.367 +637898.810|222115.084|102.968 +637904.605|222112.895|103.004 +637910.429|222110.697|102.919 +637916.358|222108.485|102.450 +637922.335|222106.257|101.813 +637928.114|222104.080|101.718 +637933.686|222101.941|102.459 +637939.452|222099.752|102.693 +637945.311|222097.558|102.343 +637951.102|222095.375|102.279 +637956.844|222093.211|102.172 +637962.523|222091.062|102.325 +637968.277|222088.883|102.440 +637974.059|222086.710|102.236 +637979.607|222084.594|102.684 +637991.174|222080.254|102.111 +637996.965|222078.087|101.709 +638002.894|222075.892|100.834 +638008.810|222073.710|99.783 +638014.766|222071.515|98.630 +638031.709|222065.133|98.365 +638037.391|222062.993|98.268 +638043.066|222060.863|97.984 +638054.073|222056.699|98.213 +638059.568|222054.617|98.377 +638064.966|222052.554|98.880 +638070.151|222050.545|99.908 +638091.664|222044.489|100.901 +638075.518|222050.646|100.023 +638064.911|222054.721|98.822 +638059.526|222056.787|98.283 +638053.957|222058.903|98.167 +638042.832|222063.115|98.173 +638037.147|222065.264|98.289 +638031.578|222067.376|98.234 +638026.077|222069.473|97.960 +638020.468|222071.601|97.853 +638014.488|222073.807|99.094 +638008.432|222076.036|100.407 +638002.446|222078.248|101.499 +637996.642|222080.425|101.941 +637973.773|222089.075|102.194 +637967.979|222091.254|102.465 +637962.288|222093.415|102.379 +637956.558|222095.595|102.203 +637950.745|222097.789|102.349 +637944.954|222099.978|102.453 +637939.105|222102.175|102.785 +637927.638|222106.552|102.111 +637921.692|222108.777|102.639 +637915.721|222111.021|103.032 +637909.905|222113.218|103.077 +637904.028|222115.443|103.135 +637898.094|222117.687|103.190 +637892.169|222119.918|103.480 +637886.637|222122.076|102.194 +637880.931|222124.292|101.084 +637874.859|222126.556|101.764 +637863.158|222131.019|101.081 +637857.095|222133.295|101.541 +637851.085|222135.557|101.785 +637845.086|222137.834|101.733 +637839.094|222140.092|101.947 +637833.132|222142.357|101.776 +637820.665|222146.975|103.870 +637814.588|222149.258|104.281 +637808.431|222151.565|104.797 +637796.312|222156.131|105.296 +637753.554|222172.246|106.866 +637722.925|222183.816|107.445 +637716.713|222186.157|107.689 +637710.593|222188.470|107.808 +637704.512|222190.790|107.412 +637697.986|222193.167|109.353 +637678.485|222200.291|114.730 +637672.090|222202.659|115.852 +637665.921|222204.981|116.117 +637659.661|222207.344|116.217 +637653.464|222209.685|116.345 +637647.207|222212.047|116.477 +637641.016|222214.385|116.598 +637634.826|222216.738|116.403 +637628.647|222219.072|116.501 +637622.307|222221.456|116.833 +637616.141|222223.785|116.912 +637609.859|222226.159|116.967 +637603.647|222228.509|116.992 +637597.375|222230.883|117.046 +637591.190|222233.227|116.940 +637585.036|222235.590|116.300 +637573.003|222240.290|113.328 +637554.440|222247.376|112.090 +637548.134|222249.763|112.066 +637541.886|222252.128|112.100 +637535.454|222254.539|112.545 +637529.133|222256.926|112.712 +637522.894|222259.285|112.752 +637516.538|222261.690|112.773 +637510.238|222264.070|112.865 +637503.868|222266.472|113.032 +637491.173|222271.254|113.553 +637484.803|222273.653|113.809 +637472.105|222278.469|113.596 +637459.376|222283.257|114.194 +637453.033|222285.650|114.358 +637446.590|222288.064|114.855 +637433.895|222292.868|114.928 +637427.464|222295.279|115.431 +637414.662|222300.094|116.016 +637408.279|222302.502|116.199 +637401.958|222304.883|116.406 +637395.505|222307.312|116.729 +637382.789|222312.119|116.851 +637376.330|222314.539|117.339 +637363.526|222319.361|117.879 +637357.180|222321.760|117.943 +637350.742|222324.177|118.336 +637331.500|222331.428|118.976 +637318.595|222336.244|120.415 +637305.665|222341.078|121.649 +637299.246|222343.486|122.140 +637292.891|222345.936|121.183 +637247.610|222362.768|127.519 +637241.179|222365.191|127.803 +637234.735|222367.605|128.294 +637221.943|222372.463|127.946 +637215.527|222374.886|128.080 +637209.123|222377.310|128.089 +637202.713|222379.733|128.163 +637189.999|222384.622|126.599 +637183.626|222387.060|126.062 +637158.050|222396.768|125.477 +637151.677|222399.210|124.877 +637145.236|222401.666|124.474 +637138.845|222404.096|124.270 +637119.618|222411.414|123.463 +637113.235|222413.852|122.996 +637093.926|222421.177|122.691 +637081.152|222426.053|121.801 +637074.696|222428.504|121.615 +637061.904|222433.359|121.375 +637075.733|222431.223|121.890 +637088.583|222426.334|122.627 +637101.443|222421.463|122.847 +637107.850|222419.046|122.768 +637114.253|222416.620|122.874 +637120.636|222414.181|123.420 +637152.600|222402.035|124.840 +637165.366|222397.164|125.831 +637184.577|222389.898|125.953 +637209.991|222380.166|128.644 +637216.356|222377.773|128.355 +637235.534|222370.531|128.260 +637241.919|222368.141|127.815 +637248.299|222365.745|127.440 +637254.779|222363.338|126.617 +637267.705|222358.586|123.923 +637280.541|222353.794|122.710 +637286.935|222351.389|122.454 +637306.052|222344.193|121.884 +637318.887|222339.414|120.430 +637344.384|222329.870|118.570 +637350.815|222327.453|118.260 +637357.116|222325.085|118.025 +637363.471|222322.689|117.900 +637369.856|222320.297|117.519 +637382.518|222315.523|117.278 +637395.152|222310.769|116.824 +637401.491|222308.394|116.455 +637407.831|222306.014|116.096 +637414.211|222303.612|115.952 +637420.459|222301.253|115.925 +637426.881|222298.845|115.480 +637433.112|222296.510|115.141 +637439.534|222294.099|114.754 +637445.800|222291.737|114.684 +637452.155|222289.350|114.392 +637458.453|222286.982|114.120 +637464.762|222284.617|113.770 +637477.338|222279.877|113.511 +637496.108|222272.787|113.505 +637502.362|222270.434|113.270 +637514.944|222265.707|112.810 +637521.196|222263.351|112.673 +637527.438|222260.995|112.621 +637533.680|222258.639|112.575 +637546.193|222253.939|111.990 +637552.404|222251.601|111.825 +637558.595|222249.263|111.819 +637564.843|222246.901|111.874 +637576.987|222242.256|113.051 +637588.926|222237.607|115.910 +637594.903|222235.300|116.903 +637601.108|222232.956|116.897 +637607.253|222230.633|116.897 +637613.401|222228.311|116.915 +637619.543|222225.988|116.976 +637625.712|222223.660|116.906 +637631.930|222221.328|116.571 +637638.084|222219.018|116.281 +637644.226|222216.689|116.431 +637650.285|222214.403|116.370 +637656.451|222212.071|116.412 +637662.599|222209.758|116.248 +637668.750|222207.441|116.077 +637674.846|222205.149|115.907 +637681.018|222202.827|115.672 +637706.807|222193.454|108.058 +637719.030|222188.854|107.631 +637725.159|222186.562|107.211 +637785.519|222163.788|106.622 +637797.821|222159.207|105.223 +637828.151|222147.865|102.858 +637834.299|222145.585|101.928 +637840.154|222143.369|102.032 +637852.264|222138.840|101.133 +637863.789|222134.429|102.258 +637869.580|222132.219|102.721 +637875.341|222130.016|103.312 +637881.223|222127.800|103.151 +637887.054|222125.596|103.230 +637892.763|222123.411|103.818 +637898.490|222121.234|104.071 +637904.376|222119.015|103.971 +637910.246|222116.800|103.949 +637916.062|222114.617|103.650 +637921.923|222112.414|103.440 +637927.836|222110.201|103.056 +637933.618|222108.021|102.956 +637939.370|222105.848|102.986 +637945.241|222103.654|102.581 +637951.026|222101.471|102.511 +637956.850|222099.280|102.325 +637962.520|222097.131|102.492 +637968.177|222094.985|102.733 +637973.992|222092.806|102.383 +638002.476|222082.058|102.175 +638008.282|222079.900|101.511 +638014.281|222077.700|100.176 +638020.478|222075.456|98.152 +638026.180|222073.314|97.939 +638031.700|222071.208|98.390 +638037.284|222069.098|98.399 +638042.874|222066.998|98.158 +638054.039|222062.789|98.042 +638059.547|222060.695|98.377 +638070.258|222056.598|99.453 +638081.197|222052.450|99.801 +638086.756|222050.362|99.575 +638088.186|222051.658|99.225 +638077.091|222055.849|99.624 +638066.243|222059.991|99.014 +638060.854|222062.060|98.502 +638055.453|222064.133|98.030 +638049.757|222066.276|98.380 +638033.026|222072.628|98.280 +638027.473|222074.749|97.963 +638021.968|222076.849|97.713 +638015.512|222079.154|100.679 +638009.544|222081.367|101.681 +637975.273|222094.333|102.322 +637969.463|222096.533|102.416 +637963.715|222098.707|102.547 +637958.054|222100.862|102.352 +637952.248|222103.056|102.489 +637946.445|222105.251|102.632 +637940.550|222107.473|102.895 +637928.842|222111.886|103.431 +637917.016|222116.345|104.007 +637911.170|222118.552|104.190 +637905.281|222120.780|104.300 +637899.435|222122.999|104.269 +637893.650|222125.206|103.998 +637887.783|222127.440|103.821 +637881.805|222129.693|104.117 +637875.975|222131.918|103.815 +637870.043|222134.158|103.964 +637864.304|222136.368|103.315 +637858.558|222138.590|102.431 +637846.845|222143.070|101.642 +637810.269|222156.792|104.650 +637792.054|222163.660|105.455 +637785.912|222165.976|105.705 +637761.699|222175.151|105.869 +637743.274|222182.109|106.427 +637737.165|222184.414|106.705 +637731.039|222186.730|106.775 +637706.155|222196.063|108.930 +637692.972|222200.851|113.246 +637686.507|222203.217|114.983 +637680.189|222205.579|115.669 +637674.026|222207.904|115.882 +637667.811|222210.255|116.059 +637661.605|222212.598|116.217 +637655.424|222214.936|116.278 +637649.246|222217.277|116.336 +637643.049|222219.633|116.169 +637636.849|222221.971|116.391 +637630.570|222224.333|116.733 +637624.389|222226.668|116.894 +637618.138|222229.045|116.775 +637611.932|222231.395|116.760 +637605.732|222233.749|116.736 +637599.508|222236.099|116.867 +637593.415|222238.458|115.870 +637575.353|222245.517|111.481 +637569.107|222247.885|111.420 +637562.829|222250.257|111.612 +637556.589|222252.622|111.554 +637543.907|222257.404|112.036 +637524.981|222264.564|112.301 +637518.678|222266.947|112.420 +637512.314|222269.334|112.959 +637505.953|222271.736|113.081 +637499.634|222274.119|113.392 +637480.654|222281.319|113.221 +637474.342|222283.715|113.115 +637467.984|222286.113|113.355 +637461.598|222288.509|113.861 +637436.062|222298.125|115.132 +637429.658|222300.536|115.446 +637423.254|222302.947|115.772 +637416.860|222305.355|116.068 +637410.578|222307.742|115.931 +637404.180|222310.150|116.309 +637397.739|222312.579|116.562 +637391.345|222314.981|116.970 +637384.993|222317.386|117.010 +637378.613|222319.788|117.339 +637372.185|222322.211|117.580 +637365.842|222324.613|117.610 +637359.405|222327.033|118.007 +637352.998|222329.456|118.147 +637346.637|222331.852|118.446 +637340.224|222334.272|118.674 +637327.349|222339.097|119.756 +637320.896|222341.505|120.543 +637314.477|222343.916|120.997 +637307.985|222346.345|121.640 +637301.557|222348.750|122.274 +637256.495|222365.611|126.678 +637250.024|222368.025|127.474 +637243.599|222370.449|127.684 +637237.219|222372.844|128.153 +637230.776|222375.301|127.843 +637224.433|222377.706|127.815 +637217.998|222380.120|128.315 +637211.582|222382.540|128.525 +637205.249|222384.945|128.416 +637198.878|222387.383|127.925 +637179.789|222394.708|125.965 +637166.993|222399.557|125.880 +637160.620|222401.995|125.358 +637154.182|222404.452|124.956 +637147.867|222406.869|124.417 +637135.026|222411.749|124.026 +637128.634|222414.175|123.941 +637115.817|222419.076|122.886 +637109.425|222421.506|122.679 +637096.572|222426.376|122.633 +637090.180|222428.809|122.374 +637077.403|222433.679|121.673 +637080.500|222435.447|121.789 +637086.895|222433.012|122.268 +637093.353|222430.561|122.518 +637106.170|222425.730|122.518 +637112.632|222423.283|122.722 +637119.024|222420.850|123.170 +637125.415|222418.418|123.557 +637131.813|222415.995|123.828 +637138.272|222413.547|124.023 +637144.609|222411.142|124.337 +637151.055|222408.689|124.776 +637157.447|222406.260|125.191 +637170.169|222401.428|125.834 +637176.570|222399.008|125.980 +637189.286|222394.119|127.888 +637195.672|222391.693|128.260 +637202.012|222389.294|128.422 +637214.883|222384.433|128.562 +637221.235|222382.037|128.537 +637234.080|222377.206|128.257 +637240.459|222374.816|127.910 +637246.897|222372.402|127.614 +637253.276|222370.013|127.321 +637259.753|222367.605|126.572 +637279.166|222360.442|123.298 +637298.426|222353.255|121.682 +637304.696|222350.862|122.298 +637311.146|222348.466|121.509 +637330.421|222341.288|119.607 +637336.810|222338.905|119.034 +637343.177|222336.521|118.714 +637349.541|222334.132|118.449 +637355.845|222331.766|118.217 +637362.258|222329.352|118.125 +637368.649|222326.963|117.677 +637374.956|222324.594|117.495 +637381.344|222322.202|117.144 +637387.638|222319.827|117.123 +637394.042|222317.432|116.690 +637400.367|222315.060|116.464 +637406.755|222312.661|116.227 +637413.068|222310.284|116.153 +637419.405|222307.907|115.903 +637425.799|222305.505|115.672 +637432.103|222303.149|115.251 +637438.424|222300.768|115.196 +637444.837|222298.385|114.413 +637451.208|222296.001|114.023 +637457.462|222293.636|114.105 +637463.835|222291.249|113.724 +637470.203|222288.881|112.987 +637476.439|222286.513|113.252 +637482.888|222284.120|112.414 +637488.988|222281.773|113.291 +637501.576|222277.030|113.115 +637520.434|222269.947|112.322 +637526.701|222267.594|112.106 +637532.894|222265.241|112.410 +637539.161|222262.881|112.246 +637545.446|222260.522|111.975 +637551.716|222258.160|111.844 +637557.988|222255.819|111.304 +637564.133|222253.484|111.615 +637570.311|222251.147|111.734 +637576.590|222248.781|111.615 +637588.770|222244.115|113.029 +637594.671|222241.814|114.523 +637600.673|222239.488|115.782 +637606.650|222237.184|116.803 +637612.852|222234.837|116.848 +637619.015|222232.514|116.790 +637625.240|222230.167|116.763 +637631.406|222227.838|116.717 +637637.578|222225.513|116.678 +637643.750|222223.199|116.291 +637649.947|222220.868|116.156 +637656.034|222218.563|116.306 +637662.154|222216.253|116.275 +637668.351|222213.915|116.208 +637674.440|222211.623|116.056 +637680.604|222209.307|115.870 +637686.718|222207.011|115.647 +637692.985|222204.677|114.956 +637699.422|222202.336|113.093 +637712.467|222197.627|108.640 +637718.728|222195.316|107.528 +637725.077|222192.978|106.308 +637737.144|222188.416|106.494 +637743.277|222186.117|106.119 +637749.330|222183.831|106.159 +637755.478|222181.527|105.766 +637767.548|222176.982|105.534 +637779.706|222172.420|104.964 +637785.751|222170.143|104.882 +637791.722|222167.875|105.153 +637797.711|222165.620|105.071 +637803.834|222163.324|104.693 +637834.186|222151.980|102.334 +637852.289|222145.201|101.197 +637863.420|222140.851|104.269 +637869.348|222138.632|103.867 +637875.295|222136.398|103.672 +637881.214|222134.164|103.617 +637886.941|222131.979|104.123 +637892.751|222129.778|104.284 +637904.355|222125.377|104.733 +637910.176|222123.182|104.650 +637939.568|222112.154|103.084 +637945.405|222109.963|102.794 +637951.193|222107.777|102.712 +637957.006|222105.589|102.556 +637968.539|222101.252|102.163 +637974.233|222099.085|102.514 +637979.890|222096.945|102.541 +638014.208|222084.012|101.861 +638020.042|222081.845|101.133 +638026.692|222079.507|97.500 +638043.420|222073.161|98.060 +638048.882|222071.086|98.292 +638065.442|222064.810|98.697 +638070.754|222062.774|99.267 +638076.268|222060.686|99.395 +638087.348|222056.516|99.060 +638092.709|222054.468|99.520 +638091.630|222056.516|99.200 +638080.618|222060.683|99.289 +638069.715|222064.834|98.850 +638064.235|222066.931|98.402 +638058.745|222069.019|98.240 +638053.128|222071.144|98.298 +638047.513|222073.265|98.368 +638036.440|222077.477|98.015 +638025.141|222081.757|98.045 +638018.579|222084.091|101.148 +637984.118|222097.076|102.559 +637978.385|222099.246|102.575 +637972.746|222101.395|102.261 +637967.015|222103.565|102.303 +637961.194|222105.763|102.471 +637955.372|222107.957|102.657 +637949.560|222110.149|102.818 +637943.762|222112.340|102.953 +637937.852|222114.562|103.291 +637914.258|222123.441|104.428 +637896.625|222130.122|104.416 +637890.709|222132.363|104.422 +637885.024|222134.548|103.760 +637879.126|222136.782|103.730 +637873.143|222139.044|103.818 +637867.148|222141.309|103.964 +637861.216|222143.546|104.132 +637855.434|222145.783|103.141 +637849.612|222148.014|102.605 +637843.766|222150.248|102.181 +637837.881|222152.504|101.654 +637831.678|222154.808|102.553 +637825.484|222157.113|103.431 +637819.373|222159.414|103.705 +637813.298|222161.694|104.108 +637807.178|222163.995|104.470 +637801.049|222166.296|104.885 +637788.969|222170.865|104.973 +637764.610|222180.070|105.461 +637758.489|222182.374|105.705 +637746.255|222186.998|105.933 +637727.835|222193.954|106.321 +637715.080|222198.666|108.799 +637701.927|222203.433|113.160 +637695.322|222205.835|115.273 +637689.123|222208.164|115.611 +637682.893|222210.514|115.812 +637676.678|222212.861|115.967 +637670.457|222215.208|116.163 +637664.275|222217.548|116.187 +637658.097|222219.889|116.196 +637651.888|222222.248|116.065 +637645.676|222224.589|116.303 +637639.385|222226.955|116.678 +637633.146|222229.314|116.778 +637626.943|222231.667|116.684 +637620.728|222234.023|116.693 +637614.520|222236.376|116.684 +637608.241|222238.750|116.751 +637596.226|222243.438|114.005 +637590.273|222245.767|112.471 +637577.892|222250.500|111.578 +637571.546|222252.896|111.761 +637565.386|222255.240|111.551 +637559.073|222257.651|111.161 +637546.385|222262.415|112.048 +637540.060|222264.802|112.206 +637533.729|222267.191|112.420 +637527.481|222269.572|112.100 +637521.104|222271.983|112.267 +637514.765|222274.366|112.630 +637502.018|222279.176|113.026 +637489.341|222283.977|113.020 +637483.001|222286.378|113.081 +637476.622|222288.777|113.435 +637470.239|222291.197|113.389 +637463.896|222293.593|113.514 +637457.563|222295.989|113.614 +637438.238|222303.234|115.193 +637431.892|222305.624|115.504 +637425.507|222308.035|115.654 +637419.121|222310.446|115.858 +637412.687|222312.878|115.949 +637406.280|222315.283|116.379 +637399.961|222317.666|116.595 +637393.518|222320.096|116.870 +637380.707|222324.924|117.360 +637374.258|222327.347|117.778 +637367.915|222329.752|117.784 +637361.496|222332.175|117.973 +637355.089|222334.595|118.080 +637348.724|222336.994|118.366 +637342.208|222339.429|119.015 +637329.354|222344.260|119.848 +637322.893|222346.668|120.677 +637316.458|222349.076|121.283 +637309.975|222351.508|121.798 +637297.140|222356.355|122.100 +637290.718|222358.759|122.701 +637284.241|222361.186|123.267 +637277.773|222363.609|123.813 +637258.336|222370.823|126.910 +637251.892|222373.244|127.343 +637245.455|222375.667|127.678 +637239.014|222378.084|128.129 +637232.608|222380.513|128.074 +637226.243|222382.912|128.348 +637213.353|222387.780|128.650 +637207.020|222390.187|128.513 +637200.564|222392.638|128.382 +637194.242|222395.049|128.038 +637187.854|222397.481|127.861 +637181.435|222399.953|127.044 +637175.073|222402.401|126.282 +637162.308|222407.272|125.602 +637155.929|222409.710|125.157 +637149.549|222412.151|124.663 +637143.103|222414.611|124.343 +637136.714|222417.046|124.048 +637130.329|222419.485|123.673 +637123.870|222421.935|123.633 +637117.490|222424.380|123.039 +637111.108|222426.821|122.594 +637104.649|222429.275|122.457 +637098.255|222431.707|122.274 +637091.799|222434.161|122.185 +637085.398|222436.587|122.124 +637079.009|222439.029|121.707 +637066.095|222443.939|121.396 +637073.557|222444.162|121.500 +637080.494|222441.525|121.859 +637092.814|222436.871|122.051 +637099.215|222434.445|122.256 +637105.673|222432.003|122.380 +637112.071|222429.577|122.579 +637118.466|222427.151|122.896 +637124.854|222424.721|123.295 +637131.243|222422.289|123.725 +637137.696|222419.838|124.051 +637144.078|222417.406|124.523 +637169.581|222407.668|126.977 +637175.957|222405.239|127.477 +637182.346|222402.812|127.772 +637188.735|222400.389|128.022 +637195.123|222397.966|128.315 +637201.433|222395.558|128.900 +637207.833|222393.138|128.946 +637214.262|222390.733|128.598 +637233.449|222383.509|128.205 +637239.868|222381.092|128.117 +637246.308|222378.684|127.711 +637252.685|222376.292|127.388 +637259.052|222373.899|127.212 +637265.508|222371.485|126.742 +637271.951|222369.107|125.651 +637278.392|222366.727|124.642 +637284.771|222364.325|124.471 +637291.181|222361.932|123.993 +637297.631|222359.546|123.033 +637304.004|222357.138|123.057 +637310.417|222354.739|122.627 +637316.851|222352.343|121.975 +637323.194|222349.993|121.076 +637342.482|222342.812|119.067 +637348.855|222340.429|118.653 +637355.232|222338.042|118.244 +637361.596|222335.653|117.997 +637367.976|222333.266|117.626 +637374.273|222330.895|117.498 +637380.613|222328.502|117.555 +637386.931|222326.131|117.257 +637393.311|222323.738|116.998 +637399.693|222321.342|116.726 +637406.012|222318.968|116.534 +637412.336|222316.593|116.288 +637425.046|222311.814|115.913 +637431.322|222309.461|115.644 +637444.063|222304.700|114.678 +637456.700|222299.957|114.154 +637462.955|222297.595|114.209 +637469.334|222295.212|113.788 +637475.643|222292.846|113.477 +637494.514|222285.751|113.090 +637507.068|222281.035|112.688 +637513.347|222278.685|112.304 +637519.638|222276.314|112.301 +637525.896|222273.961|112.115 +637532.120|222271.611|112.164 +637538.362|222269.261|112.130 +637550.807|222264.573|111.975 +637557.050|222262.238|111.594 +637563.353|222259.879|111.249 +637569.504|222257.544|111.527 +637581.909|222252.872|111.444 +637588.261|222250.500|110.899 +637594.232|222248.199|111.959 +637600.246|222245.874|113.139 +637606.132|222243.578|114.709 +637612.100|222241.259|116.153 +637618.183|222238.945|116.537 +637624.325|222236.629|116.605 +637630.482|222234.306|116.586 +637636.639|222231.984|116.592 +637642.817|222229.658|116.501 +637648.938|222227.357|116.416 +637655.125|222225.043|115.971 +637661.291|222222.715|116.010 +637667.372|222220.414|116.205 +637673.511|222218.103|116.099 +637679.640|222215.796|116.062 +637685.745|222213.504|115.836 +637691.909|222211.187|115.678 +637698.020|222208.892|115.477 +637704.262|222206.579|114.611 +637730.067|222197.230|106.683 +637736.388|222194.899|105.638 +637742.445|222192.616|105.623 +637754.402|222188.083|106.107 +637772.766|222181.222|104.757 +637784.870|222176.675|104.452 +637815.018|222165.342|103.678 +637821.025|222163.084|103.583 +637833.150|222158.569|102.386 +637839.146|222156.308|102.410 +637844.979|222154.086|102.864 +637850.859|222151.870|102.861 +637868.358|222145.210|104.114 +637874.271|222142.985|104.047 +637880.117|222140.781|103.998 +637885.951|222138.581|104.025 +637891.812|222136.362|104.220 +637897.612|222134.167|104.425 +637938.666|222118.747|103.273 +637944.466|222116.568|103.117 +637950.276|222114.389|102.949 +637961.831|222110.045|102.666 +637967.622|222107.866|102.620 +637973.386|222105.702|102.459 +637979.119|222103.544|102.434 +637984.776|222101.410|102.462 +637990.546|222099.231|102.572 +638019.267|222088.471|101.236 +638025.769|222086.170|98.115 +638031.764|222083.973|96.866 +638037.223|222081.894|97.314 +638048.169|222077.718|98.371 +638053.792|222075.615|98.054 +638059.364|222073.509|98.152 +638064.832|222071.436|98.405 +638070.389|222069.345|98.368 +638075.854|222067.273|98.652 +638086.897|222063.109|98.667 +638092.319|222061.067|98.701 +638097.897|222058.976|98.451 +638103.018|222056.995|99.517 +638099.713|222059.784|98.426 +638088.722|222063.938|98.655 +638083.233|222066.020|98.664 +638077.603|222068.138|98.938 +638072.260|222070.196|98.252 +638066.740|222072.293|98.185 +638061.220|222074.387|98.134 +638055.670|222076.499|97.966 +638049.961|222078.654|98.152 +638039.098|222082.823|97.070 +638033.300|222084.994|97.612 +638027.549|222087.155|98.012 +638021.063|222089.462|101.102 +637997.977|222098.149|102.413 +637992.247|222100.310|102.642 +637986.575|222102.468|102.434 +637975.059|222106.833|102.468 +637969.301|222109.006|102.623 +637963.571|222111.173|102.703 +637951.870|222115.590|103.102 +637946.106|222117.772|103.111 +637940.275|222119.982|103.157 +637899.005|222135.554|104.544 +637893.153|222137.782|104.312 +637887.286|222140.013|104.153 +637881.415|222142.244|104.031 +637875.450|222144.503|104.044 +637869.473|222146.765|104.132 +637863.563|222148.999|104.236 +637851.700|222153.513|103.836 +637845.997|222155.726|102.821 +637840.078|222157.984|102.462 +637834.083|222160.258|102.468 +637803.594|222171.709|104.534 +637797.583|222173.992|104.440 +637785.473|222178.583|104.440 +637773.306|222183.176|104.800 +637767.063|222185.514|105.315 +637748.803|222192.433|105.382 +637742.981|222194.694|104.224 +637736.525|222197.072|105.610 +637730.085|222199.416|107.607 +637710.520|222206.560|113.209 +637703.954|222208.941|115.410 +637697.809|222211.266|115.455 +637691.640|222213.595|115.666 +637685.419|222215.942|115.833 +637679.195|222218.292|116.047 +637673.072|222220.609|116.083 +637666.842|222222.974|116.022 +637660.770|222225.284|115.809 +637654.476|222227.653|116.153 +637648.273|222229.990|116.355 +637642.019|222232.353|116.541 +637635.819|222234.706|116.416 +637629.595|222237.062|116.458 +637623.380|222239.415|116.470 +637617.187|222241.768|116.382 +637611.234|222244.097|114.876 +637599.213|222248.781|112.145 +637593.089|222251.144|111.280 +637586.941|222253.487|110.941 +637580.592|222255.886|111.121 +637568.062|222260.626|111.267 +637561.817|222263.012|110.835 +637555.465|222265.384|111.536 +637517.550|222279.722|112.060 +637511.217|222282.126|111.981 +637504.868|222284.507|112.462 +637498.497|222286.909|112.694 +637492.173|222289.311|112.602 +637485.833|222291.709|112.673 +637479.335|222294.133|113.483 +637466.612|222298.924|114.044 +637453.868|222303.734|114.413 +637447.492|222306.123|114.931 +637441.088|222308.537|115.205 +637428.338|222313.335|115.839 +637421.953|222315.746|116.047 +637415.576|222318.154|116.196 +637409.212|222320.562|116.278 +637402.766|222322.988|116.547 +637396.432|222325.369|116.952 +637390.016|222327.798|117.028 +637383.627|222330.197|117.421 +637377.266|222332.598|117.610 +637370.841|222335.022|117.824 +637364.428|222337.445|117.979 +637358.009|222339.865|118.189 +637351.577|222342.282|118.577 +637338.779|222347.092|119.439 +637325.822|222351.898|121.494 +637319.302|222354.325|122.408 +637312.862|222356.729|123.149 +637306.442|222359.134|123.706 +637299.972|222361.561|124.191 +637293.571|222363.965|124.639 +637287.109|222366.392|125.087 +637280.638|222368.812|125.718 +637274.252|222371.217|126.029 +637267.794|222373.637|126.596 +637261.417|222376.039|126.870 +637254.980|222378.459|127.215 +637248.543|222380.879|127.593 +637242.120|222383.302|127.800 +637235.744|222385.698|128.224 +637229.343|222388.127|128.144 +637222.936|222390.553|128.160 +637216.490|222392.961|128.900 +637210.101|222395.390|128.675 +637203.764|222397.795|128.611 +637197.373|222400.225|128.446 +637190.902|222402.666|128.629 +637184.577|222405.074|128.379 +637178.201|222407.509|127.934 +637171.821|222409.945|127.553 +637165.512|222412.429|125.617 +637139.912|222422.195|124.182 +637133.526|222424.633|123.770 +637127.137|222427.071|123.402 +637120.691|222429.531|123.024 +637114.299|222431.970|122.713 +637107.908|222434.405|122.399 +637101.446|222436.849|122.435 +637088.598|222441.748|121.814 +637069.341|222449.057|121.497 +637056.555|222453.946|120.533 +637050.093|222456.399|120.436 +637054.034|222457.975|120.436 +637060.496|222455.528|120.661 +637066.958|222453.077|120.902 +637079.759|222448.225|121.366 +637086.160|222445.798|121.643 +637092.549|222443.363|122.140 +637099.010|222440.918|122.280 +637105.475|222438.477|122.335 +637111.806|222436.069|122.771 +637118.268|222433.628|122.832 +637124.662|222431.201|123.149 +637131.057|222428.772|123.466 +637137.443|222426.340|123.944 +637143.825|222423.904|124.517 +637162.997|222416.629|125.438 +637169.310|222414.154|127.352 +637175.683|222411.719|127.971 +637182.081|222409.301|128.044 +637188.469|222406.878|128.306 +637194.861|222404.458|128.556 +637201.195|222402.059|128.678 +637207.590|222399.639|128.888 +637214.006|222397.228|128.702 +637220.376|222394.842|128.318 +637226.786|222392.425|128.300 +637233.214|222390.014|127.995 +637239.578|222387.624|127.782 +637245.997|222385.207|127.727 +637252.368|222382.814|127.477 +637258.814|222380.403|127.041 +637265.203|222378.011|126.648 +637271.643|222375.594|126.395 +637278.032|222373.201|126.050 +637284.427|222370.808|125.660 +637290.828|222368.412|125.224 +637297.231|222366.020|124.804 +637303.641|222363.624|124.337 +637310.057|222361.228|123.813 +637316.486|222358.830|123.246 +637322.847|222356.455|122.752 +637329.293|222354.056|122.030 +637335.709|222351.685|121.049 +637342.168|222349.314|119.637 +637348.618|222346.912|119.046 +637361.371|222342.139|118.232 +637367.750|222339.752|117.848 +637374.038|222337.381|117.784 +637380.405|222334.991|117.568 +637386.800|222332.598|117.135 +637393.137|222330.230|116.693 +637399.462|222327.831|116.943 +637405.719|222325.481|116.726 +637412.111|222323.083|116.446 +637418.435|222320.708|116.217 +637424.772|222318.331|115.925 +637431.112|222315.953|115.632 +637437.440|222313.576|115.477 +637443.780|222311.195|115.251 +637450.095|222308.836|114.730 +637462.747|222304.069|114.617 +637469.069|222301.707|114.142 +637475.436|222299.317|113.825 +637488.110|222294.584|112.782 +637494.422|222292.215|112.508 +637519.562|222282.773|111.557 +637525.865|222280.398|111.478 +637550.719|222271.007|111.685 +637563.252|222266.310|111.011 +637569.391|222263.979|111.338 +637581.790|222259.300|111.274 +637588.124|222256.950|110.432 +637600.353|222252.302|111.179 +637606.369|222249.973|112.340 +637612.343|222247.669|113.392 +637618.223|222245.371|115.001 +637624.142|222243.072|116.370 +637630.287|222240.750|116.419 +637636.438|222238.427|116.449 +637642.601|222236.102|116.428 +637648.752|222233.779|116.486 +637654.887|222231.472|116.306 +637661.093|222229.137|116.114 +637667.265|222226.823|115.785 +637673.285|222224.544|115.971 +637679.390|222222.236|116.053 +637685.535|222219.923|115.955 +637691.631|222217.628|115.782 +637697.733|222215.336|115.611 +637703.893|222213.016|115.486 +637709.989|222210.721|115.391 +637716.457|222208.374|113.407 +637778.576|222185.358|104.547 +637784.605|222183.085|104.492 +637790.579|222180.835|104.428 +637802.661|222176.294|104.016 +637808.614|222174.044|104.096 +637814.777|222171.743|103.541 +637832.967|222164.943|102.212 +637838.728|222162.733|102.971 +637844.577|222160.508|103.352 +637867.983|222151.611|104.684 +637873.960|222149.371|104.324 +637879.846|222147.149|104.364 +637885.753|222144.920|104.339 +637891.550|222142.723|104.510 +637897.362|222140.525|104.650 +637938.325|222125.112|103.693 +637944.213|222122.905|103.410 +637950.035|222120.719|103.169 +637955.829|222118.537|103.053 +637961.608|222116.358|103.013 +637967.329|222114.203|102.968 +637973.057|222112.045|102.913 +637978.860|222109.856|102.837 +637984.615|222107.692|102.715 +637990.366|222105.525|102.623 +637996.029|222103.388|102.645 +638001.677|222101.252|102.733 +638013.257|222096.920|101.925 +638019.130|222094.738|101.252 +638025.677|222092.428|97.939 +638031.463|222090.270|97.408 +638048.080|222083.954|98.316 +638053.737|222081.833|98.091 +638064.963|222077.602|97.978 +638070.465|222075.520|98.115 +638076.021|222073.423|98.064 +638081.374|222071.384|98.509 +638086.967|222069.281|98.374 +638092.298|222067.254|98.688 +638097.952|222065.145|98.152 +638103.429|222063.075|98.240 +638102.810|222065.221|98.121 +638097.266|222067.312|98.283 +638091.816|222069.385|98.143 +638086.220|222071.494|98.283 +638080.773|222073.564|98.164 +638075.186|222075.682|98.082 +638069.627|222077.785|98.155 +638064.177|222079.861|97.859 +638052.963|222084.104|97.948 +638041.682|222088.377|97.875 +638030.435|222092.641|97.759 +638024.757|222094.784|97.923 +638018.118|222097.128|101.355 +638006.448|222101.493|102.486 +638000.635|222103.681|102.760 +637994.969|222105.836|102.520 +637989.269|222107.988|102.654 +637983.517|222110.161|102.764 +637977.702|222112.356|102.882 +637971.895|222114.550|102.983 +637966.132|222116.733|102.946 +637960.270|222118.933|103.300 +637954.567|222121.106|103.065 +637948.700|222123.319|103.236 +637942.820|222125.532|103.471 +637936.898|222127.754|103.903 +637901.563|222141.098|104.583 +637889.840|222145.542|104.470 +637883.896|222147.795|104.388 +637877.941|222150.050|104.364 +637872.030|222152.284|104.452 +637865.913|222154.580|104.885 +637860.009|222156.823|104.720 +637854.078|222159.069|104.678 +637848.201|222161.322|104.141 +637836.664|222165.784|102.142 +637830.517|222168.091|102.547 +637818.340|222172.654|103.495 +637793.938|222181.847|104.455 +637787.936|222184.124|104.373 +637769.770|222191.012|104.080 +637763.771|222193.301|103.748 +637751.424|222197.938|104.541 +637745.172|222200.272|105.205 +637718.978|222209.779|113.614 +637712.553|222212.126|115.398 +637706.356|222214.473|115.373 +637700.187|222216.799|115.550 +637694.024|222219.124|115.721 +637687.788|222221.471|115.983 +637681.603|222223.812|115.989 +637675.455|222226.150|115.806 +637669.292|222228.488|115.724 +637663.050|222230.832|116.108 +637656.863|222233.169|116.214 +637650.611|222235.529|116.339 +637644.390|222237.885|116.324 +637638.230|222240.216|116.342 +637632.018|222242.569|116.312 +637625.886|222244.916|115.833 +637613.910|222249.595|112.822 +637601.715|222254.295|111.118 +637589.368|222259.026|109.987 +637570.406|222266.146|111.188 +637564.234|222268.508|110.685 +637551.575|222273.266|111.408 +637545.202|222275.656|111.883 +637513.756|222287.582|111.392 +637501.006|222292.389|111.877 +637494.593|222294.788|112.420 +637488.213|222297.187|112.764 +637481.755|222299.585|113.752 +637469.020|222304.398|113.950 +637456.225|222309.205|114.721 +637449.894|222311.595|114.867 +637443.487|222314.006|115.160 +637437.083|222316.417|115.449 +637430.673|222318.824|115.830 +637417.978|222323.616|116.129 +637411.519|222326.042|116.507 +637405.143|222328.447|116.708 +637398.764|222330.852|116.979 +637392.411|222333.254|117.007 +637386.035|222335.653|117.278 +637373.169|222340.496|117.857 +637366.836|222342.898|117.839 +637347.563|222350.118|119.400 +637340.970|222352.538|120.930 +637334.566|222354.922|121.826 +637328.068|222357.351|122.472 +637321.652|222359.759|122.914 +637315.248|222362.167|123.237 +637308.771|222364.593|123.770 +637302.358|222366.995|124.279 +637295.893|222369.421|124.737 +637289.496|222371.823|125.148 +637283.034|222374.246|125.657 +637276.584|222376.670|126.059 +637270.202|222379.071|126.364 +637263.755|222381.491|126.776 +637257.315|222383.912|127.166 +637250.877|222386.329|127.550 +637244.513|222388.727|127.769 +637238.091|222391.151|127.955 +637231.666|222393.568|128.266 +637225.277|222396.000|128.010 +637218.858|222398.420|128.233 +637212.454|222400.840|128.275 +637206.050|222403.266|128.281 +637199.622|222405.674|128.806 +637193.307|222408.085|128.397 +637180.471|222412.965|128.041 +637167.706|222417.827|127.474 +637161.327|222420.259|127.120 +637154.963|222422.704|126.459 +637148.644|222425.188|124.563 +637142.192|222427.641|124.377 +637135.873|222430.058|123.886 +637129.436|222432.521|123.350 +637122.986|222434.978|123.057 +637116.655|222437.389|122.780 +637110.197|222439.833|122.832 +637103.805|222442.269|122.527 +637097.416|222444.704|122.195 +637090.967|222447.164|121.814 +637084.514|222449.624|121.500 +637078.183|222452.038|121.192 +637071.731|222454.500|120.820 +637065.336|222456.939|120.448 +637058.938|222459.365|120.390 +637052.480|222461.822|120.177 +637033.283|222469.140|119.195 +637033.920|222472.011|118.869 +637040.321|222469.561|119.491 +637046.725|222467.131|119.747 +637053.129|222464.699|119.985 +637059.594|222462.255|120.040 +637065.994|222459.819|120.439 +637072.392|222457.381|120.826 +637078.790|222454.951|121.085 +637085.246|222452.495|121.478 +637091.640|222450.062|121.823 +637098.035|222447.627|122.222 +637104.485|222445.167|122.661 +637130.060|222435.453|123.792 +637136.507|222432.997|124.188 +637142.896|222430.567|124.535 +637149.229|222428.092|126.255 +637155.603|222425.654|126.837 +637161.985|222423.225|127.233 +637168.374|222420.799|127.492 +637174.759|222418.369|127.830 +637181.151|222415.946|127.986 +637200.293|222408.713|128.080 +637206.690|222406.290|128.166 +637213.106|222403.876|127.989 +637219.455|222401.480|127.922 +637225.856|222399.057|128.025 +637232.260|222396.634|128.059 +637238.615|222394.238|127.980 +637245.040|222391.821|127.785 +637251.466|222389.404|127.580 +637257.845|222387.011|127.205 +637264.298|222384.597|126.727 +637270.680|222382.202|126.367 +637277.127|222379.785|126.029 +637283.512|222377.386|125.709 +637289.907|222374.990|125.319 +637296.314|222372.591|124.840 +637302.724|222370.196|124.313 +637309.137|222367.797|123.825 +637315.556|222365.395|123.298 +637321.908|222363.018|122.899 +637328.333|222360.613|122.377 +637334.758|222358.211|121.914 +637341.053|222355.849|121.545 +637347.514|222353.444|120.771 +637353.933|222351.066|119.848 +637360.438|222348.661|118.708 +637366.827|222346.275|118.196 +637379.549|222341.514|117.193 +637392.271|222336.722|116.940 +637398.632|222334.324|116.839 +637404.860|222331.971|116.854 +637417.637|222327.170|116.294 +637423.949|222324.789|116.178 +637449.318|222315.264|115.001 +637455.661|222312.878|114.764 +637462.004|222310.491|114.556 +637474.653|222305.742|114.059 +637487.345|222300.988|113.343 +637500.052|222296.248|112.182 +637512.750|222291.520|110.783 +637518.989|222289.149|111.139 +637525.231|222286.799|111.057 +637531.477|222284.446|110.963 +637537.734|222282.090|110.810 +637556.373|222275.028|111.399 +637587.624|222263.284|110.368 +637612.295|222253.945|110.990 +637618.311|222251.616|112.185 +637624.197|222249.318|113.782 +637630.110|222247.017|115.205 +637636.072|222244.712|116.336 +637642.229|222242.390|116.348 +637648.401|222240.061|116.288 +637654.510|222237.757|116.275 +637660.666|222235.431|116.348 +637666.802|222233.121|116.211 +637672.993|222230.804|115.806 +637679.140|222228.494|115.660 +637685.221|222226.186|115.882 +637691.372|222223.870|115.757 +637697.453|222221.581|115.699 +637703.552|222219.286|115.565 +637709.715|222216.963|115.425 +637715.838|222214.665|115.221 +637721.959|222212.379|114.718 +637760.434|222198.373|104.053 +637772.653|222193.792|103.373 +637778.694|222191.518|103.242 +637784.629|222189.260|103.644 +637814.734|222177.918|103.282 +637826.984|222173.371|101.730 +637838.734|222168.899|102.498 +637861.972|222160.020|104.775 +637867.803|222157.807|105.013 +637873.789|222155.570|104.601 +637879.724|222153.324|104.705 +637891.474|222148.892|104.653 +637897.247|222146.701|104.952 +637903.151|222144.485|104.720 +637908.957|222142.284|104.903 +637914.730|222140.102|104.986 +637920.649|222137.880|104.751 +637944.177|222129.059|103.590 +637949.989|222126.876|103.373 +637955.735|222124.709|103.437 +637961.471|222122.539|103.556 +637973.075|222118.171|103.337 +637978.854|222116.004|103.096 +637984.593|222113.843|103.020 +637990.287|222111.700|102.892 +637996.048|222109.533|102.782 +638001.824|222107.363|102.629 +638007.475|222105.226|102.724 +638013.251|222103.065|102.367 +638019.139|222100.892|101.383 +638031.347|222096.439|98.195 +638042.637|222092.184|98.182 +638048.193|222090.084|98.271 +638053.905|222087.938|98.070 +638059.486|222085.844|97.887 +638065.067|222083.735|97.945 +638070.529|222081.662|98.207 +638076.210|222079.532|97.954 +638081.739|222077.444|98.015 +638092.688|222073.298|98.323 +638098.235|222071.217|98.140 +638103.783|222069.141|97.756 +638110.482|222068.879|97.713 +638105.044|222070.939|97.728 +638099.369|222073.058|98.338 +638094.032|222075.106|97.820 +638082.946|222079.294|98.003 +638077.484|222081.363|97.954 +638071.922|222083.467|98.042 +638066.420|222085.567|97.707 +638060.806|222087.688|97.774 +638055.197|222089.809|97.847 +638049.516|222091.943|98.188 +638043.944|222094.055|98.164 +638020.532|222102.776|101.133 +638014.537|222104.992|102.279 +638008.758|222107.162|102.666 +638003.131|222109.301|102.507 +637997.395|222111.459|102.770 +637991.622|222113.639|102.953 +637985.864|222115.812|103.093 +637980.079|222118.001|103.108 +637974.279|222120.180|103.449 +637968.451|222122.377|103.666 +637962.706|222124.557|103.593 +637956.902|222126.757|103.501 +637951.187|222128.931|103.340 +637945.372|222131.119|103.586 +637939.388|222133.366|104.010 +637933.417|222135.606|104.416 +637927.519|222137.822|104.800 +637921.670|222140.038|104.760 +637915.815|222142.257|104.757 +637909.954|222144.472|104.797 +637904.044|222146.710|104.793 +637880.464|222155.643|104.717 +637874.463|222157.917|104.650 +637868.513|222160.157|104.940 +637833.257|222173.648|102.029 +637827.441|222175.888|101.273 +637821.117|222178.220|102.538 +637815.045|222180.500|102.971 +637808.964|222182.792|103.190 +637790.579|222189.711|104.062 +637778.673|222194.262|103.181 +637772.489|222196.575|103.733 +637740.658|222208.316|110.170 +637727.671|222213.053|113.904 +637721.294|222215.412|115.090 +637715.116|222217.740|115.276 +637708.950|222220.066|115.431 +637702.726|222222.416|115.586 +637696.584|222224.739|115.672 +637690.375|222227.083|115.779 +637684.228|222229.420|115.593 +637678.031|222231.761|115.684 +637671.786|222234.105|116.065 +637665.607|222236.443|116.105 +637659.365|222238.799|116.166 +637653.202|222241.134|116.163 +637646.978|222243.487|116.175 +637640.769|222245.840|116.117 +637634.701|222248.178|115.257 +637628.544|222250.522|114.928 +637622.777|222252.832|112.292 +637616.766|222255.182|110.716 +637604.294|222259.903|110.658 +637591.949|222264.631|109.512 +637579.227|222269.383|110.822 +637566.669|222274.156|110.396 +637528.852|222288.457|110.518 +637522.500|222290.862|110.530 +637516.106|222293.243|111.313 +637509.772|222295.666|110.801 +637503.350|222298.043|111.844 +637484.038|222305.258|113.752 +637471.349|222310.043|114.093 +637452.155|222317.258|115.108 +637445.758|222319.666|115.349 +637439.375|222322.074|115.471 +637432.971|222324.482|115.800 +637426.583|222326.886|116.041 +637420.209|222329.291|116.190 +637413.802|222331.696|116.632 +637407.450|222334.098|116.632 +637401.019|222336.524|116.824 +637388.214|222341.346|117.296 +637381.783|222343.766|117.583 +637375.428|222346.162|117.720 +637369.009|222348.582|117.955 +637362.504|222350.987|119.064 +637356.003|222353.395|120.192 +637349.480|222355.824|120.966 +637343.128|222358.211|121.289 +637336.642|222360.643|121.747 +637330.223|222363.051|122.198 +637323.810|222365.456|122.630 +637317.324|222367.882|123.207 +637310.908|222370.284|123.746 +637304.492|222372.686|124.340 +637297.963|222375.130|124.852 +637291.568|222377.529|125.255 +637285.173|222379.928|125.688 +637278.733|222382.354|125.938 +637272.290|222384.774|126.319 +637265.846|222387.194|126.678 +637259.393|222389.608|127.254 +637253.023|222392.004|127.526 +637246.601|222394.424|127.757 +637240.179|222396.844|127.971 +637233.824|222399.240|128.138 +637227.359|222401.688|128.105 +637220.958|222404.111|128.071 +637214.624|222406.513|127.952 +637208.166|222408.960|127.894 +637201.762|222411.380|127.971 +637195.413|222413.773|128.190 +637188.954|222416.217|128.172 +637182.565|222418.644|128.001 +637176.174|222421.067|127.897 +637169.803|222423.505|127.340 +637150.583|222430.808|126.739 +637144.209|222433.250|126.175 +637137.854|222435.703|125.160 +637131.420|222438.169|124.529 +637125.034|222440.601|124.182 +637105.823|222447.941|122.743 +637099.437|222450.379|122.350 +637092.991|222452.842|121.838 +637086.599|222455.278|121.481 +637080.210|222457.719|121.012 +637073.755|222460.179|120.707 +637067.418|222462.587|120.445 +637061.023|222465.028|120.027 +637048.228|222469.902|119.372 +637041.766|222472.359|119.137 +637035.365|222474.791|118.930 +637033.396|222478.543|118.464 +637039.800|222476.102|118.891 +637052.669|222471.207|119.619 +637059.072|222468.774|119.878 +637065.473|222466.339|120.283 +637071.935|222463.882|120.600 +637078.333|222461.447|120.954 +637084.795|222458.996|121.161 +637091.177|222456.536|122.210 +637097.575|222454.110|122.344 +637116.786|222446.755|124.398 +637123.236|222444.302|124.764 +637129.625|222441.872|125.093 +637136.004|222439.434|125.694 +637142.380|222436.996|126.325 +637148.766|222434.566|126.657 +637174.308|222424.852|127.992 +637180.706|222422.435|128.068 +637187.049|222420.040|128.062 +637193.465|222417.629|127.791 +637199.866|222415.209|127.849 +637206.203|222412.810|127.961 +637212.604|222410.387|128.062 +637219.007|222407.966|128.102 +637225.347|222405.565|128.214 +637231.760|222403.148|128.129 +637238.173|222400.727|128.053 +637244.537|222398.332|127.873 +637250.963|222395.915|127.687 +637257.336|222393.522|127.376 +637263.776|222391.105|127.020 +637270.168|222388.712|126.584 +637276.566|222386.323|126.066 +637282.942|222383.924|125.855 +637289.389|222381.501|125.581 +637295.735|222379.129|125.054 +637302.178|222376.703|124.904 +637308.576|222374.338|123.822 +637315.017|222371.942|123.057 +637321.423|222369.540|122.691 +637327.757|222367.154|122.539 +637334.185|222364.752|122.006 +637340.559|222362.371|121.466 +637346.920|222359.988|121.082 +637353.345|222357.577|120.704 +637359.655|222355.215|120.305 +637366.086|222352.831|119.317 +637372.511|222350.448|118.436 +637378.924|222348.058|117.732 +637385.300|222345.665|117.412 +637391.585|222343.291|117.434 +637397.974|222340.895|117.068 +637404.308|222338.521|116.662 +637410.681|222336.122|116.510 +637416.994|222333.744|116.370 +637423.315|222331.367|116.166 +637429.631|222328.987|116.044 +637435.977|222326.606|115.699 +637448.656|222321.842|115.193 +637454.996|222319.458|114.959 +637461.370|222317.072|114.507 +637467.655|222314.707|114.297 +637474.007|222312.320|114.062 +637480.319|222309.952|113.697 +637505.639|222300.448|112.423 +637531.007|222290.981|109.957 +637537.167|222288.631|110.472 +637543.410|222286.253|110.871 +637568.431|222276.835|110.164 +637630.071|222253.445|112.289 +637641.833|222248.845|115.529 +637647.892|222246.529|116.108 +637654.049|222244.200|116.141 +637660.151|222241.893|116.160 +637666.321|222239.561|116.166 +637672.456|222237.251|116.031 +637678.647|222234.916|115.967 +637684.782|222232.618|115.556 +637690.897|222230.304|115.596 +637696.999|222227.994|115.742 +637703.086|222225.699|115.644 +637709.236|222223.376|115.562 +637715.345|222221.078|115.404 +637721.447|222218.777|115.300 +637727.582|222216.472|115.041 +637759.538|222204.805|106.631 +637778.118|222197.901|104.187 +637790.490|222193.292|102.888 +637796.339|222191.055|103.404 +637814.509|222184.221|102.788 +637820.675|222181.932|101.931 +637826.518|222179.695|102.562 +637832.428|222177.446|102.910 +637838.310|222175.202|103.385 +637873.539|222161.819|104.894 +637879.422|222159.594|104.928 +637885.320|222157.369|104.922 +637891.212|222155.140|104.949 +637902.916|222150.709|105.129 +637914.669|222146.280|104.918 +637920.503|222144.085|104.763 +637926.303|222141.894|104.745 +637932.198|222139.672|104.644 +637938.081|222137.465|104.342 +637943.973|222135.267|103.775 +637949.779|222133.085|103.565 +637955.564|222130.894|103.715 +637961.325|222128.717|103.724 +637967.098|222126.541|103.705 +637972.761|222124.392|103.876 +637978.583|222122.204|103.708 +637984.404|222120.024|103.306 +637990.165|222117.857|103.163 +637995.932|222115.687|103.010 +638001.647|222113.535|102.831 +638007.371|222111.383|102.639 +638013.110|222109.216|102.651 +638019.014|222107.028|101.834 +638025.583|222104.711|98.399 +638031.331|222102.562|97.978 +638036.986|222100.429|97.914 +638042.627|222098.298|97.914 +638053.887|222094.052|97.826 +638059.507|222091.925|97.948 +638065.070|222089.831|97.835 +638070.620|222087.725|98.006 +638081.727|222083.537|97.923 +638087.171|222081.476|98.057 +638098.269|222077.294|97.878 +638095.111|222079.983|98.018 +638089.679|222082.052|97.829 +638084.126|222084.158|97.853 +638078.594|222086.259|97.823 +638067.548|222090.456|97.737 +638061.854|222092.611|97.856 +638056.298|222094.723|97.743 +638039.372|222101.136|97.939 +638033.782|222103.263|97.774 +638028.107|222105.412|97.948 +638021.493|222107.756|101.313 +638009.745|222112.157|102.495 +638004.009|222114.322|102.745 +637998.270|222116.486|103.023 +637992.427|222118.692|103.230 +637986.605|222120.884|103.605 +637980.823|222123.063|103.867 +637969.350|222127.419|103.839 +637963.559|222129.623|103.693 +637957.737|222131.832|103.678 +637952.013|222134.009|103.553 +637946.210|222136.203|103.751 +637940.224|222138.453|104.190 +637934.277|222140.693|104.498 +637928.440|222142.900|104.635 +637922.637|222145.100|104.665 +637916.687|222147.353|104.793 +637910.807|222149.578|104.909 +637904.891|222151.821|104.934 +637898.944|222154.068|105.104 +637893.071|222156.302|104.992 +637887.173|222158.539|104.989 +637881.275|222160.776|105.019 +637875.341|222163.032|104.940 +637869.333|222165.299|105.205 +637827.959|222181.106|102.898 +637816.023|222185.651|102.526 +637810.025|222187.934|102.364 +637803.712|222190.266|103.669 +637779.286|222199.495|104.470 +637767.014|222204.116|105.138 +637734.578|222215.966|114.568 +637728.354|222218.307|114.940 +637722.230|222220.621|115.160 +637716.000|222222.977|115.297 +637709.895|222225.284|115.462 +637703.698|222227.634|115.468 +637697.557|222229.960|115.544 +637691.415|222232.304|115.309 +637685.179|222234.654|115.590 +637678.936|222237.004|115.964 +637672.743|222239.348|116.077 +637666.592|222241.686|115.995 +637660.368|222244.048|115.980 +637654.214|222246.383|115.937 +637647.969|222248.745|116.089 +637642.016|222251.076|114.572 +637630.156|222255.737|111.234 +637624.170|222258.072|109.884 +637593.016|222269.925|109.149 +637567.769|222279.466|109.902 +637548.808|222286.619|110.707 +637536.369|222291.386|109.695 +637523.512|222296.208|110.822 +637485.196|222310.604|113.608 +637478.780|222313.027|113.877 +637472.412|222315.423|114.261 +637466.015|222317.840|114.443 +637459.675|222320.233|114.672 +637453.262|222322.650|115.029 +637446.885|222325.064|115.108 +637440.482|222327.478|115.465 +637434.102|222329.889|115.626 +637427.762|222332.275|115.995 +637421.343|222334.708|116.019 +637414.985|222337.116|116.077 +637408.581|222339.523|116.562 +637402.156|222341.950|116.745 +637395.767|222344.355|117.141 +637389.400|222346.756|117.394 +637376.635|222351.584|117.708 +637370.103|222353.995|119.083 +637363.620|222356.409|120.027 +637357.210|222358.827|120.290 +637350.785|222361.244|120.722 +637344.366|222363.658|121.134 +637337.941|222366.072|121.628 +637331.558|222368.489|121.719 +637325.139|222370.897|122.231 +637318.653|222373.326|122.862 +637312.179|222375.722|124.097 +637305.690|222378.145|124.892 +637299.319|222380.556|124.993 +637292.940|222382.964|125.267 +637286.505|222385.396|125.453 +637280.083|222387.825|125.532 +637273.707|222390.230|125.846 +637267.291|222392.662|125.880 +637260.792|222395.067|127.145 +637254.419|222397.466|127.489 +637247.997|222399.889|127.751 +637241.581|222402.315|127.913 +637235.174|222404.742|127.986 +637228.767|222407.168|128.080 +637222.427|222409.570|128.108 +637216.029|222411.999|128.096 +637209.571|222414.447|128.080 +637203.237|222416.851|127.995 +637196.848|222419.278|127.849 +637190.457|222421.704|127.772 +637184.059|222424.127|127.766 +637177.658|222426.547|127.931 +637171.263|222428.967|127.931 +637145.749|222438.700|126.590 +637139.305|222441.153|126.349 +637126.546|222446.027|125.529 +637120.173|222448.471|124.956 +637113.812|222450.934|123.792 +637100.992|222455.848|122.637 +637069.049|222468.052|120.564 +637062.596|222470.518|120.137 +637056.262|222472.938|119.747 +637049.864|222475.376|119.409 +637043.467|222477.818|119.073 +637037.069|222480.259|118.692 +637037.886|222482.612|118.668 +637044.354|222480.152|119.031 +637050.760|222477.720|119.412 +637057.167|222475.285|119.756 +637089.345|222463.038|122.085 +637108.587|222455.717|123.362 +637114.973|222453.275|124.069 +637127.784|222448.359|125.800 +637134.233|222445.911|126.123 +637140.625|222443.485|126.425 +637159.843|222436.179|127.599 +637166.170|222433.780|127.870 +637172.583|222431.372|127.638 +637179.045|222428.931|127.705 +637185.382|222426.535|127.797 +637191.783|222424.118|127.888 +637198.180|222421.698|128.019 +637204.575|222419.278|128.217 +637210.985|222416.864|128.129 +637217.395|222414.447|128.117 +637223.747|222412.054|128.025 +637230.160|222409.637|127.998 +637236.573|222407.220|127.961 +637242.971|222404.797|128.187 +637249.414|222402.389|127.721 +637255.782|222399.996|127.541 +637262.228|222397.585|127.105 +637268.693|222395.177|126.453 +637281.519|222390.404|125.108 +637287.901|222388.008|124.871 +637294.272|222385.606|124.849 +637300.688|222383.177|125.020 +637307.003|222380.797|124.974 +637313.447|222378.373|124.859 +637319.869|222375.978|124.285 +637326.319|222373.618|122.765 +637332.756|222371.253|121.445 +637339.166|222368.848|121.195 +637345.503|222366.462|121.088 +637351.931|222364.057|120.658 +637358.298|222361.673|120.293 +637364.669|222359.290|119.924 +637371.045|222356.903|119.540 +637377.485|222354.523|118.549 +637383.886|222352.133|117.997 +637390.220|222349.768|117.519 +637396.612|222347.375|117.132 +637402.936|222345.004|116.830 +637409.325|222342.608|116.525 +637415.637|222340.234|116.388 +637421.962|222337.859|116.144 +637428.335|222335.461|116.059 +637434.660|222333.083|115.888 +637441.006|222330.706|115.565 +637447.334|222328.325|115.428 +637453.719|222325.945|114.837 +637460.022|222323.564|114.937 +637466.313|222321.202|114.678 +637472.681|222318.818|114.319 +637478.978|222316.453|114.044 +637485.351|222314.060|113.694 +637497.976|222309.324|113.087 +637504.289|222306.953|112.828 +637523.256|222299.854|111.514 +637542.187|222292.764|110.338 +637548.418|222290.408|110.387 +637554.657|222288.049|110.426 +637592.260|222273.930|108.741 +637598.463|222271.586|108.765 +637604.653|222269.246|108.896 +637629.293|222259.910|109.521 +637641.193|222255.280|112.389 +637647.066|222252.981|114.087 +637652.937|222250.683|115.772 +637659.085|222248.355|115.876 +637665.245|222246.026|115.931 +637671.365|222243.719|115.891 +637677.528|222241.387|115.974 +637683.679|222239.073|115.806 +637689.836|222236.757|115.623 +637696.036|222234.434|115.230 +637702.125|222232.124|115.446 +637708.179|222229.835|115.559 +637714.327|222227.515|115.513 +637720.444|222225.214|115.321 +637726.503|222222.934|115.123 +637732.685|222220.609|114.968 +637738.729|222218.329|114.904 +637745.218|222215.973|112.938 +637789.225|222199.772|104.330 +637807.620|222192.896|102.852 +637813.600|222190.625|103.108 +637819.638|222188.345|103.117 +637825.625|222186.087|103.087 +637837.442|222181.591|103.785 +637849.097|222177.132|104.979 +637878.712|222165.943|105.162 +637884.637|222163.699|105.299 +637890.526|222161.474|105.339 +637896.387|222159.264|105.248 +637902.303|222157.033|105.199 +637914.090|222152.598|104.842 +637920.003|222150.379|104.617 +637925.901|222148.157|104.477 +637937.511|222143.771|104.464 +637943.433|222141.555|104.028 +637949.374|222139.321|103.794 +637955.107|222137.151|103.885 +637960.828|222134.981|104.031 +637966.671|222132.786|103.736 +637972.456|222130.592|103.928 +637978.162|222128.434|103.949 +637989.632|222124.106|103.806 +638007.072|222117.559|102.870 +638012.797|222115.404|102.684 +638018.460|222113.261|102.745 +638024.592|222111.024|101.108 +638031.133|222108.698|98.039 +638037.101|222106.488|97.070 +638042.573|222104.403|97.445 +638059.407|222098.033|97.628 +638065.006|222095.918|97.612 +638081.739|222089.593|97.652 +638087.259|222087.511|97.524 +638098.232|222083.354|97.765 +638109.235|222079.196|97.734 +638115.036|222078.187|97.036 +638098.372|222084.475|97.609 +638087.366|222088.654|97.515 +638081.730|222090.776|97.829 +638076.091|222092.906|97.954 +638070.465|222095.037|98.045 +638064.951|222097.152|97.530 +638059.343|222099.274|97.591 +638048.166|222103.522|97.399 +638042.609|222105.644|97.088 +638036.992|222107.787|96.774 +638030.859|222110.036|98.353 +638024.367|222112.359|101.273 +638012.620|222116.742|102.693 +638006.868|222118.909|102.998 +637995.191|222123.307|103.577 +637989.363|222125.499|103.980 +637983.642|222127.666|104.001 +637977.891|222129.851|103.916 +637972.093|222132.055|103.766 +637966.318|222134.243|103.806 +637954.692|222138.642|103.971 +637948.849|222140.864|103.812 +637942.970|222143.080|104.083 +637937.017|222145.311|104.665 +637925.249|222149.776|104.574 +637919.342|222152.004|104.766 +637913.453|222154.229|104.915 +637907.500|222156.479|105.092 +637901.544|222158.728|105.299 +637895.558|222160.993|105.379 +637889.654|222163.230|105.415 +637877.782|222167.738|105.254 +637871.781|222169.999|105.485 +637847.970|222179.052|104.931 +637812.085|222192.710|103.818 +637806.059|222194.996|103.806 +637800.049|222197.291|103.443 +637793.803|222199.608|104.510 +637781.514|222204.235|105.162 +637755.822|222213.674|111.359 +637749.488|222216.021|112.490 +637742.969|222218.393|114.608 +637736.827|222220.706|114.855 +637730.637|222223.044|115.062 +637724.461|222225.379|115.224 +637718.289|222227.710|115.379 +637712.089|222230.060|115.385 +637705.951|222232.386|115.413 +637699.797|222234.727|115.215 +637693.618|222237.056|115.504 +637687.376|222239.406|115.809 +637681.180|222241.753|115.913 +637675.007|222244.093|115.894 +637668.774|222246.456|115.885 +637662.611|222248.793|115.849 +637656.408|222251.153|115.708 +637650.471|222253.484|114.075 +637644.576|222255.810|112.176 +637638.590|222258.148|110.792 +637632.622|222260.483|109.295 +637607.692|222269.968|108.585 +637601.447|222272.342|108.445 +637595.101|222274.723|108.957 +637588.727|222277.106|109.670 +637576.103|222281.877|110.006 +637550.917|222291.420|110.134 +637525.469|222301.018|111.200 +637519.120|222303.423|111.213 +637487.067|222315.463|113.581 +637480.737|222317.861|113.611 +637474.284|222320.281|114.169 +637467.917|222322.677|114.559 +637461.501|222325.094|114.888 +637455.121|222327.511|114.943 +637448.702|222329.925|115.340 +637442.310|222332.336|115.544 +637435.916|222334.750|115.818 +637429.518|222337.158|116.123 +637423.163|222339.569|116.111 +637416.780|222341.980|116.333 +637410.331|222344.409|116.656 +637384.666|222354.066|118.183 +637378.196|222356.486|118.887 +637371.728|222358.903|119.585 +637365.306|222361.323|119.906 +637358.883|222363.743|120.238 +637352.455|222366.160|120.655 +637346.057|222368.580|120.808 +637339.614|222371.022|120.796 +637333.170|222373.433|121.494 +637326.562|222375.810|124.145 +637320.064|222378.236|124.895 +637313.703|222380.653|124.837 +637307.265|222383.089|124.938 +637300.837|222385.524|124.962 +637281.552|222392.784|126.011 +637268.675|222397.640|126.623 +637262.283|222400.036|127.172 +637255.849|222402.459|127.486 +637249.344|222404.900|127.995 +637223.820|222414.611|127.330 +637217.377|222417.022|128.007 +637210.973|222419.445|128.056 +637204.572|222421.871|128.089 +637198.174|222424.301|128.044 +637191.722|222426.751|127.952 +637185.330|222429.181|127.846 +637178.932|222431.607|127.830 +637172.547|222434.039|127.635 +637166.155|222436.468|127.522 +637159.696|222438.913|127.608 +637153.308|222441.342|127.446 +637146.931|222443.784|127.001 +637127.671|222451.145|125.770 +637121.285|222453.580|125.483 +637114.933|222456.058|124.029 +637108.487|222458.524|123.603 +637102.107|222460.974|122.987 +637063.641|222475.693|120.226 +637050.907|222480.561|119.381 +637044.445|222483.030|118.997 +637038.105|222485.453|118.638 +637037.349|222488.638|118.549 +637043.814|222486.181|118.912 +637050.215|222483.743|119.348 +637056.619|222481.314|119.570 +637063.074|222478.848|120.195 +637101.485|222464.199|123.243 +637107.935|222461.745|123.624 +637114.263|222459.335|124.039 +637120.697|222456.866|124.849 +637127.058|222454.409|126.014 +637139.887|222449.532|126.712 +637146.270|222447.106|127.068 +637152.607|222444.713|127.074 +637159.056|222442.269|127.245 +637165.442|222439.846|127.474 +637171.772|222437.447|127.669 +637178.222|222435.005|127.809 +637184.556|222432.610|127.928 +637190.947|222430.189|128.044 +637197.345|222427.772|128.089 +637203.746|222425.355|128.099 +637210.150|222422.938|128.053 +637216.551|222420.524|128.038 +637229.282|222415.702|128.303 +637254.837|222406.089|127.583 +637261.262|222403.672|127.382 +637267.644|222401.285|126.953 +637274.085|222398.868|126.596 +637286.993|222394.080|124.846 +637293.348|222391.715|124.145 +637306.052|222386.865|125.252 +637312.389|222384.491|124.843 +637318.769|222382.089|124.734 +637325.112|222379.678|125.066 +637331.656|222377.300|123.094 +637338.154|222374.944|121.055 +637350.904|222370.153|120.558 +637357.277|222367.772|120.076 +637363.611|222365.383|120.015 +637369.987|222362.996|119.534 +637376.358|222360.610|119.183 +637382.728|222358.220|118.839 +637389.144|222355.833|118.089 +637395.496|222353.468|117.421 +637401.863|222351.072|117.220 +637408.191|222348.704|116.845 +637420.944|222343.934|115.870 +637439.872|222336.802|115.599 +637446.270|222334.400|115.330 +637452.536|222332.041|115.145 +637458.882|222329.660|114.855 +637471.522|222324.914|114.258 +637477.884|222322.528|113.938 +637490.536|222317.776|113.450 +637515.783|222308.321|111.840 +637522.074|222305.950|111.764 +637534.671|222301.222|111.173 +637572.241|222287.104|109.829 +637590.962|222280.060|109.314 +637597.280|222277.710|108.567 +637609.762|222273.019|108.143 +637615.925|222270.696|108.055 +637622.204|222268.343|107.671 +637628.355|222266.021|107.717 +637640.470|222261.370|109.301 +637646.341|222259.071|111.008 +637652.233|222256.773|112.593 +637658.225|222254.463|113.575 +637663.922|222252.201|115.897 +637670.106|222249.872|115.800 +637676.208|222247.565|115.849 +637682.387|222245.233|115.830 +637688.489|222242.926|115.916 +637694.582|222240.637|115.724 +637700.836|222238.293|115.376 +637706.941|222235.998|115.166 +637712.982|222233.709|115.327 +637719.060|222231.414|115.309 +637725.141|222229.122|115.300 +637731.261|222226.820|115.108 +637737.376|222224.519|114.968 +637743.505|222222.212|114.770 +637749.607|222219.926|114.422 +637755.743|222217.634|113.928 +637762.467|222215.256|110.576 +637781.465|222208.304|105.970 +637818.072|222194.606|103.398 +637824.134|222192.323|103.294 +637841.788|222185.596|104.586 +637847.598|222183.380|105.101 +637871.220|222174.437|105.623 +637877.243|222172.182|105.293 +637883.140|222169.945|105.510 +637900.758|222163.294|105.522 +637906.695|222161.057|105.391 +637912.587|222158.844|105.196 +637918.476|222156.628|105.037 +637924.377|222154.409|104.845 +637930.223|222152.214|104.644 +637936.081|222150.014|104.422 +637942.004|222147.786|104.211 +637947.804|222145.606|104.004 +637953.586|222143.418|104.141 +637970.999|222136.859|103.900 +637976.708|222134.707|103.882 +637982.478|222132.527|103.913 +637988.251|222130.348|103.940 +637993.966|222128.190|103.958 +637999.724|222126.023|103.836 +638005.554|222123.853|103.215 +638011.361|222121.673|102.953 +638017.079|222119.521|102.794 +638022.910|222117.336|102.486 +638028.994|222115.120|100.791 +638035.050|222112.898|99.475 +638047.114|222108.482|96.646 +638052.829|222106.336|96.405 +638058.309|222104.239|97.018 +638091.776|222091.617|96.866 +638097.330|222089.520|96.856 +638102.749|222087.466|97.109 +638108.348|222085.356|96.994 +638113.945|222083.262|96.671 +638111.201|222085.518|96.451 +638105.633|222087.618|96.701 +638100.046|222089.730|96.811 +638094.507|222091.821|97.003 +638088.878|222093.943|97.286 +638066.545|222102.410|97.305 +638061.101|222104.498|96.792 +638055.560|222106.616|96.405 +638049.821|222108.777|96.744 +638038.122|222113.139|98.286 +638032.170|222115.340|99.472 +638025.854|222117.632|101.526 +638019.780|222119.866|102.986 +638014.125|222122.012|102.922 +638008.343|222124.197|103.105 +638002.510|222126.376|103.748 +637996.666|222128.583|103.971 +637990.955|222130.747|103.946 +637985.200|222132.933|103.864 +637979.406|222135.127|103.958 +637973.733|222137.282|103.839 +637961.977|222141.720|104.257 +637956.241|222143.909|103.943 +637944.570|222148.325|104.138 +637938.663|222150.556|104.300 +637932.728|222152.790|104.577 +637926.815|222155.022|104.806 +637920.856|222157.274|104.967 +637914.959|222159.499|105.174 +637909.009|222161.745|105.348 +637903.077|222163.989|105.476 +637897.058|222166.260|105.717 +637885.259|222170.740|105.519 +637879.288|222173.014|105.345 +637873.286|222175.276|105.598 +637867.501|222177.501|104.931 +637843.547|222186.587|104.861 +637837.667|222188.836|104.394 +637782.757|222209.566|106.196 +637756.779|222219.042|113.931 +637750.537|222221.374|114.657 +637744.417|222223.687|114.794 +637738.174|222226.046|114.946 +637732.060|222228.357|115.102 +637725.860|222230.691|115.398 +637719.722|222233.017|115.404 +637713.555|222235.361|115.242 +637707.450|222237.684|115.123 +637701.199|222240.037|115.449 +637694.999|222242.384|115.544 +637688.781|222244.731|115.739 +637682.609|222247.071|115.718 +637676.443|222249.409|115.675 +637670.207|222251.774|115.690 +637664.105|222254.103|115.334 +637658.295|222256.420|112.950 +637646.371|222261.086|109.902 +637634.298|222265.786|107.345 +637628.135|222268.139|106.991 +637621.878|222270.498|107.247 +637615.495|222272.888|107.893 +637596.631|222280.020|108.271 +637552.264|222296.739|110.338 +637539.530|222301.536|110.938 +637514.213|222311.113|111.341 +637507.599|222313.545|112.953 +637501.301|222315.923|113.139 +637494.855|222318.346|113.569 +637488.518|222320.742|113.666 +637482.172|222323.140|113.843 +637475.771|222325.558|114.008 +637462.985|222330.367|114.779 +637456.633|222332.760|115.129 +637450.260|222335.174|115.154 +637443.874|222337.585|115.343 +637437.479|222339.996|115.620 +637431.109|222342.407|115.708 +637411.958|222349.628|116.492 +637405.558|222352.029|116.973 +637386.242|222359.275|118.586 +637379.808|222361.698|118.958 +637373.441|222364.093|119.284 +637367.003|222366.511|119.768 +637360.606|222368.931|119.863 +637341.354|222376.179|120.911 +637334.832|222378.605|121.878 +637328.172|222380.973|125.154 +637321.823|222383.390|124.938 +637315.401|222385.829|124.871 +637309.049|222388.243|124.697 +637302.751|222390.672|123.853 +637296.259|222393.129|123.938 +637289.846|222395.528|124.599 +637283.363|222397.945|125.438 +637276.880|222400.359|126.364 +637270.497|222402.757|126.760 +637264.057|222405.181|127.172 +637257.626|222407.601|127.486 +637232.050|222417.242|128.665 +637225.609|222419.698|128.306 +637219.205|222422.124|128.348 +637212.866|222424.526|128.321 +637206.486|222426.962|127.986 +637200.085|222429.388|127.992 +637193.688|222431.811|128.010 +637187.232|222434.259|127.980 +637180.837|222436.685|127.925 +637174.446|222439.108|127.888 +637168.060|222441.540|127.629 +637161.677|222443.973|127.361 +637155.292|222446.402|127.132 +637148.848|222448.859|126.815 +637142.463|222451.288|126.648 +637136.071|222453.714|126.532 +637123.245|222458.609|125.831 +637116.893|222461.087|124.374 +637110.495|222463.507|124.429 +637104.125|222465.967|123.493 +637052.876|222485.581|119.451 +637046.536|222488.001|119.089 +637040.135|222490.449|118.644 +637033.673|222492.917|118.232 +637042.906|222492.265|118.964 +637107.103|222467.793|123.795 +637113.543|222465.327|124.462 +637119.932|222462.898|124.825 +637126.363|222460.426|125.724 +637132.694|222458.024|125.992 +637139.144|222455.576|126.261 +637145.529|222453.150|126.559 +637151.915|222450.721|126.885 +637158.358|222448.270|127.242 +637164.741|222445.844|127.650 +637171.071|222443.445|127.797 +637177.524|222441.001|127.913 +637183.922|222438.584|127.952 +637190.259|222436.191|127.983 +637196.656|222433.774|128.001 +637203.057|222431.354|128.041 +637215.856|222426.517|128.120 +637222.183|222424.115|128.400 +637241.368|222416.845|128.900 +637247.750|222414.462|128.367 +637254.184|222412.051|127.980 +637260.631|222409.640|127.428 +637267.007|222407.250|127.108 +637273.439|222404.833|126.849 +637279.843|222402.443|126.203 +637286.268|222400.060|125.325 +637292.760|222397.652|124.410 +637299.167|222395.259|123.871 +637305.568|222392.864|123.429 +637311.914|222390.453|123.716 +637318.180|222388.026|124.993 +637324.535|222385.618|125.163 +637330.845|222383.235|125.200 +637337.535|222380.879|121.597 +637343.991|222378.480|120.765 +637363.074|222371.326|119.640 +637369.436|222368.940|119.345 +637375.852|222366.529|119.116 +637382.152|222364.161|118.875 +637388.513|222361.768|118.653 +637401.281|222357.013|117.284 +637407.670|222354.617|116.928 +637414.001|222352.246|116.531 +637433.063|222345.095|115.532 +637439.357|222342.715|115.596 +637445.709|222340.337|115.169 +637452.018|222337.954|115.163 +637458.306|222335.595|114.821 +637464.704|222333.190|114.626 +637470.998|222330.828|114.297 +637477.378|222328.441|113.828 +637483.644|222326.079|113.770 +637489.935|222323.713|113.572 +637496.211|222321.348|113.496 +637552.935|222300.082|110.487 +637559.223|222297.748|109.737 +637565.541|222295.385|109.253 +637571.732|222293.032|109.618 +637577.989|222290.691|109.167 +637584.146|222288.357|109.399 +637602.919|222281.325|108.287 +637609.177|222278.978|107.973 +637615.428|222276.631|107.732 +637627.806|222271.961|107.668 +637652.132|222262.689|109.588 +637658.070|222260.367|111.295 +637663.870|222258.093|113.044 +637669.695|222255.804|114.983 +637675.693|222253.509|115.611 +637681.856|222251.180|115.678 +637687.913|222248.897|115.663 +637694.027|222246.587|115.690 +637700.169|222244.273|115.583 +637706.316|222241.960|115.480 +637712.443|222239.662|115.169 +637718.527|222237.367|115.126 +637724.641|222235.053|115.257 +637730.667|222232.782|115.218 +637736.775|222230.481|115.087 +637742.896|222228.180|114.931 +637748.955|222225.900|114.788 +637755.033|222223.617|114.575 +637761.333|222221.300|113.282 +637767.755|222218.966|111.432 +637786.918|222211.989|106.068 +637823.457|222198.303|103.858 +637841.160|222191.573|104.925 +637870.717|222180.384|105.629 +637882.531|222175.925|105.690 +637888.380|222173.709|105.848 +637900.176|222169.259|105.827 +637911.996|222164.815|105.513 +637917.860|222162.605|105.443 +637923.761|222160.386|105.242 +637929.662|222158.170|105.065 +637935.523|222155.970|104.800 +637941.400|222153.766|104.489 +637947.277|222151.562|104.217 +637953.077|222149.371|104.251 +637958.905|222147.173|104.199 +637964.632|222145.006|104.312 +637976.236|222140.638|103.998 +637982.018|222138.459|103.946 +637987.727|222136.304|103.949 +637993.451|222134.146|103.913 +637999.135|222131.994|104.044 +638004.850|222129.833|104.062 +638010.693|222127.650|103.641 +638016.454|222125.489|103.291 +638022.224|222123.331|102.937 +638028.323|222121.100|101.398 +638034.474|222118.860|99.706 +638040.384|222116.665|98.926 +638046.096|222114.523|98.633 +638051.787|222112.383|98.448 +638063.467|222108.052|96.841 +638074.854|222103.779|96.369 +638096.897|222095.436|96.774 +638113.814|222089.112|95.509 +638124.360|222086.813|95.945 +638119.044|222088.855|95.302 +638113.122|222091.029|96.728 +638102.097|222095.198|96.872 +638090.981|222099.405|96.945 +638079.923|222103.617|96.415 +638074.409|222105.708|96.351 +638068.715|222107.848|96.710 +638062.897|222110.021|97.295 +638057.032|222112.194|98.304 +638051.299|222114.361|98.399 +638045.596|222116.510|98.630 +638039.747|222118.699|99.185 +638033.785|222120.896|100.404 +638027.726|222123.127|101.785 +638021.712|222125.343|103.020 +638015.890|222127.532|103.334 +638009.998|222129.735|103.934 +638004.244|222131.909|104.044 +637998.541|222134.073|103.971 +637992.844|222136.234|103.897 +637987.071|222138.419|103.888 +637981.250|222140.626|103.836 +637975.486|222142.799|104.074 +637969.603|222145.015|104.291 +637963.788|222147.219|104.269 +637957.963|222149.422|104.303 +637952.205|222151.614|104.083 +637946.335|222153.824|104.330 +637940.412|222156.055|104.553 +637928.553|222160.520|105.120 +637922.652|222162.745|105.318 +637916.711|222164.989|105.427 +637904.815|222169.475|105.796 +637898.786|222171.746|106.086 +637887.021|222176.217|105.744 +637881.043|222178.485|105.601 +637875.124|222180.732|105.498 +637869.178|222182.984|105.534 +637839.313|222194.323|104.876 +637827.389|222198.870|104.172 +637808.989|222205.783|105.342 +637802.893|222208.075|105.714 +637796.812|222210.376|105.729 +637784.425|222215.009|106.915 +637764.896|222222.114|112.959 +637758.480|222224.470|114.520 +637752.354|222226.784|114.675 +637746.233|222229.094|114.821 +637740.052|222231.426|114.965 +637733.883|222233.758|115.087 +637727.784|222236.062|115.193 +637721.611|222238.406|115.035 +637715.476|222240.728|115.050 +637709.221|222243.082|115.382 +637703.019|222245.425|115.465 +637696.807|222247.772|115.614 +637690.634|222250.110|115.568 +637684.459|222252.451|115.550 +637678.293|222254.789|115.519 +637672.185|222257.133|114.837 +637666.360|222259.434|112.889 +637660.410|222261.763|111.292 +637629.903|222273.507|107.351 +637617.275|222278.268|107.811 +637611.142|222280.612|107.354 +637604.760|222282.995|108.070 +637585.759|222290.143|109.094 +637579.577|222292.505|108.640 +637573.195|222294.919|108.713 +637566.818|222297.293|109.579 +637560.558|222299.677|109.298 +637554.078|222302.073|110.533 +637547.717|222304.459|110.999 +637528.529|222311.659|112.435 +637509.537|222318.861|112.276 +637496.733|222323.659|113.355 +637490.310|222326.079|113.639 +637483.989|222328.471|113.636 +637477.625|222330.864|114.002 +637471.215|222333.281|114.264 +637464.786|222335.692|114.703 +637458.431|222338.106|114.578 +637452.006|222340.517|115.062 +637445.666|222342.904|115.367 +637439.281|222345.312|115.568 +637432.907|222347.720|115.693 +637426.464|222350.149|115.916 +637420.103|222352.557|116.004 +637413.687|222354.959|116.589 +637407.240|222357.382|116.949 +637400.848|222359.781|117.394 +637394.432|222362.176|118.116 +637387.995|222364.599|118.476 +637381.576|222367.020|118.708 +637375.138|222369.437|119.147 +637368.725|222371.854|119.366 +637362.370|222374.246|119.674 +637349.480|222379.099|120.302 +637343.031|222381.507|121.039 +637336.502|222383.896|122.761 +637329.912|222386.271|125.307 +637323.487|222388.709|125.255 +637317.141|222391.123|125.005 +637304.458|222395.991|123.682 +637298.012|222398.420|123.944 +637291.586|222400.813|124.807 +637285.100|222403.227|125.700 +637278.629|222405.641|126.462 +637272.189|222408.061|126.818 +637265.755|222410.484|127.151 +637259.387|222412.880|127.449 +637246.421|222417.723|128.861 +637240.066|222420.122|129.089 +637227.258|222424.968|129.184 +637220.879|222427.401|128.812 +637214.496|222429.830|128.568 +637208.099|222432.256|128.559 +637201.725|222434.691|128.056 +637195.340|222437.121|127.885 +637188.942|222439.544|127.910 +637182.547|222441.964|127.900 +637176.152|222444.390|127.852 +637169.767|222446.816|127.705 +637163.381|222449.246|127.480 +637156.938|222451.696|127.257 +637150.558|222454.132|126.828 +637144.179|222456.567|126.507 +637137.735|222459.021|126.175 +637131.353|222461.456|125.831 +637124.970|222463.891|125.438 +637118.533|222466.357|124.871 +637112.153|222468.802|124.289 +637105.771|222471.243|123.792 +637035.450|222498.126|118.625 +637034.521|222501.309|118.744 +637053.787|222493.923|120.951 +637105.929|222474.084|123.752 +637111.593|222471.920|124.264 +637117.978|222469.481|124.798 +637124.425|222467.022|125.261 +637130.810|222464.589|125.663 +637137.196|222462.154|126.120 +637143.642|222459.700|126.492 +637150.025|222457.268|126.895 +637156.414|222454.842|127.166 +637162.802|222452.416|127.416 +637175.582|222447.566|127.803 +637182.038|222445.122|127.934 +637188.381|222442.726|127.879 +637194.831|222440.278|128.096 +637201.237|222437.864|127.964 +637207.507|222435.429|129.382 +637213.960|222432.981|129.513 +637220.352|222430.558|129.680 +637239.539|222423.335|129.092 +637252.395|222418.510|128.428 +637258.796|222416.126|127.644 +637265.236|222413.712|127.276 +637271.665|222411.292|127.047 +637278.050|222408.896|126.669 +637284.503|222406.482|126.169 +637297.378|222401.712|124.170 +637303.775|222399.310|123.798 +637310.182|222396.914|123.298 +637316.547|222394.503|123.402 +637322.761|222392.065|125.310 +637329.123|222389.654|125.432 +637335.539|222387.255|124.910 +637348.554|222382.537|120.671 +637361.346|222377.742|119.820 +637367.784|222375.335|119.332 +637374.145|222372.942|119.070 +637380.451|222370.574|118.741 +637386.879|222368.160|118.452 +637393.244|222365.764|118.229 +637399.635|222363.371|117.772 +637405.984|222361.000|117.181 +637412.309|222358.625|116.845 +637418.713|222356.227|116.373 +637425.110|222353.828|116.004 +637431.453|222351.450|115.605 +637444.081|222346.686|115.385 +637450.446|222344.281|115.422 +637456.749|222341.922|114.946 +637463.150|222339.514|114.718 +637469.450|222337.152|114.322 +637475.823|222334.763|113.867 +637494.812|222327.618|113.276 +637507.462|222322.878|112.462 +637513.716|222320.528|112.151 +637538.786|222311.055|112.161 +637551.466|222306.315|111.088 +637557.787|222303.953|110.496 +637564.139|222301.591|109.765 +637582.878|222294.547|108.988 +637589.130|222292.182|109.021 +637601.666|222287.470|108.546 +637607.915|222285.123|108.277 +637614.151|222282.773|108.088 +637620.363|222280.426|108.091 +637626.696|222278.067|107.384 +637639.166|222273.382|106.857 +637645.375|222271.047|106.613 +637651.437|222268.727|107.232 +637663.282|222264.116|110.115 +637669.152|222261.815|111.837 +637674.962|222259.522|113.889 +637680.783|222257.246|115.522 +637686.904|222254.935|115.489 +637693.079|222252.600|115.519 +637699.145|222250.311|115.486 +637705.317|222247.974|115.559 +637711.422|222245.678|115.370 +637717.579|222243.356|115.245 +637723.721|222241.055|114.888 +637729.768|222238.759|115.062 +637735.846|222236.464|115.084 +637741.881|222234.184|115.032 +637748.007|222231.880|114.849 +637754.076|222229.594|114.672 +637760.208|222227.287|114.504 +637766.271|222225.001|114.398 +637772.723|222222.657|112.414 +637791.996|222215.656|106.540 +637810.253|222208.788|105.848 +637840.414|222197.447|104.733 +637846.388|222195.176|105.071 +637869.958|222186.236|105.744 +637875.911|222183.990|105.696 +637881.836|222181.750|105.778 +637887.694|222179.531|105.900 +637893.498|222177.318|106.263 +637899.484|222175.062|106.144 +637905.330|222172.859|106.107 +637917.117|222168.411|105.936 +637923.030|222166.189|105.680 +637928.949|222163.967|105.409 +637946.609|222157.335|104.601 +637952.455|222155.131|104.449 +637958.277|222152.937|104.422 +637964.028|222150.764|104.425 +637969.853|222148.563|104.416 +637975.638|222146.384|104.324 +637981.405|222144.216|104.074 +637987.209|222142.031|103.955 +637992.963|222139.855|104.041 +637998.718|222137.688|103.891 +638004.411|222135.533|103.998 +638010.157|222133.366|103.925 +638016.043|222131.183|103.111 +638021.791|222129.013|103.059 +638027.698|222126.821|102.215 +638033.648|222124.621|101.240 +638039.491|222122.454|100.441 +638045.331|222120.283|99.679 +638051.165|222118.104|99.197 +638056.962|222115.940|98.643 +638062.677|222113.803|98.155 +638073.970|222109.558|97.747 +638079.853|222107.384|96.744 +638085.531|222105.263|96.256 +638091.121|222103.160|96.082 +638096.644|222101.072|96.171 +638102.234|222098.966|96.040 +638107.489|222096.933|97.067 +638124.052|222090.700|96.613 +638125.594|222092.111|97.027 +638103.499|222100.487|97.231 +638098.385|222102.486|95.979 +638092.767|222104.617|96.003 +638087.113|222106.741|96.405 +638081.331|222108.893|97.277 +638075.576|222111.051|97.853 +638069.962|222113.176|97.945 +638064.192|222115.343|98.377 +638058.401|222117.516|98.905 +638052.591|222119.689|99.527 +638046.785|222121.862|100.157 +638041.045|222124.020|100.569 +638035.236|222126.203|101.029 +638029.326|222128.403|101.874 +638023.413|222130.607|102.751 +638017.655|222132.774|103.084 +638011.794|222134.975|103.577 +638005.972|222137.163|103.952 +638000.275|222139.330|103.882 +637994.487|222141.525|103.922 +637988.784|222143.689|103.900 +637982.969|222145.887|104.086 +637977.077|222148.109|104.333 +637971.304|222150.297|104.394 +637965.482|222152.504|104.400 +637959.664|222154.711|104.422 +637953.802|222156.924|104.638 +637947.953|222159.146|104.556 +637942.135|222161.349|104.641 +637936.139|222163.599|105.184 +637930.098|222165.866|105.696 +637912.328|222172.584|106.147 +637906.427|222174.821|106.174 +637900.511|222177.074|105.994 +637894.589|222179.314|106.138 +637888.685|222181.564|105.949 +637882.775|222183.813|105.808 +637876.849|222186.062|105.738 +637870.839|222188.339|105.799 +637865.057|222190.564|105.141 +637847.055|222197.398|105.040 +637841.112|222199.660|104.894 +637816.822|222208.837|105.665 +637810.714|222211.135|106.083 +637804.578|222213.449|106.360 +637779.139|222222.840|111.755 +637772.656|222225.211|113.572 +637766.402|222227.549|114.325 +637760.269|222229.865|114.511 +637754.057|222232.194|115.102 +637747.964|222234.520|114.812 +637741.798|222236.854|114.904 +637735.708|222239.162|114.962 +637729.527|222241.512|114.846 +637723.367|222243.840|114.986 +637717.113|222246.200|115.312 +637710.965|222248.525|115.413 +637704.777|222250.872|115.431 +637698.657|222253.192|115.446 +637692.415|222255.557|115.455 +637686.239|222257.895|115.452 +637680.314|222260.205|114.096 +637674.383|222262.531|112.407 +637668.607|222264.826|110.185 +637656.646|222269.496|107.311 +637650.541|222271.843|106.583 +637644.216|222274.211|107.180 +637637.922|222276.591|107.247 +637631.659|222278.950|107.515 +637618.955|222283.718|108.482 +637612.773|222286.068|108.344 +637606.436|222288.463|108.415 +637600.243|222290.810|108.384 +637593.879|222293.209|108.677 +637587.606|222295.580|108.817 +637581.190|222297.997|109.103 +637549.381|222309.946|111.210 +637530.282|222317.118|112.517 +637504.871|222326.740|112.624 +637498.534|222329.115|113.176 +637492.118|222331.535|113.435 +637485.781|222333.927|113.569 +637479.414|222336.344|113.477 +637473.028|222338.737|114.059 +637466.609|222341.148|114.434 +637460.178|222343.562|114.953 +637453.850|222345.949|115.163 +637447.483|222348.360|115.209 +637441.137|222350.768|115.077 +637434.660|222353.197|115.602 +637428.299|222355.605|115.681 +637421.895|222358.007|116.132 +637415.503|222360.411|116.534 +637409.051|222362.835|116.973 +637402.638|222365.230|117.662 +637396.194|222367.654|118.077 +637389.836|222370.052|118.275 +637383.426|222372.472|118.452 +637376.931|222374.911|118.863 +637370.566|222377.307|119.229 +637364.144|222379.721|119.607 +637357.655|222382.156|120.076 +637351.233|222384.570|120.518 +637338.163|222389.349|124.130 +637331.613|222391.763|125.532 +637325.264|222394.177|125.352 +637319.061|222396.622|123.386 +637312.636|222399.054|123.365 +637306.183|222401.483|123.722 +637299.780|222403.882|124.285 +637286.816|222408.713|125.989 +637280.364|222411.130|126.553 +637273.926|222413.553|126.888 +637267.556|222415.949|127.215 +637261.134|222418.372|127.446 +637248.283|222423.164|129.025 +637235.384|222428.022|129.677 +637229.035|222430.415|129.894 +637222.631|222432.835|130.031 +637203.459|222440.163|128.541 +637197.071|222442.589|128.361 +637190.701|222445.027|127.806 +637184.224|222447.456|128.272 +637177.838|222449.880|128.108 +637171.452|222452.309|127.876 +637165.079|222454.744|127.361 +637158.632|222457.195|127.138 +637152.250|222459.624|126.846 +637145.806|222462.078|126.581 +637139.424|222464.510|126.191 +637133.044|222466.945|125.785 +637126.601|222469.405|125.340 +637120.218|222471.840|124.886 +637113.839|222474.282|124.386 +637107.213|222476.812|123.868 +637101.004|222479.174|123.642 +637094.612|222481.609|123.280 +637088.224|222484.045|122.908 +637056.253|222496.225|121.253 +637049.797|222498.703|120.503 +637043.464|222501.147|119.552 +637037.063|222503.610|118.689 +637046.185|222503.095|119.582 +637052.644|222500.598|120.771 +637071.904|222493.262|121.929 +637078.308|222490.842|121.932 +637084.767|222488.382|122.338 +637091.226|222485.931|122.554 +637097.621|222483.496|122.950 +637104.009|222481.055|123.499 +637110.462|222478.595|123.929 +637116.844|222476.153|124.526 +637123.294|222473.697|124.993 +637129.679|222471.258|125.486 +637136.065|222468.826|125.892 +637142.454|222466.397|126.239 +637148.839|222463.964|126.578 +637155.228|222461.538|126.858 +637161.665|222459.075|127.477 +637168.051|222456.649|127.782 +637174.442|222454.226|127.913 +637180.825|222451.797|128.275 +637187.198|222449.358|128.882 +637193.648|222446.972|127.791 +637200.110|222444.530|127.818 +637219.145|222437.236|129.891 +637231.949|222432.399|129.888 +637238.365|222429.985|129.653 +637251.164|222425.182|128.906 +637264.087|222420.372|127.343 +637270.519|222417.955|127.065 +637276.883|222415.556|126.934 +637283.339|222413.142|126.419 +637289.727|222410.746|126.002 +637296.183|222408.366|124.761 +637302.642|222405.946|124.325 +637315.401|222401.172|123.267 +637328.028|222396.299|125.410 +637334.320|222393.909|125.654 +637340.858|222391.529|123.764 +637347.414|222389.179|121.058 +637353.860|222386.774|120.387 +637372.941|222379.611|119.400 +637379.332|222377.224|118.811 +637385.727|222374.835|118.247 +637392.073|222372.439|118.186 +637398.370|222370.065|118.016 +637404.753|222367.669|117.680 +637417.494|222362.902|116.711 +637423.907|222360.503|116.166 +637430.262|222358.125|115.635 +637436.632|222355.724|115.532 +637449.275|222350.960|115.230 +637455.600|222348.576|115.059 +637468.276|222343.809|114.620 +637474.613|222341.444|113.953 +637487.299|222336.689|113.096 +637493.611|222334.299|113.179 +637499.872|222331.931|113.227 +637518.855|222324.814|111.941 +637550.188|222313.000|111.252 +637562.832|222308.275|110.045 +637587.871|222298.866|108.863 +637594.147|222296.519|108.320 +637606.546|222291.831|108.308 +637612.673|222289.494|108.796 +637625.145|222284.793|108.442 +637637.700|222280.100|107.329 +637643.881|222277.768|107.204 +637650.126|222275.412|107.092 +637656.256|222273.101|106.942 +637662.358|222270.757|107.710 +637674.178|222266.164|110.356 +637679.933|222263.893|112.362 +637685.767|222261.595|114.267 +637691.665|222259.309|115.471 +637697.806|222256.993|115.321 +637703.909|222254.682|115.425 +637709.980|222252.390|115.370 +637716.088|222250.074|115.483 +637722.123|222247.800|115.330 +637728.323|222245.471|115.007 +637734.443|222243.167|114.779 +637740.497|222240.872|114.919 +637746.535|222238.592|114.849 +637752.567|222236.315|114.828 +637764.756|222231.719|114.529 +637770.828|222229.433|114.358 +637776.860|222227.162|114.111 +637783.276|222224.836|112.026 +637814.566|222213.275|106.318 +637838.643|222204.207|105.641 +637844.711|222201.930|105.226 +637850.673|222199.687|105.031 +637856.629|222197.428|105.168 +637862.563|222195.185|105.141 +637868.388|222192.960|105.607 +637880.181|222188.486|105.961 +637886.045|222186.267|106.031 +637921.283|222172.941|106.046 +637939.007|222166.284|105.095 +637944.878|222164.080|104.803 +637950.639|222161.895|104.973 +637956.546|222159.679|104.583 +637962.319|222157.490|104.739 +637968.107|222155.308|104.598 +637973.889|222153.126|104.504 +637979.649|222150.949|104.504 +637985.496|222148.752|104.193 +637991.256|222146.585|103.992 +637997.029|222144.402|104.004 +638002.692|222142.263|103.961 +638008.499|222140.071|103.879 +638014.348|222137.883|103.422 +638020.161|222135.709|102.885 +638025.903|222133.551|102.617 +638031.740|222131.372|102.035 +638037.696|222129.168|101.035 +638043.365|222127.032|100.874 +638049.144|222124.862|100.557 +638054.804|222122.728|100.459 +638060.574|222120.579|99.758 +638066.387|222118.409|99.161 +638072.132|222116.266|98.588 +638077.865|222114.120|98.094 +638083.586|222111.981|97.649 +638089.164|222109.878|97.497 +638094.861|222107.750|96.951 +638115.389|222101.404|98.225 +638104.493|222105.562|97.734 +638099.061|222107.643|97.335 +638093.477|222109.768|97.247 +638087.881|222111.883|97.460 +638082.200|222114.014|97.975 +638076.384|222116.193|98.527 +638070.657|222118.345|99.027 +638064.902|222120.500|99.642 +638059.038|222122.688|100.432 +638053.423|222124.822|100.359 +638047.626|222127.004|100.731 +638041.935|222129.153|100.965 +638036.077|222131.348|101.596 +638030.176|222133.548|102.407 +638024.446|222135.712|102.605 +638018.649|222137.904|102.846 +638012.751|222140.111|103.477 +638006.929|222142.302|103.843 +638001.211|222144.475|103.849 +637995.411|222146.670|103.925 +637989.589|222148.874|104.111 +637983.755|222151.074|104.367 +637977.949|222153.269|104.522 +637972.115|222155.482|104.565 +637966.296|222157.692|104.574 +637954.592|222162.117|104.885 +637948.758|222164.339|104.745 +637942.875|222166.567|104.824 +637895.342|222184.538|106.260 +637889.352|222186.818|106.156 +637883.442|222189.068|106.001 +637877.505|222191.320|105.991 +637871.518|222193.597|105.946 +637865.642|222195.853|105.424 +637859.756|222198.093|105.226 +637853.752|222200.382|105.022 +637847.668|222202.671|105.476 +637785.741|222225.851|112.179 +637779.280|222228.207|114.178 +637773.153|222230.530|114.285 +637767.014|222232.849|114.453 +637760.824|222235.190|114.608 +637754.688|222237.510|114.818 +637748.589|222239.823|114.855 +637742.396|222242.176|114.776 +637736.336|222244.481|114.666 +637730.134|222246.821|114.983 +637723.974|222249.153|115.114 +637717.750|222251.506|115.266 +637711.568|222253.853|115.215 +637705.439|222256.179|115.248 +637699.266|222258.523|115.215 +637693.100|222260.867|115.154 +637687.215|222263.174|113.569 +637681.445|222265.472|111.319 +637669.558|222270.123|108.399 +637663.462|222272.473|107.625 +637657.237|222274.839|107.598 +637651.047|222277.198|107.390 +637644.878|222279.554|107.089 +637632.244|222284.309|107.909 +637619.531|222289.082|108.985 +637607.168|222293.803|108.363 +637600.846|222296.202|108.375 +637588.194|222300.978|108.920 +637581.940|222303.350|108.966 +637556.467|222312.927|110.838 +637543.684|222317.730|111.868 +637537.335|222320.117|112.346 +637518.431|222327.307|112.017 +637499.238|222334.537|113.163 +637486.516|222339.335|113.822 +637480.145|222341.755|113.773 +637461.028|222348.957|114.837 +637454.649|222351.371|114.971 +637448.248|222353.785|115.334 +637441.893|222356.196|115.291 +637435.532|222358.610|115.343 +637422.745|222363.426|116.108 +637416.271|222365.852|116.729 +637409.861|222368.257|117.373 +637403.433|222370.683|117.632 +637397.066|222373.085|117.909 +637390.677|222375.514|117.839 +637384.212|222377.931|118.558 +637377.845|222380.330|118.964 +637371.408|222382.747|119.473 +637364.992|222385.167|119.808 +637358.591|222387.588|120.018 +637352.102|222390.026|120.546 +637345.622|222392.428|121.692 +637338.913|222394.790|125.593 +637332.558|222397.207|125.462 +637313.499|222404.528|123.609 +637307.104|222406.936|124.002 +637300.648|222409.362|124.484 +637294.229|222411.761|125.313 +637287.789|222414.148|126.492 +637281.357|222416.574|126.794 +637274.944|222419.006|126.849 +637268.513|222421.433|127.175 +637262.079|222423.853|127.583 +637249.250|222428.659|128.906 +637242.828|222431.080|129.290 +637236.466|222433.472|129.711 +637229.992|222435.917|129.994 +637223.604|222438.343|129.906 +637217.273|222440.745|129.869 +637210.878|222443.168|129.900 +637204.505|222445.658|128.348 +637191.712|222450.501|128.467 +637172.547|222457.777|128.306 +637159.803|222462.654|127.364 +637153.362|222465.110|127.065 +637146.995|222467.555|126.404 +637140.619|222469.993|125.980 +637134.178|222472.450|125.636 +637127.796|222474.885|125.307 +637121.416|222477.330|124.810 +637115.040|222479.771|124.295 +637108.648|222482.201|124.164 +637102.278|222484.660|123.249 +637095.831|222487.129|122.731 +637089.446|222489.574|122.216 +637083.060|222492.018|121.771 +637076.662|222494.448|121.667 +637070.335|222496.868|121.207 +637051.145|222504.174|120.579 +637063.023|222502.348|120.512 +637069.423|222499.916|120.853 +637075.827|222497.486|121.122 +637082.286|222495.024|121.612 +637088.681|222492.588|122.103 +637095.136|222490.129|122.573 +637101.528|222487.690|123.121 +637107.917|222485.252|123.658 +637114.366|222482.795|124.151 +637120.755|222480.360|124.615 +637127.144|222477.927|125.057 +637133.590|222475.474|125.465 +637139.970|222473.035|126.102 +637146.355|222470.603|126.559 +637152.799|222468.152|126.946 +637159.175|222465.714|127.599 +637165.558|222463.288|127.955 +637171.928|222460.852|128.623 +637178.313|222458.426|128.937 +637184.705|222456.009|129.065 +637191.097|222453.589|129.211 +637197.559|222451.212|127.870 +637203.953|222448.791|128.010 +637216.657|222443.906|129.955 +637223.055|222441.488|129.958 +637229.456|222439.068|130.019 +637235.872|222436.657|129.766 +637242.288|222434.246|129.543 +637261.561|222427.053|127.818 +637268.013|222424.645|127.230 +637274.384|222422.252|126.989 +637280.797|222419.829|127.017 +637287.255|222417.418|126.468 +637300.164|222412.624|124.773 +637313.002|222407.842|123.414 +637319.415|222405.446|122.886 +637331.945|222400.593|125.499 +637338.306|222398.185|125.614 +637344.829|222395.838|123.213 +637351.419|222393.461|120.863 +637357.865|222391.059|120.174 +637370.618|222386.262|119.808 +637376.949|222383.902|119.192 +637383.316|222381.516|118.872 +637389.799|222379.108|118.016 +637396.133|222376.743|117.491 +637402.525|222374.323|117.607 +637408.828|222371.951|117.434 +637415.204|222369.555|117.162 +637421.608|222367.190|116.123 +637434.346|222362.417|115.355 +637440.652|222360.040|115.300 +637447.007|222357.638|115.379 +637453.338|222355.257|115.148 +637459.675|222352.877|114.910 +637466.018|222350.496|114.639 +637472.382|222348.113|114.215 +637478.697|222345.729|114.224 +637485.007|222343.367|113.816 +637497.735|222338.588|113.206 +637510.305|222333.854|112.980 +637523.000|222329.108|111.908 +637554.383|222317.300|111.002 +637560.768|222314.920|110.402 +637579.635|222307.858|109.076 +637585.932|222305.493|108.774 +637592.105|222303.155|108.914 +637598.396|222300.808|108.305 +637604.650|222298.446|108.347 +637623.173|222291.420|108.966 +637629.385|222289.076|108.966 +637641.967|222284.382|107.729 +637666.714|222275.040|107.662 +637684.731|222268.097|110.609 +637696.432|222263.521|113.947 +637702.247|222261.263|115.288 +637708.368|222258.949|115.306 +637714.516|222256.633|115.202 +637720.645|222254.320|115.218 +637726.732|222252.024|115.148 +637732.831|222249.726|115.041 +637739.034|222247.398|114.736 +637745.081|222245.121|114.611 +637751.147|222242.826|114.739 +637757.185|222240.546|114.696 +637763.238|222238.266|114.608 +637769.374|222235.955|114.440 +637775.381|222233.694|114.309 +637781.538|222231.380|114.084 +637787.649|222229.100|113.496 +637794.020|222226.781|111.697 +637819.132|222217.521|106.945 +637825.131|222215.265|106.787 +637831.141|222212.992|106.872 +637837.247|222210.700|106.549 +637855.449|222203.881|105.382 +637861.387|222201.644|105.330 +637867.273|222199.398|105.808 +637873.094|222197.176|106.308 +637879.059|222194.929|106.193 +637884.988|222192.689|106.257 +637890.861|222190.467|106.296 +637896.756|222188.245|106.272 +637938.002|222172.703|105.626 +637944.003|222170.463|105.050 +637949.883|222168.244|105.007 +637955.723|222166.043|104.873 +637967.265|222161.675|104.952 +637973.127|222159.469|104.793 +637978.927|222157.283|104.629 +637984.666|222155.122|104.489 +637990.531|222152.909|104.370 +637996.380|222150.715|104.096 +638002.116|222148.551|104.016 +638007.868|222146.380|103.894 +638013.595|222144.229|103.647 +638019.496|222142.019|103.248 +638025.263|222139.855|102.898 +638031.082|222137.681|102.361 +638036.858|222135.514|102.017 +638042.664|222133.341|101.581 +638048.486|222131.165|101.115 +638054.192|222129.019|100.849 +638059.925|222126.870|100.505 +638065.637|222124.721|100.252 +638071.242|222122.609|100.173 +638076.994|222120.451|99.822 +638082.681|222118.330|99.258 +638088.472|222116.172|98.582 +638094.184|222114.032|98.207 +638099.720|222111.938|98.228 +638105.221|222109.850|98.387 +638110.729|222107.774|98.310 +638116.182|222105.708|98.438 +638121.738|222103.617|98.231 +638128.825|222102.245|98.045 +638123.336|222104.327|98.012 +638117.803|222106.418|98.146 +638112.265|222108.521|98.094 +638106.742|222110.609|98.231 +638101.122|222112.731|98.493 +638095.541|222114.840|98.640 +638089.899|222116.973|98.792 +638084.089|222119.140|99.542 +638078.371|222121.286|99.999 +638072.598|222123.456|100.438 +638067.082|222125.560|100.209 +638061.266|222127.736|100.852 +638055.652|222129.866|100.779 +638049.872|222132.046|101.087 +638044.063|222134.228|101.523 +638038.287|222136.389|102.102 +638032.441|222138.590|102.474 +638026.695|222140.754|102.742 +638020.828|222142.958|103.251 +638015.067|222145.125|103.626 +638009.273|222147.310|103.888 +638003.464|222149.508|103.995 +637997.724|222151.678|104.096 +637991.872|222153.885|104.409 +637986.075|222156.076|104.528 +637980.223|222158.292|104.623 +637974.419|222160.484|104.803 +637968.549|222162.700|105.022 +637950.977|222169.359|105.098 +637945.177|222171.560|105.110 +637939.172|222173.822|105.446 +637933.231|222176.056|105.805 +637897.643|222189.528|106.342 +637891.611|222191.811|106.427 +637885.689|222194.064|106.342 +637879.766|222196.310|106.272 +637873.762|222198.587|106.296 +637867.919|222200.821|105.924 +637862.024|222203.089|105.223 +637849.750|222207.679|106.598 +637831.602|222214.537|107.095 +637825.573|222216.838|106.827 +637819.455|222219.136|107.272 +637813.378|222221.441|107.262 +637794.069|222228.512|112.538 +637787.683|222230.859|114.151 +637781.557|222233.179|114.224 +637775.479|222235.474|114.395 +637769.349|222237.793|114.547 +637763.144|222240.134|114.776 +637757.041|222242.448|114.824 +637750.915|222244.776|114.696 +637744.855|222247.081|114.578 +637738.589|222249.443|114.885 +637732.426|222251.771|115.007 +637726.260|222254.103|115.178 +637713.949|222258.773|115.135 +637707.764|222261.120|115.126 +637701.598|222263.464|115.032 +637695.792|222265.762|112.983 +637689.918|222268.072|111.274 +637671.938|222275.073|107.451 +637634.347|222289.283|108.457 +637609.134|222298.805|109.301 +637602.959|222301.173|108.765 +637596.728|222303.545|108.576 +637590.386|222305.941|108.759 +637584.110|222308.315|108.930 +637571.427|222313.103|109.390 +637558.659|222317.892|110.548 +637552.218|222320.306|111.121 +637545.857|222322.695|111.648 +637520.416|222332.321|112.145 +637507.599|222337.128|113.294 +637494.864|222341.950|113.471 +637488.418|222344.370|113.989 +637475.704|222349.186|114.130 +637469.331|222351.578|114.651 +637456.554|222356.409|114.986 +637450.171|222358.820|115.123 +637443.780|222361.234|115.388 +637424.623|222368.489|115.626 +637418.118|222370.887|117.080 +637411.684|222373.317|117.315 +637405.320|222375.722|117.501 +637398.937|222378.151|117.327 +637392.485|222380.574|117.830 +637386.102|222382.973|118.314 +637379.543|222385.408|119.384 +637373.112|222387.828|119.808 +637360.289|222392.665|120.332 +637353.876|222395.083|120.658 +637347.267|222397.500|122.542 +637340.556|222399.892|125.752 +637334.213|222402.312|125.468 +637321.618|222407.208|122.972 +637315.196|222409.612|123.652 +637295.784|222416.885|125.532 +637282.842|222421.722|127.032 +637276.438|222424.157|126.916 +637270.007|222426.584|127.209 +637263.560|222429.001|127.775 +637250.658|222433.829|129.156 +637244.230|222436.246|129.577 +637237.817|222438.669|129.824 +637231.407|222441.092|129.982 +637225.009|222443.518|130.004 +637218.617|222445.948|129.936 +637212.290|222448.414|128.574 +637205.919|222450.855|128.059 +637199.528|222453.287|127.943 +637180.234|222460.557|129.050 +637173.775|222462.998|129.226 +637167.399|222465.437|128.845 +637160.970|222467.906|128.254 +637154.609|222470.362|127.330 +637141.798|222475.276|126.251 +637135.358|222477.741|125.800 +637128.988|222480.195|125.026 +637122.544|222482.661|124.563 +637116.155|222485.099|124.276 +637109.773|222487.550|123.728 +637103.326|222490.019|123.182 +637096.941|222492.469|122.679 +637090.549|222494.917|122.204 +637084.100|222497.389|121.692 +637077.705|222499.836|121.201 +637071.313|222502.287|120.683 +637074.693|222503.933|120.890 +637081.088|222501.491|121.378 +637087.541|222499.029|121.917 +637093.871|222496.612|122.396 +637100.321|222494.152|122.859 +637106.710|222491.720|123.249 +637113.095|222489.281|123.780 +637119.542|222486.824|124.212 +637125.924|222484.389|124.679 +637132.301|222481.945|125.401 +637145.102|222477.031|126.977 +637151.467|222474.590|127.748 +637157.825|222472.142|128.687 +637164.201|222469.710|129.141 +637170.593|222467.299|129.071 +637177.049|222464.861|129.028 +637183.385|222462.471|128.906 +637189.774|222460.051|129.031 +637202.615|222455.250|127.897 +637209.004|222452.827|128.077 +637215.374|222450.395|128.620 +637221.644|222447.962|129.903 +637228.033|222445.542|130.016 +637247.201|222438.325|129.467 +637253.633|222435.917|128.982 +637266.474|222431.128|127.553 +637272.847|222428.739|127.145 +637279.279|222426.322|126.846 +637285.689|222423.898|126.898 +637298.505|222419.122|125.398 +637317.793|222411.920|123.533 +637324.215|222409.527|122.871 +637336.740|222404.672|125.407 +637343.031|222402.285|125.581 +637349.678|222399.923|122.423 +637368.954|222392.739|120.256 +637375.340|222390.355|119.616 +637381.701|222387.965|119.284 +637388.117|222385.582|118.403 +637400.891|222380.803|117.406 +637407.164|222378.428|117.452 +637413.522|222376.033|117.303 +637419.831|222373.658|117.077 +637432.663|222368.894|115.276 +637438.979|222366.517|115.096 +637445.291|222364.112|115.480 +637451.619|222361.731|115.236 +637457.956|222359.351|114.925 +637464.271|222356.967|114.812 +637476.948|222352.200|114.328 +637489.561|222347.451|113.950 +637508.537|222340.331|112.956 +637527.414|222333.245|112.039 +637552.673|222323.765|110.701 +637565.261|222319.050|109.850 +637577.867|222314.329|108.985 +637584.079|222311.991|108.808 +637590.315|222309.632|108.902 +637596.460|222307.297|109.198 +637627.407|222295.593|109.512 +637639.867|222290.914|108.908 +637652.306|222286.235|108.530 +637670.685|222279.277|108.856 +637677.001|222276.930|108.037 +637683.021|222274.613|108.927 +637706.530|222265.466|114.611 +637712.510|222263.189|115.038 +637718.624|222260.876|115.099 +637724.690|222258.584|115.117 +637730.761|222256.292|115.102 +637736.912|222253.972|115.038 +637742.950|222251.695|114.919 +637749.101|222249.391|114.572 +637755.194|222247.090|114.538 +637761.193|222244.816|114.696 +637767.246|222242.536|114.590 +637773.290|222240.256|114.547 +637779.359|222237.970|114.401 +637785.379|222235.705|114.221 +637791.472|222233.413|114.014 +637797.592|222231.130|113.389 +637816.660|222224.166|108.375 +637822.793|222221.889|107.534 +637834.781|222217.362|107.515 +637846.775|222212.842|107.259 +637870.814|222203.814|106.211 +637876.682|222201.583|106.488 +637882.619|222199.343|106.482 +637888.502|222197.108|106.729 +637900.429|222192.637|106.031 +637941.638|222177.101|105.446 +637947.459|222174.907|105.333 +637953.278|222172.715|105.260 +637970.640|222166.144|105.510 +637976.513|222163.949|105.040 +637982.329|222161.764|104.815 +637988.102|222159.584|104.775 +637993.935|222157.393|104.528 +637999.693|222155.229|104.336 +638005.442|222153.062|104.196 +638011.205|222150.895|104.028 +638016.991|222148.721|103.788 +638022.727|222146.554|103.754 +638028.552|222144.384|103.175 +638034.294|222142.226|102.922 +638040.088|222140.059|102.498 +638045.928|222137.880|101.931 +638051.726|222135.709|101.535 +638057.474|222133.558|101.105 +638063.171|222131.418|100.874 +638068.865|222129.275|100.688 +638074.522|222127.154|100.410 +638080.203|222125.023|100.069 +638091.728|222120.728|98.871 +638097.257|222118.628|99.130 +638102.963|222116.501|98.551 +638108.568|222114.392|98.335 +638114.100|222112.310|98.170 +638119.559|222110.246|98.280 +638125.009|222108.180|98.426 +638130.672|222106.068|97.868 +638135.637|222105.763|97.972 +638130.288|222107.817|97.460 +638124.607|222109.929|98.326 +638119.059|222112.036|98.298 +638113.615|222114.105|98.155 +638107.971|222116.230|98.496 +638102.262|222118.369|99.078 +638096.547|222120.518|99.472 +638091.103|222122.597|99.173 +638085.284|222124.764|99.965 +638079.630|222126.898|100.209 +638073.958|222129.031|100.538 +638068.264|222131.183|100.731 +638062.570|222133.332|100.941 +638056.849|222135.484|101.261 +638051.052|222137.666|101.654 +638045.319|222139.818|102.066 +638039.518|222141.997|102.511 +638033.718|222144.177|102.977 +638027.866|222146.374|103.407 +638022.066|222148.560|103.678 +638016.366|222150.715|103.833 +638010.587|222152.894|104.056 +638004.841|222155.067|104.184 +637999.032|222157.265|104.315 +637993.189|222159.466|104.611 +637987.376|222161.663|104.793 +637981.561|222163.858|105.016 +637975.696|222166.071|105.196 +637958.155|222172.712|105.397 +637952.321|222174.931|105.284 +637946.429|222177.159|105.409 +637940.605|222179.372|105.284 +637934.630|222181.615|105.796 +637905.007|222192.835|106.061 +637899.036|222195.094|106.156 +637892.940|222197.377|106.799 +637886.999|222199.629|106.808 +637880.970|222201.906|106.939 +637875.164|222204.146|106.116 +637869.104|222206.432|106.421 +637862.981|222208.712|107.314 +637844.922|222215.558|107.345 +637838.728|222217.884|107.790 +637832.824|222220.136|107.528 +637826.697|222222.450|107.720 +637820.553|222224.751|108.317 +637807.681|222229.469|111.767 +637801.356|222231.807|113.026 +637795.117|222234.130|113.919 +637789.027|222236.431|114.123 +637782.892|222238.750|114.255 +637776.759|222241.067|114.407 +637770.632|222243.383|114.544 +637764.527|222245.697|114.602 +637758.404|222248.025|114.456 +637752.259|222250.357|114.437 +637746.105|222252.674|114.803 +637739.942|222255.002|114.913 +637733.727|222257.355|115.004 +637727.598|222259.681|114.992 +637721.401|222262.028|115.020 +637715.299|222264.347|114.898 +637709.145|222266.704|114.404 +637685.368|222275.988|108.841 +637635.469|222294.904|109.082 +637629.165|222297.284|109.289 +637604.016|222306.794|109.951 +637591.568|222311.552|109.213 +637585.256|222313.945|109.228 +637578.931|222316.337|109.359 +637572.631|222318.727|109.341 +637566.294|222321.120|109.612 +637559.811|222323.537|110.493 +637553.468|222325.926|110.850 +637547.137|222328.313|111.173 +637502.481|222345.162|113.054 +637496.041|222347.585|113.514 +637489.673|222349.981|113.901 +637483.273|222352.398|114.102 +637470.535|222357.208|114.562 +637464.155|222359.625|114.669 +637457.749|222362.036|115.032 +637451.369|222364.450|115.202 +637444.999|222366.861|115.294 +637432.212|222371.704|115.452 +637425.723|222374.106|116.723 +637419.356|222376.511|116.934 +637412.931|222378.940|117.117 +637406.615|222381.348|116.867 +637400.114|222383.765|117.866 +637393.707|222386.192|117.970 +637387.315|222388.587|118.564 +637380.814|222391.029|119.080 +637374.413|222393.421|119.835 +637367.994|222395.838|120.216 +637361.538|222398.280|120.354 +637355.128|222400.663|121.359 +637348.484|222403.071|123.731 +637341.967|222405.464|125.444 +637335.624|222407.918|124.444 +637322.935|222412.791|123.158 +637316.528|222415.196|123.700 +637297.119|222422.466|125.672 +637290.715|222424.862|126.358 +637284.253|222427.282|127.044 +637277.843|222429.711|127.041 +637271.427|222432.140|127.151 +637265.041|222434.536|127.766 +637258.570|222436.941|128.800 +637252.151|222439.361|129.086 +637226.509|222449.047|129.970 +637220.153|222451.495|129.196 +637213.814|222453.952|128.080 +637207.428|222456.384|127.907 +637201.012|222458.798|128.294 +637194.602|222461.212|128.681 +637181.749|222466.080|128.876 +637175.406|222468.472|129.181 +637168.953|222470.917|129.223 +637162.580|222473.355|128.833 +637143.402|222480.704|127.239 +637137.050|222483.173|126.032 +637130.679|222485.633|125.142 +637124.245|222488.105|124.462 +637117.856|222490.540|124.240 +637111.471|222492.981|123.831 +637105.033|222495.463|123.005 +637098.645|222497.907|122.560 +637092.256|222500.355|122.094 +637085.864|222502.796|121.686 +637092.491|222503.275|122.018 +637098.940|222500.806|122.667 +637105.390|222498.340|123.258 +637111.779|222495.898|123.816 +637124.617|222491.012|124.542 +637131.005|222488.580|124.859 +637137.434|222486.099|125.986 +637143.789|222483.633|127.321 +637156.587|222478.729|128.763 +637169.358|222473.880|129.214 +637175.759|222471.469|128.992 +637201.393|222461.834|127.852 +637207.794|222459.414|127.861 +637214.182|222456.991|128.044 +637220.556|222454.555|128.595 +637226.902|222452.108|129.616 +637252.459|222442.458|129.391 +637258.830|222440.071|128.961 +637265.325|222437.681|127.556 +637271.759|222435.267|127.187 +637278.123|222432.869|127.001 +637284.466|222430.464|127.166 +637297.338|222425.666|125.770 +637316.531|222418.479|124.316 +637323.033|222416.065|123.380 +637329.391|222413.688|122.792 +637341.930|222408.835|125.212 +637348.243|222406.449|125.203 +637361.343|222401.715|120.604 +637367.753|222399.304|120.302 +637374.139|222396.920|119.665 +637380.521|222394.534|119.125 +637386.925|222392.147|118.385 +637393.298|222389.758|117.982 +637399.699|222387.368|117.357 +637406.051|222384.972|117.263 +637412.364|222382.598|116.967 +637418.707|222380.199|116.998 +637425.007|222377.825|116.882 +637431.347|222375.450|116.400 +637450.436|222368.294|115.163 +637463.092|222363.530|114.721 +637469.447|222361.146|114.328 +637475.762|222358.759|114.279 +637482.096|222356.376|114.126 +637494.687|222351.621|113.989 +637501.027|222349.256|113.343 +637507.358|222346.863|113.297 +637513.640|222344.495|113.191 +637526.262|222339.752|112.584 +637532.522|222337.381|112.700 +637538.829|222335.006|112.490 +637551.508|222330.273|111.258 +637557.802|222327.914|110.786 +637570.378|222323.195|110.039 +637582.973|222318.471|109.286 +637626.315|222302.045|110.161 +637669.722|222285.677|109.362 +637675.986|222283.318|109.173 +637694.420|222276.357|109.030 +637700.461|222274.037|109.814 +637712.028|222269.489|113.544 +637717.908|222267.203|114.870 +637723.967|222264.911|114.888 +637730.094|222262.595|114.916 +637736.166|222260.300|114.925 +637742.295|222257.980|114.974 +637748.406|222255.679|114.815 +637754.454|222253.399|114.687 +637760.617|222251.086|114.319 +637766.630|222248.809|114.398 +637772.687|222246.511|114.602 +637778.731|222244.228|114.568 +637784.760|222241.960|114.328 +637790.832|222239.671|114.200 +637796.854|222237.403|114.038 +637802.926|222235.111|113.965 +637809.184|222232.804|112.712 +637815.514|222230.484|111.167 +637834.153|222223.583|108.131 +637852.130|222216.789|108.082 +637858.049|222214.540|108.329 +637876.103|222207.764|107.339 +637882.174|222205.497|106.735 +637888.194|222203.238|106.366 +637894.001|222201.031|106.680 +637899.892|222198.806|106.634 +637905.970|222196.532|106.098 +637911.874|222194.304|106.049 +637917.763|222192.076|106.074 +637923.575|222189.876|106.168 +637929.543|222187.632|105.915 +637935.295|222185.453|106.037 +637941.235|222183.225|105.665 +637952.952|222178.808|105.394 +637958.719|222176.623|105.516 +637964.513|222174.431|105.549 +637970.277|222172.246|105.729 +637981.853|222167.884|105.424 +637987.699|222165.690|105.077 +637993.509|222163.504|104.888 +637999.349|222161.310|104.601 +638005.094|222159.146|104.455 +638010.858|222156.975|104.257 +638016.616|222154.805|104.105 +638022.325|222152.656|103.903 +638028.055|222150.492|103.894 +638033.791|222148.337|103.635 +638039.561|222146.173|103.269 +638045.404|222143.994|102.663 +638051.159|222141.842|102.157 +638056.932|222139.675|101.855 +638062.692|222137.520|101.368 +638068.395|222135.377|101.121 +638074.043|222133.253|100.852 +638079.667|222131.134|100.685 +638085.293|222129.016|100.532 +638090.880|222126.916|100.307 +638096.568|222124.782|99.969 +638102.054|222122.701|100.127 +638107.684|222120.588|99.801 +638113.463|222118.442|98.996 +638119.135|222116.330|98.341 +638124.722|222114.233|97.996 +638130.169|222112.167|98.158 +638131.583|222113.569|98.231 +638126.131|222115.644|98.097 +638120.568|222117.741|98.344 +638114.795|222119.896|99.115 +638109.016|222122.048|99.926 +638103.408|222124.164|100.164 +638097.836|222126.273|100.298 +638092.255|222128.391|100.249 +638086.500|222130.555|100.606 +638080.886|222132.680|100.709 +638075.192|222134.832|100.886 +638069.550|222136.959|101.133 +638063.759|222139.141|101.456 +638058.008|222141.299|101.901 +638052.223|222143.479|102.248 +638046.434|222145.655|102.626 +638040.652|222147.831|103.017 +638034.812|222150.017|103.632 +638029.052|222152.196|103.733 +638023.306|222154.360|104.044 +638017.494|222156.561|104.135 +638011.733|222158.737|104.306 +638005.917|222160.935|104.455 +638000.163|222163.108|104.626 +637988.431|222167.534|105.153 +637970.938|222174.148|105.568 +637965.077|222176.373|105.525 +637959.286|222178.570|105.488 +637953.421|222180.796|105.491 +637947.487|222183.030|105.799 +637941.540|222185.279|105.918 +637935.658|222187.504|106.061 +637929.735|222189.748|106.125 +637923.840|222191.985|106.092 +637917.976|222194.216|105.946 +637911.975|222196.484|106.125 +637905.943|222198.754|106.461 +637899.975|222201.013|106.540 +637894.080|222203.247|106.619 +637887.984|222205.539|107.012 +637881.879|222207.831|107.485 +637851.694|222219.237|108.405 +637814.667|222233.090|112.350 +637808.318|222235.434|113.715 +637802.164|222237.760|113.864 +637796.077|222240.061|114.029 +637789.993|222242.359|114.218 +637783.855|222244.682|114.373 +637777.759|222246.995|114.346 +637771.657|222249.309|114.364 +637765.600|222251.613|114.175 +637759.388|222253.954|114.474 +637753.241|222256.270|114.779 +637747.020|222258.626|114.858 +637740.884|222260.955|114.843 +637734.742|222263.284|114.870 +637728.619|222265.606|114.824 +637722.419|222267.956|114.882 +637716.466|222270.273|113.617 +637698.748|222277.207|109.055 +637692.716|222279.536|108.223 +637686.346|222281.916|108.960 +637680.073|222284.284|109.173 +637648.926|222296.089|109.356 +637636.328|222300.835|110.051 +637623.746|222305.593|110.374 +637586.170|222319.879|109.606 +637560.820|222329.444|110.713 +637554.456|222331.830|111.252 +637541.593|222336.649|112.529 +637535.268|222339.054|112.432 +637522.580|222343.836|113.066 +637516.176|222346.260|113.163 +637509.833|222348.658|113.291 +637497.053|222353.477|113.925 +637490.649|222355.894|114.123 +637484.272|222358.311|114.163 +637477.966|222360.707|114.123 +637465.198|222365.535|114.410 +637458.815|222367.949|114.565 +637452.396|222370.357|115.096 +637446.075|222372.771|114.782 +637433.121|222377.602|116.480 +637426.738|222380.007|116.818 +637420.328|222382.436|116.851 +637414.016|222384.844|116.562 +637407.557|222387.267|117.123 +637401.141|222389.694|117.287 +637388.345|222394.516|117.964 +637381.826|222396.924|119.345 +637375.413|222399.344|119.628 +637368.899|222401.776|120.360 +637362.565|222404.172|120.536 +637349.346|222408.966|125.191 +637342.979|222411.380|125.172 +637336.773|222413.858|122.539 +637330.324|222416.294|122.783 +637323.920|222418.702|123.274 +637304.547|222425.944|125.502 +637285.186|222433.207|127.172 +637278.794|222435.642|126.953 +637272.433|222438.044|127.166 +637259.439|222442.878|129.120 +637253.078|222445.277|129.458 +637246.668|222447.697|129.680 +637240.246|222450.114|130.074 +637233.882|222452.556|129.504 +637227.490|222454.982|129.458 +637221.162|222457.442|128.178 +637214.780|222459.877|127.891 +637208.388|222462.306|127.827 +637201.914|222464.742|128.199 +637176.326|222474.428|128.656 +637157.105|222481.731|128.425 +637137.955|222489.117|125.855 +637131.591|222491.576|124.871 +637118.749|222496.459|124.642 +637112.364|222498.901|124.258 +637099.611|222503.829|122.301 +637116.573|222500.705|125.017 +637129.433|222495.847|124.849 +637135.824|222493.414|125.072 +637142.252|222490.936|126.029 +637167.752|222481.170|128.455 +637180.581|222476.288|128.970 +637199.796|222469.049|128.291 +637206.157|222466.662|127.806 +637212.619|222464.217|127.782 +637219.007|222461.791|127.980 +637225.295|222459.362|128.970 +637231.638|222456.911|130.068 +637244.452|222452.074|129.778 +637250.862|222449.654|129.641 +637257.223|222447.258|129.357 +637270.141|222442.449|127.669 +637276.529|222440.059|127.090 +637282.951|222437.636|126.949 +637289.349|222435.203|127.175 +637302.136|222430.412|126.120 +637308.543|222428.016|125.471 +637314.949|222425.621|124.883 +637321.448|222423.203|123.914 +637327.873|222420.808|123.216 +637340.608|222415.983|123.304 +637346.777|222413.569|124.987 +637353.232|222411.170|124.020 +637359.783|222408.817|121.347 +637366.229|222406.409|120.613 +637372.563|222404.016|120.530 +637378.991|222401.636|119.448 +637385.428|222399.252|118.318 +637391.802|222396.860|117.912 +637398.197|222394.467|117.315 +637404.527|222392.065|117.391 +637410.861|222389.691|116.876 +637417.271|222387.295|116.254 +637423.556|222384.887|116.842 +637429.859|222382.510|116.681 +637436.230|222380.105|116.525 +637448.979|222375.347|115.071 +637461.623|222370.580|114.730 +637474.318|222365.806|114.050 +637480.599|222363.417|114.297 +637486.924|222361.027|114.212 +637493.182|222358.659|114.184 +637499.540|222356.266|113.858 +637505.816|222353.898|113.727 +637524.765|222346.759|113.035 +637531.004|222344.406|112.819 +637537.399|222342.008|112.389 +637543.559|222339.676|112.356 +637556.166|222334.939|111.642 +637612.246|222313.747|110.929 +637618.506|222311.378|110.899 +637630.988|222306.678|110.396 +637661.965|222294.983|109.792 +637668.125|222292.651|109.792 +637674.322|222290.313|109.615 +637686.776|222285.632|108.972 +637692.966|222283.309|108.549 +637711.017|222276.378|110.640 +637722.718|222271.809|113.617 +637728.564|222269.541|114.797 +637734.636|222267.243|114.776 +637740.765|222264.924|114.812 +637746.794|222262.644|114.742 +637752.924|222260.321|114.812 +637758.983|222258.035|114.617 +637765.097|222255.728|114.489 +637771.218|222253.433|114.029 +637777.207|222251.156|114.248 +637783.209|222248.876|114.443 +637789.265|222246.587|114.361 +637795.291|222244.316|114.160 +637801.375|222242.021|114.002 +637807.398|222239.747|113.852 +637813.460|222237.455|113.840 +637819.699|222235.145|112.718 +637825.963|222232.846|111.222 +637844.473|222225.952|108.835 +637892.281|222207.901|107.924 +637898.262|222205.658|107.473 +637904.312|222203.390|107.031 +637910.283|222201.147|106.662 +637916.211|222198.910|106.506 +637922.155|222196.670|106.305 +637928.096|222194.441|105.863 +637933.948|222192.232|105.827 +637939.821|222190.013|105.708 +637957.298|222183.408|105.546 +637963.157|222181.189|105.574 +637968.948|222178.997|105.620 +637974.700|222176.821|105.601 +637980.442|222174.648|105.626 +637997.916|222168.061|105.110 +638003.674|222165.894|104.906 +638009.508|222163.699|104.681 +638015.290|222161.523|104.419 +638021.069|222159.350|104.205 +638026.759|222157.201|104.083 +638032.481|222155.046|103.870 +638038.260|222152.870|103.699 +638043.999|222150.709|103.458 +638049.839|222148.529|102.876 +638055.542|222146.384|102.565 +638061.293|222144.232|102.108 +638067.033|222142.080|101.721 +638072.739|222139.934|101.465 +638078.454|222137.782|101.194 +638084.117|222135.655|100.907 +638089.768|222133.530|100.673 +638095.306|222131.436|100.624 +638100.920|222129.315|100.551 +638106.541|222127.202|100.249 +638112.082|222125.121|100.023 +638117.654|222123.014|99.920 +638123.573|222120.847|98.435 +638129.014|222118.781|98.603 +638134.531|222116.699|98.533 +638140.246|222114.572|97.801 +638139.328|222117.059|98.021 +638133.744|222119.153|98.539 +638128.197|222121.253|98.737 +638122.814|222123.313|98.390 +638116.834|222125.514|99.880 +638111.296|222127.605|100.109 +638105.703|222129.720|100.307 +638100.049|222131.857|100.514 +638094.431|222133.987|100.618 +638088.805|222136.118|100.758 +638083.129|222138.258|101.096 +638077.490|222140.388|101.331 +638071.779|222142.543|101.605 +638066.045|222144.704|101.974 +638060.291|222146.868|102.450 +638054.536|222149.041|102.706 +638048.717|222151.227|103.212 +638042.993|222153.391|103.391 +638037.269|222155.555|103.602 +638031.527|222157.722|103.891 +638025.726|222159.911|104.175 +638019.990|222162.087|104.251 +638014.193|222164.272|104.568 +638008.340|222166.482|104.858 +638002.595|222168.655|105.025 +637990.854|222173.087|105.623 +637985.118|222175.269|105.559 +637979.302|222177.476|105.568 +637973.502|222179.680|105.531 +637967.643|222181.908|105.485 +637961.831|222184.112|105.546 +637956.021|222186.315|105.607 +637938.361|222193.012|105.790 +637932.393|222195.267|106.052 +637926.401|222197.526|106.442 +637920.533|222199.757|106.321 +637914.517|222202.019|106.854 +637908.424|222204.314|107.204 +637866.309|222220.206|109.314 +637848.332|222227.046|109.070 +637823.479|222236.309|112.740 +637817.212|222238.644|113.703 +637811.147|222240.945|113.736 +637805.063|222243.249|113.892 +637798.979|222245.550|114.056 +637792.819|222247.879|114.306 +637786.763|222250.174|114.386 +637780.697|222252.485|114.218 +637774.668|222254.789|113.883 +637768.471|222257.118|114.419 +637762.302|222259.455|114.517 +637756.124|222261.793|114.684 +637749.994|222264.125|114.632 +637743.850|222266.457|114.663 +637737.726|222268.785|114.626 +637731.594|222271.111|114.629 +637707.871|222280.362|109.445 +637695.560|222285.062|108.823 +637689.406|222287.403|108.713 +637664.385|222296.848|109.716 +637639.330|222306.331|110.204 +637632.957|222308.736|110.505 +637626.733|222311.089|110.664 +637620.463|222313.463|110.743 +637614.114|222315.862|110.960 +637607.848|222318.233|111.060 +637544.659|222342.145|112.420 +637538.298|222344.550|112.609 +637525.561|222349.353|113.172 +637519.138|222351.780|113.428 +637512.817|222354.178|113.413 +637500.067|222358.994|113.803 +637481.029|222366.203|114.154 +637468.221|222371.031|114.824 +637461.872|222373.445|114.703 +637455.389|222375.877|115.257 +637449.117|222378.267|115.068 +637436.181|222383.101|116.656 +637429.835|222385.506|116.641 +637423.422|222387.935|116.726 +637397.877|222397.594|117.467 +637384.999|222402.431|118.458 +637378.494|222404.839|119.720 +637371.987|222407.275|120.418 +637359.112|222412.097|121.756 +637352.416|222414.492|124.825 +637346.109|222416.885|124.810 +637314.038|222429.040|125.127 +637307.625|222431.436|125.861 +637301.191|222433.862|126.166 +637294.702|222436.273|127.266 +637288.319|222438.712|126.901 +637281.906|222441.144|126.943 +637275.551|222443.546|127.102 +637269.110|222445.966|127.641 +637262.633|222448.365|128.858 +637256.196|222450.779|129.479 +637249.789|222453.202|129.647 +637230.550|222460.450|130.625 +637217.904|222465.379|127.806 +637211.518|222467.811|127.605 +637198.689|222472.633|128.467 +637179.466|222479.939|128.150 +637166.618|222484.804|128.300 +637160.233|222487.230|128.184 +637147.425|222492.131|127.221 +637141.079|222494.612|125.636 +637134.642|222497.081|125.075 +637128.244|222499.498|125.252 +637121.849|222501.918|125.343 +637125.629|222503.826|125.508 +637132.033|222501.415|125.276 +637138.436|222499.001|125.072 +637144.877|222496.535|125.724 +637157.608|222491.628|127.711 +637164.052|222489.171|128.096 +637170.450|222486.754|128.074 +637176.841|222484.334|128.138 +637183.242|222481.917|128.035 +637208.839|222472.240|127.964 +637215.252|222469.826|127.705 +637221.653|222467.406|127.730 +637227.993|222464.952|128.937 +637253.480|222455.262|130.010 +637272.847|222448.051|127.617 +637279.233|222445.661|127.065 +637285.661|222443.238|126.870 +637292.074|222440.812|126.876 +637304.842|222436.020|126.145 +637311.280|222433.594|125.889 +637317.711|222431.208|124.977 +637330.537|222426.410|123.810 +637349.596|222419.174|124.456 +637355.988|222416.766|124.258 +637362.538|222414.413|121.612 +637368.997|222412.011|120.774 +637375.425|222409.600|120.311 +637381.759|222407.238|119.595 +637388.278|222404.836|118.226 +637394.664|222402.447|117.720 +637400.955|222400.075|117.583 +637420.145|222392.891|116.001 +637426.494|222390.489|115.998 +637432.724|222388.109|116.568 +637439.080|222385.704|116.531 +637445.407|222383.326|116.236 +637451.878|222380.952|114.687 +637464.536|222376.161|114.754 +637470.864|222373.777|114.572 +637483.522|222369.004|114.276 +637489.786|222366.639|114.184 +637496.092|222364.252|114.270 +637508.757|222359.488|113.605 +637521.312|222354.745|113.404 +637527.679|222352.346|113.133 +637533.958|222349.993|112.624 +637540.249|222347.616|112.502 +637546.561|222345.239|112.273 +637559.128|222340.502|111.837 +637571.659|222335.781|111.331 +637577.938|222333.418|111.030 +637584.216|222331.053|110.740 +637590.389|222328.715|110.789 +637596.567|222326.356|111.243 +637602.770|222324.012|111.115 +637608.942|222321.671|111.225 +637615.172|222319.324|110.975 +637652.659|222305.224|108.991 +637689.687|222291.216|108.786 +637695.743|222288.905|109.113 +637701.918|222286.567|109.146 +637720.060|222279.636|110.432 +637737.562|222272.818|114.538 +637743.685|222270.495|114.614 +637749.696|222268.218|114.629 +637755.840|222265.893|114.626 +637761.863|222263.613|114.632 +637767.917|222261.327|114.492 +637773.961|222259.044|114.416 +637780.075|222256.746|114.017 +637786.159|222254.438|114.111 +637792.097|222252.180|114.319 +637798.162|222249.888|114.224 +637804.157|222247.620|114.197 +637810.208|222245.343|113.907 +637816.298|222243.045|113.770 +637822.275|222240.789|113.587 +637828.423|222238.494|112.923 +637834.714|222236.175|111.615 +637847.061|222231.594|109.631 +637853.066|222229.329|109.454 +637876.737|222220.343|109.923 +637924.642|222202.336|107.192 +637930.558|222200.114|106.851 +637936.484|222197.886|106.497 +637954.071|222191.235|106.336 +637959.999|222189.016|105.802 +637965.845|222186.809|105.620 +637971.639|222184.612|105.659 +637977.382|222182.438|105.662 +637983.133|222180.259|105.656 +637988.943|222178.058|105.690 +638006.289|222171.508|105.214 +638017.905|222167.131|104.733 +638023.669|222164.958|104.550 +638029.405|222162.797|104.266 +638035.181|222160.618|104.080 +638040.927|222158.457|103.800 +638046.654|222156.296|103.599 +638052.390|222154.135|103.391 +638058.078|222151.992|103.138 +638063.787|222149.831|103.059 +638069.584|222147.664|102.453 +638075.284|222145.527|101.977 +638081.005|222143.375|101.688 +638086.699|222141.226|101.514 +638092.404|222139.087|101.081 +638097.949|222136.990|101.005 +638103.648|222134.847|100.633 +638109.260|222132.735|100.359 +638114.841|222130.628|100.215 +638120.611|222128.489|99.213 +638125.978|222126.437|99.612 +638131.638|222124.310|99.252 +638137.216|222122.222|98.737 +638142.812|222120.119|98.408 +638146.321|222120.460|98.481 +638140.855|222122.533|98.588 +638135.214|222124.654|99.078 +638129.596|222126.770|99.520 +638124.073|222128.873|99.429 +638118.389|222131.012|99.898 +638112.741|222133.140|100.270 +638107.151|222135.255|100.468 +638101.490|222137.398|100.691 +638095.803|222139.544|101.035 +638090.100|222141.690|101.447 +638084.455|222143.826|101.681 +638078.725|222145.990|102.008 +638072.967|222148.157|102.440 +638067.210|222150.322|102.910 +638061.546|222152.467|103.044 +638055.813|222154.641|103.233 +638050.049|222156.817|103.538 +638044.322|222158.984|103.739 +638038.513|222161.179|104.010 +638032.776|222163.346|104.278 +638027.000|222165.531|104.477 +638021.221|222167.720|104.705 +638009.563|222172.118|105.354 +637997.962|222176.516|105.616 +637992.180|222178.708|105.714 +637986.386|222180.914|105.620 +637980.564|222183.127|105.653 +637974.767|222185.331|105.607 +637968.972|222187.538|105.568 +637963.059|222189.775|105.757 +637957.158|222192.009|105.924 +637945.222|222196.502|106.872 +637939.324|222198.745|106.827 +637927.330|222203.265|107.628 +637885.234|222219.164|109.768 +637873.192|222223.724|110.106 +637836.713|222237.507|111.804 +637830.392|222239.842|113.258 +637824.332|222242.131|113.511 +637818.169|222244.465|113.694 +637812.076|222246.773|113.849 +637805.980|222249.080|114.056 +637799.921|222251.381|114.108 +637793.858|222253.679|114.187 +637787.744|222256.017|113.931 +637781.669|222258.315|114.117 +637775.442|222260.665|114.453 +637769.334|222262.982|114.541 +637763.174|222265.323|114.587 +637757.032|222267.658|114.575 +637750.924|222269.971|114.721 +637744.737|222272.324|114.651 +637738.735|222274.641|113.953 +637726.906|222279.261|111.307 +637720.779|222281.621|110.640 +637714.793|222283.949|109.533 +637708.691|222286.290|109.076 +637702.458|222288.646|109.378 +637696.282|222291.008|109.006 +637677.519|222298.107|109.765 +637671.295|222300.472|109.756 +637664.967|222302.865|110.021 +637646.259|222309.976|110.079 +637639.946|222312.363|110.356 +637627.434|222317.102|110.670 +637614.794|222321.888|111.106 +637602.203|222326.661|111.335 +637595.942|222329.057|111.051 +637589.712|222331.425|110.972 +637583.427|222333.821|110.893 +637577.032|222336.238|111.155 +637570.677|222338.633|111.603 +637564.353|222341.044|111.426 +637557.955|222343.440|112.237 +637551.554|222345.851|112.648 +637545.306|222348.238|112.435 +637532.537|222353.078|112.724 +637526.149|222355.483|113.172 +637519.742|222357.912|113.316 +637513.411|222360.293|113.864 +637506.992|222362.740|113.672 +637500.649|222365.142|113.880 +637494.276|222367.565|113.883 +637487.842|222369.988|114.398 +637481.538|222372.384|114.358 +637455.984|222382.055|115.260 +637449.534|222384.466|116.120 +637443.078|222386.902|116.519 +637436.736|222389.316|116.486 +637430.423|222391.730|116.166 +637423.983|222394.162|116.504 +637417.646|222396.573|116.449 +637411.215|222399.002|116.769 +637404.796|222401.432|116.967 +637398.392|222403.830|117.687 +637385.471|222408.674|119.156 +637378.955|222411.115|119.915 +637372.511|222413.532|120.604 +637359.578|222418.351|122.618 +637353.016|222420.774|124.142 +637340.330|222425.657|122.850 +637333.832|222428.086|123.722 +637314.474|222435.347|125.733 +637308.040|222437.782|126.011 +637301.593|222440.208|126.477 +637295.217|222442.616|126.806 +637288.810|222445.055|126.760 +637282.391|222447.484|126.965 +637276.029|222449.892|127.160 +637256.662|222457.131|129.775 +637231.059|222466.891|129.107 +637224.802|222469.338|127.669 +637218.413|222471.770|127.526 +637211.951|222474.218|127.742 +637186.385|222483.929|127.757 +637179.993|222486.355|127.827 +637147.986|222498.599|126.062 +637141.564|222501.083|125.127 +637135.166|222503.503|125.304 +637142.234|222503.829|125.102 +637148.623|222501.403|125.349 +637167.795|222494.048|127.660 +637174.244|222491.604|127.745 +637180.587|222489.217|127.504 +637187.055|222486.788|127.202 +637212.610|222477.092|127.986 +637218.971|222474.712|127.462 +637225.366|222472.289|127.590 +637231.721|222469.847|128.449 +637257.117|222460.176|129.940 +637276.481|222452.970|127.498 +637282.863|222450.584|126.971 +637289.291|222448.167|126.745 +637295.634|222445.762|126.861 +637308.451|222440.949|126.233 +637334.137|222431.351|123.862 +637340.568|222428.955|123.088 +637353.248|222424.127|123.853 +637359.554|222421.740|123.914 +637366.153|222419.366|121.378 +637385.343|222412.194|119.622 +637391.787|222409.817|118.397 +637398.136|222407.424|118.214 +637410.943|222402.648|116.870 +637417.338|222400.255|116.352 +637423.687|222397.859|116.300 +637430.042|222395.461|116.230 +637436.291|222393.080|116.577 +637442.649|222390.681|116.501 +637449.007|222388.279|116.449 +637461.763|222383.528|115.013 +637468.118|222381.147|114.556 +637474.427|222378.764|114.498 +637480.734|222376.380|114.523 +637487.070|222373.996|114.279 +637493.380|222371.610|114.319 +637499.674|222369.245|113.980 +637506.011|222366.855|113.861 +637512.375|222364.465|113.541 +637518.632|222362.097|113.611 +637524.978|222359.701|113.493 +637531.239|222357.354|113.105 +637550.155|222350.231|112.511 +637556.452|222347.854|112.417 +637562.737|222345.498|112.002 +637575.313|222340.761|111.645 +637581.638|222338.399|111.042 +637600.228|222331.346|111.566 +637612.779|222326.615|111.237 +637618.991|222324.274|111.115 +637625.261|222321.924|110.658 +637637.666|222317.233|110.661 +637643.912|222314.883|110.435 +637650.154|222312.533|110.246 +637662.575|222307.852|109.966 +637668.732|222305.523|109.990 +637674.925|222303.188|109.826 +637711.943|222289.198|109.722 +637723.986|222284.592|110.911 +637730.085|222282.291|110.758 +637735.934|222280.008|112.289 +637747.763|222275.442|114.325 +637753.832|222273.144|114.398 +637759.916|222270.843|114.401 +637765.999|222268.542|114.416 +637772.031|222266.265|114.404 +637778.149|222263.957|114.306 +637784.202|222261.671|114.224 +637790.316|222259.376|113.855 +637796.348|222257.093|113.941 +637802.365|222254.810|114.099 +637808.376|222252.543|113.995 +637814.393|222250.275|113.904 +637820.416|222248.004|113.791 +637826.527|222245.703|113.578 +637832.580|222243.423|113.371 +637838.704|222241.146|112.566 +637844.894|222238.845|111.783 +637857.053|222234.297|110.728 +637863.082|222232.017|110.755 +637875.051|222227.509|110.399 +637880.989|222225.269|110.329 +637893.062|222220.749|109.384 +637910.963|222214.013|108.768 +637940.647|222202.845|107.646 +637946.594|222200.617|107.232 +637952.525|222198.389|106.909 +637958.624|222196.130|105.933 +637964.425|222193.935|105.915 +637970.304|222191.726|105.601 +637976.126|222189.525|105.552 +637981.932|222187.327|105.568 +637987.681|222185.151|105.580 +637993.445|222182.972|105.546 +637999.181|222180.799|105.641 +638005.079|222178.580|105.382 +638010.803|222176.416|105.318 +638022.340|222172.072|104.888 +638028.107|222169.896|104.714 +638033.895|222167.720|104.480 +638039.689|222165.537|104.242 +638045.386|222163.385|104.147 +638051.192|222161.212|103.663 +638056.944|222159.048|103.401 +638062.625|222156.908|103.187 +638068.386|222154.741|102.934 +638074.110|222152.592|102.590 +638079.764|222150.465|102.291 +638085.519|222148.307|101.889 +638091.185|222146.179|101.590 +638096.854|222144.049|101.297 +638102.566|222141.906|100.871 +638108.294|222139.760|100.417 +638113.914|222137.648|100.127 +638119.553|222135.530|99.789 +638125.030|222133.457|99.804 +638130.593|222131.354|99.761 +638136.195|222129.254|99.389 +638141.709|222127.181|99.103 +638147.332|222125.072|98.682 +638147.826|222126.242|98.600 +638142.337|222128.318|98.804 +638136.698|222130.436|99.298 +638131.053|222132.555|99.844 +638125.533|222134.646|99.975 +638120.068|222136.734|99.712 +638114.423|222138.861|100.087 +638108.748|222140.992|100.593 +638103.097|222143.128|100.788 +638097.464|222145.250|101.188 +638091.706|222147.420|101.572 +638086.010|222149.563|102.008 +638080.298|222151.721|102.273 +638074.561|222153.882|102.651 +638068.904|222156.012|102.995 +638063.168|222158.182|103.181 +638057.413|222160.356|103.446 +638051.619|222162.538|103.888 +638045.913|222164.699|104.013 +638040.134|222166.872|104.440 +638034.373|222169.055|104.568 +638028.558|222171.246|104.925 +638022.785|222173.428|105.141 +638011.279|222177.796|105.242 +638005.478|222179.994|105.376 +637999.650|222182.195|105.635 +637993.838|222184.404|105.607 +637988.083|222186.590|105.626 +637982.274|222188.797|105.620 +637976.473|222191.000|105.595 +637970.573|222193.234|105.732 +637964.733|222195.444|105.909 +637958.801|222197.681|106.214 +637952.720|222199.961|106.881 +637946.704|222202.211|107.579 +637910.966|222215.735|108.668 +637905.007|222217.993|108.756 +637892.934|222222.550|109.378 +637862.701|222233.962|110.899 +637850.624|222238.528|111.301 +637844.394|222240.847|112.282 +637838.176|222243.164|113.249 +637832.071|222245.474|113.413 +637825.972|222247.785|113.575 +637819.937|222250.068|113.752 +637813.838|222252.375|113.962 +637807.785|222254.673|113.965 +637801.667|222256.993|113.998 +637795.620|222259.303|113.718 +637789.500|222261.610|114.114 +637783.303|222263.954|114.303 +637777.189|222266.271|114.407 +637771.105|222268.584|114.379 +637765.018|222270.895|114.395 +637758.873|222273.229|114.401 +637752.658|222275.585|114.459 +637746.730|222277.871|113.703 +637728.610|222284.870|111.258 +637710.352|222291.883|109.600 +637704.213|222294.227|109.362 +637698.008|222296.592|109.167 +637691.777|222298.942|109.475 +637673.026|222306.047|109.847 +637666.705|222308.437|110.070 +637660.496|222310.799|110.021 +637654.214|222313.183|110.060 +637647.978|222315.542|110.219 +637641.623|222317.931|110.746 +637635.362|222320.309|110.722 +637629.083|222322.689|110.826 +637622.783|222325.070|111.112 +637616.391|222327.475|111.603 +637590.986|222337.045|113.212 +637584.850|222339.408|112.542 +637578.690|222341.809|111.194 +637565.922|222346.616|112.087 +637559.534|222349.030|112.377 +637534.156|222358.638|113.002 +637527.749|222361.042|113.596 +637521.394|222363.447|113.803 +637515.005|222365.870|113.849 +637508.684|222368.272|113.849 +637502.298|222370.692|113.898 +637495.873|222373.116|114.288 +637489.567|222375.511|114.248 +637483.126|222377.956|114.315 +637470.407|222382.766|114.718 +637464.018|222385.183|114.965 +637451.080|222390.026|116.416 +637444.779|222392.416|116.486 +637438.366|222394.848|116.522 +637432.057|222397.262|116.169 +637425.635|222399.694|116.303 +637419.213|222402.123|116.486 +637412.833|222404.528|116.864 +637406.380|222406.955|117.418 +637393.521|222411.773|118.769 +637386.986|222414.212|119.668 +637380.552|222416.632|120.216 +637374.130|222419.049|120.628 +637367.582|222421.478|121.814 +637361.041|222423.874|123.728 +637354.613|222426.319|123.664 +637341.924|222431.165|123.066 +637335.432|222433.591|123.862 +637316.065|222440.848|125.977 +637309.622|222443.278|126.328 +637296.744|222448.136|127.026 +637290.352|222450.575|126.773 +637283.930|222453.007|126.953 +637277.486|222455.427|127.498 +637238.999|222469.984|128.748 +637232.693|222472.407|128.153 +637226.268|222474.879|127.513 +637219.879|222477.318|127.291 +637187.845|222489.491|127.230 +637181.389|222491.939|127.297 +637174.991|222494.365|127.419 +637149.363|222504.195|125.416 +637173.321|222498.206|127.263 +637179.722|222495.792|127.071 +637186.122|222493.381|126.892 +637192.502|222490.948|127.297 +637218.056|222481.253|127.830 +637224.418|222478.869|127.352 +637230.803|222476.443|127.565 +637237.180|222474.011|128.004 +637243.535|222471.566|128.827 +637275.484|222459.530|127.742 +637281.882|222457.149|126.962 +637288.298|222454.726|126.828 +637294.647|222452.324|126.821 +637301.014|222449.886|127.480 +637307.421|222447.499|126.663 +637313.800|222445.100|126.322 +637320.177|222442.702|126.047 +637339.443|222435.523|123.703 +637345.859|222433.125|123.100 +637358.512|222428.324|123.408 +637364.873|222425.944|122.844 +637371.414|222423.557|120.988 +637377.781|222421.173|120.448 +637390.555|222416.373|119.713 +637396.868|222414.008|119.235 +637403.326|222411.627|117.912 +637409.727|222409.237|117.242 +637416.067|222406.842|117.202 +637435.145|222399.673|116.132 +637441.445|222397.295|115.992 +637447.687|222394.915|116.422 +637454.036|222392.513|116.449 +637460.297|222390.157|116.193 +637466.810|222387.755|114.803 +637485.711|222380.626|114.352 +637492.051|222378.239|114.105 +637498.333|222375.853|114.355 +637504.627|222373.487|114.017 +637510.948|222371.098|113.974 +637517.160|222368.754|113.861 +637548.701|222356.900|112.374 +637561.210|222352.173|112.304 +637567.458|222349.820|112.130 +637580.028|222345.104|111.325 +637592.281|222340.404|112.788 +637598.445|222338.070|112.862 +637654.674|222316.938|110.155 +637666.951|222312.287|110.323 +637673.142|222309.955|110.121 +637691.634|222302.963|110.121 +637728.268|222289.079|110.874 +637734.264|222286.778|111.603 +637746.312|222282.184|112.429 +637752.183|222279.914|113.508 +637758.114|222277.634|114.267 +637764.131|222275.360|114.276 +637770.206|222273.062|114.331 +637776.296|222270.757|114.319 +637782.325|222268.478|114.325 +637788.384|222266.195|114.197 +637794.434|222263.909|114.142 +637800.488|222261.638|113.776 +637806.523|222259.355|113.828 +637812.539|222257.072|113.995 +637818.550|222254.804|113.904 +637824.576|222252.530|113.761 +637830.544|222250.281|113.617 +637836.585|222248.007|113.447 +637842.617|222245.730|113.346 +637848.686|222243.463|112.801 +637854.922|222241.152|111.813 +637872.896|222234.386|111.185 +637884.991|222229.856|110.286 +637891.013|222227.598|109.847 +637909.018|222220.846|108.664 +637914.983|222218.609|108.302 +637920.866|222216.387|108.305 +637926.730|222214.165|108.393 +637938.477|222209.727|108.308 +637956.101|222203.086|107.899 +637967.966|222198.654|106.747 +637973.934|222196.432|106.068 +637979.799|222194.225|105.830 +637985.575|222192.049|105.702 +637991.406|222189.848|105.635 +637997.142|222187.678|105.702 +638002.945|222185.493|105.525 +638008.758|222183.307|105.333 +638014.494|222181.143|105.208 +638020.188|222178.991|105.257 +638025.967|222176.806|105.260 +638031.642|222174.666|105.171 +638037.440|222172.490|104.888 +638043.188|222170.332|104.565 +638048.952|222168.171|104.205 +638054.710|222166.010|103.894 +638060.473|222163.846|103.577 +638066.149|222161.712|103.370 +638071.861|222159.569|103.044 +638077.582|222157.423|102.706 +638083.276|222155.281|102.489 +638088.994|222153.144|101.971 +638094.642|222151.023|101.721 +638100.305|222148.895|101.444 +638105.980|222146.765|101.136 +638111.598|222144.658|100.831 +638117.203|222142.552|100.572 +638122.787|222140.461|100.188 +638128.325|222138.367|100.209 +638133.885|222136.279|99.935 +638139.505|222134.176|99.490 +638145.147|222132.067|98.978 +638150.972|222129.930|97.658 +638148.814|222132.219|98.216 +638143.074|222134.359|99.039 +638137.381|222136.487|99.731 +638131.788|222138.593|100.106 +638126.262|222140.681|100.270 +638120.787|222142.772|100.042 +638115.021|222144.920|100.855 +638109.482|222147.021|100.880 +638103.798|222149.163|101.218 +638098.116|222151.306|101.553 +638092.453|222153.440|101.852 +638086.766|222155.579|102.251 +638081.054|222157.734|102.529 +638075.332|222159.892|102.861 +638069.645|222162.041|103.096 +638063.890|222164.211|103.349 +638058.166|222166.366|103.754 +638052.430|222168.533|103.983 +638046.654|222170.707|104.379 +638040.835|222172.898|104.714 +638035.105|222175.062|104.982 +638029.314|222177.245|105.251 +638023.623|222179.412|105.178 +638017.835|222181.603|105.220 +638012.071|222183.795|105.202 +638006.341|222185.962|105.321 +638000.495|222188.166|105.662 +637994.682|222190.372|105.641 +637988.851|222192.582|105.702 +637983.021|222194.792|105.790 +637977.141|222197.011|106.086 +637971.133|222199.251|106.927 +637947.289|222208.228|108.469 +637941.467|222210.440|108.405 +637935.594|222212.675|108.311 +637929.738|222214.906|108.155 +637911.898|222221.663|108.415 +637905.836|222223.940|108.948 +637899.725|222226.235|109.442 +637869.421|222237.641|111.484 +637857.385|222242.201|111.697 +637851.136|222244.523|112.740 +637845.019|222246.821|113.212 +637838.981|222249.107|113.352 +637832.879|222251.415|113.505 +637826.844|222253.698|113.681 +637820.760|222256.002|113.797 +637814.688|222258.303|113.880 +637808.665|222260.595|113.745 +637802.551|222262.915|113.770 +637796.446|222265.216|114.075 +637790.335|222267.536|114.130 +637784.214|222269.852|114.248 +637778.067|222272.187|114.215 +637765.841|222276.829|114.163 +637759.724|222279.158|114.035 +637753.716|222281.471|113.349 +637735.608|222288.433|111.463 +637729.618|222290.740|110.710 +637717.375|222295.425|110.027 +637680.027|222309.589|110.432 +637673.831|222311.948|110.283 +637667.589|222314.313|110.445 +637661.358|222316.691|110.167 +637648.862|222321.434|110.277 +637642.549|222323.799|110.966 +637610.902|222335.738|112.648 +637604.717|222338.106|112.264 +637598.384|222340.499|112.484 +637592.102|222342.892|112.404 +637579.663|222347.662|111.399 +637560.591|222354.855|112.493 +637554.227|222357.263|112.679 +637547.887|222359.671|112.694 +637541.489|222362.076|113.169 +637535.156|222364.481|113.200 +637528.782|222366.885|113.566 +637522.406|222369.287|113.989 +637516.002|222371.710|114.148 +637509.699|222374.109|114.053 +637503.298|222376.529|114.258 +637496.986|222378.928|114.273 +637490.551|222381.370|114.300 +637484.227|222383.765|114.456 +637477.829|222386.182|114.745 +637458.572|222393.418|116.345 +637452.213|222395.829|116.412 +637445.794|222398.265|116.510 +637439.534|222400.679|115.705 +637426.680|222405.516|116.693 +637413.808|222410.368|117.431 +637407.371|222412.791|117.851 +637400.967|222415.190|118.628 +637375.163|222424.883|120.856 +637368.686|222427.291|121.984 +637362.197|222429.690|123.350 +637355.753|222432.131|123.496 +637349.444|222434.560|122.807 +637342.964|222436.990|123.456 +637317.199|222446.649|126.111 +637310.755|222449.078|126.547 +637297.905|222453.940|126.943 +637291.571|222456.354|126.727 +637285.091|222458.804|126.943 +637278.709|222461.203|127.501 +637265.764|222466.010|129.860 +637246.628|222473.322|128.864 +637240.279|222475.775|127.998 +637233.906|222478.220|127.495 +637227.520|222480.655|127.279 +637195.489|222492.823|127.266 +637182.730|222497.703|126.593 +637176.265|222500.144|126.901 +637183.839|222500.644|126.398 +637202.993|222493.353|127.309 +637209.388|222490.930|127.373 +637215.834|222488.480|127.635 +637234.982|222481.247|127.462 +637241.368|222478.817|127.757 +637279.699|222464.336|127.376 +637286.143|222461.922|126.855 +637292.501|222459.523|126.751 +637298.902|222457.094|126.879 +637311.624|222452.291|126.709 +637318.074|222449.870|126.261 +637324.462|222447.475|125.849 +637350.123|222437.886|123.316 +637356.506|222435.478|123.188 +637362.815|222433.091|123.210 +637382.051|222425.931|120.716 +637388.489|222423.523|120.174 +637401.184|222418.769|119.122 +637407.575|222416.379|118.525 +637413.967|222413.989|117.955 +637420.322|222411.594|117.784 +637426.662|222409.222|117.217 +637433.051|222406.827|116.766 +637439.448|222404.428|116.284 +637445.797|222402.053|115.736 +637452.070|222399.645|116.486 +637458.315|222397.289|116.364 +637464.680|222394.884|116.294 +637483.818|222387.740|114.303 +637490.057|222385.375|114.373 +637496.419|222382.967|114.447 +637509.040|222378.212|114.014 +637515.292|222375.844|114.066 +637521.574|222373.475|113.892 +637534.144|222368.733|113.581 +637540.456|222366.361|113.264 +637546.775|222363.987|112.916 +637553.063|222361.612|112.816 +637559.293|222359.259|112.734 +637571.829|222354.547|112.075 +637578.203|222352.164|111.478 +637584.262|222349.835|112.237 +637596.704|222345.120|112.432 +637602.943|222342.760|112.426 +637609.116|222340.423|112.468 +637615.376|222338.057|112.383 +637621.542|222335.720|112.508 +637627.559|222333.391|113.611 +637652.912|222323.963|110.131 +637665.190|222319.294|110.633 +637671.359|222316.965|110.542 +637677.522|222314.633|110.509 +637689.924|222309.946|110.435 +637696.011|222307.638|110.545 +637708.243|222302.996|110.856 +637720.615|222298.333|110.441 +637732.731|222293.730|110.859 +637738.814|222291.417|111.106 +637744.676|222289.149|112.228 +637750.802|222286.827|112.273 +637762.644|222282.270|113.931 +637768.691|222279.975|114.111 +637774.711|222277.695|114.133 +637780.734|222275.415|114.163 +637786.823|222273.110|114.184 +637792.852|222270.828|114.203 +637798.924|222268.538|114.059 +637804.983|222266.249|113.983 +637811.049|222263.973|113.584 +637817.072|222261.690|113.730 +637823.040|222259.425|113.858 +637829.029|222257.157|113.892 +637835.089|222254.877|113.621 +637841.069|222252.625|113.453 +637847.110|222250.345|113.304 +637853.160|222248.062|113.142 +637859.217|222245.806|112.407 +637865.392|222243.502|111.719 +637871.409|222241.237|111.496 +637877.331|222239.000|111.435 +637913.471|222225.461|108.600 +637919.445|222223.209|108.469 +637931.150|222218.780|108.494 +637937.108|222216.536|108.216 +637983.981|222198.867|106.900 +637989.985|222196.642|105.869 +637995.801|222194.441|105.854 +638001.543|222192.280|105.650 +638007.429|222190.065|105.403 +638013.202|222187.882|105.370 +638018.893|222185.727|105.415 +638024.641|222183.557|105.266 +638030.344|222181.399|105.296 +638036.077|222179.232|105.239 +638041.862|222177.053|105.010 +638047.596|222174.898|104.745 +638053.414|222172.721|104.184 +638059.120|222170.579|103.818 +638064.887|222168.411|103.492 +638070.581|222166.260|103.458 +638076.305|222164.111|103.093 +638081.919|222161.995|102.907 +638087.683|222159.837|102.434 +638093.346|222157.710|102.114 +638099.003|222155.582|101.837 +638104.651|222153.455|101.611 +638110.357|222151.315|101.203 +638115.929|222149.215|101.047 +638121.555|222147.100|100.718 +638127.060|222145.024|100.612 +638132.647|222142.918|100.456 +638138.256|222140.815|100.020 +638143.992|222138.684|99.176 +638149.868|222136.532|97.658 +638155.309|222134.475|97.634 +638155.733|222136.484|97.658 +638150.359|222138.532|97.460 +638144.480|222140.702|98.768 +638138.676|222142.851|99.837 +638133.007|222144.969|100.478 +638127.426|222147.082|100.615 +638121.909|222149.166|100.767 +638116.362|222151.266|100.816 +638110.668|222153.409|101.169 +638104.980|222155.552|101.523 +638099.342|222157.679|101.721 +638093.660|222159.819|102.084 +638087.899|222161.983|102.523 +638082.261|222164.108|102.779 +638076.546|222166.260|103.093 +638070.828|222168.424|103.212 +638065.128|222170.573|103.510 +638059.349|222172.746|103.876 +638053.597|222174.913|104.172 +638047.782|222177.092|104.723 +638041.981|222179.281|104.995 +638036.217|222181.460|105.156 +638030.493|222183.630|105.190 +638024.781|222185.794|105.193 +638018.981|222187.989|105.296 +638013.287|222190.150|105.263 +638007.493|222192.341|105.388 +638001.610|222194.563|105.626 +637995.795|222196.758|105.872 +637989.744|222199.007|106.802 +637948.386|222214.598|108.823 +637942.537|222216.826|108.619 +637936.663|222219.057|108.530 +637930.775|222221.304|108.253 +637924.877|222223.538|108.296 +637918.872|222225.802|108.546 +637912.913|222228.061|108.625 +637888.593|222237.171|110.993 +637870.458|222244.017|111.667 +637864.337|222246.319|112.084 +637858.193|222248.611|112.932 +637852.136|222250.900|113.118 +637846.083|222253.186|113.304 +637840.039|222255.469|113.474 +637833.876|222257.800|113.636 +637827.868|222260.077|113.669 +637821.805|222262.375|113.691 +637815.792|222264.664|113.502 +637809.668|222266.969|113.864 +637803.530|222269.291|114.008 +637797.409|222271.608|114.099 +637791.307|222273.921|114.114 +637785.214|222276.235|114.105 +637779.136|222278.542|114.038 +637772.976|222280.877|114.096 +637766.999|222283.169|113.550 +637760.696|222285.534|114.044 +637730.441|222297.141|111.219 +637693.305|222311.259|110.606 +637687.123|222313.600|110.704 +637680.924|222315.959|110.560 +637674.626|222318.343|110.661 +637649.578|222327.822|111.155 +637636.849|222332.589|112.456 +637630.607|222334.961|112.374 +637624.353|222337.332|112.398 +637618.101|222339.700|112.429 +637611.792|222342.093|112.441 +637605.498|222344.483|112.398 +637599.194|222346.875|112.426 +637592.879|222349.262|112.554 +637580.425|222354.029|111.652 +637574.009|222356.443|112.127 +637561.335|222361.234|112.459 +637554.937|222363.639|112.877 +637548.646|222366.020|112.996 +637542.218|222368.446|113.258 +637535.860|222370.848|113.471 +637529.468|222373.271|113.517 +637523.070|222375.673|114.096 +637510.385|222380.489|113.986 +637504.023|222382.884|114.367 +637497.644|222385.301|114.440 +637491.286|222387.716|114.331 +637484.955|222390.108|114.541 +637478.502|222392.547|114.797 +637472.068|222394.930|115.943 +637465.597|222397.362|116.437 +637459.245|222399.773|116.422 +637452.899|222402.184|116.358 +637446.544|222404.617|115.858 +637440.113|222407.022|116.626 +637433.712|222409.423|117.184 +637427.281|222411.850|117.455 +637420.846|222414.273|117.812 +637414.403|222416.696|118.278 +637408.033|222419.095|118.686 +637395.082|222423.950|119.842 +637388.644|222426.367|120.408 +637382.228|222428.781|120.799 +637369.298|222433.594|122.774 +637362.837|222436.029|123.118 +637337.102|222445.704|124.932 +637330.634|222448.130|125.538 +637324.173|222450.553|126.117 +637317.781|222452.955|126.623 +637311.350|222455.381|126.870 +637304.882|222457.798|127.660 +637298.524|222460.243|126.937 +637292.129|222462.681|126.712 +637285.713|222465.107|126.840 +637279.321|222467.497|127.562 +637247.284|222479.628|128.117 +637240.904|222482.064|127.760 +637234.467|222484.529|127.309 +637228.069|222486.956|127.367 +637221.665|222489.379|127.513 +637196.083|222499.151|126.120 +637189.682|222501.574|126.261 +637194.218|222502.955|126.126 +637200.533|222500.544|126.572 +637206.907|222498.102|127.160 +637213.289|222495.673|127.458 +637219.626|222493.274|127.471 +637226.024|222490.851|127.431 +637232.443|222488.440|127.023 +637238.832|222486.014|127.227 +637245.217|222483.581|127.486 +637251.514|222481.161|128.284 +637270.613|222473.895|129.068 +637277.035|222471.478|128.739 +637283.528|222469.085|127.321 +637289.846|222466.717|126.864 +637296.268|222464.294|126.675 +637302.666|222461.861|126.855 +637315.376|222457.055|126.779 +637328.153|222452.257|125.898 +637341.025|222447.438|124.715 +637347.414|222445.033|124.432 +637353.839|222442.634|123.719 +637360.185|222440.254|123.267 +637366.570|222437.843|123.091 +637372.929|222435.463|122.603 +637379.400|222433.061|121.521 +637385.761|222430.674|121.073 +637392.146|222428.291|120.384 +637398.572|222425.877|119.954 +637404.963|222423.487|119.299 +637411.288|222421.119|118.738 +637417.710|222418.702|118.461 +637423.958|222416.352|118.129 +637430.353|222413.956|117.574 +637443.133|222409.158|116.693 +637449.479|222406.784|116.132 +637455.780|222404.403|116.050 +637462.025|222402.017|116.470 +637468.319|222399.636|116.461 +637474.641|222397.253|116.251 +637481.108|222394.872|114.791 +637487.448|222392.486|114.501 +637500.024|222387.734|114.322 +637506.404|222385.320|114.264 +637512.683|222382.951|114.072 +637518.937|222380.583|114.090 +637525.259|222378.191|114.093 +637531.556|222375.819|113.822 +637544.147|222371.073|113.389 +637550.457|222368.696|113.096 +637556.702|222366.343|112.865 +637562.987|222363.965|112.825 +637569.269|222361.609|112.383 +637575.539|222359.250|112.045 +637594.186|222352.179|112.334 +637619.031|222342.776|112.304 +637625.203|222340.435|112.380 +637631.442|222338.070|112.459 +637637.578|222335.747|112.432 +637681.131|222319.343|110.694 +637693.399|222314.682|111.024 +637699.565|222312.347|111.021 +637705.585|222310.046|111.523 +637711.718|222307.711|111.752 +637717.908|222305.389|111.328 +637730.213|222300.747|110.987 +637736.312|222298.430|111.133 +637742.323|222296.141|111.447 +637754.350|222291.545|112.407 +637760.342|222289.253|112.846 +637766.323|222286.951|113.694 +637772.370|222284.669|113.547 +637778.316|222282.398|113.950 +637784.406|222280.093|113.956 +637790.432|222277.811|113.983 +637796.467|222275.525|113.986 +637802.496|222273.242|114.035 +637808.574|222270.946|113.864 +637814.563|222268.682|113.843 +637820.641|222266.402|113.425 +637826.673|222264.113|113.538 +637832.638|222261.845|113.688 +637838.569|222259.599|113.727 +637844.635|222257.316|113.438 +637850.688|222255.036|113.255 +637856.672|222252.777|113.108 +637862.664|222250.516|112.938 +637868.742|222248.239|112.404 +637874.847|222245.959|111.780 +637911.094|222232.374|108.878 +637917.065|222230.121|108.744 +637923.008|222227.884|108.466 +637928.888|222225.656|108.475 +637934.743|222223.434|108.625 +637940.541|222221.233|108.753 +637946.353|222219.030|108.841 +637952.199|222216.805|109.058 +637958.003|222214.613|108.951 +637963.843|222212.400|108.985 +637969.628|222210.212|108.997 +637975.458|222207.999|109.094 +637993.125|222201.376|107.811 +637999.129|222199.151|106.805 +638005.198|222196.910|105.580 +638011.017|222194.719|105.357 +638016.789|222192.536|105.321 +638022.495|222190.378|105.327 +638028.290|222188.187|105.248 +638034.011|222186.023|105.223 +638039.695|222183.877|105.114 +638045.459|222181.704|104.967 +638051.305|222179.525|104.291 +638057.093|222177.342|104.092 +638062.839|222175.181|103.830 +638068.560|222173.032|103.443 +638074.229|222170.896|103.269 +638079.914|222168.756|103.053 +638085.696|222166.583|102.736 +638091.368|222164.452|102.373 +638097.098|222162.300|102.056 +638102.758|222160.173|101.773 +638108.315|222158.076|101.636 +638113.993|222155.939|101.331 +638119.599|222153.833|101.069 +638125.195|222151.724|100.855 +638130.757|222149.624|100.779 +638136.308|222147.533|100.529 +638142.154|222145.369|99.530 +638148.204|222143.168|97.628 +638153.596|222141.123|97.756 +638155.800|222142.202|97.728 +638150.380|222144.262|97.704 +638144.672|222146.396|98.448 +638138.722|222148.581|100.042 +638132.979|222150.730|100.731 +638127.459|222152.818|100.901 +638121.897|222154.927|100.999 +638116.374|222157.024|100.990 +638110.705|222159.155|101.502 +638105.069|222161.288|101.697 +638099.412|222163.422|101.977 +638093.764|222165.555|102.248 +638088.030|222167.717|102.605 +638082.319|222169.871|102.913 +638076.643|222172.020|103.102 +638070.965|222174.166|103.330 +638065.195|222176.342|103.669 +638059.443|222178.513|103.958 +638053.722|222180.677|104.163 +638047.894|222182.862|104.781 +638042.112|222185.047|105.001 +638036.358|222187.227|105.144 +638030.685|222189.379|105.248 +638024.894|222191.573|105.324 +638019.124|222193.765|105.330 +638013.412|222195.932|105.388 +638007.493|222198.151|106.019 +637983.597|222207.094|108.899 +637971.892|222211.529|109.137 +637966.055|222213.748|109.082 +637960.307|222215.936|108.963 +637954.418|222218.176|108.905 +637948.508|222220.420|108.945 +637942.717|222222.626|108.789 +637936.840|222224.861|108.722 +637930.967|222227.107|108.405 +637925.060|222229.347|108.512 +637919.080|222231.612|108.683 +637913.121|222233.870|108.780 +637907.086|222236.141|109.228 +637894.875|222240.716|110.545 +637882.790|222245.267|111.414 +637876.666|222247.574|111.828 +637870.558|222249.863|112.478 +637864.471|222252.162|112.779 +637858.406|222254.454|112.996 +637852.359|222256.743|113.163 +637846.314|222259.032|113.331 +637840.282|222261.315|113.465 +637834.208|222263.619|113.529 +637828.179|222265.917|113.386 +637822.165|222268.197|113.499 +637815.984|222270.529|113.831 +637809.936|222272.824|113.843 +637803.883|222275.122|113.916 +637797.781|222277.439|113.925 +637791.688|222279.752|113.922 +637785.613|222282.062|113.834 +637779.560|222284.370|113.657 +637773.434|222286.702|113.560 +637761.409|222291.319|112.551 +637755.249|222293.666|112.353 +637730.768|222303.005|111.523 +637724.696|222305.322|111.271 +637718.408|222307.696|111.523 +637706.073|222312.384|111.481 +637693.637|222317.108|111.371 +637687.477|222319.465|111.005 +637675.044|222324.186|111.011 +637668.777|222326.551|111.335 +637649.965|222333.671|111.807 +637643.576|222336.058|112.609 +637637.422|222338.405|112.377 +637631.113|222340.801|112.346 +637624.923|222343.151|112.374 +637580.873|222359.884|112.215 +637574.548|222362.271|112.487 +637561.868|222367.065|112.916 +637549.177|222371.875|113.108 +637542.794|222374.280|113.505 +637536.433|222376.682|113.785 +637530.084|222379.081|113.986 +637523.750|222381.482|114.102 +637517.352|222383.902|114.242 +637511.012|222386.298|114.462 +637498.263|222391.135|114.535 +637491.975|222393.531|114.383 +637485.571|222395.945|114.727 +637479.063|222398.356|116.001 +637472.650|222400.767|116.501 +637466.301|222403.181|116.440 +637459.952|222405.592|116.425 +637447.187|222410.432|116.513 +637440.771|222412.837|117.223 +637434.337|222415.263|117.537 +637427.948|222417.668|118.019 +637421.511|222420.091|118.458 +637408.633|222424.935|119.439 +637402.171|222427.349|120.201 +637395.792|222429.744|120.820 +637389.397|222432.165|120.963 +637382.902|222434.600|121.609 +637376.467|222437.011|122.277 +637370.018|222439.419|123.152 +637363.660|222441.839|123.027 +637350.721|222446.701|124.045 +637344.320|222449.108|124.557 +637337.907|222451.510|125.212 +637324.990|222456.363|126.358 +637318.543|222458.789|126.785 +637305.751|222463.623|127.282 +637299.389|222466.071|126.568 +637292.973|222468.500|126.730 +637286.557|222470.929|126.876 +637273.615|222475.736|129.144 +637254.514|222483.011|128.583 +637248.125|222485.499|127.312 +637241.733|222487.931|127.157 +637235.406|222490.339|127.017 +637228.993|222492.759|127.303 +637203.392|222502.516|126.410 +637230.754|222495.426|127.205 +637237.164|222493.009|127.026 +637243.501|222490.607|127.117 +637256.288|222485.700|128.586 +637262.594|222483.283|129.220 +637281.866|222476.038|128.199 +637288.362|222473.645|126.855 +637294.723|222471.246|126.684 +637301.145|222468.823|126.550 +637313.809|222464.001|127.169 +637320.250|222461.581|126.812 +637339.504|222454.366|125.310 +637345.844|222451.989|124.849 +637358.749|222447.170|123.508 +637365.089|222444.786|123.179 +637371.472|222442.375|123.085 +637377.818|222439.989|122.755 +637390.574|222435.194|122.134 +637396.999|222432.814|121.021 +637403.381|222430.427|120.442 +637409.749|222428.038|120.040 +637416.146|222425.648|119.369 +637422.511|222423.252|119.089 +637428.917|222420.860|118.424 +637435.224|222418.485|118.171 +637441.606|222416.089|117.787 +637448.007|222413.718|116.699 +637460.787|222408.942|115.465 +637467.018|222406.531|116.608 +637473.324|222404.147|116.522 +637479.615|222401.764|116.577 +637492.478|222397.000|114.425 +637498.766|222394.613|114.593 +637505.002|222392.248|114.733 +637511.345|222389.858|114.486 +637517.660|222387.466|114.498 +637530.227|222382.723|114.108 +637536.518|222380.352|113.901 +637542.876|222377.953|113.663 +637549.100|222375.603|113.560 +637555.455|222373.222|112.938 +637567.952|222368.492|112.919 +637580.504|222363.773|112.164 +637636.410|222342.596|112.225 +637655.000|222335.555|112.228 +637661.221|222333.220|111.749 +637679.832|222326.201|111.152 +637692.076|222321.543|111.600 +637698.212|222319.212|111.752 +637704.317|222316.883|112.115 +637716.588|222312.232|112.170 +637722.654|222309.936|112.093 +637728.930|222307.583|111.581 +637734.953|222305.294|111.795 +637747.038|222300.689|112.377 +637753.143|222298.369|112.535 +637783.254|222286.924|113.416 +637789.186|222284.653|113.919 +637795.230|222282.367|113.858 +637801.323|222280.057|113.889 +637807.303|222277.792|113.886 +637813.280|222275.528|113.904 +637819.352|222273.232|113.791 +637825.375|222270.959|113.645 +637831.446|222268.679|113.270 +637837.414|222266.411|113.425 +637843.352|222264.162|113.438 +637849.359|222261.885|113.428 +637855.349|222259.626|113.249 +637861.335|222257.368|113.087 +637867.391|222255.078|112.926 +637873.335|222252.838|112.724 +637879.425|222250.558|112.176 +637885.527|222248.275|111.594 +637909.698|222239.232|109.192 +637915.660|222236.979|109.070 +637927.504|222232.511|108.683 +637933.335|222230.307|108.649 +637939.166|222228.085|108.887 +637950.779|222223.678|109.106 +637968.183|222217.076|109.338 +637979.710|222212.699|109.530 +637991.427|222208.282|109.049 +638021.038|222197.230|105.485 +638026.766|222195.063|105.391 +638032.554|222192.872|105.330 +638038.287|222190.705|105.260 +638043.959|222188.559|105.193 +638049.787|222186.379|104.553 +638055.560|222184.212|104.150 +638061.278|222182.054|103.971 +638067.024|222179.890|103.702 +638072.763|222177.723|103.480 +638078.423|222175.599|103.102 +638084.102|222173.456|102.901 +638089.786|222171.310|102.696 +638095.437|222169.183|102.401 +638101.100|222167.052|102.084 +638106.700|222164.934|102.011 +638112.384|222162.797|101.654 +638118.026|222160.679|101.246 +638123.534|222158.591|101.310 +638129.057|222156.506|101.124 +638134.677|222154.391|100.840 +638140.362|222152.269|100.130 +638146.497|222150.050|97.905 +638151.929|222147.993|97.884 +638151.118|222149.883|97.908 +638145.504|222151.998|98.332 +638139.338|222154.241|100.441 +638133.723|222156.354|100.916 +638128.100|222158.475|101.221 +638122.494|222160.593|101.468 +638116.965|222162.693|101.477 +638111.314|222164.833|101.706 +638105.566|222167.000|102.059 +638099.982|222169.109|102.315 +638094.267|222171.267|102.584 +638088.649|222173.395|102.770 +638082.971|222175.544|102.943 +638077.213|222177.720|103.196 +638071.519|222179.869|103.477 +638065.756|222182.045|103.791 +638060.038|222184.209|103.964 +638054.301|222186.379|104.220 +638048.437|222188.583|104.733 +638042.667|222190.756|105.153 +638036.858|222192.957|105.254 +638031.133|222195.130|105.306 +638025.388|222197.307|105.449 +637978.040|222215.104|109.539 +637954.714|222223.980|109.298 +637948.868|222226.211|109.085 +637937.139|222230.679|108.850 +637907.250|222241.996|109.655 +637901.145|222244.279|110.445 +637895.028|222246.578|111.021 +637888.956|222248.864|111.438 +637882.833|222251.159|112.112 +637876.740|222253.448|112.666 +637870.680|222255.743|112.819 +637864.679|222258.014|113.011 +637858.631|222260.306|113.160 +637852.572|222262.598|113.377 +637846.558|222264.881|113.395 +637840.517|222267.182|113.276 +637834.482|222269.480|113.139 +637828.401|222271.772|113.553 +637822.272|222274.098|113.621 +637816.246|222276.378|113.797 +637810.144|222278.701|113.773 +637804.029|222281.020|113.819 +637797.949|222283.334|113.724 +637791.914|222285.629|113.739 +637785.857|222287.951|113.233 +637773.693|222292.590|112.871 +637761.504|222297.245|112.365 +637755.319|222299.582|112.621 +637749.171|222301.932|112.365 +637730.771|222308.949|111.825 +637724.553|222311.302|112.017 +637718.368|222313.649|112.060 +637712.117|222316.020|112.161 +637705.954|222318.364|112.127 +637699.763|222320.726|111.914 +637693.634|222323.064|111.728 +637687.364|222325.451|111.648 +637681.216|222327.807|111.228 +637656.180|222337.280|112.072 +637649.870|222339.664|112.368 +637643.607|222342.041|112.404 +637580.736|222365.916|112.740 +637574.426|222368.306|112.919 +637561.792|222373.100|113.023 +637555.462|222375.508|112.990 +637542.709|222380.321|113.691 +637536.335|222382.726|114.059 +637529.922|222385.152|114.279 +637523.567|222387.554|114.562 +637510.863|222392.376|114.684 +637504.478|222394.796|114.800 +637498.202|222397.192|114.535 +637491.798|222399.612|114.837 +637485.278|222402.026|116.193 +637478.868|222404.440|116.626 +637472.461|222406.878|116.541 +637466.216|222409.271|116.129 +637459.791|222411.706|116.230 +637453.399|222414.117|116.638 +637446.998|222416.525|117.132 +637434.105|222421.356|118.570 +637427.662|222423.783|119.052 +637421.236|222426.209|119.363 +637414.854|222428.611|119.896 +637408.371|222431.028|120.860 +637395.530|222435.868|121.673 +637389.031|222438.306|122.307 +637382.627|222440.726|122.606 +637376.230|222443.147|122.868 +637369.771|222445.585|123.194 +637344.104|222455.256|124.929 +637318.345|222464.946|126.992 +637305.595|222469.798|126.791 +637299.130|222472.258|126.736 +637292.787|222474.672|126.666 +637286.347|222477.092|127.205 +637273.494|222481.893|128.998 +637260.695|222486.754|129.004 +637254.352|222489.211|128.007 +637248.006|222491.668|127.071 +637241.621|222494.103|126.882 +637235.229|222496.535|126.815 +637227.328|222502.610|126.934 +637233.668|222500.214|126.925 +637240.078|222497.800|126.700 +637246.470|222495.377|126.849 +637259.125|222490.519|128.449 +637278.242|222483.274|128.870 +637284.713|222480.878|127.748 +637291.120|222478.503|126.779 +637297.478|222476.105|126.639 +637303.891|222473.685|126.550 +637310.188|222471.267|127.346 +637322.917|222466.473|126.992 +637329.275|222464.071|126.946 +637354.894|222454.494|124.606 +637361.331|222452.102|123.737 +637367.765|222449.706|122.993 +637374.002|222447.341|123.136 +637380.396|222444.936|122.886 +637386.739|222442.552|122.594 +637393.146|222440.144|122.280 +637399.486|222437.758|122.067 +637405.771|222435.395|121.786 +637412.239|222432.991|120.939 +637424.958|222428.239|119.707 +637431.344|222425.849|119.201 +637437.659|222423.481|118.827 +637444.051|222421.085|118.330 +637450.488|222418.695|117.440 +637456.840|222416.321|116.824 +637463.189|222413.950|116.257 +637469.557|222411.572|115.577 +637475.796|222409.164|116.614 +637482.029|222406.808|116.644 +637488.408|222404.406|116.461 +637494.849|222402.050|114.764 +637501.155|222399.667|114.776 +637507.458|222397.280|114.803 +637513.682|222394.918|115.029 +637520.028|222392.531|114.797 +637526.310|222390.163|114.614 +637532.611|222387.798|114.319 +637538.902|222385.430|114.114 +637545.223|222383.058|113.709 +637551.533|222380.687|113.419 +637564.115|222375.941|113.197 +637570.308|222373.591|113.389 +637576.618|222371.214|113.197 +637582.833|222368.882|112.837 +637595.348|222364.170|112.453 +637638.940|222347.710|112.039 +637657.472|222340.688|112.441 +637663.788|222338.350|111.389 +637670.106|222336.009|110.371 +637676.260|222333.665|110.737 +637700.748|222324.351|112.005 +637706.774|222322.049|112.478 +637712.982|222319.715|112.267 +637719.045|222317.407|112.542 +637725.196|222315.094|112.359 +637731.350|222312.774|112.167 +637743.578|222308.147|112.292 +637749.549|222305.864|112.819 +637761.790|222301.247|112.663 +637767.886|222298.945|112.584 +637773.891|222296.656|112.983 +637779.904|222294.383|113.047 +637792.023|222289.801|113.057 +637798.010|222287.512|113.630 +637803.984|222285.254|113.642 +637810.016|222282.971|113.691 +637816.069|222280.685|113.663 +637822.046|222278.423|113.712 +637828.139|222276.128|113.541 +637834.150|222273.860|113.471 +637840.221|222271.580|113.136 +637846.217|222269.313|113.176 +637852.139|222267.069|113.291 +637858.144|222264.799|113.337 +637864.148|222262.537|113.096 +637870.141|222260.281|112.950 +637876.136|222258.023|112.804 +637882.168|222255.755|112.517 +637888.161|222253.509|112.151 +637894.244|222251.244|111.405 +637900.295|222248.970|111.106 +637906.421|222246.709|109.951 +637930.284|222237.738|108.920 +637936.221|222235.504|108.707 +637947.725|222231.127|109.359 +637959.469|222226.689|109.329 +637982.569|222217.932|109.771 +637988.376|222215.738|109.728 +637994.262|222213.525|109.396 +638011.763|222206.954|108.375 +638035.468|222198.120|105.431 +638041.250|222195.944|105.178 +638046.998|222193.786|104.833 +638052.768|222191.613|104.672 +638058.651|222189.412|104.102 +638064.347|222187.273|103.769 +638070.069|222185.115|103.605 +638075.765|222182.975|103.318 +638081.486|222180.826|102.949 +638087.223|222178.665|102.791 +638092.816|222176.553|102.703 +638098.442|222174.422|102.736 +638104.026|222172.310|102.703 +638109.632|222170.195|102.611 +638115.170|222168.104|102.553 +638120.739|222166.004|102.398 +638126.359|222163.879|102.303 +638132.211|222161.718|101.209 +638137.859|222159.609|100.606 +638144.031|222157.375|98.463 +638149.707|222155.256|97.829 +638166.142|222149.051|97.585 +638146.689|222157.887|97.893 +638140.563|222160.118|99.880 +638134.796|222162.261|100.892 +638128.923|222164.437|102.069 +638123.244|222166.567|102.593 +638117.718|222168.664|102.608 +638112.134|222170.786|102.608 +638106.611|222172.880|102.648 +638100.963|222175.026|102.684 +638095.404|222177.135|102.642 +638089.762|222179.278|102.690 +638084.089|222181.423|102.858 +638078.377|222183.575|103.193 +638072.672|222185.727|103.532 +638066.905|222187.900|103.861 +638061.190|222190.061|104.035 +638055.466|222192.226|104.257 +638049.647|222194.420|104.614 +638043.837|222196.596|105.190 +638037.988|222198.794|105.711 +638026.180|222203.217|106.979 +638008.542|222209.837|108.661 +638002.665|222212.056|108.917 +637990.921|222216.475|109.722 +637955.976|222229.759|109.420 +637932.497|222238.689|109.085 +637920.671|222243.179|109.134 +637896.296|222252.320|111.517 +637890.227|222254.591|112.215 +637884.128|222256.892|112.511 +637878.105|222259.166|112.773 +637872.116|222261.437|112.913 +637866.059|222263.726|113.072 +637860.024|222266.015|113.163 +637853.992|222268.298|113.273 +637848.015|222270.575|113.139 +637842.008|222272.854|113.172 +637835.869|222275.168|113.538 +637829.813|222277.466|113.532 +637823.741|222279.767|113.630 +637817.636|222282.087|113.614 +637811.589|222284.382|113.624 +637805.557|222286.674|113.596 +637799.473|222288.988|113.517 +637793.468|222291.289|113.069 +637781.215|222295.937|113.142 +637762.967|222302.893|112.535 +637756.755|222305.233|112.944 +637750.558|222307.583|112.974 +637744.508|222309.900|112.563 +637738.257|222312.256|112.926 +637725.940|222316.944|112.685 +637719.773|222319.288|112.627 +637713.589|222321.632|112.691 +637701.263|222326.332|112.285 +637682.777|222333.400|111.255 +637676.672|222335.747|110.591 +637670.478|222338.121|110.100 +637657.609|222342.895|112.523 +637651.422|222345.266|112.063 +637594.891|222366.703|112.609 +637582.171|222371.506|113.185 +637569.455|222376.301|113.858 +637550.496|222383.515|113.514 +637537.740|222388.322|114.297 +637531.312|222390.745|114.651 +637518.572|222395.567|115.004 +637512.177|222397.987|115.160 +637505.889|222400.383|114.995 +637499.500|222402.800|115.157 +637493.023|222405.214|116.092 +637486.570|222407.628|116.888 +637480.228|222410.042|116.754 +637473.876|222412.456|116.717 +637467.527|222414.892|116.129 +637461.135|222417.303|116.489 +637454.716|222419.710|117.144 +637448.193|222422.134|118.226 +637441.783|222424.535|118.881 +637428.875|222429.385|120.015 +637422.419|222431.805|120.640 +637409.538|222436.645|121.710 +637403.125|222439.065|122.024 +637396.660|222441.510|122.277 +637390.327|222443.906|122.454 +637383.862|222446.344|122.758 +637377.455|222448.761|123.112 +637371.078|222451.178|123.167 +637364.574|222453.607|124.063 +637358.103|222456.040|124.572 +637351.693|222458.445|125.145 +637332.314|222465.729|126.712 +637319.509|222470.566|127.205 +637313.063|222472.990|127.733 +637306.714|222475.443|126.843 +637300.322|222477.885|126.553 +637293.906|222480.314|126.675 +637287.463|222482.734|127.233 +637261.768|222492.421|128.690 +637255.425|222494.877|127.654 +637249.061|222497.328|126.953 +637242.681|222499.769|126.559 +637236.213|222502.217|126.754 +637244.406|222502.168|126.553 +637250.789|222499.739|126.879 +637257.083|222497.319|127.751 +637263.435|222494.874|128.601 +637289.066|222485.246|127.202 +637295.448|222482.859|126.657 +637301.861|222480.436|126.572 +637308.198|222478.031|126.751 +637320.927|222473.194|127.266 +637333.658|222468.393|126.904 +637352.800|222461.230|125.270 +637359.146|222458.856|124.743 +637372.008|222454.061|123.210 +637378.327|222451.678|123.124 +637384.715|222449.270|122.947 +637397.340|222444.521|122.335 +637403.750|222442.110|122.036 +637410.044|222439.748|121.676 +637416.399|222437.358|121.353 +637422.727|222434.996|120.725 +637429.116|222432.576|120.777 +637435.465|222430.211|120.006 +637448.208|222425.450|118.750 +637454.603|222423.082|117.684 +637461.037|222420.686|116.864 +637467.395|222418.311|116.236 +637473.717|222415.931|115.964 +637479.914|222413.547|116.839 +637486.199|222411.167|116.925 +637492.496|222408.783|116.937 +637498.863|222406.427|115.864 +637505.249|222404.044|115.172 +637517.773|222399.295|115.468 +637536.680|222392.175|114.821 +637543.013|222389.806|114.242 +637549.332|222387.438|113.849 +637555.568|222385.091|113.611 +637561.807|222382.720|113.843 +637568.028|222380.370|113.794 +637574.310|222377.998|113.739 +637580.568|222375.645|113.453 +637586.792|222373.292|113.441 +637642.790|222352.173|112.301 +637654.997|222347.525|113.047 +637661.249|222345.174|112.709 +637667.832|222342.794|110.380 +637674.078|222340.462|109.795 +637680.189|222338.140|110.027 +637686.191|222335.829|110.941 +637692.299|222333.507|111.225 +637716.600|222324.241|112.883 +637722.739|222321.912|113.072 +637765.390|222305.794|112.859 +637771.443|222303.502|112.977 +637777.436|222301.213|113.435 +637783.431|222298.942|113.560 +637789.402|222296.672|113.831 +637795.504|222294.383|113.450 +637801.591|222292.093|113.185 +637807.611|222289.798|113.569 +637813.597|222287.540|113.535 +637819.568|222285.278|113.572 +637825.625|222282.992|113.535 +637831.596|222280.731|113.617 +637837.622|222278.460|113.468 +637843.623|222276.192|113.441 +637849.652|222273.933|113.017 +637855.696|222271.641|113.130 +637861.625|222269.395|113.218 +637867.599|222267.142|113.118 +637873.548|222264.893|113.142 +637879.559|222262.631|112.910 +637885.494|222260.394|112.764 +637891.535|222258.126|112.432 +637897.503|222255.880|112.182 +637903.608|222253.612|111.341 +637915.843|222249.065|109.652 +637956.844|222233.557|109.829 +637968.430|222229.173|109.923 +637979.924|222224.815|110.213 +638003.284|222216.034|109.277 +638009.136|222213.842|108.860 +638038.488|222202.884|106.007 +638050.132|222198.520|105.196 +638055.950|222196.350|104.601 +638061.677|222194.198|104.361 +638067.371|222192.049|104.275 +638073.181|222189.879|103.772 +638078.905|222187.733|103.370 +638084.635|222185.587|102.971 +638090.323|222183.447|102.733 +638095.955|222181.320|102.721 +638101.539|222179.214|102.669 +638107.084|222177.114|102.776 +638112.664|222175.007|102.757 +638118.166|222172.926|102.812 +638123.762|222170.813|102.782 +638129.267|222168.741|102.626 +638135.232|222166.555|101.127 +638141.066|222164.409|99.889 +638147.092|222162.221|98.009 +638168.961|222153.973|97.689 +638168.824|222155.665|97.603 +638146.863|222163.977|98.018 +638140.804|222166.183|100.020 +638134.964|222168.347|101.066 +638128.999|222170.539|102.575 +638123.424|222172.648|102.745 +638117.855|222174.764|102.684 +638112.277|222176.879|102.675 +638106.770|222178.970|102.669 +638101.152|222181.103|102.596 +638095.562|222183.219|102.678 +638089.939|222185.355|102.663 +638084.260|222187.498|102.858 +638078.499|222189.659|103.379 +638072.726|222191.832|103.736 +638066.941|222194.009|104.150 +638061.199|222196.164|104.678 +638055.456|222198.337|104.733 +638049.632|222200.519|105.367 +638043.822|222202.705|105.720 +638026.247|222209.291|107.464 +638014.366|222213.741|108.643 +638008.526|222215.939|109.006 +637985.078|222224.775|110.246 +637979.259|222226.979|110.380 +637961.813|222233.624|109.783 +637950.102|222238.071|109.710 +637926.578|222247.007|109.414 +637914.468|222251.552|110.478 +637908.451|222253.817|110.877 +637902.331|222256.097|111.758 +637896.210|222258.389|112.389 +637890.218|222260.656|112.484 +637884.207|222262.927|112.679 +637878.215|222265.195|112.810 +637872.207|222267.463|113.035 +637866.191|222269.745|113.023 +637860.174|222272.025|113.047 +637854.197|222274.302|112.895 +637848.122|222276.588|113.224 +637842.023|222278.896|113.401 +637836.000|222281.176|113.526 +637829.956|222283.471|113.483 +637823.906|222285.766|113.483 +637817.864|222288.058|113.456 +637811.735|222290.377|113.569 +637805.776|222292.654|113.172 +637799.698|222294.965|113.087 +637787.439|222299.598|113.465 +637769.151|222306.553|113.060 +637756.779|222311.238|113.267 +637732.151|222320.577|113.352 +637707.636|222329.947|112.087 +637695.392|222334.634|111.267 +637683.203|222339.331|109.820 +637677.025|222341.688|109.609 +637664.190|222346.461|111.810 +637657.807|222348.829|112.941 +637582.461|222377.425|113.337 +637557.226|222387.002|113.447 +637550.786|222389.428|113.831 +637544.434|222391.809|114.501 +637538.027|222394.235|114.693 +637525.314|222399.033|115.330 +637518.910|222401.453|115.577 +637499.787|222408.680|116.288 +637493.392|222411.072|117.089 +637486.994|222413.508|116.922 +637480.715|222415.900|116.806 +637474.424|222418.314|116.239 +637467.996|222420.722|116.955 +637461.623|222423.130|117.181 +637455.097|222425.557|118.311 +637448.711|222427.961|118.753 +637442.234|222430.385|119.500 +637435.803|222432.783|120.448 +637429.366|222435.203|120.930 +637422.977|222437.630|120.917 +637416.549|222440.053|121.375 +637410.136|222442.473|121.676 +637403.710|222444.890|122.146 +637397.346|222447.283|122.646 +637390.799|222449.709|123.889 +637384.493|222452.141|123.158 +637378.116|222454.558|123.228 +637371.679|222457.000|123.295 +637365.251|222459.405|124.054 +637358.749|222461.831|124.993 +637352.284|222464.260|125.535 +637332.985|222471.520|126.992 +637326.629|222473.928|127.074 +637320.195|222476.358|127.379 +637313.782|222478.790|127.455 +637307.506|222481.222|126.407 +637301.087|222483.652|126.578 +637294.677|222486.084|126.623 +637288.194|222488.486|127.885 +637262.554|222498.187|128.635 +637256.233|222500.656|127.209 +637249.853|222503.095|126.846 +637261.195|222502.043|127.867 +637280.309|222494.737|129.455 +637293.202|222489.970|127.068 +637299.645|222487.556|126.550 +637306.049|222485.130|126.608 +637312.395|222482.725|126.690 +637325.127|222477.885|127.233 +637331.488|222475.483|127.132 +637337.922|222473.060|126.858 +637344.253|222470.685|126.450 +637350.703|222468.262|126.050 +637357.131|222465.869|125.249 +637363.522|222463.468|124.892 +637370.003|222461.078|123.557 +637376.324|222458.691|123.417 +637382.697|222456.280|123.411 +637388.992|222453.888|123.639 +637395.408|222451.483|123.210 +637401.775|222449.099|122.667 +637408.136|222446.710|122.265 +637414.510|222444.323|121.725 +637420.865|222441.933|121.430 +637427.214|222439.541|121.241 +637433.572|222437.148|120.975 +637439.884|222434.777|120.591 +637446.309|222432.387|119.732 +637452.744|222429.994|118.845 +637465.548|222425.224|117.208 +637471.824|222422.871|116.790 +637478.243|222420.469|116.220 +637484.480|222418.086|116.751 +637490.743|222415.702|117.059 +637497.031|222413.319|117.159 +637503.338|222410.957|116.601 +637509.714|222408.573|116.007 +637522.299|222403.821|115.791 +637528.648|222401.432|115.519 +637534.964|222399.066|115.041 +637547.497|222394.351|114.465 +637553.913|222391.955|113.773 +637560.076|222389.608|114.096 +637585.064|222380.178|113.602 +637591.221|222377.806|114.486 +637597.673|222375.459|112.459 +637622.576|222366.047|112.292 +637628.745|222363.709|112.356 +637653.452|222354.349|112.660 +637659.533|222352.017|113.361 +637672.487|222347.290|109.615 +637678.610|222344.967|109.762 +637684.785|222342.639|109.625 +637690.930|222340.310|109.692 +637709.038|222333.373|111.536 +637715.040|222331.059|112.465 +637721.054|222328.761|112.996 +637769.749|222310.314|113.508 +637775.860|222308.010|113.316 +637781.828|222305.742|113.566 +637787.799|222303.472|113.822 +637793.773|222301.198|114.087 +637799.820|222298.900|114.303 +637806.032|222296.592|113.404 +637812.061|222294.325|113.133 +637818.035|222292.051|113.462 +637824.030|222289.786|113.404 +637830.072|222287.497|113.432 +637836.073|222285.229|113.377 +637842.056|222282.965|113.438 +637848.085|222280.691|113.282 +637854.035|222278.441|113.240 +637860.131|222276.155|112.828 +637866.041|222273.912|113.008 +637871.976|222271.663|113.081 +637877.986|222269.386|113.133 +637883.942|222267.146|112.859 +637889.874|222264.908|112.727 +637895.884|222262.644|112.557 +637901.858|222260.394|112.276 +637907.860|222258.142|111.892 +637913.950|222255.874|111.155 +637931.954|222249.132|109.704 +637961.166|222238.074|109.829 +637972.779|222233.669|110.091 +637978.503|222231.493|110.316 +637984.225|222229.320|110.576 +638037.013|222209.538|106.598 +638042.774|222207.380|106.150 +638054.359|222203.028|105.565 +638071.635|222196.545|104.504 +638077.469|222194.374|103.672 +638083.227|222192.210|103.385 +638088.981|222190.058|102.898 +638094.626|222187.928|102.821 +638100.216|222185.819|102.721 +638105.764|222183.716|102.803 +638111.342|222181.609|102.788 +638116.843|222179.525|102.815 +638122.427|222177.415|102.818 +638127.947|222175.327|102.824 +638133.455|222173.240|102.888 +638139.694|222170.996|100.438 +638145.726|222168.805|98.518 +638167.535|222160.557|98.551 +638163.804|222164.172|98.100 +638152.749|222168.351|98.365 +638147.299|222170.423|98.256 +638141.364|222172.609|99.606 +638135.363|222174.797|101.456 +638129.459|222176.976|102.760 +638123.939|222179.067|102.751 +638118.379|222181.180|102.669 +638112.799|222183.298|102.681 +638107.218|222185.410|102.706 +638101.600|222187.544|102.654 +638096.004|222189.662|102.764 +638090.344|222191.802|102.892 +638084.605|222193.957|103.324 +638078.944|222196.097|103.495 +638073.068|222198.291|104.242 +638061.418|222202.662|105.171 +638055.658|222204.829|105.565 +638044.121|222209.185|105.958 +638026.464|222215.793|107.820 +638020.545|222218.009|108.457 +638008.727|222222.440|109.466 +637996.919|222226.881|110.280 +637979.470|222233.496|110.359 +637961.989|222240.143|109.935 +637956.091|222242.377|109.945 +637950.206|222244.599|110.195 +637944.250|222246.855|110.216 +637932.543|222251.305|110.012 +637926.556|222253.579|109.948 +637920.485|222255.837|110.829 +637914.447|222258.105|111.319 +637908.293|222260.403|112.063 +637902.334|222262.656|112.258 +637896.320|222264.927|112.438 +637890.255|222267.219|112.584 +637884.253|222269.486|112.749 +637878.267|222271.751|112.859 +637872.232|222274.037|112.935 +637866.309|222276.290|112.804 +637860.271|222278.573|112.932 +637854.130|222280.886|113.267 +637848.131|222283.160|113.252 +637842.062|222285.461|113.291 +637835.994|222287.759|113.343 +637829.941|222290.054|113.349 +637823.912|222292.343|113.270 +637817.892|222294.632|113.151 +637811.781|222296.949|113.185 +637805.560|222299.278|113.794 +637787.381|222306.194|113.328 +637781.206|222308.528|113.486 +637775.137|222310.830|113.438 +637768.956|222313.180|113.343 +637762.781|222315.508|113.560 +637744.328|222322.503|113.651 +637731.908|222327.197|114.011 +637719.901|222331.836|112.109 +637713.748|222334.189|111.673 +637707.743|222336.509|110.746 +637701.610|222338.859|110.201 +637695.487|222341.209|109.634 +637689.278|222343.565|109.558 +637683.121|222345.900|109.582 +637676.845|222348.280|109.582 +637670.566|222350.640|110.015 +637663.916|222353.051|112.386 +637657.570|222355.413|113.322 +637651.227|222357.793|113.883 +637645.204|222360.143|112.423 +637632.655|222364.904|112.353 +637620.110|222369.659|112.353 +637582.116|222383.982|114.142 +637556.861|222393.565|114.005 +637550.502|222395.963|114.248 +637544.120|222398.362|114.690 +637537.719|222400.758|115.321 +637531.376|222403.154|115.535 +637524.945|222405.571|115.980 +637505.858|222412.767|116.861 +637499.457|222415.178|117.193 +637493.105|222417.589|117.138 +637486.793|222420.000|116.748 +637480.535|222422.390|116.428 +637474.068|222424.819|116.906 +637467.664|222427.224|117.412 +637461.214|222429.623|118.366 +637454.685|222432.043|119.549 +637448.355|222434.420|120.067 +637441.905|222436.840|120.597 +637435.474|222439.260|120.954 +637429.131|222441.659|121.100 +637422.666|222444.101|121.265 +637416.287|222446.493|121.853 +637409.855|222448.907|122.359 +637403.436|222451.321|122.786 +637397.017|222453.732|123.246 +637390.580|222456.140|123.959 +637384.252|222458.563|123.466 +637377.821|222461.002|123.453 +637358.505|222468.235|125.383 +637352.038|222470.661|125.974 +637345.631|222473.060|126.608 +637339.276|222475.468|126.602 +637326.462|222480.296|127.263 +637319.954|222482.740|127.772 +637313.672|222485.166|126.782 +637300.871|222490.031|126.556 +637294.433|222492.448|127.041 +637296.945|222494.804|126.946 +637303.382|222492.387|126.489 +637309.737|222489.985|126.392 +637316.114|222487.547|126.925 +637328.790|222482.728|127.291 +637335.213|222480.302|127.175 +637341.607|222477.906|126.623 +637354.366|222473.102|126.044 +637373.608|222465.936|123.453 +637379.970|222463.522|123.569 +637386.334|222461.108|123.645 +637392.573|222458.737|123.804 +637398.980|222456.329|123.426 +637405.323|222453.940|123.164 +637411.690|222451.553|122.649 +637418.051|222449.163|122.204 +637424.412|222446.774|121.829 +637430.807|222444.384|121.146 +637437.104|222442.013|120.881 +637443.453|222439.614|120.698 +637449.857|222437.221|120.043 +637456.145|222434.844|119.945 +637462.570|222432.448|119.153 +637468.919|222430.098|117.985 +637475.345|222427.699|117.287 +637481.691|222425.319|116.818 +637487.985|222422.935|116.809 +637494.224|222420.549|117.293 +637500.448|222418.186|117.418 +637506.809|222415.779|117.409 +637513.119|222413.413|116.851 +637525.756|222408.661|116.175 +637538.396|222403.903|115.605 +637544.723|222401.535|115.047 +637551.045|222399.164|114.593 +637557.287|222396.814|114.282 +637563.606|222394.418|114.361 +637569.857|222392.068|114.047 +637582.263|222387.344|114.648 +637588.505|222384.991|114.474 +637594.769|222382.631|114.172 +637601.236|222380.263|112.471 +637644.594|222363.831|112.898 +637650.489|222361.530|114.376 +637656.786|222359.180|113.709 +637663.035|222356.830|113.368 +637669.588|222354.468|110.795 +637675.998|222352.100|109.551 +637682.124|222349.774|109.689 +637694.469|222345.114|109.481 +637700.608|222342.785|109.600 +637706.731|222340.456|109.826 +637712.757|222338.137|110.633 +637718.643|222335.851|111.886 +637724.605|222333.540|113.057 +637736.589|222328.941|114.383 +637748.912|222324.314|113.538 +637754.899|222322.031|113.941 +637767.109|222317.413|113.858 +637773.168|222315.133|113.602 +637779.283|222312.811|113.718 +637785.254|222310.540|113.956 +637803.188|222303.722|114.657 +637809.263|222301.417|114.742 +637815.493|222299.119|113.462 +637821.571|222296.839|112.968 +637827.575|222294.559|113.169 +637833.552|222292.295|113.221 +637839.533|222290.027|113.270 +637845.531|222287.759|113.243 +637851.466|222285.513|113.258 +637857.507|222283.233|113.078 +637863.533|222280.956|112.983 +637869.546|222278.694|112.682 +637875.459|222276.448|112.865 +637881.336|222274.220|112.938 +637887.298|222271.964|112.938 +637893.324|222269.697|112.663 +637899.258|222267.456|112.538 +637905.208|222265.210|112.365 +637911.185|222262.961|112.097 +637917.196|222260.705|111.703 +637923.197|222258.462|111.091 +637941.007|222251.759|110.268 +637946.880|222249.534|110.295 +637970.210|222240.707|110.225 +637975.885|222238.543|110.643 +637981.643|222236.361|110.734 +638010.751|222225.400|109.686 +638034.300|222216.613|107.110 +638040.155|222214.415|106.775 +638057.468|222207.920|105.629 +638068.987|222203.585|105.126 +638074.689|222201.446|104.766 +638080.535|222199.263|104.129 +638086.308|222197.108|103.547 +638092.048|222194.957|103.114 +638097.671|222192.841|102.882 +638103.271|222190.720|102.998 +638108.903|222188.598|102.764 +638114.484|222186.489|102.739 +638120.056|222184.380|102.770 +638125.576|222182.295|102.760 +638131.123|222180.201|102.669 +638137.116|222178.010|101.054 +638143.199|222175.797|99.155 +638148.759|222173.706|98.865 +638154.392|222171.612|98.115 +638159.848|222169.542|98.222 +638165.352|222167.464|98.176 +638170.924|222165.379|97.701 +638174.679|222165.940|97.451 +638163.648|222170.103|98.051 +638158.229|222172.164|98.057 +638152.630|222174.273|98.463 +638146.936|222176.403|99.216 +638141.377|222178.510|99.292 +638135.259|222180.741|101.334 +638129.334|222182.926|102.751 +638123.835|222185.017|102.690 +638118.331|222187.111|102.663 +638112.759|222189.229|102.660 +638107.126|222191.360|102.892 +638101.573|222193.472|102.855 +638095.873|222195.624|103.129 +638090.167|222197.779|103.446 +638072.809|222204.305|104.937 +638067.228|222206.429|104.870 +638061.354|222208.636|105.440 +638055.603|222210.803|105.808 +638032.322|222219.566|107.576 +638026.394|222221.788|108.253 +638008.764|222228.418|109.807 +638002.845|222230.643|110.280 +637985.334|222237.269|110.871 +637979.497|222239.488|110.847 +637967.909|222243.908|110.512 +637962.090|222246.120|110.460 +637944.418|222252.835|110.545 +637926.568|222259.593|111.008 +637920.512|222261.869|111.584 +637914.511|222264.134|111.947 +637908.518|222266.393|112.292 +637902.517|222268.670|112.410 +637896.515|222270.943|112.554 +637890.517|222273.214|112.709 +637884.482|222275.506|112.767 +637878.541|222277.765|112.688 +637872.613|222280.023|112.584 +637866.480|222282.340|112.865 +637860.512|222284.601|112.983 +637854.483|222286.887|113.118 +637848.430|222289.189|113.072 +637842.443|222291.466|113.051 +637836.387|222293.764|113.063 +637830.334|222296.065|113.102 +637824.344|222298.351|112.825 +637818.114|222300.689|113.465 +637811.854|222303.014|114.578 +637805.788|222305.328|114.447 +637799.747|222307.632|114.221 +637781.547|222314.576|113.681 +637757.066|222323.869|113.813 +637750.860|222326.222|113.925 +637744.618|222328.578|114.276 +637738.494|222330.916|113.995 +637720.319|222337.902|112.130 +637714.464|222340.209|110.362 +637708.380|222342.556|109.548 +637702.235|222344.894|109.451 +637695.981|222347.256|109.658 +637689.808|222349.612|109.402 +637683.578|222351.972|109.512 +637677.388|222354.328|109.414 +637671.027|222356.714|109.987 +637657.975|222361.497|113.706 +637651.654|222363.874|114.169 +637645.600|222366.230|112.919 +637633.213|222370.961|112.282 +637608.137|222380.477|112.380 +637601.541|222382.878|114.523 +637588.941|222387.648|114.818 +637576.420|222392.431|114.175 +637557.479|222399.615|114.294 +637551.082|222402.017|114.873 +637544.711|222404.416|115.285 +637531.897|222409.234|116.288 +637525.579|222411.627|116.364 +637519.239|222414.020|116.638 +637512.808|222416.437|117.202 +637506.480|222418.827|117.449 +637500.131|222421.241|117.360 +637493.828|222423.655|116.915 +637487.457|222426.066|117.071 +637481.069|222428.473|117.409 +637474.653|222430.878|118.043 +637468.206|222433.283|118.997 +637461.796|222435.685|119.656 +637455.414|222438.087|120.101 +637448.979|222440.510|120.482 +637442.624|222442.912|120.695 +637436.208|222445.335|120.981 +637429.750|222447.752|121.707 +637423.379|222450.148|122.201 +637410.544|222454.982|123.027 +637404.137|222457.396|123.359 +637397.733|222459.810|123.712 +637391.336|222462.224|124.039 +637385.017|222464.650|123.466 +637378.580|222467.089|123.557 +637365.738|222471.898|124.935 +637359.249|222474.319|125.825 +637346.435|222479.159|126.373 +637327.190|222486.416|127.373 +637320.799|222488.812|128.031 +637314.486|222491.272|126.642 +637308.101|222493.710|126.352 +637301.745|222496.115|126.483 +637295.253|222498.559|126.968 +637288.743|222500.943|128.803 +637301.169|222499.458|126.544 +637307.528|222497.060|126.416 +637313.889|222494.658|126.294 +637320.232|222492.210|127.303 +637332.945|222487.407|127.184 +637339.385|222484.987|126.849 +637352.135|222480.183|126.410 +637371.328|222472.983|125.105 +637384.121|222468.207|123.719 +637390.421|222465.818|123.853 +637396.785|222463.404|123.981 +637403.195|222460.996|123.630 +637409.480|222458.633|123.313 +637415.848|222456.247|122.819 +637422.200|222453.857|122.518 +637428.564|222451.468|122.112 +637434.992|222449.057|121.725 +637441.320|222446.688|121.152 +637447.647|222444.320|120.634 +637454.012|222441.924|120.378 +637460.303|222439.550|120.244 +637466.652|222437.148|120.204 +637479.499|222432.381|118.232 +637492.103|222427.644|117.549 +637498.446|222425.264|117.138 +637504.691|222422.880|117.607 +637510.991|222420.494|117.623 +637517.276|222418.135|117.296 +637536.265|222410.993|116.327 +637542.547|222408.625|116.117 +637548.881|222406.257|115.550 +637555.233|222403.885|114.861 +637561.484|222401.538|114.501 +637567.821|222399.142|114.465 +637586.371|222392.092|115.114 +637592.684|222389.715|114.870 +637598.783|222387.386|115.297 +637611.432|222382.665|113.950 +637617.882|222380.294|112.468 +637648.578|222368.595|114.245 +637654.787|222366.255|114.114 +637667.433|222361.561|112.142 +637674.053|222359.177|109.558 +637680.180|222356.851|109.689 +637692.616|222352.167|109.289 +637698.678|222349.862|109.487 +637716.963|222342.888|110.694 +637728.677|222338.307|113.913 +637734.693|222336.006|114.419 +637759.114|222326.786|114.038 +637765.192|222324.488|113.980 +637771.276|222322.174|114.236 +637789.426|222315.304|114.325 +637795.437|222313.027|114.386 +637807.337|222308.489|115.166 +637819.614|222303.892|114.133 +637825.820|222301.582|113.331 +637831.900|222299.302|112.871 +637837.862|222297.040|112.996 +637843.836|222294.776|113.090 +637849.829|222292.508|113.102 +637855.772|222290.262|113.090 +637861.771|222287.991|113.115 +637867.751|222285.735|112.956 +637873.737|222283.477|112.798 +637879.806|222281.194|112.557 +637885.667|222278.969|112.718 +637891.629|222276.713|112.727 +637897.588|222274.455|112.776 +637903.562|222272.208|112.478 +637909.451|222269.989|112.313 +637915.455|222267.722|112.206 +637921.381|222265.494|111.920 +637927.334|222263.259|111.527 +637933.326|222261.019|110.996 +637956.866|222252.128|110.649 +637962.696|222249.924|110.646 +637980.024|222243.347|111.127 +637991.619|222238.964|110.999 +638003.284|222234.575|110.411 +638014.912|222230.201|109.804 +638032.560|222223.605|108.003 +638038.494|222221.389|107.342 +638050.055|222217.052|106.519 +638067.371|222210.550|105.409 +638073.098|222208.392|105.171 +638090.152|222201.967|104.565 +638101.609|222197.678|103.553 +638107.382|222195.517|103.026 +638112.927|222193.426|102.885 +638118.565|222191.302|102.648 +638124.098|222189.199|102.809 +638129.709|222187.093|102.483 +638135.485|222184.947|101.596 +638141.624|222182.722|99.478 +638147.153|222180.640|99.274 +638152.709|222178.549|98.993 +638163.746|222174.392|98.518 +638169.394|222172.279|97.981 +638174.905|222170.207|97.710 +638175.149|222171.615|97.695 +638169.644|222173.691|97.942 +638164.075|222175.782|98.435 +638158.497|222177.882|98.749 +638152.968|222179.973|98.914 +638147.418|222182.067|99.167 +638141.874|222184.161|99.417 +638135.793|222186.376|101.337 +638130.029|222188.525|102.175 +638124.363|222190.662|102.465 +638118.794|222192.765|102.663 +638113.125|222194.902|102.995 +638107.410|222197.057|103.285 +638101.704|222199.196|103.800 +638073.226|222209.944|105.059 +638067.499|222212.105|105.296 +638055.883|222216.460|106.442 +638044.368|222220.810|106.799 +638038.433|222223.032|107.442 +638032.569|222225.226|108.079 +637991.378|222240.716|111.051 +637985.553|222242.920|111.219 +637979.805|222245.105|111.091 +637973.956|222247.337|110.865 +637968.125|222249.549|110.850 +637956.433|222253.990|110.734 +637950.511|222256.231|110.880 +637938.776|222260.687|110.780 +637932.725|222262.961|111.274 +637926.672|222265.231|111.813 +637920.701|222267.487|112.005 +637914.739|222269.742|112.188 +637908.789|222271.992|112.340 +637902.776|222274.266|112.502 +637896.802|222276.530|112.517 +637890.803|222278.801|112.670 +637884.869|222281.057|112.542 +637878.821|222283.346|112.673 +637872.744|222285.638|112.950 +637866.785|222287.896|112.993 +637860.710|222290.201|113.023 +637854.706|222292.478|113.020 +637848.686|222294.757|113.127 +637842.660|222297.053|112.971 +637836.634|222299.345|112.843 +637830.544|222301.646|113.029 +637824.314|222303.965|113.941 +637818.111|222306.297|114.434 +637799.878|222313.225|114.187 +637775.406|222322.503|114.331 +637769.316|222324.823|114.111 +637763.192|222327.149|114.078 +637738.531|222336.491|114.389 +637732.301|222338.856|114.370 +637726.214|222341.172|114.267 +637714.561|222345.796|110.033 +637708.340|222348.177|109.634 +637702.183|222350.515|109.597 +637696.020|222352.871|109.274 +637689.793|222355.233|109.326 +637683.481|222357.620|109.561 +637677.266|222359.979|109.588 +637670.841|222362.371|110.554 +637664.278|222364.758|112.825 +637657.798|222367.151|114.248 +637651.425|222369.534|115.038 +637645.585|222371.875|112.417 +637639.358|222374.243|112.285 +637633.009|222376.642|112.575 +637626.751|222379.013|112.706 +637620.247|222381.415|114.084 +637594.964|222390.974|115.041 +637588.606|222393.382|115.163 +637563.438|222402.949|114.873 +637557.034|222405.376|114.992 +637550.701|222407.753|115.559 +637544.272|222410.176|115.940 +637531.501|222414.995|116.574 +637518.767|222419.784|117.574 +637512.384|222422.201|117.741 +637506.023|222424.615|117.726 +637499.723|222427.032|117.223 +637493.310|222429.443|117.741 +637486.903|222431.854|118.211 +637480.493|222434.262|118.759 +637474.049|222436.666|119.656 +637467.667|222439.071|120.030 +637461.257|222441.501|120.094 +637454.896|222443.906|120.329 +637448.446|222446.329|120.847 +637442.051|222448.727|121.484 +637435.614|222451.151|121.978 +637429.201|222453.571|122.256 +637422.779|222455.991|122.646 +637409.947|222460.828|123.426 +637403.540|222463.245|123.752 +637397.075|222465.684|124.097 +637390.784|222468.082|123.880 +637384.362|222470.524|123.789 +637352.199|222482.603|126.614 +637345.756|222485.032|126.980 +637332.911|222489.897|127.245 +637320.168|222494.746|126.992 +637313.809|222497.197|126.221 +637307.393|222499.626|126.312 +637300.956|222502.049|126.815 +637304.815|222503.765|126.398 +637311.231|222501.345|126.309 +637317.583|222498.946|126.282 +637323.837|222496.514|127.715 +637336.636|222491.701|127.187 +637342.942|222489.327|127.001 +637349.361|222486.901|126.953 +637387.666|222472.566|123.920 +637393.960|222470.176|124.112 +637400.278|222467.790|124.060 +637406.621|222465.409|123.722 +637412.967|222463.023|123.435 +637419.338|222460.642|122.874 +637425.659|222458.252|122.871 +637432.020|222455.866|122.490 +637444.700|222451.111|121.667 +637451.086|222448.721|121.143 +637457.422|222446.356|120.539 +637463.811|222443.963|120.058 +637470.108|222441.589|119.890 +637476.405|222439.215|119.762 +637482.742|222436.840|119.308 +637489.158|222434.445|118.720 +637495.501|222432.067|118.260 +637501.795|222429.711|117.735 +637508.135|222427.309|117.918 +637514.368|222424.950|117.970 +637520.675|222422.566|117.943 +637527.018|222420.207|117.144 +637533.324|222417.845|116.693 +637552.258|222410.725|115.873 +637558.570|222408.357|115.486 +637589.770|222396.576|115.285 +637595.982|222394.226|115.330 +637602.236|222391.873|115.117 +637608.506|222389.496|115.233 +637614.712|222387.164|114.953 +637621.042|222384.802|114.279 +637633.484|222380.108|114.087 +637651.928|222373.088|115.172 +637658.210|222370.741|114.572 +637664.586|222368.403|113.020 +637671.127|222366.029|110.899 +637677.549|222363.664|109.573 +637683.703|222361.341|109.533 +637689.940|222358.988|109.402 +637696.121|222356.659|109.256 +637702.260|222354.334|109.366 +637708.374|222352.011|109.667 +637714.473|222349.689|110.048 +637720.307|222347.393|111.975 +637726.049|222345.126|114.032 +637732.097|222342.824|114.386 +637738.260|222340.493|114.437 +637744.139|222338.213|115.730 +637774.787|222326.682|114.550 +637780.874|222324.387|114.486 +637786.897|222322.098|114.770 +637799.003|222317.523|114.751 +637805.029|222315.246|114.751 +637816.977|222310.705|115.340 +637823.186|222308.397|114.483 +637829.346|222306.096|113.910 +637835.485|222303.810|113.148 +637841.575|222301.530|112.670 +637847.543|222299.268|112.801 +637853.587|222296.982|112.883 +637859.509|222294.739|112.956 +637865.529|222292.468|112.901 +637871.521|222290.201|112.987 +637877.514|222287.942|112.791 +637883.436|222285.711|112.657 +637889.514|222283.425|112.414 +637895.390|222281.200|112.532 +637901.355|222278.944|112.548 +637907.262|222276.713|112.563 +637913.230|222274.470|112.331 +637919.183|222272.227|112.173 +637925.142|222269.980|112.017 +637931.067|222267.755|111.752 +637937.005|222265.524|111.469 +637942.958|222263.290|111.133 +637966.351|222254.445|111.216 +637989.598|222245.666|111.142 +637995.319|222243.502|111.146 +638012.915|222236.903|110.060 +638053.771|222221.624|106.689 +638071.257|222215.086|105.220 +638076.908|222212.958|105.031 +638088.238|222208.685|104.854 +638094.038|222206.524|104.178 +638099.671|222204.399|104.135 +638116.694|222198.011|103.199 +638122.351|222195.898|102.675 +638128.063|222193.771|101.983 +638133.729|222191.656|101.474 +638139.758|222189.458|99.719 +638145.373|222187.349|99.429 +638150.950|222185.261|99.072 +638156.528|222183.167|98.725 +638162.082|222181.082|98.487 +638167.638|222178.994|98.256 +638173.109|222176.934|98.100 +638178.632|222174.861|97.795 +638181.107|222175.224|97.792 +638175.609|222177.299|98.015 +638170.013|222179.409|98.362 +638164.557|222181.475|98.478 +638159.003|222183.569|98.716 +638153.395|222185.691|98.938 +638147.820|222187.788|99.283 +638142.215|222189.906|99.536 +638136.314|222192.085|100.837 +638130.477|222194.249|101.944 +638124.707|222196.407|102.605 +638118.977|222198.544|103.385 +638107.586|222202.839|104.068 +638096.196|222207.136|104.589 +638084.839|222211.425|105.080 +638079.173|222213.577|105.056 +638073.409|222215.747|105.421 +638056.048|222222.279|106.662 +638044.456|222226.647|107.345 +638020.926|222235.474|109.567 +638015.009|222237.699|109.996 +637991.515|222246.556|111.277 +637985.651|222248.778|111.353 +637968.174|222255.417|111.231 +637950.477|222262.125|111.377 +637944.622|222264.354|111.292 +637938.700|222266.591|111.496 +637932.710|222268.852|111.740 +637926.724|222271.114|112.005 +637920.771|222273.367|112.124 +637914.818|222275.616|112.279 +637908.817|222277.890|112.392 +637902.809|222280.164|112.548 +637896.863|222282.425|112.453 +637890.919|222284.684|112.368 +637884.893|222286.958|112.660 +637878.861|222289.244|112.737 +637872.881|222291.505|112.862 +637860.808|222296.089|112.852 +637854.812|222298.366|112.816 +637848.811|222300.643|112.843 +637842.791|222302.935|112.673 +637836.582|222305.255|113.438 +637830.395|222307.571|114.123 +637824.219|222309.885|114.794 +637818.044|222312.210|115.178 +637793.703|222321.449|115.111 +637787.643|222323.753|115.010 +637781.587|222326.073|114.587 +637750.634|222337.753|116.001 +637744.478|222340.093|115.903 +637738.546|222342.407|114.578 +637732.368|222344.748|114.632 +637720.435|222349.381|112.353 +637714.577|222351.703|110.234 +637708.481|222354.053|109.481 +637702.372|222356.385|109.183 +637696.148|222358.744|109.210 +637689.909|222361.106|109.366 +637683.673|222363.466|109.518 +637664.382|222370.622|113.014 +637657.838|222373.021|114.852 +637651.614|222375.371|115.105 +637645.445|222377.752|114.218 +637632.756|222382.503|115.614 +637626.541|222384.869|115.501 +637620.351|222387.249|114.809 +637614.017|222389.639|115.117 +637607.732|222392.022|115.105 +637601.416|222394.409|115.340 +637595.128|222396.792|115.401 +637588.795|222399.197|115.382 +637576.179|222403.980|115.440 +637569.985|222406.357|114.907 +637563.606|222408.759|115.306 +637557.217|222411.161|115.797 +637550.859|222413.560|116.111 +637544.446|222415.955|116.851 +637538.143|222418.351|116.784 +637531.748|222420.771|116.979 +637525.338|222423.164|117.824 +637519.017|222425.553|117.976 +637512.649|222427.967|118.040 +637506.355|222430.382|117.470 +637499.896|222432.792|118.354 +637493.523|222435.176|119.083 +637487.147|222437.584|119.326 +637480.764|222439.992|119.653 +637474.406|222442.400|119.796 +637467.990|222444.826|119.902 +637461.650|222447.207|120.515 +637455.191|222449.630|121.106 +637448.803|222452.025|121.658 +637442.374|222454.449|122.064 +637435.946|222456.869|122.478 +637423.202|222461.685|122.880 +637416.771|222464.099|123.414 +637410.419|222466.491|123.804 +637403.966|222468.930|124.026 +637397.560|222471.344|124.404 +637365.437|222483.432|126.559 +637346.274|222490.683|127.020 +637339.919|222493.094|127.056 +637333.490|222495.520|127.300 +637320.786|222500.382|126.447 +637314.392|222502.817|126.270 +637320.283|222503.768|126.312 +637339.404|222496.502|127.166 +637345.704|222494.121|127.108 +637352.053|222491.717|127.205 +637390.357|222477.379|124.133 +637396.648|222474.989|124.380 +637403.031|222472.581|124.285 +637409.368|222470.198|124.020 +637415.710|222467.811|123.749 +637422.087|222465.431|123.146 +637428.351|222463.062|123.106 +637434.706|222460.676|122.804 +637447.370|222455.921|122.085 +637453.747|222453.531|121.652 +637460.074|222451.163|121.146 +637466.466|222448.770|120.646 +637472.806|222446.399|120.076 +637479.121|222444.024|119.762 +637485.431|222441.650|119.573 +637491.749|222439.273|119.296 +637498.046|222436.895|119.256 +637504.368|222434.542|118.476 +637510.781|222432.162|117.491 +637516.935|222429.802|118.229 +637523.244|222427.419|118.165 +637529.496|222425.060|118.077 +637535.826|222422.701|117.394 +637542.157|222420.317|117.208 +637554.693|222415.611|116.486 +637567.337|222410.877|115.550 +637592.153|222401.496|115.629 +637598.374|222399.146|115.586 +637604.583|222396.799|115.660 +637610.835|222394.446|115.443 +637617.007|222392.117|115.358 +637623.255|222389.761|115.209 +637629.424|222387.429|115.218 +637635.588|222385.097|115.260 +637641.766|222382.766|115.242 +637647.993|222380.409|115.330 +637654.150|222378.093|115.087 +637666.912|222373.384|112.621 +637673.493|222371.006|110.228 +637679.726|222368.678|109.655 +637685.837|222366.361|109.865 +637692.021|222364.033|109.643 +637698.212|222361.704|109.393 +637704.375|222359.378|109.347 +637710.489|222357.056|109.615 +637716.366|222354.757|111.267 +637722.123|222352.490|113.240 +637734.026|222347.915|114.959 +637740.180|222345.586|115.029 +637746.002|222343.327|116.266 +637752.149|222341.014|116.065 +637758.203|222338.728|116.056 +637788.655|222327.252|115.343 +637806.776|222320.406|115.306 +637830.907|222311.305|114.959 +637837.033|222309.025|114.236 +637843.257|222306.712|113.364 +637849.399|222304.426|112.636 +637855.303|222302.188|112.761 +637861.305|222299.921|112.752 +637867.291|222297.656|112.828 +637873.237|222295.410|112.816 +637879.181|222293.163|112.831 +637885.152|222290.911|112.731 +637891.123|222288.658|112.657 +637897.091|222286.418|112.346 +637903.050|222284.166|112.368 +637908.927|222281.938|112.493 +637914.867|222279.700|112.365 +637920.735|222277.487|112.289 +637926.684|222275.244|112.151 +637932.585|222273.022|111.969 +637938.498|222270.800|111.758 +637944.402|222268.575|111.615 +637950.312|222266.350|111.450 +637956.079|222264.162|111.655 +637967.744|222259.757|111.548 +637991.012|222250.982|111.319 +638020.191|222240.043|109.673 +638026.031|222237.854|109.301 +638078.289|222218.310|105.321 +638083.934|222216.186|105.162 +638095.340|222211.913|104.464 +638129.294|222199.190|102.410 +638134.970|222197.075|101.855 +638141.041|222194.871|99.929 +638146.638|222192.780|99.469 +638152.212|222190.692|99.100 +638157.769|222188.608|98.813 +638163.313|222186.526|98.585 +638168.809|222184.462|98.316 +638174.347|222182.380|98.155 +638179.763|222180.344|97.960 +638185.234|222178.287|97.835 +638183.342|222180.719|97.905 +638177.877|222182.786|98.018 +638172.411|222184.849|98.146 +638166.864|222186.943|98.353 +638161.308|222189.037|98.600 +638155.760|222191.131|98.844 +638150.121|222193.253|99.185 +638144.541|222195.359|99.353 +638132.684|222199.724|102.184 +638126.929|222201.876|102.800 +638109.827|222208.292|104.202 +638098.519|222212.568|104.434 +638092.801|222214.720|104.821 +638087.168|222216.850|104.903 +638081.416|222219.014|105.202 +638069.989|222223.330|105.589 +638058.309|222227.701|106.756 +638046.648|222232.078|107.713 +638040.786|222234.282|108.091 +638034.910|222236.489|108.552 +638029.100|222238.668|109.027 +638011.343|222245.325|110.618 +637964.470|222263.043|111.688 +637958.667|222265.247|111.603 +637952.793|222267.487|111.298 +637946.871|222269.724|111.496 +637940.964|222271.955|111.642 +637934.978|222274.214|111.880 +637929.025|222276.463|111.990 +637923.054|222278.719|112.209 +637917.132|222280.962|112.231 +637911.130|222283.230|112.334 +637905.196|222285.488|112.176 +637899.274|222287.729|112.255 +637893.187|222290.024|112.523 +637887.210|222292.285|112.599 +637881.174|222294.568|112.688 +637875.228|222296.824|112.676 +637869.214|222299.104|112.697 +637863.222|222301.378|112.630 +637857.235|222303.648|112.557 +637851.164|222305.947|112.621 +637844.949|222308.269|113.389 +637838.701|222310.592|114.352 +637826.469|222315.194|115.077 +637795.971|222326.743|115.337 +637789.875|222329.047|115.419 +637752.933|222343.020|116.083 +637746.815|222345.336|116.123 +637740.777|222347.662|115.382 +637734.672|222349.993|115.038 +637722.587|222354.660|113.313 +637716.768|222356.961|111.331 +637710.831|222359.290|109.667 +637704.719|222361.622|109.378 +637698.477|222363.984|109.524 +637692.262|222366.340|109.536 +637685.931|222368.708|110.274 +637679.765|222371.076|109.652 +637673.474|222373.439|110.198 +637666.759|222375.853|113.072 +637653.994|222380.598|115.169 +637647.703|222382.970|115.486 +637641.491|222385.335|115.312 +637635.197|222387.725|115.282 +637628.961|222390.090|115.312 +637622.661|222392.477|115.376 +637616.419|222394.842|115.486 +637610.039|222397.250|115.715 +637603.824|222399.609|115.681 +637597.463|222402.017|115.846 +637591.184|222404.397|115.867 +637572.320|222411.554|115.849 +637565.919|222413.977|115.961 +637559.610|222416.355|116.352 +637546.860|222421.149|117.260 +637540.447|222423.566|117.580 +637534.101|222425.959|117.900 +637527.752|222428.352|118.278 +637521.394|222430.766|118.220 +637515.136|222433.155|117.876 +637508.745|222435.566|118.159 +637502.289|222437.977|119.049 +637495.952|222440.361|119.464 +637489.530|222442.793|119.579 +637483.245|222445.177|119.582 +637476.792|222447.603|120.021 +637470.404|222450.005|120.485 +637464.009|222452.406|121.049 +637457.569|222454.830|121.484 +637451.198|222457.228|121.859 +637444.758|222459.648|122.380 +637438.330|222462.066|122.804 +637419.167|222469.295|123.682 +637412.757|222471.712|124.045 +637406.362|222474.126|124.273 +637399.967|222476.541|124.566 +637393.634|222478.961|124.130 +637387.215|222481.402|124.045 +637380.826|222483.780|125.057 +637367.878|222488.632|126.358 +637348.697|222495.874|127.062 +637342.284|222498.306|127.065 +637335.865|222500.739|127.193 +637329.482|222503.137|127.669 +637342.665|222501.376|127.044 +637349.078|222498.949|127.081 +637355.461|222496.554|126.712 +637361.825|222494.149|126.651 +637368.207|222491.750|126.386 +637374.572|222489.345|126.355 +637393.780|222482.179|124.310 +637400.120|222479.762|124.688 +637406.454|222477.379|124.456 +637412.854|222474.974|124.179 +637419.197|222472.587|123.889 +637431.889|222467.814|123.374 +637438.247|222465.427|123.036 +637450.933|222460.673|122.112 +637457.230|222458.304|121.859 +637463.622|222455.912|121.323 +637470.008|222453.519|120.887 +637476.338|222451.148|120.411 +637482.730|222448.752|119.960 +637489.061|222446.377|119.567 +637495.361|222444.000|119.464 +637501.682|222441.623|119.226 +637508.038|222439.245|118.702 +637514.374|222436.865|118.369 +637520.620|222434.505|118.314 +637526.911|222432.122|118.409 +637533.150|222429.763|118.449 +637539.511|222427.379|118.028 +637545.781|222425.020|117.879 +637558.397|222420.293|117.050 +637571.015|222415.559|116.324 +637577.276|222413.212|115.894 +637589.715|222408.500|116.217 +637595.991|222406.129|116.208 +637602.160|222403.803|116.114 +637608.399|222401.453|115.986 +637614.639|222399.103|115.864 +637620.869|222396.750|115.833 +637627.010|222394.439|115.599 +637633.314|222392.062|115.532 +637639.437|222389.752|115.468 +637645.658|222387.395|115.571 +637651.766|222385.088|115.650 +637658.103|222382.720|115.068 +637671.024|222378.014|111.261 +637677.388|222375.676|109.862 +637683.648|222373.326|109.527 +637695.959|222368.678|109.460 +637702.116|222366.352|109.442 +637708.240|222364.029|109.658 +637714.177|222361.728|110.966 +637719.972|222359.457|112.758 +637725.863|222357.159|114.306 +637731.783|222354.876|115.361 +637737.943|222352.563|115.047 +637743.847|222350.280|116.184 +637749.970|222347.973|116.111 +637756.011|222345.687|116.166 +637762.098|222343.379|116.333 +637768.200|222341.087|116.099 +637774.260|222338.795|116.114 +637804.602|222327.359|115.608 +637810.607|222325.085|115.708 +637822.756|222320.519|115.263 +637834.717|222315.990|115.519 +637840.782|222313.716|115.111 +637846.955|222311.427|114.200 +637853.154|222309.132|113.206 +637859.311|222306.840|112.435 +637865.227|222304.602|112.542 +637871.226|222302.335|112.581 +637877.166|222300.088|112.602 +637883.119|222297.842|112.596 +637889.069|222295.593|112.630 +637894.988|222293.361|112.514 +637900.977|222291.106|112.407 +637906.955|222288.863|112.081 +637912.855|222286.631|112.121 +637918.735|222284.403|112.270 +637924.676|222282.166|112.167 +637930.610|222279.926|112.112 +637936.511|222277.707|111.953 +637942.427|222275.482|111.746 +637948.343|222273.254|111.560 +637954.211|222271.050|111.322 +637960.124|222268.822|111.194 +637965.866|222266.640|111.533 +637971.609|222264.454|111.877 +637983.231|222260.056|112.048 +638047.510|222235.989|107.610 +638053.402|222233.785|107.140 +638076.539|222225.132|105.363 +638082.248|222222.983|105.196 +638087.954|222220.846|104.827 +638093.694|222218.691|104.577 +638104.831|222214.482|104.684 +638127.636|222205.951|102.977 +638150.463|222197.450|100.377 +638156.397|222195.283|98.768 +638161.881|222193.213|98.743 +638167.468|222191.122|98.384 +638172.930|222189.068|98.249 +638178.407|222187.007|98.060 +638183.887|222184.947|97.896 +638189.913|222184.950|97.548 +638184.442|222187.007|97.896 +638178.989|222189.071|97.984 +638173.472|222191.156|98.079 +638167.916|222193.250|98.335 +638162.536|222195.295|98.216 +638156.550|222197.480|99.987 +638145.074|222201.754|101.663 +638139.447|222203.869|102.044 +638133.784|222205.990|102.559 +638128.078|222208.130|103.023 +638099.717|222218.807|104.568 +638076.978|222227.406|105.056 +638053.658|222236.138|107.314 +638047.779|222238.345|107.765 +638041.951|222240.530|108.280 +638036.047|222242.740|108.872 +638024.370|222247.132|109.600 +638006.734|222253.759|110.841 +638000.833|222255.972|111.301 +637994.920|222258.200|111.578 +637971.557|222267.048|111.700 +637965.842|222269.236|111.252 +637959.953|222271.480|111.014 +637953.997|222273.720|111.344 +637948.066|222275.957|111.594 +637942.101|222278.210|111.737 +637936.139|222280.462|111.889 +637930.168|222282.718|112.097 +637924.252|222284.958|112.087 +637918.278|222287.223|112.069 +637912.407|222289.457|111.908 +637906.375|222291.731|112.191 +637900.307|222294.020|112.368 +637894.394|222296.257|112.444 +637888.359|222298.540|112.523 +637882.348|222300.820|112.514 +637876.398|222303.072|112.523 +637870.348|222305.371|112.444 +637864.377|222307.641|112.292 +637858.278|222309.930|112.779 +637851.987|222312.259|113.910 +637845.720|222314.588|114.977 +637839.527|222316.901|115.699 +637827.438|222321.476|115.788 +637815.277|222326.091|115.672 +637809.181|222328.398|115.739 +637803.078|222330.706|115.839 +637797.007|222333.007|115.815 +637790.868|222335.332|115.821 +637784.748|222337.640|116.092 +637778.536|222339.990|116.220 +637772.464|222342.288|116.266 +637766.301|222344.629|116.169 +637760.187|222346.945|116.166 +637753.939|222349.311|116.224 +637747.818|222351.627|116.294 +637741.743|222353.950|115.760 +637735.608|222356.281|115.583 +637729.533|222358.607|115.084 +637723.519|222360.939|113.880 +637717.558|222363.267|112.371 +637711.696|222365.569|110.618 +637705.661|222367.903|109.515 +637699.455|222370.257|109.463 +637693.222|222372.613|109.579 +637686.953|222374.987|109.564 +637680.713|222377.340|109.753 +637674.389|222379.699|110.515 +637667.866|222382.095|112.191 +637654.787|222386.874|115.900 +637648.542|222389.240|115.922 +637642.266|222391.623|115.769 +637636.087|222393.961|115.809 +637629.772|222396.344|115.958 +637623.472|222398.728|116.013 +637617.174|222401.108|116.083 +637610.877|222403.489|116.175 +637604.586|222405.869|116.251 +637598.283|222408.247|116.437 +637591.992|222410.624|116.565 +637585.701|222413.020|116.272 +637579.413|222415.394|116.409 +637566.715|222420.186|116.769 +637553.959|222424.974|117.687 +637547.579|222427.364|118.223 +637541.194|222429.778|118.333 +637534.863|222432.168|118.528 +637528.502|222434.579|118.479 +637522.223|222436.965|118.302 +637515.807|222439.370|118.784 +637509.412|222441.778|119.110 +637503.094|222444.162|119.317 +637496.669|222446.588|119.439 +637490.286|222448.990|119.744 +637483.907|222451.391|120.052 +637477.509|222453.793|120.552 +637471.120|222456.189|121.021 +637464.753|222458.588|121.317 +637458.288|222461.005|122.012 +637439.128|222468.204|123.173 +637432.700|222470.618|123.648 +637419.901|222475.443|124.069 +637413.501|222477.857|124.346 +637407.103|222480.265|124.621 +637400.714|222482.676|124.807 +637394.316|222485.118|124.426 +637387.882|222487.516|125.221 +637375.004|222492.341|126.325 +637368.646|222494.752|126.294 +637349.413|222502.010|126.840 +637342.994|222504.436|126.949 +637352.742|222504.104|127.114 +637359.124|222501.708|126.724 +637371.804|222496.929|126.413 +637378.199|222494.530|126.005 +637384.593|222492.131|125.614 +637397.294|222487.379|124.532 +637403.567|222484.987|124.983 +637409.962|222482.582|124.700 +637416.299|222480.198|124.456 +637422.587|222477.836|124.087 +637428.988|222475.428|123.853 +637441.631|222470.676|123.222 +637454.301|222465.924|122.402 +637460.672|222463.532|122.012 +637466.996|222461.163|121.524 +637473.321|222458.795|121.042 +637479.661|222456.424|120.482 +637486.058|222454.028|119.960 +637492.371|222451.654|119.729 +637498.610|222449.300|119.601 +637504.996|222446.902|119.305 +637511.238|222444.546|119.208 +637517.544|222442.165|119.122 +637523.890|222439.785|118.702 +637530.139|222437.425|118.659 +637536.439|222435.042|118.680 +637542.687|222432.683|118.680 +637548.985|222430.321|118.275 +637555.202|222427.958|118.561 +637580.446|222418.510|116.534 +637586.679|222416.163|116.339 +637592.836|222413.819|116.736 +637599.072|222411.469|116.559 +637605.315|222409.119|116.367 +637611.533|222406.769|116.367 +637617.763|222404.419|116.330 +637623.935|222402.087|116.251 +637630.174|222399.734|116.190 +637636.285|222397.423|116.156 +637642.531|222395.067|116.086 +637648.700|222392.733|116.138 +637654.878|222390.398|116.138 +637680.558|222380.979|109.957 +637686.754|222378.651|109.637 +637692.972|222376.304|109.591 +637699.105|222373.981|109.695 +637705.268|222371.656|109.652 +637711.269|222369.345|110.566 +637717.152|222367.047|112.197 +637722.998|222364.770|113.660 +637728.887|222362.472|115.233 +637734.940|222360.171|115.498 +637741.024|222357.866|115.614 +637746.931|222355.583|116.733 +637753.076|222353.285|116.181 +637759.230|222350.957|116.300 +637765.280|222348.668|116.327 +637771.349|222346.378|116.275 +637777.405|222344.086|116.303 +637789.689|222339.481|115.529 +637795.629|222337.219|115.891 +637801.695|222334.924|115.949 +637807.611|222332.662|116.486 +637813.670|222330.398|115.974 +637825.743|222325.838|115.900 +637843.742|222319.038|115.855 +637849.887|222316.740|115.379 +637856.031|222314.466|114.331 +637862.286|222312.158|113.081 +637868.440|222309.866|112.359 +637874.377|222307.623|112.392 +637880.309|222305.377|112.453 +637886.323|222303.103|112.453 +637892.214|222300.878|112.462 +637898.170|222298.625|112.471 +637904.156|222296.370|112.374 +637910.079|222294.136|112.285 +637916.059|222291.889|111.972 +637921.990|222289.652|111.886 +637927.800|222287.448|112.090 +637933.734|222285.208|112.029 +637939.614|222282.989|111.956 +637945.515|222280.767|111.813 +637951.434|222278.539|111.609 +637957.356|222276.311|111.423 +637963.224|222274.101|111.207 +637969.091|222271.894|111.021 +637974.828|222269.709|111.389 +637980.536|222267.530|111.898 +637997.998|222260.955|111.335 +638015.521|222254.374|110.463 +638050.683|222241.219|107.585 +638056.383|222239.076|107.351 +638062.208|222236.897|106.912 +638085.394|222228.223|105.037 +638102.316|222221.846|104.684 +638107.870|222219.737|104.925 +638113.576|222217.594|104.626 +638119.230|222215.473|104.294 +638130.636|222211.218|103.111 +638142.008|222206.966|102.145 +638164.602|222198.535|99.837 +638170.382|222196.398|98.807 +638176.002|222194.307|98.131 +638181.531|222192.223|97.999 +638186.978|222190.168|97.948 +638192.431|222188.120|97.658 +638189.669|222191.083|97.862 +638184.235|222193.146|97.887 +638178.776|222195.213|98.003 +638173.100|222197.337|98.649 +638161.533|222201.620|101.002 +638155.934|222203.732|101.233 +638144.720|222207.950|102.032 +638133.357|222212.220|102.986 +638127.697|222214.342|103.529 +638121.970|222216.491|104.114 +638110.607|222220.773|104.766 +638104.962|222222.910|104.867 +638099.409|222225.028|104.653 +638093.675|222227.183|105.117 +638088.046|222229.314|105.229 +638076.631|222233.630|105.583 +638064.939|222238.010|106.827 +638059.169|222240.189|107.067 +638053.408|222242.353|107.549 +638035.800|222248.961|109.137 +638029.969|222251.159|109.481 +638024.147|222253.341|110.057 +638018.237|222255.563|110.509 +638006.493|222259.989|111.164 +637994.758|222264.424|111.609 +637983.133|222268.831|111.703 +637977.421|222271.020|111.210 +637971.627|222273.239|110.829 +637965.674|222275.485|111.112 +637959.798|222277.701|111.368 +637953.815|222279.962|111.569 +637947.920|222282.197|111.667 +637942.016|222284.428|111.840 +637936.087|222286.677|111.862 +637930.156|222288.927|111.901 +637924.276|222291.164|111.755 +637918.266|222293.438|111.914 +637912.215|222295.718|112.267 +637906.302|222297.958|112.316 +637900.334|222300.223|112.356 +637894.378|222302.481|112.350 +637888.395|222304.746|112.493 +637882.369|222307.044|112.267 +637876.435|222309.296|112.225 +637870.382|222311.582|112.456 +637864.179|222313.893|113.435 +637857.940|222316.203|114.608 +637851.652|222318.538|115.757 +637845.476|222320.851|116.403 +637827.432|222327.712|116.102 +637821.336|222330.023|116.132 +637815.335|222332.306|116.031 +637803.115|222336.942|116.013 +637797.007|222339.252|116.178 +637784.784|222343.885|116.309 +637778.673|222346.208|116.248 +637772.470|222348.555|116.352 +637766.353|222350.877|116.355 +637760.242|222353.197|116.333 +637754.100|222355.535|116.178 +637747.897|222357.879|116.367 +637741.871|222360.183|115.949 +637735.663|222362.542|115.867 +637729.567|222364.871|115.504 +637723.687|222367.175|113.910 +637717.762|222369.485|112.578 +637711.782|222371.835|110.832 +637705.838|222374.146|109.570 +637699.617|222376.505|109.637 +637687.126|222381.239|109.734 +637680.917|222383.573|110.155 +637674.562|222385.954|110.771 +637668.043|222388.331|112.852 +637661.386|222390.751|115.084 +637655.012|222393.110|116.342 +637648.764|222395.476|116.434 +637642.537|222397.841|116.400 +637636.267|222400.225|116.248 +637630.034|222402.587|116.303 +637623.734|222404.973|116.403 +637617.431|222407.357|116.559 +637611.152|222409.737|116.559 +637604.879|222412.118|116.547 +637598.594|222414.495|116.641 +637592.266|222416.897|116.608 +637585.966|222419.275|116.870 +637579.596|222421.676|117.214 +637560.485|222428.867|118.433 +637554.203|222431.238|118.689 +637547.863|222433.652|118.461 +637541.529|222436.045|118.695 +637535.226|222438.434|118.705 +637528.834|222440.845|118.964 +637522.534|222443.235|119.009 +637516.170|222445.646|119.080 +637509.860|222448.029|119.238 +637503.472|222450.437|119.598 +637497.126|222452.845|119.592 +637490.765|222455.250|119.744 +637484.379|222457.652|120.152 +637478.036|222460.029|120.759 +637471.580|222462.453|121.320 +637465.204|222464.851|121.771 +637458.818|222467.247|122.323 +637452.390|222469.667|122.725 +637439.607|222474.477|123.527 +637433.209|222476.894|123.737 +637426.866|222479.287|124.045 +637420.401|222481.722|124.350 +637414.065|222484.112|124.645 +637407.588|222486.544|125.200 +637401.266|222488.967|124.657 +637394.832|222491.369|125.496 +637375.623|222498.614|126.331 +637369.192|222501.046|126.486 +637362.828|222503.454|126.623 +637375.931|222502.010|126.611 +637382.399|222499.593|126.072 +637388.726|222497.218|125.809 +637401.555|222492.424|124.764 +637407.773|222490.058|125.188 +637414.183|222487.657|124.776 +637420.520|222485.273|124.581 +637426.869|222482.893|124.258 +637433.261|222480.485|124.136 +637445.919|222475.739|123.426 +637452.290|222473.355|123.021 +637458.614|222470.993|122.493 +637464.981|222468.604|122.173 +637471.318|222466.238|121.570 +637477.713|222463.849|121.073 +637484.065|222461.480|120.424 +637490.411|222459.112|119.863 +637496.772|222456.716|119.768 +637503.082|222454.342|119.625 +637509.388|222451.964|119.500 +637515.642|222449.611|119.336 +637521.979|222447.234|119.022 +637528.279|222444.856|119.058 +637534.601|222442.476|118.900 +637540.846|222440.117|118.909 +637547.095|222437.755|118.924 +637553.432|222435.371|118.714 +637591.117|222421.216|116.943 +637597.399|222418.848|116.876 +637603.635|222416.498|116.729 +637609.771|222414.154|117.321 +637616.013|222411.804|117.168 +637622.283|222409.448|116.836 +637628.461|222407.119|116.754 +637634.713|222404.766|116.614 +637640.894|222402.434|116.556 +637647.133|222400.078|116.537 +637653.315|222397.743|116.516 +637672.560|222390.675|112.130 +637678.894|222388.340|110.890 +637685.230|222385.984|110.057 +637691.393|222383.662|109.966 +637697.645|222381.312|109.728 +637703.787|222378.989|109.798 +637709.892|222376.666|110.100 +637715.720|222374.374|112.078 +637721.639|222372.076|113.489 +637733.544|222367.483|115.547 +637739.628|222365.179|115.650 +637745.575|222362.893|116.550 +637751.717|222360.579|116.367 +637757.828|222358.272|116.382 +637763.936|222355.961|116.412 +637770.008|222353.672|116.345 +637776.058|222351.383|116.400 +637782.184|222349.085|116.065 +637788.219|222346.799|116.260 +637794.328|222344.498|116.065 +637800.244|222342.242|116.583 +637818.404|222335.390|116.397 +637824.445|222333.110|116.336 +637836.433|222328.578|116.446 +637848.479|222324.034|116.327 +637860.649|222319.480|115.401 +637866.855|222317.197|114.099 +637873.116|222314.886|112.877 +637879.202|222312.619|112.215 +637885.155|222310.372|112.212 +637891.096|222308.126|112.270 +637897.045|222305.877|112.313 +637903.020|222303.621|112.255 +637908.911|222301.393|112.313 +637914.834|222299.159|112.252 +637920.762|222296.925|112.173 +637926.757|222294.675|111.822 +637932.643|222292.459|111.706 +637938.517|222290.228|111.926 +637944.396|222288.012|111.874 +637950.285|222285.790|111.801 +637956.131|222283.590|111.652 +637962.044|222281.364|111.505 +637967.930|222279.155|111.237 +637973.742|222276.966|111.011 +637979.671|222274.735|110.871 +637985.361|222272.571|111.203 +637991.076|222270.389|111.697 +638002.662|222266.027|111.319 +638008.453|222263.838|111.289 +638014.241|222261.662|111.036 +638020.075|222259.477|110.630 +638031.792|222255.094|109.676 +638049.290|222248.547|108.210 +638055.103|222246.370|107.777 +638066.722|222242.027|106.723 +638078.240|222237.711|105.906 +638095.358|222231.277|105.193 +638101.039|222229.140|104.925 +638123.552|222220.670|104.105 +638129.294|222218.530|103.483 +638134.894|222216.427|103.154 +638140.450|222214.336|102.995 +638157.293|222208.023|101.813 +638168.473|222203.848|100.758 +638185.445|222197.535|98.530 +638191.071|222195.450|97.640 +638196.366|222195.033|97.561 +638190.824|222197.105|98.143 +638173.804|222203.451|100.465 +638162.600|222207.658|101.334 +638156.973|222209.767|101.886 +638145.766|222213.979|102.666 +638123.061|222222.511|104.327 +638117.453|222224.629|104.492 +638100.445|222231.048|105.050 +638094.770|222233.191|105.299 +638089.103|222235.337|105.290 +638083.455|222237.482|105.229 +638077.640|222239.659|105.818 +638054.347|222248.397|107.787 +638042.646|222252.777|108.997 +638036.781|222254.981|109.448 +638025.104|222259.370|110.207 +638019.170|222261.595|110.740 +637995.764|222270.419|111.792 +637990.058|222272.608|111.234 +637984.261|222274.827|110.822 +637978.409|222277.039|110.911 +637972.532|222279.258|111.112 +637966.574|222281.502|111.426 +637960.666|222283.736|111.542 +637954.759|222285.970|111.676 +637948.855|222288.201|111.813 +637942.900|222290.454|111.917 +637937.038|222292.688|111.630 +637931.095|222294.937|111.725 +637925.051|222297.214|112.011 +637919.110|222299.461|112.127 +637913.115|222301.728|112.240 +637907.156|222303.990|112.206 +637901.246|222306.227|112.246 +637895.226|222308.507|112.231 +637889.279|222310.766|112.206 +637883.290|222313.039|112.090 +637877.121|222315.344|112.843 +637870.878|222317.657|113.968 +637864.609|222319.974|115.269 +637858.327|222322.305|116.355 +637828.051|222333.778|116.406 +637822.001|222336.067|116.513 +637815.880|222338.377|116.684 +637797.702|222345.296|116.047 +637791.624|222347.601|116.077 +637785.400|222349.951|116.242 +637779.331|222352.252|116.269 +637773.114|222354.599|116.446 +637766.993|222356.918|116.449 +637760.818|222359.259|116.434 +637754.661|222361.597|116.352 +637748.461|222363.938|116.513 +637742.353|222366.270|116.193 +637736.217|222368.605|116.047 +637730.054|222370.939|116.077 +637724.144|222373.262|114.300 +637718.192|222375.591|112.734 +637712.284|222377.898|111.277 +637706.304|222380.230|109.871 +637700.123|222382.583|109.676 +637693.807|222384.966|109.942 +637687.492|222387.328|110.633 +637681.085|222389.715|111.530 +637674.700|222392.080|112.727 +637655.329|222399.237|116.787 +637649.060|222401.621|116.617 +637642.808|222403.986|116.720 +637636.514|222406.372|116.754 +637630.263|222408.735|116.906 +637623.935|222411.118|117.214 +637617.665|222413.499|117.129 +637611.414|222415.879|116.946 +637605.147|222418.257|116.876 +637598.792|222420.658|117.016 +637592.519|222423.036|117.040 +637586.124|222425.438|117.540 +637573.426|222430.211|118.394 +637566.977|222432.631|118.948 +637560.658|222435.024|119.000 +637554.358|222437.416|118.894 +637548.043|222439.809|118.973 +637541.727|222442.199|119.037 +637535.369|222444.613|118.985 +637529.005|222447.024|119.006 +637522.674|222449.410|119.284 +637516.304|222451.821|119.427 +637509.943|222454.229|119.482 +637503.575|222456.637|119.640 +637497.208|222459.042|119.802 +637490.847|222461.447|119.942 +637484.449|222463.849|120.463 +637478.042|222466.247|121.113 +637471.590|222468.668|121.637 +637465.183|222471.063|122.356 +637452.323|222475.900|123.167 +637445.971|222478.296|123.463 +637439.543|222480.710|123.926 +637433.133|222483.127|124.249 +637426.744|222485.541|124.383 +637420.340|222487.955|124.718 +637413.949|222490.369|124.910 +637407.554|222492.780|125.179 +637401.171|222495.225|124.624 +637394.789|222497.602|125.557 +637392.652|222501.915|125.672 +637399.038|222499.516|125.435 +637405.320|222497.163|125.026 +637411.678|222494.755|125.218 +637418.003|222492.378|125.069 +637424.342|222489.997|124.767 +637430.755|222487.596|124.407 +637437.031|222485.236|124.221 +637449.671|222480.494|123.636 +637456.051|222478.110|123.118 +637462.421|222475.724|122.701 +637468.737|222473.361|122.265 +637475.153|222470.978|121.487 +637481.425|222468.634|120.966 +637487.832|222466.244|120.351 +637494.157|222463.876|119.963 +637500.466|222461.505|119.774 +637506.770|222459.130|119.637 +637513.015|222456.780|119.512 +637519.382|222454.382|119.430 +637525.622|222452.028|119.403 +637531.946|222449.651|119.201 +637538.207|222447.298|119.031 +637544.507|222444.920|119.092 +637550.731|222442.564|119.278 +637557.001|222440.208|119.119 +637569.476|222435.511|118.891 +637575.798|222433.128|118.875 +637594.662|222426.081|117.421 +637600.904|222423.737|117.184 +637607.137|222421.393|117.053 +637613.322|222419.070|116.836 +637619.521|222416.726|116.986 +637625.733|222414.379|117.050 +637631.881|222412.057|117.171 +637638.126|222409.707|117.062 +637644.299|222407.378|117.034 +637650.504|222405.050|116.821 +637656.677|222402.718|116.854 +637669.350|222398.030|114.852 +637675.596|222395.710|114.120 +637681.981|222393.357|112.904 +637688.224|222391.035|112.258 +637694.627|222388.676|111.033 +637700.870|222386.347|110.448 +637707.088|222384.021|110.036 +637713.077|222381.717|111.042 +637718.871|222379.434|113.185 +637724.641|222377.169|115.090 +637730.643|222374.865|115.980 +637736.687|222372.570|116.297 +637742.765|222370.275|116.428 +637748.912|222367.949|116.528 +637754.950|222365.672|116.559 +637761.065|222363.368|116.550 +637767.170|222361.061|116.595 +637773.232|222358.778|116.559 +637779.289|222356.492|116.571 +637785.376|222354.203|116.449 +637791.429|222351.917|116.519 +637797.418|222349.655|116.626 +637803.438|222347.372|116.909 +637833.531|222336.034|116.705 +637839.511|222333.766|116.973 +637845.555|222331.501|116.641 +637863.594|222324.719|116.239 +637869.729|222322.436|115.547 +637875.932|222320.153|114.285 +637882.205|222317.849|113.035 +637888.334|222315.575|112.182 +637894.269|222313.347|111.975 +637900.267|222311.080|112.072 +637906.144|222308.861|112.173 +637912.060|222306.632|112.112 +637918.016|222304.383|112.182 +637923.935|222302.152|112.142 +637929.812|222299.942|112.026 +637935.798|222297.699|111.731 +637941.778|222295.455|111.499 +637947.597|222293.252|111.694 +637953.479|222291.036|111.633 +637959.347|222288.823|111.670 +637965.199|222286.622|111.499 +637971.060|222284.422|111.325 +637976.925|222282.218|111.152 +637982.807|222280.011|110.923 +637988.650|222277.823|110.615 +637994.371|222275.656|110.847 +638000.092|222273.473|111.341 +638035.013|222260.382|109.713 +638058.410|222251.662|107.521 +638064.235|222249.488|107.067 +638075.835|222245.154|106.162 +638087.268|222240.866|105.726 +638092.926|222238.741|105.516 +638098.641|222236.595|105.360 +638115.527|222230.246|104.979 +638143.806|222219.676|102.977 +638149.411|222217.576|102.672 +638155.099|222215.461|102.114 +638160.579|222213.397|102.056 +638177.249|222207.152|101.212 +638188.404|222202.994|100.154 +638191.583|222203.305|99.764 +638180.281|222207.514|101.322 +638174.841|222209.572|101.422 +638158.107|222215.866|102.322 +638152.535|222217.969|102.486 +638135.701|222224.300|103.516 +638130.005|222226.436|103.971 +638124.314|222228.570|104.416 +638118.587|222230.722|104.787 +638112.881|222232.859|105.339 +638101.759|222237.089|104.970 +638095.980|222239.259|105.370 +638084.632|222243.542|105.693 +638067.347|222250.040|106.720 +638061.534|222252.223|107.125 +638055.645|222254.420|107.857 +638049.751|222256.630|108.390 +638043.886|222258.818|109.076 +638026.284|222265.417|110.554 +638014.549|222269.834|111.142 +638002.945|222274.223|111.292 +637997.215|222276.415|110.844 +637991.457|222278.609|110.509 +637985.535|222280.834|110.874 +637979.659|222283.050|111.075 +637973.733|222285.287|111.237 +637967.817|222287.521|111.383 +637961.898|222289.756|111.560 +637955.963|222292.005|111.542 +637950.084|222294.230|111.600 +637944.198|222296.467|111.411 +637938.215|222298.720|111.670 +637932.226|222300.975|111.981 +637926.300|222303.216|112.029 +637920.317|222305.480|112.069 +637914.352|222307.742|112.048 +637908.372|222310.004|112.127 +637902.443|222312.256|111.981 +637896.506|222314.509|111.886 +637890.447|222316.795|112.090 +637884.241|222319.102|113.002 +637878.023|222321.397|114.309 +637871.686|222323.735|115.608 +637865.441|222326.045|116.824 +637835.311|222337.460|116.754 +637804.871|222348.981|116.851 +637792.706|222353.599|116.644 +637786.613|222355.916|116.452 +637780.456|222358.238|116.638 +637774.339|222360.555|116.623 +637768.157|222362.896|116.635 +637762.049|222365.209|116.614 +637755.831|222367.568|116.534 +637749.708|222369.885|116.644 +637743.493|222372.241|116.577 +637737.379|222374.566|116.324 +637731.243|222376.898|116.199 +637725.217|222379.230|115.096 +637719.283|222381.555|113.444 +637713.446|222383.851|111.566 +637707.472|222386.182|110.134 +637701.150|222388.545|110.813 +637694.755|222390.931|111.588 +637688.379|222393.293|112.682 +637681.948|222395.680|113.752 +637675.574|222398.039|114.928 +637662.837|222402.791|116.510 +637656.549|222405.156|116.833 +637650.352|222407.497|116.982 +637644.034|222409.881|117.150 +637637.813|222412.240|117.114 +637631.540|222414.620|117.013 +637625.267|222416.998|116.946 +637619.000|222419.378|116.845 +637612.721|222421.756|116.836 +637606.378|222424.133|117.336 +637600.048|222426.532|117.321 +637593.732|222428.906|117.665 +637587.328|222431.305|118.257 +637580.964|222433.679|119.034 +637574.682|222436.072|118.766 +637568.358|222438.465|118.836 +637562.009|222440.854|119.110 +637555.629|222443.268|119.174 +637549.326|222445.658|119.150 +637542.968|222448.069|119.095 +637536.713|222450.431|119.189 +637530.340|222452.839|119.296 +637523.970|222455.247|119.415 +637517.669|222457.631|119.473 +637511.232|222460.060|119.671 +637504.935|222462.440|119.771 +637498.567|222464.842|119.936 +637492.200|222467.244|120.165 +637485.812|222469.643|120.582 +637479.335|222472.063|121.323 +637473.001|222474.434|121.908 +637466.536|222476.848|122.612 +637460.175|222479.244|122.938 +637453.783|222481.634|123.612 +637447.358|222484.048|124.048 +637440.966|222486.462|124.145 +637434.559|222488.873|124.478 +637428.155|222491.287|124.746 +637421.816|222493.673|125.060 +637415.427|222496.084|125.249 +637409.008|222498.520|125.112 +637402.674|222500.937|124.703 +637409.977|222501.821|125.221 +637416.317|222499.413|125.617 +637422.602|222497.060|125.227 +637429.009|222494.658|124.910 +637435.355|222492.277|124.596 +637448.041|222487.513|124.157 +637454.304|222485.151|124.154 +637460.736|222482.774|123.078 +637467.048|222480.411|122.667 +637473.452|222478.028|121.984 +637479.776|222475.666|121.512 +637486.132|222473.300|120.799 +637492.517|222470.911|120.408 +637498.766|222468.564|120.168 +637505.127|222466.168|120.064 +637511.433|222463.797|119.924 +637517.675|222461.447|119.823 +637524.070|222459.051|119.503 +637530.255|222456.719|119.427 +637536.619|222454.321|119.415 +637542.797|222451.992|119.424 +637549.192|222449.611|118.680 +637555.367|222447.258|119.247 +637561.606|222444.899|119.314 +637567.888|222442.543|119.076 +637574.179|222440.181|118.781 +637580.467|222437.822|118.555 +637586.697|222435.484|118.308 +637593.019|222433.119|117.869 +637599.203|222430.799|117.571 +637605.458|222428.434|117.690 +637611.712|222426.111|116.943 +637617.936|222423.764|116.888 +637624.112|222421.442|116.763 +637630.321|222419.095|116.836 +637636.471|222416.772|116.922 +637642.692|222414.425|116.970 +637648.825|222412.100|117.202 +637655.028|222409.771|117.010 +637661.148|222407.464|116.949 +637679.930|222400.447|115.443 +637686.163|222398.128|114.794 +637692.430|222395.802|113.959 +637705.103|222391.117|111.941 +637711.254|222388.813|111.539 +637717.119|222386.524|113.252 +637722.885|222384.244|115.526 +637728.875|222381.958|116.120 +637734.931|222379.647|116.678 +637741.128|222377.337|116.099 +637747.090|222375.051|116.882 +637753.234|222372.747|116.641 +637759.318|222370.446|116.760 +637765.353|222368.166|116.824 +637771.468|222365.861|116.812 +637777.521|222363.578|116.824 +637783.586|222361.292|116.787 +637789.625|222359.009|116.900 +637807.690|222352.191|116.982 +637813.734|222349.917|116.830 +637837.698|222340.865|117.162 +637843.794|222338.582|116.858 +637849.695|222336.338|117.223 +637867.711|222329.572|116.571 +637898.435|222318.194|112.057 +637904.367|222315.965|111.871 +637910.316|222313.719|111.923 +637916.242|222311.476|112.100 +637922.106|222309.269|112.005 +637928.004|222307.044|112.051 +637933.929|222304.810|112.005 +637939.867|222302.576|111.917 +637945.795|222300.354|111.615 +637951.711|222298.132|111.380 +637957.539|222295.928|111.563 +637963.361|222293.733|111.499 +637969.237|222291.517|111.496 +637975.090|222289.317|111.362 +637980.942|222287.116|111.231 +637986.809|222284.912|111.057 +637992.634|222282.727|110.822 +637998.556|222280.511|110.469 +638004.223|222278.365|110.664 +638009.877|222276.210|111.182 +638021.453|222271.858|110.923 +638056.523|222258.773|108.030 +638062.452|222256.578|107.150 +638079.700|222250.119|106.193 +638091.124|222245.834|105.778 +638158.808|222220.471|102.568 +638175.450|222214.238|101.739 +638192.050|222208.036|100.545 +638203.650|222205.762|99.030 +638197.993|222207.865|99.789 +638192.376|222209.950|100.663 +638181.211|222214.122|101.782 +638175.728|222216.195|101.806 +638170.193|222218.277|102.020 +638164.676|222220.359|102.203 +638159.110|222222.447|102.559 +638142.218|222228.789|103.535 +638136.527|222230.923|103.952 +638130.821|222233.060|104.449 +638125.152|222235.184|104.839 +638102.499|222243.709|105.793 +638091.207|222247.977|105.903 +638079.856|222252.262|106.055 +638062.433|222258.800|107.189 +638056.511|222261.001|108.064 +638032.968|222269.794|110.481 +638027.174|222271.986|110.457 +638015.436|222276.384|111.344 +638009.773|222278.551|110.850 +638004.034|222280.740|110.426 +637998.209|222282.934|110.627 +637992.259|222285.174|110.829 +637986.376|222287.390|111.048 +637980.518|222289.600|111.188 +637974.596|222291.834|111.338 +637968.698|222294.062|111.423 +637962.803|222296.288|111.499 +637956.966|222298.500|111.344 +637951.029|222300.747|111.374 +637945.030|222302.999|111.694 +637939.099|222305.243|111.734 +637933.082|222307.510|111.889 +637927.178|222309.744|111.853 +637921.265|222311.982|111.877 +637915.245|222314.262|111.831 +637909.335|222316.493|111.883 +637903.330|222318.770|111.786 +637897.201|222321.065|112.313 +637878.553|222327.965|115.553 +637854.172|222337.122|117.007 +637848.131|222339.405|117.019 +637842.035|222341.697|117.324 +637835.866|222344.013|117.705 +637817.761|222350.883|117.263 +637811.793|222353.166|116.693 +637805.596|222355.480|117.330 +637787.345|222362.417|116.617 +637781.191|222364.737|116.790 +637775.064|222367.053|116.833 +637768.883|222369.388|116.854 +637762.775|222371.698|116.848 +637756.624|222374.030|116.751 +637750.464|222376.365|116.717 +637744.276|222378.700|116.873 +637738.141|222381.025|116.748 +637732.005|222383.369|116.278 +637725.909|222385.692|115.961 +637719.965|222388.014|114.370 +637714.007|222390.340|112.868 +637707.789|222392.690|112.932 +637701.516|222395.046|113.349 +637695.194|222397.402|114.096 +637688.766|222399.786|115.169 +637669.887|222406.854|116.815 +637663.608|222409.219|117.077 +637657.320|222411.581|117.415 +637651.160|222413.934|116.934 +637644.872|222416.318|116.909 +637638.651|222418.674|116.861 +637632.366|222421.052|116.854 +637626.075|222423.429|116.925 +637619.793|222425.806|116.937 +637613.422|222428.166|118.055 +637607.107|222430.561|117.933 +637600.843|222432.933|117.894 +637594.510|222435.328|117.927 +637588.191|222437.700|118.366 +637581.833|222440.092|118.644 +637575.487|222442.485|118.869 +637569.205|222444.850|119.076 +637562.798|222447.264|119.351 +637556.489|222449.651|119.369 +637550.192|222452.038|119.308 +637543.846|222454.421|119.649 +637537.490|222456.829|119.613 +637531.135|222459.234|119.576 +637524.881|222461.593|119.753 +637518.492|222463.998|120.067 +637512.125|222466.400|120.210 +637505.770|222468.802|120.299 +637499.412|222471.203|120.424 +637493.112|222473.578|120.591 +637486.671|222475.998|120.957 +637480.264|222478.391|121.628 +637473.872|222480.783|122.195 +637467.423|222483.197|122.786 +637461.046|222485.590|123.283 +637454.679|222487.977|123.712 +637448.251|222490.388|124.188 +637441.841|222492.799|124.505 +637435.443|222495.210|124.724 +637429.100|222497.596|125.063 +637422.703|222500.004|125.343 +637416.308|222502.412|125.614 +637426.415|222502.260|125.425 +637432.764|222499.882|125.060 +637439.107|222497.502|124.788 +637445.450|222495.118|124.542 +637451.817|222492.738|124.054 +637464.488|222487.992|123.267 +637470.870|222485.608|122.752 +637477.256|222483.222|122.222 +637483.599|222480.856|121.594 +637490.003|222478.467|120.975 +637496.303|222476.099|120.817 +637502.603|222473.727|120.671 +637508.885|222471.353|120.713 +637515.197|222468.981|120.506 +637521.513|222466.607|120.302 +637527.844|222464.233|119.979 +637534.153|222461.855|119.881 +637540.404|222459.502|119.793 +637546.699|222457.125|119.881 +637553.044|222454.744|119.546 +637559.308|222452.388|119.421 +637565.547|222450.032|119.518 +637571.838|222447.670|119.220 +637578.130|222445.311|118.958 +637584.402|222442.948|118.851 +637590.678|222440.586|118.753 +637596.917|222438.245|118.482 +637603.187|222435.901|118.031 +637609.387|222433.558|118.101 +637615.641|222431.192|118.257 +637621.811|222428.870|118.162 +637628.056|222426.523|117.982 +637634.429|222424.167|116.928 +637640.675|222421.817|116.809 +637646.847|222419.488|116.787 +637653.022|222417.159|116.775 +637659.225|222414.809|116.989 +637665.376|222412.481|117.165 +637671.566|222410.149|117.104 +637677.757|222407.835|116.672 +637690.177|222403.160|116.412 +637696.404|222400.837|115.827 +637702.732|222398.505|114.660 +637708.990|222396.162|114.352 +637715.201|222393.836|113.962 +637721.154|222391.535|115.129 +637727.076|222389.240|116.486 +637733.169|222386.941|116.477 +637739.235|222384.628|117.013 +637745.337|222382.327|116.982 +637751.531|222379.998|116.815 +637757.563|222377.721|116.876 +637763.659|222375.420|116.949 +637769.761|222373.116|116.995 +637775.829|222370.830|116.918 +637781.941|222368.522|116.958 +637787.927|222366.261|117.028 +637812.119|222357.129|117.150 +637818.053|222354.870|117.577 +637824.183|222352.572|117.345 +637830.056|222350.335|117.787 +637848.186|222343.519|117.309 +637854.294|222341.230|116.967 +637872.293|222334.464|116.470 +637884.436|222329.931|115.465 +637902.934|222323.095|112.423 +637909.015|222320.827|111.859 +637914.943|222318.596|111.737 +637920.847|222316.368|111.734 +637926.733|222314.143|111.847 +637932.661|222311.912|111.780 +637938.562|222309.680|111.847 +637944.436|222307.471|111.783 +637950.309|222305.258|111.740 +637956.247|222303.033|111.432 +637962.160|222300.811|111.255 +637968.012|222298.598|111.359 +637973.840|222296.400|111.313 +637979.662|222294.206|111.307 +637985.523|222292.002|111.155 +637991.329|222289.820|110.987 +637997.203|222287.613|110.832 +638003.092|222285.400|110.618 +638008.892|222283.230|110.271 +638014.601|222281.063|110.579 +638020.218|222278.926|111.008 +638037.705|222272.373|110.124 +638055.310|222265.811|108.457 +638072.790|222259.297|106.753 +638078.481|222257.160|106.583 +638084.254|222254.993|106.363 +638089.963|222252.860|105.921 +638095.617|222250.726|105.946 +638129.538|222237.988|104.809 +638140.862|222233.761|103.897 +638146.455|222231.667|103.599 +638152.048|222229.570|103.321 +638157.626|222227.476|103.117 +638174.338|222221.215|102.221 +638179.894|222219.136|101.944 +638185.326|222217.091|101.870 +638190.846|222215.025|101.523 +638196.485|222212.934|100.798 +638205.046|222211.986|99.118 +638182.564|222220.359|102.072 +638171.564|222224.513|102.291 +638166.008|222226.601|102.614 +638160.387|222228.710|102.959 +638154.803|222230.813|103.184 +638149.189|222232.923|103.547 +638132.208|222239.293|104.772 +638126.569|222241.411|105.071 +638115.115|222245.700|106.129 +638092.654|222254.210|105.857 +638086.891|222256.371|106.269 +638075.369|222260.702|106.894 +638069.627|222262.869|107.052 +638057.944|222267.240|108.168 +638022.767|222280.426|110.850 +638017.082|222282.596|110.438 +638011.349|222284.775|110.249 +638005.436|222287.000|110.545 +637999.532|222289.222|110.822 +637993.725|222291.411|110.978 +637987.867|222293.621|111.112 +637981.917|222295.861|111.374 +637976.059|222298.083|111.283 +637970.188|222300.305|111.252 +637964.336|222302.524|111.164 +637958.399|222304.758|111.463 +637952.446|222307.004|111.575 +637946.472|222309.254|111.804 +637940.516|222311.512|111.685 +637934.594|222313.753|111.722 +637928.684|222315.990|111.725 +637922.728|222318.245|111.664 +637916.784|222320.501|111.578 +637910.737|222322.769|111.975 +637904.598|222325.052|112.813 +637898.335|222327.368|113.983 +637886.051|222331.958|115.273 +637879.974|222334.238|115.654 +637867.751|222338.826|116.531 +637861.686|222341.099|116.937 +637855.605|222343.391|117.132 +637849.414|222345.699|117.900 +637831.227|222352.584|117.802 +637819.105|222357.181|117.620 +637813.106|222359.470|117.229 +637806.922|222361.783|117.830 +637788.616|222368.726|117.461 +637782.584|222371.031|116.995 +637776.418|222373.366|116.940 +637770.233|222375.703|117.001 +637764.131|222378.014|116.986 +637757.962|222380.345|116.986 +637751.820|222382.674|116.861 +637745.599|222385.027|116.858 +637739.384|222387.362|117.199 +637733.258|222389.703|116.675 +637727.110|222392.028|116.662 +637721.145|222394.351|115.218 +637714.997|222396.692|114.855 +637708.724|222399.045|115.269 +637702.485|222401.392|115.516 +637696.081|222403.772|116.409 +637689.784|222406.141|116.690 +637683.591|222408.482|116.720 +637677.287|222410.847|117.086 +637670.960|222413.215|117.644 +637664.815|222415.568|117.046 +637658.600|222417.924|116.906 +637652.348|222420.302|116.614 +637646.079|222422.661|116.873 +637639.782|222425.038|116.937 +637633.378|222427.401|118.180 +637627.026|222429.799|118.263 +637620.768|222432.152|118.558 +637614.456|222434.548|118.397 +637608.232|222436.916|118.058 +637595.534|222441.684|118.830 +637589.212|222444.073|118.836 +637582.875|222446.463|118.955 +637576.526|222448.852|119.201 +637570.180|222451.239|119.470 +637563.856|222453.626|119.570 +637557.491|222456.034|119.543 +637551.115|222458.420|120.131 +637544.763|222460.825|120.043 +637538.402|222463.230|120.049 +637532.096|222465.610|120.137 +637525.716|222468.012|120.351 +637519.337|222470.414|120.594 +637512.975|222472.816|120.692 +637506.608|222475.215|120.890 +637500.250|222477.613|121.012 +637493.898|222480.009|121.131 +637487.525|222482.405|121.442 +637481.069|222484.819|122.012 +637474.671|222487.209|122.664 +637468.237|222489.623|123.082 +637461.845|222492.009|123.758 +637455.438|222494.420|123.996 +637449.074|222496.807|124.429 +637436.257|222501.623|125.078 +637429.856|222504.027|125.398 +637443.545|222502.409|124.990 +637456.194|222497.669|124.258 +637462.549|222495.286|123.965 +637468.938|222492.905|123.341 +637475.232|222490.543|123.085 +637481.581|222488.181|122.347 +637487.970|222485.794|121.841 +637494.221|222483.450|121.497 +637500.579|222481.058|121.362 +637506.870|222478.689|121.274 +637513.186|222476.318|121.021 +637519.486|222473.947|120.917 +637525.728|222471.597|120.789 +637532.059|222469.222|120.482 +637538.304|222466.869|120.396 +637544.614|222464.495|120.317 +637550.841|222462.139|120.430 +637557.092|222459.783|120.369 +637563.447|222457.426|119.488 +637569.693|222455.067|119.537 +637575.944|222452.708|119.543 +637582.186|222450.370|119.174 +637588.548|222447.987|118.863 +637594.689|222445.670|118.848 +637600.968|222443.305|118.744 +637607.180|222440.964|118.699 +637613.425|222438.620|118.452 +637619.610|222436.276|118.638 +637632.061|222431.585|118.534 +637638.261|222429.260|118.250 +637644.497|222426.910|118.168 +637650.834|222424.572|117.022 +637657.024|222422.243|116.900 +637663.215|222419.912|116.787 +637669.369|222417.583|116.955 +637675.553|222415.251|116.918 +637681.716|222412.919|117.053 +637687.839|222410.609|117.065 +637694.073|222408.271|116.797 +637700.230|222405.955|116.650 +637706.347|222403.641|116.772 +637712.516|222401.322|116.577 +637718.807|222398.990|115.687 +637724.806|222396.686|116.571 +637730.832|222394.397|116.946 +637736.998|222392.056|117.217 +637743.066|222389.779|117.004 +637749.196|222387.456|117.184 +637755.328|222385.152|116.998 +637761.427|222382.851|117.034 +637767.514|222380.550|117.150 +637773.571|222378.267|117.098 +637779.627|222375.981|117.083 +637785.693|222373.695|117.031 +637791.767|222371.393|117.284 +637809.940|222364.545|117.126 +637815.904|222362.283|117.376 +637821.949|222359.994|117.543 +637827.950|222357.741|117.324 +637833.812|222355.492|118.135 +637851.859|222348.689|118.043 +637857.949|222346.418|117.479 +637863.981|222344.153|117.235 +637870.083|222341.877|116.672 +637876.036|222339.636|116.553 +637894.513|222332.784|114.005 +637906.500|222328.282|113.596 +637912.624|222326.021|112.542 +637918.769|222323.741|111.716 +637924.712|222321.507|111.536 +637930.607|222319.279|111.600 +637936.490|222317.054|111.740 +637942.360|222314.844|111.661 +637948.221|222312.634|111.648 +637954.138|222310.400|111.682 +637960.036|222308.181|111.560 +637965.891|222305.980|111.353 +637971.834|222303.752|111.063 +637977.687|222301.539|111.179 +637983.508|222299.345|111.182 +637989.266|222297.171|111.188 +638001.007|222292.755|110.874 +638006.822|222290.569|110.701 +638012.605|222288.399|110.438 +638018.518|222286.180|110.170 +638024.196|222284.028|110.356 +638029.875|222281.867|110.819 +638053.241|222273.135|108.975 +638082.303|222262.281|106.561 +638104.953|222253.750|106.260 +638144.544|222238.909|104.163 +638150.179|222236.803|103.708 +638161.341|222232.615|103.263 +638166.962|222230.518|102.687 +638172.512|222228.430|102.626 +638177.959|222226.382|102.471 +638183.515|222224.297|102.187 +638205.961|222215.948|99.594 +638177.218|222228.604|102.483 +638171.686|222230.691|102.721 +638166.117|222232.782|103.096 +638160.530|222234.892|103.330 +638126.566|222247.647|105.784 +638120.918|222249.772|106.141 +638081.255|222264.774|106.778 +638063.857|222271.303|108.155 +638058.087|222273.473|108.457 +638046.312|222277.884|109.554 +638040.457|222280.081|110.009 +638034.556|222282.288|110.676 +638028.902|222284.443|110.371 +638023.205|222286.619|110.003 +638017.292|222288.847|110.259 +638011.452|222291.051|110.505 +637999.760|222295.465|110.844 +637993.884|222297.684|111.027 +637988.050|222299.890|111.063 +637982.167|222302.121|111.063 +637976.306|222304.346|110.978 +637970.380|222306.581|111.188 +637964.449|222308.815|111.447 +637958.518|222311.064|111.456 +637952.635|222313.289|111.542 +637946.719|222315.530|111.520 +637940.793|222317.773|111.557 +637934.902|222320.010|111.469 +637929.007|222322.247|111.399 +637922.938|222324.539|111.569 +637916.912|222326.795|112.142 +637898.563|222333.656|114.126 +637892.394|222335.957|114.882 +637880.150|222340.542|116.071 +637874.064|222342.824|116.544 +637867.913|222345.132|117.040 +637861.862|222347.409|117.382 +637855.718|222349.728|117.601 +637849.615|222352.008|118.241 +637831.614|222358.860|117.555 +637825.500|222361.186|117.406 +637819.480|222363.466|117.431 +637813.369|222365.785|117.306 +637807.236|222368.108|117.309 +637795.023|222372.728|117.437 +637788.981|222375.039|117.001 +637782.843|222377.358|117.123 +637776.744|222379.672|117.043 +637770.568|222382.013|117.074 +637764.463|222384.323|117.065 +637758.248|222386.682|117.010 +637752.137|222388.993|117.092 +637745.919|222391.346|117.086 +637739.704|222393.684|117.452 +637733.630|222396.003|117.022 +637721.346|222400.691|116.260 +637708.852|222405.397|116.830 +637702.677|222407.741|116.726 +637696.490|222410.085|116.702 +637690.189|222412.456|117.022 +637684.026|222414.797|116.903 +637677.778|222417.159|116.943 +637671.578|222419.518|116.684 +637665.336|222421.881|116.736 +637659.082|222424.243|116.879 +637652.696|222426.614|117.930 +637646.374|222428.995|118.168 +637640.141|222431.351|118.263 +637633.771|222433.756|118.467 +637621.265|222438.486|118.619 +637614.998|222440.858|118.598 +637608.668|222443.256|118.616 +637602.331|222445.652|118.705 +637596.110|222447.999|118.869 +637589.709|222450.416|119.015 +637583.418|222452.784|119.296 +637577.075|222455.177|119.537 +637570.759|222457.567|119.595 +637564.429|222459.953|119.781 +637557.976|222462.364|120.497 +637551.731|222464.726|120.555 +637545.391|222467.134|120.411 +637539.085|222469.518|120.491 +637532.723|222471.926|120.558 +637526.338|222474.328|120.869 +637520.028|222476.708|121.085 +637513.606|222479.134|121.231 +637507.309|222481.512|121.381 +637500.945|222483.911|121.591 +637494.535|222486.334|121.707 +637488.232|222488.708|121.978 +637481.785|222491.125|122.512 +637475.381|222493.515|123.252 +637468.977|222495.932|123.426 +637456.185|222500.733|124.346 +637460.449|222502.671|124.322 +637473.129|222497.934|123.496 +637479.456|222495.575|122.947 +637485.836|222493.195|122.512 +637492.151|222490.833|122.143 +637498.458|222488.467|121.905 +637504.816|222486.078|121.786 +637511.061|222483.737|121.579 +637517.435|222481.344|121.381 +637523.741|222478.976|121.241 +637530.062|222476.608|120.997 +637536.378|222474.236|120.814 +637542.632|222471.886|120.689 +637548.936|222469.512|120.680 +637555.172|222467.159|120.725 +637561.481|222464.781|120.710 +637567.794|222462.425|120.195 +637574.121|222460.069|119.598 +637580.385|222457.710|119.549 +637586.649|222455.351|119.500 +637592.943|222452.989|119.253 +637599.158|222450.651|119.159 +637605.452|222448.289|118.967 +637611.706|222445.948|118.628 +637617.906|222443.607|118.705 +637624.139|222441.263|118.586 +637630.351|222438.919|118.619 +637636.490|222436.599|118.772 +637642.753|222434.249|118.494 +637648.950|222431.924|118.284 +637655.201|222429.574|118.153 +637661.383|222427.248|118.077 +637667.732|222424.907|116.943 +637673.925|222422.576|116.851 +637680.137|222420.244|116.681 +637686.239|222417.936|116.833 +637692.405|222415.605|116.973 +637698.575|222413.291|116.748 +637704.817|222410.932|116.851 +637710.879|222408.643|116.934 +637717.116|222406.302|116.736 +637723.178|222403.995|117.226 +637729.396|222401.672|116.824 +637735.425|222399.383|117.181 +637741.512|222397.070|117.580 +637747.736|222394.741|117.181 +637753.862|222392.440|117.031 +637759.949|222390.142|117.138 +637766.039|222387.840|117.226 +637772.147|222385.539|117.239 +637778.210|222383.256|117.181 +637784.382|222380.928|117.220 +637790.326|222378.675|117.516 +637796.507|222376.359|117.205 +637802.509|222374.094|117.226 +637808.556|222371.811|117.351 +637814.609|222369.525|117.458 +637820.550|222367.282|117.519 +637826.618|222364.993|117.580 +637832.632|222362.725|117.635 +637838.615|222360.457|117.845 +637844.446|222358.229|118.528 +637850.481|222355.971|118.214 +637856.611|222353.681|117.748 +637862.627|222351.423|117.574 +637868.659|222349.158|117.333 +637880.876|222344.608|116.196 +637905.089|222335.576|114.111 +637911.149|222333.315|113.630 +637917.287|222331.041|112.822 +637923.356|222328.788|112.063 +637929.449|222326.518|111.517 +637935.338|222324.305|111.331 +637941.235|222322.080|111.414 +637947.124|222319.855|111.563 +637953.010|222317.642|111.450 +637958.938|222315.405|111.456 +637964.800|222313.195|111.493 +637970.627|222311.003|111.420 +637976.504|222308.800|111.164 +637982.457|222306.572|110.868 +637988.245|222304.383|111.024 +637994.073|222302.185|111.027 +637999.846|222300.009|111.011 +638005.722|222297.799|110.841 +638011.529|222295.617|110.719 +638017.295|222293.450|110.518 +638023.141|222291.255|110.265 +638029.024|222289.052|109.896 +638034.687|222286.903|110.173 +638040.363|222284.751|110.408 +638063.610|222276.064|108.655 +638075.387|222271.687|107.192 +638086.903|222267.371|106.580 +638098.241|222263.101|106.470 +638103.789|222260.998|106.653 +638120.696|222254.624|106.555 +638126.435|222252.491|105.866 +638137.841|222248.227|105.065 +638143.474|222246.123|104.589 +638149.033|222244.036|104.391 +638177.060|222233.541|102.684 +638188.057|222229.411|102.279 +638206.924|222223.827|100.502 +638201.285|222225.918|101.441 +638190.148|222230.094|102.239 +638184.686|222232.154|102.413 +638179.105|222234.248|102.797 +638173.594|222236.327|102.949 +638167.943|222238.446|103.379 +638151.164|222244.758|104.187 +638139.883|222248.995|104.918 +638128.441|222253.268|106.089 +638122.726|222255.417|106.455 +638111.339|222259.696|107.073 +638105.764|222261.821|106.741 +638100.183|222263.936|106.674 +638094.550|222266.073|106.577 +638088.841|222268.234|106.549 +638065.570|222276.951|108.518 +638059.803|222279.118|108.808 +638048.083|222283.501|109.932 +638042.259|222285.690|110.268 +638036.519|222287.875|110.027 +638030.734|222290.067|109.984 +638024.940|222292.246|110.246 +638019.060|222294.453|110.624 +638013.205|222296.665|110.670 +638007.325|222298.884|110.822 +638001.485|222301.082|111.097 +637995.667|222303.286|111.048 +637989.802|222305.511|110.935 +637984.008|222307.708|110.816 +637978.034|222309.952|111.207 +637972.145|222312.177|111.255 +637966.171|222314.429|111.414 +637960.304|222316.651|111.408 +637954.369|222318.895|111.429 +637948.456|222321.135|111.392 +637942.528|222323.375|111.429 +637936.590|222325.631|111.246 +637930.540|222327.904|111.584 +637924.417|222330.175|112.578 +637912.197|222334.750|113.654 +637881.677|222346.177|116.245 +637875.505|222348.472|117.117 +637857.324|222355.327|117.647 +637851.158|222357.647|117.988 +637839.152|222362.201|117.717 +637833.110|222364.499|117.501 +637827.018|222366.800|117.546 +637820.858|222369.126|117.647 +637814.795|222371.424|117.574 +637808.687|222373.740|117.446 +637802.649|222376.033|117.290 +637796.541|222378.349|117.193 +637784.217|222383.006|117.312 +637778.106|222385.320|117.287 +637771.931|222387.655|117.290 +637765.774|222389.989|117.232 +637759.611|222392.324|117.211 +637753.457|222394.656|117.174 +637747.260|222396.994|117.403 +637740.930|222399.374|117.702 +637734.895|222401.675|117.391 +637728.643|222404.047|117.290 +637722.511|222406.372|117.214 +637716.271|222408.744|117.068 +637710.075|222411.091|117.050 +637703.848|222413.456|116.867 +637697.663|222415.800|116.809 +637691.409|222418.168|116.833 +637685.236|222420.509|116.745 +637678.964|222422.877|116.937 +637672.712|222425.240|117.010 +637666.302|222427.614|118.159 +637660.048|222429.976|118.299 +637653.741|222432.360|118.412 +637647.499|222434.719|118.516 +637634.899|222439.477|118.759 +637628.623|222441.854|118.759 +637622.335|222444.232|118.854 +637616.068|222446.606|118.823 +637609.722|222449.002|118.933 +637603.434|222451.376|119.107 +637597.094|222453.769|119.223 +637590.727|222456.165|119.589 +637584.408|222458.557|119.604 +637578.087|222460.947|119.659 +637571.732|222463.340|120.015 +637565.258|222465.751|120.850 +637558.951|222468.137|120.887 +637552.645|222470.524|120.902 +637546.293|222472.932|120.838 +637539.987|222475.315|120.924 +637533.552|222477.744|121.106 +637527.228|222480.125|121.402 +637520.858|222482.530|121.567 +637514.502|222484.932|121.667 +637508.135|222487.334|121.878 +637501.704|222489.757|122.149 +637495.410|222492.131|122.301 +637488.981|222494.551|122.609 +637482.611|222496.947|122.975 +637476.183|222499.337|123.941 +637469.791|222501.754|123.996 +637463.427|222504.143|124.386 +637477.350|222502.662|124.103 +637483.763|222500.281|123.271 +637490.076|222497.922|122.890 +637496.382|222495.560|122.566 +637502.749|222493.173|122.307 +637508.986|222490.830|122.134 +637515.289|222488.464|121.932 +637521.589|222486.096|121.795 +637527.901|222483.728|121.579 +637534.211|222481.359|121.414 +637540.471|222479.012|121.183 +637546.781|222476.641|121.058 +637553.014|222474.291|121.088 +637559.262|222471.938|121.021 +637565.575|222469.564|120.963 +637571.771|222467.235|120.872 +637578.239|222464.858|119.628 +637584.427|222462.523|119.656 +637590.690|222460.167|119.589 +637596.890|222457.832|119.570 +637603.190|222455.473|119.272 +637609.460|222453.135|118.787 +637615.672|222450.797|118.750 +637621.862|222448.456|118.903 +637628.108|222446.115|118.656 +637634.234|222443.799|118.848 +637640.449|222441.458|118.881 +637646.679|222439.114|118.805 +637652.864|222436.791|118.659 +637659.054|222434.466|118.510 +637665.226|222432.143|118.488 +637671.435|222429.815|118.238 +637677.635|222427.486|118.086 +637683.993|222425.145|116.946 +637690.080|222422.822|117.565 +637696.343|222420.503|116.678 +637702.439|222418.199|116.885 +637708.535|222415.891|117.126 +637714.699|222413.560|117.324 +637720.779|222411.271|117.306 +637726.903|222408.960|117.415 +637733.041|222406.647|117.458 +637739.159|222404.333|117.641 +637745.209|222402.044|117.866 +637751.369|222399.740|117.476 +637757.486|222397.442|117.351 +637763.576|222395.147|117.421 +637769.621|222392.870|117.412 +637775.723|222390.568|117.431 +637781.834|222388.267|117.443 +637787.884|222385.987|117.443 +637793.944|222383.707|117.427 +637799.994|222381.424|117.482 +637806.075|222379.138|117.397 +637812.027|222376.883|117.671 +637818.020|222374.624|117.751 +637824.104|222372.332|117.702 +637830.130|222370.068|117.650 +637836.165|222367.797|117.574 +637842.145|222365.535|117.793 +637848.027|222363.301|118.202 +637854.056|222361.027|118.211 +637860.104|222358.769|117.839 +637884.259|222349.734|116.470 +637896.482|222345.208|114.794 +637902.532|222342.953|114.282 +637914.520|222338.469|113.590 +637920.515|222336.219|113.410 +637926.462|222333.991|113.200 +637932.378|222331.763|113.124 +637938.663|222329.474|111.435 +637944.646|222327.237|111.139 +637950.480|222325.033|111.222 +637956.381|222322.808|111.319 +637962.239|222320.601|111.341 +637968.055|222318.413|111.295 +637979.835|222313.981|111.158 +637985.660|222311.790|111.112 +637991.512|222309.604|110.719 +637997.316|222307.413|110.810 +638003.113|222305.224|110.963 +638008.886|222303.051|110.969 +638014.723|222300.863|110.719 +638020.520|222298.683|110.661 +638026.363|222296.492|110.432 +638032.218|222294.300|110.188 +638037.961|222292.151|109.893 +638043.767|222289.966|109.865 +638049.546|222287.796|109.722 +638072.659|222279.155|108.351 +638123.872|222259.946|106.747 +638129.544|222257.831|106.302 +638152.298|222249.345|104.519 +638157.936|222247.242|104.071 +638163.508|222245.154|103.876 +638169.083|222243.072|103.462 +638174.716|222240.969|103.090 +638180.269|222238.894|102.797 +638207.643|222230.170|100.953 +638196.445|222234.352|102.175 +638190.934|222236.422|102.529 +638185.411|222238.503|102.706 +638179.961|222240.558|102.873 +638174.399|222242.649|103.230 +638168.793|222244.755|103.516 +638163.158|222246.870|103.940 +638157.580|222248.970|104.175 +638151.944|222251.083|104.629 +638134.930|222257.468|105.812 +638129.209|222259.605|106.430 +638117.843|222263.881|106.979 +638112.180|222266.015|107.211 +638106.529|222268.154|107.165 +638100.945|222270.270|107.137 +638083.913|222276.713|107.238 +638072.300|222281.060|108.302 +638066.417|222283.263|108.783 +638054.737|222287.637|109.753 +638049.010|222289.807|109.701 +638043.277|222291.978|109.686 +638037.473|222294.163|109.969 +638031.615|222296.367|110.234 +638025.787|222298.564|110.405 +638014.153|222302.954|110.716 +638008.313|222305.163|110.722 +638002.394|222307.401|110.829 +637996.602|222309.598|110.667 +637990.738|222311.811|110.844 +637984.785|222314.048|111.139 +637978.970|222316.249|111.149 +637973.087|222318.474|111.197 +637967.144|222320.720|111.240 +637961.279|222322.942|111.243 +637955.369|222325.180|111.182 +637949.447|222327.423|111.197 +637943.528|222329.660|111.210 +637937.401|222331.949|111.898 +637913.093|222341.051|114.023 +637888.788|222350.158|115.967 +637882.583|222352.471|116.696 +637876.465|222354.757|117.324 +637864.276|222359.348|117.842 +637858.208|222361.634|118.004 +637852.127|222363.926|118.247 +637846.098|222366.221|117.946 +637840.112|222368.495|117.760 +637834.040|222370.796|117.714 +637827.959|222373.097|117.729 +637821.869|222375.395|117.802 +637815.795|222377.694|117.827 +637809.769|222379.986|117.620 +637803.603|222382.324|117.501 +637797.552|222384.616|117.455 +637785.257|222389.270|117.467 +637779.139|222391.583|117.501 +637772.958|222393.918|117.565 +637766.871|222396.226|117.479 +637760.711|222398.554|117.473 +637754.566|222400.883|117.394 +637748.288|222403.242|117.757 +637742.128|222405.568|117.805 +637735.961|222407.912|117.562 +637729.823|222410.234|117.540 +637723.629|222412.581|117.476 +637717.426|222414.925|117.507 +637711.254|222417.266|117.370 +637705.106|222419.604|117.089 +637698.898|222421.966|116.818 +637692.552|222424.337|117.452 +637686.300|222426.681|117.900 +637680.018|222429.043|118.156 +637673.761|222431.406|118.314 +637667.503|222433.762|118.482 +637661.200|222436.142|118.561 +637654.955|222438.498|118.683 +637648.700|222440.854|118.909 +637642.360|222443.253|118.894 +637636.161|222445.603|118.778 +637629.872|222447.978|118.872 +637623.609|222450.349|118.827 +637617.345|222452.720|118.790 +637611.002|222455.113|118.903 +637604.699|222457.484|119.201 +637598.329|222459.877|119.582 +637592.062|222462.242|119.646 +637585.740|222464.632|119.713 +637579.413|222467.019|119.832 +637572.969|222469.405|120.914 +637566.639|222471.789|121.128 +637560.332|222474.172|121.173 +637553.965|222476.577|121.250 +637547.668|222478.961|121.241 +637541.297|222481.362|121.378 +637534.982|222483.740|121.597 +637528.612|222486.142|121.792 +637522.250|222488.541|121.923 +637515.947|222490.918|122.106 +637509.528|222493.338|122.268 +637503.228|222495.709|122.493 +637496.864|222498.105|122.752 +637490.432|222500.519|123.127 +637484.071|222502.912|123.426 +637495.053|222502.503|123.200 +637501.423|222500.117|122.896 +637507.733|222497.755|122.606 +637514.033|222495.389|122.429 +637520.339|222493.021|122.231 +637526.655|222490.656|121.966 +637532.949|222488.284|121.926 +637539.264|222485.916|121.722 +637545.513|222483.566|121.582 +637551.822|222481.195|121.478 +637558.061|222478.845|121.472 +637564.371|222476.470|121.387 +637570.574|222474.142|121.222 +637576.907|222471.767|121.018 +637583.281|222469.411|120.021 +637589.572|222467.055|119.729 +637595.832|222464.699|119.695 +637602.026|222462.364|119.735 +637608.280|222460.026|119.320 +637614.575|222457.664|119.095 +637620.811|222455.326|118.881 +637627.001|222452.989|119.025 +637633.231|222450.648|118.912 +637639.370|222448.328|119.022 +637645.600|222445.987|118.939 +637651.757|222443.665|118.948 +637657.990|222441.321|118.891 +637664.178|222438.995|118.744 +637670.374|222436.670|118.570 +637676.559|222434.344|118.500 +637682.761|222432.015|118.314 +637688.897|222429.708|118.211 +637695.082|222427.379|118.189 +637701.275|222425.066|117.766 +637707.377|222422.743|118.318 +637713.613|222420.424|117.656 +637719.722|222418.116|117.818 +637725.863|222415.803|117.796 +637732.005|222413.489|117.799 +637738.104|222411.197|117.711 +637744.228|222408.884|117.860 +637750.318|222406.589|117.848 +637756.465|222404.288|117.534 +637762.589|222401.971|117.757 +637768.639|222399.694|117.674 +637780.798|222395.116|117.629 +637786.915|222392.815|117.601 +637799.031|222388.252|117.568 +637805.090|222385.969|117.574 +637811.073|222383.710|117.671 +637817.096|222381.431|117.903 +637823.104|222379.169|117.909 +637829.133|222376.901|117.818 +637835.147|222374.637|117.839 +637841.087|222372.393|117.924 +637847.076|222370.129|118.107 +637853.063|222367.867|118.311 +637859.055|222365.614|118.193 +637865.096|222363.353|117.845 +637871.107|222361.097|117.684 +637877.112|222358.842|117.574 +637883.116|222356.598|117.178 +637889.102|222354.355|116.897 +637895.329|222352.060|115.800 +637901.493|222349.789|114.736 +637907.497|222347.552|114.151 +637913.523|222345.287|114.090 +637925.553|222340.807|112.959 +637943.451|222334.104|112.127 +637949.547|222331.846|111.310 +637955.476|222329.627|110.990 +637961.300|222327.426|111.149 +637967.153|222325.219|111.200 +637973.020|222323.009|111.203 +637978.833|222320.821|111.188 +637984.636|222318.632|111.228 +637990.540|222316.414|111.136 +637996.350|222314.237|110.926 +638002.189|222312.052|110.597 +638007.999|222309.857|110.682 +638013.748|222307.690|110.777 +638019.511|222305.517|110.832 +638025.281|222303.353|110.609 +638031.112|222301.164|110.423 +638036.922|222298.979|110.344 +638042.664|222296.830|110.045 +638048.467|222294.657|109.771 +638054.274|222292.484|109.503 +638059.983|222290.338|109.396 +638094.636|222277.378|107.345 +638100.201|222275.281|107.427 +638128.392|222264.683|106.942 +638134.119|222262.555|106.290 +638156.687|222254.131|104.672 +638168.050|222249.906|103.474 +638190.120|222241.631|102.684 +638195.735|222239.537|102.206 +638201.218|222237.482|101.962 +638217.940|222231.277|99.987 +638198.182|222240.610|102.041 +638192.717|222242.667|102.242 +638187.100|222244.767|102.745 +638181.552|222246.849|103.029 +638175.923|222248.961|103.394 +638170.369|222251.046|103.745 +638164.755|222253.152|104.092 +638136.485|222263.744|106.159 +638130.727|222265.896|106.680 +638113.728|222272.278|107.616 +638108.120|222274.409|107.418 +638102.405|222276.558|107.649 +638096.812|222278.682|107.430 +638068.042|222289.487|108.957 +638062.250|222291.670|109.125 +638056.465|222293.849|109.277 +638050.677|222296.016|109.722 +638044.822|222298.220|109.948 +638038.979|222300.421|110.140 +638033.197|222302.597|110.371 +638027.369|222304.791|110.542 +638021.514|222307.001|110.585 +638015.646|222309.214|110.701 +638009.922|222311.387|110.509 +638004.098|222313.591|110.481 +637998.187|222315.810|110.832 +637992.277|222318.038|110.932 +637986.370|222320.266|111.042 +637980.561|222322.464|111.033 +637968.765|222326.926|110.996 +637962.849|222329.163|110.960 +637956.954|222331.398|110.826 +637950.919|222333.656|111.353 +637944.802|222335.927|112.264 +637938.602|222338.222|113.285 +637914.614|222347.256|113.998 +637902.535|222351.795|114.590 +637896.216|222354.114|116.092 +637877.956|222360.951|117.504 +637871.823|222363.264|117.632 +637865.800|222365.529|117.869 +637859.698|222367.821|118.205 +637853.611|222370.122|118.174 +637847.604|222372.399|118.089 +637841.581|222374.691|117.778 +637835.482|222376.990|117.866 +637829.432|222379.285|117.738 +637823.326|222381.586|117.903 +637817.200|222383.902|117.869 +637811.174|222386.188|117.665 +637805.063|222388.502|117.592 +637798.961|222390.815|117.504 +637792.822|222393.129|117.616 +637786.653|222395.464|117.586 +637780.538|222397.774|117.610 +637774.375|222400.103|117.592 +637768.191|222402.437|117.702 +637762.025|222404.766|117.744 +637755.880|222407.092|117.662 +637749.693|222409.423|117.863 +637743.545|222411.746|117.854 +637737.360|222414.093|117.711 +637731.142|222416.440|117.802 +637724.995|222418.759|117.839 +637718.746|222421.128|117.790 +637712.473|222423.475|118.266 +637706.277|222425.816|118.299 +637700.108|222428.153|118.196 +637693.865|222430.516|118.174 +637687.611|222432.875|118.260 +637681.372|222435.234|118.269 +637675.096|222437.593|118.537 +637668.832|222439.952|118.753 +637662.590|222442.308|118.830 +637656.360|222444.661|118.869 +637650.056|222447.039|119.015 +637643.808|222449.392|119.232 +637637.511|222451.785|118.939 +637631.293|222454.135|118.970 +637624.962|222456.527|118.951 +637618.689|222458.899|118.997 +637612.398|222461.267|119.180 +637606.019|222463.660|119.610 +637599.752|222466.025|119.680 +637593.443|222468.415|119.613 +637587.100|222470.801|119.826 +637580.662|222473.188|120.850 +637574.304|222475.571|121.241 +637567.983|222477.955|121.408 +637561.609|222480.360|121.503 +637555.358|222482.719|121.622 +637548.997|222485.121|121.664 +637542.639|222487.522|121.701 +637536.317|222489.900|121.975 +637529.956|222492.299|122.112 +637523.592|222494.697|122.274 +637517.227|222497.093|122.460 +637510.924|222499.468|122.701 +637504.499|222501.885|122.935 +637498.141|222504.277|123.161 +637511.893|222502.671|122.899 +637518.255|222500.281|122.731 +637524.500|222497.938|122.518 +637530.803|222495.569|122.347 +637537.109|222493.198|122.201 +637543.425|222490.830|121.993 +637549.731|222488.455|121.878 +637555.980|222486.108|121.798 +637562.283|222483.734|121.771 +637568.537|222481.384|121.667 +637574.813|222479.031|121.426 +637581.110|222476.678|121.036 +637587.414|222474.322|120.616 +637593.808|222471.962|119.531 +637600.048|222469.606|119.686 +637606.250|222467.268|119.665 +637612.468|222464.934|119.576 +637618.784|222462.572|119.217 +637625.002|222460.231|119.153 +637631.232|222457.890|119.025 +637637.407|222455.570|118.869 +637643.470|222453.239|119.979 +637649.724|222450.913|119.302 +637655.985|222448.566|119.055 +637662.157|222446.243|119.000 +637668.411|222443.893|118.839 +637674.520|222441.592|118.857 +637680.786|222439.242|118.671 +637686.943|222436.935|118.403 +637693.204|222434.582|118.305 +637699.334|222432.274|118.266 +637705.518|222429.943|118.302 +637711.647|222427.635|118.308 +637717.847|222425.300|118.281 +637723.910|222423.014|118.345 +637730.176|222420.671|117.958 +637736.263|222418.382|117.940 +637742.411|222416.065|117.943 +637748.492|222413.773|117.985 +637754.658|222411.453|117.930 +637760.757|222409.155|117.909 +637766.853|222406.860|117.930 +637772.979|222404.559|117.802 +637779.088|222402.258|117.790 +637785.208|222399.953|117.732 +637791.191|222397.701|117.784 +637797.324|222395.393|117.708 +637803.389|222393.110|117.662 +637809.391|222390.849|117.665 +637815.420|222388.569|117.860 +637821.403|222386.310|117.991 +637827.487|222384.021|117.943 +637833.510|222381.754|117.909 +637839.520|222379.489|117.955 +637845.519|222377.224|118.086 +637851.478|222374.978|118.098 +637857.482|222372.710|118.241 +637863.481|222370.458|118.098 +637869.516|222368.199|117.812 +637875.517|222365.944|117.705 +637881.555|222363.682|117.455 +637905.961|222354.608|114.870 +637917.994|222350.118|113.941 +637924.054|222347.860|113.468 +637947.804|222338.941|112.877 +637953.842|222336.707|112.048 +637959.990|222334.436|111.054 +637965.918|222332.217|110.765 +637971.752|222330.014|110.920 +637977.598|222327.807|111.033 +637983.402|222325.618|111.069 +637995.042|222321.235|111.054 +638000.900|222319.035|110.923 +638006.801|222316.828|110.630 +638012.647|222314.640|110.316 +638018.393|222312.469|110.435 +638024.141|222310.299|110.560 +638029.926|222308.120|110.554 +638035.699|222305.953|110.350 +638041.466|222303.789|110.198 +638047.218|222301.625|110.121 +638053.036|222299.448|109.795 +638058.861|222297.269|109.475 +638064.646|222295.108|109.079 +638070.373|222292.956|108.927 +638076.122|222290.789|108.957 +638099.046|222282.206|107.817 +638110.333|222277.951|107.909 +638115.956|222275.835|107.799 +638132.970|222269.471|106.848 +638144.312|222265.228|106.235 +638150.100|222263.083|105.415 +638155.736|222260.973|105.178 +638161.314|222258.895|104.681 +638166.931|222256.795|104.309 +638189.331|222248.437|102.572 +638205.888|222242.240|101.691 +638211.490|222240.158|101.078 +638217.104|222238.074|100.447 +638222.804|222235.980|99.325 +638210.627|222242.862|101.148 +638193.997|222249.089|102.523 +638188.532|222251.156|102.520 +638182.951|222253.234|103.157 +638177.261|222255.359|103.748 +638171.741|222257.435|104.001 +638166.114|222259.544|104.403 +638160.527|222261.644|104.699 +638149.067|222265.920|105.885 +638137.728|222270.169|106.732 +638132.126|222272.278|106.942 +638120.687|222276.561|107.808 +638115.082|222278.679|107.845 +638075.147|222293.724|109.067 +638069.514|222295.864|108.860 +638063.738|222298.028|109.222 +638057.880|222300.223|109.689 +638052.018|222302.426|109.917 +638046.255|222304.599|110.054 +638040.475|222306.776|110.268 +638034.663|222308.970|110.371 +638028.878|222311.156|110.390 +638023.099|222313.341|110.393 +638017.292|222315.542|110.262 +638011.410|222317.755|110.472 +638005.506|222319.974|110.798 +637999.654|222322.180|110.914 +637993.777|222324.402|110.896 +637987.903|222326.624|110.877 +637982.018|222328.846|110.935 +637976.181|222331.062|110.795 +637970.350|222333.272|110.649 +637964.385|222335.518|110.829 +637958.231|222337.798|111.859 +637946.036|222342.331|113.520 +637934.015|222346.857|113.947 +637928.217|222349.070|113.517 +637916.059|222353.624|114.410 +637903.864|222358.180|115.590 +637897.597|222360.488|116.870 +637891.522|222362.768|117.278 +637885.487|222365.035|117.507 +637879.452|222367.321|117.476 +637873.426|222369.589|117.720 +637867.288|222371.899|117.906 +637855.166|222376.468|118.232 +637849.100|222378.767|118.147 +637843.099|222381.037|118.055 +637837.024|222383.336|118.034 +637830.971|222385.628|117.933 +637824.835|222387.947|117.958 +637818.782|222390.239|117.891 +637812.680|222392.553|117.772 +637806.581|222394.863|117.644 +637800.454|222397.177|117.693 +637794.331|222399.490|117.748 +637788.226|222401.797|117.726 +637781.989|222404.153|117.760 +637775.881|222406.464|117.799 +637769.700|222408.792|117.906 +637763.540|222411.121|117.903 +637757.319|222413.468|117.927 +637751.180|222415.791|117.842 +637744.999|222418.119|118.034 +637738.823|222420.460|117.863 +637732.609|222422.804|117.927 +637726.336|222425.154|118.372 +637720.164|222427.492|118.220 +637713.988|222429.830|118.122 +637707.725|222432.192|118.199 +637701.498|222434.533|118.464 +637695.271|222436.892|118.354 +637689.062|222439.227|118.537 +637682.740|222441.610|118.683 +637676.562|222443.942|118.738 +637670.249|222446.320|118.872 +637664.007|222448.673|118.982 +637657.689|222451.050|119.195 +637651.236|222453.412|120.817 +637644.954|222455.784|120.869 +637638.956|222458.143|118.915 +637632.658|222460.511|119.073 +637626.319|222462.904|119.153 +637620.034|222465.272|119.278 +637613.660|222467.665|119.643 +637607.393|222470.030|119.692 +637601.066|222472.417|119.744 +637594.738|222474.803|119.854 +637588.322|222477.190|120.658 +637581.961|222479.573|121.067 +637575.603|222481.957|121.506 +637569.214|222484.359|121.710 +637562.896|222486.739|121.878 +637556.531|222489.141|121.917 +637550.231|222491.518|121.966 +637543.861|222493.917|122.140 +637537.484|222496.316|122.371 +637531.190|222498.690|122.454 +637524.759|222501.110|122.673 +637518.459|222503.482|122.877 +637529.130|222503.195|122.786 +637535.433|222500.827|122.649 +637541.681|222498.480|122.460 +637547.994|222496.109|122.298 +637554.242|222493.759|122.158 +637560.543|222491.384|122.121 +637566.794|222489.031|122.006 +637573.061|222486.678|121.798 +637579.349|222484.322|121.442 +637585.646|222481.966|121.058 +637591.946|222479.610|120.658 +637598.271|222477.251|120.107 +637604.577|222474.888|119.732 +637610.719|222472.575|119.698 +637616.970|222470.213|119.790 +637623.222|222467.872|119.454 +637629.455|222465.531|119.268 +637635.639|222463.209|119.015 +637641.833|222460.846|119.607 +637647.709|222458.539|121.545 +637653.738|222456.226|122.420 +637660.206|222453.866|120.710 +637666.595|222451.529|119.168 +637672.791|222449.200|118.985 +637678.967|222446.874|118.945 +637685.185|222444.543|118.671 +637691.369|222442.211|118.622 +637697.526|222439.900|118.378 +637703.710|222437.569|118.382 +637709.846|222435.258|118.314 +637716.024|222432.924|118.394 +637722.218|222430.607|118.019 +637728.360|222428.294|117.994 +637734.498|222425.977|118.007 +637740.637|222423.661|118.031 +637746.733|222421.366|117.964 +637752.881|222419.046|117.967 +637758.965|222416.751|118.016 +637765.137|222414.425|117.936 +637771.233|222412.127|117.952 +637777.280|222409.847|117.906 +637783.388|222407.546|117.888 +637789.426|222405.266|117.952 +637795.541|222402.962|117.940 +637801.609|222400.676|117.869 +637807.678|222398.390|117.808 +637813.725|222396.107|117.891 +637819.721|222393.842|117.930 +637825.756|222391.559|118.110 +637831.788|222389.291|118.001 +637837.789|222387.024|118.065 +637843.806|222384.756|118.065 +637849.811|222382.485|118.165 +637855.803|222380.233|118.007 +637873.844|222373.445|117.687 +637879.821|222371.192|117.702 +637885.832|222368.931|117.571 +637910.067|222359.890|115.465 +637922.143|222355.376|114.623 +637928.242|222353.121|113.666 +637934.207|222350.871|113.648 +637963.974|222339.719|112.106 +637970.121|222337.457|110.859 +637976.117|222335.211|110.579 +637981.881|222333.028|110.765 +637987.672|222330.840|110.850 +637993.545|222328.624|110.883 +637999.306|222326.454|110.862 +638005.128|222324.256|110.874 +638010.931|222322.077|110.722 +638016.814|222319.867|110.521 +638022.672|222317.672|110.167 +638028.411|222315.502|110.329 +638034.099|222313.350|110.454 +638039.878|222311.168|110.490 +638045.669|222308.998|110.234 +638051.436|222306.828|110.094 +638057.139|222304.682|109.978 +638062.970|222302.499|109.631 +638068.773|222300.320|109.399 +638074.552|222298.171|108.802 +638080.340|222295.992|108.674 +638131.346|222276.814|107.406 +638142.797|222272.547|106.348 +638159.756|222266.207|105.123 +638165.377|222264.107|104.711 +638176.593|222259.907|104.047 +638198.896|222251.579|102.258 +638204.437|222249.510|101.809 +638215.544|222245.364|100.895 +638221.116|222243.295|100.182 +638222.621|222244.602|99.953 +638205.821|222250.878|101.773 +638200.334|222252.945|102.038 +638194.723|222255.048|102.520 +638189.221|222257.115|102.870 +638177.928|222261.339|103.958 +638172.290|222263.454|104.394 +638166.678|222265.561|104.745 +638144.013|222274.061|106.467 +638138.350|222276.186|106.872 +638126.963|222280.468|107.506 +638121.242|222282.614|107.960 +638109.836|222286.906|108.536 +638081.453|222297.641|108.725 +638075.646|222299.829|108.930 +638069.834|222302.009|109.414 +638064.079|222304.173|109.710 +638058.300|222306.355|109.856 +638052.521|222308.534|110.027 +638040.948|222312.905|110.231 +638035.135|222315.103|110.338 +638029.393|222317.282|110.173 +638023.535|222319.498|110.237 +638017.667|222321.699|110.633 +638011.824|222323.912|110.682 +638005.917|222326.143|110.743 +638000.102|222328.346|110.707 +637994.277|222330.550|110.737 +637988.416|222332.772|110.667 +637982.490|222335.019|110.618 +637976.638|222337.237|110.539 +637970.573|222339.493|111.414 +637946.240|222348.576|114.114 +637916.281|222359.866|115.230 +637910.222|222362.146|115.480 +637897.902|222366.739|117.022 +637891.809|222369.022|117.513 +637885.838|222371.287|117.440 +637879.769|222373.576|117.568 +637873.750|222375.847|117.781 +637867.657|222378.139|118.052 +637861.625|222380.422|118.061 +637855.602|222382.702|118.052 +637849.518|222385.006|118.040 +637843.425|222387.310|118.098 +637837.375|222389.605|117.952 +637831.297|222391.907|117.967 +637825.201|222394.208|118.110 +637819.099|222396.524|117.970 +637813.036|222398.819|117.964 +637806.879|222401.154|117.830 +637800.805|222403.449|117.927 +637794.614|222405.790|118.007 +637788.515|222408.101|117.958 +637776.189|222412.767|117.918 +637770.090|222415.074|117.930 +637763.851|222417.431|118.065 +637757.688|222419.759|118.122 +637751.570|222422.082|117.952 +637745.364|222424.432|117.936 +637739.223|222426.757|117.946 +637733.023|222429.101|117.952 +637726.817|222431.448|118.016 +637720.596|222433.795|118.189 +637714.397|222436.136|118.257 +637708.154|222438.501|118.217 +637701.973|222440.842|118.223 +637695.700|222443.204|118.421 +637689.443|222445.567|118.552 +637683.164|222447.929|118.857 +637676.922|222450.288|118.933 +637670.670|222452.647|119.101 +637664.300|222455.009|120.107 +637657.698|222457.405|122.326 +637651.471|222459.755|122.445 +637645.417|222462.139|120.475 +637639.416|222464.480|119.003 +637633.137|222466.851|119.073 +637626.760|222469.250|119.418 +637620.457|222471.621|119.732 +637614.142|222474.011|119.680 +637607.878|222476.379|119.732 +637601.535|222478.772|119.948 +637595.153|222481.161|120.494 +637588.795|222483.548|120.875 +637582.427|222485.934|121.384 +637576.075|222488.318|121.786 +637569.684|222490.726|122.051 +637563.371|222493.106|122.188 +637557.010|222495.511|122.246 +637550.710|222497.892|122.353 +637544.342|222500.294|122.505 +637538.036|222502.671|122.716 +637546.028|222503.442|122.688 +637552.340|222501.074|122.527 +637558.589|222498.724|122.408 +637564.898|222496.353|122.316 +637571.153|222494.003|122.198 +637577.493|222491.628|121.905 +637583.732|222489.296|121.478 +637590.096|222486.919|121.039 +637596.351|222484.584|120.546 +637602.651|222482.228|120.207 +637608.948|222479.890|119.454 +637615.178|222477.531|119.704 +637621.387|222475.193|119.656 +637627.596|222472.855|119.643 +637633.853|222470.515|119.302 +637640.099|222468.174|119.080 +637646.295|222465.833|119.220 +637652.211|222463.504|121.320 +637658.237|222461.194|122.243 +637664.550|222458.844|121.609 +637670.905|222456.509|120.299 +637677.205|222454.177|119.418 +637683.435|222451.849|119.034 +637689.644|222449.520|118.836 +637695.883|222447.185|118.452 +637702.095|222444.853|118.263 +637708.237|222442.546|118.156 +637714.439|222440.211|118.086 +637720.542|222437.904|118.275 +637726.778|222435.566|118.028 +637732.932|222433.253|117.930 +637739.073|222430.939|117.940 +637745.243|222428.623|117.805 +637751.226|222426.340|118.412 +637794.050|222410.222|118.080 +637800.128|222407.939|117.946 +637806.194|222405.656|117.900 +637812.235|222403.376|118.010 +637818.291|222401.093|118.046 +637824.271|222398.832|118.174 +637830.358|222396.543|118.092 +637836.384|222394.278|118.034 +637842.383|222392.013|118.132 +637848.405|222389.745|118.107 +637854.450|222387.472|118.016 +637860.497|222385.198|117.915 +637866.462|222382.951|117.936 +637872.469|222380.696|117.778 +637878.565|222378.410|117.498 +637884.588|222376.151|117.303 +637890.547|222373.902|117.446 +637896.573|222371.653|116.964 +637902.541|222369.412|116.806 +637914.730|222364.874|115.638 +637938.718|222355.903|114.267 +637944.713|222353.651|114.130 +637980.735|222340.237|110.792 +637986.687|222338.012|110.448 +637992.482|222335.823|110.536 +637998.273|222333.638|110.661 +638004.091|222331.443|110.673 +638009.916|222329.249|110.688 +638015.680|222327.075|110.701 +638021.505|222324.890|110.493 +638027.369|222322.683|110.390 +638033.166|222320.513|110.057 +638038.918|222318.340|110.201 +638044.618|222316.185|110.307 +638050.433|222313.996|110.219 +638056.194|222311.829|110.115 +638061.912|222309.680|109.945 +638067.700|222307.507|109.771 +638073.449|222305.352|109.521 +638079.258|222303.170|109.308 +638085.010|222301.024|108.835 +638090.679|222298.881|108.945 +638107.721|222292.465|108.771 +638113.323|222290.353|108.716 +638124.747|222286.077|108.098 +638130.383|222283.967|107.735 +638136.034|222281.846|107.570 +638181.309|222264.954|103.721 +638186.877|222262.872|103.337 +638203.684|222256.602|101.956 +638220.265|222250.412|100.618 +638225.874|222248.327|100.014 +638202.395|222258.437|101.995 +638191.175|222262.625|103.193 +638146.080|222279.533|106.391 +638140.371|222281.666|106.973 +638134.610|222283.818|107.521 +638123.232|222288.091|108.165 +638094.742|222298.823|109.070 +638089.073|222300.972|108.945 +638083.355|222303.133|109.039 +638077.570|222305.304|109.408 +638071.815|222307.468|109.664 +638066.030|222309.647|109.826 +638060.193|222311.851|109.951 +638054.408|222314.030|110.149 +638048.681|222316.194|110.121 +638042.871|222318.389|110.204 +638037.135|222320.568|109.993 +638031.286|222322.769|110.274 +638025.370|222324.991|110.573 +638019.502|222327.203|110.697 +638013.687|222329.407|110.627 +638007.850|222331.611|110.673 +638002.019|222333.815|110.704 +637996.112|222336.058|110.533 +637990.311|222338.252|110.469 +637984.398|222340.481|110.643 +637978.058|222342.797|112.407 +637948.063|222354.056|114.239 +637942.071|222356.315|114.370 +637923.999|222363.106|115.300 +637917.918|222365.392|115.638 +637905.839|222369.927|116.284 +637899.716|222372.216|116.900 +637893.589|222374.515|117.242 +637887.609|222376.779|117.226 +637881.510|222379.071|117.491 +637875.438|222381.360|117.641 +637869.391|222383.646|117.696 +637863.310|222385.932|117.940 +637857.211|222388.237|117.994 +637851.173|222390.520|118.077 +637845.019|222392.842|118.116 +637839.002|222395.119|118.122 +637832.867|222397.439|118.122 +637826.774|222399.737|118.238 +637820.678|222402.050|118.068 +637814.551|222404.367|118.083 +637808.446|222406.680|117.988 +637802.210|222409.024|118.305 +637746.834|222429.994|117.909 +637740.655|222432.341|117.741 +637734.431|222434.688|117.882 +637728.213|222437.038|118.010 +637722.008|222439.382|118.077 +637715.820|222441.726|118.043 +637709.566|222444.091|118.092 +637703.296|222446.457|118.241 +637697.069|222448.801|118.528 +637690.683|222451.190|119.092 +637684.502|222453.528|119.150 +637678.065|222455.921|120.119 +637671.670|222458.286|121.262 +637665.330|222460.670|121.646 +637659.106|222463.023|121.682 +637652.982|222465.391|120.625 +637646.917|222467.753|119.128 +637640.571|222470.152|119.204 +637634.280|222472.526|119.360 +637627.955|222474.901|119.774 +637621.637|222477.296|119.704 +637615.370|222479.665|119.741 +637608.966|222482.082|119.921 +637602.657|222484.450|120.329 +637596.296|222486.840|120.719 +637589.925|222489.229|121.198 +637583.500|222491.637|121.646 +637577.148|222494.024|122.054 +637570.811|222496.407|122.344 +637564.441|222498.815|122.457 +637558.132|222501.196|122.597 +637551.764|222503.601|122.704 +637563.057|222503.128|122.658 +637569.248|222500.803|122.521 +637575.578|222498.431|122.262 +637581.851|222496.081|121.996 +637588.157|222493.728|121.506 +637594.455|222491.375|121.097 +637600.761|222489.022|120.668 +637607.061|222486.666|120.308 +637613.304|222484.331|119.951 +637619.598|222481.972|119.707 +637625.809|222479.634|119.637 +637631.997|222477.299|119.762 +637638.264|222474.959|119.342 +637644.497|222472.618|119.195 +637650.657|222470.301|119.137 +637656.856|222467.960|119.265 +637662.818|222465.653|120.622 +637668.945|222463.315|121.277 +637675.093|222460.996|121.378 +637681.301|222458.670|121.079 +637687.623|222456.338|120.055 +637693.951|222454.001|119.040 +637700.114|222451.693|118.747 +637706.390|222449.358|118.135 +637712.553|222447.051|117.894 +637718.737|222444.719|117.921 +637724.879|222442.409|117.857 +637731.021|222440.099|117.815 +637737.181|222437.785|117.668 +637743.289|222435.475|117.876 +637755.405|222430.881|118.534 +637792.057|222417.098|118.141 +637798.125|222414.818|118.028 +637816.255|222407.982|118.226 +637822.348|222405.696|118.052 +637828.392|222403.416|118.168 +637834.400|222401.151|118.162 +637840.395|222398.893|118.250 +637846.421|222396.625|118.183 +637852.410|222394.378|118.013 +637858.433|222392.108|118.013 +637864.487|222389.837|117.885 +637870.485|222387.584|117.726 +637876.502|222385.329|117.516 +637882.449|222383.098|117.357 +637906.516|222374.076|116.477 +637912.505|222371.832|116.233 +637924.514|222367.337|115.647 +637930.436|222365.115|115.477 +637942.406|222360.634|114.925 +637990.311|222342.788|110.743 +637996.240|222340.578|110.256 +638002.083|222338.371|110.417 +638007.822|222336.207|110.493 +638013.641|222334.013|110.518 +638019.414|222331.843|110.505 +638025.248|222329.645|110.518 +638031.002|222327.487|110.341 +638036.800|222325.305|110.274 +638042.673|222323.110|109.920 +638048.373|222320.958|110.036 +638054.073|222318.806|110.152 +638059.782|222316.666|110.006 +638065.536|222314.499|109.942 +638071.327|222312.329|109.765 +638077.058|222310.180|109.591 +638082.794|222308.028|109.408 +638088.549|222305.874|109.170 +638094.315|222303.712|108.908 +638099.851|222301.609|109.308 +638116.901|222295.209|108.908 +638139.639|222286.705|107.665 +638162.341|222278.249|105.696 +638207.305|222261.504|101.776 +638212.779|222259.452|101.572 +638229.449|222253.247|99.999 +638225.892|222255.901|100.063 +638203.654|222264.219|102.056 +638186.847|222270.511|103.526 +638164.328|222278.938|105.482 +638130.081|222291.764|108.274 +638118.669|222296.053|108.875 +638107.187|222300.375|109.347 +638101.618|222302.484|109.317 +638096.047|222304.615|108.826 +638090.268|222306.785|109.152 +638084.531|222308.946|109.323 +638078.728|222311.131|109.527 +638072.998|222313.289|109.719 +638067.222|222315.469|109.865 +638061.473|222317.642|109.914 +638055.706|222319.815|110.045 +638049.952|222322.001|109.905 +638044.240|222324.165|109.862 +638038.372|222326.368|110.207 +638032.514|222328.578|110.271 +638026.717|222330.770|110.374 +638020.880|222332.973|110.384 +638015.052|222335.180|110.393 +638009.169|222337.405|110.371 +638003.351|222339.606|110.359 +637997.578|222341.800|110.192 +637991.512|222344.068|110.734 +637979.201|222348.610|113.246 +637937.169|222364.401|115.480 +637931.241|222366.651|115.382 +637925.243|222368.906|115.629 +637919.165|222371.189|115.967 +637913.188|222373.442|116.160 +637907.144|222375.719|116.385 +637882.912|222384.847|117.208 +637876.834|222387.136|117.403 +637870.747|222389.425|117.677 +637864.666|222391.711|117.949 +637858.570|222394.016|117.994 +637852.542|222396.293|118.052 +637846.442|222398.597|118.162 +637840.374|222400.892|118.132 +637834.345|222403.184|117.921 +637828.176|222405.507|118.141 +637822.071|222407.820|118.034 +637815.941|222410.121|118.418 +637809.818|222412.435|118.455 +637803.725|222414.745|118.354 +637797.598|222417.074|118.101 +637791.475|222419.384|118.196 +637748.315|222435.725|117.964 +637742.131|222438.069|117.863 +637735.952|222440.412|117.723 +637729.777|222442.753|117.601 +637723.571|222445.097|117.693 +637717.381|222447.438|117.699 +637711.108|222449.803|117.869 +637704.878|222452.147|118.165 +637698.501|222454.519|119.052 +637692.131|222456.887|119.957 +637685.770|222459.252|120.820 +637679.497|222461.611|121.125 +637673.291|222463.964|121.021 +637667.076|222466.336|120.576 +637660.950|222468.701|119.518 +637654.796|222471.051|119.092 +637648.523|222473.425|119.083 +637642.226|222475.797|119.253 +637635.914|222478.171|119.579 +637629.641|222480.543|119.625 +637623.362|222482.911|119.747 +637617.046|222485.300|119.729 +637610.728|222487.669|120.198 +637604.303|222490.083|120.579 +637598.006|222492.448|120.954 +637591.596|222494.856|121.301 +637585.231|222497.243|121.774 +637578.943|222499.602|122.167 +637572.549|222502.007|122.490 +637566.178|222504.411|122.612 +637580.361|222502.601|122.274 +637586.649|222500.248|121.890 +637592.943|222497.895|121.484 +637599.240|222495.539|121.116 +637605.543|222493.183|120.689 +637611.780|222490.848|120.354 +637618.065|222488.489|120.155 +637624.356|222486.148|119.457 +637630.604|222483.789|119.573 +637636.752|222481.472|119.552 +637643.003|222479.131|119.241 +637649.218|222476.790|119.226 +637655.448|222474.447|119.110 +637661.685|222472.103|119.000 +637667.701|222469.789|119.973 +637673.846|222467.448|120.500 +637679.997|222465.129|120.594 +637686.111|222462.806|120.927 +637692.268|222460.484|121.009 +637698.538|222458.149|120.369 +637705.012|222455.799|118.449 +637711.202|222453.485|117.994 +637717.420|222451.151|117.799 +637723.553|222448.843|117.772 +637735.876|222444.198|117.796 +637742.009|222441.885|117.839 +637748.120|222439.571|118.019 +637754.207|222437.279|117.988 +637766.347|222432.661|118.906 +637790.826|222423.478|118.052 +637802.929|222418.903|118.336 +637814.963|222414.364|118.385 +637821.104|222412.057|118.278 +637827.121|222409.792|118.180 +637833.150|222407.528|118.055 +637839.216|222405.239|118.080 +637845.223|222402.974|118.104 +637851.237|222400.709|118.110 +637857.257|222398.438|118.107 +637863.219|222396.192|118.098 +637869.287|222393.915|117.897 +637875.246|222391.684|117.638 +637881.333|222389.401|117.373 +637887.359|222387.139|117.144 +637893.400|222384.878|116.848 +637917.333|222375.892|116.126 +637935.216|222369.178|115.617 +637941.114|222366.956|115.580 +637947.002|222364.737|115.611 +637994.804|222346.909|111.584 +638000.897|222344.665|110.393 +638006.765|222342.465|110.185 +638012.559|222340.276|110.298 +638018.286|222338.112|110.454 +638024.065|222335.936|110.387 +638029.893|222333.738|110.414 +638035.660|222331.565|110.448 +638041.414|222329.404|110.283 +638047.248|222327.216|110.076 +638053.052|222325.042|109.762 +638058.745|222322.891|109.899 +638064.460|222320.733|109.975 +638070.187|222318.575|110.006 +638075.884|222316.432|109.939 +638081.627|222314.277|109.692 +638087.357|222312.125|109.530 +638093.124|222309.967|109.241 +638098.814|222307.833|109.003 +638104.435|222305.712|109.067 +638110.037|222303.581|109.457 +638121.440|222299.317|108.817 +638127.097|222297.196|108.564 +638132.781|222295.068|108.235 +638166.797|222282.373|105.577 +638172.299|222280.301|105.580 +638177.962|222278.192|105.016 +638183.634|222276.082|104.446 +638189.230|222273.997|103.931 +638217.306|222263.558|100.913 +638228.330|222259.431|100.282 +638233.850|222257.377|99.743 +638215.855|222266.054|101.176 +638204.736|222270.209|102.230 +638182.125|222278.655|104.522 +638176.441|222280.776|105.144 +638142.361|222293.535|107.832 +638136.646|222295.678|108.253 +638130.998|222297.805|108.439 +638113.920|222304.218|109.387 +638108.339|222306.340|109.152 +638102.728|222308.477|108.799 +638096.958|222310.647|109.073 +638091.243|222312.792|109.399 +638085.525|222314.950|109.521 +638079.743|222317.130|109.652 +638073.952|222319.312|109.835 +638068.234|222321.476|109.750 +638062.488|222323.646|109.798 +638056.804|222325.804|109.612 +638050.933|222328.011|109.935 +638045.087|222330.209|110.179 +638039.262|222332.403|110.359 +638033.499|222334.586|110.307 +638027.680|222336.789|110.246 +638021.813|222338.999|110.399 +638016.043|222341.194|110.161 +638010.239|222343.391|110.076 +638004.314|222345.623|110.265 +637998.166|222347.893|111.417 +637961.867|222361.436|115.361 +637949.938|222365.931|115.660 +637944.076|222368.156|115.516 +637938.090|222370.412|115.663 +637920.107|222377.194|116.071 +637895.933|222386.301|116.766 +637889.901|222388.572|117.022 +637883.805|222390.861|117.296 +637877.788|222393.126|117.516 +637871.631|222395.439|117.839 +637865.572|222397.722|118.013 +637859.555|222399.999|117.982 +637853.404|222402.325|118.031 +637847.320|222404.623|118.068 +637841.310|222406.894|118.077 +637835.217|222409.207|117.879 +637829.093|222411.508|118.189 +637822.961|222413.825|118.235 +637816.834|222416.138|118.278 +637810.665|222418.473|118.232 +637792.328|222425.419|117.958 +637786.196|222427.730|118.135 +637779.932|222430.071|118.717 +637767.499|222434.755|119.104 +637755.438|222439.379|117.732 +637749.196|222441.729|117.964 +637743.030|222444.070|117.763 +637736.836|222446.414|117.723 +637730.652|222448.755|117.662 +637724.446|222451.096|117.769 +637718.259|222453.437|117.763 +637711.934|222455.805|118.278 +637699.160|222460.526|120.582 +637692.878|222462.888|120.924 +637686.712|222465.239|120.518 +637680.472|222467.613|120.201 +637674.279|222469.963|119.994 +637668.186|222472.307|119.122 +637661.895|222474.703|118.769 +637655.659|222477.053|118.930 +637649.374|222479.427|119.012 +637643.052|222481.801|119.381 +637636.767|222484.170|119.494 +637630.421|222486.562|119.662 +637624.106|222488.955|119.607 +637617.766|222491.323|120.229 +637611.417|222493.710|120.482 +637605.071|222496.100|120.738 +637598.774|222498.462|121.128 +637592.348|222500.870|121.588 +637585.999|222503.253|121.972 +637597.344|222502.662|121.350 +637603.641|222500.306|120.969 +637609.878|222497.971|120.637 +637616.156|222495.612|120.454 +637622.380|222493.277|120.265 +637628.733|222490.912|119.592 +637634.941|222488.574|119.555 +637641.168|222486.233|119.421 +637647.423|222483.892|119.110 +637653.665|222481.548|118.906 +637659.904|222479.204|118.753 +637666.049|222476.882|118.848 +637672.258|222474.538|118.945 +637678.305|222472.221|119.738 +637684.551|222469.893|119.208 +637690.747|222467.546|119.442 +637696.822|222465.226|120.091 +637715.671|222458.234|117.714 +637721.791|222455.924|117.757 +637728.006|222453.589|117.604 +637734.139|222451.279|117.620 +637740.253|222448.965|117.760 +637746.367|222446.655|117.903 +637752.524|222444.338|117.830 +637758.678|222442.022|117.775 +637764.597|222439.745|118.781 +637776.777|222435.136|119.162 +637782.953|222432.829|118.699 +637789.186|222430.516|117.955 +637795.321|222428.211|117.790 +637801.338|222425.934|117.967 +637807.334|222423.661|118.260 +637813.451|222421.356|118.260 +637819.504|222419.073|118.272 +637825.515|222416.812|118.217 +637831.586|222414.526|118.180 +637837.609|222412.258|118.086 +637843.675|222409.972|118.119 +637849.722|222407.701|117.949 +637855.687|222405.455|117.906 +637861.756|222403.163|117.979 +637867.708|222400.919|118.040 +637873.719|222398.664|117.824 +637879.791|222396.384|117.623 +637885.811|222394.125|117.415 +637891.852|222391.864|117.114 +637897.899|222389.599|116.809 +637903.864|222387.359|116.614 +637951.556|222369.427|115.690 +637957.399|222367.215|115.961 +637969.177|222362.780|115.846 +638011.358|222347.144|110.201 +638017.231|222344.940|109.999 +638022.974|222342.773|110.103 +638028.741|222340.587|110.365 +638034.556|222338.402|110.198 +638040.271|222336.250|110.188 +638046.032|222334.074|110.271 +638051.848|222331.888|110.152 +638057.639|222329.718|109.890 +638063.387|222327.566|109.564 +638069.081|222325.414|109.725 +638074.796|222323.256|109.832 +638080.478|222321.114|109.826 +638086.202|222318.965|109.676 +638091.944|222316.810|109.463 +638097.671|222314.658|109.344 +638103.441|222312.494|109.064 +638109.147|222310.357|108.817 +638114.722|222308.245|109.076 +638120.254|222306.151|109.265 +638137.329|222299.756|108.396 +638142.995|222297.632|108.171 +638165.730|222289.152|106.223 +638171.339|222287.058|105.830 +638210.755|222272.385|101.934 +638216.333|222270.309|101.358 +638221.945|222268.225|100.685 +638232.914|222264.122|100.033 +638238.465|222262.058|99.408 +638222.859|222269.989|100.758 +638194.897|222280.438|103.632 +638161.058|222293.118|106.327 +638155.352|222295.251|106.891 +638143.843|222299.543|108.213 +638138.292|222301.643|108.283 +638132.653|222303.767|108.448 +638121.226|222308.059|109.158 +638115.652|222310.193|108.646 +638110.061|222312.305|108.704 +638104.270|222314.481|109.052 +638098.601|222316.618|109.198 +638092.865|222318.782|109.384 +638087.140|222320.940|109.524 +638081.377|222323.119|109.603 +638075.677|222325.271|109.701 +638069.986|222327.432|109.515 +638064.229|222329.605|109.615 +638058.370|222331.812|109.890 +638052.634|222333.979|109.942 +638046.885|222336.149|110.067 +638041.055|222338.356|110.027 +638035.215|222340.566|110.036 +638029.448|222342.748|110.024 +638023.696|222344.928|109.972 +638017.829|222347.153|109.881 +638011.882|222349.378|110.423 +638005.698|222351.642|111.993 +637981.372|222360.686|115.516 +637963.541|222367.410|115.998 +637957.661|222369.638|115.916 +637909.774|222387.725|116.644 +637903.809|222389.986|116.547 +637897.771|222392.260|116.827 +637891.657|222394.555|117.178 +637885.625|222396.823|117.476 +637879.559|222399.112|117.638 +637873.433|222401.422|117.821 +637867.428|222403.684|118.055 +637861.347|222405.982|118.046 +637855.263|222408.283|118.080 +637849.192|222410.582|118.071 +637843.117|222412.880|118.098 +637830.931|222417.491|118.080 +637824.789|222419.811|118.193 +637818.672|222422.124|118.202 +637812.564|222424.438|118.177 +637806.453|222426.748|118.193 +637800.390|222429.071|117.604 +637794.261|222431.381|117.763 +637787.973|222433.728|118.476 +637781.849|222436.051|118.269 +637769.493|222440.711|118.580 +637763.387|222443.049|117.976 +637757.291|222445.366|117.680 +637751.061|222447.716|117.842 +637744.871|222450.059|117.796 +637732.484|222454.744|117.778 +637726.327|222457.082|117.577 +637720.081|222459.444|117.565 +637713.882|222461.785|117.674 +637701.190|222466.522|119.076 +637695.011|222468.875|118.711 +637688.818|222471.228|118.473 +637682.521|222473.587|118.942 +637676.245|222475.961|118.887 +637670.015|222478.314|118.951 +637663.766|222480.689|118.744 +637657.503|222483.060|118.656 +637651.260|222485.413|118.875 +637644.872|222487.809|119.296 +637638.575|222490.180|119.531 +637632.256|222492.570|119.473 +637625.886|222494.941|120.308 +637619.552|222497.331|120.436 +637613.221|222499.721|120.564 +637606.933|222502.083|120.866 +637614.754|222503.076|120.652 +637620.972|222500.739|120.469 +637627.251|222498.376|120.296 +637633.490|222496.036|120.006 +637639.785|222493.689|119.314 +637646.003|222491.345|119.241 +637652.220|222489.001|119.168 +637658.499|222486.654|118.692 +637664.665|222484.328|118.616 +637670.865|222481.981|118.753 +637677.025|222479.656|118.744 +637683.264|222477.306|118.656 +637689.427|222474.998|118.266 +637695.700|222472.642|117.985 +637701.830|222470.332|117.866 +637708.090|222467.976|117.726 +637714.235|222465.665|117.562 +637720.459|222463.327|117.296 +637726.577|222461.014|117.363 +637732.737|222458.679|117.546 +637738.802|222456.390|117.568 +637751.110|222451.736|117.741 +637757.279|222449.413|117.577 +637775.406|222442.519|118.714 +637793.809|222435.618|117.699 +637799.942|222433.308|117.528 +637805.919|222431.034|117.912 +637811.997|222428.733|118.101 +637818.041|222426.447|118.135 +637824.131|222424.157|117.958 +637830.111|222421.896|118.046 +637836.098|222419.631|118.125 +637842.172|222417.342|118.077 +637848.204|222415.068|117.952 +637854.194|222412.804|118.077 +637860.183|222410.536|118.214 +637866.166|222408.283|118.080 +637872.274|222405.982|117.958 +637878.300|222403.721|117.656 +637884.287|222401.465|117.580 +637890.300|222399.203|117.379 +637896.335|222396.939|117.092 +637902.370|222394.671|116.836 +637908.351|222392.428|116.568 +637914.303|222390.184|116.455 +637938.139|222381.205|116.071 +637967.622|222370.077|116.013 +637973.441|222367.876|116.129 +637985.273|222363.435|115.538 +638009.273|222354.507|112.679 +638021.462|222350.027|110.082 +638027.268|222347.845|109.902 +638032.965|222345.668|110.469 +638038.811|222343.477|110.161 +638044.557|222341.316|110.033 +638050.333|222339.133|110.048 +638056.039|222336.978|110.115 +638061.796|222334.811|109.984 +638067.581|222332.638|109.762 +638073.488|222330.440|109.085 +638079.057|222328.319|109.512 +638084.696|222326.185|109.667 +638090.441|222324.015|109.686 +638096.123|222321.882|109.460 +638101.847|222319.727|109.341 +638107.522|222317.593|109.180 +638113.225|222315.453|108.939 +638118.937|222313.311|108.683 +638124.543|222311.186|108.841 +638130.093|222309.086|108.985 +638164.179|222296.336|106.580 +638169.754|222294.245|106.293 +638180.922|222290.060|105.684 +638186.704|222287.924|104.717 +638197.908|222283.745|103.641 +638172.972|222294.992|106.189 +638156.080|222301.356|107.022 +638144.537|222305.675|108.229 +638138.865|222307.812|108.494 +638133.181|222309.952|108.841 +638127.569|222312.085|108.677 +638122.004|222314.198|108.610 +638116.298|222316.350|108.838 +638110.540|222318.523|109.045 +638104.862|222320.665|109.210 +638099.119|222322.833|109.396 +638093.462|222324.972|109.512 +638087.692|222327.155|109.594 +638081.986|222329.325|109.430 +638076.320|222331.474|109.390 +638070.504|222333.662|109.707 +638064.753|222335.838|109.786 +638058.916|222338.042|109.969 +638053.137|222340.234|109.939 +638047.352|222342.425|109.948 +638041.646|222344.589|109.920 +638035.821|222346.799|109.875 +638030.024|222349.003|109.722 +638018.033|222353.480|111.146 +637987.638|222364.788|115.635 +637975.733|222369.284|115.980 +637969.811|222371.525|116.047 +637940.190|222382.756|115.855 +637922.170|222389.572|116.193 +637916.196|222391.824|116.397 +637910.192|222394.098|116.452 +637904.074|222396.399|116.781 +637898.039|222398.676|117.050 +637892.016|222400.947|117.269 +637885.942|222403.239|117.455 +637879.876|222405.531|117.632 +637873.747|222407.845|117.836 +637867.687|222410.131|118.019 +637861.588|222412.438|118.101 +637855.596|222414.715|117.988 +637849.506|222417.031|117.738 +637843.404|222419.336|117.912 +637837.332|222421.637|117.949 +637831.248|222423.950|117.717 +637825.122|222426.273|117.760 +637818.956|222428.595|118.022 +637812.841|222430.912|118.025 +637806.754|222433.225|117.906 +637800.686|222435.551|117.348 +637794.474|222437.892|117.604 +637775.933|222444.896|118.046 +637769.822|222447.222|117.845 +637757.532|222451.891|117.507 +637745.157|222456.585|117.385 +637738.979|222458.932|117.287 +637732.795|222461.276|117.260 +637726.616|222463.620|117.211 +637720.441|222465.961|117.178 +637714.196|222468.326|117.202 +637707.911|222470.691|117.498 +637701.662|222473.057|117.586 +637695.408|222475.419|117.751 +637689.107|222477.781|118.238 +637682.838|222480.143|118.546 +637676.547|222482.524|118.616 +637670.332|222484.880|118.613 +637664.065|222487.254|118.552 +637657.795|222489.632|118.543 +637651.455|222492.009|119.031 +637645.164|222494.384|119.235 +637638.895|222496.758|119.287 +637632.451|222499.157|120.201 +637626.178|222501.525|120.332 +637619.851|222503.918|120.454 +637631.625|222503.503|120.238 +637637.831|222501.165|120.213 +637644.198|222498.821|119.003 +637650.407|222496.481|119.012 +637656.616|222494.137|119.028 +637662.846|222491.814|118.476 +637669.049|222489.470|118.598 +637675.199|222487.148|118.641 +637681.433|222484.801|118.592 +637687.644|222482.472|118.272 +637693.859|222480.143|117.955 +637700.111|222477.808|117.452 +637706.323|222475.477|117.214 +637712.541|222473.145|116.967 +637718.728|222470.813|116.937 +637724.873|222468.500|116.818 +637731.048|222466.168|116.909 +637737.184|222463.855|116.888 +637743.316|222461.541|116.912 +637761.696|222454.601|117.184 +637785.952|222445.390|118.528 +637798.354|222440.766|117.370 +637804.417|222438.486|117.272 +637816.478|222433.914|117.833 +637822.577|222431.610|117.933 +637828.596|222429.345|117.808 +637834.674|222427.056|117.726 +637840.651|222424.798|117.851 +637846.759|222422.502|117.662 +637852.743|222420.241|117.802 +637858.735|222417.976|117.912 +637864.731|222415.708|118.040 +637870.717|222413.459|117.900 +637876.770|222411.182|117.763 +637888.837|222406.647|117.443 +637894.802|222404.409|117.184 +637900.834|222402.148|116.940 +637906.851|222399.886|116.781 +637912.919|222397.615|116.397 +637918.869|222395.378|116.309 +637924.849|222393.132|116.099 +637930.805|222390.888|116.013 +637942.641|222386.429|115.980 +637954.500|222381.961|115.903 +637972.197|222375.286|115.946 +637978.037|222373.085|115.974 +637983.959|222370.854|115.931 +637989.833|222368.641|115.846 +638001.644|222364.218|115.187 +638013.620|222359.774|113.654 +638019.801|222357.516|112.118 +638025.930|222355.266|110.832 +638037.748|222350.862|109.664 +638043.493|222348.689|109.789 +638049.260|222346.510|109.847 +638055.039|222344.327|109.868 +638060.763|222342.169|109.865 +638066.423|222340.033|109.884 +638072.266|222337.838|109.704 +638077.984|222335.689|109.536 +638083.733|222333.531|109.262 +638089.460|222331.367|109.344 +638095.056|222329.252|109.445 +638100.835|222327.075|109.359 +638106.477|222324.948|109.317 +638112.165|222322.811|109.128 +638117.840|222320.678|108.991 +638123.543|222318.535|108.777 +638129.252|222316.392|108.558 +638134.900|222314.271|108.347 +638140.490|222312.149|108.613 +638146.086|222310.049|108.378 +638180.068|222297.342|105.967 +638208.396|222286.820|102.422 +638230.817|222278.478|99.962 +638236.325|222276.424|99.447 +638241.909|222274.354|98.704 +638231.512|222279.697|99.831 +638192.044|222294.419|104.714 +638180.714|222298.659|105.845 +638158.074|222307.166|107.357 +638152.350|222309.303|108.021 +638146.699|222311.436|108.201 +638141.020|222313.573|108.494 +638135.451|222315.697|108.165 +638129.767|222317.834|108.518 +638124.052|222319.989|108.768 +638118.364|222322.135|108.945 +638112.686|222324.277|109.088 +638106.946|222326.445|109.244 +638101.234|222328.606|109.311 +638095.538|222330.764|109.347 +638089.881|222332.909|109.228 +638084.114|222335.092|109.323 +638078.359|222337.256|109.631 +638072.611|222339.432|109.682 +638066.789|222341.633|109.792 +638061.062|222343.803|109.798 +638055.292|222345.991|109.734 +638049.498|222348.183|109.774 +638043.679|222350.390|109.689 +638037.927|222352.572|109.594 +638032.020|222354.797|109.911 +638025.827|222357.071|111.450 +638001.510|222366.108|115.190 +637989.671|222370.567|115.705 +637983.709|222372.817|115.925 +637977.766|222375.060|116.062 +637942.208|222388.545|115.751 +637936.197|222390.806|116.053 +637930.122|222393.104|116.102 +637924.157|222395.357|116.236 +637918.150|222397.631|116.303 +637912.112|222399.908|116.528 +637906.077|222402.181|116.769 +637899.993|222404.477|116.964 +637893.912|222406.772|117.174 +637887.834|222409.064|117.382 +637881.766|222411.353|117.562 +637875.676|222413.645|117.879 +637869.586|222415.949|117.915 +637863.560|222418.232|117.949 +637857.504|222420.530|117.845 +637851.450|222422.829|117.744 +637845.409|222425.124|117.589 +637839.283|222427.443|117.574 +637833.184|222429.744|117.787 +637826.999|222432.085|117.784 +637820.870|222434.405|117.857 +637814.810|222436.712|117.571 +637808.736|222439.023|117.379 +637802.633|222441.351|116.998 +637796.443|222443.689|117.147 +637777.817|222450.706|118.040 +637759.449|222457.704|117.235 +637753.265|222460.051|117.123 +637747.090|222462.398|116.982 +637740.942|222464.742|116.684 +637734.684|222467.110|116.711 +637728.503|222469.457|116.659 +637722.270|222471.822|116.556 +637716.085|222474.166|116.574 +637709.803|222476.531|116.830 +637703.534|222478.900|117.037 +637697.230|222481.265|117.491 +637690.930|222483.630|117.967 +637684.572|222486.017|118.436 +637678.324|222488.376|118.628 +637672.112|222490.732|118.577 +637665.772|222493.134|118.583 +637659.511|222495.490|118.906 +637653.174|222497.892|118.948 +637647.002|222500.242|118.695 +637640.486|222502.644|120.098 +637648.700|222503.683|118.857 +637654.909|222501.342|118.848 +637661.139|222498.998|118.705 +637667.421|222496.651|118.220 +637673.535|222494.332|118.513 +637679.744|222491.988|118.583 +637685.956|222489.659|118.235 +637692.226|222487.309|117.930 +637698.526|222484.974|117.062 +637704.753|222482.643|116.690 +637710.986|222480.308|116.330 +637717.137|222477.997|116.120 +637723.306|222475.666|116.208 +637729.393|222473.358|116.449 +637735.577|222471.027|116.483 +637747.803|222466.403|116.736 +637753.905|222464.092|116.940 +637760.041|222461.776|116.970 +637766.207|222459.456|116.824 +637772.294|222457.161|116.824 +637790.716|222450.218|116.690 +637796.736|222447.944|116.800 +637802.829|222445.643|116.854 +637808.928|222443.357|116.544 +637820.894|222438.794|117.607 +637826.932|222436.514|117.708 +637833.004|222434.225|117.613 +637839.027|222431.960|117.495 +637845.098|222429.671|117.449 +637851.103|222427.407|117.470 +637857.089|222425.145|117.583 +637863.075|222422.880|117.735 +637869.101|222420.610|117.677 +637875.051|222418.363|117.726 +637881.123|222416.083|117.501 +637887.045|222413.855|117.397 +637893.120|222411.572|117.202 +637899.146|222409.311|116.943 +637905.101|222407.073|116.757 +637911.197|222404.787|116.522 +637917.156|222402.547|116.355 +637923.127|222400.304|116.153 +637929.083|222398.064|116.053 +637935.005|222395.826|116.123 +637946.938|222391.349|115.626 +637982.210|222378.035|115.861 +637988.041|222375.834|115.931 +637999.876|222371.396|115.394 +638005.743|222369.196|115.099 +638029.716|222360.311|111.755 +638041.740|222355.873|109.725 +638047.629|222353.660|109.524 +638053.332|222351.508|109.573 +638059.035|222349.356|109.643 +638064.814|222347.174|109.686 +638070.550|222345.013|109.655 +638076.210|222342.879|109.686 +638081.992|222340.706|109.512 +638087.689|222338.563|109.442 +638093.514|222336.381|109.137 +638099.208|222334.235|109.109 +638104.788|222332.123|109.289 +638110.506|222329.971|109.210 +638116.161|222327.844|109.140 +638121.857|222325.707|108.933 +638127.542|222323.570|108.780 +638133.217|222321.434|108.695 +638138.899|222319.309|108.344 +638144.547|222317.200|107.912 +638150.124|222315.094|107.994 +638155.867|222312.954|107.494 +638161.500|222310.845|107.168 +638184.058|222302.417|105.525 +638189.721|222300.308|104.958 +638223.688|222287.701|100.724 +638240.385|222281.489|98.990 +638245.917|222279.429|98.420 +638238.593|222283.635|99.021 +638232.957|222285.726|99.990 +638210.496|222294.123|102.465 +638193.458|222300.475|104.644 +638182.186|222304.703|105.601 +638176.593|222306.818|105.714 +638170.884|222308.943|106.516 +638165.203|222311.073|106.994 +638153.803|222315.362|107.680 +638148.177|222317.489|107.777 +638142.471|222319.632|108.195 +638136.811|222321.766|108.460 +638131.157|222323.896|108.728 +638125.472|222326.042|108.875 +638119.797|222328.188|109.015 +638114.057|222330.355|109.170 +638108.422|222332.489|109.195 +638102.765|222334.641|109.061 +638097.077|222336.796|109.064 +638091.335|222338.960|109.308 +638085.562|222341.142|109.436 +638079.783|222343.324|109.609 +638074.058|222345.495|109.579 +638068.322|222347.665|109.622 +638062.540|222349.859|109.597 +638056.773|222352.045|109.530 +638051.009|222354.233|109.475 +638045.194|222356.428|109.652 +638032.999|222360.945|111.883 +637997.017|222374.402|115.657 +637991.067|222376.651|115.806 +637985.236|222378.864|115.739 +637979.244|222381.129|115.830 +637943.613|222394.625|115.964 +637931.729|222399.127|115.998 +637925.669|222401.422|116.001 +637919.692|222403.678|116.239 +637913.688|222405.949|116.324 +637907.592|222408.247|116.571 +637901.553|222410.521|116.870 +637895.473|222412.816|117.089 +637883.363|222417.391|117.345 +637871.217|222421.984|117.562 +637865.115|222424.292|117.680 +637859.049|222426.590|117.638 +637853.041|222428.882|117.309 +637846.955|222431.183|117.415 +637840.816|222433.506|117.485 +637834.683|222435.828|117.549 +637828.618|222438.123|117.610 +637822.464|222440.461|117.507 +637804.258|222447.405|116.510 +637798.098|222449.739|116.501 +637779.688|222456.735|116.163 +637767.237|222461.425|116.726 +637761.007|222463.782|116.891 +637754.807|222466.132|116.891 +637742.527|222470.816|116.233 +637723.943|222477.872|115.974 +637717.756|222480.216|116.028 +637711.516|222482.582|116.028 +637705.210|222484.950|116.480 +637698.922|222487.315|116.848 +637692.573|222489.684|117.684 +637686.227|222492.070|118.089 +637679.954|222494.432|118.464 +637673.681|222496.810|118.424 +637667.442|222499.187|118.165 +637661.112|222501.568|118.595 +637654.811|222503.945|118.808 +637666.119|222503.677|118.446 +637672.395|222501.327|118.001 +637678.497|222499.004|118.397 +637684.776|222496.654|118.001 +637690.936|222494.347|117.592 +637697.255|222491.988|116.979 +637703.543|222489.650|116.190 +637709.797|222487.315|115.684 +637716.027|222484.977|115.337 +637722.175|222482.646|115.574 +637734.450|222478.001|115.809 +637740.561|222475.687|115.922 +637746.690|222473.355|116.330 +637752.747|222471.063|116.425 +637771.154|222464.108|116.547 +637777.228|222461.813|116.626 +637783.446|222459.481|116.233 +637789.664|222457.167|115.526 +637807.891|222450.282|115.617 +637814.039|222447.969|115.401 +637843.940|222436.584|117.473 +637849.948|222434.316|117.461 +637868.044|222427.486|117.458 +637874.027|222425.233|117.327 +637879.998|222422.981|117.272 +637886.027|222420.704|117.245 +637892.053|222418.442|116.961 +637898.027|222416.190|116.958 +637904.102|222413.904|116.781 +637910.060|222411.664|116.586 +637916.028|222409.420|116.358 +637922.045|222407.156|116.233 +637927.989|222404.915|116.166 +637933.957|222402.669|116.013 +637939.961|222400.417|115.708 +637945.826|222398.198|115.782 +637957.698|222393.723|115.617 +637987.010|222382.644|115.910 +637992.896|222380.431|115.754 +637998.770|222378.215|115.669 +638016.393|222371.607|114.712 +638052.283|222358.290|109.661 +638058.078|222356.117|109.326 +638063.765|222353.965|109.457 +638069.465|222351.807|109.545 +638075.183|222349.646|109.585 +638080.919|222347.482|109.554 +638086.647|222345.318|109.588 +638092.304|222343.190|109.411 +638098.010|222341.038|109.308 +638103.770|222338.877|109.012 +638109.443|222336.732|109.079 +638115.057|222334.610|109.143 +638120.705|222332.480|109.088 +638126.368|222330.343|108.994 +638131.989|222328.228|108.826 +638137.670|222326.088|108.704 +638143.300|222323.970|108.543 +638148.972|222321.842|108.253 +638154.709|222319.699|107.735 +638160.421|222317.572|107.098 +638171.656|222313.353|106.570 +638177.386|222311.220|105.933 +638183.037|222309.114|105.367 +638188.715|222306.998|104.720 +638228.163|222292.307|100.298 +638244.866|222286.083|98.527 +638250.428|222284.013|97.850 +638245.713|222287.838|98.432 +638240.138|222289.914|99.170 +638228.970|222294.090|100.346 +638217.769|222298.266|101.709 +638212.115|222300.375|102.392 +638183.860|222310.945|105.120 +638166.709|222317.358|106.903 +638161.091|222319.471|107.174 +638155.355|222321.607|107.899 +638149.664|222323.747|108.250 +638144.010|222325.878|108.472 +638138.320|222328.026|108.622 +638132.626|222330.172|108.792 +638126.954|222332.315|108.905 +638121.312|222334.452|108.920 +638115.655|222336.591|109.018 +638109.997|222338.737|108.872 +638104.264|222340.901|109.045 +638098.503|222343.068|109.344 +638092.816|222345.220|109.372 +638087.064|222347.396|109.426 +638081.331|222349.567|109.417 +638075.595|222351.740|109.442 +638069.819|222353.928|109.375 +638064.094|222356.096|109.384 +638058.315|222358.284|109.381 +638052.360|222360.518|109.853 +638046.270|222362.761|111.170 +638022.200|222371.720|114.474 +638016.424|222373.914|114.349 +638004.427|222378.416|115.233 +637998.477|222380.650|115.644 +637962.974|222394.089|115.721 +637957.109|222396.329|115.321 +637951.129|222398.585|115.471 +637945.119|222400.846|115.775 +637939.102|222403.123|115.843 +637933.143|222405.373|115.943 +637927.123|222407.646|116.068 +637921.064|222409.942|116.111 +637915.029|222412.215|116.352 +637909.012|222414.483|116.525 +637902.934|222416.778|116.714 +637896.972|222419.037|116.647 +637890.843|222421.350|116.833 +637884.786|222423.636|116.986 +637878.748|222425.919|117.065 +637872.637|222428.227|117.211 +637848.244|222437.450|117.458 +637811.948|222451.297|115.263 +637787.296|222460.615|115.666 +637774.817|222465.309|116.352 +637768.566|222467.680|116.254 +637762.394|222470.012|116.443 +637756.218|222472.356|116.297 +637743.901|222477.040|115.855 +637737.751|222479.381|115.617 +637731.496|222481.750|115.644 +637725.406|222484.084|115.053 +637719.109|222486.471|114.998 +637712.897|222488.815|115.224 +637706.594|222491.180|115.666 +637700.275|222493.545|116.245 +637693.890|222495.917|117.327 +637687.553|222498.297|117.674 +637681.225|222500.681|118.004 +637675.017|222503.034|117.955 +637683.197|222503.436|117.808 +637689.424|222501.104|117.339 +637695.688|222498.748|117.074 +637701.955|222496.429|115.995 +637708.292|222494.064|115.321 +637714.522|222491.726|114.974 +637720.715|222489.388|114.882 +637726.848|222487.071|114.803 +637732.950|222484.740|115.358 +637745.230|222480.085|115.593 +637751.348|222477.769|115.699 +637763.531|222473.136|116.269 +637769.761|222470.786|116.123 +637775.909|222468.463|116.105 +637782.090|222466.135|115.919 +637788.253|222463.824|115.498 +637794.486|222461.505|114.703 +637800.649|222459.191|114.352 +637830.904|222447.706|115.327 +637848.628|222440.906|117.467 +637854.696|222438.611|117.455 +637878.767|222429.531|117.043 +637884.841|222427.245|116.793 +637890.840|222424.987|116.629 +637896.856|222422.707|116.699 +637902.861|222420.445|116.550 +637908.771|222418.208|116.571 +637914.797|222415.940|116.361 +637920.765|222413.694|116.135 +637926.779|222411.426|116.019 +637932.722|222409.180|115.961 +637938.684|222406.933|115.846 +637944.683|222404.678|115.568 +637950.565|222402.453|115.559 +638003.534|222382.436|115.376 +638021.258|222375.789|114.285 +638027.046|222373.606|114.102 +638056.813|222362.545|110.143 +638062.769|222360.329|109.417 +638068.551|222358.156|109.164 +638074.250|222355.998|109.274 +638079.932|222353.843|109.466 +638085.620|222351.697|109.387 +638091.362|222349.530|109.375 +638097.034|222347.387|109.399 +638102.761|222345.232|109.219 +638108.483|222343.077|109.088 +638114.185|222340.935|108.792 +638119.800|222338.813|108.863 +638125.469|222336.664|108.985 +638131.129|222334.531|108.917 +638136.744|222332.416|108.783 +638142.379|222330.294|108.591 +638147.991|222328.179|108.515 +638153.660|222326.051|108.241 +638159.332|222323.921|107.976 +638165.038|222321.793|107.366 +638182.296|222315.377|105.168 +638193.656|222311.147|103.876 +638216.016|222302.783|102.139 +638232.823|222296.522|100.285 +638249.709|222290.252|97.914 +638255.314|222288.174|97.109 +638207.704|222308.166|102.495 +638202.133|222310.260|102.937 +638196.482|222312.381|103.446 +638185.052|222316.645|105.004 +638167.791|222323.080|107.467 +638162.048|222325.234|107.979 +638156.400|222327.368|108.162 +638150.758|222329.502|108.341 +638145.135|222331.629|108.472 +638139.511|222333.757|108.625 +638133.894|222335.881|108.768 +638128.221|222338.030|108.896 +638122.567|222340.182|108.732 +638116.941|222342.319|108.716 +638111.174|222344.492|109.006 +638105.541|222346.628|109.055 +638099.817|222348.792|109.222 +638094.081|222350.969|109.210 +638088.344|222353.145|109.213 +638082.663|222355.300|109.265 +638076.960|222357.467|109.167 +638071.218|222359.656|108.997 +638065.329|222361.871|109.423 +638041.180|222370.839|113.605 +638035.330|222373.039|114.008 +638017.698|222379.699|114.620 +638005.878|222384.165|115.065 +637982.146|222393.150|115.477 +637976.227|222395.393|115.574 +637970.356|222397.625|115.465 +637964.397|222399.886|115.492 +637958.481|222402.136|115.337 +637952.531|222404.394|115.355 +637946.545|222406.656|115.568 +637940.598|222408.908|115.626 +637934.582|222411.188|115.733 +637928.559|222413.465|115.885 +637922.533|222415.742|116.074 +637916.510|222418.019|116.260 +637910.448|222420.314|116.373 +637904.477|222422.582|116.364 +637898.466|222424.868|116.260 +637892.406|222427.160|116.403 +637886.222|222429.482|116.897 +637855.833|222440.992|117.315 +637849.817|222443.287|117.068 +637837.911|222447.889|115.282 +637831.809|222450.209|115.199 +637819.745|222454.827|114.322 +637813.667|222457.158|113.816 +637807.522|222459.493|113.681 +637801.332|222461.834|113.846 +637788.805|222466.525|115.081 +637770.084|222473.578|116.031 +637763.890|222475.928|115.980 +637757.806|222478.247|115.678 +637751.589|222480.616|115.437 +637745.416|222482.960|115.315 +637739.272|222485.304|115.053 +637733.127|222487.644|114.800 +637720.676|222492.375|114.581 +637714.424|222494.740|114.681 +637708.127|222497.108|115.093 +637701.772|222499.477|115.934 +637695.350|222501.869|116.848 +637689.077|222504.229|117.214 +637700.589|222503.774|116.251 +637706.935|222501.431|115.059 +637713.199|222499.087|114.471 +637719.310|222496.773|114.492 +637725.522|222494.432|114.282 +637737.772|222489.778|114.651 +637743.840|222487.465|115.032 +637756.066|222482.826|115.276 +637762.156|222480.509|115.544 +637780.478|222473.581|115.455 +637799.015|222466.634|113.922 +637811.299|222462.008|113.493 +637823.396|222457.414|113.813 +637829.304|222455.140|114.614 +637841.240|222450.578|115.577 +637870.958|222439.242|117.522 +637901.148|222427.879|116.178 +637907.125|222425.617|116.153 +637913.032|222423.380|116.193 +637919.006|222421.119|116.224 +637924.953|222418.872|116.108 +637930.939|222416.620|115.812 +637936.889|222414.373|115.733 +637942.848|222412.124|115.620 +637948.822|222409.871|115.443 +637954.711|222407.643|115.407 +637960.703|222405.385|115.202 +637966.644|222403.148|114.962 +637972.374|222400.959|115.413 +637978.260|222398.728|115.471 +637984.087|222396.521|115.516 +637989.964|222394.305|115.352 +638031.024|222378.812|114.343 +638036.870|222376.609|114.206 +638042.609|222374.432|114.276 +638048.504|222372.229|113.712 +638066.499|222365.563|110.658 +638072.541|222363.338|109.344 +638078.362|222361.152|108.957 +638084.044|222358.994|109.152 +638089.759|222356.827|109.228 +638095.422|222354.684|109.271 +638101.122|222352.529|109.195 +638106.730|222350.408|109.231 +638112.460|222348.247|109.070 +638118.169|222346.089|109.003 +638123.896|222343.940|108.634 +638129.502|222341.813|108.753 +638135.119|222339.682|108.841 +638140.731|222337.564|108.732 +638146.397|222335.424|108.668 +638152.042|222333.296|108.475 +638157.656|222331.175|108.402 +638163.246|222329.072|108.198 +638168.864|222326.947|108.149 +638174.560|222324.829|107.351 +638197.777|222316.231|103.361 +638203.501|222314.100|102.593 +638248.246|222297.376|98.198 +638253.778|222295.312|97.618 +638259.359|222293.233|96.884 +638237.014|222303.417|99.609 +638203.410|222316.029|102.794 +638185.996|222322.500|105.827 +638174.377|222326.822|107.695 +638168.757|222328.944|107.988 +638163.152|222331.062|108.238 +638157.534|222333.193|108.308 +638151.889|222335.326|108.500 +638146.202|222337.478|108.628 +638140.566|222339.621|108.585 +638134.964|222341.745|108.671 +638129.358|222343.879|108.539 +638123.674|222346.031|108.738 +638117.892|222348.210|109.067 +638112.201|222350.371|109.079 +638106.511|222352.529|109.103 +638100.835|222354.687|109.076 +638095.154|222356.842|109.100 +638089.366|222359.043|109.049 +638083.647|222361.216|109.000 +638077.926|222363.389|108.972 +638072.065|222365.590|109.530 +638065.814|222367.873|111.441 +638053.609|222372.390|113.907 +638041.954|222376.804|114.218 +638036.114|222379.017|114.315 +638030.234|222381.248|114.334 +638024.376|222383.461|114.550 +638018.457|222385.698|114.776 +637994.902|222394.628|115.084 +637988.931|222396.881|115.373 +637983.021|222399.124|115.398 +637977.126|222401.364|115.385 +637971.258|222403.611|114.974 +637965.351|222405.863|114.754 +637959.246|222408.149|115.477 +637953.321|222410.402|115.382 +637947.313|222412.682|115.404 +637941.315|222414.946|115.699 +637935.374|222417.199|115.736 +637929.281|222419.503|115.931 +637923.274|222421.780|116.031 +637917.299|222424.051|115.986 +637911.304|222426.325|116.077 +637905.281|222428.614|116.010 +637899.243|222430.906|116.035 +637874.935|222440.096|116.815 +637868.824|222442.424|116.690 +637862.710|222444.735|116.915 +637844.632|222451.641|115.986 +637814.521|222463.209|113.108 +637808.352|222465.552|113.127 +637789.716|222472.584|114.062 +637783.410|222474.937|115.001 +637777.131|222477.299|115.437 +637770.916|222479.659|115.513 +637764.738|222482.009|115.388 +637758.605|222484.356|115.001 +637752.427|222486.709|114.919 +637740.140|222491.400|114.358 +637733.895|222493.771|114.343 +637721.535|222498.483|113.962 +637715.250|222500.858|114.285 +637708.938|222503.229|114.812 +637717.527|222504.198|113.819 +637736.004|222497.209|113.910 +637754.320|222490.244|114.794 +637760.525|222487.900|114.760 +637772.617|222483.292|115.544 +637791.289|222476.312|113.877 +637803.712|222471.661|112.929 +637809.693|222469.384|113.294 +637815.944|222467.040|112.837 +637822.004|222464.754|112.791 +637827.868|222462.471|114.172 +637833.824|222460.194|114.724 +637845.787|222455.631|115.580 +637857.763|222451.081|116.074 +637881.787|222441.991|116.230 +637887.783|222439.721|116.373 +637899.834|222435.176|116.089 +637905.879|222432.908|115.745 +637911.819|222430.656|115.925 +637917.818|222428.391|115.839 +637923.840|222426.123|115.657 +637929.754|222423.886|115.708 +637935.746|222421.622|115.718 +637941.711|222419.372|115.574 +637947.679|222417.123|115.437 +637953.644|222414.873|115.327 +637959.490|222412.654|115.504 +637971.530|222408.146|114.608 +637977.296|222405.940|115.196 +637983.185|222403.711|115.254 +637989.086|222401.477|115.273 +637994.972|222399.261|115.099 +638000.800|222397.067|114.913 +638006.743|222394.827|114.806 +638018.469|222390.407|114.523 +638024.254|222388.218|114.593 +638030.146|222385.993|114.514 +638035.873|222383.826|114.614 +638041.713|222381.635|114.245 +638047.526|222379.434|114.291 +638053.305|222377.252|114.221 +638059.163|222375.051|113.834 +638071.212|222370.604|111.548 +638083.266|222366.157|109.091 +638089.088|222363.972|108.741 +638094.782|222361.811|108.911 +638100.442|222359.665|108.978 +638106.169|222357.498|109.058 +638111.805|222355.367|108.994 +638117.486|222353.215|109.030 +638123.220|222351.054|108.881 +638128.880|222348.917|108.792 +638134.592|222346.769|108.515 +638140.234|222344.635|108.524 +638145.775|222342.532|108.689 +638151.414|222340.407|108.500 +638157.080|222338.265|108.466 +638162.716|222336.140|108.329 +638168.306|222334.034|108.134 +638173.951|222331.907|107.997 +638179.446|222329.831|107.948 +638191.023|222325.530|106.263 +638196.927|222323.366|104.812 +638214.648|222316.871|100.386 +638247.767|222304.432|98.469 +638258.917|222300.274|97.247 +638250.239|222304.977|98.323 +638244.637|222307.074|98.957 +638228.102|222313.301|100.057 +638222.972|222315.307|98.899 +638217.257|222317.435|99.801 +638205.388|222321.790|102.998 +638199.435|222323.976|104.608 +638193.507|222326.152|106.147 +638181.985|222330.447|107.887 +638176.420|222332.556|107.970 +638170.778|222334.692|108.110 +638165.200|222336.805|108.265 +638159.570|222338.935|108.393 +638153.953|222341.066|108.497 +638148.265|222343.218|108.634 +638142.715|222345.330|108.521 +638137.097|222347.470|108.430 +638131.385|222349.625|108.704 +638125.676|222351.792|108.762 +638119.992|222353.938|108.978 +638114.313|222356.096|108.942 +638108.684|222358.232|108.991 +638102.954|222360.411|108.930 +638097.239|222362.585|108.838 +638091.591|222364.734|108.762 +638085.757|222366.931|109.177 +638079.758|222369.156|110.277 +638073.629|222371.418|111.685 +638061.616|222375.889|113.596 +638055.716|222378.105|114.163 +638044.121|222382.503|114.230 +638038.217|222384.728|114.611 +638032.438|222386.929|114.483 +638026.583|222389.154|114.419 +638020.697|222391.385|114.520 +638014.887|222393.589|114.575 +638008.944|222395.842|114.681 +638003.043|222398.070|114.892 +637997.096|222400.322|115.059 +637991.162|222402.568|115.190 +637985.252|222404.812|115.239 +637973.541|222409.289|114.593 +637955.549|222416.089|115.273 +637949.605|222418.345|115.297 +637943.558|222420.631|115.535 +637937.550|222422.908|115.599 +637931.625|222425.157|115.605 +637925.633|222427.431|115.629 +637919.558|222429.732|115.788 +637913.557|222432.006|115.913 +637907.573|222434.289|115.654 +637865.310|222450.367|115.007 +637853.026|222454.994|115.815 +637846.924|222457.317|115.711 +637834.872|222461.941|114.724 +637828.919|222464.242|113.846 +637822.921|222466.564|112.883 +637791.950|222478.284|113.764 +637779.423|222482.993|114.748 +637760.912|222490.031|114.541 +637754.661|222492.408|114.504 +637736.126|222499.474|113.898 +637723.757|222504.189|113.541 +637746.623|222499.815|113.947 +637752.744|222497.496|114.002 +637758.855|222495.179|114.114 +637764.948|222492.863|114.389 +637783.364|222485.895|114.416 +637801.929|222478.955|112.700 +637820.257|222472.026|112.584 +637832.181|222467.454|113.889 +637862.118|222456.073|115.141 +637886.368|222446.935|114.425 +637892.303|222444.686|114.562 +637904.138|222440.172|115.349 +637910.018|222437.941|115.492 +637927.952|222431.159|115.483 +637933.835|222428.925|115.672 +637939.830|222426.672|115.343 +637945.820|222424.404|115.364 +637951.791|222422.155|115.199 +637957.655|222419.933|115.257 +637981.366|222410.987|114.803 +637993.045|222406.558|115.047 +637998.913|222404.345|114.940 +638004.850|222402.105|114.821 +638010.681|222399.908|114.629 +638016.558|222397.692|114.535 +638022.322|222395.503|114.675 +638028.158|222393.303|114.520 +638033.989|222391.105|114.407 +638039.741|222388.916|114.648 +638045.563|222386.716|114.617 +638057.136|222382.363|114.117 +638092.773|222369.117|109.177 +638098.647|222366.922|108.625 +638104.285|222364.782|108.777 +638109.952|222362.637|108.829 +638115.624|222360.491|108.872 +638121.321|222358.336|108.847 +638126.935|222356.211|108.893 +638132.608|222354.072|108.744 +638138.252|222351.941|108.719 +638143.916|222349.814|108.396 +638149.567|222347.677|108.378 +638155.190|222345.546|108.479 +638160.808|222343.425|108.393 +638166.352|222341.331|108.338 +638171.933|222339.228|108.174 +638177.511|222337.125|108.037 +638183.089|222335.022|107.909 +638188.636|222332.925|107.918 +638212.124|222324.293|102.590 +638234.691|222315.889|99.789 +638240.260|222313.811|99.228 +638256.872|222307.608|97.533 +638267.970|222303.469|96.283 +638257.213|222308.979|97.667 +638246.079|222313.164|98.701 +638240.446|222315.267|99.481 +638234.969|222317.340|99.743 +638229.470|222319.413|100.097 +638212.161|222325.847|103.221 +638206.174|222328.042|104.934 +638194.476|222332.370|107.479 +638188.862|222334.494|107.707 +638183.241|222336.619|107.982 +638177.685|222338.728|108.040 +638172.113|222340.840|108.165 +638166.437|222342.986|108.463 +638160.860|222345.107|108.405 +638155.285|222347.229|108.366 +638149.664|222349.372|108.262 +638144.035|222351.502|108.460 +638138.326|222353.660|108.722 +638132.672|222355.806|108.805 +638126.975|222357.973|108.817 +638121.306|222360.131|108.744 +638115.667|222362.271|108.817 +638109.952|222364.450|108.698 +638104.353|222366.581|108.658 +638098.531|222368.790|108.741 +638056.910|222384.354|114.306 +638039.454|222390.989|114.352 +638033.633|222393.199|114.422 +638027.741|222395.433|114.535 +638021.898|222397.658|114.459 +638016.037|222399.886|114.471 +638010.160|222402.114|114.572 +638004.229|222404.367|114.669 +637998.358|222406.592|114.788 +637992.454|222408.835|114.791 +637986.450|222411.109|114.995 +637980.646|222413.334|114.575 +637956.735|222422.399|115.163 +637950.812|222424.654|115.087 +637944.875|222426.910|115.114 +637938.821|222429.196|115.416 +637932.796|222431.479|115.617 +637926.855|222433.747|115.422 +637908.850|222440.601|115.205 +637896.981|222445.158|114.261 +637884.948|222449.752|113.910 +637866.608|222456.680|114.855 +637860.363|222459.024|115.480 +637854.282|222461.331|115.596 +637842.212|222465.961|114.700 +637836.271|222468.262|113.755 +637830.227|222470.579|113.392 +637824.165|222472.910|112.791 +637805.861|222479.902|112.060 +637799.598|222482.256|112.676 +637793.337|222484.606|113.313 +637787.009|222486.977|114.002 +637780.840|222489.315|114.160 +637756.090|222498.733|113.895 +637749.936|222501.083|113.675 +637743.682|222503.457|113.718 +637751.887|222504.299|113.581 +637770.300|222497.313|113.889 +637776.341|222495.014|114.111 +637807.343|222483.377|111.935 +637825.484|222476.480|112.557 +637837.454|222471.898|113.630 +637879.550|222455.915|114.538 +637885.658|222453.626|114.059 +637903.666|222446.819|113.770 +637909.646|222444.546|114.044 +637921.308|222440.077|115.157 +637933.201|222435.572|115.196 +637951.062|222428.812|115.135 +637957.030|222426.559|114.998 +637963.013|222424.304|114.803 +637968.978|222422.064|114.419 +637980.765|222417.601|114.389 +637998.355|222410.932|114.590 +638004.235|222408.713|114.443 +638010.145|222406.476|114.443 +638015.991|222404.260|114.483 +638021.785|222402.066|114.474 +638027.576|222399.871|114.507 +638033.438|222397.652|114.523 +638039.208|222395.473|114.410 +638056.593|222388.892|114.386 +638062.311|222386.731|114.285 +638079.825|222380.153|113.169 +638085.748|222377.953|112.334 +638097.818|222373.500|109.829 +638103.709|222371.311|108.951 +638109.565|222369.117|108.491 +638115.130|222367.001|108.674 +638120.797|222364.852|108.744 +638126.417|222362.725|108.744 +638132.111|222360.570|108.738 +638137.734|222358.439|108.777 +638143.410|222356.297|108.622 +638149.079|222354.157|108.512 +638154.727|222352.029|108.262 +638160.317|222349.914|108.241 +638165.870|222347.805|108.378 +638171.488|222345.684|108.296 +638177.044|222343.583|108.210 +638182.607|222341.483|108.125 +638188.136|222339.399|107.933 +638193.738|222337.286|107.744 +638199.219|222335.211|107.771 +638216.778|222328.752|103.754 +638222.719|222326.585|102.011 +638234.146|222322.345|100.215 +638256.305|222314.054|98.161 +638261.864|222311.982|97.460 +638267.378|222309.918|96.939 +638272.938|222307.846|96.287 +638231.086|222325.573|100.666 +638201.709|222336.405|107.634 +638196.219|222338.490|107.637 +638190.690|222340.584|107.796 +638179.462|222344.839|108.085 +638173.847|222346.970|108.137 +638168.227|222349.100|108.229 +638162.725|222351.194|108.134 +638157.065|222353.346|108.168 +638151.414|222355.480|108.427 +638145.754|222357.629|108.497 +638140.075|222359.777|108.655 +638134.391|222361.942|108.607 +638128.758|222364.081|108.622 +638123.070|222366.242|108.616 +638117.392|222368.400|108.604 +638111.771|222370.546|108.366 +638105.889|222372.756|108.939 +638081.895|222381.677|113.060 +638070.166|222386.088|114.087 +638064.299|222388.310|114.248 +638058.422|222390.532|114.465 +638040.988|222397.158|114.447 +638035.187|222399.365|114.425 +638029.323|222401.593|114.416 +638023.486|222403.815|114.319 +638017.643|222406.037|114.261 +638011.708|222408.277|114.623 +637999.952|222412.758|114.361 +637994.012|222415.004|114.529 +637988.150|222417.242|114.370 +637982.228|222419.500|114.209 +637964.303|222426.294|114.568 +637934.350|222437.651|115.084 +637928.333|222439.943|114.937 +637910.569|222446.761|113.529 +637898.530|222451.340|113.441 +637892.467|222453.650|113.319 +637880.163|222458.277|114.398 +637873.957|222460.615|114.767 +637831.504|222476.833|112.980 +637825.548|222479.137|112.136 +637819.428|222481.475|111.865 +637813.180|222483.825|112.356 +637807.108|222486.157|111.859 +637800.887|222488.504|112.231 +637782.151|222495.557|113.605 +637775.924|222497.916|113.776 +637769.724|222500.272|113.773 +637763.646|222502.616|113.063 +637768.910|222504.369|113.124 +637775.025|222502.043|113.261 +637781.172|222499.715|113.236 +637787.287|222497.404|113.038 +637793.502|222495.066|112.654 +637799.680|222492.747|112.124 +637811.973|222488.111|111.554 +637824.116|222483.487|111.935 +637830.120|222481.183|112.514 +637836.098|222478.897|112.919 +637853.864|222472.057|115.087 +637865.837|222467.494|115.562 +637878.142|222462.882|114.361 +637884.265|222460.587|113.788 +637890.422|222458.286|113.069 +637908.290|222451.489|113.508 +637926.023|222444.719|114.456 +637931.966|222442.455|114.648 +637937.916|222440.190|114.812 +637967.692|222428.922|114.328 +637973.691|222426.669|113.803 +637985.404|222422.213|114.117 +637991.302|222419.976|114.108 +637997.124|222417.766|114.187 +638026.324|222406.680|114.401 +638032.133|222404.480|114.355 +638037.915|222402.282|114.450 +638043.734|222400.078|114.407 +638078.475|222386.950|113.645 +638108.111|222375.926|109.305 +638113.957|222373.743|108.634 +638119.766|222371.555|108.375 +638125.417|222369.406|108.521 +638131.035|222367.279|108.543 +638136.661|222365.145|108.558 +638142.215|222363.027|108.872 +638147.936|222360.875|108.564 +638153.617|222358.729|108.421 +638159.287|222356.586|108.341 +638164.877|222354.480|108.091 +638170.464|222352.362|108.110 +638175.984|222350.268|108.165 +638181.610|222348.140|108.070 +638187.164|222346.040|108.021 +638192.763|222343.928|107.838 +638198.289|222341.840|107.683 +638203.818|222339.755|107.555 +638209.329|222337.670|107.494 +638232.914|222329.023|101.352 +638238.678|222326.899|100.081 +638244.174|222324.823|99.978 +638255.375|222320.641|98.670 +638259.959|222321.184|98.307 +638248.865|222325.356|99.484 +638243.296|222327.447|100.060 +638237.669|222329.566|100.642 +638214.017|222338.259|107.238 +638208.497|222340.359|107.332 +638202.946|222342.462|107.552 +638197.366|222344.583|107.665 +638191.818|222346.683|107.909 +638186.265|222348.796|107.963 +638180.702|222350.911|108.061 +638175.139|222353.035|107.936 +638169.562|222355.163|107.893 +638163.917|222357.303|108.107 +638158.269|222359.442|108.360 +638152.645|222361.576|108.533 +638147.040|222363.716|108.415 +638141.407|222365.861|108.415 +638135.738|222368.013|108.576 +638130.108|222370.168|108.347 +638124.448|222372.329|108.250 +638118.724|222374.499|108.424 +638112.832|222376.703|109.286 +638100.948|222381.138|111.216 +638077.362|222390.005|113.660 +638065.637|222394.430|114.489 +638042.505|222403.251|114.276 +638036.638|222405.485|114.288 +638030.716|222407.729|114.562 +637983.898|222425.593|113.825 +637977.879|222427.885|113.855 +637972.051|222430.116|113.611 +637947.993|222439.236|114.529 +637930.110|222446.060|114.203 +637906.290|222455.189|112.977 +637900.359|222457.472|112.511 +637894.418|222459.752|112.100 +637888.173|222462.090|112.962 +637875.728|222466.756|114.532 +637857.427|222473.709|114.828 +637845.327|222478.351|114.151 +637839.249|222480.689|113.633 +637833.424|222482.966|112.404 +637827.261|222485.331|112.026 +637821.220|222487.647|111.697 +637808.989|222492.323|111.188 +637802.816|222494.667|111.304 +637777.838|222504.088|112.962 +637792.212|222502.497|112.270 +637798.522|222500.129|111.697 +637804.645|222497.828|111.139 +637810.763|222495.496|111.383 +637816.880|222493.177|111.274 +637822.887|222490.887|111.456 +637828.916|222488.577|111.892 +637840.779|222483.996|113.535 +637846.653|222481.734|114.163 +637852.718|222479.418|114.447 +637858.659|222477.150|114.736 +637870.723|222472.569|114.706 +637876.846|222470.274|114.084 +637889.307|222465.635|112.157 +637901.325|222461.078|111.962 +637913.136|222456.549|112.904 +637930.915|222449.764|113.627 +637954.552|222440.760|114.239 +637972.456|222433.993|113.526 +637978.372|222431.756|113.389 +637990.065|222427.297|113.797 +638042.460|222407.375|114.352 +638082.956|222392.038|113.523 +638088.750|222389.843|113.447 +638112.277|222381.053|110.417 +638118.203|222378.849|109.423 +638124.110|222376.648|108.539 +638129.822|222374.499|108.189 +638135.467|222372.347|108.366 +638141.157|222370.186|108.378 +638146.723|222368.071|108.387 +638152.350|222365.931|108.430 +638157.927|222363.816|108.433 +638163.542|222361.689|108.314 +638169.168|222359.561|108.168 +638174.813|222357.427|107.976 +638180.422|222355.300|107.933 +638185.920|222353.206|108.070 +638191.437|222351.118|107.921 +638196.994|222349.009|107.878 +638202.532|222346.918|107.692 +638208.049|222344.827|107.589 +638213.593|222342.730|107.412 +638219.098|222340.642|107.393 +638224.904|222338.499|106.092 +638248.298|222329.898|100.151 +638265.153|222323.610|97.798 +638276.254|222319.455|96.500 +638266.985|222324.454|97.747 +638255.762|222328.657|99.310 +638250.111|222330.773|100.157 +638226.517|222339.472|106.339 +638220.811|222341.602|107.281 +638215.285|222343.702|107.381 +638209.747|222345.805|107.534 +638204.224|222347.906|107.653 +638198.630|222350.030|107.811 +638193.071|222352.148|107.863 +638187.511|222354.264|107.933 +638181.943|222356.391|107.808 +638176.322|222358.528|107.902 +638170.711|222360.652|108.216 +638165.121|222362.783|108.223 +638159.451|222364.941|108.311 +638153.870|222367.065|108.311 +638148.171|222369.239|108.305 +638142.535|222371.387|108.308 +638136.908|222373.530|108.296 +638131.279|222375.688|108.070 +638125.454|222377.883|108.607 +638119.385|222380.123|110.140 +638113.521|222382.336|110.643 +638089.884|222391.202|113.611 +638078.280|222395.601|114.123 +637996.471|222426.797|113.718 +637978.857|222433.536|113.157 +637972.846|222435.825|113.157 +637960.770|222440.385|114.069 +637954.887|222442.653|113.541 +637943.055|222447.182|113.115 +637924.962|222454.071|113.230 +637919.034|222456.341|113.014 +637913.102|222458.624|112.505 +637907.174|222460.907|111.990 +637895.067|222465.537|111.652 +637888.935|222467.848|112.237 +637876.368|222472.548|114.111 +637870.196|222474.873|114.669 +637864.072|222477.205|114.669 +637858.055|222479.509|114.453 +637851.914|222481.859|114.248 +637833.921|222488.806|112.368 +637827.859|222491.144|111.773 +637815.664|222495.825|111.036 +637809.510|222498.172|111.018 +637803.316|222500.519|111.252 +637808.986|222502.382|110.926 +637815.014|222500.092|110.966 +637821.190|222497.755|110.911 +637827.258|222495.444|111.115 +637833.184|222493.167|111.798 +637839.088|222490.891|112.612 +637845.019|222488.592|113.611 +637863.051|222481.722|114.355 +637875.091|222477.168|114.172 +637887.484|222472.560|112.228 +637893.830|222470.219|110.856 +637899.700|222467.973|111.331 +637905.754|222465.684|111.203 +637917.418|222461.197|112.590 +637923.368|222458.920|113.029 +637929.315|222456.658|113.179 +637935.203|222454.421|113.325 +637941.226|222452.144|113.145 +637947.307|222449.861|112.709 +637953.272|222447.606|112.545 +637982.859|222436.389|112.575 +637988.751|222434.158|112.581 +638000.412|222429.708|113.197 +638006.192|222427.504|113.474 +638058.041|222407.747|115.681 +638122.446|222383.576|110.201 +638128.447|222381.360|108.954 +638134.235|222379.193|108.305 +638140.017|222377.017|107.966 +638145.589|222374.893|108.195 +638151.228|222372.756|108.198 +638156.861|222370.616|108.232 +638162.515|222368.473|108.204 +638168.096|222366.358|108.223 +638173.716|222364.231|108.107 +638179.276|222362.128|108.003 +638184.954|222359.988|107.704 +638190.511|222357.882|107.643 +638196.003|222355.791|107.842 +638201.578|222353.681|107.744 +638207.080|222351.597|107.695 +638212.615|222349.506|107.546 +638218.153|222347.412|107.393 +638223.627|222345.342|107.256 +638229.110|222343.269|107.116 +638234.920|222341.127|105.833 +638252.821|222334.598|100.322 +638258.493|222332.489|99.414 +638264.126|222330.398|98.445 +638275.449|222326.192|96.600 +638268.753|222329.809|97.756 +638233.768|222342.730|106.772 +638228.239|222344.827|107.086 +638222.685|222346.936|107.268 +638217.156|222349.039|107.390 +638211.609|222351.146|107.585 +638206.007|222353.276|107.774 +638200.517|222355.370|107.805 +638195.009|222357.476|107.674 +638189.557|222359.573|107.366 +638183.893|222361.710|107.838 +638178.230|222363.859|108.101 +638172.610|222365.998|108.226 +638167.041|222368.126|108.162 +638161.387|222370.281|108.204 +638155.827|222372.405|108.146 +638150.207|222374.551|108.082 +638144.589|222376.697|108.034 +638138.880|222378.873|108.098 +638133.083|222381.065|108.530 +638127.207|222383.268|109.292 +638121.293|222385.481|110.228 +638010.346|222427.644|113.666 +638004.494|222429.903|113.154 +637998.611|222432.149|113.099 +637980.954|222438.916|112.459 +637957.216|222447.990|112.084 +637951.090|222450.294|112.731 +637945.079|222452.583|112.843 +637932.963|222457.183|113.294 +637897.244|222470.917|111.005 +637891.062|222473.249|111.539 +637884.835|222475.586|112.346 +637860.064|222484.953|114.126 +637835.979|222494.249|111.813 +637830.023|222496.560|110.975 +637823.878|222498.910|110.856 +637817.712|222501.257|110.896 +637811.573|222503.604|110.786 +637825.737|222502.217|110.576 +637831.779|222499.907|110.926 +637843.626|222495.328|112.645 +637861.573|222488.464|113.773 +637873.679|222483.865|113.840 +637898.307|222474.678|110.451 +637916.019|222467.881|111.978 +637933.780|222461.102|112.767 +637939.745|222458.835|112.837 +637945.682|222456.585|112.758 +637951.727|222454.305|112.493 +637963.739|222449.779|111.783 +637969.698|222447.520|111.685 +637981.481|222443.040|111.886 +637987.449|222440.778|111.801 +637993.244|222438.572|111.956 +638004.924|222434.112|112.468 +638016.317|222429.729|113.761 +638022.099|222427.519|114.035 +638027.970|222425.297|113.953 +638033.764|222423.097|113.928 +638062.238|222412.197|115.940 +638085.629|222403.404|114.197 +638126.521|222388.069|110.326 +638138.326|222383.683|108.369 +638144.001|222381.540|108.174 +638149.774|222379.364|107.881 +638155.297|222377.258|108.055 +638160.933|222375.118|108.076 +638166.507|222373.003|108.088 +638172.091|222370.884|108.085 +638177.675|222368.766|108.107 +638183.311|222366.636|107.954 +638188.865|222364.532|107.878 +638194.482|222362.414|107.576 +638200.020|222360.311|107.598 +638205.476|222358.238|107.683 +638210.990|222356.150|107.585 +638216.492|222354.066|107.543 +638222.030|222351.972|107.393 +638227.577|222349.875|107.220 +638233.055|222347.802|107.086 +638238.514|222345.735|107.034 +638256.235|222339.252|101.874 +638262.172|222337.097|99.813 +638268.110|222334.930|98.018 +638279.445|222330.730|95.896 +638285.032|222328.645|95.140 +638270.472|222335.628|97.966 +638264.534|222337.804|99.764 +638246.594|222344.358|105.821 +638240.836|222346.503|106.900 +638235.368|222348.582|106.991 +638229.888|222350.664|107.140 +638224.340|222352.773|107.308 +638218.808|222354.873|107.445 +638213.313|222356.970|107.476 +638207.796|222359.067|107.589 +638202.282|222361.173|107.473 +638196.732|222363.289|107.512 +638191.123|222365.413|107.768 +638185.515|222367.550|107.820 +638179.943|222369.668|107.985 +638174.359|222371.796|107.970 +638168.775|222373.926|107.982 +638163.139|222376.075|107.948 +638157.562|222378.203|107.973 +638151.920|222380.364|107.750 +638146.193|222382.528|108.122 +638128.630|222389.118|110.371 +638111.284|222395.677|111.475 +638087.787|222404.525|113.822 +638035.358|222424.499|114.126 +638029.524|222426.727|114.044 +638023.684|222428.955|114.002 +637994.713|222440.126|111.338 +637964.870|222451.477|111.895 +637958.908|222453.741|112.029 +637952.815|222456.043|112.532 +637946.697|222458.359|112.855 +637940.772|222460.630|112.587 +637922.859|222467.476|112.231 +637916.870|222469.783|111.722 +637911.018|222472.057|110.832 +637905.251|222474.315|109.524 +637899.024|222476.656|110.256 +637892.821|222478.991|110.902 +637886.585|222481.326|111.749 +637880.248|222483.691|112.831 +637855.705|222493.015|113.523 +637849.740|222495.328|112.721 +637837.710|222499.977|111.344 +637831.647|222502.318|110.761 +637837.177|222504.265|110.935 +637849.146|222499.672|111.993 +637861.021|222495.100|113.258 +637879.221|222488.208|112.819 +637891.632|222483.594|110.758 +637909.774|222476.720|110.350 +637921.442|222472.228|111.688 +637933.277|222467.689|112.557 +637963.154|222456.372|111.914 +637969.143|222454.110|111.667 +637981.109|222449.584|111.295 +637992.939|222445.103|111.054 +638010.425|222438.428|111.712 +638021.736|222434.042|113.666 +638033.279|222429.638|114.072 +638039.083|222427.425|114.309 +638044.932|222425.212|114.081 +638085.306|222409.878|114.072 +638096.818|222405.513|113.904 +638137.667|222390.187|109.856 +638155.059|222383.677|107.860 +638160.725|222381.528|107.753 +638166.325|222379.394|107.902 +638171.872|222377.282|108.024 +638177.471|222375.158|107.966 +638183.067|222373.033|107.939 +638188.648|222370.912|107.982 +638194.223|222368.803|107.826 +638199.801|222366.690|107.677 +638205.409|222364.572|107.424 +638210.883|222362.493|107.454 +638216.345|222360.415|107.543 +638221.862|222358.324|107.445 +638227.370|222356.233|107.400 +638232.844|222354.160|107.253 +638238.337|222352.084|107.067 +638243.823|222350.006|106.918 +638249.240|222347.954|106.802 +638255.144|222345.787|105.239 +638273.044|222339.271|99.191 +638278.964|222337.116|97.256 +638284.596|222335.019|96.332 +638260.133|222346.022|104.525 +638254.205|222348.195|106.378 +638248.663|222350.295|106.692 +638243.217|222352.362|106.927 +638237.739|222354.447|107.052 +638232.259|222356.531|107.208 +638226.684|222358.644|107.482 +638221.207|222360.738|107.427 +638215.742|222362.826|107.342 +638210.225|222364.935|107.229 +638204.617|222367.065|107.454 +638198.990|222369.196|107.768 +638193.446|222371.308|107.805 +638187.850|222373.445|107.808 +638182.324|222375.554|107.814 +638176.666|222377.709|107.838 +638171.101|222379.836|107.777 +638165.462|222381.988|107.762 +638159.906|222384.110|107.698 +638154.102|222386.304|108.104 +638089.935|222410.524|113.611 +638049.147|222426.053|114.267 +638043.289|222428.300|113.980 +638037.482|222430.513|114.038 +638025.720|222435.014|113.773 +638014.427|222439.416|111.740 +638008.535|222441.680|111.417 +638002.677|222443.924|111.240 +637984.791|222450.742|111.374 +637972.904|222455.290|111.088 +637954.759|222462.160|112.157 +637948.724|222464.452|112.407 +637942.595|222466.769|112.831 +637936.709|222469.036|112.374 +637924.746|222473.624|111.859 +637912.868|222478.214|110.658 +637900.919|222482.810|109.850 +637888.593|222487.483|110.429 +637882.071|222489.872|112.502 +637875.926|222492.195|112.944 +637869.763|222494.536|113.160 +637857.601|222499.193|112.785 +637851.612|222501.528|111.773 +637845.568|222503.851|111.417 +637878.032|222495.420|112.221 +637890.501|222490.790|109.795 +637896.619|222488.470|109.573 +637902.602|222486.200|109.426 +637908.564|222483.917|109.743 +637914.486|222481.637|110.268 +637920.338|222479.384|110.835 +637932.055|222474.870|111.953 +637943.957|222470.329|112.203 +637949.861|222468.079|112.270 +637955.942|222465.784|111.810 +637967.957|222461.249|111.078 +637979.915|222456.713|110.697 +637985.791|222454.476|110.719 +637991.680|222452.220|111.002 +637997.569|222449.980|111.008 +638003.470|222447.737|110.984 +638009.300|222445.503|111.292 +638015.128|222443.281|111.331 +638021.002|222441.053|111.203 +638037.906|222434.484|114.026 +638043.694|222432.280|114.050 +638049.580|222430.046|113.934 +638055.347|222427.846|114.081 +638090.103|222414.669|113.093 +638095.742|222412.499|113.621 +638107.577|222408.076|111.953 +638142.123|222395.028|110.100 +638147.982|222392.830|109.439 +638153.819|222390.636|108.878 +638159.646|222388.468|107.881 +638165.304|222386.320|107.805 +638170.994|222384.162|107.619 +638176.551|222382.046|107.717 +638182.098|222379.928|107.863 +638187.709|222377.797|107.793 +638193.306|222375.670|107.790 +638198.847|222373.564|107.774 +638204.412|222371.451|107.671 +638209.951|222369.354|107.457 +638215.568|222367.230|107.211 +638221.055|222365.145|107.226 +638226.507|222363.063|107.369 +638232.030|222360.966|107.272 +638237.489|222358.894|107.201 +638242.985|222356.815|107.006 +638248.474|222354.733|106.857 +638253.912|222352.673|106.674 +638259.377|222350.597|106.638 +638265.254|222348.451|104.760 +638277.126|222344.108|101.130 +638288.979|222339.783|97.247 +638271.880|222348.030|103.931 +638266.065|222350.173|105.595 +638260.404|222352.289|106.522 +638254.970|222354.358|106.695 +638249.496|222356.443|106.799 +638244.085|222358.506|106.927 +638238.602|222360.591|107.092 +638233.106|222362.691|107.083 +638227.654|222364.770|107.171 +638222.195|222366.861|107.067 +638216.675|222368.961|107.198 +638211.069|222371.095|107.427 +638205.507|222373.213|107.509 +638194.433|222377.444|107.543 +638188.828|222379.580|107.601 +638183.317|222381.690|107.564 +638177.715|222383.826|107.643 +638172.131|222385.969|107.424 +638166.480|222388.112|107.717 +638160.643|222390.315|108.253 +638143.303|222396.853|110.085 +638126.082|222403.391|110.908 +638120.348|222405.568|111.194 +638114.603|222407.756|111.298 +638085.272|222418.842|113.803 +638067.901|222425.465|114.044 +638062.049|222427.702|113.977 +638056.228|222429.921|114.062 +638050.482|222432.128|113.855 +638044.630|222434.362|113.831 +638033.121|222438.797|113.005 +638027.424|222441.019|112.084 +638015.872|222445.484|110.944 +638004.079|222449.989|110.963 +637992.347|222454.494|110.469 +637986.416|222456.762|110.408 +637980.488|222459.030|110.344 +637974.443|222461.328|110.563 +637968.424|222463.608|110.975 +637962.340|222465.909|111.423 +637956.357|222468.180|111.709 +637944.299|222472.761|112.191 +637932.305|222477.360|111.825 +637920.485|222481.932|110.661 +637908.610|222486.523|109.484 +637902.703|222488.806|108.924 +637896.631|222491.125|108.896 +637877.858|222498.166|111.603 +637883.747|222500.086|110.633 +637896.082|222495.456|109.298 +637908.085|222490.897|109.158 +637919.982|222486.331|109.966 +637949.508|222475.013|111.700 +637955.476|222472.755|111.490 +637967.537|222468.195|110.807 +637973.587|222465.921|110.277 +637979.561|222463.654|110.121 +638020.639|222447.972|111.222 +638026.281|222445.783|112.124 +638032.197|222443.546|111.819 +638037.848|222441.354|112.703 +638054.908|222434.795|114.117 +638060.778|222432.564|114.114 +638066.545|222430.372|114.011 +638072.306|222428.184|113.956 +638078.100|222425.971|114.041 +638083.937|222423.764|113.700 +638089.719|222421.579|113.349 +638101.399|222417.171|112.505 +638112.985|222412.788|111.859 +638130.392|222406.214|110.697 +638136.070|222404.053|110.673 +638153.325|222397.545|109.359 +638159.107|222395.360|109.012 +638170.516|222391.050|108.238 +638176.252|222388.895|107.637 +638181.952|222386.734|107.448 +638187.456|222384.634|107.509 +638193.004|222382.513|107.674 +638198.609|222380.379|107.637 +638204.150|222378.270|107.619 +638209.676|222376.164|107.668 +638215.187|222374.070|107.561 +638220.741|222371.966|107.317 +638226.306|222369.860|107.034 +638231.796|222367.769|107.049 +638237.179|222365.709|107.229 +638242.659|222363.630|107.076 +638248.133|222361.551|106.967 +638253.623|222359.467|106.820 +638259.048|222357.406|106.677 +638264.553|222355.318|106.519 +638269.911|222353.282|106.415 +638275.745|222351.130|104.934 +638281.561|222348.994|103.309 +638293.524|222344.638|99.048 +638279.640|222350.984|104.550 +638273.770|222353.154|106.144 +638268.296|222355.233|106.409 +638262.837|222357.309|106.634 +638257.402|222359.378|106.796 +638251.955|222361.451|107.015 +638246.423|222363.563|107.098 +638240.973|222365.645|107.131 +638235.502|222367.742|107.028 +638230.040|222369.836|106.912 +638224.462|222371.954|107.223 +638218.842|222374.091|107.461 +638213.331|222376.191|107.576 +638207.802|222378.306|107.521 +638202.261|222380.425|107.534 +638196.643|222382.570|107.607 +638191.087|222384.701|107.470 +638185.500|222386.838|107.457 +638179.861|222388.996|107.427 +638174.124|222391.160|108.009 +638168.446|222393.312|108.405 +638162.758|222395.476|108.610 +638157.025|222397.661|108.759 +638139.627|222404.236|110.356 +638133.863|222406.421|110.707 +638128.087|222408.622|110.877 +638122.205|222410.841|111.487 +638110.641|222415.239|111.984 +638104.834|222417.440|112.365 +638087.208|222424.115|113.700 +638081.386|222426.328|113.968 +638075.509|222428.574|113.953 +638069.755|222430.775|113.992 +638063.930|222432.997|114.062 +638058.066|222435.240|114.056 +638052.271|222437.468|113.764 +638023.425|222448.606|111.402 +638017.509|222450.879|111.179 +638011.818|222453.086|110.518 +638005.871|222455.363|110.454 +638000.004|222457.625|110.036 +637982.176|222464.443|109.954 +637976.102|222466.747|110.292 +637970.118|222469.024|110.521 +637951.922|222475.928|111.633 +637933.817|222482.850|111.557 +637922.088|222487.413|109.890 +637910.103|222492.024|109.237 +637904.114|222494.338|108.753 +637898.103|222496.636|108.722 +637891.833|222499.001|109.423 +637894.199|222502.354|108.951 +637912.282|222495.463|109.140 +637918.308|222493.170|109.137 +637924.148|222490.915|109.795 +637935.868|222486.389|111.228 +637941.714|222484.148|111.551 +637953.744|222479.570|111.523 +637965.863|222475.004|110.548 +637983.853|222468.198|109.722 +637989.760|222465.952|109.603 +637995.716|222463.687|109.597 +638007.432|222459.213|109.914 +638013.394|222456.957|109.643 +638019.054|222454.750|110.737 +638024.873|222452.519|111.139 +638036.510|222448.075|111.405 +638042.131|222445.890|112.432 +638059.260|222439.303|113.837 +638065.076|222437.090|113.788 +638070.815|222434.893|114.090 +638082.355|222430.506|113.938 +638094.002|222426.099|113.404 +638105.730|222421.682|112.377 +638111.473|222419.500|112.267 +638117.261|222417.312|111.984 +638128.941|222412.907|111.069 +638134.695|222410.734|110.740 +638140.429|222408.561|110.505 +638152.078|222404.178|109.384 +638157.872|222402.005|108.735 +638163.597|222399.840|108.378 +638169.263|222397.689|108.262 +638175.045|222395.515|107.726 +638180.781|222393.345|107.384 +638186.402|222391.212|107.250 +638191.974|222389.087|107.317 +638197.558|222386.963|107.366 +638203.065|222384.860|107.457 +638208.582|222382.756|107.531 +638214.166|222380.638|107.390 +638219.677|222378.532|107.525 +638225.264|222376.414|107.390 +638230.830|222374.307|107.128 +638236.353|222372.219|106.802 +638241.827|222370.132|106.897 +638247.237|222368.065|107.003 +638252.714|222365.986|106.891 +638258.188|222363.908|106.802 +638263.629|222361.844|106.616 +638269.070|222359.781|106.461 +638274.443|222357.741|106.318 +638279.878|222355.678|106.208 +638291.515|222351.389|103.209 +638280.981|222356.440|106.269 +638275.571|222358.506|106.311 +638270.201|222360.555|106.458 +638264.708|222362.649|106.589 +638259.286|222364.715|106.726 +638253.866|222366.782|106.869 +638248.404|222368.867|106.945 +638243.003|222370.939|106.827 +638237.508|222373.039|106.823 +638231.924|222375.161|107.147 +638226.407|222377.264|107.253 +638220.881|222379.370|107.409 +638215.349|222381.488|107.378 +638209.811|222383.607|107.366 +638204.202|222385.750|107.409 +638198.691|222387.862|107.332 +638193.132|222389.992|107.223 +638187.563|222392.126|107.165 +638181.973|222394.260|107.192 +638170.427|222398.627|108.213 +638164.727|222400.795|108.475 +638153.270|222405.138|109.292 +638089.183|222429.434|113.758 +638083.413|222431.637|113.837 +638077.570|222433.865|113.956 +638071.754|222436.087|113.989 +638065.957|222438.319|113.703 +638060.169|222440.534|113.654 +638043.018|222447.179|111.850 +638037.199|222449.410|111.709 +638025.482|222453.924|111.008 +638008.026|222460.663|109.649 +638002.113|222462.934|109.466 +637990.177|222467.488|109.652 +637984.249|222469.759|109.585 +637978.199|222472.060|109.823 +637935.932|222488.163|111.124 +637924.093|222492.756|109.704 +637918.110|222495.069|109.189 +637906.077|222499.684|108.850 +637900.118|222501.991|108.232 +637893.967|222504.326|108.658 +637911.984|222501.668|108.588 +637917.888|222499.407|108.872 +637923.822|222497.124|109.320 +637929.705|222494.850|110.048 +637947.347|222488.068|111.362 +637959.307|222483.527|111.033 +637971.414|222478.961|110.082 +637977.464|222476.684|109.509 +637989.360|222472.157|109.411 +637995.228|222469.917|109.466 +638041.695|222452.108|111.810 +638047.422|222449.901|112.353 +638053.161|222447.703|112.569 +638058.776|222445.530|113.349 +638076.030|222438.940|113.706 +638081.797|222436.737|113.883 +638093.316|222432.366|113.569 +638116.682|222423.554|111.825 +638128.209|222419.195|111.194 +638133.985|222417.016|110.746 +638145.403|222412.685|110.423 +638180.047|222399.648|107.223 +638191.391|222395.363|106.531 +638196.844|222393.263|107.025 +638202.367|222391.148|107.278 +638207.899|222389.041|107.268 +638213.419|222386.938|107.332 +638218.897|222384.853|107.317 +638224.429|222382.747|107.363 +638229.903|222380.659|107.387 +638235.362|222378.590|107.256 +638240.934|222376.481|106.973 +638246.463|222374.393|106.634 +638251.870|222372.329|106.738 +638257.262|222370.269|106.909 +638262.736|222368.190|106.805 +638268.146|222366.136|106.711 +638273.584|222364.072|106.543 +638278.964|222362.033|106.372 +638284.401|222359.970|106.232 +638289.769|222357.930|106.132 +638295.487|222355.827|104.638 +638301.391|222353.666|102.760 +638282.009|222362.749|106.275 +638276.629|222364.795|106.442 +638271.197|222366.864|106.589 +638265.690|222368.961|106.772 +638260.307|222371.015|106.775 +638254.887|222373.091|106.686 +638249.508|222375.158|106.479 +638243.906|222377.279|106.842 +638238.386|222379.373|107.168 +638232.899|222381.470|107.156 +638227.407|222383.567|107.174 +638216.382|222387.780|107.189 +638210.844|222389.895|107.189 +638205.245|222392.035|107.192 +638199.746|222394.153|106.842 +638194.168|222396.287|106.805 +638188.548|222398.426|106.939 +638183.015|222400.548|106.759 +638177.124|222402.742|107.957 +638165.569|222407.116|108.829 +638159.832|222409.289|109.262 +638154.008|222411.487|109.807 +638148.283|222413.654|110.243 +638142.593|222415.824|110.316 +638136.841|222418.019|110.380 +638130.986|222420.232|110.899 +638125.244|222422.408|111.225 +638096.016|222433.481|113.249 +638090.173|222435.697|113.611 +638084.269|222437.934|113.986 +638078.557|222440.135|113.566 +638061.232|222446.786|112.929 +638049.674|222451.233|112.255 +638026.400|222460.188|110.938 +638008.999|222466.915|109.356 +637979.201|222478.296|109.402 +637936.935|222494.384|110.710 +637925.142|222498.968|109.070 +637919.165|222501.263|108.847 +637913.206|222503.567|108.201 +637964.733|222487.937|110.152 +637976.751|222483.389|109.366 +637982.838|222481.088|108.930 +638018.182|222467.570|109.661 +638023.879|222465.370|110.292 +638029.573|222463.166|110.944 +638052.619|222454.290|112.740 +638058.398|222452.083|112.795 +638064.140|222449.880|113.026 +638069.889|222447.676|113.246 +638087.156|222441.074|113.654 +638098.781|222436.663|113.172 +638104.551|222434.478|112.877 +638110.321|222432.293|112.612 +638116.087|222430.104|112.368 +638122.040|222427.870|111.658 +638127.822|222425.691|111.152 +638139.328|222421.326|110.673 +638145.053|222419.153|110.451 +638150.780|222416.979|110.240 +638168.004|222410.469|109.064 +638179.623|222406.104|107.713 +638185.393|222403.928|107.226 +638191.151|222401.764|106.561 +638196.716|222399.652|106.385 +638202.264|222397.527|106.549 +638207.701|222395.439|106.891 +638213.218|222393.321|107.180 +638218.772|222391.209|107.125 +638224.301|222389.099|107.177 +638229.778|222387.008|107.189 +638235.277|222384.914|107.150 +638240.778|222382.820|107.104 +638246.228|222380.748|107.040 +638251.757|222378.654|106.699 +638257.280|222376.563|106.403 +638262.675|222374.499|106.577 +638268.040|222372.451|106.644 +638273.462|222370.378|106.747 +638278.921|222368.309|106.510 +638284.289|222366.270|106.385 +638289.671|222364.225|106.229 +638295.139|222362.149|106.019 +638300.516|222360.116|105.684 +638306.396|222357.958|103.900 +638289.684|222366.480|106.186 +638284.255|222368.556|106.299 +638278.875|222370.604|106.470 +638273.480|222372.668|106.491 +638268.082|222374.731|106.540 +638262.681|222376.807|106.382 +638257.219|222378.895|106.455 +638251.687|222380.995|106.796 +638246.243|222383.076|106.839 +638235.222|222387.286|106.985 +638229.668|222389.410|107.009 +638224.191|222391.507|107.009 +638218.647|222393.629|107.022 +638213.148|222395.738|106.891 +638207.659|222397.859|106.506 +638202.160|222399.981|106.159 +638179.340|222408.634|107.802 +638173.591|222410.813|108.247 +638167.730|222413.014|109.152 +638156.205|222417.382|110.027 +638150.429|222419.585|110.167 +638144.693|222421.756|110.679 +638138.905|222423.959|110.911 +638133.162|222426.142|111.243 +638109.915|222434.975|112.606 +638104.011|222437.206|113.179 +638098.095|222439.452|113.569 +638092.279|222441.665|113.825 +638069.197|222450.529|113.224 +638028.600|222466.174|110.877 +638022.843|222468.408|110.259 +637999.486|222477.434|108.475 +637993.521|222479.710|108.579 +637987.474|222482.030|108.494 +637963.242|222491.226|110.097 +637957.079|222493.554|110.694 +637951.041|222495.853|111.014 +637945.052|222498.154|110.795 +637939.120|222500.446|110.304 +637957.262|222497.624|110.591 +637963.330|222495.325|110.143 +637969.366|222493.049|109.600 +637975.535|222490.732|108.728 +637987.553|222486.175|108.000 +637993.426|222483.917|108.317 +637999.379|222481.646|108.268 +638016.875|222474.910|109.338 +638028.372|222470.454|110.679 +638034.081|222468.247|111.249 +638062.805|222457.192|112.968 +638068.606|222454.964|113.221 +638074.378|222452.751|113.340 +638085.876|222448.350|113.557 +638097.412|222443.948|113.425 +638108.946|222439.559|113.112 +638114.728|222437.352|113.044 +638132.245|222430.744|111.264 +638137.996|222428.553|111.155 +638160.863|222419.863|110.195 +638166.666|222417.668|109.734 +638172.539|222415.458|109.027 +638184.003|222411.127|108.021 +638195.613|222406.772|106.324 +638201.313|222404.617|105.903 +638212.383|222400.377|106.098 +638217.769|222398.292|106.644 +638223.210|222396.198|107.006 +638228.708|222394.101|106.927 +638234.182|222392.010|106.964 +638239.730|222389.889|106.976 +638245.155|222387.816|106.982 +638250.669|222385.713|106.915 +638256.116|222383.634|106.875 +638261.660|222381.534|106.516 +638267.174|222379.437|106.272 +638272.517|222377.392|106.415 +638277.882|222375.338|106.500 +638283.261|222373.280|106.540 +638288.629|222371.235|106.415 +638294.103|222369.156|106.168 +638299.486|222367.108|106.028 +638304.823|222365.078|105.833 +638290.570|222372.594|106.235 +638285.212|222374.646|106.342 +638279.796|222376.721|106.439 +638274.474|222378.773|106.226 +638269.045|222380.858|106.165 +638263.507|222382.967|106.510 +638258.027|222385.064|106.665 +638252.537|222387.158|106.872 +638247.121|222389.240|106.836 +638241.629|222391.346|106.857 +638236.145|222393.449|106.863 +638230.699|222395.546|106.750 +638225.166|222397.667|106.723 +638219.729|222399.770|106.369 +638208.738|222404.013|105.882 +638197.454|222408.308|106.552 +638191.586|222410.509|107.649 +638185.905|222412.666|108.067 +638174.344|222417.059|108.988 +638162.856|222421.420|109.963 +638157.174|222423.588|110.246 +638145.595|222427.995|110.954 +638105.060|222443.436|113.267 +638093.450|222447.880|113.447 +638087.598|222450.117|113.633 +638064.430|222459.024|113.279 +638041.503|222467.915|111.283 +638035.605|222470.188|110.987 +638029.862|222472.414|110.588 +638024.086|222474.654|110.060 +638018.301|222476.909|109.289 +638000.678|222483.719|108.296 +637988.879|222488.263|107.945 +637958.594|222499.782|110.003 +637946.451|222504.421|110.405 +637962.663|222502.583|110.039 +637968.759|222500.281|109.484 +637974.779|222498.002|109.021 +637980.951|222495.697|107.845 +638004.792|222486.590|107.765 +638016.290|222482.134|109.064 +638027.762|222477.680|110.493 +638033.602|222475.449|110.481 +638039.317|222473.224|111.322 +638056.493|222466.598|112.642 +638073.775|222459.959|113.340 +638085.354|222455.540|113.197 +638108.339|222446.746|113.273 +638154.556|222429.193|110.774 +638160.335|222427.001|110.368 +638177.453|222420.506|109.350 +638188.990|222416.144|108.308 +638200.438|222411.819|107.201 +638206.135|222409.670|106.546 +638228.364|222401.176|106.409 +638233.722|222399.106|106.848 +638239.221|222397.006|106.787 +638244.692|222394.912|106.836 +638250.117|222392.836|106.845 +638255.616|222390.736|106.827 +638260.983|222388.682|106.830 +638266.449|222386.597|106.747 +638271.904|222384.524|106.473 +638277.458|222382.418|106.110 +638282.804|222380.367|106.257 +638288.080|222378.340|106.421 +638293.506|222376.270|106.330 +638298.867|222374.225|106.238 +638304.259|222372.171|106.065 +638309.575|222370.144|105.936 +638292.725|222377.998|106.205 +638287.361|222380.050|106.327 +638282.027|222382.107|106.129 +638276.528|222384.210|106.290 +638271.057|222386.295|106.604 +638265.607|222388.386|106.631 +638260.130|222390.480|106.775 +638254.708|222392.565|106.738 +638249.212|222394.674|106.744 +638243.665|222396.802|106.720 +638238.139|222398.917|106.863 +638232.695|222401.023|106.497 +638227.309|222403.117|105.933 +638216.391|222407.336|105.370 +638210.539|222409.536|106.333 +638193.220|222416.089|108.229 +638176.036|222422.621|109.585 +638164.478|222427.020|110.326 +638112.247|222446.908|113.608 +638106.456|222449.124|113.736 +638094.974|222453.546|113.383 +638089.143|222455.781|113.465 +638083.346|222458.006|113.438 +638077.521|222460.237|113.535 +638071.754|222462.471|113.139 +638060.117|222466.951|112.828 +638054.295|222469.204|112.438 +638048.486|222471.453|111.999 +638042.752|222473.678|111.523 +638007.987|222487.190|107.963 +637996.115|222491.762|107.598 +637978.022|222498.666|108.415 +637965.793|222503.314|109.372 +637979.049|222502.909|107.674 +637985.124|222500.623|106.970 +637996.895|222496.103|107.467 +638002.808|222493.838|107.598 +638008.685|222491.576|107.927 +638014.406|222489.354|108.686 +638020.264|222487.096|109.119 +638025.994|222484.871|109.868 +638031.819|222482.630|110.195 +638043.344|222478.183|111.149 +638049.062|222475.974|111.709 +638054.771|222473.764|112.301 +638060.559|222471.539|112.575 +638066.292|222469.338|112.819 +638077.826|222464.906|113.346 +638100.875|222456.088|113.572 +638112.396|222451.696|113.285 +638175.953|222427.574|109.670 +638181.659|222425.407|109.362 +638193.077|222421.082|108.536 +638221.890|222410.225|105.269 +638227.346|222408.125|105.565 +638238.194|222403.949|106.205 +638243.570|222401.874|106.595 +638249.069|222399.773|106.567 +638254.555|222397.676|106.589 +638259.978|222395.601|106.622 +638265.424|222393.522|106.592 +638270.844|222391.446|106.659 +638276.269|222389.380|106.510 +638281.801|222387.280|106.229 +638287.303|222385.195|105.845 +638292.579|222383.171|106.025 +638297.941|222381.114|106.156 +638303.305|222379.068|106.065 +638308.666|222377.023|105.997 +638314.001|222374.993|105.821 +638299.894|222381.525|106.180 +638294.542|222383.585|106.022 +638289.263|222385.622|105.863 +638283.773|222387.716|106.223 +638278.318|222389.797|106.470 +638272.837|222391.897|106.601 +638267.424|222393.982|106.519 +638261.983|222396.070|106.534 +638256.558|222398.155|106.525 +638251.068|222400.264|106.516 +638245.558|222402.376|106.607 +638240.199|222404.458|106.162 +638223.895|222410.765|105.260 +638206.622|222417.296|107.375 +638189.407|222423.844|108.756 +638183.631|222426.035|109.323 +638177.867|222428.224|109.856 +638172.155|222430.400|110.222 +638143.324|222441.394|111.929 +638137.646|222443.582|111.783 +638102.679|222456.927|113.617 +638091.185|222461.352|113.377 +638062.162|222472.542|112.502 +638050.714|222476.992|111.453 +638044.831|222479.268|111.078 +638039.095|222481.506|110.344 +638027.378|222486.038|109.750 +638021.581|222488.284|109.326 +638015.777|222490.546|108.664 +638009.977|222492.805|107.994 +637998.181|222497.368|107.293 +637980.104|222504.274|108.082 +637995.987|222502.811|107.107 +638001.876|222500.550|107.332 +638007.789|222498.279|107.445 +638019.280|222493.820|108.716 +638030.883|222489.342|109.494 +638036.659|222487.105|110.018 +638048.175|222482.649|110.984 +638053.847|222480.442|111.734 +638059.544|222478.244|112.087 +638065.308|222476.022|112.453 +638071.029|222473.819|112.734 +638076.780|222471.609|112.898 +638099.753|222462.797|113.331 +638105.468|222460.602|113.462 +638117.011|222456.195|113.310 +638122.680|222454.034|113.157 +638140.081|222447.417|112.270 +638163.097|222438.672|111.018 +638168.824|222436.505|110.542 +638180.278|222432.165|109.667 +638197.384|222425.660|108.811 +638203.090|222423.502|108.305 +638208.802|222421.341|107.796 +638220.140|222417.046|106.930 +638225.803|222414.904|106.424 +638231.467|222412.758|105.943 +638237.212|222410.597|105.196 +638247.929|222406.455|106.071 +638253.242|222404.406|106.458 +638258.728|222402.306|106.461 +638264.126|222400.237|106.580 +638269.585|222398.152|106.488 +638274.953|222396.098|106.494 +638280.381|222394.019|106.549 +638285.819|222391.949|106.345 +638291.244|222389.880|106.208 +638296.731|222387.798|105.885 +638302.052|222385.759|105.906 +638307.338|222383.729|106.074 +638312.702|222381.680|105.979 +638318.054|222379.635|105.955 +638301.251|222388.066|105.668 +638295.828|222390.133|105.988 +638290.369|222392.217|106.223 +638284.968|222394.290|106.281 +638279.558|222396.363|106.382 +638274.184|222398.429|106.378 +638268.756|222400.514|106.348 +638263.309|222402.605|106.394 +638257.804|222404.717|106.439 +638252.403|222406.808|106.125 +638247.051|222408.887|105.650 +638236.072|222413.112|105.482 +638230.339|222415.279|106.208 +638224.737|222417.418|106.467 +638213.307|222421.750|107.643 +638201.956|222426.075|108.366 +638150.344|222445.747|111.523 +638144.519|222447.965|111.947 +638132.903|222452.388|112.727 +638121.284|222456.820|113.337 +638115.475|222459.054|113.288 +638103.962|222463.477|113.328 +638092.386|222467.930|113.163 +638080.865|222472.371|112.834 +638075.073|222474.608|112.557 +638069.255|222476.851|112.420 +638040.515|222488.031|109.484 +638034.605|222490.296|109.561 +638022.809|222494.853|109.061 +638011.251|222499.352|107.808 +638005.402|222501.632|107.086 +637999.507|222503.906|106.891 +638012.998|222503.080|107.467 +638018.807|222500.821|108.101 +638024.562|222498.584|108.695 +638036.178|222494.094|109.457 +638042.057|222491.838|109.521 +638047.681|222489.635|110.478 +638053.402|222487.404|111.289 +638059.175|222485.176|111.581 +638064.884|222482.957|112.185 +638070.639|222480.744|112.319 +638076.433|222478.510|112.572 +638082.178|222476.297|112.776 +638087.902|222474.102|112.816 +638093.648|222471.886|113.054 +638105.078|222467.494|113.297 +638110.778|222465.299|113.508 +638116.517|222463.099|113.557 +638122.327|222460.883|113.349 +638151.161|222449.901|111.911 +638162.643|222445.542|111.021 +638179.946|222438.965|109.923 +638185.576|222436.810|109.890 +638196.972|222432.479|109.091 +638208.442|222428.132|108.113 +638214.111|222425.974|107.771 +638219.796|222423.813|107.403 +638242.409|222415.245|105.397 +638248.042|222413.099|105.080 +638253.446|222411.014|105.370 +638258.792|222408.942|105.882 +638264.096|222406.887|106.324 +638269.539|222404.806|106.281 +638274.971|222402.724|106.302 +638280.341|222400.663|106.318 +638285.727|222398.600|106.290 +638291.144|222396.518|106.412 +638296.520|222394.467|106.226 +638301.921|222392.409|105.973 +638307.362|222390.343|105.601 +638312.729|222388.279|105.720 +638317.969|222386.268|105.839 +638323.321|222384.216|105.824 +638303.220|222394.299|105.994 +638297.819|222396.378|106.031 +638292.402|222398.457|106.138 +638287.017|222400.529|106.150 +638281.631|222402.602|106.183 +638276.150|222404.702|106.333 +638270.765|222406.784|106.168 +638265.376|222408.866|106.016 +638260.051|222410.944|105.437 +638249.349|222415.108|104.470 +638232.232|222421.597|106.543 +638226.511|222423.773|107.025 +638220.869|222425.925|107.461 +638209.570|222430.247|107.997 +638203.815|222432.430|108.686 +638198.076|222434.618|109.094 +638192.388|222436.795|109.329 +638181.016|222441.147|109.850 +638175.210|222443.357|110.350 +638169.470|222445.539|110.871 +638134.695|222458.807|113.270 +638123.229|222463.218|113.307 +638117.468|222465.434|113.337 +638105.989|222469.868|112.999 +638094.492|222474.303|112.801 +638088.637|222476.559|112.776 +638077.082|222481.024|112.386 +638071.291|222483.264|112.142 +638065.484|222485.508|111.975 +638059.669|222487.763|111.572 +638053.911|222489.997|111.219 +638048.242|222492.229|110.207 +638042.548|222494.463|109.298 +638036.595|222496.755|109.289 +638024.925|222501.284|108.543 +638019.121|222503.549|107.893 +638029.100|222504.030|108.415 +638040.750|222499.529|109.012 +638069.322|222488.425|111.770 +638086.519|222481.771|112.779 +638092.337|222479.543|112.691 +638098.013|222477.351|112.956 +638109.385|222472.962|113.438 +638115.203|222470.731|113.410 +638126.627|222466.354|113.252 +638144.050|222459.712|112.246 +638155.547|222455.339|111.481 +638166.986|222450.959|111.280 +638178.459|222446.591|110.512 +638184.256|222444.399|109.814 +638189.913|222442.235|109.670 +638263.263|222414.319|104.754 +638268.482|222412.279|105.501 +638273.764|222410.228|106.037 +638279.195|222408.140|106.052 +638284.612|222406.058|106.138 +638289.985|222403.995|106.159 +638295.377|222401.925|106.135 +638300.763|222399.859|106.144 +638306.204|222397.777|105.988 +638311.559|222395.726|105.900 +638317.006|222393.653|105.531 +638322.297|222391.626|105.479 +638304.030|222400.471|106.052 +638298.712|222402.523|106.052 +638293.335|222404.598|106.034 +638287.937|222406.677|106.101 +638282.542|222408.765|105.952 +638277.162|222410.838|105.988 +638271.837|222412.919|105.394 +638266.574|222414.977|104.809 +638249.913|222421.366|105.580 +638244.415|222423.481|105.674 +638238.645|222425.663|106.537 +638227.434|222429.958|107.131 +638221.762|222432.128|107.464 +638204.684|222438.648|108.811 +638187.658|222445.183|109.423 +638181.872|222447.380|110.094 +638153.133|222458.390|111.539 +638141.550|222462.812|112.459 +638112.576|222473.931|113.529 +638106.855|222476.153|113.176 +638101.131|222478.363|113.130 +638095.449|222480.579|112.633 +638066.496|222491.790|111.633 +638060.745|222494.027|111.252 +638049.327|222498.511|109.585 +638043.597|222500.754|108.844 +638037.726|222503.022|108.768 +638051.427|222502.138|109.570 +638062.833|222497.685|111.063 +638068.514|222495.481|111.499 +638074.318|222493.241|111.697 +638080.051|222491.028|111.923 +638085.793|222488.800|112.407 +638091.508|222486.599|112.487 +638097.266|222484.380|112.654 +638103.002|222482.164|112.944 +638108.684|222479.966|113.185 +638114.374|222477.769|113.425 +638131.647|222471.149|113.105 +638160.625|222460.112|111.109 +638166.337|222457.926|110.905 +638172.040|222455.741|110.746 +638183.470|222451.379|110.164 +638189.230|222449.194|109.600 +638211.990|222440.507|108.393 +638228.958|222434.039|107.296 +638251.498|222425.462|105.562 +638262.968|222421.143|103.754 +638278.827|222414.974|105.278 +638284.112|222412.919|105.815 +638289.458|222410.859|105.918 +638294.819|222408.796|105.982 +638300.208|222406.726|105.970 +638305.530|222404.681|105.976 +638310.919|222402.611|105.988 +638316.302|222400.551|105.818 +638321.669|222398.493|105.711 +638327.040|222396.445|105.394 +638312.016|222403.800|105.927 +638306.640|222405.876|105.876 +638301.306|222407.930|105.915 +638295.819|222410.039|106.049 +638290.482|222412.106|105.900 +638285.099|222414.191|105.702 +638279.869|222416.242|104.976 +638263.718|222422.505|104.263 +638252.431|222426.800|105.427 +638235.444|222433.280|106.833 +638218.436|222439.782|108.037 +638207.101|222444.128|108.518 +638201.325|222446.329|109.076 +638195.677|222448.502|109.177 +638132.120|222472.813|113.133 +638120.434|222477.296|113.602 +638114.740|222479.503|113.383 +638108.986|222481.731|113.160 +638091.706|222488.431|112.392 +638085.955|222490.656|112.228 +638080.197|222492.896|111.813 +638074.333|222495.167|111.618 +638068.560|222497.407|111.316 +638062.756|222499.666|110.865 +638051.326|222504.140|109.524 +638072.851|222500.358|111.152 +638078.594|222498.130|111.600 +638084.361|222495.911|111.691 +638090.079|222493.701|112.011 +638095.958|222491.448|111.920 +638101.551|222489.269|112.520 +638107.260|222487.059|112.919 +638112.924|222484.868|113.252 +638118.632|222482.667|113.413 +638130.151|222478.260|113.115 +638135.820|222476.077|113.224 +638141.764|222473.828|112.505 +638164.987|222464.995|110.786 +638170.647|222462.818|110.792 +638176.438|222460.621|110.310 +638182.183|222458.426|110.018 +638187.862|222456.259|109.768 +638199.338|222451.882|109.103 +638205.019|222449.712|108.905 +638210.743|222447.542|108.305 +638222.091|222443.208|107.811 +638239.093|222436.746|106.452 +638283.652|222419.753|104.022 +638288.833|222417.720|104.937 +638294.097|222415.669|105.565 +638299.455|222413.605|105.656 +638304.826|222411.542|105.714 +638310.215|222409.472|105.726 +638320.938|222405.351|105.760 +638326.272|222403.315|105.559 +638331.636|222401.258|105.491 +638313.970|222409.536|105.644 +638308.639|222411.594|105.677 +638303.332|222413.642|105.626 +638297.944|222415.721|105.650 +638292.668|222417.784|105.077 +638287.513|222419.808|104.309 +638276.858|222423.956|103.565 +638271.325|222426.084|103.705 +638265.723|222428.224|104.117 +638260.051|222430.378|104.806 +638254.500|222432.509|105.077 +638248.816|222434.673|105.607 +638237.581|222438.965|106.503 +638231.857|222441.147|107.006 +638226.130|222443.329|107.555 +638197.768|222454.199|109.085 +638192.013|222456.390|109.622 +638186.356|222458.576|109.551 +638180.608|222460.767|110.109 +638174.856|222462.968|110.441 +638134.229|222478.513|113.102 +638128.542|222480.704|113.090 +638116.962|222485.169|113.185 +638111.204|222487.398|112.983 +638105.520|222489.601|112.764 +638093.995|222494.076|112.225 +638088.223|222496.319|111.871 +638082.526|222498.535|111.490 +638070.901|222503.046|110.954 +638078.563|222504.439|111.264 +638084.318|222502.220|111.392 +638090.057|222499.989|111.865 +638101.445|222495.581|112.429 +638112.866|222491.168|112.919 +638129.977|222484.578|113.185 +638176.145|222466.958|110.643 +638193.379|222460.389|109.527 +638204.699|222456.067|108.960 +638221.862|222449.532|107.698 +638233.158|222445.228|106.942 +638238.700|222443.101|106.872 +638266.958|222432.366|104.309 +638278.238|222428.096|103.010 +638299.407|222419.872|104.833 +638304.567|222417.851|105.610 +638309.889|222415.809|105.601 +638315.208|222413.764|105.620 +638320.599|222411.691|105.626 +638325.930|222409.643|105.635 +638331.197|222407.616|105.653 +638336.598|222405.552|105.458 +638316.652|222415.303|105.638 +638311.315|222417.373|105.461 +638305.960|222419.445|105.357 +638300.885|222421.457|104.300 +638290.318|222425.581|103.434 +638284.956|222427.663|103.172 +638279.427|222429.793|103.300 +638273.846|222431.921|103.849 +638268.226|222434.067|104.336 +638251.443|222440.504|105.153 +638240.025|222444.847|106.482 +638234.374|222447.018|106.726 +638228.656|222449.200|107.247 +638222.984|222451.373|107.616 +638205.830|222457.932|108.869 +638194.464|222462.297|109.384 +638188.715|222464.501|109.673 +638182.991|222466.689|110.149 +638154.087|222477.760|111.908 +638142.471|222482.216|112.532 +638136.655|222484.438|113.029 +638130.824|222486.684|113.087 +638125.116|222488.897|112.938 +638113.570|222493.353|112.926 +638107.772|222495.606|112.654 +638096.492|222500.025|111.344 +638096.010|222504.299|111.908 +638107.501|222499.855|112.331 +638113.177|222497.657|112.590 +638118.855|222495.444|113.115 +638124.619|222493.231|113.035 +638141.901|222486.599|112.679 +638153.441|222482.185|112.115 +638159.226|222479.988|111.554 +638176.554|222473.364|110.603 +638182.354|222471.161|110.070 +638188.112|222468.972|109.475 +638193.738|222466.799|109.655 +638205.208|222462.431|108.750 +638210.865|222460.258|108.625 +638216.589|222458.085|108.015 +638222.179|222455.939|107.945 +638233.655|222451.583|106.744 +638256.247|222442.976|104.973 +638289.751|222430.196|102.684 +638295.176|222428.117|102.501 +638300.501|222426.047|102.919 +638305.655|222424.026|103.715 +638310.791|222422.009|104.580 +638315.893|222419.997|105.580 +638321.276|222417.933|105.382 +638326.586|222415.888|105.461 +638331.926|222413.834|105.443 +638337.251|222411.783|105.504 +638319.475|222420.847|105.415 +638314.327|222422.877|104.605 +638309.221|222424.898|103.647 +638298.937|222428.955|102.014 +638287.876|222433.195|102.687 +638282.198|222435.359|103.355 +638276.534|222437.517|103.986 +638271.005|222439.644|104.156 +638265.446|222441.778|104.458 +638254.299|222446.060|104.979 +638248.538|222448.246|105.842 +638242.866|222450.410|106.397 +638237.279|222452.568|106.415 +638231.616|222454.741|106.744 +638225.913|222456.933|106.994 +638214.489|222461.294|108.125 +638208.762|222463.486|108.527 +638185.902|222472.267|109.695 +638180.141|222474.474|110.085 +638168.510|222478.918|111.130 +638156.937|222483.359|111.773 +638139.508|222490.052|112.673 +638122.186|222496.740|112.770 +638116.420|222498.977|112.639 +638110.674|222501.208|112.432 +638119.017|222502.247|112.651 +638124.713|222500.041|112.840 +638147.802|222491.168|112.258 +638153.593|222488.955|111.892 +638159.339|222486.748|111.734 +638165.169|222484.523|111.246 +638170.909|222482.326|110.896 +638176.648|222480.131|110.569 +638182.424|222477.924|110.106 +638193.949|222473.520|109.378 +638205.431|222469.128|108.652 +638211.054|222466.973|108.393 +638216.787|222464.781|107.982 +638222.563|222462.581|107.436 +638228.288|222460.392|107.110 +638233.914|222458.243|106.686 +638239.608|222456.067|106.269 +638245.237|222453.918|105.876 +638256.546|222449.602|104.967 +638262.175|222447.447|104.635 +638267.768|222445.314|104.214 +638273.486|222443.137|103.596 +638278.964|222441.037|103.407 +638284.456|222438.931|103.175 +638290.092|222436.782|102.690 +638295.722|222434.643|102.008 +638301.239|222432.539|101.520 +638316.881|222426.422|103.309 +638321.907|222424.423|104.571 +638327.019|222422.417|105.321 +638332.359|222420.360|105.299 +638337.708|222418.299|105.260 +638343.042|222416.242|105.293 +638327.439|222424.148|104.982 +638322.514|222426.123|103.608 +638317.475|222428.135|102.404 +638311.894|222430.263|103.087 +638290.394|222438.620|102.437 +638279.208|222442.906|103.410 +638273.617|222445.052|103.791 +638267.985|222447.216|104.123 +638262.306|222449.389|104.629 +638256.750|222451.538|104.726 +638245.426|222455.872|105.732 +638239.733|222458.057|106.150 +638234.015|222460.246|106.677 +638228.345|222462.422|107.049 +638216.839|222466.830|108.000 +638211.210|222468.997|108.271 +638205.504|222471.188|108.625 +638194.013|222475.599|109.439 +638182.452|222480.043|110.118 +638176.694|222482.252|110.524 +638170.881|222484.484|110.914 +638165.118|222486.703|111.130 +638159.287|222488.937|111.639 +638153.523|222491.156|111.904 +638147.686|222493.399|112.231 +638141.825|222495.648|112.676 +638124.573|222502.336|112.487 +638140.054|222501.031|112.517 +638151.679|222496.575|112.087 +638163.322|222492.122|111.402 +638180.778|222485.465|109.939 +638198.085|222478.854|108.756 +638203.800|222476.669|108.357 +638209.506|222474.474|108.274 +638220.860|222470.128|107.625 +638226.501|222467.966|107.345 +638232.247|222465.772|106.942 +638237.956|222463.596|106.452 +638243.634|222461.422|106.092 +638249.368|222459.252|105.324 +638254.945|222457.097|105.376 +638277.598|222448.474|103.132 +638283.078|222446.362|103.166 +638288.702|222444.216|102.706 +638305.600|222437.803|100.663 +638331.655|222427.596|104.007 +638336.626|222425.617|105.248 +638342.015|222423.548|105.077 +638347.343|222421.490|105.126 +638333.855|222428.217|103.797 +638318.944|222434.198|99.676 +638313.565|222436.282|99.652 +638296.618|222442.726|102.078 +638290.967|222444.887|102.623 +638285.441|222447.008|102.992 +638279.909|222449.142|103.160 +638274.230|222451.306|103.873 +638268.701|222453.437|104.071 +638263.138|222455.576|104.406 +638257.369|222457.780|105.040 +638246.042|222462.126|105.830 +638229.013|222468.658|107.204 +638206.287|222477.415|108.110 +638194.711|222481.856|109.006 +638188.935|222484.072|109.442 +638177.392|222488.510|110.094 +638171.512|222490.756|110.755 +638165.675|222492.991|111.274 +638159.838|222495.240|111.545 +638154.011|222497.483|111.813 +638148.137|222499.736|112.295 +638142.349|222501.970|112.444 +638136.463|222504.235|112.743 +638151.746|222503.278|112.103 +638163.389|222498.837|111.106 +638169.174|222496.624|110.798 +638186.545|222489.997|109.411 +638204.025|222483.341|107.826 +638209.667|222481.170|107.732 +638215.306|222479.003|107.668 +638221.015|222476.821|107.348 +638226.703|222474.639|107.137 +638249.441|222465.958|105.549 +638266.394|222459.493|104.227 +638272.020|222457.341|103.922 +638283.295|222453.040|103.050 +638288.824|222450.928|102.690 +638305.728|222444.509|100.825 +638317.131|222440.214|98.847 +638322.532|222438.136|98.819 +638327.860|222436.060|99.289 +638337.744|222432.110|102.215 +638342.579|222430.165|103.940 +638347.586|222428.181|105.065 +638337.940|222433.801|101.508 +638333.075|222435.764|99.920 +638322.651|222439.861|98.688 +638311.465|222444.119|100.154 +638305.804|222446.271|100.919 +638294.445|222450.593|102.450 +638283.319|222454.872|102.998 +638277.738|222457.015|103.376 +638266.519|222461.322|104.141 +638260.938|222463.474|104.336 +638232.543|222474.361|106.439 +638226.739|222476.574|107.098 +638221.140|222478.735|107.253 +638209.792|222483.118|107.451 +638204.068|222485.325|107.653 +638192.589|222489.729|108.479 +638186.761|222491.951|109.143 +638180.864|222494.198|109.856 +638175.075|222496.426|110.170 +638169.202|222498.666|110.832 +638163.444|222500.882|111.063 +638176.505|222500.577|110.292 +638188.221|222496.115|109.164 +638194.046|222493.902|108.527 +638205.577|222489.507|107.515 +638211.417|222487.288|106.891 +638217.062|222485.105|107.037 +638222.652|222482.957|106.900 +638262.437|222467.750|104.358 +638268.030|222465.604|104.129 +638273.642|222463.455|103.858 +638279.278|222461.313|103.285 +638296.014|222454.909|102.297 +638312.873|222448.508|100.368 +638318.573|222446.356|99.493 +638324.007|222444.268|99.328 +638329.740|222442.116|98.161 +638335.178|222440.028|98.030 +638339.634|222438.163|101.035 +638349.766|222434.167|102.888 +638354.691|222432.201|104.300 +638342.688|222439.065|99.965 +638337.860|222441.031|98.018 +638332.587|222443.092|97.597 +638321.322|222447.380|99.051 +638315.625|222449.541|99.923 +638309.877|222451.711|101.008 +638304.226|222453.869|101.538 +638298.602|222456.012|102.227 +638293.079|222458.143|102.340 +638287.455|222460.307|102.602 +638281.859|222462.450|103.020 +638276.208|222464.617|103.431 +638270.533|222466.787|103.934 +638259.149|222471.158|104.672 +638253.406|222473.352|105.254 +638247.667|222475.544|105.845 +638236.362|222479.899|106.208 +638224.983|222484.279|106.680 +638219.412|222486.443|106.494 +638213.624|222488.665|106.909 +638207.951|222490.848|107.147 +638202.108|222493.088|107.576 +638196.280|222495.310|108.213 +638184.640|222499.763|109.247 +638172.847|222504.265|110.490 +638207.162|222495.737|107.043 +638212.956|222493.524|106.592 +638218.695|222491.332|106.119 +638224.249|222489.178|106.385 +638241.263|222482.637|105.933 +638246.908|222480.472|105.671 +638264.080|222473.922|104.141 +638280.954|222467.461|103.190 +638286.553|222465.324|102.767 +638292.204|222463.172|102.178 +638297.718|222461.047|102.099 +638303.296|222458.923|101.584 +638308.993|222456.759|100.892 +638314.659|222454.613|100.109 +638320.249|222452.480|99.615 +638342.280|222444.049|98.286 +638347.401|222442.037|99.039 +638352.299|222440.071|100.551 +638357.246|222438.096|101.907 +638346.824|222444.686|97.652 +638341.780|222446.701|96.433 +638336.416|222448.776|96.552 +638330.624|222450.949|97.932 +638325.022|222453.095|98.457 +638319.389|222455.235|99.335 +638313.781|222457.381|99.935 +638308.042|222459.563|100.776 +638302.318|222461.739|101.593 +638296.776|222463.879|101.776 +638291.144|222466.046|102.078 +638285.447|222468.216|102.861 +638274.120|222472.557|103.791 +638268.558|222474.706|103.925 +638262.834|222476.900|104.425 +638251.458|222481.265|105.220 +638245.871|222483.426|105.281 +638228.821|222490.001|105.915 +638223.234|222492.171|105.802 +638217.577|222494.368|105.714 +638205.967|222498.812|106.759 +638200.130|222501.040|107.439 +638194.266|222503.284|108.009 +638214.797|222500.013|105.894 +638220.579|222497.800|105.510 +638226.276|222495.615|105.220 +638243.128|222489.098|105.376 +638260.033|222482.591|105.001 +638265.677|222480.433|104.559 +638271.432|222478.241|103.967 +638277.144|222476.068|103.318 +638294.060|222469.597|102.078 +638310.953|222463.157|100.407 +638327.896|222456.719|98.289 +638333.560|222454.567|97.579 +638339.192|222452.434|96.774 +638344.874|222450.288|95.814 +638350.037|222448.264|96.430 +638354.737|222446.329|98.847 +638359.964|222444.290|99.252 +638350.769|222449.965|95.653 +638339.704|222454.211|96.539 +638328.433|222458.509|98.006 +638322.821|222460.642|98.801 +638317.131|222462.806|99.664 +638311.513|222464.961|100.072 +638294.445|222471.475|102.175 +638288.824|222473.639|102.443 +638277.616|222477.961|102.919 +638271.783|222480.168|104.038 +638266.046|222482.362|104.586 +638249.115|222488.903|105.068 +638243.512|222491.070|105.187 +638237.889|222493.250|105.165 +638232.238|222495.438|105.266 +638226.651|222497.624|104.897 +638220.884|222499.839|105.220 +638215.120|222502.058|105.565 +638227.593|222502.308|104.778 +638244.491|222495.773|105.013 +638295.499|222476.242|101.934 +638301.156|222474.075|101.566 +638312.541|222469.762|99.965 +638318.164|222467.610|99.560 +638323.949|222465.437|98.371 +638329.554|222463.300|97.844 +638335.242|222461.145|97.052 +638346.413|222456.884|96.006 +638357.428|222452.678|95.134 +638362.476|222450.678|96.171 +638360.967|222452.583|95.354 +638339.064|222461.008|96.613 +638333.517|222463.129|97.155 +638327.826|222465.290|98.006 +638322.160|222467.448|98.789 +638310.757|222471.795|100.209 +638305.079|222473.959|100.871 +638299.324|222476.141|101.837 +638293.679|222478.311|102.187 +638288.056|222480.463|102.718 +638282.356|222482.640|103.309 +638276.635|222484.834|103.754 +638271.024|222486.992|104.065 +638254.071|222493.533|104.589 +638248.435|222495.703|104.830 +638237.240|222500.065|104.327 +638239.998|222503.744|104.041 +638245.545|222501.589|104.382 +638251.175|222499.419|104.419 +638256.802|222497.258|104.239 +638262.453|222495.082|104.236 +638296.374|222482.112|102.136 +638307.804|222477.763|101.008 +638313.543|222475.593|100.148 +638319.164|222473.456|99.508 +638324.943|222471.277|98.573 +638330.627|222469.128|97.762 +638336.214|222467.006|97.079 +638341.960|222464.842|96.101 +638347.452|222462.739|95.790 +638353.113|222460.602|94.927 +638358.888|222458.438|93.690 +638364.174|222456.390|93.924 +638369.182|222454.391|95.326 +638360.013|222459.645|93.891 +638337.449|222468.235|96.765 +638331.749|222470.396|97.640 +638326.086|222472.551|98.402 +638320.353|222474.718|99.429 +638314.592|222476.912|100.127 +638308.849|222479.089|101.017 +638303.092|222481.280|101.755 +638297.468|222483.444|102.020 +638291.787|222485.608|102.773 +638280.408|222489.967|103.660 +638269.125|222494.320|104.059 +638263.513|222496.499|103.931 +638264.833|222500.833|104.050 +638270.432|222498.675|103.995 +638276.019|222496.520|104.001 +638281.780|222494.329|103.391 +638287.407|222492.162|103.300 +638293.015|222490.010|103.047 +638298.700|222487.855|102.306 +638304.369|222485.688|101.870 +638309.959|222483.551|101.514 +638350.095|222468.390|94.958 +638366.877|222462.023|92.854 +638370.629|222462.480|93.205 +638354.079|222468.832|94.314 +638342.658|222473.157|96.259 +638336.891|222475.334|97.362 +638331.069|222477.534|98.448 +638319.609|222481.890|100.057 +638313.885|222484.066|100.871 +638308.097|222486.267|101.715 +638302.476|222488.428|101.971 +638296.764|222490.607|102.590 +638291.015|222492.808|103.126 +638285.377|222494.984|103.282 +638279.710|222497.163|103.553 +638268.454|222501.504|103.879 +638262.898|222503.671|103.547 +638283.536|222500.074|103.462 +638294.877|222495.734|102.718 +638306.295|222491.372|101.782 +638317.570|222487.062|100.980 +638346.407|222476.187|95.820 +638357.788|222471.883|94.055 +638368.980|222467.613|93.037 +638374.455|222465.519|92.626 +638369.773|222469.631|92.986 +638358.736|222473.861|93.979 +638347.373|222478.180|95.741 +638335.775|222482.563|97.960 +638324.205|222486.937|100.194 +638318.509|222489.110|100.919 +638312.818|222491.293|101.416 +638307.176|222493.460|101.758 +638301.485|222495.636|102.297 +638295.801|222497.813|102.837 +638290.122|222499.998|103.141 +638284.572|222502.144|103.233 +638291.351|222503.817|103.160 +638296.993|222501.647|103.023 +638302.732|222499.452|102.538 +638308.359|222497.294|102.248 +638314.065|222495.118|101.694 +638319.679|222492.972|101.267 +638337.071|222486.413|98.158 +638342.950|222484.203|96.887 +638360.190|222477.696|93.946 +638373.997|222474.206|92.617 +638368.447|222476.333|93.083 +638362.759|222478.500|93.815 +638357.273|222480.613|94.107 +638351.613|222482.774|94.793 +638345.846|222484.953|95.872 +638311.077|222498.130|101.883 +638305.335|222500.330|102.352 +638299.635|222502.525|102.700 +638311.038|222502.955|102.008 +638322.392|222498.614|101.151 +638339.936|222492.024|97.539 +638345.861|222489.808|96.122 +638357.377|222485.465|94.089 +638363.058|222483.310|93.367 +638374.168|222479.058|92.635 +638379.795|222476.922|91.949 +638379.362|222478.375|92.300 +638373.812|222480.503|92.763 +638362.756|222484.758|93.376 +638357.096|222486.919|94.058 +638351.287|222489.107|95.278 +638345.407|222491.323|96.543 +638327.686|222497.977|100.807 +638322.038|222500.150|101.133 +638316.436|222502.314|101.313 +638323.852|222504.238|101.203 +638341.323|222497.654|98.033 +638347.291|222495.432|96.451 +638353.164|222493.225|95.235 +638359.068|222491.025|93.702 +638364.564|222488.906|93.613 +638370.206|222486.760|93.050 +638386.811|222480.411|91.873 +638384.446|222483.100|91.900 +638378.993|222485.206|92.025 +638373.290|222487.376|92.800 +638367.776|222489.491|93.171 +638362.147|222491.656|93.513 +638356.340|222493.844|94.720 +638350.683|222496.011|95.195 +638344.587|222498.270|97.241 +638332.804|222502.695|99.981 +638350.388|222500.614|96.088 +638356.145|222498.443|95.031 +638361.888|222496.276|94.046 +638378.725|222489.851|92.595 +638384.312|222487.711|92.230 +638389.838|222485.596|91.873 +638389.323|222488.077|91.462 +638383.647|222490.232|92.352 +638378.176|222492.341|92.556 +638372.495|222494.505|93.278 +638366.835|222496.676|93.729 +638361.220|222498.824|94.272 +638355.386|222501.040|95.131 +638349.586|222503.238|96.143 +638358.437|222504.354|94.982 +638364.091|222502.193|94.537 +638375.451|222497.864|93.315 +638381.118|222495.719|92.443 +638386.662|222493.588|92.242 +638392.325|222491.430|91.647 +638393.630|222493.076|91.879 +638388.058|222495.213|92.416 +638382.608|222497.322|92.559 +638371.236|222501.671|93.836 +638365.554|222503.838|94.607 +638377.359|222503.973|93.848 +638383.190|222501.766|92.864 +640075.974|222503.860|82.238 +640080.991|222499.111|83.589 +640077.028|222498.712|82.308 +640071.956|222503.525|82.174 +640068.219|222503.113|82.147 +640073.240|222498.334|82.269 +640078.305|222493.509|82.485 +640080.402|222488.016|87.127 +640075.404|222492.677|82.324 +640070.377|222497.450|82.202 +640065.306|222502.260|81.815 +640060.734|222502.589|81.775 +640065.754|222497.819|82.122 +640070.819|222493.000|82.321 +640075.791|222488.269|82.369 +640080.783|222483.606|87.133 +640081.253|222478.951|87.094 +640076.208|222483.661|82.516 +640071.091|222488.522|82.327 +640066.068|222493.292|81.994 +640060.999|222498.111|81.851 +640055.927|222502.933|81.906 +640053.409|222500.949|82.052 +640058.426|222496.173|82.083 +640063.446|222491.403|82.397 +640068.512|222486.575|82.168 +640078.546|222477.037|83.113 +640081.097|222470.789|87.124 +640076.059|222475.492|82.488 +640070.984|222480.308|82.318 +640065.961|222485.078|82.083 +640060.886|222489.906|82.549 +640055.814|222494.722|82.284 +640050.788|222499.492|82.110 +640050.264|222495.965|82.308 +640055.329|222491.144|82.446 +640060.346|222486.370|82.729 +640065.412|222481.536|82.339 +640070.432|222476.757|82.296 +640075.498|222471.935|82.461 +640080.482|222467.272|87.100 +640080.738|222463.330|87.121 +640075.739|222468.030|84.271 +640070.679|222472.807|82.314 +640065.653|222477.583|82.333 +640060.627|222482.371|82.878 +640055.604|222487.141|82.628 +640050.581|222491.915|82.522 +640045.509|222496.740|82.866 +640037.934|222499.843|83.131 +640042.906|222495.112|83.302 +640047.969|222490.281|82.955 +640052.989|222485.499|82.814 +640057.957|222480.765|82.866 +640063.023|222475.940|82.790 +640068.046|222471.146|82.238 +640073.063|222466.369|82.412 +640078.083|222461.593|82.622 +640080.219|222455.957|87.097 +640070.259|222465.330|82.378 +640065.235|222470.106|82.464 +640060.209|222474.892|83.174 +640055.189|222479.659|82.982 +640050.166|222484.429|82.948 +640040.126|222493.978|83.555 +640035.103|222498.745|83.433 +640034.911|222495.136|83.613 +640039.974|222490.311|83.701 +640044.991|222485.523|83.339 +640050.008|222480.738|83.116 +640055.070|222475.913|83.140 +640065.110|222466.336|82.549 +640070.131|222461.547|82.412 +640075.102|222456.811|82.522 +640080.085|222448.374|82.583 +640075.062|222453.147|82.604 +640064.918|222462.788|82.552 +640059.895|222467.573|83.144 +640054.823|222472.398|83.390 +640049.755|222477.214|83.314 +640044.686|222482.033|83.387 +640017.857|222503.366|81.470 +640027.903|222493.844|83.918 +640032.917|222489.068|83.817 +640037.934|222484.292|83.948 +640042.948|222479.512|83.686 +640047.965|222474.730|83.500 +640053.031|222469.905|83.363 +640057.999|222465.178|83.500 +640063.020|222460.383|82.866 +640068.043|222455.595|82.449 +640073.011|222450.864|82.613 +640078.031|222446.085|82.641 +640075.626|222444.421|82.686 +640070.557|222449.243|82.558 +640065.531|222454.022|82.683 +640060.459|222458.856|83.070 +640055.387|222463.693|83.768 +640045.301|222473.285|83.616 +640040.233|222478.113|83.933 +640035.167|222482.932|83.985 +640030.101|222487.751|83.832 +640025.035|222492.570|83.884 +640014.934|222502.132|81.437 +640020.567|222492.625|83.979 +640025.581|222487.846|83.863 +640030.644|222483.024|83.878 +640035.706|222478.205|84.113 +640040.723|222473.425|84.116 +640045.786|222468.597|83.823 +640050.849|222463.779|84.158 +640055.866|222458.990|83.695 +640065.955|222449.361|82.827 +640081.082|222434.996|85.259 +640075.544|222436.749|85.268 +640065.470|222446.283|82.994 +640060.493|222451.017|83.174 +640055.421|222455.848|83.689 +640050.398|222460.633|84.357 +640045.378|222465.400|84.046 +640040.309|222470.216|83.930 +640035.289|222474.992|84.256 +640030.266|222479.759|83.933 +640015.157|222494.115|83.848 +640005.065|222503.692|82.900 +640002.632|222501.845|83.156 +640007.686|222497.011|82.290 +640017.723|222487.474|83.832 +640022.783|222482.652|83.787 +640032.811|222473.099|84.070 +640037.870|222468.283|84.475 +640042.884|222463.498|84.247 +640047.944|222458.682|84.543 +640052.961|222453.888|83.930 +640057.978|222449.099|83.497 +640073.047|222434.786|86.243 +640074.721|222429.406|87.286 +640069.756|222434.124|86.883 +640064.748|222438.858|85.344 +640054.769|222448.319|83.531 +640049.742|222453.110|84.296 +640044.722|222457.887|84.378 +640039.702|222462.663|84.381 +640034.682|222467.442|84.655 +640029.665|222472.203|83.906 +640024.645|222476.973|83.710 +640004.513|222496.103|82.683 +640001.267|222495.072|82.967 +640026.337|222471.182|83.817 +640031.400|222466.363|84.329 +640036.414|222461.584|84.451 +640041.424|222456.808|84.646 +640066.470|222432.972|87.313 +640059.789|222435.633|87.338 +640049.767|222445.125|85.347 +640044.704|222449.928|84.863 +640039.733|222454.653|84.802 +640034.670|222459.466|84.649 +640029.650|222464.230|84.283 +640024.679|222468.945|83.762 +639984.082|222504.067|84.067 +639994.107|222494.499|83.713 +639999.161|222489.662|82.817 +640019.174|222470.591|83.741 +640024.237|222465.769|83.957 +640029.251|222460.996|84.512 +640034.219|222456.265|84.911 +640039.279|222451.443|85.055 +640049.249|222441.961|86.624 +640050.209|222437.694|87.463 +640040.096|222447.283|85.375 +640035.082|222452.050|85.061 +640030.019|222456.863|84.881 +640024.953|222461.672|84.302 +640019.936|222466.439|83.866 +640017.613|222464.629|83.860 +640022.627|222459.859|84.244 +640027.641|222455.098|85.189 +640032.655|222450.322|85.280 +640037.715|222445.506|85.554 +640042.720|222440.763|87.088 +640046.323|222433.128|87.597 +640041.263|222437.941|87.335 +640036.206|222442.726|85.722 +640031.144|222447.539|85.442 +640026.081|222452.361|85.494 +640021.015|222457.158|84.241 +640015.949|222461.974|83.842 +639990.623|222486.072|83.003 +639980.309|222491.774|85.945 +639990.398|222482.097|83.015 +640015.608|222458.073|83.896 +640020.716|222453.217|84.762 +640025.727|222448.450|85.518 +640030.787|222443.628|85.676 +640035.798|222438.861|86.246 +640040.800|222434.115|87.661 +640045.856|222429.299|87.990 +640076.053|222400.511|88.545 +640081.064|222395.735|88.612 +640077.040|222395.768|88.645 +640072.026|222400.538|88.554 +640041.845|222429.235|87.892 +640036.785|222434.039|87.389 +640031.774|222438.779|86.030 +640026.760|222443.546|85.804 +640021.698|222448.365|85.871 +640016.681|222453.107|84.253 +640011.615|222457.917|83.707 +639976.325|222491.525|85.908 +639977.514|222486.340|85.996 +639987.560|222476.714|83.360 +640007.753|222457.460|83.573 +640012.770|222452.690|84.067 +640017.830|222447.889|85.475 +640022.886|222443.070|85.871 +640027.897|222438.297|86.024 +640032.954|222433.494|87.048 +640038.008|222428.687|87.770 +640043.012|222423.923|88.328 +640048.063|222419.122|89.066 +640063.190|222404.693|88.758 +640068.204|222399.904|88.401 +640073.264|222395.076|88.310 +640076.556|222387.917|90.239 +640066.583|222397.393|89.428 +640061.581|222402.139|88.435 +640056.564|222406.912|88.420 +640046.524|222416.492|89.721 +640041.519|222421.228|88.316 +640036.508|222425.989|87.856 +640031.494|222430.747|87.210 +640026.529|222435.456|86.137 +640021.466|222440.272|86.097 +640016.449|222445.039|85.673 +640011.478|222449.745|84.204 +640006.458|222454.513|83.713 +639986.344|222473.666|84.189 +639976.328|222483.231|86.036 +639950.743|222503.537|84.661 +639980.812|222474.852|84.485 +640005.912|222450.895|83.774 +640010.926|222446.128|84.582 +640015.940|222441.379|86.310 +640020.948|222436.599|86.292 +640025.959|222431.820|86.249 +640035.923|222422.347|88.066 +640040.928|222417.580|88.450 +640045.929|222412.828|89.517 +640050.946|222408.021|88.414 +640055.957|222403.245|88.441 +640060.910|222398.536|89.240 +640065.930|222393.732|88.474 +640075.876|222384.277|90.288 +640080.881|222379.504|90.468 +640076.617|222379.547|90.538 +640071.609|222384.305|90.242 +640066.595|222389.072|90.239 +640056.539|222398.603|88.532 +640051.526|222403.367|88.438 +640046.466|222408.180|88.368 +640041.452|222412.947|88.447 +640036.389|222417.760|88.389 +640031.378|222422.512|87.853 +640026.370|222427.263|87.072 +640021.308|222432.064|86.502 +640016.294|222436.831|86.411 +640011.280|222441.577|85.049 +640006.214|222446.374|84.131 +640001.148|222451.187|83.860 +639981.083|222470.271|84.219 +639978.191|222469.210|84.326 +639983.204|222464.431|84.789 +640003.291|222445.241|84.034 +640008.351|222440.419|84.643 +640013.313|222435.719|86.707 +640018.369|222430.887|86.646 +640023.380|222426.108|86.786 +640028.382|222421.350|87.831 +640033.390|222416.577|88.285 +640038.398|222411.798|88.325 +640043.360|222407.058|88.228 +640048.365|222402.282|88.468 +640053.415|222397.472|89.044 +640063.373|222387.984|90.069 +640068.375|222383.211|90.398 +640073.334|222378.480|90.553 +640078.342|222373.701|90.626 +640081.234|222366.995|92.562 +640076.211|222371.741|90.581 +640071.152|222376.557|90.489 +640066.138|222381.327|90.459 +640061.081|222386.137|90.197 +640051.010|222395.717|89.953 +640045.963|222400.502|88.779 +640040.858|222405.354|88.432 +640035.844|222410.121|88.285 +640030.784|222414.937|88.161 +640025.727|222419.741|87.615 +640020.668|222424.542|86.862 +640015.608|222429.357|86.792 +640010.545|222434.176|86.856 +640005.528|222438.910|84.564 +640000.465|222443.723|84.058 +639980.214|222463.007|84.652 +639975.194|222467.774|84.064 +639965.078|222477.424|85.259 +639960.067|222482.198|85.396 +639955.004|222487.017|85.475 +639949.951|222491.838|86.018 +639945.397|222492.088|85.725 +639955.458|222482.487|85.244 +639995.677|222444.116|83.957 +640000.737|222439.297|84.149 +640005.751|222434.545|85.871 +640010.758|222429.787|86.832 +640015.769|222425.014|86.966 +640020.823|222420.198|87.191 +640025.782|222415.480|87.801 +640030.836|222410.670|88.225 +640035.844|222405.903|88.532 +640040.845|222401.139|88.980 +640045.844|222396.396|90.160 +640050.855|222391.614|89.880 +640055.857|222386.850|90.218 +640060.865|222382.080|90.383 +640065.824|222377.349|90.437 +640075.827|222367.827|91.315 +640076.059|222363.121|91.928 +640066.058|222372.616|90.471 +640060.999|222377.432|90.407 +640055.988|222382.202|90.319 +640050.928|222387.018|90.248 +640045.871|222391.824|89.931 +640035.804|222401.404|89.532 +640030.750|222406.199|88.688 +640025.742|222410.960|88.167 +640020.686|222415.763|87.642 +640015.672|222420.524|87.057 +640010.661|222425.300|87.130 +640005.598|222430.113|86.972 +640000.535|222434.893|84.512 +639995.470|222439.705|84.015 +639975.274|222458.950|84.796 +639970.253|222463.721|84.338 +639960.137|222473.368|85.353 +639955.077|222478.189|85.369 +639939.935|222492.604|85.253 +639929.852|222502.199|85.039 +639932.147|222495.868|85.405 +639937.198|222491.043|85.009 +639947.268|222481.439|85.106 +639952.328|222476.614|85.298 +639972.408|222457.448|85.003 +639992.534|222438.227|83.921 +639997.545|222433.454|84.469 +640002.559|222428.708|86.475 +640007.613|222423.898|87.194 +640012.621|222419.122|87.280 +640017.626|222414.355|87.697 +640022.679|222409.545|88.313 +640027.681|222404.787|89.069 +640032.680|222400.029|89.877 +640037.733|222395.208|89.761 +640042.738|222390.437|90.075 +640047.740|222385.667|90.245 +640052.793|222380.845|90.267 +640057.795|222376.084|90.727 +640062.791|222371.326|91.379 +640067.845|222366.507|91.404 +640072.846|222361.740|91.733 +640077.845|222356.979|92.160 +640065.156|222364.779|92.019 +640055.134|222374.304|91.593 +640050.136|222379.038|90.474 +640045.125|222383.799|90.160 +640040.111|222388.566|90.142 +640035.100|222393.330|89.928 +640030.043|222398.137|89.584 +640020.018|222407.656|88.749 +640014.962|222412.453|88.005 +640009.993|222417.165|87.423 +640004.934|222421.981|87.328 +639999.868|222426.779|86.420 +639994.848|222431.521|84.503 +639989.785|222436.346|85.000 +639944.492|222479.436|85.173 +639939.469|222484.209|84.978 +639934.455|222488.982|85.079 +639929.392|222493.801|85.295 +639919.355|222503.348|85.262 +639928.545|222490.607|85.143 +639933.552|222485.828|85.018 +639938.612|222481.003|85.140 +639943.623|222476.224|85.128 +639953.694|222466.625|85.430 +639963.749|222457.012|84.354 +639968.763|222452.239|84.866 +639988.892|222433.039|84.911 +639993.900|222428.257|84.762 +639998.960|222423.469|86.804 +640003.967|222418.708|87.530 +640008.972|222413.931|87.633 +640014.026|222409.128|88.404 +640018.982|222404.412|89.136 +640024.033|222399.600|89.337 +640029.034|222394.836|89.788 +640033.990|222390.111|90.023 +640039.044|222385.295|90.133 +640044.046|222380.531|90.517 +640049.044|222375.770|90.956 +640054.037|222371.022|91.809 +640074.050|222351.944|92.507 +640079.012|222347.208|92.391 +640053.510|222367.480|92.019 +640048.505|222372.235|91.516 +640038.492|222381.744|90.379 +640033.436|222386.551|90.032 +640028.470|222391.276|89.852 +640023.411|222396.085|89.654 +640018.403|222400.846|89.206 +640013.389|222405.610|88.828 +640008.332|222410.411|87.981 +640003.318|222415.178|87.655 +639998.304|222419.945|87.389 +639993.239|222424.727|85.119 +639988.221|222429.501|84.966 +639978.184|222439.047|84.600 +639973.167|222443.823|84.631 +639968.108|222448.642|84.808 +639963.082|222453.409|83.802 +639953.066|222462.977|85.527 +639942.980|222472.569|85.180 +639937.963|222477.345|85.195 +639932.937|222482.121|84.765 +639927.926|222486.898|85.049 +639905.950|222503.781|86.097 +639915.956|222494.225|85.497 +639925.972|222484.666|85.088 +639930.928|222479.930|84.774 +639940.956|222470.371|85.137 +639950.984|222460.816|85.533 +639960.985|222451.242|83.799 +639971.012|222441.693|84.509 +639976.023|222436.913|84.646 +639981.034|222432.134|84.689 +639985.999|222427.407|85.082 +639991.056|222422.588|85.515 +639996.067|222417.848|87.627 +640001.029|222413.118|87.667 +640006.083|222408.305|88.075 +640011.088|222403.541|88.740 +640016.089|222398.780|89.310 +640021.094|222394.013|89.660 +640026.099|222389.243|89.858 +640031.055|222384.524|90.340 +640036.057|222379.760|90.754 +640041.050|222375.014|91.745 +640046.009|222370.287|91.846 +640051.007|222365.526|92.300 +640055.957|222360.817|92.858 +640070.874|222346.592|93.135 +640075.824|222341.877|93.498 +640080.829|222337.109|93.677 +640078.220|222335.909|93.580 +640073.163|222340.712|93.354 +640068.152|222345.482|93.434 +640032.960|222378.919|91.614 +640027.913|222383.707|90.733 +640022.859|222388.499|90.008 +640017.897|222393.208|89.493 +640012.840|222398.012|89.200 +640007.784|222402.812|88.737 +640002.773|222407.567|88.142 +639997.762|222412.325|87.600 +639992.699|222417.129|87.085 +639987.685|222421.875|85.768 +639982.668|222426.639|85.244 +639977.602|222431.445|84.820 +639972.585|222436.215|84.643 +639967.571|222440.986|84.600 +639957.540|222450.523|84.424 +639917.282|222488.827|85.402 +639912.323|222493.554|85.832 +639911.759|222490.016|85.850 +639921.812|222480.405|85.064 +639941.907|222461.233|85.567 +639946.918|222456.451|85.600 +639956.970|222446.832|84.244 +639961.984|222442.055|84.783 +639967.038|222437.227|84.509 +639972.049|222432.448|84.799 +639977.060|222427.669|85.012 +639982.119|222422.853|85.692 +639987.082|222418.125|86.277 +639992.138|222413.322|87.502 +639997.146|222408.549|87.783 +640002.151|222403.785|88.453 +640007.156|222399.014|88.916 +640012.206|222394.199|89.224 +640017.162|222389.480|89.831 +640022.210|222384.680|90.733 +640027.205|222379.928|91.678 +640032.210|222375.152|91.672 +640042.260|222365.572|92.242 +640062.206|222346.561|93.848 +640067.259|222341.736|93.872 +640077.275|222328.630|94.314 +640072.267|222333.385|93.936 +640062.194|222342.971|94.007 +640052.132|222352.535|93.552 +640042.080|222362.073|92.242 +640026.956|222376.453|91.821 +640021.902|222381.257|91.541 +640016.897|222385.996|90.456 +640011.844|222390.785|89.486 +640006.787|222395.585|88.865 +640001.773|222400.346|88.505 +639996.713|222405.153|88.051 +639991.654|222409.954|87.335 +639986.591|222414.764|87.033 +639981.525|222419.567|86.216 +639976.462|222424.377|85.771 +639971.439|222429.138|85.021 +639966.376|222433.954|84.844 +639961.311|222438.770|84.637 +639956.248|222443.585|84.750 +639951.185|222448.404|84.945 +639946.129|222453.226|85.652 +639941.115|222457.999|85.658 +639936.046|222462.815|85.481 +639931.029|222467.589|85.414 +639925.963|222472.407|85.280 +639920.937|222477.178|84.927 +639910.869|222486.770|85.615 +639905.809|222491.585|85.875 +639900.805|222496.356|86.338 +639898.680|222494.073|86.252 +639933.927|222460.453|85.600 +639938.938|222455.680|85.692 +639943.992|222450.855|85.579 +639948.997|222446.076|85.088 +639954.053|222441.254|84.869 +639959.058|222436.474|84.649 +639964.118|222431.656|84.710 +639969.129|222426.882|85.085 +639974.146|222422.118|86.124 +639979.202|222417.306|86.588 +639984.210|222412.535|86.761 +639989.218|222407.771|87.414 +639994.275|222402.962|87.959 +639999.280|222398.198|88.374 +640004.284|222393.440|89.093 +640009.289|222388.670|89.264 +640014.236|222383.991|91.273 +640029.242|222369.702|92.163 +640039.245|222360.168|92.507 +640044.195|222355.458|93.040 +640049.191|222350.710|93.662 +640054.189|222345.946|93.961 +640059.194|222341.176|93.994 +640079.113|222322.199|94.744 +640081.128|222316.331|95.098 +640076.111|222321.107|95.201 +640056.085|222340.154|94.156 +640051.032|222344.958|93.854 +640046.073|222349.676|93.598 +640025.956|222368.800|92.126 +640015.891|222378.367|91.419 +640005.790|222387.941|88.971 +640000.776|222392.711|88.993 +639995.717|222397.512|88.176 +639990.657|222402.322|87.764 +639985.643|222407.089|87.313 +639980.580|222411.895|86.758 +639975.517|222416.711|86.475 +639970.500|222421.481|86.173 +639965.389|222426.340|85.716 +639960.323|222431.156|85.320 +639955.309|222435.926|85.070 +639950.240|222440.742|84.646 +639945.184|222445.570|85.503 +639940.173|222450.346|85.896 +639935.107|222455.165|85.698 +639930.041|222459.987|85.542 +639909.879|222479.180|85.448 +639904.810|222484.002|85.335 +639894.800|222493.548|86.368 +639889.734|222498.370|86.268 +639889.893|222493.878|86.371 +639894.953|222489.056|86.371 +639910.010|222474.687|85.381 +639920.035|222465.135|85.646 +639925.094|222460.313|85.637 +639930.105|222455.537|85.777 +639935.116|222450.764|85.859 +639940.176|222445.942|85.969 +639945.174|222441.159|84.960 +639950.185|222436.386|85.109 +639955.242|222431.567|85.359 +639960.256|222426.800|85.856 +639965.267|222422.027|86.118 +639970.324|222417.208|86.082 +639975.286|222412.484|86.524 +639980.342|222407.674|86.999 +639985.350|222402.904|87.338 +639990.358|222398.143|87.981 +639995.366|222393.391|88.968 +640000.371|222388.618|88.919 +640005.379|222383.845|88.871 +640025.374|222364.852|92.486 +640030.378|222360.079|92.388 +640045.326|222345.854|93.690 +640050.325|222341.099|94.107 +640055.281|222336.378|94.263 +640065.232|222326.911|95.019 +640080.198|222312.661|95.525 +640079.113|222309.690|95.570 +640074.099|222314.457|95.500 +640064.123|222323.942|95.339 +640054.110|222333.449|94.586 +640049.102|222338.201|94.135 +640044.098|222342.953|93.668 +640039.090|222347.701|93.174 +640029.074|222357.214|92.449 +640024.109|222361.935|92.428 +639999.014|222385.722|88.523 +639994.001|222390.495|88.639 +639988.983|222395.256|88.267 +639983.970|222400.014|87.624 +639978.953|222404.772|86.929 +639973.932|222409.539|86.646 +639968.915|222414.306|86.313 +639963.847|222419.116|85.838 +639958.830|222423.889|85.975 +639953.809|222428.656|85.713 +639948.789|222433.423|85.362 +639943.763|222438.191|84.695 +639938.761|222442.973|85.984 +639933.741|222447.743|85.954 +639928.676|222452.562|85.890 +639923.701|222457.286|85.753 +639918.629|222462.105|85.487 +639913.609|222466.878|85.466 +639908.635|222471.606|85.305 +639893.596|222485.922|86.179 +639888.521|222490.744|85.878 +639883.550|222495.472|85.987 +639878.557|222500.236|87.005 +639876.058|222498.745|86.978 +639881.044|222493.978|86.027 +639896.132|222479.601|86.350 +639906.178|222470.006|85.344 +639911.238|222465.184|85.362 +639916.255|222460.410|85.609 +639921.315|222455.589|85.835 +639926.332|222450.815|86.185 +639931.385|222445.993|86.100 +639936.393|222441.220|85.978 +639941.441|222436.392|84.988 +639946.455|222431.619|85.487 +639951.466|222426.852|85.835 +639956.522|222422.030|85.631 +639961.582|222417.214|86.012 +639966.544|222412.490|86.335 +639971.601|222407.674|86.536 +639976.657|222402.861|86.954 +639981.665|222398.103|87.734 +639986.673|222393.342|88.417 +639991.727|222388.523|88.392 +640006.790|222374.195|89.785 +640021.783|222359.951|92.339 +640026.739|222355.230|92.510 +640031.787|222350.423|92.726 +640041.732|222340.965|93.894 +640051.736|222331.443|94.400 +640056.725|222326.704|95.217 +640061.724|222321.946|95.534 +640071.682|222312.463|95.857 +640076.690|222307.690|95.838 +640077.903|222302.774|95.692 +640072.837|222307.593|95.738 +640062.809|222317.127|95.646 +640047.694|222331.480|94.528 +640042.689|222336.235|94.061 +640032.637|222345.769|92.620 +640027.574|222350.582|92.617 +640022.563|222355.343|92.431 +640007.442|222369.696|90.803 +639982.232|222393.623|88.331 +639977.218|222398.384|87.801 +639972.149|222403.184|86.819 +639967.084|222407.994|86.350 +639962.067|222412.767|86.234 +639957.046|222417.534|86.012 +639951.978|222422.350|85.646 +639946.961|222427.123|85.887 +639941.934|222431.887|84.838 +639936.875|222436.709|85.536 +639931.861|222441.485|86.015 +639926.801|222446.304|86.301 +639921.781|222451.077|86.338 +639916.758|222455.851|85.981 +639911.732|222460.624|85.692 +639906.660|222465.443|85.460 +639901.695|222470.173|85.710 +639896.638|222474.989|86.204 +639891.636|222479.759|86.987 +639876.558|222494.088|86.234 +639871.559|222498.855|87.036 +639867.911|222498.492|87.243 +639877.926|222488.943|86.798 +639887.960|222479.390|87.100 +639893.011|222474.572|86.728 +639898.004|222469.798|85.719 +639903.018|222465.022|85.820 +639908.074|222460.203|85.576 +639918.114|222450.654|86.368 +639923.174|222445.835|86.463 +639928.182|222441.059|86.216 +639933.193|222436.282|85.945 +639938.201|222431.506|85.673 +639943.638|222426.325|85.634 +639948.226|222421.960|85.768 +639953.285|222417.144|86.042 +639958.299|222412.368|86.085 +639963.310|222407.598|86.240 +639968.324|222402.834|86.871 +639973.335|222398.067|87.283 +639978.349|222393.309|88.240 +640003.394|222369.461|88.862 +640018.345|222355.282|92.202 +640023.350|222350.521|92.598 +640038.306|222336.296|93.827 +640043.305|222331.544|94.281 +640053.248|222322.095|95.509 +640058.249|222317.334|95.701 +640063.212|222312.607|95.582 +640078.129|222298.409|96.186 +640072.386|222300.271|96.405 +640067.387|222305.011|95.793 +640057.362|222314.533|95.701 +640052.355|222319.285|95.464 +640047.304|222324.079|95.055 +640042.354|222328.767|94.223 +640037.300|222333.562|93.885 +640032.299|222338.298|93.037 +640022.283|222347.802|92.431 +640017.226|222352.599|92.019 +640012.267|222357.306|91.623 +640002.166|222366.849|88.709 +639987.072|222381.184|88.572 +639982.058|222385.939|88.097 +639976.996|222390.754|88.282 +639971.933|222395.549|87.481 +639966.919|222400.313|87.313 +639956.787|222409.923|86.688 +639951.767|222414.681|85.957 +639946.702|222419.491|85.878 +639941.636|222424.304|85.798 +639936.619|222429.065|85.576 +639931.559|222433.881|86.057 +639926.496|222438.693|86.182 +639921.485|222443.464|86.609 +639901.259|222462.666|85.716 +639896.196|222467.479|85.954 +639891.197|222472.243|86.804 +639886.196|222477.007|87.417 +639881.130|222481.820|87.417 +639871.068|222491.363|86.487 +639866.027|222496.170|87.341 +639861.083|222500.882|88.270 +639858.544|222499.282|88.517 +639863.528|222494.518|87.575 +639888.680|222470.548|87.368 +639893.666|222465.775|86.335 +639898.720|222460.953|85.975 +639903.789|222456.131|86.469 +639918.922|222441.717|86.728 +639923.927|222436.941|86.368 +639928.980|222432.119|86.057 +639934.037|222427.297|85.807 +639939.048|222422.524|85.960 +639944.108|222417.702|85.844 +639949.167|222412.883|85.996 +639954.181|222408.113|86.387 +639959.238|222403.291|86.152 +639964.301|222398.487|87.277 +639969.312|222393.723|87.819 +639974.368|222388.910|88.136 +640019.558|222345.921|92.083 +640024.560|222341.160|92.473 +640029.562|222336.408|93.037 +640039.556|222326.905|94.290 +640044.561|222322.144|94.549 +640049.557|222317.395|95.183 +640054.555|222312.640|95.674 +640059.557|222307.882|96.009 +640069.466|222298.449|96.573 +640079.479|222288.917|96.939 +640080.747|222284.214|97.234 +640075.736|222288.969|96.975 +640070.719|222293.733|96.939 +640065.708|222298.488|96.689 +640045.686|222317.474|94.811 +640030.619|222331.751|93.034 +640025.657|222336.463|92.745 +640005.519|222355.556|90.754 +640000.462|222360.335|89.471 +639985.317|222374.710|88.877 +639980.348|222379.428|88.715 +639975.283|222384.232|88.328 +639960.082|222398.637|86.231 +639955.010|222403.443|85.835 +639949.993|222408.216|86.076 +639944.928|222413.029|86.185 +639939.856|222417.839|85.838 +639934.839|222422.609|85.963 +639929.724|222427.468|86.048 +639924.658|222432.280|86.024 +639919.644|222437.054|86.597 +639914.582|222441.866|86.798 +639899.369|222456.308|86.326 +639889.289|222465.891|86.661 +639869.099|222485.096|88.020 +639864.006|222489.918|87.240 +639859.001|222494.682|87.801 +639854.929|222494.627|88.456 +639864.991|222485.044|87.941 +639895.090|222456.378|86.600 +639905.121|222446.838|86.810 +639910.183|222442.022|86.813 +639915.194|222437.252|86.707 +639920.202|222432.479|86.265 +639930.273|222422.893|86.076 +639935.284|222418.122|85.890 +639940.346|222413.310|86.228 +639945.360|222408.539|86.073 +639950.414|222403.715|85.283 +639955.434|222398.950|85.948 +639960.448|222394.189|86.630 +639975.536|222379.870|88.417 +639980.592|222375.060|88.685 +639985.603|222370.299|89.038 +640000.682|222355.958|89.322 +640010.688|222346.476|91.327 +640015.696|222341.709|91.382 +640030.750|222327.417|93.165 +640050.693|222308.480|95.717 +640055.695|222303.725|96.027 +640060.648|222299.015|96.424 +640065.644|222294.270|96.945 +640070.652|222289.503|97.030 +640075.611|222284.787|97.250 +640080.564|222280.078|97.561 +640077.970|222278.518|97.753 +640072.962|222283.273|97.451 +640068.000|222287.982|97.173 +640063.038|222292.694|96.920 +640058.082|222297.391|96.378 +640048.112|222306.852|95.707 +640043.165|222311.534|94.692 +640038.203|222316.246|94.375 +640033.198|222320.989|93.726 +640023.225|222330.450|92.982 +640013.307|222339.847|91.489 +640008.299|222344.595|90.873 +640003.334|222349.301|90.258 +639983.320|222368.297|88.968 +639978.303|222373.058|88.727 +639973.335|222377.773|88.371 +639968.318|222382.534|87.898 +639958.324|222392.004|86.676 +639953.300|222396.759|85.649 +639948.277|222401.526|85.305 +639943.263|222406.305|85.978 +639938.246|222411.075|86.188 +639933.272|222415.800|86.146 +639928.206|222420.613|86.070 +639923.189|222425.383|86.246 +639918.221|222430.110|86.521 +639913.204|222434.880|86.652 +639908.193|222439.650|87.139 +639903.176|222444.421|87.267 +639898.150|222449.191|86.911 +639883.145|222463.452|87.155 +639878.131|222468.223|87.502 +639873.132|222472.987|88.285 +639853.058|222492.067|88.444 +639835.919|222504.210|91.190 +639850.912|222489.891|88.252 +639855.911|222485.127|87.642 +639860.937|222480.351|88.017 +639866.018|222475.529|88.612 +639876.034|222465.991|88.130 +639881.029|222461.224|87.338 +639886.083|222456.411|86.984 +639901.186|222442.052|87.612 +639906.191|222437.282|87.066 +639911.201|222432.512|86.917 +639916.258|222427.696|86.603 +639921.269|222422.923|86.332 +639926.286|222418.153|86.496 +639931.318|222413.319|83.832 +639936.302|222408.604|85.183 +639941.364|222403.788|85.326 +639951.444|222394.202|85.405 +639956.464|222389.441|86.219 +639966.495|222379.928|87.877 +639971.555|222375.127|88.462 +639976.615|222370.318|88.685 +639981.580|222365.596|88.743 +640001.669|222346.503|89.861 +640006.671|222341.770|91.148 +640011.630|222337.055|91.449 +640016.684|222332.263|92.092 +640021.637|222327.563|92.803 +640036.593|222313.362|94.473 +640041.595|222308.617|95.012 +640046.588|222303.880|95.842 +640061.493|222289.725|97.164 +640066.400|222285.062|97.515 +640071.405|222280.307|97.753 +640076.364|222275.592|97.969 +640080.838|222267.499|98.557 +640070.917|222276.908|97.893 +640065.900|222281.666|97.774 +640060.938|222286.372|97.475 +640045.972|222300.552|95.799 +640041.019|222305.240|95.006 +640021.082|222324.128|92.751 +640016.071|222328.874|92.254 +640011.060|222333.623|91.708 +639981.110|222362.003|88.840 +639976.093|222366.767|88.764 +639971.073|222371.528|88.508 +639966.102|222376.240|88.154 +639961.082|222380.998|87.749 +639956.056|222385.740|86.179 +639951.082|222390.462|85.993 +639941.035|222399.990|85.448 +639936.058|222404.711|85.167 +639926.021|222414.251|85.875 +639921.010|222419.025|86.670 +639915.990|222423.792|86.755 +639911.019|222428.513|86.908 +639906.005|222433.280|87.225 +639900.988|222438.050|87.557 +639896.019|222442.769|87.773 +639870.928|222466.601|88.270 +639860.949|222476.086|88.773 +639850.897|222485.627|88.529 +639845.880|222490.391|88.718 +639842.121|222489.982|89.023 +639852.189|222480.399|88.749 +639867.271|222466.043|88.581 +639877.292|222456.506|88.410 +639892.368|222442.153|88.154 +639897.424|222437.340|87.975 +639902.426|222432.570|87.493 +639907.431|222427.800|87.027 +639912.445|222423.030|87.100 +639917.511|222418.217|87.636 +639922.695|222413.258|86.179 +639937.582|222399.072|85.164 +639942.550|222394.345|85.146 +639947.613|222389.535|85.466 +639957.644|222380.004|86.280 +639962.658|222375.261|87.850 +639967.672|222370.497|88.157 +639972.680|222365.739|88.630 +639977.691|222360.975|88.849 +639982.702|222356.208|88.959 +640002.681|222337.234|91.038 +640007.686|222332.483|91.541 +640012.691|222327.731|92.044 +640022.652|222318.264|92.739 +640027.605|222313.564|93.427 +640037.550|222304.124|94.860 +640042.491|222299.439|95.835 +640057.387|222285.296|97.497 +640062.334|222280.593|97.948 +640067.296|222275.875|98.009 +640072.249|222271.169|98.377 +640077.202|222266.460|98.658 +640070.850|222268.770|98.545 +640065.793|222273.565|98.259 +640060.743|222278.347|97.682 +640055.771|222283.065|97.664 +640040.662|222297.370|95.921 +640035.615|222302.143|94.970 +640025.605|222311.616|93.488 +640015.489|222321.202|92.547 +640005.415|222330.742|91.532 +640000.359|222335.521|90.492 +639995.345|222340.267|89.791 +639985.216|222349.865|88.910 +639980.193|222354.629|88.910 +639975.127|222359.439|88.840 +639970.061|222364.243|88.639 +639965.041|222368.998|88.033 +639959.973|222373.801|87.776 +639954.901|222378.584|86.057 +639944.806|222388.157|85.612 +639939.731|222392.967|85.332 +639934.708|222397.731|85.079 +639929.636|222402.544|85.070 +639924.567|222407.360|85.375 +639919.568|222412.136|87.216 +639909.440|222421.762|87.731 +639904.414|222426.526|87.530 +639899.348|222431.336|87.618 +639894.337|222436.103|88.154 +639889.323|222440.867|88.523 +639884.260|222445.676|88.785 +639859.166|222469.500|89.188 +639849.114|222479.034|88.886 +639839.083|222488.565|89.392 +639829.079|222498.081|90.605 +639824.178|222502.769|92.586 +639819.469|222503.564|94.616 +639824.367|222498.846|91.568 +639834.383|222489.287|89.700 +639839.329|222484.569|89.078 +639844.377|222479.759|88.465 +639849.467|222474.934|89.364 +639854.432|222470.207|89.246 +639874.604|222451.038|89.880 +639879.603|222446.271|89.252 +639884.608|222441.504|88.932 +639889.661|222436.691|88.447 +639894.712|222431.875|87.938 +639899.726|222427.105|87.975 +639904.752|222422.338|88.599 +639924.869|222403.154|85.814 +639929.877|222398.374|84.872 +639934.945|222393.562|85.359 +639939.962|222388.791|85.399 +639944.979|222384.018|85.408 +639955.017|222374.490|86.390 +639960.034|222369.732|87.142 +639965.096|222364.935|88.084 +639970.065|222360.223|88.679 +639975.075|222355.458|88.910 +639980.135|222350.652|89.169 +640010.094|222322.214|92.199 +640015.050|222317.511|92.797 +640020.061|222312.744|92.833 +640025.008|222308.059|93.918 +640029.961|222303.362|94.665 +640034.960|222298.616|95.174 +640054.753|222279.840|97.945 +640059.712|222275.125|98.064 +640064.662|222270.428|98.603 +640055.025|222275.933|97.719 +640029.912|222299.695|94.784 +640024.901|222304.441|94.424 +640019.860|222309.199|93.074 +640009.835|222318.696|92.473 +640004.778|222323.479|91.769 +639979.568|222347.342|89.169 +639974.502|222352.142|88.950 +639969.437|222356.943|88.779 +639964.420|222361.692|88.285 +639959.354|222366.489|87.758 +639949.262|222376.026|85.875 +639944.144|222380.876|85.725 +639939.121|222385.634|85.338 +639934.049|222390.440|85.128 +639928.993|222395.262|86.512 +639898.680|222424.063|89.230 +639893.648|222428.821|88.511 +639888.582|222433.625|88.432 +639883.526|222438.428|88.919 +639878.521|222443.186|89.450 +639873.461|222447.990|89.791 +639848.214|222471.929|89.468 +639843.188|222476.693|89.276 +639838.110|222481.506|89.008 +639833.115|222486.258|89.742 +639823.081|222495.804|91.346 +639818.146|222500.525|93.610 +639810.568|222503.982|95.582 +639820.493|222494.469|91.602 +639825.470|222489.714|90.538 +639830.509|222484.907|89.806 +639835.510|222480.140|89.313 +639840.539|222475.364|89.669 +639860.772|222456.137|90.748 +639865.777|222451.370|90.437 +639870.779|222446.603|90.066 +639875.829|222441.790|89.593 +639880.880|222436.977|89.084 +639885.894|222432.210|89.105 +639890.957|222427.394|89.240 +639896.010|222422.582|88.926 +639901.039|222417.815|89.843 +639911.159|222408.189|89.889 +639916.161|222403.419|89.313 +639921.202|222398.591|87.490 +639926.252|222393.766|86.377 +639931.266|222388.990|85.853 +639936.326|222384.168|85.472 +639941.392|222379.355|85.774 +639946.409|222374.582|85.722 +639951.475|222369.766|85.987 +639971.677|222350.603|88.947 +639976.691|222345.839|89.169 +639991.775|222331.507|89.992 +639996.789|222326.737|90.023 +640001.831|222321.976|91.949 +640006.787|222317.276|92.647 +640021.847|222302.984|94.479 +640031.805|222293.532|95.543 +640036.795|222288.805|96.631 +640051.754|222274.598|97.939 +640058.749|222264.134|98.963 +640048.831|222273.525|98.060 +640033.914|222287.637|96.189 +640028.906|222292.380|95.686 +640023.953|222297.059|94.708 +640013.980|222306.495|93.580 +639978.983|222339.609|89.258 +639973.914|222344.416|89.227 +639968.894|222349.170|88.926 +639958.854|222358.674|87.837 +639953.831|222363.408|86.225 +639948.808|222368.172|86.124 +639943.739|222372.985|86.353 +639938.761|222377.706|86.512 +639933.690|222382.506|86.042 +639928.624|222387.322|86.649 +639923.656|222392.050|87.395 +639918.599|222396.866|88.548 +639908.583|222406.397|90.093 +639903.560|222411.155|89.898 +639893.520|222420.674|89.636 +639888.448|222425.477|89.371 +639883.376|222430.284|89.087 +639878.414|222434.999|89.596 +639868.340|222444.564|90.239 +639863.332|222449.322|90.718 +639858.276|222454.125|91.044 +639853.268|222458.883|91.443 +639838.119|222473.227|90.160 +639833.078|222477.997|89.675 +639823.017|222487.559|90.623 +639818.024|222492.308|91.462 +639813.074|222497.060|94.552 +639808.106|222501.796|95.835 +639803.153|222502.628|95.427 +639813.062|222493.155|92.370 +639818.036|222488.409|91.172 +639823.032|222483.652|90.532 +639848.199|222459.761|91.681 +639853.207|222455.000|91.547 +639858.261|222450.194|91.199 +639863.259|222445.433|90.611 +639868.261|222440.672|90.099 +639873.324|222435.865|90.072 +639878.316|222431.101|89.057 +639883.346|222426.337|89.770 +639888.402|222421.527|89.532 +639898.494|222411.959|90.550 +639903.502|222407.195|90.279 +639908.516|222402.434|90.315 +639913.570|222397.625|89.825 +639923.579|222388.084|88.273 +639928.630|222383.256|86.719 +639933.650|222378.495|87.173 +639938.670|222373.734|87.557 +639948.747|222364.145|86.780 +639953.764|222359.372|86.341 +639968.812|222345.126|89.054 +639978.888|222335.561|89.450 +639993.933|222321.281|90.081 +640008.890|222307.126|93.214 +640013.889|222302.393|94.208 +640018.891|222297.653|94.909 +640028.845|222288.213|96.067 +640033.850|222283.465|96.494 +640038.800|222278.774|97.189 +640048.752|222269.331|98.204 +640053.757|222264.582|98.557 +640058.822|222255.676|99.551 +640053.824|222260.403|98.829 +640048.865|222265.100|98.380 +640023.990|222288.640|95.305 +640018.982|222293.380|94.747 +640013.971|222298.125|94.360 +640009.009|222302.826|93.961 +639989.026|222321.708|90.059 +639973.972|222335.982|89.563 +639968.952|222340.734|89.197 +639963.981|222345.443|88.855 +639958.915|222350.237|88.264 +639953.895|222354.962|86.167 +639948.875|222359.744|87.213 +639943.855|222364.520|88.109 +639938.835|222369.284|88.264 +639933.815|222374.042|87.993 +639928.791|222378.800|87.584 +639923.774|222383.564|87.776 +639918.724|222388.389|89.617 +639913.713|222393.150|90.011 +639908.702|222397.914|90.547 +639888.576|222416.992|89.816 +639883.556|222421.753|89.730 +639878.524|222426.514|89.075 +639873.507|222431.275|89.182 +639863.509|222440.787|90.904 +639858.447|222445.594|90.965 +639853.442|222450.349|91.526 +639848.437|222455.107|91.964 +639843.426|222459.865|92.217 +639838.433|222464.614|92.995 +639823.297|222478.930|90.736 +639818.283|222483.691|90.934 +639813.245|222488.486|91.797 +639803.412|222497.889|95.832 +639798.376|222502.656|95.521 +639795.655|222501.068|95.607 +639800.669|222496.304|95.579 +639815.604|222482.039|91.263 +639835.775|222462.910|92.876 +639840.783|222458.149|92.678 +639845.785|222453.391|92.196 +639850.833|222448.587|91.715 +639855.840|222443.826|91.416 +639860.848|222439.065|91.050 +639865.871|222434.265|89.419 +639875.906|222424.734|89.538 +639880.968|222419.924|89.453 +639891.066|222410.356|90.584 +639901.097|222400.831|90.797 +639906.163|222396.030|91.297 +639911.217|222391.218|90.556 +639916.225|222386.454|90.032 +639921.226|222381.674|88.599 +639926.286|222376.862|88.075 +639931.306|222372.104|88.694 +639936.372|222367.297|88.938 +639946.400|222357.757|88.142 +639951.466|222352.932|87.374 +639966.517|222338.673|89.206 +639971.531|222333.909|89.322 +639976.548|222329.154|89.742 +639991.596|222314.871|90.148 +640011.554|222296.004|94.683 +640016.516|222291.301|95.028 +640021.518|222286.570|95.826 +640031.488|222277.116|96.424 +640041.437|222267.703|97.987 +640046.393|222263.003|98.396 +640051.394|222258.267|98.914 +640056.354|222253.567|99.325 +640081.198|222229.990|99.594 +640078.595|222228.890|99.673 +640053.555|222252.610|99.036 +640048.496|222257.401|98.761 +640043.528|222262.104|98.554 +640038.517|222266.850|98.320 +640028.519|222276.293|96.555 +640023.466|222281.066|95.790 +640013.486|222290.512|95.195 +640008.427|222295.300|94.784 +639998.408|222304.770|93.440 +639988.404|222314.195|90.261 +639973.295|222328.502|89.660 +639968.275|222333.254|89.349 +639953.212|222347.500|87.661 +639948.140|222352.307|87.844 +639938.103|222361.856|89.742 +639933.086|222366.617|89.965 +639928.063|222371.366|89.480 +639923.034|222376.112|88.246 +639918.029|222380.888|89.962 +639913.061|222385.603|90.404 +639877.911|222418.900|89.557 +639872.891|222423.658|89.614 +639867.926|222428.370|90.008 +639862.851|222433.173|89.654 +639857.910|222437.883|91.059 +639852.908|222442.634|91.724 +639847.894|222447.389|91.888 +639842.932|222452.099|92.300 +639837.930|222456.850|92.839 +639832.944|222461.596|93.949 +639827.957|222466.314|93.504 +639812.964|222480.512|92.748 +639808.057|222485.218|95.768 +639803.086|222489.927|95.826 +639798.105|222494.646|95.610 +639793.088|222499.401|95.726 +639788.123|222504.110|95.927 +639788.565|222499.693|95.720 +639793.585|222494.929|95.713 +639798.596|222490.168|95.576 +639803.613|222485.404|95.592 +639823.611|222466.385|93.781 +639828.668|222461.578|93.607 +639833.669|222456.820|93.187 +639838.668|222452.065|92.665 +639848.672|222442.549|91.730 +639853.701|222437.749|90.453 +639858.706|222432.988|89.925 +639863.726|222428.224|90.008 +639868.782|222423.417|89.724 +639878.826|222413.889|90.212 +639883.900|222409.085|90.898 +639888.917|222404.324|91.193 +639909.019|222385.237|91.077 +639914.073|222380.428|90.544 +639919.035|222375.703|89.822 +639924.094|222370.891|89.407 +639929.115|222366.142|90.334 +639934.132|222361.381|90.401 +639939.146|222356.614|90.072 +639959.256|222337.497|88.929 +639964.273|222332.739|89.273 +639969.290|222327.981|89.471 +639989.352|222308.949|90.410 +639999.344|222299.525|93.879 +640004.348|222294.782|94.531 +640024.325|222275.845|96.442 +640029.327|222271.105|97.052 +640039.230|222261.723|98.338 +640044.235|222256.974|98.633 +640049.197|222252.265|98.835 +640054.199|222247.526|99.380 +640074.017|222228.707|99.749 +640079.034|222223.940|99.767 +640080.829|222218.560|99.819 +640075.757|222223.367|99.795 +640070.734|222228.122|99.740 +640065.708|222232.883|99.807 +640050.666|222247.114|98.990 +640045.606|222251.906|98.789 +640040.583|222256.666|98.886 +640030.531|222266.161|97.457 +640025.526|222270.892|96.853 +640020.515|222275.628|96.427 +640015.455|222280.414|96.009 +640010.448|222285.147|95.393 +640005.388|222289.932|94.988 +639990.325|222304.136|91.529 +639985.268|222308.900|90.206 +639970.110|222323.244|89.547 +639965.041|222328.042|89.322 +639960.018|222332.793|89.054 +639954.904|222337.628|88.301 +639949.881|222342.364|87.234 +639944.812|222347.201|89.172 +639939.743|222352.017|89.968 +639934.677|222356.824|90.459 +639929.611|222361.625|90.636 +639924.543|222366.419|90.233 +639919.522|222371.174|90.093 +639914.457|222375.975|90.416 +639909.397|222380.778|90.892 +639904.340|222385.585|91.791 +639899.332|222390.340|92.294 +639889.192|222399.932|91.745 +639874.016|222414.282|90.325 +639863.918|222423.840|90.029 +639858.888|222428.598|89.681 +639853.884|222433.350|90.367 +639848.815|222438.154|90.434 +639828.820|222457.149|93.491 +639823.821|222461.895|94.132 +639818.758|222466.692|94.244 +639813.793|222471.402|94.421 +639803.793|222480.893|95.576 +639798.773|222485.648|95.576 +639793.759|222490.400|95.774 +639788.745|222495.155|95.988 +639783.761|222499.870|95.829 +639778.086|222501.318|96.198 +639783.091|222496.560|95.826 +639788.120|222491.793|96.040 +639793.131|222487.032|95.835 +639798.187|222482.228|95.573 +639803.183|222477.473|95.052 +639808.191|222472.715|94.720 +639813.251|222467.912|94.613 +639818.213|222463.196|94.388 +639823.263|222458.396|93.955 +639853.350|222429.763|90.017 +639863.436|222420.189|90.047 +639878.603|222405.812|91.074 +639888.753|222396.204|92.473 +639908.836|222377.108|90.748 +639913.899|222372.299|90.504 +639918.962|222367.492|90.404 +639939.027|222348.442|90.319 +639944.044|222343.660|89.121 +639949.109|222338.819|87.514 +639959.147|222329.322|89.148 +639964.167|222324.564|89.349 +639969.138|222319.849|89.575 +639974.201|222315.045|89.831 +639979.175|222310.327|89.855 +639984.180|222305.602|91.358 +640004.150|222286.720|95.241 +640014.066|222277.326|96.332 +640024.033|222267.883|97.216 +640028.992|222263.183|97.576 +640038.895|222253.807|98.926 +640043.866|222249.086|98.822 +640048.779|222244.429|99.127 +640053.784|222239.689|99.603 +640058.707|222235.020|99.652 +640063.672|222230.304|99.764 +640068.594|222225.635|99.831 +640073.517|222220.965|99.923 +640078.491|222216.244|99.914 +640076.931|222214.077|100.014 +640071.953|222218.786|100.011 +640066.930|222223.538|99.938 +640061.959|222228.235|99.786 +640056.939|222232.987|99.746 +640046.960|222242.417|99.188 +640041.994|222247.111|98.957 +640036.926|222251.902|98.963 +640026.971|222261.296|97.466 +640006.884|222280.258|95.424 +640001.864|222285.004|95.366 +639991.794|222294.514|94.406 +639986.783|222299.241|93.665 +639976.727|222308.690|90.239 +639971.710|222313.426|89.645 +639966.639|222318.218|89.413 +639961.570|222323.012|89.264 +639956.550|222327.758|89.008 +639941.386|222342.114|89.672 +639936.369|222346.881|90.724 +639916.100|222366.056|90.748 +639911.080|222370.802|90.678 +639900.966|222380.400|92.269 +639875.671|222404.312|91.269 +639870.596|222409.106|90.828 +639865.518|222413.901|90.312 +639855.380|222423.490|90.386 +639845.304|222433.033|90.956 +639840.241|222437.828|91.117 +639830.234|222447.316|92.385 +639825.214|222452.096|93.967 +639820.154|222456.884|94.199 +639815.144|222461.630|94.446 +639810.139|222466.375|94.839 +639805.076|222471.164|95.064 +639800.068|222475.910|95.384 +639795.063|222480.652|95.790 +639790.049|222485.401|95.970 +639785.026|222490.153|96.003 +639779.954|222494.954|95.982 +639774.992|222499.654|96.323 +639769.917|222504.439|95.226 +639766.799|222503.698|94.930 +639771.868|222498.907|95.878 +639776.894|222494.140|95.991 +639781.960|222489.330|95.896 +639786.986|222484.563|96.015 +639792.052|222479.756|95.985 +639797.060|222474.998|95.674 +639802.065|222470.243|95.241 +639807.118|222465.443|94.897 +639812.126|222460.685|94.577 +639827.180|222446.344|91.605 +639832.185|222441.583|91.059 +639847.337|222427.205|90.928 +639857.416|222417.635|90.572 +639862.439|222412.871|90.724 +639867.511|222408.064|91.062 +639872.541|222403.303|91.620 +639877.573|222398.545|92.400 +639882.642|222393.741|92.848 +639897.924|222379.239|92.729 +639912.856|222365.035|90.788 +639917.922|222360.232|91.017 +639922.942|222355.477|91.535 +639938.088|222341.087|90.373 +639948.177|222331.462|87.594 +639958.263|222321.918|89.102 +639968.306|222312.393|89.233 +639983.326|222298.223|93.632 +639988.386|222293.428|94.089 +639993.345|222288.741|94.970 +639998.353|222283.998|95.579 +640003.367|222279.249|95.890 +640008.332|222274.540|96.131 +640023.310|222260.355|97.609 +640028.275|222255.648|97.875 +640033.219|222250.979|99.021 +640038.236|222246.221|99.106 +640043.208|222241.506|99.127 +640048.118|222236.851|99.597 +640053.086|222232.142|99.786 +640058.106|222227.381|99.837 +640063.029|222222.712|99.969 +640068.000|222217.996|100.075 +640072.926|222213.324|100.170 +640077.900|222208.602|100.203 +640077.141|222205.814|100.267 +640072.164|222210.523|100.212 +640067.186|222215.229|100.133 +640062.255|222219.892|100.112 +640057.283|222224.592|99.959 +640052.260|222229.341|99.868 +640047.338|222233.995|99.636 +640042.333|222238.720|99.042 +640037.352|222243.432|99.213 +640032.384|222248.129|99.014 +640017.403|222262.272|97.445 +640012.392|222266.999|96.808 +639992.385|222285.894|95.061 +639982.360|222295.349|93.580 +639972.332|222304.807|91.946 +639962.256|222314.280|88.837 +639957.181|222319.084|89.008 +639952.157|222323.832|88.862 +639947.131|222328.578|88.328 +639942.059|222333.382|88.581 +639937.036|222338.167|90.504 +639932.016|222342.931|91.196 +639926.947|222347.732|91.593 +639916.859|222357.272|91.480 +639911.790|222362.064|91.236 +639906.767|222366.812|91.017 +639901.753|222371.567|91.730 +639896.178|222376.862|92.766 +639891.642|222381.165|93.528 +639881.550|222390.703|93.138 +639876.524|222395.451|92.797 +639871.443|222400.243|91.955 +639866.362|222405.037|91.373 +639851.198|222419.381|91.318 +639831.005|222438.483|91.181 +639825.979|222443.235|91.160 +639820.916|222448.029|91.468 +639815.957|222452.760|93.455 +639805.911|222462.285|94.884 +639800.858|222467.076|95.287 +639795.850|222471.819|95.726 +639790.793|222476.611|96.064 +639785.819|222481.317|96.113 +639780.741|222486.114|95.988 +639775.724|222490.863|96.116 +639770.682|222495.624|95.838 +639765.623|222500.397|95.150 +639766.122|222496.093|95.378 +639771.182|222491.311|96.168 +639776.202|222486.553|96.018 +639781.225|222481.792|96.058 +639786.251|222477.031|96.128 +639791.268|222472.276|96.018 +639796.225|222467.570|95.625 +639801.275|222462.776|95.171 +639811.260|222453.284|93.555 +639816.229|222448.548|91.958 +639826.247|222439.038|91.151 +639831.325|222434.231|91.391 +639841.375|222424.712|91.678 +639861.543|222405.595|91.443 +639866.573|222400.837|91.910 +639871.608|222396.082|92.736 +639876.680|222391.285|93.312 +639891.783|222376.983|93.812 +639896.787|222372.226|92.964 +639901.792|222367.462|91.824 +639906.855|222362.658|91.486 +639911.872|222357.906|91.590 +639916.895|222353.157|92.193 +639931.992|222338.835|91.260 +639937.009|222334.055|89.965 +639942.032|222329.261|88.084 +639947.055|222324.503|88.292 +639957.104|222314.981|88.249 +639962.124|222310.238|88.926 +639982.168|222291.331|93.680 +639992.178|222281.889|95.890 +640002.166|222272.412|95.665 +640007.171|222267.685|96.518 +640012.176|222262.948|97.045 +640017.187|222258.206|97.463 +640037.124|222239.339|99.185 +640042.086|222234.642|99.542 +640047.100|222229.893|99.731 +640052.065|222225.187|99.962 +640056.985|222220.526|100.130 +640062.005|222215.771|100.249 +640066.976|222211.056|100.289 +640071.901|222206.390|100.404 +640076.879|222201.671|100.407 +640077.973|222196.505|100.401 +640072.990|222201.220|100.471 +640068.009|222205.932|100.474 +640063.032|222210.639|100.401 +640058.103|222215.302|100.353 +640053.080|222220.051|100.234 +640048.109|222224.751|100.063 +640043.140|222229.445|99.816 +640038.133|222234.175|99.286 +640033.149|222238.891|99.545 +640028.190|222243.575|98.999 +640023.185|222248.294|98.256 +640018.214|222252.994|98.097 +640013.252|222257.678|97.558 +640008.198|222262.446|96.826 +640003.279|222267.091|96.415 +639998.268|222271.821|95.771 +639978.255|222290.710|93.659 +639963.258|222304.843|90.754 +639958.247|222309.534|88.185 +639953.221|222314.292|88.200 +639948.192|222319.050|88.304 +639943.166|222323.790|87.536 +639938.140|222328.563|88.478 +639933.117|222333.360|91.020 +639928.097|222338.115|91.300 +639923.080|222342.882|92.412 +639913.039|222352.383|92.605 +639908.016|222357.126|92.150 +639902.993|222361.875|91.855 +639897.933|222366.675|92.595 +639892.926|222371.427|93.351 +639887.918|222376.179|94.186 +639872.803|222390.465|93.437 +639867.770|222395.211|92.665 +639857.712|222404.711|91.858 +639852.640|222409.506|91.876 +639837.534|222423.804|92.175 +639827.509|222433.271|91.297 +639822.434|222438.072|91.248 +639812.477|222447.517|92.708 +639807.484|222452.257|93.589 +639802.510|222456.988|95.019 +639797.502|222461.733|95.439 +639792.500|222466.476|95.988 +639787.532|222471.179|96.174 +639782.463|222475.977|96.210 +639777.434|222480.732|96.131 +639772.459|222485.438|96.250 +639767.412|222490.205|95.753 +639757.320|222499.739|95.067 +639749.279|222503.250|93.181 +639754.357|222498.459|94.116 +639764.483|222488.897|95.595 +639769.545|222484.115|96.424 +639774.507|222479.409|96.091 +639779.537|222474.651|96.192 +639784.560|222469.893|96.250 +639789.577|222465.138|96.149 +639794.582|222460.389|95.698 +639799.590|222455.640|95.351 +639814.534|222441.418|91.891 +639819.545|222436.666|91.431 +639834.684|222422.341|92.367 +639839.717|222417.583|92.754 +639844.718|222412.834|92.077 +639849.744|222408.076|92.327 +639854.807|222403.279|92.181 +639859.836|222398.524|92.711 +639864.860|222393.772|92.973 +639889.960|222370.016|93.964 +639895.013|222365.215|93.147 +639900.021|222360.457|92.544 +639905.041|222355.705|92.565 +639915.124|222346.162|93.046 +639920.141|222341.407|92.864 +639925.155|222336.640|91.772 +639930.172|222331.873|91.132 +639935.192|222327.078|88.855 +639940.215|222322.302|87.892 +639945.287|222317.502|88.118 +639950.265|222312.783|87.965 +639955.337|222307.983|88.072 +639960.347|222303.280|90.398 +639965.361|222298.552|91.596 +639975.380|222289.103|93.857 +639980.394|222284.370|94.476 +639995.381|222270.206|96.128 +640000.401|222265.448|96.049 +640015.376|222251.302|97.957 +640035.274|222232.493|99.639 +640040.288|222227.747|99.880 +640045.253|222223.050|100.182 +640050.224|222218.347|100.313 +640055.195|222213.641|100.450 +640060.170|222208.932|100.551 +640065.147|222204.219|100.569 +640070.121|222199.507|100.609 +640075.102|222194.789|100.584 +640080.085|222190.071|100.548 +640078.924|222187.446|100.502 +640073.889|222192.207|100.584 +640068.902|222196.919|100.618 +640063.873|222201.674|100.621 +640058.847|222206.426|100.578 +640053.821|222211.172|100.484 +640048.798|222215.921|100.404 +640043.774|222220.663|100.231 +640038.764|222225.391|99.780 +640033.737|222230.143|99.780 +640023.712|222239.601|98.874 +640018.650|222244.377|98.496 +639998.603|222263.281|96.107 +639993.531|222268.075|96.162 +639988.514|222272.809|95.790 +639983.497|222277.548|95.473 +639973.469|222286.994|93.815 +639948.329|222310.641|87.746 +639943.300|222315.395|87.840 +639938.271|222320.150|87.844 +639933.242|222324.924|89.044 +639918.178|222339.237|93.135 +639908.141|222348.735|93.647 +639903.069|222353.520|93.184 +639898.095|222358.220|93.050 +639893.081|222362.969|93.623 +639888.067|222367.718|94.098 +639878.039|222377.209|94.976 +639862.955|222391.440|93.507 +639857.928|222396.189|93.339 +639852.939|222400.892|92.638 +639847.916|222405.638|92.690 +639842.932|222410.344|92.422 +639827.906|222424.545|92.388 +639822.901|222429.260|91.544 +639817.875|222434.012|91.501 +639798.032|222452.830|95.125 +639793.094|222457.518|96.162 +639788.074|222462.264|96.283 +639783.146|222466.924|96.387 +639778.113|222471.676|96.229 +639773.133|222476.385|96.232 +639768.165|222481.085|96.469 +639763.141|222485.816|95.592 +639758.179|222490.494|95.015 +639753.165|222495.222|94.436 +639748.130|222499.964|93.476 +639747.847|222496.234|93.601 +639752.873|222491.491|94.522 +639757.993|222486.657|95.445 +639768.046|222477.156|96.564 +639773.102|222472.362|96.180 +639778.129|222467.601|96.293 +639783.152|222462.843|96.369 +639788.172|222458.088|96.326 +639798.215|222448.554|95.101 +639803.201|222443.811|94.104 +639813.229|222434.277|92.214 +639818.228|222429.528|91.462 +639833.377|222415.202|92.769 +639838.452|222410.402|93.053 +639848.541|222400.849|93.242 +639853.561|222396.098|93.427 +639858.587|222391.346|93.863 +639878.765|222372.256|95.107 +639888.829|222362.704|94.153 +639893.840|222357.955|93.900 +639898.854|222353.203|93.827 +639908.934|222343.657|93.882 +639913.948|222338.902|93.595 +639918.962|222334.141|92.979 +639924.021|222329.319|91.440 +639929.041|222324.555|90.953 +639934.061|222319.757|88.694 +639939.088|222314.978|87.679 +639944.111|222310.220|87.703 +639949.137|222305.465|87.914 +639954.151|222300.747|89.681 +639959.119|222296.068|91.059 +639964.179|222291.292|92.004 +639984.168|222272.431|95.741 +639989.136|222267.731|96.034 +639994.153|222262.982|96.195 +640019.009|222239.482|98.710 +640033.942|222225.363|100.011 +640038.864|222220.703|100.164 +640043.829|222216.006|100.438 +640048.801|222211.300|100.566 +640053.726|222206.637|100.657 +640058.701|222201.924|100.706 +640063.678|222197.212|100.737 +640068.613|222192.536|100.651 +640073.593|222187.815|100.615 +640078.528|222183.139|100.542 +640080.994|222177.165|100.481 +640075.955|222181.929|100.596 +640070.874|222186.733|100.615 +640065.839|222191.491|100.688 +640060.804|222196.252|100.782 +640055.774|222201.004|100.737 +640050.700|222205.798|100.734 +640045.673|222210.547|100.621 +640040.605|222215.336|100.499 +640035.597|222220.054|99.810 +640025.499|222229.594|99.752 +640010.362|222243.871|98.344 +640005.354|222248.589|97.591 +639995.238|222258.123|96.146 +639990.212|222262.872|96.158 +639985.143|222267.661|96.034 +639980.077|222272.440|95.619 +639975.021|222277.198|94.525 +639969.955|222281.974|93.915 +639959.878|222291.447|91.266 +639944.669|222305.752|87.697 +639939.588|222310.549|87.551 +639934.510|222315.365|88.395 +639929.435|222320.187|89.816 +639924.408|222324.966|91.504 +639919.340|222329.779|92.647 +639904.139|222344.169|93.927 +639899.070|222348.960|94.052 +639894.050|222353.706|94.132 +639888.561|222358.897|94.290 +639883.922|222363.286|94.494 +639878.905|222368.031|94.933 +639873.848|222372.823|95.479 +639868.785|222377.611|95.768 +639858.666|222387.142|94.165 +639853.637|222391.888|93.876 +639848.608|222396.637|93.559 +639843.536|222401.428|93.501 +639838.510|222406.174|93.409 +639833.489|222410.923|93.546 +639818.320|222425.227|91.998 +639803.366|222439.404|94.491 +639798.364|222444.146|95.159 +639793.378|222448.877|96.216 +639788.412|222453.574|96.588 +639783.380|222458.329|96.405 +639778.400|222463.032|96.411 +639773.371|222467.787|96.344 +639768.402|222472.487|96.640 +639763.343|222477.257|95.912 +639758.329|222481.981|95.275 +639753.321|222486.706|94.793 +639748.295|222491.439|93.961 +639731.814|222503.268|90.096 +639747.124|222488.848|94.007 +639752.202|222484.060|94.933 +639762.306|222474.514|95.945 +639767.369|222469.737|96.780 +639772.377|222464.989|96.363 +639777.406|222460.231|96.457 +639782.432|222455.473|96.500 +639787.468|222450.712|96.789 +639812.467|222426.959|91.977 +639817.487|222422.201|91.867 +639827.628|222412.633|93.379 +639832.663|222407.878|93.888 +639837.735|222403.077|94.110 +639847.782|222393.574|94.345 +639862.900|222379.279|95.061 +639867.972|222374.484|95.604 +639872.989|222369.735|95.467 +639878.003|222364.987|95.406 +639888.073|222355.437|94.439 +639893.090|222350.685|94.354 +639898.107|222345.936|94.449 +639903.173|222341.142|94.439 +639908.190|222336.393|94.336 +639933.287|222312.530|88.657 +639938.316|222307.751|87.694 +639943.343|222302.993|87.828 +639948.369|222298.250|88.578 +639958.354|222288.856|91.568 +639973.344|222274.723|94.647 +639983.323|222265.301|95.945 +639988.292|222260.601|96.189 +639993.312|222255.853|96.238 +640003.227|222246.495|97.829 +640008.186|222241.814|98.527 +640013.157|222237.107|98.545 +640023.072|222227.744|99.780 +640033.009|222218.347|100.258 +640037.928|222213.696|100.499 +640042.897|222208.996|100.715 +640047.822|222204.332|100.785 +640052.800|222199.620|100.743 +640057.731|222194.954|100.749 +640062.663|222190.281|100.712 +640067.598|222185.611|100.673 +640072.535|222180.936|100.599 +640077.476|222176.257|100.462 +640076.943|222173.169|100.362 +640071.904|222177.930|100.508 +640066.915|222182.643|100.606 +640061.880|222187.398|100.688 +640056.847|222192.146|100.737 +640051.861|222196.852|100.788 +640046.786|222201.644|100.755 +640041.760|222206.390|100.770 +640036.788|222211.077|100.502 +640031.720|222215.860|100.343 +640026.703|222220.587|99.999 +640021.682|222225.324|99.865 +640016.620|222230.097|99.490 +640011.566|222234.846|98.606 +640001.483|222244.356|98.076 +639991.468|222253.777|96.320 +639986.396|222258.559|96.204 +639976.264|222268.115|95.625 +639971.208|222272.861|94.244 +639966.184|222277.600|94.129 +639956.062|222287.110|91.611 +639940.901|222301.347|87.734 +639935.820|222306.139|87.725 +639930.791|222310.906|88.590 +639925.667|222315.767|90.011 +639920.595|222320.586|91.715 +639915.578|222325.353|93.275 +639910.510|222330.151|94.068 +639905.444|222334.936|94.144 +639900.427|222339.679|94.616 +639895.309|222344.507|94.549 +639890.289|222349.244|94.430 +639885.226|222354.029|94.732 +639880.167|222358.817|95.494 +639875.104|222363.603|95.735 +639870.084|222368.339|95.686 +639865.018|222373.122|95.720 +639859.940|222377.904|95.144 +639854.917|222382.644|95.040 +639849.845|222387.426|94.781 +639844.773|222392.211|94.668 +639839.747|222396.951|94.421 +639829.643|222406.479|94.089 +639819.502|222416.022|92.492 +639814.464|222420.771|92.077 +639809.447|222425.514|92.489 +639794.472|222439.708|95.552 +639789.449|222444.472|96.960 +639784.456|222449.179|96.509 +639779.442|222453.915|96.869 +639774.404|222458.667|96.506 +639769.420|222463.373|96.421 +639764.397|222468.116|96.527 +639759.399|222472.828|96.204 +639754.382|222477.549|95.448 +639749.371|222482.271|94.906 +639744.293|222487.050|94.010 +639739.306|222491.738|93.132 +639724.246|222502.363|89.444 +639739.532|222487.974|93.586 +639744.591|222483.197|94.074 +639749.672|222478.409|95.092 +639764.833|222464.096|96.744 +639769.844|222459.347|96.396 +639774.873|222454.589|96.518 +639779.948|222449.788|96.613 +639784.923|222445.079|96.600 +639815.012|222416.525|92.169 +639820.109|222411.719|92.992 +639830.195|222402.206|94.528 +639840.283|222392.659|94.607 +639845.358|222387.865|95.015 +639850.378|222383.116|95.022 +639855.456|222378.322|95.656 +639865.542|222368.784|95.997 +639870.605|222363.990|95.799 +639875.622|222359.244|95.808 +639880.682|222354.450|95.543 +639885.693|222349.701|94.973 +639895.775|222340.161|95.061 +639915.981|222320.998|92.611 +639920.998|222316.228|91.492 +639926.070|222311.396|89.681 +639931.096|222306.611|88.258 +639936.125|222301.844|87.728 +639941.200|222297.046|88.045 +639946.223|222292.313|88.990 +639956.303|222282.831|91.934 +639961.311|222278.124|93.699 +639976.353|222263.927|95.732 +639981.376|222259.178|95.750 +639986.387|222254.448|96.466 +639996.405|222244.987|97.832 +640001.425|222240.241|98.067 +640006.388|222235.556|98.630 +640011.402|222230.816|98.993 +640016.358|222226.138|99.746 +640021.375|222221.395|100.014 +640036.334|222207.246|100.676 +640041.306|222202.543|100.843 +640046.286|222197.828|100.810 +640051.266|222193.116|100.825 +640056.247|222188.400|100.813 +640061.185|222183.725|100.724 +640066.217|222178.958|100.633 +640071.161|222174.279|100.520 +640076.150|222169.551|100.407 +640081.100|222164.864|100.185 +640077.165|222164.964|100.301 +640072.167|222169.686|100.496 +640067.174|222174.398|100.584 +640062.230|222179.067|100.715 +640057.244|222183.776|100.773 +640052.257|222188.483|100.819 +640047.271|222193.189|100.898 +640042.287|222197.892|100.886 +640037.310|222202.592|100.828 +640032.296|222207.313|100.353 +640027.312|222212.016|100.423 +640017.321|222221.438|99.895 +640012.307|222226.159|99.353 +640002.322|222235.571|98.603 +639997.311|222240.283|97.829 +639987.283|222249.729|96.664 +639982.263|222254.457|96.265 +639977.246|222259.184|95.744 +639952.154|222282.788|91.632 +639947.086|222287.552|90.492 +639942.066|222292.243|88.115 +639937.036|222296.982|87.652 +639931.955|222301.783|88.005 +639926.923|222306.544|88.578 +639921.894|222311.323|90.401 +639901.667|222330.498|94.833 +639896.605|222335.290|95.570 +639881.450|222349.594|95.656 +639876.430|222354.334|95.759 +639866.298|222363.901|96.076 +639861.281|222368.638|96.174 +639856.157|222373.466|95.811 +639851.086|222378.251|95.634 +639830.886|222397.301|95.015 +639825.799|222402.093|94.348 +639815.646|222411.639|92.452 +639810.614|222416.385|92.364 +639795.591|222430.625|95.683 +639790.540|222435.405|96.354 +639785.532|222440.141|96.844 +639780.506|222444.884|96.811 +639775.474|222449.633|96.689 +639770.441|222454.378|96.631 +639765.415|222459.121|96.719 +639760.319|222463.919|96.323 +639745.192|222478.162|94.717 +639740.105|222482.941|93.726 +639735.036|222487.711|93.168 +639729.967|222492.463|91.733 +639724.828|222497.279|89.950 +639742.759|222476.507|94.442 +639757.939|222462.187|96.369 +639763.032|222457.381|96.753 +639768.046|222452.635|96.509 +639773.081|222447.877|96.710 +639778.107|222443.125|96.750 +639783.176|222438.331|96.738 +639803.201|222419.332|93.339 +639813.275|222409.792|92.525 +639823.419|222400.234|94.333 +639833.532|222390.687|95.342 +639838.555|222385.942|95.515 +639843.621|222381.150|95.412 +639848.693|222376.362|95.744 +639853.719|222371.616|96.149 +639858.785|222366.828|96.287 +639863.799|222362.082|96.076 +639868.822|222357.339|96.463 +639873.885|222352.551|96.314 +639878.947|222347.762|96.241 +639883.958|222343.017|95.957 +639924.381|222304.666|89.011 +639929.407|222299.893|88.097 +639934.485|222295.090|87.874 +639939.511|222290.341|88.197 +639944.531|222285.632|90.072 +639949.594|222280.868|91.492 +639954.611|222276.143|92.501 +639974.670|222257.236|95.668 +639979.733|222252.454|96.034 +639984.744|222247.727|96.674 +639994.769|222238.269|97.768 +640004.742|222228.853|98.758 +640014.760|222219.395|99.798 +640029.711|222205.274|100.691 +640034.740|222200.516|100.520 +640039.705|222195.828|100.916 +640044.683|222191.119|100.919 +640049.663|222186.410|100.929 +640054.644|222181.698|100.898 +640059.633|222176.976|100.721 +640064.620|222172.258|100.599 +640069.612|222167.534|100.414 +640074.556|222162.852|100.212 +640079.555|222158.121|99.978 +640076.507|222157.329|99.944 +640071.508|222162.056|100.176 +640066.555|222166.735|100.401 +640061.560|222171.453|100.587 +640056.570|222176.169|100.734 +640051.577|222180.884|100.883 +640046.594|222185.593|100.923 +640041.656|222190.253|100.941 +640036.627|222194.999|100.932 +640026.721|222204.351|100.715 +640021.704|222209.081|100.343 +640016.729|222213.772|100.161 +640011.764|222218.454|99.676 +640006.750|222223.178|99.179 +640001.779|222227.863|98.813 +639996.811|222232.548|98.417 +639981.815|222246.669|96.546 +639976.849|222251.345|95.832 +639971.875|222256.033|95.409 +639956.870|222270.163|93.333 +639951.853|222274.875|92.092 +639941.809|222284.309|89.630 +639936.786|222289.024|88.100 +639931.803|222293.724|87.822 +639926.771|222298.479|88.026 +639921.784|222303.210|89.291 +639911.732|222312.753|92.099 +639906.764|222317.480|93.994 +639891.755|222331.684|95.848 +639886.738|222336.427|96.088 +639881.721|222341.166|96.314 +639876.704|222345.906|96.442 +639871.687|222350.646|96.637 +639866.664|222355.385|96.411 +639861.693|222360.079|96.393 +639856.624|222364.865|96.448 +639851.604|222369.604|96.457 +639846.629|222374.298|96.323 +639841.554|222379.084|95.963 +639831.545|222388.523|95.390 +639826.467|222393.312|95.165 +639816.430|222402.764|93.812 +639811.324|222407.564|92.797 +639806.341|222412.267|92.681 +639801.342|222417.004|93.595 +639796.346|222421.740|94.574 +639786.376|222431.195|96.948 +639781.344|222435.944|96.799 +639776.370|222440.641|96.917 +639771.335|222445.393|96.716 +639766.302|222450.142|96.610 +639761.325|222454.845|96.689 +639756.283|222459.597|96.475 +639751.202|222464.373|95.396 +639741.205|222473.803|94.872 +639731.086|222483.322|93.050 +639720.884|222492.896|89.925 +639705.476|222503.454|88.993 +639741.031|222469.963|95.019 +639756.189|222455.665|96.454 +639761.188|222450.949|96.887 +639766.253|222446.158|96.661 +639771.289|222441.403|96.863 +639776.315|222436.654|96.890 +639781.341|222431.906|96.972 +639786.407|222427.117|96.802 +639796.380|222417.650|94.634 +639801.415|222412.868|93.510 +639806.423|222408.125|92.946 +639821.596|222393.821|94.839 +639836.736|222379.535|96.125 +639846.828|222370.004|96.393 +639851.851|222365.264|96.710 +639856.919|222360.475|96.872 +639866.947|222350.990|96.518 +639871.967|222346.250|96.728 +639876.985|222341.508|96.710 +639907.120|222312.960|92.958 +639922.189|222298.644|89.075 +639927.267|222293.828|88.142 +639932.297|222289.067|87.813 +639937.323|222284.330|88.584 +639947.363|222274.894|91.309 +639957.443|222265.408|93.495 +639967.431|222255.993|94.656 +639972.445|222251.268|95.436 +639977.453|222246.553|96.384 +639982.467|222241.826|96.914 +639992.443|222232.429|98.256 +639997.408|222227.744|98.752 +640002.422|222223.017|99.182 +640007.384|222218.335|99.667 +640012.401|222213.601|99.941 +640022.332|222204.238|100.849 +640027.358|222199.486|100.767 +640037.261|222190.135|101.011 +640042.244|222185.425|100.941 +640047.225|222180.719|100.919 +640052.211|222176.007|100.843 +640057.198|222171.295|100.721 +640062.142|222166.616|100.517 +640067.186|222161.849|100.270 +640072.136|222157.167|100.042 +640077.083|222152.489|99.898 +640076.809|222149.255|99.697 +640071.758|222154.022|99.853 +640066.756|222158.743|100.081 +640061.755|222163.465|100.325 +640056.707|222168.232|100.593 +640051.711|222172.947|100.743 +640046.670|222177.702|100.880 +640041.684|222182.408|100.935 +640036.648|222187.157|100.980 +640031.625|222191.887|100.666 +640016.586|222206.073|100.572 +640011.618|222210.748|100.066 +640006.601|222215.470|99.597 +640001.578|222220.200|99.295 +639996.610|222224.876|98.722 +639986.576|222234.319|97.606 +639981.562|222239.037|96.930 +639971.525|222248.483|95.698 +639966.553|222253.152|94.857 +639961.527|222257.886|94.531 +639956.513|222262.595|93.351 +639946.467|222272.038|91.565 +639936.418|222281.462|88.795 +639931.385|222286.199|88.209 +639926.399|222290.896|87.911 +639921.363|222295.657|88.639 +639906.325|222309.921|92.934 +639886.241|222328.919|95.933 +639881.270|222333.616|96.518 +639875.732|222338.847|96.738 +639871.233|222343.093|96.866 +639861.190|222352.566|96.988 +639841.183|222371.424|96.411 +639836.163|222376.161|96.530 +639811.038|222399.795|93.165 +639806.006|222404.541|93.053 +639800.986|222409.280|93.443 +639786.102|222423.380|96.701 +639781.079|222428.120|96.908 +639776.053|222432.863|96.905 +639771.072|222437.560|97.027 +639766.083|222442.263|96.783 +639761.066|222447.002|97.100 +639756.061|222451.715|96.582 +639751.056|222456.427|96.177 +639741.013|222465.891|95.710 +639730.948|222475.355|93.967 +639725.898|222480.098|92.833 +639715.803|222489.571|90.078 +639710.694|222494.368|89.032 +639705.754|222499.035|89.294 +639700.773|222503.741|89.727 +639718.439|222483.588|90.849 +639753.915|222450.172|96.585 +639758.950|222445.417|96.768 +639763.928|222440.711|96.765 +639768.960|222435.959|96.884 +639774.044|222431.162|97.256 +639779.012|222426.462|96.988 +639789.068|222416.940|95.915 +639804.055|222402.727|93.217 +639809.038|222398.021|93.437 +639814.122|222393.226|93.863 +639829.250|222378.977|96.335 +639834.325|222374.188|96.747 +639839.339|222369.449|96.503 +639849.379|222359.963|96.896 +639859.462|222350.438|96.856 +639869.499|222340.956|97.116 +639919.763|222293.313|89.191 +639924.792|222288.539|88.188 +639929.822|222283.788|88.212 +639934.848|222279.051|88.956 +639939.871|222274.330|90.233 +639954.876|222260.202|93.156 +639959.887|222255.493|94.467 +639964.904|222250.759|94.909 +639969.872|222246.078|95.540 +639974.923|222241.326|96.799 +639979.894|222236.635|97.088 +639984.908|222231.908|97.591 +639989.867|222227.235|98.420 +639999.847|222217.820|99.274 +640009.777|222208.450|100.103 +640029.720|222189.613|100.645 +640034.688|222184.926|101.008 +640039.669|222180.219|100.968 +640044.652|222175.507|100.907 +640049.593|222170.838|100.746 +640054.583|222166.119|100.578 +640059.578|222161.389|100.267 +640064.528|222156.707|99.987 +640069.524|222151.980|99.776 +640074.471|222147.304|99.673 +640079.448|222142.586|98.920 +640079.104|222139.361|99.057 +640068.985|222148.916|99.752 +640063.934|222153.684|99.950 +640058.883|222158.451|100.164 +640053.833|222163.218|100.444 +640048.785|222167.985|100.706 +640043.744|222172.743|100.892 +640038.706|222177.495|100.968 +640033.670|222182.246|101.026 +640028.598|222187.026|100.755 +640013.471|222201.278|100.148 +640008.442|222206.021|100.121 +640003.376|222210.791|99.673 +639998.310|222215.561|99.243 +639993.296|222220.276|98.573 +639978.139|222234.544|97.140 +639968.013|222244.060|95.387 +639962.944|222248.830|94.799 +639957.876|222253.600|94.156 +639942.712|222267.844|91.132 +639937.640|222272.608|90.066 +639927.484|222282.145|87.874 +639922.400|222286.945|88.145 +639917.316|222291.767|89.642 +639897.010|222310.982|93.016 +639891.932|222315.767|92.973 +639886.860|222320.559|93.342 +639841.256|222363.636|96.991 +639836.178|222368.419|96.783 +639831.103|222373.201|96.533 +639810.831|222392.269|93.842 +639805.786|222397.018|93.348 +639800.714|222401.806|93.571 +639785.675|222416.044|96.692 +639780.661|222420.780|97.082 +639775.629|222425.526|97.042 +639770.603|222430.269|97.113 +639765.565|222435.014|96.948 +639760.542|222439.757|97.170 +639755.488|222444.512|96.686 +639720.232|222477.677|92.120 +639704.964|222492.003|88.240 +639700.023|222496.685|89.380 +639695.104|222501.336|90.081 +639722.027|222472.359|93.092 +639732.256|222462.733|95.241 +639737.258|222458.015|95.573 +639742.348|222453.208|95.784 +639752.446|222443.683|96.631 +639757.484|222438.925|96.847 +639762.562|222434.128|96.930 +639767.595|222429.379|97.036 +639772.627|222424.627|97.173 +639777.696|222419.835|97.128 +639782.713|222415.090|96.914 +639787.708|222410.353|96.061 +639797.742|222400.837|94.043 +639802.799|222396.049|93.525 +639807.831|222391.297|93.653 +639833.118|222367.465|96.920 +639873.351|222329.435|96.012 +639878.353|222324.674|94.196 +639888.436|222315.127|93.123 +639918.632|222286.510|88.569 +639923.665|222281.742|87.780 +639933.717|222272.284|89.986 +639948.732|222258.151|92.803 +639963.734|222244.017|95.211 +639973.658|222234.681|97.228 +639978.684|222229.926|96.927 +639983.592|222225.312|98.091 +639998.481|222211.279|99.844 +640003.501|222206.536|99.969 +640008.427|222201.888|100.157 +640028.224|222183.194|100.788 +640033.149|222178.546|101.044 +640038.136|222173.834|100.898 +640043.070|222169.170|100.837 +640047.969|222164.537|100.590 +640052.964|222159.813|100.282 +640057.911|222155.134|100.081 +640062.861|222150.453|99.801 +640067.762|222145.820|99.673 +640072.718|222141.132|99.328 +640077.632|222136.481|98.957 +640078.695|222132.268|98.454 +640073.718|222136.968|99.021 +640068.704|222141.699|99.411 +640063.699|222146.420|99.676 +640058.701|222151.132|99.828 +640053.702|222155.848|99.987 +640048.700|222160.563|100.276 +640043.649|222165.327|100.627 +640038.657|222170.036|100.785 +640033.667|222174.742|100.944 +640028.641|222179.473|100.721 +640013.593|222193.652|100.828 +640008.622|222198.331|100.450 +639998.582|222207.780|99.813 +639988.548|222217.216|98.838 +639983.528|222221.941|98.484 +639978.511|222226.653|97.832 +639973.448|222231.414|97.207 +639963.362|222240.893|96.003 +639958.351|222245.596|94.851 +639953.282|222250.360|94.235 +639943.196|222259.821|91.922 +639938.121|222264.588|91.199 +639933.050|222269.343|89.950 +639922.942|222278.847|88.755 +639917.861|222283.629|88.557 +639887.451|222312.369|93.147 +639882.379|222317.151|93.446 +639847.032|222350.536|97.701 +639831.813|222364.868|97.173 +639826.781|222369.601|96.707 +639821.709|222374.377|96.643 +639816.613|222379.163|95.713 +639811.556|222383.906|94.519 +639801.379|222393.479|93.616 +639786.276|222407.756|96.162 +639781.326|222412.435|97.045 +639776.254|222417.217|97.146 +639771.185|222421.996|97.311 +639766.150|222426.739|97.116 +639761.121|222431.476|97.152 +639751.041|222440.967|96.774 +639745.945|222445.765|96.372 +639735.880|222455.232|95.515 +639730.827|222459.987|95.156 +639715.629|222474.248|91.827 +639695.503|222493.177|89.675 +639690.526|222497.874|90.206 +639685.667|222502.482|91.846 +639688.587|222496.548|90.312 +639693.568|222491.835|89.956 +639729.031|222458.417|94.891 +639739.093|222448.926|95.738 +639744.198|222444.113|96.351 +639754.293|222434.591|97.225 +639759.316|222429.842|97.125 +639764.342|222425.093|97.131 +639769.375|222420.341|97.292 +639774.443|222415.550|97.207 +639779.464|222410.804|97.106 +639784.517|222406.019|96.582 +639789.501|222401.288|95.308 +639799.553|222391.763|93.796 +639804.643|222386.963|94.357 +639809.678|222382.214|94.823 +639814.775|222377.416|95.759 +639819.862|222372.625|96.543 +639824.891|222367.879|96.927 +639829.969|222363.091|97.387 +639845.124|222348.777|97.792 +639875.332|222320.166|94.031 +639880.401|222315.371|93.671 +639885.421|222310.622|93.367 +639905.605|222291.533|92.537 +639915.661|222281.977|89.401 +639920.739|222277.180|89.386 +639935.863|222262.918|91.050 +639945.900|222253.475|93.290 +639950.963|222248.711|94.278 +639955.980|222243.981|94.915 +639966.005|222234.544|96.759 +639971.067|222229.768|97.317 +639976.048|222225.062|97.253 +639981.053|222220.350|98.304 +639986.057|222215.637|99.304 +640001.066|222201.467|100.124 +640006.089|222196.724|100.270 +640011.051|222192.043|100.862 +640016.022|222187.349|101.112 +640025.986|222177.930|101.029 +640030.970|222173.218|100.974 +640035.962|222168.500|100.767 +640040.952|222163.779|100.606 +640045.905|222159.091|100.197 +640050.898|222154.366|100.048 +640055.848|222149.688|99.871 +640060.804|222144.994|99.499 +640065.799|222140.272|99.450 +640070.771|222135.563|98.847 +640075.736|222130.863|98.469 +640080.649|222126.215|98.243 +640077.982|222125.432|98.374 +640072.977|222130.150|98.408 +640068.006|222134.847|98.899 +640062.989|222139.586|99.359 +640057.990|222144.299|99.423 +640052.979|222149.032|99.889 +640047.981|222153.751|100.084 +640043.028|222158.423|100.310 +640037.980|222163.190|100.648 +640032.985|222167.902|100.889 +640028.007|222172.590|100.587 +640022.957|222177.363|101.191 +640012.987|222186.764|101.252 +640007.970|222191.488|100.846 +639997.978|222200.894|100.097 +639987.981|222210.309|99.517 +639982.967|222215.025|98.871 +639977.950|222219.743|98.301 +639972.988|222224.406|97.332 +639967.958|222229.149|97.402 +639952.907|222243.289|94.759 +639937.844|222257.441|91.952 +639917.681|222276.405|89.435 +639912.597|222281.206|89.898 +639887.360|222305.060|93.147 +639882.288|222309.851|93.598 +639841.960|222347.951|98.033 +639836.888|222352.731|97.789 +639816.664|222371.768|96.299 +639806.566|222381.260|94.558 +639801.476|222386.048|94.068 +639796.496|222390.745|94.150 +639791.451|222395.521|95.159 +639781.445|222404.986|96.771 +639776.391|222409.762|97.369 +639771.359|222414.504|97.280 +639766.333|222419.244|97.347 +639761.294|222423.990|97.125 +639756.244|222428.742|96.655 +639751.260|222433.457|97.823 +639746.121|222438.273|96.451 +639725.941|222457.259|94.668 +639715.769|222466.808|92.979 +639710.691|222471.566|91.401 +639700.490|222481.128|88.682 +639695.589|222485.767|89.700 +639690.565|222490.506|90.239 +639685.631|222495.179|91.468 +639680.684|222499.861|92.406 +639696.442|222481.372|89.816 +639706.604|222471.798|91.074 +639721.887|222457.423|94.220 +639726.937|222452.659|94.519 +639742.153|222438.340|97.064 +639747.185|222433.591|97.122 +639752.220|222428.839|97.329 +639757.231|222424.100|96.957 +639762.270|222419.348|97.271 +639767.302|222414.599|97.420 +639772.368|222409.811|97.305 +639777.391|222405.068|97.250 +639782.399|222400.331|96.817 +639787.443|222395.552|95.966 +639792.378|222390.867|94.662 +639797.438|222386.082|94.147 +639802.467|222381.336|94.369 +639812.608|222371.793|96.158 +639817.695|222367.004|96.887 +639822.739|222362.262|98.030 +639832.816|222352.740|97.740 +639837.845|222348.003|98.341 +639852.978|222333.696|97.576 +639868.048|222319.419|94.863 +639873.110|222314.624|94.214 +639878.131|222309.882|93.976 +639883.196|222305.090|93.647 +639888.219|222300.347|93.595 +639913.436|222276.463|89.691 +639923.500|222266.935|88.264 +639933.589|222257.468|91.452 +639938.606|222252.750|92.629 +639948.637|222243.313|94.580 +639953.651|222238.598|95.543 +639958.662|222233.880|96.363 +639963.673|222229.158|97.146 +639968.644|222224.470|97.497 +639978.666|222215.022|98.707 +639988.691|222205.570|99.706 +640003.687|222191.421|100.734 +640008.655|222186.736|101.133 +640013.630|222182.039|101.246 +640018.607|222177.333|101.197 +640023.588|222172.630|101.176 +640028.589|222167.890|100.502 +640033.564|222163.193|100.703 +640038.556|222158.472|100.444 +640043.552|222153.748|100.133 +640048.499|222149.069|99.914 +640053.504|222144.335|99.493 +640058.448|222139.663|99.447 +640063.413|222134.963|98.902 +640068.421|222130.226|98.585 +640073.380|222125.535|98.280 +640072.654|222122.240|98.167 +640067.689|222126.928|98.478 +640062.684|222131.653|98.637 +640057.716|222136.346|99.121 +640047.752|222145.756|99.734 +640042.799|222150.428|99.972 +640037.800|222155.150|100.258 +640032.802|222159.868|100.529 +640027.821|222164.565|100.368 +640022.816|222169.295|100.950 +640017.821|222174.014|101.334 +640012.886|222178.671|101.389 +640007.860|222183.408|101.270 +640002.888|222188.089|100.916 +639997.914|222192.777|100.688 +639977.941|222211.583|98.935 +639973.018|222216.216|98.353 +639968.004|222220.932|97.643 +639962.978|222225.668|97.536 +639958.013|222230.338|96.692 +639948.027|222239.723|94.921 +639933.016|222253.823|91.806 +639917.986|222267.938|88.374 +639907.916|222277.490|91.260 +639897.857|222287.000|92.662 +639892.831|222291.743|92.611 +639887.805|222296.495|93.345 +639882.782|222301.237|93.601 +639877.759|222305.983|94.037 +639872.736|222310.726|94.293 +639837.540|222343.998|98.530 +639802.244|222377.218|94.814 +639797.209|222381.961|94.589 +639787.184|222391.437|95.552 +639772.164|222405.638|97.466 +639767.140|222410.377|97.521 +639762.102|222415.123|97.305 +639757.070|222419.869|97.222 +639752.028|222424.618|96.936 +639746.984|222429.373|96.613 +639736.968|222438.821|96.655 +639711.624|222462.654|92.592 +639686.417|222486.395|90.614 +639669.217|222498.888|94.177 +639714.465|222456.128|93.434 +639719.537|222451.349|94.159 +639739.763|222432.280|96.210 +639744.805|222427.522|96.503 +639749.901|222422.716|97.039 +639754.875|222418.016|96.893 +639759.965|222413.215|97.350 +639764.995|222408.466|97.518 +639770.018|222403.721|97.497 +639775.084|222398.932|97.338 +639780.088|222394.193|96.844 +639785.078|222389.462|95.790 +639790.129|222384.677|95.095 +639795.136|222379.937|94.516 +639800.172|222375.188|94.936 +639805.256|222370.394|95.534 +639810.300|222365.645|96.485 +639820.414|222356.114|97.646 +639825.446|222351.371|98.304 +639830.466|222346.631|98.515 +639835.532|222341.849|98.603 +639840.552|222337.113|98.957 +639870.696|222308.556|94.625 +639875.713|222303.807|94.293 +639880.779|222299.015|93.869 +639885.799|222294.270|93.720 +639895.843|222284.763|92.751 +639915.950|222265.695|88.810 +639921.031|222260.885|88.270 +639931.026|222251.497|91.056 +639936.037|222246.791|92.720 +639941.096|222242.033|94.043 +639946.061|222237.363|95.113 +639951.072|222232.645|96.049 +639956.086|222227.927|96.847 +639961.049|222223.254|97.637 +639966.069|222218.515|97.777 +639971.076|222213.796|98.515 +639976.042|222209.118|99.033 +639981.059|222204.390|99.389 +639986.024|222199.705|99.749 +639996.000|222190.305|100.779 +640000.923|222185.660|101.023 +640005.936|222180.930|101.325 +640010.911|222176.233|101.413 +640015.891|222171.530|101.361 +640020.878|222166.817|101.169 +640030.860|222157.378|100.529 +640035.807|222152.702|100.243 +640040.806|222147.975|99.865 +640045.750|222143.302|99.734 +640060.731|222129.129|98.307 +640070.624|222119.784|98.265 +640075.586|222115.093|97.990 +640080.539|222110.417|97.954 +640072.996|222113.867|97.917 +640067.988|222118.589|98.021 +640057.881|222128.114|98.234 +640052.861|222132.856|98.810 +640047.792|222137.642|99.386 +640037.742|222147.121|99.844 +640032.692|222151.885|100.170 +640027.647|222156.643|100.383 +640022.597|222161.407|100.749 +640017.552|222166.165|101.075 +640012.511|222170.923|101.416 +640007.479|222175.666|101.425 +640002.404|222180.445|101.270 +639997.430|222185.127|101.005 +639992.358|222189.903|100.801 +639987.347|222194.612|100.118 +639977.300|222204.070|99.581 +639972.235|222208.831|98.993 +639967.279|222213.476|97.689 +639962.201|222218.268|97.868 +639926.969|222251.339|90.989 +639916.910|222260.769|88.490 +639911.826|222265.573|89.121 +639901.756|222275.125|92.574 +639881.596|222294.145|93.781 +639876.570|222298.887|94.193 +639851.430|222322.631|97.265 +639836.388|222336.835|99.045 +639831.365|222341.569|98.978 +639826.339|222346.299|98.661 +639821.310|222351.033|98.414 +639816.274|222355.766|97.838 +639806.243|222365.197|96.619 +639801.187|222369.943|95.454 +639796.145|222374.685|95.006 +639786.148|222384.113|95.491 +639776.193|222393.525|97.259 +639771.176|222398.259|97.570 +639766.196|222402.953|97.600 +639761.160|222407.695|97.460 +639756.177|222412.389|97.460 +639751.178|222417.092|97.100 +639746.179|222421.798|96.698 +639741.181|222426.526|97.524 +639731.122|222435.972|95.616 +639711.054|222454.836|92.629 +639706.010|222459.575|91.718 +639695.863|222469.088|89.096 +639685.996|222478.421|90.806 +639666.337|222497.020|94.406 +639657.165|222502.284|95.439 +639662.149|222497.569|95.165 +639667.145|222492.835|94.354 +639672.110|222488.132|93.781 +639686.996|222474.002|90.264 +639696.939|222464.574|88.337 +639707.211|222454.933|91.794 +639732.582|222431.034|95.768 +639737.642|222426.267|96.463 +639742.756|222421.451|97.341 +639747.719|222416.757|96.920 +639752.797|222411.959|97.012 +639757.835|222407.204|97.420 +639762.867|222402.456|97.628 +639767.893|222397.707|97.667 +639772.956|222392.922|97.494 +639782.957|222383.448|96.094 +639788.001|222378.666|95.201 +639793.018|222373.920|95.043 +639798.056|222369.171|95.561 +639803.140|222364.377|96.131 +639808.188|222359.628|97.262 +639818.301|222350.097|98.496 +639823.324|222345.357|98.835 +639833.407|222335.835|99.027 +639868.569|222302.539|94.845 +639873.635|222297.748|94.567 +639878.652|222292.999|94.144 +639883.675|222288.253|94.055 +639888.692|222283.489|92.876 +639908.793|222264.445|89.953 +639913.829|222259.657|88.264 +639918.855|222254.920|88.980 +639928.895|222245.477|91.431 +639938.874|222236.108|94.403 +639943.882|222231.399|95.692 +639948.896|222226.677|96.491 +639978.782|222198.492|99.645 +639983.747|222193.814|100.188 +639988.758|222189.083|100.551 +639993.677|222184.441|100.929 +640003.617|222175.059|101.383 +640008.591|222170.359|101.489 +640013.575|222165.647|101.294 +640023.523|222156.229|100.218 +640028.455|222151.568|100.295 +640033.405|222146.886|99.938 +640038.392|222142.174|99.880 +640043.348|222137.483|99.453 +640048.313|222132.780|98.819 +640058.228|222123.395|98.124 +640063.178|222118.717|98.021 +640073.029|222109.408|97.972 +640077.997|222104.708|97.606 +640079.622|222099.487|97.067 +640064.519|222113.733|97.871 +640059.463|222118.503|98.070 +640054.409|222123.264|98.176 +640044.338|222132.768|98.844 +640029.171|222147.082|100.026 +640024.087|222151.870|99.938 +640013.980|222161.413|101.032 +640008.896|222166.208|101.163 +640003.858|222170.960|101.374 +639988.737|222185.197|100.712 +639983.668|222189.967|100.383 +639973.576|222199.465|99.776 +639963.459|222208.962|97.856 +639943.227|222227.991|95.896 +639938.164|222232.737|94.491 +639933.053|222237.531|93.193 +639928.033|222242.234|91.772 +639917.831|222251.817|90.120 +639912.802|222256.532|88.758 +639897.504|222271.013|92.458 +639887.348|222280.590|92.702 +639877.204|222290.179|94.281 +639872.083|222295.010|94.714 +639867.057|222299.750|94.973 +639861.994|222304.542|96.030 +639836.638|222328.496|99.249 +639831.612|222333.226|99.048 +639821.462|222342.782|98.554 +639816.393|222347.558|98.557 +639811.318|222352.337|98.420 +639806.234|222357.120|97.911 +639801.171|222361.862|96.482 +639791.037|222371.393|95.250 +639785.965|222376.176|95.525 +639780.963|222380.906|96.351 +639775.913|222385.679|97.161 +639770.896|222390.413|97.591 +639765.872|222395.150|97.725 +639760.843|222399.889|97.695 +639755.808|222404.632|97.603 +639750.760|222409.381|97.158 +639745.716|222414.130|96.896 +639715.434|222442.610|93.540 +639710.390|222447.344|92.623 +639705.339|222452.086|91.559 +639700.295|222456.826|90.748 +639695.159|222461.639|89.191 +639685.280|222470.975|90.730 +639665.572|222489.620|94.403 +639655.733|222498.916|95.671 +639650.792|222503.576|95.957 +639650.664|222500.144|96.195 +639655.675|222495.399|95.625 +639685.567|222467.064|90.532 +639726.230|222428.729|95.265 +639741.434|222414.392|96.677 +639746.533|222409.585|97.244 +639751.556|222404.836|97.186 +639756.600|222400.078|97.625 +639761.678|222395.284|97.798 +639766.705|222390.538|97.844 +639771.767|222385.750|97.618 +639776.809|222380.970|96.671 +639781.814|222376.228|96.137 +639786.870|222371.442|95.546 +639807.121|222352.356|98.164 +639812.147|222347.613|98.545 +639817.216|222342.828|98.768 +639822.288|222338.042|98.996 +639832.374|222328.517|99.335 +639867.639|222295.117|95.070 +639872.708|222290.326|94.750 +639877.725|222285.574|94.290 +639892.889|222271.218|92.547 +639897.912|222266.457|92.016 +639913.006|222252.146|89.233 +639918.029|222247.425|90.532 +639928.029|222238.004|91.967 +639933.043|222233.291|93.431 +639938.054|222228.579|94.763 +639948.030|222219.194|96.856 +639952.993|222214.522|97.722 +639958.007|222209.794|98.219 +639972.899|222195.758|99.984 +639977.867|222191.070|100.258 +639982.790|222186.425|100.499 +639987.804|222181.695|100.865 +640002.675|222167.659|101.401 +640012.548|222158.329|101.108 +640022.460|222148.944|99.804 +640027.443|222144.232|99.770 +640032.381|222139.568|99.780 +640037.285|222134.932|99.484 +640042.260|222130.217|98.627 +640047.219|222125.526|98.228 +640052.123|222120.890|98.097 +640061.977|222111.578|97.914 +640079.433|222091.940|96.460 +640074.453|222096.640|96.924 +640059.554|222110.697|97.743 +640049.608|222120.067|97.655 +640044.604|222124.791|97.932 +640039.590|222129.525|98.417 +640034.612|222134.231|99.277 +640024.560|222143.717|99.993 +640019.619|222148.371|100.005 +640009.573|222157.856|100.935 +639999.548|222167.311|101.428 +639979.562|222186.130|100.462 +639974.542|222190.854|100.182 +639969.476|222195.624|99.889 +639964.514|222200.284|99.103 +639944.361|222219.231|96.479 +639939.347|222223.940|95.534 +639934.336|222228.634|94.065 +639929.276|222233.374|92.443 +639924.204|222238.135|91.559 +639914.109|222247.605|89.191 +639909.074|222252.363|89.797 +639903.993|222257.179|91.315 +639898.915|222261.988|92.571 +639893.840|222266.771|92.507 +639888.814|222271.513|92.922 +639883.742|222276.305|93.519 +639878.670|222281.096|94.345 +639873.650|222285.836|94.686 +639868.532|222290.664|95.049 +639838.177|222319.352|99.380 +639833.118|222324.125|99.749 +639828.094|222328.855|99.429 +639822.980|222333.671|99.313 +639817.908|222338.448|99.115 +639812.839|222343.221|98.960 +639807.764|222347.997|98.576 +639802.683|222352.776|98.012 +639797.596|222357.559|97.323 +639792.494|222362.344|96.165 +639787.410|222367.129|95.756 +639782.396|222371.860|96.067 +639772.289|222381.409|97.335 +639767.241|222386.179|98.048 +639762.212|222390.916|97.984 +639757.131|222395.701|97.710 +639752.092|222400.444|97.442 +639747.005|222405.232|97.137 +639741.967|222409.975|96.945 +639726.770|222424.273|95.735 +639711.520|222438.593|92.845 +639706.436|222443.369|92.025 +639691.251|222457.646|90.236 +639671.354|222476.461|93.824 +639666.373|222481.161|94.174 +639656.458|222490.531|95.656 +639651.487|222495.225|96.162 +639646.555|222499.879|96.543 +639638.411|222504.223|97.070 +639643.398|222499.504|96.872 +639648.408|222494.758|96.274 +639663.295|222480.655|94.525 +639668.312|222475.903|94.058 +639683.168|222461.803|90.834 +639688.185|222457.052|90.279 +639693.187|222452.324|90.349 +639698.280|222447.527|91.340 +639708.369|222438.011|92.388 +639718.525|222428.443|94.159 +639738.757|222409.362|96.613 +639748.886|222399.801|97.375 +639753.927|222395.046|97.795 +639759.002|222390.251|97.954 +639764.025|222385.503|97.999 +639769.039|222380.760|97.710 +639779.092|222371.235|96.479 +639784.100|222366.495|96.000 +639789.174|222361.701|96.305 +639794.210|222356.949|96.814 +639804.396|222347.363|98.954 +639809.416|222342.620|99.130 +639814.482|222337.835|99.258 +639819.545|222333.050|99.408 +639824.562|222328.310|99.536 +639829.628|222323.525|99.685 +639850.132|222304.103|97.311 +639864.927|222290.079|95.275 +639869.944|222285.333|95.046 +639875.009|222280.535|94.519 +639880.075|222275.738|93.982 +639885.095|222270.977|93.193 +639890.164|222266.179|92.876 +639895.236|222261.379|92.425 +639905.291|222251.835|90.328 +639910.372|222247.010|89.185 +639915.399|222242.277|89.968 +639920.467|222237.501|90.821 +639925.481|222232.785|92.303 +639940.560|222218.603|96.162 +639945.574|222213.882|96.981 +639955.644|222204.384|98.323 +639960.607|222199.705|99.078 +639965.663|222194.941|99.828 +639970.628|222190.253|100.231 +639975.648|222185.511|100.353 +639995.671|222166.601|101.422 +640000.651|222161.895|101.392 +640010.637|222152.440|100.575 +640020.628|222142.982|99.816 +640025.611|222138.273|99.868 +640030.616|222133.527|99.316 +640035.600|222128.803|98.283 +640045.567|222119.360|97.445 +640050.501|222114.706|97.786 +640073.602|222089.319|96.494 +640043.835|222117.400|97.295 +640033.850|222126.834|98.316 +640028.830|222131.576|99.011 +640023.859|222136.279|99.780 +640018.912|222140.946|99.962 +640008.957|222150.346|100.795 +639998.969|222159.773|101.407 +639993.988|222164.470|101.407 +639989.005|222169.170|101.435 +639974.137|222183.173|100.490 +639969.159|222187.858|100.298 +639964.142|222192.582|99.865 +639954.212|222201.918|98.411 +639939.210|222216.021|96.201 +639934.241|222220.694|95.357 +639929.273|222225.348|93.918 +639924.207|222230.106|92.803 +639919.230|222234.785|91.952 +639914.207|222239.494|90.532 +639909.184|222244.197|88.709 +639894.075|222258.511|92.617 +639889.049|222263.262|93.071 +639884.019|222268.005|93.321 +639873.970|222277.506|94.674 +639868.901|222282.294|95.150 +639863.878|222287.034|95.488 +639828.686|222320.294|99.880 +639823.620|222325.070|99.786 +639818.597|222329.803|99.639 +639813.574|222334.537|99.435 +639808.505|222339.313|99.414 +639803.430|222344.092|99.085 +639798.450|222348.783|98.911 +639793.344|222353.575|97.481 +639778.189|222367.843|96.418 +639773.142|222372.616|97.289 +639768.137|222377.346|97.920 +639763.068|222382.129|98.103 +639758.042|222386.868|98.088 +639753.007|222391.611|97.926 +639747.962|222396.360|97.478 +639742.872|222401.154|97.152 +639732.771|222410.658|96.189 +639702.291|222439.312|91.843 +639692.132|222448.865|90.602 +639682.104|222458.326|90.986 +639662.155|222477.193|94.455 +639637.253|222500.714|97.079 +639631.989|222502.040|97.637 +639636.972|222497.328|97.362 +639646.964|222487.873|96.475 +639651.944|222483.161|96.180 +639656.897|222478.470|95.409 +639681.769|222454.894|90.922 +639701.953|222435.847|91.992 +639712.106|222426.282|93.571 +639717.171|222421.509|94.226 +639732.308|222407.247|96.244 +639742.455|222397.679|97.326 +639747.490|222392.928|97.622 +639752.528|222388.176|97.960 +639757.558|222383.427|98.173 +639762.581|222378.681|98.143 +639767.653|222373.893|98.207 +639772.636|222369.162|97.067 +639782.722|222359.631|96.814 +639797.883|222345.348|98.893 +639802.958|222340.563|99.383 +639807.978|222335.823|99.588 +639813.043|222331.041|99.648 +639818.060|222326.301|99.847 +639823.077|222321.565|99.929 +639828.143|222316.782|100.221 +639848.266|222297.729|97.743 +639853.277|222292.987|97.137 +639868.365|222278.697|95.296 +639883.519|222264.351|93.476 +639888.543|222259.599|93.187 +639893.566|222254.844|92.784 +639903.679|222245.224|88.983 +639908.699|222240.506|90.468 +639923.762|222226.330|93.248 +639928.773|222221.617|94.567 +639938.798|222212.181|96.384 +639943.812|222207.459|97.149 +639953.831|222198.020|98.673 +639963.847|222188.580|100.103 +639968.858|222183.850|100.447 +639973.871|222179.122|100.898 +639988.877|222164.949|101.380 +639993.851|222160.246|101.410 +639998.829|222155.543|101.410 +640003.861|222150.788|101.246 +640013.858|222141.318|100.081 +640018.842|222136.606|100.045 +640023.850|222131.863|99.411 +640038.794|222117.705|97.442 +640063.684|222094.165|96.241 +640078.528|222080.138|96.564 +640079.488|222075.316|95.726 +640074.443|222080.089|96.451 +640069.445|222084.802|96.287 +640059.551|222094.125|95.817 +640054.519|222098.868|95.424 +640039.437|222113.130|97.314 +640034.426|222117.866|97.728 +640024.407|222127.334|98.588 +640019.378|222132.094|99.661 +640014.328|222136.868|100.078 +640009.335|222141.580|100.267 +640004.330|222146.313|100.901 +639999.289|222151.077|101.279 +639994.302|222155.781|101.380 +639989.276|222160.523|101.352 +639984.250|222165.266|101.355 +639974.252|222174.693|101.054 +639969.281|222179.375|100.749 +639964.310|222184.057|100.346 +639959.293|222188.787|100.087 +639954.285|222193.490|99.094 +639939.295|222207.588|96.628 +639924.290|222221.697|94.037 +639914.246|222231.139|92.358 +639904.249|222240.518|89.355 +639899.211|222245.310|91.501 +639889.198|222254.786|93.193 +639884.172|222259.535|93.531 +639879.146|222264.280|93.748 +639869.102|222273.781|95.198 +639864.082|222278.527|95.695 +639859.062|222283.269|96.110 +639849.034|222292.758|97.588 +639839.049|222302.185|98.079 +639828.994|222311.710|100.307 +639824.025|222316.398|100.301 +639818.957|222321.174|100.093 +639813.936|222325.908|99.950 +639808.962|222330.599|99.780 +639803.942|222335.332|99.737 +639798.919|222340.069|99.508 +639793.929|222344.763|98.868 +639788.842|222349.548|98.179 +639783.859|222354.245|97.817 +639778.814|222358.991|97.055 +639768.783|222368.464|97.734 +639763.830|222373.152|98.460 +639758.798|222377.895|98.219 +639753.812|222382.595|97.963 +639748.770|222387.344|97.579 +639743.747|222392.083|97.695 +639728.675|222406.269|95.835 +639723.627|222411.027|95.491 +639693.382|222439.489|91.334 +639683.360|222448.935|90.910 +639668.504|222462.998|93.498 +639633.833|222495.783|97.469 +639628.907|222500.440|97.935 +639625.798|222499.547|98.240 +639630.721|222494.890|97.771 +639650.658|222476.025|95.988 +639670.470|222457.253|92.915 +639675.472|222452.516|92.141 +639680.467|222447.780|91.196 +639685.472|222443.055|91.318 +639690.514|222438.291|91.291 +639705.671|222424.005|92.906 +639720.890|222409.673|95.339 +639746.079|222385.920|97.655 +639751.117|222381.168|98.042 +639756.149|222376.420|98.222 +639761.182|222371.671|98.530 +639771.194|222362.195|97.558 +639776.202|222357.455|97.097 +639781.286|222352.663|97.643 +639786.279|222347.960|98.396 +639791.366|222343.169|99.133 +639796.395|222338.429|99.636 +639801.418|222333.690|99.871 +639806.438|222328.950|100.081 +639811.452|222324.213|100.106 +639816.472|222319.474|100.289 +639821.535|222314.694|100.368 +639826.552|222309.958|100.474 +639836.568|222300.479|99.472 +639856.651|222281.453|96.552 +639881.791|222257.654|93.784 +639886.814|222252.905|93.461 +639901.899|222238.613|91.154 +639911.945|222229.146|92.428 +639916.968|222224.409|92.906 +639921.988|222219.685|93.778 +639941.992|222200.854|97.445 +639956.918|222186.809|100.118 +639961.932|222182.079|100.459 +639966.949|222177.345|100.697 +639971.918|222172.663|101.093 +639976.889|222167.970|101.236 +639981.909|222163.230|101.349 +639986.886|222158.530|101.358 +639991.861|222153.833|101.401 +639996.841|222149.130|101.374 +640001.883|222144.363|100.980 +640006.887|222139.620|100.206 +640011.822|222134.960|100.200 +640016.882|222130.168|99.453 +640021.896|222125.422|98.722 +640026.858|222120.725|98.149 +640031.866|222115.989|97.725 +640051.836|222097.091|95.713 +640056.796|222092.403|95.546 +640061.752|222087.725|95.531 +640076.614|222073.692|95.689 +640076.611|222070.119|95.390 +640071.572|222074.883|95.988 +640061.514|222084.366|95.890 +640056.536|222089.047|95.268 +640046.420|222098.594|95.622 +640041.351|222103.385|96.101 +640031.195|222112.987|97.652 +640026.151|222117.748|97.747 +640021.079|222122.545|98.569 +640010.957|222132.116|99.959 +640005.912|222136.877|100.218 +640000.819|222141.687|100.627 +639995.820|222146.411|101.133 +639990.736|222151.209|101.364 +639985.661|222155.994|101.328 +639980.632|222160.737|101.371 +639975.609|222165.470|101.221 +639970.540|222170.249|101.084 +639965.520|222174.980|100.804 +639960.454|222179.750|100.502 +639940.313|222198.687|97.362 +639920.150|222217.637|93.845 +639915.082|222222.401|92.970 +639910.007|222227.177|92.565 +639904.977|222231.920|92.501 +639889.841|222246.206|93.312 +639884.766|222250.997|93.629 +639879.694|222255.786|93.869 +639874.671|222260.541|94.674 +639869.599|222265.329|95.198 +639864.576|222270.072|95.579 +639859.556|222274.814|95.936 +639854.493|222279.603|96.762 +639849.440|222284.400|98.618 +639844.426|222289.137|98.920 +639834.364|222298.656|100.557 +639819.307|222312.847|100.395 +639814.293|222317.581|100.447 +639809.224|222322.357|100.346 +639804.204|222327.091|100.151 +639799.178|222331.821|99.911 +639794.155|222336.558|99.722 +639789.174|222341.249|99.356 +639784.136|222345.985|98.810 +639774.105|222355.425|97.652 +639759.106|222369.586|98.454 +639754.071|222374.329|98.210 +639749.090|222379.023|98.176 +639744.098|222383.726|97.780 +639719.034|222407.323|95.329 +639698.941|222426.209|91.590 +639693.952|222430.918|91.660 +639688.941|222435.639|91.398 +639684.000|222440.303|91.605 +639669.168|222454.318|92.882 +639659.308|222463.647|94.479 +639654.462|222468.238|95.436 +639649.487|222472.938|95.878 +639644.562|222477.592|96.302 +639639.648|222482.240|96.954 +639629.828|222491.515|97.615 +639614.917|222502.208|98.874 +639624.817|222492.838|98.024 +639629.849|222488.080|97.768 +639639.786|222478.671|96.823 +639649.777|222469.216|95.933 +639684.686|222436.148|91.480 +639689.733|222431.381|91.574 +639694.695|222426.681|90.949 +639740.379|222383.631|97.707 +639745.408|222378.882|97.792 +639750.450|222374.128|98.326 +639755.476|222369.382|98.469 +639760.551|222364.587|98.685 +639775.641|222350.320|98.134 +639780.631|222345.616|98.819 +639785.706|222340.828|99.252 +639790.735|222336.085|99.755 +639795.749|222331.346|99.639 +639800.821|222326.560|100.115 +639805.841|222321.821|100.432 +639810.861|222317.084|100.636 +639815.918|222312.302|100.590 +639825.955|222302.829|101.151 +639836.004|222293.300|99.292 +639841.015|222288.561|99.030 +639851.080|222279.030|97.951 +639861.098|222269.523|95.902 +639881.221|222250.473|93.897 +639886.244|222245.721|93.644 +639896.291|222236.217|93.077 +639901.320|222231.456|92.556 +639911.320|222222.011|92.787 +639916.340|222217.280|93.446 +639936.302|222198.474|96.680 +639951.216|222184.441|100.045 +639956.181|222179.756|100.478 +639961.195|222175.023|100.721 +639971.089|222165.684|101.145 +639981.031|222156.290|101.352 +639986.012|222151.583|101.291 +639995.933|222142.199|100.880 +640000.926|222137.474|100.471 +640010.832|222128.092|99.374 +640020.789|222118.665|98.454 +640040.672|222099.831|95.854 +640045.634|222095.134|95.549 +640050.602|222090.434|95.183 +640055.500|222085.807|95.314 +640060.432|222081.153|95.762 +640070.289|222071.842|95.915 +640075.233|222067.160|95.262 +640080.165|222062.490|94.863 +640079.275|222059.921|94.796 +640059.149|222078.913|95.528 +640054.153|222083.622|95.336 +640044.088|222093.117|95.506 +640039.035|222097.884|95.598 +640023.856|222112.240|97.841 +640018.793|222117.022|98.411 +640013.730|222121.811|99.085 +640008.677|222126.581|99.484 +640003.623|222131.357|100.026 +639998.527|222136.173|100.511 +639993.476|222140.946|101.154 +639983.363|222150.489|101.398 +639978.288|222155.275|101.340 +639973.262|222160.008|101.230 +639968.190|222164.790|101.169 +639963.121|222169.567|100.938 +639958.055|222174.340|100.673 +639952.987|222179.116|100.429 +639947.933|222183.862|99.395 +639917.514|222212.455|94.129 +639912.491|222217.173|93.248 +639907.370|222221.995|92.809 +639902.292|222226.784|92.885 +639887.015|222241.207|93.714 +639881.941|222245.998|93.967 +639876.869|222250.790|94.333 +639861.607|222265.207|95.896 +639851.479|222274.787|97.439 +639840.750|222284.940|99.286 +639831.200|222293.965|100.584 +639826.147|222298.744|101.261 +639821.081|222303.520|101.115 +639816.009|222308.294|100.682 +639810.946|222313.073|100.798 +639805.878|222317.849|100.715 +639800.809|222322.625|100.468 +639785.633|222336.917|99.563 +639780.555|222341.700|99.170 +639775.471|222346.485|98.673 +639760.301|222360.789|98.560 +639755.278|222365.526|98.542 +639750.242|222370.272|98.274 +639745.155|222375.060|97.954 +639740.135|222379.800|98.106 +639735.078|222384.555|97.405 +639709.884|222408.259|94.497 +639704.772|222413.051|92.973 +639689.706|222427.230|91.349 +639674.743|222441.351|91.977 +639650.106|222464.653|95.848 +639640.243|222473.965|96.631 +639630.395|222483.271|97.585 +639625.512|222487.882|98.003 +639620.595|222492.530|98.585 +639615.679|222497.179|99.194 +639610.763|222501.812|99.149 +639609.263|222499.870|99.466 +639619.151|222490.500|98.457 +639624.165|222485.749|97.948 +639639.075|222471.624|96.552 +639659.067|222452.678|94.141 +639704.336|222409.853|93.184 +639724.645|222390.703|96.201 +639744.866|222371.616|97.957 +639749.901|222366.858|98.323 +639754.982|222362.060|98.640 +639760.051|222357.269|98.652 +639765.071|222352.520|98.673 +639770.140|222347.729|98.728 +639775.218|222342.934|99.106 +639780.244|222338.188|99.478 +639785.313|222333.397|99.679 +639800.477|222319.077|100.584 +639805.545|222314.289|100.938 +639810.605|222309.504|100.941 +639815.668|222304.718|101.078 +639820.688|222299.982|101.566 +639835.794|222285.656|99.161 +639840.850|222280.868|98.993 +639845.916|222276.085|99.295 +639850.915|222271.321|97.329 +639855.926|222266.563|96.283 +639871.077|222252.213|94.936 +639876.098|222247.458|94.461 +639881.166|222242.661|94.214 +639886.189|222237.909|94.119 +639891.261|222233.108|93.793 +639896.288|222228.338|92.894 +639901.314|222223.586|92.906 +639906.340|222218.832|92.873 +639911.360|222214.095|93.498 +639916.374|222209.377|94.686 +639936.430|222190.461|97.570 +639946.394|222181.073|99.338 +639956.361|222171.676|100.700 +639961.375|222166.939|100.983 +639966.343|222162.248|101.191 +639971.314|222157.545|101.240 +639976.334|222152.803|101.361 +639981.306|222148.106|101.480 +639991.273|222138.675|101.044 +639996.223|222133.984|100.398 +640001.209|222129.263|100.173 +640006.168|222124.566|99.502 +640021.052|222110.460|97.622 +640035.969|222096.317|95.537 +640040.928|222091.626|95.296 +640050.779|222082.311|95.323 +640055.683|222077.675|95.357 +640060.575|222073.055|95.628 +640080.223|222054.462|94.604 +640079.357|222051.856|93.958 +640074.401|222056.537|94.647 +640059.523|222070.580|95.500 +640054.583|222075.231|95.150 +640049.630|222079.900|95.089 +640039.718|222089.249|95.183 +640034.758|222093.930|95.403 +640014.760|222112.840|98.313 +640004.793|222122.256|99.405 +639999.792|222126.983|99.892 +639994.793|222131.701|100.304 +639989.846|222136.374|100.755 +639979.864|222145.801|101.529 +639974.838|222150.535|101.456 +639969.866|222155.220|101.227 +639964.895|222159.908|101.115 +639959.921|222164.592|100.977 +639954.901|222169.323|100.801 +639949.932|222174.002|100.474 +639944.973|222178.662|99.645 +639909.930|222211.599|93.653 +639904.907|222216.326|93.171 +639899.881|222221.060|92.998 +639894.855|222225.802|93.092 +639889.780|222230.603|93.815 +639884.754|222235.355|94.567 +639879.731|222240.091|94.610 +639874.708|222244.834|94.894 +639869.636|222249.616|94.994 +639864.616|222254.359|95.604 +639859.550|222259.145|96.043 +639849.470|222268.673|97.393 +639844.423|222273.467|99.341 +639829.298|222287.753|100.615 +639824.300|222292.487|101.889 +639819.240|222297.257|101.843 +639814.171|222302.030|101.413 +639804.088|222311.531|101.069 +639799.023|222316.304|100.865 +639793.951|222321.077|100.429 +639783.859|222330.584|100.014 +639778.833|222335.317|99.673 +639773.809|222340.054|99.450 +639768.732|222344.833|99.127 +639763.657|222349.612|98.883 +639758.637|222354.349|98.856 +639753.562|222359.131|98.685 +639748.484|222363.914|98.435 +639743.445|222368.656|98.091 +639733.329|222378.187|97.551 +639723.176|222387.743|96.305 +639702.852|222406.854|93.114 +639692.687|222416.409|91.346 +639687.633|222421.189|92.044 +639682.644|222425.895|92.150 +639677.560|222430.695|92.275 +639667.538|222440.153|92.653 +639657.571|222449.578|94.019 +639647.613|222458.996|95.451 +639637.679|222468.384|96.543 +639632.702|222473.087|96.881 +639627.752|222477.769|97.661 +639622.781|222482.466|98.121 +639617.837|222487.132|98.323 +639612.902|222491.805|99.295 +639607.913|222496.514|99.508 +639603.014|222501.138|99.685 +639608.199|222492.948|99.274 +639623.080|222478.857|98.128 +639632.940|222469.509|96.722 +639657.793|222445.951|93.717 +639662.752|222441.251|93.068 +639672.780|222431.765|92.815 +639677.800|222427.010|92.416 +639682.778|222422.298|92.102 +639692.751|222412.846|90.867 +639697.835|222408.055|91.821 +639718.147|222388.919|95.723 +639723.158|222384.192|96.433 +639738.294|222369.906|98.015 +639743.372|222365.108|98.204 +639748.401|222360.357|98.429 +639753.437|222355.605|98.835 +639758.466|222350.853|99.182 +639763.529|222346.065|99.045 +639768.549|222341.319|99.075 +639773.578|222336.570|99.520 +639778.653|222331.779|99.972 +639783.676|222327.033|100.191 +639788.693|222322.290|100.279 +639793.765|222317.505|100.724 +639798.785|222312.762|101.084 +639803.845|222307.977|101.035 +639808.862|222303.237|101.328 +639813.882|222298.497|101.712 +639818.944|222293.715|101.989 +639824.001|222288.933|101.950 +639844.115|222269.864|99.271 +639849.162|222265.058|97.384 +639854.176|222260.303|96.552 +639859.190|222255.551|96.104 +639864.256|222250.753|95.561 +639874.342|222241.204|94.964 +639889.506|222226.845|93.778 +639894.578|222222.038|93.242 +639899.604|222217.286|93.162 +639904.627|222212.541|93.434 +639909.693|222207.758|93.927 +639929.809|222188.781|96.317 +639939.810|222179.372|99.103 +639944.812|222174.663|100.194 +639949.826|222169.929|100.612 +639954.840|222165.193|100.932 +639959.863|222160.444|100.932 +639964.880|222155.704|101.166 +639969.900|222150.962|101.374 +639974.868|222146.268|101.691 +639979.897|222141.510|101.517 +639984.936|222136.737|101.020 +639989.934|222132.000|100.438 +639994.973|222127.230|100.167 +639999.962|222122.509|100.005 +640004.970|222117.763|99.362 +640035.033|222089.264|95.314 +640040.041|222084.521|95.067 +640049.956|222075.146|94.955 +640054.903|222070.470|95.101 +640069.756|222056.419|94.662 +640074.751|222051.685|94.055 +640079.695|222047.000|93.555 +640080.094|222043.285|93.467 +640075.120|222047.979|93.583 +640070.115|222052.712|94.299 +640065.135|222057.415|94.634 +640055.195|222066.803|95.052 +640045.283|222076.151|94.982 +640035.365|222085.512|95.177 +640020.399|222099.661|96.860 +640015.361|222104.434|98.048 +640010.380|222109.152|99.063 +640005.382|222113.870|99.301 +640000.429|222118.549|99.700 +639995.442|222123.258|99.783 +639990.443|222127.983|100.243 +639985.494|222132.658|100.691 +639980.498|222137.380|101.185 +639970.528|222146.795|101.651 +639965.563|222151.474|101.249 +639960.591|222156.158|101.002 +639955.617|222160.849|100.929 +639950.643|222165.540|100.795 +639940.673|222174.922|99.368 +639930.754|222184.237|97.146 +639910.778|222203.037|94.692 +639905.806|222207.712|93.839 +639900.783|222212.443|93.443 +639895.757|222217.189|93.543 +639890.780|222221.883|93.367 +639885.748|222226.653|94.720 +639870.724|222240.835|95.323 +639855.664|222255.063|96.335 +639845.688|222264.518|98.807 +639830.643|222278.719|99.274 +639825.610|222283.510|101.745 +639820.599|222288.241|101.977 +639815.585|222292.971|101.953 +639810.572|222297.702|101.874 +639805.551|222302.429|101.535 +639800.534|222307.160|101.361 +639790.491|222316.624|100.825 +639785.422|222321.403|100.554 +639780.396|222326.140|100.231 +639775.367|222330.876|99.728 +639770.338|222335.613|99.368 +639765.315|222340.350|99.277 +639760.292|222345.086|99.231 +639755.268|222349.826|99.133 +639750.187|222354.611|98.810 +639745.201|222359.311|98.475 +639740.169|222364.054|98.234 +639735.082|222368.845|97.868 +639730.089|222373.548|97.475 +639719.945|222383.095|96.515 +639714.922|222387.816|95.570 +639704.769|222397.353|93.674 +639694.570|222406.924|91.111 +639684.582|222416.361|92.068 +639664.508|222435.307|93.150 +639654.547|222444.710|93.778 +639649.512|222449.459|94.034 +639634.674|222463.498|96.701 +639604.895|222491.628|99.548 +639594.980|222500.989|100.273 +639592.563|222499.504|100.252 +639607.483|222485.389|99.600 +639632.288|222461.883|96.661 +639652.145|222443.058|93.662 +639657.184|222438.294|93.531 +639662.167|222433.579|93.336 +639667.172|222428.848|93.528 +639672.213|222424.084|93.510 +639677.172|222419.384|92.854 +639682.183|222414.636|92.263 +639697.204|222400.420|91.239 +639712.481|222386.045|95.137 +639737.779|222362.185|98.076 +639742.814|222357.431|98.487 +639747.844|222352.682|98.682 +639752.879|222347.927|99.234 +639757.899|222343.184|99.240 +639762.916|222338.438|99.222 +639767.985|222333.650|99.347 +639773.020|222328.901|99.999 +639778.040|222324.158|100.145 +639783.066|222319.416|100.648 +639788.135|222314.630|100.980 +639793.161|222309.888|101.465 +639798.221|222305.105|101.547 +639803.238|222300.369|101.791 +639808.252|222295.629|101.983 +639813.312|222290.847|102.053 +639818.326|222286.110|102.066 +639823.334|222281.374|101.941 +639843.447|222262.308|99.228 +639848.449|222257.544|97.152 +639853.463|222252.792|96.539 +639858.529|222247.998|96.085 +639863.546|222243.252|96.012 +639868.566|222238.497|95.540 +639888.750|222219.383|93.671 +639893.773|222214.634|93.687 +639898.796|222209.886|93.659 +639903.865|222205.100|94.022 +639908.885|222200.367|94.638 +639928.944|222181.448|97.146 +639938.947|222172.029|99.499 +639943.949|222167.314|100.423 +639949.009|222162.535|100.764 +639953.980|222157.838|100.904 +639958.997|222153.095|101.044 +639964.008|222148.365|101.471 +639968.976|222143.671|101.718 +639979.044|222134.137|100.947 +639984.082|222129.363|100.514 +639989.115|222124.599|100.304 +639994.104|222119.878|100.048 +640004.099|222110.411|99.243 +640019.195|222096.091|96.924 +640034.210|222081.860|95.058 +640044.168|222072.439|94.863 +640049.118|222067.760|94.961 +640054.129|222063.021|94.814 +640059.094|222058.321|94.634 +640064.068|222053.611|94.327 +640069.064|222048.875|93.641 +640074.035|222044.169|93.476 +640079.019|222039.453|93.150 +640077.107|222037.362|92.946 +640072.066|222042.126|93.403 +640067.049|222046.863|93.470 +640062.056|222051.588|94.046 +640056.972|222056.394|94.549 +640046.950|222065.855|94.735 +640036.956|222075.283|94.436 +640026.852|222084.844|95.735 +640021.884|222089.544|96.213 +640001.712|222108.631|99.033 +639991.657|222118.144|100.130 +639986.621|222122.899|100.231 +639981.632|222127.611|100.474 +639976.633|222132.338|101.026 +639966.614|222141.808|101.630 +639961.591|222146.545|101.499 +639956.574|222151.276|101.230 +639951.606|222155.957|100.904 +639946.586|222160.694|100.721 +639936.610|222170.088|99.615 +639926.652|222179.442|97.067 +639906.626|222198.300|94.735 +639901.606|222203.031|94.165 +639896.629|222207.722|93.833 +639891.606|222212.464|93.796 +639866.576|222236.117|95.564 +639856.584|222245.563|96.226 +639851.564|222250.305|96.631 +639841.591|222259.766|99.246 +639821.566|222278.719|102.123 +639816.597|222283.407|102.017 +639811.586|222288.137|102.136 +639806.573|222292.871|102.032 +639801.604|222297.559|101.913 +639796.584|222302.289|101.715 +639791.570|222307.023|101.599 +639786.593|222311.713|101.276 +639781.564|222316.447|100.691 +639776.541|222321.187|100.350 +639771.563|222325.878|100.151 +639766.577|222330.575|99.508 +639761.553|222335.314|99.405 +639756.576|222340.008|99.240 +639751.556|222344.748|99.328 +639746.515|222349.494|98.691 +639741.534|222354.194|98.512 +639736.499|222358.939|98.185 +639726.447|222368.403|96.963 +639711.371|222382.598|94.951 +639706.369|222387.313|94.580 +639701.331|222392.050|93.415 +639696.280|222396.792|92.147 +639681.272|222410.966|92.477 +639676.304|222415.666|92.992 +639656.403|222434.460|93.674 +639651.402|222439.181|93.610 +639646.433|222443.881|94.132 +639631.684|222457.847|96.683 +639621.815|222467.186|97.990 +639607.050|222481.149|99.459 +639602.064|222485.861|99.697 +639597.171|222490.482|99.965 +639582.093|222501.007|100.173 +639587.137|222496.249|100.624 +639592.103|222491.555|100.709 +639597.098|222486.818|99.935 +639602.036|222482.149|99.652 +639611.973|222472.740|98.670 +639616.947|222468.030|98.249 +639646.729|222439.809|94.052 +639651.761|222435.048|93.848 +639681.854|222406.583|92.586 +639691.934|222397.058|92.574 +639701.992|222387.566|93.287 +639707.061|222382.787|94.129 +639717.208|222373.234|96.143 +639722.301|222368.428|96.597 +639727.364|222363.661|97.503 +639732.399|222358.906|97.780 +639742.482|222349.396|98.813 +639747.517|222344.644|99.246 +639752.547|222339.898|99.530 +639757.612|222335.110|99.551 +639762.629|222330.367|99.536 +639767.665|222325.618|100.081 +639782.789|222311.345|101.368 +639787.812|222306.605|101.691 +639792.829|222301.868|101.852 +639797.889|222297.086|101.901 +639802.903|222292.350|102.056 +639807.920|222287.613|102.251 +639812.976|222282.831|102.145 +639817.942|222278.137|102.114 +639827.982|222268.596|99.328 +639843.063|222254.323|98.201 +639848.025|222249.610|96.960 +639853.091|222244.816|96.530 +639858.108|222240.067|96.110 +639863.128|222235.318|95.869 +639888.241|222211.547|93.933 +639893.267|222206.798|93.894 +639898.287|222202.055|94.211 +639903.307|222197.319|94.705 +639908.324|222192.597|95.640 +639923.332|222178.433|96.832 +639938.295|222164.345|100.023 +639943.303|222159.621|100.648 +639948.271|222154.930|100.904 +639953.236|222150.242|101.264 +639958.253|222145.506|101.489 +639963.231|222140.800|101.413 +639973.192|222131.378|101.081 +639978.184|222126.648|100.575 +639983.223|222121.881|100.221 +639993.159|222112.474|99.563 +639998.143|222107.762|99.575 +640013.130|222093.559|97.622 +640018.110|222088.831|96.655 +640023.133|222084.073|95.960 +640028.114|222079.349|95.201 +640033.137|222074.591|94.647 +640048.008|222060.530|94.458 +640057.945|222051.127|94.007 +640062.931|222046.403|93.482 +640067.854|222041.752|93.385 +640072.825|222037.045|93.208 +640077.802|222032.336|93.007 +640080.037|222026.390|92.885 +640075.013|222031.126|92.922 +640069.993|222035.863|92.992 +640064.918|222040.654|93.229 +640059.895|222045.394|93.385 +640054.814|222050.198|93.836 +640039.669|222064.493|94.363 +640029.555|222074.036|94.577 +640024.468|222078.852|95.494 +640019.403|222083.643|96.009 +640014.315|222088.456|97.021 +639993.967|222107.701|99.743 +639988.880|222112.505|99.929 +639983.838|222117.263|100.200 +639978.757|222122.057|100.289 +639973.722|222126.815|100.560 +639968.629|222131.628|101.093 +639958.522|222141.171|101.486 +639953.499|222145.905|101.343 +639948.390|222150.718|100.938 +639943.370|222155.448|100.688 +639938.307|222160.218|100.368 +639933.248|222164.979|99.743 +639928.185|222169.747|99.197 +639923.195|222174.413|97.039 +639918.126|222179.192|96.850 +639902.975|222193.451|94.994 +639897.906|222198.227|94.558 +639892.883|222202.958|94.150 +639887.808|222207.743|94.116 +639882.733|222212.531|94.257 +639877.707|222217.286|94.948 +639862.540|222231.606|95.659 +639857.471|222236.397|96.165 +639852.405|222241.183|96.512 +639847.385|222245.925|96.945 +639837.269|222255.511|99.353 +639817.192|222274.500|102.120 +639812.184|222279.231|102.404 +639807.121|222284.004|102.322 +639802.153|222288.689|102.285 +639797.087|222293.465|102.041 +639792.070|222298.196|101.907 +639787.102|222302.880|101.892 +639782.036|222307.657|101.730 +639777.056|222312.347|101.157 +639772.033|222317.081|100.938 +639767.000|222321.818|100.389 +639762.020|222326.509|100.100 +639756.985|222331.248|99.612 +639752.007|222335.942|99.408 +639747.027|222340.636|99.264 +639741.994|222345.379|98.926 +639732.006|222354.782|97.948 +639727.001|222359.491|97.280 +639716.982|222368.918|95.735 +639692.028|222392.419|92.958 +639687.027|222397.134|92.733 +639677.127|222406.491|93.446 +639622.961|222457.679|97.180 +639608.321|222471.527|99.078 +639588.762|222490.019|100.785 +639583.830|222494.667|100.517 +639574.055|222503.893|100.602 +639572.013|222502.479|100.606 +639576.978|222497.785|100.648 +639581.992|222493.045|100.755 +639586.955|222488.352|100.828 +639596.897|222478.933|99.975 +639601.832|222474.261|99.706 +639611.747|222464.861|98.490 +639636.543|222441.342|94.714 +639646.503|222431.909|94.223 +639651.569|222427.126|94.613 +639676.615|222403.419|93.656 +639681.583|222398.713|93.211 +639686.612|222393.952|93.092 +639696.649|222384.448|92.367 +639701.739|222379.657|93.690 +639706.811|222374.877|94.659 +639737.157|222346.244|98.609 +639742.189|222341.493|98.990 +639747.222|222336.744|99.380 +639752.239|222331.998|99.429 +639757.265|222327.249|99.706 +639762.337|222322.458|100.130 +639767.369|222317.709|100.767 +639772.395|222312.966|101.215 +639777.461|222308.181|101.532 +639782.481|222303.438|101.895 +639787.492|222298.699|102.008 +639792.552|222293.916|102.020 +639797.566|222289.177|102.270 +639802.577|222284.440|102.422 +639807.639|222279.658|102.879 +639812.650|222274.921|102.968 +639837.708|222251.156|99.176 +639842.710|222246.392|97.417 +639847.721|222241.643|96.930 +639852.783|222236.845|96.488 +639877.875|222213.089|94.991 +639882.898|222208.322|94.260 +639887.872|222203.622|94.351 +639897.958|222194.091|94.921 +639902.926|222189.400|95.390 +639907.934|222184.682|96.491 +639912.951|222179.942|96.756 +639917.971|222175.199|96.988 +639932.888|222161.142|99.856 +639942.861|222151.727|100.770 +639947.875|222146.990|101.017 +639952.840|222142.302|101.346 +639962.789|222132.890|101.218 +639967.775|222128.169|100.862 +639972.762|222123.444|100.474 +639977.742|222118.732|100.395 +639982.680|222114.059|100.188 +639992.656|222104.614|99.709 +640017.592|222080.970|96.043 +640037.474|222062.131|94.077 +640042.430|222057.443|94.049 +640047.392|222052.746|93.885 +640052.358|222048.046|93.714 +640057.332|222043.337|93.418 +640062.258|222038.673|93.156 +640067.229|222033.973|93.040 +640072.142|222029.325|93.077 +640077.921|222020.458|93.132 +640067.890|222029.922|93.031 +640062.834|222034.695|92.937 +640057.801|222039.450|93.278 +640052.781|222044.190|93.431 +640047.700|222048.997|93.943 +640042.644|222053.767|93.912 +640037.642|222058.488|93.836 +640032.573|222063.280|94.223 +640027.510|222068.062|94.455 +640022.426|222072.878|95.305 +639981.790|222111.319|100.130 +639976.752|222116.077|100.368 +639971.625|222120.920|100.499 +639966.593|222125.672|100.606 +639961.506|222130.482|101.118 +639956.434|222135.267|101.060 +639951.408|222140.013|101.087 +639946.336|222144.802|101.130 +639941.273|222149.572|100.721 +639936.210|222154.345|100.423 +639931.199|222159.066|99.825 +639895.715|222192.472|95.098 +639890.646|222197.246|94.586 +639885.574|222202.031|94.427 +639880.502|222206.819|94.461 +639875.427|222211.623|95.223 +639860.169|222226.034|95.762 +639855.149|222230.786|96.552 +639850.034|222235.617|96.668 +639834.852|222249.994|99.158 +639819.691|222264.347|101.660 +639814.638|222269.130|102.404 +639804.564|222278.637|102.334 +639799.507|222283.416|102.486 +639794.490|222288.146|102.352 +639789.427|222292.923|102.172 +639784.362|222297.702|101.953 +639779.345|222302.432|101.892 +639774.319|222307.169|101.392 +639769.247|222311.951|101.145 +639764.224|222316.688|100.865 +639759.191|222321.427|100.285 +639754.110|222326.213|99.850 +639749.139|222330.907|99.859 +639744.104|222335.653|99.405 +639739.023|222340.441|98.999 +639734.036|222345.141|98.691 +639728.976|222349.899|97.710 +639708.853|222368.845|95.012 +639678.831|222397.158|93.918 +639649.067|222425.267|94.961 +639639.155|222434.618|94.753 +639634.162|222439.334|94.878 +639624.421|222448.560|96.716 +639619.480|222453.226|96.930 +639585.242|222485.608|100.734 +639580.395|222490.186|100.959 +639565.637|222504.113|100.810 +639561.879|222504.207|100.950 +639571.821|222494.804|101.194 +639576.756|222490.132|100.837 +639611.445|222457.265|98.192 +639636.277|222433.713|94.961 +639646.327|222424.209|95.140 +639666.413|222405.214|95.595 +639671.393|222400.484|94.528 +639691.422|222381.491|92.105 +639696.521|222376.694|93.510 +639706.638|222367.145|94.793 +639711.694|222362.374|95.433 +639726.898|222348.027|97.573 +639736.987|222338.505|98.862 +639742.068|222333.708|99.322 +639747.152|222328.907|99.868 +639752.120|222324.207|99.883 +639757.201|222319.413|100.410 +639762.282|222314.618|101.166 +639767.296|222309.872|101.169 +639782.448|222295.553|102.044 +639787.510|222290.768|102.315 +639792.573|222285.985|102.474 +639797.584|222281.243|102.553 +639802.641|222276.460|102.474 +639817.762|222262.150|102.148 +639822.791|222257.343|99.466 +639827.802|222252.597|99.176 +639832.862|222247.812|99.359 +639842.923|222238.253|97.177 +639847.986|222233.456|96.771 +639858.066|222223.900|95.631 +639873.174|222209.602|95.329 +639878.243|222204.792|94.628 +639883.312|222199.995|94.558 +639888.287|222195.292|94.717 +639893.352|222190.510|95.189 +639908.400|222176.300|96.750 +639913.466|222171.511|96.991 +639918.437|222166.811|97.125 +639933.443|222152.672|100.350 +639938.457|222147.935|100.618 +639943.465|222143.204|101.118 +639948.485|222138.456|101.124 +639958.482|222128.998|101.005 +639963.466|222124.276|100.648 +639968.495|222119.518|100.523 +639973.475|222114.800|100.359 +639978.462|222110.079|100.121 +639983.454|222105.351|99.770 +639998.445|222091.151|98.615 +640013.401|222076.959|96.372 +640018.385|222072.229|95.451 +640023.365|222067.504|94.699 +640028.333|222062.798|94.351 +640048.139|222044.047|93.549 +640053.062|222039.386|93.333 +640057.990|222034.717|93.013 +640062.904|222030.072|93.059 +640067.802|222025.442|93.345 +640077.598|222016.173|93.239 +640078.891|222011.674|93.156 +640064.074|222025.658|93.333 +640059.130|222030.315|92.964 +640039.291|222049.052|93.854 +640029.336|222058.442|93.748 +640019.369|222067.870|95.140 +640009.317|222077.383|96.652 +640004.294|222082.138|97.487 +639999.277|222086.886|98.201 +639989.261|222096.360|99.426 +639984.268|222101.072|99.621 +639979.279|222105.784|99.874 +639974.240|222110.542|100.142 +639969.254|222115.254|100.392 +639964.228|222119.997|100.423 +639959.244|222124.703|100.639 +639954.209|222129.461|101.069 +639949.186|222134.204|101.139 +639944.214|222138.892|101.029 +639939.194|222143.625|100.935 +639934.183|222148.346|100.456 +639929.172|222153.068|100.063 +639924.162|222157.786|99.536 +639914.161|222167.171|96.722 +639909.144|222171.901|96.460 +639904.124|222176.638|96.308 +639899.104|222181.369|96.104 +639889.021|222190.866|95.189 +639883.998|222195.600|94.939 +639878.932|222200.376|94.552 +639873.909|222205.119|94.845 +639868.837|222209.913|95.412 +639853.686|222224.227|96.162 +639848.620|222229.012|96.594 +639843.557|222233.800|97.055 +639838.543|222238.537|97.448 +639833.486|222243.328|98.594 +639828.436|222248.114|99.569 +639823.373|222252.887|99.459 +639803.232|222271.961|103.224 +639798.114|222276.774|102.486 +639793.103|222281.505|102.447 +639788.044|222286.275|102.431 +639782.981|222291.048|102.187 +639767.835|222305.331|101.499 +639762.812|222310.061|101.148 +639757.747|222314.841|101.002 +639747.639|222324.360|100.048 +639742.561|222329.145|99.624 +639737.532|222333.885|99.258 +639722.286|222348.226|96.844 +639712.182|222357.738|95.473 +639707.140|222362.490|95.195 +639691.919|222376.822|93.363 +639681.860|222386.320|93.629 +639661.893|222405.211|96.204 +639656.864|222409.960|96.360 +639641.837|222424.124|95.479 +639636.756|222428.909|94.851 +639621.921|222442.939|96.661 +639587.445|222475.553|100.895 +639582.541|222480.183|100.950 +639577.603|222484.846|101.209 +639572.638|222489.531|101.151 +639557.880|222503.454|100.987 +639556.072|222501.906|101.054 +639571.017|222487.766|101.221 +639575.966|222483.082|101.108 +639605.691|222454.906|98.478 +639615.594|222445.509|97.079 +639625.512|222436.106|95.857 +639635.464|222426.675|95.235 +639655.565|222407.683|96.747 +639660.530|222402.977|96.338 +639700.612|222365.020|94.720 +639710.685|222355.498|95.156 +639736.042|222331.580|99.267 +639741.074|222326.826|99.770 +639746.100|222322.077|100.033 +639756.201|222312.533|100.904 +639761.267|222307.742|101.191 +639766.333|222302.954|101.383 +639781.433|222288.683|102.291 +639786.443|222283.943|102.331 +639791.503|222279.158|102.501 +639796.560|222274.375|102.602 +639801.574|222269.636|102.968 +639806.621|222264.850|102.407 +639821.666|222250.561|99.344 +639826.726|222245.773|99.411 +639831.731|222241.024|98.655 +639836.784|222236.220|97.436 +639841.844|222231.429|97.122 +639851.921|222221.877|96.216 +639867.069|222207.530|95.415 +639877.161|222197.962|94.442 +639882.178|222193.222|94.833 +639887.244|222188.440|95.357 +639892.261|222183.697|95.723 +639897.327|222178.909|95.939 +639902.338|222174.178|96.555 +639907.361|222169.426|96.521 +639912.378|222164.684|96.805 +639927.383|222150.541|100.069 +639932.440|222145.765|100.569 +639937.405|222141.074|101.014 +639942.422|222136.328|101.145 +639947.448|222131.570|100.983 +639952.426|222126.858|100.895 +639957.455|222122.094|100.657 +639962.435|222117.376|100.474 +639967.419|222112.660|100.371 +639972.457|222107.884|99.999 +639977.438|222103.169|99.959 +639992.376|222089.017|99.002 +639997.445|222084.201|98.027 +640002.401|222079.501|97.615 +640012.462|222069.949|95.784 +640022.429|222060.485|94.153 +640027.404|222055.769|93.668 +640042.284|222041.685|93.485 +640047.252|222036.978|93.303 +640057.122|222027.639|93.388 +640066.927|222018.367|93.888 +640076.775|222009.043|93.744 +640079.945|222002.637|94.452 +640070.103|222011.912|93.574 +640065.126|222016.615|93.760 +640060.154|222021.309|93.836 +640055.253|222025.929|93.546 +640040.373|222039.972|93.421 +640035.402|222044.672|93.677 +640030.442|222049.353|93.708 +640025.432|222054.084|93.842 +640020.451|222058.799|94.476 +640015.474|222063.505|95.031 +640010.435|222068.278|96.024 +639995.473|222082.439|98.073 +639985.454|222091.916|99.213 +639975.508|222101.319|99.978 +639970.476|222106.071|100.057 +639960.506|222115.489|100.414 +639955.519|222120.198|100.624 +639950.536|222124.907|100.865 +639945.504|222129.662|101.203 +639940.529|222134.356|101.163 +639935.512|222139.090|100.983 +639930.498|222143.817|100.606 +639925.536|222148.490|99.996 +639915.487|222157.929|97.433 +639910.522|222162.608|96.820 +639905.502|222167.342|96.546 +639900.433|222172.118|96.241 +639895.462|222176.806|95.936 +639880.353|222191.043|94.634 +639875.329|222195.783|94.442 +639865.283|222205.280|95.241 +639850.171|222219.563|96.226 +639840.088|222229.094|97.116 +639830.015|222238.631|98.566 +639825.007|222243.368|99.213 +639809.901|222257.681|102.160 +639799.836|222267.188|102.599 +639789.766|222276.695|102.568 +639784.709|222281.471|102.605 +639779.689|222286.202|102.230 +639774.629|222290.978|102.215 +639764.534|222300.491|101.410 +639759.466|222305.270|101.166 +639754.397|222310.052|100.968 +639749.374|222314.789|100.688 +639744.293|222319.577|100.127 +639739.215|222324.363|99.767 +639734.176|222329.108|99.222 +639719.028|222343.367|96.954 +639698.768|222362.441|94.455 +639688.679|222371.954|93.946 +639683.653|222376.700|94.138 +639678.620|222381.452|94.205 +639668.669|222390.870|95.692 +639603.819|222452.123|98.563 +639579.127|222475.471|101.105 +639574.189|222480.134|101.377 +639549.495|222503.433|101.130 +639555.810|222493.841|101.489 +639590.545|222460.959|99.990 +639595.562|222456.207|99.572 +639620.291|222432.759|96.299 +639625.274|222428.041|96.116 +639635.354|222418.519|96.860 +639640.307|222413.837|97.024 +639670.244|222385.490|95.400 +639675.240|222380.754|94.580 +639710.405|222347.515|95.832 +639720.518|222337.981|97.567 +639735.642|222323.710|99.444 +639740.678|222318.959|100.026 +639745.750|222314.164|100.380 +639750.782|222309.418|100.962 +639755.802|222304.673|101.200 +639760.822|222299.930|101.483 +639765.888|222295.145|101.785 +639770.908|222290.402|102.160 +639775.928|222285.662|102.596 +639785.947|222276.186|102.626 +639791.003|222271.404|102.721 +639796.014|222266.667|102.727 +639801.028|222261.930|103.193 +639806.073|222257.145|102.279 +639816.070|222247.650|100.188 +639821.075|222242.905|99.447 +639826.083|222238.159|98.954 +639836.147|222228.610|97.323 +639841.113|222223.907|97.003 +639851.192|222214.351|95.674 +639856.209|222209.599|95.430 +639861.275|222204.802|95.064 +639866.298|222200.031|93.973 +639871.321|222195.283|94.019 +639881.404|222185.761|94.930 +639886.421|222181.024|95.445 +639891.438|222176.288|95.829 +639896.504|222171.502|96.174 +639901.472|222166.805|96.463 +639906.538|222162.020|96.732 +639911.555|222157.280|97.012 +639926.603|222143.107|100.371 +639931.562|222138.422|100.877 +639936.622|222133.640|101.176 +639941.593|222128.937|101.172 +639946.622|222124.173|100.804 +639951.642|222119.421|100.816 +639956.675|222114.657|100.481 +639961.655|222109.942|100.328 +639966.681|222105.184|100.279 +639981.754|222090.901|99.036 +639996.805|222076.639|97.740 +640021.926|222052.801|93.918 +640026.931|222048.061|93.790 +640031.942|222043.318|93.610 +640036.904|222038.621|93.476 +640041.906|222033.888|93.482 +640046.917|222029.145|93.391 +640051.843|222024.497|94.061 +640056.792|222019.815|94.220 +640061.770|222015.103|93.955 +640066.735|222010.403|93.921 +640080.789|221993.185|94.388 +640065.781|222007.361|94.485 +640060.831|222012.030|94.202 +640055.814|222016.773|94.333 +640045.862|222026.164|93.921 +640040.873|222030.867|93.543 +640035.865|222035.598|93.583 +640030.860|222040.328|93.598 +640025.904|222045.007|93.595 +640020.902|222049.731|93.586 +640015.855|222054.517|94.644 +640010.826|222059.278|95.357 +639990.742|222078.297|98.249 +639985.743|222083.022|98.524 +639980.784|222087.716|99.106 +639965.761|222101.925|100.093 +639950.810|222116.050|100.545 +639945.833|222120.753|100.630 +639940.852|222125.462|100.892 +639935.872|222130.168|101.130 +639930.901|222134.859|100.999 +639920.925|222144.268|100.182 +639911.022|222153.574|97.585 +639906.056|222158.249|96.829 +639901.085|222162.940|96.597 +639896.065|222167.674|96.360 +639891.097|222172.365|96.006 +639886.125|222177.053|95.637 +639881.154|222181.737|95.189 +639876.183|222186.425|94.689 +639871.163|222191.156|94.226 +639861.214|222200.544|93.741 +639856.237|222205.259|94.619 +639851.217|222210.014|95.363 +639846.291|222214.677|96.040 +639841.277|222219.432|97.027 +639836.306|222224.126|97.061 +639831.292|222228.869|97.481 +639821.374|222238.272|99.545 +639816.360|222243.008|99.517 +639811.398|222247.702|99.962 +639806.448|222252.399|101.188 +639801.452|222257.139|102.379 +639796.493|222261.827|102.629 +639786.520|222271.245|102.666 +639781.512|222275.976|102.794 +639776.544|222280.663|102.559 +639766.558|222290.085|102.160 +639761.532|222294.824|101.557 +639751.583|222304.209|100.956 +639746.566|222308.946|100.892 +639741.577|222313.643|100.203 +639736.602|222318.340|100.011 +639731.564|222323.086|99.399 +639706.421|222346.747|94.845 +639671.552|222379.678|95.339 +639651.670|222398.493|97.609 +639646.695|222403.196|97.850 +639641.709|222407.902|97.932 +639631.705|222417.330|96.765 +639626.716|222422.042|96.884 +639621.650|222426.818|96.527 +639587.107|222459.505|100.465 +639577.268|222468.814|101.435 +639572.248|222473.547|101.255 +639567.359|222478.171|101.541 +639543.252|222497.118|101.450 +639558.215|222482.972|101.706 +639578.103|222464.156|101.194 +639647.924|222398.076|98.009 +639672.927|222374.390|95.653 +639682.948|222364.895|94.732 +639698.006|222350.664|95.000 +639718.186|222331.614|96.936 +639723.295|222326.804|98.033 +639733.387|222317.288|99.615 +639738.425|222312.536|100.273 +639743.503|222307.745|100.694 +639748.478|222303.045|100.974 +639753.546|222298.257|101.160 +639758.569|222293.514|101.514 +639763.596|222288.771|102.096 +639788.711|222265.033|102.913 +639803.774|222250.769|101.739 +639808.758|222246.014|99.417 +639813.821|222241.228|99.551 +639818.835|222236.489|99.591 +639823.839|222231.737|98.512 +639828.847|222226.985|97.497 +639833.861|222222.236|97.113 +639853.932|222203.204|94.284 +639863.976|222193.698|93.818 +639868.999|222188.958|94.186 +639874.065|222184.176|94.680 +639879.033|222179.488|95.415 +639884.053|222174.748|95.689 +639889.067|222170.018|96.378 +639899.107|222160.526|96.628 +639904.127|222155.787|96.875 +639909.138|222151.059|97.548 +639914.128|222146.377|99.523 +639919.087|222141.699|100.243 +639924.101|222136.965|100.593 +639929.115|222132.229|100.883 +639934.086|222127.529|100.895 +639939.109|222122.777|100.798 +639944.086|222118.068|100.691 +639949.064|222113.361|100.654 +639954.099|222108.591|100.246 +639959.080|222103.876|100.072 +639994.058|222070.750|97.390 +639999.072|222065.995|96.774 +640004.099|222061.231|95.997 +640009.113|222056.480|95.506 +640019.073|222047.037|94.150 +640024.106|222042.264|93.455 +640029.043|222037.600|93.821 +640034.048|222032.870|93.836 +640039.020|222028.161|93.531 +640048.947|222018.788|94.348 +640053.879|222014.118|94.004 +640058.868|222009.409|94.427 +640063.785|222004.758|94.406 +640078.625|221990.725|94.662 +640080.911|221984.656|94.878 +640065.808|221998.912|94.799 +640060.804|222003.630|94.604 +640055.811|222008.336|94.199 +640050.745|222013.122|94.293 +640045.716|222017.870|94.598 +640030.628|222032.099|93.903 +640025.599|222036.838|93.388 +640020.494|222041.678|94.525 +639990.145|222070.378|97.570 +639985.055|222075.185|97.682 +639969.888|222089.532|99.444 +639954.782|222103.800|99.993 +639949.701|222108.597|100.154 +639944.711|222113.316|100.542 +639939.639|222118.107|100.612 +639934.607|222122.859|100.846 +639929.581|222127.608|101.075 +639924.561|222132.341|100.892 +639919.547|222137.066|100.493 +639914.530|222141.796|100.173 +639909.491|222146.524|98.454 +639904.484|222151.230|97.384 +639899.464|222155.960|96.978 +639894.398|222160.737|96.677 +639889.423|222165.427|96.418 +639874.318|222179.659|94.924 +639869.294|222184.389|94.439 +639864.271|222189.120|93.973 +639859.248|222193.856|93.610 +639849.199|222203.351|94.122 +639834.139|222217.612|96.814 +639829.170|222222.312|97.173 +639823.827|222227.366|97.710 +639819.146|222231.798|98.652 +639814.138|222236.544|99.505 +639809.124|222241.280|99.725 +639784.191|222264.866|102.843 +639779.183|222269.599|102.998 +639759.258|222288.393|102.285 +639754.220|222293.130|101.361 +639749.243|222297.824|101.047 +639744.268|222302.515|100.923 +639739.236|222307.257|100.438 +639734.256|222311.951|100.100 +639729.269|222316.651|99.731 +639694.311|222349.573|95.235 +639689.294|222354.297|94.442 +639664.511|222377.736|96.436 +639659.601|222382.382|97.036 +639654.681|222387.033|97.390 +639620.019|222419.771|97.993 +639600.256|222438.440|98.560 +639585.604|222452.318|100.810 +639570.885|222466.226|101.538 +639556.154|222480.134|101.587 +639551.244|222484.773|101.621 +639541.372|222494.085|101.188 +639528.408|222502.811|100.724 +639553.253|222479.323|101.474 +639563.241|222469.884|101.755 +639568.185|222465.205|101.569 +639588.034|222446.405|100.069 +639597.924|222437.020|98.536 +639602.841|222432.360|97.999 +639627.874|222408.689|98.280 +639652.929|222384.981|97.807 +639662.883|222375.545|96.539 +639698.024|222342.282|95.015 +639708.110|222332.757|95.848 +639728.379|222313.658|99.789 +639733.408|222308.909|100.200 +639738.486|222304.115|100.749 +639743.503|222299.369|100.874 +639748.529|222294.626|101.319 +639753.607|222289.835|101.974 +639773.776|222270.788|103.562 +639783.831|222261.269|103.017 +639788.836|222256.529|102.806 +639798.858|222246.992|99.478 +639813.943|222232.721|99.356 +639818.993|222227.924|98.240 +639824.001|222223.175|97.484 +639829.061|222218.380|96.997 +639839.089|222208.871|95.692 +639844.154|222204.061|94.543 +639849.126|222199.346|93.912 +639854.195|222194.545|93.528 +639859.215|222189.799|93.754 +639864.235|222185.060|94.162 +639869.255|222180.323|94.665 +639874.272|222175.590|95.363 +639879.286|222170.862|96.152 +639884.300|222166.125|96.579 +639894.285|222156.695|97.317 +639919.282|222133.116|100.639 +639924.293|222128.379|100.956 +639929.264|222123.679|100.965 +639934.244|222118.964|100.670 +639939.222|222114.251|100.529 +639944.251|222109.490|100.252 +639949.189|222104.815|99.929 +639954.215|222100.057|99.853 +639959.204|222095.332|99.514 +639984.088|222071.759|97.573 +639989.032|222067.084|97.530 +639994.025|222062.362|97.466 +640028.793|222029.401|93.504 +640033.707|222024.771|94.382 +640043.555|222015.463|94.793 +640048.484|222010.796|94.513 +640053.418|222006.123|94.135 +640058.353|222001.463|94.650 +640063.263|221996.821|94.756 +640073.057|221987.558|94.744 +640079.211|221978.231|95.933 +640074.279|221982.873|95.262 +640069.283|221987.576|94.820 +640064.266|221992.310|94.772 +640059.252|221997.040|94.717 +640054.241|222001.768|94.644 +640049.236|222006.489|94.458 +640044.204|222011.244|94.814 +640039.138|222016.026|94.951 +640008.905|222044.541|94.052 +639998.722|222054.191|96.198 +639988.535|222063.825|97.542 +639983.500|222068.577|97.439 +639973.298|222078.218|98.295 +639968.248|222082.991|98.761 +639963.152|222087.810|99.258 +639958.068|222092.608|99.371 +639952.983|222097.414|99.655 +639947.902|222102.209|99.792 +639942.864|222106.967|100.100 +639932.659|222116.611|100.621 +639927.630|222121.356|100.795 +639922.510|222126.194|100.935 +639917.444|222130.967|100.691 +639912.378|222135.740|100.383 +639902.277|222145.228|97.923 +639876.890|222169.161|96.579 +639871.782|222173.965|95.537 +639866.713|222178.732|94.705 +639861.644|222183.505|94.153 +639856.523|222188.327|93.726 +639851.451|222193.113|93.565 +639846.379|222197.907|93.927 +639841.308|222202.702|94.577 +639836.193|222207.545|95.439 +639826.061|222217.134|96.951 +639821.002|222221.919|97.484 +639815.939|222226.708|98.246 +639810.882|222231.499|99.274 +639795.691|222245.837|99.389 +639785.617|222255.405|102.852 +639780.558|222260.178|102.904 +639775.504|222264.954|103.242 +639770.487|222269.685|102.925 +639755.342|222283.967|102.587 +639750.309|222288.704|101.892 +639740.199|222298.226|100.855 +639735.173|222302.963|100.596 +639730.141|222307.705|100.161 +639720.046|222317.203|98.615 +639699.941|222336.128|96.000 +639694.936|222340.840|95.467 +639689.944|222345.546|95.244 +639650.271|222383.031|97.896 +639635.476|222397.018|99.292 +639625.573|222406.357|99.039 +639610.677|222420.384|97.436 +639605.816|222424.983|98.143 +639600.939|222429.592|98.545 +639596.041|222434.216|98.682 +639586.278|222443.454|100.087 +639576.552|222452.653|101.380 +639571.660|222457.274|101.608 +639566.755|222461.904|101.706 +639561.903|222466.485|101.843 +639556.977|222471.130|101.697 +639552.067|222475.763|101.773 +639547.166|222480.381|101.374 +639527.576|222498.858|100.822 +639522.681|222503.476|100.633 +639523.254|222499.644|100.566 +639533.179|222490.260|100.910 +639543.133|222480.844|101.169 +639548.132|222476.120|101.627 +639558.075|222466.717|101.898 +639563.040|222462.020|101.983 +639607.711|222419.668|98.003 +639612.744|222414.913|98.630 +639617.788|222410.143|98.682 +639622.805|222405.400|99.109 +639647.881|222381.653|98.137 +639657.857|222372.195|97.381 +639677.971|222353.139|96.174 +639698.106|222334.071|95.595 +639713.331|222319.715|98.377 +639718.357|222314.960|98.524 +639723.453|222310.153|99.466 +639728.541|222305.349|100.154 +639733.576|222300.597|100.819 +639738.651|222295.803|101.246 +639743.720|222291.008|101.477 +639748.743|222286.263|101.938 +639753.815|222281.471|102.379 +639763.940|222271.897|102.809 +639769.003|222267.109|103.065 +639774.014|222262.369|103.157 +639779.064|222257.584|102.837 +639784.115|222252.799|102.507 +639794.137|222243.252|99.133 +639809.270|222228.927|98.999 +639814.324|222224.126|97.920 +639819.383|222219.325|97.369 +639824.391|222214.577|96.814 +639839.534|222200.202|94.510 +639844.602|222195.395|93.882 +639849.623|222190.638|93.562 +639854.646|222185.889|93.799 +639859.711|222181.103|94.318 +639864.732|222176.364|94.881 +639869.745|222171.630|95.686 +639914.859|222129.022|100.435 +639919.870|222124.289|100.816 +639924.841|222119.582|100.773 +639929.864|222114.828|100.615 +639934.839|222110.118|100.554 +639939.874|222105.342|99.956 +639944.854|222100.624|99.752 +639954.821|222091.184|99.298 +639959.811|222086.460|98.987 +639969.751|222077.038|98.188 +639974.746|222072.302|97.817 +639979.702|222067.602|97.308 +639984.680|222062.899|97.561 +640009.551|222039.298|93.988 +640014.434|222034.683|94.400 +640039.032|222011.418|95.046 +640043.951|222006.757|94.863 +640053.751|221997.495|95.345 +640058.679|221992.828|95.116 +640063.550|221988.213|95.052 +640068.445|221983.590|95.461 +640080.771|221968.737|96.475 +640070.880|221978.067|96.421 +640065.949|221982.709|95.838 +640061.002|221987.369|95.491 +640056.061|221992.036|95.857 +640046.204|222001.317|94.638 +640041.174|222006.066|94.951 +640036.161|222010.799|95.089 +640006.235|222039.014|94.107 +639981.001|222062.874|97.061 +639970.906|222072.408|97.679 +639965.861|222077.176|98.079 +639960.814|222081.946|98.548 +639955.769|222086.713|98.987 +639940.618|222101.023|99.816 +639935.589|222105.772|100.005 +639930.501|222110.582|100.682 +639925.484|222115.315|100.578 +639920.458|222120.061|100.795 +639915.392|222124.840|100.743 +639905.316|222134.335|100.200 +639864.881|222172.392|95.028 +639854.746|222181.939|94.257 +639849.629|222186.754|93.720 +639844.606|222191.491|93.562 +639839.491|222196.328|94.119 +639834.422|222201.123|94.830 +639824.297|222210.706|96.530 +639819.191|222215.534|97.024 +639814.132|222220.316|97.625 +639809.072|222225.101|98.316 +639804.021|222229.887|99.399 +639788.836|222244.212|99.447 +639778.820|222253.725|102.858 +639773.721|222258.541|103.120 +639768.704|222263.268|102.846 +639763.647|222268.039|102.828 +639758.585|222272.812|102.632 +639753.528|222277.585|102.675 +639748.502|222282.315|102.123 +639743.439|222287.092|102.005 +639733.381|222296.559|101.014 +639728.300|222301.344|100.380 +639703.004|222325.134|96.341 +639697.920|222329.925|96.091 +639677.874|222348.847|96.604 +639667.846|222358.324|97.286 +639657.888|222367.721|97.548 +639652.886|222372.451|98.128 +639593.520|222428.473|99.152 +639583.745|222437.718|100.340 +639564.235|222456.152|101.962 +639559.321|222460.788|101.919 +639554.414|222465.418|101.965 +639539.729|222479.262|101.544 +639534.791|222483.917|101.300 +639524.940|222493.201|100.648 +639515.144|222502.433|100.212 +639517.228|222497.270|100.234 +639542.073|222473.785|101.435 +639557.051|222459.624|102.072 +639562.001|222454.936|102.023 +639571.894|222445.570|101.822 +639576.856|222440.867|101.264 +639606.517|222412.752|98.646 +639611.534|222408.009|99.036 +639636.576|222384.332|99.904 +639666.596|222355.885|97.628 +639676.569|222346.430|96.860 +639686.630|222336.893|95.875 +639727.065|222298.717|100.478 +639732.101|222293.965|101.203 +639742.193|222284.428|101.791 +639747.216|222279.682|102.169 +639752.284|222274.894|102.590 +639762.358|222265.366|102.931 +639767.415|222260.580|102.864 +639772.478|222255.795|103.276 +639777.528|222251.012|102.828 +639787.590|222241.426|99.374 +639802.723|222227.104|99.231 +639807.773|222222.303|97.935 +639817.890|222212.708|96.850 +639833.075|222198.303|94.714 +639838.141|222193.497|93.976 +639843.210|222188.690|93.367 +639848.278|222183.904|93.970 +639853.298|222179.162|94.406 +639858.364|222174.373|94.781 +639863.433|222169.585|94.985 +639903.709|222131.579|100.761 +639908.733|222126.818|100.398 +639913.747|222122.082|100.758 +639918.815|222117.284|100.694 +639923.838|222112.532|100.697 +639928.874|222107.756|100.130 +639933.906|222102.992|99.859 +639938.935|222098.234|99.728 +639954.044|222083.927|98.929 +639959.046|222079.181|98.283 +639969.141|222069.616|97.463 +639979.138|222060.149|96.945 +639989.191|222050.630|96.445 +640004.248|222036.338|93.790 +640038.934|222003.545|95.098 +640043.887|221998.863|95.265 +640078.238|221966.396|96.829 +640080.805|221960.723|96.796 +640070.950|221970.020|96.799 +640046.277|221993.288|96.402 +640041.363|221997.909|95.497 +640036.465|222002.524|95.195 +640016.708|222021.150|94.473 +640011.798|222025.765|93.449 +640006.830|222030.456|93.702 +640001.819|222035.186|93.888 +639986.865|222049.338|96.323 +639971.899|222063.469|97.198 +639961.902|222072.911|97.780 +639956.949|222077.593|98.243 +639951.889|222082.382|99.133 +639936.884|222096.549|99.630 +639931.900|222101.252|99.737 +639926.865|222106.007|100.112 +639921.879|222110.719|100.551 +639916.904|222115.413|100.520 +639911.878|222120.155|100.657 +639861.769|222167.326|94.951 +639851.674|222176.842|94.647 +639846.700|222181.530|94.327 +639841.628|222186.300|93.552 +639836.556|222191.092|93.876 +639831.581|222195.798|94.540 +639826.513|222200.592|95.268 +639821.447|222205.384|95.966 +639816.433|222210.123|96.646 +639811.370|222214.912|97.292 +639776.086|222248.294|102.422 +639771.088|222253.021|103.312 +639766.025|222257.794|103.138 +639760.962|222262.567|102.873 +639755.945|222267.298|102.794 +639750.882|222272.071|102.684 +639745.862|222276.805|102.437 +639740.830|222281.538|101.755 +639735.761|222286.318|101.560 +639730.689|222291.097|101.270 +639725.648|222295.839|100.511 +639720.573|222300.622|100.231 +639715.510|222305.374|99.005 +639710.466|222310.119|98.338 +639695.317|222324.372|96.418 +639690.194|222329.182|95.278 +639685.192|222333.912|95.966 +639625.155|222390.608|100.511 +639615.115|222400.072|100.353 +639610.129|222404.763|99.670 +639600.107|222414.206|99.213 +639580.310|222432.902|100.795 +639555.633|222456.198|102.282 +639550.659|222460.886|102.102 +639507.405|222498.056|99.527 +639537.284|222469.844|101.240 +639552.296|222455.668|102.264 +639557.255|222450.980|102.312 +639562.235|222446.265|102.020 +639582.026|222427.522|100.420 +639586.964|222422.838|99.511 +639591.965|222418.107|99.612 +639606.925|222403.971|100.017 +639611.954|222399.225|100.648 +639621.940|222389.788|100.764 +639666.818|222347.296|97.655 +639686.810|222328.362|96.012 +639691.852|222323.601|96.344 +639707.003|222309.315|98.518 +639722.121|222295.053|100.474 +639727.145|222290.307|100.685 +639732.183|222285.559|101.502 +639737.206|222280.816|101.849 +639742.278|222276.027|102.285 +639747.252|222271.334|102.629 +639752.315|222266.548|102.895 +639762.334|222257.075|102.843 +639767.345|222252.338|102.901 +639772.353|222247.602|102.837 +639782.368|222238.071|99.463 +639797.407|222223.846|99.100 +639802.458|222219.048|98.051 +639807.469|222214.302|97.454 +639812.480|222209.550|96.869 +639817.539|222204.753|96.116 +639822.550|222200.001|95.436 +639827.567|222195.246|94.796 +639832.636|222190.452|94.647 +639837.656|222185.694|93.973 +639857.831|222166.634|95.003 +639862.845|222161.916|96.140 +639892.993|222133.445|98.064 +639908.004|222119.299|100.785 +639913.076|222114.498|100.535 +639918.096|222109.756|100.593 +639923.086|222105.028|99.969 +639928.115|222100.267|99.679 +639933.141|222095.509|99.551 +639953.240|222076.481|98.219 +639963.331|222066.925|97.369 +639968.327|222062.195|97.073 +639983.424|222047.909|96.241 +640003.556|222028.828|93.851 +640008.585|222024.061|93.193 +640013.541|222019.394|94.232 +640023.432|222010.065|95.598 +640028.431|222005.340|95.695 +640033.408|222000.628|95.360 +640038.395|221995.922|95.774 +640053.260|221981.889|96.975 +640058.176|221977.237|96.957 +640063.132|221972.556|97.152 +640068.085|221967.880|97.393 +640073.008|221963.223|97.356 +640076.833|221955.987|97.603 +640066.900|221965.362|97.466 +640061.892|221970.087|97.311 +640037.044|221993.520|96.030 +640027.090|222002.911|95.750 +640022.131|222007.596|95.793 +640012.237|222016.907|94.372 +640002.258|222026.316|93.772 +639997.244|222031.053|94.016 +639987.249|222040.511|95.131 +639967.205|222059.464|97.006 +639962.210|222064.185|97.213 +639957.214|222068.906|97.497 +639952.203|222073.649|98.249 +639947.214|222078.364|98.466 +639927.264|222097.216|99.459 +639912.265|222111.392|100.487 +639907.285|222116.099|100.721 +639887.387|222134.829|97.911 +639882.416|222139.522|97.762 +639877.393|222144.265|97.902 +639832.453|222186.623|94.348 +639827.433|222191.369|94.558 +639822.459|222196.072|95.089 +639816.878|222201.354|95.686 +639807.417|222210.309|97.088 +639797.438|222219.749|98.301 +639792.433|222224.495|99.392 +639777.437|222238.653|99.438 +639772.471|222243.395|102.507 +639767.515|222248.083|102.977 +639762.456|222252.856|102.913 +639742.446|222271.739|102.489 +639737.471|222276.430|102.175 +639732.448|222281.166|101.861 +639727.419|222285.906|101.428 +639722.380|222290.649|100.651 +639717.400|222295.343|100.401 +639707.369|222304.788|99.283 +639702.325|222309.537|98.670 +639682.211|222328.468|96.058 +639647.332|222361.436|99.356 +639617.489|222389.617|100.846 +639607.504|222399.039|100.795 +639592.508|222413.169|99.883 +639587.518|222417.882|100.008 +639572.720|222431.872|101.572 +639567.795|222436.523|101.980 +639562.866|222441.181|102.343 +639557.910|222445.856|102.355 +639548.035|222455.174|102.270 +639543.045|222459.877|101.922 +639538.098|222464.537|101.535 +639533.099|222469.244|101.145 +639528.210|222473.855|100.938 +639523.190|222478.580|100.362 +639518.289|222483.200|100.063 +639503.409|222497.221|99.042 +639498.465|222501.882|98.944 +639491.899|222504.247|98.624 +639496.846|222499.574|98.743 +639506.755|222490.217|99.240 +639511.705|222485.538|99.511 +639516.713|222480.814|99.883 +639536.690|222461.965|101.718 +639551.640|222447.850|102.572 +639561.592|222438.440|102.486 +639571.480|222429.080|101.553 +639576.421|222424.404|101.410 +639586.342|222415.007|100.304 +639621.339|222381.946|101.151 +639626.326|222377.230|101.166 +639661.241|222344.190|99.048 +639706.372|222301.536|99.149 +639716.452|222292.029|100.420 +639726.568|222282.489|101.614 +639731.598|222277.743|102.130 +639736.621|222273.004|102.379 +639741.641|222268.264|102.660 +639761.739|222249.269|102.949 +639766.796|222244.490|102.879 +639771.734|222239.793|101.252 +639791.805|222220.779|98.923 +639796.859|222215.985|97.945 +639801.824|222211.282|97.408 +639811.900|222201.738|96.317 +639816.911|222196.987|95.396 +639826.997|222187.434|94.436 +639832.017|222182.694|94.747 +639857.176|222158.920|94.979 +639867.246|222149.453|97.673 +639872.263|222144.710|97.786 +639892.359|222125.764|100.282 +639897.376|222121.021|100.404 +639907.367|222111.578|100.471 +639917.419|222102.069|100.042 +639922.455|222097.301|99.520 +639927.484|222092.544|99.338 +639947.585|222073.518|98.033 +639957.632|222064.005|97.106 +639962.633|222059.272|96.704 +639992.803|222030.703|93.836 +639997.762|222026.015|93.687 +640007.768|222016.575|94.686 +640017.687|222007.212|95.515 +640022.618|222002.560|96.027 +640027.641|221997.808|95.689 +640032.634|221993.093|95.957 +640037.557|221988.451|96.655 +640052.403|221974.430|97.405 +640062.325|221965.055|97.567 +640072.209|221955.716|97.698 +640077.117|221951.083|97.960 +640079.744|221944.846|98.283 +640074.718|221949.583|98.295 +640069.704|221954.310|98.173 +640059.679|221963.759|97.896 +640054.619|221968.526|97.780 +640049.605|221973.251|97.713 +640044.604|221977.963|97.481 +640039.547|221982.730|97.414 +640034.582|221987.396|96.546 +640029.562|221992.115|95.765 +640024.499|221996.888|95.832 +640019.479|222001.628|96.061 +640014.440|222006.373|95.726 +640009.399|222011.122|95.451 +639994.351|222025.286|94.061 +639964.033|222053.910|96.219 +639958.930|222058.729|96.637 +639953.880|222063.496|96.972 +639943.779|222073.039|97.932 +639928.645|222087.328|99.161 +639923.613|222092.077|99.286 +639918.581|222096.823|99.417 +639913.545|222101.581|99.801 +639908.504|222106.345|100.471 +639903.481|222111.078|100.398 +639898.406|222115.867|100.566 +639893.383|222120.604|100.557 +639868.252|222144.253|97.981 +639858.264|222153.644|96.503 +639853.198|222158.393|95.153 +639823.047|222186.812|94.430 +639818.070|222191.515|95.125 +639813.053|222196.261|95.902 +639808.036|222201.004|96.567 +639803.061|222205.698|96.872 +639798.044|222210.440|97.481 +639793.027|222215.177|97.914 +639778.037|222229.344|99.563 +639773.014|222234.075|99.341 +639768.034|222238.811|101.651 +639763.093|222243.499|103.123 +639758.079|222248.227|103.074 +639738.148|222267.011|102.581 +639733.164|222271.699|102.160 +639728.138|222276.433|101.825 +639723.152|222281.124|101.310 +639718.162|222285.818|100.788 +639698.137|222304.666|98.481 +639693.168|222309.333|97.481 +639678.126|222323.497|96.305 +639668.284|222332.815|98.106 +639653.465|222346.823|99.950 +639628.755|222370.156|101.395 +639613.902|222384.174|101.666 +639608.967|222388.828|101.828 +639604.045|222393.464|101.419 +639599.043|222398.179|101.304 +639594.093|222402.846|101.255 +639584.178|222412.194|101.029 +639569.468|222426.084|101.794 +639564.558|222430.726|102.440 +639559.654|222435.350|102.517 +639554.755|222439.977|102.639 +639544.916|222449.252|102.483 +639539.942|222453.940|102.312 +639530.076|222463.227|101.358 +639520.136|222472.584|100.218 +639515.168|222477.260|99.737 +639490.561|222500.443|98.277 +639486.349|222501.013|97.856 +639496.240|222491.665|98.057 +639501.226|222486.959|98.673 +639511.205|222477.537|99.539 +639536.163|222453.985|102.157 +639541.195|222449.230|102.495 +639546.160|222444.539|102.565 +639556.145|222435.103|102.943 +639561.074|222430.433|102.648 +639566.051|222425.721|102.337 +639635.966|222359.585|101.121 +639640.935|222354.882|100.883 +639650.969|222345.385|100.481 +639675.825|222321.805|96.466 +639690.931|222307.535|97.164 +639696.006|222302.761|98.600 +639706.129|222293.206|99.639 +639711.167|222288.454|100.270 +639716.202|222283.705|100.801 +639721.237|222278.954|101.526 +639726.258|222274.211|101.785 +639731.329|222269.422|102.151 +639736.353|222264.680|102.611 +639751.446|222250.418|103.184 +639756.451|222245.681|103.032 +639761.511|222240.902|103.120 +639766.491|222236.163|101.474 +639771.469|222231.417|99.359 +639776.528|222226.628|99.402 +639786.547|222217.143|98.734 +639791.601|222212.348|97.838 +639796.612|222207.600|97.356 +639801.626|222202.851|96.838 +639811.699|222193.301|95.643 +639816.661|222188.589|94.644 +639821.730|222183.792|94.189 +639826.750|222179.058|94.997 +639846.831|222160.063|94.720 +639866.838|222141.208|98.259 +639871.849|222136.481|98.914 +639876.856|222131.762|99.728 +639881.867|222127.032|100.218 +639886.836|222122.335|100.328 +639891.850|222117.598|100.587 +639896.824|222112.889|100.264 +639901.841|222108.149|100.456 +639911.851|222098.673|99.703 +639916.831|222093.961|99.463 +639921.860|222089.203|99.191 +639926.804|222084.521|98.707 +639931.836|222079.760|98.475 +639966.718|222046.741|95.866 +639976.670|222037.326|95.421 +639981.635|222032.626|94.958 +639991.559|222023.232|94.330 +639996.497|222018.568|94.616 +640006.354|222009.272|95.680 +640011.298|222004.602|95.866 +640016.190|221999.982|96.168 +640026.108|221990.609|96.116 +640031.034|221985.964|96.713 +640040.806|221976.744|97.689 +640045.743|221972.083|98.094 +640050.654|221967.444|98.173 +640055.613|221962.756|98.240 +640060.520|221958.123|98.432 +640065.391|221953.521|98.463 +640075.224|221944.228|98.621 +640080.158|221939.561|98.475 +640077.808|221938.226|98.649 +640072.779|221942.969|98.707 +640062.727|221952.445|98.777 +640057.713|221957.169|98.637 +640027.583|221985.537|96.725 +640022.548|221990.277|96.265 +640017.522|221995.017|96.521 +640012.435|221999.805|96.183 +640007.396|222004.551|95.835 +639997.305|222014.054|95.467 +639966.821|222042.791|95.464 +639961.710|222047.619|95.997 +639956.653|222052.392|96.360 +639951.554|222057.205|96.698 +639941.358|222066.831|97.457 +639926.085|222081.245|98.368 +639920.946|222086.100|98.917 +639915.859|222090.901|99.286 +639910.823|222095.653|99.523 +639905.691|222100.499|99.978 +639900.607|222105.299|100.490 +639895.583|222110.033|100.377 +639890.463|222114.858|100.322 +639865.125|222138.718|98.850 +639860.053|222143.497|98.819 +639844.855|222157.765|95.610 +639814.412|222186.440|94.372 +639809.346|222191.232|95.342 +639804.280|222196.023|96.186 +639799.212|222200.809|96.707 +639794.146|222205.597|97.305 +639789.132|222210.337|98.057 +639784.069|222215.119|98.502 +639779.012|222219.901|99.432 +639773.992|222224.635|99.399 +639768.969|222229.366|99.307 +639763.937|222234.148|101.438 +639758.954|222238.878|103.212 +639753.936|222243.606|103.090 +639748.877|222248.379|103.239 +639733.856|222262.525|102.568 +639728.876|222267.213|102.206 +639713.822|222281.377|100.874 +639708.780|222286.122|100.225 +639703.791|222290.819|99.837 +639698.792|222295.522|99.210 +639683.753|222309.656|96.643 +639673.780|222319.059|96.567 +639663.874|222328.426|98.103 +639654.038|222337.737|99.996 +639599.872|222388.862|102.538 +639594.910|222393.537|102.258 +639580.060|222407.528|101.553 +639550.769|222435.176|103.105 +639545.837|222439.821|102.879 +639540.951|222444.424|102.632 +639535.995|222449.090|102.120 +639531.054|222453.744|101.846 +639521.212|222463.004|100.700 +639506.368|222476.967|98.908 +639501.409|222481.640|98.627 +639496.520|222486.236|98.097 +639491.604|222490.869|97.801 +639486.742|222495.450|97.631 +639481.838|222500.074|97.521 +639500.099|222479.601|98.505 +639510.087|222470.176|99.408 +639515.086|222465.467|100.258 +639565.000|222418.342|102.800 +639574.951|222408.920|102.169 +639579.898|222404.245|102.126 +639604.953|222380.583|102.815 +639609.946|222375.865|102.901 +639624.978|222361.652|102.593 +639649.920|222338.042|100.292 +639679.977|222309.565|96.558 +639700.334|222290.384|99.636 +639705.385|222285.629|100.468 +639710.417|222280.880|100.886 +639715.495|222276.088|101.273 +639725.605|222266.551|102.285 +639730.674|222261.766|102.556 +639735.719|222257.020|103.757 +639745.774|222247.504|102.968 +639750.840|222242.722|103.273 +639755.854|222237.985|103.288 +639760.889|222233.203|101.998 +639765.857|222228.457|99.347 +639770.874|222223.715|99.252 +639775.937|222218.929|99.142 +639780.994|222214.138|98.597 +639786.008|222209.392|98.167 +639791.067|222204.600|97.384 +639796.081|222199.852|96.866 +639801.144|222195.054|96.317 +639806.161|222190.299|95.369 +639811.227|222185.496|94.506 +639816.241|222180.738|93.516 +639821.316|222175.958|94.442 +639826.339|222171.219|94.790 +639831.362|222166.467|94.574 +639836.434|222161.678|94.820 +639841.454|222156.957|96.006 +639856.545|222142.750|99.109 +639871.590|222128.562|100.542 +639876.610|222123.813|100.435 +639881.672|222119.034|100.694 +639886.647|222114.331|100.554 +639891.673|222109.576|100.298 +639896.690|222104.839|100.566 +639901.673|222100.124|100.139 +639906.709|222095.354|99.508 +639911.689|222090.645|99.371 +639916.676|222085.926|98.993 +639921.714|222081.156|98.515 +639926.664|222076.465|97.829 +639931.699|222071.707|97.707 +639936.686|222066.989|97.518 +639941.636|222062.307|97.140 +639946.631|222057.583|96.866 +639951.633|222052.846|96.402 +639956.586|222048.162|96.067 +639961.600|222043.413|95.442 +639966.544|222038.740|95.464 +639981.458|222024.640|94.887 +639996.277|222010.650|95.686 +640001.224|222005.980|95.860 +640006.116|222001.362|96.137 +640011.063|221996.690|96.314 +640015.949|221992.084|96.802 +640020.917|221987.384|96.555 +640025.806|221982.773|96.991 +640030.671|221978.195|97.890 +640045.381|221964.305|98.466 +640055.165|221955.063|98.573 +640060.020|221950.479|98.822 +640069.792|221941.250|99.200 +640079.549|221932.036|99.216 +640073.578|221934.245|98.899 +640063.687|221943.563|98.707 +640048.825|221957.572|98.676 +640043.860|221962.247|98.594 +640023.987|221980.950|97.152 +640019.049|221985.595|96.695 +640013.980|221990.380|96.985 +640008.997|221995.065|96.488 +640004.004|221999.768|96.265 +639999.011|222004.468|95.960 +639994.019|222009.168|95.726 +639988.977|222013.917|95.525 +639983.991|222018.608|95.183 +639963.847|222037.600|95.424 +639958.799|222042.358|95.525 +639953.742|222047.134|95.991 +639948.686|222051.904|96.424 +639943.593|222056.714|96.732 +639938.545|222061.475|97.088 +639933.501|222066.236|97.396 +639928.417|222071.031|97.530 +639923.372|222075.792|97.939 +639918.279|222080.605|98.557 +639913.241|222085.359|98.972 +639908.156|222090.157|99.286 +639903.078|222094.945|99.481 +639897.991|222099.755|100.252 +639892.962|222104.501|100.557 +639887.893|222109.274|100.383 +639882.821|222114.056|100.538 +639877.750|222118.839|100.666 +639872.687|222123.606|100.346 +639867.615|222128.388|100.538 +639862.558|222133.140|99.652 +639852.424|222142.680|99.146 +639847.358|222147.450|98.902 +639837.229|222156.951|96.451 +639832.161|222161.712|95.653 +639827.092|222166.476|94.756 +639821.971|222171.301|94.860 +639806.758|222185.636|94.717 +639801.693|222190.427|95.592 +639796.633|222195.219|96.783 +639791.564|222199.998|97.045 +639786.501|222204.780|97.567 +639781.442|222209.563|98.155 +639776.382|222214.342|98.819 +639771.319|222219.118|99.085 +639766.253|222223.891|99.136 +639761.212|222228.671|100.615 +639756.192|222233.444|102.949 +639751.132|222238.214|103.004 +639746.073|222242.984|103.151 +639741.010|222247.754|103.068 +639735.996|222252.482|103.093 +639730.927|222257.255|102.791 +639725.855|222262.028|102.550 +639720.832|222266.758|102.230 +639705.684|222281.008|100.849 +639700.645|222285.744|100.337 +639695.549|222290.533|99.624 +639690.565|222295.227|99.423 +639680.406|222304.749|96.722 +639675.408|222309.452|96.302 +639581.291|222398.243|102.916 +639561.650|222416.754|103.221 +639556.706|222421.414|103.391 +639546.916|222430.634|103.132 +639517.375|222458.426|100.859 +639512.422|222463.074|99.962 +639502.564|222472.343|98.868 +639487.803|222486.221|97.241 +639478.025|222495.423|96.856 +639478.738|222491.448|96.707 +639483.694|222486.770|96.875 +639488.650|222482.088|97.085 +639498.636|222472.676|98.432 +639503.613|222467.982|98.960 +639508.639|222463.242|99.575 +639513.635|222458.536|100.420 +639523.638|222449.108|101.852 +639543.581|222430.284|103.132 +639563.451|222411.505|103.279 +639593.325|222383.278|103.413 +639618.291|222359.677|103.276 +639628.221|222350.280|102.639 +639683.238|222298.193|97.533 +639693.412|222288.616|99.755 +639698.454|222283.864|100.346 +639703.492|222279.112|100.944 +639708.564|222274.324|101.163 +639718.668|222264.789|102.041 +639723.697|222260.047|102.535 +639728.720|222255.304|102.864 +639733.786|222250.522|103.084 +639738.843|222245.739|103.044 +639743.857|222241.003|103.132 +639748.913|222236.224|103.029 +639753.970|222231.441|102.904 +639764.025|222221.870|99.130 +639769.039|222217.128|98.996 +639779.156|222207.551|98.134 +639784.215|222202.759|97.570 +639789.229|222198.014|97.192 +639799.352|222188.422|95.689 +639804.366|222183.664|94.827 +639809.435|222178.866|94.293 +639814.500|222174.081|94.357 +639819.523|222169.338|94.677 +639824.592|222164.568|95.765 +639844.755|222145.573|99.014 +639849.769|222140.839|99.335 +639859.846|222131.329|100.066 +639874.891|222117.123|100.752 +639889.951|222102.885|100.612 +639900.018|222093.351|99.392 +639904.999|222088.642|99.283 +639909.985|222083.924|98.941 +639915.024|222079.157|98.542 +639920.019|222074.426|98.033 +639925.064|222069.650|97.518 +639930.059|222064.926|97.177 +639935.049|222060.207|97.018 +639940.048|222055.480|96.728 +639949.999|222046.065|96.073 +639955.007|222041.325|95.622 +639979.812|222017.883|95.336 +639989.657|222008.586|95.649 +639994.549|222003.972|95.982 +640004.379|221994.696|96.704 +640009.231|221990.115|96.893 +640014.169|221985.455|97.298 +640019.046|221980.843|97.052 +640023.923|221976.250|97.771 +640028.739|221971.718|98.707 +640053.117|221948.687|99.024 +640057.984|221944.090|99.139 +640067.689|221934.919|99.133 +640072.511|221930.368|99.301 +640077.394|221925.754|99.292 +640080.744|221919.146|99.618 +640075.821|221923.782|99.441 +640070.890|221928.430|99.466 +640066.016|221933.023|99.353 +640061.026|221937.726|99.542 +640056.116|221942.350|99.316 +640051.141|221947.038|99.325 +640046.216|221951.680|99.377 +640041.306|221956.307|99.234 +640026.437|221970.309|98.682 +640021.579|221974.869|97.640 +640016.641|221979.514|97.140 +640006.674|221988.905|97.033 +639991.797|222002.908|96.079 +639986.819|222007.590|95.525 +639981.821|222012.299|95.403 +639976.816|222017.014|95.421 +639966.821|222026.432|95.272 +639951.770|222040.624|95.619 +639941.660|222050.167|96.454 +639936.661|222054.882|96.680 +639931.617|222059.640|96.884 +639926.573|222064.401|97.207 +639921.531|222069.156|97.411 +639911.485|222078.645|98.533 +639906.443|222083.403|98.932 +639901.362|222088.197|99.185 +639896.376|222092.900|99.438 +639891.286|222097.719|100.410 +639886.257|222102.459|100.566 +639876.207|222111.929|100.593 +639866.164|222121.393|100.508 +639845.944|222140.431|99.429 +639840.924|222145.152|98.850 +639820.694|222164.163|95.915 +639815.622|222168.927|94.887 +639810.547|222173.703|94.595 +639805.475|222178.482|94.574 +639800.406|222183.271|95.223 +639795.341|222188.062|96.143 +639785.209|222197.633|97.277 +639780.140|222202.415|97.603 +639775.081|222207.197|98.423 +639770.021|222211.977|98.865 +639764.952|222216.753|99.005 +639759.886|222221.529|99.033 +639754.863|222226.311|101.587 +639749.822|222231.085|102.818 +639739.748|222240.582|103.029 +639734.682|222245.355|103.007 +639729.665|222250.083|102.946 +639724.599|222254.856|102.864 +639719.528|222259.632|102.724 +639714.489|222264.369|102.011 +639709.454|222269.102|101.444 +639704.373|222273.882|101.090 +639694.244|222283.407|99.975 +639689.209|222288.146|99.722 +639679.068|222297.659|97.460 +639658.915|222316.657|97.871 +639643.977|222330.797|101.304 +639633.988|222340.234|102.812 +639623.963|222349.676|102.657 +639609.074|222363.731|103.931 +639594.111|222377.831|104.013 +639589.091|222382.552|103.556 +639584.147|222387.213|103.583 +639579.142|222391.925|103.449 +639569.230|222401.261|103.285 +639564.299|222405.915|103.556 +639544.517|222424.548|103.501 +639534.678|222433.817|103.315 +639529.743|222438.462|103.071 +639524.769|222443.137|102.340 +639519.816|222447.795|101.947 +639494.954|222471.155|98.210 +639489.997|222475.809|97.448 +639485.063|222480.448|96.985 +639480.168|222485.063|96.969 +639475.236|222489.702|96.600 +639460.538|222503.534|95.637 +639460.752|222499.833|95.686 +639465.702|222495.161|95.707 +639470.606|222490.531|95.765 +639475.620|222485.809|96.524 +639480.594|222481.122|96.872 +639490.534|222471.752|97.576 +639495.588|222466.997|98.393 +639500.635|222462.248|99.176 +639505.622|222457.551|99.880 +639520.709|222443.348|102.023 +639525.723|222438.626|102.614 +639530.731|222433.908|103.209 +639535.748|222429.174|103.321 +639540.719|222424.484|103.510 +639585.583|222382.138|103.916 +639615.575|222353.813|103.519 +639620.562|222349.106|103.562 +639695.659|222278.155|100.651 +639700.746|222273.363|101.212 +639705.720|222268.666|101.364 +639710.810|222263.878|102.181 +639720.860|222254.402|102.828 +639725.922|222249.623|102.815 +639730.945|222244.886|103.196 +639735.959|222240.155|103.245 +639740.973|222235.422|103.303 +639746.030|222230.646|103.172 +639751.035|222225.912|102.663 +639755.997|222221.172|99.798 +639771.082|222206.914|98.804 +639776.086|222202.171|97.716 +639781.103|222197.428|97.387 +639791.183|222187.897|96.698 +639796.197|222183.149|95.866 +639801.263|222178.351|94.900 +639806.283|222173.605|94.650 +639836.498|222145.164|99.213 +639841.515|222140.434|99.569 +639861.674|222121.426|100.779 +639876.738|222107.195|100.353 +639891.813|222092.949|99.743 +639896.848|222088.185|99.225 +639901.878|222083.433|99.045 +639906.913|222078.669|98.576 +639921.985|222064.410|97.338 +639926.984|222059.683|96.905 +639932.022|222054.922|96.695 +639937.064|222050.155|96.491 +639947.070|222040.688|95.628 +639952.066|222035.970|95.509 +639962.118|222026.472|95.125 +639967.099|222021.772|95.451 +639972.094|222017.057|95.518 +639982.092|222007.614|95.537 +639987.085|222002.902|95.701 +640006.866|221984.251|97.478 +640011.865|221979.536|97.640 +640016.827|221974.845|97.530 +640021.750|221970.209|98.246 +640026.675|221965.573|98.911 +640036.563|221956.243|99.511 +640041.458|221951.628|99.880 +640046.393|221946.962|99.621 +640051.361|221942.271|99.591 +640056.277|221937.626|99.655 +640070.999|221923.724|99.725 +640080.841|221914.436|99.975 +640077.181|221914.138|100.185 +640067.229|221923.522|100.093 +640052.184|221937.702|99.743 +640047.167|221942.432|99.694 +640032.131|221956.606|99.508 +640027.135|221961.309|99.185 +640022.158|221965.993|98.576 +640017.141|221970.709|97.789 +640012.151|221975.406|97.399 +640002.084|221984.900|97.481 +639987.075|221999.028|96.256 +639972.000|222013.234|95.643 +639961.911|222022.744|95.482 +639951.831|222032.242|95.198 +639946.775|222037.018|95.610 +639941.779|222041.733|95.683 +639936.671|222046.558|96.280 +639931.626|222051.319|96.485 +639926.582|222056.080|96.738 +639921.540|222060.835|96.869 +639916.502|222065.593|97.076 +639911.451|222070.366|97.698 +639906.355|222075.185|98.414 +639901.317|222079.940|98.737 +639896.278|222084.698|99.146 +639886.211|222094.205|99.828 +639860.940|222118.049|100.679 +639855.965|222122.734|100.450 +639840.860|222136.974|100.081 +639835.794|222141.744|99.776 +639825.754|222151.196|98.911 +639800.541|222174.898|94.982 +639795.520|222179.649|95.866 +639790.500|222184.395|96.582 +639785.480|222189.138|97.143 +639780.460|222193.875|97.274 +639755.329|222217.603|99.014 +639750.361|222222.340|101.971 +639745.369|222227.070|103.096 +639740.403|222231.755|103.233 +639735.344|222236.528|103.398 +639720.326|222250.677|102.782 +639715.306|222255.411|102.788 +639710.326|222260.102|102.407 +639705.278|222264.841|101.541 +639700.246|222269.581|101.157 +639695.214|222274.318|100.892 +639690.212|222279.021|100.093 +639680.172|222288.466|99.112 +639670.083|222297.943|97.113 +639655.169|222312.018|98.079 +639635.439|222330.703|102.520 +639630.553|222335.326|103.529 +639615.658|222349.372|103.675 +639600.786|222363.405|104.425 +639561.104|222400.798|103.495 +639546.300|222414.757|103.696 +639526.555|222433.359|103.108 +639521.596|222438.026|102.584 +639516.619|222442.705|101.877 +639506.691|222452.035|100.362 +639496.709|222461.419|98.932 +639491.765|222466.071|98.249 +639486.757|222470.774|97.472 +639481.820|222475.422|96.945 +639476.894|222480.058|96.625 +639462.126|222493.957|95.351 +639456.582|222495.475|94.720 +639461.550|222490.784|94.918 +639471.530|222481.387|96.384 +639521.489|222434.335|103.126 +639526.406|222429.693|103.163 +639531.380|222424.999|103.343 +639536.339|222420.320|103.355 +639541.317|222415.626|103.605 +639546.322|222410.902|103.629 +639571.132|222387.487|103.815 +639621.001|222340.410|103.721 +639625.981|222335.707|103.708 +639635.933|222326.295|102.590 +639655.721|222307.522|97.506 +639670.714|222293.371|97.539 +639675.798|222288.600|98.987 +639685.826|222279.146|99.755 +639690.876|222274.394|100.590 +639695.966|222269.602|101.221 +639705.982|222260.163|102.130 +639711.011|222255.426|102.507 +639716.038|222250.686|102.867 +639721.058|222245.953|103.154 +639736.148|222231.709|103.248 +639741.159|222226.976|103.053 +639746.158|222222.245|102.416 +639766.214|222203.253|99.042 +639771.216|222198.507|97.850 +639776.230|222193.768|97.411 +639786.264|222184.282|96.741 +639791.332|222179.497|96.543 +639796.350|222174.748|95.814 +639801.367|222169.993|94.948 +639806.390|222165.272|96.018 +639816.433|222155.838|98.557 +639821.499|222151.065|99.048 +639851.598|222122.685|100.770 +639856.615|222117.952|100.801 +639861.638|222113.206|100.606 +639866.658|222108.466|100.538 +639871.681|222103.718|100.212 +639876.695|222098.993|100.688 +639881.727|222094.235|100.164 +639886.717|222089.511|99.353 +639901.820|222075.234|98.234 +639916.892|222060.988|97.058 +639926.972|222051.466|96.655 +639931.971|222046.741|96.323 +639937.024|222041.962|95.793 +639942.020|222037.244|95.674 +639957.053|222023.052|95.546 +639962.085|222018.309|95.863 +639967.087|222013.585|95.735 +639996.911|221985.470|97.600 +640001.901|221980.764|97.862 +640006.912|221976.030|97.722 +640011.871|221971.352|97.747 +640016.812|221966.694|98.124 +640021.731|221962.065|98.856 +640026.660|221957.422|99.472 +640041.555|221943.377|100.237 +640046.487|221938.720|100.054 +640051.431|221934.062|100.456 +640056.369|221929.396|100.212 +640061.337|221924.708|100.276 +640076.117|221910.760|100.337 +640081.064|221906.088|100.136 +640076.025|221907.200|100.173 +640070.966|221911.974|100.566 +640065.985|221916.671|100.621 +640060.971|221921.392|100.438 +640055.942|221926.132|100.517 +640045.896|221935.602|100.578 +640040.891|221940.317|100.392 +640025.880|221954.451|99.783 +640020.902|221959.129|99.155 +640015.931|221963.802|98.402 +640010.944|221968.493|97.954 +640005.903|221973.239|97.600 +640000.892|221977.963|97.682 +639995.881|221982.684|97.716 +639990.843|221987.430|97.426 +639985.823|221992.148|96.738 +639965.803|222010.997|95.784 +639955.711|222020.507|95.683 +639950.719|222025.210|95.555 +639935.585|222039.475|95.686 +639930.532|222044.245|96.058 +639925.530|222048.966|96.430 +639905.352|222068.004|97.637 +639895.312|222077.486|98.704 +639890.228|222082.284|99.054 +639880.212|222091.736|99.578 +639870.142|222101.249|100.813 +639850.098|222120.134|100.545 +639830.015|222139.062|100.493 +639825.043|222143.744|100.343 +639820.023|222148.459|99.459 +639815.000|222153.184|99.030 +639799.974|222167.275|95.083 +639789.930|222176.766|96.512 +639784.907|222181.506|96.692 +639769.890|222195.673|97.539 +639764.882|222200.412|98.682 +639749.883|222214.570|99.807 +639739.952|222223.986|102.956 +639734.944|222228.713|103.318 +639719.936|222242.856|103.141 +639714.962|222247.541|102.971 +639709.981|222252.229|102.669 +639704.946|222256.965|102.072 +639699.959|222261.656|101.614 +639694.976|222266.350|101.337 +639689.941|222271.090|100.932 +639674.938|222285.196|98.914 +639664.868|222294.660|97.448 +639659.884|222299.360|97.405 +639630.312|222327.347|103.477 +639625.353|222332.028|103.955 +639620.370|222336.728|103.907 +639600.585|222355.398|104.979 +639585.732|222369.403|105.239 +639565.884|222388.093|104.251 +639551.058|222402.066|103.952 +639541.173|222411.377|103.657 +639536.272|222415.998|103.782 +639531.335|222420.649|103.425 +639526.357|222425.334|103.251 +639521.435|222429.973|103.166 +639486.629|222462.690|98.170 +639481.640|222467.387|97.558 +639476.681|222472.045|96.835 +639471.746|222476.690|96.384 +639466.778|222481.359|95.643 +639461.834|222486.011|95.186 +639452.010|222495.258|94.519 +639440.422|222503.049|92.970 +639445.451|222498.312|93.699 +639450.364|222493.679|94.272 +639455.348|222488.979|94.616 +639460.289|222484.322|95.034 +639470.295|222474.892|96.314 +639475.285|222470.188|96.872 +639480.280|222465.482|97.503 +639485.224|222460.825|98.155 +639490.290|222456.058|99.161 +639495.280|222451.355|99.892 +639500.281|222446.649|100.798 +639510.255|222437.246|101.788 +639525.254|222423.106|103.184 +639530.225|222418.412|103.394 +639535.205|222413.712|103.699 +639540.216|222408.981|103.818 +639545.169|222404.303|103.836 +639550.129|222399.621|103.958 +639560.089|222390.218|104.190 +639580.115|222371.320|105.165 +639585.068|222366.645|105.394 +639590.100|222361.890|105.397 +639595.068|222357.193|105.114 +639600.067|222352.478|105.400 +639605.011|222347.796|104.742 +639624.933|222328.962|103.925 +639669.711|222286.561|98.179 +639674.804|222281.761|98.758 +639684.850|222272.297|100.170 +639694.930|222262.799|101.422 +639699.959|222258.053|101.806 +639705.001|222253.311|102.626 +639709.981|222248.614|103.108 +639715.041|222243.834|103.172 +639720.058|222239.098|103.337 +639735.094|222224.897|103.282 +639745.131|222215.384|101.617 +639750.099|222210.645|99.078 +639765.141|222196.426|98.551 +639775.160|222186.937|97.122 +639780.177|222182.195|96.917 +639785.194|222177.452|96.698 +639795.182|222168.006|96.152 +639800.248|222163.221|96.192 +639810.239|222153.836|98.957 +639815.256|222149.108|99.548 +639850.311|222116.016|100.837 +639855.328|222111.277|100.825 +639860.352|222106.531|100.523 +639865.320|222101.837|100.612 +639875.369|222092.333|99.929 +639880.353|222087.612|99.292 +639895.401|222073.381|98.170 +639900.396|222068.650|97.475 +639920.406|222049.725|96.210 +639925.390|222045.022|96.296 +639930.437|222040.246|95.881 +639945.367|222026.140|95.625 +639950.356|222021.427|95.674 +639955.337|222016.731|96.015 +639965.233|222007.382|95.933 +639980.175|221993.270|95.991 +639985.082|221988.652|96.951 +639995.012|221979.283|97.475 +639999.969|221974.604|97.460 +640004.915|221969.931|97.609 +640009.838|221965.295|98.271 +640014.776|221960.638|98.676 +640019.692|221956.008|99.414 +640024.621|221951.363|99.975 +640029.555|221946.712|100.423 +640039.428|221937.385|100.481 +640069.049|221909.410|100.560 +640078.970|221900.035|100.331 +640063.666|221911.053|101.044 +640058.670|221915.762|101.285 +640038.614|221934.651|100.822 +640033.609|221939.363|100.633 +640028.595|221944.087|100.593 +640023.557|221948.827|100.194 +640018.583|221953.500|99.469 +640013.557|221958.227|98.877 +640003.486|221967.700|97.978 +639998.460|221972.425|97.362 +639993.455|221977.137|97.256 +639978.285|221991.414|96.360 +639973.198|221996.202|96.058 +639968.135|222000.978|96.354 +639963.094|222005.721|96.119 +639947.872|222020.062|95.774 +639942.776|222024.863|95.808 +639922.449|222044.028|96.372 +639917.364|222048.817|96.262 +639912.271|222053.621|96.549 +639907.175|222058.427|96.936 +639896.998|222068.028|97.497 +639881.733|222082.436|98.908 +639876.646|222087.240|99.417 +639871.562|222092.038|99.926 +639861.406|222101.621|100.639 +639856.334|222106.406|100.895 +639851.259|222111.191|101.105 +639846.145|222116.004|100.819 +639810.617|222149.456|99.484 +639790.330|222168.521|96.616 +639785.255|222173.300|96.610 +639780.183|222178.080|96.625 +639770.045|222187.644|97.234 +639744.884|222211.413|100.596 +639739.849|222216.186|102.258 +639734.847|222220.913|103.081 +639729.836|222225.641|103.285 +639714.782|222239.826|103.340 +639709.713|222244.599|103.224 +639704.733|222249.287|102.864 +639699.691|222254.024|102.233 +639694.653|222258.764|101.681 +639689.666|222263.457|101.325 +639684.616|222268.203|100.481 +639679.565|222272.949|99.746 +639674.551|222277.655|98.865 +639664.554|222287.061|97.999 +639649.615|222301.149|98.320 +639605.352|222342.980|104.797 +639590.627|222356.870|105.604 +639585.744|222361.475|105.793 +639580.798|222366.139|105.702 +639575.878|222370.766|105.367 +639570.916|222375.438|105.098 +639561.080|222384.698|104.608 +639556.179|222389.319|104.601 +639546.334|222398.585|104.141 +639541.414|222403.218|103.998 +639536.498|222407.851|103.885 +639526.692|222417.086|103.522 +639516.924|222426.282|103.148 +639511.971|222430.942|102.730 +639506.993|222435.621|102.044 +639502.135|222440.196|101.660 +639492.201|222449.529|100.191 +639477.373|222463.458|97.771 +639472.444|222468.085|96.850 +639467.512|222472.727|96.475 +639452.757|222486.596|94.418 +639438.059|222500.416|92.800 +639434.435|222500.775|92.172 +639444.390|222491.396|93.485 +639449.358|222486.715|94.129 +639454.354|222482.003|94.574 +639459.310|222477.333|95.150 +639464.376|222472.572|96.418 +639469.375|222467.860|97.030 +639494.417|222444.271|100.679 +639499.480|222439.507|101.739 +639504.424|222434.844|101.998 +639509.441|222430.119|102.575 +639514.452|222425.395|103.151 +639519.417|222420.707|103.187 +639524.391|222416.013|103.349 +639529.378|222411.310|103.715 +639534.337|222406.625|103.769 +639539.345|222401.901|103.812 +639544.319|222397.207|104.096 +639549.281|222392.525|104.245 +639554.304|222387.786|104.617 +639569.264|222373.667|104.998 +639584.242|222359.540|105.897 +639599.211|222345.394|105.373 +639624.140|222321.827|103.995 +639634.077|222312.399|101.572 +639643.977|222303.005|99.203 +639664.042|222284.035|97.999 +639679.187|222269.767|99.871 +639684.235|222265.015|100.542 +639689.337|222260.214|101.578 +639694.314|222255.517|101.770 +639709.411|222241.289|103.349 +639714.474|222236.510|103.425 +639729.510|222222.306|103.184 +639734.557|222217.527|102.575 +639744.536|222208.054|99.731 +639759.621|222193.789|98.624 +639764.672|222188.998|97.481 +639769.689|222184.252|97.082 +639779.774|222174.721|96.692 +639784.795|222169.978|96.588 +639840.091|222117.845|101.267 +639860.172|222098.874|100.734 +639870.181|222089.398|99.639 +639875.211|222084.646|99.359 +639880.240|222079.894|99.118 +639905.285|222056.199|96.680 +639935.281|222027.862|95.777 +639940.267|222023.159|95.954 +639945.263|222018.440|95.860 +639965.130|221999.686|96.250 +639970.074|221995.023|96.396 +639984.954|221980.983|96.927 +639989.849|221976.363|97.143 +639994.845|221971.650|97.326 +640004.632|221962.439|98.859 +640014.477|221953.149|99.286 +640019.396|221948.516|99.993 +640024.285|221943.911|100.438 +640029.187|221939.284|100.621 +640034.100|221934.648|100.685 +640038.986|221930.042|101.163 +640053.744|221916.110|101.212 +640058.640|221911.480|100.901 +640063.547|221906.853|101.182 +640073.377|221897.566|100.880 +640078.333|221892.881|100.520 +640078.714|221889.333|100.386 +640073.706|221894.057|100.721 +640068.753|221898.727|101.014 +640063.821|221903.372|101.017 +640058.883|221908.029|101.160 +640048.974|221917.366|101.282 +640039.090|221926.674|101.148 +640034.140|221931.331|100.874 +640029.232|221935.949|100.657 +640024.221|221940.668|100.602 +640019.332|221945.264|100.142 +640014.404|221949.897|99.527 +640009.399|221954.612|99.478 +639994.552|221968.569|97.920 +639989.584|221973.235|97.161 +639984.591|221977.935|96.902 +639979.644|221982.590|96.698 +639974.594|221987.348|96.683 +639969.601|221992.048|96.491 +639959.561|222001.503|96.311 +639944.489|222015.694|95.921 +639939.493|222020.397|95.924 +639934.449|222025.155|96.079 +639919.330|222039.399|96.094 +639909.245|222048.905|96.524 +639904.161|222053.697|96.634 +639899.122|222058.449|96.838 +639894.078|222063.210|97.396 +639878.862|222077.572|98.978 +639873.784|222082.360|99.216 +639868.755|222087.100|99.423 +639863.729|222091.839|99.597 +639843.481|222110.938|100.965 +639838.412|222115.718|101.252 +639833.395|222120.448|101.279 +639803.000|222149.047|99.691 +639787.791|222163.324|96.640 +639782.719|222168.101|96.631 +639777.601|222172.923|96.661 +639772.584|222177.656|97.076 +639767.467|222182.478|97.012 +639762.401|222187.254|97.402 +639757.393|222191.994|98.539 +639727.132|222220.584|103.111 +639722.073|222225.351|103.266 +639711.999|222234.846|103.443 +639706.933|222239.616|103.361 +639701.907|222244.346|103.090 +639696.872|222249.080|102.514 +639691.785|222253.859|101.880 +639681.693|222263.342|100.459 +639676.639|222268.084|99.673 +639671.582|222272.836|98.816 +639661.436|222282.373|97.768 +639656.419|222287.104|98.100 +639641.432|222301.247|99.520 +639616.670|222324.668|104.629 +639606.739|222334.031|105.339 +639581.934|222357.409|105.851 +639572.016|222366.742|105.324 +639562.144|222376.033|104.918 +639557.185|222380.702|104.769 +639552.271|222385.326|104.617 +639547.355|222389.956|104.425 +639542.387|222394.631|104.233 +639537.504|222399.225|103.937 +639532.532|222403.903|103.745 +639527.656|222408.497|103.553 +639522.730|222413.133|103.416 +639517.811|222417.766|103.361 +639512.928|222422.362|103.181 +639503.043|222431.653|102.032 +639498.099|222436.304|101.806 +639488.266|222445.539|100.395 +639453.607|222478.086|94.827 +639448.734|222482.667|94.153 +639438.901|222491.909|93.013 +639433.960|222496.548|92.257 +639472.310|222457.570|98.417 +639477.333|222452.833|98.868 +639482.341|222448.118|99.746 +639487.321|222443.424|100.350 +639492.366|222438.672|101.188 +639497.368|222433.966|102.130 +639502.345|222429.266|102.233 +639507.325|222424.572|103.001 +639512.345|222419.832|103.093 +639517.323|222415.132|103.294 +639522.248|222410.481|103.455 +639527.262|222405.744|103.583 +639532.231|222401.054|103.727 +639537.199|222396.363|103.934 +639542.216|222391.626|104.147 +639547.135|222386.981|104.391 +639552.149|222382.247|104.641 +639557.151|222377.523|104.757 +639562.116|222372.838|105.031 +639567.164|222368.071|105.174 +639572.126|222363.389|105.467 +639607.050|222330.383|105.272 +639611.973|222325.728|105.062 +639641.758|222297.479|99.155 +639646.796|222292.700|98.298 +639651.819|222287.951|98.170 +639677.060|222264.134|99.941 +639687.210|222254.579|101.709 +639692.236|222249.833|101.989 +639697.280|222245.084|102.876 +639702.352|222240.299|103.212 +639707.421|222235.513|103.440 +639712.432|222230.774|103.428 +639717.446|222226.037|103.413 +639722.502|222221.258|103.193 +639727.510|222216.521|102.962 +639732.555|222211.739|102.191 +639737.599|222206.957|101.346 +639742.574|222202.214|98.914 +639757.707|222187.894|97.890 +639762.718|222183.149|97.244 +639767.784|222178.357|96.872 +639772.849|222173.569|96.759 +639777.869|222168.823|96.628 +639782.984|222163.989|96.664 +639788.004|222159.249|96.856 +639818.301|222130.705|101.419 +639828.427|222121.134|101.276 +639833.444|222116.397|101.361 +639838.506|222111.609|101.227 +639843.578|222106.811|100.758 +639848.595|222102.066|100.642 +639858.687|222092.522|100.215 +639868.798|222082.948|99.066 +639873.818|222078.206|99.109 +639878.853|222073.436|98.542 +639888.930|222063.898|97.494 +639898.997|222054.376|97.116 +639904.033|222049.615|96.924 +639914.064|222040.127|96.430 +639934.122|222021.165|96.131 +639939.118|222016.444|96.024 +639944.108|222011.732|96.149 +639949.106|222007.004|95.988 +639954.084|222002.307|96.399 +639959.076|221997.592|96.475 +639964.097|221992.843|95.997 +639974.021|221983.471|96.543 +640008.594|221950.860|99.822 +640013.511|221946.215|99.761 +640018.449|221941.554|100.130 +640023.325|221936.958|100.801 +640033.134|221927.695|101.157 +640038.032|221923.074|101.489 +640042.970|221918.402|101.194 +640047.828|221913.812|101.392 +640057.640|221904.539|101.246 +640067.409|221895.304|101.090 +640072.292|221890.692|101.108 +640078.833|221881.384|100.657 +640068.966|221890.692|101.233 +640064.016|221895.362|101.489 +640059.085|221900.007|101.474 +640044.247|221913.988|101.590 +640039.346|221918.603|101.270 +640019.570|221937.223|100.453 +640014.623|221941.875|100.103 +640009.667|221946.541|99.972 +640004.708|221951.217|99.962 +639975.024|221979.127|96.646 +639970.031|221983.827|96.408 +639965.032|221988.533|96.277 +639960.040|221993.233|96.064 +639955.026|221997.967|96.411 +639950.079|222002.624|96.287 +639945.034|222007.379|96.332 +639940.036|222012.091|96.381 +639935.049|222016.785|96.134 +639930.002|222021.546|96.299 +639925.009|222026.246|96.213 +639909.976|222040.423|96.716 +639904.932|222045.178|96.954 +639899.902|222049.914|96.765 +639884.784|222064.173|97.536 +639879.746|222068.931|98.036 +639874.705|222073.695|98.679 +639869.621|222078.489|99.042 +639864.640|222083.183|99.100 +639859.559|222087.981|99.630 +639854.475|222092.787|100.557 +639844.383|222102.303|100.770 +639839.357|222107.046|101.194 +639834.334|222111.780|101.340 +639829.268|222116.559|101.444 +639819.182|222126.059|101.380 +639788.918|222154.510|97.554 +639783.844|222159.277|96.930 +639778.772|222164.053|96.695 +639773.749|222168.786|96.664 +639768.680|222173.569|96.927 +639763.608|222178.348|97.055 +639758.594|222183.088|97.801 +639738.346|222202.199|99.527 +639723.264|222216.472|103.059 +639718.208|222221.243|103.340 +639713.191|222225.970|103.358 +639708.131|222230.740|103.486 +639703.065|222235.513|103.410 +639692.955|222245.020|102.602 +639687.917|222249.757|102.002 +639677.773|222259.285|100.478 +639672.716|222264.034|99.597 +639667.654|222268.785|98.618 +639662.569|222273.571|98.393 +639657.531|222278.313|98.185 +639652.545|222283.007|98.115 +639647.476|222287.790|98.329 +639637.521|222297.190|99.770 +639612.713|222320.653|104.934 +639607.757|222325.332|105.440 +639592.810|222339.429|106.366 +639577.832|222353.535|106.074 +639567.853|222362.920|105.394 +639562.836|222367.641|105.004 +639557.874|222372.311|104.809 +639552.902|222376.990|104.477 +639547.949|222381.656|104.437 +639542.975|222386.335|104.135 +639538.016|222391.007|104.077 +639533.044|222395.686|103.864 +639528.073|222400.365|103.699 +639523.187|222404.961|103.431 +639518.219|222409.643|103.321 +639513.284|222414.285|103.120 +639508.356|222418.924|102.983 +639498.486|222428.205|102.056 +639473.761|222451.440|98.981 +639439.013|222484.060|92.656 +639434.143|222488.647|92.605 +639429.171|222493.311|91.568 +639424.316|222497.880|91.230 +639419.387|222502.513|90.681 +639415.946|222502.595|90.056 +639420.884|222497.944|90.700 +639425.867|222493.253|91.343 +639430.921|222488.498|92.272 +639435.877|222483.828|92.720 +639440.787|222479.195|92.733 +639450.934|222469.661|95.287 +639460.968|222460.228|97.366 +639465.976|222455.512|98.115 +639470.984|222450.800|98.911 +639475.974|222446.100|99.557 +639480.954|222441.412|100.115 +639495.999|222427.245|102.197 +639505.957|222417.860|103.090 +639510.907|222413.182|102.946 +639515.887|222408.485|103.190 +639520.868|222403.788|103.465 +639525.845|222399.094|103.736 +639530.819|222394.400|103.998 +639535.815|222389.681|103.961 +639540.728|222385.045|104.062 +639545.742|222380.315|104.330 +639550.747|222375.591|104.467 +639555.716|222370.906|104.778 +639560.739|222366.172|105.254 +639565.719|222361.466|105.126 +639570.736|222356.736|105.583 +639575.750|222352.011|106.013 +639580.706|222347.336|106.314 +639585.741|222342.584|106.375 +639590.719|222337.884|106.290 +639595.681|222333.190|105.982 +639600.692|222328.453|105.705 +639615.624|222314.335|104.720 +639620.544|222309.668|103.550 +639625.509|222304.959|102.288 +639660.427|222271.916|98.408 +639675.563|222257.657|100.206 +639685.667|222248.153|102.172 +639690.648|222243.456|102.565 +639695.729|222238.671|103.117 +639700.749|222233.934|103.373 +639705.769|222229.198|103.565 +639710.777|222224.467|103.437 +639715.830|222219.688|103.187 +639720.838|222214.958|102.953 +639730.884|222205.448|101.572 +639735.871|222200.711|100.054 +639756.003|222181.664|97.987 +639761.060|222176.876|97.189 +639766.074|222172.133|96.878 +639771.139|222167.348|96.744 +639776.208|222162.562|96.677 +639781.228|222157.829|97.042 +639816.536|222124.572|101.617 +639826.567|222115.099|101.553 +639836.650|222105.574|101.206 +639841.667|222100.828|100.944 +639851.762|222091.285|100.185 +639861.863|222081.726|99.112 +639866.893|222076.974|98.862 +639877.012|222067.394|97.597 +639882.038|222062.649|97.646 +639897.138|222048.372|96.957 +639902.164|222043.626|97.149 +639907.202|222038.865|96.933 +639922.314|222024.579|96.518 +639927.307|222019.861|96.384 +639932.352|222015.091|96.210 +639947.366|222000.911|96.457 +639952.362|221996.196|96.466 +639957.415|221991.417|96.195 +639962.402|221986.711|96.463 +639967.349|221982.038|96.524 +639972.341|221977.323|96.668 +639977.307|221972.647|97.463 +639982.220|221968.023|98.298 +640001.992|221949.376|100.115 +640016.797|221935.401|100.581 +640021.728|221930.749|101.047 +640026.626|221926.125|101.328 +640036.487|221916.820|101.688 +640041.397|221912.184|101.828 +640051.248|221902.872|101.672 +640056.177|221898.215|101.608 +640061.063|221893.597|101.502 +640066.001|221888.934|101.380 +640070.914|221884.285|100.962 +640075.824|221879.637|100.599 +640080.722|221875.007|100.441 +640079.119|221872.913|100.490 +640074.111|221877.641|100.764 +640069.155|221882.320|101.054 +640034.292|221915.204|101.624 +640019.430|221929.207|101.005 +640014.489|221933.861|100.639 +639999.594|221947.894|100.017 +639984.668|221961.955|99.210 +639979.742|221966.585|98.573 +639974.789|221971.239|97.567 +639969.821|221975.909|96.777 +639964.828|221980.615|96.619 +639959.829|221985.327|96.561 +639949.875|221994.715|96.668 +639944.885|221999.418|96.509 +639934.894|222008.842|96.576 +639929.913|222013.533|96.226 +639924.914|222018.248|96.393 +639919.870|222023.006|96.512 +639914.926|222027.670|96.597 +639899.906|222041.840|96.933 +639894.873|222046.583|96.887 +639889.887|222051.289|96.994 +639879.862|222060.750|97.478 +639874.878|222065.453|97.603 +639849.808|222089.136|100.072 +639839.802|222098.591|101.105 +639834.831|222103.279|101.014 +639829.807|222108.018|101.368 +639824.790|222112.755|101.557 +639814.802|222122.170|101.392 +639804.768|222131.634|101.624 +639784.694|222150.507|98.496 +639779.668|222155.226|97.259 +639774.642|222159.956|96.719 +639769.618|222164.693|96.811 +639764.601|222169.433|97.344 +639759.581|222174.169|97.311 +639754.567|222178.909|97.890 +639744.539|222188.379|98.893 +639739.516|222193.113|98.679 +639729.519|222202.580|100.880 +639724.529|222207.310|102.242 +639719.528|222212.038|102.809 +639714.520|222216.765|103.184 +639709.512|222221.493|103.504 +639704.495|222226.223|103.462 +639699.478|222230.954|103.422 +639694.455|222235.684|103.236 +639689.471|222240.375|102.791 +639684.433|222245.115|102.212 +639679.410|222249.848|102.126 +639674.371|222254.563|100.258 +639644.217|222282.949|98.161 +639639.207|222287.680|98.682 +639634.269|222292.356|99.706 +639604.563|222320.461|105.555 +639599.607|222325.140|106.068 +639594.636|222329.831|106.281 +639589.667|222334.519|106.577 +639579.740|222343.876|106.506 +639574.735|222348.588|106.235 +639564.750|222357.985|105.373 +639554.771|222367.382|104.787 +639549.796|222372.064|104.419 +639544.831|222376.740|104.190 +639539.872|222381.412|104.126 +639534.892|222386.100|103.769 +639529.984|222390.727|103.754 +639505.225|222414.053|103.151 +639495.313|222423.380|102.300 +639475.385|222442.119|99.795 +639470.448|222446.765|99.213 +639450.520|222465.488|95.921 +639445.487|222470.207|94.552 +639440.440|222474.931|92.583 +639435.536|222479.555|92.641 +639430.665|222484.142|92.605 +639415.818|222498.096|90.273 +639410.874|222502.744|89.608 +639414.782|222495.667|90.181 +639419.723|222491.009|90.870 +639434.676|222476.903|92.629 +639439.580|222472.270|92.595 +639474.779|222439.129|99.856 +639489.815|222424.950|101.822 +639494.804|222420.241|102.102 +639504.756|222410.850|102.977 +639529.701|222387.289|103.870 +639539.613|222377.922|104.062 +639544.630|222373.186|104.355 +639549.580|222368.507|104.428 +639554.600|222363.770|104.839 +639559.611|222359.040|105.196 +639569.633|222349.582|105.949 +639574.592|222344.900|106.339 +639579.591|222340.182|106.580 +639584.629|222335.421|106.769 +639589.558|222330.764|106.708 +639594.514|222326.070|106.354 +639599.531|222321.327|106.171 +639604.471|222316.642|105.531 +639609.467|222311.912|104.976 +639614.393|222307.236|103.931 +639619.312|222302.566|102.785 +639624.293|222297.839|101.886 +639629.258|222293.124|100.581 +639634.180|222288.448|99.338 +639639.170|222283.718|98.518 +639644.187|222278.972|98.283 +639649.210|222274.223|98.219 +639654.239|222269.471|98.329 +639659.229|222264.759|98.694 +639664.270|222260.004|99.146 +639669.363|222255.203|99.868 +639674.374|222250.485|100.971 +639679.431|222245.730|102.160 +639684.503|222240.939|102.492 +639689.489|222236.239|103.087 +639694.555|222231.453|103.318 +639699.572|222226.714|103.440 +639704.583|222221.977|103.477 +639709.591|222217.241|103.312 +639714.596|222212.504|103.099 +639729.616|222198.251|99.901 +639744.634|222184.023|98.259 +639749.697|222179.238|98.234 +639754.711|222174.495|97.942 +639759.722|222169.750|97.484 +639764.739|222165.007|97.411 +639769.798|222160.212|96.914 +639774.818|222155.470|96.914 +639799.998|222131.750|101.444 +639805.012|222127.013|101.523 +639815.083|222117.491|101.474 +639825.110|222108.009|101.297 +639830.176|222103.218|101.023 +639835.141|222098.527|101.169 +639840.204|222093.738|101.041 +639845.230|222088.974|100.322 +639850.257|222084.210|99.572 +639855.286|222079.443|98.917 +639860.358|222074.649|98.740 +639875.448|222060.363|97.490 +639880.478|222055.608|97.326 +639900.597|222036.597|97.119 +639905.578|222031.891|97.170 +639910.619|222027.121|96.820 +639915.655|222022.366|96.756 +639920.650|222017.642|96.518 +639925.686|222012.887|96.536 +639930.730|222008.114|96.280 +639945.741|221993.941|96.579 +639950.734|221989.222|96.607 +639955.775|221984.461|96.646 +639960.762|221979.752|96.835 +639965.767|221975.025|96.695 +639970.732|221970.343|97.396 +639985.622|221956.319|99.658 +639995.549|221946.949|100.176 +640000.487|221942.289|100.499 +640015.376|221928.232|101.017 +640020.317|221923.571|101.352 +640025.246|221918.923|101.886 +640045.049|221900.220|102.075 +640059.862|221886.215|101.459 +640064.809|221881.533|101.179 +640074.882|221868.442|100.444 +640069.878|221873.166|100.700 +640054.830|221887.370|101.511 +640044.838|221896.785|101.355 +640029.738|221911.038|102.062 +640019.747|221920.447|101.453 +640014.800|221925.104|101.127 +640009.780|221929.838|101.288 +639999.780|221939.262|100.987 +639994.750|221943.993|100.508 +639989.813|221948.644|100.154 +639984.780|221953.384|99.786 +639969.857|221967.417|97.945 +639964.889|221972.092|97.241 +639959.902|221976.786|96.887 +639954.858|221981.538|96.783 +639949.862|221986.250|96.768 +639944.873|221990.950|96.564 +639939.828|221995.705|96.536 +639924.844|222009.836|96.579 +639919.849|222014.548|96.701 +639914.804|222019.306|96.850 +639909.812|222024.018|97.003 +639899.781|222033.479|97.274 +639894.800|222038.170|96.991 +639889.820|222042.861|96.750 +639884.784|222047.613|96.951 +639879.798|222052.313|96.985 +639864.780|222066.498|98.320 +639859.748|222071.247|98.566 +639849.784|222080.653|99.231 +639839.768|222090.123|100.663 +639834.788|222094.827|101.172 +639829.768|222099.563|101.316 +639824.797|222104.248|101.182 +639819.776|222108.985|101.428 +639804.820|222123.091|101.621 +639799.849|222127.772|101.407 +639794.832|222132.500|101.255 +639769.908|222155.924|97.006 +639764.891|222160.663|97.436 +639759.920|222165.354|97.716 +639754.897|222170.091|97.774 +639749.883|222174.828|98.304 +639744.911|222179.518|98.380 +639715.068|222207.731|102.632 +639710.067|222212.458|103.184 +639705.101|222217.143|103.337 +639700.084|222221.874|103.282 +639695.070|222226.604|103.358 +639690.099|222231.292|103.273 +639685.122|222235.983|102.974 +639680.089|222240.722|102.428 +639670.080|222250.129|100.563 +639665.072|222254.838|99.591 +639660.076|222259.541|99.097 +639655.035|222264.290|98.640 +639650.033|222268.999|98.149 +639640.033|222278.438|98.320 +639635.119|222283.081|98.829 +639630.120|222287.808|99.527 +639625.207|222292.471|100.977 +639620.281|222297.141|102.130 +639615.356|222301.807|103.248 +639610.446|222306.465|104.659 +639595.638|222320.461|106.247 +639590.667|222325.155|106.394 +639585.751|222329.800|106.711 +639580.770|222334.497|106.763 +639575.765|222339.216|106.385 +639565.853|222348.555|105.839 +639545.928|222367.324|104.303 +639531.039|222381.348|103.105 +639526.098|222386.015|103.303 +639511.251|222400.017|103.035 +639506.332|222404.656|102.934 +639501.345|222409.353|102.672 +639491.427|222418.695|101.685 +639476.595|222432.664|100.441 +639471.609|222437.358|99.780 +639466.638|222442.040|99.368 +639461.724|222446.661|98.536 +639441.583|222465.565|93.086 +639436.630|222470.228|92.592 +639431.768|222474.815|92.556 +639412.011|222493.411|90.178 +639407.089|222498.047|89.700 +639402.123|222502.717|88.865 +639398.707|222502.741|88.139 +639403.617|222498.114|88.932 +639408.640|222493.384|89.910 +639413.611|222488.693|90.453 +639418.537|222484.048|91.038 +639428.501|222474.654|92.480 +639433.408|222470.015|92.510 +639438.331|222465.363|92.739 +639453.495|222451.111|97.277 +639463.471|222441.711|99.008 +639468.439|222437.020|99.459 +639473.422|222432.320|100.103 +639493.338|222413.532|102.300 +639508.221|222399.475|102.953 +639513.229|222394.741|103.013 +639528.070|222380.708|102.751 +639538.086|222371.259|103.751 +639543.024|222366.590|103.641 +639597.943|222314.719|106.110 +639602.880|222310.040|105.370 +639627.633|222286.540|99.911 +639632.620|222281.809|99.060 +639637.576|222277.119|98.527 +639642.599|222272.370|98.512 +639647.607|222267.627|98.179 +639652.602|222262.915|98.682 +639657.690|222258.114|99.173 +639662.676|222253.408|99.548 +639667.727|222248.650|100.429 +639672.802|222243.883|102.218 +639677.880|222239.095|102.666 +639682.897|222234.352|102.867 +639687.923|222229.609|103.337 +639692.937|222224.873|103.376 +639697.945|222220.139|103.279 +639702.998|222215.357|103.242 +639708.006|222210.623|103.166 +639713.005|222205.890|102.675 +639722.975|222196.420|100.100 +639727.974|222191.680|99.481 +639733.027|222186.895|99.002 +639743.046|222177.415|98.499 +639753.071|222167.930|98.033 +639768.162|222153.662|97.926 +639778.250|222144.165|100.045 +639803.302|222120.509|101.596 +639808.362|222115.730|101.581 +639813.324|222111.036|101.526 +639818.387|222106.247|101.279 +639823.398|222101.511|101.358 +639843.469|222082.513|99.953 +639848.541|222077.703|99.219 +639868.596|222058.720|97.762 +639873.589|222053.986|96.991 +639878.609|222049.250|97.305 +639883.638|222044.492|97.067 +639888.664|222039.740|97.067 +639918.663|222011.384|96.820 +639923.604|222006.718|96.835 +639928.648|222001.945|96.558 +639933.635|221997.232|96.613 +639938.573|221992.569|96.719 +639943.590|221987.838|97.292 +639948.591|221983.105|97.036 +639958.528|221973.717|97.103 +639963.456|221969.066|97.554 +639983.278|221950.375|100.005 +639988.209|221945.724|100.417 +639993.135|221941.079|100.904 +639998.073|221936.416|101.166 +640012.904|221922.410|101.794 +640017.872|221917.713|101.633 +640022.801|221913.062|102.145 +640027.708|221908.426|102.212 +640042.522|221894.420|101.986 +640047.478|221889.741|102.184 +640052.422|221885.063|101.849 +640057.362|221880.387|101.608 +640062.300|221875.721|101.483 +640067.268|221871.014|100.932 +640077.153|221861.657|100.039 +640077.891|221857.579|99.731 +640072.855|221862.343|100.374 +640057.829|221876.531|101.386 +640052.766|221881.317|101.895 +640047.728|221886.072|102.105 +640042.744|221890.778|102.267 +640037.730|221895.505|102.151 +640027.687|221904.978|102.276 +640022.673|221909.709|102.276 +640017.690|221914.400|101.770 +640007.604|221923.916|102.047 +639987.563|221942.792|100.535 +639982.525|221947.541|100.285 +639967.458|221961.720|98.569 +639962.502|221966.377|97.576 +639957.406|221971.184|97.579 +639952.374|221975.921|97.204 +639947.326|221980.688|97.311 +639942.273|221985.455|97.487 +639932.166|221994.977|96.820 +639927.127|221999.726|96.698 +639922.034|222004.532|96.866 +639916.993|222009.287|96.914 +639911.906|222014.091|97.021 +639901.771|222023.656|97.487 +639881.502|222042.770|97.271 +639876.421|222047.567|97.463 +639861.220|222061.920|98.371 +639851.070|222071.500|98.652 +639845.989|222076.298|99.109 +639835.836|222085.899|100.301 +639830.761|222090.700|101.087 +639825.738|222095.445|101.493 +639820.670|222100.228|101.678 +639815.607|222105.004|101.621 +639810.541|222109.777|101.456 +639800.412|222119.336|101.700 +639785.273|222133.606|101.160 +639780.250|222138.328|100.410 +639775.181|222143.098|99.728 +639770.112|222147.868|99.225 +639765.086|222152.595|98.457 +639754.997|222162.108|98.286 +639749.977|222166.845|98.240 +639744.914|222171.627|98.801 +639739.891|222176.364|98.618 +639734.868|222181.097|98.380 +639729.808|222185.880|98.929 +639724.795|222190.613|99.274 +639719.796|222195.347|100.173 +639709.817|222204.805|102.742 +639704.806|222209.535|103.041 +639699.743|222214.311|103.056 +639694.781|222218.996|103.282 +639689.767|222223.727|103.471 +639684.744|222228.460|103.279 +639679.754|222233.154|102.690 +639664.651|222247.352|100.142 +639659.653|222252.055|99.517 +639654.660|222256.758|99.164 +639649.655|222261.464|98.591 +639644.614|222266.216|98.243 +639639.688|222270.864|98.493 +639634.705|222275.564|98.512 +639629.745|222280.249|99.094 +639624.850|222284.882|100.017 +639615.014|222294.206|102.809 +639595.446|222312.719|106.129 +639555.898|222349.990|104.818 +639541.076|222363.950|103.724 +639531.222|222373.228|103.138 +639516.506|222387.100|102.669 +639511.602|222391.727|102.782 +639506.679|222396.366|102.696 +639477.187|222424.145|100.868 +639467.381|222433.375|99.865 +639437.499|222461.425|92.821 +639432.607|222466.034|92.498 +639427.745|222470.618|92.492 +639422.862|222475.221|92.309 +639417.918|222479.857|91.099 +639412.965|222484.523|90.757 +639408.067|222489.129|90.056 +639403.117|222493.783|89.364 +639393.239|222503.073|87.807 +639392.336|222501.056|88.084 +639402.288|222491.671|89.450 +639407.281|222486.959|90.142 +639412.206|222482.310|90.669 +639417.226|222477.574|91.233 +639427.175|222468.186|92.498 +639432.091|222463.538|92.586 +639437.066|222458.838|92.830 +639477.275|222420.960|101.182 +639487.248|222411.548|102.133 +639507.094|222392.787|102.651 +639512.041|222388.109|102.498 +639521.995|222378.690|102.462 +639536.946|222364.566|103.123 +639546.989|222355.081|103.949 +639551.973|222350.380|104.550 +639556.990|222345.644|104.986 +639562.058|222340.859|105.559 +639572.074|222331.401|106.330 +639577.070|222326.682|106.555 +639582.044|222321.976|106.473 +639587.064|222317.224|106.363 +639621.766|222284.306|100.621 +639626.728|222279.588|99.222 +639631.733|222274.845|98.682 +639636.750|222270.096|98.505 +639641.773|222265.344|98.448 +639646.805|222260.589|98.585 +639651.801|222255.874|99.115 +639656.839|222251.116|99.508 +639661.878|222246.361|99.984 +639677.029|222232.084|102.907 +639687.121|222222.553|103.477 +639692.126|222217.814|103.230 +639697.125|222213.077|102.745 +639712.246|222198.767|102.212 +639717.223|222194.030|100.511 +639722.219|222189.287|99.557 +639727.276|222184.499|99.286 +639732.332|222179.710|98.896 +639737.349|222174.968|98.874 +639747.423|222165.434|98.441 +639777.626|222136.907|100.444 +639792.710|222122.664|101.642 +639797.675|222117.967|101.605 +639807.749|222108.439|101.599 +639812.714|222103.745|101.621 +639817.774|222098.960|101.645 +639822.788|222094.217|101.608 +639832.831|222084.695|100.343 +639847.907|222070.412|98.883 +639852.930|222065.657|98.676 +639862.991|222056.129|97.853 +639873.004|222046.650|97.158 +639903.018|222018.279|97.423 +639912.985|222008.851|97.341 +639918.026|222004.084|97.140 +639942.888|221980.590|97.881 +639947.845|221975.902|97.615 +639952.782|221971.236|97.747 +639957.763|221966.533|98.033 +639962.691|221961.879|98.417 +639967.614|221957.233|98.960 +639972.543|221952.582|99.389 +639977.459|221947.946|100.033 +639982.382|221943.301|100.578 +639992.239|221933.998|101.438 +640011.926|221915.396|102.072 +640016.891|221910.700|101.947 +640021.774|221906.094|102.434 +640031.671|221896.731|102.123 +640051.321|221878.150|101.861 +640056.259|221873.477|101.669 +640061.157|221868.841|101.407 +640066.138|221864.117|100.682 +640068.204|221858.880|100.124 +640063.209|221863.608|100.947 +640053.229|221873.029|101.883 +640048.249|221877.723|101.922 +640043.293|221882.402|102.337 +640028.437|221896.401|102.233 +640023.459|221901.095|102.386 +640018.516|221905.750|102.041 +640013.560|221910.419|101.904 +640003.571|221919.840|102.242 +639993.644|221929.186|101.584 +639973.716|221947.937|99.944 +639958.732|221962.037|98.630 +639953.749|221966.725|98.268 +639948.713|221971.468|98.057 +639908.461|222009.403|97.686 +639878.121|222038.003|97.814 +639852.881|222061.807|98.487 +639822.529|222090.465|101.249 +639817.463|222095.250|101.770 +639812.400|222100.020|101.575 +639807.380|222104.754|101.901 +639802.272|222109.567|101.715 +639797.209|222114.337|101.560 +639792.195|222119.061|101.380 +639787.132|222123.831|101.267 +639782.027|222128.638|100.926 +639777.007|222133.359|100.532 +639771.944|222138.130|100.267 +639746.603|222161.983|98.615 +639741.586|222166.717|98.740 +639736.523|222171.493|99.008 +639726.447|222180.997|99.356 +639716.382|222190.503|100.264 +639706.345|222199.998|102.264 +639701.337|222204.725|102.596 +639696.326|222209.450|102.736 +639691.276|222214.220|103.187 +639681.245|222223.681|103.324 +639676.215|222228.415|102.925 +639671.198|222233.148|102.904 +639661.076|222242.649|100.511 +639656.025|222247.398|99.764 +639650.984|222252.143|99.325 +639645.985|222256.846|98.835 +639640.941|222261.595|98.390 +639635.963|222266.289|98.502 +639630.937|222271.032|98.591 +639625.966|222275.723|98.822 +639611.144|222289.765|102.517 +639606.209|222294.437|103.428 +639596.352|222303.767|105.431 +639586.494|222313.082|106.485 +639581.572|222317.724|106.720 +639576.625|222322.388|106.494 +639571.629|222327.094|106.302 +639566.682|222331.757|106.138 +639561.763|222336.384|105.720 +639556.731|222341.118|105.031 +639551.802|222345.757|104.513 +639536.967|222359.720|103.224 +639532.002|222364.398|103.004 +639527.104|222369.019|103.120 +639522.169|222373.664|102.751 +639507.399|222387.584|102.209 +639502.543|222392.166|102.358 +639497.608|222396.814|102.142 +639492.741|222401.404|102.157 +639463.154|222429.254|99.505 +639448.346|222443.171|96.920 +639438.346|222452.550|94.220 +639433.326|222457.253|92.507 +639428.461|222461.840|92.449 +639423.600|222466.424|92.440 +639413.767|222475.666|90.946 +639408.841|222480.302|90.398 +639403.949|222484.904|89.736 +639399.066|222489.498|89.221 +639394.174|222494.097|88.651 +639400.017|222485.846|89.419 +639404.943|222481.198|89.968 +639409.923|222476.498|90.587 +639414.882|222471.819|91.047 +639424.822|222462.443|92.260 +639429.787|222457.750|92.403 +639434.737|222453.086|93.421 +639439.830|222448.298|94.982 +639444.920|222443.515|96.546 +639459.932|222429.373|99.368 +639464.934|222424.648|99.658 +639469.929|222419.939|100.453 +639489.821|222401.154|101.840 +639494.755|222396.491|102.081 +639499.782|222391.739|102.322 +639514.613|222377.700|101.767 +639529.603|222363.542|102.928 +639539.589|222354.108|103.519 +639544.532|222349.430|103.510 +639549.586|222344.669|104.480 +639559.568|222335.241|105.370 +639564.573|222330.514|105.702 +639569.581|222325.783|106.129 +639579.566|222316.346|106.537 +639594.483|222302.216|105.360 +639604.377|222292.819|103.303 +639609.327|222288.128|102.687 +639624.183|222274.007|98.987 +639629.191|222269.261|98.594 +639634.211|222264.512|98.426 +639639.237|222259.757|98.457 +639644.281|222254.993|98.957 +639649.301|222250.244|98.923 +639654.358|222245.477|99.816 +639659.403|222240.719|100.548 +639669.568|222231.149|102.986 +639674.579|222226.406|102.904 +639679.647|222221.617|103.193 +639684.613|222216.920|103.148 +639689.666|222212.135|102.931 +639694.668|222207.399|102.529 +639704.720|222197.874|101.651 +639709.719|222193.134|101.038 +639714.718|222188.391|100.313 +639734.899|222169.283|99.280 +639739.910|222164.537|98.844 +639744.924|222159.795|98.771 +639749.986|222155.006|98.932 +639755.006|222150.264|99.185 +639760.069|222145.478|99.487 +639765.132|222140.696|99.752 +639770.149|222135.956|100.036 +639775.212|222131.174|100.371 +639780.226|222126.437|100.776 +639785.282|222121.661|101.212 +639790.293|222116.928|101.627 +639795.353|222112.145|101.803 +639800.412|222107.366|102.059 +639805.423|222102.620|101.840 +639810.486|222097.832|101.733 +639820.563|222088.289|101.203 +639825.586|222083.525|100.356 +639835.675|222073.963|99.496 +639845.770|222064.401|98.810 +639850.793|222059.653|98.804 +639855.825|222054.879|98.158 +639860.851|222050.118|97.875 +639875.930|222035.857|97.780 +639890.941|222021.671|98.658 +639901.021|222012.125|97.957 +639905.998|222007.422|98.185 +639916.011|221997.952|98.280 +639920.989|221993.249|98.573 +639945.940|221969.648|98.521 +639960.896|221955.511|99.082 +639965.870|221950.814|99.591 +639970.799|221946.163|100.033 +639975.716|221941.521|100.679 +639980.653|221936.854|100.947 +640005.348|221913.522|102.383 +640015.233|221904.168|102.145 +640020.076|221899.596|102.535 +640025.044|221894.893|102.440 +640044.692|221876.303|102.206 +640049.642|221871.615|101.867 +640054.479|221867.040|101.809 +640064.370|221857.664|100.749 +640069.295|221852.995|100.197 +640072.941|221846.505|99.520 +640067.945|221851.233|100.261 +640062.971|221855.936|100.767 +640057.996|221860.639|101.304 +640053.034|221865.330|101.712 +640048.136|221869.954|101.913 +640043.147|221874.666|102.126 +640028.239|221888.745|102.748 +640023.325|221893.378|102.657 +640018.366|221898.056|102.547 +640013.422|221902.711|102.184 +640008.439|221907.423|102.572 +640003.480|221912.099|102.504 +639993.537|221921.474|102.123 +639988.599|221926.125|101.767 +639983.616|221930.822|101.413 +639973.695|221940.171|100.709 +639968.729|221944.843|100.023 +639963.801|221949.485|99.539 +639933.805|221977.780|98.963 +639923.784|221987.229|98.682 +639918.797|221991.932|98.606 +639913.771|221996.672|98.362 +639908.790|222001.366|98.100 +639888.643|222020.388|98.691 +639843.301|222063.176|99.027 +639838.275|222067.922|99.301 +639833.200|222072.719|99.776 +639828.128|222077.517|100.295 +639807.950|222096.579|101.724 +639802.933|222101.316|101.928 +639797.870|222106.098|102.087 +639792.808|222110.871|102.053 +639787.794|222115.599|101.712 +639782.731|222120.369|101.398 +639777.674|222125.136|101.090 +639772.657|222129.863|100.758 +639767.592|222134.637|100.295 +639762.523|222139.410|99.950 +639757.506|222144.140|99.606 +639752.437|222148.916|99.313 +639747.371|222153.696|99.127 +639742.351|222158.429|98.990 +639732.223|222167.988|99.213 +639727.205|222172.724|99.365 +639722.146|222177.504|99.594 +639717.083|222182.283|99.822 +639712.072|222187.017|100.173 +639707.019|222191.796|100.566 +639701.962|222196.572|100.983 +639696.960|222201.303|101.575 +639691.907|222206.079|101.992 +639686.902|222210.806|102.440 +639681.851|222215.579|102.791 +639676.837|222220.310|102.858 +639671.774|222225.086|102.968 +639656.641|222239.320|100.593 +639651.591|222244.069|99.819 +639646.497|222248.864|99.249 +639641.514|222253.561|99.118 +639636.460|222258.315|98.420 +639631.443|222263.052|98.688 +639621.406|222272.528|99.118 +639616.435|222277.241|100.432 +639611.576|222281.852|101.965 +639601.582|222291.301|103.251 +639591.737|222300.628|105.446 +639571.913|222319.343|106.378 +639551.912|222338.179|104.681 +639546.928|222342.867|104.041 +639527.052|222361.594|102.809 +639522.066|222366.291|102.346 +639517.140|222370.930|102.099 +639512.144|222375.633|101.566 +639507.252|222380.254|101.837 +639497.432|222389.517|101.910 +639443.153|222440.623|96.649 +639438.160|222445.301|95.113 +639428.169|222454.683|92.617 +639423.271|222459.298|92.224 +639413.477|222468.512|91.068 +639408.576|222473.130|90.718 +639403.647|222477.769|90.142 +639398.761|222482.365|89.566 +639393.894|222486.953|89.169 +639393.808|222483.673|89.264 +639398.664|222479.089|89.560 +639403.721|222474.328|90.419 +639413.578|222465.025|91.193 +639423.542|222455.625|92.199 +639428.483|222450.962|92.577 +639433.582|222446.170|94.150 +639438.654|222441.400|95.506 +639443.677|222436.679|96.914 +639453.763|222427.178|98.768 +639458.752|222422.475|99.417 +639463.733|222417.778|100.005 +639488.595|222394.302|101.374 +639493.545|222389.621|101.224 +639498.480|222384.951|100.886 +639503.485|222380.230|101.474 +639508.438|222375.551|101.392 +639528.332|222356.757|101.877 +639533.371|222352.005|102.486 +639538.372|222347.293|103.327 +639543.392|222342.556|103.757 +639553.399|222333.120|105.001 +639563.390|222323.683|105.357 +639573.400|222314.237|106.196 +639588.347|222300.101|105.598 +639598.257|222290.704|103.824 +639603.188|222286.025|102.922 +639608.120|222281.349|101.995 +639623.022|222267.216|99.252 +639633.053|222257.727|98.877 +639638.088|222252.975|99.146 +639643.111|222248.227|99.152 +639648.143|222243.475|99.490 +639653.194|222238.717|100.304 +639673.347|222219.719|102.989 +639678.355|222214.982|102.840 +639683.409|222210.203|102.636 +639688.410|222205.469|102.233 +639693.412|222200.733|101.749 +639698.414|222195.999|101.316 +639703.462|222191.217|100.819 +639708.421|222186.526|100.505 +639713.474|222181.743|100.188 +639728.550|222167.482|99.316 +639733.606|222162.696|99.121 +639738.620|222157.957|99.051 +639743.637|222153.220|99.158 +639748.700|222148.438|99.359 +639753.717|222143.701|99.627 +639758.780|222138.922|99.877 +639763.794|222134.185|100.203 +639768.808|222129.455|100.599 +639773.870|222124.679|101.032 +639779.403|222119.457|101.428 +639783.935|222115.178|101.813 +639788.995|222110.402|101.998 +639794.006|222105.668|102.102 +639799.017|222100.932|102.075 +639804.076|222096.143|101.767 +639809.087|222091.407|101.758 +639814.104|222086.661|101.380 +639829.207|222072.363|100.066 +639834.279|222067.556|99.450 +639839.299|222062.804|99.155 +639844.325|222058.049|98.731 +639869.444|222034.293|98.219 +639874.461|222029.560|98.627 +639884.455|222020.111|98.853 +639899.500|222005.886|98.579 +639904.481|222001.173|98.536 +639909.510|221996.422|98.640 +639919.522|221986.955|98.707 +639929.486|221977.539|98.990 +639959.317|221949.342|99.444 +639964.231|221944.709|100.157 +639969.156|221940.061|100.630 +639979.020|221930.746|101.294 +639988.892|221921.422|101.867 +639993.772|221916.817|102.349 +639998.716|221912.144|102.520 +640003.611|221907.523|102.767 +640008.573|221902.830|102.675 +640013.508|221898.154|102.279 +640018.394|221893.542|102.718 +640023.298|221888.909|102.870 +640038.011|221874.995|102.757 +640042.970|221870.295|102.212 +640047.859|221865.671|102.032 +640057.692|221856.357|101.026 +640067.521|221847.045|100.188 +640080.994|221830.321|98.789 +640075.986|221835.060|99.575 +640066.071|221844.427|99.993 +640061.029|221849.200|100.755 +640056.000|221853.958|101.364 +640051.065|221858.618|101.419 +640046.054|221863.358|101.889 +640036.109|221872.758|102.526 +640021.180|221886.858|102.870 +640016.233|221891.528|102.614 +640011.289|221896.185|102.258 +639991.440|221914.930|102.456 +639986.466|221919.618|101.928 +639981.510|221924.294|101.925 +639976.538|221928.975|101.340 +639971.610|221933.624|100.889 +639956.723|221947.654|99.624 +639941.745|221961.790|99.432 +639926.829|221975.869|99.170 +639921.815|221980.593|98.569 +639906.803|221994.767|98.588 +639901.817|221999.473|98.557 +639896.824|222004.191|98.865 +639891.783|222008.958|99.252 +639886.799|222013.661|99.246 +639881.773|222018.407|99.191 +639876.756|222023.134|98.734 +639871.775|222027.840|98.813 +639836.644|222061.015|99.301 +639831.667|222065.724|99.801 +639826.641|222070.479|100.301 +639821.617|222075.231|100.791 +639816.643|222079.931|101.172 +639811.577|222084.719|101.486 +639806.560|222089.462|101.745 +639801.592|222094.153|101.770 +639796.529|222098.938|102.029 +639791.515|222103.675|102.209 +639786.550|222108.360|102.126 +639781.490|222113.133|101.791 +639776.480|222117.857|101.410 +639771.466|222122.585|101.136 +639766.449|222127.315|100.660 +639761.383|222132.088|100.334 +639756.366|222136.819|99.953 +639751.349|222141.552|99.722 +639741.263|222151.068|99.344 +639711.130|222179.531|100.100 +639706.119|222184.267|100.426 +639701.112|222189.001|100.798 +639696.110|222193.734|101.288 +639691.105|222198.468|101.800 +639686.149|222203.156|102.239 +639681.144|222207.886|102.639 +639676.136|222212.620|102.910 +639671.128|222217.350|103.145 +639666.114|222222.087|103.251 +639645.964|222241.049|99.813 +639630.946|222255.207|98.914 +639625.920|222259.952|98.947 +639620.909|222264.689|99.344 +639611.015|222274.055|100.831 +639601.119|222283.440|103.135 +639586.269|222297.507|105.793 +639581.304|222302.198|106.046 +639576.375|222306.852|106.122 +639556.426|222325.667|105.092 +639551.430|222330.379|104.979 +639531.490|222349.161|102.550 +639521.523|222358.555|101.648 +639491.869|222386.539|101.130 +639486.943|222391.187|101.011 +639481.972|222395.878|100.983 +639477.074|222400.499|100.673 +639472.121|222405.168|100.313 +639467.171|222409.835|100.060 +639422.359|222451.995|92.083 +639417.464|222456.610|91.760 +639412.474|222461.307|90.971 +639407.558|222465.936|90.471 +639402.700|222470.527|90.556 +639397.762|222475.178|89.913 +639392.879|222479.777|89.380 +639383.070|222489.019|88.438 +639378.230|222493.588|88.401 +639368.589|222502.692|88.718 +639369.623|222498.114|87.837 +639374.548|222493.460|88.240 +639404.135|222465.501|90.166 +639409.097|222460.816|90.666 +639414.069|222456.125|91.288 +639418.997|222451.474|92.019 +639423.981|222446.765|92.361 +639429.022|222442.022|93.827 +639459.142|222413.624|99.399 +639488.931|222385.472|100.895 +639493.899|222380.775|100.990 +639503.826|222371.378|100.478 +639508.828|222366.660|101.087 +639553.868|222324.131|104.717 +639578.841|222300.536|105.912 +639583.803|222295.839|105.638 +639593.666|222286.482|103.946 +639598.653|222281.752|103.218 +639613.524|222267.630|99.990 +639618.477|222262.936|99.478 +639623.491|222258.191|99.207 +639628.499|222253.448|98.865 +639633.534|222248.693|99.146 +639638.569|222243.938|99.472 +639643.614|222239.177|100.133 +639648.652|222234.422|100.651 +639653.715|222229.658|101.965 +639663.789|222220.154|103.334 +639668.845|222215.372|103.187 +639673.847|222210.636|102.876 +639678.852|222205.899|102.669 +639683.848|222201.162|102.062 +639688.901|222196.380|101.852 +639693.857|222191.686|101.422 +639698.899|222186.907|100.731 +639703.907|222182.164|100.468 +639708.911|222177.424|100.072 +639723.981|222163.157|99.103 +639744.082|222144.146|99.082 +639754.119|222134.676|100.282 +639764.196|222125.166|101.325 +639774.267|222115.650|101.663 +639779.272|222110.923|102.136 +639789.339|222101.401|102.075 +639794.347|222096.664|102.096 +639799.361|222091.922|101.834 +639804.418|222087.136|101.843 +639809.432|222082.394|101.694 +639839.646|222053.767|98.923 +639844.666|222049.021|98.890 +639849.738|222044.220|98.685 +639854.716|222039.508|98.414 +639864.759|222030.020|98.600 +639879.807|222015.813|99.520 +639889.811|222006.355|99.527 +639899.842|221996.858|98.707 +639904.871|221992.109|98.789 +639909.848|221987.403|98.920 +639914.883|221982.645|98.883 +639919.858|221977.948|99.136 +639929.880|221968.474|99.158 +639939.844|221959.062|99.505 +639944.827|221954.353|99.648 +639949.817|221949.638|99.685 +639954.803|221944.926|99.828 +639959.762|221940.253|100.563 +639964.746|221935.544|100.782 +639969.732|221930.838|101.005 +639974.643|221926.208|101.736 +639979.641|221921.480|101.724 +639989.547|221912.132|102.535 +640009.384|221893.378|102.340 +640014.294|221888.739|102.410 +640029.056|221874.794|102.943 +640034.027|221870.094|102.873 +640038.931|221865.449|102.389 +640043.930|221860.715|101.992 +640048.813|221856.098|101.925 +640053.784|221851.391|101.355 +640058.707|221846.728|100.831 +640063.678|221842.019|100.310 +640078.461|221828.016|98.880 +640077.272|221825.602|98.947 +640072.246|221830.351|99.347 +640067.235|221835.097|100.203 +640062.187|221839.864|100.374 +640057.210|221844.570|100.895 +640052.169|221849.328|101.041 +640047.152|221854.071|101.529 +640042.129|221858.819|102.151 +640037.087|221863.583|102.416 +640027.087|221873.035|103.266 +640022.088|221877.748|102.998 +640012.100|221887.160|102.346 +640007.083|221891.893|102.419 +640002.050|221896.648|102.800 +639987.045|221910.803|102.575 +639982.013|221915.546|102.203 +639977.060|221920.218|102.197 +639972.049|221924.937|101.493 +639967.017|221929.679|101.182 +639962.030|221934.379|100.910 +639956.992|221939.131|100.761 +639952.023|221943.807|100.145 +639946.994|221948.547|99.825 +639941.953|221953.305|99.801 +639936.972|221957.995|99.469 +639931.916|221962.775|99.834 +639926.877|221967.530|99.847 +639921.882|221972.245|99.996 +639916.840|221977.006|100.145 +639911.817|221981.736|99.767 +639906.782|221986.491|99.862 +639896.726|221995.974|99.566 +639861.543|222029.154|98.704 +639856.523|222033.891|98.466 +639846.465|222043.385|98.847 +639841.393|222048.177|98.981 +639836.412|222052.877|99.194 +639831.338|222057.677|99.691 +639821.288|222067.175|100.532 +639816.262|222071.927|101.099 +639811.196|222076.715|101.489 +639806.225|222081.412|101.861 +639801.159|222086.201|102.236 +639796.142|222090.934|102.319 +639791.131|222095.662|102.136 +639786.114|222100.392|102.169 +639781.100|222105.123|102.178 +639771.078|222114.575|101.803 +639751.013|222133.494|100.993 +639730.909|222152.403|97.588 +639715.897|222166.570|97.783 +639705.952|222175.995|100.045 +639695.942|222185.462|101.145 +639690.940|222190.193|101.727 +639685.942|222194.920|102.422 +639680.979|222199.608|102.581 +639675.975|222204.338|102.919 +639671.009|222209.026|103.001 +639666.044|222213.714|103.169 +639661.039|222218.445|103.492 +639651.045|222227.851|101.855 +639645.988|222232.602|100.868 +639640.990|222237.309|100.231 +639635.988|222242.018|99.563 +639630.946|222246.770|99.142 +639626.006|222251.430|98.923 +639621.043|222256.121|99.350 +639616.017|222260.864|99.356 +639611.116|222265.503|100.121 +639606.187|222270.175|101.179 +639566.829|222307.410|106.019 +639561.851|222312.094|105.318 +639556.883|222316.776|104.772 +639541.996|222330.806|103.815 +639527.049|222344.888|102.187 +639507.271|222363.530|100.734 +639502.339|222368.178|100.496 +639492.494|222377.477|100.907 +639487.596|222382.092|100.517 +639477.760|222391.379|100.529 +639448.154|222419.272|97.875 +639433.338|222433.207|95.329 +639423.341|222442.598|92.726 +639418.357|222447.289|91.922 +639413.435|222451.925|91.288 +639408.521|222456.552|90.788 +639403.608|222461.182|90.322 +639393.662|222470.533|88.346 +639388.749|222475.154|87.548 +639383.857|222479.768|87.432 +639374.204|222488.891|88.011 +639369.309|222493.503|87.490 +639368.394|222491.256|88.011 +639382.945|222477.482|87.670 +639387.904|222472.798|87.996 +639392.793|222468.174|88.167 +639412.703|222449.389|91.248 +639417.726|222444.652|91.961 +639422.713|222439.952|92.833 +639427.718|222435.234|93.970 +639432.783|222430.467|95.284 +639437.797|222425.749|96.622 +639447.801|222416.309|98.167 +639477.580|222388.173|100.420 +639482.490|222383.525|100.359 +639487.446|222378.834|100.298 +639497.334|222369.482|100.538 +639502.327|222364.755|100.398 +639507.264|222360.088|100.813 +639512.233|222355.391|101.057 +639547.239|222322.321|104.144 +639552.241|222317.593|104.428 +639557.252|222312.860|104.928 +639562.269|222308.123|105.543 +639572.242|222298.689|105.909 +639577.268|222293.938|105.961 +639582.245|222289.210|105.147 +639606.995|222265.710|100.724 +639616.938|222256.279|99.527 +639626.966|222246.782|99.179 +639632.007|222242.021|99.719 +639637.036|222237.269|99.929 +639642.032|222232.551|100.657 +639647.089|222227.787|101.709 +639657.171|222218.277|103.391 +639662.182|222213.534|103.388 +639667.193|222208.795|103.401 +639677.200|222199.315|102.983 +639682.202|222194.579|102.684 +639687.194|222189.839|102.084 +639692.242|222185.057|101.651 +639697.231|222180.317|100.749 +639702.221|222175.577|99.819 +639712.258|222166.046|97.926 +639732.347|222147.018|96.905 +639742.452|222137.505|99.709 +639757.545|222123.261|101.925 +639787.733|222094.702|102.191 +639792.741|222089.962|102.142 +639797.749|222085.225|102.370 +639802.759|222080.473|101.858 +639807.773|222075.725|101.489 +639812.833|222070.930|101.218 +639817.801|222066.224|100.910 +639822.867|222061.417|100.289 +639827.887|222056.656|99.798 +639832.862|222051.941|99.292 +639837.927|222047.147|99.207 +639842.950|222042.389|98.923 +639847.925|222037.676|98.734 +639852.991|222032.882|98.734 +639858.008|222028.136|98.868 +639862.976|222023.439|99.075 +639867.990|222018.700|99.335 +639873.001|222013.960|99.703 +639878.015|222009.220|99.993 +639883.038|222004.471|100.029 +639888.055|221999.726|100.215 +639893.032|221995.010|100.130 +639928.075|221961.857|100.478 +639938.082|221952.366|99.572 +639948.018|221942.981|100.517 +639957.921|221933.621|101.160 +639962.911|221928.899|101.233 +639967.843|221924.236|101.477 +639972.811|221919.542|101.965 +639977.745|221914.878|102.245 +639987.664|221905.503|102.773 +639997.561|221896.136|102.888 +640002.514|221891.448|102.907 +640007.497|221886.724|102.428 +640012.447|221882.042|102.596 +640017.382|221877.379|102.986 +640037.191|221858.618|102.288 +640042.129|221853.940|102.050 +640047.103|221849.221|101.352 +640052.059|221844.524|100.968 +640066.942|221830.415|99.804 +640071.862|221825.752|99.417 +640076.812|221821.064|99.280 +640068.098|221825.995|99.624 +640063.026|221830.793|100.081 +640057.978|221835.569|100.843 +640037.877|221854.574|102.035 +640032.814|221859.362|102.608 +640017.772|221873.575|103.172 +640012.734|221878.327|102.812 +640007.744|221883.030|102.428 +640002.751|221887.751|102.916 +639997.695|221892.527|102.919 +639992.687|221897.258|102.965 +639987.688|221901.973|102.834 +639982.662|221906.710|102.370 +639977.675|221911.413|102.087 +639967.608|221920.907|101.520 +639962.606|221925.632|101.587 +639957.571|221930.380|101.355 +639952.545|221935.120|101.002 +639942.532|221944.563|100.429 +639937.521|221949.284|99.755 +639932.458|221954.073|100.282 +639927.389|221958.873|101.081 +639897.159|221987.409|100.602 +639892.130|221992.154|100.520 +639887.107|221996.894|100.368 +639882.035|222001.682|100.246 +639877.058|222006.379|100.112 +639871.989|222011.159|99.840 +639866.972|222015.892|99.548 +639861.955|222020.620|99.094 +639856.883|222025.405|99.005 +639851.866|222030.136|98.612 +639846.840|222034.884|98.789 +639841.811|222039.639|99.066 +639836.742|222044.425|99.048 +639831.716|222049.177|99.325 +639826.689|222053.925|99.685 +639821.617|222058.726|100.194 +639816.637|222063.435|100.779 +639811.568|222068.233|101.364 +639806.551|222072.972|101.407 +639801.534|222077.721|101.962 +639796.468|222082.510|102.392 +639791.454|222087.237|102.151 +639771.359|222106.211|102.114 +639766.348|222110.944|102.096 +639756.320|222120.408|101.968 +639751.257|222125.185|101.764 +639736.173|222139.355|97.765 +639731.189|222144.043|96.792 +639691.145|222181.945|101.831 +639686.185|222186.632|102.245 +639681.187|222191.363|102.837 +639676.225|222196.048|103.074 +639671.217|222200.781|103.279 +639661.231|222210.206|103.233 +639646.284|222224.294|102.172 +639641.224|222229.049|101.090 +639636.232|222233.755|100.572 +639631.233|222238.461|100.033 +639626.246|222243.164|99.776 +639586.717|222280.554|104.227 +639571.967|222294.504|106.049 +639562.025|222303.880|105.607 +639557.060|222308.562|105.077 +639547.120|222317.922|104.108 +639512.400|222350.633|100.807 +639507.499|222355.263|100.889 +639502.525|222359.939|100.051 +639453.370|222406.305|98.478 +639448.459|222410.935|98.176 +639438.614|222420.204|96.887 +639418.680|222438.934|92.266 +639413.697|222443.625|91.471 +639408.783|222448.252|90.965 +639398.920|222457.536|89.669 +639394.019|222462.151|88.877 +639374.509|222480.549|87.978 +639348.543|222502.238|93.778 +639353.300|222497.721|93.089 +639372.192|222479.726|87.359 +639386.993|222465.729|88.538 +639391.913|222461.081|88.990 +639396.887|222456.381|89.560 +639401.828|222451.715|90.319 +639406.842|222446.975|90.888 +639416.781|222437.587|92.199 +639431.912|222423.325|95.842 +639436.877|222418.638|96.674 +639446.874|222409.198|98.128 +639451.827|222404.510|98.426 +639466.744|222390.398|98.954 +639476.659|222381.022|99.929 +639491.558|222366.922|100.097 +639496.462|222362.277|100.020 +639521.374|222338.716|101.468 +639536.388|222324.521|102.818 +639541.411|222319.775|103.361 +639546.386|222315.075|103.931 +639551.400|222310.339|104.455 +639556.417|222305.599|105.013 +639561.431|222300.863|105.607 +639566.414|222296.144|105.741 +639576.408|222286.680|105.671 +639581.352|222281.989|105.083 +639586.281|222277.308|104.187 +639596.224|222267.856|102.166 +639601.186|222263.153|101.904 +639611.131|222253.716|100.798 +639626.109|222239.518|99.904 +639631.138|222234.760|100.188 +639651.328|222215.710|103.705 +639656.339|222210.965|103.727 +639666.355|222201.479|103.580 +639671.308|222196.782|103.282 +639676.362|222191.997|103.135 +639681.360|222187.254|102.739 +639686.310|222182.560|102.315 +639701.340|222168.290|99.965 +639706.311|222163.544|97.847 +639716.324|222154.043|96.844 +639721.396|222149.252|97.518 +639726.410|222144.506|97.503 +639736.502|222134.975|98.893 +639741.531|222130.247|100.727 +639746.548|222125.514|101.678 +639766.680|222106.461|102.081 +639771.682|222101.724|102.169 +639791.717|222082.753|102.120 +639811.815|222063.706|101.084 +639816.783|222058.991|100.596 +639821.803|222054.227|100.048 +639826.872|222049.423|99.658 +639831.847|222044.705|99.231 +639836.867|222039.947|99.051 +639841.884|222035.198|99.161 +639846.858|222030.486|98.935 +639856.889|222020.995|99.243 +639861.860|222016.295|99.411 +639866.871|222011.561|99.825 +639871.836|222006.864|100.063 +639876.847|222002.128|100.438 +639881.822|221997.424|100.545 +639886.790|221992.724|100.724 +639891.813|221987.970|100.718 +639896.784|221983.273|100.962 +639901.756|221978.566|101.069 +639906.776|221973.818|101.252 +639911.750|221969.115|101.425 +639936.674|221945.502|100.100 +639941.596|221940.853|100.538 +639946.567|221936.153|100.904 +639951.499|221931.490|101.151 +639956.428|221926.830|101.422 +639961.402|221922.126|101.770 +639986.027|221898.846|103.065 +639990.986|221894.149|102.888 +639995.884|221889.516|103.029 +640000.795|221884.868|103.001 +640005.784|221880.137|102.465 +640010.679|221875.504|102.687 +640015.614|221870.844|103.105 +640035.310|221852.181|101.998 +640045.195|221842.817|101.471 +640050.133|221838.142|101.349 +640055.070|221833.457|100.606 +640059.981|221828.803|100.273 +640064.946|221824.097|99.883 +640074.870|221814.672|98.112 +640074.154|221812.414|97.951 +640069.183|221817.123|98.880 +640064.147|221821.896|100.042 +640054.229|221831.265|100.587 +640049.203|221836.020|101.185 +640039.260|221845.411|101.621 +640034.298|221850.099|102.087 +640029.272|221854.857|102.879 +640009.423|221873.581|102.535 +640004.470|221878.253|102.401 +639999.423|221883.027|103.007 +639994.461|221887.711|103.041 +639989.456|221892.436|103.071 +639984.488|221897.127|103.285 +639979.501|221901.827|103.010 +639974.460|221906.585|102.901 +639959.518|221920.663|101.849 +639954.538|221925.360|101.569 +639949.515|221930.091|101.127 +639944.534|221934.785|100.840 +639939.557|221939.476|100.496 +639919.416|221958.504|101.529 +639909.400|221967.953|101.462 +639904.371|221972.696|101.386 +639899.345|221977.439|101.319 +639894.325|221982.172|101.069 +639889.298|221986.912|100.941 +639884.278|221991.648|100.782 +639879.207|221996.431|100.636 +639874.235|222001.119|100.456 +639869.169|222005.895|100.203 +639864.149|222010.625|99.941 +639859.135|222015.353|99.530 +639854.073|222020.123|99.188 +639849.043|222024.872|99.408 +639844.026|222029.605|99.228 +639838.951|222034.400|99.502 +639818.771|222053.453|100.087 +639798.599|222072.518|101.590 +639788.477|222082.080|102.123 +639768.338|222101.087|102.224 +639763.279|222105.860|102.187 +639748.197|222120.091|102.059 +639738.111|222129.580|100.593 +639722.975|222143.802|97.018 +639717.906|222148.581|96.823 +639697.804|222167.613|100.151 +639687.822|222177.068|102.273 +639682.817|222181.798|102.517 +639677.813|222186.529|102.870 +639672.802|222191.259|102.989 +639667.745|222196.036|103.090 +639662.786|222200.723|103.376 +639637.701|222224.376|101.877 +639632.641|222229.134|100.804 +639627.609|222233.877|100.593 +639622.619|222238.583|100.231 +639602.743|222257.377|102.017 +639597.775|222262.071|102.236 +639592.819|222266.758|102.654 +639587.896|222271.425|103.803 +639582.992|222276.061|104.327 +639578.067|222280.731|105.333 +639573.156|222285.373|105.702 +639558.288|222299.403|105.293 +639543.359|222313.460|103.422 +639523.471|222332.205|101.742 +639518.548|222336.844|101.462 +639503.701|222350.841|100.325 +639493.850|222360.131|99.917 +639488.870|222364.828|99.676 +639459.371|222392.638|97.667 +639454.513|222397.241|98.481 +639439.815|222411.094|97.436 +639429.933|222420.393|95.823 +639424.904|222425.115|94.382 +639414.995|222434.432|92.239 +639410.082|222439.059|91.672 +639405.153|222443.701|90.971 +639395.159|222453.086|88.377 +639390.413|222457.579|89.121 +639380.723|222466.729|89.194 +639356.940|222489.239|92.617 +639347.473|222498.203|93.991 +639356.129|222487.458|92.775 +639380.138|222464.669|89.392 +639385.049|222460.020|89.322 +639404.818|222441.336|90.995 +639409.841|222436.593|91.693 +639414.821|222431.896|92.498 +639419.842|222427.157|93.275 +639424.889|222422.408|94.900 +639429.930|222417.656|96.000 +639434.923|222412.941|96.619 +639439.907|222408.232|97.180 +639444.896|222403.522|97.847 +639464.650|222384.826|97.890 +639479.640|222370.665|99.618 +639494.484|222356.601|99.185 +639504.488|222347.153|100.444 +639509.459|222342.450|100.721 +639519.459|222332.995|101.557 +639524.425|222328.301|101.828 +639529.451|222323.552|102.337 +639534.474|222318.803|102.888 +639539.421|222314.121|103.020 +639544.438|222309.382|103.510 +639549.467|222304.633|104.263 +639554.484|222299.893|104.873 +639564.479|222290.441|105.516 +639569.465|222285.723|105.702 +639579.435|222276.274|105.239 +639584.348|222271.602|104.053 +639594.273|222262.177|102.642 +639599.284|222257.432|102.401 +639604.240|222252.732|101.995 +639614.228|222243.252|100.849 +639624.210|222233.797|100.639 +639629.288|222228.997|100.965 +639634.296|222224.272|101.974 +639649.405|222210.002|103.986 +639654.416|222205.259|103.922 +639659.421|222200.516|103.830 +639669.421|222191.037|103.126 +639674.475|222186.251|103.010 +639679.477|222181.509|102.812 +639694.449|222167.287|100.282 +639704.467|222157.753|97.420 +639709.521|222152.958|96.948 +639724.615|222138.669|96.994 +639739.745|222124.420|101.310 +639744.808|222119.640|102.084 +639749.816|222114.904|102.392 +639759.926|222105.330|102.258 +639764.888|222100.633|102.306 +639769.935|222095.854|102.392 +639780.000|222086.316|102.026 +639800.086|222067.297|101.834 +639810.117|222057.784|101.011 +639815.137|222053.014|100.161 +639845.297|222024.445|99.307 +639850.318|222019.696|99.341 +639855.289|222014.987|99.325 +639870.328|222000.771|100.490 +639880.316|221991.322|100.859 +639885.336|221986.577|101.035 +639890.359|221981.825|101.163 +639895.285|221977.164|101.304 +639900.305|221972.412|101.474 +639905.282|221967.706|101.611 +639910.260|221962.994|101.681 +639915.286|221958.242|101.809 +639920.272|221953.518|101.709 +639925.265|221948.787|101.474 +639940.206|221934.632|100.880 +639945.181|221929.929|101.255 +639950.109|221925.272|101.617 +639955.035|221920.618|102.008 +639959.966|221915.954|102.282 +639964.910|221911.273|102.328 +639969.888|221906.569|102.709 +639974.774|221901.952|103.017 +639979.718|221897.273|103.145 +639989.614|221887.907|103.273 +639994.519|221883.264|103.352 +639999.447|221878.595|103.035 +640004.440|221873.855|102.465 +640009.332|221869.231|102.803 +640029.004|221850.611|102.834 +640043.820|221836.563|101.547 +640048.746|221831.890|100.974 +640053.659|221827.233|100.602 +640073.474|221808.430|98.039 +640064.172|221814.346|99.295 +640059.170|221819.086|100.063 +640054.144|221823.844|100.590 +640049.188|221828.531|100.877 +640044.183|221833.265|101.194 +640039.221|221837.959|101.617 +640019.220|221856.878|103.199 +640009.308|221866.238|102.910 +640004.370|221870.893|102.486 +639999.377|221875.617|102.986 +639994.345|221880.378|103.404 +639989.389|221885.060|103.376 +639984.436|221889.738|103.352 +639979.443|221894.454|103.193 +639974.448|221899.169|103.090 +639969.461|221903.875|102.861 +639964.535|221908.517|102.376 +639959.537|221913.239|102.401 +639954.547|221917.951|102.285 +639949.570|221922.648|101.944 +639939.630|221932.017|100.929 +639934.634|221936.739|101.020 +639924.588|221946.236|101.505 +639919.538|221951.009|101.846 +639914.551|221955.722|101.870 +639909.574|221960.422|101.758 +639904.545|221965.170|101.685 +639899.518|221969.916|101.578 +639894.541|221974.616|101.499 +639889.515|221979.365|101.444 +639884.492|221984.105|101.276 +639879.523|221988.792|100.947 +639874.503|221993.532|100.807 +639869.480|221998.275|100.697 +639864.463|222003.008|100.474 +639859.446|222007.739|100.118 +639854.448|222012.445|99.078 +639849.421|222017.191|99.139 +639839.372|222026.688|99.380 +639819.286|222045.674|99.996 +639814.220|222050.463|100.133 +639804.177|222059.966|101.197 +639799.111|222064.755|101.514 +639768.988|222093.226|102.428 +639763.980|222097.954|102.376 +639758.923|222102.730|102.340 +639753.912|222107.464|102.370 +639748.901|222112.197|102.431 +639743.842|222116.973|102.166 +639738.828|222121.701|101.697 +639718.656|222140.659|96.326 +639713.596|222145.445|96.689 +639708.634|222150.142|97.201 +639703.568|222154.927|97.301 +639693.644|222164.355|100.334 +639673.606|222183.325|103.035 +639668.598|222188.056|103.175 +639663.633|222192.741|103.245 +639658.625|222197.471|103.462 +639653.627|222202.199|103.922 +639648.664|222206.883|104.117 +639638.603|222216.366|103.193 +639628.548|222225.824|101.425 +639623.509|222230.573|100.956 +639618.532|222235.269|100.865 +639613.506|222240.012|100.807 +639603.594|222249.385|101.749 +639598.653|222254.060|102.550 +639593.688|222258.751|102.803 +639583.791|222268.112|103.980 +639569.005|222282.102|105.900 +639564.018|222286.808|105.735 +639549.092|222300.872|104.483 +639544.103|222305.569|103.596 +639539.131|222310.250|103.132 +639529.192|222319.617|102.300 +639524.227|222324.299|102.020 +639519.283|222328.953|101.395 +639509.328|222338.335|100.627 +639499.425|222347.671|100.078 +639489.531|222356.995|99.136 +639484.621|222361.628|99.216 +639474.779|222370.918|99.106 +639469.853|222375.563|99.054 +639450.163|222394.129|98.033 +639445.256|222398.755|97.750 +639430.458|222412.697|96.235 +639425.529|222417.333|95.348 +639410.542|222431.415|91.803 +639381.229|222459.042|89.645 +639371.525|222468.198|89.639 +639357.339|222481.637|92.458 +639352.624|222486.108|93.516 +639343.227|222495.002|95.086 +639338.533|222499.452|96.329 +639330.779|222503.357|97.451 +639335.482|222498.898|96.713 +639344.940|222489.909|94.485 +639359.174|222476.394|91.736 +639368.733|222467.320|89.934 +639373.622|222462.690|89.648 +639378.492|222458.082|89.621 +639388.258|222448.840|89.432 +639393.050|222444.287|88.225 +639398.131|222439.519|90.398 +639403.157|222434.777|91.105 +639408.107|222430.104|91.565 +639413.096|222425.401|92.461 +639433.122|222406.525|96.311 +639452.998|222387.746|97.542 +639462.956|222378.343|98.277 +639467.857|222373.710|98.664 +639472.871|222368.967|98.646 +639482.771|222359.607|98.938 +639487.745|222354.907|99.121 +639492.707|222350.213|99.188 +639497.718|222345.485|99.932 +639502.729|222340.758|100.731 +639517.664|222326.643|101.282 +639522.696|222321.891|101.901 +639527.713|222317.151|102.297 +639537.732|222307.684|102.962 +639557.758|222288.783|105.376 +639562.802|222284.019|105.705 +639567.786|222279.307|105.866 +639572.781|222274.574|105.382 +639582.712|222265.155|104.071 +639587.653|222260.470|103.452 +639592.651|222255.734|102.946 +639597.610|222251.037|102.660 +639602.591|222246.309|101.800 +639607.608|222241.564|101.685 +639612.610|222236.824|101.279 +639617.611|222232.084|100.877 +639622.653|222227.323|101.438 +639627.648|222222.611|102.105 +639632.745|222217.804|103.004 +639637.743|222213.092|103.955 +639642.767|222208.346|104.266 +639647.826|222203.561|104.342 +639652.822|222198.828|103.830 +639657.821|222194.091|103.480 +639662.822|222189.354|103.224 +639667.830|222184.618|103.178 +639672.887|222179.832|103.096 +639677.889|222175.096|102.785 +639682.939|222170.313|102.565 +639702.925|222151.312|97.201 +639733.244|222122.704|101.273 +639743.317|222113.194|102.364 +639748.374|222108.411|102.532 +639753.427|222103.629|102.413 +639758.435|222098.890|102.291 +639763.492|222094.110|102.437 +639773.502|222084.637|102.297 +639783.612|222075.078|102.727 +639793.637|222065.581|101.809 +639798.696|222060.786|101.401 +639808.731|222051.283|100.627 +639813.799|222046.470|99.780 +639818.819|222041.718|99.554 +639848.922|222013.237|99.597 +639853.999|222008.428|99.188 +639858.986|222003.734|100.673 +639869.017|221994.248|101.041 +639873.991|221989.542|101.044 +639879.008|221984.797|101.194 +639888.988|221975.363|101.822 +639893.965|221970.651|101.788 +639898.991|221965.896|101.822 +639903.965|221961.190|101.953 +639908.943|221956.481|102.020 +639913.923|221951.768|102.035 +639918.907|221947.050|101.965 +639923.899|221942.323|101.758 +639933.851|221932.895|101.172 +639938.844|221928.168|101.047 +639943.754|221923.535|101.758 +639948.725|221918.835|102.117 +639953.648|221914.183|102.568 +639958.595|221909.502|102.504 +639963.536|221904.829|102.642 +639968.422|221900.211|102.919 +639973.408|221895.490|103.056 +639978.300|221890.866|103.254 +639983.247|221886.187|103.355 +639988.194|221881.509|103.455 +639993.095|221876.867|103.510 +639998.033|221872.188|103.068 +640002.974|221867.503|102.565 +640007.872|221862.873|102.828 +640012.767|221858.243|103.087 +640017.674|221853.604|103.248 +640022.612|221848.926|102.956 +640027.501|221844.296|102.706 +640037.377|221834.929|101.617 +640042.324|221830.241|101.343 +640062.020|221811.566|99.347 +640071.901|221802.184|97.582 +640076.903|221797.430|96.344 +640060.017|221809.625|99.292 +640055.019|221814.358|100.008 +640050.050|221819.061|100.426 +640040.156|221828.422|101.377 +640035.203|221833.106|101.681 +640030.253|221837.791|101.995 +640005.510|221861.182|102.575 +640000.551|221865.866|102.520 +639995.540|221870.612|103.294 +639990.565|221875.318|103.544 +639985.615|221879.994|103.422 +639980.656|221884.679|103.486 +639975.712|221889.345|103.276 +639970.775|221894.009|103.023 +639965.779|221898.724|102.931 +639960.796|221903.430|102.660 +639955.852|221908.097|102.550 +639950.856|221912.818|102.575 +639945.836|221917.573|103.132 +639940.965|221922.145|101.550 +639935.994|221926.836|101.081 +639930.980|221931.584|101.627 +639925.935|221936.352|101.794 +639920.940|221941.076|102.005 +639915.947|221945.797|102.175 +639910.909|221950.558|102.270 +639905.880|221955.310|102.233 +639900.902|221960.010|102.108 +639895.876|221964.756|102.005 +639890.856|221969.496|101.755 +639885.872|221974.211|101.950 +639875.838|221983.681|101.368 +639870.815|221988.424|101.258 +639865.743|221993.218|101.331 +639860.729|221997.949|100.938 +639850.708|222007.398|99.889 +639845.645|222012.177|99.600 +639835.550|222021.714|99.719 +639810.358|222045.525|100.042 +639795.203|222059.872|101.517 +639764.891|222088.529|102.544 +639759.837|222093.303|102.355 +639754.827|222098.039|102.504 +639749.770|222102.818|102.632 +639744.710|222107.598|102.568 +639739.654|222112.374|102.389 +639714.291|222136.249|97.283 +639699.146|222150.562|97.490 +639679.102|222169.594|102.620 +639674.051|222174.370|103.013 +639668.998|222179.153|103.205 +639663.987|222183.889|103.306 +639658.979|222188.626|103.404 +639653.925|222193.405|103.629 +639648.930|222198.136|104.187 +639643.919|222202.875|104.254 +639628.795|222217.152|103.340 +639618.730|222226.631|101.425 +639613.695|222231.383|101.133 +639608.681|222236.126|101.328 +639603.728|222240.817|101.828 +639598.738|222245.544|102.550 +639593.785|222250.235|103.010 +639588.820|222254.932|103.260 +639583.827|222259.663|103.882 +639578.883|222264.344|104.550 +639568.941|222273.763|105.690 +639564.009|222278.423|105.671 +639559.029|222283.129|105.635 +639554.018|222287.857|105.092 +639544.039|222297.272|104.050 +639539.064|222301.963|103.468 +639534.072|222306.663|102.684 +639529.106|222311.354|102.294 +639524.193|222315.990|102.062 +639519.179|222320.723|101.776 +639514.235|222325.387|101.127 +639504.326|222334.738|100.371 +639499.419|222339.374|100.389 +639494.405|222344.099|99.594 +639479.646|222358.034|98.694 +639469.814|222367.318|98.140 +639464.943|222371.921|98.185 +639455.147|222381.168|97.679 +639450.187|222385.850|97.301 +639440.431|222395.064|96.835 +639435.527|222399.694|96.649 +639430.580|222404.361|95.979 +639425.672|222408.985|95.293 +639420.759|222413.614|94.564 +639410.783|222423.002|92.166 +639405.863|222427.638|91.532 +639396.049|222436.889|90.096 +639390.995|222441.632|88.215 +639386.249|222446.140|89.425 +639381.519|222450.617|89.846 +639367.050|222464.300|90.395 +639362.347|222468.759|91.114 +639357.589|222473.276|92.214 +639357.796|222469.558|92.001 +639362.530|222465.059|91.160 +639367.337|222460.490|90.075 +639372.210|222455.878|90.090 +639377.066|222451.276|89.956 +639391.785|222437.349|90.191 +639401.782|222427.910|91.556 +639406.656|222423.298|91.751 +639411.673|222418.561|92.489 +639426.681|222404.406|95.467 +639431.674|222399.691|96.107 +639436.639|222394.997|96.479 +639456.451|222376.264|97.719 +639461.456|222371.534|98.128 +639471.365|222362.161|98.426 +639501.266|222333.894|100.481 +639526.260|222310.269|102.166 +639531.283|222305.523|102.730 +639536.312|222300.774|103.404 +639541.326|222296.038|103.900 +639546.322|222291.313|104.096 +639551.354|222286.564|104.964 +639556.368|222281.831|105.610 +639561.394|222277.073|105.671 +639566.374|222272.361|105.735 +639581.264|222258.239|104.172 +639586.260|222253.500|103.660 +639601.195|222239.332|101.956 +639641.413|222201.309|104.492 +639646.421|222196.569|104.397 +639656.461|222187.050|103.452 +639661.515|222182.262|103.407 +639666.477|222177.565|103.346 +639671.531|222172.779|103.236 +639676.572|222167.997|102.684 +639686.588|222158.475|100.392 +639696.607|222148.944|97.524 +639706.723|222139.358|96.988 +639737.047|222110.752|102.495 +639742.055|222106.016|102.733 +639747.112|222101.230|102.724 +639752.166|222096.445|102.648 +639757.173|222091.702|102.547 +639777.342|222072.619|102.910 +639782.399|222067.821|102.349 +639792.469|222058.278|101.797 +639797.532|222053.477|101.252 +639832.804|222020.059|99.423 +639842.880|222010.528|99.786 +639847.897|222005.785|99.972 +639867.993|221986.793|101.352 +639873.004|221982.053|101.691 +639878.027|221977.301|101.678 +639883.044|221972.559|101.892 +639888.067|221967.804|101.919 +639898.058|221958.355|102.270 +639923.073|221934.681|102.035 +639933.080|221925.196|101.267 +639938.057|221920.493|101.547 +639942.986|221915.854|102.882 +639948.009|221911.084|102.154 +639952.938|221906.426|102.471 +639957.879|221901.754|102.629 +639962.859|221897.044|102.861 +639967.803|221892.369|102.974 +639972.747|221887.693|103.093 +639977.675|221883.036|103.486 +639982.574|221878.400|103.583 +639987.530|221873.712|103.577 +639992.486|221869.018|103.541 +639997.426|221864.336|103.071 +640002.416|221859.606|102.605 +640007.302|221854.991|103.035 +640017.074|221845.743|103.224 +640022.027|221841.050|102.727 +640026.992|221836.340|102.111 +640031.933|221831.659|101.877 +640041.744|221822.359|101.160 +640056.518|221808.354|99.673 +640061.438|221803.681|98.734 +640076.330|221789.535|95.732 +640080.372|221782.436|94.415 +640075.312|221787.234|95.592 +640070.298|221791.995|96.920 +640060.304|221801.465|98.691 +640055.284|221806.223|99.636 +640050.303|221810.935|100.118 +640045.314|221815.657|100.788 +640040.355|221820.344|101.112 +640030.433|221829.726|101.892 +640025.486|221834.402|102.136 +640020.497|221839.114|102.340 +640015.526|221843.820|103.047 +640010.594|221848.481|103.221 +640005.693|221853.101|102.922 +640000.749|221857.762|102.559 +639995.796|221862.450|103.126 +639990.809|221867.165|103.568 +639985.896|221871.807|103.590 +639980.943|221876.480|103.477 +639975.999|221881.143|103.279 +639971.055|221885.806|103.071 +639961.213|221895.094|102.733 +639956.227|221899.797|102.498 +639951.335|221904.411|102.282 +639946.339|221909.127|102.239 +639936.466|221918.438|101.776 +639931.489|221923.132|101.459 +639926.524|221927.826|101.889 +639921.525|221932.551|102.126 +639916.526|221937.275|102.352 +639911.579|221941.948|102.550 +639906.596|221946.654|102.520 +639901.609|221951.360|102.538 +639896.632|221956.057|102.392 +639886.683|221965.445|101.965 +639881.654|221970.194|102.017 +639876.683|221974.878|101.681 +639846.760|222003.106|100.237 +639841.786|222007.797|100.039 +639836.781|222012.506|99.152 +639826.781|222021.952|99.386 +639816.789|222031.379|99.091 +639806.737|222040.886|99.987 +639796.691|222050.396|101.291 +639786.654|222059.884|102.072 +639766.552|222078.861|102.084 +639761.541|222083.604|102.645 +639756.533|222088.331|102.562 +639741.452|222102.575|102.888 +639736.392|222107.348|102.639 +639696.085|222145.289|96.204 +639676.106|222164.266|102.639 +639661.137|222178.418|103.474 +639656.126|222183.152|103.565 +639651.118|222187.885|103.669 +639646.119|222192.616|104.129 +639641.121|222197.343|104.589 +639631.111|222206.807|105.104 +639626.076|222211.553|104.537 +639605.962|222230.509|102.337 +639600.988|222235.209|102.340 +639596.025|222239.896|102.693 +639581.127|222253.996|104.269 +639566.225|222268.097|105.748 +639561.299|222272.751|105.848 +639556.310|222277.460|105.647 +639541.311|222291.597|103.955 +639526.412|222305.645|102.730 +639491.726|222338.356|100.164 +639471.987|222356.967|98.451 +639452.358|222375.487|97.466 +639437.660|222389.358|96.841 +639427.794|222398.658|95.826 +639407.994|222417.287|92.007 +639403.102|222421.899|91.641 +639388.456|222435.706|90.035 +639383.500|222440.370|89.166 +639378.742|222444.875|89.791 +639373.875|222449.471|89.852 +639336.186|222485.182|96.296 +639331.513|222489.610|97.289 +639326.874|222494.006|98.170 +639317.511|222502.875|99.591 +639317.502|222500.010|99.706 +639331.611|222486.608|97.210 +639336.387|222482.070|96.314 +639369.644|222450.474|90.285 +639374.536|222445.838|90.038 +639379.382|222441.245|89.852 +639384.280|222436.606|89.730 +639389.200|222431.957|90.300 +639394.205|222427.236|91.282 +639399.130|222422.579|91.510 +639403.992|222417.976|91.586 +639409.009|222413.240|92.327 +639413.947|222408.582|93.299 +639419.003|222403.818|94.528 +639433.847|222389.788|96.079 +639448.727|222375.722|97.231 +639453.671|222371.049|97.481 +639468.515|222356.998|98.036 +639473.526|222352.264|98.664 +639488.422|222338.176|99.612 +639508.337|222319.346|101.291 +639523.279|222305.212|102.285 +639543.295|222286.296|104.400 +639558.303|222272.108|105.839 +639563.281|222267.395|105.894 +639578.176|222253.265|104.623 +639583.123|222248.571|104.141 +639623.113|222210.709|104.641 +639628.142|222205.957|105.226 +639638.140|222196.478|104.678 +639648.085|222187.047|103.995 +639688.118|222149.038|98.463 +639693.092|222144.293|96.552 +639708.201|222130.007|97.890 +639733.393|222106.235|102.556 +639753.510|222087.185|102.629 +639758.515|222082.446|102.727 +639763.562|222077.663|102.608 +639773.575|222068.184|102.736 +639793.707|222049.088|101.191 +639813.818|222030.017|99.621 +639818.832|222025.268|99.642 +639823.900|222020.461|99.280 +639828.917|222015.709|99.219 +639833.928|222010.973|99.584 +639838.942|222006.221|99.600 +639843.947|222001.494|100.231 +639858.965|221987.293|101.648 +639863.966|221982.562|102.194 +639879.030|221968.295|102.081 +639884.044|221963.546|102.230 +639894.035|221954.088|102.483 +639904.026|221944.627|102.693 +639909.004|221939.915|102.767 +639924.024|221925.674|102.059 +639929.087|221920.868|101.389 +639939.039|221911.446|101.834 +639948.939|221902.083|102.511 +639953.934|221897.346|102.404 +639958.860|221892.686|102.736 +639963.847|221887.964|102.888 +639968.833|221883.246|103.038 +639973.765|221878.580|103.343 +639978.703|221873.907|103.568 +639983.646|221869.225|103.687 +639988.596|221864.537|103.748 +639998.573|221855.067|102.693 +640003.532|221850.370|102.712 +640008.415|221845.753|103.166 +640013.401|221841.025|102.818 +640018.342|221836.337|102.465 +640023.325|221831.613|102.255 +640043.128|221812.828|100.825 +640048.066|221808.140|100.142 +640063.004|221793.949|97.945 +640072.974|221784.466|95.820 +640077.943|221779.736|94.464 +640078.948|221775.554|94.266 +640068.735|221785.250|96.710 +640043.518|221809.149|100.566 +640038.572|221813.825|100.700 +640018.446|221832.884|102.422 +640013.465|221837.596|102.578 +640008.418|221842.378|103.053 +640003.425|221847.094|102.748 +639998.466|221851.782|102.663 +639993.406|221856.576|103.419 +639988.377|221861.340|103.806 +639983.366|221866.077|103.861 +639978.376|221870.792|103.650 +639973.420|221875.477|103.654 +639968.440|221880.180|103.303 +639963.399|221884.944|103.190 +639958.421|221889.644|102.840 +639953.432|221894.359|102.706 +639948.436|221899.084|102.700 +639933.437|221913.254|102.148 +639903.298|221941.762|102.809 +639888.216|221956.020|102.745 +639883.202|221960.754|102.389 +639878.228|221965.454|102.279 +639873.162|221970.239|102.059 +639858.099|221984.480|101.901 +639853.079|221989.225|101.809 +639843.057|221998.683|100.941 +639838.049|222003.408|100.331 +639828.030|222012.863|99.246 +639822.968|222017.642|98.966 +639802.878|222036.661|100.249 +639797.855|222041.419|100.871 +639792.789|222046.214|101.261 +639762.669|222074.719|102.507 +639757.615|222079.501|102.895 +639752.559|222084.280|102.700 +639732.521|222103.227|102.727 +639717.427|222117.467|101.227 +639702.294|222131.720|97.829 +639692.233|222141.205|96.418 +639652.285|222179.098|103.480 +639642.334|222188.519|104.288 +639637.338|222193.250|104.821 +639627.386|222202.668|105.485 +639622.372|222207.408|105.473 +639612.341|222216.869|104.144 +639582.474|222245.102|104.352 +639577.524|222249.790|104.833 +639557.727|222268.526|105.912 +639537.836|222287.293|104.001 +639522.946|222301.347|102.867 +639503.101|222320.077|101.236 +639483.277|222338.783|99.139 +639448.779|222371.354|97.103 +639434.054|222385.259|96.146 +639419.351|222399.139|95.180 +639409.387|222408.515|92.812 +639404.455|222413.163|91.977 +639399.569|222417.775|91.675 +639394.656|222422.417|91.593 +639389.785|222427.013|90.986 +639384.847|222431.665|90.264 +639379.983|222436.255|89.797 +639375.091|222440.879|89.557 +639356.007|222458.954|91.608 +639351.341|222463.382|92.647 +639337.274|222476.739|96.015 +639332.592|222481.180|96.914 +639306.873|222502.394|100.950 +639321.178|222488.812|99.246 +639363.999|222448.087|90.608 +639368.836|222443.497|90.303 +639378.572|222434.268|89.846 +639383.525|222429.583|90.233 +639388.517|222424.868|91.059 +639393.482|222420.174|91.690 +639398.432|222415.486|91.654 +639403.340|222410.838|91.718 +639408.369|222406.086|92.592 +639433.271|222382.555|96.037 +639448.179|222368.449|96.948 +639453.156|222363.734|97.042 +639468.037|222349.658|98.021 +639473.047|222344.925|98.667 +639478.019|222340.221|98.832 +639482.999|222335.509|99.124 +639493.009|222326.057|100.554 +639497.968|222321.363|100.685 +639502.961|222316.645|101.316 +639532.919|222288.323|103.949 +639552.896|222269.441|105.827 +639612.664|222212.821|104.693 +639632.617|222193.929|104.882 +639637.673|222189.141|104.848 +639642.614|222184.450|104.230 +639717.626|222113.377|101.977 +639722.643|222108.643|102.797 +639727.647|222103.900|102.681 +639732.652|222099.161|102.815 +639747.719|222084.896|103.065 +639752.726|222080.153|102.876 +639757.725|222075.420|103.047 +639772.746|222061.195|102.824 +639777.754|222056.449|102.663 +639787.775|222046.948|101.998 +639797.803|222037.430|100.950 +639807.850|222027.892|99.395 +639822.892|222013.649|99.563 +639827.866|222008.937|99.377 +639832.871|222004.209|100.036 +639852.838|221985.339|102.230 +639857.809|221980.633|102.200 +639867.837|221971.141|102.474 +639872.815|221966.429|102.352 +639887.768|221952.280|102.876 +639912.707|221928.668|102.821 +639917.700|221923.937|102.587 +639932.632|221909.788|102.041 +639952.404|221891.083|102.934 +639962.320|221881.704|103.398 +639977.139|221867.677|103.852 +639982.092|221862.992|103.876 +639987.005|221858.338|103.754 +639991.977|221853.626|103.498 +639996.981|221848.871|102.736 +640001.886|221844.232|102.873 +640006.851|221839.529|102.809 +640011.776|221834.862|102.693 +640026.639|221820.765|101.282 +640031.619|221816.035|100.517 +640036.551|221811.368|100.490 +640046.466|221801.956|99.216 +640061.328|221787.853|97.463 +640076.306|221773.625|94.756 +640081.253|221768.925|93.744 +640080.277|221766.870|93.156 +640075.233|221771.662|94.705 +640070.198|221776.435|95.643 +640060.157|221785.948|97.295 +640055.211|221790.629|97.896 +640050.200|221795.366|98.112 +640045.219|221800.081|98.637 +640040.193|221804.833|99.139 +640035.203|221809.558|99.837 +640030.253|221814.239|100.103 +640025.185|221819.031|100.651 +640010.173|221833.244|102.678 +640005.199|221837.944|102.812 +640000.182|221842.680|102.846 +639995.223|221847.362|102.767 +639990.215|221852.105|103.522 +639985.198|221856.844|103.657 +639980.230|221861.541|103.873 +639975.234|221866.253|103.733 +639965.285|221875.644|103.635 +639950.332|221889.754|102.922 +639945.306|221894.493|102.596 +639935.332|221903.909|102.352 +639930.352|221908.609|102.166 +639915.277|221922.849|102.498 +639900.213|221937.080|102.898 +639870.026|221965.576|102.407 +639854.914|221979.847|102.416 +639824.757|222008.281|99.950 +639819.697|222013.052|99.575 +639794.502|222036.869|100.980 +639789.485|222041.614|101.416 +639774.346|222055.934|102.773 +639769.335|222060.668|103.007 +639759.271|222070.171|102.907 +639754.269|222074.899|103.007 +639749.212|222079.669|102.824 +639739.148|222089.179|103.227 +639734.091|222093.952|103.096 +639729.083|222098.679|103.068 +639724.075|222103.410|103.108 +639663.865|222160.261|102.672 +639648.902|222174.410|103.638 +639643.891|222179.144|103.730 +639638.908|222183.868|104.650 +639628.944|222193.283|105.010 +639624.003|222197.965|105.650 +639618.986|222202.699|105.583 +639609.019|222212.099|104.681 +639604.057|222216.789|104.861 +639589.167|222230.859|105.299 +639574.278|222244.935|105.860 +639554.496|222263.625|106.308 +639519.813|222296.327|103.239 +639514.827|222301.027|102.544 +639509.855|222305.715|102.175 +639504.948|222310.348|102.053 +639499.955|222315.051|101.407 +639490.080|222324.363|100.484 +639480.165|222333.705|99.161 +639475.236|222338.356|98.947 +639470.292|222343.017|98.563 +639465.336|222347.692|98.024 +639460.438|222352.310|97.695 +639455.482|222356.982|97.286 +639450.520|222361.661|96.802 +639445.628|222366.279|96.625 +639430.848|222380.224|95.619 +639411.142|222398.798|93.537 +639406.189|222403.455|92.443 +639401.218|222408.137|91.690 +639396.363|222412.724|91.684 +639391.495|222417.318|91.605 +639386.588|222421.945|91.129 +639381.653|222426.593|90.419 +639376.737|222431.229|89.904 +639367.093|222440.345|90.367 +639362.286|222444.890|90.514 +639357.559|222449.371|91.437 +639352.779|222453.891|91.897 +639338.649|222467.296|95.137 +639333.985|222471.719|96.201 +639315.234|222489.495|99.984 +639301.070|222502.897|101.322 +639300.219|222501.059|101.441 +639319.236|222483.005|99.155 +639338.182|222464.986|95.095 +639347.665|222455.960|92.699 +639357.242|222446.865|91.126 +639362.030|222442.324|90.834 +639366.959|222437.648|90.480 +639376.639|222428.470|90.017 +639381.595|222423.786|90.459 +639386.576|222419.080|91.202 +639391.529|222414.398|91.696 +639396.427|222409.759|91.684 +639401.374|222405.071|91.687 +639406.357|222400.368|92.586 +639411.408|222395.607|93.757 +639431.265|222376.831|95.649 +639436.234|222372.134|96.113 +639446.155|222362.740|96.427 +639451.114|222358.049|96.896 +639456.116|222353.322|97.305 +639461.121|222348.588|97.798 +639466.125|222343.855|98.338 +639471.121|222339.130|98.807 +639476.102|222334.415|99.118 +639481.119|222329.675|99.944 +639486.105|222324.960|100.389 +639491.080|222320.251|100.706 +639496.103|222315.499|101.090 +639501.107|222310.772|101.934 +639506.128|222306.023|102.340 +639511.135|222301.280|102.626 +639516.107|222296.580|103.093 +639521.127|222291.831|103.629 +639526.144|222287.089|104.147 +639531.130|222282.364|104.205 +639551.198|222263.384|106.119 +639611.116|222206.600|105.427 +639616.139|222201.845|105.748 +639621.144|222197.102|105.693 +639631.138|222187.620|104.998 +639641.127|222178.141|104.147 +639646.168|222173.355|103.684 +639666.172|222154.382|102.669 +639681.138|222140.111|97.490 +639696.186|222125.861|97.896 +639711.310|222111.588|101.206 +639721.393|222102.072|103.297 +639726.349|222097.372|103.053 +639731.403|222092.586|103.087 +639736.410|222087.847|103.352 +639741.412|222083.101|103.218 +639746.466|222078.309|102.965 +639751.474|222073.570|103.230 +639756.472|222068.833|103.288 +639766.531|222059.305|103.355 +639771.539|222054.553|103.013 +639776.547|222049.804|102.794 +639781.561|222045.043|102.041 +639791.585|222035.525|101.047 +639816.674|222011.726|99.453 +639831.645|221997.568|101.047 +639841.603|221988.152|102.267 +639846.614|221983.407|102.511 +639856.557|221973.982|102.431 +639886.476|221945.633|102.873 +639896.370|221936.263|103.282 +639911.332|221922.075|102.736 +639916.337|221917.320|102.191 +639921.278|221912.635|102.111 +639931.196|221903.241|102.334 +639946.058|221889.159|102.617 +639960.844|221875.160|103.583 +639970.692|221865.827|103.623 +639975.642|221861.139|103.693 +639980.544|221856.494|103.775 +639985.503|221851.794|103.711 +639990.434|221847.112|103.346 +639995.369|221842.427|102.965 +640000.282|221837.773|102.986 +640005.199|221833.113|102.977 +640024.980|221814.325|100.895 +640039.849|221800.194|98.597 +640044.765|221795.528|98.265 +640049.755|221790.788|97.609 +640054.659|221786.137|97.490 +640059.594|221781.452|97.027 +640064.577|221776.712|96.021 +640074.492|221767.282|94.193 +640079.485|221762.533|93.239 +640080.198|221758.668|92.864 +640070.222|221768.135|94.601 +640065.260|221772.829|94.686 +640060.231|221777.611|96.189 +640045.259|221791.803|97.862 +640030.257|221806.019|99.697 +640015.248|221820.247|102.081 +640010.237|221824.996|102.690 +640000.276|221834.420|103.062 +639995.308|221839.114|103.081 +639990.349|221843.802|103.044 +639985.311|221848.575|103.529 +639980.294|221853.321|103.711 +639970.342|221862.727|103.590 +639960.390|221872.133|103.565 +639945.440|221886.251|102.782 +639940.438|221890.982|102.940 +639920.412|221909.901|102.242 +639915.377|221914.662|102.248 +639910.330|221919.435|102.523 +639895.257|221933.697|103.263 +639890.225|221938.455|103.330 +639885.156|221943.246|103.260 +639865.079|221962.214|102.620 +639854.987|221971.754|102.654 +639849.952|221976.524|103.202 +639844.898|221981.294|102.754 +639839.887|221986.025|102.471 +639829.826|221995.516|101.386 +639814.708|222009.778|99.612 +639809.648|222014.557|99.362 +639804.628|222019.306|99.517 +639799.562|222024.094|99.618 +639794.487|222028.907|100.517 +639779.339|222043.257|102.227 +639774.325|222048.009|102.879 +639764.208|222057.577|103.245 +639744.040|222076.645|103.169 +639738.983|222081.421|103.099 +639733.929|222086.204|103.373 +639728.918|222090.937|103.175 +639723.862|222095.713|102.843 +639683.503|222133.771|97.609 +639663.466|222152.803|102.675 +639643.498|222171.688|103.766 +639638.505|222176.416|104.385 +639628.508|222185.877|105.120 +639618.562|222195.289|105.906 +639613.591|222199.983|105.723 +639598.647|222214.104|105.799 +639593.688|222218.795|105.952 +639588.716|222223.489|105.900 +639583.742|222228.189|105.793 +639573.815|222237.574|106.089 +639568.855|222242.265|106.330 +639554.033|222256.270|106.418 +639549.092|222260.934|106.183 +639544.090|222265.655|105.732 +639539.150|222270.322|105.552 +639534.248|222274.945|105.318 +639529.222|222279.682|104.580 +639524.321|222284.309|104.394 +639519.365|222288.988|104.083 +639514.388|222293.681|103.504 +639509.459|222298.330|102.983 +639494.621|222312.326|101.608 +639489.677|222316.987|101.047 +639484.734|222321.647|100.514 +639479.802|222326.301|100.185 +639474.882|222330.937|99.420 +639460.051|222344.922|97.652 +639455.147|222349.548|97.228 +639450.203|222354.215|96.960 +639445.277|222358.857|96.357 +639440.367|222363.490|95.976 +639435.459|222368.123|95.665 +639430.601|222372.707|95.406 +639425.624|222377.401|94.909 +639420.786|222381.973|94.918 +639410.954|222391.245|93.830 +639406.016|222395.893|92.851 +639401.047|222400.575|92.108 +639396.165|222405.184|91.818 +639391.327|222409.759|91.992 +639386.426|222414.383|91.541 +639381.659|222418.894|91.998 +639376.645|222423.603|90.507 +639371.802|222428.178|90.233 +639366.968|222432.750|90.572 +639362.176|222437.282|90.870 +639352.596|222446.344|91.522 +639347.851|222450.843|92.254 +639343.172|222455.278|93.196 +639338.454|222459.755|94.186 +639315.130|222481.890|99.801 +639310.449|222486.322|100.295 +639289.045|222503.400|101.797 +639298.695|222494.262|101.931 +639317.639|222476.269|99.027 +639327.088|222467.290|97.198 +639345.967|222449.319|92.041 +639350.829|222444.701|91.495 +639360.512|222435.520|90.959 +639365.364|222430.924|90.806 +639370.229|222426.309|90.322 +639375.164|222421.637|90.565 +639380.217|222416.879|92.004 +639385.073|222412.270|91.492 +639390.014|222407.598|91.888 +639394.955|222402.919|91.785 +639399.853|222398.280|91.782 +639404.876|222393.537|92.605 +639409.859|222388.834|93.577 +639414.855|222384.116|94.205 +639419.811|222379.425|94.446 +639424.758|222374.743|94.589 +639429.781|222369.991|95.119 +639434.685|222365.352|95.390 +639439.699|222360.613|95.857 +639444.695|222355.888|96.146 +639454.677|222346.455|97.295 +639459.670|222341.730|97.695 +639469.692|222332.260|99.033 +639474.693|222327.536|99.627 +639484.682|222318.093|100.798 +639489.723|222313.332|101.419 +639504.768|222299.110|103.132 +639509.718|222294.425|103.294 +639514.753|222289.670|104.071 +639519.758|222284.934|104.440 +639524.699|222280.255|104.568 +639534.764|222270.742|105.543 +639544.740|222261.299|106.031 +639549.729|222256.578|106.342 +639554.758|222251.817|106.522 +639559.730|222247.108|106.558 +639564.698|222242.402|106.549 +639569.703|222237.659|106.327 +639579.719|222228.168|106.074 +639584.726|222223.422|105.967 +639589.698|222218.716|106.089 +639594.700|222213.973|105.912 +639599.704|222209.230|105.741 +639604.709|222204.488|105.668 +639624.725|222185.520|105.208 +639629.782|222180.732|105.312 +639634.723|222176.041|104.729 +639639.755|222171.264|104.050 +639644.751|222166.525|103.632 +639659.796|222152.260|102.800 +639674.813|222137.956|98.329 +639699.984|222114.139|99.716 +639715.138|222099.840|102.962 +639725.151|222090.367|103.547 +639730.199|222085.582|103.321 +639735.249|222080.797|103.294 +639740.254|222076.054|103.169 +639745.305|222071.275|103.446 +639760.359|222057.013|103.312 +639770.417|222047.482|103.120 +639775.474|222042.684|102.620 +639795.578|222023.598|100.118 +639800.644|222018.785|99.450 +639805.655|222014.042|99.688 +639810.672|222009.290|99.523 +639825.735|221995.047|101.029 +639835.724|221985.613|102.712 +639840.735|221980.871|102.882 +639845.742|221976.128|103.096 +639860.751|221961.906|102.782 +639870.736|221952.442|102.824 +639875.753|221947.693|102.953 +639880.715|221942.996|103.245 +639885.684|221938.293|103.388 +639895.632|221928.869|103.452 +639900.661|221924.102|103.327 +639905.660|221919.359|102.831 +639910.589|221914.689|102.888 +639915.591|221909.941|102.416 +639920.541|221905.244|102.090 +639925.512|221900.541|102.404 +639930.489|221895.831|102.611 +639940.365|221886.477|102.709 +639945.287|221881.817|103.050 +639955.160|221872.468|103.349 +639960.055|221867.832|103.431 +639964.993|221863.157|103.590 +639969.903|221858.505|103.465 +639974.844|221853.824|103.583 +639979.757|221849.166|103.468 +639984.686|221844.491|103.111 +639989.587|221839.852|103.245 +639994.491|221835.203|103.321 +640014.163|221816.537|101.761 +640019.034|221811.926|101.806 +640024.036|221807.168|100.734 +640043.698|221788.499|98.393 +640063.373|221769.802|95.412 +640068.305|221765.118|94.528 +640073.215|221760.454|93.900 +640080.655|221749.390|92.525 +640075.699|221754.084|92.973 +640070.716|221758.808|93.757 +640065.705|221763.557|94.372 +640060.761|221768.248|95.375 +640055.698|221773.058|96.722 +640040.702|221787.283|99.341 +640030.744|221796.722|100.453 +640025.791|221801.413|100.752 +640015.827|221810.853|101.563 +640010.874|221815.550|101.986 +640005.869|221820.293|102.480 +640000.901|221825.002|103.184 +639995.887|221829.751|103.242 +639986.003|221839.102|103.355 +639981.007|221843.826|103.178 +639976.054|221848.508|103.087 +639971.080|221853.220|103.401 +639966.084|221857.948|103.327 +639961.128|221862.636|103.398 +639956.138|221867.354|103.233 +639951.188|221872.036|103.215 +639936.232|221886.178|102.764 +639926.259|221895.609|102.593 +639921.229|221900.364|102.422 +639916.249|221905.076|102.291 +639911.247|221909.809|102.593 +639906.245|221914.552|103.029 +639901.210|221919.316|103.135 +639896.220|221924.044|103.398 +639891.194|221928.796|103.337 +639886.211|221933.514|103.498 +639881.185|221938.272|103.550 +639876.168|221943.011|103.327 +639871.193|221947.718|103.282 +639861.114|221957.246|102.925 +639856.142|221961.949|102.882 +639851.070|221966.752|103.108 +639846.047|221971.504|103.242 +639841.033|221976.250|103.172 +639835.974|221981.032|103.004 +639830.963|221985.766|102.730 +639805.841|222009.482|99.834 +639800.781|222014.268|99.697 +639795.767|222019.007|99.478 +639780.610|222033.391|101.950 +639765.479|222047.738|103.644 +639735.255|222076.328|103.489 +639730.202|222081.110|103.565 +639725.151|222085.893|103.590 +639720.140|222090.623|103.257 +639699.929|222109.689|99.965 +639694.863|222114.474|99.575 +639689.840|222119.214|98.957 +639674.670|222133.533|97.134 +639669.696|222138.273|99.036 +639659.710|222147.786|102.663 +639644.656|222162.047|103.449 +639639.615|222166.830|103.913 +639634.631|222171.560|104.717 +639629.642|222176.294|105.330 +639624.634|222181.033|105.342 +639589.737|222214.074|106.351 +639584.714|222218.826|106.147 +639579.752|222223.522|106.257 +639574.784|222228.226|106.257 +639569.782|222232.962|106.552 +639564.866|222237.616|106.680 +639559.891|222242.326|106.592 +639554.920|222247.029|106.610 +639549.994|222251.692|106.595 +639545.005|222256.407|106.302 +639540.012|222261.126|106.034 +639535.074|222265.798|105.866 +639530.070|222270.526|105.443 +639520.170|222279.886|104.906 +639505.262|222293.968|103.477 +639480.488|222317.371|100.807 +639470.569|222326.731|99.411 +639465.610|222331.413|98.780 +639460.703|222336.046|98.259 +639455.738|222340.734|97.634 +639450.821|222345.376|97.055 +639445.868|222350.057|96.628 +639440.973|222354.675|95.814 +639436.014|222359.360|95.439 +639431.140|222363.965|94.961 +639426.227|222368.611|94.574 +639421.305|222373.259|94.165 +639416.385|222377.910|93.818 +639411.514|222382.516|93.479 +639406.577|222387.176|93.010 +639401.651|222391.824|92.163 +639396.774|222396.436|91.867 +639391.937|222401.014|92.019 +639387.066|222405.623|91.843 +639367.611|222424.014|90.751 +639362.774|222428.598|91.029 +639357.964|222433.152|91.114 +639353.105|222437.752|91.245 +639348.360|222442.247|91.522 +639343.532|222446.826|91.937 +639329.560|222460.115|95.677 +639320.278|222468.942|98.155 +639315.542|222473.438|98.978 +639310.933|222477.818|100.051 +639306.239|222482.274|100.837 +639296.861|222491.171|102.062 +639287.653|222496.255|102.197 +639292.490|222491.668|102.197 +639306.696|222478.165|100.566 +639316.090|222469.225|98.728 +639330.184|222455.793|94.930 +639344.376|222442.272|91.522 +639349.219|222437.678|91.257 +639354.053|222433.097|91.398 +639358.955|222428.446|91.297 +639363.807|222423.840|91.196 +639368.702|222419.198|91.038 +639383.433|222405.242|91.715 +639388.414|222400.523|92.050 +639393.293|222395.893|91.855 +639408.137|222381.842|93.126 +639413.099|222377.142|93.412 +639418.055|222372.448|93.680 +639423.024|222367.745|94.110 +639427.995|222363.042|94.580 +639432.966|222358.336|95.113 +639437.965|222353.602|95.457 +639442.884|222348.945|96.030 +639447.908|222344.199|96.701 +639452.915|222339.459|97.289 +639457.884|222334.763|97.960 +639462.892|222330.026|98.603 +639467.893|222325.295|99.210 +639472.892|222320.568|99.831 +639477.894|222315.840|100.493 +639482.883|222311.119|101.093 +639487.922|222306.358|101.681 +639492.917|222301.634|102.443 +639497.904|222296.918|103.114 +639532.898|222263.799|105.891 +639537.885|222259.074|106.125 +639542.914|222254.310|106.314 +639547.897|222249.592|106.555 +639557.849|222240.165|106.784 +639562.863|222235.410|106.799 +639567.868|222230.664|106.634 +639572.833|222225.958|106.604 +639577.841|222221.209|106.549 +639582.794|222216.509|106.305 +639587.805|222211.760|106.324 +639592.804|222207.018|106.113 +639607.782|222192.820|106.174 +639612.780|222188.077|105.973 +639617.770|222183.341|105.522 +639622.775|222178.595|105.464 +639632.760|222169.116|104.726 +639637.743|222164.382|103.989 +639642.733|222159.642|103.452 +639647.777|222154.854|103.227 +639652.776|222150.111|102.879 +639657.775|222145.369|102.629 +639687.883|222116.763|99.078 +639692.940|222111.972|99.124 +639698.009|222107.183|99.978 +639703.029|222102.443|101.112 +639718.113|222088.188|103.419 +639723.164|222083.403|103.596 +639728.214|222078.617|103.705 +639733.216|222073.875|103.599 +639738.264|222069.089|103.687 +639743.314|222064.304|103.739 +639793.582|222016.581|99.655 +639803.646|222007.044|99.908 +639808.651|222002.307|100.426 +639818.710|221992.785|101.118 +639823.696|221988.082|102.462 +639828.698|221983.355|102.934 +639833.706|221978.615|103.172 +639838.714|221973.872|103.367 +639848.781|221964.341|103.681 +639853.804|221959.580|103.416 +639868.798|221945.383|103.766 +639873.818|221940.625|103.699 +639878.807|221935.891|103.230 +639883.833|221931.127|103.090 +639888.814|221926.409|102.995 +639893.794|221921.688|102.898 +639898.827|221916.920|102.739 +639903.810|221912.196|102.639 +639908.748|221907.520|102.596 +639913.783|221902.744|102.440 +639918.721|221898.069|102.404 +639923.698|221893.356|102.611 +639928.636|221888.681|102.629 +639933.571|221884.008|102.751 +639938.554|221879.290|102.870 +639943.492|221874.614|102.971 +639948.433|221869.932|103.029 +639953.374|221865.257|103.135 +639958.314|221860.575|103.212 +639963.267|221855.881|103.126 +639968.220|221851.190|103.111 +639973.116|221846.554|103.254 +639978.056|221841.879|103.468 +639982.951|221837.246|103.699 +639992.793|221827.916|103.330 +639997.783|221823.179|102.892 +640002.724|221818.494|102.532 +640007.665|221813.806|102.184 +640037.182|221785.795|99.514 +640047.082|221776.392|97.996 +640052.025|221771.698|97.396 +640066.906|221757.543|94.113 +640071.844|221752.849|93.181 +640076.733|221748.213|92.897 +640075.379|221746.068|92.848 +640030.049|221789.069|100.051 +640025.093|221793.760|100.325 +640020.076|221798.515|100.846 +640015.114|221803.215|101.294 +640010.076|221807.982|101.535 +640005.062|221812.734|102.139 +640000.063|221817.467|102.562 +639995.086|221822.179|102.757 +639985.119|221831.613|103.340 +639975.191|221841.007|103.516 +639970.196|221845.725|103.343 +639965.252|221850.398|103.172 +639960.262|221855.113|102.974 +639955.318|221859.786|102.806 +639950.329|221864.501|102.660 +639945.336|221869.219|102.562 +639940.389|221873.895|102.504 +639935.400|221878.613|102.443 +639930.413|221883.328|102.343 +639925.423|221888.044|102.276 +639920.437|221892.756|102.194 +639915.447|221897.477|102.221 +639910.455|221902.199|102.325 +639905.416|221906.963|102.425 +639900.479|221911.635|102.483 +639895.443|221916.399|102.602 +639890.457|221921.115|102.681 +639885.473|221925.830|102.794 +639880.493|221930.542|102.849 +639875.464|221935.300|102.968 +639870.483|221940.009|103.087 +639865.500|221944.724|103.303 +639860.464|221949.495|103.724 +639855.487|221954.207|103.967 +639835.522|221973.074|103.462 +639830.557|221977.768|103.282 +639820.551|221987.211|102.172 +639810.541|221996.653|100.965 +639805.536|222001.378|100.346 +639800.525|222006.108|99.981 +639785.468|222020.364|101.017 +639780.454|222025.113|101.294 +639775.437|222029.867|101.950 +639765.409|222039.377|103.559 +639760.401|222044.114|103.547 +639755.393|222048.853|103.791 +639750.340|222053.633|103.782 +639740.333|222063.097|103.897 +639735.325|222067.830|103.727 +639730.321|222072.564|103.824 +639725.313|222077.297|103.745 +639720.305|222082.031|103.663 +639715.297|222086.765|103.452 +639700.252|222100.953|101.285 +639690.206|222110.423|99.633 +639680.117|222119.945|98.670 +639675.146|222124.642|98.463 +639670.077|222129.431|98.094 +639655.151|222143.631|102.858 +639650.137|222148.371|102.727 +639640.185|222157.795|103.480 +639635.192|222162.529|104.035 +639630.209|222167.256|104.894 +639625.222|222171.987|105.601 +639620.211|222176.723|105.574 +639615.249|222181.417|105.604 +639610.247|222186.154|105.763 +639605.240|222190.891|105.854 +639595.266|222200.324|105.940 +639590.310|222205.015|106.202 +639580.343|222214.449|106.506 +639555.514|222237.940|106.863 +639550.586|222242.600|106.787 +639545.654|222247.260|106.680 +639540.668|222251.973|106.476 +639535.727|222256.642|106.241 +639515.875|222275.396|105.053 +639510.898|222280.093|104.388 +639505.926|222284.784|103.907 +639500.952|222289.481|103.401 +639495.975|222294.178|102.898 +639491.043|222298.836|102.392 +639486.102|222303.499|101.806 +639481.109|222308.208|101.212 +639476.160|222312.881|100.569 +639471.158|222317.599|99.950 +639466.202|222322.275|99.325 +639461.243|222326.957|98.688 +639456.280|222331.638|98.082 +639451.361|222336.277|97.445 +639446.347|222341.011|96.847 +639441.418|222345.659|96.192 +639436.493|222350.307|95.604 +639431.518|222355.004|95.031 +639426.584|222359.659|94.412 +639421.649|222364.316|93.836 +639416.797|222368.903|93.684 +639411.865|222373.558|93.232 +639406.982|222378.169|92.790 +639402.056|222382.823|92.434 +639397.155|222387.447|91.879 +639392.260|222392.077|91.937 +639387.475|222396.610|92.114 +639382.543|222401.267|91.830 +639363.149|222419.601|91.352 +639358.342|222424.148|91.477 +639353.517|222428.711|91.425 +639348.689|222433.277|91.382 +639343.867|222437.837|91.419 +639329.761|222451.233|94.415 +639311.137|222468.933|99.258 +639306.483|222473.355|100.359 +639301.826|222477.772|101.054 +639287.723|222491.137|102.453 +639282.977|222495.627|102.453 +639278.237|222500.111|102.529 +639271.617|222503.284|102.535 +639276.427|222498.730|102.651 +639281.233|222494.176|102.767 +639286.001|222489.656|102.584 +639290.743|222485.157|102.218 +639295.498|222480.649|101.959 +639300.171|222476.202|101.057 +639314.313|222462.751|98.115 +639333.086|222444.878|93.440 +639337.804|222440.391|92.510 +639342.632|222435.801|91.666 +639347.418|222431.259|91.358 +639352.298|222426.639|91.480 +639362.015|222417.431|91.401 +639376.724|222403.501|91.806 +639381.626|222398.856|91.818 +639386.548|222394.199|92.062 +639391.425|222389.572|91.864 +639396.369|222384.890|91.861 +639401.270|222380.254|92.504 +639406.235|222375.557|92.812 +639411.200|222370.860|93.129 +639416.102|222366.218|93.327 +639421.082|222361.509|93.903 +639426.053|222356.809|94.412 +639431.031|222352.103|95.025 +639436.002|222347.403|95.628 +639441.022|222342.660|96.247 +639446.009|222337.948|97.119 +639450.968|222333.257|97.689 +639460.944|222323.829|99.066 +639470.890|222314.420|100.252 +639475.870|222309.708|100.663 +639480.863|222304.990|101.297 +639485.849|222300.271|101.919 +639490.878|222295.516|102.492 +639495.810|222290.853|103.047 +639500.833|222286.101|103.620 +639505.798|222281.404|104.056 +639510.764|222276.707|104.559 +639515.768|222271.971|104.979 +639520.770|222267.237|105.367 +639525.714|222262.555|105.641 +639530.704|222257.831|105.924 +639535.702|222253.100|106.388 +639540.692|222248.379|106.680 +639545.669|222243.664|106.827 +639550.634|222238.955|106.830 +639560.614|222229.497|106.799 +639570.578|222220.051|106.500 +639580.490|222210.648|106.253 +639585.498|222205.902|106.220 +639590.454|222201.202|106.098 +639595.504|222196.414|105.997 +639600.460|222191.717|105.869 +639605.462|222186.971|105.796 +639610.461|222182.231|105.616 +639615.417|222177.534|105.507 +639620.428|222172.788|105.723 +639625.420|222168.049|105.431 +639630.410|222163.312|104.952 +639640.371|222153.842|103.315 +639645.363|222149.102|102.937 +639650.371|222144.357|103.065 +639675.295|222120.646|98.124 +639690.401|222106.366|100.188 +639715.553|222082.589|103.669 +639720.604|222077.806|103.852 +639735.655|222063.542|103.855 +639740.702|222058.759|104.096 +639745.698|222054.023|104.025 +639760.798|222039.709|103.885 +639765.802|222034.961|103.428 +639770.859|222030.148|102.453 +639775.873|222025.384|101.563 +639785.941|222015.822|100.676 +639800.979|222001.561|100.093 +639805.978|221996.833|100.761 +639816.027|221987.329|101.925 +639821.017|221982.614|102.876 +639826.013|221977.893|103.602 +639831.072|221973.089|103.431 +639836.035|221968.389|103.544 +639841.036|221963.653|103.913 +639846.090|221958.861|104.080 +639851.061|221954.146|103.894 +639856.090|221949.370|103.434 +639861.156|221944.560|103.260 +639866.131|221939.842|103.123 +639871.157|221935.074|102.934 +639876.183|221930.304|102.739 +639881.203|221925.543|102.696 +639886.229|221920.776|102.614 +639891.210|221916.052|102.517 +639896.233|221911.288|102.495 +639901.262|221906.518|102.440 +639906.245|221901.790|102.343 +639911.232|221897.060|102.239 +639916.261|221892.293|102.291 +639921.196|221887.614|102.325 +639926.176|221882.893|102.398 +639931.205|221878.125|102.480 +639936.143|221873.444|102.565 +639941.124|221868.722|102.700 +639946.061|221864.044|102.831 +639951.045|221859.322|102.977 +639956.028|221854.601|103.175 +639960.963|221849.922|103.358 +639965.950|221845.198|103.532 +639975.825|221835.840|103.971 +639980.781|221831.140|103.913 +639995.692|221816.976|102.596 +640000.670|221812.252|102.367 +640005.620|221807.552|101.910 +640015.571|221798.100|101.032 +640020.533|221793.382|100.487 +640025.474|221788.694|100.304 +640030.442|221783.973|99.795 +640035.411|221779.257|99.347 +640050.279|221765.121|97.448 +640075.123|221741.483|92.998 +640080.119|221736.732|92.092 +640076.787|221736.329|92.943 +640071.792|221741.060|93.275 +640061.587|221750.752|95.488 +640056.543|221755.544|96.564 +640051.474|221760.357|97.420 +640041.394|221769.912|98.576 +640031.348|221779.434|99.475 +640026.264|221784.259|100.154 +640021.259|221788.999|100.453 +640016.266|221793.729|100.660 +640006.205|221803.269|101.560 +640001.148|221808.064|102.096 +639996.107|221812.855|103.178 +639986.079|221822.350|103.251 +639971.110|221836.529|103.903 +639956.138|221850.690|103.367 +639951.149|221855.409|103.196 +639946.113|221860.173|103.020 +639941.172|221864.845|102.873 +639936.137|221869.609|102.760 +639931.154|221874.325|102.565 +639926.167|221879.043|102.465 +639921.135|221883.804|102.346 +639916.103|221888.565|102.236 +639911.113|221893.286|102.273 +639906.078|221898.053|102.300 +639901.088|221902.781|102.437 +639896.050|221907.554|102.626 +639891.014|221912.321|102.757 +639886.028|221917.042|102.898 +639880.999|221921.803|102.974 +639875.979|221926.555|102.834 +639870.956|221931.307|102.782 +639865.929|221936.068|102.873 +639860.903|221940.829|103.035 +639855.923|221945.544|103.205 +639850.897|221950.305|103.437 +639845.870|221955.066|103.690 +639840.847|221959.827|103.992 +639835.839|221964.561|103.599 +639830.874|221969.261|103.544 +639805.850|221992.901|100.971 +639800.891|221997.586|100.420 +639795.877|222002.326|100.185 +639790.866|222007.062|99.917 +639785.846|222011.823|100.371 +639780.829|222016.581|100.849 +639770.795|222026.103|102.303 +639765.781|222030.864|103.145 +639760.770|222035.616|103.705 +639755.765|222040.359|103.812 +639750.712|222045.141|103.803 +639745.753|222049.838|103.952 +639735.700|222059.357|104.236 +639730.741|222064.048|104.120 +639725.688|222068.830|104.050 +639720.683|222073.567|104.044 +639710.713|222082.991|103.364 +639705.653|222087.767|102.547 +639700.685|222092.458|101.846 +639690.654|222101.934|100.919 +639670.613|222120.860|98.420 +639660.591|222130.351|98.621 +639620.848|222168.094|105.909 +639615.883|222172.791|105.757 +639610.881|222177.528|105.991 +639605.861|222182.274|105.659 +639600.908|222186.968|105.906 +639595.894|222191.710|105.894 +639590.935|222196.407|105.985 +639585.927|222201.147|106.098 +639580.968|222205.844|106.250 +639576.003|222210.544|106.311 +639571.044|222215.241|106.446 +639566.076|222219.941|106.476 +639561.114|222224.641|106.604 +639556.100|222229.390|106.650 +639551.177|222234.047|106.686 +639546.197|222238.756|106.540 +639541.219|222243.469|106.415 +639536.278|222248.138|106.208 +639531.295|222252.853|106.071 +639526.351|222257.529|105.839 +639521.358|222262.250|105.607 +639516.405|222266.932|105.266 +639511.446|222271.620|104.861 +639506.475|222276.314|104.342 +639501.507|222281.008|103.876 +639496.538|222285.702|103.458 +639491.567|222290.399|103.056 +639486.629|222295.062|102.471 +639481.652|222299.765|102.041 +639476.665|222304.478|101.480 +639471.725|222309.144|100.977 +639461.785|222318.529|99.972 +639446.838|222332.641|97.914 +639441.860|222337.338|97.183 +639436.919|222342.002|96.351 +639431.890|222346.747|95.668 +639422.003|222356.080|94.174 +639417.028|222360.780|93.699 +639412.103|222365.435|93.245 +639407.171|222370.092|92.790 +639402.248|222374.746|92.440 +639397.344|222379.385|92.355 +639392.467|222383.997|92.035 +639387.578|222388.624|92.150 +639382.714|222393.226|92.028 +639377.831|222397.844|91.727 +639373.009|222402.404|91.623 +639363.289|222411.603|91.638 +639358.452|222416.187|91.873 +639353.624|222420.753|91.797 +639348.789|222425.328|91.647 +639343.967|222429.891|91.657 +639339.127|222434.469|91.522 +639334.415|222438.946|92.574 +639325.027|222447.868|94.540 +639311.073|222461.142|98.414 +639306.419|222465.565|99.530 +639301.734|222470.015|100.377 +639297.080|222474.431|101.078 +639287.695|222483.335|102.264 +639282.953|222487.824|102.672 +639278.237|222492.290|102.916 +639273.522|222496.746|102.800 +639268.758|222501.251|102.687 +639265.567|222501.373|103.023 +639270.306|222496.874|102.946 +639275.168|222492.262|103.108 +639279.920|222487.751|102.773 +639284.726|222483.182|102.535 +639289.466|222478.680|102.133 +639303.734|222465.101|99.816 +639317.727|222451.745|95.558 +639322.549|222447.152|94.671 +639336.814|222433.570|91.888 +639341.727|222428.906|91.839 +639361.280|222410.353|91.846 +639366.191|222405.696|91.864 +639371.070|222401.060|91.623 +639375.981|222396.402|91.711 +639380.918|222391.724|92.071 +639385.829|222387.066|92.208 +639390.703|222382.436|91.998 +639395.659|222377.739|92.138 +639400.621|222373.033|92.391 +639405.589|222368.327|92.726 +639410.557|222363.621|93.101 +639415.516|222358.930|93.952 +639420.527|222354.181|94.360 +639425.499|222349.475|94.851 +639460.590|222316.282|100.493 +639465.549|222311.579|100.612 +639470.569|222306.837|101.587 +639480.555|222297.376|102.230 +639490.555|222287.909|103.273 +639495.511|222283.212|103.529 +639500.489|222278.502|104.190 +639505.506|222273.751|104.748 +639515.451|222264.326|105.348 +639520.444|222259.599|105.607 +639525.434|222254.868|105.879 +639530.414|222250.147|106.013 +639535.398|222245.422|106.244 +639540.329|222240.747|106.427 +639545.355|222235.983|106.613 +639550.327|222231.271|106.686 +639555.289|222226.561|106.604 +639560.251|222221.855|106.543 +639565.210|222217.149|106.436 +639570.169|222212.443|106.378 +639575.174|222207.694|106.266 +639580.142|222202.982|106.439 +639585.138|222198.239|106.122 +639605.081|222179.326|106.558 +639615.066|222169.844|105.927 +639620.022|222165.144|105.921 +639689.901|222098.771|101.136 +639694.863|222094.071|101.544 +639699.920|222089.282|102.087 +639709.890|222079.852|103.577 +639724.895|222065.630|104.370 +639734.896|222056.144|104.443 +639744.890|222046.659|104.199 +639749.846|222041.956|103.900 +639754.845|222037.210|103.849 +639764.854|222027.700|102.989 +639769.862|222022.939|102.343 +639779.887|222013.405|100.913 +639784.901|222008.635|100.206 +639789.912|222003.880|100.157 +639794.868|221999.183|100.511 +639799.873|221994.440|100.785 +639804.875|221989.704|101.209 +639819.767|221975.616|103.367 +639829.780|221966.128|103.605 +639834.742|221961.421|103.641 +639839.704|221956.715|103.620 +639844.721|221951.957|103.471 +639849.693|221947.239|103.257 +639854.710|221942.478|103.105 +639859.638|221937.802|102.892 +639864.652|221933.044|102.913 +639869.617|221928.338|103.013 +639874.543|221923.669|103.026 +639879.551|221918.923|103.297 +639884.528|221914.205|103.205 +639889.463|221909.517|102.943 +639894.443|221904.796|102.855 +639899.424|221900.071|102.788 +639904.404|221895.344|102.693 +639909.388|221890.619|102.626 +639914.323|221885.938|102.590 +639919.300|221881.219|102.690 +639924.232|221876.547|102.815 +639934.150|221867.140|102.904 +639939.036|221862.514|103.081 +639953.877|221848.450|103.715 +639963.749|221839.096|104.065 +639968.702|221834.399|103.986 +639988.481|221815.623|103.029 +639998.417|221806.186|102.093 +640013.255|221792.092|100.929 +640018.202|221787.399|100.621 +640028.089|221778.005|99.560 +640047.908|221759.171|97.408 +640052.845|221754.477|96.875 +640057.811|221749.756|96.079 +640062.767|221745.043|95.430 +640067.729|221740.319|94.229 +640077.757|221730.767|91.870 +640078.028|221727.335|91.166 +640067.875|221736.981|93.668 +640062.831|221741.779|95.195 +640057.765|221746.580|95.887 +640052.745|221751.341|96.707 +640047.685|221756.141|97.463 +640032.628|221770.409|99.100 +640027.696|221775.069|99.002 +640022.597|221779.907|99.908 +640012.575|221789.398|100.782 +640002.511|221798.932|101.742 +639997.469|221803.702|102.069 +639987.441|221813.197|102.770 +639982.354|221818.013|103.221 +639977.316|221822.789|103.715 +639962.256|221837.026|103.724 +639957.242|221841.769|103.928 +639952.200|221846.536|103.876 +639937.201|221860.706|103.230 +639932.156|221865.479|103.330 +639927.124|221870.231|103.169 +639922.098|221874.980|102.943 +639917.115|221879.689|102.818 +639912.079|221884.450|102.821 +639907.050|221889.205|102.757 +639902.021|221893.960|102.709 +639896.982|221898.727|102.882 +639891.944|221903.494|103.068 +639881.828|221913.065|103.468 +639871.769|221922.581|103.721 +639866.710|221927.360|103.449 +639861.705|221932.078|102.876 +639856.685|221936.824|102.834 +639851.610|221941.631|103.157 +639846.593|221946.370|103.047 +639841.570|221951.125|103.273 +639836.501|221955.920|103.422 +639831.481|221960.669|103.586 +639821.401|221970.203|103.797 +639816.402|221974.915|103.047 +639796.292|221993.892|100.926 +639791.238|221998.662|100.371 +639786.276|222003.347|100.106 +639781.213|222008.138|100.289 +639776.147|222012.942|101.087 +639766.116|222022.446|102.251 +639751.041|222036.732|103.879 +639746.036|222041.465|104.013 +639736.033|222050.935|104.650 +639731.028|222055.663|104.382 +639700.938|222084.079|102.587 +639695.976|222088.767|102.291 +639680.952|222102.968|102.163 +639660.936|222121.826|98.335 +639655.961|222126.523|97.945 +639616.438|222164.056|106.022 +639611.433|222168.792|106.110 +639566.975|222210.858|106.634 +639562.004|222215.558|106.577 +639552.174|222224.864|106.799 +639547.260|222229.512|107.025 +639542.332|222234.175|106.881 +639537.351|222238.884|106.744 +639532.417|222243.551|106.564 +639527.518|222248.178|106.281 +639522.581|222252.844|106.125 +639517.640|222257.517|105.940 +639502.814|222271.522|104.772 +639492.914|222280.868|103.721 +639487.980|222285.537|103.797 +639483.042|222290.198|103.205 +639478.104|222294.858|102.611 +639463.285|222308.851|101.063 +639458.368|222313.500|100.926 +639443.494|222327.527|98.521 +639428.614|222341.566|96.460 +639418.677|222350.929|94.342 +639413.752|222355.580|93.860 +639408.817|222360.238|93.315 +639398.954|222369.552|92.373 +639394.040|222374.198|92.181 +639389.176|222378.794|92.001 +639384.296|222383.415|92.175 +639379.440|222388.008|92.138 +639374.509|222392.669|91.818 +639369.641|222397.271|91.721 +639364.791|222401.861|91.815 +639359.951|222406.442|92.013 +639340.587|222424.761|92.038 +639335.759|222429.327|91.995 +639330.980|222433.859|92.406 +639321.592|222442.772|94.400 +639316.880|222447.249|95.421 +639312.256|222451.647|96.796 +639298.257|222464.952|100.206 +639279.511|222482.734|102.797 +639274.793|222487.202|103.010 +639265.271|222496.212|102.806 +639260.541|222500.693|102.983 +639258.145|222500.431|102.977 +639262.964|222495.865|103.138 +639267.770|222491.305|103.230 +639272.553|222486.764|103.172 +639277.311|222482.246|102.910 +639282.044|222477.751|102.468 +639291.536|222468.725|101.438 +639300.972|222459.740|99.551 +639305.602|222455.317|97.859 +639315.033|222446.329|95.494 +639319.757|222441.830|94.616 +639329.246|222432.789|92.300 +639334.098|222428.181|92.144 +639338.963|222423.566|92.120 +639358.519|222405.016|92.236 +639363.402|222400.380|91.998 +639368.309|222395.726|92.044 +639373.207|222391.077|92.031 +639378.163|222386.380|92.132 +639383.031|222381.757|91.843 +639387.984|222377.060|91.943 +639392.897|222372.402|92.169 +639397.878|222367.687|92.641 +639407.747|222358.333|93.220 +639412.727|222353.617|93.778 +639417.748|222348.866|94.293 +639422.731|222344.150|94.991 +639442.796|222325.180|98.661 +639452.888|222315.645|100.947 +639457.856|222310.936|101.166 +639462.831|222306.218|101.526 +639472.871|222296.717|102.901 +639477.802|222292.036|102.767 +639492.792|222277.832|103.894 +639512.854|222258.834|106.208 +639517.795|222254.149|106.461 +639527.796|222244.663|106.628 +639537.799|222235.175|106.970 +639542.768|222230.463|106.994 +639547.739|222225.748|107.089 +639567.746|222206.768|107.375 +639587.695|222187.843|107.869 +639592.703|222183.094|107.973 +639607.660|222168.875|106.601 +639612.649|222164.135|106.214 +639617.645|222159.389|106.037 +639662.591|222116.614|98.886 +639682.723|222097.576|102.696 +639692.769|222088.036|102.264 +639702.782|222078.550|103.129 +639712.791|222069.074|104.306 +639727.791|222054.846|104.659 +639732.838|222050.057|104.659 +639747.831|222035.817|104.083 +639752.833|222031.071|104.010 +639782.890|222002.481|100.151 +639787.849|221997.778|100.340 +639792.847|221993.044|100.932 +639797.849|221988.305|101.334 +639812.793|221974.162|103.327 +639817.792|221969.425|103.794 +639822.800|221964.674|103.867 +639827.771|221959.949|103.486 +639832.737|221955.237|103.413 +639837.757|221950.473|103.227 +639842.713|221945.773|103.489 +639847.684|221941.055|103.404 +639852.658|221936.333|103.209 +639857.633|221931.606|102.974 +639862.634|221926.869|103.510 +639867.539|221922.227|104.050 +639877.497|221912.772|103.690 +639882.437|221908.078|103.346 +639887.406|221903.363|103.465 +639892.350|221898.669|103.141 +639897.336|221893.932|102.956 +639902.271|221889.248|102.861 +639907.190|221884.587|103.224 +639912.122|221879.909|103.297 +639917.118|221875.166|103.038 +639922.040|221870.499|103.355 +639931.870|221861.169|103.346 +639946.668|221847.139|103.940 +639951.563|221842.497|103.995 +639956.477|221837.828|103.727 +639961.423|221833.137|103.794 +639971.275|221823.792|103.870 +639976.185|221819.128|103.800 +639981.138|221814.416|103.090 +639991.035|221805.004|102.005 +639995.915|221800.374|101.870 +640010.707|221786.316|100.776 +640015.660|221781.610|100.401 +640020.573|221776.941|99.962 +640025.511|221772.241|99.222 +640030.406|221767.593|99.112 +640040.291|221758.193|97.795 +640045.228|221753.499|97.274 +640050.163|221748.805|96.786 +640065.022|221734.656|93.943 +640078.278|221718.919|90.078 +640073.224|221723.735|91.559 +640068.152|221728.566|93.266 +640063.169|221733.299|94.065 +640058.103|221738.124|95.345 +640028.105|221766.605|99.249 +640023.155|221771.296|99.441 +640018.135|221776.057|99.923 +640013.127|221780.806|100.316 +640008.134|221785.539|100.557 +640003.148|221790.264|100.706 +639988.127|221804.513|102.337 +639963.045|221828.294|103.824 +639958.040|221833.033|103.888 +639953.002|221837.800|103.760 +639948.037|221842.506|104.035 +639942.995|221847.283|104.016 +639932.992|221856.741|103.416 +639917.886|221871.045|103.315 +639912.838|221875.827|103.538 +639902.789|221885.337|103.205 +639897.723|221890.129|102.940 +639892.694|221894.893|102.959 +639887.643|221899.684|103.489 +639882.568|221904.488|103.492 +639877.536|221909.258|103.736 +639857.328|221928.381|103.056 +639852.253|221933.191|103.318 +639847.224|221937.961|103.684 +639842.161|221942.755|103.647 +639837.098|221947.544|103.510 +639832.045|221952.326|103.239 +639826.979|221957.127|103.398 +639821.913|221961.921|103.513 +639816.893|221966.682|103.894 +639811.846|221971.455|103.388 +639791.649|221990.536|100.938 +639786.596|221995.312|100.532 +639781.539|222000.098|100.328 +639776.473|222004.904|100.892 +639766.351|222014.505|101.776 +639761.288|222019.315|102.812 +639756.232|222024.116|103.364 +639751.175|222028.916|104.126 +639746.124|222033.699|104.230 +639730.976|222048.052|104.729 +639725.925|222052.831|104.662 +639710.774|222067.175|104.278 +639700.709|222076.682|103.041 +639695.653|222081.464|102.815 +639680.544|222095.771|102.821 +639675.581|222100.468|102.532 +639665.425|222110.039|100.039 +639655.364|222119.531|98.064 +639640.407|222133.743|101.331 +639630.495|222143.162|103.504 +639615.594|222157.301|105.857 +639605.651|222166.723|106.555 +639590.780|222180.820|107.976 +639585.827|222185.511|108.155 +639575.893|222194.905|107.945 +639541.347|222227.582|107.488 +639511.769|222255.551|106.305 +639492.052|222274.171|104.425 +639487.135|222278.819|104.041 +639477.284|222288.125|103.148 +639462.578|222302.024|102.431 +639457.631|222306.684|101.200 +639442.814|222320.672|99.459 +639413.115|222348.677|93.976 +639408.189|222353.328|93.516 +639403.355|222357.897|93.007 +639398.435|222362.545|92.672 +639393.565|222367.145|92.406 +639388.642|222371.799|92.096 +639383.784|222376.395|91.974 +639378.925|222380.989|91.894 +639374.079|222385.576|91.971 +639369.315|222390.093|92.379 +639364.459|222394.686|92.397 +639359.637|222399.246|92.284 +639354.809|222403.818|92.611 +639350.009|222408.366|92.739 +639335.491|222422.088|92.172 +639330.727|222426.599|92.263 +639325.932|222431.140|92.547 +639321.193|222435.639|93.333 +639311.899|222444.475|95.710 +639307.273|222448.877|97.076 +639283.943|222471.036|102.117 +639279.319|222475.419|102.663 +639274.546|222479.936|102.803 +639269.867|222484.371|103.340 +639265.183|222488.803|103.443 +639255.670|222497.794|103.370 +639250.897|222502.302|102.849 +639256.566|222493.786|103.404 +639261.330|222489.269|103.522 +639270.885|222480.204|103.288 +639275.607|222475.715|102.754 +639280.350|222471.210|102.410 +639285.059|222466.732|101.785 +639289.804|222462.218|101.078 +639294.431|222457.804|99.773 +639303.795|222448.880|97.268 +639313.219|222439.897|94.836 +639322.634|222430.927|92.763 +639327.466|222426.340|92.397 +639337.192|222417.110|92.309 +639342.093|222412.468|92.653 +639346.958|222407.857|92.662 +639351.880|222403.190|92.812 +639356.748|222398.566|92.464 +639361.600|222393.964|92.425 +639366.501|222389.313|92.437 +639371.357|222384.701|91.967 +639376.295|222380.016|91.897 +639381.181|222375.380|91.803 +639386.094|222370.723|92.013 +639391.044|222366.032|92.123 +639396.012|222361.323|92.483 +639400.987|222356.614|92.909 +639405.958|222351.908|93.354 +639410.932|222347.198|93.879 +639415.913|222342.486|94.519 +639420.951|222337.731|95.866 +639441.031|222318.745|99.240 +639456.052|222304.538|101.340 +639476.041|222285.620|103.586 +639481.030|222280.901|104.327 +639485.998|222276.186|104.099 +639491.012|222271.440|104.568 +639506.012|222257.246|106.345 +639510.940|222252.570|106.354 +639520.987|222243.060|107.308 +639545.944|222219.402|107.805 +639550.915|222214.689|107.985 +639555.929|222209.938|108.091 +639560.931|222205.192|107.954 +639565.893|222200.483|108.064 +639570.943|222195.694|107.973 +639575.957|222190.942|108.219 +639580.968|222186.194|108.351 +639585.961|222181.454|108.079 +639590.957|222176.711|107.942 +639595.946|222171.975|107.576 +639600.914|222167.247|106.674 +639605.907|222162.507|106.403 +639610.903|222157.765|106.235 +639620.854|222148.298|104.620 +639625.881|222143.518|103.791 +639640.855|222129.260|100.691 +639650.826|222119.771|98.902 +639655.824|222115.026|98.396 +639665.928|222105.482|100.636 +639681.031|222091.209|103.492 +639686.070|222086.420|102.882 +639691.117|222081.632|102.919 +639696.122|222076.892|103.236 +639706.223|222067.327|104.102 +639721.271|222053.069|104.769 +639726.270|222048.329|104.873 +639731.317|222043.544|104.888 +639736.356|222038.758|104.693 +639741.354|222034.013|104.355 +639751.407|222024.469|103.654 +639756.408|222019.715|103.172 +639761.465|222014.905|102.349 +639766.473|222010.144|101.648 +639771.484|222005.386|101.212 +639776.541|222000.576|100.657 +639781.548|221995.827|100.697 +639786.507|221991.130|100.877 +639791.552|221986.360|101.636 +639806.539|221972.178|103.559 +639811.495|221967.481|103.727 +639816.509|221962.720|103.407 +639821.523|221957.962|103.297 +639826.485|221953.253|103.236 +639831.490|221948.513|103.544 +639836.437|221943.828|104.074 +639851.451|221929.576|103.373 +639856.426|221924.854|103.175 +639861.367|221920.179|103.980 +639876.335|221905.978|103.742 +639881.267|221901.296|103.571 +639891.182|221891.884|103.251 +639896.163|221887.160|103.178 +639910.985|221873.108|103.693 +639915.923|221868.424|103.629 +639920.845|221863.760|103.913 +639930.690|221854.415|103.574 +639935.607|221849.758|104.007 +639940.545|221845.076|104.077 +639945.452|221840.419|103.894 +639950.396|221835.731|103.937 +639955.245|221831.131|103.964 +639960.195|221826.434|103.900 +639969.955|221817.178|103.919 +639974.908|221812.465|103.151 +639979.846|221807.774|102.712 +639984.783|221803.081|102.303 +639989.648|221798.469|102.331 +639994.580|221793.784|102.078 +640004.403|221784.445|100.926 +640024.005|221765.822|99.158 +640033.789|221756.528|98.405 +640038.745|221751.813|97.603 +640063.321|221728.435|93.894 +640068.338|221723.646|92.144 +640078.284|221714.152|88.788 +640072.752|221715.405|90.081 +640057.670|221729.758|94.327 +640052.665|221734.513|95.433 +640047.679|221739.249|96.381 +640042.702|221743.977|97.253 +640022.871|221762.780|99.164 +640012.959|221772.183|99.758 +640008.000|221776.889|100.164 +639983.156|221800.462|102.096 +639978.172|221805.190|102.428 +639973.222|221809.890|102.965 +639968.211|221814.651|103.803 +639963.252|221819.351|103.855 +639958.302|221824.039|103.809 +639953.297|221828.784|103.897 +639948.390|221833.436|103.989 +639943.401|221838.160|103.885 +639938.402|221842.897|103.946 +639933.409|221847.627|103.931 +639928.432|221852.339|103.684 +639923.470|221857.049|104.092 +639918.486|221861.767|103.992 +639908.528|221871.197|103.708 +639898.479|221880.713|103.413 +639893.499|221885.432|103.349 +639888.463|221890.205|103.538 +639878.402|221899.742|103.803 +639873.382|221904.497|103.705 +639858.309|221918.780|103.910 +639853.311|221923.507|103.297 +639848.236|221928.320|103.620 +639843.203|221933.096|104.108 +639838.180|221937.860|104.373 +639833.118|221942.661|104.446 +639828.073|221947.428|103.818 +639823.068|221952.165|103.455 +639818.015|221956.944|103.135 +639813.001|221961.696|103.218 +639807.938|221966.499|103.446 +639802.881|221971.288|103.340 +639787.782|221985.565|101.752 +639782.734|221990.335|101.066 +639772.621|221999.915|100.868 +639767.561|222004.715|101.246 +639762.547|222009.473|101.709 +639742.278|222028.721|104.175 +639737.227|222033.513|104.391 +639732.183|222038.295|104.611 +639727.135|222043.087|105.043 +639722.085|222047.869|105.095 +639717.037|222052.654|105.089 +639701.880|222066.992|103.824 +639696.823|222071.771|103.114 +639686.725|222081.342|103.273 +639681.680|222086.131|103.754 +639676.627|222090.916|103.672 +639671.567|222095.698|103.077 +639656.373|222110.021|98.993 +639651.353|222114.770|98.475 +639646.293|222119.564|98.478 +639641.236|222124.356|98.600 +639636.287|222129.092|100.883 +639606.364|222157.542|106.473 +639601.323|222162.328|106.735 +639571.446|222190.671|108.430 +639566.484|222195.371|108.396 +639561.470|222200.120|108.326 +639556.514|222204.820|108.433 +639551.543|222209.526|108.317 +639546.568|222214.238|108.110 +639541.600|222218.947|108.067 +639531.697|222228.326|107.814 +639521.794|222237.708|107.640 +639516.850|222242.387|107.290 +639511.867|222247.093|106.378 +639487.169|222270.462|104.327 +639482.228|222275.144|104.312 +639398.347|222354.419|92.531 +639393.507|222359.009|92.513 +639388.639|222363.618|92.248 +639383.753|222368.248|92.324 +639378.934|222372.811|92.129 +639374.070|222377.419|91.974 +639369.269|222381.967|92.016 +639364.438|222386.551|92.236 +639359.680|222391.068|92.736 +639354.852|222395.646|93.037 +639350.091|222400.161|93.040 +639345.217|222404.775|92.925 +639340.404|222409.332|92.477 +639335.592|222413.892|92.531 +639325.975|222423.002|92.333 +639321.232|222427.501|92.656 +639316.505|222431.997|93.537 +639288.750|222458.426|100.788 +639284.056|222462.888|101.541 +639279.383|222467.326|102.072 +639274.729|222471.746|102.779 +639270.032|222476.199|103.160 +639265.356|222480.634|103.711 +639260.653|222485.090|103.660 +639255.895|222489.595|103.593 +639251.131|222494.103|103.492 +639246.389|222498.590|103.221 +639241.643|222503.080|102.943 +639240.122|222501.034|102.907 +639244.953|222496.459|103.492 +639249.714|222491.942|103.580 +639254.551|222487.355|103.903 +639259.276|222482.868|103.736 +639264.061|222478.327|103.693 +639268.788|222473.831|103.212 +639273.528|222469.326|102.837 +639282.983|222460.328|101.526 +639297.056|222446.917|98.448 +639301.713|222442.470|97.003 +639306.358|222438.032|95.415 +639320.598|222424.465|92.510 +639335.165|222410.643|92.662 +639340.072|222405.985|92.623 +639344.986|222401.331|93.150 +639349.868|222396.701|93.400 +639354.730|222392.080|92.989 +639359.528|222387.517|92.443 +639364.447|222382.842|92.160 +639369.303|222378.233|92.242 +639374.259|222373.533|92.379 +639379.087|222368.949|92.199 +639384.021|222364.264|92.150 +639388.926|222359.613|92.303 +639393.876|222354.916|92.489 +639398.844|222350.210|92.870 +639403.791|222345.528|93.638 +639413.739|222336.107|94.747 +639473.785|222279.301|104.361 +639483.709|222269.886|104.425 +639488.687|222265.177|105.050 +639513.653|222241.527|107.293 +639518.633|222236.806|107.473 +639523.620|222232.081|107.802 +639538.534|222217.935|108.162 +639543.499|222213.226|108.195 +639548.516|222208.468|108.347 +639553.487|222203.756|108.591 +639558.443|222199.053|108.497 +639563.454|222194.301|108.643 +639568.420|222189.592|108.826 +639578.420|222180.104|108.671 +639583.364|222175.407|108.442 +639588.408|222170.618|108.351 +639603.347|222156.415|106.561 +639618.255|222142.217|103.498 +639628.212|222132.738|101.776 +639633.235|222127.952|100.764 +639668.406|222094.628|103.337 +639673.411|222089.886|103.657 +639678.459|222085.097|103.748 +639693.498|222070.817|103.172 +639698.502|222066.081|103.715 +639703.553|222061.298|104.370 +639713.553|222051.825|105.187 +639718.598|222047.034|104.912 +639723.642|222042.251|105.144 +639728.641|222037.503|104.781 +639748.776|222018.376|103.556 +639753.778|222013.625|103.160 +639758.786|222008.854|102.154 +639768.899|221999.241|101.108 +639773.907|221994.489|101.017 +639783.956|221984.967|101.834 +639793.996|221975.464|103.056 +639804.006|221965.966|103.166 +639809.063|221961.165|103.010 +639814.074|221956.417|102.998 +639824.065|221946.965|104.284 +639849.153|221923.160|103.391 +639854.158|221918.420|103.760 +639859.163|221913.684|104.138 +639864.122|221908.983|104.373 +639869.148|221904.213|104.190 +639879.164|221894.707|103.644 +639894.154|221880.488|103.349 +639914.042|221861.642|104.117 +639919.032|221856.911|104.031 +639924.034|221852.163|103.727 +639928.965|221847.490|103.903 +639933.949|221842.763|103.967 +639938.890|221838.081|104.038 +639943.830|221833.396|104.083 +639948.780|221828.702|104.028 +639953.736|221824.002|103.907 +639958.692|221819.299|103.809 +639963.603|221814.639|103.675 +639973.524|221805.214|102.742 +639978.532|221800.453|101.992 +639983.445|221795.796|102.008 +639998.295|221781.690|100.615 +640022.871|221758.354|98.917 +640027.839|221753.639|98.515 +640042.607|221739.603|96.826 +640047.502|221734.951|96.311 +640052.504|221730.191|95.144 +640072.481|221711.144|89.279 +640077.391|221706.468|88.343 +640077.266|221703.319|88.346 +640062.093|221717.752|91.730 +640051.928|221727.432|94.510 +640046.917|221732.199|95.713 +640041.894|221736.972|96.561 +640031.912|221746.446|97.637 +640026.864|221751.240|98.341 +640016.943|221760.643|98.886 +640012.002|221765.325|98.972 +640006.955|221770.119|99.859 +640002.002|221774.819|100.218 +639997.052|221779.507|100.514 +639982.049|221793.735|101.840 +639977.124|221798.402|101.956 +639972.128|221803.141|102.480 +639957.174|221817.324|103.736 +639952.212|221822.024|103.864 +639947.253|221826.721|103.986 +639942.297|221831.415|104.096 +639937.350|221836.100|104.102 +639932.409|221840.778|103.992 +639927.420|221845.500|103.928 +639922.479|221850.175|103.858 +639917.480|221854.912|104.025 +639912.533|221859.600|104.199 +639907.547|221864.321|104.166 +639902.643|221868.948|103.416 +639897.702|221873.633|103.544 +639892.679|221878.385|103.340 +639862.814|221906.679|104.406 +639857.895|221911.334|104.193 +639852.890|221916.067|103.779 +639847.925|221920.761|103.541 +639842.941|221925.488|103.931 +639837.912|221930.259|104.394 +639822.968|221944.404|104.184 +639813.056|221953.774|103.269 +639808.054|221958.501|102.788 +639803.086|221963.208|102.852 +639793.058|221972.708|103.151 +639788.102|221977.390|102.648 +639783.054|221982.157|101.959 +639773.090|221991.581|101.270 +639768.079|221996.324|101.197 +639748.029|222015.347|103.504 +639743.022|222020.102|104.248 +639737.971|222024.890|104.513 +639727.971|222034.369|104.976 +639722.969|222039.109|105.193 +639717.967|222043.846|105.260 +639712.916|222048.625|105.050 +639707.912|222053.361|104.973 +639697.853|222062.868|103.977 +639692.845|222067.602|103.559 +639687.840|222072.341|103.458 +639677.791|222081.863|104.038 +639617.560|222138.876|103.017 +639607.632|222148.322|105.860 +639602.655|222153.050|106.647 +639597.653|222157.786|106.811 +639592.663|222162.520|107.235 +639582.696|222171.975|108.475 +639557.721|222195.630|108.829 +639552.747|222200.333|108.600 +639547.727|222205.082|108.451 +639542.749|222209.791|108.195 +639537.726|222214.543|108.070 +639522.806|222228.664|107.854 +639482.963|222266.326|104.547 +639478.040|222270.992|104.757 +639468.122|222280.362|103.614 +639463.184|222285.037|103.696 +639448.231|222299.159|101.651 +639423.429|222322.574|98.003 +639413.364|222332.047|94.827 +639398.566|222346.025|93.126 +639393.644|222350.679|92.739 +639388.770|222355.285|92.400 +639383.869|222359.924|92.303 +639379.035|222364.502|92.449 +639374.192|222369.089|92.501 +639369.324|222373.695|92.330 +639364.462|222378.294|92.239 +639359.625|222382.878|92.406 +639354.803|222387.450|92.757 +639350.030|222391.977|93.120 +639345.217|222396.539|93.598 +639340.350|222401.139|93.062 +639335.512|222405.714|92.879 +639330.666|222410.298|92.620 +639316.307|222423.895|92.784 +639306.974|222432.774|95.232 +639283.815|222454.796|100.904 +639274.534|222463.614|102.511 +639269.816|222468.091|103.084 +639265.149|222472.514|103.315 +639260.440|222476.976|103.617 +639255.761|222481.411|103.772 +639251.064|222485.858|103.809 +639246.352|222490.318|103.745 +639241.625|222494.795|103.577 +639236.854|222499.303|103.123 +639229.009|222503.896|102.614 +639233.797|222499.364|103.193 +639238.586|222494.822|103.452 +639243.395|222490.266|103.907 +639248.141|222485.764|103.876 +639257.614|222476.772|103.760 +639262.366|222472.258|103.455 +639267.066|222467.793|103.138 +639271.830|222463.260|102.575 +639276.485|222458.832|101.925 +639290.603|222445.387|99.252 +639313.945|222423.124|92.858 +639318.767|222418.540|92.431 +639328.474|222409.332|92.644 +639338.252|222400.060|93.187 +639343.166|222395.406|93.732 +639347.957|222390.849|93.123 +639352.779|222386.268|92.797 +639357.656|222381.638|92.565 +639362.548|222376.993|92.510 +639372.302|222367.742|92.650 +639377.179|222363.109|92.519 +639382.129|222358.415|92.647 +639386.993|222353.794|92.400 +639391.891|222349.149|92.550 +639396.808|222344.492|92.909 +639411.731|222330.358|94.595 +639416.748|222325.628|96.332 +639421.765|222320.888|97.551 +639426.809|222316.121|98.557 +639431.713|222311.476|99.109 +639441.738|222301.999|101.221 +639446.676|222297.321|101.706 +639461.654|222283.141|103.681 +639466.555|222278.493|103.812 +639471.548|222273.769|104.589 +639476.501|222269.075|104.848 +639481.414|222264.402|104.580 +639486.447|222259.644|105.373 +639521.264|222226.647|107.976 +639536.163|222212.510|108.131 +639541.177|222207.752|108.235 +639546.096|222203.086|108.384 +639551.116|222198.328|108.625 +639556.084|222193.615|108.896 +639576.003|222174.715|108.997 +639595.882|222155.814|107.034 +639600.820|222151.120|106.625 +639625.667|222127.446|101.447 +639630.642|222122.704|100.301 +639645.629|222108.460|99.127 +639665.773|222089.425|103.748 +639670.772|222084.680|103.839 +639675.822|222079.894|104.089 +639685.811|222070.406|103.617 +639690.858|222065.617|103.693 +639695.860|222060.878|104.074 +639700.862|222056.141|104.790 +639705.906|222051.359|104.967 +639710.950|222046.577|105.275 +639725.986|222032.300|104.867 +639730.930|222027.606|104.800 +639741.019|222018.023|104.431 +639745.975|222013.308|103.663 +639751.026|222008.501|102.919 +639756.079|222003.694|102.255 +639761.038|221998.973|101.581 +639766.089|221994.178|101.523 +639771.142|221989.378|101.313 +639781.140|221979.908|102.221 +639786.142|221975.168|102.568 +639796.194|221965.631|102.782 +639801.202|221960.876|102.669 +639806.198|221956.139|103.138 +639811.227|221951.384|104.254 +639816.238|221946.623|104.086 +639821.243|221941.871|104.156 +639826.238|221937.138|104.662 +639841.283|221922.840|104.025 +639846.261|221918.103|103.608 +639851.272|221913.348|103.718 +639856.270|221908.609|104.169 +639861.232|221903.899|104.306 +639866.259|221899.120|103.974 +639876.262|221889.610|103.562 +639881.297|221884.825|103.199 +639891.237|221875.391|103.486 +639896.211|221870.667|103.532 +639901.167|221865.970|104.013 +639906.194|221861.194|103.971 +639911.165|221856.479|104.202 +639916.103|221851.791|104.126 +639921.077|221847.066|104.245 +639926.070|221842.321|104.086 +639931.001|221837.642|104.257 +639935.988|221832.905|104.242 +639940.935|221828.205|104.132 +639945.933|221823.459|104.028 +639950.886|221818.750|103.864 +639955.861|221814.020|103.428 +639960.890|221809.234|102.922 +639965.794|221804.574|102.888 +639970.772|221799.840|102.520 +639985.722|221785.625|101.425 +639990.636|221780.949|100.782 +639995.619|221776.209|100.520 +640000.566|221771.506|100.157 +640005.525|221766.788|99.658 +640010.484|221762.070|99.203 +640015.419|221757.382|99.112 +640025.334|221747.945|97.865 +640035.170|221738.591|97.158 +640040.169|221733.830|96.479 +640045.125|221729.112|95.768 +640060.145|221714.765|91.157 +640065.181|221709.958|89.782 +640070.152|221705.218|88.663 +640075.105|221700.509|88.313 +640079.939|221695.919|88.252 +640078.988|221693.578|88.383 +640073.995|221698.311|88.557 +640069.027|221703.014|88.465 +640063.971|221707.821|89.392 +640058.874|221712.671|90.824 +640038.532|221732.031|96.189 +639993.397|221774.853|100.228 +639988.325|221779.669|100.938 +639968.214|221798.746|102.462 +639943.053|221822.606|104.031 +639938.051|221827.349|104.144 +639933.001|221832.134|104.281 +639928.005|221836.865|104.291 +639923.019|221841.589|104.214 +639912.994|221851.084|104.144 +639907.952|221855.860|104.254 +639902.929|221860.618|104.089 +639892.932|221870.079|103.654 +639887.912|221874.828|103.422 +639882.928|221879.552|103.486 +639877.899|221884.313|103.468 +639872.858|221889.095|103.879 +639867.831|221893.856|103.910 +639862.805|221898.620|103.977 +639857.776|221903.384|104.166 +639852.768|221908.124|103.824 +639847.751|221912.876|103.751 +639842.731|221917.631|103.769 +639837.696|221922.410|104.327 +639827.659|221931.923|104.528 +639812.629|221946.151|104.120 +639807.572|221950.936|103.946 +639802.580|221955.648|102.977 +639797.578|221960.379|102.486 +639792.515|221965.177|102.596 +639782.493|221974.668|102.568 +639777.443|221979.447|102.187 +639772.438|221984.178|101.712 +639767.430|221988.917|101.450 +639762.373|221993.709|101.550 +639757.359|221998.464|101.861 +639752.348|222003.225|102.544 +639742.281|222012.783|103.861 +639737.273|222017.535|104.406 +639732.223|222022.324|104.751 +639717.220|222036.546|105.400 +639712.218|222041.285|105.491 +639707.217|222046.022|105.363 +639702.166|222050.801|104.998 +639697.207|222055.492|104.702 +639692.153|222060.268|104.035 +639687.146|222065.005|103.733 +639682.144|222069.748|103.913 +639677.142|222074.487|104.114 +639672.140|222079.227|104.211 +639667.135|222083.966|104.092 +639641.995|222107.686|98.874 +639631.983|222117.178|99.414 +639622.055|222126.614|101.124 +639597.333|222150.126|106.811 +639592.343|222154.860|107.278 +639572.580|222173.608|109.161 +639547.739|222197.124|108.475 +639542.813|222201.784|108.360 +639537.842|222206.493|108.226 +639527.936|222215.866|107.957 +639483.362|222258.035|105.229 +639478.385|222262.738|104.653 +639468.543|222272.056|104.562 +639463.562|222276.762|104.010 +639453.693|222286.092|103.029 +639443.765|222295.468|101.425 +639423.904|222314.216|98.152 +639413.971|222323.582|95.902 +639408.914|222328.343|94.363 +639394.147|222342.306|93.025 +639389.279|222346.912|92.733 +639384.372|222351.554|92.568 +639379.550|222356.126|92.818 +639374.637|222360.774|92.632 +639369.802|222365.355|92.787 +639364.968|222369.936|92.967 +639360.119|222374.533|92.982 +639355.263|222379.129|93.001 +639350.460|222383.680|93.028 +639345.616|222388.270|93.199 +639340.843|222392.797|93.583 +639336.012|222397.378|93.876 +639331.157|222401.968|93.510 +639321.424|222411.170|92.690 +639316.581|222415.754|92.516 +639302.496|222429.141|95.235 +639288.585|222442.378|99.027 +639274.604|222455.671|101.764 +639269.913|222460.124|102.578 +639265.289|222464.513|103.141 +639260.556|222469.003|103.611 +639255.886|222473.425|103.839 +639246.462|222482.353|104.053 +639227.482|222500.303|102.974 +639221.611|222503.131|102.605 +639236.080|222489.406|104.089 +639240.847|222484.877|104.220 +639255.188|222471.243|103.922 +639259.937|222466.726|103.590 +639264.658|222462.227|103.087 +639269.401|222457.707|102.349 +639274.113|222453.220|101.758 +639283.544|222444.223|99.883 +639297.607|222430.787|95.902 +639302.341|222426.276|95.101 +639316.624|222412.657|92.595 +639321.565|222407.966|92.848 +639326.505|222403.285|93.549 +639331.449|222398.600|94.345 +639336.308|222393.976|93.885 +639341.133|222389.386|93.589 +639346.007|222384.750|93.309 +639355.824|222375.411|93.043 +639360.680|222370.799|93.126 +639365.611|222366.111|93.022 +639370.497|222361.466|92.952 +639375.417|222356.787|92.748 +639380.373|222352.084|92.949 +639385.231|222347.461|92.662 +639390.230|222342.715|92.867 +639395.144|222338.051|93.226 +639405.135|222328.575|94.296 +639410.115|222323.857|94.976 +639425.270|222309.522|98.771 +639435.286|222300.043|100.731 +639450.282|222285.836|102.757 +639455.226|222281.154|103.391 +639470.188|222266.969|104.815 +639475.154|222262.247|104.583 +639480.116|222257.544|105.007 +639495.060|222243.365|106.019 +639500.010|222238.674|106.397 +639505.042|222233.898|106.631 +639515.046|222224.416|107.796 +639519.978|222219.737|108.018 +639524.934|222215.028|107.851 +639529.951|222210.264|108.018 +639534.867|222205.594|108.040 +639539.884|222200.833|108.232 +639544.859|222196.115|108.488 +639549.882|222191.351|108.917 +639569.813|222172.426|109.262 +639574.756|222167.729|109.021 +639584.653|222158.301|107.631 +639589.597|222153.601|107.409 +639594.581|222148.862|106.891 +639599.576|222144.116|106.790 +639604.456|222139.440|104.598 +639619.358|222125.224|101.124 +639629.285|222115.772|99.822 +639639.328|222106.223|99.225 +639659.378|222087.258|103.529 +639684.421|222063.481|104.083 +639689.374|222058.781|104.251 +639694.375|222054.041|104.906 +639699.420|222049.253|104.986 +639704.419|222044.513|105.461 +639709.414|222039.770|105.598 +639714.410|222035.025|105.534 +639719.406|222030.279|105.455 +639724.542|222025.393|105.089 +639729.394|222020.781|104.711 +639734.390|222016.029|104.486 +639739.388|222011.275|104.144 +639744.390|222006.514|103.413 +639749.395|222001.743|102.559 +639754.403|221996.979|102.005 +639759.359|221992.267|101.788 +639764.364|221987.512|101.709 +639769.414|221982.718|101.739 +639774.364|221978.021|102.151 +639779.360|221973.284|102.684 +639789.327|221963.814|102.416 +639794.380|221959.013|102.370 +639799.327|221954.329|103.081 +639804.311|221949.616|104.089 +639809.310|221944.877|104.443 +639814.308|221940.137|104.729 +639819.267|221935.431|104.769 +639824.284|221930.664|104.400 +639829.241|221925.961|104.544 +639839.284|221916.411|103.763 +639844.246|221911.705|103.867 +639849.211|221906.993|103.934 +639854.207|221902.257|104.412 +639869.182|221888.035|103.873 +639874.159|221883.310|103.754 +639879.136|221878.583|103.650 +639884.062|221873.907|103.675 +639889.030|221869.192|103.809 +639893.998|221864.483|104.047 +639903.898|221855.089|104.242 +639908.882|221850.358|104.184 +639913.814|221845.676|104.242 +639918.791|221840.955|104.358 +639923.726|221836.267|104.358 +639928.666|221831.579|104.364 +639933.613|221826.882|104.239 +639938.557|221822.188|104.196 +639943.504|221817.491|104.132 +639953.453|221808.030|103.230 +639973.253|221789.212|101.938 +639978.245|221784.463|101.435 +639988.179|221775.021|100.651 +639993.138|221770.302|100.081 +640003.062|221760.866|99.030 +640007.942|221756.233|99.030 +640037.639|221727.993|96.189 +640047.655|221718.440|93.674 +640052.669|221713.649|91.876 +640062.642|221704.133|89.148 +640067.601|221699.418|88.706 +640072.490|221694.776|88.529 +640078.869|221685.748|87.877 +640068.890|221695.209|88.633 +640053.824|221709.513|90.898 +640043.659|221719.196|94.263 +640038.565|221724.043|95.366 +640033.533|221728.822|96.332 +640028.507|221733.589|96.722 +640018.510|221743.068|97.497 +640013.462|221747.863|98.304 +640003.434|221757.370|99.106 +639998.420|221762.124|99.584 +639993.431|221766.852|99.773 +639973.320|221785.923|101.742 +639968.348|221790.632|101.867 +639963.319|221795.396|102.157 +639958.281|221800.176|102.663 +639953.261|221804.934|102.940 +639943.218|221814.456|103.650 +639928.142|221828.739|104.348 +639923.147|221833.469|104.428 +639918.108|221838.236|104.422 +639913.076|221843.000|104.339 +639903.060|221852.480|104.242 +639898.028|221857.247|104.288 +639877.887|221876.303|103.769 +639872.861|221881.064|103.833 +639867.831|221885.825|103.919 +639857.788|221895.328|103.855 +639852.701|221900.156|104.428 +639847.684|221904.905|104.342 +639842.676|221909.642|104.086 +639837.616|221914.427|103.907 +639832.584|221919.203|104.464 +639827.552|221923.977|105.114 +639822.495|221928.762|104.967 +639817.481|221933.511|105.043 +639812.477|221938.241|104.720 +639807.466|221942.984|104.675 +639802.424|221947.745|104.025 +639797.419|221952.479|103.748 +639792.430|221957.182|102.639 +639787.379|221961.955|102.215 +639772.301|221976.232|102.306 +639767.299|221980.956|101.749 +639762.242|221985.741|101.721 +639757.234|221990.487|101.819 +639752.224|221995.233|102.002 +639742.156|222004.785|103.242 +639737.102|222009.589|104.278 +639732.052|222014.377|104.717 +639722.051|222023.851|105.220 +639717.004|222028.636|105.540 +639712.005|222033.373|105.610 +639707.003|222038.106|105.723 +639701.956|222042.882|105.458 +639696.951|222047.610|105.043 +639686.944|222057.074|104.525 +639681.943|222061.811|104.409 +639671.942|222071.281|104.687 +639666.983|222075.972|104.525 +639661.975|222080.705|104.175 +639626.978|222113.764|99.679 +639617.044|222123.197|101.145 +639612.152|222127.843|101.916 +639602.265|222137.255|104.434 +639592.435|222146.612|106.967 +639587.543|222151.254|107.467 +639572.775|222165.266|109.015 +639567.822|222169.960|109.119 +639543.085|222193.381|108.460 +639538.153|222198.047|108.207 +639533.227|222202.711|108.021 +639518.451|222216.701|107.735 +639513.522|222221.368|107.643 +639508.569|222226.049|107.189 +639503.607|222230.737|106.564 +639498.700|222235.379|106.138 +639493.768|222240.049|106.107 +639488.854|222244.694|105.647 +639483.908|222249.376|105.434 +639478.994|222254.024|105.050 +639474.078|222258.672|104.638 +639469.207|222263.293|104.906 +639464.278|222267.950|104.403 +639449.468|222281.950|102.767 +639434.630|222295.974|101.084 +639424.673|222305.364|98.758 +639419.698|222310.065|98.024 +639409.713|222319.480|95.707 +639404.781|222324.131|94.494 +639399.828|222328.816|94.196 +639394.927|222333.446|93.455 +639390.020|222338.088|93.199 +639385.094|222342.745|92.772 +639380.199|222347.384|92.702 +639375.328|222351.999|92.937 +639370.473|222356.595|92.845 +639360.823|222365.745|93.318 +639346.324|222379.489|93.927 +639341.489|222384.064|93.662 +639336.594|222388.703|93.787 +639331.852|222393.199|94.016 +639327.039|222397.765|94.473 +639317.203|222407.058|93.077 +639312.424|222411.581|93.059 +639298.196|222425.099|95.296 +639274.945|222447.222|100.968 +639270.267|222451.669|101.846 +639256.221|222465.013|103.693 +639251.461|222469.527|103.971 +639246.782|222473.965|104.123 +639232.560|222487.440|104.047 +639227.753|222491.994|103.666 +639222.980|222496.508|103.233 +639218.222|222501.007|102.562 +639213.415|222503.268|102.169 +639218.219|222498.721|102.806 +639227.896|222489.552|104.004 +639232.697|222485.005|104.345 +639247.017|222471.408|104.163 +639251.713|222466.942|103.809 +639265.957|222453.397|102.456 +639270.629|222448.947|101.544 +639275.354|222444.445|100.660 +639280.054|222439.964|99.578 +639284.748|222435.490|98.426 +639289.396|222431.052|96.887 +639294.066|222426.593|95.543 +639298.878|222422.021|95.436 +639313.225|222408.363|93.043 +639318.105|222403.742|93.613 +639323.098|222399.014|94.372 +639327.938|222394.415|94.177 +639332.821|222389.776|93.952 +639337.701|222385.149|94.168 +639342.578|222380.516|93.906 +639347.515|222375.834|94.308 +639352.350|222371.235|93.650 +639357.217|222366.608|93.373 +639371.848|222352.712|92.867 +639381.714|222343.346|92.809 +639386.670|222338.649|93.046 +639391.632|222333.943|93.412 +639396.585|222329.246|93.702 +639401.566|222324.530|94.324 +639406.546|222319.815|95.003 +639421.676|222305.514|98.463 +639431.777|222295.961|100.855 +639436.764|222291.234|101.337 +639451.785|222276.997|103.141 +639456.747|222272.291|103.431 +639461.749|222267.557|104.281 +639466.766|222262.799|104.790 +639471.737|222258.075|104.626 +639476.681|222253.381|104.766 +639481.695|222248.629|105.269 +639486.684|222243.895|105.473 +639496.627|222234.462|106.156 +639516.646|222215.476|107.768 +639526.628|222205.996|107.896 +639531.597|222201.281|107.985 +639536.571|222196.563|108.223 +639541.588|222191.799|108.430 +639546.617|222187.032|108.878 +639566.600|222168.061|109.286 +639571.593|222163.315|109.097 +639586.531|222149.099|107.491 +639591.511|222144.360|106.939 +639601.466|222134.853|104.135 +639636.408|222101.581|99.289 +639656.556|222082.525|103.748 +639661.561|222077.779|104.178 +639671.613|222068.242|104.806 +639681.607|222058.750|104.653 +639686.652|222053.959|104.870 +639691.650|222049.216|104.937 +639696.649|222044.473|105.370 +639701.648|222039.734|105.805 +639706.644|222034.991|105.836 +639711.685|222030.200|105.732 +639726.669|222015.953|105.016 +639736.715|222006.401|104.272 +639741.720|222001.634|103.373 +639746.725|221996.864|102.514 +639751.730|221992.100|102.017 +639756.735|221987.345|101.913 +639766.744|221977.838|101.870 +639781.707|221963.631|102.169 +639786.757|221958.840|102.395 +639791.698|221954.167|103.410 +639796.691|221949.434|104.044 +639806.637|221940.000|104.851 +639816.594|221930.539|105.080 +639826.510|221921.124|105.263 +639831.539|221916.332|104.595 +639836.461|221911.650|104.339 +639841.463|221906.905|104.659 +639846.437|221902.177|104.455 +639851.403|221897.459|104.473 +639866.280|221883.313|103.952 +639871.254|221878.586|103.937 +639881.154|221869.180|103.907 +639886.071|221864.510|104.135 +639891.033|221859.801|104.458 +639895.967|221855.110|104.355 +639900.899|221850.425|104.367 +639905.880|221845.692|104.352 +639910.759|221841.059|104.498 +639915.691|221836.374|104.571 +639920.632|221831.680|104.510 +639925.576|221826.980|104.428 +639930.535|221822.265|104.105 +639945.333|221808.183|103.074 +639950.249|221803.510|102.837 +639955.212|221798.792|102.651 +639965.063|221789.419|102.035 +639969.997|221784.722|101.642 +639979.824|221775.374|100.941 +639984.786|221770.647|100.289 +639999.603|221756.544|98.932 +640004.492|221751.898|98.822 +640014.376|221742.489|97.878 +640029.150|221728.429|96.582 +640039.044|221718.995|94.820 +640059.112|221699.832|89.319 +640064.035|221695.145|88.734 +640068.917|221690.505|88.654 +640073.800|221685.863|88.575 +640078.339|221678.371|88.950 +640073.447|221683.001|88.529 +640068.558|221687.637|88.593 +640063.617|221692.322|88.734 +640058.664|221697.022|89.038 +640023.517|221730.474|96.405 +640008.512|221744.729|98.106 +640003.468|221749.521|98.880 +639973.460|221778.005|101.163 +639963.399|221787.551|101.755 +639953.377|221797.067|102.623 +639948.381|221801.797|102.483 +639943.334|221806.598|103.273 +639938.271|221811.402|103.544 +639933.239|221816.181|104.135 +639928.225|221820.939|104.480 +639923.186|221825.712|104.434 +639918.187|221830.455|104.580 +639913.149|221835.231|104.620 +639908.114|221840.001|104.595 +639903.133|221844.719|104.486 +639898.058|221849.526|104.361 +639893.026|221854.299|104.412 +639887.994|221859.069|104.480 +639882.974|221863.827|104.306 +639867.859|221878.144|104.007 +639862.787|221882.954|104.053 +639852.692|221892.524|104.163 +639847.657|221897.304|104.608 +639842.588|221902.113|104.751 +639837.574|221906.865|104.662 +639832.508|221911.663|104.678 +639827.433|221916.482|105.135 +639817.311|221926.080|105.266 +639812.297|221930.832|105.309 +639807.197|221935.660|105.080 +639802.196|221940.393|104.669 +639797.148|221945.169|104.236 +639787.062|221954.710|102.849 +639782.018|221959.474|102.032 +639776.958|221964.274|102.181 +639766.845|221973.857|102.154 +639751.681|221988.226|101.959 +639746.621|221993.029|102.443 +639741.565|221997.836|103.123 +639736.511|222002.640|103.897 +639731.457|222007.443|104.708 +639726.407|222012.235|105.010 +639716.315|222021.808|105.549 +639706.269|222031.337|105.720 +639691.169|222045.638|105.086 +639686.118|222050.420|104.885 +639681.071|222055.205|104.876 +639676.069|222059.945|104.848 +639671.019|222064.731|104.873 +639661.012|222074.210|104.477 +639625.829|222107.470|99.950 +639620.824|222112.215|100.090 +639610.848|222121.692|101.611 +639591.142|222140.455|107.080 +639586.193|222145.149|107.275 +639581.209|222149.880|107.832 +639571.385|222159.203|108.942 +639566.438|222163.894|109.137 +639561.485|222168.588|109.262 +639556.575|222173.240|109.277 +639551.659|222177.897|109.198 +639546.690|222182.600|108.981 +639536.824|222191.933|108.290 +639531.837|222196.648|107.845 +639526.909|222201.315|107.625 +639521.986|222205.975|107.595 +639502.263|222224.635|106.235 +639497.374|222229.265|106.077 +639482.576|222243.267|105.226 +639477.714|222247.867|104.894 +639472.764|222252.552|104.684 +639467.893|222257.172|104.952 +639462.986|222261.818|104.717 +639458.009|222266.512|103.513 +639443.320|222280.404|102.306 +639438.379|222285.074|101.809 +639428.501|222294.407|100.319 +639408.674|222313.113|95.906 +639403.733|222317.776|95.159 +639398.844|222322.397|94.461 +639393.900|222327.069|93.717 +639388.977|222331.724|93.287 +639384.110|222336.326|92.955 +639379.215|222340.962|92.891 +639369.522|222350.143|92.806 +639350.262|222368.412|94.208 +639335.793|222382.129|94.653 +639330.956|222386.704|94.418 +639326.128|222391.276|94.272 +639321.327|222395.826|94.403 +639316.523|222400.377|94.534 +639292.636|222423.024|95.759 +639287.954|222427.474|96.613 +639283.312|222431.893|97.829 +639269.404|222445.125|101.163 +639260.089|222453.976|102.870 +639255.463|222458.368|103.410 +639241.359|222471.740|104.455 +639236.693|222476.163|104.729 +639231.950|222480.649|104.419 +639208.109|222503.180|102.044 +639205.987|222502.049|101.956 +639210.843|222497.459|102.953 +639215.680|222492.875|103.504 +639225.263|222483.795|104.358 +639234.803|222474.745|104.623 +639239.552|222470.240|104.629 +639244.325|222465.708|104.467 +639249.016|222461.249|104.047 +639253.722|222456.771|103.382 +639263.137|222447.810|102.108 +639286.586|222425.456|96.625 +639291.292|222420.972|95.564 +639315.426|222398.045|94.534 +639320.266|222393.452|94.296 +639335.000|222379.477|94.918 +639349.603|222365.608|94.455 +639364.139|222351.786|92.931 +639369.065|222347.110|92.787 +639373.987|222342.443|93.144 +639378.907|222337.771|92.979 +639383.838|222333.089|92.995 +639388.801|222328.386|93.345 +639393.787|222323.665|94.001 +639403.763|222314.213|94.933 +639408.814|222309.449|96.503 +639413.892|222304.651|97.896 +639423.914|222295.172|99.819 +639428.946|222290.414|100.813 +639433.942|222285.680|101.419 +639448.929|222271.480|102.773 +639458.963|222261.982|104.288 +639463.986|222257.224|104.830 +639468.954|222252.506|104.653 +639473.898|222247.815|104.827 +639478.894|222243.078|105.065 +639493.875|222228.872|105.952 +639503.899|222219.368|106.540 +639508.916|222214.619|107.421 +639513.885|222209.904|107.442 +639518.883|222205.155|107.217 +639523.907|222200.391|107.430 +639528.878|222195.676|107.595 +639533.907|222190.909|108.018 +639538.887|222186.187|108.396 +639543.911|222181.426|108.777 +639548.925|222176.672|108.975 +639558.937|222167.168|109.183 +639563.939|222162.422|109.189 +639568.935|222157.676|109.094 +639573.912|222152.943|108.527 +639578.938|222148.164|107.939 +639583.916|222143.427|107.381 +639588.902|222138.687|107.034 +639598.851|222129.190|104.025 +639608.839|222119.671|101.916 +639613.817|222114.931|100.889 +639618.849|222110.143|100.173 +639623.887|222105.348|99.682 +639654.187|222076.673|104.458 +639664.234|222067.141|104.833 +639669.281|222062.353|104.952 +639674.277|222057.610|104.979 +639679.318|222052.822|104.854 +639684.363|222048.037|104.912 +639689.361|222043.297|105.138 +639694.409|222038.515|105.705 +639699.453|222033.732|105.952 +639704.446|222028.990|105.842 +639714.532|222019.413|105.656 +639719.521|222014.664|104.986 +639724.566|222009.872|104.784 +639729.565|222005.124|104.571 +639734.612|222000.326|104.233 +639744.668|221990.755|102.672 +639749.672|221985.997|102.233 +639764.726|221971.705|102.282 +639769.731|221966.957|102.331 +639774.788|221962.153|102.017 +639779.787|221957.410|102.312 +639784.767|221952.710|103.763 +639794.761|221943.237|104.562 +639799.760|221938.494|104.806 +639814.717|221924.300|105.245 +639834.663|221905.350|104.873 +639844.596|221895.914|104.684 +639849.568|221891.189|104.516 +639864.442|221877.059|104.074 +639869.410|221872.343|104.181 +639884.224|221858.280|104.440 +639889.152|221853.598|104.400 +639899.003|221844.250|104.620 +639903.929|221839.571|104.717 +639908.864|221834.883|104.678 +639913.753|221830.241|104.650 +639918.693|221825.547|104.577 +639928.499|221816.233|104.205 +639938.384|221806.830|103.367 +639943.269|221802.178|102.785 +639948.189|221797.503|102.514 +639953.102|221792.833|102.331 +639957.979|221788.197|102.014 +639962.899|221783.521|101.831 +639967.800|221778.858|101.249 +639982.479|221764.898|100.084 +639987.392|221760.223|99.520 +639992.239|221755.614|99.228 +639997.137|221750.960|98.935 +640006.939|221741.630|97.756 +640016.681|221732.364|96.911 +640026.468|221723.061|96.283 +640031.342|221718.416|95.372 +640036.279|221713.710|94.351 +640041.245|221708.973|93.065 +640046.234|221704.197|91.001 +640051.230|221699.427|89.511 +640056.107|221694.785|88.846 +640060.926|221690.207|88.859 +640065.830|221685.543|88.520 +640070.640|221680.977|88.691 +640080.241|221671.864|88.819 +640067.625|221680.346|88.642 +640062.745|221684.967|88.621 +640057.853|221689.603|88.776 +640052.989|221694.212|88.673 +640048.075|221698.872|89.102 +640042.985|221703.731|91.090 +640027.964|221718.032|95.101 +640013.112|221732.135|97.027 +640008.152|221736.835|97.274 +639983.363|221760.369|99.661 +639973.417|221769.808|100.420 +639968.440|221774.530|100.566 +639963.472|221779.248|101.325 +639953.508|221788.703|101.992 +639948.530|221793.424|102.288 +639943.553|221798.149|102.666 +639928.520|221812.423|104.135 +639918.553|221821.875|104.632 +639913.564|221826.605|104.638 +639908.571|221831.336|104.693 +639903.584|221836.060|104.690 +639898.552|221840.833|104.714 +639893.617|221845.506|104.641 +639888.591|221850.270|104.586 +639883.571|221855.025|104.416 +639878.591|221859.746|104.434 +639873.565|221864.507|104.425 +639868.545|221869.259|104.254 +639863.567|221873.980|104.318 +639858.514|221878.763|103.919 +639853.533|221883.484|104.059 +639848.495|221888.266|104.531 +639843.423|221893.076|104.742 +639838.442|221897.800|105.025 +639823.297|221912.160|105.312 +639813.226|221921.703|105.287 +639808.215|221926.455|105.315 +639803.113|221931.289|105.229 +639798.108|221936.022|104.934 +639777.930|221955.106|102.541 +639772.883|221959.876|101.870 +639767.823|221964.677|102.136 +639757.713|221974.257|102.087 +639752.659|221979.048|102.066 +639747.600|221983.846|102.471 +639742.546|221988.643|102.764 +639737.489|221993.441|103.209 +639722.289|222007.879|104.891 +639702.105|222027.024|105.903 +639697.106|222031.763|106.022 +639692.010|222036.588|105.757 +639686.960|222041.364|105.235 +639681.915|222046.150|105.373 +639671.820|222055.715|105.373 +639666.815|222060.451|105.132 +639656.669|222070.065|104.784 +639651.658|222074.801|104.288 +639631.404|222093.918|99.706 +639621.342|222103.458|99.883 +639611.311|222112.993|101.139 +639606.328|222117.732|101.980 +639596.339|222127.245|104.278 +639586.424|222136.694|107.125 +639581.428|222141.437|107.357 +639576.454|222146.167|108.085 +639571.468|222150.901|108.591 +639566.536|222155.592|109.146 +639561.580|222160.289|109.167 +639556.572|222165.037|109.106 +639551.613|222169.737|109.085 +639546.642|222174.447|108.872 +639541.673|222179.156|108.707 +639536.696|222183.871|108.338 +639531.712|222188.586|107.963 +639526.772|222193.265|107.482 +639521.794|222197.980|107.275 +639516.814|222202.699|107.055 +639502.016|222216.719|106.561 +639497.060|222221.410|106.043 +639492.116|222226.095|105.787 +639482.231|222235.458|105.434 +639477.330|222240.101|105.181 +639472.423|222244.752|104.851 +639467.470|222249.440|104.635 +639457.664|222258.733|104.288 +639452.772|222263.360|103.641 +639428.144|222286.662|100.724 +639423.182|222291.353|100.048 +639403.370|222310.055|95.299 +639388.648|222323.988|93.784 +639378.913|222333.205|93.089 +639374.048|222337.823|93.333 +639369.181|222342.434|93.077 +639364.368|222346.994|92.891 +639349.945|222360.692|94.138 +639330.785|222378.876|95.259 +639325.990|222383.418|94.936 +639321.056|222388.084|94.257 +639316.304|222392.592|94.415 +639311.543|222397.119|94.927 +639306.754|222401.654|94.793 +639301.987|222406.183|95.281 +639287.698|222419.738|95.686 +639283.047|222424.170|96.805 +639278.441|222428.562|98.316 +639269.169|222437.389|100.395 +639264.527|222441.805|101.194 +639255.258|222450.623|102.913 +639250.589|222455.061|103.495 +639245.922|222459.496|104.105 +639236.556|222468.390|104.720 +639231.822|222472.880|104.851 +639227.116|222477.342|104.848 +639222.373|222481.835|104.577 +639212.851|222490.842|103.504 +639203.214|222499.955|102.050 +639198.797|222501.178|101.959 +639203.607|222496.618|102.626 +639208.471|222492.006|103.373 +639213.239|222487.483|103.809 +639218.042|222482.923|104.169 +639222.837|222478.369|104.483 +639227.637|222473.813|104.876 +639232.374|222469.311|104.787 +639237.107|222464.809|104.723 +639246.575|222455.796|103.864 +639255.965|222446.844|102.419 +639260.678|222442.354|101.858 +639265.338|222437.907|100.865 +639274.677|222428.992|98.637 +639279.371|222424.511|97.512 +639284.047|222420.043|96.256 +639288.783|222415.526|95.500 +639298.458|222406.330|95.369 +639303.252|222401.770|95.162 +639312.902|222392.583|94.488 +639317.764|222387.962|94.531 +639322.708|222383.281|95.348 +639327.630|222378.614|96.015 +639332.486|222373.990|95.607 +639351.850|222355.556|93.973 +639356.733|222350.911|93.906 +639366.450|222341.654|92.812 +639371.378|222336.981|93.266 +639376.304|222332.297|93.208 +639381.187|222327.658|93.232 +639386.158|222322.939|93.772 +639406.113|222304.020|96.463 +639416.129|222294.544|98.859 +639421.195|222289.747|99.648 +639426.184|222285.022|100.785 +639441.135|222270.843|102.279 +639446.124|222266.115|102.937 +639451.102|222261.394|103.510 +639466.077|222247.187|104.601 +639471.018|222242.493|104.751 +639476.013|222237.751|105.083 +639505.902|222209.386|107.006 +639510.910|222204.625|106.918 +639515.878|222199.907|106.988 +639520.852|222195.185|107.229 +639530.853|222185.694|107.924 +639535.833|222180.969|108.366 +639540.850|222176.205|108.689 +639545.855|222171.450|108.777 +639550.866|222166.695|108.960 +639555.871|222161.941|109.122 +639560.827|222157.234|109.189 +639580.743|222138.276|107.262 +639585.735|222133.530|107.177 +639595.635|222124.072|104.254 +639615.572|222105.059|100.401 +639630.614|222090.757|99.920 +639655.836|222066.873|104.553 +639660.841|222062.128|105.184 +639685.954|222038.274|105.522 +639690.949|222033.531|105.918 +639695.988|222028.746|106.092 +639721.091|222004.874|104.943 +639731.128|221995.321|104.272 +639736.130|221990.551|103.273 +639741.181|221985.738|102.437 +639746.228|221980.947|102.587 +639751.230|221976.186|102.200 +639756.229|221971.437|102.288 +639761.276|221966.646|102.498 +639766.284|221961.879|101.950 +639771.283|221957.130|102.145 +639776.315|221952.372|103.349 +639796.285|221933.432|105.245 +639806.338|221923.894|105.452 +639811.300|221919.182|105.330 +639826.321|221904.920|105.354 +639831.331|221900.156|105.217 +639836.303|221895.432|104.955 +639841.320|221890.671|104.854 +639851.317|221881.167|104.339 +639856.292|221876.443|104.199 +639861.303|221871.688|104.367 +639866.271|221866.970|104.394 +639871.239|221862.251|104.455 +639876.210|221857.536|104.525 +639881.191|221852.806|104.391 +639886.156|221848.093|104.632 +639891.127|221843.375|104.742 +639896.056|221838.696|104.784 +639901.039|221833.966|104.739 +639905.977|221829.275|104.662 +639910.958|221824.545|104.659 +639935.741|221800.990|103.242 +639940.746|221796.219|102.276 +639950.618|221786.841|101.971 +639970.360|221768.071|100.429 +639980.230|221758.689|99.880 +639999.944|221739.944|98.347 +640009.795|221730.575|97.277 +640014.745|221725.859|96.494 +640019.662|221721.187|96.180 +640024.584|221716.496|95.244 +640039.593|221702.173|91.105 +640044.576|221697.403|89.145 +640054.348|221688.119|88.724 +640064.041|221678.917|88.770 +640068.884|221674.324|89.102 +640078.516|221665.183|89.398 +640076.470|221664.043|89.331 +640071.539|221668.709|88.810 +640061.666|221678.070|88.919 +640056.701|221682.776|88.819 +640051.727|221687.491|88.840 +640041.790|221696.918|89.383 +640026.404|221711.598|94.766 +639996.293|221740.209|98.694 +639991.309|221744.934|98.749 +639981.336|221754.392|99.042 +639976.289|221759.189|100.060 +639971.308|221763.914|100.234 +639966.294|221768.665|100.221 +639956.272|221778.187|101.624 +639951.304|221782.897|101.730 +639946.287|221787.652|101.898 +639941.304|221792.382|102.325 +639931.291|221801.889|103.330 +639926.271|221806.656|103.775 +639916.298|221816.117|104.364 +639901.356|221830.281|104.766 +639896.370|221835.005|104.784 +639891.432|221839.684|104.793 +639886.452|221844.405|104.784 +639881.474|221849.121|104.659 +639876.506|221853.824|104.400 +639871.519|221858.551|104.556 +639866.545|221863.263|104.498 +639861.571|221867.979|104.443 +639851.619|221877.409|104.510 +639846.599|221882.167|104.528 +639836.641|221891.610|104.946 +639831.618|221896.374|105.162 +639826.647|221901.086|105.281 +639821.630|221905.847|105.446 +639811.644|221915.311|105.668 +639806.685|221920.008|105.519 +639801.674|221924.760|105.635 +639796.715|221929.454|105.424 +639791.707|221934.197|105.373 +639771.770|221953.045|102.760 +639766.772|221957.767|101.974 +639761.764|221962.516|101.962 +639756.796|221967.231|102.538 +639751.791|221971.974|102.383 +639746.780|221976.725|102.681 +639731.759|221990.975|103.529 +639726.800|221995.693|104.568 +639706.799|222014.667|105.879 +639701.800|222019.410|106.089 +639696.802|222024.146|106.080 +639691.803|222028.886|106.125 +639681.799|222038.353|105.559 +639676.752|222043.135|105.555 +639661.753|222057.351|105.495 +639651.734|222066.824|104.376 +639646.726|222071.564|104.074 +639636.674|222081.050|101.706 +639631.650|222085.795|101.014 +639621.613|222095.293|100.072 +639616.609|222100.039|100.292 +639601.704|222114.209|102.858 +639591.795|222123.630|104.620 +639581.877|222133.076|107.317 +639576.924|222137.770|107.461 +639572.004|222142.452|108.387 +639567.014|222147.185|108.759 +639557.069|222156.619|109.143 +639552.104|222161.319|109.006 +639547.087|222166.071|108.735 +639542.112|222170.777|108.469 +639537.147|222175.483|108.396 +639532.173|222180.192|108.165 +639527.189|222184.907|107.756 +639522.154|222189.671|107.336 +639512.236|222199.062|106.744 +639507.271|222203.768|106.839 +639502.342|222208.438|106.769 +639497.331|222213.174|106.098 +639492.381|222217.859|105.738 +639477.498|222231.950|105.007 +639472.554|222236.632|104.900 +639467.592|222241.329|104.480 +639462.672|222245.995|104.739 +639457.695|222250.702|104.166 +639442.854|222264.738|102.696 +639437.874|222269.450|102.239 +639427.992|222278.798|101.246 +639403.102|222302.292|96.012 +639388.273|222316.316|94.244 +639383.396|222320.928|93.769 +639378.422|222325.634|93.324 +639373.609|222330.197|93.620 +639368.702|222334.848|93.391 +639349.402|222353.148|94.284 +639330.191|222371.381|95.777 +639320.605|222380.470|96.094 +639315.600|222385.189|94.750 +639310.814|222389.724|94.580 +639305.992|222394.293|94.558 +639301.244|222398.804|95.220 +639296.483|222403.318|95.336 +639291.712|222407.838|95.403 +639286.894|222412.407|95.479 +639282.163|222416.894|95.939 +639231.045|222465.504|104.821 +639216.835|222478.970|104.480 +639202.595|222492.448|103.059 +639197.764|222497.011|102.279 +639193.027|222501.488|101.505 +639191.744|222499.949|101.593 +639196.569|222495.380|102.337 +639201.394|222490.811|103.129 +639206.252|222486.209|103.824 +639211.007|222481.701|104.160 +639215.790|222477.159|104.373 +639220.584|222472.618|105.050 +639225.373|222468.070|104.973 +639230.079|222463.596|104.675 +639248.882|222445.701|102.629 +639277.006|222418.891|96.716 +639281.779|222414.349|96.256 +639291.328|222405.266|95.418 +639296.178|222400.657|95.253 +639300.966|222396.104|95.006 +639305.779|222391.526|94.543 +639310.653|222386.902|94.631 +639315.636|222382.186|95.823 +639320.598|222377.496|96.823 +639330.200|222368.358|95.857 +639349.585|222349.926|94.406 +639354.373|222345.367|93.866 +639364.090|222336.128|93.245 +639369.034|222331.434|93.376 +639373.942|222326.780|93.644 +639378.855|222322.110|93.446 +639383.817|222317.404|93.882 +639403.708|222298.570|96.924 +639408.704|222293.840|97.963 +639413.745|222289.073|99.002 +639448.602|222256.045|103.355 +639453.549|222251.351|103.489 +639463.480|222241.932|104.437 +639468.472|222237.196|104.659 +639473.422|222232.499|104.970 +639478.400|222227.774|105.001 +639483.341|222223.087|105.245 +639488.330|222218.353|105.510 +639493.320|222213.620|105.857 +639503.259|222204.195|106.759 +639508.215|222199.486|106.619 +639513.184|222194.768|106.680 +639523.145|222185.319|107.412 +639528.131|222180.594|107.954 +639533.151|222175.833|108.244 +639538.065|222171.167|108.351 +639543.075|222166.412|108.533 +639548.086|222161.657|108.735 +639553.045|222156.948|108.908 +639558.053|222152.196|109.091 +639567.984|222142.756|108.664 +639572.995|222137.983|107.741 +639577.926|222133.289|107.214 +639592.819|222119.092|104.089 +639597.787|222114.355|103.108 +639602.819|222109.567|102.587 +639612.735|222100.124|101.124 +639617.764|222095.332|100.377 +639637.823|222076.328|102.907 +639642.828|222071.582|103.288 +639657.897|222057.309|105.434 +639677.922|222038.295|105.677 +639687.956|222028.767|105.790 +639692.952|222024.027|106.132 +639707.979|222009.754|105.860 +639712.965|222005.005|105.242 +639718.007|222000.213|104.995 +639723.051|221995.419|104.739 +639728.050|221990.664|104.281 +639748.148|221971.547|102.660 +639753.147|221966.798|102.599 +639758.155|221962.031|102.044 +639763.209|221957.230|101.834 +639768.204|221952.494|102.349 +639788.208|221933.544|105.239 +639808.209|221914.546|105.626 +639818.176|221905.079|105.531 +639833.169|221890.823|105.007 +639843.203|221881.289|104.720 +639853.195|221871.789|104.367 +639863.171|221862.315|104.638 +639868.142|221857.591|104.598 +639873.165|221852.818|104.525 +639878.128|221848.109|104.754 +639883.099|221843.390|104.876 +639888.122|221838.617|104.864 +639893.099|221833.887|104.864 +639898.077|221829.156|104.842 +639903.063|221824.417|104.729 +639907.992|221819.738|104.839 +639912.994|221814.980|104.495 +639917.998|221810.219|104.123 +639922.958|221805.504|103.809 +639927.962|221800.743|103.529 +639932.949|221795.991|102.800 +639937.923|221791.257|102.328 +639942.892|221786.533|102.044 +639947.805|221781.863|101.874 +639952.834|221777.078|101.447 +639957.787|221772.360|100.746 +639977.627|221753.489|99.472 +639987.456|221744.141|98.975 +639992.455|221739.383|98.609 +640002.358|221729.956|97.387 +640007.290|221725.262|96.808 +640012.270|221720.519|96.262 +640037.249|221696.678|89.901 +640047.100|221687.302|89.035 +640056.899|221677.993|88.907 +640066.622|221668.749|88.633 +640071.481|221664.137|88.846 +640081.006|221655.109|90.248 +640077.415|221655.380|89.998 +640072.538|221659.992|89.407 +640062.657|221669.343|88.602 +640057.646|221674.098|88.959 +640052.678|221678.804|88.889 +640047.697|221683.529|89.014 +640042.711|221688.250|88.682 +640037.733|221692.977|89.334 +640022.323|221707.672|94.488 +640017.278|221712.463|95.076 +640007.171|221722.068|96.573 +639997.109|221731.614|97.100 +639992.041|221736.442|98.252 +639981.985|221745.985|98.908 +639976.916|221750.801|99.548 +639961.868|221765.081|100.185 +639956.769|221769.924|100.752 +639946.732|221779.462|101.797 +639931.629|221793.793|102.547 +639926.579|221798.597|103.407 +639921.516|221803.404|103.782 +639916.517|221808.146|103.855 +639911.445|221812.965|104.449 +639906.462|221817.699|105.190 +639901.442|221822.457|104.912 +639896.406|221827.230|104.940 +639891.426|221831.951|104.861 +639886.394|221836.724|104.894 +639881.410|221841.449|104.922 +639876.387|221846.213|104.858 +639871.413|221850.922|104.705 +639866.393|221855.680|104.586 +639861.367|221860.447|104.635 +639856.334|221865.220|104.839 +639826.244|221893.765|105.647 +639816.216|221903.275|105.702 +639811.205|221908.026|105.717 +639806.195|221912.775|105.702 +639801.135|221917.576|105.815 +639796.130|221922.319|105.638 +639791.177|221927.003|105.165 +639766.138|221950.695|102.383 +639761.139|221955.429|101.846 +639756.128|221960.181|102.020 +639751.111|221964.948|102.620 +639746.106|221969.694|102.602 +639741.095|221974.449|102.953 +639716.117|221998.171|105.178 +639711.118|222002.917|105.501 +639706.122|222007.663|105.982 +639696.125|222017.145|106.141 +639691.126|222021.885|106.162 +639686.124|222026.624|106.129 +639676.124|222036.098|105.653 +639646.147|222064.493|104.129 +639641.136|222069.235|103.654 +639621.077|222088.185|99.828 +639616.081|222092.931|100.310 +639576.475|222130.589|107.299 +639551.744|222154.055|108.765 +639546.779|222158.758|108.671 +639541.814|222163.465|108.527 +639531.871|222172.880|108.174 +639526.933|222177.552|107.750 +639507.039|222196.383|106.409 +639487.175|222215.192|105.296 +639482.179|222219.923|105.028 +639477.287|222224.556|104.903 +639472.340|222229.241|104.733 +639467.400|222233.922|104.617 +639462.447|222238.613|104.412 +639452.553|222247.974|103.498 +639447.606|222252.661|103.434 +639442.674|222257.328|102.937 +639437.660|222262.065|102.032 +639432.725|222266.734|101.587 +639427.846|222271.352|101.273 +639417.909|222280.743|99.725 +639412.947|222285.434|99.082 +639407.951|222290.152|98.082 +639388.121|222308.888|94.674 +639383.183|222313.558|94.010 +639378.212|222318.261|93.565 +639373.375|222322.845|93.598 +639368.480|222327.484|93.507 +639363.566|222332.135|93.278 +639353.895|222341.313|93.991 +639349.058|222345.909|94.586 +639344.300|222350.432|95.515 +639325.021|222368.729|96.808 +639315.353|222377.889|96.832 +639310.464|222382.503|95.677 +639305.520|222387.176|94.939 +639300.719|222391.721|94.692 +639295.943|222396.256|95.098 +639291.207|222400.752|95.451 +639286.452|222405.269|96.094 +639281.672|222409.798|96.110 +639276.948|222414.282|96.622 +639272.214|222418.778|97.036 +639267.591|222423.182|98.417 +639244.383|222445.247|102.904 +639221.020|222467.412|105.187 +639201.952|222485.447|103.961 +639197.191|222489.943|103.324 +639192.405|222494.463|102.520 +639183.578|222499.891|101.544 +639188.455|222495.267|102.288 +639193.295|222490.677|103.166 +639198.078|222486.139|103.650 +639202.930|222481.536|104.309 +639217.381|222467.814|105.351 +639226.781|222458.862|104.635 +639269.160|222418.430|97.055 +639273.958|222413.864|96.805 +639278.768|222409.280|96.271 +639283.538|222404.739|95.802 +639288.338|222400.164|95.201 +639293.185|222395.549|95.031 +639298.010|222390.956|94.671 +639302.899|222386.313|94.897 +639307.888|222381.583|95.646 +639312.887|222376.852|96.978 +639332.443|222358.250|96.646 +639337.286|222353.636|96.180 +639346.951|222344.425|95.006 +639356.684|222335.147|93.540 +639361.579|222330.492|93.644 +639366.511|222325.804|93.635 +639376.368|222316.432|93.629 +639381.318|222311.729|93.927 +639386.338|222306.968|94.488 +639411.411|222283.209|98.813 +639416.425|222278.457|99.569 +639426.413|222268.987|100.727 +639441.491|222254.694|102.818 +639451.416|222245.273|103.538 +639461.432|222235.772|104.321 +639466.418|222231.036|104.446 +639471.353|222226.348|104.513 +639476.339|222221.611|104.714 +639511.257|222188.461|106.217 +639526.220|222174.270|107.820 +639531.231|222169.509|107.939 +639536.196|222164.793|108.140 +639541.216|222160.033|108.500 +639546.175|222155.320|108.616 +639551.180|222150.568|108.686 +639571.071|222131.643|107.229 +639576.079|222126.888|107.521 +639615.825|222089.002|100.907 +639620.827|222084.250|100.822 +639645.894|222060.497|104.528 +639650.902|222055.751|105.412 +639655.900|222051.008|105.805 +639675.877|222032.031|105.985 +639680.824|222027.335|106.241 +639685.814|222022.586|106.046 +639690.809|222017.846|106.391 +639695.753|222013.143|106.110 +639710.728|221998.903|105.370 +639715.724|221994.148|105.007 +639725.718|221984.632|103.879 +639730.720|221979.871|103.334 +639740.675|221970.398|102.675 +639745.673|221965.649|102.721 +639750.681|221960.882|102.169 +639755.686|221956.121|101.898 +639760.688|221951.369|101.925 +639780.509|221932.581|104.684 +639795.447|221918.414|105.775 +639800.446|221913.668|105.912 +639805.359|221909.002|105.842 +639810.361|221904.250|105.918 +639840.165|221875.922|104.824 +639855.024|221861.809|104.751 +639859.949|221857.131|104.656 +639864.917|221852.412|104.720 +639869.834|221847.743|104.888 +639874.759|221843.067|104.937 +639879.731|221838.346|104.973 +639884.659|221833.664|104.970 +639889.591|221828.979|104.952 +639899.500|221819.573|105.037 +639904.447|221814.867|104.778 +639914.353|221805.449|104.199 +639919.312|221800.731|103.824 +639924.274|221796.012|103.489 +639929.267|221791.257|102.678 +639934.193|221786.573|102.248 +639944.089|221777.160|101.544 +639949.021|221772.469|101.151 +639954.008|221767.721|100.654 +639958.948|221763.024|100.237 +639973.750|221748.948|99.414 +639978.648|221744.291|99.063 +639983.598|221739.584|98.704 +639988.551|221734.872|98.310 +639993.485|221730.172|97.600 +639998.445|221725.457|97.234 +640018.232|221706.611|94.394 +640028.284|221697.013|91.422 +640033.353|221692.164|89.529 +640038.282|221687.473|88.785 +640048.042|221678.207|89.038 +640052.967|221673.525|88.956 +640057.792|221668.941|88.929 +640062.715|221664.268|88.944 +640067.619|221659.605|88.666 +640067.183|221657.069|89.072 +640062.306|221661.684|88.983 +640057.326|221666.405|89.020 +640052.452|221671.023|88.980 +640047.490|221675.723|88.883 +640032.646|221689.795|89.313 +640012.346|221709.129|95.003 +640007.320|221713.908|95.997 +640002.361|221718.611|96.219 +639992.361|221728.103|97.195 +639987.338|221732.873|97.740 +639977.294|221742.407|98.938 +639967.324|221751.862|99.304 +639957.248|221761.417|99.962 +639952.234|221766.178|100.691 +639947.214|221770.942|100.898 +639942.172|221775.728|101.435 +639932.071|221785.308|102.160 +639927.082|221790.050|102.828 +639922.001|221794.872|103.440 +639916.980|221799.636|103.867 +639911.921|221804.434|104.208 +639906.913|221809.186|104.550 +639891.798|221823.508|104.739 +639886.802|221828.248|105.001 +639881.773|221833.012|104.995 +639876.747|221837.776|104.986 +639871.721|221842.534|104.943 +639866.697|221847.295|104.918 +639861.677|221852.047|104.797 +639856.657|221856.802|104.745 +639851.631|221861.566|104.809 +639846.568|221866.360|104.696 +639841.594|221871.072|104.742 +639831.508|221880.631|104.885 +639826.488|221885.389|104.970 +639811.376|221899.724|105.863 +639806.313|221904.521|106.013 +639796.252|221914.052|105.872 +639781.152|221928.344|105.068 +639776.117|221933.099|104.144 +639771.118|221937.824|103.541 +639766.077|221942.588|102.831 +639761.032|221947.355|102.108 +639756.024|221952.094|101.950 +639750.971|221956.883|101.919 +639745.911|221961.680|102.303 +639740.903|221966.432|102.642 +639735.847|221971.233|103.090 +639730.793|221976.021|103.266 +639720.783|221985.525|104.306 +639715.733|221990.316|104.861 +639705.687|221999.848|105.519 +639700.645|222004.633|106.068 +639695.646|222009.370|106.113 +639690.648|222014.106|106.129 +639685.603|222018.885|106.156 +639680.605|222023.622|106.189 +639675.606|222028.356|106.092 +639635.521|222066.288|103.431 +639620.461|222080.516|101.200 +639615.450|222085.262|100.944 +639595.580|222104.132|103.209 +639575.845|222122.911|107.442 +639570.840|222127.654|107.424 +639561.013|222136.983|108.411 +639556.063|222141.680|108.549 +639546.197|222151.032|108.549 +639541.277|222155.689|108.402 +639536.312|222160.395|108.283 +639531.386|222165.059|107.997 +639506.646|222188.470|106.013 +639482.021|222211.797|105.196 +639472.112|222221.176|104.434 +639467.217|222225.815|104.291 +639462.309|222230.457|104.025 +639457.387|222235.129|104.205 +639437.636|222253.814|102.379 +639427.711|222263.192|100.706 +639422.786|222267.856|100.429 +639417.854|222272.513|99.496 +639408.006|222281.831|98.539 +639393.147|222295.873|96.037 +639388.179|222300.561|94.961 +639383.253|222305.218|94.409 +639378.334|222309.872|93.967 +639373.414|222314.530|93.543 +639363.731|222323.717|93.985 +639358.842|222328.350|93.982 +639354.014|222332.928|94.147 +639349.164|222337.533|94.595 +639344.428|222342.041|95.713 +639339.658|222346.574|96.503 +639334.823|222351.158|96.640 +639329.965|222355.763|96.546 +639305.718|222378.739|96.442 +639300.820|222383.369|95.680 +639295.897|222388.017|94.738 +639291.082|222392.583|94.781 +639286.314|222397.109|95.293 +639281.547|222401.639|95.811 +639276.786|222406.162|96.390 +639272.062|222410.646|96.893 +639267.316|222415.151|97.189 +639262.641|222419.598|98.112 +639258.038|222423.984|99.661 +639239.354|222441.751|102.712 +639215.960|222463.967|105.104 +639201.741|222477.443|104.812 +639197.005|222481.923|104.315 +639192.171|222486.492|103.495 +639187.419|222490.988|102.931 +639182.560|222495.578|102.005 +639177.793|222500.086|101.419 +639180.683|222494.807|102.367 +639185.483|222490.260|102.901 +639195.155|222481.091|104.260 +639199.937|222476.556|104.793 +639214.205|222463.007|105.181 +639223.641|222454.025|104.364 +639237.760|222440.583|102.745 +639261.123|222418.296|97.765 +639270.648|222409.234|97.064 +639275.409|222404.702|96.509 +639280.179|222400.151|95.643 +639284.970|222395.598|95.366 +639289.777|222391.020|94.817 +639294.599|222386.438|94.881 +639299.589|222381.717|96.034 +639304.532|222377.032|96.829 +639309.424|222372.393|97.161 +639319.212|222363.100|97.484 +639328.883|222353.898|96.786 +639333.845|222349.186|97.012 +639338.655|222344.611|96.683 +639343.510|222339.981|95.854 +639353.194|222330.757|94.385 +639362.963|222321.464|93.888 +639367.946|222316.731|93.946 +639372.796|222312.119|93.592 +639377.806|222307.364|94.034 +639382.738|222302.688|94.677 +639402.812|222283.672|97.856 +639407.777|222278.963|98.573 +639417.787|222269.474|99.895 +639422.765|222264.750|100.279 +639437.800|222250.497|102.386 +639447.804|222241.006|103.550 +639457.801|222231.514|104.041 +639462.788|222226.778|104.156 +639467.784|222222.035|104.455 +639472.718|222217.347|104.583 +639482.737|222207.831|105.025 +639487.718|222203.101|105.156 +639492.744|222198.328|105.339 +639502.750|222188.824|105.836 +639507.770|222184.057|105.958 +639527.845|222165.007|107.784 +639532.849|222160.249|107.820 +639537.876|222155.485|108.293 +639542.877|222150.730|108.317 +639547.879|222145.975|108.387 +639552.878|222141.223|108.335 +639557.880|222136.471|108.387 +639562.878|222131.723|108.442 +639567.898|222126.940|107.759 +639572.848|222122.234|107.762 +639582.818|222112.721|105.708 +639632.918|222065.063|103.291 +639642.986|222055.522|104.958 +639648.040|222050.734|105.693 +639653.084|222045.943|105.918 +639663.069|222036.451|105.805 +639673.106|222026.920|106.205 +639678.145|222022.132|106.275 +639693.168|222007.846|106.019 +639703.196|221998.311|105.836 +639713.233|221988.756|104.858 +639718.183|221984.044|104.352 +639728.230|221974.476|103.254 +639733.180|221969.770|103.166 +639743.235|221960.199|102.346 +639748.191|221955.481|101.968 +639753.193|221950.729|102.035 +639758.195|221945.980|102.166 +639763.190|221941.234|102.453 +639768.183|221936.501|103.138 +639773.172|221931.767|103.757 +639778.116|221927.086|104.498 +639783.094|221922.373|105.616 +639793.042|221912.925|106.040 +639798.044|221908.176|106.156 +639802.955|221903.503|106.019 +639807.962|221898.748|106.007 +639817.887|221889.309|105.763 +639822.855|221884.581|105.491 +639832.804|221875.120|104.897 +639837.769|221870.399|104.830 +639847.654|221861.008|104.937 +639852.582|221856.317|104.711 +639857.544|221851.608|104.918 +639862.467|221846.929|104.964 +639867.386|221842.253|105.028 +639872.312|221837.572|105.040 +639877.241|221832.890|105.034 +639882.157|221828.220|105.293 +639887.092|221823.530|105.211 +639901.884|221809.460|104.431 +639916.636|221795.430|103.849 +639921.562|221790.736|103.291 +639936.347|221776.660|101.843 +639941.291|221771.951|101.221 +639951.158|221762.560|100.453 +639956.031|221757.924|100.292 +639960.966|221753.233|100.005 +639965.867|221748.567|99.520 +639970.796|221743.879|99.377 +639975.725|221739.179|98.582 +639995.378|221720.470|96.771 +640000.304|221715.783|96.296 +640015.071|221701.707|93.985 +640025.121|221692.097|90.495 +640034.960|221682.724|89.148 +640039.833|221678.088|89.026 +640044.698|221673.467|89.084 +640049.599|221668.801|88.718 +640054.397|221664.244|89.008 +640059.283|221659.599|88.898 +640078.476|221641.390|90.757 +640080.250|221636.623|90.998 +640070.606|221645.755|90.172 +640065.818|221650.287|89.663 +640056.174|221659.419|88.907 +640051.239|221664.104|89.002 +640046.396|221668.700|89.176 +640041.476|221673.367|89.139 +640036.563|221678.024|89.066 +640031.717|221682.617|88.834 +640026.739|221687.351|89.547 +640011.594|221701.795|94.025 +639996.649|221716.005|96.021 +639991.641|221720.769|96.920 +639986.682|221725.481|97.256 +639981.732|221730.175|97.460 +639971.735|221739.682|98.731 +639961.780|221749.137|99.588 +639946.817|221763.344|100.575 +639941.819|221768.092|101.166 +639931.803|221777.608|102.069 +639926.783|221782.378|102.413 +639906.703|221801.447|104.114 +639901.704|221806.193|104.315 +639896.714|221810.923|104.306 +639891.667|221815.718|104.589 +639886.653|221820.485|105.229 +639881.624|221825.252|105.171 +639876.604|221830.010|104.989 +639871.568|221834.789|105.208 +639866.548|221839.547|105.089 +639861.525|221844.311|105.031 +639856.456|221849.118|104.986 +639851.439|221853.872|104.888 +639846.422|221858.630|104.815 +639831.258|221873.014|105.138 +639821.130|221882.624|105.269 +639816.098|221887.407|105.872 +639805.978|221897.005|105.964 +639795.911|221906.557|106.159 +639790.808|221911.391|106.055 +639775.684|221925.708|104.358 +639770.694|221930.423|103.355 +639760.554|221940.024|102.376 +639755.500|221944.810|102.166 +639750.492|221949.562|102.245 +639745.393|221954.393|102.032 +639740.336|221959.196|102.447 +639735.280|221964.006|103.068 +639730.180|221968.840|103.102 +639720.076|221978.429|103.519 +639715.026|221983.239|104.522 +639709.929|221988.079|105.053 +639699.834|221997.668|105.973 +639694.750|222002.499|106.342 +639689.703|222007.279|106.107 +639679.614|222016.852|106.351 +639674.569|222021.635|106.415 +639659.433|222035.985|105.955 +639654.386|222040.770|105.921 +639649.338|222045.555|105.821 +639644.336|222050.295|105.470 +639634.211|222059.866|103.766 +639629.203|222064.609|103.367 +639619.102|222074.152|101.270 +639614.097|222078.898|101.279 +639609.037|222083.692|101.051 +639604.057|222088.429|102.078 +639594.081|222097.908|103.330 +639579.155|222112.106|106.040 +639569.255|222121.521|107.686 +639564.314|222126.212|108.101 +639559.321|222130.948|108.378 +639554.362|222135.648|108.332 +639549.403|222140.348|108.256 +639544.438|222145.052|108.085 +639504.762|222182.627|105.805 +639494.890|222191.979|105.339 +639489.982|222196.621|104.809 +639485.057|222201.290|104.839 +639480.168|222205.923|104.733 +639470.338|222215.238|104.449 +639465.440|222219.877|104.284 +639460.538|222224.519|104.065 +639455.637|222229.161|103.864 +639445.826|222238.455|103.443 +639435.999|222247.751|102.273 +639426.081|222257.124|100.657 +639421.186|222261.757|100.112 +639406.439|222275.710|98.627 +639381.830|222298.976|94.985 +639376.895|222303.645|94.342 +639372.021|222308.257|93.894 +639367.184|222312.841|93.894 +639362.323|222317.453|94.165 +639357.543|222321.988|94.293 +639319.245|222358.351|97.658 +639299.960|222376.624|97.241 +639295.017|222381.290|96.040 +639290.149|222385.890|95.177 +639285.303|222390.480|94.967 +639280.557|222394.985|95.247 +639275.817|222399.490|96.018 +639219.667|222452.836|104.099 +639205.637|222466.144|105.153 +639200.949|222470.588|105.333 +639196.176|222475.102|104.897 +639177.129|222493.109|102.721 +639172.371|222497.605|102.200 +639167.585|222502.119|101.176 +639163.327|222502.842|101.096 +639172.926|222493.753|102.376 +639192.162|222475.535|104.891 +639196.910|222471.030|105.168 +639201.677|222466.506|105.223 +639234.602|222435.191|102.050 +639258.093|222412.813|97.682 +639272.406|222399.200|96.226 +639277.155|222394.680|95.561 +639281.916|222390.151|95.006 +639286.811|222385.509|95.247 +639291.801|222380.790|96.372 +639296.748|222376.106|97.173 +639306.517|222366.843|97.661 +639316.258|222357.592|97.567 +639340.526|222334.528|96.043 +639350.213|222325.305|94.625 +639359.997|222316.011|94.257 +639364.868|222311.384|94.122 +639369.775|222306.721|93.897 +639374.783|222301.984|94.820 +639404.684|222273.662|98.451 +639414.617|222264.250|99.341 +639424.615|222254.783|100.654 +639434.670|222245.267|102.236 +639454.622|222226.354|103.736 +639459.621|222221.614|104.004 +639469.554|222212.190|104.419 +639479.515|222202.741|104.550 +639484.490|222198.020|104.556 +639489.482|222193.286|104.937 +639494.472|222188.556|105.312 +639499.504|222183.786|105.595 +639504.479|222179.067|105.723 +639519.548|222164.790|107.390 +639524.565|222160.033|107.570 +639534.532|222150.575|107.589 +639559.574|222126.815|108.344 +639564.564|222122.076|108.110 +639579.548|222107.823|106.281 +639594.517|222093.568|103.730 +639604.517|222084.046|101.840 +639609.534|222079.260|100.535 +639644.873|222045.808|105.702 +639649.875|222041.066|106.007 +639654.916|222036.280|106.095 +639659.960|222031.495|106.113 +639665.002|222026.710|106.046 +639670.046|222021.927|106.372 +639675.088|222017.142|106.418 +639680.080|222012.399|106.305 +639695.208|221998.040|106.092 +639700.243|221993.249|105.583 +639705.287|221988.454|105.080 +639710.283|221983.708|104.903 +639715.330|221978.902|104.059 +639730.430|221964.555|103.145 +639735.484|221959.751|102.690 +639740.537|221954.947|102.236 +639745.539|221950.202|102.373 +639755.595|221940.658|102.416 +639760.642|221935.870|102.611 +639765.687|221931.088|102.977 +639770.637|221926.400|103.489 +639775.666|221921.642|104.632 +639780.649|221916.927|105.589 +639785.648|221912.184|105.842 +639795.697|221902.647|106.113 +639800.656|221897.938|106.132 +639805.667|221893.177|105.924 +639815.649|221883.691|105.510 +639830.646|221869.445|105.205 +639840.600|221859.984|104.702 +639845.605|221855.235|104.958 +639850.574|221850.520|105.056 +639855.493|221845.847|105.129 +639860.464|221841.126|105.144 +639865.439|221836.404|105.147 +639870.367|221831.723|105.101 +639875.354|221826.983|104.915 +639880.267|221822.326|105.281 +639885.211|221817.626|105.043 +639895.148|221808.168|103.733 +639900.061|221803.507|104.153 +639904.965|221798.847|103.940 +639919.766|221784.774|102.770 +639924.677|221780.105|102.568 +639934.540|221770.723|101.621 +639939.423|221766.078|101.246 +639944.373|221761.369|100.602 +639949.320|221756.662|100.078 +639959.092|221747.372|99.511 +639963.981|221742.727|99.271 +639968.885|221738.060|98.801 +639973.768|221733.424|98.728 +639978.721|221728.700|97.689 +639993.357|221714.783|96.585 +640008.073|221700.768|94.281 +640027.888|221681.861|89.090 +640032.756|221677.241|89.075 +640042.400|221668.081|89.020 +640047.210|221663.515|89.182 +640052.053|221658.913|88.987 +640080.710|221631.737|91.020 +640064.352|221643.447|90.032 +640059.520|221648.016|89.480 +640044.753|221662.001|89.206 +640029.949|221676.024|89.035 +640025.014|221680.703|89.224 +640019.930|221685.543|90.611 +640004.787|221699.957|94.485 +639994.732|221709.513|95.918 +639984.768|221718.971|96.991 +639979.803|221723.683|97.359 +639969.799|221733.193|98.664 +639959.863|221742.623|99.173 +639949.923|221752.060|99.877 +639944.973|221756.763|100.389 +639934.976|221766.264|101.569 +639929.989|221771.000|102.008 +639925.012|221775.728|102.395 +639920.035|221780.452|102.767 +639910.043|221789.938|103.538 +639905.075|221794.659|103.946 +639895.145|221804.074|103.867 +639890.228|221808.725|103.358 +639885.208|221813.496|103.986 +639880.194|221818.263|104.568 +639875.189|221823.014|105.004 +639870.212|221827.733|104.934 +639865.283|221832.405|104.845 +639860.291|221837.142|105.114 +639855.264|221841.912|105.181 +639850.290|221846.627|105.132 +639845.316|221851.346|105.126 +639840.344|221856.058|105.043 +639835.321|221860.819|105.083 +639830.347|221865.540|105.220 +639815.378|221879.741|105.638 +639810.355|221884.511|105.943 +639805.341|221889.266|105.994 +639795.362|221898.733|106.183 +639790.357|221903.470|105.906 +639785.401|221908.170|105.760 +639780.347|221912.958|105.586 +639775.352|221917.686|105.031 +639770.411|221922.352|103.967 +639765.367|221927.122|103.303 +639760.365|221931.859|102.885 +639755.403|221936.568|102.980 +639750.349|221941.359|102.922 +639740.336|221950.845|102.526 +639735.283|221955.636|102.495 +639730.272|221960.403|103.315 +639705.153|221984.251|105.031 +639690.062|221998.583|106.430 +639685.018|222003.371|106.586 +639680.016|222008.108|106.272 +639669.973|222017.633|106.473 +639664.974|222022.372|106.391 +639654.931|222031.897|106.354 +639649.881|222036.683|106.244 +639639.828|222046.208|105.723 +639629.749|222055.736|104.022 +639624.728|222060.482|103.132 +639609.629|222074.771|101.477 +639599.595|222084.305|102.486 +639584.644|222098.527|104.644 +639559.708|222122.243|108.338 +639554.710|222126.986|108.399 +639549.738|222131.695|108.055 +639544.712|222136.453|107.558 +639534.712|222145.945|107.835 +639529.692|222150.703|107.549 +639524.723|222155.415|107.400 +639519.709|222160.170|107.320 +639514.717|222164.894|106.753 +639509.724|222169.622|106.214 +639504.680|222174.398|105.620 +639499.696|222179.119|105.382 +639494.752|222183.804|105.004 +639484.782|222193.253|104.574 +639479.848|222197.934|104.440 +639464.946|222212.065|104.214 +639455.028|222221.459|103.465 +639450.111|222226.129|103.785 +639445.143|222230.835|103.334 +639440.169|222235.544|102.867 +639435.197|222240.253|102.453 +639415.309|222259.062|99.286 +639410.396|222263.723|99.213 +639405.467|222268.395|98.954 +639400.502|222273.092|98.292 +639395.549|222277.771|97.250 +639380.690|222291.837|95.485 +639375.725|222296.531|94.455 +639370.817|222301.180|94.159 +639365.947|222305.803|94.284 +639361.085|222310.418|94.570 +639346.497|222324.262|94.866 +639308.150|222360.689|97.893 +639303.383|222365.218|98.298 +639288.853|222378.980|97.033 +639283.888|222383.659|95.287 +639279.036|222388.258|95.046 +639274.281|222392.772|95.253 +639269.541|222397.280|96.027 +639260.132|222406.229|97.344 +639255.444|222410.682|97.762 +639236.842|222428.391|101.505 +639208.932|222454.915|104.897 +639204.268|222459.341|105.239 +639190.193|222472.685|104.955 +639155.973|222501.766|101.773 +639160.731|222497.252|102.264 +639165.552|222492.680|102.898 +639189.461|222470.003|105.062 +639203.744|222456.430|105.156 +639208.398|222451.995|104.431 +639213.071|222447.539|103.462 +639217.777|222443.055|102.764 +639222.434|222438.617|102.072 +639227.180|222434.100|101.709 +639231.926|222429.583|101.361 +639236.699|222425.041|100.840 +639246.197|222415.998|99.850 +639255.588|222407.037|97.588 +639260.391|222402.468|97.390 +639265.109|222397.969|96.457 +639269.886|222393.415|95.613 +639274.659|222388.874|95.174 +639279.542|222384.235|95.299 +639284.519|222379.529|96.732 +639289.554|222374.774|98.304 +639304.200|222360.863|98.597 +639309.004|222356.291|98.118 +639318.767|222347.019|98.301 +639342.910|222324.021|95.195 +639347.774|222319.398|94.939 +639362.481|222305.416|94.561 +639367.416|222300.719|94.107 +639372.302|222296.077|94.226 +639377.334|222291.307|94.939 +639397.277|222272.409|97.716 +639407.278|222262.927|98.890 +639437.176|222234.572|101.953 +639442.208|222229.801|102.648 +639452.126|222220.392|103.376 +639457.122|222215.649|103.641 +639462.072|222210.953|103.952 +639467.052|222206.222|104.074 +639471.987|222201.534|104.199 +639476.958|222196.813|104.184 +639481.939|222192.082|104.336 +639486.925|222187.352|104.626 +639491.896|222182.627|104.684 +639496.877|222177.900|104.949 +639501.857|222173.172|105.248 +639521.883|222154.177|106.988 +639536.812|222139.995|107.336 +639541.838|222135.231|107.875 +639546.840|222130.482|107.933 +639551.838|222125.730|107.936 +639566.777|222111.536|107.759 +639576.765|222102.017|106.296 +639601.625|222078.315|101.739 +639616.645|222064.063|102.611 +639621.650|222059.311|102.986 +639636.732|222045.028|105.653 +639641.730|222040.285|106.025 +639651.767|222030.757|106.482 +639656.760|222026.015|106.482 +639661.798|222021.226|106.455 +639666.791|222016.484|106.567 +639671.781|222011.741|106.421 +639676.819|222006.953|106.348 +639681.860|222002.167|106.634 +639686.850|221997.421|106.470 +639691.891|221992.630|106.168 +639696.878|221987.881|105.613 +639701.870|221983.129|105.232 +639711.956|221973.531|104.348 +639732.003|221954.451|102.532 +639737.051|221949.659|102.626 +639752.092|221935.376|103.120 +639757.091|221930.627|103.282 +639762.093|221925.876|103.266 +639767.125|221921.105|104.077 +639772.109|221916.390|105.028 +639777.101|221911.660|105.586 +639782.100|221906.914|105.684 +639787.099|221902.168|105.830 +639792.098|221897.422|105.994 +639797.099|221892.677|106.144 +639802.058|221887.967|106.074 +639807.066|221883.210|105.997 +639812.120|221878.409|105.964 +639817.097|221873.672|105.452 +639822.105|221868.917|105.495 +639827.131|221864.138|105.071 +639832.097|221859.423|105.086 +639837.104|221854.668|105.223 +639842.115|221849.907|105.242 +639847.087|221845.189|105.232 +639852.052|221840.470|105.278 +639857.026|221835.746|105.187 +639867.027|221826.245|105.007 +639877.018|221816.742|104.166 +639881.965|221812.039|103.858 +639886.948|221807.302|103.788 +639891.938|221802.565|103.693 +639896.882|221797.865|103.550 +639901.829|221793.165|103.373 +639906.754|221788.493|103.654 +639916.676|221779.056|102.986 +639921.613|221774.356|102.325 +639926.573|221769.644|102.133 +639951.365|221746.052|99.642 +639961.213|221736.686|98.740 +639971.055|221727.325|98.045 +639976.033|221722.586|97.344 +639980.928|221717.931|97.131 +639985.841|221713.259|96.719 +639990.773|221708.565|96.119 +639995.704|221703.874|95.582 +640010.536|221689.743|93.135 +640025.465|221675.491|88.929 +640030.302|221670.904|89.233 +640035.155|221666.295|89.383 +640040.041|221661.644|88.648 +640044.811|221657.121|89.215 +640049.703|221652.472|89.011 +640064.010|221638.909|90.376 +640078.305|221625.351|91.492 +640078.394|221622.258|91.666 +640073.462|221626.921|91.090 +640048.944|221650.132|89.014 +640044.061|221654.761|89.044 +640024.167|221673.626|89.179 +640003.897|221692.929|94.333 +639998.944|221697.626|94.403 +639988.837|221707.236|95.945 +639978.821|221716.749|97.140 +639973.817|221721.498|97.436 +639968.806|221726.252|97.859 +639963.776|221731.032|98.600 +639958.814|221735.732|98.448 +639953.794|221740.499|99.133 +639948.777|221745.266|99.837 +639943.800|221749.981|99.990 +639938.752|221754.776|100.566 +639933.760|221759.515|101.054 +639913.716|221778.544|103.141 +639908.751|221783.256|103.419 +639903.758|221787.984|103.367 +639898.799|221792.687|103.590 +639893.800|221797.426|103.757 +639888.808|221802.157|103.782 +639883.864|221806.842|103.830 +639878.874|221811.572|103.894 +639873.936|221816.254|103.925 +639868.935|221820.997|104.260 +639863.933|221825.742|104.708 +639854.003|221835.164|105.196 +639848.973|221839.928|105.290 +639844.045|221844.597|105.290 +639839.070|221849.313|105.278 +639834.047|221854.074|105.357 +639829.082|221858.774|105.165 +639824.108|221863.492|105.324 +639819.136|221868.204|105.363 +639809.133|221877.693|106.037 +639804.168|221882.399|106.022 +639794.188|221891.854|106.074 +639789.229|221896.548|105.906 +639784.225|221901.290|105.769 +639779.272|221905.978|105.415 +639764.367|221920.075|104.044 +639759.371|221924.797|103.269 +639754.357|221929.551|103.559 +639749.401|221934.245|103.373 +639744.390|221938.997|103.638 +639739.431|221943.697|103.593 +639734.435|221948.416|102.675 +639729.427|221953.155|102.553 +639719.457|221962.625|103.772 +639709.494|221972.071|104.117 +639674.545|222005.230|106.592 +639664.548|222014.704|106.589 +639659.549|222019.440|106.519 +639654.550|222024.177|106.561 +639649.551|222028.913|106.561 +639644.553|222033.650|106.500 +639639.545|222038.384|106.043 +639634.537|222043.123|105.601 +639604.456|222071.573|102.498 +639579.600|222095.168|105.263 +639564.719|222109.311|107.848 +639554.725|222118.784|108.223 +639549.751|222123.490|107.845 +639534.764|222137.685|107.476 +639524.827|222147.094|107.250 +639519.789|222151.855|106.714 +639514.775|222156.607|106.668 +639504.802|222166.040|105.933 +639499.788|222170.777|105.089 +639494.752|222175.544|104.784 +639489.760|222180.265|104.464 +639484.822|222184.941|104.281 +639479.838|222189.659|104.193 +639469.875|222199.099|104.053 +639464.882|222203.826|103.864 +639459.932|222208.511|103.638 +639454.982|222213.196|103.422 +639449.980|222217.929|103.209 +639440.092|222227.284|102.443 +639425.209|222241.362|101.112 +639405.306|222260.178|98.722 +639395.390|222269.550|97.628 +639390.422|222274.247|97.027 +639375.581|222288.271|95.049 +639365.700|222297.620|94.223 +639360.850|222302.222|94.613 +639355.943|222306.873|94.927 +639327.075|222334.284|98.435 +639322.263|222338.847|98.795 +639317.416|222343.440|98.819 +639312.588|222348.009|98.600 +639302.987|222357.114|99.188 +639283.657|222375.417|98.490 +639278.582|222380.184|96.219 +639273.714|222384.783|95.409 +639268.926|222389.316|95.348 +639264.232|222393.778|96.116 +639259.474|222398.295|96.768 +639254.810|222402.724|97.393 +639250.098|222407.198|98.015 +639231.383|222424.971|100.554 +639226.699|222429.421|101.047 +639222.038|222433.850|101.752 +639217.384|222438.276|102.498 +639212.766|222442.659|103.187 +639208.100|222447.094|103.858 +639203.464|222451.498|104.409 +639194.188|222460.307|105.513 +639184.755|222469.241|105.144 +639170.573|222482.661|104.038 +639161.047|222491.668|102.934 +639156.344|222496.118|102.504 +639148.514|222500.662|101.941 +639153.245|222496.176|102.227 +639158.073|222491.604|102.870 +639162.846|222487.081|103.516 +639167.649|222482.530|104.050 +639172.377|222478.046|104.431 +639177.168|222473.499|104.598 +639181.966|222468.951|105.193 +639186.791|222464.379|105.635 +639196.167|222455.464|104.976 +639200.858|222450.998|104.510 +639205.539|222446.545|103.961 +639210.203|222442.104|103.303 +639214.851|222437.678|102.538 +639224.254|222428.723|101.093 +639228.960|222424.240|100.426 +639233.703|222419.729|100.060 +639257.404|222397.164|96.634 +639262.159|222392.635|96.030 +639266.960|222388.066|95.384 +639271.782|222383.488|95.378 +639276.753|222378.782|96.296 +639281.895|222373.942|98.798 +639296.617|222359.979|99.752 +639301.460|222355.379|99.658 +639306.273|222350.792|98.862 +639311.134|222346.177|98.987 +639320.915|222336.890|98.960 +639325.777|222332.266|98.673 +639335.326|222323.159|96.369 +639340.191|222318.529|95.613 +639345.016|222313.942|95.500 +639354.821|222304.621|94.900 +639359.723|222299.960|94.586 +639374.542|222285.897|95.144 +639379.498|222281.209|96.125 +639389.444|222271.779|96.948 +639394.461|222267.024|97.676 +639424.389|222238.659|101.307 +639439.330|222224.489|102.346 +639449.288|222215.040|102.986 +639454.196|222210.386|103.300 +639459.240|222205.600|103.620 +639469.167|222196.179|104.007 +639474.133|222191.457|103.925 +639479.064|222186.776|104.031 +639484.039|222182.054|104.086 +639493.951|222172.645|104.528 +639498.980|222167.875|104.848 +639508.977|222158.402|106.244 +639513.949|222153.687|106.436 +639518.914|222148.971|106.570 +639523.882|222144.256|106.814 +639533.831|222134.822|107.607 +639548.784|222120.619|107.628 +639563.692|222106.464|107.887 +639593.489|222078.081|103.346 +639598.479|222073.338|102.907 +639603.429|222068.635|102.852 +639613.433|222059.137|103.157 +639623.436|222049.643|103.650 +639638.466|222035.415|106.208 +639643.462|222030.672|106.522 +639648.457|222025.932|106.668 +639653.447|222021.190|106.601 +639673.369|222002.271|106.653 +639678.358|221997.528|106.455 +639683.400|221992.737|106.241 +639693.379|221983.245|105.528 +639703.321|221973.790|104.797 +639713.361|221964.238|103.946 +639718.314|221959.529|103.611 +639728.367|221949.961|102.529 +639733.362|221945.230|103.166 +639743.308|221935.791|103.684 +639748.356|221930.993|103.553 +639753.351|221926.253|103.867 +639758.313|221921.535|103.471 +639763.303|221916.808|104.178 +639783.277|221897.855|105.751 +639788.227|221893.152|105.918 +639793.225|221888.406|106.129 +639803.229|221878.903|106.272 +639808.246|221874.130|105.943 +639818.228|221864.635|105.491 +639823.196|221859.914|105.324 +639828.155|221855.201|105.437 +639833.166|221850.440|105.467 +639838.183|221845.670|105.373 +639843.152|221840.952|105.397 +639848.123|221836.225|105.281 +639853.143|221831.451|105.199 +639858.133|221826.706|104.790 +639863.140|221821.935|104.050 +639868.115|221817.205|104.053 +639873.095|221812.474|104.007 +639878.121|221807.695|103.946 +639883.056|221803.004|103.900 +639888.040|221798.268|103.858 +639893.026|221793.531|103.812 +639898.013|221788.788|103.754 +639903.005|221784.043|103.644 +639907.971|221779.318|103.202 +639912.988|221774.545|102.782 +639917.944|221769.833|102.590 +639922.915|221765.102|102.203 +639927.956|221760.299|101.486 +639937.920|221750.813|100.575 +639947.845|221741.368|99.722 +639952.852|221736.597|99.069 +639957.833|221731.858|98.810 +639962.783|221727.149|98.393 +639972.762|221717.648|97.244 +639982.683|221708.202|96.378 +639992.635|221698.726|95.299 +640027.480|221665.515|89.447 +640032.424|221660.812|89.118 +640042.202|221651.518|89.197 +640056.698|221637.769|90.535 +640061.575|221633.136|90.568 +640071.164|221624.038|91.343 +640080.762|221614.927|92.086 +640079.482|221612.958|92.214 +640074.572|221617.603|91.910 +640069.695|221622.212|91.276 +640030.147|221659.641|89.322 +640015.154|221673.842|89.276 +639984.610|221702.893|95.924 +639979.580|221707.666|96.466 +639969.449|221717.288|97.433 +639964.392|221722.089|97.841 +639959.332|221726.890|98.301 +639954.334|221731.638|98.679 +639949.274|221736.445|99.274 +639944.227|221741.236|99.740 +639918.937|221765.249|102.081 +639913.908|221770.025|102.544 +639908.827|221774.853|103.172 +639903.804|221779.620|103.617 +639898.753|221784.411|103.775 +639893.712|221789.188|103.766 +639888.668|221793.973|103.900 +639883.678|221798.707|103.943 +639878.640|221803.480|103.952 +639873.604|221808.256|104.007 +639868.572|221813.026|104.044 +639863.537|221817.799|104.114 +639858.501|221822.576|104.245 +639853.454|221827.367|104.708 +639843.377|221836.932|105.403 +639838.354|221841.696|105.421 +639833.282|221846.502|105.476 +639828.311|221851.218|105.516 +639823.294|221855.973|105.476 +639818.234|221860.764|105.324 +639813.257|221865.485|105.513 +639808.191|221870.292|105.690 +639793.137|221884.569|106.229 +639788.132|221889.312|106.055 +639783.127|221894.051|105.799 +639778.122|221898.794|105.656 +639763.074|221913.034|104.345 +639758.076|221917.762|103.815 +639743.052|221932.005|103.858 +639728.044|221946.215|102.968 +639722.993|221951.003|102.846 +639717.982|221955.764|103.580 +639707.973|221965.262|104.068 +639702.968|221970.017|104.699 +639698.012|221974.714|104.736 +639687.962|221984.254|105.552 +639663.027|222007.919|106.927 +639643.123|222026.780|106.699 +639638.170|222031.471|106.506 +639633.162|222036.210|106.095 +639623.180|222045.644|104.449 +639613.241|222055.041|103.102 +639608.239|222059.787|103.141 +639593.331|222073.926|103.641 +639583.401|222083.360|104.815 +639568.602|222097.430|107.070 +639563.677|222102.114|107.976 +639558.724|222106.811|107.985 +639553.765|222111.511|107.906 +639543.840|222120.914|107.710 +639538.875|222125.621|107.573 +639528.994|222134.984|107.369 +639524.016|222139.696|107.034 +639519.021|222144.421|106.336 +639514.058|222149.127|106.415 +639504.174|222158.481|105.495 +639494.234|222167.890|104.586 +639489.245|222172.615|104.269 +639484.298|222177.299|103.925 +639479.348|222181.984|103.556 +639474.434|222186.648|103.855 +639464.568|222195.999|103.815 +639459.621|222200.687|103.596 +639454.665|222205.381|103.263 +639449.697|222210.081|102.770 +639444.768|222214.756|102.931 +639439.812|222219.450|102.724 +639424.996|222233.477|101.605 +639419.997|222238.205|100.886 +639414.943|222242.972|99.523 +639410.094|222247.571|99.633 +639400.136|222256.990|98.481 +639395.183|222261.677|97.963 +639390.245|222266.353|97.689 +639380.352|222275.713|96.436 +639375.417|222280.377|95.738 +639370.415|222285.104|94.848 +639365.453|222289.804|94.455 +639360.594|222294.413|94.732 +639355.718|222299.040|94.808 +639350.844|222303.661|94.967 +639345.930|222308.324|95.201 +639341.096|222312.908|95.275 +639321.973|222331.099|98.914 +639307.437|222344.891|99.514 +639302.643|222349.436|99.621 +639292.971|222358.613|100.005 +639283.245|222367.818|99.097 +639278.353|222372.445|98.408 +639273.290|222377.212|96.707 +639268.359|222381.866|95.336 +639263.555|222386.423|95.555 +639258.812|222390.925|95.921 +639254.076|222395.430|96.744 +639244.676|222404.367|98.204 +639235.285|222413.288|99.377 +639230.542|222417.790|99.770 +639225.857|222422.237|100.285 +639216.552|222431.086|102.221 +639211.916|222435.493|103.105 +639207.261|222439.916|103.873 +639202.647|222444.302|104.580 +639197.956|222448.746|104.736 +639193.317|222453.150|105.260 +639188.605|222457.622|105.647 +639174.465|222471.005|105.071 +639169.686|222475.529|104.693 +639146.015|222497.913|102.389 +639141.214|222502.449|101.700 +639140.260|222500.583|102.044 +639145.079|222496.011|102.581 +639149.858|222491.479|103.196 +639154.616|222486.965|103.690 +639188.022|222455.244|105.598 +639192.725|222450.764|105.205 +639206.801|222437.361|103.839 +639211.538|222432.844|103.007 +639216.180|222428.416|102.203 +639220.889|222423.920|101.154 +639225.537|222419.482|100.005 +639230.256|222414.986|99.441 +639235.023|222410.448|98.859 +639244.548|222401.377|98.097 +639249.336|222396.814|97.323 +639254.054|222392.312|96.384 +639258.849|222387.743|95.689 +639263.653|222383.171|95.506 +639273.592|222373.762|97.716 +639283.516|222364.359|99.523 +639288.479|222359.653|100.048 +639293.368|222355.010|100.380 +639307.964|222341.130|99.935 +639312.850|222336.485|99.859 +639317.691|222331.873|99.368 +639322.485|222327.298|98.423 +639337.000|222313.457|95.909 +639341.883|222308.809|95.351 +639346.784|222304.142|95.049 +639351.722|222299.451|95.125 +639356.620|222294.788|94.802 +639361.539|222290.112|94.717 +639366.498|222285.394|94.564 +639371.464|222280.685|95.049 +639376.508|222275.906|95.970 +639381.537|222271.138|96.728 +639386.493|222266.438|97.234 +639391.532|222261.659|97.628 +639401.523|222252.183|98.633 +639416.562|222237.930|100.496 +639421.606|222233.151|101.203 +639436.584|222218.938|102.044 +639446.594|222209.441|102.669 +639451.596|222204.695|103.035 +639456.600|222199.949|103.428 +639476.513|222181.036|103.605 +639491.564|222166.753|104.434 +639496.572|222161.992|104.330 +639501.574|222157.256|105.007 +639521.688|222138.175|106.671 +639541.750|222119.137|107.817 +639551.771|222109.628|108.369 +639556.758|222104.885|108.058 +639566.731|222095.403|107.390 +639576.680|222085.926|105.946 +639591.661|222071.656|103.757 +639606.690|222057.367|103.099 +639611.689|222052.618|103.059 +639616.697|222047.869|103.462 +639631.782|222033.586|106.275 +639636.780|222028.843|106.674 +639641.776|222024.101|106.848 +639646.772|222019.361|106.918 +639656.806|222009.830|107.043 +639681.766|221986.104|106.165 +639686.755|221981.355|105.650 +639711.694|221957.633|103.821 +639716.696|221952.875|103.401 +639721.698|221948.114|102.873 +639726.696|221943.374|103.263 +639741.641|221929.189|104.001 +639756.546|221915.034|104.291 +639761.499|221910.334|104.486 +639766.491|221905.603|105.043 +639771.438|221900.912|105.412 +639776.391|221896.218|105.684 +639781.393|221891.470|105.772 +639786.340|221886.779|106.150 +639791.293|221882.079|106.290 +639796.252|221877.373|106.354 +639801.181|221872.685|105.793 +639806.143|221867.970|105.729 +639811.111|221863.251|105.531 +639816.027|221858.582|105.543 +639820.987|221853.876|105.647 +639825.955|221849.157|105.601 +639830.874|221844.485|105.562 +639835.846|221839.766|105.498 +639840.722|221835.133|105.443 +639845.703|221830.403|105.223 +639850.677|221825.657|104.025 +639855.645|221820.945|104.178 +639860.577|221816.260|104.111 +639865.463|221811.621|104.053 +639870.443|221806.894|104.028 +639875.332|221802.251|103.958 +639880.264|221797.567|103.977 +639885.202|221792.879|103.964 +639890.094|221788.234|103.919 +639895.041|221783.534|103.757 +639899.982|221778.843|103.736 +639904.883|221774.188|103.632 +639909.839|221769.479|103.419 +639924.658|221755.376|101.523 +639929.587|221750.691|101.176 +639954.334|221727.149|98.509 +639959.232|221722.491|98.152 +639964.148|221717.816|97.609 +639973.993|221708.461|97.116 +639988.834|221694.340|95.357 +639993.812|221689.597|94.305 +640008.811|221675.284|90.133 +640023.545|221661.281|89.496 +640038.172|221647.391|89.279 +640062.340|221624.480|91.099 +640067.180|221619.892|91.541 +640076.769|221610.800|92.385 +640077.924|221607.155|92.812 +640073.099|221611.715|92.156 +640068.308|221616.247|91.644 +640063.440|221620.852|91.407 +640058.643|221625.391|90.986 +640053.754|221630.024|91.020 +640034.365|221648.364|89.124 +640029.427|221653.045|89.297 +640024.493|221657.724|89.450 +639999.572|221681.392|92.510 +639979.507|221700.463|96.030 +639974.475|221705.243|96.637 +639969.510|221709.955|97.061 +639959.494|221719.452|97.844 +639954.486|221724.204|98.332 +639944.464|221733.714|99.450 +639939.438|221738.481|99.655 +639934.418|221743.248|100.484 +639929.377|221748.030|100.962 +639924.338|221752.810|101.456 +639914.237|221762.405|103.023 +639909.214|221767.169|103.440 +639904.212|221771.909|103.526 +639899.214|221776.645|103.608 +639894.163|221781.431|103.757 +639889.164|221786.167|103.897 +639884.126|221790.940|103.922 +639879.136|221795.662|103.919 +639874.101|221800.435|103.983 +639869.072|221805.196|103.919 +639864.040|221809.963|103.928 +639859.004|221814.733|104.025 +639853.975|221819.497|104.086 +639848.946|221824.261|104.111 +639843.895|221829.056|104.739 +639838.799|221833.893|105.370 +639833.776|221838.651|105.412 +639828.753|221843.412|105.525 +639823.684|221848.212|105.598 +639818.664|221852.967|105.668 +639813.601|221857.762|105.616 +639808.590|221862.504|105.519 +639803.570|221867.262|105.696 +639798.511|221872.057|105.714 +639793.436|221876.873|106.257 +639788.425|221881.615|106.241 +639773.322|221895.908|105.501 +639768.271|221900.687|105.278 +639763.230|221905.454|104.714 +639758.222|221910.194|104.626 +639748.121|221919.758|104.373 +639738.017|221929.320|104.031 +639722.917|221943.606|103.081 +639717.866|221948.388|103.044 +639712.855|221953.146|103.821 +639707.805|221957.934|104.035 +639682.656|221981.785|105.879 +639672.573|221991.347|106.427 +639657.534|222005.596|106.964 +639652.535|222010.330|106.897 +639647.494|222015.109|107.089 +639627.487|222034.040|106.183 +639612.430|222048.250|103.230 +639607.468|222052.944|103.062 +639602.463|222057.684|103.035 +639592.517|222067.114|103.626 +639587.531|222071.848|104.361 +639562.808|222095.320|107.729 +639557.864|222100.008|108.085 +639552.914|222104.699|108.250 +639547.961|222109.393|108.335 +639528.177|222128.111|107.256 +639523.202|222132.817|106.979 +639518.316|222137.438|106.555 +639513.336|222142.150|106.229 +639503.442|222151.498|105.114 +639488.626|222165.516|104.230 +639483.719|222170.155|103.739 +639478.769|222174.837|103.349 +639473.858|222179.491|103.678 +639449.328|222202.708|102.824 +639444.421|222207.350|102.593 +639434.594|222216.646|102.005 +639419.884|222230.563|101.087 +639414.937|222235.239|100.468 +639395.223|222253.868|98.155 +639390.312|222258.507|97.615 +639380.464|222267.822|96.863 +639375.533|222272.483|96.155 +639365.700|222281.770|94.695 +639360.765|222286.442|94.622 +639355.977|222290.987|95.144 +639322.272|222322.964|98.576 +639317.480|222327.508|99.139 +639303.069|222341.172|100.014 +639293.532|222350.216|100.724 +639288.661|222354.828|100.599 +639283.794|222359.427|100.084 +639269.115|222373.295|98.045 +639264.143|222377.971|96.332 +639259.245|222382.601|95.720 +639254.484|222387.115|95.909 +639249.744|222391.617|96.710 +639245.038|222396.085|97.396 +639235.577|222405.059|98.387 +639230.847|222409.548|98.877 +639226.199|222413.965|99.685 +639221.493|222418.436|100.414 +639212.288|222427.196|102.745 +639207.633|222431.619|103.504 +639202.945|222436.069|104.022 +639198.300|222440.486|104.851 +639184.237|222453.827|105.757 +639179.546|222458.274|105.955 +639170.097|222467.217|105.555 +639165.345|222471.716|105.376 +639146.362|222489.668|103.355 +639141.562|222494.204|102.632 +639132.076|222503.174|101.733 +639132.497|222500.412|101.938 +639137.294|222495.871|102.617 +639142.034|222491.378|102.934 +639146.847|222486.824|103.779 +639151.654|222482.271|104.278 +639165.967|222468.704|105.552 +639170.743|222464.178|105.946 +639180.216|222455.183|105.909 +639184.938|222450.700|105.616 +639203.723|222432.835|103.873 +639208.447|222428.342|103.300 +639217.768|222419.467|101.563 +639227.119|222410.551|99.313 +639231.865|222406.031|98.569 +639236.592|222401.535|98.067 +639246.142|222392.455|97.088 +639250.884|222387.941|96.335 +639255.661|222383.400|95.875 +639265.567|222374.027|97.701 +639270.581|222369.290|99.005 +639275.445|222364.679|99.450 +639280.423|222359.966|100.087 +639285.263|222355.376|100.377 +639314.448|222327.655|99.353 +639319.282|222323.058|98.768 +639328.959|222313.844|97.262 +639338.649|222304.624|95.875 +639343.541|222299.973|95.424 +639353.371|222290.637|95.104 +639358.281|222285.973|94.894 +639363.188|222281.310|94.702 +639368.166|222276.597|95.299 +639373.189|222271.839|95.945 +639378.166|222267.127|96.661 +639388.161|222257.648|97.545 +639393.135|222252.927|97.747 +639408.085|222238.744|98.886 +639418.174|222229.192|100.865 +639433.116|222215.015|101.874 +639443.122|222205.518|102.428 +639448.121|222200.772|102.700 +639453.083|222196.069|103.145 +639458.121|222191.284|103.376 +639473.102|222177.056|103.541 +639478.010|222172.386|103.245 +639488.099|222162.818|104.193 +639498.105|222153.324|104.650 +639503.140|222148.545|105.171 +639508.173|222143.774|105.568 +639518.234|222134.231|106.534 +639548.321|222105.677|108.317 +639553.366|222100.886|108.277 +639558.358|222096.140|108.158 +639563.329|222091.404|107.336 +639573.391|222081.830|106.500 +639593.352|222062.819|103.544 +639603.389|222053.276|103.141 +639613.490|222043.687|103.635 +639663.770|221995.974|106.570 +639668.763|221991.228|106.503 +639683.787|221976.945|105.863 +639708.914|221953.042|104.001 +639713.919|221948.278|103.315 +639718.918|221943.530|103.346 +639733.957|221929.253|104.077 +639738.953|221924.513|104.440 +639748.956|221915.009|104.388 +639753.906|221910.315|104.736 +639758.905|221905.567|104.928 +639763.903|221900.818|105.129 +639773.849|221891.372|105.626 +639783.795|221881.926|106.232 +639788.800|221877.171|106.281 +639793.771|221872.438|105.787 +639798.733|221867.720|105.741 +639803.695|221863.001|105.647 +639808.654|221858.289|105.738 +639813.616|221853.571|105.775 +639818.582|221848.849|105.732 +639823.501|221844.171|105.659 +639828.475|221839.440|105.452 +639833.444|221834.719|105.482 +639838.394|221830.001|104.748 +639843.383|221825.249|104.284 +639848.318|221820.558|104.117 +639853.244|221815.873|104.089 +639858.178|221811.182|103.995 +639863.107|221806.494|103.980 +639868.039|221801.806|103.974 +639872.928|221797.158|103.925 +639877.859|221792.470|103.934 +639882.794|221787.776|103.940 +639887.686|221783.131|103.943 +639892.633|221778.422|103.745 +639897.488|221773.804|103.608 +639902.429|221769.107|103.583 +639907.330|221764.447|103.522 +639912.244|221759.771|103.245 +639922.125|221750.344|101.249 +639927.042|221745.668|101.087 +639931.937|221741.005|100.535 +639946.711|221726.926|98.612 +639951.603|221722.272|98.320 +639956.507|221717.599|97.871 +639961.445|221712.893|97.033 +639966.273|221708.303|97.061 +639971.180|221703.633|96.738 +639976.097|221698.955|96.311 +639990.849|221684.888|94.007 +640000.843|221675.326|90.440 +640010.630|221666.009|89.587 +640015.504|221661.373|89.441 +640025.179|221652.177|89.532 +640030.025|221647.565|89.261 +640044.408|221633.919|90.739 +640058.826|221620.221|91.462 +640063.571|221615.720|91.879 +640068.384|221611.148|92.120 +640073.127|221606.646|92.559 +640077.930|221602.086|92.931 +640080.634|221596.636|93.555 +640075.852|221601.162|92.949 +640071.051|221605.707|92.516 +640066.241|221610.261|92.181 +640061.419|221614.830|91.980 +640056.619|221619.377|91.623 +640027.657|221646.803|89.267 +640022.743|221651.470|89.709 +640013.005|221660.699|89.179 +639973.292|221698.485|96.411 +639968.318|221703.213|96.924 +639963.414|221707.864|97.155 +639958.461|221712.564|97.475 +639948.591|221721.936|98.393 +639943.629|221726.652|98.950 +639938.621|221731.407|99.511 +639933.687|221736.091|99.776 +639928.724|221740.807|100.511 +639913.676|221755.120|103.303 +639908.711|221759.829|103.526 +639903.758|221764.529|103.617 +639898.808|221769.220|103.629 +639893.809|221773.963|103.739 +639888.811|221778.706|103.888 +639883.815|221783.442|103.983 +639878.874|221788.124|103.943 +639873.885|221792.858|104.038 +639868.898|221797.582|104.031 +639863.915|221802.309|104.059 +639858.885|221807.080|104.059 +639853.902|221811.804|104.099 +639848.918|221816.525|104.144 +639843.892|221821.292|104.196 +639838.906|221826.023|104.385 +639833.864|221830.811|104.912 +639823.843|221840.324|105.644 +639818.774|221845.131|105.769 +639813.757|221849.889|105.805 +639808.785|221854.601|105.879 +639803.726|221859.399|105.848 +639798.718|221864.147|105.763 +639793.701|221868.902|105.857 +639788.641|221873.703|105.949 +639783.621|221878.467|106.299 +639778.574|221883.249|106.068 +639768.524|221892.765|105.415 +639763.529|221897.489|104.848 +639753.373|221907.121|104.909 +639723.072|221935.827|103.931 +639718.074|221940.564|103.644 +639712.977|221945.389|103.309 +639707.875|221950.235|103.964 +639702.870|221954.990|104.541 +639697.774|221959.833|105.098 +639682.631|221974.193|105.589 +639677.538|221979.024|105.754 +639662.414|221993.383|106.741 +639657.370|221998.168|107.003 +639652.328|222002.950|107.284 +639611.954|222041.166|103.833 +639601.841|222050.743|103.202 +639581.785|222069.784|105.150 +639571.772|222079.294|106.513 +639566.798|222084.018|107.467 +639556.773|222093.531|108.171 +639546.773|222103.004|108.335 +639541.762|222107.750|108.177 +639536.797|222112.447|108.000 +639516.783|222131.378|106.183 +639501.833|222145.521|105.135 +639496.834|222150.248|104.516 +639491.820|222154.985|103.669 +639486.910|222159.639|103.992 +639481.945|222164.330|103.263 +639476.961|222169.049|103.138 +639472.042|222173.712|103.315 +639467.110|222178.385|103.309 +639452.348|222192.366|103.126 +639447.429|222197.017|102.642 +639442.510|222201.668|102.203 +639437.593|222206.335|102.544 +639432.692|222210.962|101.770 +639427.727|222215.659|101.441 +639422.880|222220.252|101.471 +639412.999|222229.594|100.377 +639408.082|222234.236|99.569 +639393.296|222248.220|98.170 +639388.432|222252.817|97.579 +639368.772|222271.404|95.509 +639363.844|222276.064|94.936 +639359.003|222280.648|94.839 +639354.145|222285.254|95.092 +639349.341|222289.811|95.454 +639339.679|222298.967|95.631 +639334.887|222303.514|96.152 +639330.123|222308.041|96.966 +639325.375|222312.549|97.454 +639320.623|222317.063|98.426 +639301.603|222335.119|100.676 +639292.048|222344.178|101.194 +639287.268|222348.704|100.983 +639282.367|222353.340|100.587 +639263.003|222371.643|98.466 +639248.416|222385.426|96.317 +639243.722|222389.886|97.103 +639234.343|222398.783|97.954 +639229.637|222403.254|98.652 +639224.973|222407.683|99.313 +639192.628|222438.401|105.379 +639187.949|222442.836|105.598 +639178.580|222451.711|106.043 +639173.931|222456.116|106.193 +639159.865|222469.426|105.897 +639140.867|222487.376|103.806 +639136.130|222491.848|103.190 +639131.354|222496.362|102.681 +639126.657|222500.797|102.069 +639120.341|222503.625|101.907 +639125.069|222499.141|102.075 +639129.824|222494.640|102.776 +639134.585|222490.125|103.245 +639139.391|222485.578|104.022 +639148.956|222476.516|105.034 +639158.478|222467.491|105.869 +639172.673|222454.019|106.156 +639177.455|222449.480|106.308 +639182.195|222444.981|106.165 +639186.867|222440.534|105.549 +639191.613|222436.026|105.498 +639224.345|222404.848|99.389 +639229.036|222400.380|98.615 +639233.773|222395.869|97.780 +639238.494|222391.376|97.268 +639243.249|222386.853|96.625 +639248.038|222382.302|96.256 +639262.851|222368.281|98.822 +639277.567|222354.340|100.444 +639282.483|222349.682|101.011 +639287.406|222345.013|101.218 +639301.945|222331.202|100.706 +639350.420|222285.089|95.256 +639355.327|222280.426|95.061 +639360.241|222275.759|94.927 +639365.200|222271.056|95.375 +639370.205|222266.313|95.814 +639395.101|222242.728|98.100 +639400.100|222237.994|98.682 +639405.074|222233.288|99.630 +639410.054|222228.570|100.063 +639429.970|222209.694|101.389 +639435.024|222204.914|102.389 +639439.989|222200.199|102.120 +639444.945|222195.499|102.447 +639449.953|222190.756|102.846 +639459.904|222181.311|102.806 +639464.897|222176.577|103.087 +639469.875|222171.856|103.135 +639474.843|222167.140|103.017 +639479.814|222162.422|103.004 +639484.862|222157.640|103.593 +639489.842|222152.918|103.809 +639494.835|222148.191|104.260 +639509.895|222133.923|105.802 +639514.918|222129.162|106.080 +639519.944|222124.401|106.522 +639524.946|222119.671|107.564 +639530.003|222114.876|107.698 +639534.965|222110.170|107.921 +639539.982|222105.415|108.268 +639549.973|222095.930|108.143 +639560.010|222086.405|107.878 +639564.991|222081.668|107.363 +639599.966|222048.408|103.428 +639605.008|222043.620|103.230 +639610.022|222038.874|103.897 +639630.200|222019.779|106.955 +639635.244|222014.996|107.259 +639640.240|222010.260|107.415 +639650.320|222000.692|107.275 +639655.309|221995.952|107.076 +639660.351|221991.167|106.900 +639675.417|221976.853|105.967 +639690.498|221962.525|104.967 +639695.543|221957.736|104.897 +639700.542|221952.988|104.550 +639705.543|221948.233|103.958 +639710.594|221943.429|103.401 +639715.590|221938.699|103.891 +639725.681|221929.128|104.217 +639730.680|221924.385|104.358 +639745.725|221910.114|104.739 +639750.724|221905.375|104.928 +639765.769|221891.101|105.437 +639770.765|221886.364|105.830 +639775.760|221881.628|106.186 +639780.765|221876.882|106.269 +639785.779|221872.115|105.915 +639790.787|221867.360|105.857 +639795.795|221862.608|105.885 +639800.803|221857.856|105.961 +639805.765|221853.144|105.973 +639810.779|221848.383|105.882 +639815.747|221843.668|105.827 +639820.764|221838.904|105.693 +639825.741|221834.176|105.449 +639830.731|221829.427|104.888 +639835.724|221824.682|104.403 +639840.701|221819.954|104.236 +639845.678|221815.227|104.169 +639850.656|221810.502|104.150 +639855.588|221805.821|104.086 +639860.568|221801.093|104.086 +639865.500|221796.411|104.059 +639870.434|221791.727|104.035 +639875.372|221787.039|103.995 +639880.310|221782.351|103.974 +639885.248|221777.666|103.986 +639890.198|221772.963|103.797 +639895.099|221768.312|103.718 +639900.046|221763.612|103.608 +639904.947|221758.961|103.586 +639909.854|221754.300|103.446 +639914.761|221749.640|103.330 +639919.711|221744.931|102.611 +639929.691|221735.415|100.078 +639944.437|221721.391|98.649 +639954.285|221712.030|97.899 +639959.208|221707.349|97.311 +639964.066|221702.731|96.951 +639968.958|221698.086|96.814 +639973.841|221693.438|96.204 +639983.686|221684.071|94.781 +639988.596|221679.395|93.955 +639998.597|221669.840|90.364 +640018.049|221651.360|89.212 +640027.678|221642.222|89.352 +640032.494|221637.650|89.425 +640041.973|221628.677|90.791 +640046.710|221624.187|91.227 +640051.462|221619.682|91.559 +640056.253|221615.140|91.980 +640061.014|221610.626|92.242 +640065.769|221606.121|92.586 +640070.487|221601.644|92.800 +640075.303|221597.075|93.043 +640079.662|221589.479|93.906 +640074.876|221594.003|93.312 +640070.015|221598.602|92.967 +640065.144|221603.214|92.739 +640060.289|221607.807|92.382 +640050.572|221617.003|91.757 +640031.192|221635.327|89.672 +640021.393|221644.612|89.627 +640016.534|221649.202|88.910 +640011.572|221653.911|89.389 +639996.762|221667.956|90.172 +639991.782|221672.690|91.035 +639981.665|221682.343|94.875 +639971.717|221691.789|96.259 +639966.797|221696.458|96.658 +639961.835|221701.164|97.006 +639956.879|221705.870|97.335 +639951.911|221710.586|97.838 +639946.951|221715.292|98.289 +639937.021|221724.725|99.478 +639927.149|221734.092|100.029 +639922.119|221738.886|101.782 +639917.072|221743.696|103.224 +639912.146|221748.369|103.492 +639907.190|221753.066|103.550 +639902.237|221757.760|103.550 +639897.330|221762.414|103.672 +639892.374|221767.111|103.772 +639887.424|221771.805|103.855 +639882.477|221776.496|103.916 +639877.536|221781.178|103.885 +639872.589|221785.865|103.958 +639867.648|221790.547|103.974 +639862.662|221795.278|104.022 +639857.724|221799.956|104.010 +639852.738|221804.684|104.086 +639847.800|221809.362|104.138 +639842.822|221814.081|104.138 +639837.842|221818.802|104.178 +639832.904|221823.484|104.339 +639827.912|221828.224|104.748 +639822.916|221832.969|105.354 +639812.909|221842.458|105.757 +639807.981|221847.130|105.918 +639802.964|221851.888|106.013 +639797.950|221856.640|106.007 +639793.033|221861.297|105.906 +639788.022|221866.043|105.787 +639783.005|221870.801|105.964 +639778.040|221875.507|106.022 +639773.029|221880.262|106.132 +639763.077|221889.680|105.330 +639748.060|221903.902|104.894 +639738.050|221913.391|104.824 +639733.003|221918.164|104.364 +639727.998|221922.910|104.355 +639722.993|221927.653|104.358 +639712.938|221937.174|103.995 +639707.985|221941.862|103.529 +639702.931|221946.660|104.056 +639697.878|221951.461|104.586 +639692.922|221956.161|104.848 +639687.871|221960.949|105.059 +639677.825|221970.480|105.415 +639672.546|221975.488|105.720 +639657.741|221989.536|106.881 +639647.704|221999.061|107.436 +639632.614|222013.359|107.238 +639627.563|222018.139|106.979 +639607.413|222037.186|103.885 +639602.396|222041.928|103.361 +639592.298|222051.505|103.544 +639577.295|222065.764|105.595 +639572.318|222070.494|106.452 +639562.308|222080.007|107.723 +639552.329|222089.480|108.439 +639547.321|222094.226|108.305 +639542.329|222098.963|108.524 +639537.263|222103.760|108.131 +639532.237|222108.515|107.604 +639527.226|222113.264|107.512 +639512.175|222127.504|105.882 +639502.159|222136.990|105.065 +639492.122|222146.487|104.028 +639487.129|222151.212|103.650 +639482.103|222155.976|103.489 +639472.124|222165.427|102.983 +639467.101|222170.192|102.983 +639462.166|222174.867|102.953 +639457.186|222179.592|102.925 +639447.252|222189.004|102.666 +639437.288|222198.437|102.026 +639427.361|222207.840|101.349 +639422.402|222212.537|101.145 +639417.424|222217.250|100.682 +639412.438|222221.968|100.173 +639407.509|222226.634|99.822 +639387.642|222245.428|97.423 +639382.711|222250.098|97.213 +639367.897|222264.125|95.936 +639362.981|222268.776|95.467 +639358.022|222273.470|95.095 +639353.206|222278.039|95.302 +639348.335|222282.660|95.412 +639333.824|222296.437|96.466 +639328.977|222301.036|96.936 +639324.171|222305.602|97.301 +639319.382|222310.150|97.878 +639314.615|222314.682|98.664 +639300.308|222328.279|100.517 +639290.755|222337.353|101.493 +639276.250|222351.091|100.749 +639261.708|222364.855|99.475 +639256.822|222369.473|98.478 +639247.026|222378.724|96.460 +639242.268|222383.241|96.674 +639237.531|222387.737|97.109 +639232.849|222392.184|97.588 +639228.223|222396.588|98.542 +639186.514|222436.246|105.549 +639181.881|222440.647|106.141 +639177.254|222445.039|106.403 +639172.557|222449.493|106.543 +639167.860|222453.943|106.336 +639158.515|222462.800|106.345 +639153.812|222467.253|105.808 +639149.084|222471.728|105.488 +639144.366|222476.196|105.263 +639139.657|222480.652|104.781 +639125.471|222494.067|102.782 +639120.741|222498.541|102.258 +639116.120|222502.921|102.172 +639112.904|222503.137|102.450 +639117.534|222498.736|102.300 +639122.292|222494.222|102.684 +639127.074|222489.687|103.276 +639141.406|222476.102|105.080 +639150.953|222467.043|105.699 +639155.707|222462.535|106.272 +639160.535|222457.954|106.702 +639165.202|222453.513|106.345 +639169.990|222448.965|106.537 +639184.118|222435.533|105.830 +639207.648|222413.127|103.126 +639226.321|222395.305|98.472 +639231.094|222390.764|97.966 +639235.827|222386.252|97.146 +639240.619|222381.693|96.817 +639245.425|222377.124|96.631 +639250.421|222372.396|97.682 +639255.353|222367.727|98.637 +639270.169|222353.685|100.676 +639299.418|222325.896|100.688 +639318.693|222307.535|97.878 +639323.567|222302.893|97.250 +639328.389|222298.299|96.613 +639333.309|222293.624|96.488 +639347.960|222279.688|95.589 +639352.855|222275.034|95.238 +639357.815|222270.319|95.119 +639362.783|222265.606|95.671 +639367.742|222260.903|96.152 +639382.686|222246.718|96.905 +639402.672|222227.777|99.828 +639412.578|222218.368|100.042 +639417.635|222213.580|100.950 +639427.565|222204.146|101.063 +639437.489|222194.728|101.852 +639442.491|222189.985|102.157 +639447.481|222185.246|102.376 +639452.486|222180.500|102.788 +639457.451|222175.775|102.672 +639467.403|222166.321|102.773 +639472.392|222161.587|103.087 +639482.326|222152.147|103.010 +639487.312|222147.414|103.391 +639497.343|222137.904|104.428 +639502.327|222133.177|104.888 +639507.356|222128.403|105.354 +639512.382|222123.636|105.754 +639522.407|222114.136|107.275 +639527.412|222109.381|107.393 +639547.352|222090.456|108.436 +639552.338|222085.713|108.226 +639557.328|222080.967|108.052 +639562.308|222076.228|107.610 +639572.303|222066.709|106.202 +639587.223|222052.487|103.541 +639592.215|222047.741|103.388 +639627.389|222014.384|107.272 +639632.385|222009.644|107.427 +639647.403|221995.373|107.403 +639652.389|221990.627|107.144 +639657.427|221985.839|106.945 +639662.417|221981.093|106.714 +639672.488|221971.510|105.958 +639692.510|221952.469|104.861 +639697.551|221947.675|104.720 +639702.599|221942.868|103.971 +639707.595|221938.122|104.031 +639712.587|221933.386|104.510 +639722.630|221923.843|104.467 +639727.672|221919.054|104.592 +639737.712|221909.523|105.001 +639742.711|221904.774|105.022 +639747.758|221899.977|104.955 +639757.759|221890.476|104.995 +639762.797|221885.706|105.650 +639767.790|221880.972|106.058 +639772.788|221876.224|106.147 +639777.796|221871.466|106.019 +639782.807|221866.705|105.790 +639787.806|221861.959|106.019 +639792.811|221857.210|106.098 +639797.819|221852.452|106.077 +639802.827|221847.697|106.083 +639807.840|221842.933|105.967 +639817.832|221833.433|105.470 +639822.861|221828.653|105.095 +639827.854|221823.898|104.449 +639832.877|221819.128|104.330 +639837.805|221814.443|104.208 +639842.826|221809.673|104.184 +639847.803|221804.946|104.132 +639852.780|221800.218|104.071 +639857.758|221795.494|104.092 +639862.735|221790.764|104.065 +639867.670|221786.076|104.031 +639872.659|221781.336|103.900 +639877.591|221776.651|103.928 +639882.581|221771.915|103.882 +639887.521|221767.221|103.836 +639892.462|221762.527|103.785 +639897.409|221757.827|103.715 +639902.313|221753.166|103.571 +639907.257|221748.472|103.620 +639912.162|221743.812|103.532 +639927.164|221729.502|99.831 +639936.988|221720.160|99.139 +639941.944|221715.444|98.566 +639956.714|221701.390|97.155 +639961.603|221696.745|97.033 +639966.507|221692.081|96.725 +639971.424|221687.403|96.268 +639981.315|221677.978|94.247 +640005.961|221654.490|89.636 +640010.810|221649.888|89.779 +640020.500|221640.683|89.694 +640025.300|221636.123|89.880 +640030.107|221631.563|90.066 +640034.886|221627.031|90.535 +640049.136|221613.522|91.949 +640058.646|221604.500|92.553 +640063.391|221599.998|92.949 +640068.107|221595.533|93.680 +640072.895|221590.985|93.702 +640077.589|221586.538|94.193 +640075.343|221586.026|94.010 +640070.441|221590.665|93.589 +640065.534|221595.310|93.239 +640060.615|221599.971|93.034 +640055.732|221604.594|92.516 +640045.881|221613.921|91.827 +640031.122|221627.890|90.511 +640026.200|221632.545|89.938 +640021.237|221637.251|89.840 +639996.369|221660.836|90.367 +639986.323|221670.376|91.398 +639981.080|221675.396|94.409 +639971.019|221684.964|96.046 +639966.038|221689.695|96.567 +639951.018|221703.944|97.582 +639945.994|221708.714|98.234 +639941.002|221713.448|98.493 +639935.988|221718.203|99.060 +639930.940|221722.991|99.508 +639915.795|221737.405|103.471 +639910.784|221742.151|103.559 +639905.828|221746.848|103.605 +639900.826|221751.581|103.590 +639895.824|221756.324|103.684 +639890.868|221761.018|103.779 +639885.918|221765.706|103.806 +639880.923|221770.439|103.891 +639875.930|221775.170|103.907 +639870.937|221779.897|103.943 +639865.945|221784.625|103.989 +639861.001|221789.310|104.059 +639856.017|221794.031|104.053 +639851.076|221798.710|104.105 +639846.093|221803.431|104.135 +639841.109|221808.152|104.214 +639836.129|221812.868|104.199 +639831.191|221817.546|104.358 +639826.211|221822.265|104.425 +639821.221|221826.998|104.800 +639806.310|221841.141|105.943 +639801.290|221845.896|106.031 +639796.368|221850.559|106.071 +639791.351|221855.311|106.150 +639786.386|221860.014|106.110 +639781.472|221864.662|105.927 +639776.461|221869.408|105.918 +639771.493|221874.117|106.055 +639766.528|221878.823|106.229 +639756.576|221888.233|105.318 +639751.620|221892.924|105.068 +639746.615|221897.660|104.833 +639741.702|221902.314|104.867 +639736.685|221907.072|105.421 +639726.776|221916.445|104.711 +639706.854|221935.306|104.257 +639701.898|221939.994|103.925 +639696.890|221944.746|104.525 +639691.934|221949.449|104.870 +639686.978|221954.137|104.720 +639676.974|221963.625|105.403 +639657.077|221982.495|106.936 +639652.078|221987.232|107.037 +639647.128|221991.923|107.278 +639642.133|221996.659|107.521 +639637.134|222001.393|107.476 +639632.181|222006.084|107.451 +639627.182|222010.817|107.378 +639622.177|222015.551|107.025 +639612.213|222024.975|106.333 +639602.216|222034.409|104.345 +639592.194|222043.891|103.629 +639587.186|222048.634|103.526 +639582.187|222053.371|103.858 +639577.259|222058.055|105.016 +639567.344|222067.471|106.650 +639552.424|222081.620|108.119 +639547.480|222086.307|108.472 +639542.481|222091.041|108.668 +639537.510|222095.744|108.265 +639532.535|222100.444|107.930 +639527.509|222105.196|107.451 +639512.522|222119.366|106.321 +639507.533|222124.081|105.763 +639502.540|222128.800|105.257 +639482.478|222147.749|102.797 +639477.513|222152.455|103.029 +639467.546|222161.889|102.803 +639462.559|222166.607|102.703 +639447.588|222180.774|102.373 +639437.614|222190.205|101.636 +639432.640|222194.917|101.874 +639427.724|222199.568|101.553 +639412.746|222213.726|100.340 +639407.762|222218.435|99.904 +639382.869|222241.963|97.326 +639368.062|222255.959|96.201 +639363.106|222260.647|95.814 +639358.132|222265.347|95.262 +639353.197|222270.017|95.217 +639348.293|222274.665|95.534 +639343.416|222279.283|95.622 +639333.668|222288.515|95.942 +639328.791|222293.145|96.588 +639323.921|222297.760|96.826 +639319.087|222302.344|97.445 +639314.274|222306.916|98.268 +639285.449|222334.266|102.005 +639270.858|222348.064|100.996 +639266.006|222352.651|100.670 +639261.114|222357.272|100.033 +639256.176|222361.929|98.996 +639251.339|222366.498|98.499 +639246.413|222371.150|97.658 +639241.548|222375.743|96.981 +639236.714|222380.321|97.012 +639232.020|222384.771|97.411 +639227.308|222389.243|98.085 +639222.608|222393.705|98.859 +639217.975|222398.106|99.780 +639213.348|222402.504|100.761 +639171.508|222442.235|106.695 +639166.772|222446.719|106.561 +639162.035|222451.202|106.439 +639147.956|222464.531|106.141 +639143.220|222469.015|105.769 +639138.437|222473.532|105.120 +639129.031|222482.429|104.327 +639124.246|222486.943|103.431 +639119.528|222491.406|102.986 +639114.821|222495.859|102.660 +639110.195|222500.239|102.578 +639105.848|222501.781|102.977 +639110.429|222497.422|102.480 +639115.126|222492.966|102.757 +639138.901|222470.423|105.242 +639143.683|222465.894|105.949 +639153.251|222456.817|106.805 +639157.923|222452.373|106.476 +639162.632|222447.898|106.424 +639181.500|222429.967|105.927 +639204.844|222407.735|102.511 +639209.456|222403.327|101.081 +639214.162|222398.847|100.410 +639218.810|222394.412|99.283 +639223.504|222389.934|98.112 +639228.244|222385.423|97.734 +639232.996|222380.897|97.070 +639237.815|222376.319|96.981 +639242.670|222371.710|97.210 +639247.586|222367.053|98.015 +639262.409|222353.017|100.417 +639267.255|222348.418|100.743 +639272.269|222343.672|101.739 +639277.149|222339.039|102.005 +639282.023|222334.415|102.224 +639291.700|222325.213|101.602 +639296.528|222320.614|101.005 +639320.537|222297.741|97.106 +639330.261|222288.488|96.137 +639335.156|222283.830|95.771 +639340.081|222279.155|95.729 +639344.955|222274.522|95.683 +639349.920|222269.806|95.601 +639354.767|222265.195|95.296 +639359.768|222260.449|95.692 +639364.721|222255.755|96.076 +639369.662|222251.064|96.387 +639374.618|222246.358|96.293 +639379.556|222241.673|96.634 +639384.552|222236.937|97.103 +639389.581|222232.179|98.048 +639409.582|222213.220|100.136 +639424.520|222199.050|101.108 +639434.481|222189.601|101.694 +639439.486|222184.852|102.069 +639444.472|222180.119|102.191 +639464.416|222161.191|102.809 +639469.390|222156.466|102.873 +639474.361|222151.748|102.876 +639494.356|222132.783|104.394 +639504.436|222123.234|105.677 +639509.410|222118.516|105.976 +639514.442|222113.745|106.619 +639529.448|222099.514|107.665 +639544.429|222085.301|108.561 +639559.385|222071.080|107.558 +639584.312|222047.345|103.672 +639609.394|222023.567|106.241 +639614.399|222018.824|106.817 +639619.443|222014.039|107.000 +639624.439|222009.296|107.262 +639634.473|221999.771|107.515 +639644.455|221990.289|107.229 +639649.494|221985.504|107.125 +639654.437|221980.804|107.028 +639689.480|221947.486|104.790 +639694.525|221942.694|104.629 +639699.478|221937.982|104.126 +639704.519|221933.200|104.544 +639719.509|221918.969|104.891 +639729.510|221909.474|104.842 +639734.542|221904.707|105.714 +639744.500|221895.243|105.318 +639749.547|221890.452|105.397 +639754.494|221885.758|105.684 +639759.484|221881.027|106.278 +639764.486|221876.272|106.162 +639769.445|221871.563|106.119 +639774.498|221866.763|105.991 +639779.451|221862.059|106.150 +639784.453|221857.311|106.263 +639789.458|221852.553|106.235 +639794.420|221847.837|106.156 +639799.379|221843.128|106.193 +639809.355|221833.649|106.043 +639819.386|221824.100|104.662 +639824.312|221819.415|104.486 +639829.335|221814.642|104.342 +639834.309|221809.914|104.263 +639839.238|221805.232|104.196 +639844.212|221800.508|104.193 +639849.190|221795.781|104.156 +639854.121|221791.093|104.092 +639859.102|221786.359|104.025 +639864.034|221781.674|104.022 +639869.017|221776.941|103.971 +639874.001|221772.207|103.961 +639878.941|221767.513|103.910 +639883.885|221762.816|103.800 +639888.826|221758.119|103.760 +639893.770|221753.425|103.739 +639898.766|221748.677|103.663 +639903.667|221744.019|103.590 +639908.659|221739.277|103.602 +639913.564|221734.619|103.580 +639923.592|221725.049|100.938 +639928.639|221720.230|99.581 +639933.580|221715.530|99.200 +639943.535|221706.056|98.161 +639953.416|221696.650|97.024 +639958.354|221691.956|96.863 +639963.304|221687.250|96.582 +639973.152|221677.878|95.582 +640012.798|221640.119|89.764 +640022.512|221630.896|89.986 +640032.186|221621.718|90.715 +640041.763|221612.641|92.019 +640046.530|221608.115|92.150 +640056.143|221599.001|93.159 +640060.965|221594.423|93.287 +640065.729|221589.897|93.510 +640070.542|221585.331|93.772 +640076.480|221576.544|94.702 +640071.648|221581.109|94.086 +640066.884|221585.614|93.741 +640061.962|221590.272|93.537 +640057.137|221594.838|93.373 +640052.278|221599.434|93.062 +640042.564|221608.612|91.958 +640032.817|221617.829|91.276 +640027.928|221622.453|90.861 +640023.048|221627.067|90.379 +640018.162|221631.685|89.950 +640013.264|221636.318|89.685 +639998.323|221650.476|90.206 +639973.155|221674.385|94.482 +639963.060|221683.977|96.549 +639953.011|221693.508|97.045 +639948.006|221698.253|97.353 +639942.980|221703.030|98.042 +639937.939|221707.815|98.338 +639932.918|221712.585|99.021 +639912.567|221731.952|103.647 +639907.519|221736.738|103.599 +639902.518|221741.477|103.593 +639897.516|221746.223|103.657 +639892.465|221751.008|103.727 +639887.467|221755.748|103.754 +639882.422|221760.530|103.800 +639877.381|221765.310|103.839 +639872.336|221770.092|103.937 +639867.301|221774.868|103.937 +639862.260|221779.647|104.028 +639857.224|221784.418|104.044 +639852.189|221789.191|104.089 +639847.157|221793.964|104.138 +639842.128|221798.731|104.163 +639837.050|221803.547|104.220 +639832.020|221808.314|104.284 +639826.994|221813.078|104.288 +639821.916|221817.894|104.452 +639816.890|221822.661|104.586 +639806.752|221832.293|105.973 +639801.726|221837.063|106.253 +639796.660|221841.863|106.278 +639791.601|221846.661|106.247 +639786.587|221851.413|106.235 +639781.527|221856.207|106.238 +639771.463|221865.748|106.104 +639766.406|221870.536|106.040 +639761.346|221875.337|106.232 +639751.248|221884.898|105.656 +639746.195|221889.687|105.555 +639741.193|221894.429|105.415 +639736.133|221899.230|105.732 +639726.038|221908.785|105.013 +639720.985|221913.580|105.202 +639715.934|221918.365|105.181 +639705.879|221927.899|105.232 +639700.834|221932.666|104.507 +639695.784|221937.452|104.342 +639690.730|221942.252|104.955 +639665.584|221966.103|105.927 +639655.547|221975.634|106.839 +639650.551|221980.374|107.067 +639645.507|221985.159|107.287 +639640.511|221989.899|107.567 +639630.471|221999.418|107.732 +639620.470|222008.891|107.415 +639615.417|222013.673|106.909 +639610.412|222018.413|106.519 +639590.393|222037.338|103.611 +639580.386|222046.827|103.757 +639575.390|222051.569|104.071 +639545.651|222079.843|108.613 +639540.698|222084.539|108.658 +639525.781|222098.664|107.509 +639505.905|222117.482|105.720 +639500.918|222122.201|105.284 +639486.017|222136.301|103.489 +639481.052|222140.995|102.742 +639476.071|222145.716|102.632 +639471.197|222150.340|102.760 +639466.217|222155.061|102.681 +639461.334|222159.691|102.718 +639446.536|222173.721|102.739 +639436.612|222183.118|101.941 +639431.701|222187.769|101.645 +639421.817|222197.130|100.947 +639411.935|222206.490|100.417 +639407.006|222211.157|100.045 +639402.072|222215.829|99.627 +639387.252|222229.850|97.731 +639382.241|222234.590|97.103 +639377.340|222239.229|96.664 +639372.408|222243.901|96.500 +639367.526|222248.531|96.366 +639362.630|222253.167|96.125 +639357.677|222257.858|95.765 +639352.816|222262.464|95.400 +639347.912|222267.118|95.674 +639343.084|222271.696|95.765 +639338.210|222276.320|95.872 +639333.333|222280.947|95.957 +639328.474|222285.555|96.293 +639323.671|222290.118|96.683 +639318.867|222294.681|97.088 +639314.036|222299.272|97.707 +639285.391|222326.505|102.117 +639270.904|222340.240|101.971 +639265.990|222344.891|101.493 +639256.176|222354.169|99.859 +639251.290|222358.784|98.883 +639246.376|222363.432|98.112 +639241.536|222368.010|97.618 +639236.681|222372.613|97.408 +639231.859|222377.179|97.116 +639227.089|222381.708|97.271 +639222.383|222386.179|97.981 +639217.692|222390.642|98.826 +639199.151|222408.277|102.843 +639194.496|222412.703|103.590 +639180.561|222425.944|105.769 +639166.528|222439.257|106.933 +639161.788|222443.747|106.781 +639157.109|222448.179|106.732 +639152.373|222452.665|106.656 +639142.961|222461.581|106.641 +639138.200|222466.086|106.107 +639133.414|222470.606|105.458 +639119.089|222484.145|103.526 +639114.364|222488.614|103.056 +639109.670|222493.058|102.818 +639105.004|222497.480|102.791 +639100.462|222501.790|103.266 +639097.554|222501.705|103.529 +639102.133|222497.343|102.992 +639106.820|222492.887|102.873 +639130.641|222470.292|105.501 +639135.481|222465.705|106.238 +639145.021|222456.646|106.833 +639149.733|222452.166|106.769 +639159.225|222443.144|106.814 +639182.807|222420.707|105.275 +639187.440|222416.288|104.385 +639196.822|222407.342|102.748 +639220.258|222384.988|98.207 +639224.986|222380.480|97.298 +639229.756|222375.944|97.186 +639234.626|222371.323|97.509 +639239.482|222366.709|97.768 +639244.420|222362.027|98.313 +639249.321|222357.382|99.011 +639254.271|222352.688|99.743 +639259.199|222348.015|100.322 +639269.081|222338.658|102.276 +639273.994|222333.988|102.404 +639293.358|222315.563|101.236 +639298.138|222311.003|100.130 +639312.625|222297.196|97.835 +639317.441|222292.606|97.094 +639322.345|222287.942|96.765 +639341.968|222269.273|95.747 +639346.884|222264.597|95.683 +639351.789|222259.934|95.461 +639356.803|222255.179|95.970 +639361.740|222250.488|96.204 +639366.739|222245.749|96.619 +639376.666|222236.318|96.643 +639381.687|222231.563|97.420 +639386.649|222226.860|98.131 +639391.708|222222.069|98.871 +639396.701|222217.335|99.432 +639401.718|222212.574|99.731 +639406.744|222207.807|100.179 +639411.685|222203.113|100.100 +639421.731|222193.588|101.075 +639431.741|222184.087|101.703 +639436.749|222179.336|102.084 +639441.748|222174.593|102.373 +639456.759|222160.343|102.922 +639461.773|222155.579|102.748 +639466.741|222150.855|102.703 +639471.767|222146.085|102.794 +639481.795|222136.557|102.629 +639486.858|222131.762|103.596 +639491.912|222126.977|104.409 +639496.956|222122.195|105.086 +639501.982|222117.427|105.458 +639507.011|222112.657|105.866 +639527.153|222093.555|107.738 +639542.234|222079.248|108.652 +639547.224|222074.502|108.433 +639552.210|222069.760|108.101 +639562.220|222060.235|107.095 +639567.231|222055.455|105.952 +639587.259|222036.390|103.550 +639592.313|222031.593|103.836 +639612.451|222012.515|106.900 +639617.499|222007.727|107.357 +639637.615|221988.622|107.482 +639642.605|221983.876|107.238 +639647.643|221979.088|107.113 +639652.685|221974.299|107.058 +639667.705|221960.010|105.805 +639672.701|221955.264|105.763 +639682.738|221945.721|105.455 +639687.737|221940.966|104.940 +639692.736|221936.211|104.586 +639697.734|221931.466|104.714 +639702.727|221926.729|105.178 +639712.724|221917.237|105.336 +639717.723|221912.483|105.159 +639722.771|221907.688|105.132 +639732.713|221898.255|105.833 +639737.715|221893.500|105.696 +639742.668|221888.800|105.790 +639757.618|221874.617|106.263 +639762.626|221869.859|106.055 +639767.579|221865.159|106.189 +639772.535|221860.456|106.287 +639777.540|221855.707|106.311 +639782.499|221851.001|106.354 +639787.458|221846.289|106.339 +639792.415|221841.592|106.549 +639797.349|221836.895|105.900 +639802.311|221832.183|105.946 +639812.254|221822.719|104.373 +639817.216|221818.010|104.541 +639822.145|221813.331|104.391 +639827.073|221808.649|104.297 +639831.996|221803.977|104.327 +639836.928|221799.295|104.260 +639841.856|221794.616|104.239 +639846.788|221789.931|104.178 +639851.674|221785.292|104.141 +639856.609|221780.605|104.053 +639861.495|221775.969|104.092 +639866.432|221771.278|104.010 +639871.327|221766.632|103.916 +639876.219|221761.984|103.879 +639881.163|221757.293|103.839 +639886.013|221752.688|103.760 +639890.960|221747.994|103.739 +639895.809|221743.385|103.715 +639900.716|221738.728|103.608 +639905.566|221734.125|103.669 +639910.461|221729.477|103.760 +639915.356|221724.832|103.888 +639935.275|221705.834|98.478 +639940.136|221701.210|97.960 +639949.957|221691.871|97.027 +639954.846|221687.229|96.911 +639959.765|221682.550|96.430 +639994.314|221649.641|89.992 +640008.942|221635.748|89.553 +640023.335|221622.108|90.855 +640028.178|221617.512|91.141 +640037.837|221608.353|91.632 +640052.117|221594.826|93.333 +640056.978|221590.211|93.549 +640061.727|221585.709|93.949 +640066.561|221581.122|94.019 +640071.295|221576.638|94.577 +640068.783|221576.635|94.607 +640064.047|221581.116|94.022 +640054.519|221590.135|93.434 +640049.752|221594.643|92.729 +640035.392|221608.231|91.705 +640030.577|221612.793|91.550 +640025.785|221617.326|91.141 +640020.963|221621.889|90.572 +639986.947|221654.103|89.334 +639981.994|221658.806|89.870 +639966.834|221673.260|94.997 +639961.887|221677.963|95.738 +639956.903|221682.693|96.320 +639952.005|221687.339|96.479 +639947.064|221692.020|96.616 +639937.119|221701.451|97.817 +639932.099|221706.212|98.463 +639922.125|221715.676|99.719 +639912.012|221725.308|103.321 +639906.986|221730.072|103.672 +639902.039|221734.750|103.535 +639897.083|221739.444|103.623 +639892.078|221744.178|103.681 +639887.125|221748.869|103.745 +639882.130|221753.599|103.806 +639877.131|221758.330|103.864 +639872.187|221763.011|103.897 +639867.142|221767.788|103.995 +639862.153|221772.509|104.010 +639857.163|221777.233|104.068 +639852.128|221781.997|104.105 +639847.145|221786.716|104.111 +639842.109|221791.486|104.233 +639837.129|221796.198|104.239 +639832.103|221800.956|104.214 +639827.073|221805.717|104.294 +639822.044|221810.478|104.388 +639817.024|221815.230|104.315 +639811.995|221819.994|104.528 +639806.963|221824.761|104.830 +639801.909|221829.562|105.882 +639791.826|221839.108|105.976 +639786.751|221843.918|106.385 +639781.740|221848.660|106.351 +639776.681|221853.449|106.400 +639771.670|221858.192|106.363 +639766.616|221862.974|106.296 +639761.560|221867.759|106.235 +639756.509|221872.538|106.122 +639751.449|221877.333|106.357 +639741.391|221886.852|106.269 +639736.350|221891.607|105.504 +639726.245|221901.171|105.485 +639721.192|221905.957|105.598 +639716.141|221910.736|105.543 +639711.094|221915.509|105.339 +639695.948|221929.841|104.982 +639690.898|221934.614|104.656 +639685.847|221939.406|105.342 +639680.800|221944.182|105.159 +639670.705|221953.750|105.830 +639660.287|221963.619|106.378 +639655.571|221968.087|106.720 +639650.527|221972.867|107.076 +639645.482|221977.643|107.140 +639640.441|221982.419|107.366 +639635.396|221987.195|107.582 +639615.261|222006.248|107.308 +639610.260|222010.979|107.049 +639605.203|222015.755|106.506 +639590.094|222030.008|103.614 +639550.153|222067.888|108.527 +639545.151|222072.625|108.549 +639540.155|222077.355|108.756 +639535.199|222082.046|108.817 +639525.199|222091.492|107.845 +639485.322|222129.156|103.559 +639480.375|222133.832|103.157 +639475.431|222138.504|102.821 +639465.574|222147.834|102.852 +639460.624|222152.513|102.538 +639440.918|222171.158|102.325 +639431.092|222180.442|101.694 +639426.215|222185.063|101.934 +639421.280|222189.723|101.383 +639416.339|222194.390|100.731 +639411.420|222199.041|100.453 +639406.500|222203.692|100.200 +639401.569|222208.353|99.822 +639396.677|222212.970|99.389 +639391.739|222217.640|98.960 +639386.832|222222.273|98.377 +639376.953|222231.600|97.128 +639362.295|222245.462|96.625 +639357.394|222250.095|96.308 +639352.478|222254.737|95.890 +639347.570|222259.379|95.555 +639337.893|222268.545|96.021 +639333.053|222273.123|96.000 +639328.188|222277.731|96.265 +639323.357|222282.303|96.390 +639318.562|222286.848|96.896 +639313.765|222291.399|97.381 +639280.499|222322.964|102.706 +639251.345|222350.502|99.780 +639246.477|222355.096|98.975 +639241.637|222359.668|98.457 +639236.784|222364.255|98.277 +639232.002|222368.781|98.295 +639227.140|222373.372|97.692 +639222.370|222377.883|97.454 +639217.673|222382.339|98.259 +639213.001|222386.780|99.234 +639194.377|222404.473|102.636 +639189.763|222408.856|103.337 +639185.121|222413.267|104.220 +639180.485|222417.677|105.141 +639175.888|222422.045|105.994 +639147.740|222448.727|106.869 +639143.076|222453.147|106.988 +639128.870|222466.589|105.958 +639124.112|222471.082|105.193 +639119.415|222475.526|104.864 +639114.611|222480.064|104.172 +639109.853|222484.560|103.492 +639105.193|222488.970|103.172 +639095.970|222497.715|103.519 +639091.416|222502.040|104.269 +639090.005|222501.004|104.233 +639094.577|222496.657|103.632 +639103.803|222487.891|103.041 +639108.576|222483.368|103.495 +639113.392|222478.811|104.272 +639118.186|222474.273|104.928 +639122.929|222469.777|105.269 +639127.730|222465.235|106.034 +639137.282|222456.183|106.988 +639142.055|222451.654|106.985 +639146.765|222447.182|106.884 +639151.541|222442.650|106.933 +639179.793|222415.806|104.998 +639184.478|222411.344|104.123 +639189.120|222406.924|103.282 +639198.529|222397.972|101.843 +639212.641|222384.527|98.950 +639217.359|222380.035|97.972 +639222.133|222375.493|97.454 +639226.942|222370.933|97.640 +639236.748|222361.643|98.478 +639241.643|222357.001|98.673 +639246.532|222352.371|99.243 +639251.464|222347.701|99.804 +639256.395|222343.038|100.849 +639261.403|222338.298|101.764 +639280.901|222319.809|102.575 +639285.729|222315.216|101.928 +639314.652|222287.689|97.189 +639319.480|222283.096|96.576 +639324.378|222278.441|96.210 +639329.236|222273.827|95.945 +639339.094|222264.472|95.924 +639344.004|222259.809|95.768 +639348.963|222255.100|95.601 +639353.919|222250.403|96.009 +639358.869|222245.709|96.390 +639373.814|222231.530|97.067 +639388.740|222217.375|98.445 +639393.790|222212.589|99.149 +639398.783|222207.859|99.716 +639403.757|222203.137|100.127 +639408.768|222198.383|100.401 +639413.739|222193.670|100.782 +639418.766|222188.906|101.352 +639428.714|222179.464|101.755 +639433.719|222174.715|102.120 +639438.760|222169.929|102.361 +639453.711|222155.735|102.626 +639468.683|222141.516|102.718 +639478.729|222131.976|102.956 +639483.767|222127.199|103.394 +639493.862|222117.635|104.827 +639498.858|222112.901|105.549 +639503.881|222108.137|105.860 +639519.008|222093.793|107.433 +639524.031|222089.032|107.909 +639529.039|222084.280|108.107 +639534.108|222079.477|108.738 +639539.110|222074.728|108.808 +639544.097|222069.985|108.512 +639549.141|222065.194|108.573 +639569.108|222046.162|104.574 +639579.149|222036.622|104.352 +639589.222|222027.042|103.641 +639604.365|222012.707|106.473 +639609.418|222007.922|107.107 +639629.541|221988.820|107.942 +639634.531|221984.077|107.750 +639639.569|221979.289|107.454 +639644.608|221974.500|107.299 +639649.600|221969.755|107.131 +639654.684|221964.920|106.756 +639659.674|221960.175|106.369 +639664.715|221955.380|105.909 +639674.752|221945.840|105.552 +639684.792|221936.297|105.089 +639689.837|221931.499|104.775 +639694.833|221926.763|105.263 +639699.877|221921.974|105.382 +639704.873|221917.231|105.504 +639709.871|221912.483|105.427 +639719.915|221902.945|105.632 +639724.913|221898.200|105.711 +639729.955|221893.417|105.988 +639744.948|221879.177|106.424 +639749.904|221874.462|106.278 +639754.909|221869.707|106.223 +639759.908|221864.955|106.318 +639764.864|221860.246|106.397 +639769.865|221855.491|106.412 +639774.870|221850.739|106.488 +639779.829|221846.024|106.488 +639784.798|221841.296|106.168 +639789.763|221836.575|106.016 +639794.725|221831.860|106.058 +639799.757|221827.065|105.452 +639804.704|221822.353|104.653 +639809.678|221817.620|104.443 +639814.653|221812.889|104.291 +639819.572|221808.213|104.376 +639824.544|221803.492|104.394 +639829.475|221798.801|104.257 +639834.401|221794.119|104.260 +639839.326|221789.438|104.281 +639844.261|221784.747|104.214 +639849.193|221780.059|104.196 +639854.128|221775.368|104.105 +639859.013|221770.723|104.086 +639863.954|221766.026|104.013 +639868.846|221761.378|103.974 +639873.741|221756.720|103.864 +639878.637|221752.069|103.827 +639883.535|221747.409|103.730 +639888.433|221742.754|103.681 +639893.285|221738.140|103.638 +639898.189|221733.479|103.565 +639903.042|221728.868|103.577 +639907.952|221724.195|103.440 +639917.886|221714.701|100.164 +639922.805|221710.013|99.350 +639927.719|221705.331|98.682 +639932.635|221700.646|98.024 +639937.521|221695.998|97.817 +639942.410|221691.338|96.991 +639957.074|221677.384|96.040 +639961.987|221672.699|95.080 +639976.843|221658.501|90.483 +639981.821|221653.756|89.563 +639986.600|221649.217|89.895 +639996.335|221639.951|89.157 +640001.090|221635.443|89.849 +640010.728|221626.290|90.340 +640015.480|221621.779|90.568 +640020.283|221617.216|90.764 +640029.833|221608.157|91.833 +640039.376|221599.096|92.504 +640044.128|221594.585|92.821 +640053.601|221585.599|93.833 +640058.393|221581.052|94.253 +640063.114|221576.565|94.464 +640077.272|221563.138|96.158 +640081.058|221556.198|96.552 +640076.230|221560.773|96.335 +640071.511|221565.232|95.543 +640057.100|221578.875|94.302 +640052.330|221583.392|94.055 +640037.907|221597.044|92.662 +640028.214|221606.222|91.910 +640018.598|221615.320|90.928 +640004.105|221629.049|90.078 +639984.610|221647.529|89.858 +639979.775|221652.107|89.517 +639974.777|221656.865|90.639 +639969.751|221661.668|92.784 +639940.084|221689.865|96.981 +639935.147|221694.562|97.798 +639930.245|221699.214|98.137 +639920.312|221708.656|99.478 +639915.347|221713.375|100.188 +639900.408|221727.597|103.434 +639895.446|221732.306|103.629 +639890.539|221736.960|103.693 +639885.589|221741.654|103.727 +639880.688|221746.302|103.748 +639875.738|221750.996|103.824 +639870.788|221755.693|103.952 +639865.795|221760.430|104.004 +639860.851|221765.118|104.074 +639855.908|221769.805|104.147 +639850.921|221774.536|104.193 +639845.986|221779.215|104.178 +639841.003|221783.939|104.193 +639836.019|221788.670|104.303 +639831.088|221793.342|104.275 +639826.113|221798.060|104.254 +639821.130|221802.788|104.370 +639816.162|221807.497|104.245 +639811.138|221812.264|104.306 +639806.161|221816.982|104.388 +639801.184|221821.707|104.580 +639796.136|221826.504|105.431 +639791.153|221831.241|105.952 +639786.133|221836.005|106.156 +639776.147|221845.478|106.488 +639771.136|221850.230|106.522 +639766.129|221854.979|106.482 +639761.121|221859.728|106.461 +639756.116|221864.473|106.403 +639751.062|221869.262|106.311 +639746.106|221873.962|106.311 +639741.050|221878.759|106.482 +639725.950|221893.073|106.214 +639720.951|221897.809|105.976 +639715.907|221902.586|105.595 +639710.853|221907.380|105.818 +639705.808|221912.156|105.418 +639700.804|221916.908|105.738 +639695.710|221921.733|105.513 +639690.666|221926.519|105.357 +639685.664|221931.252|105.056 +639680.617|221936.050|105.693 +639670.525|221945.627|106.037 +639660.387|221955.240|106.068 +639655.394|221959.983|106.586 +639650.304|221964.814|106.884 +639645.263|221969.602|107.366 +639640.218|221974.385|107.403 +639630.136|221983.952|107.753 +639609.961|222003.078|107.442 +639599.805|222012.692|106.339 +639589.716|222022.223|104.242 +639584.608|222027.057|103.684 +639559.480|222050.923|106.467 +639544.450|222065.206|108.683 +639539.406|222069.988|108.780 +639534.410|222074.728|108.875 +639529.399|222079.471|108.701 +639524.324|222084.271|108.027 +639519.301|222089.023|107.579 +639514.284|222093.775|107.357 +639509.203|222098.582|106.689 +639504.216|222103.297|106.177 +639499.172|222108.064|105.400 +639484.100|222122.323|103.839 +639479.040|222127.105|103.038 +639469.082|222136.538|102.818 +639464.056|222141.303|102.736 +639459.130|222145.969|102.821 +639454.098|222150.739|102.666 +639449.169|222155.409|102.733 +639444.183|222160.133|102.629 +639439.196|222164.858|102.553 +639434.249|222169.545|102.364 +639429.287|222174.239|101.998 +639419.381|222183.621|101.596 +639409.451|222193.024|100.947 +639404.467|222197.739|100.423 +639399.530|222202.409|99.941 +639389.602|222211.803|98.960 +639384.692|222216.442|98.326 +639374.816|222225.790|97.649 +639360.107|222239.720|96.951 +639355.148|222244.414|96.485 +639350.240|222249.056|96.134 +639345.330|222253.707|95.726 +639340.514|222258.273|95.939 +639321.123|222276.661|96.457 +639316.264|222281.270|96.799 +639292.548|222303.822|101.438 +639278.313|222317.340|103.044 +639244.340|222349.478|99.581 +639239.546|222354.020|99.426 +639234.824|222358.497|99.490 +639225.208|222367.596|98.655 +639220.285|222372.247|97.942 +639215.573|222376.712|97.789 +639210.867|222381.184|98.487 +639178.531|222411.914|104.568 +639160.072|222429.434|107.104 +639155.439|222433.823|107.363 +639150.773|222438.242|107.400 +639145.996|222442.759|107.022 +639141.382|222447.130|107.116 +639136.715|222451.550|107.211 +639132.015|222456.000|107.083 +639127.346|222460.417|106.854 +639122.576|222464.922|105.964 +639117.872|222469.366|105.580 +639099.027|222487.175|103.388 +639094.382|222491.576|103.489 +639089.813|222495.908|103.797 +639085.350|222500.144|104.477 +639080.839|222504.430|105.165 +639077.883|222503.912|105.427 +639082.439|222499.571|104.733 +639086.929|222495.298|103.919 +639091.547|222490.909|103.632 +639096.244|222486.447|103.562 +639100.919|222482.009|103.687 +639105.677|222477.498|104.062 +639120.094|222463.846|106.308 +639124.840|222459.347|106.726 +639134.368|222450.309|107.186 +639139.047|222445.865|107.214 +639143.796|222441.354|107.049 +639148.566|222436.831|107.412 +639158.018|222427.855|107.220 +639162.806|222423.304|107.076 +639181.414|222405.577|103.638 +639190.756|222396.674|101.675 +639200.160|222387.719|100.212 +639204.835|222383.265|99.264 +639209.553|222378.767|98.301 +639214.339|222374.216|97.868 +639219.194|222369.610|98.027 +639224.178|222364.901|99.298 +639229.079|222360.256|99.932 +639233.910|222355.669|99.990 +639238.753|222351.066|99.743 +639243.624|222346.442|99.770 +639253.490|222337.094|101.008 +639282.864|222309.232|102.526 +639287.732|222304.596|101.834 +639292.529|222300.037|101.392 +639297.434|222295.373|101.087 +639311.796|222281.675|97.527 +639316.609|222277.094|96.762 +639321.504|222272.440|96.357 +639336.259|222258.422|96.049 +639341.179|222253.750|95.988 +639346.083|222249.092|95.768 +639351.051|222244.383|96.323 +639356.041|222239.653|96.604 +639370.942|222225.522|97.372 +639395.866|222201.903|99.426 +639400.874|222197.163|100.295 +639415.897|222182.929|101.782 +639425.834|222173.502|102.020 +639430.851|222168.750|102.568 +639435.792|222164.065|102.672 +639440.772|222159.338|102.721 +639445.801|222154.564|102.815 +639450.730|222149.889|102.812 +639455.701|222145.170|102.733 +639460.676|222140.449|102.745 +639465.696|222135.682|102.791 +639490.677|222112.005|104.675 +639495.719|222107.235|105.321 +639510.773|222092.976|107.198 +639525.778|222078.754|108.378 +639530.792|222074.003|108.783 +639535.797|222069.257|108.972 +639540.826|222064.474|108.539 +639545.782|222059.774|108.728 +639550.799|222054.998|107.872 +639560.736|222045.534|105.869 +639585.778|222021.738|104.050 +639590.841|222016.947|104.900 +639600.914|222007.416|106.677 +639605.919|222002.676|107.323 +639631.081|221978.807|107.887 +639636.070|221974.065|107.473 +639646.147|221964.494|107.125 +639651.139|221959.748|106.805 +639656.178|221954.966|106.503 +639661.265|221950.132|106.311 +639671.302|221940.604|106.205 +639681.342|221931.060|105.336 +639686.387|221926.275|105.501 +639691.431|221921.489|105.519 +639706.513|221907.185|106.086 +639711.514|221902.433|105.790 +639721.600|221892.866|106.174 +639731.592|221883.389|106.653 +639736.642|221878.595|106.525 +639741.647|221873.843|106.375 +639746.694|221869.052|106.442 +639751.696|221864.306|106.500 +639756.701|221859.557|106.488 +639761.752|221854.763|106.543 +639766.756|221850.014|106.564 +639771.761|221845.262|106.598 +639776.766|221840.513|106.677 +639786.806|221830.970|105.897 +639791.842|221826.178|105.171 +639796.831|221821.433|104.504 +639801.848|221816.669|104.480 +639806.874|221811.895|104.220 +639811.839|221807.183|104.355 +639816.808|221802.471|104.425 +639821.785|221797.747|104.339 +639826.759|221793.022|104.303 +639831.731|221788.304|104.361 +639836.711|221783.576|104.300 +639841.643|221778.895|104.291 +639846.620|221774.170|104.294 +639851.555|221769.485|104.266 +639856.493|221764.798|104.202 +639861.476|221760.067|104.217 +639866.377|221755.416|104.041 +639871.321|221750.719|103.919 +639876.268|221746.025|103.861 +639881.169|221741.368|103.733 +639886.113|221736.677|103.763 +639891.018|221732.022|103.678 +639895.967|221727.319|103.626 +639910.860|221713.125|100.124 +639915.752|221708.473|99.691 +639920.702|221703.767|99.179 +639935.436|221689.753|97.487 +639940.362|221685.068|96.838 +639945.214|221680.456|96.558 +639955.017|221671.135|95.491 +640008.521|221620.270|90.681 +640018.077|221611.209|91.126 +640022.841|221606.697|91.766 +640027.586|221602.199|92.114 +640032.347|221597.681|92.315 +640037.084|221593.195|92.797 +640046.527|221584.243|93.583 +640055.957|221575.309|94.567 +640060.627|221570.883|94.839 +640065.348|221566.412|95.503 +640074.696|221557.554|96.442 +640081.186|221547.850|97.341 +640076.342|221552.425|96.783 +640071.472|221557.030|96.463 +640056.930|221570.774|95.019 +640052.080|221575.358|94.574 +640047.188|221579.979|94.083 +640042.333|221584.569|93.723 +640037.441|221589.193|93.284 +640022.795|221603.040|92.202 +640013.038|221612.257|91.129 +639993.418|221630.801|89.261 +639983.457|221640.247|90.191 +639973.640|221649.531|89.550 +639963.432|221659.257|93.260 +639958.391|221664.052|94.467 +639953.435|221668.755|95.229 +639948.405|221673.528|95.790 +639943.425|221678.252|96.338 +639933.513|221687.653|96.985 +639928.523|221692.392|97.841 +639923.518|221697.138|98.259 +639913.539|221706.608|99.530 +639908.617|221711.272|99.600 +639903.621|221716.011|100.103 +639893.538|221725.618|103.498 +639888.573|221730.325|103.678 +639883.666|221734.973|103.739 +639878.713|221739.664|103.766 +639873.760|221744.355|103.852 +639868.804|221749.052|103.989 +639863.851|221753.742|104.135 +639858.913|221758.418|104.035 +639853.966|221763.103|104.114 +639849.025|221767.785|104.144 +639844.078|221772.472|104.297 +639839.095|221777.194|104.297 +639834.160|221781.863|104.245 +639829.222|221786.542|104.312 +639824.242|221791.257|104.269 +639819.307|221795.933|104.339 +639814.330|221800.648|104.355 +639809.398|221805.318|104.358 +639804.430|221810.018|104.160 +639799.446|221814.742|104.422 +639794.518|221819.412|104.461 +639789.488|221824.179|104.766 +639784.493|221828.925|105.552 +639779.543|221833.628|106.467 +639774.523|221838.386|106.659 +639769.554|221843.089|106.689 +639764.595|221847.786|106.567 +639759.630|221852.486|106.543 +639754.668|221857.183|106.494 +639749.660|221861.928|106.537 +639744.698|221866.628|106.522 +639739.739|221871.325|106.479 +639734.731|221876.068|106.491 +639729.769|221880.768|106.592 +639719.808|221890.199|106.406 +639714.803|221894.938|106.433 +639684.881|221923.263|105.824 +639679.833|221928.040|105.519 +639674.832|221932.785|105.921 +639669.876|221937.488|106.497 +639659.826|221947.004|106.479 +639654.873|221951.698|106.775 +639644.833|221961.214|107.101 +639634.793|221970.733|107.680 +639629.794|221975.470|107.720 +639624.799|221980.203|107.951 +639619.754|221984.982|108.107 +639604.743|221999.183|107.229 +639599.738|222003.920|106.830 +639584.635|222018.181|104.364 +639564.634|222037.137|105.114 +639534.693|222065.584|109.000 +639529.692|222070.327|108.972 +639524.717|222075.033|108.536 +639519.645|222079.830|108.037 +639509.648|222089.294|107.226 +639499.580|222098.819|106.101 +639484.496|222113.087|104.163 +639474.407|222122.630|103.181 +639469.411|222127.358|102.754 +639464.440|222132.073|102.821 +639459.417|222136.834|102.803 +639454.485|222141.510|102.785 +639449.453|222146.277|102.663 +639434.518|222160.438|102.828 +639429.571|222165.123|102.666 +639424.557|222169.868|102.236 +639419.625|222174.544|102.361 +639414.666|222179.241|102.056 +639399.688|222193.414|100.721 +639394.662|222198.160|99.670 +639379.760|222212.269|98.502 +639374.771|222216.991|98.131 +639369.833|222221.666|97.804 +639364.877|222226.357|97.308 +639354.995|222235.715|96.774 +639349.996|222240.445|96.448 +639345.025|222245.148|95.902 +639340.145|222249.775|95.872 +639335.244|222254.426|96.201 +639315.694|222272.964|96.634 +639310.878|222277.542|97.402 +639291.792|222295.702|101.340 +639253.146|222332.339|101.752 +639248.254|222336.960|100.648 +639243.392|222341.563|100.270 +639238.561|222346.141|100.200 +639233.819|222350.640|100.505 +639229.027|222355.181|100.395 +639224.175|222359.777|100.212 +639219.328|222364.356|99.295 +639214.418|222368.992|98.286 +639209.602|222373.554|98.094 +639204.866|222378.050|98.573 +639200.245|222382.446|99.603 +639195.597|222386.871|100.383 +639186.276|222395.735|101.806 +639181.570|222400.209|102.553 +639177.031|222404.534|103.836 +639172.389|222408.948|104.327 +639158.591|222422.082|107.177 +639153.970|222426.471|107.515 +639149.264|222430.936|107.592 +639144.594|222435.365|107.604 +639139.864|222439.843|107.208 +639135.203|222444.268|107.308 +639130.519|222448.709|107.287 +639121.131|222457.606|106.820 +639102.151|222475.562|104.196 +639097.472|222479.991|103.727 +639092.882|222484.346|103.855 +639088.215|222488.772|103.821 +639083.649|222493.109|104.141 +639079.172|222497.364|104.748 +639074.886|222498.788|105.272 +639079.398|222494.493|104.595 +639083.979|222490.132|104.077 +639088.615|222485.724|103.919 +639093.229|222481.332|103.641 +639097.984|222476.827|104.297 +639102.657|222472.392|104.434 +639117.065|222458.743|106.644 +639121.804|222454.244|107.031 +639126.596|222449.703|107.442 +639131.305|222445.225|107.320 +639135.978|222440.784|107.311 +639140.720|222436.282|107.448 +639145.487|222431.762|107.799 +639150.233|222427.251|107.671 +639154.936|222422.774|107.253 +639159.569|222418.363|106.705 +639182.795|222396.216|101.861 +639192.238|222387.228|100.685 +639196.913|222382.769|99.770 +639201.598|222378.303|98.893 +639206.347|222373.780|98.176 +639211.212|222369.162|98.402 +639216.134|222364.499|99.136 +639225.973|222355.178|100.697 +639235.650|222345.982|100.557 +639240.521|222341.355|100.599 +639245.404|222336.719|100.773 +639250.348|222332.035|101.520 +639255.347|222327.301|102.364 +639289.481|222294.861|101.526 +639308.751|222276.491|97.734 +639318.529|222267.188|96.829 +639328.404|222257.800|96.543 +639333.296|222253.146|96.168 +639338.259|222248.431|96.058 +639343.169|222243.764|95.939 +639348.165|222239.025|96.271 +639353.172|222234.276|96.765 +639358.113|222229.585|97.091 +639363.139|222224.812|97.350 +639368.096|222220.109|97.951 +639373.137|222215.329|98.435 +639388.151|222201.074|99.356 +639398.188|222191.558|100.743 +639408.204|222182.060|102.029 +639413.252|222177.266|102.279 +639418.208|222172.563|102.578 +639423.222|222167.793|102.389 +639428.236|222163.038|102.925 +639433.213|222158.307|102.931 +639448.161|222144.094|102.596 +639453.202|222139.309|102.986 +639458.167|222134.588|102.882 +639463.184|222129.821|102.873 +639468.198|222125.054|102.861 +639488.260|222106.025|105.126 +639498.315|222096.485|106.019 +639508.365|222086.950|107.089 +639513.388|222082.186|107.570 +639523.425|222072.664|108.661 +639528.433|222067.910|109.003 +639543.447|222053.633|108.472 +639553.439|222044.111|107.061 +639578.396|222020.348|104.513 +639588.405|222010.851|105.342 +639603.463|221996.568|107.204 +639608.461|221991.825|107.656 +639613.503|221987.040|107.845 +639618.443|221982.340|107.817 +639623.485|221977.554|108.113 +639628.471|221972.812|107.857 +639633.461|221968.069|107.777 +639638.496|221963.278|107.470 +639643.486|221958.532|107.186 +639668.434|221934.806|106.574 +639673.475|221930.003|105.808 +639678.422|221925.299|105.720 +639703.434|221901.543|106.680 +639708.430|221896.795|106.543 +639718.375|221887.343|106.516 +639728.364|221877.848|106.638 +639733.317|221873.142|106.491 +639738.312|221868.396|106.638 +639743.311|221863.647|106.653 +639748.264|221858.941|106.595 +639753.263|221854.189|106.604 +639758.265|221849.441|106.638 +639768.226|221839.971|106.446 +639773.182|221835.264|106.488 +639778.150|221830.537|106.089 +639783.191|221825.730|105.071 +639788.120|221821.039|104.617 +639793.131|221816.278|104.565 +639798.105|221811.545|104.288 +639803.025|221806.872|104.291 +639808.036|221802.114|104.370 +639812.958|221797.436|104.321 +639817.926|221792.714|104.324 +639822.895|221787.996|104.361 +639827.817|221783.317|104.364 +639832.791|221778.590|104.342 +639837.766|221773.865|104.355 +639842.704|221769.171|104.172 +639847.678|221764.444|104.217 +639852.613|221759.753|104.114 +639857.593|221755.020|104.105 +639862.525|221750.338|104.181 +639867.472|221745.635|103.998 +639872.412|221740.935|103.888 +639877.359|221736.235|103.794 +639882.303|221731.538|103.739 +639887.253|221726.832|103.632 +639902.286|221712.482|99.804 +639907.212|221707.800|99.539 +639912.183|221703.069|99.319 +639922.058|221693.675|98.582 +639927.027|221688.942|97.856 +639931.989|221684.217|97.259 +639936.951|221679.493|96.698 +639941.864|221674.814|96.195 +639956.757|221660.632|94.244 +639976.645|221641.670|90.389 +639996.134|221623.151|90.239 +640001.005|221618.530|90.693 +640005.784|221613.994|91.084 +640025.069|221595.697|92.617 +640029.909|221591.101|92.934 +640039.468|221582.036|93.930 +640053.729|221568.509|95.326 +640058.505|221563.971|95.427 +640067.991|221554.976|96.375 +640072.724|221550.483|96.920 +640077.406|221546.048|97.539 +640077.019|221543.491|97.356 +640072.212|221548.045|96.942 +640067.357|221552.638|96.509 +640062.504|221557.234|96.104 +640052.790|221566.433|95.393 +640047.917|221571.051|95.204 +640043.086|221575.620|94.638 +640038.200|221580.247|94.162 +640033.301|221584.883|93.793 +640028.431|221589.491|93.181 +640008.835|221608.048|91.522 +640003.925|221612.693|90.882 +639994.071|221622.020|89.986 +639989.026|221626.808|90.322 +639984.134|221631.444|90.087 +639974.173|221640.890|90.050 +639953.849|221660.233|94.211 +639943.742|221669.846|95.954 +639933.668|221679.408|96.814 +639913.445|221698.604|98.813 +639908.449|221703.347|99.243 +639903.386|221708.144|99.295 +639888.122|221722.662|102.450 +639883.056|221727.481|103.586 +639878.048|221732.227|103.721 +639873.004|221737.009|103.775 +639868.002|221741.752|103.928 +639862.951|221746.540|104.132 +639857.916|221751.310|104.047 +639852.927|221756.038|104.096 +639847.885|221760.817|104.196 +639842.899|221765.541|104.227 +639837.869|221770.305|104.166 +639832.831|221775.085|104.373 +639827.854|221779.800|104.300 +639822.828|221784.564|104.297 +639817.798|221789.325|104.312 +639812.775|221794.086|104.309 +639807.798|221798.804|104.336 +639802.729|221803.605|104.303 +639797.755|221808.320|104.336 +639792.735|221813.078|104.385 +639787.711|221817.842|104.528 +639782.737|221822.554|104.644 +639777.708|221827.327|105.043 +639762.578|221841.690|106.601 +639752.605|221851.138|106.644 +639747.551|221855.930|106.638 +639742.543|221860.673|106.619 +639737.535|221865.418|106.680 +639732.530|221870.161|106.656 +639727.529|221874.898|106.491 +639722.521|221879.649|106.769 +639717.516|221884.389|106.747 +639712.517|221889.126|106.659 +639707.515|221893.862|106.555 +639702.511|221898.605|106.628 +639682.558|221917.506|106.287 +639677.557|221922.242|106.275 +639672.607|221926.930|105.894 +639667.650|221931.630|106.439 +639652.657|221945.846|106.756 +639642.760|221955.231|107.336 +639637.765|221959.967|107.461 +639632.769|221964.707|107.680 +639627.819|221969.398|107.875 +639612.924|221983.513|107.954 +639607.925|221988.247|107.826 +639602.972|221992.938|107.558 +639597.967|221997.671|107.098 +639588.034|222007.059|105.607 +639578.045|222016.496|104.120 +639563.153|222030.623|105.025 +639553.289|222039.996|106.842 +639548.364|222044.678|107.774 +639533.593|222058.692|109.146 +639528.631|222063.389|108.948 +639523.660|222068.089|108.549 +639513.714|222077.496|107.823 +639503.793|222086.874|106.671 +639493.911|222096.216|105.589 +639473.983|222115.056|103.498 +639464.105|222124.404|103.001 +639459.173|222129.074|102.940 +639454.208|222133.780|103.117 +639449.276|222138.453|103.096 +639434.478|222152.467|103.141 +639429.543|222157.140|103.154 +639424.609|222161.816|103.181 +639419.637|222166.516|102.639 +639414.706|222171.191|102.760 +639409.728|222175.894|102.224 +639404.803|222180.552|101.837 +639394.878|222189.933|100.712 +639389.922|222194.615|99.972 +639384.933|222199.334|99.484 +639380.022|222203.982|99.456 +639355.318|222227.354|97.719 +639350.390|222232.008|97.058 +639345.431|222236.702|96.597 +639340.499|222241.359|95.985 +639335.595|222246.011|96.262 +639330.672|222250.674|96.341 +639325.850|222255.243|96.472 +639320.922|222259.913|96.536 +639316.097|222264.485|96.674 +639311.195|222269.136|97.039 +639306.389|222273.702|97.926 +639292.133|222287.265|101.727 +639287.290|222291.865|102.206 +639263.214|222314.697|103.858 +639253.384|222323.979|102.370 +639248.437|222328.651|101.614 +639243.569|222333.254|101.172 +639238.759|222337.814|101.249 +639214.583|222360.692|100.121 +639209.645|222365.349|98.883 +639204.786|222369.940|98.365 +639200.013|222374.463|98.545 +639190.680|222383.336|100.267 +639185.998|222387.789|101.191 +639172.072|222401.029|103.818 +639153.531|222418.659|107.214 +639148.849|222423.100|107.473 +639144.155|222427.553|107.649 +639139.465|222432.003|107.872 +639134.734|222436.478|107.494 +639130.001|222440.961|107.476 +639125.261|222445.454|107.403 +639120.570|222449.892|107.046 +639115.818|222454.388|106.628 +639096.872|222472.316|104.937 +639092.105|222476.821|104.230 +639087.432|222481.244|103.843 +639082.827|222485.614|104.236 +639078.261|222489.946|104.574 +639073.747|222494.234|105.260 +639069.290|222498.471|105.994 +639063.554|222501.098|106.638 +639068.077|222496.791|106.031 +639072.573|222492.509|105.263 +639077.118|222488.181|104.510 +639081.751|222483.776|104.324 +639086.384|222479.378|104.144 +639095.802|222470.445|104.867 +639100.554|222465.946|105.555 +639110.170|222456.835|106.778 +639114.873|222452.373|106.881 +639119.595|222447.892|107.147 +639124.319|222443.412|107.464 +639138.541|222429.915|107.851 +639143.217|222425.468|107.561 +639147.914|222421.009|107.427 +639157.228|222412.142|106.305 +639161.919|222407.677|105.446 +639171.188|222398.844|103.666 +639189.772|222381.135|100.109 +639194.438|222376.688|99.112 +639199.212|222372.146|98.554 +639204.012|222367.590|98.664 +639208.852|222362.999|99.109 +639213.824|222358.302|100.261 +639228.347|222344.525|101.090 +639238.089|222335.284|101.605 +639247.782|222326.085|101.785 +639262.595|222312.049|103.699 +639272.324|222302.810|103.596 +639281.931|222293.666|102.379 +639291.636|222284.440|101.703 +639305.962|222270.770|97.856 +639310.814|222266.149|97.012 +639315.658|222261.543|96.610 +639320.583|222256.865|96.582 +639325.454|222252.241|96.485 +639335.317|222242.868|96.134 +639340.234|222238.199|96.085 +639345.208|222233.486|96.735 +639350.216|222228.744|97.244 +639355.245|222223.986|98.045 +639360.226|222219.274|98.902 +639365.172|222214.577|98.758 +639380.059|222200.455|99.106 +639385.012|222195.767|99.776 +639390.041|222191.003|100.267 +639395.098|222186.221|101.139 +639400.072|222181.506|101.624 +639405.089|222176.754|102.044 +639415.081|222167.293|103.053 +639420.040|222162.581|102.712 +639430.028|222153.107|103.196 +639449.922|222134.228|103.074 +639459.908|222124.752|102.983 +639464.879|222120.034|102.986 +639479.927|222105.772|104.004 +639489.961|222096.271|105.315 +639494.999|222091.504|105.988 +639500.038|222086.734|106.747 +639505.012|222082.022|107.101 +639515.052|222072.509|108.055 +639525.077|222063.008|108.747 +639530.091|222058.260|109.137 +639535.044|222053.560|109.317 +639540.073|222048.780|108.844 +639550.019|222039.316|107.372 +639564.942|222025.113|104.882 +639585.040|222006.053|105.388 +639595.059|221996.571|107.019 +639600.061|221991.831|107.427 +639605.057|221987.095|107.622 +639625.079|221968.103|108.027 +639630.114|221963.317|107.765 +639635.058|221958.623|107.677 +639640.097|221953.841|107.467 +639655.071|221939.619|106.644 +639660.064|221934.879|106.592 +639665.060|221930.140|106.558 +639670.055|221925.391|106.068 +639675.048|221920.654|106.299 +639680.044|221915.921|106.558 +639685.039|221911.178|106.488 +639690.032|221906.441|106.702 +639695.031|221901.699|106.574 +639700.023|221896.965|106.854 +639714.968|221882.783|106.845 +639719.966|221878.037|106.784 +639724.968|221873.288|106.711 +639729.964|221868.546|106.772 +639734.871|221863.885|106.726 +639739.870|221859.136|106.732 +639744.872|221854.388|106.723 +639749.828|221849.681|106.653 +639754.839|221844.924|106.430 +639759.789|221840.224|106.604 +639764.751|221835.508|106.446 +639779.732|221821.256|104.699 +639784.700|221816.537|104.574 +639789.629|221811.856|104.327 +639794.591|221807.140|104.379 +639799.562|221802.422|104.333 +639804.530|221797.707|104.355 +639809.496|221792.992|104.409 +639814.375|221788.356|104.333 +639819.347|221783.637|104.352 +639824.321|221778.913|104.339 +639829.247|221774.240|104.409 +639834.181|221769.552|104.300 +639839.110|221764.871|104.291 +639844.042|221760.189|104.284 +639849.028|221755.452|104.193 +639853.914|221750.813|104.196 +639858.904|221746.074|104.105 +639863.796|221741.432|104.080 +639868.746|221736.728|103.891 +639873.690|221732.031|103.824 +639878.643|221727.325|103.650 +639888.649|221717.779|101.005 +639893.630|221713.030|99.764 +639903.533|221703.618|99.173 +639908.489|221698.912|99.207 +639913.381|221694.258|98.804 +639928.304|221680.060|97.103 +639933.217|221675.390|96.619 +639938.185|221670.663|96.061 +639943.138|221665.954|95.741 +639948.125|221661.196|94.391 +639953.011|221656.557|94.421 +639972.945|221637.555|90.078 +639982.747|221628.253|90.191 +639987.645|221623.605|90.300 +639992.541|221618.950|89.928 +640021.417|221591.582|93.025 +640026.245|221587.007|93.528 +640031.098|221582.402|93.769 +640035.920|221577.827|93.851 +640040.726|221573.267|94.119 +640045.463|221568.786|95.104 +640050.258|221564.239|95.488 +640055.092|221559.652|95.549 +640059.834|221555.156|96.015 +640064.629|221550.611|96.469 +640069.381|221546.106|96.896 +640074.130|221541.604|97.359 +640078.878|221537.102|97.820 +640076.675|221535.572|97.558 +640071.901|221540.096|97.682 +640067.116|221544.619|97.061 +640062.328|221549.154|96.945 +640057.554|221553.665|96.250 +640028.708|221580.957|94.269 +640023.941|221585.462|93.583 +640014.309|221594.566|92.278 +640004.522|221603.826|91.614 +639970.129|221636.388|90.364 +639965.200|221641.055|90.059 +639960.232|221645.764|90.233 +639949.981|221655.542|94.147 +639944.970|221660.297|94.442 +639924.850|221679.408|97.027 +639919.806|221684.208|98.021 +639914.777|221688.978|98.179 +639909.760|221693.749|98.902 +639904.724|221698.528|99.188 +639899.713|221703.277|99.158 +639894.690|221708.044|99.371 +639884.544|221717.691|100.795 +639874.321|221727.432|103.727 +639869.270|221732.220|103.858 +639864.223|221737.012|103.992 +639859.178|221741.794|104.062 +639854.182|221746.534|104.205 +639849.098|221751.356|104.230 +639844.057|221756.135|104.339 +639839.025|221760.905|104.327 +639833.995|221765.675|104.306 +639828.911|221770.497|104.428 +639823.888|221775.258|104.355 +639818.813|221780.071|104.336 +639813.741|221784.878|104.306 +639808.715|221789.645|104.358 +639803.646|221794.449|104.284 +639798.578|221799.255|104.312 +639793.558|221804.016|104.312 +639788.495|221808.814|104.172 +639783.420|221813.630|104.425 +639778.351|221818.439|104.571 +639773.291|221823.234|104.495 +639768.201|221828.077|105.409 +639763.166|221832.863|106.186 +639758.057|221837.709|106.314 +639742.878|221852.108|106.781 +639737.825|221856.899|106.778 +639732.771|221861.694|106.811 +639727.718|221866.485|106.860 +639722.667|221871.274|106.869 +639717.616|221876.059|106.729 +639712.563|221880.853|106.979 +639692.321|221900.047|106.933 +639687.277|221904.826|106.711 +639682.229|221909.614|106.802 +639677.182|221914.400|106.802 +639672.137|221919.179|106.564 +639667.090|221923.955|106.217 +639661.996|221928.796|106.744 +639656.952|221933.575|106.488 +639646.863|221943.155|107.265 +639636.826|221952.677|107.643 +639631.782|221957.459|107.738 +639626.740|221962.244|107.994 +639621.744|221966.984|108.076 +639616.703|221971.766|108.180 +639601.609|221986.065|107.689 +639596.608|221990.804|107.329 +639591.603|221995.544|106.927 +639586.537|222000.329|105.976 +639571.510|222014.557|104.900 +639546.678|222038.152|107.893 +639531.761|222052.319|108.957 +639521.831|222061.725|108.366 +639501.952|222080.556|107.168 +639496.971|222085.271|106.692 +639492.003|222089.962|105.543 +639477.074|222104.089|103.916 +639472.148|222108.759|103.849 +639462.224|222118.162|103.273 +639457.332|222122.798|103.035 +639447.478|222132.140|103.105 +639442.552|222136.813|103.163 +639437.627|222141.485|103.251 +639427.818|222150.788|103.440 +639417.976|222160.118|103.132 +639413.096|222164.748|103.306 +639408.195|222169.393|103.160 +639388.423|222188.096|100.542 +639373.701|222202.043|99.789 +639363.877|222211.349|99.121 +639339.258|222234.648|96.433 +639334.305|222239.339|96.125 +639329.499|222243.901|96.421 +639319.800|222253.103|96.607 +639310.119|222262.290|97.085 +639305.288|222266.880|97.689 +639281.566|222289.460|102.669 +639276.796|222293.989|102.943 +639262.418|222307.641|104.117 +639257.569|222312.235|103.681 +639252.701|222316.840|103.141 +639247.800|222321.473|102.315 +639233.398|222335.128|102.325 +639228.479|222339.780|101.474 +639223.693|222344.315|101.404 +639213.991|222353.505|100.609 +639209.176|222358.065|100.371 +639204.268|222362.704|99.383 +639199.440|222367.266|98.707 +639194.658|222371.805|98.795 +639189.958|222376.273|99.584 +639166.720|222398.362|103.742 +639148.279|222415.894|107.177 +639138.895|222424.791|107.592 +639129.586|222433.618|107.893 +639115.394|222447.051|107.278 +639110.682|222451.513|107.125 +639105.958|222455.982|106.583 +639101.236|222460.453|106.424 +639096.497|222464.934|105.833 +639091.715|222469.451|105.004 +639086.966|222473.941|104.419 +639082.354|222478.311|104.428 +639077.672|222482.752|104.644 +639073.097|222487.090|104.931 +639068.577|222491.384|105.583 +639059.415|222497.413|106.641 +639068.544|222488.708|105.348 +639073.143|222484.328|104.925 +639077.776|222479.921|104.729 +639082.409|222475.513|104.568 +639087.167|222470.996|104.903 +639091.949|222466.458|105.440 +639096.710|222461.944|106.186 +639101.508|222457.387|106.558 +639120.549|222439.306|107.936 +639125.319|222434.771|107.918 +639130.049|222430.272|107.973 +639139.492|222421.292|107.659 +639153.552|222407.893|106.055 +639181.634|222381.104|100.932 +639186.309|222376.642|99.996 +639191.022|222372.146|98.969 +639200.705|222362.947|99.402 +639205.670|222358.244|100.502 +639210.547|222353.614|100.886 +639220.310|222344.339|101.435 +639225.126|222339.761|101.374 +639244.691|222321.178|102.416 +639249.610|222316.511|102.992 +639259.474|222307.151|104.050 +639278.871|222288.689|102.892 +639288.546|222279.472|101.931 +639298.043|222270.386|98.649 +639302.865|222265.789|98.006 +639317.477|222251.875|96.634 +639327.353|222242.481|96.378 +639332.291|222237.790|96.570 +639337.234|222233.084|96.296 +639342.224|222228.357|97.134 +639347.275|222223.571|98.182 +639367.169|222204.683|99.664 +639372.177|222199.922|99.792 +639387.112|222185.745|101.075 +639392.196|222180.936|102.410 +639397.219|222176.169|102.959 +639402.178|222171.459|103.273 +639407.174|222166.714|103.480 +639412.157|222161.974|103.538 +639417.126|222157.250|103.373 +639422.134|222152.498|103.836 +639427.138|222147.734|103.535 +639432.104|222143.009|103.382 +639437.069|222138.288|103.273 +639442.095|222133.512|103.355 +639447.072|222128.781|103.483 +639452.089|222124.011|103.471 +639477.092|222100.249|104.123 +639487.175|222090.687|105.552 +639492.244|222085.875|105.906 +639497.297|222081.089|107.089 +639507.328|222071.564|107.753 +639512.352|222066.800|108.363 +639527.421|222052.490|109.262 +639532.420|222047.738|109.417 +639547.434|222033.431|107.500 +639562.397|222019.160|104.922 +639577.472|222004.822|104.614 +639582.526|222000.027|105.184 +639587.546|221995.279|106.497 +639592.590|221990.487|106.875 +639637.801|221947.516|107.747 +639657.854|221928.439|106.988 +639662.847|221923.684|106.491 +639667.885|221918.896|106.662 +639682.906|221904.622|107.107 +639687.901|221899.873|107.055 +639702.928|221885.584|107.086 +639707.878|221880.878|106.979 +639712.923|221876.080|106.936 +639717.918|221871.335|106.979 +639722.868|221866.628|106.918 +639727.867|221861.880|106.906 +639732.866|221857.128|106.878 +639737.822|221852.422|106.827 +639742.820|221847.670|106.811 +639752.784|221838.203|106.592 +639762.770|221828.699|105.671 +639767.759|221823.938|104.577 +639772.721|221819.226|104.623 +639777.687|221814.507|104.510 +639782.655|221809.786|104.412 +639787.626|221805.059|104.199 +639792.543|221800.389|104.281 +639797.514|221795.665|104.166 +639802.427|221790.995|104.309 +639807.399|221786.274|104.281 +639812.321|221781.598|104.321 +639817.247|221776.919|104.309 +639822.172|221772.238|104.303 +639827.098|221767.562|104.358 +639832.026|221762.874|104.309 +639836.955|221758.193|104.333 +639841.841|221753.550|104.297 +639846.776|221748.863|104.281 +639851.668|221744.211|104.160 +639856.609|221739.517|104.083 +639861.501|221734.869|104.041 +639866.402|221730.206|103.815 +639871.309|221725.542|103.608 +639876.210|221720.870|102.706 +639881.297|221715.996|100.316 +639910.705|221688.018|98.057 +639915.615|221683.355|98.140 +639920.480|221678.722|97.545 +639959.970|221641.076|90.184 +639974.536|221627.235|90.093 +639989.127|221613.360|89.419 +639998.646|221604.344|91.221 +640003.391|221599.843|91.489 +640008.189|221595.298|92.278 +640017.744|221586.233|93.214 +640027.254|221577.223|94.668 +640036.807|221568.158|95.281 +640046.259|221559.197|96.430 +640051.032|221554.665|96.588 +640055.781|221550.160|96.985 +640060.508|221545.679|97.588 +640065.299|221541.123|97.606 +640070.070|221536.596|97.865 +640074.770|221532.140|98.335 +640079.470|221527.687|99.213 +640068.728|221535.417|97.865 +640063.992|221539.903|97.704 +640059.200|221544.445|97.625 +640054.452|221548.941|97.201 +640049.712|221553.424|96.677 +640044.954|221557.926|96.323 +640030.689|221571.423|94.839 +640025.855|221576.004|94.845 +640021.091|221580.509|94.174 +640006.787|221594.036|92.288 +639987.612|221612.172|89.962 +639973.067|221625.958|89.977 +639963.246|221635.279|90.629 +639943.419|221654.134|94.229 +639933.495|221663.573|96.226 +639923.640|221672.915|96.762 +639913.698|221682.349|98.024 +639898.884|221696.391|98.856 +639874.010|221719.992|101.721 +639868.962|221724.802|103.428 +639863.945|221729.557|103.833 +639858.986|221734.253|104.041 +639854.091|221738.890|104.059 +639849.095|221743.620|104.150 +639844.103|221748.351|104.284 +639839.162|221753.029|104.321 +639834.178|221757.751|104.321 +639829.192|221762.472|104.376 +639824.208|221767.190|104.419 +639819.228|221771.906|104.412 +639814.257|221776.609|104.242 +639809.279|221781.324|104.257 +639804.256|221786.079|104.245 +639799.279|221790.791|104.245 +639794.265|221795.540|104.111 +639789.293|221800.243|104.038 +639784.267|221805.004|104.208 +639779.244|221809.765|104.394 +639774.221|221814.523|104.528 +639769.204|221819.275|104.644 +639764.138|221824.072|104.714 +639759.146|221828.815|105.671 +639749.051|221838.395|106.778 +639744.046|221843.131|106.674 +639738.989|221847.920|106.778 +639733.935|221852.708|106.830 +639728.928|221857.451|106.900 +639723.874|221862.236|106.988 +639718.823|221867.019|106.967 +639713.819|221871.758|107.076 +639708.771|221876.537|106.994 +639703.721|221881.320|107.058 +639688.575|221895.667|107.339 +639663.347|221919.545|106.796 +639658.299|221924.327|107.052 +639648.210|221933.886|107.421 +639643.166|221938.662|107.369 +639607.824|221972.141|108.280 +639592.676|221986.464|107.171 +639587.622|221991.243|106.714 +639577.497|222000.802|104.976 +639562.354|222015.142|105.181 +639542.341|222034.147|108.384 +639537.312|222038.920|109.030 +639527.311|222048.390|109.161 +639522.270|222053.166|109.329 +639512.224|222062.661|108.323 +639497.142|222076.916|106.903 +639482.015|222091.205|104.906 +639477.022|222095.924|104.379 +639472.023|222100.648|103.797 +639466.997|222105.406|103.641 +639462.020|222110.115|103.562 +639452.080|222119.531|103.775 +639437.157|222133.661|103.931 +639432.256|222138.297|103.669 +639427.273|222143.015|103.617 +639422.353|222147.679|103.897 +639417.424|222152.345|104.025 +639412.462|222157.039|103.620 +639407.582|222161.660|103.821 +639392.763|222175.684|103.233 +639363.164|222203.656|100.295 +639343.410|222222.322|97.993 +639338.451|222227.000|96.997 +639333.522|222231.655|96.418 +639328.666|222236.257|96.683 +639323.832|222240.835|96.695 +639304.401|222259.242|97.405 +639251.997|222308.973|104.236 +639247.151|222313.548|103.455 +639242.262|222318.166|102.776 +639237.488|222322.686|102.718 +639232.734|222327.197|103.282 +639218.188|222340.935|101.407 +639208.633|222349.981|101.496 +639203.838|222354.514|101.041 +639198.992|222359.089|100.167 +639194.082|222363.719|99.243 +639189.312|222368.233|99.072 +639184.630|222372.677|99.612 +639180.012|222377.072|100.673 +639175.364|222381.491|101.508 +639166.107|222390.291|103.102 +639161.422|222394.738|103.687 +639147.609|222407.869|106.144 +639143.031|222412.228|107.147 +639138.346|222416.672|107.409 +639129.107|222425.438|108.207 +639119.732|222434.323|108.094 +639105.641|222447.667|107.582 +639096.210|222456.588|106.671 +639091.468|222461.072|106.086 +639086.755|222465.531|105.720 +639082.052|222469.978|105.126 +639077.337|222474.440|104.787 +639072.777|222478.766|105.165 +639068.227|222483.082|105.287 +639063.639|222487.440|105.824 +639059.140|222491.710|106.311 +639054.700|222495.935|107.168 +639050.176|222500.230|107.842 +639047.104|222500.659|108.137 +639056.114|222492.076|106.668 +639060.628|222487.779|105.997 +639065.264|222483.368|105.476 +639069.848|222479.009|105.281 +639074.490|222474.599|105.150 +639079.154|222470.173|105.165 +639083.893|222465.680|105.711 +639093.449|222456.622|106.744 +639136.045|222416.184|107.598 +639140.717|222411.740|107.305 +639182.749|222371.692|99.740 +639187.519|222367.151|99.164 +639192.335|222362.582|99.344 +639197.361|222357.830|100.490 +639202.284|222353.166|101.230 +639212.016|222343.934|101.877 +639217.012|222339.210|102.919 +639236.486|222320.717|103.068 +639241.323|222316.118|102.892 +639246.248|222311.454|103.519 +639251.208|222306.754|104.056 +639275.476|222283.687|103.087 +639280.362|222279.042|102.587 +639304.371|222256.151|97.320 +639309.260|222251.497|96.896 +639319.132|222242.124|97.103 +639324.024|222237.473|96.738 +639328.968|222232.776|96.411 +639333.891|222228.101|96.448 +639338.932|222223.327|97.320 +639343.955|222218.576|98.606 +639349.003|222213.796|99.688 +639358.964|222204.344|100.279 +639378.956|222185.380|102.233 +639383.933|222180.658|102.690 +639403.922|222161.688|104.074 +639408.856|222157.000|104.074 +639413.828|222152.275|103.934 +639418.830|222147.527|104.342 +639423.798|222142.805|104.208 +639438.712|222128.632|104.074 +639443.689|222123.904|104.166 +639453.696|222114.404|104.556 +639458.630|222109.704|103.955 +639463.602|222104.982|104.041 +639468.610|222100.221|103.919 +639473.581|222095.500|104.068 +639478.625|222090.721|104.723 +639508.743|222062.158|107.902 +639513.815|222057.351|108.628 +639523.836|222047.842|109.335 +639528.826|222043.096|109.222 +639533.809|222038.356|108.884 +639543.822|222028.828|107.994 +639548.800|222024.088|107.412 +639573.860|222000.235|105.037 +639578.862|221995.489|105.290 +639604.023|221971.635|108.314 +639609.016|221966.893|108.573 +639614.051|221962.107|108.469 +639619.087|221957.316|108.149 +639654.258|221923.885|107.259 +639659.296|221919.091|106.967 +639664.337|221914.308|107.250 +639669.330|221909.560|107.159 +639694.488|221885.660|107.332 +639699.487|221880.908|107.140 +639704.531|221876.114|107.134 +639709.573|221871.322|107.186 +639714.572|221866.574|107.159 +639719.570|221861.819|107.089 +639724.618|221857.018|107.015 +639729.620|221852.263|106.958 +639734.618|221847.511|106.976 +639739.620|221842.756|106.982 +639744.625|221837.995|106.833 +639754.659|221828.440|105.891 +639759.743|221823.588|104.790 +639764.754|221818.820|104.705 +639769.719|221814.096|104.562 +639774.733|221809.329|104.495 +639779.747|221804.559|104.373 +639784.721|221799.828|104.190 +639789.738|221795.055|104.050 +639794.704|221790.337|104.156 +639799.718|221785.570|104.217 +639804.686|221780.845|104.260 +639809.663|221776.112|104.123 +639814.631|221771.393|104.300 +639819.603|221766.669|104.348 +639824.580|221761.932|104.294 +639829.503|221757.254|104.406 +639834.480|221752.523|104.440 +639839.415|221747.832|104.403 +639844.398|221743.090|104.324 +639849.342|221738.387|104.160 +639854.280|221733.696|104.175 +639859.233|221728.980|103.885 +639869.197|221719.468|101.654 +639884.056|221705.297|99.118 +639888.981|221700.613|98.841 +639893.901|221695.928|98.652 +639903.716|221686.589|98.103 +639908.598|221681.944|97.911 +639913.463|221677.317|97.957 +639918.428|221672.586|97.326 +639943.020|221649.144|93.546 +639977.203|221616.591|90.651 +639986.911|221607.356|90.288 +639996.463|221598.285|91.196 +640005.930|221589.309|92.574 +640010.627|221584.859|93.400 +640015.419|221580.308|93.748 +640024.825|221571.389|95.284 +640029.531|221566.921|95.564 +640038.943|221557.987|96.613 +640043.668|221553.498|96.738 +640048.374|221549.029|97.079 +640053.101|221544.546|97.686 +640057.777|221540.099|97.865 +640062.489|221535.627|98.198 +640067.229|221531.119|98.280 +640071.874|221526.715|98.819 +640076.568|221522.259|99.344 +640081.000|221518.086|101.761 +640081.073|221514.620|102.590 +640076.608|221518.805|99.581 +640071.810|221523.350|99.075 +640067.019|221527.885|98.512 +640057.378|221537.020|97.957 +640047.737|221546.158|97.466 +640042.900|221550.742|96.978 +640038.090|221555.299|96.683 +640033.219|221559.917|96.512 +640028.492|221564.382|95.439 +640023.627|221568.997|95.281 +640014.005|221578.101|93.854 +640004.367|221587.224|92.644 +639980.202|221610.114|90.581 +639960.716|221628.594|89.934 +639955.763|221633.300|90.492 +639950.838|221637.988|91.394 +639945.833|221642.761|92.748 +639940.886|221647.465|93.427 +639871.678|221713.247|99.987 +639856.676|221727.548|103.657 +639851.704|221732.275|104.217 +639846.815|221736.911|104.153 +639841.868|221741.608|104.324 +639836.931|221746.299|104.385 +639831.993|221750.984|104.440 +639827.061|221755.663|104.397 +639822.133|221760.338|104.342 +639817.201|221765.017|104.321 +639812.230|221769.732|104.205 +639807.301|221774.411|104.230 +639802.327|221779.132|104.233 +639797.355|221783.848|104.166 +639792.436|221788.514|104.053 +639787.465|221793.229|104.010 +639782.487|221797.957|104.254 +639777.516|221802.678|104.382 +639772.545|221807.393|104.434 +639767.528|221812.157|104.534 +639762.559|221816.876|104.687 +639757.545|221821.634|104.748 +639752.562|221826.376|105.543 +639742.522|221835.920|106.531 +639737.557|221840.638|106.921 +639732.503|221845.439|107.049 +639727.547|221850.139|106.985 +639722.545|221854.887|107.067 +639717.495|221859.679|107.131 +639712.493|221864.428|107.195 +639707.491|221869.177|107.317 +639702.492|221873.919|107.332 +639697.494|221878.665|107.366 +639692.495|221883.405|107.345 +639672.411|221902.467|107.528 +639667.416|221907.207|107.534 +639657.379|221916.722|107.073 +639652.337|221921.511|107.177 +639647.345|221926.260|107.784 +639642.303|221931.039|107.570 +639637.308|221935.782|107.741 +639632.272|221940.564|108.091 +639627.234|221945.349|108.244 +639622.238|221950.086|108.030 +639617.200|221954.871|108.265 +639612.162|221959.657|108.479 +639597.083|221973.958|108.094 +639586.982|221983.526|107.022 +639581.931|221988.311|106.577 +639576.917|221993.054|105.808 +639546.739|222021.717|107.531 +639541.716|222026.496|108.283 +639531.746|222035.966|109.116 +639526.708|222040.749|109.326 +639521.712|222045.488|109.372 +639511.669|222054.992|108.265 +639506.624|222059.781|108.320 +639491.528|222074.064|106.375 +639471.444|222093.080|104.458 +639466.412|222097.847|104.083 +639436.459|222126.258|104.431 +639421.545|222140.409|104.647 +639411.609|222149.825|104.257 +639406.638|222154.543|104.461 +639401.691|222159.231|104.284 +639396.719|222163.949|104.483 +639381.796|222178.080|103.081 +639376.871|222182.743|102.693 +639357.040|222201.516|100.484 +639337.152|222220.328|97.634 +639332.211|222225.001|96.841 +639322.452|222234.255|96.783 +639317.550|222238.909|97.067 +639307.788|222248.169|97.064 +639302.932|222252.777|97.378 +639293.361|222261.882|99.005 +639274.363|222279.972|103.190 +639255.191|222298.180|104.769 +639250.378|222302.743|104.681 +639245.505|222307.355|104.047 +639240.625|222311.973|103.401 +639235.821|222316.529|103.474 +639216.661|222334.692|103.181 +639207.060|222343.788|102.361 +639202.250|222348.338|101.736 +639197.444|222352.892|101.550 +639192.588|222357.479|100.630 +639187.699|222362.100|99.438 +639182.947|222366.605|99.411 +639178.272|222371.046|99.990 +639173.630|222375.459|100.846 +639169.064|222379.806|101.925 +639164.416|222384.223|102.748 +639159.822|222388.590|103.620 +639155.198|222392.982|104.263 +639150.617|222397.341|105.223 +639141.482|222406.034|107.369 +639136.807|222410.466|107.311 +639118.208|222428.108|108.341 +639113.532|222432.539|108.381 +639099.475|222445.853|107.720 +639090.072|222454.750|106.979 +639085.372|222459.194|106.345 +639075.996|222468.061|105.315 +639071.412|222472.410|105.491 +639066.800|222476.781|105.519 +639062.259|222481.088|105.699 +639057.711|222485.404|106.171 +639053.233|222489.659|106.772 +639035.689|222503.119|109.274 +639040.176|222498.846|108.713 +639053.630|222486.014|106.473 +639058.162|222481.698|105.927 +639062.783|222477.299|105.656 +639067.379|222472.929|105.546 +639072.043|222468.494|105.592 +639081.534|222459.487|106.470 +639086.240|222455.019|106.854 +639091.001|222450.501|107.290 +639095.753|222445.990|107.713 +639100.450|222441.525|107.793 +639109.935|222432.518|108.290 +639114.703|222427.989|108.585 +639133.466|222410.134|107.473 +639152.059|222392.400|104.263 +639156.771|222387.917|103.943 +639161.432|222383.473|103.266 +639166.074|222379.041|102.066 +639170.710|222374.612|100.822 +639175.404|222370.135|100.036 +639180.131|222365.633|99.517 +639184.974|222361.030|99.548 +639189.918|222356.352|100.810 +639194.877|222351.655|101.852 +639199.660|222347.107|101.867 +639204.604|222342.419|102.453 +639214.397|222333.123|103.324 +639228.960|222319.288|104.004 +639233.840|222314.649|103.763 +639238.677|222310.046|103.614 +639243.636|222305.340|104.175 +639301.753|222249.976|97.390 +639306.660|222245.307|97.204 +639316.447|222236.001|97.045 +639321.406|222231.283|96.954 +639326.301|222226.628|96.658 +639331.236|222221.938|96.884 +639341.349|222212.373|99.103 +639346.385|222207.606|100.036 +639351.322|222202.921|100.420 +639356.324|222198.184|101.020 +639371.320|222183.962|102.404 +639376.319|222179.229|103.141 +639381.333|222174.474|103.477 +639386.347|222169.716|103.885 +639396.311|222160.264|104.537 +639406.284|222150.797|104.733 +639411.249|222146.079|104.541 +639416.214|222141.373|105.104 +639436.130|222122.451|104.763 +639446.088|222112.999|105.178 +639475.940|222084.637|104.641 +639521.060|222041.870|109.548 +639530.987|222032.437|109.109 +639545.971|222018.178|107.640 +639555.917|222008.705|105.964 +639560.943|222003.920|105.339 +639565.929|221999.177|104.885 +639570.931|221994.431|105.266 +639575.933|221989.686|105.586 +639580.993|221984.897|106.595 +639585.997|221980.154|107.168 +639590.996|221975.415|107.686 +639606.032|221961.156|108.805 +639611.019|221956.417|108.631 +639616.008|221951.677|108.530 +639620.998|221946.937|108.536 +639625.984|221942.198|108.360 +639630.974|221937.455|108.104 +639636.006|221932.673|107.966 +639640.950|221927.979|108.085 +639645.988|221923.190|107.845 +639650.978|221918.441|107.339 +639655.971|221913.702|107.436 +639665.998|221904.183|107.845 +639670.942|221899.492|108.064 +639680.979|221889.949|107.427 +639685.972|221885.209|107.555 +639691.013|221880.418|107.387 +639701.002|221870.932|107.494 +639706.001|221866.186|107.406 +639711.045|221861.395|107.342 +639716.044|221856.646|107.253 +639721.045|221851.897|107.177 +639731.046|221842.397|107.052 +639736.051|221837.645|106.976 +639741.056|221832.890|106.845 +639746.070|221828.123|106.391 +639751.114|221823.310|104.967 +639756.125|221818.549|104.824 +639761.139|221813.785|104.690 +639766.153|221809.021|104.516 +639771.118|221804.306|104.458 +639776.086|221799.588|104.345 +639781.103|221794.823|104.303 +639786.081|221790.093|104.010 +639791.052|221785.372|103.928 +639796.063|221780.617|104.105 +639801.034|221775.895|104.050 +639806.006|221771.177|104.117 +639810.974|221766.459|104.196 +639815.945|221761.743|104.303 +639820.919|221757.019|104.333 +639825.848|221752.340|104.367 +639830.868|221747.576|104.467 +639835.806|221742.888|104.388 +639840.792|221738.149|104.245 +639845.782|221733.412|104.144 +639850.720|221728.724|104.153 +639865.838|221714.292|99.789 +639895.678|221685.918|97.283 +639910.415|221671.931|97.484 +639920.275|221662.552|96.594 +639940.154|221643.609|92.620 +639950.027|221634.209|90.940 +639959.826|221624.894|90.343 +639974.353|221611.111|90.852 +639979.205|221606.493|90.376 +639988.926|221597.267|90.492 +639993.662|221592.786|91.391 +640003.141|221583.816|93.144 +640012.718|221574.736|93.900 +640017.464|221570.243|94.717 +640036.450|221552.248|96.640 +640041.129|221547.819|97.244 +640045.887|221543.305|97.521 +640055.351|221534.332|98.222 +640059.996|221529.927|98.704 +640064.784|221525.386|98.807 +640069.439|221520.972|99.255 +640074.126|221516.531|99.844 +640078.293|221509.161|100.289 +640068.661|221518.275|99.533 +640063.815|221522.856|98.993 +640039.599|221545.771|97.378 +640034.740|221550.370|97.079 +640029.891|221554.958|96.674 +640020.186|221564.132|95.534 +640015.303|221568.741|94.552 +640010.451|221573.334|94.269 +640000.679|221582.569|92.903 +639990.892|221591.814|91.209 +639981.059|221601.120|90.590 +639976.103|221605.814|90.486 +639971.067|221610.590|90.764 +639966.133|221615.259|90.450 +639951.203|221629.405|90.584 +639946.159|221634.194|91.135 +639941.185|221638.912|91.468 +639936.079|221643.776|92.922 +639915.865|221662.994|96.637 +639910.863|221667.743|97.012 +639905.849|221672.504|97.588 +639895.937|221681.892|97.143 +639890.960|221686.613|97.295 +639885.933|221691.380|97.484 +639865.878|221710.424|99.466 +639860.879|221715.173|100.215 +639845.633|221729.694|104.126 +639840.640|221734.427|104.184 +639835.644|221739.161|104.306 +639830.655|221743.894|104.419 +639825.671|221748.616|104.358 +639820.685|221753.343|104.446 +639815.662|221758.101|104.281 +639810.687|221762.816|104.199 +639805.664|221767.574|104.059 +639800.693|221772.287|103.949 +639795.719|221776.999|103.858 +639790.699|221781.757|103.785 +639785.669|221786.527|103.946 +639780.683|221791.257|104.278 +639775.711|221795.970|104.291 +639770.691|221800.731|104.370 +639765.717|221805.449|104.489 +639760.697|221810.210|104.638 +639755.726|221814.925|104.787 +639750.706|221819.683|104.970 +639745.673|221824.465|105.677 +639740.687|221829.211|106.699 +639735.673|221833.966|106.921 +639725.752|221843.375|107.070 +639720.741|221848.127|107.287 +639715.739|221852.867|107.183 +639710.777|221857.570|107.369 +639705.726|221862.364|107.540 +639690.767|221876.541|107.540 +639680.766|221886.023|107.619 +639670.766|221895.505|107.866 +639660.722|221905.027|107.991 +639650.774|221914.452|107.637 +639645.775|221919.188|107.531 +639640.779|221923.928|107.814 +639630.788|221933.407|108.369 +639620.800|221942.880|108.597 +639615.804|221947.614|108.661 +639610.857|221952.308|108.838 +639605.861|221957.041|108.674 +639600.866|221961.778|108.902 +639595.913|221966.469|108.530 +639590.862|221971.248|108.021 +639585.900|221975.939|107.357 +639575.878|221985.415|106.077 +639570.916|221990.112|105.635 +639560.903|221999.595|105.214 +639550.988|222009.022|106.793 +639536.099|222023.180|108.945 +639531.109|222027.917|109.167 +639526.162|222032.614|109.317 +639521.172|222037.350|109.536 +639516.177|222042.093|109.649 +639496.200|222061.018|107.860 +639481.192|222075.225|105.940 +639471.210|222084.674|104.763 +639466.247|222089.383|104.864 +639461.288|222094.092|104.989 +639446.445|222108.180|105.272 +639441.482|222112.892|105.415 +639431.573|222122.289|105.229 +639416.787|222136.319|105.199 +639411.819|222141.034|105.342 +639406.854|222145.737|104.845 +639401.919|222150.419|104.848 +639382.104|222169.201|103.958 +639372.186|222178.595|102.879 +639357.339|222192.671|102.264 +639347.366|222202.101|100.285 +639342.355|222206.844|99.673 +639337.378|222211.553|98.896 +639332.339|222216.311|97.463 +639327.356|222221.026|96.747 +639322.482|222225.650|96.783 +639317.575|222230.310|96.960 +639312.738|222234.907|97.439 +639302.944|222244.194|97.125 +639298.074|222248.824|97.783 +639288.558|222257.892|99.953 +639274.241|222271.526|103.004 +639250.299|222294.282|105.278 +639245.368|222298.955|104.970 +639240.521|222303.542|104.138 +639235.654|222308.156|104.038 +639230.844|222312.719|104.065 +639225.979|222317.334|104.044 +639211.452|222331.108|103.422 +639201.738|222340.310|102.495 +639187.205|222354.081|101.438 +639177.397|222363.356|99.670 +639172.673|222367.843|99.871 +639168.055|222372.247|100.886 +639163.455|222376.633|102.059 +639144.881|222394.314|105.077 +639131.092|222407.448|107.640 +639117.159|222420.689|108.558 +639112.465|222425.151|108.765 +639107.768|222429.607|108.640 +639103.114|222434.021|108.506 +639088.962|222447.441|107.598 +639079.556|222456.357|106.881 +639074.841|222460.828|106.467 +639070.107|222465.312|105.988 +639065.474|222469.707|105.848 +639060.817|222474.133|105.882 +639056.260|222478.455|105.973 +639051.682|222482.813|106.540 +639047.211|222487.068|107.171 +639038.237|222495.612|108.600 +639033.751|222499.879|109.167 +639028.996|222501.793|109.768 +639042.504|222488.918|107.793 +639046.936|222484.694|106.903 +639051.533|222480.314|106.452 +639056.089|222475.977|106.068 +639060.677|222471.612|105.897 +639065.349|222467.174|105.961 +639069.997|222462.757|106.223 +639074.716|222458.280|106.628 +639079.455|222453.784|107.217 +639084.110|222449.361|107.265 +639088.874|222444.841|107.732 +639093.601|222440.358|108.323 +639102.980|222431.442|108.405 +639107.717|222426.946|108.799 +639112.447|222422.454|108.829 +639117.110|222418.013|108.418 +639131.098|222404.696|107.256 +639140.412|222395.823|106.119 +639163.669|222373.637|101.553 +639168.326|222369.193|100.471 +639173.035|222364.706|99.776 +639177.857|222360.125|100.011 +639182.725|222355.507|100.639 +639187.687|222350.816|102.044 +639211.958|222327.776|103.675 +639231.389|222309.318|104.467 +639236.211|222304.731|104.178 +639246.008|222295.434|105.074 +639250.881|222290.807|105.333 +639265.411|222276.981|104.489 +639270.200|222272.412|103.550 +639299.049|222244.889|97.475 +639303.944|222240.229|97.137 +639308.891|222235.532|97.378 +639318.709|222226.196|97.070 +639323.656|222221.486|96.847 +639328.660|222216.738|97.298 +639333.665|222211.998|98.371 +639338.710|222207.219|99.414 +639343.763|222202.436|100.618 +639353.800|222192.920|102.325 +639378.675|222169.295|103.885 +639383.643|222164.580|104.333 +639388.648|222159.825|104.662 +639393.583|222155.134|104.705 +639398.579|222150.389|104.967 +639403.562|222145.652|105.098 +639408.539|222140.922|105.144 +639413.541|222136.173|105.592 +639418.531|222131.421|105.123 +639443.515|222107.668|105.174 +639448.493|222102.937|105.440 +639483.527|222069.641|106.177 +639488.553|222064.871|106.766 +639498.611|222055.334|108.198 +639503.619|222050.576|108.530 +639513.647|222041.060|109.561 +639518.640|222036.311|109.588 +639558.553|221998.290|105.376 +639568.599|221988.747|105.854 +639588.692|221969.678|107.848 +639603.764|221955.365|108.869 +639608.751|221950.622|108.914 +639618.818|221941.049|108.750 +639633.824|221926.778|108.479 +639643.797|221917.280|107.768 +639648.832|221912.495|107.890 +639658.811|221903.012|108.213 +639668.790|221893.518|107.872 +639673.780|221888.775|107.924 +639678.773|221884.026|107.796 +639683.762|221879.284|107.866 +639703.736|221860.289|107.585 +639708.732|221855.537|107.448 +639713.730|221850.782|107.238 +639718.723|221846.036|107.332 +639723.679|221841.318|107.009 +639728.681|221836.566|106.936 +639738.681|221827.053|106.747 +639743.710|221822.252|105.620 +639748.731|221817.470|104.998 +639753.693|221812.752|104.818 +639758.704|221807.985|104.653 +639763.669|221803.263|104.492 +639768.634|221798.542|104.373 +639773.645|221793.778|104.303 +639778.610|221789.057|104.269 +639783.581|221784.326|104.013 +639788.559|221779.590|103.727 +639793.478|221774.914|103.782 +639803.409|221765.474|103.903 +639808.368|221760.768|104.193 +639813.336|221756.047|104.294 +639818.256|221751.371|104.385 +639823.178|221746.692|104.467 +639828.110|221742.005|104.434 +639833.044|221737.311|104.315 +639838.019|221732.583|104.385 +639842.917|221727.926|104.144 +639867.886|221704.093|98.582 +639877.789|221694.669|97.780 +639882.757|221689.939|97.536 +639887.680|221685.257|97.317 +639892.602|221680.575|97.158 +639897.562|221675.860|97.152 +639902.411|221671.254|97.408 +639907.364|221666.536|96.878 +639912.299|221661.842|96.652 +639937.167|221638.119|91.663 +639947.012|221628.747|90.867 +639990.611|221587.309|91.434 +640000.069|221578.360|93.854 +640004.888|221573.776|93.848 +640009.634|221569.280|94.644 +640014.404|221564.754|95.189 +640019.107|221560.295|95.912 +640023.856|221555.793|96.686 +640028.656|221551.236|96.966 +640033.396|221546.737|97.375 +640042.881|221537.733|98.182 +640061.870|221519.698|99.359 +640076.025|221506.269|100.670 +640080.704|221501.831|100.938 +640077.720|221501.846|100.916 +640073.002|221506.318|100.554 +640058.734|221519.829|99.240 +640049.160|221528.912|99.030 +640025.188|221551.623|96.884 +640015.638|221560.663|95.723 +640010.911|221565.129|94.674 +640001.203|221574.337|94.244 +639981.933|221592.561|90.879 +639977.069|221597.169|90.322 +639967.190|221606.551|90.916 +639947.521|221625.205|90.364 +639932.556|221639.433|92.019 +639907.367|221663.412|96.552 +639902.353|221668.179|97.164 +639897.388|221672.888|97.116 +639892.374|221677.646|97.100 +639887.396|221682.367|97.241 +639882.373|221687.137|97.457 +639877.353|221691.904|97.637 +639872.382|221696.623|97.829 +639837.004|221730.291|104.175 +639832.011|221735.034|104.370 +639826.976|221739.810|104.419 +639821.947|221744.583|104.452 +639816.969|221749.301|104.333 +639811.943|221754.069|104.306 +639806.938|221758.811|103.846 +639801.918|221763.569|103.721 +639796.852|221768.376|103.608 +639791.829|221773.143|103.666 +639786.803|221777.913|103.772 +639781.774|221782.689|104.056 +639776.702|221787.505|104.233 +639771.679|221792.269|104.361 +639766.616|221797.073|104.348 +639761.599|221801.834|104.437 +639756.533|221806.644|104.595 +639751.468|221811.450|104.787 +639746.454|221816.214|104.973 +639741.382|221821.033|105.543 +639736.298|221825.874|106.613 +639726.236|221835.423|106.799 +639721.183|221840.224|106.991 +639716.129|221845.018|107.125 +639706.071|221854.567|107.540 +639701.023|221859.359|107.643 +639690.974|221868.890|107.717 +639675.837|221883.258|108.098 +639670.842|221887.995|107.915 +639665.797|221892.783|108.104 +639655.711|221902.360|108.482 +639650.716|221907.097|108.430 +639645.674|221911.876|108.110 +639640.633|221916.655|107.936 +639630.550|221926.229|108.503 +639620.522|221935.748|108.698 +639605.450|221950.052|108.954 +639600.408|221954.832|108.890 +639590.414|221964.305|108.469 +639585.360|221969.087|107.762 +639580.316|221973.872|107.573 +639575.308|221978.612|106.848 +639540.363|222011.787|108.271 +639530.435|222021.214|109.094 +639510.550|222040.078|109.573 +639500.553|222049.539|108.448 +639495.575|222054.251|107.966 +639490.583|222058.970|107.122 +639485.608|222063.682|106.759 +639480.640|222068.391|106.601 +639465.735|222082.500|105.306 +639445.920|222101.294|105.531 +639426.224|222119.973|105.583 +639416.400|222129.284|105.357 +639406.589|222138.587|105.461 +639401.660|222143.265|105.498 +639391.879|222152.537|105.446 +639386.890|222157.256|104.705 +639381.982|222161.904|104.510 +639377.063|222166.564|104.169 +639372.158|222171.213|104.031 +639367.239|222175.873|103.760 +639332.601|222208.630|98.469 +639327.621|222213.330|97.213 +639322.720|222217.972|96.896 +639317.819|222222.623|97.158 +639312.988|222227.204|97.189 +639308.074|222231.865|97.350 +639303.243|222236.449|97.378 +639298.369|222241.073|97.500 +639293.553|222245.642|97.731 +639269.840|222268.228|103.736 +639255.520|222281.834|105.339 +639250.735|222286.372|105.467 +639245.901|222290.960|105.607 +639236.187|222300.155|104.672 +639231.435|222304.663|104.739 +639226.564|222309.281|104.641 +639221.788|222313.807|104.562 +639212.153|222322.936|104.166 +639207.328|222327.508|104.150 +639197.642|222336.677|103.068 +639178.244|222355.029|100.688 +639173.389|222359.625|100.228 +639168.625|222364.142|100.112 +639163.903|222368.629|100.758 +639159.344|222372.969|101.907 +639136.170|222395.015|106.244 +639126.919|222403.809|107.589 +639122.262|222408.229|108.067 +639117.629|222412.627|108.366 +639112.956|222417.065|108.728 +639108.332|222421.454|109.131 +639103.629|222425.910|108.994 +639098.893|222430.397|108.637 +639094.211|222434.835|108.704 +639089.465|222439.327|108.351 +639084.768|222443.777|108.021 +639070.628|222457.164|106.848 +639065.901|222461.639|106.421 +639061.274|222466.022|106.363 +639056.647|222470.411|106.302 +639052.017|222474.803|106.558 +639047.415|222479.171|106.695 +639042.919|222483.441|107.217 +639029.438|222496.252|109.158 +639024.850|222500.608|109.463 +639021.921|222500.864|110.256 +639026.451|222496.548|109.634 +639040.008|222483.627|107.646 +639044.577|222479.278|106.991 +639049.164|222474.913|106.787 +639053.794|222470.509|106.543 +639058.458|222466.074|106.552 +639063.109|222461.654|106.485 +639082.098|222443.631|108.015 +639086.856|222439.117|108.445 +639091.623|222434.591|108.640 +639096.335|222430.113|108.823 +639101.105|222425.584|109.103 +639110.536|222416.620|108.945 +639115.199|222412.179|108.533 +639119.899|222407.710|108.405 +639124.551|222403.273|107.592 +639129.205|222398.844|107.162 +639133.868|222394.400|106.439 +639157.103|222372.241|101.998 +639161.749|222367.806|100.810 +639166.464|222363.313|100.167 +639171.277|222358.738|100.319 +639176.132|222354.133|100.810 +639181.119|222349.414|102.005 +639195.716|222335.561|103.276 +639205.490|222326.289|104.358 +639210.294|222321.720|104.251 +639220.017|222312.488|104.641 +639224.925|222307.830|105.086 +639229.771|222303.225|105.004 +639234.602|222298.628|104.821 +639249.281|222284.690|105.641 +639254.088|222280.118|105.284 +639263.723|222270.943|104.394 +639268.557|222266.341|103.891 +639278.164|222257.182|102.276 +639282.913|222252.646|100.904 +639292.438|222243.542|97.899 +639302.198|222234.255|97.390 +639307.074|222229.622|97.381 +639312.034|222224.903|97.262 +639316.904|222220.276|97.213 +639321.848|222215.573|96.936 +639326.804|222210.870|97.390 +639331.833|222206.115|98.746 +639336.908|222201.318|100.127 +639351.923|222187.096|102.687 +639356.888|222182.384|102.937 +639361.887|222177.647|103.641 +639371.799|222168.238|104.019 +639376.776|222163.516|104.556 +639381.808|222158.749|105.232 +639386.780|222154.034|105.775 +639396.713|222144.604|106.138 +639401.651|222139.903|105.531 +639406.644|222135.164|105.808 +639411.624|222130.436|105.906 +639416.528|222125.770|105.571 +639421.503|222121.045|105.638 +639426.462|222116.330|105.431 +639436.426|222106.872|105.930 +639441.449|222102.105|106.113 +639446.405|222097.393|105.943 +639451.391|222092.665|106.385 +639461.325|222083.214|105.650 +639466.324|222078.462|105.446 +639481.353|222064.206|106.775 +639486.319|222059.494|107.049 +639491.393|222054.684|107.643 +639496.417|222049.920|108.253 +639501.446|222045.156|109.042 +639506.466|222040.398|109.722 +639511.465|222035.653|109.829 +639516.451|222030.910|109.634 +639521.496|222026.121|109.667 +639556.380|221992.907|105.415 +639596.571|221954.789|109.192 +639601.509|221950.092|108.933 +639616.520|221935.830|108.841 +639626.588|221926.260|108.463 +639636.567|221916.774|108.073 +639641.602|221911.989|108.204 +639646.546|221907.301|108.579 +639656.620|221897.727|108.351 +639661.564|221893.027|108.201 +639666.605|221888.236|108.079 +639676.587|221878.753|108.125 +639686.573|221869.265|108.015 +639691.571|221864.510|107.707 +639701.563|221855.015|107.585 +639706.561|221850.261|107.302 +639711.557|221845.512|107.317 +639716.571|221840.733|106.418 +639726.514|221831.290|106.784 +639736.484|221821.807|106.171 +639741.467|221817.050|105.037 +639746.426|221812.334|104.940 +639751.437|221807.570|104.766 +639756.402|221802.849|104.586 +639761.368|221798.128|104.434 +639766.333|221793.409|104.403 +639771.301|221788.685|104.208 +639776.214|221784.015|104.275 +639781.192|221779.282|103.974 +639786.169|221774.545|103.715 +639791.147|221769.815|103.504 +639796.072|221765.127|103.367 +639800.989|221760.463|103.602 +639805.987|221755.699|102.971 +639810.876|221751.066|103.779 +639815.781|221746.418|104.330 +639820.703|221741.736|104.391 +639825.632|221737.058|104.452 +639830.573|221732.358|104.227 +639840.475|221722.918|102.599 +639850.513|221713.314|98.838 +639855.490|221708.577|98.313 +639860.385|221703.926|98.362 +639865.308|221699.241|98.033 +639870.224|221694.565|97.826 +639875.144|221689.890|97.612 +639880.063|221685.208|97.381 +639884.986|221680.529|97.225 +639889.859|221675.896|97.079 +639894.773|221671.224|97.049 +639904.545|221661.927|96.558 +639909.479|221657.236|96.357 +639914.435|221652.506|95.229 +639929.325|221638.299|91.940 +639934.257|221633.602|91.379 +639939.149|221628.945|90.773 +639948.917|221619.655|90.428 +639953.806|221615.012|90.565 +639973.250|221596.529|90.306 +639978.072|221591.954|90.764 +639982.875|221587.398|91.401 +639987.731|221582.786|91.513 +639992.409|221578.366|93.025 +639997.225|221573.800|93.571 +640006.741|221564.778|94.878 +640016.294|221555.726|96.360 +640025.813|221546.691|97.210 +640035.322|221537.669|98.234 +640040.050|221533.186|98.798 +640059.097|221515.105|99.904 +640073.285|221501.633|100.910 +640071.502|221500.121|100.932 +640062.108|221509.012|100.270 +640057.384|221513.480|99.981 +640043.214|221526.895|99.228 +640033.807|221535.786|97.972 +640019.506|221549.319|96.853 +640014.824|221553.748|96.308 +640010.015|221558.292|95.616 +640005.290|221562.757|95.015 +640000.514|221567.275|94.479 +639995.738|221571.795|93.961 +639990.946|221576.327|93.610 +639981.461|221585.279|91.355 +639971.872|221594.338|89.697 +639952.295|221612.903|90.605 +639942.544|221622.145|90.526 +639932.714|221631.466|90.913 +639927.688|221636.245|91.983 +639917.709|221645.736|94.007 +639892.816|221669.395|97.012 +639887.896|221674.065|97.064 +639882.922|221678.783|97.189 +639877.951|221683.501|97.329 +639872.976|221688.223|97.536 +639868.005|221692.944|97.780 +639863.037|221697.656|97.945 +639858.023|221702.417|98.179 +639853.058|221707.126|98.368 +639848.047|221711.887|98.627 +639822.803|221735.924|104.324 +639817.820|221740.654|104.391 +639802.860|221754.815|102.767 +639797.809|221759.613|103.324 +639792.792|221764.368|103.190 +639787.763|221769.141|103.349 +639782.725|221773.929|103.852 +639777.699|221778.700|104.041 +639772.679|221783.464|104.138 +639767.662|221788.221|104.144 +639762.593|221793.034|104.406 +639757.576|221797.792|104.455 +639752.559|221802.556|104.635 +639747.496|221807.360|104.812 +639742.433|221812.167|105.004 +639737.371|221816.970|105.239 +639732.287|221821.814|106.442 +639727.227|221826.617|106.714 +639722.216|221831.375|107.049 +639712.139|221840.912|105.812 +639702.011|221850.547|107.537 +639686.868|221864.918|107.957 +639681.824|221869.707|108.119 +639676.776|221874.495|108.329 +639671.735|221879.275|108.131 +639661.603|221888.882|108.015 +639656.562|221893.670|108.265 +639636.351|221912.842|108.402 +639631.309|221917.618|108.241 +639621.235|221927.183|108.741 +639616.194|221931.965|108.802 +639601.033|221946.352|109.277 +639590.954|221955.911|109.158 +639570.760|221975.034|107.308 +639535.696|222008.324|109.170 +639530.658|222013.109|109.277 +639525.665|222017.852|109.369 +639520.676|222022.592|109.585 +639515.674|222027.335|109.463 +639510.639|222032.120|109.670 +639505.682|222036.823|109.548 +639495.664|222046.324|109.018 +639490.674|222051.045|108.152 +639485.654|222055.803|107.707 +639480.619|222060.570|107.034 +639475.650|222065.282|106.787 +639460.721|222079.440|105.839 +639455.750|222084.155|105.723 +639445.905|222093.513|106.497 +639440.940|222098.225|106.500 +639435.969|222102.943|106.461 +639431.058|222107.610|106.622 +639426.111|222112.298|106.211 +639421.161|222116.989|105.799 +639416.245|222121.658|105.970 +639411.325|222126.331|106.049 +639406.415|222130.994|106.366 +639401.511|222135.645|105.994 +639396.597|222140.312|106.299 +639391.724|222144.942|106.455 +639386.771|222149.639|106.156 +639352.346|222182.268|103.279 +639337.509|222196.316|101.179 +639332.580|222200.973|99.801 +639327.545|222205.728|98.353 +639322.634|222210.373|97.326 +639317.739|222215.012|97.106 +639312.884|222219.627|97.332 +639308.019|222224.248|97.448 +639298.311|222233.462|97.503 +639288.753|222242.557|98.701 +639265.103|222265.097|104.224 +639260.367|222269.602|104.775 +639255.566|222274.168|105.174 +639241.253|222287.768|105.930 +639236.367|222292.398|105.601 +639231.557|222296.955|105.132 +639226.793|222301.487|105.498 +639222.029|222306.008|105.479 +639217.137|222310.647|105.199 +639212.367|222315.167|104.772 +639207.530|222319.757|104.586 +639202.796|222324.253|104.928 +639198.008|222328.798|104.790 +639193.131|222333.412|103.983 +639188.263|222338.021|103.260 +639183.472|222342.562|102.818 +639178.607|222347.171|102.181 +639173.761|222351.755|101.364 +639168.896|222356.358|100.429 +639164.126|222360.881|100.273 +639159.441|222365.340|100.788 +639154.796|222369.763|101.630 +639131.771|222391.687|105.949 +639122.554|222400.465|107.509 +639117.973|222404.821|108.171 +639108.719|222413.621|109.177 +639104.105|222418.004|109.271 +639099.438|222422.432|109.384 +639094.705|222426.922|109.036 +639089.986|222431.396|108.835 +639085.329|222435.816|108.728 +639080.611|222440.284|108.238 +639075.929|222444.725|108.012 +639071.198|222449.206|107.512 +639066.562|222453.604|107.323 +639061.814|222458.100|106.747 +639057.217|222462.468|106.842 +639052.624|222466.827|107.003 +639048.009|222471.210|107.022 +639043.413|222475.574|107.180 +639038.862|222479.899|107.656 +639034.378|222484.167|108.232 +639029.928|222488.403|109.030 +639021.019|222496.886|110.606 +639016.468|222501.205|110.530 +639014.377|222500.736|110.853 +639018.992|222496.353|111.014 +639032.449|222483.508|108.393 +639036.975|222479.195|107.777 +639041.538|222474.849|107.412 +639046.196|222470.417|107.329 +639050.853|222465.988|107.281 +639055.489|222461.575|107.110 +639074.371|222443.637|108.180 +639079.099|222439.145|108.390 +639088.633|222430.092|109.082 +639093.385|222425.575|109.216 +639102.855|222416.568|109.301 +639107.561|222412.090|109.177 +639116.903|222403.190|108.125 +639126.178|222394.345|106.647 +639158.911|222363.118|100.599 +639163.684|222358.574|100.420 +639168.604|222353.907|101.005 +639173.505|222349.259|101.886 +639178.455|222344.562|102.419 +639183.283|222339.975|102.767 +639188.233|222335.278|103.355 +639207.816|222316.685|105.040 +639227.317|222298.153|105.635 +639232.148|222293.553|105.467 +639241.972|222284.227|106.186 +639266.140|222261.208|104.001 +639270.931|222256.636|103.077 +639295.010|222233.645|97.670 +639309.726|222219.652|97.542 +639319.577|222210.276|97.106 +639329.685|222200.699|99.289 +639349.765|222181.670|103.199 +639364.709|222167.482|104.748 +639399.527|222134.390|106.186 +639409.500|222124.910|106.628 +639434.399|222101.236|106.887 +639439.352|222096.521|106.714 +639449.352|222087.002|106.360 +639454.296|222082.296|106.007 +639459.301|222077.535|105.973 +639464.315|222072.768|106.116 +639469.338|222067.998|106.546 +639474.346|222063.237|106.625 +639484.453|222053.645|107.970 +639489.473|222048.881|108.475 +639494.493|222044.114|109.064 +639499.501|222039.359|109.359 +639504.552|222034.558|109.588 +639509.550|222029.806|109.740 +639514.537|222025.061|109.512 +639519.569|222020.272|109.308 +639524.556|222015.527|109.109 +639529.539|222010.781|108.893 +639534.578|222005.989|108.826 +639539.573|222001.241|109.012 +639544.609|221996.449|108.951 +639554.597|221986.921|107.211 +639599.771|221943.993|109.436 +639614.826|221929.667|109.018 +639619.858|221924.879|108.820 +639624.887|221920.084|108.253 +639629.877|221915.345|108.512 +639634.912|221910.556|108.643 +639644.937|221901.025|108.744 +639655.007|221891.439|108.451 +639675.018|221872.404|108.186 +639680.059|221867.610|108.125 +639685.052|221862.858|107.994 +639695.046|221853.348|107.552 +639700.090|221848.545|107.268 +639710.070|221839.026|105.415 +639715.068|221834.277|105.528 +639720.043|221829.571|106.793 +639725.041|221824.816|106.732 +639730.001|221820.098|106.540 +639735.033|221815.297|105.363 +639740.044|221810.527|105.040 +639744.960|221805.851|104.876 +639749.971|221801.081|104.687 +639754.936|221796.357|104.483 +639759.901|221791.635|104.376 +639764.870|221786.908|104.196 +639769.838|221782.186|104.111 +639774.803|221777.465|104.068 +639779.771|221772.741|104.038 +639784.703|221768.047|103.705 +639789.696|221763.292|103.160 +639794.667|221758.564|103.123 +639799.605|221753.864|102.821 +639804.543|221749.167|102.599 +639809.471|221744.480|102.541 +639814.321|221739.901|104.291 +639819.246|221735.217|104.318 +639829.195|221725.716|101.678 +639839.183|221716.170|98.667 +639844.078|221711.515|98.633 +639848.986|221706.846|98.457 +639853.945|221702.128|98.256 +639858.812|221697.498|97.996 +639863.729|221692.819|97.771 +639868.596|221688.189|97.594 +639873.516|221683.510|97.423 +639878.387|221678.877|97.271 +639883.257|221674.244|97.143 +639888.134|221669.602|96.945 +639893.008|221664.966|96.829 +639902.804|221655.639|96.030 +639917.587|221641.542|93.293 +639927.392|221632.191|91.553 +639932.300|221627.521|91.330 +639942.062|221618.222|90.407 +639946.909|221613.616|90.443 +639961.445|221599.794|90.181 +639980.641|221581.561|91.300 +639985.298|221577.153|92.522 +639999.530|221563.663|94.921 +640004.260|221559.173|95.369 +640008.985|221554.689|95.878 +640013.742|221550.181|96.576 +640023.237|221541.165|97.228 +640037.389|221527.736|98.707 +640046.829|221518.772|99.542 +640051.593|221514.248|99.825 +640056.268|221509.804|100.014 +640061.029|221505.287|100.365 +640070.451|221496.344|101.090 +640075.129|221491.900|101.343 +640079.747|221487.536|102.553 +640079.948|221484.759|101.953 +640075.193|221489.267|101.480 +640070.472|221493.741|101.142 +640065.696|221498.274|100.886 +640051.330|221511.895|100.081 +640041.781|221520.948|99.249 +640036.977|221525.502|98.896 +640027.401|221534.576|97.945 +640022.673|221539.056|97.387 +640017.836|221543.640|96.954 +640013.035|221548.191|96.640 +640008.232|221552.739|95.899 +639998.704|221561.764|94.625 +639984.335|221575.367|92.534 +639969.991|221588.940|89.715 +639955.391|221602.799|89.843 +639950.411|221607.542|90.757 +639945.565|221612.141|90.648 +639940.670|221616.786|90.587 +639935.768|221621.444|90.657 +639930.873|221626.098|91.248 +639925.920|221630.804|91.422 +639920.992|221635.501|92.541 +639916.020|221640.229|93.040 +639886.339|221668.450|96.924 +639881.413|221673.126|97.097 +639876.488|221677.798|97.237 +639871.516|221682.517|97.423 +639866.600|221687.183|97.554 +639861.680|221691.853|97.747 +639856.718|221696.562|97.899 +639851.796|221701.234|98.185 +639846.837|221705.941|98.341 +639841.884|221710.641|98.432 +639836.976|221715.298|98.597 +639832.023|221720.001|98.783 +639826.985|221724.811|100.645 +639816.884|221734.452|104.321 +639807.109|221743.690|102.395 +639802.177|221748.369|102.413 +639797.185|221753.112|102.782 +639792.198|221757.845|103.044 +639787.269|221762.524|103.145 +639782.225|221767.315|103.715 +639777.293|221771.997|103.971 +639772.319|221776.715|104.059 +639767.302|221781.476|104.108 +639762.334|221786.192|104.190 +639757.366|221790.904|104.275 +639752.345|221795.671|104.541 +639747.380|221800.383|104.632 +639742.363|221805.144|104.900 +639737.349|221809.902|105.062 +639732.378|221814.623|105.495 +639722.341|221824.164|106.689 +639717.339|221828.909|106.659 +639712.362|221833.609|105.424 +639707.366|221838.346|105.168 +639697.277|221847.950|107.464 +639692.324|221852.650|107.561 +639687.283|221857.433|107.543 +639682.281|221862.181|107.796 +639677.285|221866.921|107.863 +639672.241|221871.712|108.189 +639667.245|221876.455|108.411 +639662.249|221881.195|108.640 +639657.208|221885.974|108.494 +639652.170|221890.753|108.512 +639647.177|221895.490|108.591 +639627.069|221914.564|108.668 +639622.028|221919.338|108.244 +639612.006|221928.856|109.070 +639566.633|221971.870|107.665 +639556.587|221981.389|107.156 +639546.544|221990.944|108.732 +639541.497|221995.727|108.570 +639536.458|222000.509|108.591 +639531.459|222005.246|108.604 +639526.421|222010.022|108.786 +639521.432|222014.755|109.024 +639516.399|222019.535|109.341 +639511.410|222024.265|109.643 +639506.374|222029.044|109.884 +639501.360|222033.787|109.506 +639496.346|222038.533|109.119 +639491.284|222043.327|108.750 +639486.282|222048.067|108.722 +639481.271|222052.816|108.539 +639476.217|222057.586|107.421 +639461.139|222071.857|106.278 +639446.131|222086.091|106.827 +639436.151|222095.549|106.866 +639426.194|222104.995|107.329 +639421.225|222109.704|107.372 +639401.288|222128.589|106.692 +639396.344|222133.271|106.497 +639391.401|222137.968|107.012 +639376.554|222152.028|106.412 +639371.643|222156.680|106.098 +639366.620|222161.432|105.610 +639346.790|222180.183|103.163 +639326.865|222198.998|99.054 +639321.912|222203.680|98.045 +639316.919|222208.395|97.228 +639312.055|222213.010|97.320 +639307.163|222217.649|97.722 +639259.315|222263.110|104.522 +639254.536|222267.648|105.156 +639240.232|222281.227|106.446 +639235.410|222285.796|106.238 +639230.560|222290.384|105.839 +639206.658|222313.036|105.915 +639201.848|222317.590|105.589 +639197.115|222322.074|105.519 +639182.530|222335.857|103.068 +639177.748|222340.383|102.724 +639168.152|222349.463|101.837 +639163.300|222354.050|101.014 +639158.487|222358.604|100.545 +639153.793|222363.051|100.660 +639149.163|222367.458|101.624 +639135.459|222380.498|104.873 +639130.839|222384.890|105.555 +639121.670|222393.607|107.131 +639117.114|222397.942|107.957 +639112.465|222402.349|108.134 +639103.282|222411.072|109.350 +639098.621|222415.492|109.481 +639094.004|222419.869|109.603 +639079.986|222433.146|108.963 +639070.577|222442.052|108.219 +639065.901|222446.475|107.771 +639061.305|222450.831|107.531 +639056.620|222455.265|107.393 +639047.473|222463.940|107.625 +639042.925|222468.253|107.777 +639033.799|222476.903|107.951 +639029.322|222481.158|108.579 +639006.693|222502.619|109.314 +639008.202|222498.538|111.136 +639017.176|222490.004|110.231 +639026.124|222481.484|108.933 +639030.626|222477.196|108.165 +639035.186|222472.855|107.777 +639039.761|222468.512|107.777 +639053.669|222455.299|107.555 +639058.336|222450.870|107.589 +639063.002|222446.438|107.671 +639067.718|222441.970|108.064 +639072.472|222437.459|108.457 +639077.169|222433.006|108.796 +639081.903|222428.513|109.088 +639086.637|222424.026|109.390 +639091.398|222419.506|109.591 +639096.058|222415.077|109.451 +639100.773|222410.600|109.378 +639110.103|222401.724|108.570 +639114.745|222397.308|108.027 +639119.403|222392.873|107.247 +639124.008|222388.487|106.442 +639133.314|222379.623|104.870 +639147.210|222366.373|101.700 +639151.827|222361.972|100.660 +639156.616|222357.421|100.575 +639161.474|222352.816|101.044 +639166.385|222348.168|101.965 +639171.234|222343.571|102.431 +639176.120|222338.938|102.834 +639185.950|222329.633|104.626 +639190.891|222324.957|105.586 +639195.712|222320.376|105.610 +639200.601|222315.740|105.787 +639205.442|222311.144|106.019 +639220.057|222297.272|106.354 +639224.900|222292.670|106.287 +639229.713|222288.094|105.936 +639234.666|222283.401|106.449 +639254.003|222265.018|105.208 +639258.855|222260.403|104.876 +639268.523|222251.195|103.416 +639287.680|222232.926|98.548 +639302.341|222218.990|97.823 +639307.300|222214.278|97.682 +639312.186|222209.633|97.283 +639317.130|222204.942|97.588 +639322.141|222200.190|98.115 +639327.152|222195.447|99.274 +639332.220|222190.653|100.630 +639347.317|222176.361|103.635 +639352.267|222171.667|104.327 +639357.296|222166.897|104.830 +639387.225|222138.498|107.235 +639392.147|222133.820|107.150 +639397.097|222129.110|106.775 +639402.102|222124.362|107.278 +639407.089|222119.628|107.479 +639412.078|222114.892|107.817 +639421.996|222105.464|107.534 +639427.007|222100.700|107.476 +639456.832|222072.347|106.570 +639461.773|222067.644|106.156 +639466.811|222062.871|106.851 +639471.807|222058.138|107.723 +639476.836|222053.368|108.320 +639481.844|222048.613|108.497 +639486.797|222043.907|108.509 +639491.857|222039.106|108.844 +639496.874|222034.345|109.372 +639501.836|222029.639|109.682 +639506.838|222024.890|109.853 +639511.870|222020.102|109.567 +639516.805|222015.408|109.210 +639521.831|222010.622|108.780 +639531.810|222001.137|108.439 +639536.800|221996.394|108.375 +639541.841|221991.606|108.354 +639561.830|221972.589|107.107 +639566.844|221967.844|108.213 +639576.887|221958.315|109.055 +639581.931|221953.533|109.606 +639596.943|221939.265|109.347 +639601.932|221934.526|109.667 +639606.968|221929.740|109.308 +639612.000|221924.952|109.085 +639616.990|221920.209|108.802 +639621.973|221915.470|108.774 +639627.011|221910.687|108.933 +639632.001|221905.951|109.195 +639642.075|221896.371|108.722 +639647.064|221891.628|108.683 +639657.095|221882.097|108.506 +639662.088|221877.348|108.375 +639667.126|221872.560|108.253 +639672.168|221867.768|108.192 +639682.162|221858.265|107.668 +639687.203|221853.473|107.613 +639692.199|221848.727|107.640 +639697.268|221843.881|106.113 +639707.281|221834.338|105.187 +639727.318|221815.288|105.885 +639732.338|221810.499|105.159 +639737.346|221805.732|105.037 +639742.360|221800.959|104.806 +639747.371|221796.189|104.611 +639752.388|221791.413|104.385 +639757.399|221786.643|104.266 +639762.367|221781.915|104.187 +639767.384|221777.142|104.038 +639772.398|221772.369|104.001 +639777.367|221767.644|103.992 +639782.347|221762.899|103.647 +639787.394|221758.086|102.925 +639792.369|221753.352|102.837 +639807.322|221739.115|102.218 +639812.220|221734.482|103.900 +639817.149|221729.797|103.949 +639822.245|221724.908|101.557 +639827.378|221719.977|98.633 +639832.322|221715.271|98.585 +639837.318|221710.519|98.499 +639842.268|221705.806|98.362 +639847.224|221701.088|98.195 +639852.183|221696.367|98.009 +639857.096|221691.688|97.817 +639862.061|221686.964|97.618 +639867.024|221682.239|97.478 +639871.940|221677.558|97.311 +639876.863|221672.873|97.113 +639881.785|221668.188|96.957 +639886.763|221663.451|96.759 +639891.642|221658.806|96.591 +639916.429|221635.154|92.321 +639921.333|221630.481|92.053 +639926.277|221625.769|91.358 +639931.205|221621.069|90.861 +639936.015|221616.491|90.712 +639940.950|221611.791|90.239 +639998.490|221557.128|95.192 +640003.221|221552.632|95.628 +640017.424|221539.145|96.978 +640022.121|221534.688|97.811 +640026.834|221530.217|98.499 +640031.537|221525.745|98.822 +640040.897|221516.861|99.953 +640050.367|221507.851|100.112 +640055.031|221503.425|100.877 +640059.700|221498.987|101.160 +640069.125|221490.023|101.447 +640073.761|221485.609|101.627 +640081.030|221475.359|102.062 +640076.190|221479.949|101.861 +640061.660|221493.732|101.462 +640056.860|221498.286|101.020 +640047.170|221507.473|100.499 +640042.321|221512.069|100.100 +640022.966|221530.412|98.234 +640018.107|221535.008|97.500 +640013.328|221539.541|96.991 +640008.375|221544.235|96.750 +639998.661|221553.440|95.854 +639993.787|221558.060|95.387 +639988.929|221562.660|94.726 +639979.209|221571.868|93.498 +639974.329|221576.483|92.565 +639969.552|221580.994|91.062 +639949.811|221599.727|90.581 +639939.926|221609.105|90.352 +639934.976|221613.805|90.376 +639929.998|221618.536|90.764 +639925.015|221623.273|91.273 +639919.992|221628.049|91.736 +639884.940|221661.403|96.777 +639879.965|221666.131|96.936 +639875.040|221670.809|97.119 +639870.066|221675.531|97.292 +639865.097|221680.252|97.478 +639860.132|221684.967|97.600 +639855.167|221689.682|97.765 +639850.196|221694.407|98.106 +639845.236|221699.113|98.219 +639840.280|221703.822|98.368 +639835.279|221708.571|98.493 +639830.332|221713.271|98.548 +639825.379|221717.971|98.685 +639810.285|221732.379|103.449 +639805.356|221737.039|102.331 +639790.497|221751.149|102.779 +639785.517|221755.882|102.974 +639780.515|221760.640|103.663 +639775.580|221765.328|103.925 +639770.609|221770.049|104.016 +639765.638|221774.768|104.059 +639760.663|221779.492|104.260 +639755.698|221784.207|104.278 +639750.727|221788.926|104.388 +639745.756|221793.650|104.653 +639740.790|221798.368|104.827 +639735.822|221803.084|104.986 +639730.857|221807.799|105.153 +639725.828|221812.590|106.159 +639715.903|221822.018|106.592 +639710.975|221826.675|105.312 +639706.022|221831.375|105.205 +639701.020|221836.124|105.181 +639696.061|221840.833|105.360 +639691.044|221845.612|106.464 +639686.073|221850.355|107.845 +639676.127|221859.798|107.927 +639671.177|221864.495|107.994 +639656.236|221878.686|108.664 +639646.250|221888.169|108.802 +639641.307|221892.863|108.893 +639636.314|221897.602|108.924 +639631.324|221902.345|109.222 +639626.380|221907.039|109.298 +639621.342|221911.818|109.024 +639616.350|221916.552|108.924 +639611.409|221921.243|108.924 +639606.419|221925.985|109.305 +639601.430|221930.722|109.262 +639596.440|221935.458|109.445 +639591.453|221940.198|109.801 +639571.480|221959.145|109.058 +639561.470|221968.624|107.781 +639551.503|221978.100|108.631 +639546.498|221982.843|108.165 +639541.551|221987.540|108.131 +639536.556|221992.279|108.189 +639526.628|222001.710|108.710 +639521.587|222006.492|108.829 +639516.607|222011.226|109.256 +639511.672|222015.917|109.734 +639506.679|222020.653|109.820 +639501.684|222025.393|109.856 +639496.731|222030.093|109.792 +639491.698|222034.851|108.954 +639486.687|222039.600|108.655 +639481.719|222044.309|108.326 +639476.708|222049.058|108.158 +639471.712|222053.800|108.354 +639466.695|222058.555|108.079 +639456.732|222067.995|107.107 +639431.842|222091.614|107.531 +639426.882|222096.323|107.668 +639407.009|222115.175|107.777 +639402.087|222119.848|107.802 +639397.073|222124.593|107.211 +639392.108|222129.306|107.372 +639387.179|222133.981|107.409 +639357.367|222162.230|105.342 +639347.442|222171.627|104.269 +639342.410|222176.385|103.169 +639332.449|222185.816|101.892 +639317.380|222200.044|97.957 +639312.411|222204.747|97.405 +639307.513|222209.401|97.661 +639302.573|222214.083|97.478 +639287.933|222227.979|98.027 +639283.169|222232.520|99.280 +639259.334|222255.225|104.809 +639254.484|222259.830|105.190 +639230.518|222282.593|106.735 +639225.626|222287.229|106.342 +639216.000|222296.364|106.680 +639201.559|222310.055|106.235 +639196.734|222314.633|106.165 +639172.453|222337.615|102.998 +639167.601|222342.209|102.514 +639162.806|222346.756|102.486 +639157.932|222351.362|101.508 +639153.095|222355.934|100.846 +639148.346|222360.439|100.898 +639143.671|222364.880|101.517 +639139.090|222369.245|102.858 +639120.680|222386.758|106.522 +639102.251|222404.269|109.085 +639093.010|222413.035|109.582 +639088.350|222417.458|109.737 +639074.329|222430.738|109.082 +639069.620|222435.194|108.686 +639064.907|222439.654|108.293 +639060.271|222444.049|108.085 +639037.295|222465.830|108.424 +639032.632|222470.246|108.177 +639028.100|222474.550|108.451 +639023.610|222478.811|109.024 +639019.151|222483.054|109.765 +639005.782|222495.755|111.548 +639019.343|222479.777|109.463 +639023.829|222475.501|108.914 +639028.316|222471.222|108.381 +639032.937|222466.827|108.384 +639037.564|222462.425|108.439 +639042.200|222458.018|108.567 +639046.787|222453.644|108.116 +639051.417|222449.236|107.924 +639056.031|222444.844|107.997 +639060.768|222440.345|108.216 +639065.459|222435.886|108.515 +639070.168|222431.412|108.930 +639074.911|222426.907|109.286 +639084.335|222417.946|109.661 +639089.041|222413.471|109.838 +639093.677|222409.055|109.561 +639098.390|222404.571|109.481 +639102.965|222400.206|108.820 +639116.906|222386.911|107.006 +639139.995|222364.859|101.858 +639144.634|222360.433|100.990 +639149.410|222355.885|100.816 +639154.229|222351.310|101.361 +639159.210|222346.589|102.453 +639173.736|222332.784|103.422 +639193.372|222314.152|106.302 +639198.203|222309.559|106.455 +639212.760|222295.715|106.766 +639222.431|222286.510|106.503 +639227.342|222281.840|106.641 +639232.215|222277.207|106.930 +639246.812|222263.311|106.311 +639251.604|222258.736|105.415 +639256.447|222254.124|105.025 +639290.128|222221.968|98.182 +639295.004|222217.317|97.689 +639304.886|222207.914|97.637 +639309.793|222203.247|97.503 +639314.795|222198.495|97.945 +639324.869|222188.949|99.786 +639329.965|222184.133|101.480 +639334.997|222179.366|102.489 +639350.051|222165.092|104.638 +639360.079|222155.579|106.022 +639370.071|222146.100|107.025 +639380.059|222136.612|107.528 +639385.033|222131.881|107.518 +639394.976|222122.429|107.454 +639404.949|222112.956|107.979 +639424.849|222094.034|107.793 +639429.824|222089.310|107.994 +639434.829|222084.549|107.933 +639449.785|222070.327|107.616 +639454.732|222065.617|107.387 +639459.752|222060.853|107.717 +639464.775|222056.083|108.171 +639469.768|222051.335|108.000 +639474.776|222046.577|108.168 +639479.784|222041.819|108.351 +639484.795|222037.061|108.661 +639489.860|222032.254|109.259 +639494.874|222027.496|109.759 +639499.873|222022.744|109.902 +639504.878|222017.992|110.204 +639514.842|222008.510|109.625 +639524.851|221998.982|108.954 +639529.829|221994.242|108.442 +639534.867|221989.454|108.415 +639539.854|221984.708|108.223 +639544.843|221979.965|108.226 +639549.882|221975.174|108.265 +639559.867|221965.686|108.448 +639564.905|221960.900|108.576 +639569.901|221956.157|109.052 +639574.894|221951.415|109.225 +639584.922|221941.890|109.765 +639589.908|221937.147|109.622 +639594.940|221932.359|109.366 +639599.924|221927.616|109.164 +639604.910|221922.873|109.009 +639609.946|221918.085|108.985 +639614.932|221913.348|109.173 +639624.954|221903.826|109.454 +639629.941|221899.081|109.210 +639634.976|221894.292|109.058 +639640.011|221889.501|108.774 +639649.990|221880.006|108.378 +639655.029|221875.218|108.396 +639660.018|221870.475|108.475 +639665.011|221865.723|108.128 +639674.996|221856.223|107.826 +639685.045|221846.649|106.625 +639690.059|221841.863|105.488 +639695.064|221837.105|105.150 +639700.063|221832.357|105.211 +639705.062|221827.605|105.242 +639710.109|221822.813|105.376 +639720.043|221813.389|106.311 +639725.057|221808.616|105.766 +639730.077|221803.839|105.193 +639735.042|221799.118|104.952 +639740.053|221794.354|104.775 +639745.018|221789.633|104.617 +639750.032|221784.863|104.394 +639755.046|221780.099|104.306 +639760.014|221775.377|104.178 +639765.028|221770.610|104.083 +639769.996|221765.889|104.047 +639774.971|221761.158|103.858 +639780.006|221756.367|103.370 +639784.950|221751.664|102.916 +639789.985|221746.872|102.541 +639804.881|221732.711|102.142 +639809.819|221728.036|103.053 +639819.944|221718.343|98.771 +639824.891|221713.643|98.649 +639829.884|221708.894|98.560 +639834.834|221704.191|98.438 +639839.787|221699.482|98.304 +639844.743|221694.773|98.152 +639849.699|221690.060|98.033 +639854.621|221685.379|97.695 +639859.583|221680.660|97.518 +639864.500|221675.988|97.378 +639869.465|221671.266|97.231 +639874.388|221666.588|97.067 +639879.313|221661.903|96.853 +639899.125|221643.033|94.186 +639904.124|221638.269|93.196 +639923.814|221619.527|91.212 +639938.533|221605.533|90.751 +639977.136|221568.893|93.114 +639981.778|221564.507|94.488 +639986.588|221559.947|95.076 +639991.312|221555.464|95.567 +639996.094|221550.928|95.982 +640000.859|221546.405|96.098 +640010.344|221537.410|97.283 +640015.102|221532.893|97.509 +640019.814|221528.428|98.176 +640029.208|221519.521|99.414 +640043.339|221506.110|100.301 +640048.005|221501.691|101.026 +640052.696|221497.234|101.105 +640057.487|221492.684|101.179 +640062.133|221488.276|101.681 +640066.784|221483.866|102.187 +640076.135|221474.984|102.355 +640080.799|221470.561|102.803 +640077.205|221471.049|102.946 +640072.407|221475.597|102.788 +640058.128|221489.118|101.520 +640053.357|221493.632|101.188 +640038.901|221507.329|100.389 +640034.115|221511.859|99.840 +640029.251|221516.464|99.594 +640024.499|221520.957|98.755 +640005.077|221539.349|97.195 +640000.234|221543.936|96.841 +639990.501|221553.144|95.677 +639971.003|221571.594|93.278 +639951.444|221590.095|90.611 +639926.573|221613.684|90.821 +639921.589|221618.417|91.330 +639916.593|221623.160|91.425 +639911.570|221627.930|91.888 +639901.503|221637.501|93.272 +639896.464|221642.289|94.065 +639891.450|221647.053|94.610 +639886.363|221651.890|95.564 +639881.316|221656.697|96.710 +639876.290|221661.464|96.863 +639871.315|221666.182|96.981 +639866.295|221670.940|97.100 +639861.275|221675.704|97.280 +639856.307|221680.420|97.457 +639851.235|221685.232|97.762 +639846.261|221689.954|98.082 +639841.207|221694.745|98.146 +639836.199|221699.497|98.310 +639831.191|221704.246|98.469 +639826.196|221708.986|98.502 +639821.197|221713.725|98.579 +639816.195|221718.468|98.713 +639811.001|221723.448|101.941 +639805.978|221728.209|101.758 +639800.973|221732.958|102.181 +639795.935|221737.737|102.367 +639790.958|221742.459|102.349 +639785.925|221747.232|102.450 +639780.927|221751.981|102.992 +639775.928|221756.726|103.495 +639770.893|221761.509|103.891 +639765.869|221766.273|104.013 +639760.895|221770.991|104.105 +639755.872|221775.755|104.227 +639750.852|221780.516|104.342 +639745.832|221785.280|104.547 +639740.815|221790.038|104.662 +639735.844|221794.753|104.851 +639730.827|221799.511|104.995 +639725.809|221804.275|105.299 +639720.780|221809.055|106.116 +639710.783|221818.525|105.434 +639705.827|221823.219|105.208 +639700.773|221828.007|105.141 +639695.768|221832.756|105.223 +639690.812|221837.453|105.126 +639685.759|221842.244|105.138 +639680.742|221847.021|106.302 +639675.773|221851.751|107.506 +639670.723|221856.546|107.845 +639665.724|221861.285|107.820 +639655.724|221870.774|108.326 +639630.791|221894.426|109.177 +639625.753|221899.205|109.326 +639610.820|221913.360|109.283 +639605.825|221918.094|109.189 +639600.832|221922.828|109.033 +639595.839|221927.567|109.320 +639590.893|221932.255|109.320 +639585.900|221936.992|109.375 +639575.957|221946.416|109.326 +639570.913|221951.195|109.027 +639565.963|221955.886|108.884 +639555.965|221965.356|108.628 +639551.012|221970.050|108.311 +639546.014|221974.787|108.262 +639541.018|221979.527|108.308 +639536.074|221984.217|108.570 +639531.075|221988.954|108.503 +639521.160|221998.378|109.570 +639516.162|222003.121|109.484 +639511.227|222007.812|109.948 +639501.281|222017.249|109.996 +639496.328|222021.946|109.929 +639491.308|222026.701|109.408 +639481.375|222036.116|108.704 +639476.400|222040.828|108.277 +639471.438|222045.534|108.110 +639466.476|222050.243|108.024 +639461.465|222054.995|107.930 +639456.570|222059.646|108.308 +639446.588|222069.114|108.049 +639441.671|222073.777|108.058 +639436.712|222078.486|108.104 +639431.802|222083.147|108.290 +639426.824|222087.865|108.073 +639421.862|222092.577|108.128 +639416.931|222097.253|107.970 +639402.117|222111.310|108.043 +639392.245|222120.674|107.747 +639382.336|222130.077|107.747 +639377.428|222134.728|107.403 +639372.491|222139.413|107.351 +639367.522|222144.119|106.897 +639337.710|222172.343|103.071 +639332.766|222177.025|102.596 +639327.789|222181.734|101.712 +639312.725|222195.965|97.908 +639307.824|222200.611|97.585 +639288.265|222219.179|98.146 +639278.643|222228.335|99.679 +639240.463|222264.686|106.967 +639235.650|222269.249|106.836 +639230.813|222273.839|106.918 +639225.979|222278.429|107.061 +639221.145|222283.010|106.805 +639216.320|222287.595|107.052 +639211.483|222292.182|106.796 +639197.035|222305.889|106.738 +639177.717|222324.195|105.342 +639172.804|222328.840|104.275 +639167.832|222333.531|102.782 +639148.542|222351.816|101.166 +639143.774|222356.345|101.057 +639139.096|222360.799|101.645 +639125.300|222373.951|104.891 +639116.056|222382.753|106.241 +639092.958|222404.742|109.542 +639088.313|222409.158|109.774 +639078.937|222418.061|109.728 +639074.265|222422.493|109.515 +639069.534|222426.983|109.265 +639064.807|222431.464|108.732 +639060.189|222435.847|108.631 +639055.455|222440.339|108.427 +639050.838|222444.722|108.372 +639046.241|222449.090|108.469 +639041.614|222453.485|108.704 +639037.006|222457.865|108.744 +639032.449|222462.194|108.835 +639027.792|222466.613|108.634 +639023.198|222470.978|108.835 +639018.739|222475.221|109.274 +639014.216|222479.525|109.939 +639000.863|222492.238|111.780 +638996.184|222496.670|110.990 +638991.063|222501.476|107.671 +638994.200|222496.100|111.066 +638998.958|222491.595|112.039 +639003.395|222487.361|111.133 +639007.888|222483.082|110.585 +639016.913|222474.483|109.445 +639021.431|222470.179|109.082 +639026.067|222465.769|108.847 +639030.712|222461.358|108.978 +639053.895|222439.309|108.515 +639058.534|222434.902|108.744 +639063.274|222430.403|109.021 +639067.989|222425.919|109.164 +639072.732|222421.417|109.512 +639077.441|222416.946|109.646 +639082.159|222412.462|109.887 +639086.874|222407.979|109.783 +639091.574|222403.507|109.591 +639096.238|222399.066|109.180 +639133.268|222363.758|102.767 +639137.910|222359.323|101.560 +639142.604|222354.855|101.078 +639152.370|222345.592|102.389 +639176.739|222322.476|105.540 +639196.237|222303.965|106.991 +639210.733|222290.179|106.753 +639220.459|222280.941|106.948 +639230.213|222271.669|107.070 +639235.050|222267.069|107.009 +639249.543|222253.265|105.400 +639254.384|222248.659|104.952 +639264.043|222239.448|103.446 +639283.321|222221.057|99.450 +639288.183|222216.424|98.746 +639297.946|222207.127|97.844 +639307.812|222197.745|97.603 +639312.768|222193.039|98.079 +639322.891|222183.450|100.532 +639337.978|222169.143|103.510 +639353.017|222154.872|105.668 +639358.037|222150.105|106.168 +639363.048|222145.341|106.598 +639368.025|222140.617|107.256 +639373.021|222135.868|107.525 +639402.943|222107.412|108.268 +639412.913|222097.926|108.107 +639417.943|222093.144|108.479 +639422.896|222088.429|108.320 +639427.900|222083.668|108.256 +639432.917|222078.898|108.454 +639437.913|222074.140|108.268 +639442.921|222069.379|108.305 +639447.853|222064.676|107.823 +639452.867|222059.912|108.030 +639457.911|222055.108|107.954 +639462.867|222050.393|108.046 +639467.869|222045.635|108.079 +639472.919|222040.831|108.195 +639477.879|222036.119|108.378 +639492.972|222021.784|109.939 +639497.968|222017.032|110.103 +639503.012|222012.235|110.249 +639513.013|222002.707|109.408 +639528.003|221988.427|108.479 +639538.034|221978.886|108.652 +639543.018|221974.141|108.366 +639548.053|221969.349|108.372 +639553.042|221964.604|108.442 +639558.078|221959.815|108.396 +639563.119|221955.024|108.728 +639568.109|221950.278|108.939 +639573.147|221945.489|109.082 +639578.134|221940.744|109.173 +639583.169|221935.955|109.195 +639588.152|221931.210|109.085 +639593.185|221926.421|109.006 +639598.174|221921.678|109.192 +639603.207|221916.890|109.277 +639608.196|221912.150|109.731 +639623.195|221897.877|109.390 +639633.214|221888.336|109.033 +639638.204|221883.588|108.896 +639648.180|221874.087|108.408 +639663.197|221859.792|108.024 +639668.144|221855.083|107.701 +639683.156|221840.760|105.257 +639688.151|221836.005|105.178 +639693.193|221831.204|105.171 +639698.143|221826.498|105.242 +639703.138|221821.743|105.275 +639708.088|221817.034|105.327 +639723.036|221802.812|105.385 +639727.995|221798.091|105.174 +639733.003|221793.321|104.949 +639737.916|221788.642|104.760 +639742.924|221783.875|104.647 +639747.889|221779.148|104.409 +639752.803|221774.466|104.315 +639757.817|221769.696|104.178 +639762.733|221765.014|104.065 +639767.701|221760.283|103.943 +639772.679|221755.541|103.571 +639777.623|221750.826|102.959 +639782.560|221746.119|102.526 +639787.544|221741.374|102.224 +639792.466|221736.689|102.245 +639797.447|221731.949|102.069 +639802.339|221727.286|101.764 +639807.289|221722.570|101.361 +639812.367|221717.706|99.316 +639817.289|221713.009|98.588 +639822.230|221708.306|98.499 +639827.171|221703.603|98.484 +639832.115|221698.897|98.384 +639837.019|221694.227|98.210 +639841.972|221689.512|98.051 +639846.873|221684.845|97.957 +639851.796|221680.154|97.576 +639856.761|221675.427|97.338 +639861.671|221670.751|97.219 +639866.591|221666.067|97.018 +639871.501|221661.394|96.960 +639876.424|221656.706|96.780 +639891.274|221642.536|94.479 +639896.242|221637.799|93.833 +639901.183|221633.081|92.909 +639906.142|221628.344|91.821 +639911.058|221623.657|91.340 +639916.008|221618.944|91.132 +639925.780|221609.642|91.145 +639940.417|221595.703|90.483 +639945.293|221591.058|90.166 +639959.960|221577.092|89.572 +639969.324|221568.244|93.501 +639983.671|221554.625|95.521 +639993.235|221545.542|96.728 +639998.024|221540.989|97.021 +640007.640|221531.845|97.311 +640012.429|221527.294|97.682 +640017.232|221522.725|97.911 +640026.578|221513.867|99.990 +640031.366|221509.317|100.398 +640036.124|221504.793|100.670 +640055.095|221486.755|101.584 +640059.834|221482.257|102.108 +640064.544|221477.779|102.096 +640069.277|221473.286|102.687 +640073.956|221468.842|102.962 +640078.616|221464.417|103.379 +640080.305|221459.881|103.269 +640075.583|221464.359|103.260 +640070.856|221468.839|102.943 +640066.153|221473.292|102.416 +640061.374|221477.825|102.169 +640051.897|221486.807|101.794 +640047.124|221491.334|101.535 +640042.336|221495.875|101.438 +640037.593|221500.368|100.926 +640032.853|221504.858|100.432 +640023.362|221513.849|99.545 +640018.528|221518.427|99.039 +640013.816|221522.886|98.304 +640009.039|221527.410|97.753 +639999.389|221536.557|97.143 +639989.803|221545.640|96.430 +639985.012|221550.181|96.098 +639980.166|221554.766|95.311 +639965.794|221568.369|93.336 +639956.348|221577.269|89.575 +639946.500|221586.626|90.434 +639941.599|221591.278|90.370 +639936.677|221595.950|90.572 +639921.879|221610.005|91.196 +639916.929|221614.705|91.297 +639912.034|221619.347|91.318 +639907.074|221624.059|91.599 +639902.094|221628.796|92.202 +639897.110|221633.535|92.894 +639892.103|221638.305|93.982 +639872.120|221657.313|96.863 +639867.149|221662.031|96.951 +639862.220|221666.710|97.164 +639857.206|221671.471|97.280 +639852.235|221676.189|97.475 +639847.260|221680.913|97.783 +639842.246|221685.677|98.033 +639837.287|221690.384|98.124 +639832.282|221695.135|98.277 +639827.323|221699.842|98.435 +639822.328|221704.581|98.466 +639817.332|221709.327|98.551 +639812.333|221714.070|98.697 +639802.223|221723.710|101.529 +639797.233|221728.444|101.636 +639792.186|221733.245|102.105 +639787.205|221737.969|102.123 +639782.213|221742.712|102.434 +639777.178|221747.494|102.724 +639772.136|221752.282|103.181 +639767.107|221757.062|103.477 +639762.069|221761.850|103.992 +639757.094|221766.575|104.144 +639752.074|221771.339|104.242 +639747.008|221776.148|104.379 +639742.034|221780.873|104.644 +639736.971|221785.676|104.708 +639731.954|221790.437|104.915 +639726.940|221795.201|105.101 +639721.878|221800.008|105.354 +639706.814|221814.300|105.242 +639701.761|221819.095|105.303 +639696.756|221823.844|105.257 +639691.705|221828.635|105.251 +639686.704|221833.381|105.196 +639681.653|221838.172|105.187 +639671.592|221847.737|106.189 +639661.484|221857.350|107.659 +639656.437|221862.148|108.131 +639651.441|221866.891|108.299 +639646.397|221871.679|108.460 +639636.314|221881.256|109.070 +639631.273|221886.041|109.149 +639621.242|221895.563|109.457 +639616.154|221900.391|109.628 +639606.130|221909.907|109.695 +639601.088|221914.689|109.740 +639596.001|221919.511|109.326 +639591.008|221924.248|109.234 +639585.964|221929.027|109.045 +639580.923|221933.809|108.905 +639575.930|221938.546|108.799 +639570.888|221943.328|108.710 +639565.798|221948.156|108.567 +639560.803|221952.893|108.515 +639555.761|221957.675|108.573 +639550.769|221962.415|108.533 +639545.724|221967.200|108.491 +639530.679|221981.468|108.070 +639525.690|221986.205|108.335 +639510.693|222000.451|109.698 +639505.658|222005.233|109.945 +639500.723|222009.921|110.390 +639495.673|222014.710|110.201 +639490.662|222019.455|109.905 +639480.661|222028.919|108.719 +639470.682|222038.377|108.186 +639465.677|222043.123|108.192 +639460.663|222047.875|108.015 +639455.701|222052.581|107.985 +639450.693|222057.330|107.997 +639440.836|222066.687|108.360 +639435.834|222071.433|108.543 +639425.950|222080.809|108.512 +639420.991|222085.515|108.613 +639416.071|222090.178|108.637 +639406.159|222099.572|108.326 +639401.243|222104.239|108.430 +639396.341|222108.893|108.823 +639391.376|222113.593|108.223 +639386.472|222118.250|108.582 +639356.891|222146.280|106.851 +639351.932|222150.968|105.973 +639346.994|222155.640|105.434 +639342.062|222160.310|105.010 +639337.073|222165.025|103.846 +639317.197|222183.804|99.719 +639312.232|222188.498|98.560 +639307.273|222193.192|98.109 +639302.417|222197.791|97.789 +639283.038|222216.195|99.289 +639278.286|222220.715|100.170 +639249.729|222247.888|105.427 +639235.431|222261.476|107.168 +639225.860|222270.556|107.439 +639221.054|222275.116|107.390 +639216.232|222279.688|107.220 +639201.866|222293.313|107.357 +639192.323|222302.362|107.281 +639187.468|222306.962|106.982 +639182.685|222311.494|106.912 +639172.983|222320.672|105.318 +639163.184|222329.925|103.102 +639148.837|222343.526|102.636 +639143.963|222348.134|101.691 +639139.196|222352.645|101.255 +639129.912|222361.475|102.657 +639111.551|222378.946|106.385 +639097.789|222392.031|108.594 +639093.123|222396.466|109.009 +639088.545|222400.813|109.393 +639083.921|222405.208|109.780 +639074.615|222414.032|109.942 +639065.255|222422.902|109.463 +639055.867|222431.793|108.911 +639051.200|222436.218|108.844 +639046.607|222440.577|108.945 +639041.977|222444.969|109.170 +639037.387|222449.328|109.323 +639032.830|222453.647|109.417 +639028.185|222458.051|109.262 +639023.549|222462.447|109.204 +639019.013|222466.753|109.472 +639014.454|222471.078|109.615 +639009.964|222475.346|110.204 +639001.018|222483.847|111.295 +638992.173|222492.256|112.740 +638987.113|222497.011|110.051 +638982.035|222501.775|106.756 +638982.373|222498.715|108.454 +638987.549|222493.853|111.780 +638992.200|222489.440|112.407 +639005.715|222476.556|110.661 +639010.253|222472.231|110.094 +639014.816|222467.884|109.695 +639019.431|222463.498|109.615 +639024.003|222459.142|109.311 +639028.715|222454.668|109.576 +639033.318|222450.291|109.484 +639037.990|222445.847|109.548 +639042.605|222441.455|109.268 +639047.308|222436.983|109.247 +639051.920|222432.591|108.994 +639056.650|222428.096|109.195 +639061.366|222423.615|109.308 +639075.539|222410.149|110.027 +639089.563|222396.802|109.237 +639094.223|222392.361|108.802 +639098.859|222387.944|108.207 +639108.119|222379.108|106.241 +639126.736|222361.350|103.120 +639131.314|222356.976|101.767 +639136.054|222352.459|101.288 +639140.870|222347.887|101.761 +639145.719|222343.282|102.169 +639160.310|222329.425|103.102 +639175.126|222315.389|106.144 +639189.793|222301.466|107.518 +639199.465|222292.273|107.954 +639213.967|222278.475|107.454 +639218.801|222273.879|107.317 +639247.760|222246.309|105.574 +639262.217|222232.532|103.693 +639266.963|222227.997|102.303 +639281.444|222214.183|99.676 +639296.074|222200.248|98.182 +639300.914|222195.639|97.814 +639305.901|222190.903|98.051 +639310.863|222186.194|98.627 +639315.917|222181.411|99.734 +639321.010|222176.598|101.380 +639336.018|222162.379|103.931 +639366.008|222133.951|108.189 +639385.832|222115.120|108.469 +639390.809|222110.393|108.576 +639395.793|222105.659|108.841 +639400.755|222100.941|108.750 +639420.616|222082.071|108.774 +639425.617|222077.316|108.664 +639430.586|222072.597|108.823 +639435.588|222067.843|108.695 +639440.534|222063.139|108.482 +639445.521|222058.394|108.137 +639450.520|222053.642|108.021 +639455.521|222048.887|108.015 +639465.540|222039.374|108.329 +639475.550|222029.864|108.622 +639480.588|222025.076|108.439 +639485.560|222020.361|109.027 +639490.647|222015.545|110.201 +639495.639|222010.802|110.137 +639500.638|222006.053|110.359 +639505.622|222001.314|110.091 +639510.648|221996.531|109.728 +639520.609|221987.052|108.957 +639530.609|221977.530|107.793 +639535.611|221972.784|108.183 +639545.654|221963.253|108.844 +639550.641|221958.511|108.668 +639555.676|221953.725|108.683 +639560.665|221948.982|108.719 +639565.704|221944.197|108.759 +639570.693|221939.457|108.835 +639575.732|221934.672|108.939 +639580.721|221929.932|109.082 +639585.760|221925.150|109.250 +639590.749|221920.410|109.439 +639595.788|221915.631|109.875 +639600.820|221910.846|109.945 +639610.836|221901.324|109.664 +639615.871|221896.542|109.631 +639625.893|221887.007|109.122 +639630.882|221882.271|109.213 +639635.869|221877.525|108.985 +639645.897|221867.988|108.515 +639650.890|221863.239|108.195 +639670.939|221844.137|105.214 +639675.938|221839.385|105.144 +639680.934|221834.640|105.174 +639685.932|221829.891|105.229 +639690.928|221825.139|105.284 +639695.881|221820.433|105.303 +639700.880|221815.684|105.333 +639705.833|221810.975|105.306 +639715.830|221801.474|105.549 +639720.792|221796.756|105.312 +639725.803|221791.989|105.065 +639730.766|221787.267|104.882 +639735.728|221782.549|104.736 +639740.690|221777.828|104.629 +639745.658|221773.103|104.391 +639750.629|221768.376|104.184 +639755.592|221763.655|104.163 +639760.517|221758.970|103.940 +639765.507|221754.218|103.346 +639770.484|221749.484|103.090 +639775.422|221744.784|102.742 +639780.357|221740.087|102.407 +639785.297|221735.387|102.090 +639790.281|221730.645|101.864 +639795.225|221725.939|101.511 +639810.050|221711.805|99.008 +639815.015|221707.077|98.496 +639819.911|221702.423|98.405 +639824.854|221697.720|98.353 +639829.759|221693.060|98.240 +639834.663|221688.396|98.118 +639839.567|221683.730|97.990 +639844.432|221679.106|97.823 +639849.357|221674.418|97.445 +639854.222|221669.788|97.289 +639859.141|221665.113|97.122 +639864.015|221660.477|96.924 +639868.886|221655.840|96.774 +639873.808|221651.159|96.631 +639908.224|221618.356|91.266 +639913.119|221613.702|91.172 +639932.589|221595.188|90.642 +639947.159|221581.335|90.495 +639966.114|221563.376|94.247 +639980.400|221549.828|95.966 +639985.137|221545.338|96.796 +639994.683|221536.273|97.280 +639999.426|221531.768|97.588 +640008.975|221522.697|98.137 +640013.779|221518.138|98.396 +640018.476|221513.688|99.240 +640027.861|221504.787|100.545 +640032.625|221500.264|100.773 +640037.355|221495.774|101.322 +640042.122|221491.248|101.560 +640046.832|221486.780|101.910 +640051.559|221482.284|102.099 +640070.484|221464.298|103.282 +640075.300|221459.717|103.239 +640079.997|221455.248|103.373 +640060.819|221470.253|102.949 +640046.576|221483.738|102.242 +640041.784|221488.273|101.727 +640027.504|221501.788|100.685 +640022.749|221506.287|100.313 +640013.276|221515.239|98.838 +640008.497|221519.762|98.298 +640003.666|221524.337|98.249 +639984.506|221542.473|96.698 +639974.905|221551.556|95.723 +639970.119|221556.085|95.351 +639965.285|221560.660|94.991 +639960.515|221565.162|93.927 +639951.103|221574.023|90.364 +639916.840|221606.512|91.273 +639911.976|221611.117|90.876 +639907.050|221615.790|91.276 +639902.085|221620.502|91.617 +639897.147|221625.193|92.312 +639892.170|221629.923|92.934 +639872.220|221648.906|96.536 +639867.295|221653.579|96.634 +639862.363|221658.261|96.896 +639857.395|221662.976|97.000 +639852.466|221667.652|97.250 +639847.498|221672.367|97.405 +639842.524|221677.091|97.740 +639837.610|221681.755|97.875 +639832.599|221686.510|98.064 +639827.643|221691.210|98.176 +639822.687|221695.913|98.304 +639817.740|221700.607|98.350 +639812.790|221705.300|98.405 +639802.692|221714.920|100.862 +639797.697|221719.663|101.099 +639792.701|221724.405|101.371 +639787.754|221729.102|101.639 +639782.755|221733.854|102.126 +639777.717|221738.633|102.389 +639767.744|221748.104|102.992 +639762.706|221752.889|103.410 +639757.719|221757.626|103.864 +639752.693|221762.399|104.117 +639747.670|221767.166|104.361 +639742.650|221771.930|104.501 +639737.636|221776.688|104.601 +639732.664|221781.403|104.742 +639727.602|221786.210|104.922 +639722.588|221790.968|105.110 +639717.620|221795.686|105.443 +639712.560|221800.487|105.574 +639707.509|221805.275|105.455 +639702.553|221809.975|105.354 +639697.503|221814.764|105.254 +639692.452|221819.552|105.239 +639687.447|221824.301|105.260 +639682.397|221829.089|105.275 +639677.349|221833.878|105.223 +639672.347|221838.620|105.165 +639662.240|221848.225|106.232 +639652.182|221857.792|107.887 +639647.137|221862.581|108.131 +639642.096|221867.369|108.411 +639637.052|221872.154|108.561 +639632.010|221876.940|108.820 +639626.972|221881.722|108.841 +639621.930|221886.511|109.335 +639616.892|221891.290|109.384 +639611.854|221896.075|109.740 +639606.815|221900.858|109.939 +639591.703|221915.189|109.972 +639586.616|221920.011|109.801 +639581.575|221924.790|109.448 +639576.530|221929.570|109.216 +639571.492|221934.349|109.128 +639566.451|221939.128|109.049 +639561.409|221943.908|109.000 +639556.368|221948.690|108.960 +639551.329|221953.469|109.161 +639536.181|221967.819|108.073 +639531.115|221972.611|107.162 +639521.108|221982.123|108.375 +639506.085|221996.416|110.274 +639501.086|222001.158|110.155 +639496.051|222005.944|110.316 +639491.049|222010.686|110.216 +639485.977|222015.490|109.402 +639475.940|222025.003|108.442 +639470.932|222029.755|108.329 +639465.885|222034.546|108.354 +639460.916|222039.261|108.040 +639450.907|222048.762|108.061 +639445.905|222053.511|108.177 +639440.949|222058.220|108.244 +639435.965|222062.957|108.753 +639431.022|222067.657|109.085 +639426.020|222072.405|109.231 +639421.042|222077.127|108.981 +639416.083|222081.836|109.082 +639391.315|222105.357|109.463 +639386.310|222110.100|108.917 +639381.409|222114.760|109.311 +639376.487|222119.433|109.393 +639346.753|222147.609|106.263 +639336.796|222157.036|104.693 +639316.965|222175.797|100.871 +639311.924|222180.558|99.331 +639306.986|222185.233|98.487 +639302.012|222189.946|97.844 +639297.199|222194.515|98.012 +639292.319|222199.157|98.493 +639277.911|222212.867|100.423 +639273.074|222217.466|100.886 +639244.514|222244.663|105.973 +639239.729|222249.214|106.510 +639225.479|222262.766|107.787 +639220.660|222267.344|108.049 +639211.029|222276.482|107.796 +639187.169|222299.134|107.777 +639182.377|222303.679|107.589 +639177.540|222308.263|107.055 +639172.712|222312.832|106.223 +639162.980|222322.040|104.470 +639158.103|222326.655|103.349 +639153.348|222331.166|103.248 +639148.514|222335.744|102.541 +639143.738|222340.273|102.340 +639129.431|222353.849|101.611 +639124.828|222358.232|102.425 +639106.519|222375.676|106.113 +639097.393|222384.372|108.012 +639092.824|222388.721|108.747 +639088.215|222393.104|109.219 +639083.607|222397.490|109.695 +639079.020|222401.849|110.012 +639069.705|222410.694|110.054 +639065.102|222415.062|109.993 +639055.742|222423.941|109.533 +639046.485|222432.732|109.527 +639041.904|222437.081|109.704 +639037.329|222441.427|109.609 +639032.723|222445.798|109.664 +639028.139|222450.154|109.878 +639023.622|222454.446|109.896 +639018.943|222458.880|109.564 +639014.429|222463.175|109.939 +639009.921|222467.454|110.091 +639005.407|222471.749|110.493 +639001.000|222475.946|111.264 +638992.057|222484.453|112.374 +638982.776|222493.244|110.987 +638977.704|222498.008|108.003 +638972.708|222502.708|105.214 +638975.159|222498.075|107.884 +638985.123|222488.684|113.148 +638989.631|222484.386|112.654 +639003.021|222471.618|110.728 +639007.574|222467.278|110.259 +639016.718|222458.573|109.881 +639021.333|222454.180|109.823 +639025.990|222449.755|110.057 +639030.629|222445.338|109.893 +639035.290|222440.906|109.878 +639053.904|222423.191|109.533 +639058.662|222418.671|109.948 +639063.380|222414.187|110.124 +639068.059|222409.734|110.051 +639072.832|222405.199|110.304 +639077.483|222400.773|110.085 +639082.168|222396.311|109.783 +639086.804|222391.888|109.161 +639091.516|222387.399|108.747 +639105.345|222374.198|106.058 +639119.332|222360.856|103.852 +639123.877|222356.507|102.261 +639128.605|222351.999|101.660 +639133.451|222347.396|101.968 +639138.264|222342.824|102.437 +639147.892|222333.671|102.718 +639152.818|222328.996|103.398 +639157.701|222324.366|104.138 +639167.543|222315.027|105.598 +639172.529|222310.299|106.534 +639177.446|222305.636|107.326 +639182.380|222300.951|107.890 +639187.205|222296.361|107.991 +639206.643|222277.875|108.073 +639211.458|222273.287|107.765 +639221.279|222263.951|108.040 +639240.640|222245.511|106.677 +639245.514|222240.866|106.107 +639279.258|222208.673|100.365 +639293.846|222194.765|98.411 +639298.726|222190.113|97.963 +639303.728|222185.364|98.359 +639308.693|222180.649|98.996 +639318.794|222171.085|101.849 +639333.815|222156.829|104.077 +639338.905|222152.007|105.391 +639348.878|222142.534|106.729 +639383.723|222109.411|109.058 +639388.770|222104.620|109.554 +639393.763|222099.874|109.987 +639413.575|222081.010|109.381 +639418.525|222076.295|109.222 +639423.508|222071.561|109.661 +639428.489|222066.812|109.219 +639433.426|222062.109|108.841 +639438.358|222057.406|108.360 +639443.351|222052.651|108.192 +639448.346|222047.896|108.037 +639458.292|222038.429|107.848 +639468.311|222028.901|108.369 +639473.325|222024.137|108.762 +639483.325|222014.624|109.088 +639488.364|222009.851|110.259 +639493.356|222005.099|110.323 +639508.350|221990.819|109.615 +639513.382|221986.028|109.375 +639518.341|221981.288|108.366 +639533.340|221967.005|107.637 +639538.394|221962.208|108.311 +639543.389|221957.459|108.747 +639548.434|221952.664|109.192 +639553.423|221947.919|109.335 +639558.459|221943.130|109.484 +639563.491|221938.339|109.323 +639568.481|221933.596|109.545 +639573.516|221928.805|109.713 +639578.499|221924.062|109.704 +639583.535|221919.274|109.850 +639588.567|221914.485|109.996 +639598.586|221904.954|110.067 +639603.569|221900.211|110.070 +639608.595|221895.420|109.643 +639613.628|221890.628|109.542 +639618.611|221885.880|109.177 +639638.704|221866.747|108.354 +639648.777|221857.149|107.811 +639653.767|221852.403|107.875 +639663.825|221842.787|105.205 +639668.867|221837.989|105.165 +639673.859|221833.237|105.223 +639678.904|221828.437|105.242 +639683.899|221823.685|105.251 +639688.895|221818.936|105.373 +639693.940|221814.136|105.348 +639698.935|221809.384|105.357 +639703.934|221804.629|105.412 +639708.978|221799.834|105.519 +639713.938|221795.113|105.327 +639718.942|221790.352|105.181 +639723.947|221785.588|105.086 +639728.955|221780.821|104.888 +639733.966|221776.048|104.644 +639738.931|221771.323|104.446 +639743.896|221766.599|104.318 +639748.910|221761.823|104.102 +639753.927|221757.050|103.934 +639758.902|221752.292|102.349 +639763.916|221747.518|102.294 +639768.884|221742.797|102.349 +639773.855|221738.064|102.251 +639778.836|221733.321|102.008 +639783.780|221728.612|101.560 +639788.763|221723.869|101.377 +639793.756|221719.114|100.996 +639798.690|221714.414|100.877 +639803.698|221709.644|100.304 +639808.715|221704.840|98.603 +639813.665|221700.131|98.384 +639818.609|221695.425|98.304 +639823.504|221690.768|98.249 +639828.500|221686.013|98.131 +639833.361|221681.386|97.945 +639838.311|221676.674|97.841 +639843.228|221671.992|97.548 +639848.144|221667.313|97.350 +639853.106|221662.589|97.164 +639857.977|221657.953|96.954 +639862.897|221653.271|96.811 +639867.773|221648.629|96.573 +639887.531|221629.777|93.159 +639892.407|221625.126|92.492 +639897.339|221620.420|91.751 +639907.102|221611.123|91.157 +639931.419|221587.974|89.925 +639936.168|221583.463|90.547 +639945.827|221574.273|90.532 +639955.193|221565.418|93.903 +639969.415|221551.919|95.646 +639983.689|221538.361|96.936 +639988.334|221533.954|97.719 +639993.171|221529.348|97.539 +639997.804|221524.959|98.487 +640002.578|221520.418|98.502 +640007.302|221515.925|98.554 +640021.335|221502.608|100.615 +640025.953|221498.225|101.267 +640035.371|221489.273|101.819 +640044.725|221480.379|102.154 +640049.374|221475.969|102.632 +640054.040|221471.537|102.928 +640058.688|221467.126|103.428 +640068.061|221458.217|103.394 +640077.452|221449.289|103.321 +640079.592|221444.854|103.711 +640069.996|221453.956|103.379 +640065.150|221458.555|103.254 +640050.709|221472.262|103.001 +640045.905|221476.816|102.590 +640041.098|221481.370|102.209 +640036.298|221485.920|101.785 +640031.445|221490.529|101.870 +640021.905|221499.563|100.575 +640017.016|221504.196|100.139 +640012.273|221508.692|99.740 +640007.418|221513.288|99.014 +640002.599|221517.860|98.877 +639997.695|221522.515|98.688 +639992.925|221527.032|98.115 +639988.051|221531.649|97.622 +639978.306|221540.894|97.164 +639973.490|221545.457|96.625 +639968.665|221550.020|95.668 +639963.822|221554.613|95.454 +639958.994|221559.182|94.531 +639944.589|221572.795|90.898 +639939.743|221577.394|90.745 +639934.827|221582.060|90.885 +639920.083|221596.066|91.425 +639915.246|221600.644|90.678 +639905.386|221610.014|91.050 +639880.633|221633.541|93.635 +639865.676|221647.772|96.533 +639860.793|221652.405|96.756 +639855.822|221657.121|96.917 +639850.903|221661.790|97.064 +639845.977|221666.466|97.353 +639841.012|221671.175|97.518 +639836.089|221675.848|97.811 +639831.130|221680.557|97.981 +639826.223|221685.208|98.064 +639821.267|221689.908|98.192 +639816.320|221694.602|98.231 +639811.422|221699.250|98.289 +639806.408|221704.011|98.752 +639801.434|221708.757|100.435 +639796.478|221713.460|100.819 +639791.540|221718.145|100.889 +639786.590|221722.842|101.215 +639781.615|221727.560|101.127 +639776.681|221732.257|102.319 +639771.716|221736.963|102.117 +639766.781|221741.645|102.264 +639761.861|221746.305|102.078 +639756.887|221751.027|102.194 +639746.978|221760.454|104.065 +639742.004|221765.176|104.306 +639737.078|221769.845|104.489 +639732.113|221774.560|104.626 +639727.141|221779.276|104.873 +639722.176|221783.988|105.022 +639717.211|221788.697|105.171 +639712.298|221793.357|105.266 +639707.290|221798.109|105.357 +639702.334|221802.809|105.354 +639697.378|221807.506|105.299 +639692.376|221812.249|105.239 +639687.420|221816.949|105.263 +639682.418|221821.692|105.266 +639677.416|221826.434|105.232 +639672.463|221831.131|105.232 +639667.462|221835.874|105.229 +639662.460|221840.620|105.397 +639647.497|221854.845|107.689 +639637.506|221864.330|108.341 +639632.513|221869.067|108.287 +639627.517|221873.806|108.591 +639622.525|221878.543|108.887 +639612.546|221888.022|109.725 +639607.556|221892.753|109.719 +639602.566|221897.486|109.838 +639597.580|221902.220|110.140 +639567.542|221930.697|109.807 +639562.552|221935.428|109.798 +639552.564|221944.895|109.387 +639542.521|221954.408|108.808 +639537.516|221959.145|108.256 +639532.468|221963.927|108.018 +639527.461|221968.666|107.476 +639512.467|221982.907|108.960 +639502.458|221992.410|109.969 +639492.433|222001.917|110.414 +639487.431|222006.657|110.310 +639482.405|222011.409|109.554 +639462.285|222030.450|108.018 +639452.321|222039.892|108.015 +639447.289|222044.672|108.457 +639442.321|222049.375|108.347 +639437.319|222054.120|108.439 +639432.317|222058.863|108.637 +639427.376|222063.551|109.061 +639422.384|222068.291|109.384 +639412.417|222077.736|109.609 +639407.482|222082.424|110.158 +639397.494|222091.888|110.048 +639382.540|222106.052|109.405 +639372.604|222115.471|109.652 +639352.612|222134.390|107.985 +639347.659|222139.071|107.128 +639332.629|222153.272|104.516 +639317.645|222167.436|102.346 +639302.487|222181.740|98.509 +639297.577|222186.386|98.085 +639292.666|222191.040|98.259 +639287.790|222195.673|98.783 +639249.345|222232.209|105.184 +639244.593|222236.726|106.037 +639239.793|222241.283|106.424 +639235.023|222245.816|107.104 +639220.642|222259.458|108.091 +639215.814|222264.037|108.283 +639210.980|222268.615|108.003 +639206.213|222273.135|108.351 +639201.406|222277.692|108.360 +639182.225|222295.864|108.152 +639177.421|222300.415|107.869 +639162.782|222314.246|105.370 +639157.978|222318.788|104.842 +639153.056|222323.436|103.766 +639148.273|222327.956|103.096 +639134.009|222341.474|102.620 +639124.435|222350.539|101.816 +639119.784|222354.959|102.294 +639115.260|222359.268|103.718 +639096.945|222376.691|107.076 +639087.834|222385.359|108.780 +639083.235|222389.730|109.338 +639078.690|222394.049|109.932 +639074.057|222398.448|110.280 +639069.452|222402.812|110.176 +639064.795|222407.232|110.396 +639050.822|222420.472|109.868 +639046.269|222424.795|110.198 +639037.070|222433.518|110.310 +639032.507|222437.846|110.310 +639018.751|222450.888|110.341 +639014.161|222455.235|109.963 +639009.644|222459.527|110.329 +639005.121|222463.815|110.396 +639000.658|222468.052|110.844 +638996.217|222472.276|111.728 +638987.351|222480.701|112.715 +638982.907|222484.919|113.035 +638978.323|222489.263|112.831 +638973.324|222493.957|109.978 +638968.353|222498.623|107.073 +638973.677|222491.229|111.158 +638978.621|222486.568|113.425 +638983.096|222482.307|113.029 +638987.543|222478.074|112.462 +638996.489|222469.551|111.408 +639000.939|222465.309|110.609 +639005.483|222460.987|110.377 +639010.086|222456.610|110.225 +639014.646|222452.275|110.137 +639019.285|222447.865|110.252 +639023.939|222443.448|110.475 +639028.529|222439.084|110.320 +639033.171|222434.667|110.216 +639037.765|222430.299|110.121 +639042.376|222425.913|109.838 +639051.792|222416.970|110.277 +639056.446|222412.551|110.332 +639061.158|222408.073|110.481 +639065.834|222403.629|110.396 +639070.500|222399.191|110.289 +639079.797|222390.343|109.503 +639084.463|222385.902|109.106 +639089.023|222381.555|108.302 +639093.659|222377.139|107.704 +639098.173|222372.823|106.250 +639121.384|222350.691|101.834 +639126.126|222346.180|101.721 +639135.844|222336.966|102.962 +639145.478|222327.810|102.940 +639150.389|222323.159|103.882 +639174.980|222299.857|107.988 +639179.835|222295.248|108.314 +639184.724|222290.603|108.567 +639199.254|222276.796|108.634 +639204.064|222272.220|108.268 +639208.892|222267.627|108.079 +639218.591|222258.410|108.143 +639252.439|222226.186|104.736 +639291.228|222189.217|98.350 +639296.132|222184.554|98.158 +639301.125|222179.814|98.505 +639316.270|222165.476|102.343 +639321.226|222160.767|102.395 +639346.354|222136.959|107.119 +639371.336|222113.252|109.823 +639376.304|222108.530|109.765 +639381.257|222103.818|109.475 +639386.259|222099.069|110.015 +639391.242|222094.339|110.283 +639396.195|222089.624|110.106 +639406.125|222080.187|110.173 +639416.074|222070.723|109.792 +639421.055|222065.980|109.268 +639425.992|222061.277|108.893 +639430.939|222056.571|108.649 +639435.932|222051.822|108.408 +639440.946|222047.058|108.619 +639450.940|222037.554|108.354 +639460.889|222028.093|108.271 +639475.900|222013.829|108.652 +639485.953|222004.301|110.310 +639490.948|221999.552|110.347 +639525.812|221966.365|107.558 +639540.860|221952.079|108.796 +639550.851|221942.591|109.481 +639585.869|221909.319|110.499 +639590.856|221904.579|110.560 +639595.888|221899.791|110.320 +639600.869|221895.051|110.106 +639605.855|221890.311|109.975 +639610.842|221885.566|109.649 +639620.815|221876.071|108.911 +639625.853|221871.280|108.698 +639630.797|221866.567|108.049 +639635.832|221861.779|108.064 +639640.825|221857.030|107.750 +639645.818|221852.284|107.771 +639650.810|221847.536|107.680 +639655.806|221842.784|107.342 +639660.820|221837.986|105.488 +639665.819|221833.228|105.187 +639670.814|221828.480|105.257 +639675.813|221823.728|105.278 +639680.809|221818.976|105.324 +639685.807|221814.221|105.321 +639690.757|221809.512|105.324 +639695.802|221804.714|105.400 +639700.755|221800.008|105.513 +639705.754|221795.250|105.479 +639710.719|221790.523|105.126 +639715.675|221785.804|105.016 +639720.680|221781.043|104.995 +639725.688|221776.276|104.858 +639730.653|221771.549|104.629 +639735.667|221766.779|104.461 +639740.641|221762.042|104.071 +639750.666|221752.481|102.584 +639755.613|221747.762|101.828 +639760.630|221742.986|101.785 +639765.598|221738.262|101.794 +639770.499|221733.607|102.349 +639785.477|221719.340|101.072 +639790.458|221714.600|100.977 +639805.433|221700.311|98.377 +639810.379|221695.605|98.228 +639815.369|221690.856|98.185 +639820.316|221686.147|98.079 +639825.269|221681.438|97.951 +639830.219|221676.725|97.850 +639835.178|221672.004|97.658 +639840.146|221667.274|97.341 +639845.102|221662.555|97.237 +639850.025|221657.870|96.988 +639854.987|221653.149|96.872 +639859.910|221648.458|96.631 +639864.884|221643.725|96.411 +639884.821|221624.699|92.595 +639889.774|221619.978|92.199 +639894.712|221615.268|91.440 +639899.689|221610.535|91.468 +639909.519|221601.171|90.724 +639914.359|221596.578|91.379 +639919.245|221591.933|91.471 +639938.844|221573.279|90.794 +639948.280|221564.352|93.921 +639953.118|221559.761|94.656 +639957.845|221555.281|95.589 +639962.667|221550.700|95.982 +639967.437|221546.167|96.418 +639976.996|221537.087|97.177 +639986.542|221528.019|98.091 +639996.098|221518.948|99.005 +640000.907|221514.373|99.142 +640005.671|221509.841|99.286 +640015.108|221500.883|100.499 +640019.842|221496.393|101.002 +640029.275|221487.432|101.874 +640043.412|221473.996|102.748 +640057.533|221460.567|103.492 +640066.915|221451.642|103.803 +640071.658|221447.125|103.571 +640076.281|221442.730|103.916 +640080.960|221438.277|103.864 +640076.641|221438.960|104.028 +640071.898|221443.455|103.782 +640067.064|221448.046|103.925 +640062.279|221452.581|103.660 +640057.475|221457.141|103.599 +640018.945|221493.668|101.224 +640014.163|221498.198|100.688 +640009.259|221502.846|100.404 +639999.618|221511.978|99.234 +639975.191|221535.130|97.317 +639960.536|221549.011|95.814 +639950.737|221558.289|94.500 +639941.099|221567.384|91.346 +639936.207|221572.017|90.617 +639911.204|221595.758|91.382 +639906.258|221600.443|90.809 +639901.289|221605.164|91.151 +639896.245|221609.956|91.309 +639891.246|221614.702|91.501 +639886.214|221619.493|92.211 +639876.131|221629.085|93.385 +639860.925|221643.581|96.491 +639855.904|221648.352|96.658 +639850.884|221653.122|96.869 +639845.864|221657.892|97.073 +639840.847|221662.659|97.295 +639835.885|221667.374|97.433 +639830.826|221672.187|97.673 +639825.815|221676.945|97.875 +639820.816|221681.697|97.981 +639815.768|221686.491|98.076 +639810.773|221691.237|98.131 +639805.768|221695.995|98.396 +639795.652|221705.636|100.343 +639790.598|221710.439|100.804 +639785.614|221715.176|100.880 +639780.619|221719.925|101.233 +639765.565|221734.235|101.971 +639760.560|221738.981|101.535 +639755.589|221743.702|101.477 +639750.553|221748.494|101.977 +639745.518|221753.282|102.453 +639740.504|221758.068|103.843 +639735.475|221762.850|104.355 +639730.458|221767.620|104.559 +639725.489|221772.338|104.720 +639720.430|221777.151|104.931 +639715.419|221781.909|105.016 +639705.446|221791.385|105.363 +639700.441|221796.140|105.424 +639695.482|221800.852|105.495 +639690.437|221805.641|105.339 +639685.481|221810.347|105.348 +639680.480|221815.096|105.309 +639675.481|221819.845|105.290 +639670.528|221824.548|105.266 +639665.526|221829.296|105.290 +639660.479|221834.094|105.434 +639655.513|221838.834|106.823 +639645.519|221848.337|107.442 +639640.569|221853.037|107.595 +639635.573|221857.789|108.015 +639625.634|221867.238|108.494 +639620.641|221871.984|108.817 +639605.718|221886.172|109.811 +639595.748|221895.648|110.262 +639590.807|221900.345|110.469 +639546.078|221942.810|109.494 +639536.111|221952.250|108.110 +639521.163|221966.438|107.637 +639516.226|221971.135|107.912 +639511.300|221975.823|108.747 +639501.409|221985.242|110.350 +639496.462|221989.939|110.356 +639491.521|221994.636|110.460 +639486.526|221999.378|110.429 +639481.579|222004.075|110.466 +639456.735|222027.630|108.274 +639451.824|222032.291|108.213 +639446.838|222037.033|108.610 +639441.940|222041.688|108.817 +639436.977|222046.400|108.698 +639432.021|222051.106|108.759 +639427.062|222055.815|108.771 +639422.161|222060.472|109.033 +639417.229|222065.166|109.533 +639412.331|222069.821|109.871 +639392.589|222088.572|110.185 +639387.679|222093.239|110.347 +639382.720|222097.935|109.743 +639377.809|222102.602|109.945 +639372.884|222107.278|109.939 +639367.958|222111.956|109.920 +639353.072|222126.069|108.491 +639348.149|222130.735|108.012 +639343.157|222135.463|107.223 +639338.204|222140.153|106.409 +639333.202|222144.890|105.595 +639308.217|222168.527|100.322 +639303.213|222173.261|99.243 +639298.284|222177.930|98.518 +639293.340|222182.618|98.225 +639288.494|222187.224|98.530 +639278.829|222196.429|99.978 +639269.160|222205.631|101.413 +639254.810|222219.307|104.409 +639250.001|222223.885|105.114 +639240.399|222233.020|106.287 +639235.623|222237.565|106.863 +639211.586|222260.416|108.509 +639206.768|222264.991|108.323 +639182.740|222287.811|108.826 +639177.888|222292.414|108.503 +639173.044|222297.010|108.277 +639168.180|222301.618|107.503 +639163.288|222306.245|106.555 +639143.750|222324.744|103.364 +639119.762|222347.476|102.029 +639115.093|222351.914|102.343 +639092.105|222373.795|107.076 +639082.973|222382.488|108.954 +639078.312|222386.917|109.411 +639050.472|222413.346|110.350 +639045.857|222417.726|110.591 +639041.249|222422.097|110.545 +639036.597|222426.511|110.573 +639032.022|222430.851|110.795 +639027.389|222435.246|110.661 +639018.227|222443.939|110.798 +639013.567|222448.356|110.560 +639004.429|222457.024|110.667 +638999.872|222461.349|110.822 +638995.425|222465.580|111.341 +638990.972|222469.814|112.145 +638982.059|222478.284|113.157 +638973.068|222486.818|113.471 +638952.094|222503.348|102.395 +638957.130|222498.605|105.303 +638981.252|222475.791|113.102 +638985.699|222471.551|112.569 +638990.192|222467.268|112.011 +638994.636|222463.026|111.191 +638999.147|222458.728|110.783 +639003.776|222454.327|110.792 +639008.385|222449.944|111.008 +639012.963|222445.585|110.752 +639017.608|222441.171|110.923 +639022.253|222436.755|111.124 +639026.829|222432.396|110.914 +639031.452|222427.995|110.707 +639036.116|222423.560|110.771 +639040.703|222419.195|110.685 +639063.969|222397.061|110.435 +639077.889|222383.799|109.329 +639082.513|222379.391|108.628 +639091.647|222370.665|106.503 +639114.709|222348.655|102.120 +639119.454|222344.141|102.026 +639143.613|222321.187|103.809 +639168.076|222297.991|108.040 +639177.787|222288.765|108.716 +639182.630|222284.163|109.027 +639192.293|222274.973|109.030 +639197.121|222270.376|108.856 +639201.918|222265.807|108.396 +639206.719|222261.239|108.430 +639216.372|222252.055|108.122 +639221.258|222247.404|108.128 +639226.077|222242.819|107.948 +639235.708|222233.636|106.653 +639240.555|222229.018|106.345 +639245.401|222224.406|106.001 +639250.235|222219.798|105.598 +639269.410|222201.488|101.212 +639274.253|222196.868|100.404 +639283.958|222187.614|98.908 +639293.733|222178.302|98.283 +639298.738|222173.553|98.752 +639303.764|222168.799|100.100 +639333.854|222140.291|105.671 +639338.880|222135.533|106.860 +639343.885|222130.790|107.793 +639348.905|222126.029|108.326 +639353.867|222121.320|108.774 +639368.830|222107.119|110.094 +639373.811|222102.389|110.237 +639378.751|222097.686|109.835 +639383.750|222092.943|110.341 +639388.764|222088.179|110.323 +639403.657|222074.024|110.408 +639408.588|222069.327|109.945 +639413.563|222064.590|109.356 +639418.513|222059.884|109.158 +639423.505|222055.135|108.893 +639428.516|222050.374|109.012 +639443.418|222036.204|108.811 +639448.414|222031.455|108.698 +639483.420|221998.217|110.704 +639488.406|221993.474|110.576 +639498.383|221983.989|110.411 +639518.271|221965.042|107.811 +639533.300|221950.766|108.247 +639548.342|221936.492|109.670 +639568.353|221917.494|110.920 +639583.352|221903.232|110.826 +639588.335|221898.492|110.457 +639593.322|221893.756|110.573 +639603.331|221884.228|109.951 +639608.269|221879.531|109.622 +639623.232|221865.287|108.347 +639628.270|221860.496|108.055 +639633.260|221855.747|107.848 +639638.207|221851.041|107.454 +639643.245|221846.246|107.247 +639648.238|221841.498|107.058 +639658.238|221831.973|105.824 +639663.191|221827.254|105.257 +639668.190|221822.505|105.245 +639673.186|221817.757|105.254 +639678.181|221813.011|105.354 +639683.134|221808.305|105.345 +639688.179|221803.513|105.479 +639693.129|221798.807|105.507 +639698.131|221794.052|105.464 +639703.132|221789.300|105.495 +639708.098|221784.573|105.025 +639713.054|221779.867|105.123 +639718.061|221775.106|104.986 +639723.024|221770.388|104.815 +639728.041|221765.614|104.486 +639733.009|221760.890|104.248 +639738.011|221756.117|103.038 +639742.988|221751.374|102.575 +639747.932|221746.668|101.944 +639752.967|221741.870|101.343 +639757.954|221737.128|100.932 +639782.685|221713.625|100.904 +639787.672|221708.882|100.703 +639792.610|221704.185|100.581 +639802.580|221694.678|98.573 +639807.588|221689.911|98.155 +639812.486|221685.257|98.103 +639817.481|221680.508|98.003 +639822.383|221675.851|97.926 +639827.342|221671.132|97.686 +639832.301|221666.414|97.481 +639837.263|221661.696|97.289 +639842.225|221656.980|97.143 +639847.141|221652.305|96.985 +639852.110|221647.577|96.756 +639857.035|221642.896|96.533 +639872.041|221628.585|93.406 +639886.878|221614.458|91.824 +639891.868|221609.703|91.032 +639896.729|221605.085|91.318 +639901.695|221600.361|90.928 +639926.161|221577.110|90.928 +639935.875|221567.875|90.824 +639940.648|221563.364|92.336 +639959.689|221545.332|96.146 +639964.535|221540.739|96.826 +639974.100|221531.662|97.521 +639978.849|221527.157|98.216 +639983.646|221522.612|98.944 +639988.395|221518.104|99.188 +639993.235|221513.508|99.481 +639998.018|221508.960|99.432 +640002.785|221504.443|100.036 +640007.528|221499.941|100.407 +640016.995|221490.962|101.368 +640031.153|221477.529|102.852 +640035.847|221473.073|103.285 +640045.372|221464.023|103.492 +640059.487|221450.612|103.958 +640064.181|221446.153|104.117 +640073.648|221437.146|103.824 +640066.973|221440.343|103.894 +640062.166|221444.909|104.220 +640052.662|221453.922|104.016 +640047.944|221458.388|103.638 +640038.340|221467.501|103.617 +640033.561|221472.030|103.428 +640028.809|221476.532|103.017 +640024.042|221481.046|102.736 +640019.284|221485.551|101.986 +640014.504|221490.072|101.407 +640004.922|221499.152|100.554 +639995.305|221508.256|99.609 +639975.895|221526.654|98.688 +639966.236|221535.795|97.366 +639961.372|221540.400|96.853 +639956.510|221545.003|96.283 +639951.578|221549.685|96.521 +639946.747|221554.244|95.101 +639937.183|221563.260|91.666 +639932.352|221567.829|90.794 +639917.465|221581.948|90.565 +639912.433|221586.727|91.010 +639902.502|221596.148|90.946 +639892.511|221605.631|91.184 +639887.485|221610.398|91.087 +639882.468|221615.162|91.556 +639877.445|221619.935|92.144 +639872.373|221624.757|92.818 +639852.101|221644.042|96.600 +639847.071|221648.815|96.860 +639842.057|221653.570|96.960 +639837.040|221658.334|97.161 +639832.029|221663.089|97.286 +639826.964|221667.895|97.548 +639821.947|221672.656|97.804 +639816.896|221677.448|97.939 +639811.891|221682.197|98.060 +639806.847|221686.982|98.106 +639801.836|221691.737|98.423 +639791.668|221701.411|100.343 +639786.632|221706.187|100.414 +639781.579|221710.985|100.868 +639756.396|221734.866|100.825 +639746.274|221744.480|101.645 +639741.235|221749.265|102.166 +639736.151|221754.096|102.684 +639731.107|221758.894|103.586 +639726.069|221763.682|104.342 +639720.994|221768.504|104.842 +639715.980|221773.262|104.973 +639710.920|221778.062|105.095 +639705.860|221782.863|105.254 +639700.849|221787.615|105.312 +639695.842|221792.364|105.324 +639690.788|221797.155|105.354 +639685.780|221801.907|105.507 +639680.733|221806.692|105.321 +639675.728|221811.435|105.296 +639670.677|221816.224|105.266 +639665.675|221820.969|105.269 +639660.622|221825.761|105.427 +639655.611|221830.534|106.513 +639650.606|221835.286|106.872 +639645.562|221840.068|106.750 +639635.515|221849.602|107.336 +639620.477|221863.882|108.445 +639615.435|221868.671|108.796 +639610.488|221873.368|109.146 +639605.447|221878.150|109.396 +639600.457|221882.890|109.835 +639595.465|221887.626|110.024 +639590.432|221892.405|110.469 +639585.443|221897.139|110.688 +639580.499|221901.830|110.841 +639575.464|221906.609|110.975 +639565.530|221916.030|111.072 +639545.541|221934.962|109.686 +639530.573|221949.129|108.241 +639520.612|221958.565|107.649 +639515.677|221963.256|108.165 +639505.823|221972.629|109.734 +639495.947|221982.005|110.502 +639490.955|221986.744|110.527 +639486.056|221991.392|110.658 +639481.109|221996.086|110.710 +639476.129|222000.799|109.948 +639466.174|222010.220|108.643 +639461.270|222014.874|108.792 +639456.308|222019.577|108.634 +639441.507|222033.629|109.152 +639431.704|222042.934|109.576 +639426.727|222047.649|109.268 +639421.814|222052.313|109.280 +639416.891|222056.979|109.173 +639411.941|222061.679|109.420 +639407.083|222066.291|109.643 +639402.154|222070.979|110.292 +639397.311|222075.581|110.743 +639387.453|222084.927|110.512 +639382.567|222089.560|110.329 +639377.578|222094.287|110.027 +639372.725|222098.899|110.420 +639367.800|222103.568|110.457 +639362.899|222108.216|110.112 +639323.326|222145.655|104.114 +639318.355|222150.355|103.266 +639303.475|222164.434|100.798 +639298.485|222169.143|99.347 +639293.520|222173.843|98.819 +639288.613|222178.491|98.417 +639283.782|222183.082|98.917 +639274.144|222192.247|100.197 +639269.383|222196.773|100.965 +639240.762|222224.013|106.409 +639226.418|222237.650|108.073 +639212.010|222251.329|108.811 +639202.394|222260.449|108.664 +639197.627|222264.978|109.006 +639192.802|222269.560|109.271 +639188.056|222274.061|109.417 +639183.237|222278.630|109.353 +639178.464|222283.160|109.280 +639158.987|222301.597|106.887 +639154.116|222306.206|106.171 +639139.519|222320.016|103.958 +639125.124|222333.662|102.849 +639120.265|222338.268|102.431 +639115.519|222342.770|102.169 +639110.804|222347.250|102.535 +639106.220|222351.618|103.507 +639087.728|222369.223|106.644 +639078.648|222377.880|108.917 +639074.067|222382.238|109.606 +639060.226|222395.396|110.701 +639050.947|222404.211|111.066 +639046.232|222408.683|110.947 +639036.942|222417.501|111.039 +639032.348|222421.865|111.109 +639027.676|222426.297|111.024 +639023.067|222430.671|111.063 +639009.220|222443.817|111.127 +639004.612|222448.194|111.243 +638995.440|222456.899|111.173 +638990.938|222461.179|111.688 +638982.014|222469.670|112.901 +638977.554|222473.910|113.404 +638973.034|222478.211|113.840 +638968.581|222482.441|114.120 +638963.707|222487.038|112.285 +638958.639|222491.796|109.106 +638944.651|222502.564|102.142 +638954.777|222493.033|107.933 +638964.850|222483.554|113.666 +638974.001|222474.855|113.715 +638978.536|222470.536|113.395 +638987.500|222461.992|112.151 +638991.972|222457.731|111.478 +638996.550|222453.376|111.155 +639001.146|222449.002|110.969 +639005.800|222444.579|111.170 +639010.458|222440.156|111.392 +639015.069|222435.770|111.362 +639019.715|222431.354|111.243 +639024.354|222426.943|111.100 +639029.026|222422.502|111.207 +639033.659|222418.095|111.078 +639038.347|222413.636|111.005 +639043.023|222409.195|111.182 +639057.043|222395.860|110.850 +639061.692|222391.437|110.597 +639066.288|222387.060|110.021 +639084.765|222369.443|107.098 +639107.896|222347.381|102.779 +639112.581|222342.919|102.224 +639117.354|222338.384|102.343 +639122.204|222333.778|102.700 +639136.688|222320.028|103.806 +639161.197|222296.797|107.851 +639166.077|222292.164|108.351 +639175.788|222282.943|109.039 +639180.646|222278.335|109.436 +639185.520|222273.702|109.609 +639190.327|222269.133|109.612 +639195.130|222264.561|109.198 +639199.928|222259.992|108.762 +639209.651|222250.753|109.042 +639224.114|222236.989|108.079 +639248.294|222213.967|105.882 +639253.103|222209.383|105.196 +639282.014|222181.798|99.100 +639286.875|222177.168|98.435 +639291.874|222172.423|98.847 +639296.827|222167.720|99.301 +639301.875|222162.934|100.377 +639316.916|222148.670|103.263 +639321.964|222143.887|104.577 +639332.016|222134.353|106.180 +639337.052|222129.583|107.506 +639342.047|222124.843|108.375 +639347.046|222120.091|108.671 +639352.060|222115.330|109.198 +639357.074|222110.569|109.798 +639362.033|222105.860|110.310 +639371.979|222096.399|110.451 +639376.877|222091.733|110.137 +639381.915|222086.944|110.551 +639386.893|222082.214|110.774 +639391.852|222077.496|110.713 +639396.853|222072.735|110.594 +639401.788|222068.031|110.179 +639406.717|222063.335|109.643 +639411.709|222058.580|109.414 +639416.675|222053.858|109.564 +639421.679|222049.097|109.570 +639441.620|222030.120|109.253 +639451.605|222020.617|108.972 +639456.594|222015.865|108.820 +639461.578|222011.119|108.524 +639476.687|221996.778|110.603 +639481.679|221992.029|110.585 +639506.685|221968.218|109.469 +639511.699|221963.433|108.719 +639516.671|221958.693|108.027 +639526.695|221949.153|107.936 +639541.740|221934.867|109.573 +639556.764|221920.593|110.890 +639561.751|221915.854|110.987 +639576.747|221901.583|110.975 +639581.779|221896.798|110.899 +639591.789|221887.263|110.478 +639596.769|221882.518|109.954 +639601.798|221877.723|109.402 +639606.782|221872.977|109.234 +639611.814|221868.180|108.710 +639616.804|221863.431|108.320 +639621.793|221858.673|107.637 +639626.829|221853.879|107.485 +639631.818|221849.124|107.168 +639656.833|221825.310|106.165 +639661.838|221820.533|105.287 +639666.831|221815.779|105.284 +639671.826|221811.027|105.339 +639676.773|221806.318|105.333 +639681.769|221801.569|105.501 +639686.768|221796.808|105.382 +639691.718|221792.096|105.345 +639696.716|221787.338|105.327 +639701.715|221782.577|105.321 +639706.671|221777.858|105.196 +639711.630|221773.137|105.056 +639716.635|221768.373|104.946 +639721.603|221763.636|104.510 +639726.599|221758.857|103.196 +639731.573|221754.114|102.733 +639736.538|221749.387|102.639 +639746.466|221739.917|101.337 +639756.421|221730.434|100.828 +639781.137|221706.907|100.825 +639786.078|221702.201|100.590 +639791.034|221697.476|100.066 +639800.986|221687.973|98.341 +639805.935|221683.257|98.091 +639810.837|221678.588|97.917 +639815.784|221673.879|97.832 +639820.688|221669.206|97.628 +639825.644|221664.488|97.442 +639830.554|221659.812|97.274 +639835.465|221655.133|97.088 +639840.424|221650.409|96.933 +639845.297|221645.770|96.689 +639850.217|221641.082|96.485 +639865.113|221626.851|93.327 +639870.096|221622.093|92.382 +639874.997|221617.420|91.971 +639884.861|221608.017|91.132 +639889.676|221603.436|91.352 +639894.639|221598.706|90.931 +639899.509|221594.073|91.108 +639904.319|221589.501|91.471 +639928.801|221566.183|90.675 +639933.488|221561.742|92.028 +639952.508|221543.713|96.485 +639957.370|221539.093|96.930 +639962.173|221534.518|96.981 +639966.980|221529.955|97.570 +639976.453|221520.963|99.158 +639981.232|221516.419|99.539 +639990.818|221507.305|100.063 +639995.601|221502.757|100.453 +640009.893|221489.166|101.325 +640019.339|221480.193|102.443 +640024.112|221475.658|103.004 +640028.803|221471.201|103.474 +640033.548|221466.690|103.855 +640047.807|221453.130|104.169 +640052.541|221448.628|104.336 +640057.277|221444.126|104.531 +640061.986|221439.645|104.525 +640066.808|221435.049|104.041 +640071.475|221430.617|104.446 +640076.248|221426.076|104.422 +640080.985|221421.565|104.291 +640079.003|221420.571|104.486 +640074.273|221425.061|104.513 +640064.833|221434.016|104.434 +640060.054|221438.554|104.534 +640050.590|221447.534|104.385 +640045.905|221451.978|104.172 +640041.120|221456.516|103.998 +640031.653|221465.496|103.654 +640022.173|221474.481|103.059 +640017.482|221478.922|102.544 +640008.021|221487.883|101.416 +639998.539|221496.869|100.566 +639984.192|221510.469|99.636 +639979.355|221515.062|99.758 +639965.078|221528.580|97.804 +639945.863|221546.789|96.247 +639941.044|221551.349|95.268 +639931.562|221560.301|92.559 +639926.856|221564.739|90.794 +639917.011|221574.090|91.230 +639902.313|221588.041|91.303 +639887.558|221602.040|91.074 +639882.657|221606.694|91.282 +639877.710|221611.391|91.452 +639867.783|221620.834|92.455 +639862.766|221625.607|93.117 +639847.693|221639.973|96.524 +639842.719|221644.697|96.725 +639837.748|221649.418|96.939 +639832.831|221654.088|97.085 +639827.820|221658.849|97.241 +639822.858|221663.561|97.420 +639817.896|221668.273|97.597 +639812.888|221673.031|97.811 +639807.889|221677.780|97.908 +639802.891|221682.523|97.993 +639797.867|221687.302|98.621 +639792.869|221692.069|99.813 +639777.833|221706.352|100.548 +639762.782|221720.647|101.032 +639752.793|221730.126|100.761 +639747.764|221734.903|100.938 +639742.674|221739.743|101.529 +639732.604|221749.320|102.587 +639727.580|221754.093|102.922 +639722.542|221758.887|103.675 +639717.455|221763.734|104.714 +639712.392|221768.547|104.992 +639707.381|221773.305|105.117 +639702.322|221778.108|105.272 +639697.268|221782.906|105.306 +639692.263|221787.661|105.382 +639687.167|221792.498|105.293 +639682.113|221797.295|105.437 +639677.108|221802.044|105.452 +639672.064|221806.833|105.296 +639666.968|221811.670|105.284 +639661.966|221816.416|105.306 +639656.867|221821.268|105.824 +639651.813|221826.072|106.360 +639646.814|221830.820|106.552 +639641.721|221835.658|106.692 +639636.677|221840.446|106.778 +639626.591|221850.029|107.189 +639611.421|221864.449|108.402 +639606.379|221869.241|108.872 +639601.344|221874.029|109.244 +639596.309|221878.817|109.838 +639586.196|221888.431|110.569 +639581.163|221893.216|110.993 +639576.125|221897.992|110.880 +639571.044|221902.820|111.091 +639560.973|221912.379|111.072 +639555.935|221917.161|110.966 +639550.897|221921.941|110.829 +639540.756|221931.548|109.600 +639535.760|221936.288|109.378 +639530.704|221941.073|108.619 +639525.653|221945.861|108.152 +639520.596|221950.650|107.595 +639515.567|221955.432|108.043 +639510.535|221960.214|108.408 +639505.558|221964.951|109.064 +639500.550|221969.721|110.198 +639490.570|221979.194|110.521 +639480.536|221988.713|110.643 +639475.541|221993.453|110.667 +639460.514|222007.675|108.701 +639455.509|222012.424|108.658 +639420.786|222045.388|110.289 +639415.754|222050.155|109.835 +639410.835|222054.818|109.750 +639405.866|222059.534|109.615 +639400.916|222064.234|109.890 +639396.024|222068.879|110.374 +639391.129|222073.530|110.780 +639386.170|222078.236|110.911 +639381.287|222082.866|110.731 +639376.289|222087.603|110.280 +639371.424|222092.220|110.469 +639346.827|222115.532|109.091 +639341.898|222120.195|108.536 +639336.969|222124.862|108.012 +639317.139|222143.613|104.184 +639297.345|222162.319|99.926 +639287.488|222171.645|98.548 +639282.620|222176.266|98.615 +639277.811|222180.838|99.371 +639230.249|222226.089|107.351 +639225.464|222230.637|107.878 +639220.721|222235.145|108.347 +639206.441|222248.705|109.362 +639196.804|222257.843|109.042 +639192.094|222262.314|109.484 +639148.895|222303.252|106.833 +639144.076|222307.812|106.171 +639139.230|222312.393|105.348 +639134.249|222317.087|103.516 +639129.525|222321.565|103.334 +639120.037|222330.559|103.099 +639115.233|222335.107|102.773 +639110.454|222339.633|102.270 +639105.769|222344.077|102.517 +639082.820|222365.907|106.586 +639073.814|222374.484|109.058 +639064.654|222383.183|109.804 +639060.076|222387.536|110.548 +639050.905|222396.244|111.304 +639046.260|222400.651|111.292 +639037.036|222409.399|111.487 +639032.385|222413.809|111.496 +639027.792|222418.165|111.603 +639023.189|222422.530|111.664 +639009.379|222435.624|111.630 +639004.834|222439.937|111.813 +638995.650|222448.642|111.673 +638991.121|222452.946|111.990 +638977.670|222465.720|113.297 +638973.193|222469.972|113.703 +638968.746|222474.191|114.014 +638964.189|222478.519|114.258 +638954.652|222487.507|111.027 +638949.565|222492.283|108.088 +638944.456|222497.075|104.821 +638939.494|222501.735|102.154 +638943.560|222495.472|105.699 +638948.556|222490.763|108.372 +638953.820|222485.819|112.337 +638958.727|222481.183|114.337 +638963.250|222476.882|114.468 +638967.722|222472.618|114.041 +638985.744|222455.436|112.374 +638990.295|222451.105|112.185 +639004.133|222437.931|111.965 +639008.702|222433.579|111.661 +639018.047|222424.691|112.097 +639022.738|222420.226|111.990 +639027.368|222415.815|111.844 +639032.007|222411.399|111.764 +639036.686|222406.945|111.642 +639041.340|222402.511|111.383 +639045.988|222398.088|111.420 +639055.346|222389.176|110.981 +639064.557|222380.385|109.618 +639087.639|222358.354|105.522 +639101.563|222345.056|102.852 +639106.275|222340.566|102.480 +639111.094|222335.982|102.587 +639115.916|222331.404|103.071 +639120.698|222326.850|102.934 +639135.362|222312.933|105.117 +639140.251|222308.294|105.927 +639145.201|222303.600|106.875 +639159.871|222289.664|108.506 +639164.745|222285.034|108.978 +639189.077|222261.894|109.811 +639193.841|222257.346|109.061 +639198.696|222252.728|109.122 +639218.143|222234.212|108.549 +639237.437|222215.823|106.732 +639247.117|222206.600|105.997 +639280.807|222174.422|98.941 +639285.693|222169.765|98.612 +639295.681|222160.289|99.923 +639300.716|222155.525|101.471 +639320.824|222136.465|105.455 +639330.843|222126.968|107.326 +639340.801|222117.522|108.570 +639365.709|222093.866|110.618 +639370.683|222089.136|110.746 +639375.575|222084.479|110.332 +639380.565|222079.739|110.728 +639390.477|222070.308|110.551 +639395.406|222065.611|110.036 +639400.356|222060.902|109.868 +639405.309|222056.190|109.747 +639410.326|222051.423|109.984 +639415.309|222046.692|110.487 +639420.265|222041.980|110.518 +639430.196|222032.528|110.088 +639435.167|222027.789|109.518 +639455.086|222008.836|108.975 +639460.090|222004.081|109.152 +639475.123|221989.811|110.600 +639480.158|221985.019|110.521 +639490.141|221975.528|110.682 +639495.133|221970.782|110.798 +639505.106|221961.269|109.067 +639510.136|221956.481|108.759 +639515.104|221951.741|108.034 +639520.090|221946.998|107.915 +639525.135|221942.207|108.213 +639530.134|221937.461|108.698 +639535.181|221932.673|109.323 +639540.177|221927.930|109.875 +639555.243|221913.620|111.008 +639560.230|221908.880|111.261 +639565.213|221904.140|111.292 +639570.239|221899.355|110.975 +639575.223|221894.615|110.960 +639580.252|221889.833|110.832 +639585.278|221885.041|110.374 +639590.259|221880.302|110.155 +639595.242|221875.556|109.646 +639600.271|221870.758|108.853 +639605.258|221866.016|108.802 +639610.290|221861.224|108.457 +639650.359|221823.078|106.244 +639655.404|221818.281|106.010 +639660.405|221813.511|105.382 +639665.401|221808.759|105.336 +639670.442|221803.971|105.540 +639675.441|221799.219|105.461 +639680.391|221794.510|105.400 +639685.439|221789.715|105.388 +639690.392|221785.006|105.391 +639695.393|221780.248|105.275 +639700.395|221775.496|105.269 +639705.348|221770.784|105.245 +639715.346|221761.259|103.937 +639720.320|221756.522|103.434 +639725.297|221751.783|102.867 +639730.278|221747.040|102.328 +639735.246|221742.315|102.261 +639740.281|221737.518|101.563 +639745.222|221732.812|101.044 +639750.200|221728.075|100.788 +639755.186|221723.329|100.380 +639770.003|221709.251|100.645 +639774.940|221704.551|100.401 +639779.921|221699.814|100.328 +639784.825|221695.148|99.892 +639799.715|221680.965|98.240 +639804.671|221676.250|97.929 +639809.575|221671.583|97.734 +639814.525|221666.874|97.597 +639819.435|221662.205|97.411 +639824.348|221657.532|97.180 +639829.247|221652.875|97.192 +639834.114|221648.245|96.994 +639839.034|221643.566|96.780 +639843.904|221638.930|96.573 +639858.721|221624.803|93.897 +639863.674|221620.075|92.693 +639868.615|221615.360|91.684 +639873.510|221610.703|91.428 +639878.338|221606.112|91.455 +639883.224|221601.470|91.410 +639888.082|221596.846|91.099 +639892.898|221592.271|91.367 +639902.676|221582.957|90.114 +639926.664|221560.182|91.980 +639936.067|221551.291|94.900 +639945.555|221542.296|96.287 +639950.292|221537.806|97.070 +639959.777|221528.806|97.993 +639964.520|221524.301|98.222 +639969.315|221519.744|98.420 +639973.963|221515.346|99.648 +639978.757|221510.795|99.901 +639988.179|221501.849|100.639 +639997.649|221492.851|100.968 +640007.034|221483.945|101.752 +640030.430|221461.740|104.059 +640035.106|221457.296|104.242 +640039.839|221452.795|104.376 +640044.530|221448.338|104.492 +640049.224|221443.873|104.577 +640058.588|221434.973|104.650 +640063.334|221430.456|104.391 +640067.997|221426.027|104.815 +640077.394|221417.087|104.775 +640075.032|221416.487|104.800 +640046.240|221443.772|104.678 +640041.397|221448.363|104.571 +640036.602|221452.904|104.477 +640031.768|221457.482|104.330 +640026.959|221462.036|103.983 +640012.572|221475.648|102.687 +640003.038|221484.664|101.374 +639998.192|221489.252|101.023 +639993.339|221493.845|100.727 +639988.508|221498.426|100.746 +639973.963|221512.197|99.969 +639949.862|221534.987|96.985 +639944.992|221539.599|96.576 +639920.970|221562.279|91.257 +639916.039|221566.958|91.596 +639911.156|221571.584|91.385 +639906.291|221576.184|90.943 +639901.320|221580.902|91.266 +639891.530|221590.183|91.312 +639886.586|221594.868|91.379 +639881.727|221599.468|90.983 +639876.762|221604.180|91.388 +639871.876|221608.816|91.437 +639866.865|221613.577|91.897 +639841.960|221637.272|96.427 +639837.031|221641.951|96.680 +639832.060|221646.669|96.875 +639827.140|221651.339|97.049 +639822.178|221656.045|97.152 +639817.219|221660.751|97.305 +639812.303|221665.417|97.500 +639807.347|221670.120|97.631 +639802.391|221674.823|97.820 +639797.425|221679.539|98.170 +639787.477|221688.997|99.490 +639772.578|221703.136|100.273 +639757.682|221717.267|100.322 +639752.699|221721.997|100.496 +639747.776|221726.664|100.334 +639742.732|221731.455|100.892 +639737.773|221736.174|101.825 +639732.780|221740.919|102.434 +639727.763|221745.680|102.492 +639717.818|221755.117|102.815 +639712.843|221759.838|103.077 +639707.826|221764.630|105.025 +639702.815|221769.385|105.159 +639697.804|221774.140|105.226 +639692.845|221778.843|105.251 +639687.792|221783.637|105.309 +639682.836|221788.337|105.284 +639677.828|221793.086|105.357 +639672.826|221797.835|105.394 +639667.821|221802.581|105.455 +639662.819|221807.320|105.330 +639657.772|221812.109|105.266 +639652.810|221816.827|105.955 +639647.765|221821.606|105.754 +639642.767|221826.352|105.885 +639637.765|221831.098|106.016 +639632.720|221835.880|105.991 +639627.719|221840.632|106.455 +639622.723|221845.375|106.570 +639617.678|221850.163|106.970 +639607.641|221859.712|108.625 +639592.621|221873.977|109.765 +639587.305|221879.028|110.228 +639582.550|221883.536|110.252 +639577.567|221888.275|111.033 +639567.499|221897.834|111.511 +639562.506|221902.564|111.347 +639557.425|221907.386|111.487 +639547.385|221916.893|110.530 +639537.296|221926.452|109.932 +639532.292|221931.188|109.271 +639527.192|221936.016|108.719 +639522.139|221940.799|108.110 +639517.140|221945.538|108.040 +639512.099|221950.321|108.018 +639487.013|221974.171|110.792 +639482.018|221978.914|110.758 +639476.976|221983.699|110.792 +639471.978|221988.445|110.771 +639466.891|221993.255|109.588 +639456.863|222002.765|108.911 +639451.815|222007.556|108.991 +639436.819|222021.796|109.320 +639431.842|222026.533|109.862 +639426.864|222031.266|110.432 +639416.876|222040.755|110.957 +639411.850|222045.522|110.548 +639406.827|222050.283|110.320 +639401.846|222055.007|109.996 +639396.835|222059.765|109.999 +639391.836|222064.514|110.246 +639386.944|222069.165|110.697 +639381.943|222073.917|110.914 +639376.941|222078.657|110.405 +639371.985|222083.363|110.633 +639367.029|222088.075|110.835 +639362.045|222092.800|110.713 +639347.095|222106.979|109.682 +639342.111|222111.697|108.969 +639337.091|222116.455|108.448 +639332.120|222121.164|108.027 +639327.124|222125.895|107.284 +639322.153|222130.598|106.272 +639312.082|222140.120|104.047 +639307.102|222144.835|103.074 +639297.110|222154.284|100.983 +639292.087|222159.030|99.700 +639282.163|222168.436|98.704 +639277.332|222173.029|99.164 +639272.480|222177.650|99.962 +639253.387|222195.840|103.943 +639229.463|222218.609|107.412 +639219.877|222227.720|108.320 +639205.554|222241.341|109.801 +639200.720|222245.934|109.899 +639195.856|222250.543|109.320 +639191.055|222255.100|109.353 +639172.008|222273.193|110.179 +639167.192|222277.759|109.747 +639162.349|222282.346|109.134 +639143.000|222300.674|106.833 +639138.169|222305.249|106.098 +639128.544|222314.368|104.998 +639123.652|222318.992|103.891 +639114.145|222328.011|103.519 +639109.362|222332.547|102.956 +639104.598|222337.061|102.593 +639099.923|222341.505|102.888 +639058.827|222380.638|110.216 +639054.279|222384.966|110.822 +639045.074|222393.714|111.331 +639035.890|222402.437|111.731 +639031.257|222406.839|111.847 +639017.520|222419.887|112.401 +639008.306|222428.632|112.188 +639003.722|222432.981|112.115 +638999.177|222437.300|112.298 +638994.544|222441.693|111.962 +638989.975|222446.030|112.026 +638985.513|222450.273|112.465 +638972.099|222463.029|113.678 +638963.134|222471.548|114.139 +638958.739|222475.730|114.751 +638954.137|222480.088|114.191 +638949.168|222484.761|111.603 +638929.192|222503.543|100.371 +638926.540|222503.872|99.962 +638936.495|222494.496|105.418 +638951.668|222480.213|114.529 +638960.787|222471.539|114.614 +638965.241|222467.299|114.364 +638969.706|222463.044|113.892 +638974.220|222458.740|113.450 +638978.734|222454.439|113.014 +638983.199|222450.184|112.587 +638987.771|222445.832|112.221 +638992.331|222441.491|112.100 +639001.600|222432.683|112.529 +639015.517|222419.445|112.676 +639029.364|222406.260|111.926 +639043.288|222393.007|111.487 +639047.979|222388.545|111.508 +639052.538|222384.195|110.649 +639057.257|222379.705|110.542 +639075.591|222362.204|106.906 +639080.260|222357.757|106.516 +639094.162|222344.483|103.641 +639098.850|222340.014|103.077 +639108.378|222330.956|103.120 +639113.261|222326.320|103.718 +639122.880|222317.172|103.864 +639132.686|222307.873|105.595 +639137.636|222303.179|106.488 +639142.479|222298.580|106.973 +639147.463|222293.852|107.845 +639162.108|222279.950|109.323 +639191.220|222252.259|109.500 +639220.398|222224.489|108.418 +639230.097|222215.244|107.293 +639273.632|222173.709|99.557 +639278.530|222169.036|98.795 +639283.462|222164.348|98.929 +639293.474|222154.848|100.566 +639298.595|222149.995|101.980 +639303.581|222145.268|102.971 +639318.706|222130.921|105.991 +639338.758|222111.883|108.820 +639358.702|222092.937|110.859 +639363.722|222088.161|110.917 +639373.622|222078.727|110.405 +639378.593|222073.999|110.481 +639383.567|222069.266|110.673 +639388.511|222064.554|110.368 +639393.507|222059.799|110.109 +639398.478|222055.068|110.310 +639428.364|222026.624|110.484 +639433.320|222021.894|109.561 +639438.251|222017.194|109.033 +639443.253|222012.433|109.100 +639448.252|222007.675|109.155 +639458.198|221998.208|109.058 +639468.235|221988.677|110.320 +639473.246|221983.916|110.816 +639513.144|221945.898|108.223 +639543.219|221917.317|110.765 +639553.247|221907.783|111.453 +639558.230|221903.040|111.322 +639568.246|221893.506|111.499 +639573.275|221888.717|111.207 +639578.259|221883.969|110.850 +639588.265|221874.428|109.954 +639593.297|221869.628|109.085 +639598.235|221864.925|109.064 +639603.271|221860.127|108.710 +639608.306|221855.326|108.219 +639613.250|221850.611|107.628 +639628.322|221836.243|106.153 +639633.318|221831.482|105.821 +639638.359|221826.684|105.876 +639643.358|221821.920|105.461 +639648.351|221817.171|105.623 +639653.392|221812.374|105.656 +639658.394|221807.607|105.281 +639663.386|221802.858|105.537 +639668.431|221798.057|105.397 +639673.430|221793.299|105.379 +639678.428|221788.542|105.278 +639683.476|221783.741|105.306 +639688.429|221779.026|105.257 +639693.473|221774.225|105.272 +639698.478|221769.461|105.144 +639718.580|221750.289|102.285 +639723.597|221745.510|102.026 +639733.561|221736.034|102.319 +639738.617|221731.202|101.108 +639743.610|221726.438|100.392 +639748.639|221721.650|100.136 +639758.573|221712.204|100.426 +639763.593|221707.425|100.423 +639778.546|221693.185|99.850 +639783.511|221688.448|99.170 +639788.501|221683.699|99.011 +639798.483|221674.183|97.859 +639803.476|221669.428|97.734 +639808.432|221664.710|97.515 +639813.388|221659.992|97.308 +639818.341|221655.277|97.183 +639823.294|221650.558|97.070 +639828.253|221645.840|96.927 +639833.218|221641.109|96.695 +639838.138|221636.425|96.463 +639853.173|221622.066|93.260 +639858.087|221617.381|92.644 +639868.005|221607.923|91.519 +639872.885|221603.278|91.492 +639877.823|221598.578|91.367 +639902.207|221575.373|91.285 +639916.737|221561.557|91.964 +639931.013|221548.023|95.156 +639935.781|221543.500|96.101 +639945.293|221534.469|97.198 +639950.100|221529.903|97.734 +639954.849|221525.386|97.871 +639964.359|221516.358|99.085 +639969.043|221511.911|99.908 +639973.832|221507.357|100.188 +639983.287|221498.374|101.057 +639988.039|221493.857|101.273 +639997.530|221484.826|101.435 +640002.267|221480.324|101.834 +640006.878|221475.950|102.541 +640020.966|221462.560|103.693 +640030.263|221453.727|104.528 +640039.611|221444.848|104.992 +640044.323|221440.368|104.925 +640053.671|221431.480|105.077 +640080.475|221403.536|105.214 +640075.684|221408.086|105.315 +640056.561|221426.231|104.809 +640051.657|221430.895|105.162 +640046.853|221435.451|105.107 +640042.004|221440.054|105.043 +640037.212|221444.598|104.922 +640032.366|221449.201|104.894 +640027.568|221453.745|104.452 +640022.752|221458.311|104.172 +640003.458|221476.596|102.248 +639998.618|221481.184|101.858 +639993.735|221485.814|101.428 +639988.868|221490.431|101.316 +639983.960|221495.086|101.154 +639979.108|221499.688|100.929 +639969.415|221508.875|99.969 +639964.465|221513.572|99.828 +639959.637|221518.138|98.914 +639940.100|221536.648|96.786 +639930.285|221545.948|95.762 +639925.405|221550.565|94.948 +639920.516|221555.198|94.263 +639900.942|221573.724|91.111 +639895.964|221578.449|90.956 +639891.002|221583.161|91.218 +639881.020|221592.640|91.407 +639871.044|221602.110|91.590 +639866.118|221606.783|91.559 +639861.129|221611.519|91.754 +639856.054|221616.344|92.547 +639851.101|221621.051|93.007 +639845.986|221625.924|94.503 +639835.940|221635.486|96.454 +639830.966|221640.204|96.683 +639825.997|221644.923|96.917 +639820.987|221649.677|97.064 +639816.027|221654.380|97.173 +639811.023|221659.129|97.289 +639806.060|221663.838|97.518 +639801.104|221668.542|97.698 +639796.097|221673.296|97.975 +639791.083|221678.060|98.454 +639786.105|221682.794|99.207 +639766.122|221701.759|100.209 +639761.185|221706.443|100.328 +639741.232|221725.366|100.328 +639736.276|221730.084|101.200 +639731.287|221734.820|101.669 +639726.255|221739.600|102.154 +639721.329|221744.275|102.300 +639716.367|221748.978|102.154 +639701.352|221763.264|104.915 +639696.387|221767.980|105.205 +639691.425|221772.683|105.275 +639686.469|221777.386|105.272 +639681.510|221782.086|105.287 +639676.554|221786.786|105.284 +639671.598|221791.489|105.351 +639666.645|221796.189|105.373 +639661.640|221800.935|105.491 +639656.690|221805.623|105.187 +639651.734|221810.332|105.534 +639646.790|221815.007|104.839 +639641.831|221819.720|105.458 +639636.835|221824.456|105.278 +639631.879|221829.162|105.690 +639626.929|221833.859|105.805 +639607.038|221852.763|108.247 +639602.091|221857.460|108.701 +639592.157|221866.891|109.256 +639587.217|221871.588|109.966 +639582.233|221876.321|110.350 +639577.292|221881.009|110.536 +639572.355|221885.700|111.109 +639567.371|221890.433|111.402 +639562.385|221895.164|111.548 +639537.568|221918.685|110.618 +639502.781|221951.649|109.067 +639497.803|221956.380|109.634 +639482.954|221970.477|110.969 +639473.057|221979.859|110.972 +639468.058|221984.598|110.829 +639463.071|221989.311|109.926 +639458.094|221994.020|109.213 +639443.195|222008.147|109.481 +639438.236|222012.847|109.417 +639433.228|222017.593|109.326 +639428.315|222022.266|110.307 +639393.598|222055.181|110.460 +639388.627|222059.893|110.310 +639383.674|222064.593|110.533 +639378.709|222069.299|110.591 +639373.789|222073.963|110.621 +639368.836|222078.663|110.890 +639363.868|222083.375|110.954 +639358.942|222088.045|110.929 +639339.048|222106.872|109.079 +639279.021|222163.614|98.923 +639274.113|222168.271|99.063 +639269.304|222172.840|99.816 +639259.611|222182.057|101.535 +639221.221|222218.563|108.293 +639216.363|222223.172|108.585 +639197.157|222241.402|110.158 +639192.271|222246.032|109.804 +639187.455|222250.592|109.701 +639182.676|222255.133|110.359 +639177.955|222259.617|110.664 +639163.462|222273.348|110.185 +639153.732|222282.550|109.027 +639139.135|222296.355|106.939 +639124.538|222310.159|104.778 +639110.164|222323.777|103.879 +639105.376|222328.310|103.285 +639100.557|222332.876|102.867 +639095.848|222337.344|102.904 +639072.860|222359.208|106.695 +639036.351|222393.915|111.737 +639027.173|222402.629|112.209 +639004.285|222424.346|112.977 +638995.117|222433.042|112.825 +638990.499|222437.416|112.596 +638981.419|222446.027|112.505 +638972.513|222454.491|113.523 +638968.054|222458.728|114.029 +638959.154|222467.183|114.864 +638954.713|222471.402|115.209 +638950.235|222475.647|115.373 +638940.338|222484.950|110.185 +638935.388|222489.601|107.525 +638930.417|222494.271|104.800 +638920.499|222503.592|99.362 +638945.090|222477.985|114.069 +638949.888|222473.447|115.443 +638954.341|222469.213|115.157 +638958.834|222464.937|114.846 +638963.296|222460.688|114.364 +638967.770|222456.427|113.971 +638972.251|222452.156|113.343 +638981.200|222443.637|112.316 +638985.845|222439.227|112.712 +638990.469|222434.832|112.691 +638995.096|222430.439|113.008 +639004.301|222421.686|112.831 +639008.922|222417.296|112.877 +639036.558|222391.007|111.414 +639041.243|222386.551|111.383 +639068.882|222360.219|107.625 +639073.420|222355.885|106.318 +639091.940|222338.234|103.413 +639096.674|222333.726|102.834 +639101.428|222329.212|103.160 +639125.688|222306.197|105.549 +639130.580|222301.561|106.369 +639135.441|222296.949|106.982 +639140.355|222292.292|107.646 +639150.184|222282.974|109.128 +639164.803|222269.102|110.569 +639179.317|222255.307|110.533 +639184.115|222250.741|110.067 +639188.979|222246.114|109.783 +639193.865|222241.475|110.143 +639208.383|222227.668|109.655 +639213.174|222223.102|108.750 +639218.009|222218.496|108.296 +639242.210|222195.450|105.382 +639256.630|222181.682|101.721 +639271.172|222167.823|99.280 +639276.058|222163.175|98.914 +639281.047|222158.438|99.197 +639291.088|222148.926|101.172 +639301.183|222139.367|103.477 +639306.120|222134.670|103.327 +639311.204|222129.869|105.050 +639321.272|222120.326|106.836 +639326.280|222115.583|107.756 +639331.315|222110.810|108.479 +639336.229|222106.147|108.866 +639341.255|222101.380|109.539 +639356.269|222087.130|110.932 +639361.192|222082.452|110.941 +639366.154|222077.736|110.850 +639371.159|222072.975|110.740 +639376.072|222068.303|110.661 +639381.077|222063.545|110.548 +639386.030|222058.833|110.390 +639391.001|222054.111|110.512 +639401.002|222044.614|111.176 +639405.949|222039.911|110.947 +639410.981|222035.134|111.536 +639440.797|222006.764|109.545 +639455.732|221992.566|109.280 +639460.752|221987.805|109.875 +639465.778|221983.041|110.771 +639470.777|221978.292|110.926 +639480.756|221968.804|110.758 +639490.723|221959.321|110.335 +639495.706|221954.582|110.146 +639505.661|221945.105|109.195 +639510.657|221940.360|109.298 +639530.637|221921.389|110.536 +639540.671|221911.864|111.362 +639545.611|221907.170|111.588 +639550.638|221902.388|111.063 +639560.614|221892.911|111.530 +639565.597|221888.175|111.487 +639570.581|221883.432|111.234 +639590.557|221864.416|109.439 +639600.533|221854.921|108.649 +639605.523|221850.175|108.329 +639615.508|221840.653|106.494 +639620.501|221835.901|106.138 +639625.500|221831.144|105.629 +639630.447|221826.434|105.403 +639640.441|221816.931|105.031 +639645.397|221812.212|104.516 +639650.429|221807.439|105.354 +639655.431|221802.681|105.050 +639660.378|221797.984|105.348 +639665.374|221793.232|105.379 +639670.327|221788.523|105.379 +639675.325|221783.765|105.272 +639680.324|221779.013|105.330 +639685.277|221774.301|105.284 +639690.239|221769.580|105.040 +639700.212|221760.085|104.419 +639705.217|221755.297|102.727 +639710.249|221750.496|101.855 +639725.130|221736.351|102.166 +639730.110|221731.605|101.700 +639740.099|221722.086|100.304 +639750.072|221712.588|99.533 +639755.031|221707.876|99.895 +639759.996|221703.158|100.115 +639764.906|221698.494|100.554 +639774.907|221688.969|99.597 +639779.857|221684.254|99.194 +639784.819|221679.527|98.661 +639789.827|221674.756|98.185 +639794.783|221670.038|97.878 +639799.736|221665.326|97.673 +639804.643|221660.656|97.472 +639809.645|221655.895|97.308 +639814.601|221651.180|97.125 +639819.557|221646.465|97.006 +639824.516|221641.747|96.872 +639829.436|221637.065|96.628 +639864.253|221603.869|91.751 +639869.185|221599.178|91.672 +639888.908|221580.411|91.047 +639893.843|221575.718|91.071 +639903.420|221566.653|93.644 +639927.664|221543.631|95.796 +639932.449|221539.093|96.549 +639942.160|221529.863|97.045 +639946.918|221525.358|98.134 +639956.553|221516.208|99.014 +639961.247|221511.758|99.758 +639970.836|221502.654|100.694 +639975.603|221498.128|101.188 +639985.195|221489.014|101.703 +639989.968|221484.475|101.742 +639994.787|221479.891|101.822 +640013.681|221461.954|103.638 +640018.394|221457.482|104.327 +640027.839|221448.500|104.699 +640037.267|221439.542|105.333 +640046.688|221430.584|105.674 +640051.437|221426.057|105.336 +640074.916|221403.719|105.491 +640079.634|221399.232|105.574 +640080.911|221394.675|105.772 +640076.236|221399.113|105.705 +640071.502|221403.606|105.726 +640066.784|221408.083|105.650 +640057.286|221417.099|105.671 +640052.534|221421.607|105.543 +640047.703|221426.198|105.708 +640043.003|221430.657|105.586 +640028.672|221444.251|104.879 +640023.886|221448.789|104.742 +640014.337|221457.842|103.937 +640009.515|221462.414|103.742 +639995.131|221476.051|102.581 +639985.433|221485.247|101.995 +639980.586|221489.843|101.703 +639975.749|221494.427|101.346 +639970.863|221499.063|101.017 +639966.050|221503.620|100.435 +639956.291|221512.871|99.694 +639926.960|221540.659|96.320 +639922.061|221545.301|95.744 +639917.102|221550.002|95.290 +639912.207|221554.641|94.699 +639892.505|221573.285|91.376 +639887.543|221577.991|91.035 +639867.517|221597.014|91.672 +639857.441|221606.594|92.108 +639852.396|221611.388|92.431 +639847.367|221616.168|92.601 +639842.280|221621.017|93.729 +639832.093|221630.734|96.354 +639827.031|221635.550|96.546 +639822.011|221640.320|96.811 +639817.000|221645.081|96.981 +639811.946|221649.885|97.106 +639806.890|221654.688|97.292 +639801.888|221659.443|97.460 +639796.837|221664.244|97.612 +639791.781|221669.054|97.966 +639786.733|221673.848|98.161 +639781.673|221678.664|98.670 +639776.656|221683.440|99.325 +639771.566|221688.277|99.572 +639756.463|221702.630|100.011 +639751.458|221707.373|99.499 +639741.415|221716.910|99.365 +639736.356|221721.732|100.383 +639731.284|221726.576|101.886 +639721.213|221736.137|101.636 +639716.199|221740.898|101.608 +639711.139|221745.699|101.514 +639695.988|221760.137|104.211 +639690.962|221764.923|105.013 +639685.951|221769.687|105.269 +639680.900|221774.484|105.309 +639675.898|221779.233|105.269 +639670.894|221783.985|105.281 +639665.846|221788.782|105.309 +639660.893|221793.485|105.299 +639650.844|221803.029|105.360 +639645.857|221807.753|104.455 +639640.855|221812.502|104.537 +639635.808|221817.303|104.864 +639630.855|221822.012|105.034 +639625.807|221826.809|105.403 +639620.858|221831.515|105.565 +639610.863|221841.034|107.137 +639600.875|221850.541|108.564 +639595.885|221855.281|108.549 +639590.896|221860.026|108.902 +639585.906|221864.775|109.530 +639566.018|221883.694|111.368 +639556.090|221893.125|111.411 +639551.153|221897.816|111.444 +639541.228|221907.243|111.682 +639531.289|221916.674|111.106 +639526.293|221921.413|110.612 +639496.560|221949.635|109.670 +639471.938|221973.046|111.459 +639467.025|221977.704|111.072 +639462.002|221982.462|110.301 +639457.079|221987.128|109.768 +639452.120|221991.834|109.536 +639437.322|222005.889|109.823 +639422.594|222019.888|110.701 +639407.817|222033.936|111.557 +639397.993|222043.263|111.542 +639388.124|222052.621|110.795 +639383.162|222057.333|110.789 +639378.282|222061.963|110.637 +639373.369|222066.632|110.685 +639368.416|222071.339|110.929 +639363.545|222075.965|110.963 +639338.862|222099.377|109.478 +639333.936|222104.047|108.887 +639319.108|222118.092|106.726 +639314.118|222122.819|106.098 +639304.142|222132.253|103.827 +639284.269|222151.059|99.758 +639279.298|222155.768|99.106 +639274.372|222160.444|99.033 +639269.529|222165.050|99.356 +639264.686|222169.661|100.225 +639236.016|222196.977|105.964 +639226.415|222206.121|107.567 +639202.418|222228.942|109.844 +639187.998|222242.640|109.996 +639183.158|222247.236|110.097 +639178.421|222251.744|110.670 +639173.642|222256.285|110.914 +639168.832|222260.851|110.886 +639164.013|222265.426|110.819 +639159.222|222269.974|110.582 +639139.782|222288.393|108.098 +639134.905|222293.011|107.345 +639130.049|222297.613|106.772 +639125.157|222302.240|105.985 +639120.256|222306.870|104.760 +639115.477|222311.403|104.525 +639105.821|222320.550|103.772 +639101.002|222325.113|103.340 +639096.241|222329.624|102.983 +639091.489|222334.135|103.087 +639086.850|222338.551|104.010 +639063.780|222360.494|107.610 +639040.910|222382.244|111.097 +639031.644|222391.041|111.584 +639027.048|222395.409|111.938 +639022.433|222399.789|112.176 +639008.687|222412.843|113.005 +639004.097|222417.199|113.160 +638999.528|222421.533|113.154 +638994.882|222425.938|113.011 +638990.298|222430.287|112.953 +638985.729|222434.618|113.023 +638981.127|222438.986|112.883 +638972.111|222447.548|113.538 +638967.581|222451.849|113.895 +638963.128|222456.082|114.416 +638958.684|222460.304|114.727 +638954.170|222464.592|115.230 +638949.717|222468.820|115.519 +638945.212|222473.093|115.526 +638940.479|222477.565|114.264 +638930.374|222487.050|108.034 +638920.410|222496.417|102.818 +638923.352|222490.747|105.421 +638933.425|222481.256|110.832 +638938.549|222476.434|114.270 +638943.344|222471.895|115.611 +638947.882|222467.576|115.532 +638952.415|222463.263|115.446 +638956.862|222459.021|114.885 +638961.391|222454.705|114.523 +638965.890|222450.416|113.992 +638970.370|222446.146|113.666 +638997.982|222419.872|113.450 +639007.221|222411.072|112.938 +639011.784|222406.723|112.670 +639016.420|222402.312|112.545 +639044.108|222375.929|110.112 +639053.377|222367.090|109.149 +639062.539|222358.345|107.464 +639081.074|222340.670|105.019 +639085.695|222336.256|103.974 +639090.340|222331.821|103.114 +639095.107|222327.286|103.187 +639104.705|222318.163|103.836 +639114.267|222309.071|103.925 +639119.268|222304.337|105.540 +639133.862|222290.484|107.424 +639143.659|222281.188|109.009 +639148.572|222276.524|109.801 +639158.289|222267.295|110.530 +639163.157|222262.671|111.030 +639182.408|222244.340|110.106 +639187.327|222239.662|110.359 +639192.183|222235.044|110.469 +639196.974|222230.478|110.030 +639201.836|222225.848|109.786 +639216.247|222212.108|107.966 +639221.087|222207.496|107.567 +639225.952|222202.866|107.454 +639235.516|222193.734|105.540 +639249.900|222179.991|102.056 +639254.731|222175.379|101.093 +639264.466|222166.098|99.956 +639269.331|222161.459|99.380 +639274.272|222156.756|99.097 +639279.188|222152.077|99.124 +639284.245|222147.289|100.252 +639299.354|222132.978|103.836 +639304.343|222128.242|104.364 +639309.379|222123.472|105.540 +639319.367|222113.998|106.930 +639324.421|222109.210|107.875 +639354.386|222080.760|110.890 +639359.354|222076.036|110.883 +639364.328|222071.308|111.002 +639369.272|222066.602|110.667 +639374.237|222061.881|110.673 +639379.263|222057.104|110.969 +639384.229|222052.386|110.999 +639389.197|222047.662|111.182 +639394.223|222042.888|111.554 +639404.144|222033.458|111.700 +639409.134|222028.709|111.469 +639414.075|222024.006|111.258 +639429.016|222009.778|110.064 +639448.993|221990.777|109.786 +639453.946|221986.068|109.847 +639459.005|221981.264|110.393 +639464.022|221976.506|110.987 +639469.018|221971.757|111.109 +639479.003|221962.263|111.325 +639483.987|221957.520|111.158 +639493.981|221948.001|110.073 +639523.955|221919.496|110.152 +639528.960|221914.753|111.051 +639534.002|221909.968|111.560 +639538.985|221905.228|111.609 +639543.969|221900.486|111.438 +639549.001|221895.703|111.539 +639558.965|221886.221|111.344 +639563.994|221881.436|111.118 +639568.977|221876.696|110.950 +639573.958|221871.950|110.390 +639579.082|221867.070|109.923 +639583.967|221862.413|109.436 +639588.954|221857.664|108.783 +639598.927|221848.176|108.686 +639603.917|221843.430|108.445 +639608.955|221838.626|107.656 +639613.902|221833.893|106.049 +639618.898|221829.129|105.324 +639623.939|221824.334|105.284 +639628.889|221819.628|105.135 +639633.888|221814.861|104.522 +639638.883|221810.112|104.626 +639643.833|221805.403|104.492 +639648.872|221800.621|105.010 +639658.811|221791.175|105.336 +639663.810|221786.423|105.324 +639668.763|221781.714|105.239 +639673.762|221776.965|105.327 +639678.760|221772.213|105.321 +639683.668|221767.544|105.214 +639688.679|221762.777|104.885 +639698.670|221753.230|101.877 +639703.641|221748.503|101.581 +639713.575|221739.054|101.304 +639718.589|221734.287|101.249 +639723.472|221729.660|102.267 +639728.467|221724.899|101.410 +639733.463|221720.135|100.618 +639738.431|221715.395|99.438 +639743.366|221710.702|99.179 +639748.340|221705.971|99.152 +639753.248|221701.317|99.694 +639758.195|221696.626|100.356 +639768.091|221687.204|99.530 +639773.060|221682.468|98.768 +639777.988|221677.783|98.862 +639782.947|221673.062|98.377 +639787.922|221668.322|97.682 +639792.866|221663.625|97.658 +639797.767|221658.962|97.490 +639802.720|221654.252|97.350 +639807.676|221649.537|97.158 +639812.583|221644.871|97.021 +639817.542|221640.152|96.853 +639822.459|221635.474|96.613 +639827.375|221630.798|96.427 +639847.245|221611.843|92.263 +639852.174|221607.158|92.141 +639876.728|221583.810|91.846 +639881.651|221579.122|91.321 +639886.586|221574.431|91.327 +639896.144|221565.388|94.080 +639920.358|221542.406|95.945 +639925.207|221537.803|96.500 +639930.014|221533.244|97.015 +639939.652|221524.103|98.283 +639944.443|221519.552|98.490 +639949.292|221514.953|99.085 +639954.056|221510.429|99.572 +639963.645|221501.331|100.484 +639968.434|221496.789|101.252 +639973.177|221492.288|101.532 +639977.989|221487.722|102.075 +639982.741|221483.208|102.291 +639987.612|221478.581|102.334 +639997.128|221469.546|103.202 +640011.399|221455.995|103.980 +640016.114|221451.523|104.659 +640020.881|221446.994|104.867 +640025.593|221442.520|105.162 +640049.304|221419.995|105.717 +640053.988|221415.545|105.961 +640058.771|221410.997|105.821 +640063.480|221406.523|105.906 +640072.932|221397.540|105.885 +640077.641|221393.063|105.662 +640079.174|221388.847|106.071 +640060.456|221406.596|105.991 +640055.793|221411.019|105.897 +640051.111|221415.459|105.979 +640046.414|221419.910|105.808 +640041.723|221424.363|106.013 +640036.965|221428.874|105.988 +640022.917|221442.178|104.937 +640018.232|221446.616|104.772 +640013.505|221451.100|104.595 +640008.805|221455.550|104.175 +639999.347|221464.508|103.492 +639989.867|221473.490|103.053 +639980.339|221482.513|102.230 +639975.597|221487.002|101.870 +639970.805|221491.541|101.529 +639966.017|221496.076|101.182 +639951.709|221509.622|99.615 +639942.099|221518.723|98.880 +639937.228|221523.335|98.475 +639927.630|221532.418|97.167 +639913.082|221546.192|95.878 +639908.150|221550.876|96.305 +639888.786|221569.177|92.409 +639883.913|221573.785|91.547 +639879.033|221578.409|91.398 +639874.007|221583.185|91.952 +639864.113|221592.561|91.620 +639859.135|221597.279|91.574 +639854.161|221602.007|92.224 +639839.128|221616.274|93.223 +639829.067|221625.845|95.253 +639823.986|221630.679|96.399 +639818.966|221635.440|96.604 +639813.952|221640.198|96.789 +639808.938|221644.953|96.966 +639803.927|221649.708|97.140 +639798.919|221654.457|97.271 +639793.865|221659.251|97.463 +639788.864|221663.994|97.588 +639783.813|221668.785|97.747 +639778.738|221673.607|98.475 +639773.733|221678.356|98.771 +639763.553|221688.030|100.185 +639758.530|221692.791|100.014 +639743.451|221707.059|98.573 +639738.410|221711.845|98.920 +639728.233|221721.528|101.154 +639723.158|221726.344|101.383 +639718.129|221731.117|101.672 +639713.078|221735.893|101.133 +639708.009|221740.703|101.249 +639702.940|221745.513|101.486 +639697.920|221750.271|101.584 +639692.800|221755.138|102.117 +639687.755|221759.939|103.364 +639682.665|221764.785|104.726 +639677.599|221769.598|105.254 +639672.546|221774.390|105.306 +639667.492|221779.178|105.272 +639662.441|221783.970|105.287 +639652.340|221793.537|105.034 +639647.247|221798.359|104.708 +639642.200|221803.145|104.601 +639637.195|221807.890|104.684 +639632.099|221812.718|104.571 +639627.051|221817.507|104.647 +639621.997|221822.304|105.150 +639616.950|221827.093|105.263 +639611.854|221831.936|106.010 +639601.759|221841.543|108.347 +639596.669|221846.374|108.783 +639581.547|221860.715|108.994 +639551.384|221889.351|111.551 +639536.321|221903.631|111.612 +639521.273|221917.875|110.329 +639491.268|221946.322|110.542 +639486.334|221951.012|110.932 +639481.347|221955.746|111.194 +639476.355|221960.483|111.301 +639466.409|221969.919|111.213 +639461.407|221974.659|111.130 +639456.436|221979.368|110.524 +639451.419|221984.120|110.082 +639446.505|221988.777|109.939 +639441.540|221993.483|109.676 +639431.643|222002.877|110.018 +639426.712|222007.565|110.551 +639421.811|222012.216|110.716 +639416.867|222016.913|111.021 +639411.929|222021.604|111.405 +639407.064|222026.216|111.441 +639402.123|222030.910|111.801 +639377.557|222054.209|111.152 +639372.607|222058.894|110.676 +639367.733|222063.520|110.661 +639362.819|222068.181|110.847 +639357.940|222072.811|110.774 +639353.066|222077.435|110.862 +639333.360|222096.101|109.030 +639323.549|222105.388|107.930 +639318.602|222110.070|107.214 +639313.646|222114.757|106.403 +639303.789|222124.087|105.065 +639298.787|222128.812|103.821 +639274.052|222152.208|99.481 +639269.154|222156.847|99.222 +639245.197|222179.637|102.849 +639235.775|222188.614|105.415 +639231.027|222193.134|106.281 +639216.719|222206.731|107.784 +639211.928|222211.285|108.262 +639202.403|222220.337|109.308 +639192.890|222229.381|110.493 +639183.277|222238.497|110.405 +639178.558|222242.981|110.737 +639154.531|222265.771|110.563 +639149.770|222270.282|110.249 +639144.899|222274.897|109.856 +639140.065|222279.469|108.988 +639130.308|222288.698|107.454 +639125.447|222293.300|106.878 +639120.597|222297.894|106.019 +639110.890|222307.084|104.388 +639106.101|222311.628|104.108 +639101.325|222316.161|103.949 +639096.573|222320.669|103.638 +639091.760|222325.234|103.263 +639087.045|222329.712|103.276 +639077.855|222338.466|105.095 +639068.681|222347.208|106.668 +639050.262|222364.737|109.109 +639045.659|222369.117|109.682 +639041.108|222373.448|110.292 +639027.338|222386.548|111.685 +639013.551|222399.661|112.782 +639004.429|222408.332|113.410 +638985.973|222425.861|113.529 +638981.392|222430.211|113.514 +638972.141|222438.986|113.014 +638967.761|222443.162|113.944 +638963.262|222447.438|114.191 +638958.757|222451.724|114.718 +638954.283|222455.979|115.138 +638945.331|222464.492|115.705 +638940.856|222468.744|115.885 +638936.300|222473.066|115.620 +638931.258|222477.805|112.666 +638921.203|222487.260|106.820 +638916.201|222491.960|104.001 +638911.242|222496.630|101.444 +638911.300|222494.243|102.568 +638926.336|222480.082|110.777 +638931.377|222475.346|113.959 +638936.278|222470.722|116.150 +638940.750|222466.461|115.687 +638945.310|222462.120|115.443 +638954.356|222453.516|115.163 +638958.876|222449.212|114.745 +638963.351|222444.954|114.352 +638967.868|222440.650|113.947 +638976.997|222431.963|113.428 +638995.617|222414.276|114.245 +639000.168|222409.939|113.532 +639018.587|222392.406|112.237 +639023.183|222388.023|111.597 +639032.434|222379.221|111.005 +639037.021|222374.850|110.316 +639046.345|222365.977|109.661 +639055.580|222357.171|108.119 +639064.837|222348.347|106.775 +639078.794|222335.043|104.608 +639083.381|222330.666|103.669 +639088.148|222326.131|103.324 +639092.943|222321.577|103.574 +639097.750|222317.014|103.937 +639102.572|222312.430|104.089 +639107.396|222307.846|104.284 +639112.246|222303.243|104.672 +639122.115|222293.892|106.537 +639126.986|222289.274|107.195 +639141.711|222275.311|109.576 +639146.591|222270.681|110.067 +639151.474|222266.048|110.627 +639156.357|222261.415|111.216 +639175.675|222243.045|110.777 +639180.488|222238.464|110.454 +639185.316|222233.880|110.719 +639190.183|222229.247|110.515 +639199.775|222220.115|109.676 +639209.349|222210.992|108.253 +639214.266|222206.316|108.113 +639219.030|222201.775|107.445 +639223.882|222197.157|107.171 +639247.900|222174.239|101.895 +639267.335|222155.720|99.176 +639272.263|222151.035|99.304 +639282.267|222141.546|100.846 +639297.315|222127.279|103.730 +639302.362|222122.496|105.028 +639307.401|222117.714|105.638 +639317.386|222108.241|107.015 +639322.378|222103.501|107.820 +639327.368|222098.771|108.579 +639332.367|222094.019|108.905 +639337.344|222089.294|109.609 +639352.295|222075.094|110.838 +639357.306|222070.327|110.804 +639362.207|222065.660|110.499 +639367.227|222060.887|110.643 +639372.213|222056.147|111.021 +639387.173|222041.925|111.606 +639412.124|222018.187|111.344 +639417.110|222013.439|111.133 +639422.042|222008.742|110.679 +639432.015|221999.247|110.195 +639437.057|221994.450|110.170 +639442.049|221989.698|110.085 +639447.048|221984.946|110.140 +639452.047|221980.191|110.304 +639457.103|221975.390|110.713 +639462.120|221970.629|111.399 +639467.122|221965.875|111.764 +639472.154|221961.086|111.661 +639477.135|221956.343|111.441 +639482.118|221951.601|111.197 +639517.186|221918.222|110.076 +639532.221|221903.948|111.755 +639547.263|221889.638|111.716 +639552.244|221884.895|111.338 +639577.335|221860.990|109.116 +639582.322|221856.244|108.878 +639597.376|221841.918|108.707 +639602.365|221837.163|108.189 +639612.399|221827.577|105.693 +639617.395|221822.819|105.251 +639622.439|221818.013|104.748 +639627.432|221813.258|104.632 +639632.428|221808.509|104.696 +639637.423|221803.754|104.653 +639642.422|221798.999|104.544 +639647.415|221794.253|104.723 +639652.407|221789.508|105.025 +639657.400|221784.759|105.229 +639662.402|221779.998|104.958 +639667.349|221775.289|105.053 +639672.347|221770.531|104.995 +639677.349|221765.773|104.894 +639687.319|221756.242|102.264 +639692.336|221751.459|101.806 +639697.301|221746.729|101.523 +639702.322|221741.947|101.087 +639712.252|221732.498|100.993 +639717.211|221727.780|101.102 +639722.140|221723.083|100.740 +639737.078|221708.833|98.563 +639742.061|221704.087|98.280 +639766.729|221680.624|98.850 +639771.679|221675.906|98.457 +639776.577|221671.239|98.192 +639786.440|221661.842|97.454 +639791.384|221657.139|97.411 +639796.285|221652.469|97.250 +639801.187|221647.806|97.155 +639806.097|221643.130|96.933 +639811.004|221638.455|96.762 +639815.918|221633.776|96.546 +639825.854|221624.288|94.446 +639840.573|221610.248|92.480 +639845.511|221605.545|92.160 +639850.412|221600.873|91.705 +639855.271|221596.252|91.907 +639864.969|221587.023|91.977 +639869.919|221582.310|91.681 +639879.652|221573.044|91.458 +639884.495|221568.433|91.376 +639908.370|221545.789|96.058 +639922.747|221532.128|97.341 +639927.539|221527.580|97.987 +639932.315|221523.039|98.271 +639937.073|221518.519|98.771 +639941.889|221513.944|99.197 +639956.114|221500.432|100.822 +639960.905|221495.875|101.026 +639965.685|221491.334|101.386 +639970.403|221486.853|101.901 +639979.922|221477.806|102.611 +639998.899|221459.765|103.864 +640003.654|221455.245|104.132 +640008.399|221450.734|104.498 +640013.169|221446.199|104.659 +640017.860|221441.739|105.107 +640032.037|221428.273|106.110 +640036.773|221423.768|106.226 +640051.004|221410.232|106.180 +640055.781|221405.688|106.074 +640060.471|221401.228|106.296 +640064.601|221394.434|106.607 +640059.892|221398.900|106.464 +640055.067|221403.484|106.497 +640050.379|221407.928|106.229 +640045.554|221412.509|106.299 +640036.020|221421.562|106.375 +640031.281|221426.054|106.196 +640026.480|221430.611|106.159 +640017.028|221439.572|105.299 +640012.273|221444.077|104.909 +640007.509|221448.597|104.647 +640002.760|221453.096|104.236 +639997.966|221457.647|104.263 +639988.426|221466.690|103.513 +639983.610|221471.259|103.367 +639978.885|221475.737|102.824 +639964.587|221489.288|101.529 +639954.968|221498.405|100.807 +639950.219|221502.910|100.584 +639935.854|221516.519|98.761 +639931.068|221521.058|98.484 +639916.621|221534.746|97.122 +639911.860|221539.257|96.625 +639906.980|221543.887|96.427 +639902.173|221548.453|96.500 +639887.680|221562.181|94.775 +639883.017|221566.558|91.836 +639878.155|221571.170|91.468 +639868.374|221580.454|91.513 +639863.415|221585.166|91.849 +639848.742|221599.096|91.596 +639843.792|221603.802|91.983 +639838.878|221608.465|91.830 +639808.953|221636.955|96.674 +639803.991|221641.673|96.899 +639799.074|221646.343|97.094 +639794.073|221651.095|97.216 +639789.117|221655.804|97.393 +639784.170|221660.501|97.405 +639774.218|221669.959|97.829 +639769.204|221674.729|98.396 +639749.230|221693.706|99.280 +639744.283|221698.391|98.493 +639739.279|221703.133|97.920 +639734.323|221707.852|98.591 +639729.248|221712.695|100.045 +639719.235|221722.211|100.615 +639714.206|221726.990|100.962 +639709.198|221731.739|100.639 +639699.112|221741.322|100.932 +639694.080|221746.113|101.703 +639689.060|221750.883|101.956 +639683.997|221755.696|102.233 +639673.878|221765.346|104.772 +639668.821|221770.153|105.056 +639658.766|221779.699|105.144 +639653.718|221784.494|105.144 +639648.680|221789.264|104.406 +639643.678|221794.013|104.345 +639638.582|221798.856|104.601 +639633.534|221803.650|104.632 +639628.532|221808.399|104.659 +639623.439|221813.233|104.656 +639618.440|221817.982|104.665 +639613.390|221822.792|105.580 +639598.211|221837.255|108.561 +639578.012|221856.439|108.853 +639572.976|221861.221|109.073 +639567.944|221866.013|109.826 +639542.691|221890.022|111.667 +639532.621|221899.583|111.722 +639522.495|221909.191|111.133 +639517.445|221913.973|110.448 +639507.368|221923.541|110.405 +639482.192|221947.452|111.027 +639477.156|221952.232|111.194 +639467.131|221961.751|111.551 +639462.130|221966.493|111.292 +639457.082|221971.279|111.207 +639452.065|221976.030|110.685 +639442.049|221985.528|110.176 +639437.005|221990.316|110.222 +639432.009|221995.056|110.408 +639417.089|222009.229|111.228 +639407.156|222018.663|111.767 +639402.197|222023.366|111.734 +639387.277|222037.527|111.865 +639377.355|222046.927|111.146 +639372.399|222051.633|111.298 +639367.419|222056.355|111.078 +639362.515|222061.000|110.597 +639357.534|222065.724|110.408 +639352.630|222070.382|110.719 +639347.692|222075.060|110.569 +639342.745|222079.751|110.237 +639332.861|222089.115|109.216 +639327.926|222093.784|108.555 +639323.000|222098.451|108.040 +639313.119|222107.805|106.717 +639303.267|222117.129|105.385 +639298.281|222121.844|104.288 +639293.380|222126.483|103.739 +639268.694|222149.837|99.435 +639263.796|222154.488|99.719 +639244.657|222172.688|102.169 +639239.960|222177.165|103.590 +639235.251|222181.655|104.842 +639220.983|222195.231|107.217 +639211.437|222204.299|107.991 +639206.688|222208.813|108.399 +639187.757|222226.811|110.740 +639178.205|222235.876|110.725 +639173.483|222240.360|111.045 +639168.796|222244.816|111.639 +639144.856|222267.508|110.274 +639140.028|222272.080|109.826 +639135.203|222276.646|109.055 +639130.330|222281.258|108.311 +639125.529|222285.799|107.396 +639120.713|222290.356|106.814 +639115.897|222294.916|106.235 +639106.278|222304.014|104.946 +639096.741|222313.049|104.373 +639091.974|222317.560|103.974 +639087.179|222322.098|103.379 +639082.476|222326.557|103.513 +639073.378|222335.220|105.635 +639059.610|222348.302|107.500 +639055.035|222352.651|108.247 +639045.894|222361.338|109.487 +639041.328|222365.675|109.978 +639036.716|222370.049|110.182 +639032.105|222374.426|110.393 +639022.982|222383.095|111.539 +639018.453|222387.395|112.014 +638995.806|222408.896|113.980 +638991.176|222413.288|113.907 +638982.056|222421.932|113.788 +638972.906|222430.607|113.870 +638968.316|222434.954|113.541 +638959.446|222443.384|114.794 +638954.963|222447.639|115.163 +638946.038|222456.110|115.888 +638941.615|222460.313|116.336 +638937.107|222464.586|116.336 +638932.609|222468.847|116.126 +638922.867|222478.016|111.920 +638917.850|222482.725|108.948 +638912.836|222487.431|106.037 +638905.719|222491.720|103.486 +638920.731|222477.562|111.807 +638925.784|222472.804|114.779 +638930.591|222468.253|116.437 +638935.105|222463.955|116.492 +638939.576|222459.697|116.309 +638944.078|222455.409|116.031 +638948.574|222451.126|115.742 +638953.052|222446.856|115.364 +638957.569|222442.549|114.943 +638962.016|222438.306|114.419 +638966.487|222434.045|114.044 +638971.105|222429.647|113.977 +638975.683|222425.291|113.968 +638980.298|222420.902|114.212 +638984.912|222416.507|114.181 +638989.494|222412.145|113.956 +638998.787|222403.303|114.072 +639017.087|222385.847|112.103 +639021.647|222381.501|111.533 +639035.531|222368.266|110.289 +639044.830|222359.400|109.506 +639049.454|222354.989|108.774 +639054.093|222350.563|108.174 +639063.325|222341.749|106.686 +639081.909|222324.009|103.568 +639091.544|222314.847|104.077 +639105.955|222301.146|104.879 +639115.751|222291.847|106.537 +639120.674|222287.174|107.220 +639125.532|222282.559|107.826 +639130.467|222277.878|108.704 +639135.368|222273.223|109.320 +639145.149|222263.933|110.527 +639150.038|222259.288|111.167 +639164.632|222245.410|111.819 +639169.457|222240.814|111.612 +639174.215|222236.272|110.816 +639179.061|222231.661|110.813 +639183.962|222226.997|110.905 +639198.383|222213.245|109.082 +639212.906|222199.401|107.899 +639261.123|222153.376|99.892 +639266.042|222148.685|99.399 +639275.976|222139.254|100.621 +639286.061|222129.708|103.306 +639291.045|222124.977|103.702 +639301.012|222115.526|105.257 +639306.023|222110.780|106.119 +639311.003|222106.052|106.668 +639321.010|222096.558|107.875 +639330.986|222087.088|108.811 +639335.997|222082.342|109.993 +639345.918|222072.917|110.380 +639350.893|222068.190|110.445 +639355.852|222063.472|110.335 +639360.777|222058.793|110.429 +639365.782|222054.044|111.112 +639370.744|222049.326|111.106 +639395.625|222025.682|111.883 +639400.523|222021.025|111.691 +639405.528|222016.267|111.804 +639410.472|222011.564|111.606 +639415.410|222006.864|111.344 +639420.396|222002.118|111.100 +639435.258|221987.976|110.353 +639440.254|221983.227|110.347 +639445.250|221978.478|110.417 +639450.209|221973.769|110.716 +639455.217|221969.014|111.115 +639460.215|221964.265|111.374 +639465.214|221959.516|111.609 +639470.158|221954.819|111.606 +639475.181|221950.037|111.207 +639505.134|221921.547|110.484 +639510.120|221916.805|110.466 +639515.107|221912.065|110.563 +639520.148|221907.280|110.993 +639525.190|221902.494|111.447 +639530.176|221897.755|111.673 +639535.166|221893.018|111.947 +639570.169|221859.688|108.908 +639610.266|221821.515|105.872 +639615.264|221816.742|104.553 +639620.306|221811.950|104.690 +639625.347|221807.156|104.684 +639630.343|221802.407|104.659 +639635.339|221797.655|104.614 +639640.383|221792.858|104.510 +639645.385|221788.100|104.272 +639650.374|221783.369|104.891 +639660.415|221773.829|105.165 +639675.459|221759.497|103.148 +639685.548|221749.887|101.901 +639700.566|221735.595|100.602 +639710.551|221726.103|100.420 +639735.542|221702.313|97.963 +639740.519|221697.580|97.896 +639750.383|221688.223|98.975 +639765.299|221674.040|98.478 +639775.215|221664.600|97.591 +639785.157|221655.146|97.286 +639790.101|221650.446|97.271 +639795.008|221645.782|97.134 +639799.961|221641.073|97.003 +639804.875|221636.397|96.744 +639834.645|221608.023|91.654 +639839.546|221603.369|91.949 +639844.410|221598.748|92.059 +639849.272|221594.128|92.217 +639859.026|221584.862|92.248 +639868.837|221575.526|91.590 +639873.638|221570.960|91.416 +639878.512|221566.330|91.602 +639897.513|221548.343|96.143 +639902.286|221543.811|96.418 +639907.096|221539.248|96.841 +639911.860|221534.728|97.241 +639916.636|221530.193|97.518 +639921.434|221525.642|98.094 +639926.185|221521.134|98.679 +639935.701|221512.100|99.197 +639940.450|221507.595|99.840 +639945.159|221503.129|100.395 +639949.899|221498.640|101.169 +639954.663|221494.110|101.166 +639964.133|221485.119|101.837 +639968.803|221480.690|102.383 +639973.521|221476.215|102.919 +639987.673|221462.777|103.705 +639992.376|221458.311|103.998 +640001.800|221449.359|104.434 +640011.112|221440.523|105.110 +640015.815|221436.058|105.485 +640020.415|221431.690|105.924 +640043.744|221409.516|106.747 +640048.450|221405.035|106.784 +640053.110|221400.607|106.854 +640062.447|221391.725|106.884 +640067.095|221387.305|106.732 +640081.128|221373.952|106.446 +640066.854|221384.775|106.708 +640061.998|221389.384|106.945 +640057.049|221394.093|107.951 +640052.370|221398.510|106.817 +640047.548|221403.082|106.863 +640042.735|221407.644|106.848 +640037.880|221412.247|106.796 +640033.042|221416.831|106.644 +640028.205|221421.415|106.500 +640023.426|221425.945|106.302 +640013.770|221435.086|105.537 +640008.981|221439.618|105.037 +640004.105|221444.239|104.909 +639989.605|221457.970|103.925 +639984.759|221462.557|103.580 +639960.509|221485.524|101.931 +639945.833|221499.426|101.267 +639941.032|221503.971|100.642 +639936.174|221508.558|99.575 +639931.294|221513.179|99.286 +639926.423|221517.793|98.926 +639921.540|221522.420|98.710 +639911.802|221531.631|97.448 +639906.946|221536.225|96.945 +639902.027|221540.885|96.658 +639897.135|221545.515|96.052 +639877.628|221563.961|92.918 +639872.842|221568.475|91.556 +639867.895|221573.166|91.672 +639863.003|221577.796|91.108 +639843.170|221596.621|92.071 +639838.241|221601.296|92.153 +639833.297|221605.978|91.745 +639828.357|221610.669|92.062 +639823.373|221615.412|93.107 +639798.456|221639.107|96.933 +639793.497|221643.813|97.109 +639788.592|221648.467|97.198 +639783.600|221653.201|97.164 +639768.792|221667.252|97.667 +639758.813|221676.735|98.826 +639753.872|221681.422|98.926 +639748.944|221686.095|98.792 +639744.037|221690.740|98.170 +639739.126|221695.385|97.588 +639734.143|221700.116|97.722 +639719.195|221714.323|99.511 +639704.318|221728.435|99.776 +639699.389|221733.114|100.005 +639694.403|221737.853|100.609 +639684.445|221747.314|101.611 +639679.471|221752.039|102.059 +639674.545|221756.717|102.559 +639669.519|221761.500|103.437 +639654.565|221775.712|105.299 +639649.622|221780.391|104.662 +639644.678|221785.067|103.882 +639639.667|221789.831|104.492 +639634.711|221794.531|104.635 +639629.712|221799.277|104.678 +639624.759|221803.971|104.659 +639619.806|221808.668|104.659 +639614.807|221813.410|104.638 +639609.802|221818.174|105.848 +639594.812|221832.442|108.765 +639569.858|221856.113|108.945 +639564.866|221860.843|108.814 +639559.879|221865.583|109.347 +639554.853|221870.368|110.585 +639544.886|221879.838|111.572 +639529.926|221894.030|111.722 +639524.894|221898.806|111.840 +639514.894|221908.273|110.740 +639504.911|221917.737|110.566 +639484.846|221936.769|110.466 +639479.863|221941.503|110.826 +639459.865|221960.498|111.536 +639454.814|221965.286|111.368 +639449.809|221970.035|111.082 +639444.799|221974.784|110.752 +639439.791|221979.533|110.499 +639434.792|221984.278|110.588 +639429.808|221989.015|110.972 +639419.814|221998.503|111.127 +639414.815|222003.249|111.200 +639409.832|222007.986|111.639 +639394.827|222022.229|111.807 +639384.863|222031.690|111.837 +639379.882|222036.411|111.523 +639359.921|222055.343|110.673 +639354.879|222060.122|110.292 +639349.939|222064.807|110.036 +639344.986|222069.513|110.344 +639339.987|222074.252|109.984 +639329.959|222083.753|108.969 +639305.011|222107.387|106.135 +639279.996|222131.067|102.334 +639274.988|222135.804|101.172 +639269.974|222140.544|100.033 +639265.015|222145.244|99.560 +639260.105|222149.904|99.709 +639255.255|222154.519|100.526 +639245.599|222163.711|102.081 +639240.808|222168.274|102.995 +639226.446|222181.951|105.882 +639207.249|222200.208|108.271 +639183.356|222222.928|110.813 +639173.782|222232.020|111.042 +639169.009|222236.553|111.328 +639164.266|222241.064|111.868 +639144.954|222259.379|110.914 +639140.163|222263.915|110.368 +639130.473|222273.095|109.234 +639125.602|222277.707|108.512 +639120.753|222282.291|107.631 +639091.836|222309.699|104.333 +639082.311|222318.730|103.608 +639077.685|222323.128|103.916 +639009.028|222388.450|112.139 +638995.565|222401.273|114.443 +638986.378|222409.993|114.123 +638981.809|222414.331|114.157 +638977.250|222418.662|114.248 +638963.619|222431.604|114.346 +638954.682|222440.105|115.193 +638950.241|222444.326|115.507 +638945.816|222448.535|115.916 +638941.375|222452.757|116.263 +638936.864|222457.045|116.501 +638932.407|222461.279|116.492 +638927.988|222465.479|116.720 +638923.352|222469.862|115.766 +638908.407|222483.914|107.137 +638898.450|222493.280|101.602 +638888.595|222502.558|96.564 +638889.013|222500.199|97.524 +638898.943|222490.842|102.757 +638913.882|222476.769|110.810 +638923.925|222467.308|116.665 +638928.405|222463.044|116.793 +638932.953|222458.716|116.751 +638937.400|222454.479|116.425 +638941.899|222450.191|116.147 +638946.343|222445.957|115.833 +638950.866|222441.644|115.440 +638959.788|222433.137|114.520 +638964.384|222428.760|114.294 +638982.754|222411.274|114.410 +638987.317|222406.930|114.376 +639005.569|222389.526|112.267 +639019.349|222376.392|111.164 +639028.572|222367.602|110.423 +639037.905|222358.714|110.149 +639079.510|222319.013|103.791 +639084.302|222314.451|103.666 +639089.063|222309.927|104.035 +639108.485|222291.475|106.141 +639123.188|222277.521|108.488 +639128.114|222272.845|109.283 +639137.877|222263.570|110.256 +639142.759|222258.931|110.826 +639147.661|222254.280|111.539 +639167.043|222235.836|111.664 +639171.783|222231.316|111.124 +639181.487|222222.075|110.838 +639186.294|222217.494|110.533 +639205.512|222199.169|108.372 +639210.434|222194.484|108.308 +639253.811|222153.080|100.572 +639258.678|222148.438|100.033 +639263.561|222143.784|99.652 +639268.575|222139.023|100.225 +639273.595|222134.265|101.511 +639288.628|222119.988|103.617 +639303.630|222105.738|105.744 +639313.582|222096.280|106.756 +639328.590|222082.028|109.033 +639333.601|222077.264|109.582 +639338.551|222072.558|109.945 +639343.535|222067.818|110.149 +639348.491|222063.097|109.932 +639353.474|222058.354|110.192 +639358.470|222053.608|110.649 +639368.379|222044.181|111.149 +639378.358|222034.683|111.371 +639388.292|222025.231|111.740 +639398.259|222015.746|111.929 +639408.204|222006.276|111.780 +639413.127|222001.579|111.234 +639418.125|221996.821|111.225 +639428.123|221987.305|111.341 +639433.049|221982.608|110.822 +639438.087|221977.811|110.780 +639443.040|221973.098|110.899 +639448.042|221968.337|111.182 +639453.043|221963.582|111.456 +639458.042|221958.828|111.633 +639477.979|221939.835|111.078 +639502.945|221916.055|110.490 +639512.976|221906.515|110.990 +639517.972|221901.769|111.581 +639537.955|221882.746|111.688 +639542.984|221877.955|111.603 +639552.988|221868.415|110.341 +639592.959|221830.333|108.829 +639597.994|221825.535|108.555 +639613.030|221811.155|104.614 +639618.026|221806.400|104.647 +639623.019|221801.648|104.672 +639628.063|221796.847|104.696 +639633.013|221792.132|104.589 +639638.057|221787.325|104.431 +639643.059|221782.558|104.059 +639648.049|221777.816|104.528 +639653.038|221773.079|105.095 +639663.063|221763.514|103.647 +639668.129|221758.680|102.821 +639673.143|221753.904|102.383 +639678.105|221749.177|102.160 +639683.171|221744.348|101.669 +639688.197|221739.554|100.990 +639693.174|221734.811|100.435 +639698.252|221729.968|99.770 +639703.224|221725.231|99.545 +639708.247|221720.449|99.277 +639718.247|221710.927|98.838 +639723.292|221706.111|98.054 +639738.297|221691.819|97.177 +639743.293|221687.076|97.878 +639748.246|221682.373|98.493 +639753.205|221677.661|98.917 +639758.192|221672.912|98.716 +639763.212|221668.121|97.881 +639768.256|221663.317|97.594 +639773.230|221658.572|96.866 +639778.199|221653.850|97.234 +639783.191|221649.095|97.131 +639788.132|221644.395|97.183 +639798.087|221634.916|96.841 +639808.121|221625.333|94.519 +639823.111|221611.038|92.562 +639833.008|221601.610|92.227 +639837.973|221596.889|92.260 +639842.960|221592.137|91.964 +639857.721|221578.092|92.092 +639862.674|221573.374|91.760 +639867.496|221568.808|93.214 +639886.842|221550.447|96.253 +639891.703|221545.826|96.552 +639906.239|221532.009|97.576 +639911.049|221527.437|97.975 +639915.850|221522.877|98.533 +639920.656|221518.311|98.999 +639925.469|221513.736|99.399 +639935.037|221504.647|100.386 +639958.900|221481.970|102.389 +639963.630|221477.474|102.760 +639973.122|221468.455|103.724 +639982.607|221459.430|103.897 +639987.368|221454.904|104.086 +639992.077|221450.426|104.315 +639996.805|221445.933|104.812 +640015.605|221428.063|105.863 +640020.308|221423.598|106.238 +640029.635|221414.740|106.900 +640034.329|221410.278|107.015 +640039.017|221405.816|106.772 +640043.726|221401.341|106.805 +640048.383|221396.915|106.878 +640053.019|221392.511|107.137 +640057.695|221388.064|107.098 +640062.325|221383.660|107.061 +640071.591|221374.851|107.022 +640076.263|221370.404|106.732 +640073.328|221370.849|106.924 +640068.579|221375.360|107.040 +640059.115|221384.348|107.095 +640054.308|221388.920|107.366 +640049.639|221393.349|106.964 +640044.841|221397.900|106.805 +640040.132|221402.371|106.741 +640035.267|221406.992|106.799 +640030.479|221411.543|107.049 +640025.685|221416.093|106.967 +640016.156|221425.125|105.912 +640011.365|221429.672|105.866 +639992.108|221447.939|104.531 +639987.258|221452.538|104.230 +639982.467|221457.083|103.867 +639977.535|221461.768|103.934 +639967.836|221470.970|103.462 +639948.390|221489.407|101.791 +639943.446|221494.101|101.651 +639938.588|221498.707|101.124 +639933.699|221503.340|100.444 +639923.933|221512.596|99.456 +639919.023|221517.251|99.030 +639914.121|221521.899|98.536 +639909.220|221526.544|98.018 +639904.270|221531.238|97.533 +639889.445|221545.298|96.418 +639884.480|221550.008|96.165 +639869.697|221564.013|94.092 +639859.833|221573.337|91.489 +639834.709|221597.194|92.370 +639829.759|221601.888|92.086 +639824.662|221606.728|92.580 +639819.658|221611.480|92.495 +639814.631|221616.253|92.754 +639804.512|221625.885|94.528 +639794.335|221635.574|96.768 +639789.321|221640.341|97.134 +639784.334|221645.072|96.985 +639779.290|221649.857|97.027 +639769.271|221659.361|96.805 +639764.205|221664.180|97.466 +639744.152|221683.212|97.881 +639739.108|221687.988|97.152 +639734.134|221692.706|96.997 +639729.077|221697.519|97.789 +639719.022|221707.062|97.981 +639713.974|221711.863|98.704 +639698.893|221726.185|99.490 +639693.863|221730.968|99.959 +639683.799|221740.538|101.331 +639673.759|221750.082|102.242 +639668.739|221754.855|102.812 +639663.776|221759.564|102.888 +639648.735|221773.862|104.504 +639643.745|221778.584|103.699 +639638.743|221783.329|103.672 +639633.781|221788.054|104.473 +639628.779|221792.803|104.665 +639623.777|221797.545|104.696 +639618.828|221802.245|104.714 +639613.829|221806.988|104.659 +639608.827|221811.749|105.595 +639598.827|221821.283|108.372 +639593.880|221825.983|108.747 +639559.093|221858.999|109.128 +639544.197|221873.172|111.536 +639539.208|221877.903|111.505 +639534.270|221882.594|111.722 +639509.508|221906.079|110.960 +639504.524|221910.812|111.283 +639494.609|221920.200|110.082 +639489.677|221924.888|110.496 +639469.975|221943.594|111.542 +639464.986|221948.327|111.691 +639460.087|221952.972|111.716 +639455.144|221957.663|111.719 +639450.187|221962.360|111.520 +639445.225|221967.060|111.179 +639440.272|221971.757|111.057 +639435.365|221976.408|110.957 +639430.418|221981.102|111.054 +639415.620|221995.145|111.356 +639410.676|221999.835|111.615 +639405.784|222004.481|111.908 +639395.921|222013.835|111.947 +639386.033|222023.208|111.612 +639361.381|222046.580|111.200 +639356.422|222051.274|110.569 +639351.466|222055.967|110.039 +639346.531|222060.643|109.862 +639341.648|222065.273|109.829 +639336.719|222069.949|109.798 +639331.748|222074.652|109.164 +639326.844|222079.300|108.890 +639316.919|222088.688|107.448 +639311.951|222093.394|107.049 +639302.057|222102.754|105.656 +639287.159|222116.854|103.766 +639272.318|222130.900|101.788 +639267.237|222135.697|100.383 +639262.311|222140.355|99.764 +639257.395|222145.021|99.773 +639209.377|222190.695|108.290 +639194.950|222204.390|109.149 +639185.416|222213.455|110.551 +639180.607|222218.021|110.859 +639166.287|222231.612|111.603 +639161.462|222236.193|111.840 +639156.728|222240.686|112.060 +639142.202|222254.451|111.307 +639137.352|222259.041|110.637 +639122.713|222272.891|108.512 +639103.175|222291.362|104.803 +639098.438|222295.855|104.915 +639084.110|222309.434|104.126 +639079.279|222314.012|103.977 +639074.594|222318.453|103.876 +639033.248|222357.769|110.277 +639028.639|222362.143|110.487 +639001.289|222388.121|113.130 +638987.707|222401.026|114.422 +638974.031|222414.005|114.980 +638946.925|222439.727|115.928 +638942.435|222443.991|116.254 +638937.991|222448.209|116.583 +638924.623|222460.898|117.153 +638920.033|222465.242|116.739 +638915.284|222469.722|115.175 +638910.294|222474.404|112.063 +638900.397|222483.706|106.723 +638885.587|222497.624|98.637 +638880.698|222502.226|96.375 +638877.915|222502.351|96.210 +638887.690|222493.122|100.508 +638897.587|222483.795|105.921 +638902.656|222479.019|108.814 +638907.597|222474.361|111.347 +638917.527|222465.007|116.821 +638926.631|222456.357|117.022 +638931.109|222452.099|116.864 +638935.574|222447.850|116.669 +638944.557|222439.303|116.044 +638949.040|222435.036|115.705 +638958.026|222426.483|114.882 +638962.570|222422.158|114.666 +638976.387|222409.030|114.910 +638981.020|222404.629|114.989 +638985.549|222400.316|114.453 +638990.149|222395.942|114.376 +639017.505|222369.882|110.807 +639022.138|222365.477|110.734 +639026.807|222361.036|110.597 +639036.110|222352.188|110.143 +639049.801|222339.130|107.409 +639063.807|222325.801|106.266 +639072.954|222317.066|103.855 +639077.724|222312.536|103.897 +639082.525|222307.977|104.202 +639087.362|222303.389|104.790 +639096.930|222294.297|104.928 +639101.608|222289.841|104.379 +639111.572|222280.420|107.354 +639126.282|222266.472|109.515 +639131.128|222261.876|110.121 +639136.011|222257.243|110.649 +639140.955|222252.555|111.319 +639150.654|222243.350|111.965 +639155.537|222238.711|112.240 +639165.138|222229.576|111.792 +639174.831|222220.359|111.359 +639179.570|222215.845|110.868 +639184.420|222211.230|110.509 +639189.214|222206.667|110.070 +639194.082|222202.031|109.451 +639203.689|222192.881|108.405 +639208.557|222188.254|108.283 +639247.108|222151.498|101.096 +639251.951|222146.880|100.267 +639256.819|222142.244|99.694 +639261.793|222137.517|99.822 +639266.822|222132.759|101.169 +639271.843|222128.001|101.867 +639286.927|222113.700|104.001 +639291.892|222108.997|104.775 +639306.946|222094.720|106.470 +639311.970|222089.953|106.961 +639327.005|222075.697|108.896 +639331.961|222070.994|109.301 +639336.960|222066.251|109.640 +639341.925|222061.533|109.515 +639346.909|222056.800|109.698 +639351.917|222052.051|110.289 +639356.925|222047.302|110.947 +639381.827|222023.653|111.706 +639386.838|222018.895|111.767 +639391.855|222014.131|112.005 +639396.808|222009.421|111.972 +639401.764|222004.712|112.029 +639406.756|221999.966|111.837 +639411.743|221995.224|111.536 +639416.733|221990.478|111.344 +639426.681|221981.026|111.356 +639431.668|221976.283|111.088 +639436.715|221971.489|111.167 +639441.662|221966.789|111.173 +639446.670|221962.034|111.511 +639451.724|221957.240|111.868 +639461.706|221947.754|111.792 +639481.640|221928.799|110.832 +639486.614|221924.062|110.256 +639501.650|221909.788|111.167 +639521.611|221890.833|111.859 +639531.581|221881.356|111.697 +639536.565|221876.620|111.459 +639541.548|221871.880|111.411 +639546.532|221867.140|111.024 +639591.411|221824.462|108.869 +639596.355|221819.759|108.552 +639611.354|221805.443|104.525 +639616.304|221800.746|104.766 +639621.299|221795.997|104.726 +639626.252|221791.291|104.736 +639631.254|221786.530|104.278 +639636.271|221781.748|103.135 +639641.212|221777.066|103.992 +639656.178|221762.829|103.483 +639666.114|221753.364|102.425 +639681.022|221739.173|101.337 +639686.048|221734.385|100.715 +639691.035|221729.630|99.959 +639695.970|221724.933|99.453 +639700.956|221720.181|98.835 +639710.923|221710.689|98.054 +639730.775|221691.798|96.820 +639735.700|221687.116|96.972 +639740.665|221682.401|97.341 +639765.464|221658.818|96.884 +639780.232|221644.779|97.097 +639785.176|221640.076|97.073 +639790.141|221635.352|96.762 +639805.140|221621.035|93.373 +639815.043|221611.614|92.854 +639829.881|221597.496|92.184 +639834.815|221592.802|91.974 +639844.670|221583.429|91.849 +639854.576|221573.989|90.471 +639868.968|221560.380|95.232 +639878.694|221551.151|96.387 +639883.626|221546.463|96.430 +639888.491|221541.842|96.701 +639898.220|221532.604|97.356 +639903.078|221527.989|97.771 +639907.934|221523.383|98.243 +639912.780|221518.784|98.819 +639917.642|221514.166|99.231 +639946.619|221486.658|101.986 +639951.389|221482.129|102.434 +639960.994|221473.012|103.245 +639965.822|221468.425|103.632 +639970.662|221463.825|103.489 +639975.472|221459.259|104.089 +639980.239|221454.730|104.208 +639985.045|221450.161|104.419 +639989.816|221445.629|104.541 +639994.601|221441.084|104.995 +640008.875|221427.530|105.885 +640013.654|221422.982|106.016 +640023.033|221414.073|107.067 +640027.812|221409.522|106.845 +640032.591|221404.968|106.659 +640037.331|221400.463|106.833 +640042.049|221395.971|106.787 +640046.810|221391.441|106.827 +640051.504|221386.973|107.022 +640056.198|221382.511|107.250 +640060.916|221378.024|107.314 +640075.062|221364.552|106.909 +640079.723|221360.120|107.128 +640072.581|221363.491|107.165 +640067.884|221367.953|107.238 +640063.163|221372.437|107.503 +640058.502|221376.860|107.348 +640053.808|221381.313|107.083 +640049.142|221385.744|107.015 +640044.421|221390.225|106.997 +640039.687|221394.721|107.119 +640034.987|221399.183|106.997 +640030.318|221403.612|106.631 +640025.520|221408.169|106.942 +640020.750|221412.701|107.073 +640011.344|221421.620|106.229 +640006.634|221426.085|105.879 +639992.391|221439.597|105.089 +639987.655|221444.086|104.617 +639982.884|221448.613|104.473 +639973.301|221457.708|104.208 +639949.265|221480.504|102.492 +639944.477|221485.045|102.203 +639939.627|221489.651|102.096 +639934.775|221494.253|101.998 +639930.005|221498.761|100.551 +639925.161|221503.355|100.380 +639910.628|221517.135|99.014 +639905.727|221521.780|98.509 +639900.869|221526.386|98.039 +639895.983|221531.012|97.353 +639891.094|221535.655|97.332 +639886.183|221540.312|96.969 +639881.276|221544.966|96.585 +639876.347|221549.645|96.518 +639841.923|221582.265|92.059 +639836.949|221586.992|92.080 +639831.938|221591.753|91.998 +639816.924|221606.021|92.278 +639811.885|221610.812|92.690 +639801.845|221620.359|93.129 +639766.458|221654.027|96.223 +639741.254|221677.987|97.006 +639721.058|221697.165|96.707 +639700.810|221716.435|98.697 +639695.744|221721.248|98.743 +639690.663|221726.085|99.328 +639685.622|221730.888|100.255 +639675.423|221740.596|101.523 +639670.409|221745.367|101.761 +639665.337|221750.192|102.407 +639660.232|221755.050|102.709 +639655.215|221759.823|103.282 +639640.063|221774.219|103.315 +639635.015|221779.010|103.096 +639629.910|221783.875|103.952 +639624.902|221788.645|104.647 +639619.855|221793.440|104.708 +639614.761|221798.280|104.827 +639609.763|221803.026|104.696 +639604.706|221807.866|106.951 +639599.613|221812.721|108.116 +639594.620|221817.473|108.561 +639589.582|221822.265|108.802 +639549.336|221860.505|109.280 +639534.300|221874.824|111.365 +639529.317|221879.561|111.615 +639509.270|221898.602|111.463 +639499.245|221908.127|111.356 +639484.252|221922.355|110.472 +639464.376|221941.253|111.837 +639459.435|221945.950|111.877 +639449.499|221955.383|111.947 +639444.539|221960.089|111.600 +639439.586|221964.789|111.438 +639434.630|221969.493|111.274 +639429.684|221974.193|111.289 +639424.737|221978.893|111.365 +639414.885|221988.250|111.456 +639409.939|221992.950|111.584 +639405.053|221997.595|112.014 +639400.103|222002.298|112.103 +639385.362|222016.292|111.807 +639370.598|222030.303|111.374 +639350.908|222048.985|110.277 +639346.013|222053.630|109.957 +639341.102|222058.287|109.402 +639336.177|222062.963|109.420 +639331.288|222067.602|109.305 +639326.371|222072.265|108.762 +639311.619|222086.256|107.436 +639306.660|222090.949|106.513 +639301.704|222095.643|105.684 +639291.886|222104.949|104.787 +639286.985|222109.597|104.150 +639267.292|222128.257|101.621 +639262.318|222132.960|100.386 +639257.407|222137.617|99.895 +639252.604|222142.180|100.145 +639247.775|222146.774|100.642 +639238.205|222155.887|102.053 +639214.506|222178.473|107.238 +639204.948|222187.565|108.317 +639190.638|222201.174|109.314 +639162.093|222228.323|111.929 +639152.583|222237.360|112.383 +639147.740|222241.954|112.100 +639142.945|222246.501|111.828 +639123.578|222264.856|109.506 +639118.766|222269.416|108.841 +639113.874|222274.046|107.985 +639104.178|222283.230|106.674 +639099.325|222287.817|105.882 +639075.453|222310.439|104.105 +639070.680|222314.969|104.059 +639047.662|222336.863|107.649 +639034.013|222349.850|110.057 +639029.447|222354.187|110.548 +639001.875|222380.379|112.612 +638988.360|222393.229|114.611 +638983.769|222397.588|114.760 +638979.261|222401.870|115.138 +638974.595|222406.293|114.867 +638960.900|222419.284|114.815 +638951.893|222427.839|115.513 +638947.382|222432.122|115.687 +638942.947|222436.340|116.315 +638938.519|222440.547|116.714 +638933.980|222444.853|116.784 +638929.527|222449.081|117.077 +638920.599|222457.558|117.293 +638916.015|222461.898|116.903 +638906.441|222470.929|113.404 +638901.385|222475.675|110.256 +638896.389|222480.369|107.503 +638886.520|222489.650|102.258 +638872.115|222503.229|96.591 +638871.752|222500.745|96.460 +638901.476|222472.709|111.959 +638906.460|222468.012|114.745 +638911.337|222463.404|116.733 +638920.407|222454.775|117.010 +638929.490|222446.131|117.165 +638933.989|222441.845|116.891 +638938.491|222437.557|116.641 +638943.048|222433.213|116.458 +638947.550|222428.925|116.245 +638951.979|222424.697|115.321 +638956.474|222420.411|114.806 +638979.514|222398.484|114.977 +638984.150|222394.071|114.806 +638988.741|222389.700|114.681 +639002.344|222376.715|112.432 +639006.934|222372.347|112.371 +639020.739|222359.180|110.585 +639025.390|222354.757|110.661 +639034.674|222345.906|109.789 +639048.463|222332.745|107.430 +639053.172|222328.261|107.345 +639071.732|222310.546|104.102 +639076.532|222305.983|104.400 +639081.348|222301.405|104.839 +639086.115|222296.873|104.934 +639090.888|222292.325|104.745 +639095.762|222287.695|105.339 +639100.615|222283.093|106.150 +639105.528|222278.432|107.137 +639125.130|222259.830|110.222 +639130.010|222255.191|110.740 +639139.730|222245.962|111.908 +639159.082|222227.549|112.243 +639163.818|222223.035|111.679 +639187.852|222200.132|109.676 +639211.940|222177.165|107.107 +639235.946|222154.235|101.837 +639240.762|222149.645|101.209 +639250.519|222140.345|100.365 +639255.447|222135.648|99.950 +639260.376|222130.961|100.133 +639265.469|222126.148|102.285 +639270.419|222121.442|102.194 +639280.478|222111.904|104.083 +639285.379|222107.244|104.086 +639290.384|222102.495|104.854 +639295.367|222097.762|105.379 +639310.382|222083.515|107.418 +639320.348|222074.048|108.198 +639325.280|222069.357|108.247 +639330.306|222064.590|109.024 +639335.272|222059.866|108.914 +639340.261|222055.123|109.213 +639345.278|222050.365|109.948 +639370.272|222026.615|111.353 +639375.237|222021.894|111.481 +639400.234|221998.132|112.200 +639405.217|221993.389|111.880 +639410.207|221988.640|111.709 +639415.199|221983.891|111.627 +639425.182|221974.394|111.444 +639430.174|221969.645|111.426 +639435.127|221964.936|111.612 +639440.169|221960.144|111.670 +639445.158|221955.395|111.691 +639450.160|221950.644|111.959 +639470.137|221931.630|111.252 +639480.143|221922.105|110.649 +639490.174|221912.571|111.066 +639505.189|221898.300|111.499 +639510.224|221893.515|111.734 +639520.237|221883.990|111.664 +639530.295|221874.419|111.386 +639535.276|221869.679|111.216 +639545.282|221860.148|110.448 +639550.299|221855.348|108.668 +639590.332|221817.272|108.771 +639610.363|221798.155|104.537 +639615.356|221793.409|104.772 +639620.355|221788.654|104.638 +639625.356|221783.887|104.062 +639630.361|221779.117|103.401 +639645.312|221764.898|103.309 +639650.316|221760.140|103.148 +639655.288|221755.401|102.276 +639665.310|221745.866|101.758 +639670.275|221741.145|101.520 +639675.298|221736.363|100.929 +639680.272|221731.626|100.435 +639700.255|221712.591|97.957 +639705.235|221707.852|97.661 +639710.182|221703.139|96.991 +639715.218|221698.348|96.631 +639720.158|221693.645|96.265 +639754.711|221660.815|96.866 +639759.630|221656.127|96.232 +639764.580|221651.421|96.034 +639769.426|221646.828|96.972 +639774.312|221642.185|97.113 +639789.214|221627.976|94.135 +639799.087|221618.576|93.080 +639808.880|221609.261|92.693 +639813.808|221604.570|92.416 +639818.676|221599.946|92.409 +639828.472|221590.631|92.242 +639833.401|221585.944|92.089 +639838.369|221581.201|90.727 +639852.786|221567.543|93.744 +639872.016|221549.310|96.372 +639876.881|221544.689|96.613 +639881.651|221540.156|96.841 +639886.510|221535.545|97.183 +639891.319|221530.979|97.561 +639896.135|221526.407|97.890 +639900.887|221521.899|98.405 +639905.703|221517.327|98.771 +639910.449|221512.825|99.377 +639915.261|221508.256|99.758 +639919.989|221503.775|100.590 +639924.817|221499.191|100.859 +639939.088|221485.655|102.486 +639943.873|221481.107|102.730 +639948.628|221476.590|102.840 +639953.386|221472.079|103.422 +639967.733|221458.449|104.028 +639972.472|221453.950|104.358 +639977.236|221449.423|104.489 +639982.055|221444.845|104.605 +639991.550|221435.832|105.260 +640001.044|221426.819|106.007 +640005.766|221422.333|106.189 +640015.190|221413.396|107.223 +640019.957|221408.861|107.070 +640024.749|221404.307|106.769 +640029.440|221399.857|107.323 +640034.192|221395.343|107.381 +640038.907|221390.862|107.363 +640043.662|221386.345|107.445 +640048.441|221381.797|106.958 +640053.126|221377.347|107.247 +640057.801|221372.915|107.656 +640062.529|221368.423|107.656 +640067.275|221363.912|107.543 +640071.984|221359.431|107.345 +640076.306|221352.561|107.756 +640071.664|221356.959|107.369 +640066.912|221361.470|107.467 +640057.460|221370.443|107.732 +640052.763|221374.887|107.083 +640048.106|221379.304|106.912 +640043.259|221383.913|107.515 +640038.556|221388.372|107.357 +640033.783|221392.901|107.418 +640029.056|221397.391|107.525 +640024.325|221401.875|107.265 +640019.622|221406.331|106.820 +640014.843|221410.866|107.006 +640010.094|221415.374|106.991 +640000.657|221424.314|106.025 +639991.184|221433.293|105.452 +639986.493|221437.734|104.979 +639981.738|221442.242|104.681 +639976.965|221446.769|104.574 +639972.195|221451.295|104.467 +639967.431|221455.809|104.284 +639953.136|221469.363|103.516 +639948.402|221473.850|103.138 +639943.614|221478.389|102.837 +639938.829|221482.924|102.517 +639929.270|221491.980|101.813 +639924.527|221496.469|101.072 +639905.358|221514.623|98.862 +639900.543|221519.186|98.454 +639895.718|221523.758|98.173 +639890.862|221528.361|97.710 +639876.323|221542.138|96.646 +639871.483|221546.731|96.628 +639861.802|221555.899|95.470 +639856.929|221560.508|94.668 +639852.055|221565.123|93.909 +639847.239|221569.673|92.976 +639827.585|221588.303|92.181 +639817.667|221597.715|92.605 +639812.775|221602.348|92.181 +639797.849|221616.515|92.790 +639787.873|221625.994|93.851 +639782.853|221630.774|95.043 +639752.876|221659.224|96.189 +639742.830|221668.761|96.722 +639732.890|221678.176|95.970 +639727.897|221682.895|94.958 +639717.799|221692.487|95.881 +639707.710|221702.070|96.872 +639697.585|221711.692|97.896 +639677.392|221730.882|100.380 +639662.225|221745.296|101.980 +639652.103|221754.904|102.477 +639636.933|221769.299|102.946 +639631.931|221774.036|102.632 +639626.822|221778.892|103.361 +639621.766|221783.704|104.108 +639616.755|221788.465|104.797 +639611.662|221793.290|104.601 +639591.463|221812.514|108.664 +639586.424|221817.299|108.960 +639551.009|221850.888|108.902 +639535.916|221865.239|111.103 +639530.832|221870.060|111.216 +639525.799|221874.837|111.411 +639495.618|221903.461|111.170 +639480.543|221917.756|110.893 +639460.496|221936.781|111.560 +639455.464|221941.561|111.804 +639445.484|221951.034|112.081 +639440.483|221955.776|111.874 +639435.484|221960.519|111.789 +639430.482|221965.262|111.688 +639425.480|221970.008|111.566 +639410.588|221984.141|111.825 +639405.638|221988.838|111.938 +639390.718|222002.993|111.850 +639385.759|222007.696|111.844 +639365.959|222026.469|110.960 +639341.307|222049.838|109.442 +639336.344|222054.535|108.917 +639331.443|222059.180|108.628 +639326.545|222063.825|108.411 +639321.647|222068.467|108.213 +639316.755|222073.109|108.104 +639301.942|222087.133|106.208 +639297.056|222091.763|105.687 +639282.306|222105.726|103.882 +639277.372|222110.402|103.510 +639267.542|222119.710|102.215 +639262.653|222124.334|101.386 +639257.651|222129.065|100.380 +639252.805|222133.658|100.142 +639247.964|222138.255|100.517 +639243.179|222142.805|100.956 +639224.111|222160.944|104.172 +639209.913|222174.465|107.226 +639200.489|222183.429|108.716 +639162.486|222219.530|111.630 +639157.792|222223.992|112.179 +639138.782|222242.033|112.465 +639133.981|222246.581|112.200 +639124.270|222255.767|110.414 +639119.515|222260.275|110.228 +639114.608|222264.914|109.201 +639085.664|222292.328|105.126 +639080.949|222296.806|105.065 +639071.427|222305.834|104.370 +639066.700|222310.324|104.275 +639048.369|222327.770|107.235 +639043.760|222332.153|107.726 +639020.918|222353.889|110.725 +639016.328|222358.253|111.066 +639011.747|222362.609|111.508 +639007.230|222366.907|112.036 +638998.101|222375.588|112.855 +638989.177|222384.088|114.703 +638984.605|222388.432|114.959 +638980.060|222392.748|115.099 +638975.461|222397.119|115.205 +638961.729|222410.155|115.157 +638957.169|222414.483|115.300 +638939.198|222431.564|116.388 +638930.283|222440.041|117.147 +638925.824|222444.277|117.397 +638916.808|222452.833|117.114 +638912.257|222457.149|116.915 +638907.786|222461.395|116.879 +638893.085|222475.239|109.695 +638888.035|222479.985|106.674 +638883.216|222484.523|104.425 +638863.958|222502.686|96.735 +638861.627|222502.354|96.719 +638866.016|222498.175|96.570 +638875.772|222488.973|101.206 +638880.796|222484.240|103.967 +638885.666|222479.649|106.506 +638890.628|222474.971|109.055 +638895.627|222470.268|112.112 +638905.402|222461.044|116.650 +638909.919|222456.753|116.647 +638914.452|222452.449|117.050 +638923.538|222443.820|117.443 +638928.000|222439.574|117.229 +638932.511|222435.286|117.013 +638941.457|222426.770|116.196 +638959.580|222409.533|115.529 +638964.177|222405.159|115.364 +638968.776|222400.791|115.519 +638973.342|222396.448|115.187 +638977.954|222392.062|115.172 +638982.498|222387.740|115.053 +638996.080|222374.798|112.916 +639005.258|222366.062|112.109 +639009.900|222361.643|111.770 +639019.117|222352.874|110.984 +639032.979|222339.676|109.692 +639065.276|222308.894|104.312 +639070.034|222304.371|104.269 +639098.999|222276.884|106.936 +639103.900|222272.239|107.835 +639123.466|222253.689|110.624 +639133.250|222244.414|112.279 +639147.798|222230.600|112.895 +639152.620|222226.013|112.642 +639157.433|222221.432|112.325 +639162.233|222216.863|111.923 +639171.834|222207.725|111.121 +639186.261|222193.993|109.811 +639191.022|222189.455|109.094 +639205.475|222175.696|107.698 +639210.300|222171.103|107.156 +639215.089|222166.540|106.263 +639229.430|222152.842|102.303 +639243.999|222138.974|100.694 +639248.888|222134.320|100.377 +639253.780|222129.668|100.097 +639258.742|222124.959|100.651 +639263.771|222120.192|101.477 +639268.831|222115.410|103.279 +639273.805|222110.685|103.529 +639278.713|222106.019|103.577 +639298.677|222087.072|105.979 +639318.605|222068.153|107.921 +639323.598|222063.411|108.128 +639328.584|222058.674|108.293 +639333.534|222053.971|108.661 +639338.600|222049.164|109.411 +639343.516|222044.489|109.314 +639348.518|222039.743|109.853 +639363.469|222025.542|110.804 +639388.426|222001.835|112.170 +639413.300|221978.173|111.679 +639423.292|221968.673|111.688 +639428.339|221963.878|111.853 +639433.335|221959.129|111.898 +639438.331|221954.380|112.002 +639443.320|221949.635|111.938 +639448.371|221944.837|112.282 +639458.323|221935.361|111.523 +639468.347|221925.830|111.463 +639473.374|221921.047|111.115 +639493.469|221901.943|111.392 +639503.451|221892.457|111.822 +639508.484|221887.675|111.840 +639513.516|221882.890|111.898 +639528.552|221868.582|111.210 +639533.584|221863.797|111.106 +639548.614|221849.468|108.732 +639583.760|221816.053|109.052 +639588.799|221811.258|108.527 +639603.877|221796.872|105.690 +639608.928|221792.056|104.662 +639618.974|221782.494|104.050 +639634.086|221768.099|102.422 +639639.078|221763.359|102.919 +639649.146|221753.767|102.002 +639654.166|221748.975|101.075 +639664.173|221739.459|101.291 +639669.245|221734.622|100.542 +639674.271|221729.828|99.828 +639679.248|221725.082|99.264 +639689.361|221715.438|97.823 +639694.339|221710.699|97.527 +639724.404|221682.038|94.022 +639729.388|221677.317|95.159 +639744.290|221663.150|96.079 +639749.224|221658.459|96.143 +639773.965|221634.919|96.210 +639779.040|221630.067|94.662 +639784.051|221625.281|93.495 +639793.966|221615.832|92.473 +639838.101|221573.837|92.397 +639842.929|221569.253|93.071 +639847.785|221564.641|93.376 +639852.588|221560.084|94.363 +639857.410|221555.509|95.153 +639862.186|221550.974|95.851 +639867.021|221546.384|96.451 +639871.833|221541.812|96.735 +639876.631|221537.252|97.210 +639881.505|221532.616|97.332 +639891.115|221523.484|98.158 +639895.885|221518.951|98.448 +639900.698|221514.379|98.832 +639910.241|221505.315|99.956 +639914.935|221500.862|100.630 +639919.760|221496.274|100.907 +639924.451|221491.821|101.593 +639929.236|221487.277|102.306 +639933.958|221482.793|102.712 +639938.734|221478.255|103.056 +639943.474|221473.747|103.273 +639957.684|221460.241|104.178 +639962.441|221455.715|104.297 +639967.151|221451.237|104.452 +639971.912|221446.708|104.595 +639976.630|221442.221|104.708 +639981.324|221437.762|105.071 +639986.024|221433.296|105.385 +639990.721|221428.831|105.732 +640000.112|221419.907|106.519 +640004.723|221415.533|107.250 +640009.436|221411.046|107.113 +640014.160|221406.547|106.887 +640018.817|221402.121|107.250 +640023.472|221397.699|107.677 +640028.132|221393.273|108.064 +640032.863|221388.768|107.884 +640037.535|221384.321|107.808 +640042.238|221379.847|107.902 +640046.969|221375.336|107.393 +640056.311|221366.451|107.442 +640065.592|221357.621|107.662 +640070.292|221353.149|107.552 +640074.937|221348.729|107.497 +640073.895|221346.821|107.537 +640069.091|221351.378|107.610 +640064.294|221355.935|107.680 +640059.511|221360.473|107.662 +640054.747|221364.991|107.525 +640049.907|221369.578|107.223 +640045.055|221374.193|107.820 +640040.172|221378.835|108.320 +640035.383|221383.373|108.079 +640025.758|221392.508|108.079 +640020.945|221397.068|107.689 +640016.178|221401.588|107.369 +640011.325|221406.184|106.924 +640006.497|221410.772|107.168 +640001.642|221415.377|107.220 +639992.041|221424.469|106.034 +639987.231|221429.029|105.760 +639982.388|221433.620|105.370 +639972.741|221442.764|104.702 +639967.882|221447.372|104.519 +639963.008|221451.996|104.480 +639958.141|221456.614|104.416 +639948.381|221465.870|104.102 +639943.532|221470.467|103.925 +639938.685|221475.057|103.248 +639933.802|221479.687|102.956 +639924.122|221488.859|102.014 +639919.285|221493.437|101.282 +639914.429|221498.036|100.734 +639909.528|221502.678|100.176 +639904.731|221507.220|99.551 +639899.838|221511.853|98.917 +639894.992|221516.440|98.295 +639890.118|221521.061|98.018 +639880.328|221530.345|97.494 +639870.547|221539.614|96.881 +639851.006|221558.118|94.327 +639846.139|221562.721|93.431 +639841.222|221567.387|93.254 +639836.327|221572.023|92.775 +639826.516|221581.329|92.217 +639821.621|221585.956|91.029 +639791.835|221614.247|92.467 +639786.867|221618.966|92.653 +639776.925|221628.427|94.098 +639761.971|221642.637|95.198 +639747.060|221656.798|95.838 +639737.145|221666.201|95.503 +639732.174|221670.913|95.147 +639727.288|221675.534|93.882 +639722.271|221680.304|94.638 +639717.315|221684.998|93.927 +639692.297|221708.800|97.454 +639687.371|221713.472|97.411 +639672.351|221727.764|99.688 +639662.338|221737.286|100.947 +639657.363|221742.017|101.517 +639647.339|221751.536|101.788 +639642.364|221756.269|102.523 +639632.358|221765.761|102.160 +639627.350|221770.516|102.303 +639622.336|221775.286|103.038 +639612.317|221784.817|104.437 +639607.315|221789.572|104.790 +639602.310|221794.324|105.126 +639597.306|221799.100|106.656 +639547.181|221846.707|108.914 +639542.201|221851.455|110.277 +639537.171|221856.238|111.002 +639532.182|221860.974|110.929 +639527.192|221865.711|111.094 +639522.157|221870.490|111.191 +639517.128|221875.273|111.652 +639512.144|221880.006|111.959 +639476.995|221913.348|110.734 +639471.972|221918.121|111.371 +639466.988|221922.855|111.633 +639446.935|221941.884|112.228 +639441.943|221946.620|112.258 +639436.892|221951.406|112.075 +639431.896|221956.145|112.109 +639426.898|221960.885|112.060 +639421.893|221965.631|111.926 +639416.897|221970.370|111.990 +639411.901|221975.110|112.093 +639401.901|221984.595|112.194 +639396.908|221989.335|112.365 +639366.928|222017.745|110.899 +639361.954|222022.461|110.768 +639356.961|222027.191|110.335 +639351.950|222031.934|109.600 +639346.912|222036.704|109.308 +639341.980|222041.383|109.180 +639327.033|222055.541|108.186 +639322.046|222060.271|108.085 +639317.136|222064.923|107.765 +639312.158|222069.644|107.845 +639277.359|222102.584|103.544 +639272.425|222107.256|103.205 +639262.519|222116.626|101.660 +639257.578|222121.301|100.791 +639252.619|222125.995|100.319 +639242.905|222135.216|100.691 +639228.381|222149.008|101.901 +639209.471|222167.019|106.808 +639199.952|222176.071|108.302 +639166.711|222207.652|111.752 +639157.198|222216.677|112.164 +639152.449|222221.191|112.645 +639147.725|222225.674|112.944 +639118.927|222252.948|110.618 +639114.087|222257.532|110.106 +639094.866|222275.713|107.314 +639085.244|222284.809|105.644 +639075.786|222293.776|105.726 +639066.239|222302.807|104.513 +639061.609|222307.202|104.818 +639056.995|222311.582|105.251 +639011.387|222354.916|111.469 +638997.775|222367.843|112.740 +638979.795|222384.927|115.370 +638975.308|222389.185|115.562 +638970.748|222393.507|115.638 +638966.231|222397.795|115.980 +638948.010|222415.062|115.745 +638916.802|222444.680|117.711 +638907.661|222453.330|116.812 +638903.177|222457.579|116.736 +638888.873|222471.057|111.472 +638883.950|222475.684|108.893 +638879.009|222480.326|106.247 +638874.090|222484.947|103.513 +638869.079|222489.653|100.621 +638859.484|222498.687|96.671 +638855.122|222502.827|97.018 +638855.366|222500.440|96.866 +638859.837|222496.185|96.844 +638869.722|222486.861|102.120 +638874.684|222482.182|104.797 +638879.637|222477.510|107.488 +638884.563|222472.862|109.811 +638889.559|222468.155|112.834 +638903.750|222454.711|116.760 +638912.885|222446.030|117.360 +638921.959|222437.404|117.702 +638930.877|222428.906|116.967 +638935.401|222424.596|116.556 +638939.884|222420.326|116.214 +638944.414|222416.016|116.150 +638962.714|222398.606|116.025 +638967.341|222394.205|116.068 +638971.839|222389.916|115.644 +638976.482|222385.500|115.495 +638994.620|222368.202|113.029 +638999.204|222363.840|112.892 +639003.813|222359.445|112.331 +639022.391|222341.761|111.411 +639027.066|222337.308|111.021 +639045.464|222319.751|107.842 +639050.064|222315.365|106.964 +639059.259|222306.584|104.873 +639063.978|222302.088|104.534 +639073.652|222292.904|105.647 +639093.016|222274.510|107.287 +639097.868|222269.901|107.771 +639117.409|222251.357|110.679 +639122.350|222246.675|111.633 +639151.419|222219.036|112.584 +639156.223|222214.461|112.185 +639165.872|222205.277|111.792 +639170.728|222200.653|111.463 +639180.347|222191.485|110.469 +639189.961|222182.323|109.442 +639199.605|222173.133|108.262 +639209.233|222163.943|106.506 +639218.804|222154.802|104.105 +639223.565|222150.255|102.898 +639228.381|222145.655|101.742 +639238.159|222136.343|101.011 +639243.002|222131.729|100.712 +639247.931|222127.035|100.298 +639252.884|222122.332|100.706 +639257.822|222117.638|100.980 +639262.875|222112.849|102.117 +639267.837|222108.143|102.770 +639277.801|222098.682|103.529 +639292.703|222084.543|104.958 +639297.687|222079.812|105.519 +639312.738|222065.538|107.552 +639317.645|222060.878|107.896 +639322.610|222056.156|107.729 +639327.609|222051.411|108.067 +639332.571|222046.702|108.625 +639342.550|222037.225|109.234 +639347.515|222032.504|109.161 +639352.505|222027.767|109.558 +639357.473|222023.058|110.396 +639362.490|222018.291|110.542 +639377.432|222004.106|111.685 +639392.376|221989.911|112.380 +639397.283|221985.248|112.407 +639402.288|221980.493|112.538 +639407.278|221975.747|112.395 +639412.221|221971.047|112.264 +639417.208|221966.301|112.115 +639422.161|221961.595|112.209 +639427.154|221956.849|112.237 +639432.149|221952.101|112.307 +639437.087|221947.404|112.087 +639442.083|221942.658|112.228 +639447.075|221937.912|112.252 +639466.967|221918.996|111.725 +639471.950|221914.257|111.499 +639511.894|221876.291|111.874 +639521.901|221866.766|111.200 +639526.884|221862.026|111.063 +639531.917|221857.244|110.871 +639536.900|221852.504|110.804 +639546.858|221843.006|108.820 +639556.880|221833.478|108.671 +639581.819|221809.774|108.917 +639586.857|221804.976|108.366 +639596.851|221795.439|105.946 +639601.896|221790.629|105.107 +639606.898|221785.868|104.608 +639616.901|221776.343|103.580 +639621.964|221771.509|102.248 +639626.969|221766.742|101.849 +639641.974|221752.484|102.002 +639662.079|221733.354|100.389 +639667.108|221728.563|99.581 +639682.202|221714.185|97.533 +639687.216|221709.421|97.576 +639722.274|221676.061|94.894 +639732.293|221666.539|94.750 +639737.243|221661.848|95.512 +639792.073|221609.694|92.601 +639806.963|221595.539|92.379 +639811.891|221590.851|92.141 +639816.808|221586.181|92.160 +639831.530|221572.209|93.373 +639836.458|221567.525|93.312 +639841.329|221562.895|93.348 +639846.221|221558.256|93.842 +639851.049|221553.677|94.513 +639855.904|221549.078|95.473 +639870.361|221535.368|97.308 +639875.232|221530.744|97.500 +639884.861|221521.600|98.097 +639889.756|221516.949|98.036 +639894.507|221512.441|98.573 +639899.342|221507.854|99.228 +639908.873|221498.816|100.542 +639913.625|221494.311|101.099 +639923.201|221485.225|101.983 +639927.932|221480.742|102.788 +639942.166|221467.239|104.306 +639946.930|221462.713|104.330 +639956.449|221453.666|104.507 +639961.198|221449.158|104.751 +639965.974|221444.620|104.739 +639970.659|221440.173|105.144 +639984.808|221426.740|106.055 +639989.529|221422.253|106.202 +639998.853|221413.411|107.195 +640003.550|221408.943|107.174 +640008.235|221404.493|107.293 +640012.901|221400.061|107.582 +640017.549|221395.644|108.027 +640022.225|221391.203|108.283 +640026.846|221386.814|108.597 +640031.528|221382.358|108.421 +640036.191|221377.923|108.424 +640040.848|221373.495|108.491 +640045.542|221369.029|108.308 +640050.224|221364.570|107.851 +640054.927|221360.096|107.640 +640059.563|221355.688|107.619 +640064.132|221351.351|108.104 +640068.823|221346.882|107.686 +640073.428|221342.509|107.948 +640079.823|221333.928|107.628 +640075.123|221338.385|107.649 +640070.329|221342.929|107.656 +640065.641|221347.373|107.619 +640060.871|221351.893|107.488 +640056.107|221356.410|107.695 +640051.306|221360.964|107.848 +640046.536|221365.490|108.180 +640041.708|221370.075|108.607 +640036.907|221374.625|108.469 +640032.116|221379.170|108.655 +640027.306|221383.727|108.613 +640022.524|221388.259|108.396 +640017.744|221392.785|108.158 +640012.974|221397.299|107.835 +640008.183|221401.835|107.351 +640003.428|221406.337|106.948 +639998.509|221411.000|107.159 +639993.708|221415.554|107.217 +639988.886|221420.114|106.595 +639984.101|221424.643|106.129 +639964.758|221442.959|104.876 +639959.851|221447.607|104.708 +639954.998|221452.203|104.504 +639950.131|221456.809|103.989 +639940.322|221466.114|104.257 +639920.854|221484.530|101.983 +639915.935|221489.188|101.627 +639911.031|221493.830|101.108 +639906.136|221498.463|100.514 +639901.244|221503.087|99.868 +639896.367|221507.701|99.094 +639891.505|221512.292|98.112 +639886.577|221516.964|97.945 +639881.578|221521.701|98.045 +639876.683|221526.334|97.512 +639861.857|221540.373|96.497 +639852.049|221549.648|95.116 +639842.195|221558.966|93.714 +639837.245|221563.657|93.373 +639797.477|221601.333|92.117 +639792.469|221606.079|92.077 +639782.466|221615.570|92.726 +639777.443|221620.340|93.092 +639772.450|221625.086|93.827 +639767.384|221629.893|94.180 +639742.409|221653.585|95.290 +639737.438|221658.294|94.915 +639727.455|221667.740|93.955 +639707.500|221686.662|94.333 +639702.526|221691.377|94.171 +639687.456|221705.703|96.814 +639682.470|221710.436|97.244 +639677.483|221715.173|97.780 +639657.498|221734.159|100.392 +639647.509|221743.635|100.980 +639642.544|221748.351|101.264 +639627.606|221762.518|101.861 +639622.601|221767.263|101.806 +639612.664|221776.712|103.785 +639607.657|221781.467|104.278 +639602.655|221786.213|104.580 +639597.699|221790.925|105.321 +639592.694|221795.680|106.147 +639587.738|221800.401|107.668 +639582.742|221805.153|108.600 +639577.750|221809.887|108.610 +639552.887|221833.463|108.927 +639547.940|221838.148|108.835 +639533.029|221852.312|110.658 +639528.088|221856.997|110.813 +639523.102|221861.727|110.999 +639508.197|221875.873|111.929 +639498.267|221885.288|112.045 +639493.332|221889.970|112.368 +639488.385|221894.658|112.161 +639473.444|221908.810|111.493 +639468.451|221913.546|111.481 +639463.471|221918.277|111.856 +639448.590|221932.392|112.078 +639438.608|221941.862|112.285 +639433.646|221946.562|111.917 +639428.669|221951.293|112.417 +639423.719|221955.987|112.423 +639418.763|221960.684|112.340 +639413.767|221965.423|112.392 +639408.774|221970.163|112.520 +639403.824|221974.857|112.645 +639398.826|221979.600|112.666 +639393.912|221984.260|112.526 +639388.895|221989.012|112.292 +639378.949|221998.436|111.722 +639368.989|222007.873|111.030 +639364.011|222012.591|110.765 +639349.006|222026.795|109.033 +639344.041|222031.504|109.140 +639339.121|222036.171|109.234 +639324.143|222050.353|107.753 +639319.145|222055.093|107.448 +639314.262|222059.726|107.521 +639309.248|222064.471|107.119 +639299.281|222073.905|105.912 +639284.312|222088.075|104.187 +639279.338|222092.790|103.867 +639274.388|222097.475|103.303 +639269.401|222102.200|102.928 +639264.421|222106.909|102.087 +639254.445|222116.352|100.907 +639249.510|222121.030|100.700 +639244.563|222125.715|100.410 +639239.726|222130.311|100.810 +639234.821|222134.969|101.020 +639229.951|222139.586|101.127 +639225.074|222144.219|101.663 +639210.831|222157.795|105.833 +639196.447|222171.472|108.012 +639186.876|222180.570|109.518 +639177.351|222189.620|110.545 +639167.762|222198.730|111.472 +639162.962|222203.290|111.886 +639158.222|222207.792|112.438 +639153.400|222212.364|112.270 +639148.648|222216.878|112.724 +639143.869|222221.413|112.977 +639139.114|222225.921|113.044 +639129.507|222235.032|112.791 +639124.627|222239.649|112.282 +639119.713|222244.292|111.127 +639114.888|222248.864|110.713 +639090.709|222271.754|107.625 +639071.476|222289.972|105.620 +639066.712|222294.480|104.882 +639061.917|222299.025|104.687 +639057.269|222303.438|104.858 +639034.449|222325.158|109.195 +639025.411|222333.772|111.438 +639020.815|222338.137|111.722 +638975.272|222381.412|115.788 +638970.706|222385.743|115.800 +638957.099|222398.661|116.214 +638943.456|222411.606|116.275 +638938.961|222415.876|116.537 +638934.520|222420.094|116.848 +638930.018|222424.371|117.101 +638925.565|222428.598|117.379 +638921.121|222432.820|117.717 +638916.643|222437.069|117.879 +638907.591|222445.649|117.144 +638889.467|222462.818|115.608 +638874.575|222476.818|107.159 +638869.612|222481.481|104.199 +638854.964|222495.264|96.884 +638850.547|222499.455|96.951 +638846.231|222503.558|97.280 +638848.663|222499.312|96.930 +638853.074|222495.121|96.832 +638862.846|222485.907|101.447 +638887.721|222462.489|115.276 +638892.317|222458.134|115.913 +638906.009|222445.140|117.205 +638910.666|222440.714|117.763 +638915.171|222436.432|117.744 +638919.676|222432.146|117.760 +638924.135|222427.894|117.242 +638928.671|222423.581|117.174 +638937.650|222415.029|116.580 +638942.195|222410.701|116.333 +638955.862|222397.692|115.891 +638965.088|222388.923|116.071 +638969.663|222384.564|115.830 +638997.135|222358.391|113.191 +639011.006|222345.181|112.142 +639020.300|222336.335|111.935 +639024.942|222331.910|111.335 +639043.324|222314.374|108.052 +639057.110|222301.213|105.065 +639061.826|222296.723|104.687 +639066.672|222292.124|105.324 +639081.117|222278.399|106.311 +639105.598|222255.176|110.094 +639110.454|222250.567|110.716 +639120.201|222241.308|111.569 +639125.127|222236.638|112.484 +639139.721|222222.767|113.044 +639144.549|222218.170|112.834 +639149.322|222213.626|112.587 +639154.144|222209.038|112.346 +639163.821|222199.824|111.804 +639168.622|222195.252|111.420 +639183.051|222181.500|109.719 +639192.695|222172.310|108.552 +639202.278|222163.169|106.781 +639211.894|222153.991|104.873 +639221.493|222144.823|102.236 +639231.197|222135.575|101.246 +639241.042|222126.203|100.785 +639245.934|222121.548|100.496 +639250.881|222116.848|100.871 +639255.871|222112.106|101.215 +639260.833|222107.393|101.837 +639265.878|222102.602|102.337 +639270.858|222097.875|103.279 +639275.811|222093.162|103.312 +639280.840|222088.383|103.736 +639285.775|222083.692|104.227 +639290.810|222078.910|104.827 +639300.774|222069.443|105.982 +639305.822|222064.654|106.872 +639310.778|222059.942|107.186 +639315.749|222055.209|107.122 +639320.748|222050.454|107.439 +639325.710|222045.738|107.960 +639330.736|222040.971|108.756 +639335.726|222036.226|109.061 +639345.687|222026.752|109.457 +639365.566|222007.852|110.774 +639375.572|221998.339|111.612 +639385.554|221988.847|112.127 +639390.526|221984.120|112.511 +639395.482|221979.405|112.642 +639410.423|221965.186|112.673 +639415.364|221960.480|112.538 +639420.360|221955.728|112.569 +639425.349|221950.976|112.517 +639430.345|221946.224|112.630 +639435.280|221941.521|112.383 +639440.266|221936.775|112.252 +639445.256|221932.026|112.221 +639450.245|221927.278|112.240 +639465.190|221913.043|111.569 +639470.167|221908.301|111.258 +639475.157|221903.552|111.335 +639480.158|221898.800|111.926 +639485.145|221894.054|111.929 +639490.086|221889.354|112.124 +639505.036|221875.123|111.853 +639519.978|221860.889|111.158 +639525.007|221856.101|110.850 +639529.990|221851.355|110.673 +639539.951|221841.857|109.722 +639544.932|221837.105|108.957 +639549.918|221832.357|108.808 +639555.142|221827.385|108.960 +639589.832|221794.324|105.988 +639594.831|221789.553|105.266 +639609.830|221775.255|103.708 +639619.800|221765.739|102.066 +639624.853|221760.920|101.566 +639634.805|221751.456|101.938 +639654.834|221732.358|99.258 +639669.796|221718.099|98.152 +639689.794|221699.031|95.555 +639694.732|221694.346|96.582 +639714.663|221675.366|95.677 +639724.724|221665.768|94.296 +639729.687|221661.040|93.705 +639739.614|221651.607|94.671 +639744.588|221646.876|94.887 +639749.611|221642.085|94.116 +639754.552|221637.382|94.153 +639769.509|221623.141|93.604 +639779.461|221613.656|92.675 +639784.423|221608.932|92.477 +639789.382|221604.210|92.422 +639799.431|221594.627|91.001 +639809.258|221585.288|91.785 +639814.211|221580.573|91.919 +639828.832|221566.702|94.625 +639833.831|221561.941|94.199 +639838.790|221557.213|93.665 +639843.676|221552.571|94.220 +639853.393|221543.354|96.030 +639863.119|221534.112|97.088 +639877.826|221520.125|97.622 +639882.696|221515.495|97.832 +639887.564|221510.865|98.109 +639897.196|221501.727|99.859 +639902.085|221497.085|100.474 +639906.876|221492.534|101.112 +639911.747|221487.904|101.407 +639916.481|221483.409|102.136 +639921.321|221478.812|102.794 +639926.124|221474.249|103.318 +639935.735|221465.121|104.379 +639940.545|221460.546|104.409 +639950.192|221451.368|104.723 +639954.980|221446.817|105.019 +639959.771|221442.261|105.296 +639964.542|221437.719|105.321 +639978.861|221424.110|106.388 +639983.564|221419.638|106.695 +639988.331|221415.112|107.293 +639993.077|221410.592|107.229 +639997.884|221406.017|107.098 +640002.575|221401.564|107.561 +640007.287|221397.089|107.881 +640011.990|221392.627|108.280 +640016.714|221388.137|108.521 +640030.817|221374.741|109.116 +640035.499|221370.288|109.003 +640040.275|221365.747|108.911 +640044.951|221361.303|108.893 +640049.691|221356.788|108.390 +640054.455|221352.247|107.726 +640059.133|221347.803|107.759 +640063.797|221343.368|107.915 +640068.451|221338.942|107.799 +640073.108|221334.514|107.683 +640077.818|221330.036|107.592 +640078.555|221327.214|107.863 +640069.283|221336.013|107.683 +640064.614|221340.448|107.869 +640059.990|221344.837|107.744 +640055.302|221349.287|107.741 +640050.593|221353.768|108.323 +640045.783|221358.343|108.951 +640041.083|221362.808|109.137 +640036.407|221367.249|109.155 +640031.686|221371.730|109.173 +640027.056|221376.119|108.850 +640012.898|221389.558|108.649 +640008.210|221394.002|108.098 +639998.771|221402.954|107.549 +639994.058|221407.422|107.247 +639989.230|221412.012|107.567 +639979.754|221420.995|106.644 +639975.030|221425.475|106.516 +639965.502|221434.510|105.717 +639960.689|221439.069|105.135 +639946.266|221452.755|104.669 +639936.604|221461.926|104.477 +639926.920|221471.104|103.556 +639922.125|221475.645|102.892 +639917.258|221480.260|102.501 +639902.688|221494.071|101.038 +639892.999|221503.251|99.831 +639888.128|221507.860|98.978 +639883.334|221512.395|97.798 +639878.402|221517.074|97.689 +639873.488|221521.734|97.375 +639853.756|221540.449|96.116 +639848.891|221545.052|95.217 +639828.924|221563.995|94.863 +639823.961|221568.698|94.735 +639778.951|221611.361|92.601 +639763.779|221625.775|94.010 +639758.725|221630.573|94.177 +639753.732|221635.309|94.147 +639728.504|221659.236|93.906 +639723.438|221664.055|94.662 +639718.327|221668.916|95.485 +639713.282|221673.705|95.793 +639693.062|221692.895|96.381 +639687.981|221697.720|96.677 +639667.779|221716.901|97.734 +639652.596|221731.327|99.481 +639647.534|221736.131|99.618 +639632.379|221750.539|101.489 +639622.272|221760.125|101.413 +639617.209|221764.938|102.172 +639597.037|221784.107|104.510 +639592.036|221788.859|104.943 +639586.985|221793.674|106.406 +639551.893|221826.998|108.814 +639546.901|221831.732|108.725 +639541.865|221836.517|109.442 +639531.895|221845.993|110.576 +639526.909|221850.727|110.640 +639521.874|221855.503|110.844 +639516.936|221860.194|111.069 +639506.920|221869.701|111.700 +639501.982|221874.389|111.862 +639492.009|221883.853|112.109 +639487.065|221888.541|112.039 +639477.080|221898.008|111.725 +639472.133|221902.699|111.548 +639467.134|221907.435|111.356 +639462.200|221912.117|111.755 +639452.327|221921.483|112.313 +639437.489|221935.547|112.392 +639432.591|221940.189|112.441 +639427.654|221944.874|112.727 +639422.701|221949.565|112.666 +639417.796|221954.213|112.627 +639412.852|221958.901|112.749 +639407.948|221963.546|112.785 +639388.264|221982.200|112.548 +639378.419|221991.520|112.029 +639373.484|221996.190|111.624 +639358.705|222010.177|110.161 +639348.808|222019.538|109.228 +639343.937|222024.158|109.268 +639319.309|222047.464|107.278 +639314.405|222052.109|106.988 +639309.470|222056.784|107.031 +639304.529|222061.457|106.290 +639299.653|222066.072|105.876 +639289.789|222075.405|104.888 +639284.836|222080.086|104.172 +639279.950|222084.710|103.763 +639275.015|222089.380|103.370 +639270.084|222094.049|103.065 +639260.278|222103.327|102.032 +639255.368|222107.973|101.523 +639245.505|222117.306|100.615 +639240.637|222121.917|100.685 +639235.772|222126.529|100.804 +639230.902|222131.150|100.831 +639226.080|222135.725|101.468 +639221.276|222140.284|101.749 +639197.496|222162.895|106.787 +639173.694|222185.508|110.603 +639164.181|222194.542|111.758 +639149.813|222208.170|112.505 +639145.097|222212.641|112.886 +639125.953|222230.786|112.901 +639121.094|222235.385|112.554 +639111.435|222244.517|111.240 +639106.592|222249.098|110.743 +639091.958|222262.927|108.210 +639087.164|222267.459|107.464 +639082.260|222272.096|106.653 +639077.496|222276.604|106.208 +639072.707|222281.139|105.964 +639063.127|222290.201|105.211 +639058.372|222294.706|104.940 +639053.709|222299.131|105.351 +639017.212|222333.824|112.304 +639012.521|222338.268|112.304 +638998.787|222351.298|113.322 +638971.541|222377.157|115.925 +638967.002|222381.461|116.111 +638962.439|222385.783|116.184 +638957.941|222390.053|116.641 +638944.273|222403.004|116.513 +638930.804|222415.775|117.138 +638926.281|222420.064|117.281 +638921.779|222424.328|117.275 +638917.314|222428.565|117.501 +638903.872|222441.299|117.449 +638894.685|222449.983|116.096 +638890.253|222454.180|116.080 +638885.648|222458.536|115.391 +638881.085|222462.849|114.693 +638851.410|222490.714|98.121 +638846.713|222495.139|96.475 +638842.470|222499.169|97.207 +638837.892|222500.964|97.311 +638842.217|222496.849|97.018 +638846.515|222492.759|96.610 +638851.474|222488.083|99.127 +638866.345|222474.081|107.482 +638876.333|222464.678|113.084 +638881.094|222460.176|114.578 +638885.651|222455.854|115.285 +638904.024|222438.431|117.470 +638908.520|222434.161|117.687 +638913.068|222429.842|117.638 +638917.512|222425.614|117.306 +638926.622|222416.961|117.403 +638935.605|222408.421|116.824 +638944.642|222399.828|116.345 +638949.239|222395.464|116.452 +638953.850|222391.087|116.656 +638958.453|222386.713|116.547 +638962.958|222382.427|116.141 +638972.129|222373.707|115.803 +638976.643|222369.409|115.202 +639008.842|222338.786|112.673 +639013.442|222334.412|112.420 +639022.747|222325.564|111.685 +639031.739|222316.974|108.844 +639054.834|222294.977|104.854 +639059.558|222290.490|104.934 +639064.432|222285.866|105.400 +639069.196|222281.349|105.799 +639074.021|222276.768|105.979 +639093.409|222258.389|108.347 +639098.365|222253.704|109.689 +639108.088|222244.487|111.002 +639112.987|222239.842|111.642 +639117.891|222235.196|112.325 +639122.694|222230.640|112.636 +639146.859|222207.685|112.487 +639151.654|222203.128|112.450 +639156.500|222198.523|112.471 +639180.552|222175.635|109.731 +639190.144|222166.497|108.061 +639218.847|222139.135|101.709 +639223.748|222134.475|101.489 +639233.526|222125.176|100.782 +639238.464|222120.491|100.987 +639243.402|222115.797|100.679 +639253.308|222106.400|101.602 +639258.288|222101.675|101.849 +639268.276|222092.202|102.785 +639273.257|222087.478|103.157 +639288.210|222073.298|104.617 +639298.238|222063.795|105.946 +639303.246|222059.043|106.269 +639308.278|222054.276|106.948 +639313.256|222049.548|106.906 +639318.261|222044.800|107.305 +639323.272|222040.048|107.829 +639343.227|222021.114|108.847 +639348.262|222016.334|109.213 +639353.322|222011.543|109.978 +639363.341|222002.042|110.789 +639373.347|221992.548|111.584 +639378.370|221987.784|111.941 +639383.396|221983.017|112.414 +639388.401|221978.265|112.471 +639408.418|221959.263|112.971 +639413.401|221954.527|112.706 +639418.397|221949.781|112.734 +639423.441|221944.993|112.795 +639428.385|221940.296|112.724 +639433.417|221935.513|112.584 +639468.506|221902.171|111.490 +639478.546|221892.646|112.039 +639483.533|221887.907|112.063 +639488.574|221883.124|112.368 +639493.554|221878.391|112.020 +639498.584|221873.611|111.783 +639503.570|221868.875|111.847 +639518.612|221854.577|110.862 +639523.596|221849.837|110.646 +639528.628|221845.055|110.481 +639543.627|221830.784|108.841 +639548.617|221826.047|108.820 +639553.603|221821.311|108.917 +639568.621|221807.046|108.646 +639583.602|221792.778|106.119 +639598.604|221778.501|104.205 +639618.587|221759.482|101.590 +639623.592|221754.727|101.438 +639633.568|221745.242|100.764 +639638.588|221740.459|100.023 +639643.605|221735.689|99.688 +639648.576|221730.956|99.246 +639658.522|221721.491|98.441 +639663.502|221716.752|97.908 +639678.428|221702.563|97.311 +639683.372|221697.857|96.668 +639688.343|221693.133|96.680 +639693.266|221688.457|96.829 +639713.063|221669.633|95.976 +639722.984|221660.190|94.711 +639732.835|221650.820|94.159 +639737.782|221646.117|94.052 +639742.732|221641.411|93.869 +639747.621|221636.769|94.004 +639752.598|221632.029|93.330 +639767.357|221618.006|93.181 +639782.131|221603.954|92.230 +639787.053|221599.273|91.995 +639792.000|221594.563|91.394 +639806.670|221580.631|91.861 +639811.507|221576.056|93.120 +639816.241|221571.591|95.204 +639835.809|221552.979|94.116 +639845.493|221543.799|95.171 +639855.139|221534.652|96.674 +639859.949|221530.092|97.036 +639864.808|221525.477|97.344 +639869.608|221520.914|97.222 +639874.473|221516.297|97.524 +639879.295|221511.719|97.768 +639893.657|221498.115|100.386 +639898.458|221493.562|100.919 +639903.267|221488.999|101.343 +639917.648|221475.359|102.773 +639922.439|221470.814|103.431 +639927.234|221466.270|104.102 +639932.001|221461.747|104.559 +639936.826|221457.159|104.425 +639941.633|221452.596|104.541 +639956.041|221438.920|105.504 +639975.139|221420.790|106.598 +639979.876|221416.298|107.055 +639984.600|221411.817|107.604 +639989.425|221407.230|107.308 +639994.186|221402.710|107.579 +639998.920|221398.211|107.695 +640008.351|221389.259|108.713 +640013.087|221384.757|108.847 +640032.067|221366.719|109.359 +640036.846|221362.171|109.253 +640041.586|221357.663|109.113 +640046.380|221353.103|108.957 +640051.175|221348.537|108.457 +640055.945|221343.990|107.777 +640060.709|221339.464|107.930 +640070.094|221330.539|107.918 +640074.797|221326.068|107.875 +640079.497|221321.599|107.875 +640078.174|221319.795|107.945 +640073.505|221324.220|108.040 +640068.884|221328.604|107.826 +640064.144|221333.096|107.784 +640059.487|221337.516|107.881 +640054.766|221341.996|108.104 +640049.995|221346.532|108.741 +640045.280|221351.006|108.975 +640040.522|221355.520|109.198 +640031.095|221364.466|109.417 +640012.289|221382.297|108.954 +640007.537|221386.802|108.899 +640002.876|221391.210|108.094 +639998.131|221395.708|108.021 +639993.449|221400.146|107.851 +639988.770|221404.578|107.250 +639983.960|221409.138|107.366 +639979.215|221413.643|107.406 +639969.769|221422.589|106.662 +639950.707|221440.651|105.592 +639945.897|221445.211|105.476 +639941.130|221449.725|104.934 +639936.357|221454.242|104.458 +639931.541|221458.811|104.431 +639921.943|221467.900|103.623 +639917.133|221472.454|103.084 +639912.366|221476.971|102.654 +639907.519|221481.555|101.995 +639883.410|221504.379|99.213 +639878.566|221508.966|98.624 +639873.775|221513.493|97.393 +639868.883|221518.129|97.350 +639863.960|221522.795|97.155 +639859.071|221527.431|97.161 +639854.182|221532.058|96.552 +639849.284|221536.697|96.091 +639839.503|221545.960|95.000 +639834.578|221550.623|94.287 +639829.582|221555.366|94.558 +639824.601|221560.103|95.357 +639804.924|221578.726|92.318 +639799.986|221583.405|91.861 +639794.941|221588.196|92.352 +639784.996|221597.627|91.879 +639769.929|221611.934|92.733 +639754.848|221626.253|93.342 +639744.786|221635.806|93.769 +639739.739|221640.597|93.888 +639734.701|221645.377|93.842 +639729.662|221650.156|93.833 +639724.609|221654.957|94.235 +639689.203|221688.594|96.948 +639684.137|221693.395|96.728 +639679.059|221698.217|96.975 +639658.808|221717.450|98.152 +639648.658|221727.094|99.115 +639643.593|221731.907|99.429 +639633.412|221741.578|100.252 +639618.224|221756.007|101.480 +639613.161|221760.823|102.255 +639608.102|221765.633|102.962 +639603.045|221770.439|103.492 +639597.943|221775.289|104.080 +639592.941|221780.035|104.077 +639587.842|221784.881|104.754 +639577.743|221794.497|106.903 +639567.609|221804.138|108.597 +639562.570|221808.924|108.829 +639552.442|221818.534|108.847 +639547.452|221823.264|108.716 +639542.368|221828.092|108.960 +639527.262|221842.446|110.387 +639522.227|221847.228|110.576 +639517.237|221851.964|110.755 +639512.205|221856.744|111.063 +639502.141|221866.302|111.792 +639487.093|221880.591|112.420 +639482.097|221885.325|112.200 +639477.059|221890.104|112.188 +639472.057|221894.844|111.688 +639467.064|221899.580|111.752 +639462.032|221904.360|111.984 +639457.100|221909.044|112.432 +639447.069|221918.563|112.499 +639432.146|221932.727|112.788 +639427.190|221937.424|112.636 +639422.207|221942.158|112.944 +639417.257|221946.855|112.895 +639412.307|221951.552|112.944 +639407.317|221956.289|113.102 +639387.581|221975.006|112.724 +639382.619|221979.712|112.618 +639372.713|221989.100|111.904 +639362.826|221998.464|110.829 +639357.876|222003.149|110.231 +639347.970|222012.533|109.052 +639343.023|222017.218|108.661 +639338.137|222021.851|108.533 +639323.387|222035.832|107.579 +639318.425|222040.529|107.153 +639313.564|222045.138|106.793 +639308.614|222049.832|106.595 +639303.773|222054.425|106.610 +639298.836|222059.101|105.952 +639293.925|222063.755|105.741 +639279.115|222077.773|103.586 +639274.196|222082.436|103.370 +639269.361|222087.018|103.096 +639264.418|222091.699|102.642 +639254.655|222100.956|102.181 +639249.741|222105.610|101.648 +639244.886|222110.210|101.233 +639239.985|222114.855|100.904 +639235.126|222119.467|101.081 +639230.283|222124.057|100.904 +639215.893|222137.733|102.538 +639192.186|222160.298|107.323 +639168.482|222182.841|110.710 +639154.299|222196.325|112.654 +639149.541|222200.836|112.627 +639144.738|222205.396|112.609 +639139.983|222209.913|113.081 +639135.274|222214.388|113.514 +639120.863|222228.049|112.938 +639116.047|222232.612|112.569 +639106.339|222241.804|111.274 +639101.529|222246.358|110.652 +639077.236|222269.334|106.549 +639072.500|222273.824|106.321 +639067.708|222278.362|106.080 +639062.911|222282.907|105.802 +639058.177|222287.387|105.324 +639053.377|222291.938|105.083 +639048.823|222296.269|105.933 +639030.447|222313.743|108.975 +639021.504|222322.269|111.886 +639016.880|222326.661|112.307 +639012.235|222331.065|112.264 +638993.874|222348.506|114.023 +638975.686|222365.776|115.565 +638966.566|222374.435|116.245 +638962.004|222378.764|116.288 +638957.404|222383.128|116.425 +638952.911|222387.395|116.940 +638943.786|222396.049|116.854 +638930.185|222408.954|117.239 +638925.650|222413.255|117.296 +638916.652|222421.786|117.324 +638912.160|222426.047|117.406 +638898.639|222438.867|117.214 +638893.960|222443.290|116.339 +638884.919|222451.852|115.583 +638880.332|222456.189|114.742 +638870.966|222465.037|112.386 +638866.068|222469.640|109.722 +638861.087|222474.322|106.942 +638841.473|222492.768|96.881 +638837.157|222496.868|97.219 +638827.084|222503.622|97.542 +638831.470|222499.455|97.542 +638835.837|222495.298|97.204 +638840.211|222491.140|97.167 +638845.079|222486.553|99.447 +638849.974|222481.939|101.910 +638864.925|222467.869|110.484 +638869.963|222463.129|113.648 +638874.507|222458.819|114.236 +638879.122|222454.446|114.943 +638883.703|222450.102|115.510 +638888.233|222445.801|115.812 +638906.499|222428.473|117.504 +638910.953|222424.234|117.217 +638933.715|222402.605|117.434 +638947.340|222389.654|117.004 +638951.887|222385.329|116.848 +638956.456|222380.982|116.522 +638974.744|222363.588|115.492 +638979.310|222359.244|115.218 +638993.078|222346.144|114.038 +638997.690|222341.752|113.511 +639011.604|222328.520|112.816 +639029.816|222311.156|108.994 +639048.238|222293.596|105.696 +639052.889|222289.170|105.223 +639057.699|222284.605|105.559 +639067.279|222275.509|106.025 +639081.836|222261.708|107.982 +639106.257|222238.558|111.569 +639111.161|222233.907|112.261 +639116.028|222229.289|112.676 +639120.841|222224.720|113.057 +639135.353|222210.937|113.371 +639140.144|222206.377|112.846 +639144.969|222201.787|112.624 +639154.586|222192.646|112.368 +639173.739|222174.410|109.948 +639188.083|222160.743|107.430 +639192.835|222156.207|106.141 +639226.692|222123.959|101.139 +639231.597|222119.296|100.974 +639236.525|222114.611|101.093 +639241.481|222109.902|100.990 +639246.447|222105.196|101.563 +639251.442|222100.456|101.998 +639266.368|222086.286|102.733 +639271.346|222081.565|103.044 +639276.326|222076.840|103.431 +639291.414|222062.542|105.549 +639296.370|222057.836|105.815 +639301.396|222053.072|106.385 +639306.383|222048.335|106.424 +639311.342|222043.632|106.814 +639321.333|222034.150|107.351 +639331.370|222024.625|108.012 +639336.323|222019.925|108.500 +639346.385|222010.375|108.988 +639351.408|222005.621|109.942 +639361.417|221996.123|110.612 +639371.518|221986.555|112.276 +639381.537|221977.039|112.615 +639386.551|221972.284|112.843 +639401.611|221957.983|113.316 +639406.607|221953.241|113.285 +639411.639|221948.455|113.044 +639421.615|221938.976|112.807 +639426.654|221934.187|112.731 +639431.701|221929.399|112.935 +639461.797|221900.793|111.871 +639476.864|221886.486|112.179 +639481.853|221881.750|112.346 +639486.885|221876.967|112.316 +639496.892|221867.451|111.575 +639501.927|221862.669|111.661 +639506.957|221857.890|111.286 +639522.047|221843.540|110.435 +639527.034|221838.800|110.268 +639532.069|221834.018|110.179 +639542.128|221824.438|108.622 +639547.120|221819.698|108.741 +639552.201|221814.876|108.850 +639557.191|221810.137|108.893 +639562.226|221805.351|108.796 +639567.264|221800.560|108.411 +639572.257|221795.802|107.378 +639577.298|221790.989|106.004 +639582.346|221786.182|105.178 +639587.348|221781.418|104.263 +639592.392|221776.627|104.251 +639597.394|221771.866|103.626 +639627.499|221743.218|100.301 +639632.458|221738.515|100.474 +639652.490|221719.465|98.670 +639657.458|221714.743|98.551 +639667.449|221705.249|98.192 +639677.422|221695.763|97.113 +639682.394|221691.039|97.122 +639687.310|221686.375|97.387 +639712.188|221662.735|96.347 +639727.093|221648.544|94.001 +639746.853|221629.768|93.205 +639751.812|221625.056|93.010 +639756.701|221620.417|93.226 +639771.447|221606.402|92.559 +639786.133|221592.457|92.489 +639791.049|221587.785|92.388 +639795.901|221583.167|91.849 +639829.817|221551.007|94.723 +639839.479|221541.839|95.354 +639844.322|221537.249|95.851 +639849.083|221532.732|96.180 +639853.905|221528.166|96.972 +639858.684|221523.627|97.085 +639863.564|221518.994|97.161 +639868.346|221514.456|97.280 +639882.666|221500.886|99.234 +639887.457|221496.347|99.877 +639892.188|221491.867|100.660 +639896.961|221487.338|100.959 +639901.682|221482.869|101.864 +639906.453|221478.346|102.227 +639911.201|221473.844|102.828 +639915.920|221469.370|103.273 +639920.690|221464.846|103.666 +639930.157|221455.873|104.775 +639934.930|221451.338|104.699 +639939.694|221446.823|105.220 +639944.367|221442.392|105.705 +639953.886|221433.354|105.955 +639958.644|221428.843|106.159 +639968.083|221419.888|106.817 +639977.505|221410.951|107.701 +639982.266|221406.431|107.534 +639986.999|221401.939|107.610 +639991.705|221397.470|107.933 +640001.108|221388.552|108.710 +640005.772|221384.126|109.036 +640010.539|221379.603|109.317 +640024.624|221366.228|109.676 +640029.351|221361.735|109.579 +640038.818|221352.738|109.347 +640043.564|221348.230|109.180 +640048.319|221343.709|108.975 +640053.065|221339.192|108.482 +640057.823|221334.666|107.930 +640062.501|221330.222|108.018 +640067.223|221325.741|108.158 +640071.865|221321.331|108.195 +640076.562|221316.869|108.198 +640081.271|221312.394|108.134 +640079.915|221311.010|108.158 +640075.202|221315.479|108.192 +640070.454|221319.981|108.168 +640065.781|221324.409|107.960 +640060.980|221328.960|107.991 +640056.174|221333.523|108.457 +640051.404|221338.052|108.701 +640046.618|221342.594|109.067 +640041.866|221347.102|109.216 +640032.323|221356.151|109.509 +640027.489|221360.739|109.622 +640022.704|221365.277|109.750 +640017.927|221369.809|109.847 +640013.194|221374.293|109.600 +640008.408|221378.826|109.396 +640003.696|221383.288|109.024 +639989.386|221396.845|108.216 +639984.643|221401.332|107.735 +639979.864|221405.861|107.601 +639975.008|221410.467|107.741 +639970.269|221414.954|107.278 +639965.462|221419.507|107.031 +639960.701|221424.018|106.808 +639955.879|221428.581|106.257 +639951.127|221433.080|105.988 +639941.529|221442.175|105.485 +639936.668|221446.781|105.397 +639931.964|221451.231|104.714 +639927.100|221455.843|104.711 +639917.523|221464.907|103.669 +639912.753|221469.421|103.205 +639907.946|221473.972|102.663 +639903.127|221478.535|102.245 +639898.348|221483.052|101.407 +639893.547|221487.597|100.816 +639879.106|221501.261|98.981 +639874.266|221505.839|98.316 +639864.622|221514.965|97.143 +639859.733|221519.598|97.091 +639854.865|221524.209|96.814 +639849.961|221528.864|97.039 +639835.398|221542.638|95.153 +639815.689|221561.328|95.857 +639801.001|221575.215|93.936 +639786.242|221589.178|92.431 +639776.431|221598.456|91.233 +639766.427|221607.962|92.751 +639751.507|221622.102|92.858 +639746.560|221626.787|92.733 +639741.586|221631.508|93.208 +639736.602|221636.227|92.909 +639731.595|221640.975|93.178 +639726.584|221645.730|93.549 +639711.447|221660.117|96.427 +639706.427|221664.890|97.396 +639701.413|221669.654|98.246 +639691.334|221679.216|98.954 +639686.335|221683.943|98.198 +639681.327|221688.680|97.701 +639676.307|221693.435|97.527 +639671.284|221698.193|97.503 +639666.248|221702.972|97.960 +639646.107|221722.068|98.612 +639625.914|221741.240|100.822 +639620.851|221746.037|100.956 +639615.840|221750.792|101.182 +639610.775|221755.596|101.697 +639605.715|221760.402|102.209 +639600.704|221765.157|102.636 +639595.641|221769.967|103.571 +639580.529|221784.308|104.943 +639555.298|221808.280|108.805 +639550.253|221813.057|108.728 +639545.215|221817.830|108.719 +639540.174|221822.609|108.786 +639525.059|221836.953|110.192 +639520.020|221841.732|110.350 +639514.982|221846.509|110.445 +639509.950|221851.285|110.966 +639504.917|221856.061|111.511 +639489.802|221870.387|111.764 +639479.787|221879.890|112.407 +639474.742|221884.666|112.270 +639469.701|221889.443|112.148 +639464.702|221894.176|112.011 +639459.661|221898.956|111.978 +639449.651|221908.453|112.865 +639434.670|221922.651|113.017 +639429.671|221927.387|112.956 +639424.624|221932.167|112.913 +639409.637|221946.373|113.118 +639404.696|221951.061|113.358 +639399.697|221955.798|113.428 +639394.695|221960.534|113.435 +639384.716|221969.986|112.993 +639379.745|221974.692|112.737 +639349.783|222003.033|109.433 +639324.978|222026.509|107.421 +639320.047|222031.181|107.448 +639310.168|222040.526|106.641 +639305.206|222045.223|106.287 +639300.305|222049.865|106.165 +639295.367|222054.544|106.217 +639290.420|222059.223|105.498 +639280.532|222068.574|104.330 +639275.592|222073.237|103.245 +639270.700|222077.877|103.419 +639265.798|222082.513|102.892 +639251.116|222096.418|102.395 +639246.145|222101.118|101.730 +639241.253|222105.751|101.496 +639236.352|222110.390|101.185 +639231.530|222114.959|101.243 +639226.592|222119.634|101.127 +639207.362|222137.883|102.757 +639183.636|222160.432|107.518 +639150.617|222191.799|112.810 +639141.098|222200.818|112.770 +639136.389|222205.286|113.224 +639131.668|222209.767|113.569 +639112.557|222227.863|112.855 +639102.846|222237.043|111.581 +639098.109|222241.524|111.188 +639093.211|222246.154|110.280 +639073.890|222264.421|106.918 +639054.831|222282.474|105.680 +639050.060|222286.991|105.306 +639045.437|222291.383|106.025 +638999.872|222334.695|113.480 +638981.678|222351.975|115.504 +638954.316|222377.934|116.635 +638949.720|222382.296|116.812 +638945.252|222386.539|117.184 +638922.544|222408.067|117.424 +638913.446|222416.690|117.159 +638904.454|222425.215|117.303 +638890.842|222438.108|116.400 +638877.181|222451.038|114.898 +638867.985|222459.734|113.468 +638863.340|222464.117|112.139 +638853.431|222473.422|106.345 +638848.426|222478.125|103.532 +638838.636|222487.330|98.396 +638833.975|222491.729|96.975 +638829.662|222495.822|97.372 +638825.316|222499.946|97.597 +638821.003|222504.037|97.747 +638819.272|222503.464|97.820 +638823.606|222499.340|97.536 +638827.949|222495.210|97.308 +638832.302|222491.067|96.881 +638836.956|222486.666|98.286 +638861.797|222463.276|112.310 +638866.467|222458.859|113.514 +638870.993|222454.564|113.989 +638875.556|222450.242|114.675 +638880.101|222445.926|115.041 +638889.214|222437.285|115.937 +638893.859|222432.881|116.644 +638898.431|222428.544|116.982 +638902.921|222424.282|117.138 +638916.469|222411.408|117.098 +638921.044|222407.067|117.266 +638948.312|222381.156|116.760 +638952.866|222376.831|116.641 +638962.101|222368.056|116.650 +638975.857|222354.980|115.894 +638994.187|222337.539|114.200 +638998.738|222333.208|113.584 +639044.714|222289.420|105.906 +639049.344|222285.013|105.287 +639054.166|222280.438|105.720 +639073.359|222262.229|107.006 +639083.095|222253.006|108.515 +639088.020|222248.342|109.585 +639102.663|222234.465|111.621 +639107.534|222229.850|112.414 +639112.423|222225.217|112.999 +639131.726|222206.890|113.520 +639136.520|222202.327|113.026 +639141.293|222197.791|112.761 +639150.962|222188.605|112.529 +639179.576|222161.349|107.622 +639184.380|222156.774|106.827 +639203.531|222138.526|103.029 +639208.398|222133.896|102.398 +639223.029|222119.982|101.416 +639227.881|222115.370|101.200 +639232.810|222110.688|101.313 +639237.726|222106.022|101.288 +639242.685|222101.319|101.822 +639262.473|222082.534|102.474 +639267.469|222077.794|103.029 +639272.419|222073.091|103.071 +639277.372|222068.397|103.769 +639287.363|222058.927|105.156 +639292.426|222054.136|106.183 +639297.345|222049.457|105.973 +639302.289|222044.763|106.092 +639307.306|222040.005|106.586 +639312.250|222035.311|106.772 +639317.270|222030.550|107.454 +639322.253|222025.823|107.543 +639327.155|222021.159|107.183 +639337.225|222011.610|108.512 +639342.148|222006.937|108.518 +639347.211|222002.140|109.359 +639357.199|221992.666|110.499 +639367.178|221983.205|111.642 +639372.219|221978.429|112.356 +639377.188|221973.711|112.657 +639382.156|221968.999|112.956 +639397.128|221954.786|113.508 +639402.117|221950.043|113.428 +639407.104|221945.304|113.212 +639412.084|221940.567|112.865 +639422.073|221931.078|112.971 +639427.068|221926.336|113.069 +639432.061|221921.593|113.108 +639437.054|221916.850|113.224 +639442.052|221912.108|113.428 +639462.062|221893.082|112.276 +639467.052|221888.342|112.264 +639472.042|221883.606|112.337 +639477.077|221878.823|112.423 +639487.041|221869.350|112.081 +639492.064|221864.571|111.475 +639497.054|221859.834|111.624 +639502.080|221855.052|111.344 +639507.106|221850.270|110.801 +639512.089|221845.533|110.371 +639517.122|221840.751|110.256 +639522.154|221835.965|110.131 +639537.156|221821.698|108.978 +639542.143|221816.952|108.451 +639547.178|221812.173|108.661 +639552.213|221807.390|108.722 +639562.241|221797.850|107.595 +639572.275|221788.295|106.074 +639577.320|221783.485|105.068 +639582.367|221778.678|104.263 +639592.417|221769.117|103.227 +639602.478|221759.537|101.776 +639607.535|221754.730|101.349 +639612.591|221749.917|100.865 +639617.596|221745.162|100.731 +639627.709|221735.546|100.298 +639632.733|221730.757|99.377 +639637.759|221725.969|98.533 +639642.788|221721.211|99.837 +639657.909|221706.818|98.234 +639662.911|221702.073|98.664 +639667.937|221697.290|98.252 +639677.968|221687.759|98.283 +639682.970|221683.017|98.816 +639687.965|221678.277|99.429 +639708.049|221659.157|96.948 +639728.184|221639.966|93.232 +639738.172|221630.475|93.086 +639743.165|221625.729|93.043 +639753.114|221616.274|92.885 +639758.064|221611.571|92.873 +639763.065|221606.816|92.763 +639773.038|221597.322|91.574 +639782.838|221588.028|92.729 +639797.581|221574.038|94.138 +639812.208|221560.167|95.927 +639817.079|221555.537|95.884 +639826.915|221546.182|95.259 +639836.608|221536.987|96.104 +639841.414|221532.433|97.061 +639846.303|221527.785|96.920 +639851.144|221523.185|96.838 +639856.017|221518.555|96.954 +639860.821|221513.998|97.387 +639875.232|221500.322|98.691 +639879.975|221495.823|99.322 +639884.757|221491.291|100.036 +639889.500|221486.795|100.676 +639899.028|221477.761|102.020 +639903.786|221473.247|102.492 +639913.298|221464.221|103.516 +639922.747|221455.260|104.754 +639936.948|221441.782|105.702 +639941.730|221437.244|106.043 +639951.149|221428.304|106.759 +639955.858|221423.832|106.936 +639965.255|221414.911|107.509 +639969.964|221410.439|107.744 +639974.643|221405.995|107.811 +639979.401|221401.472|107.637 +639984.058|221397.056|108.375 +639988.660|221392.688|108.744 +640007.360|221374.933|109.603 +640011.984|221370.544|109.865 +640016.687|221366.076|109.908 +640021.347|221361.647|109.935 +640026.035|221357.194|109.771 +640040.044|221343.877|109.436 +640049.371|221335.007|108.927 +640054.095|221330.512|108.619 +640058.731|221326.104|108.280 +640063.437|221321.630|108.165 +640068.055|221317.237|108.006 +640072.615|221312.909|108.296 +640077.251|221308.508|108.415 +640077.458|221305.478|108.457 +640072.663|221310.020|108.354 +640067.945|221314.485|108.088 +640063.132|221319.048|108.165 +640058.350|221323.583|108.433 +640053.531|221328.152|108.616 +640048.691|221332.743|108.978 +640038.977|221341.960|109.707 +640029.315|221351.119|109.783 +640024.487|221355.694|109.820 +640019.604|221360.321|109.945 +640014.785|221364.890|109.969 +640009.932|221369.486|109.896 +640005.147|221374.016|109.673 +639990.611|221387.784|109.061 +639985.789|221392.346|108.826 +639980.998|221396.882|108.363 +639976.179|221401.436|107.695 +639971.268|221406.093|107.878 +639966.383|221410.723|107.890 +639961.551|221415.292|107.375 +639956.693|221419.891|107.153 +639951.828|221424.500|107.019 +639946.927|221429.142|106.799 +639927.475|221447.546|105.007 +639917.773|221456.729|104.224 +639912.908|221461.332|103.721 +639908.001|221465.974|103.196 +639883.626|221489.023|99.965 +639878.774|221493.613|99.411 +639873.900|221498.219|98.557 +639868.950|221502.907|98.582 +639864.037|221507.558|98.243 +639859.154|221512.173|97.500 +639854.259|221516.803|96.936 +639849.278|221521.524|96.872 +639844.383|221526.163|96.966 +639839.396|221530.887|97.000 +639834.468|221535.557|96.957 +639829.640|221540.108|94.912 +639824.638|221544.853|95.247 +639819.703|221549.547|96.037 +639809.773|221558.963|95.875 +639799.873|221568.341|95.302 +639790.068|221577.620|94.040 +639785.142|221582.283|93.418 +639770.335|221596.304|92.038 +639765.367|221601.019|92.205 +639760.392|221605.740|92.486 +639750.425|221615.195|92.675 +639745.448|221619.920|93.123 +639735.487|221629.372|93.382 +639730.476|221634.130|93.732 +639710.432|221653.183|96.789 +639705.470|221657.904|97.490 +639700.395|221662.732|98.661 +639690.440|221672.190|99.895 +639665.593|221695.742|99.039 +639655.602|221705.218|99.109 +639615.691|221743.093|100.801 +639610.680|221747.848|100.919 +639600.701|221757.318|101.465 +639595.687|221762.088|102.309 +639585.662|221771.616|103.907 +639580.657|221776.365|104.193 +639575.653|221781.126|104.982 +639570.648|221785.887|106.013 +639565.649|221790.642|106.875 +639555.655|221800.136|107.966 +639550.659|221804.882|108.674 +639545.617|221809.661|108.445 +639540.671|221814.349|108.354 +639535.629|221819.134|108.643 +639520.660|221833.353|110.018 +639515.619|221838.136|110.128 +639510.629|221842.869|110.295 +639500.653|221852.342|111.033 +639495.670|221857.076|111.575 +639485.645|221866.586|111.917 +639480.661|221871.319|112.353 +639475.623|221876.096|112.386 +639470.633|221880.829|112.505 +639465.641|221885.566|112.499 +639460.648|221890.299|112.511 +639455.659|221895.033|112.609 +639435.661|221914.001|113.334 +639430.671|221918.734|113.468 +639425.660|221923.477|113.014 +639420.664|221928.213|113.084 +639415.663|221932.953|112.968 +639410.676|221937.684|113.252 +639400.694|221947.154|113.581 +639395.741|221951.848|113.581 +639390.690|221956.633|113.532 +639380.711|221966.088|113.105 +639375.688|221970.843|112.724 +639370.708|221975.558|112.307 +639365.675|221980.322|111.831 +639360.628|221985.095|111.103 +639335.631|222008.751|108.415 +639310.689|222032.370|106.842 +639305.727|222037.070|106.461 +639300.759|222041.773|106.019 +639295.763|222046.503|105.933 +639290.874|222051.142|105.985 +639285.869|222055.873|105.168 +639280.886|222060.588|104.662 +639275.857|222065.340|103.596 +639265.978|222074.701|103.327 +639241.256|222098.115|101.922 +639236.306|222102.803|101.569 +639231.435|222107.421|101.596 +639226.491|222112.103|101.383 +639221.614|222116.726|101.374 +639216.719|222121.372|101.721 +639207.036|222130.555|102.066 +639202.223|222135.127|102.818 +639178.421|222157.759|107.265 +639159.542|222175.718|111.517 +639150.020|222184.755|112.237 +639140.489|222193.798|112.901 +639135.752|222198.291|113.096 +639131.049|222202.756|113.605 +639126.276|222207.286|113.913 +639111.914|222220.892|113.407 +639107.073|222225.473|112.852 +639102.236|222230.042|111.975 +639087.758|222243.737|110.182 +639068.416|222262.010|107.119 +639058.903|222271.007|106.433 +639054.148|222275.509|106.125 +639049.396|222279.999|105.528 +639044.714|222284.437|105.836 +639040.154|222288.768|106.653 +639026.451|222301.780|109.009 +639021.894|222306.111|109.881 +638990.170|222336.219|114.428 +638976.512|222349.170|115.440 +638949.287|222374.972|116.909 +638944.785|222379.239|117.080 +638940.280|222383.512|117.528 +638935.800|222387.755|117.559 +638922.203|222400.636|117.717 +638913.077|222409.265|117.010 +638908.542|222413.557|116.833 +638904.079|222417.781|116.830 +638895.082|222426.303|116.717 +638890.522|222430.613|116.214 +638885.956|222434.929|115.708 +638881.478|222439.166|115.437 +638872.410|222447.737|114.629 +638867.893|222452.010|114.200 +638858.941|222460.474|113.346 +638854.028|222465.092|110.917 +638849.096|222469.722|108.162 +638834.252|222483.648|99.466 +638829.431|222488.184|97.497 +638825.023|222492.357|97.405 +638820.680|222496.474|97.652 +638816.367|222500.559|97.829 +638811.734|222502.607|97.963 +638816.096|222498.459|97.789 +638820.445|222494.323|97.567 +638824.810|222490.168|97.183 +638829.470|222485.761|98.310 +638839.352|222476.452|103.586 +638844.357|222471.743|106.634 +638849.371|222467.019|109.274 +638858.996|222457.935|113.346 +638863.526|222453.635|113.532 +638872.721|222444.917|114.706 +638881.807|222436.292|115.404 +638886.410|222431.927|115.824 +638890.994|222427.577|116.193 +638895.575|222423.231|116.550 +638904.735|222414.532|116.787 +638909.252|222410.243|116.854 +638936.864|222384.021|117.522 +638941.497|222379.626|117.836 +638945.986|222375.350|117.013 +638950.647|222370.927|117.248 +638973.601|222349.100|115.931 +639005.938|222318.343|113.121 +639024.219|222300.914|109.061 +639042.770|222283.245|105.927 +639047.491|222278.755|105.607 +639052.307|222274.186|105.982 +639057.141|222269.602|106.528 +639066.767|222260.464|107.025 +639086.335|222241.926|110.054 +639091.254|222237.263|110.749 +639096.168|222232.609|111.414 +639101.069|222227.963|112.023 +639105.940|222223.346|112.819 +639110.877|222218.667|113.413 +639130.226|222200.288|113.483 +639134.914|222195.825|112.877 +639139.815|222191.171|112.889 +639144.634|222186.596|113.051 +639149.441|222182.018|112.258 +639154.263|222177.434|112.057 +639159.030|222172.895|111.347 +639178.074|222154.738|106.948 +639202.113|222131.842|102.593 +639206.938|222127.248|102.017 +639211.836|222122.591|101.718 +639216.744|222117.927|101.502 +639221.678|222113.243|101.624 +639231.481|222103.931|101.755 +639236.443|222099.219|101.715 +639241.408|222094.513|102.297 +639246.383|222089.791|102.489 +639251.317|222085.113|102.760 +639266.140|222071.052|103.486 +639281.084|222056.882|104.864 +639286.150|222052.090|105.885 +639291.033|222047.451|105.754 +639295.977|222042.760|105.857 +639300.978|222038.015|106.089 +639305.944|222033.309|106.549 +639325.792|222014.472|107.086 +639330.773|222009.757|107.997 +639335.768|222005.023|108.378 +639340.727|222000.323|109.018 +639345.702|221995.602|109.164 +639360.707|221981.389|111.304 +639375.709|221967.173|112.916 +639385.640|221957.752|113.447 +639395.555|221948.342|113.828 +639405.488|221938.909|113.569 +639415.413|221929.481|113.124 +639420.411|221924.736|113.279 +639425.361|221920.039|113.410 +639430.363|221915.296|113.727 +639435.350|221910.559|113.593 +639440.291|221905.868|113.477 +639465.165|221882.240|112.700 +639470.149|221877.507|112.578 +639475.138|221872.770|112.694 +639480.122|221868.037|112.435 +639485.099|221863.306|112.051 +639490.086|221858.569|111.886 +639495.018|221853.882|111.447 +639500.041|221849.102|110.755 +639509.965|221839.672|110.204 +639515.000|221834.890|110.073 +639519.941|221830.199|109.932 +639529.960|221820.674|109.195 +639534.898|221815.974|108.326 +639539.890|221811.237|108.488 +639544.926|221806.455|108.381 +639554.859|221797.015|107.802 +639564.844|221787.517|106.790 +639569.843|221782.753|105.467 +639579.844|221773.237|104.077 +639589.856|221763.709|102.407 +639604.883|221749.420|100.816 +639614.893|221739.917|100.880 +639619.867|221735.183|99.920 +639629.889|221725.658|99.417 +639634.845|221720.961|99.825 +639639.853|221716.209|99.880 +639684.814|221673.534|100.340 +639689.791|221668.810|100.200 +639704.800|221654.527|97.908 +639709.838|221649.738|97.536 +639714.837|221644.987|97.125 +639729.888|221630.652|93.863 +639734.905|221625.882|93.284 +639739.907|221621.130|93.074 +639749.877|221611.657|92.528 +639759.828|221602.208|92.437 +639764.790|221597.496|92.269 +639774.648|221588.150|93.190 +639779.601|221583.450|93.266 +639794.362|221569.466|95.101 +639799.248|221564.833|95.534 +639804.183|221560.157|95.951 +639818.969|221546.124|96.174 +639823.971|221541.370|95.704 +639828.820|221536.770|96.034 +639833.688|221532.162|96.829 +639838.607|221527.492|96.911 +639843.545|221522.801|96.762 +639848.470|221518.129|96.826 +639853.311|221513.544|97.396 +639858.166|221508.939|97.740 +639863.009|221504.348|98.274 +639872.729|221495.131|98.975 +639877.582|221490.535|99.456 +639882.422|221485.948|100.066 +639887.198|221481.424|100.849 +639901.600|221467.782|102.495 +639906.379|221463.255|103.279 +639915.956|221454.178|104.175 +639920.699|221449.682|104.848 +639925.481|221445.150|105.150 +639930.255|221440.624|105.565 +639934.970|221436.158|106.083 +639939.725|221431.650|106.668 +639958.720|221413.634|107.634 +639963.444|221409.156|108.152 +639968.178|221404.663|108.155 +639972.991|221400.091|107.896 +639977.639|221395.690|108.701 +639982.345|221391.228|109.009 +639987.011|221386.799|109.256 +639996.457|221377.835|109.670 +640005.842|221368.926|109.862 +640010.469|221364.533|110.118 +640019.820|221355.658|110.316 +640024.560|221351.153|110.124 +640029.278|221346.666|109.747 +640033.948|221342.234|109.792 +640043.296|221333.349|109.466 +640048.033|221328.844|109.061 +640052.647|221324.461|108.869 +640057.317|221320.020|108.643 +640062.017|221315.555|108.247 +640066.610|221311.190|108.287 +640071.203|221306.829|108.332 +640075.839|221302.430|108.472 +640080.387|221298.111|108.543 +640076.891|221298.989|108.485 +640072.252|221303.375|108.311 +640067.552|221307.822|108.256 +640062.904|221312.217|108.195 +640058.149|221316.725|108.600 +640053.373|221321.249|108.817 +640048.660|221325.708|108.945 +640043.933|221330.188|109.222 +640029.632|221343.734|110.018 +640010.569|221361.775|110.225 +640005.824|221366.265|110.067 +640001.029|221370.800|109.951 +639991.510|221379.804|109.579 +639986.719|221384.336|109.494 +639981.964|221388.829|109.103 +639977.127|221393.404|109.033 +639972.405|221397.863|108.390 +639967.583|221402.426|108.235 +639962.731|221407.023|108.375 +639957.897|221411.589|107.915 +639943.376|221425.320|107.278 +639938.551|221429.880|106.802 +639933.741|221434.421|106.177 +639928.938|221438.957|105.513 +639924.064|221443.562|105.083 +639914.374|221452.718|104.153 +639909.516|221457.309|103.608 +639899.811|221466.474|102.395 +639890.054|221475.691|101.282 +639885.156|221480.318|100.691 +639880.264|221484.939|100.020 +639875.396|221489.541|99.658 +639870.468|221494.193|98.896 +639865.600|221498.795|98.530 +639860.641|221503.480|98.140 +639855.743|221508.110|97.609 +639850.790|221512.788|97.167 +639845.840|221517.470|96.716 +639840.902|221522.140|96.713 +639835.931|221526.843|96.570 +639830.938|221531.570|96.735 +639820.990|221540.979|95.985 +639816.055|221545.649|96.067 +639806.009|221555.159|96.134 +639801.059|221559.840|95.857 +639796.066|221564.562|95.509 +639791.140|221569.213|94.823 +639786.102|221573.977|94.452 +639781.170|221578.638|93.930 +639776.208|221583.322|93.071 +639771.167|221588.089|92.781 +639766.272|221592.704|91.550 +639751.151|221607.033|92.516 +639736.118|221621.270|93.080 +639731.046|221626.080|93.629 +639725.974|221630.886|94.183 +639710.789|221645.322|98.079 +639700.694|221654.890|98.853 +639695.677|221659.650|99.758 +639690.632|221664.433|100.225 +639685.603|221669.197|100.398 +639635.448|221716.673|100.535 +639630.447|221721.397|99.825 +639625.439|221726.134|99.505 +639620.416|221730.895|99.932 +639615.402|221735.640|99.947 +639600.360|221749.884|100.282 +639595.343|221754.645|100.999 +639590.326|221759.403|101.703 +639585.312|221764.161|102.407 +639580.298|221768.928|103.739 +639570.282|221778.431|105.275 +639550.327|221797.359|107.899 +639545.282|221802.136|108.085 +639540.332|221806.823|108.131 +639535.340|221811.554|108.521 +639530.344|221816.288|108.878 +639520.359|221825.752|109.707 +639515.366|221830.479|109.838 +639510.419|221835.164|110.042 +639505.430|221839.894|110.326 +639495.447|221849.349|110.935 +639490.464|221854.077|111.463 +639480.539|221863.483|112.289 +639475.550|221868.207|112.511 +639470.557|221872.935|112.575 +639465.613|221877.613|112.685 +639460.621|221882.341|112.715 +639455.677|221887.023|112.791 +639450.687|221891.753|113.014 +639445.698|221896.481|113.182 +639440.757|221901.162|113.441 +639435.813|221905.850|113.511 +639430.823|221910.578|113.761 +639425.874|221915.265|113.688 +639420.911|221919.959|113.392 +639415.958|221924.650|113.364 +639410.963|221929.381|113.425 +639406.016|221934.069|113.602 +639396.134|221943.438|114.154 +639391.172|221948.135|113.995 +639386.204|221952.835|113.718 +639381.235|221957.538|113.459 +639371.287|221966.950|112.822 +639366.300|221971.666|112.328 +639361.311|221976.384|111.801 +639356.303|221981.115|111.033 +639346.324|221990.542|109.384 +639341.340|221995.257|109.201 +639306.511|222028.203|106.494 +639291.636|222042.279|105.751 +639286.683|222046.970|105.638 +639276.698|222056.406|104.425 +639261.854|222070.452|103.394 +639256.874|222075.164|103.111 +639251.970|222079.809|103.187 +639247.023|222084.488|102.794 +639242.091|222089.157|102.596 +639237.135|222093.842|102.187 +639232.182|222098.530|101.794 +639227.268|222103.184|101.907 +639222.370|222107.820|101.672 +639217.460|222112.471|101.858 +639212.580|222117.095|101.880 +639207.648|222121.765|101.874 +639202.848|222126.319|102.255 +639197.956|222130.958|102.696 +639183.536|222144.646|104.717 +639155.061|222171.712|111.405 +639150.328|222176.202|112.036 +639145.478|222180.805|112.462 +639135.923|222189.860|112.977 +639131.211|222194.329|113.404 +639126.398|222198.895|113.788 +639121.658|222203.384|114.017 +639116.851|222207.938|114.090 +639107.168|222217.097|113.310 +639102.325|222221.675|112.746 +639097.448|222226.284|111.944 +639092.647|222230.819|111.435 +639082.930|222240.003|109.926 +639078.035|222244.627|109.125 +639068.361|222253.774|107.768 +639053.977|222267.383|106.595 +639049.192|222271.910|106.095 +639044.422|222276.424|105.723 +639039.758|222280.846|106.168 +639035.229|222285.156|107.217 +639021.373|222298.314|109.192 +639003.313|222315.484|113.218 +638971.269|222345.879|115.910 +638966.798|222350.124|116.486 +638957.675|222358.778|117.162 +638953.125|222363.091|117.281 +638948.626|222367.355|117.443 +638943.938|222371.790|117.071 +638939.439|222376.054|117.266 +638916.774|222397.530|117.482 +638907.642|222406.168|116.760 +638903.098|222410.472|116.547 +638898.568|222414.764|116.449 +638894.073|222419.019|116.288 +638889.507|222423.341|116.022 +638885.023|222427.586|115.955 +638880.445|222431.915|115.407 +638875.943|222436.173|115.013 +638871.411|222440.464|114.748 +638866.863|222444.765|114.157 +638862.389|222448.999|113.980 +638857.884|222453.263|113.675 +638853.434|222457.475|113.401 +638848.731|222461.904|111.834 +638843.689|222466.634|108.515 +638833.844|222475.882|103.306 +638824.048|222485.084|98.036 +638819.515|222489.367|97.323 +638815.178|222493.478|97.628 +638810.874|222497.560|97.847 +638806.549|222501.659|97.978 +638804.275|222501.766|98.009 +638808.646|222497.617|97.853 +638812.956|222493.524|97.676 +638817.309|222489.391|97.454 +638821.753|222485.179|97.728 +638836.551|222471.255|105.476 +638841.525|222466.583|108.637 +638851.300|222457.378|113.422 +638860.289|222448.852|113.678 +638864.818|222444.561|114.154 +638869.356|222440.260|114.419 +638873.941|222435.920|114.974 +638878.479|222431.616|115.306 +638883.106|222427.233|115.873 +638887.593|222422.978|115.952 +638892.149|222418.653|116.175 +638896.700|222414.331|116.114 +638901.281|222409.987|116.513 +638905.890|222405.616|116.815 +638910.468|222401.270|116.979 +638919.624|222392.589|117.635 +638933.383|222379.526|117.623 +638937.936|222375.200|117.464 +638942.454|222370.906|117.095 +638947.145|222366.456|117.513 +638951.744|222362.088|117.382 +638956.328|222357.735|117.178 +638960.937|222353.358|117.153 +638970.044|222344.696|116.126 +639020.629|222296.568|109.311 +639039.146|222278.941|106.266 +639043.903|222274.418|105.830 +639048.704|222269.864|106.098 +639053.547|222265.277|106.692 +639063.197|222256.124|107.354 +639068.031|222251.546|107.982 +639072.948|222246.892|108.917 +639077.816|222242.280|109.487 +639082.674|222237.674|110.030 +639092.495|222228.375|111.670 +639097.399|222223.730|112.304 +639102.279|222219.106|112.761 +639107.223|222214.421|113.398 +639112.045|222209.849|113.840 +639116.928|222205.216|114.026 +639121.725|222200.662|113.910 +639126.541|222196.081|113.578 +639131.329|222191.528|113.005 +639136.188|222186.916|113.054 +639145.859|222177.726|112.368 +639174.529|222150.419|106.433 +639179.345|222145.829|105.245 +639184.170|222141.239|104.626 +639188.979|222136.663|103.839 +639193.841|222132.037|103.132 +639198.721|222127.398|102.587 +639203.604|222122.752|102.114 +639218.347|222108.753|101.718 +639228.277|222099.331|102.181 +639233.194|222094.665|102.157 +639248.163|222080.467|103.187 +639253.131|222075.749|103.355 +639258.111|222071.025|103.684 +639283.068|222047.360|105.949 +639288.085|222042.590|105.690 +639293.044|222037.887|105.967 +639298.046|222033.138|106.229 +639303.024|222028.410|106.150 +639318.023|222014.182|107.070 +639323.006|222009.449|107.226 +639338.048|221995.184|108.518 +639343.053|221990.441|109.177 +639348.055|221985.702|109.804 +639353.121|221980.904|110.801 +639358.168|221976.122|111.530 +639373.167|221961.903|113.060 +639378.187|221957.142|113.453 +639383.201|221952.384|113.736 +639388.167|221947.675|114.035 +639398.158|221938.183|114.038 +639403.102|221933.489|113.874 +639413.124|221923.967|113.520 +639418.074|221919.267|113.639 +639423.069|221914.525|113.712 +639428.068|221909.779|113.858 +639433.052|221905.042|113.694 +639438.041|221900.306|113.624 +639443.028|221895.566|113.496 +639448.005|221890.836|113.051 +639453.037|221886.053|112.923 +639458.027|221881.314|112.834 +639463.013|221876.577|112.804 +639468.000|221871.840|112.715 +639472.983|221867.104|112.490 +639477.970|221862.367|112.407 +639482.999|221857.588|111.969 +639487.977|221852.851|111.408 +639497.989|221843.332|110.545 +639502.927|221838.636|110.280 +639507.959|221833.853|109.954 +639512.949|221829.114|109.777 +639517.939|221824.371|109.652 +639527.915|221814.888|108.902 +639542.883|221800.654|107.710 +639547.830|221795.960|107.738 +639552.869|221791.169|107.525 +639562.811|221781.708|106.299 +639567.810|221776.953|105.592 +639572.815|221772.180|104.220 +639577.817|221767.419|103.590 +639582.828|221762.646|102.437 +639587.835|221757.876|101.627 +639592.801|221753.154|101.005 +639612.783|221734.168|100.529 +639617.764|221729.422|99.402 +639622.769|221724.674|99.685 +639637.719|221710.500|101.224 +639642.678|221705.791|101.398 +639647.640|221701.082|101.459 +639712.228|221639.701|98.630 +639732.277|221620.578|93.147 +639737.194|221615.902|92.818 +639742.208|221611.135|92.458 +639776.720|221578.382|93.741 +639786.523|221569.088|94.860 +639796.276|221559.840|96.037 +639801.229|221555.140|96.183 +639811.056|221545.814|96.357 +639815.973|221541.144|96.415 +639820.865|221536.493|96.155 +639825.799|221531.814|96.674 +639830.685|221527.172|96.567 +639835.559|221522.545|96.643 +639840.485|221517.869|96.719 +639845.325|221513.279|97.277 +639850.162|221508.695|97.893 +639855.063|221504.050|98.316 +639859.943|221499.417|98.420 +639864.756|221494.848|98.746 +639869.654|221490.203|99.249 +639874.433|221485.676|100.026 +639888.975|221471.884|101.145 +639893.761|221467.349|101.883 +639908.217|221453.648|103.574 +639913.024|221449.091|104.111 +639917.779|221444.586|105.168 +639922.634|221439.978|105.239 +639927.408|221435.454|105.671 +639932.199|221430.910|106.378 +639936.942|221426.420|107.131 +639941.770|221421.839|107.512 +639951.371|221412.728|107.970 +639956.120|221408.220|108.247 +639960.884|221403.706|108.853 +639965.712|221399.113|108.430 +639970.446|221394.626|108.914 +639975.176|221390.143|109.442 +639979.946|221385.613|109.603 +639984.719|221381.087|109.786 +639989.435|221376.613|110.048 +639994.205|221372.086|110.274 +639998.905|221367.624|110.310 +640013.148|221354.106|110.563 +640027.349|221340.616|110.176 +640046.341|221322.568|109.210 +640051.050|221318.097|109.064 +640055.707|221313.674|108.948 +640060.435|221309.182|108.704 +640065.126|221304.722|108.402 +640069.826|221300.260|108.415 +640074.492|221295.831|108.351 +640079.067|221291.488|108.591 +640079.287|221288.836|108.457 +640074.687|221293.192|108.338 +640070.060|221297.578|108.448 +640065.400|221301.991|108.442 +640060.761|221306.393|108.698 +640056.076|221310.831|108.920 +640051.410|221315.256|109.061 +640046.804|221319.621|109.128 +640009.177|221355.292|110.573 +639995.073|221368.648|110.289 +639990.343|221373.126|110.076 +639985.661|221377.558|109.871 +639980.888|221382.087|110.085 +639976.176|221386.543|109.762 +639971.454|221391.014|109.545 +639966.794|221395.419|108.814 +639962.015|221399.945|108.725 +639952.490|221408.964|108.283 +639933.437|221426.990|106.744 +639928.688|221431.480|106.043 +639923.881|221436.024|105.415 +639914.259|221445.132|104.772 +639909.513|221449.615|104.053 +639899.906|221458.702|102.849 +639894.992|221463.350|102.386 +639885.379|221472.433|100.764 +639880.505|221477.047|100.456 +639875.634|221481.656|100.118 +639870.724|221486.301|99.685 +639865.881|221490.882|99.060 +639856.087|221500.151|98.542 +639846.227|221509.481|97.725 +639841.305|221514.133|96.911 +639836.391|221518.784|96.631 +639831.453|221523.463|96.661 +639826.485|221528.166|96.497 +639821.493|221532.899|96.732 +639816.527|221537.596|96.536 +639811.529|221542.336|96.908 +639806.600|221546.993|96.268 +639801.571|221551.757|96.396 +639796.618|221556.445|96.168 +639791.649|221561.136|95.406 +639786.657|221565.860|95.089 +639776.687|221575.285|94.129 +639771.740|221579.954|93.040 +639756.664|221594.219|92.190 +639746.566|221603.790|92.909 +639741.522|221608.566|92.803 +639731.412|221618.143|93.019 +639705.848|221642.441|99.136 +639695.750|221652.015|100.081 +639690.669|221656.831|100.273 +639685.576|221661.662|100.779 +639680.544|221666.432|101.038 +639670.400|221676.037|101.121 +639660.302|221685.607|101.514 +639655.233|221690.408|101.590 +639645.144|221699.966|101.895 +639640.084|221704.755|101.767 +639619.916|221723.826|100.124 +639614.853|221728.624|100.273 +639609.796|221733.406|99.962 +639594.608|221747.796|100.575 +639589.597|221752.548|100.862 +639584.531|221757.354|101.645 +639579.420|221762.210|102.715 +639574.409|221766.971|103.590 +639569.352|221771.774|104.589 +639559.248|221781.373|106.589 +639549.153|221790.943|107.457 +639539.110|221800.459|107.817 +639529.076|221809.972|108.768 +639524.038|221814.754|109.433 +639518.996|221819.531|109.573 +639513.997|221824.261|109.585 +639508.959|221829.037|109.789 +639483.962|221852.733|111.606 +639478.982|221857.460|112.218 +639473.995|221862.187|112.618 +639469.052|221866.869|112.761 +639464.059|221871.597|112.810 +639459.066|221876.324|112.892 +639454.077|221881.055|112.999 +639449.084|221885.782|113.081 +639444.134|221890.464|113.096 +639439.151|221895.185|113.468 +639434.210|221899.867|113.739 +639429.260|221904.549|113.678 +639424.319|221909.230|113.931 +639419.317|221913.961|113.834 +639414.407|221918.606|113.642 +639409.408|221923.337|113.681 +639399.569|221932.654|114.166 +639394.616|221937.339|114.233 +639389.672|221942.024|114.431 +639379.779|221951.375|113.809 +639374.850|221956.033|113.480 +639369.869|221960.742|113.011 +639355.041|221974.750|111.438 +639325.356|222002.780|107.448 +639315.502|222012.098|106.897 +639310.555|222016.776|106.717 +639305.648|222021.415|106.452 +639300.750|222026.048|106.357 +639295.806|222030.727|106.302 +639290.899|222035.366|106.125 +639285.967|222040.026|105.641 +639281.066|222044.665|105.598 +639276.192|222049.283|105.946 +639271.199|222053.989|104.726 +639266.335|222058.589|104.647 +639256.532|222067.861|104.175 +639251.585|222072.533|103.745 +639246.639|222077.209|103.340 +639231.959|222091.087|102.492 +639227.037|222095.747|102.477 +639217.210|222105.031|101.678 +639202.644|222118.820|102.053 +639193.000|222127.958|102.907 +639188.217|222132.494|103.526 +639178.628|222141.580|104.522 +639173.892|222146.079|105.586 +639169.164|222150.568|106.759 +639140.845|222177.455|112.679 +639136.115|222181.942|113.340 +639131.287|222186.504|113.176 +639126.529|222191.015|113.627 +639121.762|222195.530|114.011 +639117.010|222200.028|114.130 +639112.234|222204.549|114.062 +639107.360|222209.151|113.614 +639102.529|222213.717|113.139 +639097.695|222218.286|112.663 +639088.060|222227.387|111.719 +639083.174|222231.999|110.926 +639078.358|222236.547|110.356 +639073.457|222241.170|109.521 +639068.641|222245.712|108.652 +639063.682|222250.388|107.439 +639058.933|222254.877|107.140 +639054.160|222259.388|107.061 +639049.405|222263.884|106.763 +639044.632|222268.392|106.369 +639039.868|222272.897|106.055 +639030.578|222281.703|107.201 +639025.963|222286.074|107.674 +639016.840|222294.736|109.713 +638984.903|222325.021|114.507 +638966.627|222342.334|116.111 +638939.290|222368.211|117.303 +638934.739|222372.518|117.501 +638930.192|222376.825|117.714 +638925.677|222381.098|117.863 +638921.179|222385.353|117.830 +638916.552|222389.727|117.644 +638912.007|222394.022|117.388 +638898.306|222406.967|116.358 +638893.740|222411.283|116.056 +638884.791|222419.747|116.007 +638880.244|222424.045|115.605 +638875.693|222428.339|115.224 +638871.207|222432.579|114.928 +638862.187|222441.104|114.422 +638848.816|222453.748|114.008 +638844.314|222457.999|113.496 +638839.196|222462.788|110.064 +638829.357|222472.017|104.632 +638819.674|222481.109|99.944 +638814.788|222485.694|97.451 +638810.445|222489.805|97.725 +638806.135|222493.887|97.932 +638801.803|222497.983|98.039 +638797.518|222502.043|98.396 +638792.754|222503.866|98.219 +638797.036|222499.800|98.106 +638801.364|222495.694|97.972 +638805.674|222491.604|97.777 +638810.027|222487.471|97.554 +638814.468|222483.261|97.795 +638829.214|222469.393|105.720 +638839.175|222460.029|111.322 +638844.110|222455.387|114.096 +638848.511|222451.209|113.840 +638857.466|222442.720|114.178 +638862.002|222438.422|114.428 +638866.494|222434.164|114.742 +638871.014|222429.879|114.959 +638875.559|222425.575|115.312 +638880.140|222421.234|115.623 +638884.648|222416.961|115.830 +638889.123|222412.715|115.593 +638893.725|222408.360|116.074 +638898.300|222404.022|116.166 +638902.878|222399.691|116.562 +638907.505|222395.308|116.986 +638916.738|222386.563|117.507 +638921.331|222382.214|117.802 +638925.976|222377.809|117.854 +638930.451|222373.564|117.482 +638935.020|222369.229|117.406 +638939.610|222364.874|117.174 +638944.240|222360.485|117.208 +638948.830|222356.132|117.330 +638953.478|222351.725|117.202 +638958.072|222347.369|117.068 +638967.255|222338.649|116.211 +638971.818|222334.314|115.623 +638985.565|222321.260|114.291 +639031.629|222277.469|106.537 +639036.347|222272.992|106.135 +639041.102|222268.484|106.031 +639045.924|222263.918|106.436 +639050.743|222259.355|106.857 +639055.583|222254.768|107.116 +639060.378|222250.226|107.403 +639070.196|222240.945|109.067 +639075.112|222236.300|110.021 +639080.007|222231.670|110.850 +639089.779|222222.425|112.093 +639094.671|222217.792|112.624 +639099.530|222213.190|112.913 +639104.412|222208.569|113.432 +639123.792|222190.202|113.660 +639128.592|222185.642|113.169 +639138.261|222176.470|112.852 +639171.648|222144.707|105.555 +639181.347|222135.493|104.291 +639195.938|222121.637|102.602 +639200.775|222117.043|102.117 +639225.488|222093.620|102.559 +639230.463|222088.904|102.642 +639250.308|222070.107|103.812 +639255.365|222065.322|104.516 +639265.317|222055.897|105.120 +639270.312|222051.161|105.101 +639275.317|222046.427|105.888 +639280.285|222041.712|105.592 +639285.229|222037.024|105.598 +639290.256|222032.269|106.135 +639295.257|222027.530|106.369 +639300.204|222022.842|106.519 +639305.236|222018.072|106.531 +639310.235|222013.338|106.781 +639315.228|222008.605|107.009 +639325.201|221999.153|107.336 +639335.268|221989.628|108.567 +639355.410|221970.581|111.828 +639375.530|221951.537|113.727 +639385.518|221942.079|114.486 +639390.511|221937.342|114.376 +639395.509|221932.602|114.361 +639405.522|221923.099|113.657 +639410.478|221918.405|113.806 +639415.519|221913.623|113.816 +639420.521|221908.886|113.977 +639425.514|221904.149|114.008 +639430.500|221899.422|113.739 +639440.519|221889.915|113.383 +639445.509|221885.185|113.246 +639455.534|221875.678|113.063 +639470.545|221861.441|112.718 +639485.584|221847.161|111.316 +639490.574|221842.430|111.200 +639495.606|221837.651|110.734 +639505.579|221828.184|109.817 +639510.614|221823.405|109.551 +639515.607|221818.671|109.393 +639535.614|221799.673|107.476 +639550.650|221785.411|106.897 +639560.644|221775.923|106.141 +639565.695|221771.113|104.800 +639570.703|221766.349|103.586 +639575.665|221761.631|102.620 +639580.724|221756.818|101.578 +639585.735|221752.057|100.938 +639590.704|221747.336|100.112 +639595.760|221742.544|100.173 +639600.719|221737.844|100.374 +639610.735|221728.350|100.538 +639615.697|221723.640|100.450 +639635.607|221704.779|102.230 +639645.577|221695.321|102.331 +639670.391|221671.769|101.428 +639695.208|221648.205|100.087 +639700.161|221643.499|99.487 +639730.043|221615.052|92.839 +639734.999|221610.349|92.675 +639739.946|221605.658|92.742 +639759.618|221586.995|92.736 +639764.504|221582.365|93.123 +639769.420|221577.702|93.065 +639783.978|221563.922|95.220 +639798.547|221550.117|96.488 +639803.415|221545.503|96.567 +639808.295|221540.879|97.109 +639813.132|221536.292|96.963 +639818.070|221531.601|96.735 +639822.916|221527.004|96.536 +639827.787|221522.384|96.643 +639837.501|221513.169|96.695 +639842.304|221508.628|97.731 +639847.071|221504.117|98.621 +639851.881|221499.560|98.975 +639861.601|221490.343|99.136 +639866.417|221485.777|99.463 +639876.009|221476.691|100.106 +639880.804|221472.149|100.734 +639885.601|221467.605|101.304 +639890.390|221463.075|102.029 +639895.151|221458.564|102.501 +639899.906|221454.062|103.077 +639904.642|221449.579|103.839 +639909.446|221445.031|104.419 +639914.146|221440.581|105.077 +639918.931|221436.049|105.373 +639923.720|221431.510|105.662 +639928.474|221427.008|106.278 +639947.415|221409.071|108.250 +639961.707|221395.516|108.725 +639966.343|221391.133|109.658 +639971.092|221386.634|110.009 +639975.816|221382.151|110.152 +639990.081|221368.609|110.335 +640008.948|221350.705|110.838 +640027.907|221332.691|110.158 +640042.138|221319.170|109.481 +640046.899|221314.647|109.292 +640051.541|221310.236|109.286 +640056.335|221305.679|108.917 +640061.026|221301.220|108.600 +640065.717|221296.767|108.683 +640070.432|221292.287|108.585 +640075.035|221287.919|108.634 +640079.759|221283.432|108.549 +640077.997|221281.823|108.555 +640073.276|221286.291|108.579 +640068.573|221290.747|108.844 +640063.879|221295.188|108.713 +640059.152|221299.666|108.860 +640054.409|221304.162|109.152 +640049.654|221308.660|109.170 +640044.939|221313.126|109.314 +640040.220|221317.597|109.500 +640035.502|221322.066|109.695 +640025.977|221331.088|110.109 +639992.748|221362.552|110.783 +639988.063|221366.984|110.573 +639983.308|221371.486|110.576 +639964.365|221389.405|109.701 +639959.662|221393.843|108.881 +639954.873|221398.385|109.335 +639950.128|221402.871|108.951 +639945.400|221407.340|108.424 +639935.915|221416.307|107.677 +639926.469|221425.222|106.119 +639921.656|221429.770|105.540 +639907.361|221443.285|104.361 +639902.566|221447.811|103.614 +639897.821|221452.301|103.382 +639892.977|221456.876|102.684 +639883.431|221465.892|101.340 +639878.685|221470.372|100.624 +639873.863|221474.932|100.240 +639869.047|221479.486|99.813 +639864.210|221484.064|99.658 +639859.321|221488.688|99.536 +639854.472|221493.278|99.551 +639849.598|221497.887|99.313 +639844.758|221502.462|98.682 +639839.979|221506.970|97.835 +639835.181|221511.496|96.658 +639830.246|221516.166|96.619 +639825.367|221520.786|96.539 +639820.435|221525.456|96.527 +639815.549|221530.080|96.558 +639810.590|221534.786|97.036 +639805.652|221539.465|97.201 +639800.754|221544.098|96.802 +639785.959|221558.094|95.835 +639781.082|221562.703|95.168 +639776.135|221567.381|94.848 +639766.302|221576.669|93.272 +639761.319|221581.381|92.778 +639756.363|221586.075|92.708 +639736.371|221605.012|93.022 +639731.363|221609.755|93.159 +639726.367|221614.485|93.046 +639711.115|221629.003|97.963 +639701.093|221638.513|99.158 +639690.992|221648.092|100.191 +639685.987|221652.841|100.819 +639680.955|221657.611|101.047 +639675.920|221662.385|101.368 +639640.654|221695.803|102.706 +639635.592|221700.597|102.730 +639630.578|221705.340|102.654 +639625.524|221710.122|102.297 +639615.423|221719.675|101.322 +639605.361|221729.191|100.529 +639595.248|221738.761|100.087 +639585.126|221748.357|100.612 +639580.063|221753.154|100.987 +639575.003|221757.958|101.672 +639569.941|221762.768|102.773 +639564.884|221767.574|103.900 +639549.726|221781.973|106.924 +639539.585|221791.580|107.214 +639534.587|221796.314|107.217 +639529.500|221801.139|107.573 +639519.420|221810.707|109.234 +639514.375|221815.483|109.259 +639509.334|221820.262|109.433 +639504.293|221825.038|109.667 +639499.257|221829.818|110.185 +639494.222|221834.594|110.646 +639489.181|221839.367|110.816 +639479.116|221848.916|111.895 +639474.087|221853.687|112.468 +639469.052|221858.460|112.685 +639464.016|221863.230|112.977 +639459.024|221867.960|113.075 +639453.985|221872.734|113.169 +639448.947|221877.507|113.212 +639443.948|221882.237|113.142 +639438.913|221887.007|113.450 +639428.937|221896.462|113.928 +639423.944|221901.193|114.078 +639418.894|221905.972|113.892 +639413.953|221910.657|114.126 +639408.896|221915.439|113.855 +639403.888|221920.176|113.700 +639393.970|221929.582|114.562 +639389.017|221934.273|114.578 +639384.058|221938.967|114.514 +639379.050|221943.706|114.422 +639369.089|221953.125|113.477 +639364.063|221957.880|113.099 +639329.148|221990.865|108.049 +639314.289|222004.916|107.015 +639309.339|222009.601|106.753 +639304.386|222014.286|106.549 +639294.599|222023.555|106.488 +639289.640|222028.246|106.250 +639284.733|222032.891|106.080 +639279.798|222037.554|105.577 +639274.906|222042.191|105.659 +639270.035|222046.808|106.065 +639265.082|222051.487|105.424 +639250.409|222065.371|104.806 +639245.499|222070.013|104.245 +639240.552|222074.688|103.843 +639235.657|222079.321|103.519 +639230.752|222083.957|103.138 +639225.915|222088.535|102.998 +639211.199|222102.456|102.038 +639201.513|222111.630|102.398 +639196.673|222116.214|102.361 +639191.878|222120.762|102.840 +639187.099|222125.294|103.474 +639182.262|222129.876|103.522 +639177.513|222134.387|104.492 +639172.700|222138.949|104.800 +639167.918|222143.488|105.431 +639158.560|222152.388|108.253 +639135.021|222174.748|113.093 +639125.480|222183.786|113.322 +639120.722|222188.297|113.797 +639115.977|222192.792|113.971 +639101.599|222206.396|113.419 +639096.762|222210.968|112.919 +639091.949|222215.525|112.627 +639087.100|222220.106|112.109 +639077.450|222229.222|110.731 +639072.631|222233.773|110.161 +639048.515|222256.557|107.204 +639043.660|222261.141|106.555 +639038.890|222265.652|106.193 +639034.135|222270.154|106.327 +639029.499|222274.546|106.625 +639024.847|222278.957|107.171 +639020.202|222283.361|107.796 +639015.609|222287.720|108.430 +639010.982|222292.112|109.180 +639006.416|222296.443|110.027 +639001.868|222300.762|110.993 +638997.315|222305.087|111.935 +638983.626|222318.072|113.950 +638974.583|222326.655|115.340 +638970.005|222330.992|115.846 +638965.387|222335.369|116.108 +638960.833|222339.682|116.489 +638951.686|222348.347|117.046 +638947.099|222352.688|116.958 +638942.539|222357.007|117.050 +638937.976|222361.326|117.141 +638933.404|222365.654|117.199 +638928.872|222369.949|117.525 +638924.367|222374.219|118.013 +638919.734|222378.596|117.473 +638915.168|222382.915|117.357 +638901.464|222395.878|116.787 +638896.883|222400.206|116.397 +638892.247|222404.589|115.971 +638883.225|222413.124|115.791 +638878.726|222417.382|115.654 +638874.145|222421.710|115.373 +638869.625|222425.986|115.166 +638865.107|222430.253|114.724 +638860.590|222434.530|114.565 +638856.131|222438.748|114.486 +638851.660|222442.979|114.349 +638842.784|222451.376|114.245 +638828.355|222464.940|108.067 +638823.331|222469.646|104.748 +638818.500|222474.184|102.456 +638808.750|222483.341|97.558 +638804.437|222487.425|97.750 +638800.136|222491.497|98.021 +638795.802|222495.603|98.131 +638791.526|222499.650|98.289 +638787.167|222503.777|98.313 +638785.826|222502.510|98.338 +638790.160|222498.398|98.222 +638794.482|222494.292|98.064 +638798.847|222490.150|97.871 +638803.154|222486.062|97.652 +638807.570|222481.875|97.759 +638817.424|222472.609|103.227 +638837.246|222453.973|114.328 +638850.632|222441.278|114.550 +638855.052|222437.087|114.419 +638859.566|222432.805|114.568 +638864.074|222428.531|114.690 +638868.649|222424.197|115.205 +638873.157|222419.924|115.373 +638877.708|222415.608|115.538 +638882.237|222411.310|115.583 +638891.332|222402.684|115.961 +638895.987|222398.277|116.510 +638918.984|222376.468|117.760 +638923.608|222372.085|117.973 +638928.091|222367.821|117.388 +638932.694|222363.453|117.534 +638937.248|222359.125|117.110 +638941.856|222354.751|117.019 +638946.410|222350.429|116.915 +638951.061|222346.013|116.833 +638955.688|222341.624|116.918 +638960.233|222337.305|116.504 +638969.413|222328.578|115.693 +638978.576|222319.864|114.489 +638983.114|222315.548|113.782 +638992.209|222306.892|112.194 +638996.772|222302.548|111.344 +639001.390|222298.156|110.545 +639006.017|222293.752|109.817 +639010.589|222289.402|109.039 +639015.219|222284.998|108.347 +639019.852|222280.593|107.692 +639024.536|222276.137|107.058 +639029.191|222271.711|106.586 +639033.927|222267.213|106.342 +639038.637|222262.744|106.278 +639043.477|222258.157|106.854 +639072.658|222230.521|110.524 +639092.120|222212.086|112.822 +639097.027|222207.438|113.121 +639101.852|222202.866|113.575 +639116.406|222189.062|114.157 +639121.167|222184.538|113.773 +639126.020|222179.927|113.340 +639135.600|222170.826|112.700 +639173.721|222134.530|104.449 +639178.613|222129.879|104.025 +639183.435|222125.294|103.385 +639193.170|222116.044|102.562 +639198.059|222111.399|102.139 +639212.824|222097.387|101.998 +639222.773|222087.965|103.233 +639227.686|222083.302|103.215 +639237.677|222073.835|104.059 +639242.615|222069.156|104.379 +639247.617|222064.420|104.964 +639262.510|222050.295|105.495 +639267.499|222045.571|106.083 +639272.458|222040.859|105.650 +639277.399|222036.171|105.629 +639282.425|222031.410|106.135 +639287.421|222026.673|106.266 +639302.344|222012.518|106.601 +639307.327|222007.791|106.647 +639312.326|222003.051|106.988 +639317.328|221998.311|107.400 +639327.377|221988.792|108.311 +639337.393|221979.310|109.637 +639342.443|221974.528|110.286 +639352.511|221965.003|112.057 +639357.549|221960.230|112.694 +639362.527|221955.514|113.108 +639372.585|221945.989|114.184 +639377.599|221941.237|114.480 +639382.604|221936.489|114.684 +639387.606|221931.746|114.736 +639392.595|221927.009|114.648 +639407.601|221912.763|113.980 +639412.651|221907.975|114.236 +639417.595|221903.284|114.175 +639422.637|221898.501|114.181 +639427.663|221893.728|113.843 +639432.643|221888.995|113.538 +639437.675|221884.218|113.300 +639442.659|221879.488|113.054 +639447.697|221874.709|113.017 +639452.690|221869.972|113.188 +639457.771|221865.150|113.102 +639462.760|221860.417|113.011 +639467.741|221855.686|112.654 +639472.773|221850.907|112.499 +639477.799|221846.131|111.990 +639487.855|221836.575|110.935 +639492.838|221831.838|110.448 +639502.906|221822.277|109.871 +639507.892|221817.540|109.216 +639512.928|221812.758|109.039 +639517.966|221807.973|108.847 +639527.991|221798.438|107.061 +639543.066|221784.131|106.906 +639563.204|221764.974|103.486 +639568.212|221760.201|102.078 +639573.220|221755.434|101.124 +639578.277|221750.633|100.712 +639583.288|221745.872|100.243 +639588.344|221741.069|99.969 +639603.395|221726.807|101.270 +639608.406|221722.055|101.139 +639643.434|221688.866|103.053 +639648.457|221684.096|102.587 +639653.422|221679.386|102.575 +639658.442|221674.625|102.398 +639663.466|221669.855|102.096 +639668.397|221665.173|101.785 +639673.433|221660.391|101.310 +639683.342|221650.988|100.962 +639688.383|221646.200|100.450 +639693.336|221641.494|99.837 +639698.344|221636.733|99.097 +639703.352|221631.975|98.454 +639723.368|221612.925|93.793 +639728.355|221608.182|92.943 +639733.250|221603.543|93.098 +639738.194|221598.855|93.196 +639748.054|221589.507|93.171 +639753.031|221584.779|92.754 +639757.884|221580.177|92.870 +639762.815|221575.510|93.360 +639772.557|221566.290|94.717 +639782.283|221557.082|95.589 +639791.997|221547.886|96.668 +639801.741|221538.654|97.308 +639806.701|221533.942|96.725 +639811.559|221529.336|96.942 +639816.415|221524.724|96.570 +639821.291|221520.104|96.619 +639826.235|221515.401|95.744 +639831.021|221510.871|96.411 +639845.307|221497.366|99.295 +639850.156|221492.778|99.795 +639854.938|221488.243|99.920 +639859.751|221483.683|100.243 +639864.588|221479.090|99.795 +639869.398|221474.533|100.203 +639874.165|221470.019|100.584 +639878.923|221465.514|101.093 +639883.687|221461.003|101.535 +639893.127|221452.069|102.870 +639897.897|221447.552|103.285 +639902.582|221443.123|104.105 +639907.364|221438.594|104.416 +639912.003|221434.205|105.199 +639916.795|221429.663|105.437 +639921.476|221425.231|105.833 +639926.195|221420.763|106.348 +639930.882|221416.328|107.168 +639935.534|221411.930|107.887 +639944.946|221403.014|108.741 +639949.603|221398.610|109.451 +639954.340|221394.117|109.414 +639959.049|221389.652|109.643 +639963.679|221385.272|110.182 +639982.433|221367.499|110.847 +639987.124|221363.052|110.926 +640015.215|221336.425|111.176 +640029.415|221322.943|109.850 +640034.042|221318.557|109.887 +640038.751|221314.089|109.704 +640043.406|221309.675|109.606 +640048.069|221305.253|109.463 +640052.729|221300.833|109.350 +640057.417|221296.383|109.070 +640062.084|221291.960|108.985 +640066.656|221287.629|109.228 +640071.338|221283.188|109.067 +640075.967|221278.796|108.954 +640080.616|221274.386|108.722 +640079.363|221272.773|108.814 +640074.614|221277.266|109.000 +640069.871|221281.756|109.173 +640065.095|221286.273|109.247 +640060.450|221290.665|109.131 +640055.677|221295.179|109.228 +640050.928|221299.672|109.201 +640041.370|221308.718|109.622 +640036.602|221313.229|109.801 +640027.017|221322.297|109.856 +640017.281|221331.527|111.225 +640012.499|221336.050|111.264 +640002.885|221345.145|111.432 +639998.082|221349.687|111.338 +639993.263|221354.246|111.395 +639988.481|221358.767|111.152 +639964.429|221381.508|110.701 +639959.589|221386.080|110.240 +639954.895|221390.509|109.369 +639935.604|221408.733|108.003 +639930.809|221413.253|107.189 +639926.042|221417.755|106.586 +639921.193|221422.330|105.876 +639916.410|221426.847|105.440 +639911.525|221431.462|105.101 +639906.651|221436.076|105.171 +639901.875|221440.578|104.230 +639897.025|221445.153|103.544 +639892.221|221449.689|102.913 +639877.695|221463.402|101.230 +639872.836|221467.989|100.706 +639867.959|221472.597|100.395 +639863.076|221477.215|100.188 +639858.151|221481.876|100.490 +639829.018|221509.372|96.360 +639824.056|221514.059|96.030 +639819.091|221518.772|97.100 +639814.202|221523.383|96.472 +639809.270|221528.047|96.460 +639804.335|221532.713|96.506 +639799.327|221537.453|96.951 +639794.402|221542.113|96.951 +639789.501|221546.740|96.573 +639784.563|221551.401|96.064 +639779.662|221556.030|95.732 +639769.838|221565.303|94.644 +639764.870|221569.999|94.656 +639759.947|221574.645|93.940 +639750.078|221583.959|92.885 +639735.170|221598.062|93.339 +639725.224|221607.459|92.967 +639720.207|221612.227|94.345 +639705.107|221626.555|97.868 +639700.090|221631.307|98.481 +639695.116|221636.022|99.313 +639690.066|221640.805|99.755 +639680.050|221650.296|101.084 +639675.063|221655.011|101.212 +639670.068|221659.745|101.715 +639665.026|221664.518|102.175 +639659.994|221669.282|102.483 +639655.010|221673.994|102.687 +639649.987|221678.746|102.824 +639584.809|221740.337|100.215 +639574.778|221749.820|100.234 +639569.712|221754.623|101.032 +639564.692|221759.384|102.087 +639539.506|221783.265|106.683 +639524.406|221797.548|107.015 +639514.321|221807.113|108.823 +639509.322|221811.844|108.981 +639504.274|221816.617|109.161 +639499.239|221821.393|110.048 +639494.198|221826.166|110.524 +639484.167|221835.664|111.447 +639474.087|221845.204|112.011 +639469.100|221849.925|112.517 +639464.065|221854.692|112.868 +639459.075|221859.417|113.200 +639454.031|221864.187|113.215 +639449.035|221868.911|113.285 +639443.985|221873.681|113.169 +639438.943|221878.455|113.261 +639423.926|221892.674|114.114 +639418.930|221897.404|114.166 +639413.931|221902.132|114.264 +639403.928|221911.596|114.203 +639398.917|221916.332|113.959 +639393.946|221921.047|114.754 +639388.947|221925.778|114.873 +639383.942|221930.515|114.815 +639378.931|221935.251|114.721 +639373.960|221939.951|114.404 +639368.940|221944.697|114.142 +639363.914|221949.446|113.767 +639358.909|221954.170|112.929 +639353.880|221958.922|112.648 +639348.875|221963.646|111.883 +639333.772|221977.896|109.369 +639323.729|221987.375|107.857 +639318.782|221992.051|107.637 +639313.780|221996.778|107.311 +639308.806|222001.475|106.720 +639303.862|222006.151|106.625 +639298.881|222010.863|106.738 +639284.071|222024.869|106.314 +639274.125|222034.269|105.638 +639269.233|222038.899|105.769 +639264.305|222043.565|106.074 +639259.443|222048.165|106.031 +639254.478|222052.859|105.924 +639244.584|222062.207|105.022 +639239.710|222066.815|104.915 +639234.797|222071.454|104.379 +639224.958|222080.757|103.812 +639220.008|222085.436|103.501 +639215.064|222090.099|102.773 +639210.120|222094.769|102.056 +639195.484|222108.619|102.264 +639190.662|222113.182|102.489 +639185.819|222117.772|102.962 +639181.024|222122.313|103.483 +639171.411|222131.421|104.288 +639166.577|222136.002|104.922 +639161.889|222140.455|106.016 +639157.134|222144.966|106.942 +639133.664|222167.253|112.569 +639128.955|222171.722|113.474 +639124.185|222176.233|113.386 +639119.412|222180.756|113.733 +639095.497|222203.369|113.276 +639090.657|222207.941|112.801 +639085.847|222212.489|112.584 +639081.028|222217.036|111.935 +639056.790|222239.927|108.018 +639037.658|222258.026|106.671 +639032.903|222262.525|106.442 +639023.616|222271.334|107.272 +639018.959|222275.750|107.784 +639014.323|222280.151|108.463 +639009.763|222284.480|108.978 +639005.148|222288.856|109.487 +639000.549|222293.221|110.106 +638995.992|222297.549|111.030 +638991.417|222301.893|111.825 +638986.878|222306.203|112.542 +638982.331|222310.519|113.215 +638977.783|222314.835|113.892 +638973.275|222319.114|114.517 +638968.709|222323.448|115.099 +638964.171|222327.752|115.556 +638959.629|222332.059|115.995 +638955.030|222336.421|116.412 +638950.500|222340.712|116.650 +638945.913|222345.062|116.842 +638941.305|222349.426|116.931 +638936.809|222353.691|117.431 +638932.255|222358.007|117.589 +638927.683|222362.335|117.665 +638923.084|222366.690|117.574 +638918.615|222370.927|118.004 +638909.413|222379.638|117.620 +638900.224|222388.328|116.833 +638895.600|222392.702|116.455 +638886.459|222401.349|115.809 +638881.844|222405.711|115.276 +638872.904|222414.181|115.608 +638868.384|222418.458|115.385 +638863.833|222422.765|115.017 +638859.313|222427.041|114.846 +638854.875|222431.241|114.864 +638837.063|222448.109|114.514 +638832.658|222452.278|114.538 +638817.741|222466.272|105.754 +638812.846|222470.868|103.145 +638803.090|222480.030|97.987 +638798.633|222484.249|97.710 +638794.336|222488.321|98.009 +638790.020|222492.411|98.210 +638785.698|222496.508|98.399 +638781.370|222500.605|98.344 +638777.130|222502.092|98.356 +638781.452|222497.992|98.405 +638785.826|222493.841|98.216 +638790.148|222489.738|98.048 +638794.458|222485.645|97.832 +638798.783|222481.536|97.448 +638803.608|222476.995|99.859 +638818.345|222463.132|107.400 +638828.266|222453.805|112.999 +638832.942|222449.392|114.389 +638837.389|222445.173|114.346 +638841.845|222440.946|114.383 +638855.302|222428.187|114.800 +638859.807|222423.917|114.904 +638864.355|222419.607|115.266 +638868.881|222415.318|115.526 +638873.410|222411.024|115.559 +638877.854|222406.805|115.404 +638882.353|222402.541|115.282 +638886.922|222398.213|115.596 +638900.824|222385.055|117.214 +638905.451|222380.672|117.367 +638910.017|222376.343|117.485 +638914.641|222371.966|117.979 +638919.170|222367.666|117.638 +638923.769|222363.301|117.434 +638928.399|222358.918|117.717 +638937.537|222350.246|117.333 +638942.076|222345.936|116.824 +638946.672|222341.575|116.693 +638951.256|222337.222|116.510 +638955.822|222332.891|116.202 +638960.416|222328.529|115.803 +638965.000|222324.177|115.340 +638969.578|222319.827|114.861 +638974.180|222315.453|114.227 +638978.737|222311.125|113.614 +638983.315|222306.773|112.849 +638987.899|222302.414|112.130 +638992.478|222298.061|111.377 +638997.037|222293.724|110.496 +639001.682|222289.311|109.878 +639006.309|222284.918|109.475 +639010.945|222280.511|108.826 +639020.275|222271.654|107.942 +639029.617|222262.778|106.848 +639034.333|222258.303|106.458 +639039.164|222253.728|106.951 +639044.007|222249.147|107.549 +639048.771|222244.630|107.592 +639058.388|222235.519|108.046 +639063.377|222230.810|109.530 +639068.312|222226.150|110.633 +639078.044|222216.942|111.889 +639082.933|222212.309|112.383 +639087.767|222207.734|112.819 +639092.632|222203.128|113.169 +639097.509|222198.511|113.621 +639112.017|222184.755|113.776 +639116.833|222180.192|113.816 +639121.649|222175.620|113.486 +639131.217|222166.537|112.703 +639154.964|222143.945|107.723 +639159.685|222139.446|106.074 +639164.461|222134.899|104.949 +639169.280|222130.321|104.217 +639178.991|222121.103|103.565 +639188.659|222111.923|102.492 +639198.523|222102.568|102.553 +639203.412|222097.929|102.133 +639208.340|222093.257|102.163 +639213.342|222088.535|103.599 +639218.313|222083.823|103.635 +639223.266|222079.132|104.071 +639228.183|222074.472|104.059 +639233.197|222069.729|104.693 +639238.141|222065.044|105.123 +639243.133|222060.320|105.571 +639253.024|222050.947|105.991 +639257.992|222046.241|106.235 +639262.924|222041.563|106.013 +639267.901|222036.841|105.799 +639272.815|222032.184|106.055 +639282.773|222022.750|106.406 +639297.687|222008.611|106.519 +639302.688|222003.874|106.802 +639312.634|221994.450|107.390 +639317.624|221989.722|107.616 +639327.697|221980.194|108.927 +639342.739|221965.969|111.399 +639347.774|221961.202|111.892 +639352.727|221956.517|112.648 +639357.757|221951.756|113.054 +639362.804|221946.983|113.916 +639367.779|221942.274|114.343 +639372.792|221937.525|114.590 +639397.725|221913.879|114.352 +639402.721|221909.145|114.319 +639407.674|221904.451|114.422 +639412.709|221899.672|114.294 +639417.699|221894.941|114.178 +639422.691|221890.208|114.181 +639427.678|221885.477|113.968 +639432.710|221880.701|113.700 +639437.648|221876.016|113.438 +639442.683|221871.240|113.404 +639447.673|221866.510|113.322 +639452.662|221861.776|113.264 +639457.698|221857.003|113.157 +639462.684|221852.272|112.987 +639467.668|221847.542|112.557 +639472.691|221842.769|111.862 +639482.713|221833.262|111.456 +639492.728|221823.749|110.539 +639497.715|221819.015|109.942 +639502.744|221814.233|109.119 +639507.737|221809.497|108.957 +639512.729|221804.760|108.792 +639522.803|221795.183|106.903 +639527.793|221790.447|106.506 +639532.837|221785.664|106.531 +639537.836|221780.922|106.278 +639542.880|221776.142|106.464 +639547.925|221771.351|105.976 +639552.927|221766.593|104.949 +639557.931|221761.823|103.248 +639562.988|221757.010|101.938 +639568.048|221752.197|100.938 +639573.062|221747.430|99.956 +639578.112|221742.645|100.270 +639583.117|221737.905|100.685 +639588.113|221733.190|101.858 +639598.180|221723.631|101.258 +639608.236|221714.106|101.846 +639613.225|221709.391|102.821 +639618.227|221704.651|103.099 +639623.272|221699.875|103.650 +639628.228|221695.178|103.818 +639633.239|221690.426|103.748 +639638.304|221685.616|103.379 +639643.273|221680.904|103.263 +639653.358|221671.330|102.757 +639658.330|221666.615|102.602 +639663.359|221661.839|102.191 +639673.420|221652.287|101.441 +639683.448|221642.765|100.529 +639688.505|221637.958|99.676 +639693.510|221633.200|98.987 +639698.521|221628.436|98.243 +639703.577|221623.635|97.667 +639708.588|221618.871|97.036 +639713.584|221614.113|95.784 +639723.758|221604.424|92.787 +639733.701|221594.996|92.888 +639738.636|221590.324|93.226 +639748.584|221580.890|93.333 +639753.525|221576.205|93.571 +639758.478|221571.523|94.488 +639763.367|221566.891|94.833 +639768.314|221562.206|95.064 +639778.122|221552.918|96.085 +639783.078|221548.221|96.198 +639787.964|221543.595|96.646 +639792.853|221538.965|97.082 +639797.800|221534.268|96.661 +639802.741|221529.577|96.351 +639807.655|221524.919|96.494 +639812.498|221520.332|96.957 +639822.331|221511.002|96.579 +639841.631|221492.748|99.642 +639846.422|221488.212|100.218 +639851.268|221483.625|100.737 +639860.946|221474.445|100.804 +639865.814|221469.827|100.557 +639870.629|221465.264|100.913 +639875.393|221460.753|101.361 +639889.707|221447.204|102.989 +639899.195|221438.225|104.367 +639908.672|221429.255|105.397 +639913.430|221424.744|105.482 +639918.218|221420.208|105.769 +639922.918|221415.758|106.458 +639927.609|221411.323|107.265 +639932.284|221406.898|107.744 +639936.972|221402.466|108.591 +639941.639|221398.046|109.173 +639946.296|221393.639|109.835 +639951.085|221389.097|109.765 +639955.715|221384.717|110.304 +639960.384|221380.295|110.905 +639965.038|221375.887|111.231 +639979.148|221362.510|111.432 +639983.866|221358.035|111.292 +639993.187|221349.199|111.609 +640007.223|221335.888|111.630 +640011.868|221331.481|111.420 +640016.580|221327.003|111.088 +640021.247|221322.578|110.786 +640025.980|221318.082|110.353 +640030.653|221313.644|110.048 +640053.851|221291.634|109.399 +640058.454|221287.269|109.417 +640062.995|221282.963|109.512 +640067.665|221278.534|109.423 +640072.252|221274.181|109.265 +640076.842|221269.826|109.088 +640081.119|221262.892|108.610 +640076.385|221267.372|109.000 +640071.731|221271.780|109.216 +640067.034|221276.224|109.402 +640062.349|221280.655|109.536 +640057.628|221285.121|109.591 +640052.940|221289.552|109.445 +640034.085|221307.389|109.817 +640029.290|221311.928|110.213 +640019.680|221321.026|110.883 +640014.928|221325.522|111.033 +640010.155|221330.042|111.405 +640005.354|221334.584|111.603 +639990.986|221348.175|111.737 +639976.587|221361.787|111.523 +639962.179|221375.409|111.203 +639957.370|221379.953|110.893 +639952.615|221384.440|110.131 +639947.753|221389.030|109.887 +639942.980|221393.544|109.765 +639938.146|221398.104|108.863 +639933.382|221402.600|108.216 +639928.566|221407.141|107.595 +639909.193|221425.430|105.412 +639904.334|221430.026|105.321 +639899.482|221434.604|104.669 +639894.632|221439.179|103.986 +639884.885|221448.378|102.654 +639880.033|221452.959|102.050 +639875.116|221457.601|101.590 +639870.255|221462.192|101.096 +639865.274|221466.898|100.877 +639860.339|221471.570|101.264 +639855.389|221476.252|101.310 +639850.409|221480.961|101.151 +639845.520|221485.573|100.490 +639830.810|221499.447|97.865 +639825.897|221504.077|96.884 +639820.959|221508.747|96.872 +639810.885|221518.293|97.737 +639805.999|221522.899|96.445 +639800.976|221527.647|96.375 +639795.999|221532.360|96.411 +639790.945|221537.151|96.893 +639785.986|221541.842|96.689 +639776.013|221551.263|95.698 +639766.065|221560.673|95.171 +639761.011|221565.455|95.064 +639756.067|221570.128|94.692 +639751.047|221574.870|94.040 +639746.051|221579.595|93.781 +639741.056|221584.316|93.525 +639736.042|221589.050|92.739 +639730.988|221593.847|93.674 +639720.969|221603.317|92.922 +639715.888|221608.154|94.668 +639700.673|221622.599|97.731 +639695.613|221627.396|98.231 +639690.547|221632.200|98.999 +639685.475|221637.013|99.956 +639680.428|221641.801|100.444 +639675.371|221646.596|101.182 +639670.333|221651.369|101.489 +639665.288|221656.154|102.123 +639660.250|221660.928|102.553 +639645.117|221675.259|103.306 +639619.977|221699.064|103.806 +639614.969|221703.798|103.477 +639609.921|221708.562|102.721 +639604.916|221713.292|102.166 +639599.906|221718.032|102.005 +639594.852|221722.808|101.517 +639584.818|221732.309|101.992 +639569.752|221746.540|99.944 +639564.683|221751.353|101.054 +639559.666|221756.114|101.995 +639554.652|221760.884|103.623 +639549.595|221765.694|105.071 +639544.587|221770.442|105.821 +639539.582|221775.185|106.281 +639534.532|221779.961|106.031 +639529.530|221784.701|106.345 +639514.491|221798.966|108.469 +639509.493|221803.699|108.704 +639504.448|221808.475|108.899 +639499.498|221813.166|109.320 +639494.463|221817.946|110.222 +639489.473|221822.676|110.716 +639479.488|221832.137|111.496 +639474.495|221836.865|111.712 +639469.509|221841.592|112.292 +639464.522|221846.320|112.663 +639459.533|221851.047|113.060 +639454.537|221855.774|113.096 +639449.544|221860.502|113.267 +639444.552|221865.229|113.334 +639439.605|221869.911|113.538 +639434.606|221874.642|113.486 +639429.623|221879.366|113.870 +639424.676|221884.051|114.017 +639419.686|221888.775|114.236 +639414.681|221893.509|114.105 +639409.743|221898.191|114.450 +639404.742|221902.921|114.437 +639399.792|221907.609|114.480 +639394.781|221912.345|114.242 +639384.911|221921.703|115.212 +639379.946|221926.397|115.013 +639374.941|221931.133|114.998 +639370.016|221935.791|114.642 +639364.996|221940.536|114.379 +639360.064|221945.197|114.026 +639340.100|221964.049|111.082 +639330.066|221973.522|109.472 +639325.103|221978.207|108.917 +639320.117|221982.913|107.951 +639315.118|221987.640|107.640 +639300.259|222001.689|106.814 +639295.300|222006.379|106.503 +639290.353|222011.058|106.436 +639280.462|222020.419|106.375 +639275.488|222025.122|105.952 +639270.596|222029.752|106.077 +639265.631|222034.449|105.854 +639260.736|222039.082|105.967 +639255.877|222043.690|106.574 +639250.891|222048.399|106.186 +639246.026|222053.005|106.107 +639241.042|222057.714|105.815 +639236.129|222062.356|105.217 +639231.167|222067.044|104.653 +639226.220|222071.723|104.300 +639221.358|222076.325|104.422 +639206.524|222090.343|103.196 +639201.607|222094.982|102.288 +639196.663|222099.661|102.151 +639191.845|222104.224|102.370 +639186.962|222108.847|102.413 +639172.493|222122.563|104.050 +639162.888|222131.668|104.931 +639153.470|222140.620|107.662 +639148.773|222145.079|108.652 +639144.110|222149.520|110.414 +639134.664|222158.487|112.359 +639129.912|222162.992|112.840 +639120.378|222172.026|113.587 +639115.577|222176.568|113.709 +639105.997|222185.642|114.123 +639096.418|222194.704|113.834 +639091.580|222199.276|113.322 +639086.737|222203.851|112.804 +639081.924|222208.401|112.569 +639072.259|222217.530|111.459 +639062.582|222226.662|110.012 +639057.598|222231.353|108.610 +639043.239|222244.923|107.613 +639038.490|222249.409|107.381 +639033.677|222253.951|106.714 +639028.935|222258.434|106.574 +638978.432|222306.303|113.590 +638973.851|222310.644|114.062 +638969.334|222314.923|114.639 +638964.765|222319.254|115.199 +638960.224|222323.555|115.644 +638955.673|222327.865|116.053 +638951.116|222332.181|116.422 +638946.578|222336.482|116.915 +638942.048|222340.767|117.190 +638937.507|222345.065|117.406 +638923.858|222357.982|117.970 +638919.197|222362.384|117.537 +638914.705|222366.639|117.818 +638910.200|222370.903|118.058 +638905.564|222375.280|117.534 +638901.019|222379.577|117.571 +638896.420|222383.921|117.028 +638882.661|222396.911|115.800 +638878.068|222401.252|115.391 +638873.581|222405.498|115.593 +638869.164|222409.676|115.660 +638864.687|222413.910|115.684 +638860.164|222418.186|115.462 +638855.604|222422.490|115.084 +638851.145|222426.709|114.989 +638846.667|222430.939|114.828 +638842.217|222435.149|114.812 +638833.228|222443.643|114.395 +638824.398|222451.989|114.105 +638819.296|222456.762|110.591 +638809.445|222466.001|105.272 +638804.568|222470.579|102.791 +638799.743|222475.108|100.639 +638794.842|222479.704|97.881 +638790.456|222483.853|97.993 +638786.149|222487.931|98.252 +638781.815|222492.030|98.393 +638777.529|222496.084|98.548 +638773.222|222500.160|98.600 +638768.836|222504.302|98.301 +638768.986|222501.967|98.484 +638773.311|222497.864|98.521 +638777.675|222493.725|98.509 +638782.001|222489.616|98.335 +638786.323|222485.514|98.149 +638790.632|222481.417|97.673 +638795.204|222477.098|98.768 +638800.161|222472.438|101.572 +638810.070|222463.117|106.802 +638814.968|222458.512|109.466 +638824.688|222449.361|114.020 +638833.667|222440.848|114.355 +638838.169|222436.581|114.608 +638842.641|222432.341|114.730 +638851.727|222423.728|114.989 +638856.229|222419.457|115.074 +638860.810|222415.120|115.605 +638865.360|222410.804|115.724 +638869.847|222406.546|115.501 +638874.367|222402.258|115.489 +638878.951|222397.911|115.858 +638888.175|222389.172|116.400 +638892.796|222384.792|116.763 +638897.462|222380.373|117.120 +638906.725|222371.595|117.805 +638911.330|222367.227|117.894 +638915.927|222362.862|117.647 +638920.563|222358.470|117.952 +638934.462|222345.287|118.037 +638939.019|222340.953|117.348 +638952.829|222327.840|116.492 +638957.404|222323.491|115.974 +638961.985|222319.138|115.480 +638989.649|222292.840|111.737 +638994.276|222288.445|111.313 +639008.199|222275.201|109.085 +639026.932|222257.398|106.830 +639031.681|222252.890|106.692 +639036.521|222248.309|107.235 +639041.368|222243.719|107.485 +639055.876|222229.969|108.591 +639075.578|222211.334|112.017 +639080.522|222206.652|112.563 +639085.347|222202.080|112.941 +639090.261|222197.425|113.270 +639100.005|222188.193|114.160 +639104.858|222183.591|114.072 +639109.713|222178.982|114.035 +639114.486|222174.450|113.718 +639119.381|222169.807|113.624 +639129.001|222160.673|112.871 +639133.789|222156.119|112.328 +639157.570|222133.463|105.796 +639172.106|222119.649|103.937 +639181.838|222110.405|103.023 +639191.628|222101.105|102.255 +639201.546|222091.708|102.913 +639206.554|222086.963|103.312 +639211.504|222082.275|103.608 +639216.546|222077.505|104.483 +639221.489|222072.820|104.803 +639226.439|222068.123|104.650 +639231.429|222063.399|105.007 +639236.391|222058.702|105.653 +639241.381|222053.977|106.061 +639246.346|222049.271|106.238 +639251.336|222044.547|106.753 +639256.295|222039.837|106.260 +639261.181|222035.204|106.065 +639266.173|222030.468|106.068 +639271.132|222025.771|106.278 +639276.073|222021.086|106.250 +639281.072|222016.346|106.442 +639295.998|222002.198|106.720 +639300.954|221997.504|107.049 +639305.968|221992.755|107.628 +639310.936|221988.043|107.491 +639315.929|221983.312|107.735 +639325.954|221973.827|109.076 +639330.974|221969.081|109.966 +639336.003|221964.329|111.060 +639341.017|221959.586|112.002 +639345.979|221954.880|112.017 +639356.035|221945.374|113.752 +639361.027|221940.649|114.459 +639375.969|221926.494|115.172 +639380.909|221921.803|114.953 +639390.901|221912.330|114.852 +639395.838|221907.642|114.611 +639400.788|221902.948|114.657 +639405.775|221898.218|114.419 +639410.768|221893.481|114.389 +639415.708|221888.797|114.206 +639420.701|221884.060|114.181 +639425.694|221879.326|114.197 +639435.609|221869.914|113.496 +639440.605|221865.178|113.602 +639445.585|221860.450|113.243 +639450.529|221855.762|113.215 +639480.390|221827.419|111.304 +639490.363|221817.949|110.512 +639495.350|221813.215|110.021 +639500.330|221808.475|109.006 +639505.277|221803.782|108.756 +639510.270|221799.045|108.491 +639520.203|221789.599|106.851 +639530.192|221780.117|106.049 +639535.187|221775.374|105.744 +639540.186|221770.634|105.705 +639545.139|221765.931|105.263 +639550.141|221761.173|104.361 +639555.146|221756.409|103.093 +639560.111|221751.676|101.493 +639565.122|221746.915|100.801 +639570.126|221742.172|100.935 +639580.081|221732.748|102.096 +639590.048|221723.299|102.069 +639595.056|221718.550|102.002 +639600.015|221713.844|101.947 +639604.962|221709.171|102.864 +639609.961|221704.435|103.242 +639614.954|221699.710|103.946 +639619.907|221695.023|104.291 +639629.880|221685.565|104.114 +639644.787|221671.422|103.449 +639649.804|221666.661|103.279 +639659.759|221657.215|102.620 +639669.741|221647.730|101.337 +639679.730|221638.247|100.276 +639689.697|221628.774|98.768 +639694.702|221624.019|98.185 +639699.712|221619.258|97.490 +639704.684|221614.537|96.771 +639714.730|221604.972|94.205 +639719.787|221600.160|92.912 +639729.668|221590.793|93.229 +639734.655|221586.053|92.537 +639744.518|221576.729|94.263 +639749.404|221572.103|94.647 +639754.382|221567.390|95.089 +639759.271|221562.760|95.424 +639764.242|221558.045|95.235 +639774.081|221548.724|95.750 +639779.022|221544.046|96.098 +639783.938|221539.394|96.814 +639788.861|221534.728|96.750 +639793.801|221530.037|96.411 +639798.770|221525.328|96.418 +639803.622|221520.741|97.417 +639808.493|221516.135|98.161 +639818.445|221506.677|96.780 +639823.315|221502.066|96.963 +639828.171|221497.475|97.954 +639833.011|221492.903|99.130 +639837.827|221488.350|99.978 +639842.664|221483.774|100.606 +639857.240|221469.970|101.681 +639862.156|221465.304|101.407 +639866.999|221460.716|101.474 +639871.870|221456.102|101.773 +639876.695|221451.533|102.072 +639881.538|221446.948|102.684 +639886.330|221442.416|103.367 +639895.861|221433.397|104.778 +639900.668|221428.849|105.336 +639915.005|221415.271|106.391 +639919.827|221410.708|106.839 +639924.533|221406.255|107.473 +639929.288|221401.756|108.128 +639934.016|221397.281|108.604 +639938.749|221392.807|109.460 +639948.195|221383.858|110.067 +639962.344|221370.465|111.493 +639967.053|221366.003|111.780 +639971.811|221361.488|111.652 +639976.569|221356.977|111.566 +640009.545|221325.705|111.475 +640014.264|221321.224|111.112 +640018.961|221316.768|110.954 +640023.694|221312.272|110.518 +640028.397|221307.810|110.368 +640033.073|221303.369|110.067 +640047.042|221290.119|109.780 +640056.287|221281.353|109.835 +640060.910|221276.967|109.710 +640065.613|221272.505|109.408 +640070.198|221268.155|109.259 +640074.849|221263.739|109.006 +640079.515|221259.310|108.695 +640078.842|221257.390|108.524 +640074.160|221261.822|108.911 +640069.545|221266.186|109.186 +640060.191|221275.038|109.667 +640055.552|221279.427|109.853 +640050.895|221283.831|109.850 +640046.219|221288.251|109.972 +640027.483|221305.969|110.307 +640022.749|221310.450|110.652 +640018.007|221314.939|111.100 +640013.267|221319.420|111.149 +640008.503|221323.928|111.435 +640003.745|221328.433|111.716 +639984.811|221346.334|111.844 +639975.301|221355.322|111.801 +639970.500|221359.861|111.780 +639965.770|221364.332|111.618 +639951.456|221377.853|111.005 +639946.714|221382.325|110.152 +639937.146|221391.362|109.646 +639932.412|221395.824|108.722 +639927.648|221400.320|108.119 +639922.884|221404.816|107.500 +639918.066|221409.360|106.948 +639913.298|221413.859|106.385 +639908.477|221418.410|105.876 +639903.642|221422.976|105.546 +639893.928|221432.147|104.842 +639889.131|221436.674|104.160 +639879.463|221445.790|102.544 +639874.595|221450.387|102.120 +639845.066|221478.294|101.416 +639840.146|221482.933|100.554 +639835.251|221487.551|99.987 +639825.510|221496.728|97.670 +639820.624|221501.337|97.000 +639815.598|221506.086|96.902 +639810.547|221510.874|97.844 +639805.539|221515.614|98.259 +639795.722|221524.871|96.354 +639790.702|221529.613|96.323 +639785.727|221534.316|96.320 +639780.707|221539.062|96.351 +639775.705|221543.787|96.094 +639770.755|221548.465|95.838 +639765.714|221553.226|95.503 +639760.718|221557.945|95.217 +639750.700|221567.415|95.156 +639745.719|221572.115|94.668 +639740.678|221576.879|94.421 +639735.670|221581.597|93.528 +639725.624|221591.092|93.299 +639715.583|221600.580|93.025 +639710.448|221605.463|94.912 +639705.351|221610.300|96.125 +639695.217|221619.898|97.366 +639690.148|221624.702|98.134 +639680.022|221634.300|99.700 +639674.920|221639.134|100.371 +639669.863|221643.926|101.185 +639664.819|221648.702|101.730 +639659.768|221653.490|102.550 +639654.687|221658.297|102.855 +639649.658|221663.055|103.129 +639644.629|221667.816|103.471 +639639.557|221672.614|103.745 +639634.534|221677.369|104.050 +639609.370|221701.155|103.937 +639604.325|221705.913|103.087 +639599.320|221710.641|102.681 +639594.261|221715.417|102.526 +639589.207|221720.196|102.282 +639579.130|221729.727|102.748 +639574.129|221734.436|101.657 +639559.004|221748.735|101.422 +639553.990|221753.486|102.200 +639538.915|221767.782|105.162 +639533.864|221772.561|105.473 +639528.863|221777.294|105.830 +639518.676|221786.941|106.772 +639508.825|221796.277|108.381 +639503.826|221801.005|108.655 +639488.851|221815.190|110.454 +639483.853|221819.915|110.469 +639478.909|221824.593|110.886 +639473.877|221829.363|111.566 +639468.936|221834.039|112.029 +639458.972|221843.482|113.246 +639454.022|221848.157|113.243 +639449.023|221852.882|113.108 +639444.040|221857.600|113.587 +639439.093|221862.279|113.624 +639434.146|221866.958|113.752 +639429.196|221871.639|113.779 +639424.258|221876.315|114.136 +639419.268|221881.039|114.346 +639414.325|221885.718|114.553 +639409.372|221890.403|114.498 +639404.422|221895.085|114.532 +639399.478|221899.763|114.751 +639394.525|221904.448|114.760 +639389.550|221909.145|114.233 +639374.761|221923.145|114.983 +639369.812|221927.829|115.129 +639354.986|221941.838|114.230 +639350.039|221946.507|113.566 +639340.066|221955.914|111.850 +639335.110|221960.592|111.249 +639325.177|221969.965|109.750 +639320.193|221974.665|108.774 +639285.598|222007.352|106.528 +639270.806|222021.342|106.458 +639265.893|222025.987|106.250 +639260.998|222030.617|106.330 +639256.048|222035.299|106.363 +639251.162|222039.923|106.598 +639246.282|222044.544|106.942 +639241.335|222049.216|106.430 +639236.400|222053.880|106.135 +639231.456|222058.549|105.760 +639226.540|222063.191|105.135 +639221.636|222067.833|105.290 +639216.780|222072.427|105.479 +639211.772|222077.148|104.489 +639206.826|222081.818|103.684 +639196.965|222091.135|103.102 +639192.098|222095.732|102.779 +639182.338|222104.964|102.922 +639148.825|222136.743|108.378 +639129.906|222154.699|112.426 +639125.166|222159.191|113.026 +639115.586|222168.262|113.791 +639110.810|222172.785|114.105 +639106.007|222177.330|114.197 +639101.246|222181.832|114.270 +639086.704|222195.572|113.236 +639081.872|222200.135|112.828 +639077.051|222204.692|112.499 +639047.887|222232.218|107.973 +639043.117|222236.733|107.887 +639038.338|222241.247|107.415 +639033.543|222245.782|107.198 +639028.773|222250.290|106.842 +639024.049|222254.765|107.195 +639005.523|222272.330|109.277 +639000.936|222276.680|109.972 +638982.565|222294.105|112.676 +638973.501|222302.707|114.224 +638964.363|222311.372|115.309 +638959.797|222315.700|115.910 +638955.234|222320.025|116.205 +638946.105|222328.679|117.150 +638941.591|222332.952|117.510 +638932.465|222341.596|117.952 +638927.936|222345.885|118.250 +638923.330|222350.249|118.388 +638918.749|222354.578|118.125 +638914.171|222358.906|117.885 +638909.563|222363.267|117.787 +638905.073|222367.519|118.116 +638900.412|222371.921|117.467 +638895.807|222376.276|117.156 +638886.648|222384.936|116.626 +638868.524|222402.075|115.809 +638863.961|222406.388|115.626 +638859.493|222410.618|115.702 +638855.009|222414.855|115.449 +638850.437|222419.177|115.004 +638845.978|222423.395|114.907 +638837.017|222431.869|114.584 +638828.071|222440.330|114.139 +638823.615|222444.546|113.898 +638819.223|222448.703|114.020 +638814.413|222453.223|112.014 +638809.454|222457.871|109.030 +638789.779|222476.333|98.438 +638785.295|222480.567|97.814 +638781.004|222484.633|98.161 +638776.737|222488.675|98.384 +638772.402|222492.777|98.545 +638768.074|222496.874|98.502 +638763.734|222500.979|98.429 +638761.862|222500.781|98.402 +638766.221|222496.654|98.579 +638770.537|222492.567|98.569 +638774.822|222488.504|98.417 +638779.141|222484.410|98.204 +638783.433|222480.335|97.881 +638787.880|222476.132|98.326 +638797.676|222466.927|103.593 +638807.564|222457.643|109.256 +638812.493|222453.013|111.831 +638817.260|222448.526|113.880 +638821.649|222444.366|113.764 +638826.096|222440.153|113.965 +638839.504|222427.455|114.215 +638844.058|222423.149|114.794 +638848.542|222418.903|115.035 +638853.083|222414.605|115.312 +638857.643|222410.292|115.730 +638862.139|222406.028|115.547 +638866.631|222401.770|115.632 +638871.213|222397.430|115.967 +638875.736|222393.144|115.989 +638880.253|222388.862|116.007 +638894.161|222375.697|117.351 +638898.718|222371.378|117.388 +638903.433|222366.919|118.086 +638907.926|222362.655|117.796 +638912.537|222358.284|117.930 +638917.149|222353.916|118.089 +638921.749|222349.558|118.183 +638926.394|222345.156|118.299 +638930.987|222340.801|118.101 +638935.556|222336.463|117.793 +638944.782|222327.712|117.434 +638990.771|222284.035|111.822 +638999.966|222275.290|109.951 +639004.596|222270.892|109.237 +639023.351|222253.079|107.159 +639028.029|222248.641|106.848 +639032.900|222244.033|107.250 +639037.682|222239.500|107.412 +639042.538|222234.904|107.750 +639047.381|222230.316|108.049 +639052.328|222225.644|109.170 +639057.205|222221.029|109.780 +639066.995|222211.772|111.402 +639071.866|222207.161|111.697 +639076.804|222202.494|112.538 +639081.598|222197.950|112.679 +639086.551|222193.265|113.334 +639091.452|222188.629|113.992 +639106.028|222174.818|114.273 +639110.813|222170.280|114.062 +639120.482|222161.108|113.721 +639125.313|222156.521|113.093 +639149.206|222133.798|108.113 +639158.737|222124.727|105.647 +639173.294|222110.899|103.556 +639183.024|222101.660|102.614 +639192.954|222092.260|103.376 +639197.874|222087.597|103.294 +639207.859|222078.145|104.321 +639212.848|222073.426|105.126 +639217.859|222068.687|105.650 +639222.803|222063.996|105.452 +639227.762|222059.290|105.479 +639232.770|222054.550|106.080 +639237.717|222049.868|106.561 +639242.737|222045.110|106.842 +639247.705|222040.401|107.061 +639252.607|222035.744|106.455 +639257.587|222031.020|106.266 +639262.543|222026.320|106.412 +639267.536|222021.586|106.415 +639277.466|222012.168|106.439 +639287.451|222002.704|106.647 +639297.531|221993.157|107.704 +639302.463|221988.482|107.701 +639307.504|221983.705|107.979 +639322.574|221969.441|109.686 +639327.584|221964.698|110.384 +639352.791|221940.850|114.328 +639367.791|221926.641|115.126 +639372.796|221921.895|115.306 +639382.738|221912.464|115.145 +639387.749|221907.700|114.325 +639392.772|221902.948|114.974 +639397.762|221898.212|114.879 +639402.751|221893.478|114.748 +639407.741|221888.745|114.626 +639412.737|221884.008|114.620 +639417.720|221879.278|114.386 +639427.696|221869.814|114.062 +639437.764|221860.261|113.779 +639442.705|221855.573|113.657 +639452.723|221846.067|113.206 +639457.713|221841.333|113.160 +639467.720|221831.829|112.136 +639472.700|221827.096|111.545 +639477.732|221822.320|111.176 +639492.741|221808.067|109.878 +639502.717|221798.588|108.634 +639507.755|221793.805|108.326 +639517.734|221784.320|106.823 +639522.727|221779.571|105.949 +639532.724|221770.080|105.199 +639537.772|221765.294|105.107 +639542.771|221760.543|104.556 +639547.775|221755.779|103.340 +639552.783|221751.014|102.191 +639557.791|221746.253|101.532 +639562.796|221741.508|101.602 +639567.801|221736.765|101.794 +639582.809|221722.546|102.712 +639587.768|221717.840|102.565 +639592.776|221713.094|102.663 +639597.778|221708.355|103.056 +639607.730|221698.930|103.900 +639612.728|221694.194|104.336 +639617.675|221689.509|104.928 +639622.686|221684.757|104.858 +639627.652|221680.045|104.662 +639632.669|221675.281|104.367 +639637.643|221670.559|104.028 +639642.614|221665.838|103.733 +639647.592|221661.117|103.431 +639652.578|221656.374|102.767 +639667.498|221642.201|101.185 +639672.497|221637.449|100.511 +639677.453|221632.740|99.837 +639692.385|221618.545|97.679 +639697.350|221613.824|97.015 +639702.376|221609.044|96.140 +639717.309|221594.835|93.031 +639722.246|221590.156|93.275 +639727.233|221585.419|92.623 +639732.091|221580.823|93.504 +639737.017|221576.156|94.034 +639741.879|221571.563|94.906 +639761.523|221552.937|95.585 +639766.433|221548.282|95.646 +639771.316|221543.659|96.146 +639776.211|221539.020|96.463 +639781.140|221534.341|96.271 +639786.008|221529.726|96.332 +639790.878|221525.105|96.344 +639795.700|221520.555|97.817 +639800.534|221515.977|98.374 +639805.405|221511.359|98.454 +639810.340|221506.668|97.679 +639815.268|221501.983|97.009 +639820.133|221497.372|97.247 +639824.879|221492.885|98.423 +639829.689|221488.340|99.392 +639834.498|221483.790|100.343 +639868.304|221451.755|102.178 +639873.089|221447.220|102.376 +639877.902|221442.660|102.806 +639892.151|221429.182|105.217 +639897.001|221424.579|105.306 +639901.664|221420.172|106.354 +639906.553|221415.533|106.101 +639911.311|221411.028|106.677 +639916.075|221406.517|107.241 +639920.800|221402.042|107.692 +639925.542|221397.555|108.469 +639930.209|221393.142|109.503 +639944.504|221379.600|110.380 +639949.201|221375.150|110.731 +639958.686|221366.161|111.508 +639963.453|221361.647|111.737 +639987.124|221339.208|112.407 +640001.340|221325.720|112.167 +640006.107|221321.191|111.764 +640010.877|221316.664|111.402 +640025.063|221303.198|110.633 +640029.830|221298.675|110.405 +640039.233|221289.754|110.249 +640043.927|221285.304|110.274 +640048.584|221280.887|110.225 +640053.354|221276.361|110.085 +640058.039|221271.914|109.884 +640062.751|221267.439|109.515 +640067.442|221262.986|109.314 +640072.115|221258.548|108.933 +640076.836|221254.068|108.600 +640077.071|221251.172|108.216 +640072.310|221255.686|108.789 +640067.631|221260.118|109.161 +640062.977|221264.525|109.402 +640058.246|221269.009|109.844 +640048.871|221277.885|110.222 +640044.256|221282.252|110.274 +640039.596|221286.666|110.332 +640034.877|221291.131|110.466 +640030.196|221295.557|110.344 +640025.508|221299.998|110.679 +640020.777|221304.482|111.002 +640016.050|221308.959|111.304 +640006.580|221317.926|111.767 +640001.864|221322.392|112.072 +639997.125|221326.881|112.228 +639987.670|221335.830|112.380 +639982.961|221340.287|112.346 +639964.106|221358.117|111.767 +639945.211|221375.979|110.557 +639940.484|221380.450|110.454 +639935.689|221384.982|110.085 +639931.017|221389.396|109.500 +639921.549|221398.333|108.131 +639916.837|221402.783|107.488 +639912.046|221407.309|107.153 +639907.285|221411.808|106.543 +639897.680|221420.891|106.193 +639892.932|221425.375|105.504 +639878.612|221438.890|103.169 +639873.796|221443.440|102.690 +639859.166|221457.287|102.913 +639854.326|221461.865|102.779 +639849.437|221466.489|102.687 +639839.689|221475.697|101.633 +639815.461|221498.554|96.957 +639810.468|221503.291|97.756 +639805.497|221508.003|98.301 +639800.507|221512.727|98.472 +639785.834|221526.581|96.268 +639780.860|221531.284|96.283 +639775.888|221535.990|96.293 +639770.911|221540.699|96.427 +639765.943|221545.390|95.677 +639760.974|221550.090|95.720 +639736.069|221573.633|94.089 +639731.174|221578.232|91.937 +639726.142|221582.999|92.409 +639716.074|221592.530|92.665 +639700.822|221607.011|96.155 +639695.750|221611.821|96.902 +639690.687|221616.622|97.497 +639680.550|221626.238|99.200 +639675.493|221631.033|99.871 +639670.391|221635.870|100.560 +639665.340|221640.661|101.258 +639660.287|221645.453|102.075 +639655.196|221650.278|102.669 +639640.008|221664.668|103.867 +639629.910|221674.232|104.547 +639624.841|221679.030|104.784 +639619.821|221683.782|105.025 +639614.761|221688.570|105.040 +639609.711|221693.346|104.678 +639604.660|221698.116|104.211 +639599.613|221702.886|103.696 +639594.559|221707.660|103.257 +639584.495|221717.179|102.946 +639564.274|221736.293|101.770 +639559.218|221741.075|101.602 +639554.158|221745.863|101.721 +639549.053|221750.707|102.572 +639538.988|221760.262|104.690 +639533.886|221765.090|104.836 +639528.835|221769.876|105.293 +639523.833|221774.615|105.894 +639518.737|221779.443|106.336 +639513.696|221784.226|107.153 +639503.610|221793.790|108.445 +639498.565|221798.566|108.689 +639493.576|221803.300|109.497 +639488.537|221808.076|110.176 +639483.499|221812.849|110.637 +639478.503|221817.577|110.655 +639473.474|221822.350|111.551 +639468.433|221827.120|111.822 +639463.449|221831.845|112.438 +639458.423|221836.615|113.154 +639448.389|221846.109|113.285 +639438.404|221855.561|113.569 +639433.414|221860.282|113.877 +639428.373|221865.053|113.922 +639413.401|221879.223|114.511 +639408.454|221883.901|114.657 +639403.465|221888.623|114.849 +639398.466|221893.350|114.831 +639393.516|221898.035|114.888 +639388.520|221902.759|115.001 +639378.626|221912.120|115.382 +639363.682|221926.244|114.709 +639348.774|221940.332|114.175 +639313.945|221973.184|108.241 +639309.031|221977.835|108.543 +639289.268|221996.507|107.451 +639284.342|222001.158|106.939 +639279.374|222005.852|106.567 +639259.742|222024.418|106.683 +639254.920|222028.987|107.095 +639249.976|222033.650|106.589 +639245.093|222038.274|106.872 +639240.229|222042.882|107.381 +639235.334|222047.503|106.970 +639230.414|222052.145|106.272 +639225.461|222056.824|105.802 +639220.602|222061.420|105.906 +639215.707|222066.053|106.150 +639210.788|222070.695|105.601 +639205.844|222075.359|104.821 +639200.891|222080.031|103.974 +639196.011|222084.637|103.434 +639191.137|222089.249|103.529 +639176.559|222103.032|103.355 +639171.670|222107.656|103.373 +639119.592|222157.052|113.624 +639110.057|222166.071|113.950 +639100.499|222175.120|114.538 +639086.009|222188.806|113.508 +639071.576|222202.439|112.392 +639061.917|222211.556|111.374 +639057.040|222216.158|110.734 +639052.197|222220.724|110.021 +639047.308|222225.330|108.981 +639028.142|222243.426|107.363 +639023.329|222247.974|107.049 +639018.724|222252.332|107.570 +639000.210|222269.867|109.750 +638995.657|222274.183|110.667 +638991.100|222278.505|111.572 +638972.729|222295.903|113.627 +638931.819|222334.641|118.068 +638904.390|222360.567|117.936 +638899.882|222364.834|118.147 +638895.258|222369.196|117.723 +638859.014|222403.437|116.230 +638845.420|222416.266|114.971 +638840.970|222420.469|114.672 +638831.994|222428.946|113.992 +638809.865|222449.852|113.404 +638780.586|222477.306|97.899 +638776.295|222481.366|98.240 +638771.988|222485.441|98.521 +638767.650|222489.543|98.670 +638763.444|222493.524|98.981 +638759.080|222497.645|98.783 +638754.736|222501.748|98.463 +638750.505|222503.201|98.569 +638754.770|222499.160|98.521 +638759.125|222495.036|98.664 +638763.490|222490.897|98.649 +638767.797|222486.812|98.597 +638772.052|222482.777|98.310 +638776.359|222478.692|98.039 +638805.403|222451.370|111.807 +638823.417|222434.326|113.636 +638827.830|222430.144|113.678 +638832.338|222425.877|113.965 +638836.859|222421.597|114.358 +638841.360|222417.336|114.669 +638845.902|222413.038|114.940 +638850.471|222408.716|115.669 +638855.031|222404.397|115.821 +638859.575|222400.100|116.178 +638864.022|222395.884|116.010 +638873.139|222387.255|116.449 +638877.684|222382.955|116.605 +638882.256|222378.629|116.946 +638891.500|222369.879|117.440 +638896.170|222365.468|118.125 +638900.665|222361.204|117.845 +638905.241|222356.870|117.741 +638914.485|222348.119|118.153 +638969.529|222295.925|114.136 +638997.101|222269.745|109.960 +639015.746|222252.052|107.713 +639020.428|222247.608|107.067 +639025.189|222243.097|107.009 +639029.986|222238.564|107.585 +639044.544|222224.790|108.597 +639054.398|222215.485|110.566 +639059.262|222210.885|111.130 +639073.847|222197.093|112.535 +639083.649|222187.821|113.361 +639088.566|222183.176|114.145 +639098.280|222173.980|114.428 +639103.093|222169.420|114.428 +639107.893|222164.867|113.934 +639112.743|222160.273|113.855 +639117.601|222155.671|113.901 +639122.390|222151.129|113.334 +639136.718|222137.520|110.890 +639141.525|222132.948|109.640 +639170.301|222105.601|103.550 +639175.215|222100.944|103.324 +639190.022|222086.923|103.462 +639194.954|222082.253|103.498 +639199.931|222077.544|104.102 +639204.927|222072.826|104.946 +639209.965|222068.065|105.769 +639215.025|222063.289|106.884 +639219.920|222058.644|106.092 +639224.861|222053.959|105.897 +639229.811|222049.277|106.354 +639234.882|222044.486|107.229 +639239.845|222039.789|107.345 +639244.755|222035.128|106.827 +639249.735|222030.407|106.619 +639259.650|222021.019|106.912 +639274.613|222006.846|106.790 +639279.542|222002.173|106.653 +639289.576|221992.685|107.628 +639299.634|221983.166|108.433 +639304.624|221978.445|108.628 +639309.595|221973.735|108.509 +639314.627|221968.971|108.710 +639319.681|221964.204|110.121 +639324.741|221959.422|110.862 +639339.856|221945.139|113.142 +639349.942|221935.608|114.562 +639354.965|221930.853|114.965 +639359.976|221926.110|115.135 +639369.985|221916.631|115.315 +639385.024|221902.385|115.221 +639390.017|221897.654|115.175 +639395.015|221892.920|115.212 +639400.048|221888.150|114.925 +639405.037|221883.423|114.773 +639410.024|221878.695|114.556 +639435.060|221854.967|113.752 +639445.134|221845.423|113.621 +639465.114|221826.474|111.959 +639470.146|221821.701|111.514 +639475.178|221816.928|111.057 +639485.203|221807.421|110.323 +639490.238|221802.645|109.817 +639495.222|221797.908|108.792 +639500.263|221793.129|108.549 +639505.305|221788.350|108.232 +639515.332|221778.824|106.583 +639520.377|221774.039|105.967 +639525.327|221769.342|105.531 +639535.422|221759.765|104.547 +639540.424|221755.020|103.989 +639545.432|221750.265|103.081 +639550.485|221745.464|102.248 +639555.447|221740.758|101.745 +639560.498|221735.976|101.971 +639575.500|221721.793|103.788 +639580.557|221717.002|103.626 +639585.516|221712.302|103.471 +639595.522|221702.822|103.846 +639605.520|221693.361|104.778 +639610.470|221688.677|105.248 +639615.472|221683.937|105.409 +639620.483|221679.188|105.275 +639635.448|221664.985|104.077 +639645.397|221655.548|103.516 +639660.360|221641.344|101.858 +639665.358|221636.592|101.060 +639670.357|221631.847|100.462 +639680.281|221622.416|98.804 +639685.298|221617.649|97.926 +639695.226|221608.218|96.640 +639700.246|221603.454|95.957 +639710.185|221594.003|93.830 +639715.172|221589.266|93.046 +639720.061|221584.633|93.303 +639729.976|221575.221|92.220 +639734.786|221570.701|94.900 +639739.617|221566.129|95.396 +639754.302|221552.220|96.104 +639759.222|221547.557|95.945 +639764.074|221542.961|96.140 +639768.966|221538.328|96.497 +639773.852|221533.695|96.226 +639778.769|221529.037|96.253 +639783.615|221524.447|96.634 +639788.416|221519.915|97.692 +639798.050|221510.795|98.615 +639812.739|221496.853|97.213 +639817.539|221492.309|97.652 +639822.328|221487.789|98.905 +639831.862|221478.779|100.663 +639846.169|221465.249|102.684 +639850.951|221460.716|102.812 +639855.728|221456.193|103.044 +639870.181|221442.492|102.998 +639893.809|221420.147|106.351 +639898.577|221415.630|106.333 +639903.331|221411.122|106.427 +639908.089|221406.623|107.040 +639912.762|221402.204|107.521 +639917.474|221397.744|108.091 +639931.553|221384.431|110.015 +639940.941|221375.540|110.704 +639945.613|221371.120|111.274 +639964.340|221353.378|112.468 +639969.162|221348.800|112.218 +639973.850|221344.356|112.334 +639978.483|221339.963|112.514 +639983.244|221335.446|112.447 +639987.898|221331.033|112.490 +639997.323|221322.087|112.103 +640006.756|221313.135|111.746 +640011.456|221308.673|111.548 +640020.878|221299.733|111.091 +640025.587|221295.261|110.896 +640030.235|221290.851|110.829 +640034.957|221286.370|110.606 +640039.605|221281.960|110.573 +640044.265|221277.540|110.490 +640048.947|221273.093|110.265 +640058.283|221264.233|109.759 +640063.004|221259.749|109.341 +640067.674|221255.314|108.975 +640072.328|221250.895|108.719 +640077.132|221246.326|107.826 +640076.967|221243.284|107.957 +640072.191|221247.807|108.271 +640067.424|221252.324|108.884 +640062.654|221256.838|109.207 +640043.622|221274.861|110.481 +640038.910|221279.317|110.533 +640034.134|221283.837|110.710 +640029.412|221288.306|110.886 +640024.633|221292.832|111.161 +640019.881|221297.325|111.231 +640010.313|221306.380|111.606 +640005.555|221310.882|111.810 +640000.740|221315.445|112.130 +639986.429|221328.985|112.520 +639981.616|221333.538|112.526 +639976.898|221338.004|112.590 +639972.091|221342.548|112.581 +639967.327|221347.056|112.670 +639962.487|221351.631|112.587 +639948.262|221365.073|111.591 +639943.529|221369.541|111.060 +639938.725|221374.080|110.765 +639929.185|221383.096|110.033 +639914.935|221396.544|108.192 +639910.165|221401.049|107.659 +639905.410|221405.532|106.967 +639900.619|221410.061|106.674 +639895.806|221414.612|106.601 +639871.833|221437.244|103.498 +639867.011|221441.803|103.632 +639862.101|221446.452|103.718 +639852.430|221455.593|103.346 +639847.608|221460.149|103.035 +639842.798|221464.691|102.575 +639837.940|221469.281|102.136 +639828.290|221478.386|100.499 +639823.462|221482.939|99.691 +639818.646|221487.478|98.725 +639808.962|221496.622|97.515 +639804.003|221501.316|97.850 +639799.062|221506.004|98.688 +639794.131|221510.670|98.719 +639789.293|221515.239|98.152 +639784.398|221519.866|97.722 +639779.528|221524.462|96.924 +639774.602|221529.110|96.219 +639769.682|221533.765|96.174 +639764.757|221538.428|96.265 +639759.783|221543.137|96.399 +639754.909|221547.740|95.720 +639749.925|221552.458|96.052 +639735.075|221566.503|95.509 +639720.320|221580.433|93.303 +639715.355|221585.133|93.507 +639710.365|221589.848|93.199 +639700.313|221599.398|95.479 +639695.284|221604.165|96.207 +639690.315|221608.874|96.774 +639685.247|221613.680|97.524 +639680.227|221618.445|98.316 +639670.138|221628.018|100.197 +639665.133|221632.767|100.923 +639660.131|221637.504|101.499 +639655.090|221642.286|102.075 +639650.088|221647.029|102.876 +639645.053|221651.802|103.364 +639640.017|221656.572|103.849 +639634.994|221661.330|104.111 +639629.965|221666.097|104.605 +639619.916|221675.616|105.367 +639609.839|221685.153|105.586 +639604.837|221689.884|105.223 +639599.838|221694.605|104.614 +639589.777|221704.118|104.135 +639584.720|221708.900|104.056 +639574.708|221718.367|103.519 +639559.596|221732.644|102.130 +639554.539|221737.430|102.172 +639539.415|221751.767|103.785 +639534.358|221756.556|104.284 +639529.308|221761.347|104.897 +639524.257|221766.130|105.147 +639519.252|221770.869|105.568 +639509.118|221780.483|107.040 +639499.081|221790.002|108.539 +639494.033|221794.781|108.759 +639488.998|221799.557|109.606 +639483.959|221804.333|110.192 +639468.893|221818.610|111.557 +639463.812|221823.426|111.972 +639458.829|221828.150|112.657 +639448.764|221837.688|113.572 +639443.726|221842.458|113.797 +639438.730|221847.185|113.678 +639433.689|221851.955|113.825 +639413.630|221870.947|114.511 +639408.637|221875.675|114.617 +639403.641|221880.402|114.703 +639398.603|221885.172|114.925 +639388.621|221894.624|115.376 +639368.617|221913.552|115.398 +639358.653|221922.980|115.337 +639353.681|221927.680|115.026 +639333.629|221946.623|112.913 +639323.570|221956.109|110.755 +639318.584|221960.824|110.502 +639313.622|221965.509|109.884 +639308.571|221970.270|108.658 +639303.618|221974.964|109.055 +639298.665|221979.645|108.719 +639293.709|221984.330|108.393 +639288.750|221989.015|108.055 +639278.798|221998.418|106.958 +639273.900|222003.051|106.900 +639259.138|222017.026|107.259 +639254.268|222021.638|107.674 +639249.330|222026.304|107.201 +639244.353|222031.010|106.869 +639239.512|222035.592|107.098 +639229.734|222044.842|106.994 +639224.775|222049.527|106.388 +639219.871|222054.169|106.522 +639215.006|222058.772|106.558 +639210.136|222063.383|106.534 +639205.192|222068.047|105.735 +639200.242|222072.719|104.882 +639195.277|222077.401|103.922 +639190.366|222082.043|103.593 +639185.523|222086.624|103.519 +639180.631|222091.251|103.446 +639156.628|222114.005|106.049 +639137.794|222131.887|110.512 +639118.863|222149.846|113.541 +639109.353|222158.853|114.066 +639104.617|222163.340|114.300 +639099.810|222167.887|114.379 +639085.466|222181.457|114.105 +639080.626|222186.029|113.578 +639075.761|222190.619|112.904 +639070.997|222195.124|112.673 +639051.703|222213.345|110.515 +639041.959|222222.535|108.692 +639032.419|222231.557|108.543 +639027.591|222236.114|107.726 +639022.793|222240.640|107.171 +639018.084|222245.099|107.259 +638994.931|222267.039|110.121 +638967.402|222293.136|114.062 +638912.577|222345.046|117.851 +638908.036|222349.341|117.836 +638903.497|222353.639|118.147 +638898.864|222358.016|117.927 +638894.417|222362.228|118.235 +638889.705|222366.675|117.601 +638885.102|222371.025|117.327 +638880.500|222375.368|116.800 +638866.955|222388.182|116.836 +638862.343|222392.537|116.352 +638844.235|222409.649|115.413 +638839.681|222413.947|114.821 +638835.155|222418.226|114.669 +638826.105|222426.770|113.642 +638821.637|222430.994|113.325 +638803.928|222447.740|113.139 +638794.165|222456.899|108.073 +638789.224|222461.532|105.312 +638770.424|222479.208|98.231 +638766.114|222483.289|98.512 +638757.559|222491.387|98.932 +638753.200|222495.508|98.783 +638748.799|222499.666|98.451 +638744.586|222503.653|98.795 +638743.087|222502.510|98.722 +638747.366|222498.450|98.478 +638751.719|222494.332|98.841 +638756.022|222490.250|98.749 +638760.317|222486.178|98.618 +638764.654|222482.064|98.478 +638768.958|222477.979|98.185 +638773.268|222473.892|97.939 +638787.984|222460.057|105.711 +638792.928|222455.412|108.518 +638797.875|222450.767|111.377 +638807.055|222442.092|113.096 +638811.444|222437.928|112.965 +638824.932|222425.151|113.550 +638834.027|222416.547|114.596 +638838.596|222412.221|114.995 +638843.180|222407.884|115.510 +638847.755|222403.556|115.998 +638852.330|222399.222|116.245 +638861.493|222390.544|116.861 +638884.234|222368.986|117.336 +638888.909|222364.560|117.760 +638893.518|222360.192|118.129 +638898.069|222355.873|117.879 +638902.705|222351.481|118.153 +638911.849|222342.809|118.001 +638948.708|222307.839|116.867 +638966.987|222290.463|113.809 +638990.118|222268.490|111.033 +639013.384|222246.379|107.762 +639018.038|222241.960|107.290 +639022.848|222237.403|107.604 +639042.136|222219.133|108.780 +639047.070|222214.467|109.838 +639051.962|222209.840|110.594 +639056.854|222205.216|111.368 +639071.427|222191.418|112.761 +639081.217|222182.155|113.928 +639095.790|222168.347|114.575 +639100.578|222163.803|114.398 +639105.397|222159.231|114.069 +639115.105|222150.023|114.111 +639143.759|222122.780|108.853 +639148.590|222118.183|107.820 +639162.882|222104.577|104.120 +639177.580|222090.632|103.577 +639182.512|222085.957|103.608 +639187.394|222081.330|103.650 +639192.384|222076.599|103.867 +639212.342|222057.717|106.567 +639217.317|222053.005|106.747 +639222.166|222048.405|106.628 +639227.189|222043.647|106.869 +639232.124|222038.975|107.235 +639237.071|222034.284|107.180 +639242.048|222029.563|106.912 +639246.989|222024.884|107.464 +639256.935|222015.459|107.595 +639271.815|222001.347|107.061 +639281.831|221991.862|107.765 +639291.783|221982.434|108.396 +639296.787|221977.698|108.829 +639306.773|221968.228|108.634 +639316.831|221958.724|110.573 +639321.900|221953.932|111.511 +639341.938|221934.974|114.215 +639346.973|221930.213|114.815 +639351.929|221925.513|114.843 +639356.964|221920.752|115.544 +639366.922|221911.312|115.693 +639381.900|221897.108|115.431 +639386.896|221892.375|115.407 +639396.872|221882.911|115.120 +639401.858|221878.180|114.949 +639406.845|221873.453|114.696 +639426.846|221854.485|114.285 +639431.878|221849.712|114.072 +639436.862|221844.981|113.819 +639441.854|221840.251|113.901 +639446.886|221835.478|113.660 +639461.867|221821.250|111.965 +639466.900|221816.473|111.551 +639471.883|221811.740|110.960 +639476.912|221806.964|110.329 +639481.905|221802.230|110.274 +639486.937|221797.451|109.594 +639496.962|221787.932|108.579 +639517.021|221768.873|105.659 +639527.064|221759.339|104.912 +639532.112|221754.541|104.004 +639537.114|221749.798|103.928 +639542.164|221744.995|103.017 +639547.169|221740.246|102.696 +639552.223|221735.451|102.334 +639557.230|221730.703|102.151 +639567.274|221721.202|103.559 +639617.392|221673.729|105.543 +639622.412|221668.968|105.135 +639627.429|221664.204|104.751 +639632.452|221659.440|104.345 +639637.475|221654.676|104.007 +639642.501|221649.903|103.550 +639647.488|221645.166|102.913 +639652.532|221640.378|102.151 +639662.566|221630.850|100.950 +639667.608|221626.061|100.395 +639672.573|221621.346|99.539 +639677.596|221616.567|98.365 +639682.659|221611.757|97.573 +639707.747|221587.922|93.403 +639712.642|221583.283|93.516 +639732.442|221564.550|95.488 +639737.322|221559.929|95.939 +639747.219|221550.553|96.162 +639752.129|221545.899|96.155 +639757.085|221541.205|96.223 +639761.956|221536.587|96.131 +639766.915|221531.890|96.204 +639771.819|221527.242|96.372 +639776.653|221522.682|97.658 +639781.567|221518.025|97.713 +639786.416|221513.432|98.042 +639796.151|221504.217|98.896 +639801.071|221499.545|98.277 +639805.978|221494.894|97.920 +639810.882|221490.239|97.588 +639815.704|221485.679|98.393 +639834.861|221467.580|102.069 +639839.659|221463.039|102.568 +639858.873|221444.848|103.885 +639868.487|221435.738|103.779 +639887.433|221417.816|106.263 +639892.191|221413.314|106.802 +639901.719|221404.292|107.332 +639906.459|221399.805|107.625 +639911.159|221395.361|108.323 +639925.198|221382.078|110.091 +639929.913|221377.618|110.688 +639934.625|221373.156|110.853 +639939.304|221368.721|110.914 +639944.019|221364.262|111.542 +639948.640|221359.894|112.161 +639953.358|221355.423|112.334 +639972.116|221337.653|112.627 +639976.798|221333.218|112.801 +639981.458|221328.802|112.779 +639986.155|221324.345|112.478 +640004.897|221306.576|111.941 +640009.530|221302.183|111.898 +640014.230|221297.727|111.728 +640023.542|221288.897|111.417 +640028.224|221284.456|111.097 +640037.529|221275.632|110.624 +640042.144|221271.255|110.524 +640046.761|221266.878|110.411 +640060.767|221253.586|109.177 +640065.400|221249.191|108.744 +640070.030|221244.796|108.335 +640074.693|221240.370|108.067 +640079.302|221236.002|107.869 +640077.598|221234.774|107.805 +640072.929|221239.193|108.030 +640068.168|221243.704|108.585 +640063.486|221248.136|108.939 +640058.807|221252.568|109.326 +640044.607|221266.019|110.408 +640039.903|221270.469|110.707 +640035.197|221274.919|110.707 +640030.449|221279.418|111.069 +640025.721|221283.889|111.274 +640011.463|221297.386|111.923 +640006.714|221301.879|112.029 +640001.974|221306.365|112.106 +639982.799|221324.510|112.810 +639977.980|221329.070|112.849 +639973.213|221333.578|112.898 +639968.440|221338.089|112.624 +639963.606|221342.664|112.865 +639949.216|221356.267|112.398 +639944.446|221360.769|111.749 +639939.655|221365.295|111.325 +639934.845|221369.843|111.075 +639930.038|221374.385|110.798 +639910.845|221392.505|108.668 +639906.023|221397.062|108.174 +639901.231|221401.579|107.348 +639896.382|221406.163|107.150 +639891.536|221410.741|106.921 +639886.680|221415.328|106.330 +639881.892|221419.843|105.513 +639867.295|221433.629|104.114 +639862.400|221438.259|104.004 +639857.493|221442.901|104.074 +639852.558|221447.564|103.885 +639847.641|221452.209|103.532 +639837.836|221461.469|102.550 +639832.993|221466.044|101.950 +639828.064|221470.692|101.194 +639818.326|221479.879|99.417 +639813.482|221484.442|98.185 +639808.535|221489.112|97.667 +639803.528|221493.854|98.024 +639798.556|221498.563|98.533 +639793.554|221503.297|98.865 +639778.705|221517.324|97.801 +639773.797|221521.960|97.551 +639768.884|221526.593|96.689 +639763.903|221531.293|96.091 +639758.935|221535.990|96.076 +639753.912|221540.742|96.223 +639748.996|221545.393|96.241 +639743.982|221550.136|96.305 +639734.027|221559.545|96.049 +639729.062|221564.227|95.275 +639724.145|221568.850|93.549 +639719.150|221573.572|93.348 +639714.142|221578.308|93.424 +639709.189|221582.990|93.339 +639704.141|221587.763|93.312 +639699.075|221592.576|94.732 +639688.971|221602.150|96.137 +639683.945|221606.917|96.981 +639678.925|221611.675|97.701 +639673.847|221616.491|98.765 +639663.761|221626.052|100.593 +639658.753|221630.801|101.343 +639653.755|221635.538|101.983 +639648.713|221640.311|102.483 +639643.672|221645.087|103.081 +639633.653|221654.573|103.867 +639618.562|221668.868|105.482 +639613.588|221673.577|105.830 +639608.571|221678.323|106.001 +639603.566|221683.047|105.586 +639578.579|221706.657|104.391 +639573.565|221711.403|104.635 +639568.563|221716.121|103.934 +639563.509|221720.897|103.611 +639558.507|221725.615|102.821 +639548.486|221735.086|102.520 +639543.475|221739.831|102.922 +639538.464|221744.571|103.145 +639523.394|221758.845|104.726 +639513.339|221768.370|105.903 +639508.340|221773.109|106.662 +639503.345|221777.843|107.390 +639493.305|221787.356|108.738 +639488.309|221792.089|109.222 +639483.319|221796.820|110.018 +639478.324|221801.547|110.460 +639468.341|221810.999|111.371 +639463.346|221815.727|111.502 +639458.365|221820.448|112.374 +639453.379|221825.172|112.971 +639443.409|221834.615|113.883 +639438.462|221839.294|114.011 +639433.423|221844.061|114.273 +639423.478|221853.467|114.251 +639418.485|221858.188|114.395 +639413.486|221862.916|114.361 +639403.504|221872.362|114.788 +639398.560|221877.040|115.059 +639393.574|221881.762|115.391 +639383.631|221891.165|115.672 +639378.626|221895.898|115.556 +639373.625|221900.626|115.620 +639348.719|221924.169|115.148 +639343.791|221928.826|114.812 +639303.801|221966.554|109.027 +639293.883|221975.933|108.957 +639288.927|221980.615|108.652 +639283.916|221985.345|108.256 +639274.052|221994.669|107.768 +639269.081|221999.363|107.366 +639264.113|222004.054|107.043 +639259.196|222008.708|107.476 +639244.478|222022.634|107.912 +639239.528|222027.307|107.336 +639234.565|222031.998|107.238 +639229.658|222036.637|107.278 +639224.736|222041.291|107.122 +639219.831|222045.930|107.238 +639214.900|222050.591|107.028 +639210.032|222055.202|107.582 +639195.149|222069.239|105.159 +639190.132|222073.966|104.169 +639185.264|222078.565|103.794 +639180.332|222083.229|103.794 +639175.489|222087.807|103.772 +639170.612|222092.422|103.903 +639146.685|222115.105|107.832 +639141.988|222119.561|108.829 +639113.575|222146.502|113.992 +639104.019|222155.537|114.151 +639099.216|222160.090|114.642 +639094.464|222164.583|114.788 +639089.654|222169.134|114.852 +639079.943|222178.302|113.892 +639075.115|222182.862|113.489 +639070.266|222187.437|112.941 +639065.404|222192.024|112.337 +639060.597|222196.563|111.804 +639050.960|222205.667|111.030 +639022.034|222232.987|107.817 +639017.261|222237.498|107.439 +639012.573|222241.939|107.701 +638994.090|222259.462|110.103 +638989.481|222263.829|110.637 +638984.943|222268.139|111.664 +638980.334|222272.507|112.228 +638975.814|222276.799|113.057 +638966.573|222285.552|113.736 +638962.061|222289.835|114.657 +638957.566|222294.102|115.699 +638943.901|222307.053|117.357 +638925.693|222324.302|118.686 +638921.017|222328.721|118.382 +638916.418|222333.071|118.260 +638911.827|222337.414|118.205 +638902.631|222346.113|118.080 +638898.120|222350.384|118.281 +638893.530|222354.724|118.019 +638888.992|222359.022|118.375 +638884.377|222363.383|118.019 +638866.229|222380.547|117.452 +638857.122|222389.157|117.107 +638852.620|222393.409|116.723 +638838.959|222406.321|115.623 +638834.411|222410.615|115.062 +638829.869|222414.907|114.565 +638825.294|222419.223|113.928 +638820.680|222423.578|113.087 +638816.178|222427.833|112.889 +638811.773|222432.000|112.938 +638807.381|222436.154|112.807 +638802.940|222440.358|112.706 +638798.512|222444.546|112.688 +638793.979|222448.822|111.914 +638774.292|222467.293|101.115 +638769.409|222471.874|98.545 +638764.993|222476.050|98.295 +638760.722|222480.091|98.533 +638756.422|222484.167|98.880 +638752.142|222488.214|98.853 +638747.829|222492.296|98.935 +638743.458|222496.429|98.746 +638739.182|222500.473|98.789 +638736.012|222501.114|98.929 +638740.221|222497.118|98.585 +638744.614|222492.957|98.880 +638748.911|222488.885|98.978 +638753.236|222484.782|98.734 +638757.528|222480.710|98.606 +638761.838|222476.623|98.323 +638766.056|222472.615|97.859 +638775.883|222463.379|103.090 +638785.747|222454.110|108.448 +638790.654|222449.499|111.082 +638795.345|222445.070|112.414 +638813.108|222428.239|112.883 +638822.124|222419.701|113.401 +638826.791|222415.291|114.273 +638831.354|222410.975|114.888 +638835.877|222406.692|115.324 +638840.495|222402.325|116.022 +638845.024|222398.036|116.269 +638849.624|222393.680|116.644 +638854.168|222389.380|117.016 +638886.197|222359.046|118.436 +638890.723|222354.751|118.031 +638895.350|222350.368|118.235 +638899.891|222346.065|118.238 +638913.674|222332.995|117.854 +638918.356|222328.563|118.196 +638923.001|222324.162|118.339 +638927.649|222319.760|118.525 +638936.900|222310.985|118.058 +638941.408|222306.706|117.403 +638946.035|222302.310|116.909 +638959.705|222289.323|114.751 +638968.910|222280.581|113.535 +638987.314|222263.101|110.850 +638991.972|222258.672|110.003 +639015.335|222236.495|107.448 +639020.156|222231.929|107.869 +639029.809|222222.791|108.466 +639044.428|222208.962|110.103 +639054.166|222199.751|111.298 +639058.994|222195.176|111.642 +639063.920|222190.519|112.386 +639068.809|222185.895|112.862 +639073.676|222181.286|113.215 +639078.559|222176.665|113.718 +639083.476|222172.020|114.520 +639088.362|222167.390|114.727 +639093.184|222162.821|114.803 +639098.030|222158.228|114.706 +639102.767|222153.732|114.078 +639112.450|222144.549|113.898 +639117.220|222140.019|113.172 +639131.601|222126.364|111.261 +639136.301|222121.890|109.902 +639141.092|222117.333|108.966 +639160.191|222099.167|104.437 +639165.095|222094.516|104.141 +639169.960|222089.901|103.931 +639174.892|222085.228|103.952 +639179.759|222080.611|103.818 +639189.729|222071.174|104.595 +639194.719|222066.459|105.336 +639204.655|222057.059|106.531 +639209.727|222052.270|107.811 +639214.589|222047.653|107.278 +639219.551|222042.949|107.323 +639224.498|222038.259|107.250 +639229.408|222033.604|107.332 +639234.398|222028.874|107.226 +639239.384|222024.152|107.707 +639259.148|222005.416|107.549 +639264.061|222000.750|107.189 +639274.040|221991.304|108.015 +639278.978|221986.622|108.067 +639288.988|221977.146|108.850 +639293.980|221972.416|109.116 +639308.918|221958.270|110.252 +639313.945|221953.521|111.222 +639324.015|221943.999|112.859 +639339.033|221929.786|114.596 +639344.044|221925.037|114.773 +639349.079|221920.276|115.455 +639364.042|221906.094|115.751 +639369.031|221901.360|115.574 +639373.972|221896.676|115.355 +639379.035|221891.884|115.812 +639384.015|221887.157|115.452 +639388.965|221882.463|115.617 +639393.997|221877.690|115.373 +639398.975|221872.965|114.898 +639403.961|221868.238|114.721 +639413.941|221858.774|114.556 +639418.921|221854.046|114.230 +639423.956|221849.273|114.191 +639433.935|221839.812|114.072 +639438.922|221835.082|113.953 +639443.909|221830.354|113.822 +639448.935|221825.581|113.407 +639453.909|221820.853|112.639 +639458.886|221816.126|111.941 +639463.873|221811.395|111.600 +639468.902|221806.619|111.124 +639473.886|221801.886|110.576 +639483.908|221792.373|109.564 +639488.894|221787.636|109.045 +639498.919|221778.114|107.726 +639503.912|221773.372|107.073 +639508.947|221768.586|106.272 +639513.991|221763.798|105.751 +639518.987|221759.046|104.848 +639524.035|221754.255|104.306 +639539.086|221739.969|103.184 +639544.139|221735.174|102.696 +639549.095|221730.468|102.297 +639554.149|221725.679|102.379 +639559.190|221720.912|103.394 +639599.180|221683.041|106.168 +639604.185|221678.292|106.052 +639624.195|221659.300|104.818 +639629.218|221654.530|104.321 +639639.222|221645.029|103.404 +639644.251|221640.256|102.974 +639649.237|221635.519|102.431 +639659.275|221625.982|101.044 +639669.336|221616.415|99.338 +639674.353|221611.644|98.362 +639679.370|221606.874|97.494 +639684.430|221602.068|96.860 +639689.410|221597.331|95.881 +639694.433|221592.552|95.049 +639699.475|221587.760|94.016 +639704.498|221582.987|93.351 +639719.427|221568.820|92.729 +639729.165|221559.630|95.838 +639734.134|221554.930|96.436 +639739.035|221550.282|96.494 +639744.006|221545.567|96.226 +639748.956|221540.873|96.308 +639753.879|221536.200|96.104 +639758.838|221531.500|96.134 +639763.711|221526.885|96.732 +639768.631|221522.231|97.402 +639773.511|221517.613|97.951 +639778.427|221512.950|97.969 +639783.310|221508.326|98.472 +639793.067|221499.085|98.990 +639798.026|221494.375|98.493 +639802.927|221489.721|98.149 +639807.850|221485.055|98.222 +639817.509|221475.917|99.606 +639822.315|221471.372|100.578 +639856.026|221439.459|104.367 +639860.818|221434.918|104.452 +639865.631|221430.361|104.864 +639875.208|221421.290|105.708 +639879.993|221416.755|105.915 +639884.733|221412.268|106.631 +639889.484|221407.772|107.226 +639894.261|221403.249|107.595 +639899.000|221398.759|107.857 +639922.625|221376.393|110.533 +639932.053|221367.466|111.274 +639936.759|221363.006|111.511 +639941.499|221358.517|111.898 +639946.174|221354.094|112.468 +639965.054|221336.199|112.843 +639969.699|221331.795|112.913 +639997.911|221305.042|112.572 +640002.617|221300.577|112.313 +640007.323|221296.115|112.090 +640039.955|221265.153|110.609 +640044.579|221260.767|110.469 +640053.876|221251.940|109.564 +640058.557|221247.496|109.106 +640063.205|221243.086|108.899 +640067.875|221238.642|107.881 +640072.481|221234.277|108.024 +640077.165|221229.827|107.329 +640072.782|221231.412|108.034 +640068.152|221235.789|108.021 +640063.428|221240.266|108.674 +640058.719|221244.722|108.899 +640054.025|221249.166|109.390 +640049.276|221253.668|109.975 +640039.882|221262.556|110.472 +640035.106|221267.080|110.975 +640006.714|221293.939|111.917 +640001.971|221298.431|112.401 +639997.167|221302.976|112.599 +639978.078|221321.035|113.093 +639968.571|221330.024|112.987 +639963.776|221334.553|112.892 +639944.541|221352.738|112.441 +639939.792|221357.221|112.069 +639935.031|221361.714|111.371 +639930.197|221366.283|111.353 +639920.571|221375.375|110.551 +639910.909|221384.498|109.698 +639901.244|221393.617|108.451 +639896.437|221398.153|107.820 +639886.671|221407.382|107.192 +639881.791|221411.991|106.854 +639876.975|221416.526|105.851 +639872.092|221421.141|105.598 +639867.216|221425.750|105.281 +639862.299|221430.392|104.879 +639857.444|221434.976|104.364 +639827.960|221462.816|101.642 +639823.087|221467.413|100.819 +639818.158|221472.061|100.081 +639813.296|221476.645|99.106 +639808.359|221481.303|98.496 +639803.375|221486.018|98.512 +639793.384|221495.476|98.999 +639788.342|221500.246|99.231 +639778.467|221509.573|98.185 +639773.459|221514.306|97.993 +639768.463|221519.025|97.631 +639763.519|221523.694|97.234 +639758.563|221528.370|96.311 +639753.562|221533.097|96.107 +639748.551|221537.837|96.037 +639743.531|221542.586|96.177 +639738.514|221547.335|96.317 +639733.494|221552.083|96.500 +639728.455|221556.847|96.232 +639708.527|221575.657|93.549 +639703.519|221580.396|93.674 +639693.421|221589.961|94.735 +639688.337|221594.786|95.683 +639683.302|221599.562|96.643 +639678.233|221604.366|97.338 +639673.216|221609.121|98.009 +639668.138|221613.943|99.179 +639663.121|221618.697|100.002 +639642.919|221637.851|102.846 +639632.897|221647.340|103.660 +639627.813|221652.162|104.376 +639617.806|221661.638|105.211 +639612.732|221666.445|105.665 +639607.757|221671.157|106.110 +639602.740|221675.902|106.305 +639592.718|221685.382|106.330 +639587.668|221690.158|106.043 +639582.660|221694.892|105.927 +639572.656|221704.340|104.882 +639552.637|221723.241|102.739 +639542.618|221732.720|102.703 +639517.576|221756.437|104.952 +639512.571|221761.180|105.555 +639507.569|221765.919|106.049 +639477.644|221794.281|110.018 +639462.672|221808.466|111.578 +639457.679|221813.194|111.807 +639437.785|221832.040|114.023 +639432.789|221836.767|114.008 +639427.797|221841.491|114.090 +639422.804|221846.216|114.294 +639417.848|221850.901|114.041 +639412.865|221855.622|114.535 +639402.919|221865.028|114.724 +639397.929|221869.753|114.998 +639392.995|221874.428|115.465 +639388.051|221879.107|115.687 +639383.058|221883.831|115.931 +639378.102|221888.516|115.836 +639373.152|221893.201|115.989 +639363.191|221902.619|115.900 +639358.235|221907.310|115.888 +639348.311|221916.692|115.754 +639338.384|221926.065|114.718 +639323.406|221940.207|113.179 +639308.416|221954.356|111.002 +639303.399|221959.077|109.524 +639298.418|221963.790|109.475 +639293.438|221968.499|109.469 +639288.524|221973.141|109.073 +639278.563|221982.553|108.463 +639273.601|221987.241|108.152 +639268.599|221991.969|107.994 +639258.757|222001.274|107.985 +639239.092|222019.882|108.451 +639234.072|222024.616|107.585 +639229.149|222029.270|107.400 +639224.239|222033.915|107.409 +639219.322|222038.563|107.323 +639214.424|222043.199|107.509 +639209.489|222047.863|107.293 +639204.570|222052.505|106.738 +639199.626|222057.178|106.467 +639189.729|222066.517|104.824 +639179.845|222075.853|104.050 +639174.956|222080.473|104.028 +639170.121|222085.049|104.080 +639165.190|222089.715|104.144 +639160.380|222094.269|104.486 +639141.385|222112.295|108.841 +639131.890|222121.301|110.804 +639117.684|222134.780|113.584 +639112.898|222139.309|113.761 +639103.282|222148.410|114.212 +639088.968|222161.956|114.940 +639079.346|222171.048|114.303 +639064.822|222184.761|112.804 +639059.963|222189.348|112.231 +639055.151|222193.890|111.691 +639050.313|222198.462|111.347 +639035.784|222212.169|109.244 +639030.977|222216.707|108.887 +639026.204|222221.215|108.454 +639021.394|222225.757|108.137 +639016.615|222230.271|107.704 +639011.890|222234.736|107.701 +639007.202|222239.174|107.979 +638988.640|222256.752|109.887 +638970.355|222274.086|113.197 +638965.722|222278.469|113.297 +638943.072|222299.939|117.068 +638934.041|222308.492|118.336 +638915.643|222325.890|118.308 +638910.971|222330.303|118.068 +638901.863|222338.914|118.171 +638897.307|222343.224|118.388 +638892.771|222347.515|118.439 +638883.624|222356.160|118.171 +638874.523|222364.761|117.970 +638860.971|222377.572|117.970 +638856.317|222381.961|117.242 +638847.213|222390.562|116.717 +638842.702|222394.823|116.580 +638838.187|222399.091|116.449 +638833.600|222403.416|115.669 +638829.004|222407.753|115.141 +638815.288|222420.689|113.044 +638810.847|222424.889|113.163 +638783.753|222450.459|109.963 +638759.534|222473.185|98.146 +638755.251|222477.242|98.573 +638750.966|222481.295|98.765 +638746.683|222485.346|98.981 +638742.395|222489.397|98.957 +638738.054|222493.503|98.926 +638733.729|222497.590|98.746 +638729.523|222501.571|99.155 +638728.374|222500.690|99.210 +638732.553|222496.721|98.701 +638736.960|222492.546|99.036 +638741.243|222488.486|99.045 +638745.555|222484.395|98.975 +638749.838|222480.332|98.774 +638754.123|222476.266|98.600 +638758.345|222472.255|98.121 +638763.112|222467.759|99.850 +638772.905|222458.554|105.181 +638777.916|222453.848|108.241 +638782.823|222449.233|110.832 +638800.715|222432.290|112.258 +638814.264|222419.457|113.331 +638818.872|222415.099|114.142 +638828.025|222406.436|115.218 +638832.628|222402.081|115.797 +638841.836|222393.363|116.797 +638883.045|222354.300|118.272 +638887.669|222349.917|118.427 +638892.274|222345.552|118.485 +638896.910|222341.154|118.470 +638901.488|222336.811|118.412 +638906.076|222332.461|118.427 +638910.706|222328.066|118.129 +638915.393|222323.622|118.510 +638919.996|222319.257|118.375 +638924.714|222314.786|118.680 +638933.989|222305.986|118.348 +638938.567|222301.634|117.833 +638956.843|222284.257|114.687 +638970.764|222271.029|112.950 +638975.348|222266.670|112.225 +638984.583|222257.889|110.603 +639012.850|222231.039|107.878 +639017.700|222226.442|108.125 +639027.420|222217.234|108.872 +639037.170|222208.005|109.942 +639046.967|222198.730|111.139 +639056.757|222189.461|112.039 +639091.013|222157.015|114.937 +639095.817|222152.452|114.471 +639100.642|222147.871|114.194 +639129.583|222120.378|110.975 +639134.335|222115.861|110.070 +639139.178|222111.252|109.146 +639148.770|222102.120|106.830 +639158.377|222092.979|104.629 +639163.279|222088.325|104.288 +639168.152|222083.701|104.187 +639173.139|222078.974|104.254 +639178.061|222074.304|104.190 +639193.039|222060.125|105.949 +639198.014|222055.419|106.561 +639203.009|222050.685|106.951 +639208.005|222045.958|107.354 +639212.973|222041.246|107.506 +639217.868|222036.604|107.357 +639222.876|222031.858|107.424 +639232.788|222022.470|108.143 +639237.845|222017.688|108.945 +639267.499|221989.564|108.411 +639272.486|221984.839|108.445 +639282.437|221975.409|109.049 +639287.421|221970.687|109.119 +639297.415|221961.220|109.829 +639322.464|221937.528|113.456 +639327.499|221932.758|113.998 +639332.434|221928.088|114.416 +639337.442|221923.340|114.447 +639342.489|221918.566|115.349 +639347.467|221913.854|115.852 +639357.415|221904.424|115.718 +639362.374|221899.721|115.940 +639372.369|221890.247|115.961 +639377.322|221885.553|116.089 +639382.314|221880.820|115.992 +639387.301|221876.089|115.800 +639392.236|221871.405|115.504 +639397.216|221866.677|115.132 +639402.203|221861.947|114.965 +639407.189|221857.216|114.776 +639412.176|221852.486|114.578 +639422.155|221843.022|114.422 +639427.135|221838.294|114.075 +639432.079|221833.606|114.017 +639437.066|221828.879|113.864 +639442.092|221824.106|113.438 +639452.059|221814.645|112.685 +639457.036|221809.914|112.020 +639462.020|221805.184|111.588 +639467.006|221800.450|111.094 +639476.976|221790.980|109.948 +639481.960|221786.243|109.204 +639486.946|221781.501|108.277 +639496.977|221771.976|107.162 +639501.921|221767.279|106.455 +639506.917|221762.536|106.049 +639511.958|221757.741|105.214 +639526.961|221743.510|104.601 +639541.926|221729.291|102.575 +639551.933|221719.812|103.026 +639556.929|221715.088|103.958 +639561.924|221710.360|104.589 +639571.873|221700.942|105.531 +639591.819|221682.053|106.616 +639596.830|221677.301|106.321 +639606.794|221667.856|106.168 +639611.817|221663.089|105.531 +639616.788|221658.370|105.101 +639621.805|221653.609|104.766 +639636.786|221639.390|103.376 +639641.770|221634.663|102.867 +639651.804|221625.132|101.502 +639656.760|221620.423|100.624 +639661.807|221615.628|99.950 +639666.824|221610.861|98.941 +639696.832|221582.341|93.482 +639701.819|221577.620|93.668 +639721.460|221559.036|95.802 +639726.413|221554.354|96.631 +639731.314|221549.712|96.719 +639736.289|221544.991|96.317 +639741.263|221540.272|95.982 +639746.167|221535.624|96.082 +639751.126|221530.927|96.104 +639755.973|221526.349|97.143 +639760.871|221521.710|97.393 +639765.766|221517.074|97.679 +639770.691|221512.417|98.280 +639775.590|221507.777|98.515 +639790.260|221493.885|99.124 +639795.149|221489.246|98.932 +639800.089|221484.561|98.713 +639804.963|221479.943|98.804 +639809.849|221475.313|98.734 +639814.695|221470.729|99.243 +639824.303|221461.652|101.291 +639843.508|221443.486|103.724 +639848.306|221438.947|104.236 +639862.717|221425.305|105.174 +639867.539|221420.736|105.479 +639872.306|221416.225|105.888 +639877.030|221411.762|106.778 +639881.788|221407.260|107.284 +639886.570|221402.731|107.558 +639891.368|221398.186|107.710 +639905.557|221384.763|109.308 +639910.314|221380.261|109.896 +639915.039|221375.793|110.365 +639919.702|221371.379|110.947 +639924.472|221366.868|111.466 +639929.185|221362.403|111.639 +639938.594|221353.494|112.161 +639943.324|221349.019|112.663 +639962.143|221331.188|113.130 +639966.882|221326.699|113.209 +639971.521|221322.303|113.352 +639976.273|221317.798|113.368 +639985.652|221308.907|113.307 +640004.495|221291.034|112.072 +640018.464|221277.787|111.560 +640023.142|221273.352|111.633 +640037.148|221260.063|110.774 +640041.805|221255.643|110.390 +640055.781|221242.378|109.049 +640060.420|221237.980|108.908 +640065.174|221233.460|107.997 +640069.701|221229.178|108.351 +640079.131|221220.213|106.549 +640079.924|221217.104|106.433 +640075.312|221221.463|106.552 +640070.487|221226.041|107.814 +640065.818|221230.461|108.055 +640061.154|221234.871|108.277 +640056.393|221239.376|108.850 +640051.727|221243.790|109.149 +640046.987|221248.279|109.661 +640042.269|221252.742|110.024 +640037.557|221257.201|110.377 +640032.832|221261.672|110.856 +640028.071|221266.177|111.277 +640023.389|221270.609|111.514 +640018.674|221275.065|111.639 +640004.507|221288.461|112.014 +639999.752|221292.963|112.566 +639994.936|221297.517|112.846 +639990.233|221301.967|113.051 +639980.717|221310.965|113.258 +639975.987|221315.436|113.374 +639971.235|221319.926|113.276 +639966.523|221324.379|113.291 +639961.728|221328.908|113.200 +639942.724|221346.867|112.831 +639938.003|221351.320|112.197 +639933.214|221355.844|112.167 +639928.487|221360.306|111.636 +639923.710|221364.817|111.533 +639914.195|221373.799|110.649 +639909.443|221378.280|109.920 +639904.666|221382.788|109.451 +639899.887|221387.296|109.003 +639890.371|221396.269|107.732 +639875.906|221409.933|106.933 +639871.099|221414.466|106.351 +639866.320|221418.971|105.501 +639861.507|221423.512|105.007 +639856.666|221428.084|104.830 +639851.826|221432.650|104.156 +639846.943|221437.262|103.946 +639842.118|221441.819|103.657 +639827.564|221455.553|102.108 +639822.700|221460.134|101.160 +639817.887|221464.670|100.191 +639813.034|221469.242|99.088 +639808.133|221473.865|98.594 +639803.159|221478.578|99.133 +639793.311|221487.880|98.890 +639788.342|221492.583|99.438 +639783.341|221497.317|99.837 +639773.569|221506.534|98.713 +639768.625|221511.203|98.359 +639763.693|221515.855|97.753 +639758.755|221520.515|97.317 +639748.883|221529.833|96.372 +639743.942|221534.499|95.988 +639738.980|221539.187|95.945 +639733.963|221543.930|96.104 +639728.979|221548.648|96.552 +639724.023|221553.333|96.533 +639719.012|221558.057|95.765 +639709.231|221567.250|92.230 +639704.126|221572.090|93.306 +639694.119|221581.551|93.440 +639689.090|221586.315|94.110 +639684.037|221591.110|95.412 +639678.949|221595.932|96.475 +639673.923|221600.696|97.390 +639668.858|221605.497|98.140 +639663.789|221610.300|99.082 +639658.766|221615.064|100.154 +639653.715|221619.844|100.715 +639648.661|221624.632|101.511 +639643.617|221629.411|102.133 +639623.470|221648.486|104.367 +639608.394|221662.753|105.647 +639603.319|221667.560|106.388 +639598.351|221672.257|106.570 +639593.291|221677.042|106.732 +639588.235|221681.825|106.790 +639573.223|221696.004|106.211 +639568.179|221700.756|105.257 +639563.174|221705.489|105.196 +639553.119|221714.981|104.385 +639543.063|221724.466|103.108 +639538.007|221729.243|103.099 +639527.942|221738.771|104.105 +639522.888|221743.556|104.577 +639512.830|221753.063|104.629 +639507.786|221757.851|105.933 +639502.735|221762.627|106.244 +639497.736|221767.355|106.537 +639492.692|221772.134|107.144 +639477.668|221786.368|109.545 +639472.630|221791.141|110.079 +639467.592|221795.909|110.743 +639462.605|221800.633|111.362 +639457.567|221805.400|111.603 +639447.600|221814.840|113.014 +639437.624|221824.276|113.694 +639432.631|221828.998|113.721 +639427.596|221833.762|114.044 +639422.652|221838.437|114.227 +639412.618|221847.926|114.443 +639407.683|221852.598|114.831 +639402.690|221857.323|114.962 +639397.692|221862.047|114.971 +639392.751|221866.723|115.266 +639372.835|221885.569|116.105 +639367.870|221890.260|115.800 +639352.953|221904.363|115.699 +639348.012|221909.041|116.022 +639343.041|221913.738|115.736 +639338.057|221918.441|115.266 +639333.068|221923.154|114.684 +639328.084|221927.860|114.294 +639323.147|221932.523|113.880 +639318.145|221937.245|113.230 +639298.196|221956.057|109.728 +639288.320|221965.393|109.490 +639278.432|221974.738|109.180 +639273.476|221979.420|108.884 +639268.526|221984.099|108.722 +639263.634|221988.722|108.735 +639258.709|221993.386|108.945 +639229.222|222021.260|108.405 +639224.266|222025.935|107.808 +639219.325|222030.602|107.403 +639214.415|222035.247|107.400 +639209.486|222039.904|107.211 +639204.622|222044.504|107.253 +639199.687|222049.167|107.052 +639194.777|222053.803|106.607 +639189.781|222058.516|105.772 +639170.124|222077.081|104.288 +639165.235|222081.705|104.275 +639160.407|222086.271|104.412 +639155.555|222090.867|104.790 +639146.051|222099.886|107.116 +639141.367|222104.330|108.244 +639112.932|222131.302|113.965 +639098.487|222144.963|114.187 +639093.717|222149.480|114.547 +639074.472|222167.674|114.386 +639045.406|222195.118|111.511 +639040.545|222199.711|111.002 +639030.818|222208.895|109.704 +639026.012|222213.431|108.988 +639016.350|222222.556|108.006 +639011.628|222227.022|108.000 +639006.907|222231.493|108.363 +638983.611|222253.558|110.207 +638979.103|222257.840|111.453 +638956.182|222279.566|114.520 +638951.607|222283.907|115.352 +638938.016|222296.793|117.504 +638933.505|222301.070|118.141 +638924.355|222309.732|118.677 +638915.034|222318.544|118.220 +638901.290|222331.544|118.235 +638892.213|222340.136|118.570 +638887.620|222344.480|118.583 +638883.027|222348.820|118.327 +638878.479|222353.124|118.351 +638860.407|222370.217|118.205 +638842.290|222387.341|117.309 +638837.645|222391.727|116.708 +638828.565|222400.301|115.657 +638824.002|222404.608|115.029 +638819.457|222408.899|114.541 +638810.310|222417.534|113.331 +638805.793|222421.798|112.804 +638801.264|222426.072|111.965 +638796.738|222430.348|111.694 +638783.582|222442.790|111.609 +638779.190|222446.944|111.584 +638750.411|222473.980|98.582 +638746.135|222478.028|98.816 +638741.834|222482.100|98.947 +638737.548|222486.154|99.179 +638733.251|222490.217|99.118 +638728.898|222494.332|98.807 +638724.677|222498.331|99.130 +638720.455|222502.327|99.234 +638717.700|222503.015|99.463 +638721.897|222499.038|99.246 +638726.054|222495.097|98.859 +638730.383|222491.003|99.045 +638734.720|222486.895|99.057 +638738.990|222482.850|99.005 +638743.276|222478.790|98.804 +638747.564|222474.724|98.637 +638751.798|222470.710|98.213 +638756.385|222466.388|99.514 +638766.258|222457.122|105.178 +638771.049|222452.614|107.369 +638776.097|222447.880|110.630 +638780.632|222443.598|111.371 +638785.106|222439.370|111.822 +638789.425|222435.274|111.523 +638798.304|222426.870|111.682 +638802.803|222422.618|112.359 +638807.400|222418.275|113.044 +638811.901|222414.023|113.514 +638816.510|222409.670|114.319 +638821.109|222405.321|114.840 +638825.669|222401.014|115.431 +638830.223|222396.707|116.025 +638834.826|222392.358|116.641 +638839.398|222388.036|117.114 +638862.181|222366.465|118.336 +638866.674|222362.204|118.244 +638871.295|222357.827|118.308 +638875.843|222353.517|118.281 +638880.405|222349.195|118.339 +638885.047|222344.797|118.610 +638889.583|222340.499|118.561 +638907.926|222323.113|118.278 +638912.620|222318.666|118.385 +638921.877|222309.897|118.479 +638926.513|222305.499|118.296 +638940.198|222292.508|116.745 +638963.083|222270.770|113.047 +638976.978|222257.578|111.545 +638981.532|222253.247|110.289 +639009.720|222226.503|108.043 +639014.515|222221.962|108.250 +639029.078|222208.182|109.649 +639033.964|222203.564|110.280 +639038.856|222198.934|111.027 +639043.711|222194.341|111.496 +639063.197|222175.900|113.063 +639068.132|222171.234|113.560 +639073.009|222166.625|114.407 +639087.636|222152.775|115.102 +639092.431|222148.221|114.568 +639097.237|222143.659|114.130 +639102.099|222139.056|114.169 +639106.973|222134.438|114.373 +639111.825|222129.836|113.974 +639145.289|222098.024|106.958 +639154.909|222088.880|104.885 +639159.798|222084.241|104.431 +639164.720|222079.574|104.303 +639169.646|222074.905|104.263 +639184.502|222060.841|105.101 +639189.543|222056.077|105.900 +639194.533|222051.359|106.711 +639199.532|222046.625|107.125 +639204.439|222041.974|107.046 +639209.453|222037.219|107.156 +639214.372|222032.556|107.302 +639219.359|222027.834|107.686 +639224.412|222023.052|108.360 +639249.321|221999.448|109.539 +639254.243|221994.779|109.295 +639259.205|221990.067|108.978 +639264.171|221985.354|108.704 +639269.169|221980.618|108.914 +639274.168|221975.881|109.195 +639284.141|221966.429|109.417 +639289.134|221961.699|109.713 +639299.137|221952.226|110.667 +639314.262|221937.918|112.831 +639324.302|221928.415|114.096 +639329.340|221923.647|114.715 +639334.318|221918.932|115.129 +639339.347|221914.171|115.644 +639344.361|221909.419|115.900 +639349.366|221904.677|115.974 +639369.367|221885.715|116.275 +639374.347|221880.988|115.891 +639379.346|221876.248|115.967 +639389.313|221866.790|115.434 +639394.293|221862.062|115.020 +639399.322|221857.289|114.675 +639404.318|221852.553|114.803 +639409.305|221847.819|114.651 +639414.337|221843.046|114.383 +639424.310|221833.585|114.078 +639459.292|221800.377|111.548 +639464.324|221795.601|111.161 +639469.305|221790.864|110.341 +639474.337|221786.085|109.661 +639479.278|221781.391|109.061 +639484.313|221776.606|108.387 +639489.351|221771.820|107.695 +639494.292|221767.117|106.647 +639499.334|221762.335|106.293 +639514.372|221748.049|104.644 +639524.376|221738.557|104.199 +639529.378|221733.812|103.910 +639534.428|221729.020|103.657 +639539.387|221724.305|102.843 +639544.438|221719.516|102.998 +639549.434|221714.798|104.190 +639554.429|221710.077|105.144 +639559.428|221705.340|105.485 +639564.421|221700.613|106.129 +639569.419|221695.879|106.409 +639584.370|221681.709|107.037 +639589.375|221676.963|107.061 +639604.371|221662.723|105.763 +639609.339|221658.005|105.412 +639614.359|221653.237|104.995 +639619.337|221648.507|104.428 +639634.281|221634.309|102.828 +639639.277|221629.564|102.053 +639644.248|221624.845|102.014 +639649.250|221620.090|101.191 +639654.255|221615.332|100.398 +639659.253|221610.584|99.801 +639664.231|221605.844|98.585 +639669.239|221601.086|97.939 +639674.222|221596.343|96.774 +639679.257|221591.552|95.628 +639684.235|221586.818|94.808 +639689.230|221582.064|93.677 +639699.155|221572.642|93.050 +639704.117|221567.933|92.827 +639709.033|221563.282|93.540 +639718.738|221554.116|96.402 +639723.697|221549.413|96.299 +639728.617|221544.744|96.058 +639733.530|221540.080|95.936 +639738.437|221535.426|95.973 +639743.372|221530.750|96.341 +639753.101|221521.533|97.119 +639757.984|221516.912|97.649 +639762.873|221512.279|98.036 +639767.698|221507.710|98.679 +639772.602|221503.065|98.877 +639782.280|221493.900|99.844 +639792.085|221484.588|99.066 +639796.956|221479.971|99.170 +639801.836|221475.341|99.170 +639806.691|221470.735|98.911 +639811.550|221466.126|99.213 +639816.384|221461.554|99.895 +639825.900|221452.557|101.901 +639840.332|221438.893|103.577 +639845.124|221434.348|103.650 +639849.985|221429.745|104.047 +639854.743|221425.237|104.519 +639859.519|221420.720|105.348 +639864.235|221416.261|106.308 +639868.987|221411.768|107.375 +639873.751|221407.248|107.296 +639878.573|221402.679|107.662 +639883.288|221398.214|108.146 +639888.162|221393.590|107.997 +639897.623|221384.632|109.210 +639902.362|221380.145|109.530 +639907.093|221375.668|110.374 +639911.838|221371.172|110.643 +639921.284|221362.226|111.639 +639926.045|221357.712|111.816 +639930.818|221353.189|111.908 +639935.506|221348.745|112.328 +639940.231|221344.276|112.886 +639949.652|221335.352|113.428 +639954.416|221330.832|113.285 +639959.171|221326.324|113.218 +639963.892|221321.849|113.471 +639968.678|221317.311|113.218 +639973.362|221312.870|113.395 +639978.078|221308.398|113.371 +639982.845|221303.878|113.331 +639987.539|221299.425|113.139 +639992.318|221294.893|113.035 +639997.030|221290.421|112.749 +640001.782|221285.910|112.548 +640006.546|221281.387|111.926 +640011.347|221276.827|111.411 +640015.958|221272.462|111.984 +640030.119|221259.024|111.063 +640034.853|221254.525|110.457 +640039.629|221249.989|109.948 +640044.268|221245.591|109.753 +640049.041|221241.059|109.329 +640053.699|221236.636|109.042 +640058.423|221232.149|108.335 +640063.123|221227.690|108.158 +640067.717|221223.331|108.061 +640072.581|221218.699|106.491 +640080.030|221209.012|105.936 +640075.327|221213.468|106.330 +640061.096|221226.962|108.168 +640056.354|221231.457|108.619 +640051.608|221235.956|109.103 +640046.896|221240.419|109.399 +640042.174|221244.896|109.795 +640032.646|221253.921|110.557 +640018.430|221267.393|111.743 +640013.681|221271.895|112.161 +640008.939|221276.379|111.810 +640004.172|221280.896|112.395 +639994.647|221289.918|112.892 +639989.883|221294.432|113.188 +639985.091|221298.968|113.331 +639980.358|221303.448|113.435 +639975.533|221308.017|113.535 +639961.256|221321.529|113.511 +639956.547|221325.979|113.121 +639951.780|221330.493|113.270 +639946.964|221335.053|113.419 +639937.451|221344.048|112.776 +639932.720|221348.516|112.252 +639927.984|221352.994|111.795 +639918.389|221362.074|111.597 +639908.888|221371.047|110.576 +639894.517|221384.626|109.137 +639889.804|221389.079|108.549 +639884.961|221393.660|108.351 +639880.130|221398.226|107.997 +639875.302|221402.792|107.674 +639870.538|221407.291|107.147 +639860.867|221416.432|106.193 +639856.112|221420.915|105.092 +639851.339|221425.420|104.187 +639846.468|221430.026|103.870 +639841.600|221434.625|103.492 +639822.203|221452.953|101.337 +639817.378|221457.507|100.514 +639812.574|221462.039|99.438 +639807.667|221466.675|99.042 +639802.714|221471.369|99.283 +639792.924|221480.629|98.926 +639783.005|221490.026|99.804 +639778.037|221494.726|99.722 +639768.241|221503.983|99.002 +639763.321|221508.625|98.274 +639758.432|221513.246|97.795 +639753.501|221517.900|97.210 +639748.551|221522.582|96.985 +639738.672|221531.915|96.165 +639733.719|221536.593|95.982 +639728.717|221541.327|95.902 +639723.749|221546.027|96.040 +639718.759|221550.760|96.686 +639713.764|221555.470|95.643 +639708.899|221560.045|93.824 +639688.898|221578.964|93.760 +639678.828|221588.516|95.534 +639673.740|221593.347|96.686 +639668.708|221598.120|97.701 +639663.655|221602.909|98.161 +639633.440|221631.551|102.303 +639628.392|221636.339|103.196 +639618.328|221645.877|104.208 +639613.295|221650.647|104.854 +639608.266|221655.411|105.482 +639603.194|221660.214|105.936 +639588.094|221674.519|107.116 +639583.132|221679.213|107.168 +639578.079|221683.989|107.040 +639557.977|221702.987|105.644 +639542.880|221717.233|103.160 +639532.813|221726.761|103.602 +639527.759|221731.544|103.608 +639522.751|221736.283|103.925 +639517.698|221741.072|104.394 +639512.598|221745.900|104.684 +639507.594|221750.643|105.226 +639497.499|221760.207|106.223 +639492.500|221764.941|106.589 +639482.417|221774.502|108.332 +639477.421|221779.236|108.863 +639467.400|221788.743|110.539 +639462.407|221793.470|111.033 +639457.375|221798.243|111.624 +639432.393|221821.905|113.843 +639427.355|221826.672|114.099 +639422.362|221831.396|114.194 +639417.367|221836.124|114.191 +639412.340|221840.888|114.739 +639407.342|221845.612|114.681 +639402.349|221850.334|114.828 +639397.350|221855.058|114.834 +639387.374|221864.495|115.440 +639382.388|221869.213|115.769 +639377.389|221873.941|115.724 +639372.396|221878.662|115.903 +639362.445|221888.071|115.995 +639357.446|221892.796|116.086 +639352.441|221897.526|116.031 +639337.494|221911.644|115.532 +639332.553|221916.311|114.946 +639327.530|221921.054|114.696 +639317.599|221930.426|113.782 +639312.588|221935.154|113.008 +639297.647|221949.245|110.935 +639258.059|221986.641|109.244 +639253.122|221991.310|109.317 +639248.251|221995.919|109.676 +639243.368|222000.536|109.875 +639218.691|222023.842|108.402 +639213.720|222028.529|107.656 +639208.852|222033.129|107.622 +639203.838|222037.859|107.000 +639198.995|222042.434|106.747 +639194.076|222047.083|106.766 +639189.174|222051.709|106.446 +639184.157|222056.437|105.400 +639174.367|222065.688|105.059 +639164.605|222074.908|104.632 +639159.700|222079.541|104.473 +639154.942|222084.043|104.854 +639131.204|222106.555|110.158 +639107.515|222129.001|114.050 +639102.739|222133.518|114.337 +639097.862|222138.126|114.163 +639093.080|222142.650|114.404 +639069.101|222165.318|114.575 +639054.578|222179.022|113.133 +639049.771|222183.560|112.584 +639006.450|222224.431|108.320 +638992.462|222237.662|109.701 +638978.481|222250.884|110.563 +638969.334|222259.547|112.167 +638964.735|222263.902|112.795 +638960.166|222268.228|113.310 +638937.479|222289.713|117.129 +638932.916|222294.032|117.751 +638923.827|222302.630|118.644 +638919.234|222306.974|118.799 +638905.414|222320.025|118.555 +638882.627|222341.553|118.638 +638878.037|222345.894|118.686 +638873.489|222350.185|118.436 +638868.994|222354.437|118.790 +638864.525|222358.659|118.741 +638855.454|222367.224|118.522 +638846.411|222375.764|118.250 +638832.777|222388.624|116.961 +638828.217|222392.922|116.330 +638823.676|222397.204|115.806 +638805.449|222414.386|113.127 +638800.898|222418.674|112.426 +638791.931|222427.132|111.530 +638787.533|222431.287|111.417 +638783.095|222435.475|111.127 +638778.736|222439.593|111.271 +638774.295|222443.787|110.996 +638769.808|222448.014|110.280 +638759.963|222457.234|104.626 +638745.711|222470.609|98.527 +638741.459|222474.632|98.880 +638737.225|222478.631|99.097 +638732.982|222482.646|99.277 +638728.703|222486.687|99.301 +638724.442|222490.711|99.194 +638720.178|222494.737|99.082 +638716.017|222498.672|99.469 +638711.777|222502.677|99.511 +638711.299|222501.025|99.371 +638715.520|222497.020|99.267 +638719.672|222493.079|98.856 +638724.030|222488.955|99.173 +638728.316|222484.892|99.182 +638732.574|222480.853|99.072 +638736.869|222476.778|98.914 +638741.148|222472.721|98.679 +638745.449|222468.640|98.332 +638750.185|222464.175|100.112 +638764.916|222450.334|108.262 +638769.754|222445.783|110.716 +638774.137|222441.626|110.697 +638778.632|222437.371|110.993 +638787.432|222429.028|110.960 +638805.595|222411.850|113.502 +638814.733|222403.205|114.703 +638819.332|222398.856|115.230 +638823.895|222394.540|115.867 +638828.489|222390.194|116.425 +638842.263|222377.166|118.208 +638855.857|222364.292|118.382 +638869.494|222351.371|118.418 +638874.178|222346.945|119.174 +638878.705|222342.657|119.040 +638887.827|222334.010|118.662 +638897.032|222325.292|118.836 +638906.198|222316.602|118.574 +638910.843|222312.204|118.695 +638915.470|222307.821|118.723 +638924.705|222299.070|118.418 +638929.301|222294.715|118.324 +638938.372|222286.098|116.772 +638947.513|222277.420|115.373 +638961.187|222264.430|112.956 +638965.768|222260.080|112.191 +638970.395|222255.691|111.773 +638979.588|222246.959|110.185 +638989.003|222238.037|109.856 +638998.318|222229.195|108.530 +639003.088|222224.672|108.536 +639007.836|222220.173|108.384 +639017.456|222211.068|109.070 +639032.086|222197.240|111.106 +639036.887|222192.692|111.136 +639041.819|222188.038|112.197 +639046.683|222183.432|112.420 +639051.557|222178.823|113.127 +639056.431|222174.212|113.453 +639066.200|222164.973|114.401 +639090.395|222142.055|114.572 +639095.192|222137.502|114.056 +639100.002|222132.945|114.090 +639104.912|222128.297|114.166 +639109.667|222123.786|113.739 +639119.186|222114.736|111.688 +639128.806|222105.610|110.548 +639138.392|222096.494|108.201 +639143.144|222091.974|106.823 +639162.562|222073.545|104.562 +639167.485|222068.879|104.477 +639172.456|222064.179|104.931 +639177.379|222059.512|104.900 +639182.359|222054.806|105.510 +639187.407|222050.036|106.403 +639192.396|222045.315|106.665 +639197.313|222040.657|106.683 +639202.296|222035.942|106.958 +639207.267|222031.236|107.101 +639212.281|222026.496|107.799 +639217.301|222021.754|108.582 +639227.296|222012.305|109.771 +639232.313|222007.559|110.067 +639237.251|222002.880|110.018 +639242.256|221998.144|110.201 +639247.178|221993.477|109.960 +639257.127|221984.050|109.609 +639262.101|221979.338|109.454 +639267.045|221974.647|108.884 +639277.049|221965.180|109.515 +639282.038|221960.458|109.673 +639297.086|221946.224|110.920 +639312.158|221931.978|113.041 +639317.209|221927.204|113.761 +639327.234|221917.725|114.797 +639332.263|221912.967|115.297 +639337.295|221908.212|115.849 +639347.326|221898.718|116.449 +639352.374|221893.939|116.437 +639362.368|221884.471|116.449 +639367.364|221879.741|116.361 +639377.377|221870.249|115.699 +639382.424|221865.470|115.839 +639392.397|221856.018|115.352 +639397.430|221851.248|115.093 +639402.413|221846.524|114.779 +639407.448|221841.751|114.617 +639412.487|221836.980|114.559 +639417.479|221832.250|114.572 +639427.501|221822.755|114.200 +639432.479|221818.031|113.694 +639437.514|221813.261|113.496 +639442.540|221808.491|112.898 +639452.550|221798.993|111.664 +639457.588|221794.220|111.560 +639477.671|221775.155|108.600 +639487.751|221765.593|107.491 +639492.744|221760.853|106.516 +639497.785|221756.074|106.360 +639537.991|221717.947|103.135 +639543.039|221713.183|104.080 +639553.033|221703.740|105.699 +639558.078|221698.967|106.159 +639563.073|221694.242|106.650 +639568.075|221689.509|106.854 +639573.077|221684.775|107.034 +639583.077|221675.302|107.305 +639588.085|221670.556|107.122 +639603.142|221656.270|105.434 +639613.094|221646.828|104.431 +639633.083|221627.857|102.038 +639643.050|221618.408|101.435 +639648.049|221613.659|100.697 +639653.002|221608.962|100.100 +639658.013|221604.204|99.261 +639662.993|221599.468|98.060 +639672.991|221589.970|96.219 +639677.974|221585.236|95.287 +639683.000|221580.463|94.464 +639692.912|221571.051|93.053 +639697.847|221566.385|93.415 +639707.601|221557.161|94.503 +639712.429|221552.608|95.970 +639717.345|221547.956|96.625 +639722.243|221543.308|95.912 +639727.151|221538.657|95.899 +639732.058|221534.009|95.924 +639736.913|221529.424|96.872 +639741.775|221524.822|96.939 +639746.624|221520.229|97.170 +639751.529|221515.586|97.326 +639756.363|221511.011|97.841 +639761.188|221506.452|98.512 +639766.001|221501.904|99.368 +639775.724|221492.699|99.661 +639780.524|221488.157|100.036 +639785.404|221483.531|99.944 +639790.287|221478.898|99.228 +639799.961|221469.738|99.731 +639804.872|221465.084|99.399 +639809.651|221460.555|99.520 +639814.446|221456.022|100.097 +639819.164|221451.566|100.999 +639823.989|221447.006|101.809 +639828.716|221442.538|102.587 +639833.499|221438.021|103.334 +639838.247|221433.519|103.318 +639843.060|221428.968|103.736 +639847.775|221424.506|104.132 +639852.588|221419.952|104.553 +639857.206|221415.600|106.071 +639871.437|221402.140|107.552 +639876.143|221397.690|108.128 +639880.938|221393.151|108.308 +639890.417|221384.178|108.847 +639895.071|221379.776|109.490 +639899.790|221375.314|110.009 +639904.502|221370.861|110.597 +639913.865|221362.004|111.459 +639918.541|221357.578|111.956 +639923.299|221353.073|112.151 +639927.965|221348.653|112.328 +639932.705|221344.170|112.740 +639937.353|221339.771|113.124 +639942.062|221335.312|113.410 +639951.487|221326.378|113.541 +639960.872|221317.484|113.700 +639970.232|221308.612|113.730 +639975.005|221304.085|113.630 +639979.684|221299.647|113.517 +639984.387|221295.182|113.224 +640007.875|221272.907|112.474 +640012.615|221268.408|112.072 +640017.309|221263.952|111.682 +640022.079|221259.423|111.130 +640026.706|221255.034|110.935 +640031.424|221250.556|110.472 +640036.136|221246.082|110.067 +640040.797|221241.662|109.719 +640045.509|221237.188|109.356 +640050.178|221232.756|109.003 +640054.887|221228.284|108.405 +640059.545|221223.865|108.171 +640069.018|221214.858|106.409 +640078.366|221205.991|105.943 +640080.555|221200.813|105.546 +640075.800|221205.318|105.940 +640071.091|221209.768|106.028 +640061.410|221218.951|108.085 +640056.725|221223.383|108.119 +640051.961|221227.894|108.710 +640047.197|221232.405|109.003 +640042.464|221236.886|109.448 +640037.691|221241.403|109.847 +640032.957|221245.881|109.996 +640028.111|221250.474|110.646 +640023.350|221254.982|111.066 +640018.625|221259.450|111.219 +640013.794|221264.028|111.862 +640008.997|221268.573|112.282 +640004.214|221273.096|112.596 +639999.463|221277.592|112.715 +639994.705|221282.094|112.913 +639989.916|221286.623|113.005 +639985.161|221291.122|113.230 +639980.358|221295.667|113.483 +639975.572|221300.193|113.614 +639970.790|221304.719|113.767 +639961.256|221313.732|113.864 +639956.516|221318.213|113.736 +639946.924|221327.284|113.660 +639937.384|221336.297|113.215 +639932.653|221340.768|113.108 +639927.874|221345.279|112.584 +639923.125|221349.766|112.237 +639918.294|221354.332|112.218 +639913.554|221358.806|111.807 +639904.051|221367.776|110.832 +639899.232|221372.327|110.323 +639894.489|221376.802|109.551 +639889.652|221381.368|109.210 +639884.928|221385.830|108.744 +639875.296|221394.931|108.277 +639870.486|221399.470|107.717 +639856.097|221413.058|106.293 +639851.400|221417.474|104.553 +639846.590|221422.013|104.031 +639841.719|221426.612|103.705 +639836.903|221431.163|103.321 +639832.054|221435.747|103.318 +639827.226|221440.301|102.514 +639822.459|221444.797|101.587 +639817.622|221449.359|100.886 +639812.836|221453.870|100.148 +639807.941|221458.494|99.627 +639803.086|221463.085|99.789 +639798.136|221467.769|99.999 +639793.338|221472.299|99.490 +639788.388|221476.983|99.728 +639783.444|221481.662|99.969 +639778.555|221486.289|100.127 +639763.843|221500.194|99.304 +639758.969|221504.797|98.600 +639754.101|221509.390|97.841 +639744.262|221518.686|97.106 +639734.380|221528.035|97.186 +639729.479|221532.658|96.192 +639724.584|221537.285|95.869 +639719.582|221542.016|95.823 +639714.614|221546.719|96.024 +639709.686|221551.385|96.424 +639704.790|221555.988|94.369 +639694.948|221565.278|92.986 +639689.971|221569.978|92.452 +639679.922|221579.518|94.671 +639674.905|221584.270|95.204 +639669.872|221589.046|96.174 +639664.828|221593.838|97.533 +639659.805|221598.605|98.460 +639654.788|221603.363|99.350 +639649.774|221608.118|100.173 +639629.709|221627.122|101.950 +639624.668|221631.908|102.721 +639609.559|221646.227|104.742 +639599.512|221655.743|105.607 +639594.486|221660.513|106.418 +639584.400|221670.066|107.375 +639579.392|221674.805|107.476 +639569.337|221684.315|107.262 +639564.290|221689.082|106.817 +639559.285|221693.816|106.790 +639554.240|221698.580|106.202 +639539.144|221712.832|104.102 +639524.031|221727.121|103.654 +639518.978|221731.903|103.769 +639508.919|221741.435|104.720 +639503.872|221746.220|105.357 +639493.774|221755.785|106.299 +639488.733|221760.564|107.080 +639478.650|221770.125|108.555 +639473.608|221774.902|108.957 +639463.586|221784.405|110.615 +639458.502|221789.221|111.106 +639453.516|221793.949|111.691 +639448.478|221798.719|111.962 +639443.400|221803.532|112.581 +639433.384|221813.020|113.712 +639428.352|221817.787|114.069 +639423.307|221822.557|113.980 +639418.278|221827.321|114.468 +639403.209|221841.586|114.831 +639388.188|221855.805|115.382 +639368.172|221874.751|116.013 +639363.191|221879.470|116.541 +639358.177|221884.209|116.217 +639343.181|221898.401|116.467 +639333.178|221907.853|115.590 +639328.136|221912.614|114.928 +639323.165|221917.314|114.733 +639308.141|221931.505|113.279 +639293.066|221945.730|110.545 +639283.074|221955.173|109.963 +639278.124|221959.852|109.686 +639273.135|221964.573|109.539 +639268.176|221969.261|109.207 +639263.247|221973.924|109.335 +639258.322|221978.588|109.536 +639253.445|221983.202|109.795 +639238.735|221997.135|110.746 +639228.850|222006.480|110.228 +639214.010|222020.498|108.637 +639209.096|222025.137|108.000 +639204.146|222029.813|107.549 +639199.221|222034.464|106.842 +639194.329|222039.088|106.589 +639189.379|222043.766|106.253 +639184.545|222048.338|106.141 +639179.604|222053.011|105.958 +639174.703|222057.635|105.199 +639169.786|222062.283|104.809 +639164.879|222066.922|104.547 +639145.576|222085.201|105.671 +639140.861|222089.678|106.958 +639126.748|222103.084|110.643 +639107.805|222121.045|113.544 +639103.044|222125.553|113.956 +639098.228|222130.110|113.870 +639093.476|222134.609|113.944 +639088.752|222139.087|114.715 +639064.889|222161.660|114.645 +639055.276|222170.746|113.797 +639045.644|222179.845|112.944 +639040.837|222184.386|112.444 +639031.187|222193.497|111.261 +639007.145|222216.201|108.366 +639002.396|222220.694|108.527 +638997.802|222225.046|109.140 +638993.133|222229.469|109.545 +638988.433|222233.919|109.753 +638960.711|222260.181|112.606 +638951.634|222268.788|114.062 +638942.597|222277.362|115.839 +638938.001|222281.715|116.227 +638928.994|222290.259|117.918 +638906.024|222311.994|118.452 +638892.338|222324.945|118.869 +638887.705|222329.322|118.616 +638869.469|222346.570|118.394 +638864.915|222350.877|118.436 +638855.875|222359.433|118.631 +638842.305|222372.262|118.339 +638819.412|222393.879|115.614 +638814.803|222398.228|115.029 +638810.268|222402.514|114.608 +638805.726|222406.799|113.904 +638801.176|222411.097|113.438 +638791.992|222419.756|111.395 +638787.527|222423.975|111.194 +638783.040|222428.214|110.902 +638774.316|222436.465|110.886 +638760.725|222449.288|108.613 +638746.037|222463.062|100.276 +638741.328|222467.491|98.411 +638737.079|222471.517|98.786 +638732.793|222475.574|98.993 +638728.499|222479.637|99.188 +638724.229|222483.676|99.271 +638719.934|222487.739|99.243 +638715.624|222491.811|98.935 +638711.421|222495.792|99.377 +638707.193|222499.794|99.472 +638702.987|222503.771|99.450 +638700.415|222503.631|99.389 +638704.721|222499.553|99.648 +638708.909|222495.578|99.389 +638713.052|222491.646|98.917 +638717.404|222487.522|99.216 +638721.693|222483.456|99.228 +638725.966|222479.406|99.179 +638730.251|222475.340|98.969 +638734.540|222471.274|98.783 +638738.792|222467.238|98.435 +638743.419|222462.873|99.923 +638758.125|222449.051|108.143 +638762.941|222444.515|110.216 +638767.324|222440.361|110.185 +638771.759|222436.161|110.417 +638776.234|222431.924|110.890 +638780.592|222427.791|110.792 +638789.605|222419.253|111.377 +638794.177|222414.934|112.164 +638803.330|222406.278|113.630 +638807.985|222401.877|114.410 +638812.514|222397.591|114.828 +638817.110|222393.242|115.364 +638821.643|222388.950|115.846 +638826.255|222384.588|116.510 +638830.875|222380.217|116.982 +638835.490|222375.853|117.717 +638840.089|222371.497|118.122 +638853.711|222358.592|118.479 +638858.332|222354.215|118.817 +638862.806|222349.969|118.345 +638867.320|222345.690|118.403 +638871.969|222341.291|118.961 +638890.284|222323.924|118.662 +638894.850|222319.596|118.546 +638899.413|222315.267|118.446 +638904.046|222310.878|118.473 +638913.342|222302.067|118.510 +638936.266|222280.307|116.412 +638959.154|222258.553|112.490 +638977.737|222240.908|110.356 +638982.434|222236.452|110.124 +638987.192|222231.941|109.999 +639001.225|222218.624|108.671 +639010.854|222209.499|109.070 +639015.746|222204.878|110.039 +639030.270|222191.128|111.350 +639040.066|222181.862|112.612 +639044.918|222177.272|113.121 +639049.774|222172.679|113.715 +639054.642|222168.067|114.038 +639059.500|222163.468|114.306 +639064.386|222158.844|114.821 +639078.959|222145.039|115.477 +639088.548|222135.938|114.370 +639093.293|222131.430|113.837 +639098.146|222126.831|113.846 +639112.578|222113.130|112.350 +639126.998|222099.435|110.396 +639165.598|222062.765|104.617 +639170.579|222058.052|105.199 +639175.532|222053.361|105.519 +639180.485|222048.674|105.866 +639185.462|222043.958|105.988 +639190.360|222039.319|106.330 +639195.353|222034.592|106.656 +639200.327|222029.889|107.393 +639205.359|222025.134|108.271 +639225.345|222006.227|110.545 +639269.938|221963.957|109.926 +639274.921|221959.236|109.975 +639279.892|221954.524|109.881 +639289.899|221945.054|110.835 +639294.901|221940.320|111.322 +639299.979|221935.522|112.386 +639304.999|221930.780|113.334 +639315.030|221921.288|114.343 +639319.998|221916.582|114.507 +639325.027|221911.821|114.898 +639340.069|221897.590|116.541 +639360.018|221878.686|116.586 +639365.002|221873.959|116.263 +639374.984|221864.495|116.022 +639385.003|221854.994|115.590 +639400.054|221840.720|114.855 +639404.998|221836.033|114.824 +639415.068|221826.486|114.483 +639430.071|221812.255|113.742 +639435.103|221807.485|113.328 +639440.077|221802.757|112.590 +639450.096|221793.251|111.807 +639455.125|221788.474|111.161 +639460.157|221783.698|110.548 +639485.249|221759.878|107.582 +639490.665|221754.733|106.583 +639505.372|221740.770|104.940 +639515.421|221731.233|104.071 +639520.471|221726.448|104.035 +639525.476|221721.699|103.538 +639530.527|221716.910|103.462 +639535.577|221712.134|104.041 +639545.617|221702.646|105.940 +639555.661|221693.136|106.610 +639565.750|221683.586|107.369 +639580.804|221669.328|107.607 +639585.821|221664.570|107.052 +639590.838|221659.809|106.485 +639595.903|221655.002|105.982 +639605.956|221645.459|104.611 +639610.979|221640.695|104.257 +639621.056|221631.127|102.611 +639631.071|221621.627|101.782 +639656.211|221597.764|98.615 +639661.286|221592.942|97.475 +639666.331|221588.141|96.024 +639671.354|221583.371|95.238 +639676.368|221578.616|94.741 +639691.428|221564.324|93.123 +639696.338|221559.685|93.976 +639701.319|221554.970|94.318 +639706.180|221550.395|96.143 +639711.146|221545.682|95.838 +639716.150|221540.940|95.787 +639721.058|221536.292|95.799 +639725.947|221531.677|96.997 +639730.887|221527.004|97.308 +639735.773|221522.380|97.710 +639740.766|221517.644|97.177 +639750.544|221508.390|97.984 +639755.424|221503.775|98.542 +639760.292|221499.173|99.277 +639770.036|221489.953|99.944 +639789.525|221471.491|100.130 +639794.438|221466.831|99.691 +639799.294|221462.237|100.081 +639804.152|221457.629|99.783 +639809.020|221453.023|100.033 +639813.833|221448.466|100.356 +639818.615|221443.946|101.105 +639823.382|221439.444|102.032 +639828.128|221434.964|103.190 +639832.980|221430.367|103.120 +639837.790|221425.817|103.544 +639842.512|221421.348|103.907 +639847.337|221416.782|104.187 +639851.966|221412.421|106.080 +639856.709|221407.937|106.766 +639866.237|221398.924|107.662 +639870.953|221394.462|108.131 +639880.417|221385.507|108.786 +639885.205|221380.974|109.058 +639889.881|221376.552|109.512 +639894.596|221372.089|110.033 +639899.247|221367.694|110.737 +639913.326|221354.377|112.185 +639918.017|221349.940|112.566 +639922.723|221345.477|112.374 +639927.402|221341.052|112.886 +639932.062|221336.641|113.148 +639941.383|221327.820|113.721 +639946.052|221323.401|113.941 +639950.765|221318.935|113.834 +639955.391|221314.558|114.053 +639960.040|221310.154|114.111 +639964.755|221305.689|114.044 +639969.376|221301.309|113.965 +639978.739|221292.439|113.706 +639988.093|221283.572|113.240 +639992.748|221279.162|113.029 +639997.448|221274.706|112.862 +640002.056|221270.338|112.694 +640006.744|221265.894|112.304 +640011.383|221261.493|111.950 +640016.028|221257.088|111.575 +640034.707|221239.376|110.024 +640039.309|221235.011|109.740 +640043.957|221230.601|109.161 +640053.248|221221.789|108.165 +640057.789|221217.488|108.402 +640071.789|221204.196|106.086 +640081.100|221195.360|104.952 +640077.604|221195.768|105.427 +640072.855|221200.267|105.766 +640068.183|221204.693|106.272 +640063.507|221209.119|106.500 +640058.600|221213.785|108.012 +640053.879|221218.253|108.274 +640049.218|221222.667|108.488 +640044.390|221227.245|109.225 +640039.693|221231.692|109.411 +640034.923|221236.209|109.792 +640030.214|221240.672|110.121 +640020.610|221249.773|111.161 +640015.855|221254.275|111.539 +640006.269|221263.355|112.258 +640001.486|221267.884|112.590 +639996.671|221272.444|112.825 +639991.913|221276.949|113.026 +639987.072|221281.527|113.118 +639977.447|221290.644|113.749 +639972.698|221295.136|113.608 +639967.821|221299.757|114.123 +639962.999|221304.320|114.212 +639958.189|221308.871|114.239 +639953.358|221313.437|114.044 +639948.549|221317.990|114.126 +639929.288|221336.196|113.115 +639924.485|221340.738|112.819 +639919.635|221345.319|112.505 +639914.816|221349.879|112.395 +639909.967|221354.460|112.112 +639905.154|221359.007|111.539 +639900.338|221363.555|110.975 +639890.655|221372.702|109.935 +639885.897|221377.195|109.320 +639880.977|221381.843|108.878 +639876.128|221386.427|108.716 +639871.248|221391.039|108.402 +639866.396|221395.626|107.832 +639861.522|221400.229|107.457 +639847.010|221413.917|104.754 +639842.179|221418.477|103.961 +639837.266|221423.122|103.593 +639832.398|221427.722|103.221 +639827.454|221432.400|103.230 +639822.575|221437.006|102.471 +639817.737|221441.566|101.227 +639812.858|221446.168|100.459 +639807.953|221450.804|100.051 +639803.031|221455.458|99.850 +639793.137|221464.813|99.530 +639768.311|221488.304|100.124 +639763.364|221492.976|99.783 +639758.429|221497.637|99.289 +639748.618|221506.897|98.131 +639743.686|221511.551|97.573 +639738.730|221516.233|97.405 +639733.759|221520.936|97.558 +639728.757|221525.666|97.460 +639723.856|221530.296|97.262 +639718.921|221534.941|95.951 +639713.971|221539.620|95.784 +639708.969|221544.347|95.732 +639704.007|221549.044|95.872 +639699.103|221553.665|94.887 +639694.135|221558.353|94.186 +639684.241|221567.689|92.879 +639654.139|221596.234|98.573 +639649.116|221600.998|99.594 +639644.108|221605.743|100.325 +639629.127|221619.926|101.596 +639619.138|221629.387|102.867 +639614.134|221634.136|104.053 +639604.130|221643.609|104.845 +639599.159|221648.312|105.019 +639594.172|221653.039|105.940 +639589.146|221657.800|106.555 +639584.169|221662.519|107.357 +639579.200|221667.222|107.762 +639574.196|221671.949|107.579 +639559.276|221686.055|107.302 +639554.320|221690.737|107.098 +639549.318|221695.462|106.708 +639544.316|221700.189|106.439 +639534.361|221709.574|104.632 +639529.359|221714.289|103.663 +639519.389|221723.717|103.821 +639514.382|221728.462|104.617 +639509.422|221733.153|104.720 +639504.418|221737.890|104.909 +639494.414|221747.366|105.958 +639488.943|221752.545|106.363 +639479.424|221761.570|108.366 +639474.425|221766.300|108.567 +639469.436|221771.031|109.426 +639459.453|221780.489|110.621 +639444.482|221794.662|111.947 +639419.552|221818.269|114.398 +639409.570|221827.711|114.727 +639404.571|221832.436|114.636 +639399.584|221837.154|114.998 +639394.589|221841.879|114.986 +639389.599|221846.600|115.218 +639384.610|221851.321|115.486 +639379.663|221856.000|115.599 +639374.633|221860.761|116.065 +639369.696|221865.434|116.419 +639364.700|221870.158|116.553 +639359.707|221874.882|116.711 +639354.751|221879.564|116.708 +639349.737|221884.301|116.382 +639339.798|221893.704|116.827 +639319.711|221912.662|114.724 +639314.740|221917.362|114.568 +639304.709|221926.833|113.681 +639299.710|221931.539|112.331 +639294.660|221936.306|111.813 +639284.647|221945.745|109.999 +639279.664|221950.458|109.908 +639274.686|221955.164|109.984 +639264.735|221964.576|110.170 +639249.976|221978.539|111.021 +639245.032|221983.212|110.975 +639240.119|221987.863|111.356 +639225.214|222001.942|110.460 +639200.428|222025.338|107.963 +639195.435|222030.044|107.058 +639185.563|222039.365|106.107 +639180.567|222044.086|105.808 +639175.733|222048.652|105.790 +639170.783|222053.328|105.537 +639165.836|222057.997|104.824 +639160.947|222062.618|104.763 +639156.061|222067.236|104.797 +639141.604|222080.928|106.470 +639136.761|222085.515|106.970 +639127.260|222094.522|108.872 +639122.649|222098.905|110.685 +639113.118|222107.939|112.258 +639108.296|222112.502|112.532 +639094.049|222125.986|113.657 +639089.255|222130.525|114.236 +639084.558|222134.975|114.834 +639079.800|222139.480|115.312 +639075.063|222143.960|115.580 +639070.235|222148.523|115.504 +639065.428|222153.065|115.230 +639060.588|222157.631|114.696 +639055.779|222162.178|114.437 +639050.975|222166.717|114.267 +639041.331|222175.818|113.331 +639036.509|222180.372|112.706 +639031.687|222184.923|112.115 +639026.847|222189.491|111.426 +639017.261|222198.553|110.826 +639012.408|222203.128|109.768 +639002.816|222212.193|108.954 +638998.083|222216.668|108.878 +638993.511|222221.005|109.609 +638988.808|222225.455|109.789 +638915.707|222294.736|118.540 +638906.560|222303.392|118.836 +638901.988|222307.718|118.863 +638892.835|222316.377|118.921 +638888.272|222320.693|118.778 +638870.137|222337.856|119.329 +638865.504|222342.233|118.875 +638860.877|222346.604|118.479 +638856.415|222350.829|118.753 +638851.891|222355.108|118.711 +638838.306|222367.952|118.330 +638829.141|222376.609|117.205 +638815.465|222389.523|115.583 +638810.908|222393.827|115.013 +638806.369|222398.112|114.565 +638801.880|222402.355|114.139 +638792.675|222411.039|112.438 +638779.166|222423.798|110.978 +638774.728|222427.992|110.701 +638770.275|222432.201|110.612 +638761.454|222440.541|110.173 +638757.150|222444.616|110.384 +638752.319|222449.154|108.024 +638733.037|222467.262|98.749 +638728.767|222471.307|99.036 +638724.518|222475.327|99.203 +638720.272|222479.348|99.389 +638715.987|222483.399|99.417 +638711.668|222487.483|99.295 +638707.407|222491.515|99.216 +638703.203|222495.496|99.667 +638698.958|222499.513|99.700 +638694.733|222503.512|99.597 +638694.733|222501.068|99.566 +638698.936|222497.084|99.569 +638703.155|222493.082|99.429 +638707.324|222489.126|99.075 +638711.634|222485.044|99.380 +638715.962|222480.945|99.557 +638720.175|222476.949|99.213 +638724.439|222472.904|99.124 +638728.666|222468.893|98.877 +638732.943|222464.836|98.630 +638747.537|222451.120|106.330 +638756.982|222442.217|109.981 +638761.423|222438.011|110.207 +638770.250|222429.650|110.460 +638774.719|222425.416|110.633 +638779.190|222421.186|111.094 +638788.197|222412.660|111.911 +638792.842|222408.271|112.825 +638797.475|222403.894|113.712 +638801.971|222399.639|114.166 +638806.564|222395.293|114.642 +638811.094|222391.007|115.050 +638815.708|222386.643|115.681 +638820.296|222382.302|116.193 +638824.898|222377.950|116.806 +638829.461|222373.628|117.242 +638843.204|222360.628|118.427 +638852.333|222351.987|118.677 +638856.777|222347.768|118.302 +638861.352|222343.437|118.394 +638866.049|222338.996|118.933 +638898.172|222308.562|118.616 +638902.714|222304.258|118.400 +638916.613|222291.088|118.028 +638925.866|222282.312|117.278 +638939.579|222269.294|115.340 +638976.573|222234.181|110.411 +638981.279|222229.725|110.228 +638986.031|222225.220|110.076 +638995.428|222216.308|109.369 +639000.140|222211.839|108.969 +639014.707|222198.069|110.679 +639029.194|222184.359|111.722 +639034.168|222179.662|112.767 +639039.002|222175.087|113.121 +639043.903|222170.454|113.642 +639048.756|222165.863|114.221 +639053.630|222161.255|114.575 +639058.473|222156.671|114.733 +639063.374|222152.031|114.995 +639068.245|222147.423|115.446 +639087.475|222129.187|114.041 +639092.266|222124.639|113.486 +639097.183|222119.985|113.614 +639111.578|222106.330|112.234 +639130.735|222088.130|108.287 +639135.508|222083.592|107.140 +639140.336|222079.007|106.546 +639145.064|222074.509|104.903 +639150.029|222069.812|105.217 +639154.869|222065.218|104.763 +639159.810|222060.539|104.879 +639164.751|222055.864|105.001 +639169.713|222051.167|105.397 +639174.636|222046.506|105.376 +639179.585|222041.819|105.723 +639189.562|222032.385|106.759 +639194.573|222027.645|107.360 +639199.568|222022.927|108.360 +639224.544|221999.293|110.499 +639229.533|221994.572|111.124 +639239.451|221985.181|111.633 +639249.357|221975.793|111.411 +639254.320|221971.087|111.094 +639264.168|221961.741|110.124 +639274.138|221952.296|110.332 +639284.038|221942.917|110.249 +639294.087|221933.419|112.020 +639304.124|221923.934|113.846 +639309.168|221919.164|114.486 +639314.143|221914.455|114.681 +639319.108|221909.749|114.815 +639324.107|221905.024|115.571 +639329.151|221900.257|116.419 +639334.119|221895.554|116.675 +639339.118|221890.814|116.693 +639344.120|221886.078|116.678 +639349.116|221881.344|116.641 +639354.120|221876.605|116.790 +639364.048|221867.192|116.336 +639369.086|221862.413|116.291 +639379.017|221853.001|115.916 +639388.980|221843.549|115.242 +639393.973|221838.818|115.175 +639399.002|221834.048|114.861 +639408.942|221824.633|114.867 +639423.944|221810.405|114.145 +639433.859|221800.996|113.115 +639443.820|221791.541|111.877 +639448.810|221786.810|111.795 +639453.842|221782.034|111.118 +639458.829|221777.304|110.658 +639468.802|221767.833|109.170 +639473.791|221763.097|108.637 +639478.787|221758.360|108.375 +639483.822|221753.572|107.287 +639488.766|221748.878|106.628 +639493.765|221744.135|106.074 +639503.808|221734.598|104.675 +639513.860|221725.064|104.019 +639518.816|221720.364|103.772 +639523.867|221715.578|103.800 +639528.869|221710.842|104.044 +639533.867|221706.120|105.034 +639543.862|221696.675|106.595 +639548.858|221691.944|106.955 +639558.855|221682.480|107.546 +639563.851|221677.750|107.857 +639573.805|221668.307|107.793 +639578.807|221663.558|107.674 +639593.764|221649.348|105.821 +639598.790|221644.572|105.040 +639603.755|221639.857|104.818 +639608.778|221635.084|104.275 +639628.731|221616.122|101.450 +639643.702|221601.900|99.956 +639658.836|221587.492|96.104 +639663.859|221582.716|95.180 +639668.818|221578.004|94.720 +639678.898|221568.411|92.480 +639698.573|221549.797|95.857 +639703.577|221545.052|95.720 +639708.475|221540.403|95.765 +639713.456|221535.685|96.116 +639718.302|221531.104|97.164 +639728.196|221521.722|97.396 +639733.073|221517.104|97.908 +639738.038|221512.395|97.783 +639742.945|221507.741|97.841 +639747.831|221503.111|98.234 +639752.708|221498.493|98.789 +639757.573|221493.891|99.560 +639767.360|221484.619|100.225 +639772.252|221479.983|100.606 +639777.174|221475.310|100.523 +639782.085|221470.659|100.703 +639796.807|221456.687|100.164 +639801.687|221452.057|100.170 +639806.606|221447.393|100.316 +639811.449|221442.806|100.849 +639816.265|221438.252|101.733 +639821.038|221433.744|103.117 +639825.894|221429.133|102.919 +639830.758|221424.527|103.251 +639840.424|221415.368|104.068 +639845.179|221410.875|105.132 +639854.731|221401.838|106.726 +639859.510|221397.315|107.497 +639864.277|221392.798|107.902 +639869.130|221388.201|108.408 +639878.697|221379.136|108.948 +639883.422|221374.659|109.338 +639888.216|221370.120|110.006 +639907.111|221352.232|112.295 +639911.854|221347.736|112.581 +639916.624|221343.213|112.660 +639921.315|221338.766|113.014 +639926.060|221334.270|113.352 +639930.760|221329.814|113.651 +639949.649|221311.897|114.306 +639954.337|221307.450|114.395 +639959.080|221302.951|114.456 +639973.283|221289.464|113.813 +639977.974|221285.011|113.602 +639987.417|221276.041|113.163 +639992.126|221271.569|112.913 +639996.832|221267.101|112.685 +640001.486|221262.681|112.520 +640006.226|221258.176|112.106 +640010.862|221253.772|111.776 +640015.550|221249.316|111.423 +640020.247|221244.856|111.060 +640024.932|221240.400|110.445 +640038.931|221227.096|109.195 +640043.549|221222.716|109.183 +640048.264|221218.226|108.165 +640052.833|221213.889|108.195 +640057.609|221209.335|106.827 +640062.242|221204.937|106.488 +640076.284|221191.580|104.333 +640068.162|221196.552|105.306 +640063.465|221201.002|105.991 +640049.310|221214.410|108.311 +640044.695|221218.775|108.552 +640039.964|221223.258|109.295 +640035.301|221227.669|109.582 +640021.198|221241.016|110.758 +640016.477|221245.487|111.243 +640011.731|221249.977|111.566 +640007.031|221254.424|111.950 +640002.291|221258.911|112.292 +639992.900|221267.790|112.752 +639988.124|221272.310|113.078 +639983.400|221276.778|113.413 +639964.362|221294.786|114.248 +639959.610|221299.282|114.556 +639954.855|221303.774|114.523 +639950.109|221308.261|114.437 +639945.303|221312.803|114.468 +639931.041|221326.272|113.782 +639926.280|221330.771|113.511 +639921.467|221335.315|113.276 +639916.743|221339.771|112.715 +639911.899|221344.350|112.801 +639907.117|221348.867|112.374 +639887.887|221367.011|110.280 +639883.071|221371.556|109.750 +639878.280|221376.076|109.000 +639868.502|221385.309|108.512 +639863.674|221389.868|108.168 +639858.824|221394.443|107.552 +639853.990|221399.003|106.790 +639849.083|221403.633|106.284 +639844.261|221408.178|105.403 +639839.454|221412.707|104.336 +639834.529|221417.355|104.053 +639829.643|221421.967|103.373 +639824.736|221426.597|102.910 +639819.819|221431.248|103.166 +639814.903|221435.884|102.309 +639810.050|221440.456|101.218 +639805.122|221445.104|100.499 +639800.153|221449.795|100.249 +639795.203|221454.477|100.426 +639785.215|221463.926|100.816 +639780.232|221468.638|100.910 +639775.215|221473.378|100.804 +639770.231|221478.093|100.947 +639760.295|221487.481|100.188 +639755.311|221492.184|99.673 +639750.294|221496.917|98.950 +639745.372|221501.563|98.243 +639740.339|221506.314|97.801 +639735.328|221511.054|97.780 +639730.336|221515.769|97.463 +639725.246|221520.591|98.033 +639720.271|221525.288|97.451 +639715.257|221530.031|97.603 +639710.271|221534.731|96.384 +639705.251|221539.468|95.747 +639700.246|221544.198|95.762 +639695.189|221548.983|95.924 +639690.160|221553.748|96.469 +639685.228|221558.374|94.052 +639675.225|221567.820|93.071 +639665.078|221577.437|94.400 +639654.919|221587.071|96.329 +639639.679|221601.537|100.087 +639629.587|221611.096|101.176 +639614.420|221625.461|102.818 +639609.382|221630.234|103.474 +639604.337|221635.020|104.504 +639594.187|221644.633|105.498 +639589.207|221649.354|106.247 +639584.132|221654.164|107.000 +639574.052|221663.704|107.692 +639568.996|221668.487|107.823 +639563.988|221673.229|108.027 +639558.983|221677.960|107.912 +639553.932|221682.730|107.576 +639548.931|221687.457|107.387 +639543.929|221692.182|107.055 +639528.878|221706.379|104.608 +639523.873|221711.104|104.068 +639518.865|221715.840|103.998 +639513.857|221720.580|104.294 +639508.849|221725.320|104.751 +639503.845|221730.053|104.638 +639488.833|221744.272|106.366 +639483.837|221749.006|107.055 +639478.842|221753.745|107.988 +639473.846|221758.479|108.607 +639468.850|221763.210|109.073 +639463.858|221767.940|109.701 +639458.868|221772.671|110.633 +639453.876|221777.398|111.011 +639448.883|221782.122|111.420 +639443.942|221786.804|111.929 +639438.904|221791.574|112.234 +639409.076|221819.814|114.806 +639394.147|221833.942|115.187 +639389.246|221838.575|115.218 +639384.253|221843.299|115.312 +639379.318|221847.975|115.809 +639374.371|221852.653|115.907 +639364.487|221862.008|116.397 +639359.543|221866.686|116.589 +639349.695|221876.004|116.818 +639324.911|221899.428|115.769 +639319.910|221904.149|114.949 +639314.990|221908.798|114.904 +639310.068|221913.452|114.767 +639305.090|221918.158|114.535 +639295.077|221927.595|112.343 +639290.091|221932.307|112.103 +639240.771|221978.954|112.151 +639235.836|221983.620|112.240 +639230.914|221988.271|111.859 +639216.052|222002.307|110.338 +639196.353|222020.915|108.902 +639191.342|222025.640|107.756 +639186.389|222030.306|106.796 +639181.411|222035.006|106.138 +639176.489|222039.655|105.601 +639171.542|222044.330|105.351 +639166.641|222048.960|105.117 +639161.785|222053.557|105.400 +639156.875|222058.199|105.104 +639151.967|222062.835|104.903 +639147.085|222067.452|104.955 +639142.281|222072.009|105.824 +639127.916|222085.631|108.460 +639123.240|222090.078|110.112 +639118.446|222094.625|111.057 +639108.872|222103.696|112.228 +639104.086|222108.226|112.368 +639094.506|222117.293|113.115 +639089.678|222121.865|113.368 +639084.975|222126.328|114.303 +639065.965|222144.326|115.635 +639051.499|222157.993|114.904 +639046.711|222162.514|114.468 +639041.883|222167.076|114.120 +639037.058|222171.630|113.438 +639032.202|222176.214|112.941 +639027.335|222180.805|111.990 +639012.942|222194.399|110.978 +639008.132|222198.934|110.252 +638998.470|222208.057|109.283 +638993.797|222212.480|109.634 +638947.364|222256.432|113.279 +638929.173|222273.668|116.068 +638906.573|222295.074|118.772 +638902.013|222299.387|118.863 +638892.875|222308.028|118.988 +638879.311|222320.861|119.573 +638865.653|222333.772|119.482 +638861.023|222338.146|119.040 +638856.366|222342.541|118.476 +638851.836|222346.820|118.375 +638833.725|222363.932|117.690 +638810.923|222385.460|115.468 +638806.363|222389.764|114.895 +638801.843|222394.031|114.553 +638797.326|222398.295|113.980 +638774.774|222419.576|111.164 +638770.284|222423.810|110.633 +638765.825|222428.019|110.018 +638743.477|222449.105|107.043 +638728.843|222462.824|98.963 +638724.521|222466.912|99.011 +638720.288|222470.920|99.237 +638716.039|222474.937|99.420 +638711.781|222478.964|99.575 +638707.553|222482.963|99.642 +638703.188|222487.084|99.328 +638698.973|222491.070|99.490 +638694.806|222495.011|99.648 +638690.576|222499.013|99.758 +638686.360|222502.997|99.740 +638684.272|222503.375|99.691 +638688.488|222499.373|99.731 +638692.673|222495.402|99.648 +638696.858|222491.430|99.569 +638701.052|222487.449|99.316 +638705.352|222483.371|99.578 +638709.601|222479.342|99.603 +638713.801|222475.355|99.420 +638718.105|222471.267|99.274 +638722.336|222467.253|99.021 +638726.579|222463.224|98.853 +638731.379|222458.704|101.127 +638741.194|222449.474|106.842 +638750.432|222440.751|109.679 +638759.122|222432.506|109.423 +638763.633|222428.233|110.024 +638768.099|222424.002|110.420 +638772.604|222419.738|111.036 +638781.604|222411.216|112.048 +638786.152|222406.909|112.435 +638790.785|222402.529|113.569 +638795.275|222398.274|113.971 +638799.813|222393.976|114.386 +638808.936|222385.335|115.285 +638813.538|222380.979|115.855 +638818.119|222376.642|116.611 +638831.826|222363.648|117.482 +638836.432|222359.290|118.196 +638845.600|222350.594|118.644 +638850.099|222346.321|118.284 +638854.680|222341.971|118.415 +638859.359|222337.542|119.110 +638863.974|222333.168|119.476 +638900.723|222298.281|118.964 +638923.632|222276.509|117.004 +638937.330|222263.476|114.654 +638941.911|222259.117|113.889 +638955.844|222245.874|112.578 +638993.462|222210.126|109.393 +638998.235|222205.597|109.436 +639003.091|222200.995|109.765 +639007.903|222196.438|110.533 +639022.510|222182.594|111.700 +639027.392|222177.967|112.389 +639032.315|222173.307|113.029 +639037.186|222168.695|113.688 +639042.090|222164.047|114.282 +639061.579|222145.570|115.477 +639066.462|222140.940|115.626 +639085.679|222122.676|113.755 +639090.507|222118.083|113.112 +639095.366|222113.474|113.154 +639100.176|222108.896|112.377 +639104.995|222104.321|112.103 +639109.908|222099.655|111.828 +639124.225|222086.018|108.421 +639143.607|222067.580|105.287 +639148.465|222062.966|105.025 +639153.464|222058.223|105.235 +639158.411|222053.532|105.449 +639163.257|222048.927|105.101 +639168.244|222044.196|105.269 +639173.182|222039.514|105.446 +639178.217|222034.750|106.186 +639183.228|222030.002|106.747 +639188.239|222025.265|107.869 +639213.266|222001.558|110.557 +639218.332|221996.766|111.493 +639223.309|221992.051|111.975 +639238.238|221977.893|112.267 +639248.147|221968.484|111.493 +639258.099|221959.038|111.447 +639263.076|221954.316|111.453 +639288.030|221930.655|112.240 +639293.008|221925.936|112.401 +639298.086|221921.136|113.590 +639303.155|221916.344|114.648 +639308.123|221911.632|114.815 +639313.137|221906.877|114.995 +639318.099|221902.171|115.090 +639338.137|221883.188|116.769 +639348.098|221873.742|117.126 +639353.130|221868.963|116.961 +639358.116|221864.233|116.723 +639363.042|221859.551|116.248 +639373.052|221850.047|115.596 +639378.053|221845.305|115.827 +639388.014|221835.847|115.190 +639393.001|221831.113|115.071 +639402.974|221821.649|114.840 +639408.006|221816.873|114.602 +639412.999|221812.136|114.770 +639417.976|221807.409|114.340 +639432.914|221793.217|112.935 +639437.938|221788.441|112.100 +639447.904|221778.974|111.335 +639452.888|221774.237|110.841 +639457.871|221769.501|110.158 +639462.858|221764.761|109.676 +639482.816|221745.793|107.119 +639487.806|221741.051|106.683 +639492.799|221736.299|105.577 +639502.796|221726.807|104.891 +639512.793|221717.316|104.577 +639517.750|221712.613|104.470 +639537.687|221693.736|107.003 +639547.678|221684.263|107.448 +639552.671|221679.533|107.906 +639557.624|221674.836|107.973 +639562.619|221670.099|108.061 +639572.580|221660.656|107.756 +639582.553|221651.189|106.921 +639592.493|221641.750|105.799 +639612.475|221622.764|102.605 +639627.341|221608.651|100.962 +639632.324|221603.921|100.645 +639637.323|221599.172|99.932 +639642.279|221594.463|99.139 +639647.299|221589.690|98.064 +639652.313|221584.907|95.976 +639657.293|221580.168|94.860 +639662.249|221575.468|94.528 +639672.238|221565.979|93.199 +639682.025|221556.719|94.455 +639686.883|221552.141|96.305 +639691.858|221547.417|95.720 +639696.802|221542.732|95.774 +639701.706|221538.081|95.713 +639706.580|221533.481|97.140 +639711.493|221528.836|97.832 +639716.412|221524.167|97.524 +639721.356|221519.485|97.710 +639726.221|221514.870|97.606 +639731.168|221510.182|97.753 +639736.063|221505.546|97.984 +639740.958|221500.910|98.231 +639745.804|221496.332|99.267 +639750.696|221491.699|99.609 +639760.423|221482.491|100.432 +639765.266|221477.904|100.770 +639770.167|221473.262|101.029 +639775.032|221468.650|101.112 +639779.902|221464.036|101.151 +639784.767|221459.424|101.291 +639789.650|221454.797|101.224 +639794.548|221450.152|100.996 +639799.471|221445.473|100.438 +639804.274|221440.929|100.880 +639809.066|221436.405|102.044 +639813.830|221431.900|102.931 +639818.725|221427.258|102.837 +639823.553|221422.683|103.001 +639828.335|221418.157|103.693 +639833.139|221413.615|104.190 +639837.933|221409.077|104.781 +639842.710|221404.560|105.555 +639847.492|221400.040|106.305 +639857.041|221390.999|107.403 +639866.600|221381.956|108.494 +639871.343|221377.469|109.155 +639876.137|221372.928|109.341 +639904.572|221346.017|112.471 +639909.296|221341.542|112.932 +639914.079|221337.010|112.898 +639928.221|221323.620|113.886 +639942.407|221310.184|114.648 +639947.104|221305.734|114.672 +639951.807|221301.278|114.663 +639961.295|221292.283|114.428 +639966.035|221287.785|114.172 +639980.239|221274.315|113.380 +639984.975|221269.826|113.267 +639989.697|221265.345|112.932 +639994.382|221260.904|112.892 +639999.094|221256.436|112.679 +640003.800|221251.967|112.173 +640008.533|221247.478|111.856 +640013.252|221242.997|111.319 +640017.943|221238.547|111.008 +640032.040|221225.169|109.750 +640036.764|221220.686|109.317 +640041.461|221216.227|108.771 +640046.088|221211.837|108.402 +640050.724|221207.442|108.323 +640069.664|221189.435|104.327 +640078.909|221180.669|103.715 +640076.806|221180.105|103.586 +640067.543|221188.871|104.281 +640062.730|221193.437|105.388 +640053.357|221202.315|106.674 +640048.459|221206.970|108.469 +640043.896|221211.283|108.351 +640039.212|221215.718|108.756 +640034.505|221220.174|109.338 +640029.836|221224.593|109.698 +640020.369|221233.554|110.704 +640015.733|221237.941|110.908 +640006.311|221246.859|111.776 +640001.621|221251.297|112.118 +639992.208|221260.203|112.721 +639987.539|221264.620|112.962 +639982.811|221269.094|113.328 +639978.108|221273.541|113.517 +639968.662|221282.481|114.291 +639959.278|221291.354|114.309 +639954.581|221295.795|114.575 +639949.814|221300.303|114.654 +639940.417|221309.185|114.553 +639931.038|221318.048|114.389 +639926.295|221322.523|113.950 +639916.950|221331.347|113.163 +639912.241|221335.794|112.895 +639907.462|221340.311|112.868 +639902.777|221344.734|112.420 +639883.873|221362.574|110.502 +639879.112|221367.066|109.905 +639874.403|221371.510|109.317 +639869.608|221376.037|109.088 +639864.860|221380.517|108.427 +639860.099|221385.010|107.878 +639855.298|221389.539|107.272 +639840.936|221403.091|105.559 +639836.138|221407.617|104.934 +639831.362|221412.122|104.096 +639826.513|221416.697|103.529 +639821.694|221421.248|103.199 +639816.841|221425.826|102.672 +639811.940|221430.459|102.776 +639807.082|221435.049|102.386 +639802.275|221439.575|101.337 +639797.392|221444.184|100.666 +639792.445|221448.869|101.425 +639787.526|221453.520|101.294 +639782.588|221458.186|101.386 +639777.662|221462.841|101.331 +639767.802|221472.158|100.825 +639762.870|221476.825|100.977 +639757.939|221481.482|100.459 +639748.118|221490.754|99.499 +639738.209|221500.109|98.463 +639733.265|221504.778|98.140 +639728.272|221509.494|97.862 +639723.313|221514.184|97.887 +639718.321|221518.903|97.661 +639713.313|221523.639|97.747 +639708.305|221528.376|97.835 +639703.269|221533.134|97.579 +639698.399|221537.715|96.009 +639693.367|221542.470|95.717 +639688.368|221547.197|95.704 +639683.354|221551.943|96.034 +639668.412|221566.025|92.912 +639663.283|221570.890|93.833 +639658.260|221575.650|94.564 +639653.203|221580.436|94.967 +639648.076|221585.300|96.058 +639637.899|221594.969|99.182 +639632.842|221599.760|99.975 +639627.801|221604.536|100.493 +639622.705|221609.368|101.258 +639612.576|221618.963|102.550 +639607.498|221623.769|102.986 +639587.220|221642.993|106.330 +639582.203|221647.742|106.753 +639577.091|221652.582|107.198 +639567.018|221662.119|107.988 +639561.964|221666.902|108.216 +639551.866|221676.448|107.957 +639541.725|221686.028|107.348 +639536.726|221690.749|107.043 +639531.679|221695.513|106.400 +639516.533|221709.815|104.943 +639506.432|221719.364|104.736 +639501.382|221724.140|104.833 +639491.281|221733.699|105.449 +639481.195|221743.260|107.201 +639471.161|221752.770|108.539 +639466.119|221757.543|108.991 +639456.091|221767.044|110.210 +639451.056|221771.814|110.987 +639435.999|221786.073|112.267 +639416.016|221804.995|114.236 +639410.987|221809.756|114.684 +639405.991|221814.480|114.614 +639401.008|221819.198|114.962 +639396.015|221823.923|115.001 +639391.029|221828.641|115.242 +639381.050|221838.087|115.529 +639371.171|221847.441|116.001 +639361.201|221856.881|116.586 +639356.309|221861.514|116.809 +639351.322|221866.235|117.101 +639346.372|221870.917|117.098 +639336.475|221880.283|117.217 +639316.727|221898.946|115.812 +639311.732|221903.662|115.154 +639306.812|221908.313|115.047 +639296.918|221917.658|113.941 +639291.984|221922.312|112.825 +639286.991|221927.028|112.404 +639282.136|221931.627|112.761 +639277.143|221936.333|111.648 +639272.202|221941.006|111.429 +639257.590|221954.838|111.956 +639252.664|221959.498|112.060 +639247.788|221964.113|112.206 +639242.905|221968.734|112.255 +639213.549|221996.498|111.685 +639208.627|222001.143|110.798 +639203.677|222005.819|110.204 +639184.029|222024.372|107.790 +639179.061|222029.057|106.644 +639174.181|222033.662|106.010 +639169.268|222038.304|105.586 +639164.352|222042.949|105.165 +639159.523|222047.518|105.168 +639154.647|222052.130|105.245 +639149.837|222056.687|105.501 +639144.975|222061.280|105.245 +639140.160|222065.846|105.979 +639135.392|222070.366|106.720 +639121.161|222083.872|109.628 +639116.449|222088.343|110.432 +639111.630|222092.909|111.152 +639106.884|222097.408|111.642 +639102.081|222101.959|112.066 +639092.528|222111.002|112.569 +639087.758|222115.522|112.877 +639083.009|222120.027|113.837 +639059.272|222142.506|115.431 +639054.447|222147.072|115.401 +639040.014|222160.706|114.233 +639035.180|222165.275|113.846 +639025.579|222174.355|113.291 +639020.644|222179.003|111.844 +639015.810|222183.569|111.228 +639011.061|222188.062|111.271 +639006.221|222192.634|110.652 +639001.426|222197.163|110.042 +638996.665|222201.662|109.713 +638991.880|222206.192|109.567 +638968.490|222228.351|111.313 +638959.324|222237.046|112.731 +638945.282|222250.339|112.974 +638922.553|222271.897|116.495 +638918.018|222276.201|117.290 +638904.411|222289.097|118.817 +638872.584|222319.230|120.012 +638867.979|222323.589|119.939 +638858.859|222332.211|119.552 +638854.171|222336.640|118.784 +638849.584|222340.974|118.345 +638845.036|222345.275|118.168 +638840.553|222349.521|118.360 +638836.002|222353.825|118.193 +638831.433|222358.141|117.677 +638813.179|222375.389|115.958 +638808.637|222379.681|115.434 +638804.086|222383.979|114.907 +638795.025|222392.544|114.102 +638790.529|222396.792|113.660 +638786.051|222401.023|113.063 +638776.950|222409.615|111.740 +638763.472|222422.344|110.057 +638759.076|222426.501|109.771 +638754.614|222430.720|109.426 +638750.219|222434.874|109.183 +638741.511|222443.113|108.917 +638736.808|222447.533|107.003 +638722.196|222461.246|98.841 +638717.904|222465.312|99.030 +638713.679|222469.311|99.319 +638709.421|222473.340|99.472 +638700.936|222481.378|99.697 +638696.629|222485.447|99.426 +638692.456|222489.397|99.560 +638688.235|222493.393|99.716 +638684.047|222497.355|99.807 +638679.828|222501.348|99.770 +638681.169|222497.736|99.764 +638685.376|222493.753|99.758 +638689.564|222489.784|99.679 +638693.694|222485.861|99.124 +638698.037|222481.756|99.560 +638702.301|222477.717|99.642 +638706.501|222473.733|99.453 +638710.763|222469.698|99.313 +638715.002|222465.677|99.100 +638719.209|222461.685|98.743 +638723.985|222457.192|100.871 +638733.738|222448.026|106.232 +638742.882|222439.404|108.796 +638747.235|222435.280|108.808 +638751.706|222431.046|109.167 +638760.570|222422.661|109.811 +638765.060|222418.418|110.576 +638769.626|222414.102|111.261 +638787.719|222396.994|113.599 +638792.242|222392.714|113.916 +638796.728|222388.471|114.325 +638801.288|222384.155|114.620 +638805.842|222379.849|115.175 +638810.356|222375.578|115.538 +638828.714|222358.214|117.534 +638833.241|222353.928|117.818 +638837.883|222349.533|118.217 +638842.360|222345.290|117.979 +638846.905|222340.987|118.150 +638851.565|222336.579|118.729 +638856.195|222332.199|119.147 +638869.990|222319.141|120.012 +638874.559|222314.810|119.890 +638879.153|222310.461|120.223 +638892.808|222297.510|119.403 +638897.416|222293.139|119.006 +638911.099|222280.161|117.927 +638938.421|222254.216|113.977 +638943.051|222249.824|113.529 +638952.308|222241.039|112.660 +638957.093|222236.513|112.962 +638970.980|222223.330|111.152 +638989.780|222205.497|109.783 +638994.538|222200.989|109.710 +638999.339|222196.441|109.993 +639004.185|222191.863|110.615 +639009.053|222187.254|111.097 +639013.832|222182.728|111.298 +639018.636|222178.183|111.697 +639033.351|222164.275|113.980 +639038.118|222159.761|114.230 +639043.023|222155.125|114.828 +639047.918|222150.492|115.401 +639052.746|222145.920|115.428 +639057.519|222141.400|115.443 +639076.795|222123.127|114.791 +639081.565|222118.595|114.059 +639086.320|222114.078|113.160 +639091.093|222109.545|112.441 +639105.595|222095.793|111.563 +639110.429|222091.205|111.005 +639120.009|222082.107|109.524 +639134.435|222068.400|106.668 +639139.254|222063.822|105.994 +639144.137|222059.189|105.467 +639149.029|222054.556|105.543 +639153.921|222049.914|105.171 +639158.844|222045.251|105.110 +639163.766|222040.587|105.074 +639168.750|222035.875|105.732 +639173.718|222031.175|106.296 +639178.735|222026.429|106.884 +639203.723|222002.792|110.432 +639208.682|221998.101|111.173 +639233.611|221974.491|112.843 +639238.601|221969.761|112.950 +639243.490|221965.119|112.322 +639278.320|221932.100|112.313 +639283.355|221927.329|112.578 +639288.344|221922.605|112.962 +639293.337|221917.878|113.432 +639298.433|221913.071|114.928 +639303.395|221908.368|114.919 +639308.416|221903.610|115.199 +639313.445|221898.849|115.657 +639333.470|221879.884|117.001 +639343.477|221870.402|117.229 +639348.515|221865.623|117.141 +639353.502|221860.892|116.876 +639363.475|221851.431|116.495 +639378.514|221837.160|115.422 +639383.509|221832.427|115.477 +639393.531|221822.920|115.209 +639398.563|221818.147|114.977 +639403.550|221813.419|114.788 +639428.647|221789.596|112.731 +639438.663|221780.089|111.874 +639443.698|221775.313|111.551 +639448.685|221770.580|111.228 +639453.717|221765.800|110.630 +639473.813|221746.714|107.851 +639478.805|221741.971|107.281 +639483.844|221737.186|106.808 +639493.884|221727.642|104.995 +639498.931|221722.860|105.107 +639503.982|221718.072|104.876 +639519.033|221703.801|104.885 +639524.031|221699.073|105.598 +639529.073|221694.309|106.580 +639534.117|221689.533|107.095 +639539.064|221684.851|107.582 +639544.106|221680.078|108.113 +639554.103|221670.605|108.430 +639559.151|221665.814|108.296 +639564.155|221661.062|108.018 +639569.163|221656.310|107.811 +639574.171|221651.552|107.421 +639579.185|221646.791|107.025 +639584.199|221642.027|106.543 +639589.225|221637.248|105.735 +639614.231|221613.476|102.373 +639619.285|221608.666|101.224 +639624.238|221603.957|100.337 +639629.276|221599.169|99.828 +639634.226|221594.466|99.261 +639639.228|221589.711|98.603 +639644.266|221584.907|97.018 +639649.286|221580.119|94.921 +639654.270|221575.391|95.003 +639659.250|221570.652|94.049 +639664.237|221565.906|93.004 +639678.931|221552.013|96.158 +639683.896|221547.295|95.723 +639688.843|221542.601|95.729 +639693.772|221537.931|96.128 +639698.606|221533.362|97.433 +639703.486|221528.742|97.850 +639708.433|221524.048|97.890 +639713.337|221519.396|97.908 +639718.241|221514.739|97.902 +639723.088|221510.146|98.140 +639728.044|221505.446|98.158 +639732.884|221500.859|98.493 +639737.770|221496.232|98.947 +639742.613|221491.638|99.255 +639747.429|221487.082|100.014 +639752.300|221482.470|100.679 +639757.152|221477.867|100.892 +639762.002|221473.274|101.215 +639766.811|221468.714|101.398 +639771.676|221464.097|101.480 +639776.534|221459.491|101.700 +639781.366|221454.910|101.669 +639791.049|221445.726|101.995 +639795.917|221441.099|101.535 +639800.687|221436.585|102.358 +639805.469|221432.059|103.038 +639810.294|221427.478|102.645 +639815.116|221422.906|102.858 +639819.935|221418.337|103.135 +639824.705|221413.817|103.443 +639829.457|221409.315|103.964 +639843.712|221395.821|106.129 +639853.177|221386.857|107.171 +639857.931|221382.352|107.704 +639862.628|221377.905|108.369 +639872.105|221368.929|109.347 +639881.511|221360.022|110.603 +639886.235|221355.545|111.036 +639900.347|221342.176|112.517 +639905.075|221337.699|112.980 +639909.748|221333.264|113.047 +639914.509|221328.753|113.246 +639919.184|221324.321|113.758 +639923.878|221319.874|114.133 +639928.587|221315.412|114.410 +639933.306|221310.934|114.593 +639937.993|221306.487|114.648 +639942.687|221302.034|114.693 +639947.427|221297.538|114.770 +639952.136|221293.067|114.715 +639956.888|221288.556|114.352 +639961.576|221284.109|114.523 +639966.303|221279.619|114.386 +639975.740|221270.655|113.590 +639980.486|221266.150|113.413 +639994.625|221252.720|112.639 +639999.365|221248.215|112.234 +640004.108|221243.710|111.837 +640008.823|221239.227|111.307 +640013.593|221234.694|110.780 +640032.479|221216.745|108.951 +640037.194|221212.270|108.628 +640041.891|221207.808|108.433 +640046.521|221203.413|108.393 +640051.401|221198.758|106.680 +640060.923|221189.700|104.992 +640074.986|221176.331|103.510 +640079.704|221171.851|103.099 +640078.772|221169.766|103.099 +640074.044|221174.249|103.547 +640050.255|221196.823|106.653 +640045.271|221201.572|108.393 +640040.574|221206.019|108.518 +640035.911|221210.438|108.466 +640031.119|221214.980|108.960 +640026.364|221219.491|109.588 +640012.069|221233.049|110.841 +640007.256|221237.614|111.310 +639988.167|221255.717|113.023 +639983.363|221260.270|113.212 +639973.807|221269.326|113.645 +639964.258|221278.382|114.514 +639959.485|221282.905|114.602 +639949.942|221291.945|114.831 +639945.187|221296.450|114.840 +639940.398|221300.982|114.748 +639935.653|221305.475|114.718 +639930.864|221310.011|114.675 +639926.167|221314.455|114.285 +639921.388|221318.978|114.187 +639916.660|221323.449|113.678 +639911.936|221327.918|113.148 +639907.163|221332.435|113.038 +639902.350|221336.989|112.901 +639897.620|221341.466|112.478 +639883.404|221354.908|111.005 +639873.863|221363.930|110.079 +639869.124|221368.410|109.356 +639864.360|221372.912|108.841 +639859.559|221377.451|108.238 +639854.832|221381.916|107.381 +639826.107|221409.065|103.626 +639821.340|221413.576|103.251 +639816.454|221418.200|103.166 +639811.638|221422.759|102.858 +639806.771|221427.365|102.611 +639801.851|221432.031|103.007 +639797.011|221436.607|102.443 +639792.189|221441.169|102.264 +639787.291|221445.802|101.831 +639777.531|221455.047|101.874 +639772.612|221459.704|101.813 +639767.738|221464.316|101.773 +639762.831|221468.958|101.602 +639757.987|221473.536|101.166 +639748.197|221482.793|100.511 +639743.342|221487.380|99.630 +639738.389|221492.065|99.472 +639733.509|221496.674|98.932 +639728.626|221501.288|98.429 +639718.723|221510.661|98.246 +639713.785|221515.327|97.905 +639708.875|221519.979|98.006 +639703.873|221524.712|97.981 +639698.923|221529.397|97.978 +639694.028|221534.015|96.908 +639689.084|221538.681|95.863 +639684.137|221543.360|95.771 +639679.141|221548.090|95.793 +639674.131|221552.839|96.131 +639654.230|221571.655|94.625 +639649.161|221576.461|95.354 +639644.144|221581.222|96.131 +639633.991|221590.869|98.658 +639628.987|221595.615|99.380 +639623.945|221600.394|99.859 +639618.901|221605.183|100.590 +639613.838|221609.992|101.934 +639603.764|221619.548|103.297 +639588.619|221633.916|105.677 +639578.524|221643.490|106.985 +639573.510|221648.242|107.390 +639568.450|221653.036|107.826 +639563.393|221657.828|108.125 +639558.389|221662.567|108.369 +639553.338|221667.350|108.466 +639548.291|221672.126|108.317 +639543.292|221676.853|108.113 +639528.162|221691.155|106.567 +639523.114|221695.922|105.949 +639518.067|221700.692|105.482 +639513.019|221705.474|105.516 +639507.969|221710.253|105.613 +639497.870|221719.803|104.961 +639477.690|221738.938|107.226 +639472.648|221743.721|108.009 +639467.561|221748.543|108.591 +639457.484|221758.098|109.725 +639452.455|221762.871|110.621 +639447.469|221767.602|111.280 +639442.382|221772.418|111.420 +639437.349|221777.188|111.880 +639432.366|221781.912|112.471 +639427.327|221786.682|112.584 +639422.256|221791.495|113.340 +639407.217|221805.748|114.754 +639397.192|221815.239|115.050 +639392.205|221819.960|115.279 +639382.177|221829.446|115.562 +639377.172|221834.176|115.251 +639372.198|221838.888|115.882 +639357.226|221853.053|116.446 +639352.191|221857.817|116.702 +639342.264|221867.214|117.232 +639317.410|221890.732|118.418 +639302.414|221904.869|115.187 +639292.432|221914.293|114.261 +639287.445|221919.005|113.910 +639282.453|221923.718|113.529 +639277.509|221928.390|113.185 +639272.565|221933.060|112.880 +639267.600|221937.748|112.246 +639257.715|221947.087|111.895 +639233.310|221970.194|113.654 +639228.411|221974.820|113.569 +639213.644|221988.771|112.453 +639198.867|222002.713|110.338 +639179.137|222021.333|107.616 +639169.323|222030.593|106.281 +639164.406|222035.238|105.808 +639159.487|222039.880|105.385 +639154.634|222044.464|105.178 +639149.809|222049.030|105.272 +639144.933|222053.642|105.367 +639140.178|222058.144|105.720 +639135.344|222062.725|106.275 +639130.601|222067.215|106.799 +639125.770|222071.793|107.396 +639121.088|222076.234|108.533 +639102.148|222094.183|111.429 +639092.605|222103.215|112.033 +639087.822|222107.741|112.252 +639059.491|222134.573|115.340 +639054.800|222139.013|115.608 +639050.033|222143.521|115.663 +639045.235|222148.054|115.495 +639040.459|222152.568|115.126 +639026.027|222166.189|113.785 +639016.313|222175.346|112.090 +639011.491|222179.893|111.563 +639006.693|222184.423|111.255 +639001.929|222188.918|110.847 +638997.165|222193.417|110.478 +638992.392|222197.922|110.064 +638987.668|222202.385|110.045 +638983.004|222206.798|110.460 +638978.368|222211.181|110.771 +638969.005|222220.039|111.438 +638964.415|222224.385|112.087 +638945.928|222241.875|113.627 +638941.311|222246.239|113.828 +638936.638|222250.659|113.998 +638932.124|222254.932|114.581 +638923.004|222263.564|115.852 +638918.521|222267.813|116.662 +638909.480|222276.372|117.857 +638900.409|222284.958|118.903 +638877.766|222306.376|120.448 +638850.248|222332.361|119.421 +638845.640|222336.704|118.586 +638840.982|222341.096|118.058 +638836.471|222345.354|117.842 +638831.973|222349.606|117.970 +638813.739|222366.809|116.041 +638809.125|222371.159|115.394 +638800.097|222379.678|114.700 +638795.585|222383.936|114.407 +638791.105|222388.167|114.020 +638768.635|222409.362|111.615 +638764.069|222413.666|110.941 +638759.497|222417.973|110.012 +638755.071|222422.149|109.585 +638750.627|222426.340|109.097 +638746.174|222430.543|108.829 +638728.429|222447.277|106.580 +638723.497|222451.894|103.654 +638713.902|222460.895|98.954 +638709.732|222464.839|99.264 +638705.523|222468.817|99.652 +638701.286|222472.822|99.676 +638697.086|222476.790|99.889 +638692.813|222480.829|99.773 +638688.515|222484.886|99.566 +638684.376|222488.803|99.859 +638680.185|222492.762|99.932 +638675.991|222496.727|100.017 +638671.760|222500.720|99.950 +638679.569|222490.961|99.776 +638683.791|222486.956|99.630 +638687.954|222483.002|99.463 +638692.261|222478.921|99.737 +638696.486|222474.913|99.639 +638700.695|222470.920|99.493 +638704.913|222466.918|99.405 +638709.129|222462.913|99.075 +638713.372|222458.886|98.896 +638723.073|222449.767|104.388 +638727.947|222445.183|107.080 +638736.899|222436.712|108.482 +638741.194|222432.634|108.198 +638749.993|222424.301|108.975 +638754.450|222420.082|109.554 +638758.945|222415.827|110.103 +638763.514|222411.502|110.789 +638768.031|222407.229|111.493 +638781.464|222394.510|112.904 +638786.057|222390.160|113.593 +638790.520|222385.935|113.877 +638795.019|222381.671|114.117 +638808.564|222368.839|114.943 +638826.977|222351.414|117.583 +638831.494|222347.137|117.830 +638835.978|222342.882|117.641 +638840.534|222338.566|117.876 +638845.271|222334.089|118.878 +638849.916|222329.697|119.656 +638859.121|222320.976|120.274 +638863.672|222316.663|120.308 +638868.232|222312.344|120.402 +638872.776|222308.031|120.158 +638877.388|222303.661|120.320 +638922.904|222260.446|115.916 +638932.033|222251.768|114.474 +638936.675|222247.364|114.123 +638983.352|222203.058|110.423 +638988.015|222198.632|110.024 +638992.877|222194.027|110.387 +638997.629|222189.525|110.707 +639002.478|222184.935|111.014 +639007.334|222180.335|111.432 +639012.162|222175.769|112.014 +639026.783|222161.934|113.928 +639031.611|222157.362|114.291 +639036.512|222152.723|114.873 +639041.395|222148.100|115.334 +639046.260|222143.494|115.660 +639051.066|222138.934|115.577 +639055.843|222134.405|115.215 +639070.275|222120.713|114.770 +639079.830|222111.636|113.416 +639084.588|222107.113|112.578 +639089.361|222102.578|111.856 +639094.220|222097.972|111.950 +639118.314|222075.085|108.942 +639123.051|222070.574|107.457 +639132.710|222061.399|106.321 +639137.605|222056.754|105.943 +639142.482|222052.121|105.394 +639147.356|222047.503|105.296 +639152.312|222042.800|105.120 +639157.225|222038.146|105.519 +639162.175|222033.458|105.815 +639167.180|222028.721|106.229 +639172.167|222024.003|107.015 +639177.144|222019.297|107.747 +639192.140|222005.112|109.801 +639197.185|222000.347|110.938 +639207.179|221990.893|112.225 +639212.187|221986.159|113.044 +639222.130|221976.738|113.288 +639227.095|221972.038|113.697 +639256.712|221943.941|112.087 +639261.769|221939.156|112.657 +639266.777|221934.419|113.206 +639271.775|221929.686|113.688 +639276.762|221924.964|114.032 +639281.794|221920.200|114.315 +639286.772|221915.485|114.556 +639291.795|221910.727|114.779 +639296.775|221906.012|115.135 +639301.743|221901.306|115.306 +639306.776|221896.542|115.855 +639311.838|221891.771|117.955 +639316.843|221887.032|118.028 +639321.836|221882.295|117.955 +639326.816|221877.571|117.568 +639331.803|221872.840|117.370 +639336.808|221868.101|117.543 +639341.800|221863.367|117.495 +639346.766|221858.652|116.772 +639356.736|221849.194|116.315 +639366.718|221839.730|116.263 +639376.718|221830.238|115.373 +639381.717|221825.505|115.620 +639391.733|221816.007|115.163 +639401.742|221806.510|114.489 +639406.778|221801.733|114.498 +639411.761|221797.009|114.215 +639416.736|221792.284|113.584 +639421.768|221787.511|113.288 +639426.794|221782.738|112.761 +639436.807|221773.234|111.822 +639441.790|221768.504|111.475 +639446.822|221763.728|111.036 +639461.874|221749.436|109.082 +639482.021|221730.297|106.055 +639487.017|221725.551|105.388 +639497.108|221715.981|105.123 +639522.197|221692.218|106.299 +639532.231|221682.724|107.461 +639537.272|221677.954|108.055 +639542.313|221673.178|108.259 +639547.263|221668.490|108.451 +639552.308|221663.707|108.533 +639557.355|221658.925|108.549 +639562.314|221654.216|108.143 +639567.371|221649.421|107.811 +639572.382|221644.660|107.232 +639577.390|221639.912|107.052 +639602.530|221616.024|103.151 +639617.621|221601.677|100.215 +639622.619|221596.926|99.438 +639632.620|221587.428|98.109 +639642.712|221577.833|95.921 +639647.668|221573.124|95.409 +639652.685|221568.360|94.671 +639657.748|221563.535|92.937 +639662.609|221558.957|94.875 +639667.532|221554.308|96.363 +639672.448|221549.642|95.902 +639677.444|221544.905|95.845 +639682.378|221540.230|96.061 +639687.322|221535.548|96.162 +639697.064|221526.340|98.216 +639701.962|221521.698|98.259 +639706.869|221517.046|98.201 +639711.825|221512.346|98.118 +639716.705|221507.729|98.579 +639726.453|221498.490|98.874 +639731.287|221493.915|99.316 +639736.185|221489.273|99.523 +639741.019|221484.698|99.975 +639745.878|221480.105|100.819 +639750.724|221475.514|101.133 +639755.570|221470.927|101.447 +639760.414|221466.337|101.782 +639765.223|221461.783|101.977 +639770.085|221457.174|102.126 +639774.898|221452.618|102.312 +639784.493|221443.532|103.105 +639789.400|221438.874|102.739 +639794.152|221434.375|103.169 +639799.020|221429.755|102.736 +639803.866|221425.158|102.620 +639808.609|221420.672|103.199 +639813.391|221416.139|103.327 +639818.216|221411.567|103.522 +639823.010|221407.023|103.538 +639827.768|221402.521|104.019 +639851.366|221380.194|107.000 +639860.733|221371.337|108.594 +639870.090|221362.479|109.783 +639884.187|221349.141|111.335 +639902.841|221331.484|113.200 +639907.559|221327.012|113.307 +639912.189|221322.629|113.806 +639916.874|221318.192|114.227 +639921.559|221313.751|114.270 +639926.222|221309.331|114.504 +639930.879|221304.917|114.809 +639935.558|221300.483|114.959 +639949.615|221287.148|114.928 +639954.276|221282.725|114.895 +639958.958|221278.284|114.727 +639963.652|221273.828|114.480 +639982.439|221255.991|113.307 +639987.109|221251.556|113.002 +639991.785|221247.118|112.700 +639996.469|221242.668|112.331 +640005.894|221233.716|111.319 +640010.600|221229.245|110.886 +640015.273|221224.804|110.393 +640019.942|221220.369|109.935 +640024.621|221215.928|109.801 +640029.275|221211.511|109.521 +640034.039|221206.979|108.494 +640038.657|221202.599|108.518 +640048.148|221193.568|106.564 +640066.897|221175.752|104.303 +640071.594|221171.290|103.672 +640076.220|221166.895|103.205 +640080.936|221162.411|102.517 +640080.826|221159.424|102.468 +640076.120|221163.886|103.068 +640071.386|221168.367|103.538 +640066.631|221172.875|104.184 +640061.898|221177.352|104.394 +640052.220|221186.533|106.302 +640047.545|221190.959|106.561 +640042.644|221195.610|107.695 +640037.855|221200.148|108.445 +640033.125|221204.623|108.472 +640028.288|221209.210|109.289 +640023.466|221213.776|109.679 +640018.699|221218.290|110.054 +640013.892|221222.841|110.408 +640009.103|221227.379|111.002 +640004.254|221231.970|111.359 +639999.450|221236.517|111.767 +639994.601|221241.110|112.191 +639989.797|221245.658|112.660 +639984.966|221250.233|113.005 +639980.156|221254.784|113.215 +639975.328|221259.356|113.593 +639965.639|221268.533|114.349 +639960.799|221273.112|114.520 +639955.961|221277.690|114.727 +639951.124|221282.265|114.928 +639946.305|221286.824|115.038 +639941.453|221291.415|115.029 +639936.646|221295.959|115.074 +639931.815|221300.528|114.940 +639927.024|221305.058|114.907 +639922.180|221309.633|114.498 +639917.401|221314.153|114.407 +639912.582|221318.701|113.797 +639907.797|221323.218|113.355 +639902.908|221327.848|113.450 +639898.132|221332.356|112.956 +639893.313|221336.906|112.414 +639888.524|221341.430|112.063 +639878.838|221350.577|111.078 +639874.004|221355.142|110.743 +639859.583|221368.749|108.506 +639854.743|221373.315|107.796 +639849.961|221377.826|106.973 +639825.778|221400.652|103.855 +639820.837|221405.322|103.769 +639811.065|221414.563|103.571 +639806.201|221419.160|103.239 +639801.315|221423.768|102.584 +639796.423|221428.398|102.645 +639791.454|221433.101|103.038 +639786.538|221437.750|102.837 +639771.834|221451.652|102.416 +639766.918|221456.300|102.276 +639762.002|221460.951|102.221 +639757.097|221465.590|101.980 +639752.196|221470.226|101.733 +639747.301|221474.850|101.386 +639742.427|221479.455|100.755 +639737.544|221484.067|100.212 +639732.607|221488.734|99.853 +639727.715|221493.360|99.523 +639722.816|221497.993|99.313 +639717.879|221502.660|98.954 +639712.993|221507.278|98.566 +639708.043|221511.959|98.441 +639703.099|221516.638|98.262 +639698.182|221521.295|98.499 +639693.251|221525.953|98.094 +639688.410|221530.519|96.902 +639683.445|221535.207|96.195 +639678.544|221539.849|96.235 +639673.612|221544.506|95.838 +639668.611|221549.243|95.963 +639663.694|221553.900|96.390 +639658.750|221558.563|95.296 +639653.855|221563.181|94.110 +639638.908|221577.354|95.963 +639633.882|221582.128|97.070 +639628.859|221586.895|98.164 +639623.906|221591.592|98.737 +639618.901|221596.340|99.557 +639603.886|221610.593|102.581 +639598.939|221615.287|103.422 +639588.908|221624.809|105.418 +639578.954|221634.245|106.613 +639563.954|221648.461|107.936 +639558.986|221653.173|108.634 +639553.984|221657.907|108.600 +639549.028|221662.598|108.634 +639544.075|221667.283|108.521 +639539.028|221672.056|108.293 +639534.029|221676.783|108.064 +639524.080|221686.180|106.948 +639519.082|221690.908|106.488 +639509.081|221700.360|105.546 +639504.076|221705.099|105.964 +639499.074|221709.827|105.452 +639494.024|221714.603|105.257 +639489.019|221719.337|105.043 +639484.020|221724.076|105.479 +639479.022|221728.816|106.122 +639474.026|221733.552|106.872 +639468.985|221738.338|107.777 +639463.946|221743.117|108.591 +639458.950|221747.851|108.948 +639448.926|221757.357|110.216 +639443.936|221762.088|110.792 +639438.901|221766.858|111.319 +639428.931|221776.310|112.279 +639418.860|221785.850|112.938 +639403.870|221800.060|114.605 +639398.880|221804.784|114.703 +639383.869|221819.003|115.257 +639378.888|221823.728|115.635 +639373.844|221828.501|115.562 +639358.839|221842.720|116.303 +639343.873|221856.896|116.961 +639338.905|221861.611|117.623 +639333.903|221866.345|117.525 +639318.898|221880.552|117.424 +639313.881|221885.297|117.095 +639308.858|221890.046|116.717 +639303.810|221894.813|115.916 +639298.820|221899.532|115.373 +639293.828|221904.250|114.824 +639288.799|221909.005|114.504 +639283.827|221913.711|114.398 +639278.810|221918.460|114.361 +639273.830|221923.175|114.130 +639268.910|221927.832|114.181 +639263.881|221932.590|114.050 +639258.885|221937.318|113.672 +639253.875|221942.042|112.423 +639248.934|221946.727|112.983 +639239.034|221956.106|113.121 +639234.163|221960.729|114.005 +639224.254|221970.114|114.148 +639219.347|221974.756|113.901 +639189.522|222002.941|110.252 +639184.602|222007.590|109.551 +639154.878|222035.674|105.485 +639149.995|222040.295|105.449 +639145.097|222044.931|105.275 +639140.233|222049.539|105.476 +639130.580|222058.692|106.199 +639125.785|222063.237|106.689 +639121.000|222067.775|107.262 +639111.606|222076.712|110.103 +639087.667|222099.399|111.603 +639082.897|222103.925|112.362 +639078.227|222108.357|113.182 +639073.506|222112.840|113.941 +639064.039|222121.814|114.898 +639059.296|222126.309|115.090 +639054.547|222130.805|115.273 +639049.814|222135.295|115.571 +639040.255|222144.341|115.510 +639035.470|222148.868|115.065 +639030.700|222153.379|114.791 +639025.896|222157.917|114.267 +639021.016|222162.532|113.541 +639016.276|222167.009|113.221 +639011.430|222171.591|112.459 +639001.817|222180.674|111.277 +638997.059|222185.176|110.911 +638992.307|222189.668|110.627 +638987.558|222194.161|110.384 +638982.916|222198.559|110.597 +638978.201|222203.028|110.996 +638973.580|222207.411|111.371 +638968.932|222211.815|111.575 +638904.899|222272.528|118.052 +638900.480|222276.725|118.976 +638891.427|222285.309|119.835 +638882.423|222293.843|120.433 +638864.132|222311.156|120.174 +638859.603|222315.444|120.271 +638841.269|222332.778|118.763 +638836.621|222337.170|117.997 +638832.024|222341.517|117.568 +638827.507|222345.793|117.598 +638823.002|222350.054|117.446 +638813.703|222358.833|115.614 +638809.180|222363.109|115.157 +638800.197|222371.607|114.663 +638795.646|222375.911|114.392 +638791.138|222380.175|114.117 +638773.091|222397.231|112.084 +638768.577|222401.499|111.627 +638750.582|222418.503|109.323 +638746.144|222422.697|108.863 +638741.703|222426.895|108.399 +638737.283|222431.076|108.067 +638732.986|222435.146|108.360 +638728.697|222439.209|108.448 +638724.439|222443.238|108.472 +638709.424|222457.317|98.740 +638705.249|222461.276|99.261 +638701.055|222465.251|99.466 +638696.858|222469.228|99.673 +638692.639|222473.224|99.792 +638688.393|222477.242|99.807 +638684.120|222481.286|99.712 +638679.914|222485.264|99.709 +638675.762|222489.199|99.953 +638671.614|222493.125|100.014 +638667.399|222497.115|99.999 +638663.217|222501.071|99.935 +638677.295|222485.297|99.813 +638681.499|222481.308|99.584 +638685.751|222477.275|99.840 +638689.984|222473.261|99.773 +638694.191|222469.271|99.603 +638698.403|222465.272|99.490 +638702.633|222461.255|99.222 +638706.864|222457.241|98.969 +638716.584|222448.103|104.510 +638730.337|222435.109|108.201 +638747.808|222418.549|108.838 +638756.931|222409.923|110.582 +638770.305|222397.256|111.834 +638783.915|222384.372|113.465 +638792.903|222375.859|114.145 +638797.451|222371.546|114.416 +638801.980|222367.254|114.599 +638810.969|222358.741|115.184 +638815.650|222354.309|116.001 +638820.369|222349.850|117.046 +638824.913|222345.543|117.424 +638829.421|222341.267|117.360 +638833.999|222336.930|117.696 +638838.706|222332.477|118.500 +638857.180|222314.978|120.299 +638880.143|222293.197|120.521 +638889.251|222284.550|119.979 +638893.868|222280.164|119.671 +638902.927|222271.556|118.613 +638916.555|222258.596|116.428 +638921.044|222254.323|115.376 +638925.641|222249.955|115.029 +638962.872|222214.592|111.853 +638967.566|222210.139|111.633 +638986.418|222192.238|110.414 +638991.231|222187.678|110.792 +638996.086|222183.075|111.173 +639000.902|222178.516|111.624 +639005.779|222173.895|112.218 +639010.628|222169.305|112.615 +639020.370|222160.081|113.864 +639025.274|222155.436|114.416 +639034.979|222146.240|115.196 +639039.847|222141.629|115.550 +639049.478|222132.491|115.492 +639054.279|222127.937|115.376 +639059.107|222123.353|115.087 +639068.681|222114.261|114.285 +639073.466|222109.713|113.663 +639083.037|222100.609|112.057 +639087.798|222096.082|111.240 +639097.484|222086.886|110.722 +639107.204|222077.657|110.121 +639116.763|222068.559|107.997 +639126.428|222059.369|106.458 +639131.253|222054.782|105.857 +639136.212|222050.079|105.632 +639141.071|222045.464|105.400 +639146.009|222040.782|105.516 +639150.946|222036.101|105.650 +639155.875|222031.428|105.729 +639160.831|222026.731|106.110 +639165.778|222022.043|106.446 +639180.850|222007.788|109.207 +639185.849|222003.060|110.310 +639215.771|221974.729|114.212 +639220.773|221969.989|114.453 +639235.626|221955.892|113.941 +639240.497|221951.259|113.108 +639245.459|221946.547|112.910 +639250.442|221941.823|113.029 +639255.490|221937.050|114.194 +639260.467|221932.331|114.291 +639265.381|221927.668|114.218 +639270.376|221922.925|113.870 +639275.345|221918.213|113.913 +639280.322|221913.495|114.139 +639285.345|221908.731|114.364 +639290.326|221904.012|114.709 +639295.312|221899.288|115.184 +639300.344|221894.521|115.705 +639305.328|221889.802|116.227 +639310.354|221885.041|116.699 +639315.328|221880.329|117.144 +639320.345|221875.574|117.559 +639325.283|221870.886|117.330 +639335.238|221861.447|117.546 +639340.228|221856.713|117.446 +639345.205|221851.986|117.095 +639355.157|221842.531|116.260 +639360.152|221837.794|116.355 +639365.093|221833.106|116.269 +639370.107|221828.339|115.574 +639375.057|221823.645|115.730 +639385.076|221814.139|115.462 +639390.056|221809.408|115.145 +639395.040|221804.678|115.010 +639415.041|221785.676|113.005 +639419.988|221780.986|113.105 +639425.011|221776.209|112.484 +639430.037|221771.433|111.969 +639435.021|221766.700|111.447 +639445.030|221757.187|110.143 +639470.064|221733.397|107.272 +639480.094|221723.863|105.903 +639485.090|221719.114|105.330 +639490.135|221714.323|104.943 +639495.133|221709.586|105.327 +639500.129|221704.852|105.860 +639510.172|221695.334|106.214 +639515.171|221690.591|106.168 +639530.198|221676.360|107.991 +639535.190|221671.629|108.314 +639540.186|221666.896|108.597 +639550.226|221657.371|108.628 +639555.228|221652.628|108.625 +639560.278|221647.833|108.354 +639580.328|221628.799|106.583 +639590.384|221619.237|104.931 +639595.419|221614.449|103.928 +639600.469|221609.639|102.568 +639605.508|221604.847|101.739 +639615.560|221595.292|99.789 +639620.620|221590.476|98.618 +639625.612|221585.733|98.128 +639630.669|221580.927|97.283 +639635.695|221576.141|96.055 +639650.670|221561.934|95.601 +639655.650|221557.228|96.841 +639660.664|221552.464|96.219 +639665.614|221547.767|96.055 +639670.613|221543.028|95.921 +639675.597|221538.303|96.091 +639680.547|221533.609|96.015 +639685.484|221528.940|97.125 +639690.370|221524.325|98.320 +639695.302|221519.656|98.646 +639700.298|221514.916|98.649 +639705.254|221510.213|98.509 +639720.006|221496.241|99.542 +639724.938|221491.568|99.917 +639734.792|221482.238|100.865 +639739.632|221477.654|101.233 +639744.567|221472.978|101.602 +639749.462|221468.339|101.880 +639754.339|221463.725|102.428 +639759.252|221459.064|102.456 +639764.120|221454.447|102.483 +639769.027|221449.795|102.639 +639773.895|221445.181|102.733 +639778.793|221440.538|103.059 +639783.621|221435.963|103.081 +639788.498|221431.337|103.111 +639793.408|221426.676|102.745 +639798.230|221422.107|102.916 +639803.083|221417.508|103.306 +639807.886|221412.960|103.748 +639822.425|221399.171|103.632 +639827.180|221394.669|104.150 +639831.947|221390.161|105.050 +639851.012|221372.114|107.214 +639855.709|221367.667|107.869 +639860.397|221363.238|109.116 +639865.134|221358.757|109.856 +639869.840|221354.301|110.426 +639879.283|221345.358|111.316 +639884.001|221340.893|111.825 +639888.716|221336.428|112.356 +639902.829|221323.059|113.456 +639907.465|221318.667|113.874 +639912.189|221314.196|114.383 +639916.843|221309.785|114.675 +639930.907|221296.459|115.212 +639935.549|221292.058|115.266 +639940.243|221287.611|115.327 +639944.958|221283.139|115.224 +639949.634|221278.705|115.071 +639954.315|221274.261|114.873 +639958.961|221269.853|114.626 +639973.033|221256.497|113.727 +639977.703|221252.068|113.410 +639982.375|221247.633|113.087 +639987.008|221243.235|112.724 +639991.690|221238.791|112.383 +639996.381|221234.335|111.996 +640001.032|221229.921|111.591 +640005.717|221225.471|110.957 +640015.035|221216.626|110.173 +640019.692|221212.203|109.829 +640024.292|221207.842|109.582 +640029.016|221203.343|108.469 +640033.609|221198.990|108.655 +640038.264|221194.567|107.781 +640047.594|221185.704|106.631 +640061.489|221172.503|104.803 +640066.104|221168.117|104.044 +640070.676|221163.776|103.614 +640075.248|221159.433|103.184 +640079.869|221155.047|102.791 +640076.815|221155.321|103.181 +640072.203|221159.692|103.492 +640067.531|221164.121|103.907 +640062.885|221168.528|104.501 +640048.813|221181.876|106.369 +640034.627|221195.332|108.628 +640029.943|221199.767|108.692 +640025.236|221204.233|109.283 +640020.530|221208.695|109.890 +640015.775|221213.200|110.188 +640011.085|221217.644|110.408 +640001.529|221226.703|111.481 +639996.826|221231.159|111.871 +639992.031|221235.706|112.264 +639987.271|221240.217|112.779 +639982.494|221244.744|113.090 +639977.718|221249.270|113.413 +639972.945|221253.790|113.736 +639958.506|221267.473|114.727 +639953.718|221272.008|114.919 +639948.878|221276.592|115.160 +639944.099|221281.119|115.324 +639939.283|221285.681|115.443 +639934.479|221290.226|115.449 +639929.642|221294.804|115.376 +639915.234|221308.432|114.788 +639910.442|221312.964|114.392 +639905.688|221317.454|113.678 +639900.881|221322.002|113.468 +639896.035|221326.583|113.163 +639891.222|221331.133|112.593 +639886.357|221335.736|112.505 +639881.560|221340.265|111.795 +639876.744|221344.816|111.267 +639871.879|221349.415|110.771 +639867.066|221353.963|110.256 +639852.600|221367.618|107.531 +639847.751|221372.196|106.912 +639842.877|221376.799|106.065 +639838.052|221381.355|105.214 +639833.081|221386.055|104.897 +639828.226|221390.646|104.379 +639823.324|221395.276|103.843 +639818.344|221399.988|103.687 +639803.485|221414.048|103.507 +639798.529|221418.739|103.172 +639793.579|221423.415|102.733 +639788.589|221428.139|102.831 +639783.588|221432.879|103.123 +639778.610|221437.594|103.141 +639768.637|221447.028|102.812 +639763.669|221451.731|102.791 +639753.702|221461.152|102.480 +639748.749|221465.837|102.309 +639743.762|221470.549|101.913 +639738.779|221475.258|101.471 +639733.795|221479.964|101.051 +639728.815|221484.671|100.606 +639723.874|221489.340|100.285 +639718.894|221494.046|99.837 +639713.861|221498.813|100.276 +639703.916|221508.207|99.237 +639698.941|221512.907|98.743 +639693.933|221517.647|98.877 +639688.919|221522.384|98.289 +639684.015|221527.007|97.341 +639679.026|221531.710|96.210 +639674.042|221536.423|95.918 +639668.979|221541.220|96.338 +639663.947|221545.975|96.073 +639658.948|221550.709|96.232 +639653.889|221555.503|96.689 +639648.863|221560.252|96.384 +639628.773|221579.275|97.542 +639623.741|221584.039|97.622 +639618.678|221588.842|98.612 +639613.664|221593.597|99.618 +639608.592|221598.422|101.218 +639603.548|221603.201|101.898 +639598.564|221607.926|102.383 +639588.466|221617.509|104.733 +639573.431|221631.764|106.830 +639568.456|221636.483|107.552 +639563.439|221641.237|108.064 +639558.471|221645.944|108.637 +639553.466|221650.683|108.732 +639548.464|221655.414|108.610 +639543.505|221660.108|108.814 +639538.503|221664.838|108.735 +639533.550|221669.520|108.479 +639528.555|221674.238|107.863 +639523.553|221678.969|107.771 +639513.601|221688.369|106.753 +639508.599|221693.093|106.290 +639488.681|221711.924|105.303 +639483.679|221716.660|105.449 +639473.730|221726.091|106.884 +639468.728|221730.824|107.070 +639463.733|221735.564|107.872 +639458.786|221740.252|108.238 +639453.796|221744.986|109.183 +639448.852|221749.670|109.887 +639433.926|221763.810|111.219 +639428.986|221768.492|111.688 +639424.005|221773.216|112.462 +639419.067|221777.895|113.057 +639414.081|221782.616|113.425 +639409.134|221787.298|113.499 +639404.199|221791.974|114.050 +639399.216|221796.695|114.489 +639394.281|221801.371|114.962 +639389.337|221806.049|114.998 +639384.354|221810.768|115.388 +639379.452|221815.404|115.419 +639369.525|221824.801|115.931 +639359.585|221834.204|116.114 +639344.726|221848.273|117.123 +639339.789|221852.949|117.391 +639334.851|221857.625|117.741 +639329.892|221862.312|117.586 +639324.930|221867.003|117.379 +639319.928|221871.734|117.376 +639315.014|221876.379|117.287 +639310.043|221881.079|116.961 +639305.017|221885.828|116.550 +639300.073|221890.494|115.995 +639295.084|221895.207|115.480 +639290.094|221899.919|114.986 +639285.147|221904.588|114.504 +639280.164|221909.300|114.224 +639275.183|221914.010|113.995 +639270.255|221918.670|113.904 +639265.280|221923.373|113.880 +639260.361|221928.027|113.959 +639255.456|221932.670|114.355 +639250.549|221937.318|114.675 +639245.526|221942.060|113.947 +639235.708|221951.345|113.953 +639220.947|221965.317|114.608 +639211.093|221974.634|114.276 +639206.109|221979.341|113.761 +639196.206|221988.686|112.453 +639191.198|221993.413|111.725 +639176.202|222007.553|108.518 +639156.354|222026.292|106.065 +639151.446|222030.928|105.751 +639146.515|222035.592|105.726 +639141.644|222040.203|105.839 +639136.752|222044.830|105.760 +639131.869|222049.448|105.802 +639127.004|222054.053|106.061 +639122.210|222058.595|106.549 +639117.373|222063.176|107.101 +639107.893|222072.174|109.161 +639103.108|222076.706|109.771 +639098.329|222081.235|110.426 +639088.715|222090.334|110.832 +639069.799|222108.268|113.675 +639065.038|222112.776|114.145 +639050.789|222126.273|115.425 +639046.028|222130.775|115.541 +639036.475|222139.812|115.541 +639031.675|222144.351|115.379 +639017.276|222157.957|114.306 +638993.185|222180.716|111.371 +638983.620|222189.760|110.722 +638960.330|222211.821|112.026 +638951.265|222220.423|113.785 +638946.590|222224.854|114.197 +638942.009|222229.195|114.596 +638932.746|222237.964|114.770 +638901.001|222268.063|118.616 +638887.486|222280.874|120.140 +638873.855|222293.779|120.475 +638860.237|222306.669|120.750 +638855.656|222311.003|120.539 +638832.671|222332.720|117.982 +638828.035|222337.097|117.330 +638823.514|222341.371|117.071 +638819.034|222345.613|117.050 +638809.798|222354.328|115.318 +638796.277|222367.108|114.291 +638791.745|222371.390|113.870 +638787.258|222375.630|113.441 +638782.796|222379.852|113.151 +638778.245|222384.149|112.697 +638742.443|222417.973|108.628 +638729.206|222430.488|107.744 +638725.009|222434.469|108.277 +638711.366|222447.328|104.742 +638701.643|222456.451|99.252 +638697.446|222460.426|99.444 +638693.261|222464.391|99.709 +638688.997|222468.430|99.850 +638684.833|222472.371|100.002 +638680.596|222476.385|100.069 +638676.329|222480.424|99.776 +638672.169|222484.365|99.993 +638667.981|222488.336|100.084 +638663.845|222492.256|100.203 +638659.669|222496.209|100.154 +638655.475|222500.181|100.051 +638651.332|222504.101|99.959 +638672.248|222482.057|99.700 +638676.488|222478.034|99.853 +638680.700|222474.032|99.917 +638684.900|222470.045|99.926 +638693.297|222462.066|99.514 +638697.443|222458.124|99.075 +638701.987|222453.827|100.304 +638706.904|222449.203|103.309 +638720.812|222436.069|108.344 +638725.012|222432.076|107.811 +638729.334|222427.967|107.649 +638738.060|222419.689|108.024 +638742.602|222415.385|108.741 +638760.695|222398.249|111.527 +638765.118|222394.052|111.783 +638778.535|222381.327|112.633 +638783.040|222377.054|112.871 +638787.514|222372.808|113.246 +638792.044|222368.513|113.663 +638810.213|222351.289|115.288 +638815.013|222346.756|117.037 +638819.485|222342.511|116.739 +638824.002|222338.231|116.973 +638828.626|222333.851|117.571 +638833.271|222329.456|118.302 +638837.995|222324.994|119.217 +638851.794|222311.921|120.335 +638856.427|222307.535|120.838 +638865.531|222298.900|120.704 +638870.121|222294.544|120.756 +638874.651|222290.246|120.451 +638879.253|222285.879|120.314 +638883.840|222281.529|120.396 +638901.976|222264.296|118.049 +638911.132|222255.600|117.043 +638952.747|222216.079|113.651 +638957.267|222211.779|112.542 +638971.312|222198.447|111.661 +638976.015|222193.978|111.207 +638980.666|222189.562|110.731 +638985.473|222185.008|111.057 +639004.737|222166.763|112.545 +639009.647|222162.114|113.453 +639024.186|222148.346|114.864 +639029.026|222143.765|115.340 +639033.863|222139.178|115.440 +639038.713|222134.582|115.657 +639048.271|222125.508|115.017 +639053.112|222120.920|115.221 +639072.253|222102.739|113.160 +639076.974|222098.243|112.002 +639081.766|222093.693|111.447 +639086.530|222089.163|110.652 +639096.226|222079.961|110.219 +639100.990|222075.432|109.475 +639105.818|222070.845|108.856 +639110.603|222066.291|107.854 +639115.361|222061.768|107.043 +639120.232|222057.138|106.403 +639125.087|222052.529|106.116 +639129.940|222047.924|105.787 +639134.835|222043.285|105.903 +639139.751|222038.618|105.793 +639144.668|222033.955|105.705 +639149.557|222029.319|105.839 +639159.505|222019.894|106.510 +639174.465|222005.736|108.466 +639189.534|221991.496|111.569 +639199.553|221982.020|113.169 +639204.594|221977.253|113.837 +639209.541|221972.571|114.581 +639219.487|221963.150|114.965 +639234.282|221949.114|114.379 +639244.258|221939.662|114.760 +639249.178|221934.998|114.703 +639254.112|221930.313|114.123 +639259.068|221925.610|113.941 +639264.034|221920.901|113.864 +639268.996|221916.195|113.803 +639273.924|221911.529|113.944 +639278.944|221906.771|114.114 +639283.937|221902.043|114.657 +639288.924|221897.322|115.117 +639293.904|221892.607|115.516 +639298.887|221887.891|115.989 +639303.917|221883.130|116.516 +639308.940|221878.372|116.976 +639313.908|221873.669|117.306 +639318.913|221868.927|117.415 +639323.863|221864.233|117.443 +639328.865|221859.493|117.623 +639333.866|221854.756|117.732 +639358.723|221831.168|116.239 +639368.690|221821.713|115.794 +639388.624|221802.803|114.913 +639393.659|221798.030|114.870 +639398.585|221793.351|114.267 +639403.565|221788.624|113.922 +639408.594|221783.851|113.648 +639423.536|221769.668|112.167 +639428.470|221764.980|111.734 +639433.454|221760.250|111.267 +639463.416|221731.791|107.421 +639478.439|221717.526|105.784 +639483.435|221712.780|105.132 +639493.433|221703.313|105.930 +639503.427|221693.846|106.561 +639508.426|221689.113|106.753 +639513.418|221684.385|107.235 +639518.414|221679.658|107.781 +639523.410|221674.921|107.811 +639528.357|221670.236|108.168 +639533.349|221665.506|108.475 +639543.341|221656.042|108.896 +639548.339|221651.296|108.661 +639553.292|221646.599|108.631 +639568.270|221632.374|107.387 +639573.239|221627.649|106.692 +639588.213|221613.415|104.562 +639598.208|221603.899|102.093 +639603.240|221599.120|101.569 +639613.250|221589.592|99.313 +639618.255|221584.831|98.371 +639623.208|221580.125|97.710 +639628.246|221575.343|97.396 +639633.269|221570.560|96.177 +639643.169|221561.179|96.680 +639648.146|221556.460|96.826 +639653.099|221551.754|96.424 +639658.095|221547.014|96.265 +639663.027|221542.339|96.433 +639667.992|221537.621|95.945 +639677.898|221528.236|96.579 +639682.784|221523.615|97.716 +639702.453|221504.979|99.051 +639717.196|221491.010|100.148 +639722.067|221486.399|100.718 +639726.953|221481.766|101.011 +639731.875|221477.108|101.569 +639736.767|221472.469|101.794 +639741.677|221467.812|101.813 +639766.168|221444.598|103.020 +639771.027|221439.996|103.215 +639775.934|221435.342|103.379 +639780.823|221430.700|103.205 +639785.724|221426.048|102.922 +639790.656|221421.370|102.879 +639795.496|221416.785|103.404 +639800.367|221412.168|103.544 +639814.951|221398.339|103.919 +639819.895|221393.648|103.861 +639824.684|221389.109|103.995 +639829.530|221384.519|104.541 +639834.337|221379.965|105.013 +639839.119|221375.442|105.769 +639848.696|221366.374|107.131 +639853.414|221361.915|108.061 +639862.897|221352.948|109.948 +639867.648|221348.449|110.548 +639872.406|221343.941|111.085 +639877.180|221339.421|111.487 +639881.950|221334.901|111.935 +639886.665|221330.438|112.471 +639891.426|221325.927|113.032 +639900.905|221316.945|113.694 +639905.663|221312.443|114.319 +639910.354|221307.996|114.693 +639915.097|221303.500|115.029 +639929.294|221290.037|115.635 +639934.037|221285.535|115.635 +639943.544|221276.513|115.550 +639948.293|221272.002|115.193 +639953.023|221267.506|114.998 +639957.805|221262.968|114.824 +639967.288|221253.958|114.026 +639972.006|221249.474|113.678 +639976.715|221245.000|113.401 +639981.470|221240.486|113.191 +639986.179|221236.008|112.615 +639990.922|221231.500|112.188 +639995.622|221227.035|111.755 +640014.383|221209.207|110.216 +640019.086|221204.742|109.899 +640023.792|221200.258|108.893 +640028.431|221195.854|108.738 +640033.143|221191.376|108.116 +640042.503|221182.476|107.043 +640051.867|221173.567|105.409 +640056.509|221169.156|105.068 +640061.163|221164.734|104.690 +640065.805|221160.317|104.071 +640070.408|221155.946|103.754 +640075.001|221151.584|103.529 +640079.564|221147.250|103.196 +640080.719|221143.489|102.959 +640076.129|221147.838|103.413 +640071.484|221152.234|103.620 +640066.878|221156.595|103.907 +640062.242|221160.988|104.425 +640057.570|221165.413|104.888 +640052.931|221169.808|105.165 +640029.394|221192.123|108.600 +640024.706|221196.558|108.695 +640020.000|221201.020|109.308 +640015.285|221205.485|109.990 +640010.585|221209.935|110.265 +639996.475|221223.304|111.682 +639991.791|221227.739|111.959 +639987.002|221232.274|112.313 +639977.569|221241.214|113.142 +639972.835|221245.695|113.526 +639968.169|221250.114|113.822 +639963.414|221254.616|114.062 +639958.634|221259.142|114.504 +639953.931|221263.596|114.797 +639949.173|221268.101|115.132 +639944.428|221272.596|115.437 +639939.648|221277.120|115.614 +639934.927|221281.588|115.760 +639930.178|221286.081|115.745 +639915.944|221299.541|115.327 +639911.250|221303.973|114.916 +639906.504|221308.456|114.541 +639901.807|221312.888|113.755 +639882.736|221330.914|112.478 +639877.984|221335.398|111.789 +639873.220|221339.896|111.240 +639868.414|221344.438|110.676 +639863.646|221348.940|110.188 +639854.082|221357.962|108.549 +639849.333|221362.442|107.418 +639844.554|221366.950|106.570 +639839.729|221371.504|105.720 +639834.925|221376.040|105.153 +639825.196|221385.229|104.315 +639820.383|221389.777|103.888 +639815.448|221394.443|103.782 +639800.720|221408.379|103.794 +639795.752|221413.076|103.617 +639790.912|221417.648|103.041 +639785.986|221422.305|102.956 +639781.000|221427.027|103.053 +639776.041|221431.724|103.455 +639771.069|221436.427|103.419 +639766.150|221441.078|103.343 +639746.259|221459.902|102.953 +639741.312|221464.581|102.672 +639736.371|221469.254|102.379 +639731.375|221473.978|102.154 +639721.430|221483.378|101.108 +639716.473|221488.057|100.279 +639701.526|221502.194|99.258 +639696.530|221506.921|99.167 +639691.489|221511.691|99.024 +639686.463|221516.446|98.710 +639681.485|221521.149|98.280 +639676.493|221525.861|97.274 +639671.497|221530.577|96.311 +639666.447|221535.359|96.445 +639661.426|221540.105|95.988 +639656.419|221544.850|96.302 +639651.371|221549.630|96.488 +639646.278|221554.458|96.744 +639641.270|221559.207|97.234 +639636.198|221564.001|96.939 +639631.181|221568.747|96.552 +639621.028|221578.372|97.728 +639615.926|221583.213|98.493 +639605.800|221592.832|100.877 +639600.707|221597.666|101.718 +639595.675|221602.439|102.248 +639585.479|221612.126|104.815 +639575.375|221621.715|106.342 +639570.303|221626.522|106.964 +639565.234|221631.335|107.787 +639550.107|221645.666|108.789 +639545.057|221650.449|108.878 +639540.009|221655.228|108.927 +639529.963|221664.732|108.469 +639524.918|221669.502|108.189 +639519.874|221674.269|107.662 +639514.827|221679.048|107.640 +639504.780|221688.552|107.061 +639499.733|221693.322|106.644 +639464.495|221726.682|106.930 +639419.403|221769.446|112.279 +639409.439|221778.895|113.444 +639404.455|221783.619|113.849 +639399.472|221788.340|114.221 +639394.436|221793.110|114.465 +639389.502|221797.789|114.907 +639384.515|221802.514|115.093 +639379.522|221807.241|115.135 +639374.588|221811.920|115.443 +639369.604|221816.644|115.812 +639364.618|221821.369|116.001 +639354.736|221830.732|116.406 +639344.861|221840.092|116.940 +639334.985|221849.450|117.507 +639330.005|221854.171|117.921 +639325.042|221858.868|117.626 +639320.135|221863.513|117.583 +639315.176|221868.207|117.473 +639310.223|221872.898|117.464 +639305.304|221877.552|117.254 +639295.394|221886.925|116.458 +639290.417|221891.634|116.108 +639285.467|221896.313|115.465 +639280.538|221900.976|115.221 +639275.531|221905.707|114.501 +639270.599|221910.376|114.291 +639265.670|221915.040|114.203 +639260.729|221919.716|113.904 +639255.859|221924.327|114.011 +639250.900|221929.027|114.221 +639246.038|221933.633|114.514 +639241.149|221938.272|115.081 +639236.224|221942.935|115.135 +639231.319|221947.577|114.831 +639216.640|221961.482|115.209 +639201.836|221975.485|114.114 +639196.944|221980.112|113.535 +639187.090|221989.423|112.264 +639167.140|222008.254|107.997 +639157.274|222017.575|106.589 +639147.463|222026.856|105.943 +639142.570|222031.486|105.796 +639137.733|222036.067|105.748 +639132.869|222040.676|105.967 +639128.007|222045.284|106.217 +639123.170|222049.865|106.229 +639118.314|222054.468|106.558 +639113.502|222059.028|106.866 +639108.722|222063.563|107.503 +639103.910|222068.132|108.302 +639099.176|222072.622|108.927 +639094.388|222077.172|109.935 +639089.645|222081.671|110.493 +639084.786|222086.271|110.438 +639080.053|222090.764|111.103 +639075.271|222095.302|111.752 +639070.601|222099.734|112.563 +639065.834|222104.257|113.377 +639061.192|222108.668|114.437 +639051.639|222117.723|115.087 +639037.353|222131.259|115.730 +639032.580|222135.783|115.748 +639027.780|222140.327|115.571 +639018.157|222149.425|114.754 +639013.372|222153.946|114.425 +639008.565|222158.490|113.931 +639003.676|222163.105|112.837 +638989.280|222176.717|111.837 +638984.458|222181.274|111.389 +638979.737|222185.736|111.002 +638975.031|222190.199|111.444 +638970.346|222194.637|111.700 +638951.799|222212.220|113.550 +638947.221|222216.564|114.279 +638938.001|222225.303|114.983 +638910.404|222251.454|116.940 +638883.359|222277.100|120.396 +638874.282|222285.699|120.847 +638869.789|222289.957|121.085 +638865.254|222294.248|121.088 +638860.688|222298.570|121.222 +638856.155|222302.859|120.981 +638846.941|222311.570|120.296 +638833.222|222324.543|119.159 +638823.920|222333.321|117.385 +638819.326|222337.658|116.729 +638814.788|222341.950|116.397 +638810.231|222346.260|115.983 +638805.638|222350.594|115.135 +638792.074|222363.420|114.160 +638787.514|222367.724|113.322 +638783.028|222371.963|112.910 +638760.722|222393.056|111.261 +638742.815|222409.972|109.180 +638733.885|222418.406|107.759 +638729.575|222422.484|107.732 +638720.925|222430.671|107.564 +638712.402|222438.745|108.079 +638702.905|222447.670|103.562 +638698.043|222452.233|100.840 +638693.428|222456.579|99.069 +638689.308|222460.484|99.645 +638680.944|222468.405|100.005 +638676.713|222472.407|100.115 +638672.544|222476.352|100.039 +638668.282|222480.381|99.795 +638664.165|222484.282|100.221 +638660.016|222488.208|100.289 +638655.837|222492.162|100.240 +638651.649|222496.121|100.167 +638647.529|222500.022|100.173 +638643.395|222503.930|100.145 +638670.319|222476.629|99.981 +638674.537|222472.627|100.045 +638678.728|222468.646|99.999 +638682.892|222464.690|99.853 +638687.089|222460.703|99.636 +638691.249|222456.747|99.255 +638710.156|222438.922|107.951 +638718.721|222430.784|107.649 +638722.948|222426.770|107.491 +638727.353|222422.591|107.723 +638736.012|222414.373|108.021 +638740.587|222410.042|108.917 +638754.053|222397.286|110.957 +638771.942|222380.321|112.231 +638780.854|222371.866|112.709 +638785.335|222367.620|113.099 +638789.907|222363.286|113.742 +638794.570|222358.872|114.629 +638803.562|222350.344|115.221 +638812.755|222341.633|116.178 +638817.299|222337.320|116.565 +638821.942|222332.922|117.217 +638849.688|222306.614|120.329 +638858.963|222297.821|121.146 +638872.648|222284.818|120.771 +638881.737|222276.180|120.405 +638899.919|222258.882|118.049 +638904.479|222254.545|117.744 +638913.604|222245.858|116.242 +638932.200|222228.192|115.657 +638936.830|222223.788|115.282 +638946.099|222214.970|114.261 +638969.462|222192.747|111.752 +638978.865|222183.813|111.167 +638983.672|222179.253|111.505 +638988.524|222174.654|112.218 +639007.922|222156.262|114.163 +639012.789|222151.650|114.757 +639027.295|222137.889|115.635 +639032.181|222133.250|115.757 +639036.951|222128.717|115.730 +639041.755|222124.154|115.611 +639046.506|222119.637|115.059 +639056.120|222110.499|114.547 +639065.639|222101.438|112.831 +639075.228|222092.315|111.792 +639080.035|222087.740|110.923 +639084.847|222083.156|110.167 +639089.691|222078.556|110.100 +639094.519|222073.963|109.494 +639099.301|222069.406|108.427 +639104.169|222064.776|107.726 +639108.954|222060.223|107.177 +639113.861|222055.559|106.884 +639118.708|222050.954|106.467 +639123.645|222046.263|106.519 +639128.553|222041.599|106.290 +639133.423|222036.966|105.674 +639138.364|222032.278|105.793 +639143.296|222027.594|105.876 +639153.235|222018.163|106.403 +639158.192|222013.466|106.808 +639163.215|222008.705|107.503 +639168.244|222003.950|108.829 +639193.378|221980.164|113.428 +639198.428|221975.381|114.200 +639218.295|221956.542|115.212 +639233.246|221942.356|115.513 +639238.226|221937.623|114.922 +639243.170|221932.923|114.532 +639248.129|221928.213|114.312 +639253.125|221923.468|113.986 +639258.056|221918.789|114.148 +639288.195|221890.217|116.288 +639293.215|221885.459|116.577 +639303.271|221875.931|117.580 +639308.278|221871.179|117.778 +639313.283|221866.430|117.955 +639318.282|221861.688|117.979 +639323.314|221856.908|117.754 +639328.270|221852.208|117.967 +639333.296|221847.435|117.577 +639338.277|221842.705|117.275 +639343.257|221837.971|116.995 +639348.235|221833.244|116.577 +639353.267|221828.464|116.428 +639358.253|221823.731|116.272 +639363.237|221818.997|116.086 +639368.269|221814.218|115.873 +639373.253|221809.487|115.687 +639383.265|221799.978|115.224 +639388.295|221795.201|114.956 +639393.275|221790.468|114.669 +639398.304|221785.692|114.303 +639403.279|221780.961|113.785 +639408.305|221776.185|113.218 +639423.335|221761.896|111.523 +639428.373|221757.117|111.432 +639448.353|221738.115|108.652 +639458.423|221728.535|107.226 +639473.450|221714.259|106.052 +639488.489|221699.991|106.418 +639528.451|221662.098|108.732 +639533.444|221657.361|108.966 +639538.439|221652.619|109.009 +639543.438|221647.879|109.052 +639548.391|221643.182|108.966 +639553.393|221638.433|108.753 +639558.401|221633.675|108.274 +639563.366|221628.957|107.674 +639568.334|221624.239|107.089 +639573.348|221619.475|106.601 +639598.287|221595.755|101.819 +639603.286|221591.000|100.840 +639613.247|221581.524|98.856 +639618.251|221576.766|98.012 +639623.232|221572.039|97.911 +639633.110|221562.663|97.512 +639638.051|221557.975|97.338 +639643.007|221553.266|96.841 +639647.954|221548.572|96.610 +639652.843|221543.939|96.719 +639657.827|221539.196|95.741 +639662.740|221534.542|96.326 +639667.654|221529.894|96.975 +639672.543|221525.258|97.088 +639677.404|221520.658|97.856 +639682.318|221516.004|98.423 +639687.179|221511.402|99.115 +639692.077|221506.759|99.139 +639696.975|221502.114|99.216 +639701.852|221497.494|99.633 +639716.461|221483.653|100.578 +639721.292|221479.087|101.776 +639726.120|221474.512|102.248 +639731.009|221469.879|102.538 +639740.702|221460.695|103.010 +639745.548|221456.099|103.248 +639760.127|221442.279|103.590 +639764.937|221437.719|103.772 +639769.820|221433.083|103.629 +639774.678|221428.471|103.218 +639779.518|221423.878|103.068 +639784.404|221419.242|103.007 +639789.205|221414.694|103.407 +639798.855|221405.547|103.681 +639808.456|221396.443|104.019 +639813.312|221391.837|103.900 +639818.094|221387.302|104.050 +639822.913|221382.736|104.361 +639827.674|221378.225|104.803 +639832.481|221373.674|105.290 +639837.235|221369.172|105.815 +639841.966|221364.698|106.619 +639846.693|221360.227|107.461 +639860.851|221346.834|110.204 +639865.573|221342.362|110.637 +639870.285|221337.900|111.164 +639875.052|221333.386|111.639 +639884.473|221324.464|112.776 +639893.907|221315.534|113.843 +639898.668|221311.017|113.980 +639908.065|221302.119|115.017 +639912.753|221297.678|115.434 +639931.672|221279.738|115.797 +639945.891|221266.244|115.291 +639950.673|221261.706|115.081 +639955.410|221257.210|114.870 +639960.155|221252.699|114.251 +639964.944|221248.157|114.084 +639969.659|221243.677|113.742 +639974.426|221239.151|113.422 +639988.630|221225.663|112.255 +639993.376|221221.155|111.856 +640007.540|221207.704|110.621 +640012.289|221203.193|110.292 +640017.028|221198.688|109.725 +640021.817|221194.135|108.853 +640026.468|221189.727|108.972 +640045.417|221171.704|105.656 +640050.081|221167.279|105.488 +640073.331|221145.202|103.852 +640077.952|221140.816|103.480 +640080.363|221136.198|102.895 +640075.641|221140.679|103.550 +640070.966|221145.110|103.934 +640066.321|221149.512|104.175 +640061.593|221153.992|104.632 +640056.927|221158.418|105.056 +640052.230|221162.868|105.376 +640047.554|221167.297|105.568 +640042.881|221171.723|105.778 +640033.265|221180.854|107.796 +640028.483|221185.396|108.524 +640023.761|221189.870|108.866 +640019.110|221194.272|108.725 +640014.288|221198.853|109.829 +640009.558|221203.337|110.310 +639990.572|221221.335|111.953 +639985.826|221225.831|112.346 +639976.301|221234.862|113.118 +639971.567|221239.349|113.502 +639966.797|221243.866|113.825 +639962.027|221248.389|114.194 +639957.278|221252.891|114.422 +639952.508|221257.411|114.837 +639942.943|221266.476|115.577 +639938.225|221270.944|115.650 +639933.507|221275.413|115.779 +639924.006|221284.407|115.806 +639919.288|221288.870|115.562 +639909.836|221297.816|115.315 +639905.169|221302.223|114.681 +639900.424|221306.713|114.352 +639895.739|221311.141|113.913 +639890.950|221315.671|113.553 +639886.275|221320.090|113.063 +639881.535|221324.571|112.700 +639872.068|221333.517|111.499 +639867.353|221337.973|110.981 +639862.598|221342.466|110.377 +639857.813|221346.995|110.094 +639853.106|221351.439|109.490 +639848.406|221355.865|107.854 +639843.667|221360.342|107.119 +639838.918|221364.832|106.503 +639834.184|221369.300|105.702 +639829.381|221373.842|105.156 +639824.577|221378.380|104.605 +639819.752|221382.943|104.318 +639810.096|221392.078|103.876 +639805.198|221396.717|103.940 +639800.400|221401.262|103.995 +639795.490|221405.904|103.660 +639790.659|221410.479|103.580 +639785.816|221415.057|103.059 +639780.942|221419.669|102.937 +639776.044|221424.308|103.154 +639771.158|221428.938|103.263 +639766.171|221433.668|104.077 +639761.316|221438.262|103.846 +639756.396|221442.916|103.824 +639746.582|221452.200|103.553 +639741.690|221456.821|103.196 +639736.779|221461.466|103.145 +639731.838|221466.139|102.895 +639726.940|221470.769|102.666 +639722.064|221475.377|102.178 +639717.107|221480.059|101.435 +639712.212|221484.674|100.423 +639702.291|221494.065|100.660 +639697.402|221498.673|99.542 +639687.478|221508.058|99.124 +639677.523|221517.470|98.448 +639657.656|221536.237|96.265 +639647.558|221545.798|96.747 +639642.568|221550.523|96.832 +639637.524|221555.296|97.033 +639632.470|221560.087|97.597 +639627.432|221564.854|97.786 +639622.397|221569.622|97.939 +639617.435|221574.312|97.466 +639612.363|221579.131|98.798 +639602.213|221588.757|100.520 +639597.156|221593.561|101.773 +639587.073|221603.125|103.593 +639566.807|221622.352|107.107 +639556.776|221631.862|108.323 +639551.671|221636.699|108.783 +639546.666|221641.436|108.930 +639536.568|221650.997|109.183 +639531.523|221655.767|109.009 +639526.525|221660.495|108.869 +639521.438|221665.301|108.351 +639516.393|221670.075|108.229 +639511.398|221674.793|107.698 +639506.350|221679.566|107.689 +639501.257|221684.385|107.662 +639491.214|221693.883|107.150 +639486.120|221698.699|106.793 +639476.074|221708.196|106.156 +639465.985|221717.749|106.689 +639455.896|221727.304|107.363 +639440.790|221741.633|109.673 +639435.795|221746.357|109.734 +639425.733|221755.900|111.271 +639420.747|221760.625|111.655 +639415.718|221765.392|112.173 +639410.688|221770.156|112.731 +639395.695|221784.363|114.111 +639390.721|221789.081|114.712 +639385.734|221793.799|114.937 +639370.732|221808.003|115.779 +639365.745|221812.724|115.986 +639360.805|221817.400|116.153 +639355.815|221822.124|116.284 +639350.829|221826.846|116.449 +639345.891|221831.518|116.766 +639330.992|221845.628|117.784 +639326.003|221850.349|117.991 +639321.050|221855.037|117.921 +639306.258|221869.036|118.253 +639301.283|221873.736|117.882 +639296.312|221878.433|117.562 +639286.397|221887.803|116.696 +639271.574|221901.805|115.343 +639256.764|221915.805|114.556 +639246.968|221925.074|114.611 +639242.076|221929.701|114.425 +639237.181|221934.337|114.907 +639227.482|221943.527|115.861 +639222.590|221948.153|115.721 +639217.670|221952.799|115.254 +639198.178|221971.233|114.919 +639193.219|221975.912|114.114 +639188.312|221980.545|113.386 +639183.399|221985.184|112.627 +639178.436|221989.868|111.929 +639153.748|222013.152|106.613 +639134.243|222031.586|105.677 +639124.651|222040.673|106.516 +639119.823|222045.242|106.625 +639114.998|222049.811|106.775 +639110.240|222054.315|107.134 +639105.427|222058.872|107.448 +639100.645|222063.405|108.079 +639095.887|222067.910|108.488 +639091.196|222072.363|109.515 +639086.399|222076.904|109.564 +639081.638|222081.412|109.969 +639076.947|222085.865|111.018 +639067.449|222094.866|112.066 +639062.761|222099.310|112.727 +639058.068|222103.763|113.770 +639048.625|222112.712|114.959 +639043.867|222117.214|115.050 +639039.139|222121.692|115.410 +639034.391|222126.187|115.605 +639029.663|222130.659|115.617 +639024.847|222135.210|115.324 +639015.289|222144.250|115.023 +639010.531|222148.755|114.870 +639005.706|222153.312|114.239 +638986.482|222171.478|112.240 +638981.685|222176.010|111.600 +638976.939|222180.497|111.395 +638972.257|222184.935|111.648 +638967.551|222189.388|111.761 +638962.912|222193.783|112.014 +638958.251|222198.203|112.465 +638953.548|222202.650|112.319 +638944.444|222211.291|114.126 +638935.288|222219.978|115.602 +638930.682|222224.339|115.852 +638916.759|222237.525|116.303 +638912.135|222241.905|116.492 +638903.110|222250.467|118.037 +638884.983|222267.652|120.122 +638871.341|222280.575|120.930 +638862.233|222289.195|120.994 +638853.046|222297.888|120.649 +638848.520|222302.170|120.774 +638820.896|222328.273|117.839 +638816.230|222332.678|116.760 +638811.584|222337.061|116.129 +638807.058|222341.343|115.882 +638802.544|222345.610|115.455 +638797.975|222349.929|115.029 +638784.256|222362.886|113.035 +638779.760|222367.132|112.572 +638775.200|222371.439|112.060 +638770.717|222375.679|111.706 +638748.396|222396.780|110.231 +638739.365|222405.309|108.716 +638721.699|222422.006|107.208 +638717.398|222426.078|107.253 +638713.146|222430.104|107.549 +638704.599|222438.197|107.747 +638699.921|222442.595|105.592 +638690.100|222451.800|99.484 +638685.808|222455.866|99.481 +638681.617|222459.834|99.737 +638677.460|222463.772|99.926 +638673.248|222467.765|100.103 +638669.029|222471.758|100.048 +638664.808|222475.754|99.978 +638660.650|222479.692|99.993 +638656.514|222483.615|100.334 +638652.354|222487.556|100.362 +638648.208|222491.479|100.252 +638644.039|222495.429|100.264 +638639.878|222499.367|100.112 +638635.696|222503.323|99.880 +638669.163|222469.795|100.060 +638673.345|222465.827|99.975 +638677.503|222461.886|99.776 +638681.706|222457.896|99.581 +638685.863|222453.952|99.176 +638704.673|222436.243|107.811 +638717.422|222424.148|107.116 +638721.772|222420.027|107.308 +638726.100|222415.928|107.424 +638730.483|222411.773|107.585 +638739.429|222403.312|108.838 +638743.900|222399.082|109.503 +638748.427|222394.802|110.201 +638761.743|222382.193|111.133 +638766.191|222377.980|111.536 +638770.650|222373.753|111.499 +638775.167|222369.479|112.042 +638779.675|222365.212|112.566 +638784.235|222360.899|113.118 +638788.831|222356.553|113.895 +638793.437|222352.200|114.736 +638797.963|222347.912|114.922 +638807.012|222339.344|115.617 +638811.560|222335.037|115.989 +638816.224|222330.626|116.748 +638820.960|222326.152|118.226 +638839.394|222308.699|120.158 +638857.832|222291.228|121.387 +638862.364|222286.924|121.079 +638866.988|222282.544|121.332 +638871.475|222278.283|120.771 +638876.071|222273.921|120.594 +638880.600|222269.621|120.329 +638885.166|222265.286|120.000 +638889.729|222260.949|119.375 +638898.788|222252.344|118.336 +638907.920|222243.667|117.184 +638912.492|222239.323|116.656 +638917.073|222234.971|116.211 +638921.663|222230.612|115.836 +638931.060|222221.703|115.922 +638935.699|222217.298|115.593 +638940.256|222212.964|114.718 +638949.504|222204.174|113.243 +638954.036|222199.861|112.221 +638958.760|222195.380|112.218 +638963.451|222190.930|111.987 +638968.191|222186.431|111.786 +638972.894|222181.969|111.682 +638977.622|222177.482|111.411 +638982.434|222172.923|111.810 +638987.290|222168.329|112.529 +639006.706|222149.947|114.648 +639011.549|222145.359|115.090 +639021.159|222136.249|115.428 +639049.911|222108.969|114.389 +639054.730|222104.391|114.041 +639059.430|222099.920|113.090 +639078.544|222081.757|110.341 +639083.326|222077.215|109.704 +639088.209|222072.582|109.570 +639092.970|222068.053|108.783 +639097.789|222063.475|108.049 +639102.587|222058.918|107.589 +639107.442|222054.309|107.241 +639112.292|222049.704|106.860 +639117.168|222045.077|106.759 +639122.094|222040.404|106.692 +639126.962|222035.787|106.513 +639131.835|222031.157|105.927 +639151.532|222012.485|106.442 +639176.696|221988.683|111.877 +639181.676|221983.971|112.837 +639186.654|221979.252|113.227 +639191.665|221974.506|114.087 +639211.596|221955.609|115.943 +639216.549|221950.903|115.586 +639226.476|221941.484|115.916 +639231.359|221936.839|115.306 +639236.306|221932.139|114.895 +639241.256|221927.436|114.602 +639246.245|221922.703|114.885 +639266.192|221903.777|115.465 +639276.140|221894.338|115.891 +639281.154|221889.580|116.044 +639286.205|221884.798|116.897 +639291.231|221880.034|117.370 +639296.254|221875.269|117.805 +639301.231|221870.554|118.287 +639306.236|221865.805|118.436 +639321.202|221851.593|118.031 +639331.218|221842.077|117.626 +639341.206|221832.582|116.531 +639346.199|221827.843|116.534 +639351.185|221823.106|116.400 +639356.214|221818.330|116.150 +639366.224|221808.820|115.654 +639376.234|221799.310|115.047 +639381.269|221794.531|115.029 +639386.249|221789.797|114.703 +639391.276|221785.021|114.389 +639401.273|221775.514|113.221 +639406.302|221770.735|112.950 +639416.358|221761.180|111.911 +639421.341|221756.443|111.600 +639431.396|221746.878|110.231 +639436.380|221742.142|109.786 +639461.557|221718.197|106.549 +639466.598|221713.408|106.257 +639481.679|221699.101|106.988 +639506.847|221675.223|107.732 +639521.874|221660.967|108.503 +639526.863|221656.240|109.158 +639531.859|221651.500|109.265 +639536.903|221646.712|109.219 +639541.853|221642.012|109.152 +639546.904|221637.208|108.704 +639561.930|221622.916|107.220 +639566.950|221618.140|106.525 +639571.961|221613.373|106.141 +639592.048|221594.243|102.367 +639597.043|221589.485|101.383 +639602.045|221584.721|100.325 +639612.052|221575.193|98.502 +639617.096|221570.396|97.887 +639622.068|221565.674|98.015 +639626.999|221560.990|98.003 +639632.004|221556.229|97.362 +639636.997|221551.483|97.073 +639641.941|221546.786|96.911 +639646.988|221541.973|95.457 +639651.947|221537.255|95.015 +639671.573|221518.656|98.024 +639691.132|221500.103|99.511 +639696.070|221495.415|99.655 +639700.938|221490.800|100.270 +639705.839|221486.146|100.258 +639715.504|221476.987|101.809 +639720.311|221472.433|102.605 +639725.194|221467.803|102.989 +639730.037|221463.203|103.221 +639734.880|221458.607|103.474 +639739.779|221453.959|103.638 +639744.585|221449.396|103.779 +639749.489|221444.739|103.897 +639754.305|221440.164|103.925 +639759.161|221435.558|104.123 +639764.022|221430.934|103.608 +639768.911|221426.286|103.385 +639773.730|221421.711|103.483 +639778.586|221417.093|103.148 +639783.411|221412.512|103.227 +639788.220|221407.946|103.507 +639793.006|221403.411|104.120 +639797.852|221398.805|104.010 +639802.631|221394.267|104.135 +639807.459|221389.686|104.297 +639821.806|221376.064|104.775 +639826.580|221371.538|105.101 +639831.313|221367.051|105.833 +639836.013|221362.595|106.421 +639840.762|221358.096|107.040 +639859.474|221340.369|110.411 +639864.189|221335.897|110.886 +639868.898|221331.432|111.432 +639882.998|221318.060|112.956 +639887.677|221313.623|113.386 +639892.340|221309.200|113.968 +639897.050|221304.732|114.172 +639901.707|221300.318|114.831 +639906.379|221295.886|115.367 +639911.092|221291.415|115.556 +639920.449|221282.533|115.760 +639929.883|221273.575|115.818 +639939.295|221264.638|115.730 +639944.025|221260.145|115.544 +639948.799|221255.604|115.010 +639953.505|221251.132|114.687 +639958.281|221246.588|114.206 +639962.978|221242.129|114.011 +639967.681|221237.657|113.764 +639972.408|221233.161|113.383 +639977.148|221228.656|112.932 +639981.876|221224.164|112.615 +639986.615|221219.656|112.218 +639991.315|221215.190|111.804 +640005.519|221201.681|110.310 +640010.167|221197.262|110.006 +640014.971|221192.687|109.006 +640019.640|221188.252|108.969 +640024.319|221183.805|108.552 +640038.562|221170.250|106.421 +640043.241|221165.800|105.796 +640052.605|221156.903|105.260 +640057.237|221152.499|105.031 +640061.959|221148.009|104.562 +640066.570|221143.623|104.187 +640071.252|221139.173|103.733 +640075.946|221134.711|103.215 +640080.573|221130.309|102.818 +640078.680|221129.666|102.925 +640073.959|221134.147|103.273 +640069.256|221138.606|103.815 +640055.080|221152.054|105.156 +640050.386|221156.507|105.464 +640045.612|221161.033|105.973 +640040.982|221165.419|105.909 +640036.136|221170.022|106.973 +640026.538|221179.135|108.268 +640016.982|221188.194|109.036 +640012.261|221192.669|109.073 +640002.602|221201.837|110.429 +639997.768|221206.424|111.024 +639992.989|221210.960|111.584 +639988.142|221215.556|111.969 +639983.339|221220.113|112.435 +639973.725|221229.226|113.127 +639968.931|221233.777|113.611 +639964.115|221238.343|113.934 +639959.305|221242.903|114.203 +639954.462|221247.493|114.413 +639949.640|221252.068|114.867 +639944.809|221256.652|115.407 +639939.975|221261.233|115.635 +639935.186|221265.769|115.504 +639930.364|221270.338|115.669 +639925.567|221274.882|115.660 +639920.717|221279.476|115.721 +639911.083|221288.601|115.745 +639906.322|221293.109|115.516 +639901.497|221297.675|115.035 +639896.760|221302.153|114.608 +639891.944|221306.707|114.050 +639887.159|221311.236|113.669 +639882.401|221315.735|113.060 +639868.002|221329.353|111.542 +639863.189|221333.904|111.030 +639858.376|221338.455|110.542 +639844.020|221352.021|108.256 +639839.214|221356.563|107.250 +639834.416|221361.095|106.610 +639829.591|221365.655|105.805 +639824.803|221370.181|105.089 +639819.923|221374.799|104.867 +639805.320|221388.628|104.498 +639800.449|221393.240|104.266 +639795.560|221397.866|104.248 +639790.641|221402.527|104.089 +639785.800|221407.105|103.529 +639780.936|221411.710|103.303 +639775.983|221416.404|103.590 +639771.106|221421.025|103.580 +639766.193|221425.676|103.434 +639761.304|221430.309|103.586 +639756.296|221435.061|104.141 +639751.425|221439.670|104.120 +639746.530|221444.306|103.843 +639741.565|221449.009|103.879 +639736.703|221453.608|103.797 +639731.771|221458.275|103.379 +639726.864|221462.920|103.318 +639721.926|221467.593|103.053 +639717.046|221472.207|102.617 +639712.194|221476.788|101.700 +639702.419|221486.027|100.292 +639697.478|221490.703|100.093 +639692.553|221495.360|99.639 +639672.835|221514.014|98.246 +639667.888|221518.699|98.228 +639658.007|221528.038|97.076 +639653.108|221532.664|96.079 +639648.186|221537.304|94.522 +639638.146|221546.850|97.167 +639633.156|221551.577|97.274 +639628.206|221556.268|97.588 +639623.198|221561.020|98.249 +639608.230|221575.209|99.164 +639603.222|221579.963|100.139 +639598.223|221584.709|100.962 +639563.125|221618.033|106.903 +639553.085|221627.558|108.396 +639548.074|221632.313|108.960 +639538.068|221641.795|109.430 +639528.070|221651.259|109.213 +639523.074|221655.987|109.006 +639518.082|221660.711|108.536 +639508.042|221670.212|108.070 +639503.043|221674.948|108.195 +639498.047|221679.673|107.656 +639493.000|221684.452|107.817 +639488.001|221689.186|107.735 +639462.870|221712.969|106.589 +639452.827|221722.485|107.006 +639432.728|221741.557|109.689 +639422.661|221751.106|110.740 +639412.648|221760.604|111.978 +639392.632|221779.590|114.087 +639377.587|221793.845|114.998 +639357.604|221812.776|116.147 +639352.612|221817.504|116.199 +639337.609|221831.713|116.940 +639327.645|221841.153|117.662 +639322.671|221845.871|118.135 +639317.685|221850.596|118.363 +639287.686|221878.979|117.531 +639267.755|221897.822|115.946 +639252.811|221911.955|115.263 +639237.970|221926.001|114.910 +639233.051|221930.658|115.062 +639228.149|221935.303|115.465 +639218.353|221944.587|116.358 +639213.424|221949.254|116.391 +639208.520|221953.893|116.156 +639188.726|221972.595|113.813 +639183.795|221977.259|113.404 +639178.866|221981.916|113.060 +639168.978|221991.249|110.981 +639149.093|222010.013|106.741 +639144.174|222014.661|106.250 +639134.408|222023.902|106.147 +639115.081|222042.206|106.830 +639110.225|222046.805|107.174 +639105.455|222051.322|107.418 +639100.639|222055.885|107.698 +639095.878|222060.396|108.055 +639091.074|222064.950|108.460 +639086.347|222069.434|109.183 +639081.565|222073.969|109.807 +639076.840|222078.447|110.097 +639072.152|222082.897|111.194 +639057.991|222096.320|112.706 +639048.591|222105.239|114.245 +639043.882|222109.704|114.748 +639029.742|222123.100|115.812 +639020.257|222132.076|115.602 +639010.729|222141.092|115.510 +638996.281|222154.732|113.447 +638991.539|222159.216|113.145 +638981.977|222168.250|112.392 +638977.262|222172.709|111.990 +638972.519|222177.193|111.783 +638967.847|222181.618|112.115 +638963.192|222186.023|112.240 +638958.501|222190.464|112.459 +638944.670|222203.573|113.874 +638940.128|222207.877|114.511 +638931.027|222216.509|116.010 +638926.442|222220.852|116.385 +638921.837|222225.214|116.629 +638917.228|222229.573|116.562 +638908.127|222238.199|117.528 +638889.903|222255.459|118.881 +638885.456|222259.678|119.625 +638871.941|222272.486|121.161 +638862.876|222281.066|121.408 +638858.298|222285.397|121.451 +638849.176|222294.026|121.189 +638835.417|222307.032|120.235 +638812.276|222328.874|116.778 +638807.668|222333.226|116.050 +638803.084|222337.558|115.489 +638798.551|222341.840|115.245 +638789.535|222350.359|114.526 +638784.939|222354.703|113.989 +638780.406|222358.979|113.310 +638775.874|222363.261|112.633 +638771.345|222367.538|112.008 +638766.776|222371.851|111.466 +638762.262|222376.115|110.978 +638757.796|222380.333|110.496 +638753.380|222384.509|110.289 +638748.988|222388.660|109.963 +638739.990|222397.155|108.826 +638726.673|222409.737|107.436 +638722.287|222413.880|107.287 +638717.962|222417.973|107.186 +638709.284|222426.178|106.927 +638705.069|222430.171|107.418 +638700.850|222434.167|107.662 +638696.537|222438.245|107.470 +638686.863|222447.322|102.002 +638682.059|222451.830|99.374 +638677.905|222455.765|99.804 +638673.760|222459.691|100.042 +638665.426|222467.579|100.353 +638661.235|222471.548|100.426 +638657.005|222475.544|100.106 +638652.841|222479.488|100.322 +638648.748|222483.362|100.420 +638644.602|222487.285|100.520 +638640.469|222491.195|100.468 +638636.382|222495.060|100.414 +638632.234|222498.983|100.325 +638628.079|222502.912|99.996 +638671.833|222459.136|99.923 +638676.030|222455.147|99.700 +638698.900|222433.539|107.229 +638703.173|222429.479|107.259 +638707.388|222425.471|106.781 +638711.735|222421.347|106.945 +638716.017|222417.275|106.830 +638720.336|222413.179|106.891 +638724.719|222409.021|107.296 +638738.124|222396.314|108.905 +638742.602|222392.068|109.362 +638751.456|222383.671|109.835 +638760.454|222375.139|110.883 +638764.993|222370.836|111.261 +638769.522|222366.544|111.871 +638774.054|222362.249|112.508 +638778.632|222357.909|113.179 +638783.192|222353.590|113.755 +638787.746|222349.277|114.325 +638792.312|222344.949|114.995 +638796.780|222340.706|114.898 +638801.322|222336.396|115.221 +638805.906|222332.053|115.785 +638810.518|222327.688|116.525 +638833.743|222305.697|119.945 +638838.373|222301.311|120.396 +638843.006|222296.918|120.902 +638847.572|222292.590|121.030 +638856.738|222283.894|121.262 +638870.502|222270.834|121.140 +638888.617|222253.612|118.948 +638893.137|222249.315|118.378 +638897.770|222244.913|118.232 +638902.424|222240.500|118.220 +638906.963|222236.181|117.504 +638911.510|222231.859|116.833 +638939.302|222205.454|114.532 +638943.959|222201.028|114.035 +638948.470|222196.727|112.892 +638953.173|222192.265|112.724 +638957.941|222187.742|112.703 +638962.616|222183.298|112.392 +638967.304|222178.848|112.191 +638972.068|222174.322|111.844 +638976.808|222169.829|112.039 +638981.608|222165.278|112.365 +638986.494|222160.651|112.999 +638991.255|222156.131|113.090 +638996.123|222151.522|113.617 +639005.895|222142.278|115.489 +639010.723|222137.697|115.449 +639015.545|222133.125|115.782 +639025.170|222123.993|115.974 +639034.735|222114.907|115.358 +639039.502|222110.380|114.940 +639072.899|222078.626|110.512 +639077.672|222074.088|109.789 +639082.449|222069.543|109.131 +639087.280|222064.953|108.527 +639092.099|222060.378|108.250 +639096.954|222055.763|107.918 +639101.791|222051.173|107.854 +639106.686|222046.522|107.470 +639111.511|222041.944|107.332 +639116.388|222037.308|106.781 +639121.253|222032.690|106.583 +639131.000|222023.430|105.952 +639140.864|222014.076|106.116 +639145.792|222009.406|106.750 +639160.843|221995.166|109.698 +639175.882|221980.950|112.965 +639180.814|221976.277|113.398 +639190.814|221966.816|114.855 +639205.731|221952.689|116.278 +639210.724|221947.955|116.489 +639215.656|221943.280|116.516 +639220.545|221938.638|115.949 +639225.495|221933.938|115.608 +639230.411|221929.274|115.483 +639235.367|221924.571|115.233 +639265.155|221896.328|115.833 +639295.093|221867.976|118.570 +639305.041|221858.542|118.598 +639314.938|221849.139|117.626 +639319.958|221844.387|118.196 +639334.851|221830.250|117.257 +639344.812|221820.796|116.611 +639349.795|221816.065|116.431 +639354.785|221811.335|116.345 +639364.788|221801.837|115.654 +639379.736|221787.652|114.898 +639384.710|221782.927|114.410 +639389.733|221778.157|113.849 +639414.681|221754.465|111.557 +639419.710|221749.686|111.042 +639429.720|221740.176|109.615 +639439.736|221730.654|108.137 +639449.761|221721.129|106.933 +639459.798|221711.604|106.427 +639465.031|221706.645|106.500 +639469.838|221702.091|106.918 +639489.915|221683.068|108.055 +639494.957|221678.286|108.064 +639499.998|221673.507|108.226 +639504.994|221668.773|108.472 +639510.032|221664.000|108.942 +639515.028|221659.260|108.777 +639520.066|221654.490|109.271 +639525.107|221649.708|109.295 +639530.103|221644.971|109.387 +639540.195|221635.398|109.109 +639560.242|221616.360|106.802 +639585.412|221592.445|103.288 +639590.463|221587.638|102.029 +639595.501|221582.853|101.258 +639600.549|221578.049|100.246 +639610.574|221568.536|99.383 +639615.636|221563.721|98.274 +639620.665|221558.950|98.155 +639625.661|221554.208|97.743 +639630.703|221549.419|97.366 +639650.758|221530.385|95.829 +639670.503|221511.700|98.374 +639685.335|221497.649|99.356 +639695.195|221488.313|100.017 +639700.093|221483.677|100.862 +639705.013|221479.023|101.416 +639709.875|221474.420|102.087 +639714.739|221469.821|102.754 +639719.616|221465.200|103.184 +639724.499|221460.576|103.529 +639729.394|221455.937|103.727 +639739.154|221446.686|103.907 +639744.009|221442.087|104.056 +639748.913|221437.436|104.172 +639753.735|221432.867|104.172 +639758.637|221428.212|103.745 +639763.516|221423.582|103.641 +639768.305|221419.050|104.135 +639773.169|221414.438|104.278 +639778.016|221409.842|104.065 +639782.886|221405.218|103.611 +639787.696|221400.664|103.931 +639797.313|221391.554|104.608 +639802.110|221387.003|104.531 +639806.905|221382.465|105.086 +639821.258|221368.865|105.549 +639825.970|221364.402|106.001 +639830.755|221359.867|106.196 +639835.419|221355.459|107.183 +639840.128|221351.009|108.198 +639844.795|221346.599|109.158 +639854.140|221337.757|110.469 +639858.858|221333.288|110.902 +639863.528|221328.866|111.365 +639877.515|221315.628|113.041 +639882.197|221311.196|113.459 +639891.505|221302.382|114.343 +639896.135|221297.998|114.821 +639900.762|221293.615|115.327 +639905.407|221289.217|115.702 +639910.022|221284.843|115.910 +639914.752|221280.360|115.998 +639919.388|221275.961|116.068 +639924.040|221271.548|116.038 +639928.706|221267.119|115.897 +639933.373|221262.693|115.785 +639938.042|221258.265|115.690 +639942.718|221253.827|115.547 +639947.396|221249.380|115.013 +639952.103|221244.914|114.706 +639961.414|221236.075|114.175 +639966.087|221231.637|113.816 +639970.714|221227.242|113.456 +639975.441|221222.752|113.108 +639998.701|221200.663|111.011 +640003.388|221196.207|110.429 +640008.006|221191.824|110.021 +640012.752|221187.307|109.079 +640017.293|221183.003|109.259 +640035.993|221165.224|106.244 +640045.219|221156.467|105.912 +640049.782|221152.136|105.476 +640063.647|221138.963|104.102 +640068.305|221134.540|103.486 +640077.528|221125.777|102.590 +640080.393|221119.910|101.813 +640075.675|221124.381|102.386 +640070.941|221128.874|103.102 +640066.284|221133.284|103.352 +640061.514|221137.804|104.022 +640056.750|221142.325|104.714 +640052.062|221146.769|105.254 +640047.325|221151.255|105.495 +640033.173|221164.657|106.296 +640013.950|221182.887|109.113 +640009.247|221187.341|109.015 +640004.321|221192.016|110.161 +639999.563|221196.524|110.502 +639989.901|221205.684|111.621 +639985.064|221210.265|111.926 +639980.236|221214.843|112.554 +639975.438|221219.387|112.965 +639970.613|221223.956|113.270 +639965.776|221228.544|113.706 +639960.942|221233.122|114.123 +639956.105|221237.703|114.245 +639951.274|221242.281|114.700 +639946.403|221246.899|115.148 +639941.541|221251.504|115.547 +639936.728|221256.058|115.559 +639931.843|221260.685|115.821 +639917.361|221274.392|116.080 +639912.479|221279.012|116.016 +639907.696|221283.539|115.952 +639902.844|221288.126|115.660 +639898.074|221292.634|115.090 +639893.233|221297.206|114.706 +639888.448|221301.729|114.294 +639878.829|221310.824|113.550 +639864.347|221324.501|111.834 +639859.541|221329.045|111.261 +639854.716|221333.596|110.374 +639849.860|221338.193|110.307 +639830.621|221356.346|106.756 +639825.772|221360.931|106.186 +639820.883|221365.551|106.028 +639816.055|221370.111|105.229 +639801.351|221384.022|104.864 +639791.528|221393.316|104.781 +639786.657|221397.918|104.016 +639781.792|221402.518|103.742 +639776.766|221407.282|104.303 +639771.847|221411.942|104.787 +639766.915|221416.612|104.867 +639762.066|221421.187|103.839 +639757.155|221425.832|103.657 +639752.230|221430.498|103.733 +639747.283|221435.189|104.129 +639742.357|221439.859|104.257 +639737.416|221444.531|103.925 +639727.580|221453.852|104.117 +639722.661|221458.506|103.565 +639717.775|221463.130|103.227 +639712.852|221467.785|102.706 +639707.979|221472.390|102.142 +639703.081|221477.020|101.267 +639698.137|221481.702|101.121 +639693.239|221486.329|100.206 +639688.368|221490.931|99.594 +639678.495|221500.276|99.130 +639673.576|221504.931|98.627 +639668.595|221509.646|98.368 +639653.846|221523.588|96.549 +639648.936|221528.233|95.863 +639643.974|221532.924|95.186 +639639.008|221537.617|94.604 +639628.959|221547.179|97.585 +639624.018|221551.861|97.716 +639618.974|221556.646|98.121 +639614.021|221561.346|98.716 +639609.028|221566.080|99.063 +639604.029|221570.826|99.755 +639599.040|221575.556|100.179 +639594.041|221580.302|101.002 +639589.039|221585.057|102.078 +639569.026|221604.073|106.138 +639559.044|221613.534|106.735 +639549.050|221623.026|108.442 +639544.090|221627.729|108.774 +639539.080|221632.484|109.399 +639534.081|221637.220|109.433 +639529.125|221641.914|109.628 +639524.129|221646.648|109.509 +639514.138|221656.103|108.988 +639494.106|221675.070|108.296 +639484.112|221684.531|107.890 +639469.070|221698.769|107.265 +639464.022|221703.542|106.598 +639459.072|221708.227|106.418 +639454.031|221713.012|106.921 +639444.034|221722.482|107.015 +639438.949|221727.307|107.564 +639423.944|221741.553|109.914 +639413.974|221751.014|111.118 +639408.945|221755.788|111.716 +639403.913|221760.558|112.054 +639398.926|221765.285|112.404 +639373.942|221788.996|114.995 +639368.961|221793.723|115.327 +639363.978|221798.448|115.641 +639343.952|221817.443|116.653 +639328.999|221831.625|117.275 +639324.024|221836.343|117.772 +639314.057|221845.798|118.308 +639274.083|221883.667|116.964 +639244.243|221911.934|115.946 +639234.337|221921.319|115.748 +639229.405|221925.988|115.660 +639224.455|221930.688|115.961 +639219.527|221935.358|115.952 +639214.619|221940.012|116.245 +639209.718|221944.660|116.672 +639199.812|221954.045|116.083 +639194.908|221958.690|115.870 +639189.924|221963.403|115.288 +639175.038|221977.484|113.404 +639140.245|222010.360|106.391 +639135.341|222015.005|106.071 +639130.449|222019.638|105.924 +639115.940|222033.403|106.839 +639111.142|222037.957|107.229 +639106.366|222042.492|107.860 +639101.526|222047.080|107.845 +639096.716|222051.642|108.171 +639091.925|222056.184|108.226 +639087.115|222060.747|108.576 +639082.351|222065.267|108.896 +639077.553|222069.821|109.393 +639072.826|222074.310|110.091 +639068.102|222078.797|110.816 +639053.956|222092.227|112.435 +639044.571|222101.145|114.087 +639039.911|222105.574|115.004 +639035.137|222110.094|114.968 +639011.525|222132.488|115.931 +639001.969|222141.531|115.300 +638997.174|222146.064|114.507 +638992.313|222150.657|113.614 +638987.570|222155.147|113.297 +638982.815|222159.645|112.913 +638978.042|222164.160|112.417 +638973.303|222168.649|112.200 +638968.615|222173.084|112.051 +638940.869|222199.404|114.120 +638931.865|222207.956|115.931 +638908.892|222229.737|117.196 +638899.836|222238.333|118.156 +638895.261|222242.667|118.375 +638890.735|222246.962|118.583 +638881.774|222255.469|119.936 +638863.782|222272.534|121.454 +638859.203|222276.872|121.457 +638854.619|222281.209|121.164 +638845.612|222289.743|121.289 +638836.453|222298.412|120.607 +638831.875|222302.743|120.168 +638813.505|222320.114|117.778 +638808.826|222324.530|116.647 +638804.181|222328.919|115.711 +638799.633|222333.217|115.087 +638795.104|222337.506|114.843 +638790.678|222341.700|114.919 +638786.204|222345.933|114.471 +638781.665|222350.228|113.980 +638768.102|222363.054|112.414 +638763.603|222367.306|111.697 +638759.086|222371.579|111.182 +638754.495|222375.911|110.057 +638750.045|222380.123|109.679 +638745.604|222384.326|109.369 +638741.136|222388.551|108.948 +638736.805|222392.656|108.972 +638719.062|222409.436|106.955 +638714.725|222413.541|106.811 +638710.400|222417.638|106.732 +638706.157|222421.658|106.833 +638701.841|222425.749|106.827 +638697.604|222429.766|106.985 +638693.383|222433.762|106.991 +638689.070|222437.843|106.580 +638684.278|222442.348|104.187 +638674.705|222451.349|99.106 +638670.672|222455.174|99.868 +638666.512|222459.115|100.051 +638658.215|222466.973|100.350 +638654.009|222470.957|100.362 +638649.833|222474.901|100.084 +638645.742|222478.778|100.423 +638641.643|222482.661|100.505 +638637.528|222486.553|100.542 +638633.380|222490.479|100.438 +638629.259|222494.380|100.474 +638625.168|222498.251|100.438 +638620.962|222502.223|99.911 +638666.356|222456.527|99.975 +638670.514|222452.583|99.783 +638684.461|222439.434|105.482 +638693.261|222431.104|106.875 +638697.537|222427.047|106.909 +638701.759|222423.039|106.677 +638714.722|222410.743|106.817 +638736.878|222389.755|108.899 +638741.212|222385.643|108.887 +638745.699|222381.388|109.167 +638750.176|222377.148|109.673 +638754.782|222372.792|110.600 +638759.302|222368.516|111.368 +638763.813|222364.243|111.871 +638772.939|222355.605|113.218 +638777.477|222351.307|113.666 +638782.025|222347.000|114.187 +638786.539|222342.724|114.562 +638791.013|222338.475|114.474 +638795.500|222334.223|114.742 +638800.087|222329.880|115.300 +638804.672|222325.536|115.602 +638809.417|222321.053|117.098 +638814.102|222316.621|118.016 +638818.781|222312.195|118.936 +638828.053|222303.411|120.104 +638832.613|222299.089|120.421 +638841.879|222290.307|121.143 +638846.478|222285.949|121.475 +638851.029|222281.630|121.570 +638855.622|222277.271|121.628 +638860.197|222272.931|121.594 +638864.723|222268.630|121.289 +638887.364|222247.105|118.546 +638892.015|222242.691|118.497 +638896.642|222238.296|118.321 +638919.722|222216.378|116.986 +638924.391|222211.946|116.861 +638929.009|222207.557|116.403 +638938.125|222198.882|114.727 +638947.394|222190.071|113.453 +638961.522|222176.656|112.889 +638966.207|222172.203|112.319 +638970.901|222167.747|112.182 +638980.596|222158.560|113.185 +638985.440|222153.970|113.505 +638990.213|222149.444|113.700 +638995.108|222144.811|114.474 +639000.003|222140.175|115.309 +639004.813|222135.615|115.480 +639014.472|222126.453|115.882 +639019.285|222121.887|115.788 +639024.058|222117.357|115.769 +639028.846|222112.810|115.526 +639052.654|222090.175|112.502 +639057.452|222085.615|111.981 +639062.231|222081.071|111.295 +639066.989|222076.545|110.448 +639071.774|222071.997|109.835 +639076.548|222067.455|109.155 +639081.415|222062.832|108.881 +639086.228|222058.260|108.570 +639091.160|222053.581|108.469 +639095.985|222049.000|108.314 +639100.874|222044.361|108.326 +639105.754|222039.731|108.256 +639110.603|222035.119|107.424 +639130.089|222016.609|106.077 +639135.024|222011.930|106.196 +639155.055|221992.971|109.740 +639165.071|221983.501|112.112 +639170.128|221978.719|113.422 +639175.138|221973.973|114.230 +639190.071|221959.821|115.638 +639195.042|221955.112|116.074 +639200.025|221950.391|116.748 +639204.966|221945.703|116.882 +639209.907|221941.006|116.403 +639214.823|221936.339|116.254 +639219.804|221931.612|116.361 +639224.733|221926.936|116.409 +639229.676|221922.239|116.007 +639234.642|221917.524|115.958 +639244.538|221908.133|116.147 +639249.467|221903.448|115.556 +639254.445|221898.736|116.559 +639259.452|221893.984|116.501 +639269.401|221884.551|117.028 +639284.352|221870.371|117.723 +639289.344|221865.644|118.497 +639294.288|221860.950|118.363 +639304.285|221851.462|118.476 +639309.214|221846.780|118.098 +639314.222|221842.031|118.378 +639319.148|221837.349|117.912 +639324.119|221832.625|117.446 +639329.102|221827.891|117.232 +639353.953|221804.284|115.739 +639358.936|221799.554|115.495 +639403.745|221756.973|111.837 +639418.686|221742.770|110.146 +639423.667|221738.033|109.469 +639428.699|221733.251|108.972 +639433.682|221728.508|108.146 +639438.672|221723.768|107.808 +639443.710|221718.983|107.482 +639448.703|221714.240|107.290 +639453.696|221709.498|106.964 +639458.691|221704.755|106.903 +639488.705|221676.293|108.378 +639493.698|221671.553|108.268 +639498.690|221666.822|108.777 +639503.729|221662.043|109.131 +639508.679|221657.343|108.920 +639518.707|221647.830|109.448 +639528.695|221638.357|109.655 +639533.691|221633.614|109.573 +639538.692|221628.866|109.301 +639558.739|221609.806|106.711 +639598.909|221571.597|99.959 +639603.938|221566.820|99.618 +639608.934|221562.069|98.969 +639613.975|221557.277|98.435 +639618.968|221552.537|98.076 +639624.000|221547.758|97.881 +639629.063|221542.927|95.829 +639639.118|221533.356|93.796 +639644.083|221528.669|95.406 +639649.000|221524.011|95.939 +639653.962|221519.311|96.539 +639658.924|221514.608|97.070 +639668.833|221505.226|98.487 +639673.774|221500.538|98.539 +639678.703|221495.869|98.893 +639683.674|221491.154|99.255 +639688.587|221486.502|99.880 +639693.537|221481.818|100.682 +639698.408|221477.200|101.157 +639708.235|221467.891|102.346 +639713.142|221463.246|103.062 +639718.068|221458.580|103.477 +639722.908|221453.998|104.467 +639732.792|221444.614|104.092 +639737.736|221439.926|104.318 +639742.641|221435.275|104.400 +639747.591|221430.568|103.879 +639752.516|221425.896|103.769 +639757.417|221421.248|103.989 +639762.187|221416.737|105.312 +639767.080|221412.104|105.699 +639771.981|221407.446|105.342 +639776.946|221402.728|104.806 +639781.838|221398.074|104.065 +639786.742|221393.428|104.388 +639796.395|221384.275|105.174 +639801.235|221379.685|105.165 +639810.885|221370.532|105.552 +639815.668|221366.003|106.235 +639820.478|221361.443|106.638 +639825.290|221356.874|106.497 +639830.088|221352.332|107.080 +639853.686|221329.993|111.060 +639858.398|221325.528|111.548 +639863.092|221321.087|112.252 +639872.577|221312.096|113.179 +639877.250|221307.670|113.636 +639881.962|221303.204|114.206 +639886.659|221298.754|114.480 +639891.389|221294.271|114.895 +639896.083|221289.821|115.224 +639910.125|221276.513|116.220 +639919.495|221267.628|116.370 +639924.280|221263.087|116.065 +639928.935|221258.673|116.044 +639933.668|221254.180|115.797 +639938.341|221249.745|115.675 +639952.423|221236.377|114.596 +639957.129|221231.909|114.322 +639971.229|221218.519|113.069 +639975.847|221214.136|112.825 +639980.565|221209.652|112.240 +639985.198|221205.254|111.965 +639989.895|221200.788|111.234 +640003.833|221187.554|110.006 +640008.558|221183.061|109.198 +640013.145|221178.709|109.073 +640027.184|221165.364|106.900 +640031.808|221160.969|106.287 +640040.970|221152.276|106.046 +640045.585|221147.893|105.580 +640054.827|221139.115|104.638 +640059.426|221134.744|104.031 +640063.955|221130.440|103.580 +640068.634|221125.996|102.852 +640073.304|221121.552|101.901 +640077.824|221117.261|101.596 +640080.725|221111.848|102.501 +640076.394|221115.935|101.578 +640071.834|221120.260|101.806 +640067.089|221124.771|102.907 +640062.422|221129.197|103.532 +640057.786|221133.598|104.022 +640043.823|221146.848|105.647 +640039.102|221151.325|106.141 +640029.848|221160.094|106.293 +640025.139|221164.563|106.802 +640010.841|221178.139|109.006 +640006.199|221182.540|109.180 +640001.413|221187.078|109.682 +639996.643|221191.608|110.460 +639991.961|221196.046|110.643 +639982.293|221205.229|112.261 +639977.587|221209.686|112.343 +639972.747|221214.282|113.090 +639968.019|221218.766|113.404 +639963.179|221223.356|113.858 +639958.403|221227.888|114.236 +639953.657|221232.384|114.383 +639939.203|221246.094|115.614 +639934.375|221250.672|115.779 +639929.563|221255.229|115.821 +639924.725|221259.816|116.120 +639919.867|221264.419|116.196 +639915.051|221268.985|116.376 +639910.214|221273.566|116.327 +639890.978|221291.768|114.986 +639886.150|221296.337|114.544 +639871.684|221310.020|113.105 +639866.786|221314.659|112.935 +639857.130|221323.788|111.719 +639852.290|221328.363|111.030 +639842.576|221337.549|109.972 +639837.717|221342.140|108.994 +639832.855|221346.739|108.561 +639828.034|221351.287|107.171 +639823.166|221355.895|106.814 +639818.222|221360.577|106.759 +639808.429|221369.840|105.690 +639798.535|221379.207|105.284 +639788.614|221388.604|105.248 +639783.703|221393.243|104.394 +639778.714|221397.973|104.513 +639773.675|221402.755|105.254 +639768.664|221407.510|105.735 +639763.666|221412.250|106.077 +639758.761|221416.883|105.205 +639753.830|221421.537|104.041 +639748.880|221426.225|103.812 +639743.854|221430.986|103.971 +639738.849|221435.729|104.522 +639733.868|221440.441|104.089 +639718.924|221454.587|103.693 +639713.941|221459.302|103.385 +639708.978|221463.990|102.718 +639704.013|221468.684|102.133 +639699.057|221473.366|101.377 +639694.138|221478.017|100.816 +639689.130|221482.750|100.136 +639684.213|221487.399|99.551 +639679.251|221492.086|98.877 +639674.277|221496.789|98.460 +639669.284|221501.520|98.420 +639664.310|221506.223|98.033 +639659.354|221510.905|97.250 +639649.381|221520.332|95.966 +639644.409|221525.032|95.518 +639639.438|221529.732|95.009 +639634.424|221534.472|94.442 +639619.269|221548.874|98.143 +639614.283|221553.601|98.344 +639609.242|221558.380|98.728 +639604.191|221563.172|99.456 +639599.195|221567.909|99.972 +639594.157|221572.688|100.502 +639589.149|221577.443|101.648 +639584.105|221582.237|102.626 +639579.054|221587.038|103.928 +639564.006|221601.318|106.339 +639554.070|221610.739|107.201 +639549.043|221615.512|108.210 +639544.084|221620.215|108.515 +639539.070|221624.973|109.237 +639534.114|221629.667|109.411 +639529.158|221634.364|109.622 +639519.207|221643.786|109.673 +639509.261|221653.201|109.402 +639499.315|221662.616|109.213 +639489.418|221671.977|108.399 +639454.622|221704.904|106.897 +639444.671|221714.329|107.028 +639439.675|221719.065|107.415 +639429.738|221728.487|108.320 +639424.798|221733.174|109.058 +639404.943|221752.002|111.011 +639400.008|221756.684|111.594 +639385.161|221770.766|113.389 +639380.224|221775.447|113.718 +639360.436|221794.199|115.190 +639345.623|221808.232|116.047 +639340.688|221812.907|116.391 +639335.707|221817.626|116.742 +639330.812|221822.262|116.946 +639325.838|221826.977|117.418 +639320.897|221831.659|117.610 +639316.017|221836.282|118.153 +639311.031|221841.007|118.406 +639301.134|221850.373|118.531 +639296.190|221855.058|118.699 +639291.228|221859.752|118.525 +639286.275|221864.440|118.519 +639281.288|221869.152|117.958 +639271.391|221878.516|117.412 +639251.579|221897.255|116.498 +639246.605|221901.961|116.394 +639241.679|221906.621|116.315 +639231.773|221915.997|116.120 +639222.032|221925.229|117.053 +639217.079|221929.911|116.720 +639212.123|221934.599|116.330 +639207.203|221939.256|116.519 +639202.351|221943.859|116.952 +639192.491|221953.183|116.464 +639157.646|221986.089|110.926 +639132.744|222009.598|106.333 +639127.861|222014.219|106.296 +639122.999|222018.821|106.525 +639113.267|222028.042|106.872 +639089.139|222050.902|108.655 +639084.290|222055.492|108.625 +639079.522|222060.009|108.957 +639074.701|222064.575|109.250 +639069.967|222069.068|109.884 +639065.148|222073.631|110.234 +639060.430|222078.111|111.027 +639055.730|222082.574|112.005 +639050.990|222087.066|112.636 +639032.108|222104.964|114.687 +639027.392|222109.442|115.553 +639022.662|222113.922|115.922 +639008.382|222127.440|115.992 +639003.615|222131.951|115.760 +638994.005|222141.040|115.138 +638989.094|222145.670|113.889 +638970.066|222163.669|112.734 +638965.305|222168.171|112.395 +638942.073|222190.186|114.044 +638937.458|222194.560|114.514 +638923.903|222207.426|116.918 +638905.515|222224.848|117.848 +638896.395|222233.486|118.433 +638891.823|222237.821|118.650 +638887.242|222242.155|118.854 +638882.716|222246.447|119.083 +638860.258|222267.737|121.588 +638855.744|222272.013|121.695 +638846.643|222280.627|121.515 +638842.077|222284.943|121.094 +638828.385|222297.897|120.543 +638796.101|222328.383|115.288 +638791.562|222332.672|114.733 +638787.069|222336.924|114.453 +638782.622|222341.133|114.440 +638769.174|222353.843|113.166 +638764.642|222358.125|112.532 +638760.113|222362.402|111.938 +638755.590|222366.675|111.130 +638751.051|222370.958|110.286 +638746.561|222375.200|109.713 +638742.059|222379.455|109.094 +638737.600|222383.665|108.475 +638733.284|222387.755|108.844 +638728.871|222391.928|108.488 +638715.487|222404.571|106.598 +638711.192|222408.640|106.662 +638706.888|222412.712|106.702 +638689.658|222429.016|106.467 +638676.357|222441.568|103.638 +638671.504|222446.124|100.807 +638667.069|222450.309|99.716 +638662.942|222454.223|100.048 +638658.782|222458.164|100.249 +638654.667|222462.062|100.438 +638650.464|222466.043|100.478 +638646.288|222469.996|100.414 +638642.115|222473.947|100.151 +638638.089|222477.763|100.569 +638633.995|222481.640|100.697 +638629.868|222485.547|100.682 +638625.714|222489.479|100.581 +638621.645|222493.335|100.624 +638617.576|222497.185|100.462 +638613.388|222501.144|100.033 +638661.531|222453.281|100.048 +638665.649|222449.364|99.670 +638670.160|222445.106|101.112 +638675.046|222440.510|104.096 +638684.053|222431.997|106.616 +638705.355|222411.776|106.354 +638709.772|222407.589|106.619 +638718.504|222399.310|107.211 +638722.921|222395.125|107.528 +638727.395|222390.888|108.162 +638736.189|222382.546|108.472 +638740.694|222378.279|109.073 +638745.147|222374.064|109.689 +638749.701|222369.751|110.335 +638754.245|222365.447|110.966 +638758.784|222361.149|111.578 +638763.365|222356.812|112.447 +638767.943|222352.478|113.054 +638777.032|222343.867|114.008 +638781.501|222339.627|114.117 +638785.972|222335.384|114.270 +638790.547|222331.050|114.718 +638795.110|222326.725|115.138 +638799.712|222322.372|116.065 +638813.709|222309.132|118.720 +638841.336|222282.962|121.347 +638845.908|222278.630|121.527 +638850.544|222274.235|121.841 +638855.046|222269.962|121.658 +638859.679|222265.570|121.676 +638864.257|222261.223|121.710 +638882.252|222244.121|119.073 +638886.879|222239.729|118.857 +638891.451|222235.388|118.625 +638896.072|222231.002|118.412 +638900.684|222226.622|118.168 +638905.280|222222.261|117.818 +638909.922|222217.850|117.470 +638914.616|222213.400|117.482 +638923.907|222204.585|117.229 +638928.475|222200.239|116.467 +638942.271|222187.120|114.123 +638951.671|222178.199|113.803 +638956.319|222173.785|113.288 +638960.986|222169.353|112.941 +638965.686|222164.888|112.481 +638970.404|222160.414|112.535 +638975.244|222155.829|113.163 +638994.623|222137.480|115.352 +639004.225|222128.385|115.952 +639009.068|222123.792|116.062 +639013.856|222119.250|116.156 +639018.660|222114.690|115.989 +639023.400|222110.192|115.699 +639028.194|222105.635|115.105 +639032.885|222101.176|114.453 +639051.956|222083.055|112.063 +639056.748|222078.495|111.078 +639061.527|222073.954|110.399 +639066.331|222069.388|109.948 +639071.122|222064.837|109.393 +639075.941|222060.262|109.094 +639080.806|222055.644|108.808 +639085.682|222051.018|108.637 +639090.553|222046.403|108.872 +639095.461|222041.749|109.073 +639109.939|222027.993|107.275 +639114.773|222023.400|106.763 +639119.689|222018.736|106.631 +639124.538|222014.131|106.333 +639129.431|222009.485|105.985 +639144.430|221995.294|108.607 +639159.475|221981.066|111.685 +639164.541|221976.283|113.035 +639189.470|221952.683|116.391 +639199.382|221943.289|117.013 +639204.326|221938.592|116.565 +639209.291|221933.880|116.416 +639214.250|221929.183|116.870 +639219.261|221924.437|117.421 +639224.150|221919.792|116.940 +639229.082|221915.107|116.388 +639238.970|221905.725|116.376 +639243.941|221901.013|116.467 +639273.775|221872.731|117.744 +639278.713|221868.058|118.287 +639283.721|221863.309|118.449 +639288.683|221858.603|118.656 +639293.645|221853.900|118.927 +639298.625|221849.172|118.616 +639308.559|221839.745|118.430 +639318.428|221830.378|117.888 +639333.363|221816.199|116.861 +639348.287|221802.023|115.510 +639353.264|221797.295|115.093 +639378.126|221773.695|113.681 +639383.153|221768.918|113.310 +639393.056|221759.509|111.993 +639398.033|221754.779|111.353 +639403.017|221750.045|111.045 +639432.878|221721.677|107.710 +639437.870|221716.938|107.509 +639442.863|221712.201|107.296 +639467.790|221688.573|108.640 +639472.785|221683.843|109.076 +639482.771|221674.360|108.479 +639487.718|221669.672|108.768 +639492.756|221664.899|109.088 +639502.695|221655.472|109.271 +639537.620|221622.340|109.113 +639567.496|221593.945|106.083 +639582.507|221579.653|102.953 +639587.503|221574.901|101.950 +639592.511|221570.131|100.648 +639597.458|221565.424|99.920 +639602.499|221560.630|99.246 +639607.486|221555.893|98.862 +639612.427|221551.196|98.469 +639622.531|221541.559|94.692 +639632.534|221532.052|93.866 +639642.392|221522.719|95.485 +639647.329|221518.031|95.491 +639662.152|221503.995|97.579 +639667.077|221499.325|97.896 +639676.932|221489.980|98.533 +639681.903|221485.271|98.972 +639686.755|221480.675|99.795 +639696.558|221471.393|101.377 +639701.471|221466.739|101.956 +639706.378|221462.094|102.681 +639711.237|221457.491|103.373 +639730.845|221438.896|104.309 +639735.752|221434.238|104.330 +639740.696|221429.538|103.870 +639745.609|221424.878|103.894 +639750.495|221420.245|104.275 +639755.272|221415.728|105.510 +639769.945|221401.811|106.010 +639774.913|221397.089|105.455 +639779.793|221392.447|104.827 +639784.721|221387.771|104.836 +639789.546|221383.202|105.534 +639794.420|221378.576|105.647 +639799.294|221373.955|105.796 +639804.152|221369.346|106.132 +639813.805|221360.199|107.040 +639818.685|221355.569|107.189 +639823.471|221351.031|107.336 +639828.338|221346.413|107.646 +639837.818|221337.449|109.975 +639852.116|221323.897|111.246 +639856.895|221319.371|112.017 +639861.601|221314.915|112.593 +639866.396|221310.370|113.221 +639875.902|221301.360|113.989 +639880.554|221296.953|114.657 +639885.363|221292.390|114.779 +639890.036|221287.961|115.273 +639894.821|221283.423|115.632 +639913.722|221265.495|116.467 +639918.443|221261.008|116.224 +639923.192|221256.500|116.211 +639927.987|221251.943|115.843 +639932.705|221247.463|115.721 +639937.481|221242.927|115.565 +639946.955|221233.923|114.782 +639951.716|221229.397|114.428 +639956.419|221224.926|114.172 +639961.177|221220.405|113.913 +639965.883|221215.931|113.331 +639970.607|221211.441|113.017 +639989.493|221193.485|111.042 +639994.162|221189.051|110.911 +639998.899|221184.546|110.323 +640003.647|221180.022|109.329 +640008.283|221175.621|109.183 +640022.393|221162.192|106.799 +640027.013|221157.802|106.531 +640036.170|221149.106|106.296 +640040.845|221144.656|105.717 +640045.457|221140.273|105.290 +640050.111|221135.845|104.598 +640054.756|221131.425|103.998 +640068.628|221118.227|101.852 +640073.236|221113.844|101.304 +640079.912|221105.243|103.279 +640071.170|221113.484|101.343 +640066.552|221117.861|101.941 +640057.265|221126.667|103.541 +640052.638|221131.050|103.977 +640048.042|221135.406|104.541 +640043.384|221139.819|105.220 +640038.718|221144.239|105.674 +640034.121|221148.597|106.351 +640029.467|221153.008|106.790 +640024.916|221157.309|106.531 +640020.341|221161.640|106.820 +640006.229|221175.021|109.128 +640001.645|221179.358|109.234 +639996.838|221183.921|110.271 +639992.147|221188.365|110.844 +639987.542|221192.723|110.844 +639968.669|221210.606|112.983 +639964.033|221214.995|113.337 +639959.208|221219.567|114.047 +639954.562|221223.965|114.175 +639949.853|221228.425|114.440 +639945.101|221232.924|114.681 +639935.616|221241.906|115.489 +639930.925|221246.347|115.724 +639926.188|221250.831|115.946 +639921.452|221255.314|116.220 +639916.749|221259.761|116.220 +639911.979|221264.281|116.434 +639893.069|221282.155|115.541 +639888.366|221286.599|115.254 +639883.632|221291.070|114.824 +639878.874|221295.569|114.642 +639874.122|221300.056|113.977 +639869.349|221304.564|113.505 +639864.610|221309.044|113.191 +639859.861|221313.528|112.520 +639855.039|221318.082|112.103 +639850.299|221322.559|111.374 +639845.489|221327.101|110.850 +639835.864|221336.193|109.920 +639831.115|221340.668|108.786 +639826.324|221345.185|107.616 +639816.591|221354.390|107.403 +639797.084|221372.824|106.040 +639792.216|221377.426|105.793 +639787.315|221382.056|105.363 +639782.423|221386.680|104.879 +639777.458|221391.380|105.263 +639772.474|221396.105|105.921 +639767.528|221400.789|106.180 +639752.720|221414.789|105.449 +639747.813|221419.419|104.592 +639742.887|221424.076|104.035 +639737.883|221428.810|103.897 +639732.902|221433.528|104.150 +639727.928|221438.240|104.327 +639717.940|221447.692|103.971 +639712.968|221452.389|103.446 +639703.023|221461.789|102.468 +639698.070|221466.465|101.663 +639693.053|221471.208|101.130 +639688.097|221475.889|100.395 +639683.095|221480.611|99.584 +639678.108|221485.317|98.496 +639673.140|221490.011|97.954 +639668.105|221494.778|97.801 +639663.072|221499.536|97.527 +639658.046|221504.291|97.237 +639652.996|221509.058|96.393 +639648.018|221513.752|95.040 +639642.980|221518.519|94.948 +639637.969|221523.255|94.336 +639632.903|221528.059|94.918 +639622.802|221537.608|94.357 +639617.727|221542.430|95.442 +639607.449|221552.205|98.716 +639602.405|221556.985|99.167 +639597.367|221561.761|99.624 +639592.273|221566.592|100.353 +639587.223|221571.386|101.297 +639582.123|221576.227|102.370 +639577.015|221581.088|104.047 +639566.850|221590.732|105.760 +639561.784|221595.533|106.180 +639556.764|221600.291|106.659 +639546.629|221609.907|108.155 +639531.414|221624.327|109.311 +639526.409|221629.067|109.594 +639501.132|221652.991|109.631 +639496.136|221657.718|109.512 +639445.786|221705.352|107.592 +639440.787|221710.083|107.461 +639435.789|221714.816|107.543 +639430.747|221719.593|107.747 +639425.706|221724.369|108.073 +639415.727|221733.830|109.155 +639410.688|221738.603|109.570 +639400.715|221748.058|110.640 +639365.877|221781.083|113.855 +639336.143|221809.277|116.638 +639331.209|221813.956|116.989 +639316.392|221827.995|117.711 +639306.575|221837.304|118.534 +639301.622|221841.994|118.461 +639296.720|221846.633|118.543 +639291.834|221851.266|118.961 +639286.875|221855.963|118.796 +639282.026|221860.557|119.015 +639272.156|221869.887|118.101 +639267.182|221874.593|117.824 +639257.404|221883.856|117.830 +639252.472|221888.519|117.592 +639237.708|221902.488|116.717 +639232.773|221907.158|116.534 +639227.921|221911.760|116.900 +639213.281|221925.632|117.531 +639208.359|221930.283|116.973 +639203.400|221934.974|116.586 +639198.572|221939.549|116.739 +639193.664|221944.200|117.089 +639183.871|221953.463|116.324 +639154.263|221981.435|111.502 +639139.382|221995.480|108.326 +639124.630|222009.424|106.452 +639119.744|222014.048|106.409 +639114.943|222018.599|106.763 +639110.143|222023.150|107.150 +639091.007|222041.300|109.390 +639086.152|222045.897|109.311 +639081.333|222050.457|109.119 +639076.508|222055.029|109.341 +639071.653|222059.625|109.317 +639066.885|222064.145|109.658 +639062.106|222068.675|109.920 +639057.312|222073.222|110.499 +639052.612|222077.681|111.048 +639047.884|222082.174|112.218 +639043.239|222086.585|113.279 +639024.351|222104.498|115.282 +639019.586|222109.015|115.769 +639014.899|222113.459|116.120 +639010.104|222117.994|115.998 +639000.610|222126.986|116.193 +638995.809|222131.525|115.721 +638991.045|222136.033|115.553 +638986.193|222140.614|114.742 +638967.060|222158.704|113.172 +638962.342|222163.166|112.788 +638957.648|222167.610|112.956 +638939.043|222185.240|114.331 +638934.450|222189.601|115.266 +638906.890|222215.726|117.824 +638902.272|222220.100|118.025 +638897.706|222224.431|118.586 +638893.116|222228.774|118.692 +638888.544|222233.105|118.933 +638879.384|222241.783|119.351 +638870.423|222250.284|120.756 +638838.681|222280.340|121.576 +638824.880|222293.389|120.411 +638811.045|222306.459|118.458 +638797.253|222319.486|116.409 +638792.507|222323.957|114.995 +638787.953|222328.264|114.629 +638783.421|222332.547|114.154 +638778.953|222336.774|114.029 +638774.496|222340.993|113.986 +638769.970|222345.272|113.617 +638760.911|222353.828|112.356 +638756.382|222358.107|111.764 +638751.886|222362.353|111.118 +638742.831|222370.909|109.814 +638738.316|222375.170|109.155 +638729.541|222383.470|108.655 +638724.972|222387.783|107.787 +638720.586|222391.931|107.339 +638716.121|222396.149|106.790 +638711.777|222400.258|106.595 +638707.455|222404.348|106.540 +638703.188|222408.387|106.510 +638698.842|222412.499|106.369 +638694.440|222416.656|105.732 +638681.761|222428.665|106.452 +638677.558|222432.646|106.574 +638668.319|222441.339|102.809 +638663.515|222445.844|100.017 +638659.312|222449.822|100.014 +638655.139|222453.769|100.176 +638650.985|222457.704|100.420 +638646.849|222461.621|100.532 +638642.676|222465.565|100.502 +638638.476|222469.536|100.359 +638634.367|222473.422|100.417 +638630.277|222477.299|100.791 +638626.205|222481.152|100.807 +638622.059|222485.072|100.737 +638617.963|222488.949|100.673 +638613.860|222492.826|100.612 +638609.724|222496.737|100.407 +638605.643|222500.598|100.459 +638602.092|222503.982|102.349 +638659.739|222447.563|99.633 +638664.271|222443.281|101.176 +638669.084|222438.754|104.035 +638673.784|222434.326|106.177 +638695.081|222414.117|106.244 +638699.387|222410.033|106.442 +638703.664|222405.976|106.506 +638707.958|222401.901|106.430 +638712.302|222397.780|106.369 +638716.679|222393.632|106.735 +638734.458|222376.788|108.753 +638738.969|222372.518|109.396 +638743.489|222368.239|110.118 +638748.037|222363.935|110.737 +638757.071|222355.379|112.011 +638761.606|222351.085|112.660 +638766.108|222346.820|113.139 +638770.653|222342.517|113.617 +638775.142|222338.259|113.834 +638779.614|222334.016|113.965 +638784.162|222329.709|114.535 +638788.676|222325.430|114.669 +638793.312|222321.043|115.483 +638811.920|222303.426|119.177 +638834.981|222281.557|121.423 +638848.703|222268.532|121.762 +638857.820|222259.873|121.500 +638866.942|222251.204|121.061 +638871.435|222246.928|120.604 +638885.105|222233.928|119.250 +638889.674|222229.588|118.997 +638898.910|222220.810|118.567 +638908.081|222212.089|117.778 +638940.433|222181.320|114.157 +638945.148|222176.842|114.090 +638949.839|222172.380|113.544 +638954.509|222167.942|113.179 +638959.230|222163.458|113.240 +638963.960|222158.966|113.005 +638988.131|222136.048|115.376 +639002.597|222122.323|116.227 +639007.376|222117.787|116.202 +639012.204|222113.203|116.220 +639016.941|222108.701|115.913 +639026.448|222099.655|114.834 +639040.773|222086.036|113.404 +639045.455|222081.574|112.289 +639050.179|222077.072|111.106 +639054.925|222072.558|110.548 +639059.774|222067.946|110.048 +639064.551|222063.408|109.795 +639069.409|222058.787|109.430 +639074.262|222054.181|109.445 +639079.187|222049.512|109.725 +639088.959|222040.231|109.640 +639113.200|222017.176|106.823 +639118.098|222012.521|106.528 +639123.011|222007.855|106.369 +639127.964|222003.155|106.702 +639143.006|221988.911|109.323 +639153.043|221979.408|111.286 +639158.109|221974.616|112.612 +639163.148|221969.846|113.666 +639178.156|221955.630|115.843 +639193.039|221941.512|116.848 +639198.014|221936.787|116.793 +639203.015|221932.045|117.114 +639207.953|221927.357|117.257 +639213.016|221922.559|117.872 +639227.823|221908.490|117.016 +639232.767|221903.793|116.669 +639237.796|221899.020|116.931 +639267.789|221870.566|118.375 +639272.800|221865.812|118.528 +639277.823|221861.047|118.982 +639282.824|221856.302|119.000 +639287.829|221851.550|119.174 +639302.798|221837.334|118.747 +639307.785|221832.597|118.589 +639312.799|221827.827|117.955 +639327.783|221813.587|116.995 +639342.748|221799.359|115.410 +639347.710|221794.634|114.495 +639362.752|221780.342|113.587 +639367.788|221775.560|113.493 +639387.795|221756.534|111.264 +639392.830|221751.752|111.082 +639417.940|221727.877|108.552 +639433.009|221713.561|107.741 +639438.050|221708.772|107.628 +639453.135|221694.459|108.210 +639463.169|221684.946|109.137 +639468.162|221680.212|109.689 +639488.230|221661.156|109.314 +639493.222|221656.417|109.494 +639508.200|221642.210|110.256 +639518.240|221632.670|109.789 +639523.190|221627.966|109.679 +639533.194|221618.469|109.219 +639538.196|221613.717|108.866 +639553.198|221599.452|106.662 +639558.206|221594.697|106.403 +639563.177|221589.973|105.879 +639583.199|221570.917|101.468 +639588.195|221566.165|100.609 +639593.139|221561.462|99.914 +639598.125|221556.728|99.575 +639603.109|221551.995|99.264 +639613.137|221542.436|96.021 +639618.108|221537.703|95.040 +639628.029|221528.294|95.113 +639632.925|221523.648|95.064 +639637.859|221518.967|95.162 +639652.584|221505.013|96.387 +639657.452|221500.401|96.972 +639662.377|221495.735|97.344 +639667.257|221491.108|97.695 +639672.128|221486.493|98.216 +639677.011|221481.866|98.524 +639681.866|221477.273|99.374 +639686.713|221472.683|100.292 +639691.577|221468.080|100.962 +639696.387|221463.523|101.691 +639715.769|221445.165|103.937 +639720.604|221440.581|104.291 +639725.459|221435.976|104.358 +639730.336|221431.346|104.166 +639735.219|221426.710|103.910 +639740.059|221422.119|104.248 +639744.872|221417.569|105.037 +639749.688|221413.006|105.741 +639764.086|221399.357|106.677 +639768.975|221394.715|106.476 +639773.831|221390.106|106.171 +639778.668|221385.507|105.513 +639783.560|221380.862|105.394 +639788.315|221376.354|105.781 +639812.254|221353.667|107.747 +639817.027|221349.144|108.049 +639826.619|221340.043|108.149 +639831.292|221335.629|109.551 +639835.974|221331.197|110.323 +639845.486|221322.184|111.362 +639850.235|221317.689|111.981 +639854.950|221313.220|112.453 +639859.672|221308.746|112.892 +639864.360|221304.308|113.645 +639873.900|221295.261|114.117 +639883.300|221286.355|115.050 +639888.034|221281.868|115.440 +639892.755|221277.394|115.967 +639911.643|221259.490|116.528 +639916.395|221254.982|116.480 +639921.165|221250.456|116.278 +639925.893|221245.969|116.074 +639930.639|221241.464|115.757 +639940.234|221232.354|114.757 +639944.964|221227.864|114.642 +639949.701|221223.371|114.504 +639954.416|221218.894|114.184 +639959.186|221214.364|113.825 +639963.938|221209.850|113.288 +639987.688|221187.298|111.118 +639992.449|221182.778|110.707 +639997.353|221178.108|109.295 +640001.986|221173.716|109.487 +640011.347|221164.831|108.951 +640016.217|221160.192|107.592 +640021.006|221155.641|106.839 +640025.617|221151.267|106.961 +640035.036|221142.325|106.007 +640044.457|221133.376|104.821 +640049.133|221128.932|104.318 +640053.836|221124.463|103.693 +640067.948|221111.049|101.663 +640072.276|221106.968|103.181 +640076.806|221100.570|103.321 +640067.756|221109.114|102.056 +640063.099|221113.521|101.965 +640048.822|221127.060|104.086 +640039.315|221136.073|105.373 +640034.548|221140.590|105.842 +640029.729|221145.162|106.677 +640024.999|221149.643|106.964 +640020.332|221154.056|106.839 +640015.608|221158.528|107.116 +640010.600|221163.295|109.049 +640001.209|221172.186|109.402 +639996.454|221176.685|109.332 +639991.617|221181.281|110.585 +639986.844|221185.801|111.057 +639962.917|221208.472|113.276 +639958.110|221213.029|113.843 +639948.610|221222.024|114.178 +639943.821|221226.559|114.678 +639938.978|221231.147|114.885 +639934.168|221235.709|115.641 +639929.386|221240.236|115.797 +639924.591|221244.777|116.108 +639919.815|221249.300|116.278 +639915.045|221253.812|116.409 +639910.290|221258.316|116.483 +639905.486|221262.861|116.553 +639891.231|221276.342|116.007 +639886.491|221280.823|115.608 +639881.773|221285.279|115.032 +639876.939|221289.851|115.065 +639872.257|221294.271|114.197 +639867.530|221298.739|113.745 +639862.735|221303.272|113.477 +639858.014|221307.734|113.005 +639853.241|221312.245|112.569 +639848.492|221316.728|111.911 +639843.749|221321.203|111.176 +639834.227|221330.201|110.152 +639829.494|221334.672|109.384 +639824.690|221339.208|108.829 +639819.904|221343.734|108.613 +639815.083|221348.291|108.293 +639810.261|221352.847|107.957 +639790.985|221371.071|106.763 +639786.218|221375.573|105.909 +639781.369|221380.154|105.449 +639776.477|221384.790|106.089 +639771.548|221389.460|106.638 +639766.656|221394.093|106.787 +639761.782|221398.705|106.732 +639752.047|221407.916|106.555 +639747.176|221412.512|105.888 +639742.351|221417.063|105.239 +639737.496|221421.644|104.367 +639732.616|221426.249|103.849 +639727.702|221430.895|103.785 +639722.749|221435.585|104.367 +639717.839|221440.231|104.367 +639712.926|221444.864|103.654 +639693.388|221463.304|101.374 +639688.432|221467.983|100.648 +639683.579|221472.561|99.737 +639678.675|221477.185|98.856 +639673.765|221481.818|98.103 +639663.859|221491.172|97.289 +639653.950|221500.532|96.567 +639648.988|221505.211|95.860 +639639.024|221514.626|95.314 +639634.025|221519.354|95.454 +639629.051|221524.054|95.092 +639619.129|221533.414|93.641 +639614.027|221538.261|95.278 +639608.949|221543.080|96.463 +639603.901|221547.874|98.256 +639598.830|221552.693|99.618 +639593.797|221557.451|99.776 +639588.759|221562.221|100.234 +639583.715|221567.003|101.017 +639578.707|221571.755|102.261 +639568.554|221581.390|104.934 +639563.525|221586.157|105.620 +639558.507|221590.906|105.964 +639553.439|221595.703|106.446 +639548.452|221600.437|107.735 +639543.392|221605.228|108.122 +639538.378|221609.974|108.634 +639533.374|221614.708|108.710 +639528.320|221619.493|109.091 +639523.263|221624.278|109.539 +639518.259|221629.015|109.905 +639508.212|221638.522|110.265 +639503.214|221643.246|110.268 +639498.169|221648.013|110.207 +639493.128|221652.777|109.923 +639488.086|221657.538|109.399 +639483.042|221662.305|109.186 +639452.827|221690.868|108.546 +639432.640|221709.946|107.820 +639427.641|221714.673|108.027 +639407.518|221733.711|108.814 +639402.483|221738.478|109.399 +639392.467|221747.966|110.630 +639387.432|221752.734|111.054 +639382.449|221757.455|111.496 +639372.448|221766.928|113.020 +639362.466|221776.371|113.392 +639352.490|221785.811|113.877 +639347.464|221790.568|114.416 +639342.477|221795.287|114.718 +639327.609|221809.372|116.757 +639307.724|221828.187|118.144 +639302.810|221832.844|118.933 +639282.956|221851.614|119.019 +639263.140|221870.338|118.391 +639228.649|221902.930|117.330 +639209.127|221921.395|117.897 +639204.241|221926.013|117.827 +639199.355|221930.630|117.815 +639194.396|221935.306|116.830 +639189.516|221939.921|116.928 +639179.762|221949.138|116.693 +639174.867|221953.756|116.071 +639169.935|221958.413|115.638 +639160.078|221967.706|113.794 +639140.327|221986.324|109.740 +639120.674|222004.859|106.482 +639115.779|222009.482|106.348 +639111.030|222013.975|106.784 +639101.520|222022.988|108.479 +639072.884|222050.085|110.310 +639068.013|222054.681|109.682 +639063.292|222059.147|110.045 +639058.494|222063.685|110.115 +639053.767|222068.160|110.435 +639048.978|222072.689|110.646 +639044.281|222077.136|111.252 +639039.655|222081.528|112.471 +639030.303|222090.389|114.066 +639025.655|222094.790|114.709 +639002.094|222117.089|116.217 +638997.357|222121.570|116.230 +638963.973|222153.123|113.733 +638959.196|222157.637|113.279 +638954.509|222162.078|113.477 +638949.876|222166.464|113.761 +638940.600|222175.245|114.297 +638926.924|222188.214|116.492 +638908.545|222205.628|118.354 +638903.966|222209.962|118.482 +638894.749|222218.691|119.022 +638881.018|222231.691|119.616 +638876.477|222235.989|119.774 +638871.947|222240.280|120.320 +638849.322|222261.711|121.871 +638835.633|222274.659|121.743 +638808.009|222300.756|118.958 +638803.410|222305.096|118.250 +638780.367|222326.844|114.279 +638775.789|222331.169|113.834 +638771.311|222335.403|113.700 +638766.870|222339.603|113.499 +638762.380|222343.843|113.066 +638753.358|222352.368|112.319 +638748.847|222356.626|111.584 +638744.272|222360.945|110.807 +638739.722|222365.240|109.917 +638735.259|222369.452|109.259 +638730.736|222373.719|108.579 +638721.821|222382.144|107.671 +638708.534|222394.692|106.299 +638704.231|222398.765|106.330 +638699.902|222402.858|106.263 +638695.580|222406.945|106.235 +638691.240|222411.051|106.135 +638674.250|222427.126|106.238 +638669.938|222431.198|105.894 +638660.784|222439.821|102.328 +638655.993|222444.326|99.853 +638651.878|222448.225|100.029 +638647.739|222452.153|100.340 +638643.609|222456.067|100.481 +638639.470|222459.987|100.596 +638635.321|222463.919|100.679 +638631.127|222467.887|100.346 +638627.034|222471.767|100.468 +638622.959|222475.632|100.694 +638618.862|222479.515|100.840 +638614.763|222483.395|100.758 +638610.672|222487.269|100.737 +638606.597|222491.128|100.569 +638602.449|222495.057|100.322 +638598.492|222498.809|100.694 +638594.871|222502.263|102.511 +638658.331|222440.059|101.773 +638662.988|222435.676|103.900 +638667.664|222431.272|106.162 +638671.797|222427.346|105.693 +638684.425|222415.370|105.424 +638688.796|222411.234|105.897 +638693.087|222407.165|106.016 +638697.370|222403.105|106.104 +638701.698|222399.002|106.186 +638705.995|222394.927|106.125 +638710.333|222390.821|106.546 +638719.187|222382.439|107.564 +638723.613|222378.248|107.985 +638728.157|222373.951|108.753 +638732.516|222369.818|108.887 +638737.036|222365.541|109.591 +638741.572|222361.256|110.390 +638746.101|222356.973|111.194 +638750.682|222352.639|112.045 +638764.148|222339.889|113.273 +638768.605|222335.668|113.566 +638773.055|222331.449|113.569 +638777.648|222327.103|114.093 +638791.404|222314.088|116.254 +638800.712|222305.291|118.220 +638805.266|222300.981|118.692 +638814.474|222292.270|119.695 +638837.459|222270.514|121.628 +638842.092|222266.124|121.899 +638846.673|222261.781|121.887 +638855.750|222253.177|121.692 +638873.916|222235.937|120.067 +638878.476|222231.612|119.735 +638887.708|222222.858|119.512 +638892.311|222218.490|119.195 +638901.537|222209.736|118.403 +638906.173|222205.341|118.345 +638933.910|222179.015|115.492 +638938.510|222174.648|114.971 +638957.194|222156.917|113.236 +638961.961|222152.406|113.633 +638966.829|222147.798|114.096 +638971.571|222143.308|114.361 +638976.387|222138.745|114.486 +638981.249|222134.149|115.349 +638990.908|222125.008|116.315 +638995.672|222120.491|116.123 +639000.454|222115.958|116.111 +639005.233|222111.429|116.096 +639010.013|222106.894|115.711 +639024.305|222093.336|114.681 +639029.023|222088.852|113.831 +639038.454|222079.891|112.124 +639043.230|222075.353|111.380 +639047.966|222070.854|110.719 +639052.788|222066.282|110.380 +639057.610|222061.707|110.073 +639062.454|222057.117|109.984 +639072.213|222047.875|110.518 +639081.933|222038.658|110.350 +639096.354|222024.972|108.890 +639101.191|222020.382|108.390 +639110.841|222011.214|106.711 +639115.669|222006.629|106.144 +639120.619|222001.948|106.894 +639130.494|221992.599|107.732 +639140.522|221983.126|109.887 +639155.555|221968.916|112.880 +639160.615|221964.137|114.178 +639165.537|221959.480|115.056 +639170.542|221954.743|115.815 +639175.532|221950.022|116.397 +639185.438|221940.628|116.833 +639190.327|221935.992|116.858 +639195.347|221931.240|117.400 +639200.348|221926.510|118.372 +639205.244|221921.858|117.924 +639210.221|221917.140|117.994 +639220.118|221907.752|118.013 +639225.001|221903.113|117.427 +639229.957|221898.410|117.223 +639234.934|221893.692|117.382 +639244.852|221884.292|117.988 +639274.772|221855.936|119.336 +639279.712|221851.245|119.131 +639284.717|221846.502|119.198 +639289.682|221841.781|118.561 +639299.634|221832.344|118.665 +639309.592|221822.890|117.924 +639314.573|221818.162|117.574 +639319.565|221813.425|117.482 +639334.546|221799.200|116.272 +639339.490|221794.494|114.901 +639344.510|221789.724|114.258 +639354.462|221780.269|113.169 +639369.519|221765.980|112.401 +639379.583|221756.425|111.746 +639384.564|221751.691|111.264 +639389.593|221746.915|110.710 +639429.793|221708.751|107.896 +639434.838|221703.965|107.966 +639439.934|221699.140|108.381 +639449.974|221689.625|108.756 +639455.537|221684.355|109.210 +639460.057|221680.072|109.625 +639465.098|221675.290|109.536 +639470.140|221670.511|109.759 +639485.264|221656.167|109.689 +639500.385|221641.835|110.399 +639510.428|221632.304|109.932 +639515.473|221627.518|109.847 +639520.432|221622.806|109.259 +639525.479|221618.021|109.170 +639530.533|221613.214|108.631 +639535.535|221608.468|108.664 +639540.543|221603.710|108.238 +639555.648|221589.339|106.004 +639560.669|221584.569|105.495 +639565.689|221579.799|105.098 +639575.787|221570.179|102.407 +639580.843|221565.360|101.047 +639585.830|221560.621|100.502 +639590.865|221555.835|100.057 +639595.852|221551.096|99.664 +639605.925|221541.488|96.357 +639610.991|221536.666|95.393 +639615.996|221531.912|94.912 +639620.934|221527.224|94.930 +639625.905|221522.512|95.329 +639630.879|221517.796|95.646 +639640.822|221508.354|95.396 +639645.772|221503.654|95.278 +639650.719|221498.957|95.262 +639655.559|221494.397|97.442 +639660.558|221489.636|96.408 +639665.489|221484.960|96.728 +639670.287|221480.431|98.652 +639675.213|221475.752|98.231 +639680.065|221471.159|99.139 +639684.902|221466.581|100.273 +639689.764|221461.978|101.008 +639694.616|221457.385|101.861 +639704.288|221448.226|103.321 +639709.183|221443.580|103.501 +639714.008|221439.005|104.010 +639718.854|221434.409|104.224 +639723.752|221429.755|103.730 +639728.611|221425.143|103.797 +639733.430|221420.580|104.489 +639738.181|221416.081|105.421 +639743.009|221411.503|105.958 +639747.792|221406.974|106.519 +639757.448|221397.815|107.003 +639762.261|221393.252|107.204 +639767.037|221388.716|107.232 +639771.917|221384.083|107.201 +639776.763|221379.475|106.470 +639781.646|221374.833|105.903 +639786.395|221370.331|106.388 +639791.156|221365.823|107.281 +639795.886|221361.345|108.006 +639814.994|221343.219|108.887 +639824.522|221334.178|109.189 +639829.262|221329.692|109.890 +639833.867|221325.333|110.950 +639838.677|221320.764|110.932 +639843.331|221316.360|111.560 +639848.065|221311.876|112.334 +639852.725|221307.456|112.874 +639866.856|221294.064|114.120 +639871.529|221289.635|114.611 +639876.201|221285.206|115.114 +639880.919|221280.725|115.202 +639885.583|221276.312|115.830 +639894.983|221267.393|116.425 +639899.729|221262.892|116.367 +639904.401|221258.457|116.537 +639909.132|221253.967|116.620 +639913.850|221249.489|116.467 +639918.565|221245.009|116.339 +639923.314|221240.498|115.964 +639932.778|221231.509|115.580 +639980.269|221186.368|111.069 +639984.927|221181.946|111.021 +639989.678|221177.428|110.332 +639994.503|221172.835|109.487 +640003.907|221163.901|108.966 +640013.438|221154.834|107.339 +640018.135|221150.371|107.204 +640022.765|221145.973|106.894 +640027.510|221141.462|106.482 +640032.250|221136.954|105.812 +640036.923|221132.513|105.306 +640041.671|221127.996|104.641 +640046.463|221123.436|103.742 +640051.099|221119.032|103.553 +640055.872|221114.487|102.529 +640060.666|221109.924|101.694 +640069.582|221101.484|103.425 +640060.977|221106.709|102.215 +640056.320|221111.116|102.133 +640046.728|221120.224|103.803 +640041.927|221124.774|104.397 +640037.093|221129.364|105.242 +640032.314|221133.897|105.772 +640027.492|221138.472|106.290 +640022.710|221143.004|106.881 +640017.976|221147.491|107.204 +640008.460|221156.507|107.576 +640003.416|221161.311|109.442 +639998.728|221165.752|109.561 +639993.958|221170.266|109.588 +639989.124|221174.853|110.100 +639984.287|221179.443|111.018 +639979.492|221183.982|110.947 +639974.649|221188.581|111.975 +639969.808|221193.168|112.307 +639955.315|221206.909|113.648 +639936.024|221225.197|115.141 +639931.205|221229.766|115.556 +639921.522|221238.940|116.056 +639916.679|221243.531|116.373 +639911.857|221248.100|116.553 +639907.044|221252.659|116.672 +639902.198|221257.247|116.681 +639897.427|221261.761|116.492 +639892.615|221266.311|116.254 +639887.838|221270.835|116.172 +639883.044|221275.370|115.815 +639878.268|221279.884|115.315 +639873.431|221284.465|115.382 +639868.663|221288.967|114.404 +639863.845|221293.527|114.334 +639854.252|221302.598|113.398 +639844.703|221311.617|112.072 +639839.957|221316.104|111.402 +639835.129|221320.670|111.045 +639830.335|221325.199|110.387 +639825.589|221329.686|109.719 +639820.697|221334.312|109.582 +639815.912|221338.842|109.378 +639796.560|221357.151|108.357 +639791.707|221361.738|107.896 +639786.956|221366.225|106.848 +639782.115|221370.797|106.244 +639777.202|221375.454|106.552 +639772.249|221380.157|107.396 +639767.339|221384.809|107.717 +639762.517|221389.375|107.610 +639757.618|221394.005|107.238 +639752.809|221398.555|106.997 +639747.892|221403.210|106.906 +639743.058|221407.782|106.421 +639738.178|221412.396|105.882 +639733.311|221416.996|105.184 +639728.513|221421.525|104.172 +639723.630|221426.146|103.742 +639718.717|221430.797|103.708 +639713.776|221435.482|104.147 +639708.899|221440.093|103.650 +639704.001|221444.729|103.449 +639694.269|221453.928|102.139 +639689.361|221458.564|101.377 +639684.503|221463.155|100.551 +639679.635|221467.742|99.048 +639674.768|221472.341|98.371 +639669.805|221477.044|98.551 +639664.898|221481.680|97.743 +639660.055|221486.256|96.637 +639655.062|221490.980|96.503 +639650.167|221495.601|95.424 +639645.229|221500.273|95.208 +639640.307|221504.928|94.650 +639630.297|221514.428|96.219 +639615.432|221528.486|94.869 +639610.476|221533.189|95.302 +639605.413|221537.992|96.094 +639600.357|221542.808|98.070 +639590.326|221552.339|100.285 +639585.342|221557.061|100.493 +639580.307|221561.837|100.980 +639575.265|221566.622|101.758 +639565.204|221576.190|104.541 +639560.172|221580.966|105.339 +639555.203|221585.672|105.540 +639540.125|221599.986|108.091 +639535.117|221604.735|108.387 +639530.106|221609.483|108.768 +639525.101|221614.229|109.012 +639520.093|221618.975|109.420 +639515.040|221623.769|109.993 +639510.041|221628.506|110.140 +639499.995|221638.025|110.490 +639494.996|221642.761|110.679 +639489.955|221647.526|110.070 +639484.913|221652.302|110.085 +639469.878|221666.539|109.981 +639464.833|221671.315|109.935 +639439.611|221695.178|108.317 +639434.612|221699.912|108.079 +639424.471|221709.513|107.902 +639419.427|221714.289|107.921 +639414.386|221719.068|108.418 +639409.347|221723.848|108.725 +639404.303|221728.624|108.750 +639399.271|221733.400|109.478 +639384.162|221747.723|110.691 +639379.132|221752.496|111.264 +639364.026|221766.809|112.215 +639354.011|221776.301|113.066 +639329.008|221800.014|116.547 +639324.027|221804.736|116.897 +639314.015|221814.221|117.589 +639304.002|221823.709|118.196 +639299.034|221828.422|118.854 +639293.986|221833.198|118.830 +639288.991|221837.925|118.915 +639284.038|221842.616|118.894 +639274.013|221852.111|119.406 +639269.047|221856.808|119.180 +639264.037|221861.550|119.067 +639254.054|221870.993|118.793 +639224.236|221899.202|117.574 +639219.335|221903.845|117.924 +639214.375|221908.542|118.113 +639204.576|221917.820|118.183 +639194.743|221927.134|118.543 +639189.714|221931.874|117.269 +639184.798|221936.525|116.873 +639179.921|221941.143|117.056 +639170.042|221950.476|115.867 +639155.201|221964.494|113.560 +639150.239|221969.179|112.907 +639145.305|221973.839|112.033 +639140.272|221978.585|110.649 +639120.503|221997.245|107.049 +639115.654|222001.835|106.848 +639110.786|222006.434|106.519 +639101.191|222015.536|107.811 +639082.211|222033.540|110.643 +639067.846|222047.140|110.950 +639063.030|222051.694|110.835 +639058.223|222056.242|110.368 +639053.435|222060.774|110.566 +639048.683|222065.273|110.655 +639043.952|222069.754|110.960 +639039.316|222074.158|112.084 +639034.519|222078.693|111.837 +639029.931|222083.052|112.977 +639001.914|222109.612|116.233 +638978.286|222131.951|115.644 +638963.982|222145.460|114.215 +638959.263|222149.916|113.791 +638954.527|222154.394|113.630 +638949.949|222158.731|114.276 +638908.843|222197.669|118.830 +638904.238|222202.025|118.747 +638872.401|222232.154|120.341 +638845.417|222257.700|122.216 +638836.279|222266.335|121.533 +638813.468|222287.887|120.015 +638799.825|222300.768|118.631 +638786.027|222313.783|116.077 +638781.473|222318.087|115.699 +638776.895|222322.406|114.962 +638767.830|222330.956|113.514 +638763.447|222335.104|113.611 +638759.089|222339.228|113.867 +638750.015|222347.790|112.289 +638745.476|222352.069|111.414 +638740.953|222356.333|110.643 +638718.523|222377.499|107.076 +638714.192|222381.595|107.159 +638705.462|222389.840|106.552 +638701.091|222393.970|106.244 +638696.763|222398.060|106.165 +638692.474|222402.117|106.040 +638688.177|222406.177|105.909 +638679.542|222414.337|105.488 +638671.068|222422.350|105.418 +638666.914|222426.279|105.559 +638662.726|222430.241|105.799 +638653.579|222438.840|102.319 +638648.870|222443.259|100.005 +638644.785|222447.124|100.340 +638640.625|222451.056|100.578 +638636.541|222454.918|100.703 +638632.410|222458.822|100.871 +638628.308|222462.703|100.935 +638624.129|222466.650|100.682 +638620.023|222470.530|100.779 +638616.003|222474.331|101.026 +638611.931|222478.177|101.075 +638607.837|222482.048|101.026 +638603.750|222485.910|101.032 +638599.675|222489.760|100.874 +638595.584|222493.622|100.679 +638591.616|222497.374|100.785 +638587.922|222500.882|102.297 +638662.150|222428.117|105.632 +638666.320|222424.154|105.321 +638670.529|222420.158|105.208 +638679.033|222412.090|105.427 +638683.315|222408.030|105.711 +638687.598|222403.964|105.781 +638691.880|222399.898|105.860 +638696.172|222395.829|105.988 +638700.506|222391.718|106.110 +638704.895|222387.557|106.519 +638709.287|222383.390|106.711 +638736.043|222358.043|110.091 +638740.517|222353.803|110.600 +638745.053|222349.509|111.459 +638749.631|222345.178|112.292 +638754.139|222340.904|112.801 +638758.738|222336.552|113.806 +638763.091|222332.419|113.544 +638767.553|222328.185|113.596 +638772.070|222323.906|114.245 +638776.761|222319.468|115.327 +638781.281|222315.185|115.769 +638785.786|222310.912|115.882 +638795.104|222302.100|118.150 +638799.700|222297.748|118.580 +638804.294|222293.398|119.296 +638808.789|222289.137|119.479 +638818.068|222280.356|120.701 +638822.661|222276.006|121.237 +638827.178|222271.721|121.070 +638831.784|222267.356|121.451 +638836.365|222263.015|121.692 +638845.597|222254.268|122.374 +638868.232|222232.776|120.716 +638872.779|222228.457|120.314 +638881.966|222219.740|119.805 +638886.614|222215.329|119.781 +638900.443|222202.205|119.058 +638905.067|222197.816|118.939 +638909.712|222193.408|118.653 +638914.296|222189.050|117.979 +638918.877|222184.694|117.306 +638923.565|222180.247|117.019 +638932.779|222171.490|115.724 +638956.145|222149.300|113.825 +638960.885|222144.808|114.047 +638965.701|222140.251|114.480 +638970.544|222135.664|115.190 +638975.387|222131.076|115.522 +638984.992|222121.975|116.086 +638994.608|222112.862|116.431 +639018.425|222090.248|114.745 +639027.773|222081.348|112.350 +639032.547|222076.816|111.987 +639037.335|222072.268|111.331 +639042.111|222067.733|111.030 +639046.921|222063.164|110.618 +639056.659|222053.931|110.883 +639061.591|222049.262|111.179 +639066.453|222044.650|111.304 +639081.007|222030.840|110.630 +639085.743|222026.332|109.640 +639095.424|222017.139|108.722 +639100.249|222012.549|107.653 +639119.826|221993.977|107.299 +639144.826|221970.334|112.060 +639149.849|221965.582|112.874 +639154.814|221960.885|113.627 +639164.790|221951.454|115.202 +639169.811|221946.709|116.187 +639179.732|221937.315|116.781 +639184.673|221932.633|116.864 +639189.732|221927.863|118.543 +639204.552|221913.812|118.427 +639209.505|221909.115|118.162 +639214.442|221904.436|118.375 +639219.399|221899.736|118.183 +639224.300|221895.088|117.882 +639254.134|221866.839|119.695 +639278.877|221843.378|119.232 +639283.858|221838.654|118.884 +639288.823|221833.954|119.171 +639293.803|221829.226|118.891 +639303.709|221819.826|118.065 +639313.615|221810.426|117.211 +639323.540|221801.014|116.778 +639328.520|221796.290|116.452 +639333.482|221791.574|115.629 +639343.401|221782.147|113.599 +639348.378|221777.419|113.063 +639368.312|221758.506|111.560 +639378.285|221749.045|110.987 +639388.252|221739.584|110.024 +639393.239|221734.854|109.497 +639403.215|221725.387|108.768 +639408.204|221720.653|108.494 +639413.197|221715.920|108.226 +639418.238|221711.140|108.131 +639423.185|221706.447|107.881 +639428.184|221701.713|108.107 +639433.228|221696.934|108.195 +639458.252|221673.245|110.201 +639463.245|221668.511|110.268 +639468.238|221663.784|110.569 +639473.279|221659.001|110.198 +639493.298|221640.034|110.643 +639498.291|221635.300|110.609 +639503.290|221630.560|110.344 +639513.336|221621.026|109.582 +639518.338|221616.283|109.344 +639523.343|221611.538|108.985 +639528.344|221606.789|108.655 +639543.365|221592.539|107.799 +639553.436|221582.963|105.220 +639563.476|221573.432|104.281 +639568.496|221568.646|102.258 +639573.531|221563.864|101.587 +639578.560|221559.091|101.121 +639583.544|221554.363|100.779 +639603.758|221535.136|95.960 +639608.760|221530.388|95.427 +639638.694|221502.029|96.335 +639643.696|221497.295|97.085 +639648.652|221492.598|96.875 +639653.745|221487.743|94.884 +639658.695|221483.064|95.781 +639663.542|221478.495|97.722 +639668.519|221473.783|98.097 +639673.387|221469.190|99.572 +639678.322|221464.517|99.819 +639683.250|221459.860|101.005 +639688.118|221455.257|101.617 +639693.040|221450.597|102.096 +639697.935|221445.970|102.995 +639702.864|221441.307|103.416 +639707.750|221436.677|103.699 +639712.642|221432.044|103.977 +639717.616|221427.325|103.699 +639722.454|221422.747|104.105 +639727.349|221418.117|105.010 +639732.192|221413.539|105.988 +639737.044|221408.946|106.202 +639741.927|221404.322|106.625 +639746.777|221399.732|106.924 +639751.669|221395.099|107.265 +639761.355|221385.930|108.043 +639766.165|221381.371|108.238 +639771.039|221376.753|108.293 +639775.995|221372.044|107.390 +639780.884|221367.402|106.735 +639785.636|221362.912|107.756 +639790.452|221358.349|108.012 +639800.035|221349.281|109.134 +639804.832|221344.743|109.649 +639809.636|221340.186|109.564 +639814.449|221335.632|109.954 +639819.185|221331.142|110.106 +639833.489|221317.603|111.283 +639838.226|221313.114|111.514 +639842.969|221308.630|112.191 +639847.644|221304.210|113.069 +639852.363|221299.745|113.538 +639861.754|221290.857|114.480 +639866.487|221286.373|114.840 +639875.863|221277.498|115.544 +639880.496|221273.112|115.992 +639885.242|221268.619|116.309 +639889.902|221264.202|116.522 +639894.626|221259.722|116.626 +639903.926|221250.910|116.949 +639908.644|221246.432|116.769 +639913.350|221241.967|116.696 +639918.093|221237.462|116.345 +639932.153|221224.115|115.306 +639936.878|221219.628|114.855 +639941.596|221215.151|114.477 +639946.247|221210.734|114.264 +639950.926|221206.293|113.870 +639955.635|221201.819|113.279 +639969.589|221188.569|112.252 +639974.256|221184.137|111.737 +639978.977|221179.650|111.191 +639983.637|221175.222|110.445 +639988.362|221170.729|109.597 +639992.961|221166.367|109.676 +639997.500|221162.060|109.527 +640002.084|221157.711|109.414 +640006.909|221153.115|107.677 +640016.077|221144.412|107.259 +640020.710|221140.011|106.927 +640025.343|221135.610|106.287 +640029.912|221131.269|105.787 +640039.230|221122.412|104.336 +640043.796|221118.078|103.943 +640048.392|221113.707|103.361 +640053.107|221109.220|102.075 +640057.603|221104.962|102.526 +640057.417|221101.969|102.788 +640048.285|221110.604|102.733 +640043.558|221115.091|103.775 +640038.882|221119.519|104.196 +640034.201|221123.954|104.998 +640029.488|221128.420|105.714 +640024.779|221132.879|106.119 +640020.040|221137.372|106.769 +640015.391|221141.770|107.147 +640005.979|221150.682|107.787 +640001.136|221155.276|108.920 +639996.375|221159.790|109.545 +639991.745|221164.167|109.600 +639986.978|221168.675|109.625 +639982.183|221173.222|110.557 +639977.371|221177.782|111.307 +639972.588|221182.314|111.889 +639967.836|221186.810|112.264 +639953.483|221200.398|113.230 +639948.625|221205.001|113.797 +639938.993|221214.120|114.754 +639934.202|221218.656|114.901 +639929.316|221223.283|115.455 +639924.491|221227.855|115.934 +639919.654|221232.433|116.156 +639914.853|221236.977|116.498 +639909.982|221241.583|116.647 +639905.154|221246.152|116.867 +639885.882|221264.373|116.464 +639881.078|221268.908|116.160 +639876.299|221273.422|115.669 +639871.437|221278.019|115.526 +639866.609|221282.579|115.071 +639861.790|221287.126|114.550 +639847.288|221300.821|113.054 +639842.432|221305.405|112.471 +639837.620|221309.950|111.950 +639832.776|221314.519|111.249 +639822.937|221323.821|111.011 +639818.091|221328.396|110.390 +639808.231|221337.714|109.960 +639798.413|221346.992|109.679 +639793.494|221351.643|109.420 +639788.672|221356.185|108.076 +639783.758|221360.818|107.186 +639778.845|221365.463|106.915 +639773.749|221370.300|108.247 +639768.759|221375.028|108.936 +639758.911|221384.327|108.198 +639753.961|221389.006|107.906 +639748.980|221393.709|107.366 +639744.079|221398.342|107.086 +639739.151|221402.999|106.577 +639724.255|221417.072|105.196 +639719.421|221421.629|104.004 +639714.440|221426.338|103.580 +639709.439|221431.068|103.468 +639704.464|221435.777|103.705 +639699.490|221440.478|103.199 +639694.525|221445.165|102.559 +639689.557|221449.859|101.983 +639684.564|221454.581|101.816 +639679.654|221459.217|101.099 +639674.679|221463.901|99.743 +639669.751|221468.547|98.457 +639664.804|221473.216|97.475 +639659.915|221477.813|95.345 +639654.782|221482.705|97.902 +639649.820|221487.386|97.186 +639644.815|221492.114|96.436 +639639.810|221496.866|97.609 +639634.805|221501.590|96.835 +639619.900|221515.654|94.031 +639614.807|221520.491|95.311 +639604.776|221529.985|95.482 +639599.768|221534.731|96.027 +639594.660|221539.596|98.237 +639589.612|221544.375|98.725 +639584.583|221549.157|100.304 +639579.575|221553.912|101.352 +639574.552|221558.664|101.371 +639569.517|221563.434|101.880 +639564.485|221568.201|102.334 +639554.438|221577.741|104.803 +639549.391|221582.539|106.299 +639544.410|221587.263|107.162 +639534.383|221596.761|107.872 +639529.375|221601.501|107.957 +639524.361|221606.252|108.506 +639519.350|221611.001|109.030 +639514.388|221615.701|109.515 +639509.383|221620.444|109.859 +639504.378|221625.184|110.195 +639499.428|221629.868|110.161 +639494.423|221634.608|110.685 +639489.427|221639.339|110.755 +639469.487|221658.203|110.509 +639464.489|221662.930|110.515 +639459.539|221667.609|110.280 +639454.543|221672.339|110.341 +639444.597|221681.739|109.777 +639434.594|221691.191|108.600 +639429.638|221695.873|108.204 +639424.639|221700.604|108.360 +639419.640|221705.334|108.393 +639414.687|221710.022|108.347 +639404.696|221719.483|108.826 +639394.705|221728.941|109.134 +639389.758|221733.626|109.381 +639374.883|221747.717|110.737 +639359.960|221761.856|111.548 +639350.033|221771.265|112.228 +639340.136|221780.659|113.843 +639320.397|221799.389|116.723 +639310.531|221808.744|117.482 +639305.593|221813.422|117.748 +639300.616|221818.141|118.186 +639290.798|221827.449|118.997 +639275.982|221841.488|119.796 +639231.551|221883.560|119.890 +639201.903|221911.620|118.842 +639187.148|221925.589|118.641 +639182.097|221930.350|117.092 +639177.181|221935.001|116.720 +639172.255|221939.668|116.888 +639162.352|221949.022|115.480 +639142.439|221967.831|111.908 +639127.489|221981.947|109.030 +639107.774|222000.582|106.820 +639098.131|222009.726|107.589 +639083.726|222023.393|109.701 +639064.542|222041.587|111.572 +639059.787|222046.095|111.993 +639054.892|222050.722|111.612 +639050.073|222055.282|111.054 +639045.211|222059.881|111.024 +639040.447|222064.392|111.039 +639035.625|222068.964|111.386 +639030.892|222073.451|111.676 +639026.134|222077.962|112.185 +639021.449|222082.409|112.919 +639007.474|222095.686|116.208 +639002.673|222100.225|115.638 +638993.243|222109.164|116.294 +638988.546|222113.617|116.595 +638983.772|222118.135|116.336 +638964.677|222136.206|115.123 +638959.885|222140.733|114.504 +638950.412|222149.700|114.136 +638931.917|222167.241|115.800 +638909.026|222188.958|118.634 +638904.460|222193.292|119.113 +638899.891|222197.621|119.275 +638895.292|222201.979|119.567 +638886.154|222210.639|119.973 +638881.558|222214.991|120.018 +638867.881|222227.954|120.677 +638863.391|222232.215|121.137 +638858.883|222236.489|121.512 +638845.423|222249.248|122.521 +638827.141|222266.548|121.423 +638808.853|222283.846|119.817 +638785.948|222305.499|116.720 +638781.373|222309.821|115.952 +638772.390|222318.322|115.373 +638767.730|222322.717|114.224 +638763.179|222327.014|113.422 +638758.811|222331.157|113.599 +638754.465|222335.278|113.910 +638749.804|222339.673|112.606 +638736.216|222352.508|110.128 +638731.788|222356.693|109.612 +638727.277|222360.957|108.957 +638718.267|222369.467|107.287 +638713.807|222373.682|106.714 +638709.476|222377.782|106.540 +638696.434|222390.126|105.927 +638692.142|222394.189|105.778 +638683.544|222402.331|105.714 +638679.264|222406.382|105.437 +638666.502|222418.461|105.089 +638662.250|222422.487|105.016 +638649.327|222434.691|103.205 +638640.283|222443.208|100.097 +638636.196|222447.078|100.438 +638632.130|222450.928|100.642 +638627.997|222454.842|100.801 +638623.949|222458.673|100.889 +638619.807|222462.590|100.807 +638615.680|222466.494|100.572 +638611.638|222470.323|100.959 +638607.630|222474.117|101.063 +638603.552|222477.976|101.084 +638599.492|222481.817|100.987 +638595.450|222485.639|100.980 +638591.396|222489.476|100.938 +638587.285|222493.362|100.432 +638583.505|222496.947|101.374 +638579.878|222500.403|102.940 +638655.322|222426.325|104.922 +638659.516|222422.347|104.705 +638663.720|222418.360|104.531 +638668.005|222414.303|104.766 +638672.288|222410.246|105.016 +638676.585|222406.180|105.339 +638680.895|222402.096|105.510 +638685.168|222398.048|105.516 +638689.500|222393.946|105.568 +638693.800|222389.874|105.748 +638698.153|222385.750|105.952 +638702.475|222381.653|105.772 +638706.879|222377.486|106.260 +638711.198|222373.393|106.363 +638720.193|222364.886|107.631 +638724.698|222360.631|108.457 +638729.282|222356.300|109.478 +638733.720|222352.097|109.774 +638738.359|222347.720|110.856 +638742.946|222343.388|111.965 +638752.185|222334.659|113.837 +638756.537|222330.529|113.557 +638760.917|222326.377|113.422 +638765.486|222322.055|114.041 +638770.235|222317.575|115.388 +638783.771|222304.758|116.330 +638793.144|222295.903|118.357 +638797.679|222291.606|118.723 +638802.309|222287.226|119.360 +638806.909|222282.870|119.863 +638816.068|222274.196|120.698 +638825.261|222265.484|121.265 +638829.821|222261.165|121.655 +638834.493|222256.740|122.176 +638843.649|222248.059|122.423 +638848.194|222243.752|122.515 +638852.742|222239.430|122.073 +638861.727|222230.893|121.134 +638866.296|222226.558|120.835 +638875.513|222217.811|120.512 +638884.691|222209.099|120.012 +638889.263|222204.759|119.503 +638893.917|222200.342|119.567 +638898.523|222195.972|119.314 +638903.208|222191.528|119.290 +638907.798|222187.166|118.650 +638921.630|222174.029|117.193 +638949.568|222147.487|114.178 +638959.120|222138.437|114.794 +638968.721|222129.342|115.526 +638983.190|222115.635|116.611 +638987.924|222111.146|116.595 +639002.195|222097.600|115.629 +639006.980|222093.056|115.324 +639021.120|222079.608|112.670 +639025.856|222075.109|111.959 +639030.684|222070.522|111.670 +639035.464|222065.986|111.353 +639040.319|222061.384|111.319 +639045.178|222056.772|111.350 +639050.054|222052.151|111.548 +639064.727|222038.240|111.804 +639084.024|222019.907|109.274 +639088.871|222015.304|108.884 +639093.656|222010.750|107.893 +639098.530|222006.120|107.299 +639108.375|221996.790|107.659 +639128.245|221977.975|109.689 +639138.206|221968.551|111.228 +639143.259|221963.771|112.371 +639158.265|221949.580|115.443 +639168.302|221940.073|116.818 +639173.176|221935.446|116.632 +639178.186|221930.694|117.040 +639183.167|221925.979|117.662 +639198.136|221911.791|118.964 +639242.923|221869.317|120.826 +639252.820|221859.926|120.600 +639257.767|221855.229|120.539 +639262.714|221850.535|120.424 +639287.476|221827.017|118.903 +639292.426|221822.320|118.958 +639297.388|221817.601|118.296 +639302.356|221812.877|117.729 +639307.288|221808.192|117.440 +639322.220|221794.010|116.260 +639342.078|221775.121|113.163 +639351.972|221765.712|111.661 +639361.942|221756.245|111.072 +639366.968|221751.466|110.524 +639371.966|221746.726|110.752 +639376.913|221742.032|110.819 +639381.940|221737.256|110.115 +639421.856|221699.357|108.643 +639426.849|221694.617|108.372 +639441.790|221680.459|109.911 +639446.783|221675.723|110.118 +639466.695|221656.840|110.972 +639471.685|221652.101|110.780 +639481.667|221642.633|110.932 +639486.660|221637.897|110.923 +639491.649|221633.157|110.826 +639496.645|221628.418|110.633 +639501.592|221623.721|110.466 +639506.594|221618.966|109.862 +639511.638|221614.174|109.612 +639516.594|221609.462|108.966 +639521.599|221604.710|108.543 +639526.604|221599.958|108.223 +639531.563|221595.246|107.756 +639536.568|221590.494|107.494 +639551.607|221576.181|104.123 +639556.584|221571.450|103.477 +639561.616|221566.668|102.657 +639566.594|221561.941|102.206 +639571.577|221557.207|101.648 +639576.549|221552.489|101.526 +639586.580|221542.933|98.688 +639601.618|221528.626|95.646 +639606.611|221523.886|95.369 +639621.531|221509.747|96.195 +639631.398|221500.404|97.475 +639636.326|221495.732|97.713 +639641.264|221491.062|98.752 +639646.269|221486.310|98.417 +639651.210|221481.623|98.411 +639656.254|221476.825|97.408 +639661.271|221472.046|96.027 +639666.233|221467.340|95.848 +639671.058|221462.801|98.929 +639675.892|221458.244|100.923 +639680.787|221453.614|101.852 +639685.768|221448.893|102.105 +639690.657|221444.260|102.306 +639695.558|221439.621|103.084 +639700.474|221434.964|103.626 +639705.446|221430.242|103.334 +639710.390|221425.558|103.510 +639715.260|221420.943|104.056 +639720.140|221416.331|105.171 +639724.990|221411.744|106.046 +639739.666|221397.830|106.851 +639744.543|221393.212|107.384 +639749.380|221388.631|107.805 +639759.115|221379.408|108.506 +639768.829|221370.206|109.506 +639773.825|221365.445|108.070 +639778.784|221360.736|107.713 +639783.630|221356.136|107.598 +639788.434|221351.592|108.515 +639793.201|221347.090|109.875 +639798.078|221342.466|110.006 +639807.770|221333.276|110.423 +639812.541|221328.756|110.710 +639817.408|221324.144|111.018 +639822.148|221319.655|111.636 +639831.865|221310.437|111.539 +639860.342|221283.469|114.904 +639865.100|221278.961|115.465 +639869.794|221274.511|115.733 +639874.589|221269.966|115.998 +639879.271|221265.531|116.419 +639884.025|221261.023|116.638 +639902.883|221243.156|117.101 +639907.669|221238.614|116.766 +639912.372|221234.155|116.742 +639917.169|221229.601|116.373 +639926.649|221220.607|115.501 +639931.413|221216.086|115.120 +639945.543|221202.675|113.858 +639954.992|221193.708|113.191 +639959.726|221189.215|112.840 +639969.153|221180.266|111.786 +639973.795|221175.862|111.481 +639978.511|221171.387|111.027 +639983.302|221166.824|109.692 +639987.956|221162.414|109.743 +639992.592|221158.013|109.231 +639997.155|221153.688|109.274 +640001.989|221149.088|107.811 +640006.586|221144.726|107.662 +640011.222|221140.328|107.293 +640015.843|221135.945|107.043 +640020.485|221131.535|106.342 +640025.087|221127.164|105.930 +640034.402|221118.315|104.495 +640038.953|221113.999|104.202 +640052.669|221100.981|103.026 +640057.140|221096.745|103.023 +640061.617|221092.505|103.303 +640066.092|221088.262|103.303 +640079.006|221073.342|102.931 +640065.437|221086.186|103.291 +640060.968|221090.414|103.227 +640056.415|221094.721|103.090 +640047.542|221103.100|101.992 +640042.833|221107.571|103.212 +640028.833|221120.848|105.315 +640024.145|221125.289|105.885 +640019.549|221129.645|106.226 +640014.901|221134.052|106.930 +640010.219|221138.484|107.220 +640005.589|221142.867|107.515 +640001.014|221147.201|107.814 +639996.192|221151.780|108.832 +639982.208|221165.023|109.722 +639977.502|221169.485|110.396 +639972.765|221173.978|111.328 +639958.577|221187.423|112.740 +639953.837|221191.913|113.096 +639939.603|221205.397|114.477 +639934.884|221209.868|114.812 +639930.126|221214.373|115.084 +639925.372|221218.875|115.361 +639920.568|221223.432|116.074 +639915.828|221227.919|116.309 +639911.025|221232.469|116.684 +639906.291|221236.953|116.922 +639901.481|221241.504|117.007 +639882.483|221259.475|116.769 +639877.725|221263.974|116.519 +639872.958|221268.475|115.916 +639868.194|221272.980|115.769 +639863.400|221277.513|115.474 +639858.639|221282.012|114.876 +639849.083|221291.034|113.575 +639844.292|221295.563|113.304 +639839.482|221300.105|112.734 +639834.657|221304.664|112.359 +639829.862|221309.191|111.673 +639824.964|221313.833|112.063 +639820.100|221318.429|111.636 +639815.235|221323.026|111.237 +639810.373|221327.622|110.838 +639805.497|221332.231|110.573 +639790.802|221346.120|109.600 +639785.977|221350.668|108.293 +639781.094|221355.283|107.659 +639776.117|221359.995|108.110 +639771.130|221364.725|108.756 +639751.330|221383.449|108.030 +639746.387|221388.122|107.671 +639741.446|221392.788|107.250 +639736.459|221397.504|106.857 +639721.582|221411.564|105.882 +639716.623|221416.243|105.101 +639711.682|221420.903|104.074 +639706.717|221425.591|103.376 +639701.721|221430.315|103.205 +639696.649|221435.116|103.458 +639691.675|221439.816|102.949 +639686.661|221444.550|102.331 +639681.671|221449.271|102.133 +639676.645|221454.020|101.715 +639671.649|221458.732|100.770 +639666.809|221463.258|97.036 +639661.829|221467.964|96.600 +639656.696|221472.829|97.225 +639651.563|221477.706|98.883 +639646.516|221482.482|98.941 +639631.382|221496.789|98.124 +639626.326|221501.566|97.478 +639621.324|221506.284|96.567 +639601.119|221525.386|95.528 +639596.013|221530.223|96.143 +639585.824|221539.897|98.445 +639580.709|221544.750|99.618 +639570.538|221554.409|102.130 +639565.469|221559.203|102.099 +639560.437|221563.974|102.623 +639555.353|221568.792|103.349 +639550.275|221573.605|104.001 +639545.151|221578.491|106.683 +639535.068|221588.041|107.482 +639530.009|221592.829|107.680 +639519.889|221602.415|108.491 +639514.827|221607.213|109.103 +639504.768|221616.741|109.777 +639499.715|221621.526|110.256 +639494.710|221626.263|110.533 +639489.613|221631.088|110.786 +639479.570|221640.594|111.024 +639469.481|221650.138|110.954 +639459.438|221659.641|111.164 +639454.442|221664.366|110.829 +639449.444|221669.090|110.560 +639429.348|221688.076|108.707 +639419.351|221697.537|108.963 +639414.352|221702.268|109.134 +639399.356|221716.459|109.369 +639389.413|221725.871|109.847 +639384.418|221730.599|110.103 +639379.471|221735.284|110.323 +639369.528|221744.696|110.643 +639359.598|221754.102|111.505 +639344.717|221768.187|112.371 +639339.831|221772.820|112.971 +639320.141|221791.489|116.318 +639315.207|221796.162|116.733 +639310.330|221800.785|117.446 +639305.389|221805.461|117.735 +639295.553|221814.773|118.217 +639290.682|221819.390|118.991 +639285.784|221824.026|119.125 +639271.120|221837.910|120.344 +639266.219|221842.549|120.472 +639261.312|221847.191|120.488 +639256.404|221851.833|120.555 +639251.503|221856.472|120.713 +639246.639|221861.075|120.725 +639241.722|221865.723|120.698 +639236.861|221870.323|120.820 +639231.950|221874.968|120.905 +639192.713|221912.056|118.967 +639187.812|221916.686|118.744 +639182.902|221921.328|118.400 +639177.952|221925.997|117.598 +639172.993|221930.679|116.717 +639168.128|221935.276|116.477 +639163.242|221939.899|116.608 +639158.277|221944.578|115.190 +639153.394|221949.190|114.843 +639143.488|221958.535|113.172 +639138.492|221963.238|111.636 +639133.585|221967.874|111.139 +639128.617|221972.559|110.027 +639094.345|222004.938|107.302 +639089.566|222009.467|107.930 +639084.805|222013.981|108.750 +639080.025|222018.511|109.369 +639075.310|222022.988|110.627 +639070.525|222027.520|111.234 +639065.733|222032.059|111.770 +639046.525|222050.237|112.310 +639041.660|222054.831|111.813 +639036.820|222059.406|111.594 +639032.022|222063.944|111.761 +639027.213|222068.495|111.837 +639022.476|222072.978|112.145 +639017.685|222077.517|112.407 +639012.972|222081.979|112.950 +639008.294|222086.417|113.773 +639003.600|222090.867|114.468 +638980.026|222113.194|116.516 +638975.226|222117.729|116.089 +638960.922|222131.247|115.337 +638956.176|222135.734|115.044 +638951.400|222140.245|114.587 +638946.703|222144.692|114.703 +638942.024|222149.121|114.980 +638937.357|222153.540|115.361 +638918.868|222171.054|117.242 +638914.177|222175.492|117.181 +638909.621|222179.811|118.061 +638895.917|222192.799|119.848 +638891.296|222197.166|119.704 +638886.684|222201.534|119.951 +638882.070|222205.902|120.198 +638877.513|222210.215|120.509 +638872.919|222214.561|120.613 +638863.827|222223.172|121.140 +638859.261|222227.494|121.463 +638845.747|222240.293|122.734 +638836.584|222248.958|122.432 +638813.654|222270.626|120.948 +638799.895|222283.617|119.381 +638790.776|222292.231|118.372 +638776.907|222305.316|116.053 +638763.386|222318.087|114.757 +638758.756|222322.455|113.809 +638754.328|222326.640|113.697 +638749.993|222330.745|114.081 +638731.617|222348.070|109.966 +638713.631|222365.041|107.000 +638696.150|222381.559|105.933 +638687.528|222389.712|105.708 +638670.236|222406.055|104.781 +638665.945|222410.109|104.501 +638640.351|222434.295|102.526 +638635.733|222438.639|100.423 +638631.575|222442.570|100.447 +638627.457|222446.469|100.660 +638623.388|222450.325|100.871 +638619.298|222454.196|100.996 +638615.177|222458.094|101.011 +638611.084|222461.968|100.929 +638606.978|222465.851|100.804 +638602.985|222469.634|101.194 +638598.980|222473.425|101.319 +638594.865|222477.318|101.206 +638590.817|222481.146|101.179 +638586.846|222484.904|101.264 +638582.734|222488.793|100.977 +638578.726|222492.579|100.724 +638575.196|222495.947|102.712 +638571.280|222499.657|102.861 +638567.424|222503.308|103.276 +638649.650|222423.149|104.589 +638653.844|222419.168|104.601 +638662.171|222411.258|104.144 +638666.460|222407.186|104.163 +638670.821|222403.056|104.784 +638683.718|222390.824|105.400 +638692.395|222382.598|105.876 +638696.708|222378.501|105.906 +638701.052|222374.377|105.845 +638714.280|222361.841|107.000 +638727.953|222348.905|109.856 +638732.440|222344.653|110.423 +638741.578|222336.009|112.206 +638746.321|222331.529|113.925 +638750.691|222327.377|113.727 +638755.123|222323.171|113.599 +638759.692|222318.846|114.212 +638764.343|222314.445|115.303 +638773.408|222305.852|116.025 +638782.540|222297.202|117.199 +638787.249|222292.749|118.211 +638791.779|222288.457|118.525 +638814.849|222266.615|121.198 +638819.439|222262.272|121.731 +638824.063|222257.889|121.905 +638828.647|222253.545|122.176 +638833.195|222249.232|122.234 +638860.529|222223.297|121.256 +638869.771|222214.531|121.064 +638874.337|222210.197|120.811 +638888.150|222197.084|119.933 +638892.817|222192.661|120.076 +638915.814|222170.816|117.522 +638925.110|222161.992|116.781 +638929.728|222157.603|116.062 +638934.383|222153.181|115.599 +638939.037|222148.764|115.138 +638943.731|222144.311|114.989 +638948.464|222139.818|114.788 +638953.219|222135.313|115.120 +638957.977|222130.802|115.157 +638962.827|222126.215|115.870 +639005.471|222085.740|113.602 +639010.296|222081.162|113.203 +639014.990|222076.703|112.542 +639019.769|222072.165|112.228 +639024.549|222067.626|111.898 +639029.410|222063.018|111.871 +639034.171|222058.500|111.862 +639039.045|222053.883|112.005 +639043.967|222049.222|112.587 +639058.543|222035.403|112.852 +639063.280|222030.901|111.825 +639068.120|222026.304|111.331 +639072.890|222021.769|110.661 +639077.663|222017.227|109.524 +639082.467|222012.661|108.701 +639092.120|222003.490|107.518 +639131.653|221966.048|110.755 +639146.713|221951.811|113.587 +639151.718|221947.087|114.831 +639156.713|221942.359|115.480 +639161.745|221937.607|116.574 +639166.619|221932.983|116.367 +639171.655|221928.219|117.019 +639176.644|221923.504|117.702 +639181.640|221918.780|118.574 +639186.636|221914.049|118.814 +639191.567|221909.377|118.897 +639206.448|221895.286|119.753 +639211.376|221890.607|119.198 +639226.388|221876.406|121.021 +639231.341|221871.712|120.927 +639236.294|221867.015|120.823 +639241.292|221862.279|120.719 +639246.203|221857.625|120.750 +639251.214|221852.879|120.887 +639261.144|221843.464|120.454 +639266.140|221838.727|120.396 +639271.084|221834.039|120.280 +639276.082|221829.303|120.329 +639281.041|221824.593|119.534 +639285.967|221819.918|119.043 +639295.922|221810.472|118.269 +639300.847|221805.799|117.696 +639305.837|221801.069|117.604 +639355.608|221753.813|111.170 +639360.600|221749.079|111.106 +639365.633|221744.303|110.713 +639375.621|221734.839|110.691 +639420.640|221692.151|109.024 +639425.681|221687.375|109.085 +639430.631|221682.690|109.539 +639445.667|221668.456|110.621 +639450.654|221663.735|110.941 +639460.639|221654.277|111.225 +639470.624|221644.816|111.283 +639475.617|221640.085|111.304 +639480.610|221635.352|111.207 +639490.552|221625.921|110.819 +639495.597|221621.139|110.557 +639505.551|221611.690|109.567 +639510.556|221606.941|109.094 +639520.474|221597.529|108.149 +639525.482|221592.771|107.622 +639530.438|221588.071|107.561 +639535.452|221583.313|107.061 +639540.415|221578.607|106.817 +639545.416|221573.840|104.961 +639550.458|221569.042|103.571 +639555.386|221564.364|103.093 +639560.364|221559.636|102.596 +639565.335|221554.924|102.459 +639580.316|221540.672|98.722 +639585.260|221535.978|98.234 +639595.254|221526.468|95.829 +639600.247|221521.731|95.582 +639605.182|221517.053|95.589 +639619.891|221503.129|96.969 +639624.835|221498.457|97.963 +639629.712|221493.836|98.243 +639634.625|221489.188|98.847 +639644.428|221479.903|99.496 +639649.384|221475.203|99.237 +639654.306|221470.531|98.752 +639659.217|221465.870|98.515 +639664.237|221461.097|97.244 +639668.937|221456.690|100.846 +639673.820|221452.075|101.971 +639678.669|221447.482|102.056 +639683.546|221442.861|102.434 +639688.423|221438.246|102.879 +639693.296|221433.635|103.388 +639698.219|221428.962|103.093 +639703.068|221424.369|103.276 +639707.930|221419.769|103.989 +639712.721|221415.240|105.016 +639717.562|221410.665|106.007 +639722.423|221406.056|106.037 +639732.104|221396.891|106.741 +639736.941|221392.310|107.144 +639741.787|221387.723|107.473 +639746.621|221383.145|107.939 +639770.807|221360.236|109.128 +639775.742|221355.548|108.485 +639780.619|221350.921|108.046 +639785.398|221346.395|108.698 +639790.135|221341.923|109.868 +639804.622|221328.204|110.856 +639809.374|221323.705|111.353 +639814.202|221319.130|111.566 +639818.966|221314.622|111.975 +639823.785|221310.059|112.325 +639828.680|221305.411|111.911 +639833.435|221300.912|112.459 +639838.196|221296.404|112.938 +639843.002|221291.857|113.477 +639847.791|221287.321|113.727 +639852.512|221282.856|114.629 +639857.288|221278.333|115.013 +639862.028|221273.852|115.772 +639866.771|221269.359|116.059 +639871.568|221264.815|116.300 +639876.314|221260.319|116.589 +639881.063|221255.823|116.879 +639900.140|221237.724|117.065 +639904.953|221233.158|116.925 +639909.744|221228.608|116.565 +639914.527|221224.069|116.321 +639919.309|221219.525|116.083 +639924.155|221214.919|115.385 +639938.554|221201.243|114.206 +639952.840|221187.673|113.051 +639957.665|221183.092|112.755 +639967.190|221174.039|111.688 +639971.960|221169.504|111.149 +639976.828|221164.871|109.960 +639981.543|221160.396|109.893 +639986.262|221155.916|109.472 +639990.901|221151.514|109.640 +639995.768|221146.878|108.244 +640000.435|221142.447|107.942 +640005.129|221137.993|107.814 +640009.801|221133.552|107.503 +640014.565|221129.020|106.625 +640019.332|221124.491|106.089 +640033.396|221111.125|104.284 +640038.096|221106.651|103.327 +640042.851|221102.124|102.395 +640056.344|221089.341|103.684 +640060.932|221084.982|103.269 +640065.491|221080.657|103.361 +640070.021|221076.360|103.361 +640074.562|221072.047|103.010 +640079.061|221067.783|103.227 +640078.961|221065.225|103.181 +640074.379|221069.553|103.117 +640069.832|221073.851|103.160 +640065.205|221078.222|103.102 +640060.599|221082.578|103.245 +640055.960|221086.967|103.614 +640051.355|221091.322|103.809 +640046.737|221095.684|103.782 +640042.296|221099.869|102.965 +640037.608|221104.307|103.428 +640032.927|221108.736|103.873 +640028.166|221113.247|104.870 +640023.426|221117.736|105.446 +640018.750|221122.162|105.961 +640014.093|221126.569|106.369 +640009.298|221131.114|107.412 +640004.608|221135.555|107.781 +639999.978|221139.932|108.094 +639995.302|221144.348|108.064 +639990.498|221148.908|109.317 +639981.153|221157.741|109.695 +639976.535|221162.109|109.728 +639971.756|221166.642|110.935 +639966.974|221171.168|111.502 +639952.846|221184.536|112.846 +639948.158|221188.974|113.203 +639943.404|221193.473|113.712 +639938.688|221197.932|113.962 +639933.961|221202.407|114.340 +639929.218|221206.897|114.864 +639924.469|221211.392|115.446 +639919.708|221215.897|115.800 +639914.996|221220.357|116.178 +639910.260|221224.834|116.382 +639905.499|221229.339|116.803 +639900.771|221233.807|116.986 +639896.001|221238.319|117.159 +639877.167|221256.113|116.778 +639872.446|221260.572|116.635 +639867.767|221264.986|116.132 +639858.319|221273.907|115.541 +639853.615|221278.342|114.852 +639848.882|221282.810|114.477 +639844.173|221287.251|113.855 +639839.451|221291.707|113.368 +639834.687|221296.200|112.831 +639825.150|221305.201|111.926 +639820.292|221309.800|112.414 +639815.534|221314.287|111.862 +639810.751|221318.804|111.615 +639805.871|221323.416|111.389 +639801.098|221327.921|111.054 +639796.209|221332.542|110.984 +639791.406|221337.074|110.515 +639786.681|221341.518|109.125 +639781.850|221346.075|108.433 +639776.952|221350.708|108.530 +639771.999|221355.395|109.271 +639767.101|221360.031|109.439 +639752.422|221373.891|108.661 +639747.536|221378.502|108.171 +639737.745|221387.750|107.424 +639732.847|221392.377|107.101 +639727.919|221397.031|106.577 +639723.024|221401.658|106.247 +639713.148|221410.991|105.516 +639708.232|221415.630|104.842 +639703.276|221420.309|104.044 +639698.380|221424.927|103.059 +639693.427|221429.608|102.953 +639688.401|221434.366|103.266 +639683.439|221439.054|102.632 +639678.462|221443.757|102.187 +639673.466|221448.479|102.075 +639668.492|221453.182|101.657 +639663.569|221457.808|99.435 +639658.634|221462.457|98.176 +639653.538|221467.291|99.112 +639648.488|221472.070|99.243 +639643.480|221476.810|99.472 +639638.441|221481.577|99.414 +639633.373|221486.365|98.987 +639628.401|221491.062|98.563 +639623.336|221495.848|98.100 +639618.288|221500.612|97.234 +639613.317|221505.290|95.622 +639608.278|221510.057|95.607 +639598.159|221519.631|95.607 +639593.075|221524.438|95.604 +639577.740|221538.989|98.545 +639572.589|221543.899|101.069 +639562.406|221553.555|102.672 +639557.331|221558.359|102.998 +639552.305|221563.117|103.276 +639547.187|221567.966|103.657 +639542.109|221572.776|104.315 +639536.998|221577.647|106.708 +639531.935|221582.441|107.110 +639526.872|221587.236|107.464 +639521.816|221592.021|107.607 +639516.707|221596.862|108.186 +639511.599|221601.705|108.869 +639506.591|221606.448|109.222 +639496.386|221616.116|110.301 +639491.336|221620.901|110.835 +639476.150|221635.276|111.484 +639471.060|221640.091|111.417 +639466.016|221644.862|111.435 +639455.884|221654.445|111.182 +639450.794|221659.260|111.219 +639445.750|221664.027|110.944 +639430.567|221678.377|109.972 +639425.566|221683.102|109.369 +639420.469|221687.918|108.902 +639390.258|221716.514|110.048 +639365.191|221740.240|111.027 +639360.155|221745.010|111.322 +639355.163|221749.740|111.572 +639320.355|221782.747|115.483 +639315.438|221787.414|116.318 +639305.538|221796.802|117.549 +639300.594|221801.483|117.644 +639290.728|221810.835|118.497 +639285.851|221815.458|119.055 +639280.907|221820.140|119.265 +639271.108|221829.437|120.408 +639266.192|221834.088|120.192 +639261.296|221838.721|120.466 +639256.389|221843.369|120.482 +639251.494|221848.008|120.689 +639246.587|221852.650|120.783 +639241.728|221857.253|120.835 +639236.818|221861.901|120.902 +639231.947|221866.513|120.817 +639227.043|221871.158|120.969 +639222.175|221875.763|121.024 +639217.305|221880.375|120.994 +639212.400|221885.011|120.497 +639207.475|221889.662|119.744 +639202.613|221894.271|119.918 +639192.847|221903.509|119.817 +639187.958|221908.130|119.015 +639183.066|221912.757|118.921 +639168.302|221926.708|116.955 +639163.404|221931.335|116.281 +639158.521|221935.961|116.422 +639148.676|221945.255|114.703 +639133.887|221959.212|111.645 +639128.946|221963.878|110.755 +639119.064|221973.205|108.640 +639114.215|221977.792|108.393 +639089.998|222000.701|107.387 +639085.173|222005.279|108.024 +639080.425|222009.778|108.491 +639070.994|222018.727|110.045 +639066.279|222023.208|111.292 +639037.588|222050.387|112.508 +639032.836|222054.879|112.179 +639027.984|222059.473|112.276 +639023.241|222063.959|112.087 +639018.443|222068.504|112.264 +639013.710|222072.991|112.606 +639008.970|222077.480|112.901 +639004.234|222081.970|113.246 +638999.549|222086.417|114.002 +638976.192|222108.558|116.592 +638957.191|222126.526|115.794 +638952.448|222131.012|115.532 +638933.651|222148.801|115.632 +638924.467|222157.509|116.778 +638919.850|222161.883|117.187 +638915.186|222166.296|117.309 +638906.064|222174.949|118.631 +638892.396|222187.907|120.302 +638873.947|222205.378|120.948 +638869.308|222209.767|121.076 +638860.191|222218.399|121.436 +638855.579|222222.764|121.478 +638851.087|222227.022|121.957 +638832.920|222244.221|122.542 +638823.776|222252.869|122.137 +638814.632|222261.516|121.536 +638809.978|222265.905|120.674 +638805.431|222270.209|120.424 +638800.807|222274.574|119.777 +638791.635|222283.239|118.723 +638787.048|222287.570|118.092 +638777.928|222296.187|117.193 +638773.323|222300.533|116.251 +638768.781|222304.828|115.967 +638764.289|222309.077|115.696 +638755.102|222317.742|113.904 +638750.661|222321.943|113.715 +638746.269|222326.103|114.059 +638737.045|222334.805|112.011 +638732.516|222339.078|111.200 +638727.886|222343.443|109.902 +638696.702|222372.902|106.214 +638692.182|222377.169|105.427 +638687.857|222381.260|105.367 +638683.550|222385.332|105.162 +638679.283|222389.371|105.168 +638670.605|222397.573|104.565 +638666.286|222401.654|104.144 +638649.363|222417.656|103.812 +638645.145|222421.646|103.946 +638636.614|222429.702|103.129 +638632.151|222433.899|101.755 +638627.671|222438.117|100.319 +638623.577|222441.991|100.645 +638619.514|222445.835|100.904 +638615.415|222449.712|100.996 +638611.327|222453.577|101.166 +638607.222|222457.460|101.264 +638603.061|222461.392|100.907 +638599.017|222465.217|101.078 +638594.984|222469.033|101.313 +638590.964|222472.831|101.398 +638586.904|222476.672|101.316 +638582.911|222480.445|101.319 +638578.833|222484.298|101.197 +638574.794|222488.114|101.029 +638570.783|222491.902|101.011 +638647.349|222417.583|103.425 +638655.749|222409.615|103.507 +638660.047|222405.546|103.779 +638681.529|222385.192|104.955 +638685.882|222381.068|105.129 +638690.268|222376.910|105.485 +638694.693|222372.722|106.061 +638707.809|222360.296|106.854 +638725.853|222343.230|109.838 +638730.450|222338.883|110.969 +638735.019|222334.567|111.978 +638744.275|222325.820|114.194 +638748.607|222321.708|113.782 +638753.005|222317.535|113.745 +638757.620|222313.173|114.602 +638762.283|222308.766|115.763 +638766.748|222304.535|115.885 +638780.461|222291.554|117.562 +638798.859|222274.132|119.887 +638812.691|222261.025|121.405 +638817.290|222256.663|121.707 +638821.905|222252.290|122.121 +638831.119|222243.551|122.655 +638844.844|222230.527|122.579 +638853.915|222221.910|121.841 +638858.545|222217.512|121.634 +638872.325|222204.424|121.012 +638913.760|222165.053|117.427 +638918.472|222160.581|117.315 +638927.713|222151.797|116.220 +638937.120|222142.866|116.010 +638946.517|222133.942|115.440 +638956.084|222124.868|115.867 +638994.151|222088.721|114.218 +638998.894|222084.216|113.925 +639003.676|222079.666|113.188 +639008.422|222075.161|112.926 +639013.207|222070.616|112.621 +639018.023|222066.044|112.599 +639022.875|222061.439|112.493 +639027.706|222056.858|112.636 +639032.550|222052.258|112.487 +639037.408|222047.653|112.935 +639066.261|222020.245|110.664 +639071.028|222015.706|109.454 +639075.798|222011.168|108.750 +639080.644|222006.562|108.344 +639085.497|222001.954|107.994 +639090.358|221997.336|107.756 +639110.021|221978.688|108.232 +639114.968|221973.994|108.512 +639119.939|221969.288|109.079 +639129.921|221959.836|110.807 +639155.025|221936.092|116.114 +639159.914|221931.450|116.071 +639164.888|221926.738|116.522 +639169.917|221921.980|117.757 +639199.736|221893.713|119.951 +639214.613|221879.610|121.134 +639219.566|221874.907|121.006 +639224.525|221870.204|120.948 +639229.472|221865.504|120.777 +639234.437|221860.795|120.902 +639244.389|221851.349|120.777 +639249.339|221846.649|120.738 +639254.286|221841.955|120.631 +639259.276|221837.215|120.488 +639264.219|221832.521|120.363 +639269.209|221827.785|120.210 +639279.161|221818.330|119.378 +639289.113|221808.875|118.552 +639304.097|221794.641|117.568 +639314.067|221785.155|115.937 +639329.008|221770.942|113.544 +639334.022|221766.175|112.666 +639338.993|221761.445|111.969 +639359.104|221742.358|111.648 +639399.310|221704.191|110.966 +639419.448|221685.059|109.399 +639454.778|221651.564|111.527 +639464.851|221642.006|111.749 +639469.890|221637.226|111.728 +639474.882|221632.487|111.575 +639484.962|221622.913|111.213 +639489.958|221618.167|110.792 +639495.002|221613.373|110.316 +639500.050|221608.578|109.966 +639505.052|221603.823|109.426 +639510.105|221599.020|108.853 +639515.113|221594.259|108.229 +639520.121|221589.504|107.759 +639525.132|221584.746|107.296 +639530.188|221579.942|106.912 +639535.178|221575.190|105.379 +639540.259|221570.359|104.251 +639545.230|221565.638|103.849 +639550.253|221560.868|103.382 +639555.271|221556.107|103.178 +639560.291|221551.343|102.937 +639575.384|221536.968|98.481 +639580.429|221532.177|97.850 +639590.457|221522.637|95.784 +639595.489|221517.863|95.720 +639600.445|221513.154|95.208 +639610.403|221503.718|95.558 +639615.277|221499.118|97.146 +639620.214|221494.452|98.256 +639630.066|221485.119|98.835 +639639.871|221475.825|99.389 +639649.689|221466.520|99.825 +639654.642|221461.823|99.685 +639659.515|221457.205|100.112 +639664.292|221452.694|101.471 +639669.162|221448.082|101.983 +639674.051|221443.449|102.178 +639678.882|221438.874|102.584 +639683.756|221434.257|103.047 +639688.615|221429.648|103.017 +639693.467|221425.049|103.105 +639698.295|221420.480|103.608 +639703.065|221415.972|104.964 +639707.851|221411.439|105.345 +639717.504|221402.289|105.720 +639722.323|221397.726|106.327 +639727.154|221393.151|106.820 +639741.528|221379.539|108.018 +639746.356|221374.958|107.942 +639751.117|221370.456|108.774 +639755.918|221365.905|109.088 +639760.660|221361.415|109.570 +639765.470|221356.855|109.789 +639770.256|221352.317|109.783 +639775.105|221347.708|109.045 +639779.921|221343.136|108.722 +639784.657|221338.650|109.335 +639789.315|221334.251|110.341 +639794.033|221329.786|111.152 +639798.742|221325.324|111.572 +639827.107|221298.440|112.718 +639831.792|221294.003|113.017 +639836.504|221289.537|113.493 +639845.901|221280.637|114.349 +639855.213|221271.825|115.590 +639859.818|221267.464|116.224 +639864.530|221262.998|116.367 +639869.212|221258.560|116.769 +639878.573|221249.694|117.278 +639892.676|221236.325|117.406 +639897.394|221231.848|117.202 +639906.858|221222.868|116.656 +639944.757|221186.896|113.425 +639949.426|221182.464|113.163 +639954.163|221177.968|112.773 +639963.603|221169.004|111.652 +639968.358|221164.490|111.222 +639973.198|221159.881|109.878 +639977.797|221155.522|109.942 +639982.473|221151.094|110.173 +639987.207|221146.592|109.332 +639992.007|221142.032|108.421 +640006.031|221128.727|107.753 +640010.868|221124.125|106.711 +640015.529|221119.702|106.229 +640020.314|221115.155|105.601 +640025.029|221110.677|105.135 +640029.763|221106.178|104.275 +640034.560|221101.615|103.343 +640039.178|221097.242|103.599 +640052.970|221084.172|103.940 +640057.567|221079.813|103.788 +640062.282|221075.339|103.538 +640066.927|221070.928|103.135 +640071.475|221066.621|103.349 +640076.053|221062.281|103.398 +640080.652|221057.919|103.349 +640080.652|221055.688|103.358 +640076.068|221060.025|103.288 +640071.411|221064.430|103.370 +640066.808|221068.779|103.148 +640062.056|221073.281|103.562 +640057.381|221077.707|103.830 +640052.681|221082.154|103.967 +640043.305|221091.024|104.163 +640034.030|221099.784|103.175 +640029.168|221104.398|104.169 +640024.285|221109.028|104.998 +640019.497|221113.564|105.571 +640014.712|221118.099|106.162 +640009.893|221122.665|106.671 +640000.240|221131.812|107.890 +639995.467|221136.332|108.198 +639990.642|221140.898|108.533 +639985.865|221145.424|108.924 +639980.967|221150.073|110.176 +639976.197|221154.584|109.893 +639971.491|221159.034|109.859 +639966.507|221163.764|111.146 +639961.695|221168.324|111.591 +639947.305|221181.949|112.749 +639937.679|221191.065|113.557 +639932.751|221195.738|114.340 +639927.978|221200.258|114.718 +639913.494|221213.977|116.156 +639908.708|221218.506|116.355 +639903.871|221223.088|116.635 +639894.300|221232.146|117.168 +639889.436|221236.749|117.336 +639884.665|221241.266|117.562 +639879.914|221245.756|117.232 +639875.134|221250.276|117.162 +639870.379|221254.769|116.888 +639865.658|221259.228|116.342 +639860.830|221263.794|116.309 +639856.090|221268.274|115.977 +639851.320|221272.776|115.462 +639846.599|221277.235|114.971 +639841.914|221281.655|114.130 +639837.153|221286.151|113.575 +639832.374|221290.668|113.203 +639827.637|221295.142|112.892 +639822.858|221299.660|112.566 +639818.024|221304.232|112.782 +639813.242|221308.755|112.532 +639808.468|221313.263|112.176 +639789.336|221331.341|110.856 +639784.666|221335.739|109.457 +639779.872|221340.265|108.875 +639775.062|221344.816|109.045 +639770.155|221349.470|109.835 +639765.318|221354.045|109.847 +639760.502|221358.596|109.594 +639755.704|221363.131|109.177 +639750.904|221367.667|108.792 +639741.251|221376.786|108.091 +639736.404|221381.361|107.704 +639731.607|221385.897|107.366 +639726.718|221390.512|106.948 +639721.899|221395.056|106.247 +639717.031|221399.659|106.211 +639702.419|221413.457|105.056 +639697.609|221417.992|104.242 +639692.760|221422.564|103.312 +639687.877|221427.176|102.882 +639682.945|221431.839|103.227 +639678.069|221436.445|102.754 +639673.146|221441.093|102.255 +639668.254|221445.714|102.044 +639663.371|221450.329|101.694 +639658.449|221454.974|101.206 +639653.544|221459.598|100.362 +639648.613|221464.255|100.042 +639638.758|221473.564|99.271 +639633.808|221478.245|99.386 +639628.837|221482.936|98.923 +639623.899|221487.603|98.801 +639618.919|221492.309|98.615 +639614.024|221496.924|97.551 +639609.101|221501.553|95.936 +639594.105|221515.730|95.567 +639589.106|221520.457|95.872 +639584.086|221525.218|96.881 +639573.979|221534.792|98.335 +639558.773|221549.236|103.038 +639553.750|221553.988|103.282 +639548.675|221558.792|103.702 +639543.703|221563.495|103.885 +639538.634|221568.293|104.300 +639533.566|221573.093|104.784 +639528.521|221577.888|106.470 +639523.449|221582.691|107.311 +639518.441|221587.431|107.506 +639508.368|221596.971|108.744 +639503.311|221601.760|109.268 +639493.204|221611.334|110.402 +639488.153|221616.113|110.859 +639478.107|221625.620|111.484 +639473.063|221630.390|111.594 +639468.021|221635.160|111.786 +639462.977|221639.927|111.844 +639452.894|221649.461|111.749 +639447.807|221654.268|111.447 +639437.724|221663.790|110.758 +639432.680|221668.560|110.829 +639422.539|221678.131|109.673 +639417.491|221682.901|109.515 +639412.453|221687.671|109.899 +639361.966|221735.436|112.194 +639356.955|221740.164|111.676 +639346.866|221749.701|111.813 +639336.832|221759.189|112.197 +639311.902|221782.796|115.462 +639282.066|221811.048|119.177 +639277.079|221815.766|119.400 +639267.176|221825.139|120.445 +639262.171|221829.869|120.369 +639257.276|221834.499|120.634 +639252.277|221839.227|120.695 +639247.324|221843.906|120.802 +639242.420|221848.545|120.896 +639232.548|221857.875|120.908 +639227.589|221862.562|120.963 +639222.672|221867.211|120.930 +639217.759|221871.853|121.024 +639212.845|221876.498|121.094 +639207.929|221881.143|121.164 +639203.043|221885.761|120.969 +639198.059|221890.458|120.098 +639163.721|221922.867|116.876 +639158.807|221927.500|116.016 +639153.946|221932.093|115.855 +639149.075|221936.693|115.638 +639144.140|221941.341|114.663 +639124.426|221959.916|110.457 +639119.461|221964.594|109.381 +639109.728|221973.781|108.509 +639104.854|221978.377|108.064 +639085.573|221996.605|108.198 +639075.990|222005.669|108.713 +639066.507|222014.643|109.807 +639052.548|222027.889|113.489 +639038.283|222041.368|113.526 +639023.960|222054.895|112.816 +639019.169|222059.421|112.639 +639009.781|222068.300|113.133 +639005.047|222072.771|113.099 +639000.305|222077.258|113.401 +638995.650|222081.662|113.636 +638990.929|222086.134|114.126 +638986.357|222090.468|115.059 +638981.736|222094.854|115.955 +638977.116|222099.228|116.519 +638972.422|222103.666|116.510 +638944.109|222130.433|115.794 +638939.473|222134.819|115.998 +638925.635|222147.923|117.199 +638902.662|222169.667|118.772 +638884.490|222186.879|120.744 +638879.936|222191.186|120.707 +638866.266|222204.122|121.317 +638861.709|222208.435|121.667 +638852.592|222217.058|121.759 +638848.078|222221.331|122.103 +638820.823|222247.105|122.018 +638816.242|222251.433|121.798 +638811.648|222255.770|121.545 +638788.670|222277.460|118.534 +638775.005|222290.365|117.226 +638770.455|222294.657|116.605 +638761.448|222303.167|115.907 +638747.811|222316.033|113.855 +638743.407|222320.196|113.886 +638738.996|222324.369|113.880 +638734.281|222328.801|112.072 +638725.228|222337.341|110.493 +638720.662|222341.645|109.554 +638716.176|222345.879|109.036 +638702.676|222358.613|106.671 +638689.515|222371.043|105.693 +638680.721|222379.346|104.891 +638676.433|222383.400|104.797 +638672.153|222387.447|104.751 +638663.342|222395.765|103.541 +638650.372|222408.018|102.575 +638646.209|222411.959|102.718 +638642.118|222415.836|103.218 +638620.590|222436.170|100.316 +638616.512|222440.038|100.724 +638612.443|222443.890|100.947 +638608.386|222447.731|101.026 +638604.302|222451.599|101.212 +638600.217|222455.464|101.182 +638596.075|222459.380|100.935 +638592.018|222463.221|101.060 +638588.028|222467.000|101.264 +638584.020|222470.795|101.410 +638579.957|222474.639|101.325 +638575.949|222478.430|101.282 +638571.877|222482.286|101.182 +638567.820|222486.120|100.959 +638563.867|222489.863|100.962 +638560.075|222493.463|101.880 +638649.955|222406.397|102.270 +638658.483|222398.323|102.751 +638662.948|222394.107|103.849 +638667.255|222390.029|104.230 +638671.492|222386.015|104.291 +638675.918|222381.833|105.022 +638680.151|222377.816|104.870 +638684.556|222373.652|105.549 +638688.902|222369.537|105.723 +638702.060|222357.080|106.708 +638706.495|222352.886|107.412 +638724.500|222335.866|110.527 +638729.127|222331.495|111.575 +638733.647|222327.225|112.343 +638738.320|222322.820|113.944 +638742.718|222318.648|113.898 +638747.113|222314.481|113.837 +638751.639|222310.199|114.224 +638756.175|222305.910|114.953 +638760.765|222301.573|115.718 +638765.252|222297.321|115.980 +638769.848|222292.977|116.562 +638774.371|222288.695|117.068 +638788.109|222275.698|118.519 +638792.687|222271.367|119.150 +638801.947|222262.613|120.497 +638806.549|222258.261|121.058 +638811.139|222253.917|121.576 +638815.721|222249.580|121.774 +638820.335|222245.215|122.195 +638829.491|222236.547|122.673 +638834.124|222232.157|122.996 +638838.706|222227.820|123.014 +638843.195|222223.559|122.496 +638847.694|222219.289|122.051 +638852.269|222214.951|121.777 +638866.025|222201.912|121.271 +638879.832|222188.818|120.637 +638884.523|222184.380|120.911 +638902.836|222166.997|118.628 +638912.175|222158.140|118.150 +638940.186|222131.570|115.977 +638944.916|222127.084|115.757 +638954.466|222118.043|116.419 +638959.294|222113.480|117.001 +638968.773|222104.489|116.559 +638973.513|222099.993|116.163 +638978.283|222095.473|116.013 +638982.980|222091.013|115.315 +638987.649|222086.576|114.413 +638992.353|222082.110|113.776 +638997.147|222077.563|113.508 +639001.887|222073.070|113.194 +639006.721|222068.492|113.273 +639011.515|222063.944|113.054 +639016.319|222059.393|112.919 +639021.187|222054.779|112.965 +639035.784|222040.959|113.557 +639050.344|222027.164|113.627 +639055.178|222022.577|113.057 +639059.863|222018.117|111.548 +639064.551|222013.652|110.067 +639069.379|222009.065|108.972 +639079.053|221999.881|107.942 +639103.516|221976.704|107.924 +639108.454|221972.035|108.576 +639118.385|221962.641|109.582 +639123.362|221957.934|110.259 +639128.342|221953.225|111.030 +639133.436|221948.431|113.160 +639148.407|221934.273|115.800 +639153.299|221929.634|115.748 +639158.277|221924.922|116.202 +639178.241|221906.033|119.156 +639183.207|221901.330|119.686 +639188.172|221896.630|120.241 +639193.155|221891.909|120.411 +639203.046|221882.539|121.155 +639208.020|221877.827|121.274 +639212.973|221873.130|121.097 +639217.881|221868.475|120.972 +639222.837|221863.772|120.939 +639227.796|221859.072|120.884 +639232.770|221854.360|121.173 +639237.717|221849.666|120.997 +639242.621|221845.015|120.942 +639247.571|221840.321|120.832 +639252.518|221835.627|120.735 +639257.465|221830.936|120.664 +639262.449|221826.206|120.363 +639272.315|221816.842|119.659 +639277.301|221812.112|119.421 +639282.227|221807.433|118.951 +639292.127|221798.036|117.918 +639321.848|221769.799|113.880 +639331.797|221760.347|112.657 +639391.833|221703.408|111.197 +639401.816|221693.938|110.935 +639411.837|221684.422|109.902 +639416.876|221679.642|109.682 +639421.875|221674.909|110.097 +639436.953|221660.626|111.063 +639457.015|221641.618|111.898 +639467.092|221632.063|111.862 +639472.084|221627.326|111.673 +639477.126|221622.547|111.633 +639482.170|221617.759|111.219 +639487.166|221613.013|110.804 +639492.213|221608.228|110.576 +639497.261|221603.430|109.993 +639502.269|221598.675|109.268 +639507.325|221593.868|108.503 +639512.330|221589.120|108.296 +639517.344|221584.353|107.473 +639522.404|221579.543|106.964 +639527.488|221574.696|105.324 +639532.508|221569.926|104.733 +639537.574|221565.117|104.364 +639542.588|221560.356|104.178 +639547.611|221555.582|103.675 +639552.683|221550.767|103.221 +639572.906|221531.506|98.152 +639577.963|221526.696|97.225 +639583.026|221521.881|96.223 +639588.021|221517.135|95.802 +639598.132|221507.528|94.634 +639603.078|221502.846|95.576 +639608.025|221498.164|96.552 +639612.997|221493.467|98.006 +639617.950|221488.779|98.746 +639622.927|221484.061|99.005 +639627.950|221479.297|99.234 +639632.937|221474.566|99.249 +639637.920|221469.839|99.399 +639642.849|221465.169|99.728 +639647.811|221460.469|100.295 +639652.761|221455.785|101.084 +639657.674|221451.130|101.669 +639667.538|221441.779|102.227 +639672.463|221437.109|102.602 +639677.380|221432.452|103.154 +639682.351|221427.731|102.837 +639687.304|221423.034|102.861 +639692.160|221418.440|103.681 +639697.003|221413.853|104.626 +639711.648|221399.976|105.854 +639716.489|221395.388|106.217 +639721.378|221390.755|106.558 +639726.215|221386.168|106.945 +639731.049|221381.590|107.415 +639735.883|221377.009|107.899 +639740.726|221372.419|108.256 +639750.370|221363.278|108.963 +639755.214|221358.687|109.362 +639760.011|221354.146|109.789 +639764.821|221349.583|110.033 +639769.658|221344.993|109.975 +639774.550|221340.341|109.323 +639779.345|221335.791|109.298 +639784.130|221331.261|109.926 +639807.871|221308.770|112.569 +639812.626|221304.265|113.066 +639822.194|221295.188|113.035 +639826.881|221290.741|113.273 +639841.045|221277.321|114.550 +639845.648|221272.968|115.657 +639850.342|221268.515|115.916 +639855.018|221264.089|116.382 +639859.733|221259.615|116.467 +639864.445|221255.147|116.632 +639869.090|221250.739|116.943 +639873.799|221246.274|117.153 +639878.478|221241.836|117.242 +639883.138|221237.416|117.488 +639887.790|221233.000|117.415 +639892.505|221228.522|117.242 +639897.217|221224.051|117.135 +639901.865|221219.631|116.745 +639906.617|221215.117|116.358 +639911.311|221210.661|116.083 +639916.060|221206.141|115.376 +639925.433|221197.237|114.684 +639930.108|221192.793|114.294 +639948.945|221174.886|112.301 +639953.563|221170.500|112.109 +639958.266|221166.035|111.691 +639962.929|221161.600|111.222 +639967.705|221157.050|109.951 +639972.357|221152.636|109.987 +639976.862|221148.363|110.380 +639981.598|221143.858|109.521 +639990.962|221134.955|108.302 +639995.628|221130.520|108.018 +640000.240|221126.140|107.787 +640004.848|221121.760|107.278 +640009.564|221117.270|106.409 +640014.255|221112.808|105.738 +640018.842|221108.449|105.458 +640023.566|221103.956|104.641 +640028.303|221099.445|103.462 +640032.774|221095.209|104.007 +640050.901|221078.003|104.211 +640055.503|221073.635|104.041 +640060.145|221069.224|103.644 +640064.720|221064.875|103.364 +640069.195|221060.629|103.425 +640073.785|221056.270|103.407 +640078.257|221052.030|103.532 +640078.668|221048.949|103.660 +640074.084|221053.286|103.599 +640069.494|221057.630|103.571 +640064.918|221061.955|103.483 +640060.368|221066.259|103.269 +640027.867|221097.016|103.574 +640018.226|221106.163|105.397 +640013.413|221110.723|105.833 +640008.683|221115.207|106.403 +640003.806|221119.833|107.320 +639998.999|221124.387|107.811 +639994.235|221128.901|108.052 +639989.410|221133.470|108.369 +639974.865|221147.262|110.408 +639970.150|221151.716|110.079 +639965.297|221156.315|110.417 +639960.421|221160.942|111.313 +639955.507|221165.596|111.804 +639950.701|221170.150|112.255 +639936.110|221183.973|113.270 +639931.227|221188.602|114.056 +639926.301|221193.269|114.471 +639921.412|221197.905|115.023 +639906.773|221211.770|116.224 +639901.878|221216.409|116.571 +639896.970|221221.058|117.025 +639892.090|221225.678|117.293 +639887.180|221230.330|117.458 +639882.334|221234.917|117.498 +639877.436|221239.553|117.595 +639872.620|221244.104|117.412 +639862.942|221253.251|116.675 +639858.032|221257.896|116.537 +639853.216|221262.453|116.452 +639848.345|221267.055|116.007 +639843.517|221271.618|115.614 +639824.099|221289.961|113.358 +639819.213|221294.579|113.133 +639814.290|221299.242|113.316 +639809.413|221303.851|113.047 +639785.057|221326.866|110.649 +639780.216|221331.429|109.515 +639775.291|221336.086|109.359 +639770.359|221340.762|109.862 +639765.400|221345.459|110.173 +639760.490|221350.098|109.905 +639755.637|221354.685|109.554 +639750.733|221359.324|109.280 +639745.853|221363.933|108.683 +639740.946|221368.572|108.479 +639736.057|221373.193|108.030 +639731.174|221377.804|107.521 +639726.288|221382.425|107.086 +639721.402|221387.043|106.662 +639716.510|221391.670|106.318 +639711.575|221396.333|105.924 +639706.695|221400.945|105.443 +639692.019|221414.813|103.864 +639687.103|221419.455|103.205 +639682.220|221424.073|102.800 +639677.252|221428.779|103.044 +639672.347|221433.418|103.010 +639667.428|221438.067|102.480 +639657.559|221447.403|101.974 +639652.639|221452.051|101.435 +639647.777|221456.641|100.709 +639637.951|221465.922|99.420 +639633.013|221470.595|99.292 +639628.072|221475.267|99.207 +639623.131|221479.946|99.203 +639618.200|221484.613|98.993 +639613.274|221489.267|98.615 +639608.385|221493.876|97.420 +639603.502|221498.478|96.006 +639598.577|221503.135|95.665 +639588.649|221512.532|95.713 +639583.693|221517.226|96.171 +639578.704|221521.954|96.357 +639573.796|221526.608|96.985 +639568.700|221531.464|99.200 +639543.789|221555.110|104.446 +639538.820|221559.816|104.632 +639533.858|221564.510|104.531 +639528.884|221569.225|104.986 +639518.926|221578.677|106.915 +639513.955|221583.392|107.713 +639508.990|221588.102|108.326 +639503.982|221592.847|108.698 +639499.017|221597.553|109.414 +639494.060|221602.250|109.835 +639484.051|221611.742|111.094 +639479.101|221616.433|111.368 +639474.102|221621.163|111.578 +639469.155|221625.851|111.780 +639464.160|221630.579|111.859 +639439.242|221654.158|111.530 +639419.256|221673.056|110.338 +639414.255|221677.780|109.704 +639409.262|221682.511|110.030 +639404.227|221687.284|110.646 +639399.240|221692.011|111.228 +639394.247|221696.739|111.399 +639374.182|221715.734|111.889 +639339.176|221748.869|112.453 +639329.148|221758.363|112.941 +639324.168|221763.082|113.499 +639294.325|221791.370|117.342 +639274.427|221810.228|119.457 +639269.435|221814.953|119.640 +639264.457|221819.668|120.094 +639259.471|221824.389|120.384 +639254.527|221829.071|120.570 +639249.543|221833.789|120.908 +639244.593|221838.477|121.003 +639239.634|221843.168|120.963 +639234.645|221847.889|121.280 +639229.673|221852.592|121.067 +639224.708|221857.289|120.981 +639219.703|221862.026|121.055 +639214.741|221866.720|121.079 +639209.779|221871.414|121.155 +639199.897|221880.765|121.225 +639194.926|221885.468|121.189 +639189.952|221890.165|120.472 +639179.988|221899.580|119.610 +639175.065|221904.229|119.076 +639160.118|221918.347|117.211 +639155.092|221923.087|116.163 +639150.200|221927.707|115.611 +639145.256|221932.386|115.644 +639125.279|221951.220|110.932 +639120.268|221955.944|109.865 +639110.441|221965.231|108.917 +639105.540|221969.864|108.634 +639095.796|221979.078|108.265 +639090.913|221983.696|108.277 +639071.534|222002.036|108.524 +639062.045|222011.034|110.006 +639057.360|222015.487|111.560 +639047.933|222024.433|113.611 +639038.332|222033.519|113.645 +639033.580|222038.012|113.721 +639019.154|222051.658|113.349 +639009.607|222060.689|113.300 +639004.901|222065.145|113.456 +639000.186|222069.604|113.560 +638995.413|222074.121|113.611 +638990.716|222078.568|113.889 +638986.022|222083.012|114.212 +638981.364|222087.423|114.861 +638972.080|222096.219|115.992 +638967.368|222100.676|116.245 +638958.062|222109.487|116.912 +638939.232|222127.282|116.163 +638902.409|222162.142|119.076 +638897.886|222166.427|119.838 +638888.824|222175.010|120.957 +638879.659|222183.679|121.125 +638875.041|222188.044|121.006 +638865.985|222196.615|121.673 +638861.428|222200.925|121.670 +638852.352|222209.511|121.993 +638834.362|222226.531|122.932 +638820.707|222239.433|122.326 +638816.126|222243.761|122.088 +638806.967|222252.408|121.128 +638797.896|222260.976|120.503 +638788.642|222269.706|118.924 +638779.529|222278.304|117.702 +638770.436|222286.887|116.690 +638761.451|222295.376|116.096 +638756.986|222299.598|115.971 +638752.441|222303.880|115.190 +638747.890|222308.175|114.392 +638743.468|222312.351|114.041 +638734.570|222320.754|113.651 +638725.347|222329.441|111.142 +638711.881|222342.142|108.985 +638707.455|222346.324|108.536 +638702.938|222350.582|107.671 +638689.762|222363.021|106.308 +638685.397|222367.141|105.781 +638680.971|222371.314|105.242 +638676.668|222375.380|105.059 +638659.276|222391.800|103.190 +638654.929|222395.902|102.657 +638650.702|222399.898|102.718 +638646.523|222403.852|102.760 +638638.004|222411.895|102.178 +638633.934|222415.745|102.556 +638629.832|222419.628|102.785 +638625.687|222423.548|102.837 +638621.413|222427.577|102.334 +638617.052|222431.686|101.215 +638612.754|222435.740|100.410 +638608.740|222439.541|100.892 +638604.671|222443.390|101.133 +638600.623|222447.219|101.258 +638596.606|222451.020|101.523 +638592.543|222454.857|101.392 +638588.382|222458.786|101.063 +638584.407|222462.547|101.337 +638580.402|222466.333|101.502 +638576.422|222470.097|101.550 +638572.426|222473.877|101.541 +638568.411|222477.668|101.483 +638564.388|222481.472|101.395 +638560.380|222485.255|101.176 +638556.442|222488.979|101.258 +638552.626|222492.591|101.648 +638548.624|222496.371|101.264 +638640.021|222407.473|102.352 +638652.710|222395.430|102.456 +638657.017|222391.346|102.809 +638661.495|222387.109|103.748 +638665.747|222383.073|103.882 +638670.224|222378.840|104.867 +638678.841|222370.662|105.040 +638683.260|222366.477|105.574 +638687.656|222362.307|106.019 +638692.072|222358.125|106.577 +638705.389|222345.510|108.238 +638714.307|222337.058|109.259 +638718.837|222332.769|110.018 +638723.387|222328.462|110.926 +638732.614|222319.739|113.212 +638737.231|222315.371|114.300 +638741.584|222311.235|114.023 +638745.961|222307.077|113.892 +638755.120|222298.406|115.312 +638759.643|222294.123|116.016 +638768.687|222285.549|116.705 +638777.782|222276.927|117.491 +638805.446|222250.738|121.164 +638810.079|222246.352|121.661 +638819.220|222237.690|122.320 +638823.792|222233.352|122.249 +638851.178|222207.371|121.932 +638855.790|222202.997|121.942 +638860.319|222198.696|121.442 +638869.588|222189.903|121.536 +638874.139|222185.578|120.902 +638878.820|222181.143|121.134 +638897.233|222163.660|119.899 +638901.775|222159.338|118.961 +638915.677|222146.134|117.781 +638920.380|222141.674|117.647 +638934.331|222128.419|116.300 +638939.076|222123.917|116.211 +638953.390|222110.353|116.989 +638958.096|222105.879|116.327 +638962.845|222101.374|116.376 +638967.575|222096.884|115.910 +638972.288|222092.409|115.718 +638977.042|222087.892|115.096 +638981.691|222083.473|114.413 +638986.485|222078.922|114.130 +638991.219|222074.426|113.785 +638996.041|222069.851|113.767 +639000.808|222065.331|113.712 +639005.605|222060.777|113.532 +639010.421|222056.211|113.505 +639015.210|222051.667|113.294 +639029.739|222037.890|113.773 +639034.686|222033.205|114.187 +639039.441|222028.691|113.767 +639044.278|222024.101|113.672 +639049.073|222019.547|113.203 +639053.898|222014.960|112.609 +639063.286|222006.011|109.326 +639092.489|221978.298|108.308 +639097.387|221973.650|108.012 +639102.322|221968.977|108.640 +639117.217|221954.874|110.225 +639127.218|221945.416|112.316 +639137.200|221935.980|114.355 +639142.247|221931.216|115.547 +639147.127|221926.586|115.352 +639152.102|221921.877|115.736 +639157.116|221917.140|116.659 +639162.102|221912.431|117.927 +639177.025|221898.312|119.625 +639186.943|221888.925|120.549 +639196.886|221879.515|121.292 +639206.810|221870.106|121.216 +639211.708|221865.461|120.963 +639216.674|221860.755|121.021 +639221.584|221856.101|120.960 +639226.552|221851.398|121.094 +639236.470|221841.997|121.164 +639241.417|221837.307|121.030 +639246.370|221832.613|121.006 +639251.314|221827.925|120.841 +639256.252|221823.243|120.585 +639261.232|221818.516|120.253 +639266.164|221813.837|119.845 +639271.099|221809.158|119.537 +639276.094|221804.422|119.518 +639315.691|221766.818|113.910 +639330.581|221752.685|112.377 +639365.553|221719.550|112.798 +639390.492|221695.897|111.776 +639395.528|221691.121|111.426 +639410.493|221676.920|110.094 +639425.529|221662.689|111.344 +639430.570|221657.916|111.706 +639435.514|221653.228|111.688 +639440.553|221648.461|112.103 +639445.591|221643.688|112.069 +639450.535|221639.003|112.157 +639455.573|221634.224|111.923 +639470.600|221619.981|111.676 +639475.593|221615.244|111.478 +639480.588|221610.507|111.283 +639505.707|221586.660|108.241 +639510.715|221581.911|107.845 +639520.767|221572.359|105.546 +639525.778|221567.604|105.266 +639530.844|221562.800|104.800 +639535.855|221558.054|104.793 +639545.916|221548.502|103.324 +639550.942|221543.732|102.800 +639571.190|221524.478|97.378 +639576.247|221519.674|96.494 +639581.236|221514.943|96.241 +639586.336|221510.106|95.680 +639591.368|221505.321|94.433 +639596.348|221500.624|95.863 +639601.366|221495.878|96.287 +639606.300|221491.221|97.536 +639611.235|221486.563|98.728 +639616.249|221481.821|99.197 +639621.239|221477.093|99.155 +639626.219|221472.378|99.338 +639631.248|221467.617|99.514 +639636.183|221462.941|99.673 +639641.206|221458.186|99.987 +639646.104|221453.560|100.901 +639651.060|221448.875|101.578 +639665.907|221434.833|103.202 +639670.860|221430.142|103.169 +639680.833|221420.690|102.791 +639690.629|221411.424|103.858 +639710.234|221392.880|105.842 +639715.175|221388.207|106.150 +639720.052|221383.593|106.671 +639724.935|221378.972|107.119 +639734.661|221369.773|107.994 +639744.378|221360.580|108.963 +639754.110|221351.372|109.823 +639758.926|221346.812|110.018 +639763.779|221342.222|110.377 +639768.658|221337.601|110.402 +639773.532|221332.977|109.993 +639778.388|221328.375|109.798 +639783.155|221323.873|110.655 +639787.882|221319.411|111.914 +639792.686|221314.866|112.368 +639802.299|221305.762|112.697 +639807.030|221301.287|112.968 +639811.836|221296.740|113.413 +639816.607|221292.219|113.297 +639821.401|221287.681|113.459 +639826.089|221283.249|114.191 +639830.856|221278.738|114.617 +639835.522|221274.325|115.126 +639844.947|221265.412|116.199 +639849.684|221260.932|116.528 +639854.380|221256.485|116.793 +639859.102|221252.013|116.858 +639863.787|221247.581|117.275 +639868.474|221243.147|117.659 +639873.208|221238.660|117.668 +639877.896|221234.222|117.693 +639882.639|221229.726|117.662 +639887.357|221225.255|117.464 +639892.033|221220.820|117.248 +639901.481|221211.859|116.473 +639906.218|221207.366|116.236 +639910.942|221202.885|115.745 +639915.639|221198.423|115.096 +639925.024|221189.523|114.379 +639939.082|221176.185|113.090 +639943.766|221171.741|112.727 +639948.424|221167.324|112.249 +639953.078|221162.908|111.822 +639957.787|221158.439|111.365 +639962.457|221154.002|110.512 +639967.111|221149.588|110.173 +639971.656|221145.284|110.283 +639985.661|221131.992|108.515 +639990.242|221127.645|108.131 +639994.845|221123.281|107.960 +639999.417|221118.946|107.698 +640004.083|221114.512|106.827 +640008.759|221110.071|105.936 +640022.539|221096.995|104.397 +640027.184|221092.584|103.812 +640058.615|221062.802|103.577 +640063.084|221058.568|103.675 +640067.576|221054.310|103.629 +640071.984|221050.138|103.830 +640076.400|221045.953|103.693 +640080.856|221041.731|103.928 +640077.833|221041.585|103.623 +640073.364|221045.809|103.730 +640068.850|221050.080|103.849 +640064.455|221054.228|103.553 +640059.959|221058.483|103.602 +640055.442|221062.750|103.486 +640028.099|221088.616|104.425 +640023.673|221092.788|103.550 +640014.248|221101.719|105.245 +640009.551|221106.169|105.879 +640004.903|221110.570|106.241 +640000.139|221115.091|107.387 +639995.439|221119.538|107.814 +639990.791|221123.936|107.927 +639986.137|221128.337|108.085 +639976.703|221137.271|109.021 +639971.884|221141.843|110.103 +639967.184|221146.287|110.015 +639962.521|221150.691|110.018 +639957.687|221155.279|110.963 +639952.901|221159.808|111.557 +639948.143|221164.316|112.017 +639943.340|221168.861|112.444 +639938.600|221173.350|112.816 +639933.744|221177.947|113.352 +639928.941|221182.497|113.895 +639924.131|221187.048|114.157 +639914.530|221196.137|114.974 +639909.659|221200.749|115.419 +639904.813|221205.342|116.099 +639899.918|221209.975|116.412 +639895.111|221214.526|116.830 +639890.228|221219.147|117.107 +639885.391|221223.722|117.421 +639880.514|221228.339|117.702 +639870.840|221237.486|117.680 +639866.018|221242.043|117.577 +639861.174|221246.615|117.223 +639856.383|221251.145|116.894 +639851.482|221255.774|116.690 +639846.681|221260.313|116.464 +639841.804|221264.915|116.059 +639832.170|221274.014|115.096 +639827.317|221278.592|114.495 +639822.437|221283.203|114.212 +639812.681|221292.421|113.624 +639807.773|221297.054|113.160 +639797.980|221306.301|112.529 +639788.138|221315.601|112.014 +639783.267|221320.197|111.231 +639778.388|221324.793|109.996 +639773.462|221329.451|109.856 +639768.466|221334.181|110.515 +639763.483|221338.894|110.515 +639748.609|221352.942|109.204 +639738.733|221362.263|108.256 +639733.743|221366.975|107.848 +639728.800|221371.647|107.500 +639723.819|221376.354|107.046 +639718.884|221381.011|106.570 +639713.941|221385.674|105.595 +639703.943|221395.126|105.223 +639693.964|221404.557|104.653 +639689.020|221409.217|103.690 +639684.037|221413.926|103.346 +639679.096|221418.596|103.068 +639674.064|221423.354|102.779 +639669.010|221428.142|103.632 +639664.036|221432.842|103.205 +639654.041|221442.285|102.349 +639649.082|221446.964|101.666 +639639.167|221456.321|100.212 +639634.141|221461.070|99.874 +639629.112|221465.822|99.630 +639624.125|221470.537|99.517 +639619.096|221475.292|99.322 +639604.087|221489.471|98.103 +639594.148|221498.844|95.997 +639589.152|221503.553|94.948 +639584.089|221508.354|95.689 +639579.039|221513.136|96.171 +639573.997|221517.909|96.436 +639568.980|221522.667|97.430 +639548.781|221541.845|102.550 +639543.740|221546.627|103.498 +639533.727|221556.116|104.781 +639528.704|221560.871|105.214 +639523.742|221565.565|105.223 +639518.722|221570.320|105.687 +639508.724|221579.799|107.369 +639498.742|221589.260|108.774 +639493.731|221594.006|109.350 +639488.766|221598.721|110.475 +639483.810|221603.415|110.911 +639478.808|221608.151|111.292 +639473.809|221612.879|111.429 +639468.860|221617.564|111.594 +639453.918|221631.700|111.880 +639448.923|221636.428|112.090 +639443.976|221641.106|112.072 +639438.983|221645.831|112.164 +639434.039|221650.503|111.904 +639429.089|221655.182|111.609 +639409.143|221674.031|110.448 +639404.196|221678.713|110.716 +639399.252|221683.394|111.133 +639394.263|221688.119|111.609 +639379.385|221702.204|112.310 +639374.435|221706.882|112.255 +639364.551|221716.240|112.776 +639339.798|221739.682|114.136 +639334.884|221744.327|113.706 +639329.907|221749.027|112.795 +639315.036|221763.112|113.700 +639310.150|221767.745|114.218 +639295.376|221781.757|116.257 +639290.463|221786.420|117.199 +639280.612|221795.762|118.333 +639275.683|221800.432|118.875 +639270.812|221805.053|119.561 +639265.865|221809.737|119.656 +639260.946|221814.401|120.372 +639256.002|221819.083|120.518 +639251.073|221823.755|121.024 +639246.166|221828.400|120.978 +639241.216|221833.085|121.097 +639236.312|221837.730|121.192 +639221.523|221851.727|121.079 +639216.613|221856.375|121.146 +639211.644|221861.075|121.079 +639206.777|221865.684|121.116 +639201.863|221870.335|121.204 +639192.024|221879.646|121.253 +639182.152|221888.979|120.207 +639162.346|221907.691|117.848 +639157.408|221912.355|117.251 +639152.409|221917.076|116.510 +639147.420|221921.782|115.334 +639142.510|221926.427|115.190 +639137.614|221931.063|115.233 +639117.568|221949.970|110.435 +639102.770|221963.954|108.924 +639092.891|221973.293|108.152 +639088.051|221977.875|108.067 +639063.837|222000.811|109.347 +639059.034|222005.361|109.756 +639049.740|222014.204|113.087 +639044.934|222018.757|113.450 +639040.173|222023.272|113.809 +639035.439|222027.758|114.453 +639025.789|222036.887|114.108 +639016.075|222046.071|113.325 +639011.265|222050.621|113.389 +639001.759|222059.625|113.688 +638996.952|222064.176|113.825 +638992.252|222068.629|114.075 +638987.500|222073.131|114.288 +638982.724|222077.651|114.349 +638977.975|222082.153|114.614 +638973.284|222086.600|114.986 +638968.627|222091.020|115.638 +638954.530|222104.379|116.705 +638945.172|222113.243|117.056 +638935.687|222122.219|116.909 +638912.458|222144.229|118.065 +638903.278|222152.931|118.948 +638875.952|222178.842|121.661 +638866.720|222187.577|121.469 +638862.145|222191.912|121.655 +638857.622|222196.197|121.884 +638848.471|222204.863|122.045 +638843.957|222209.142|122.365 +638839.498|222213.367|122.761 +638825.794|222226.339|122.621 +638793.866|222256.535|120.250 +638784.573|222265.308|118.461 +638780.038|222269.596|118.104 +638752.950|222295.202|115.458 +638748.393|222299.509|114.873 +638743.961|222303.703|114.706 +638739.502|222307.916|114.163 +638735.140|222312.049|114.410 +638730.575|222316.359|113.343 +638716.898|222329.264|110.463 +638698.936|222346.232|107.616 +638690.118|222354.568|106.775 +638685.744|222358.702|106.446 +638681.307|222362.896|105.812 +638676.948|222367.017|105.333 +638672.659|222371.073|105.223 +638659.535|222383.479|103.779 +638655.088|222387.679|102.992 +638650.878|222391.660|102.882 +638638.046|222403.791|101.922 +638634.017|222407.613|102.462 +638625.623|222415.553|102.285 +638621.483|222419.473|102.364 +638617.353|222423.377|102.282 +638608.706|222431.540|100.651 +638604.674|222435.356|100.816 +638600.595|222439.218|101.026 +638596.560|222443.040|101.212 +638592.518|222446.868|101.371 +638588.480|222450.690|101.337 +638584.374|222454.570|101.261 +638580.299|222458.426|101.096 +638576.355|222462.166|101.520 +638572.386|222465.921|101.624 +638568.329|222469.759|101.590 +638564.361|222473.514|101.502 +638560.353|222477.306|101.486 +638556.366|222481.076|101.349 +638552.367|222484.859|101.176 +638548.542|222488.486|101.742 +638532.308|222503.811|99.231 +638642.082|222397.180|101.724 +638646.535|222392.973|102.712 +638659.446|222380.754|103.967 +638663.774|222376.654|104.224 +638668.130|222372.530|104.641 +638672.486|222368.409|105.068 +638676.820|222364.307|105.406 +638681.218|222360.146|106.083 +638685.616|222355.983|106.543 +638689.993|222351.840|106.918 +638694.395|222347.674|107.171 +638707.806|222334.988|109.134 +638712.299|222330.739|109.686 +638716.904|222326.390|110.853 +638721.461|222322.083|111.798 +638735.110|222309.181|114.169 +638739.530|222304.993|114.233 +638744.059|222300.707|114.645 +638748.564|222296.440|114.949 +638762.103|222283.623|116.129 +638766.636|222279.331|116.400 +638771.275|222274.942|117.004 +638775.786|222270.675|117.482 +638780.434|222266.277|118.196 +638785.036|222261.924|118.964 +638789.718|222257.502|119.909 +638794.321|222253.146|120.448 +638798.908|222248.803|120.936 +638803.568|222244.392|121.582 +638808.094|222240.104|121.759 +638812.673|222235.763|121.975 +638821.908|222227.019|122.652 +638831.031|222218.371|122.734 +638840.163|222209.709|122.362 +638844.677|222205.423|122.048 +638849.285|222201.053|122.018 +638853.885|222196.691|121.951 +638858.518|222192.296|121.795 +638863.093|222187.958|121.609 +638877.007|222174.764|121.426 +638881.652|222170.359|121.454 +638886.221|222166.019|121.009 +638904.625|222148.542|118.845 +638909.297|222144.107|118.488 +638913.885|222139.751|117.894 +638932.636|222121.960|117.135 +638937.290|222117.540|116.748 +638946.885|222108.454|117.409 +638960.949|222095.104|116.114 +638965.713|222090.584|115.922 +638970.395|222086.134|115.087 +638975.095|222081.674|114.797 +638979.837|222077.172|114.492 +638984.665|222072.594|114.495 +638989.426|222068.080|114.343 +638994.200|222063.548|113.950 +638998.955|222059.037|113.794 +639013.423|222045.318|113.550 +639018.258|222040.737|113.755 +639023.192|222036.067|114.437 +639028.069|222031.449|114.639 +639042.523|222017.733|113.794 +639061.612|221999.579|109.753 +639090.788|221971.891|108.003 +639100.712|221962.494|108.832 +639115.626|221948.382|110.615 +639125.639|221938.912|112.316 +639130.641|221934.187|113.419 +639135.737|221929.378|115.190 +639140.672|221924.696|115.090 +639145.643|221919.984|115.419 +639175.675|221891.555|119.814 +639180.637|221886.855|120.305 +639190.638|221877.382|121.241 +639195.603|221872.670|121.222 +639200.595|221867.930|120.963 +639205.515|221863.263|121.009 +639210.526|221858.512|121.036 +639235.361|221834.950|121.085 +639240.363|221830.208|121.109 +639245.307|221825.514|120.988 +639250.244|221820.826|120.728 +639255.231|221816.092|120.497 +639265.137|221806.686|119.695 +639270.172|221801.904|119.592 +639275.095|221797.228|119.052 +639294.943|221778.355|116.047 +639299.906|221773.637|115.166 +639334.881|221740.447|114.474 +639379.888|221697.720|112.456 +639384.914|221692.944|111.810 +639404.867|221674.001|110.868 +639409.859|221669.267|110.929 +639424.886|221655.021|111.685 +639429.879|221650.290|111.981 +639434.868|221645.560|112.295 +639439.855|221640.829|112.246 +639444.844|221636.092|112.060 +639454.827|221626.622|111.953 +639469.847|221612.364|111.490 +639479.793|221602.924|110.911 +639484.837|221598.130|110.435 +639494.798|221588.665|109.177 +639499.806|221583.904|108.463 +639504.826|221579.122|107.180 +639509.843|221574.352|106.257 +639514.851|221569.597|106.013 +639519.767|221564.925|105.571 +639569.822|221517.321|96.796 +639574.781|221512.606|96.006 +639579.764|221507.878|95.918 +639584.772|221503.117|95.232 +639594.657|221493.754|96.171 +639599.552|221489.124|97.170 +639604.496|221484.445|98.100 +639609.440|221479.772|99.088 +639614.362|221475.106|99.402 +639619.294|221470.430|99.520 +639624.216|221465.764|99.847 +639629.206|221461.030|99.840 +639634.122|221456.373|100.310 +639639.042|221451.712|100.755 +639644.004|221447.015|101.346 +639648.863|221442.416|102.041 +639658.689|221433.107|103.129 +639663.624|221428.432|103.346 +639673.503|221419.053|102.864 +639678.428|221414.387|103.297 +639683.332|221409.735|103.303 +639688.228|221405.090|103.462 +639702.892|221391.203|105.123 +639707.732|221386.616|105.458 +639712.615|221381.992|105.876 +639717.482|221377.381|106.500 +639722.313|221372.806|107.009 +639736.916|221358.971|108.354 +639741.720|221354.429|109.250 +639746.573|221349.830|109.515 +639766.028|221331.389|110.783 +639770.969|221326.692|110.121 +639775.794|221322.117|110.259 +639780.622|221317.545|110.926 +639785.368|221313.062|111.990 +639790.214|221308.471|112.474 +639799.833|221299.352|113.203 +639804.646|221294.795|113.596 +639809.474|221290.217|113.809 +639814.314|221285.627|113.947 +639819.115|221281.079|114.468 +639823.903|221276.541|114.681 +639828.658|221272.036|115.202 +639833.453|221267.494|115.830 +639843.008|221258.441|116.544 +639847.754|221253.943|116.769 +639852.558|221249.389|116.943 +639857.310|221244.884|117.159 +639862.034|221240.406|117.616 +639876.369|221226.815|117.754 +639881.127|221222.301|117.604 +639885.915|221217.760|117.232 +639890.691|221213.227|116.982 +639895.541|221208.625|116.568 +639900.293|221204.114|116.175 +639909.943|221194.955|115.126 +639924.235|221181.391|114.050 +639929.023|221176.846|113.581 +639933.827|221172.283|113.008 +639948.052|221158.784|111.804 +639952.810|221154.270|111.359 +639957.638|221149.679|110.408 +639962.320|221145.239|110.210 +639966.925|221140.877|110.585 +639971.777|221136.259|109.219 +639976.535|221131.739|108.561 +639981.193|221127.322|108.308 +639985.847|221122.906|108.091 +639990.550|221118.447|107.912 +639999.889|221109.580|106.747 +640004.635|221105.069|106.031 +640013.977|221096.196|104.699 +640018.665|221091.743|104.126 +640023.207|221087.442|104.230 +640027.721|221083.166|104.516 +640041.360|221070.236|104.534 +640050.553|221061.510|103.647 +640055.064|221057.236|103.751 +640059.530|221053.006|103.867 +640064.004|221048.763|103.928 +640068.543|221044.459|103.928 +640072.959|221040.277|104.099 +640077.482|221035.989|103.934 +640076.827|221034.002|103.916 +640072.264|221038.324|104.001 +640067.732|221042.612|103.910 +640063.160|221046.943|104.086 +640058.627|221051.232|103.745 +640054.040|221055.572|103.751 +640040.251|221068.636|104.373 +640021.899|221086.007|104.272 +640017.354|221090.307|104.181 +640012.636|221094.782|104.611 +640007.893|221099.287|105.540 +640003.212|221103.725|106.101 +639998.472|221108.220|106.756 +639993.757|221112.698|107.619 +639989.084|221117.127|107.887 +639984.427|221121.537|108.076 +639979.815|221125.908|108.311 +639975.118|221130.355|108.466 +639965.593|221139.402|110.530 +639960.927|221143.815|110.213 +639956.318|221148.177|110.222 +639951.508|221152.749|111.359 +639946.750|221157.260|111.801 +639932.614|221170.659|112.990 +639927.868|221175.158|113.453 +639908.854|221193.181|115.123 +639904.097|221197.695|115.849 +639899.302|221202.239|116.135 +639894.596|221206.699|116.510 +639889.795|221211.249|116.900 +639885.056|221215.739|117.205 +639880.267|221220.280|117.562 +639875.546|221224.749|117.757 +639865.993|221233.795|117.967 +639861.290|221238.245|117.687 +639856.548|221242.732|117.339 +639851.851|221247.173|117.034 +639847.096|221251.672|116.809 +639842.353|221256.158|116.516 +639823.288|221274.184|115.004 +639818.515|221278.699|114.605 +639813.751|221283.203|114.160 +639808.907|221287.788|114.014 +639804.119|221292.317|113.834 +639794.515|221301.394|112.785 +639789.650|221305.996|112.444 +639784.804|221310.584|112.450 +639780.027|221315.089|111.167 +639775.245|221319.606|110.472 +639770.332|221324.254|110.182 +639765.391|221328.939|110.798 +639745.832|221347.434|109.381 +639721.344|221370.584|107.095 +639716.473|221375.183|106.442 +639711.520|221379.859|105.629 +639706.647|221384.464|105.007 +639701.639|221389.201|104.955 +639691.730|221398.564|104.050 +639686.810|221403.210|103.422 +639681.830|221407.919|103.023 +639676.810|221412.671|103.257 +639671.771|221417.438|103.096 +639666.779|221422.159|102.940 +639661.765|221426.908|103.169 +639656.720|221431.681|103.145 +639651.731|221436.402|103.047 +639646.744|221441.105|102.035 +639641.730|221445.845|101.502 +639636.762|221450.539|101.029 +639631.715|221455.306|100.246 +639621.659|221464.813|99.755 +639616.627|221469.574|99.621 +639611.549|221474.377|99.511 +639606.544|221479.102|98.774 +639601.500|221483.866|97.920 +639596.507|221488.575|96.890 +639591.551|221493.239|94.887 +639586.488|221498.018|94.284 +639581.349|221502.904|95.829 +639576.259|221507.726|96.088 +639571.175|221512.535|96.204 +639555.862|221527.090|100.581 +639520.252|221560.855|105.485 +639515.235|221565.607|105.866 +639510.126|221570.451|106.302 +639505.067|221575.242|106.644 +639500.001|221580.046|107.439 +639489.827|221589.705|109.521 +639479.720|221599.288|110.844 +639474.675|221604.064|111.045 +639469.628|221608.843|111.368 +639464.583|221613.620|111.578 +639454.500|221623.169|111.859 +639444.418|221632.712|111.981 +639439.376|221637.485|112.182 +639434.341|221642.252|112.258 +639429.299|221647.023|112.258 +639424.304|221651.744|111.837 +639419.262|221656.511|111.758 +639404.178|221670.776|111.072 +639399.185|221675.503|111.200 +639394.147|221680.276|111.642 +639374.140|221699.223|112.578 +639369.153|221703.947|113.026 +639314.505|221755.641|113.901 +639309.574|221760.314|114.428 +639304.636|221764.987|114.852 +639294.821|221774.283|115.949 +639285.025|221783.564|117.373 +639280.151|221788.182|118.116 +639275.244|221792.836|119.073 +639270.392|221797.426|119.195 +639260.617|221806.680|119.921 +639255.749|221811.292|120.680 +639250.839|221815.934|120.625 +639245.989|221820.521|120.856 +639241.094|221825.154|121.085 +639236.187|221829.793|121.122 +639206.932|221857.451|120.997 +639202.071|221862.053|121.106 +639197.191|221866.662|121.018 +639187.465|221875.864|121.362 +639182.591|221880.472|121.378 +639172.776|221889.732|119.957 +639167.884|221894.347|119.208 +639162.937|221899.013|118.406 +639143.332|221917.512|115.532 +639138.440|221922.130|115.035 +639133.652|221926.659|115.251 +639128.617|221931.399|113.712 +639113.864|221945.304|110.740 +639108.963|221949.933|110.353 +639089.459|221968.346|108.293 +639084.576|221972.964|108.265 +639079.815|221977.466|108.573 +639074.929|221982.090|108.552 +639070.162|221986.598|108.805 +639055.885|222000.125|110.801 +639037.049|222017.986|114.642 +639022.769|222031.495|114.968 +639017.874|222036.119|114.648 +639013.100|222040.624|114.154 +639008.248|222045.205|113.858 +638989.277|222063.152|114.480 +638984.537|222067.638|114.812 +638979.801|222072.116|114.797 +638975.067|222076.590|114.834 +638970.364|222081.040|115.105 +638965.670|222085.484|115.483 +638960.982|222089.922|115.925 +638956.322|222094.339|116.574 +638951.695|222098.719|117.144 +638946.949|222103.205|117.181 +638937.543|222112.100|117.226 +638932.849|222116.541|117.327 +638914.250|222134.137|118.567 +638900.339|222147.301|119.396 +638895.813|222151.593|120.110 +638886.632|222160.282|121.076 +638882.064|222164.608|121.539 +638863.623|222182.045|121.881 +638859.024|222186.395|121.926 +638854.458|222190.711|121.896 +638849.895|222195.027|122.207 +638845.317|222199.355|122.128 +638831.689|222212.248|122.661 +638813.489|222229.445|122.292 +638808.911|222233.773|122.076 +638799.712|222242.454|121.201 +638795.165|222246.751|120.951 +638790.544|222251.110|120.308 +638776.712|222264.155|118.168 +638772.125|222268.484|117.540 +638749.527|222289.820|115.568 +638736.110|222302.487|114.465 +638731.766|222306.599|114.806 +638727.176|222310.921|113.636 +638722.574|222315.255|112.414 +638718.059|222319.513|111.685 +638708.915|222328.127|109.737 +638704.438|222332.352|109.024 +638700.073|222336.475|108.893 +638691.133|222344.906|107.409 +638686.811|222348.985|107.064 +638682.358|222353.191|106.580 +638678.091|222357.220|106.549 +638673.699|222361.369|106.165 +638669.328|222365.493|105.659 +638660.675|222373.661|104.897 +638651.823|222382.007|103.276 +638647.507|222386.079|102.660 +638643.142|222390.197|102.084 +638638.912|222394.202|101.895 +638618.076|222413.919|102.239 +638601.287|222429.781|100.798 +638597.203|222433.649|100.977 +638593.173|222437.465|101.179 +638589.144|222441.278|101.410 +638585.139|222445.073|101.514 +638581.100|222448.892|101.502 +638577.050|222452.723|101.447 +638572.959|222456.591|101.243 +638569.015|222460.328|101.672 +638565.040|222464.089|101.767 +638561.072|222467.845|101.681 +638557.070|222471.630|101.685 +638553.114|222475.373|101.681 +638549.121|222479.147|101.544 +638545.116|222482.932|101.145 +638529.062|222498.096|99.374 +638525.093|222501.845|98.999 +638637.635|222393.199|101.907 +638641.948|222389.108|102.242 +638646.251|222385.030|102.800 +638650.628|222380.882|103.480 +638659.443|222372.533|104.958 +638663.820|222368.385|105.473 +638668.130|222364.295|105.677 +638685.577|222347.750|107.232 +638690.012|222343.544|107.662 +638698.970|222335.058|109.024 +638703.271|222330.977|109.109 +638707.779|222326.704|109.750 +638716.871|222318.099|111.743 +638730.620|222305.084|114.623 +638734.951|222300.972|114.498 +638739.380|222296.769|114.636 +638743.897|222292.484|115.004 +638748.436|222288.183|115.492 +638761.969|222275.348|116.428 +638766.520|222271.032|116.830 +638771.089|222266.704|117.623 +638775.642|222262.388|118.077 +638780.284|222257.995|118.781 +638794.116|222244.907|120.808 +638812.517|222227.470|122.143 +638830.787|222210.145|122.463 +638839.873|222201.522|122.149 +638844.475|222197.157|122.082 +638849.112|222192.762|122.237 +638867.491|222175.321|121.753 +638872.060|222170.987|121.573 +638876.696|222166.589|121.548 +638881.341|222162.181|121.600 +638885.910|222157.838|120.832 +638890.506|222153.476|120.588 +638895.082|222149.127|119.884 +638908.971|222135.941|118.985 +638913.647|222131.500|118.686 +638932.334|222113.761|117.565 +638937.004|222109.329|117.315 +638951.217|222095.845|117.089 +638955.822|222091.465|116.428 +638960.531|222086.990|115.815 +638965.222|222082.537|115.437 +638969.956|222078.041|115.035 +638974.702|222073.536|114.764 +638979.456|222069.028|114.943 +638984.214|222064.514|114.779 +638988.957|222060.012|114.523 +639003.295|222046.406|113.968 +639008.108|222041.840|113.953 +639012.969|222037.234|114.398 +639017.803|222032.653|114.642 +639022.662|222028.054|115.093 +639027.508|222023.457|115.059 +639065.651|221987.192|108.960 +639075.341|221977.999|108.674 +639085.055|221968.779|108.189 +639109.771|221945.371|110.536 +639124.791|221931.173|113.950 +639129.784|221926.455|115.050 +639134.716|221921.779|114.864 +639139.617|221917.134|114.919 +639144.649|221912.382|116.056 +639159.545|221898.288|117.799 +639164.562|221893.551|118.936 +639174.514|221884.139|120.280 +639179.558|221879.375|121.289 +639184.474|221874.712|121.271 +639189.403|221870.045|121.390 +639194.344|221865.357|121.024 +639199.309|221860.654|121.064 +639204.223|221855.997|121.033 +639209.240|221851.242|121.222 +639243.956|221818.339|120.933 +639248.940|221813.614|120.646 +639258.849|221804.211|119.948 +639268.758|221794.811|119.226 +639273.732|221790.093|118.772 +639278.694|221785.381|118.004 +639283.623|221780.705|117.577 +639303.487|221761.841|114.712 +639313.497|221752.343|114.005 +639328.481|221738.146|114.166 +639388.609|221681.139|112.264 +639393.638|221676.366|111.773 +639398.624|221671.635|111.298 +639403.663|221666.862|111.429 +639408.658|221662.135|111.874 +639413.697|221657.361|112.005 +639418.686|221652.631|111.850 +639428.714|221643.133|112.234 +639433.747|221638.363|112.316 +639438.736|221633.633|112.106 +639443.726|221628.902|111.984 +639453.754|221619.399|111.941 +639458.749|221614.659|111.423 +639463.788|221609.886|111.496 +639468.780|221605.146|111.112 +639473.776|221600.412|110.960 +639478.772|221595.673|110.688 +639483.770|221590.930|110.301 +639488.775|221586.178|109.579 +639498.803|221576.641|107.272 +639503.814|221571.886|106.741 +639508.825|221567.131|106.314 +639513.830|221562.386|106.266 +639523.879|221552.836|104.522 +639528.844|221548.130|104.379 +639533.874|221543.354|103.617 +639538.857|221538.620|102.916 +639553.878|221524.350|100.538 +639563.924|221514.785|97.436 +639568.944|221510.009|96.210 +639573.927|221505.284|96.137 +639578.917|221500.554|95.918 +639583.861|221495.863|95.704 +639593.733|221486.524|96.954 +639598.638|221481.888|97.759 +639603.533|221477.264|98.789 +639608.440|221472.622|99.484 +639613.375|221467.946|99.578 +639618.297|221463.286|99.941 +639632.967|221449.399|101.108 +639642.797|221440.093|102.151 +639647.662|221435.491|102.742 +639652.517|221430.904|103.541 +639657.434|221426.237|103.199 +639662.344|221421.583|103.044 +639667.245|221416.935|103.041 +639672.085|221412.354|103.321 +639681.930|221403.014|102.803 +639686.755|221398.452|103.370 +639691.586|221393.877|103.839 +639701.270|221384.708|104.470 +639706.138|221380.106|105.159 +639710.911|221375.589|105.796 +639715.736|221371.026|106.382 +639720.533|221366.490|107.348 +639739.797|221348.254|109.012 +639744.588|221343.722|109.481 +639763.772|221325.555|110.652 +639768.680|221320.901|110.377 +639773.444|221316.390|110.685 +639778.235|221311.855|111.231 +639782.905|221307.450|112.624 +639787.733|221302.875|112.770 +639802.013|221289.357|114.002 +639806.789|221284.834|114.273 +639811.586|221280.287|114.352 +639816.360|221275.769|114.706 +639825.815|221266.823|115.858 +639840.040|221253.351|116.583 +639849.574|221244.323|117.129 +639854.313|221239.836|117.464 +639859.007|221235.392|117.787 +639873.321|221221.820|117.687 +639878.085|221217.296|117.482 +639882.904|221212.721|117.248 +639887.637|221208.226|116.958 +639892.459|221203.644|116.358 +639897.306|221199.042|116.010 +639902.070|221194.516|115.550 +639906.904|221189.922|114.980 +639921.229|221176.319|114.032 +639926.057|221171.726|113.240 +639945.165|221153.581|111.633 +639949.990|221148.994|111.027 +639954.812|221144.406|110.146 +639959.512|221139.950|110.182 +639973.820|221126.353|108.579 +639978.599|221121.815|108.171 +639983.275|221117.380|108.149 +639988.005|221112.884|107.762 +639992.830|221108.294|106.784 +639997.564|221103.798|106.458 +640002.319|221099.281|105.702 +640011.804|221090.262|104.419 +640016.583|221085.720|103.894 +640039.602|221063.890|104.492 +640044.305|221059.422|103.995 +640048.907|221055.054|103.833 +640053.470|221050.726|103.937 +640058.042|221046.392|104.016 +640062.626|221042.042|104.025 +640067.174|221037.726|103.986 +640071.706|221033.428|104.053 +640076.269|221029.097|103.961 +640080.817|221024.784|103.980 +640079.491|221023.492|104.031 +640074.931|221027.799|104.053 +640070.262|221032.215|104.153 +640065.656|221036.568|104.211 +640061.115|221040.860|104.190 +640056.500|221045.221|104.038 +640051.891|221049.571|103.849 +640047.298|221053.914|103.903 +640042.686|221058.270|103.785 +640037.913|221062.793|104.394 +640019.390|221080.301|104.409 +640014.800|221084.632|103.955 +640010.024|221089.152|104.428 +640005.287|221093.639|104.979 +640000.502|221098.168|105.559 +639995.735|221102.688|106.397 +639976.654|221120.751|108.439 +639971.954|221125.198|108.634 +639957.638|221138.749|110.198 +639952.947|221143.181|110.076 +639948.076|221147.799|110.935 +639943.303|221152.319|111.484 +639938.487|221156.876|112.002 +639924.168|221170.430|113.188 +639919.422|221174.920|113.675 +639914.582|221179.504|114.187 +639909.808|221184.021|114.578 +639905.029|221188.545|115.056 +639900.210|221193.104|115.480 +639895.446|221197.615|115.891 +639890.643|221202.160|116.272 +639881.032|221211.258|117.147 +639876.247|221215.785|117.464 +639871.440|221220.332|117.586 +639857.157|221233.832|117.720 +639852.411|221238.312|117.394 +639847.666|221242.796|117.098 +639842.899|221247.301|116.998 +639823.839|221265.296|115.800 +639814.336|221274.270|115.074 +639809.587|221278.750|114.453 +639804.786|221283.289|114.383 +639799.958|221287.849|114.114 +639780.738|221305.996|112.718 +639776.077|221310.379|111.219 +639771.228|221314.958|110.728 +639766.409|221319.508|110.457 +639761.587|221324.062|110.240 +639756.680|221328.707|110.490 +639751.846|221333.273|110.454 +639746.938|221337.912|110.195 +639742.104|221342.469|109.603 +639732.433|221351.598|108.539 +639717.781|221365.439|107.012 +639712.919|221370.026|106.199 +639708.082|221374.598|105.732 +639703.157|221379.249|105.135 +639698.286|221383.849|104.492 +639693.397|221388.460|103.398 +639683.555|221397.766|102.864 +639678.572|221402.475|102.453 +639673.609|221407.172|102.538 +639668.595|221411.930|103.449 +639663.670|221416.587|102.995 +639658.717|221421.272|102.980 +639653.678|221426.048|103.632 +639648.692|221430.764|103.458 +639643.736|221435.445|102.748 +639628.852|221449.500|100.834 +639623.823|221454.258|100.642 +639618.901|221458.909|100.173 +639613.868|221463.670|100.057 +639608.851|221468.412|99.612 +639603.837|221473.149|99.085 +639598.833|221477.874|98.368 +639593.843|221482.583|97.280 +639588.902|221487.222|94.833 +639583.788|221492.074|95.662 +639573.702|221501.624|96.046 +639568.621|221506.433|96.128 +639563.558|221511.237|97.082 +639538.040|221535.463|102.578 +639533.005|221540.239|103.315 +639527.930|221545.052|103.885 +639522.812|221549.898|104.269 +639512.708|221559.481|105.888 +639507.594|221564.333|106.570 +639502.534|221569.122|106.784 +639497.477|221573.913|107.137 +639487.297|221583.578|109.338 +639477.141|221593.204|110.530 +639472.090|221597.989|110.899 +639467.046|221602.766|111.039 +639461.953|221607.588|111.225 +639451.818|221617.186|111.642 +639441.684|221626.778|111.987 +639436.642|221631.551|112.060 +639431.607|221636.321|112.340 +639426.517|221641.137|112.426 +639411.298|221655.536|112.145 +639406.257|221660.306|112.033 +639396.119|221669.892|111.493 +639391.081|221674.665|111.972 +639375.917|221689.024|112.566 +639325.649|221736.640|114.736 +639310.604|221750.880|114.474 +639300.576|221760.381|114.934 +639295.654|221765.051|115.708 +639275.811|221783.872|118.189 +639270.824|221788.599|118.403 +639265.911|221793.263|119.265 +639260.992|221797.929|119.927 +639256.045|221802.614|120.034 +639251.128|221807.278|120.792 +639246.172|221811.972|120.732 +639241.277|221816.608|120.963 +639236.330|221821.295|121.088 +639231.402|221825.968|121.594 +639201.933|221853.860|121.012 +639197.020|221858.515|121.070 +639192.152|221863.123|121.158 +639187.233|221867.784|121.164 +639182.426|221872.337|121.478 +639177.534|221876.964|121.286 +639167.662|221886.291|119.695 +639157.811|221895.594|118.016 +639143.058|221909.538|116.425 +639138.123|221914.196|115.367 +639133.234|221918.819|114.898 +639128.394|221923.404|115.090 +639123.551|221927.985|114.666 +639108.616|221942.070|110.701 +639094.046|221955.850|109.609 +639089.172|221960.458|109.140 +639084.302|221965.064|108.725 +639079.471|221969.639|108.762 +639074.643|221974.211|108.860 +639069.882|221978.722|109.137 +639065.047|221983.300|109.198 +639060.259|221987.835|109.250 +639050.838|221996.778|110.917 +639041.529|222005.630|113.611 +639036.860|222010.068|114.815 +639022.592|222023.579|115.224 +639017.822|222028.097|115.111 +639013.052|222032.611|115.047 +639003.435|222041.700|113.916 +638993.931|222050.704|114.239 +638989.234|222055.154|114.486 +638979.856|222064.042|115.148 +638975.101|222068.537|114.971 +638965.719|222077.425|115.711 +638961.031|222081.860|115.757 +638956.350|222086.301|116.214 +638951.701|222090.703|116.605 +638947.084|222095.080|117.220 +638942.414|222099.505|117.440 +638937.735|222103.931|117.641 +638933.038|222108.378|117.717 +638923.830|222117.104|118.537 +638919.121|222121.561|118.574 +638909.858|222130.327|118.772 +638905.268|222134.679|119.351 +638900.665|222139.038|119.506 +638891.488|222147.737|120.411 +638854.891|222182.390|122.146 +638850.346|222186.693|122.228 +638841.147|222195.395|122.097 +638832.052|222204.003|122.377 +638827.495|222208.316|122.487 +638822.990|222212.583|122.621 +638813.867|222221.209|122.292 +638809.314|222225.519|122.204 +638804.781|222229.804|121.963 +638800.206|222234.130|121.792 +638795.637|222238.449|121.393 +638791.013|222242.816|120.698 +638786.441|222247.135|120.344 +638777.188|222255.871|118.787 +638772.643|222260.160|118.098 +638754.410|222277.384|115.843 +638749.954|222281.599|115.760 +638745.443|222285.863|115.401 +638740.926|222290.128|114.770 +638732.086|222298.491|114.593 +638727.667|222302.667|114.285 +638722.951|222307.105|112.721 +638718.434|222311.375|112.209 +638714.045|222315.523|111.859 +638704.990|222324.067|110.079 +638700.448|222328.353|109.295 +638687.204|222340.868|107.970 +638678.411|222349.173|107.049 +638669.685|222357.424|106.534 +638647.803|222378.090|103.849 +638639.055|222386.344|102.315 +638634.776|222390.383|101.925 +638630.509|222394.412|101.590 +638622.172|222402.297|101.657 +638618.054|222406.189|101.828 +638613.815|222410.192|101.471 +638597.343|222425.764|101.444 +638593.125|222429.741|100.804 +638589.089|222433.564|101.212 +638585.118|222437.322|101.453 +638581.301|222440.946|102.617 +638577.053|222444.951|101.688 +638573.035|222448.746|101.791 +638568.985|222452.574|101.517 +638564.952|222456.387|101.578 +638561.029|222460.100|101.889 +638557.049|222463.861|101.980 +638553.068|222467.622|101.855 +638549.118|222471.359|101.870 +638545.137|222475.120|101.776 +638541.220|222478.820|101.745 +638537.139|222482.670|101.041 +638532.917|222486.645|99.792 +638517.028|222501.641|98.210 +638631.472|222391.535|101.608 +638635.715|222387.514|102.078 +638640.021|222383.430|102.401 +638644.392|222379.297|103.273 +638666.192|222358.653|106.281 +638683.532|222342.218|107.585 +638701.198|222325.481|109.332 +638714.786|222312.625|111.914 +638723.735|222304.148|113.035 +638732.864|222295.510|114.678 +638737.283|222291.313|114.507 +638741.779|222287.055|115.026 +638746.305|222282.767|115.465 +638750.798|222278.509|115.751 +638755.343|222274.205|116.336 +638764.404|222265.618|117.156 +638769.022|222261.248|117.946 +638773.612|222256.904|118.610 +638782.823|222248.178|119.915 +638787.441|222243.804|120.543 +638792.035|222239.451|121.049 +638801.224|222230.740|121.884 +638805.821|222226.382|122.201 +638810.359|222222.075|122.207 +638814.907|222217.759|122.283 +638824.087|222209.047|122.408 +638828.635|222204.732|122.557 +638842.363|222191.695|122.100 +638847.002|222187.294|122.280 +638851.644|222182.886|122.185 +638865.507|222169.725|121.942 +638870.164|222165.306|122.030 +638879.357|222156.573|121.457 +638897.855|222138.992|119.945 +638902.506|222134.569|119.461 +638911.849|222125.703|119.113 +638921.233|222116.787|118.827 +638930.557|222107.924|117.802 +638935.263|222103.458|117.821 +638940.024|222098.941|117.894 +638944.721|222094.479|117.510 +638949.370|222090.056|116.769 +638954.112|222085.548|116.397 +638958.794|222081.098|115.937 +638963.564|222076.569|115.824 +638973.031|222067.574|115.013 +638992.103|222049.463|114.358 +638996.995|222044.824|114.559 +639001.756|222040.304|114.495 +639016.368|222026.448|115.233 +639040.371|222003.639|113.499 +639045.062|221999.168|112.060 +639049.838|221994.620|110.960 +639054.541|221990.140|109.618 +639059.384|221985.537|109.167 +639064.209|221980.953|109.033 +639069.101|221976.311|109.113 +639073.981|221971.678|109.088 +639083.735|221962.424|109.006 +639103.510|221943.676|110.545 +639118.382|221929.594|112.670 +639123.527|221924.751|115.486 +639128.416|221920.100|114.812 +639133.268|221915.494|114.837 +639153.254|221896.569|117.711 +639178.214|221872.935|121.463 +639183.066|221868.326|121.173 +639188.035|221863.611|121.210 +639192.994|221858.902|121.134 +639197.953|221854.196|121.091 +639237.613|221816.559|121.198 +639242.545|221811.871|120.850 +639247.504|221807.168|121.012 +639252.475|221802.443|120.515 +639257.392|221797.768|119.851 +639262.385|221793.031|119.771 +639267.341|221788.316|118.939 +639282.233|221774.152|116.854 +639292.188|221764.694|116.035 +639297.168|221759.960|115.684 +639307.187|221750.448|115.193 +639317.221|221740.926|115.248 +639322.250|221736.149|114.977 +639337.308|221721.854|114.672 +639352.359|221707.565|114.151 +639357.382|221702.789|113.621 +639362.417|221698.010|113.493 +639382.497|221678.938|112.435 +639387.581|221674.113|112.316 +639397.603|221664.594|111.844 +639407.729|221654.990|112.404 +639422.841|221640.652|112.566 +639427.830|221635.916|112.404 +639432.908|221631.094|112.313 +639437.947|221626.311|112.048 +639442.936|221621.572|111.837 +639448.023|221616.744|111.661 +639453.062|221611.955|111.347 +639458.103|221607.167|111.051 +639463.141|221602.385|110.999 +639468.183|221597.599|110.975 +639473.179|221592.853|110.637 +639478.272|221588.013|110.149 +639483.328|221583.200|109.134 +639488.339|221578.427|107.939 +639493.396|221573.621|107.329 +639498.450|221568.823|107.043 +639503.457|221564.068|106.750 +639508.471|221559.301|106.071 +639518.566|221549.706|104.379 +639523.586|221544.933|103.800 +639528.655|221540.120|103.346 +639538.665|221530.613|102.169 +639558.821|221511.435|97.807 +639563.884|221506.622|96.707 +639568.865|221501.895|96.622 +639573.866|221497.143|96.040 +639578.862|221492.403|95.753 +639588.774|221483.022|97.113 +639593.739|221478.322|97.622 +639598.680|221473.649|98.627 +639603.578|221469.016|99.523 +639608.547|221464.307|99.877 +639613.475|221459.637|100.087 +639623.320|221450.310|100.801 +639628.231|221445.662|101.425 +639642.898|221431.785|103.538 +639647.799|221427.136|103.455 +639652.682|221422.503|103.666 +639662.496|221413.195|103.437 +639672.338|221403.844|102.111 +639677.246|221399.189|102.114 +639682.071|221394.620|102.654 +639686.899|221390.048|103.178 +639696.533|221380.929|104.541 +639701.349|221376.372|105.239 +639706.116|221371.861|105.964 +639710.950|221367.286|106.430 +639715.748|221362.738|106.720 +639725.291|221353.707|108.070 +639730.138|221349.114|108.396 +639749.249|221331.014|110.277 +639754.055|221326.455|110.033 +639758.871|221321.889|110.237 +639763.635|221317.375|110.505 +639768.387|221312.876|110.960 +639773.163|221308.346|111.133 +639777.842|221303.927|112.398 +639782.542|221299.483|113.401 +639796.819|221285.953|114.120 +639801.531|221281.490|114.553 +639806.262|221277.007|114.803 +639825.095|221259.167|116.348 +639839.232|221245.768|117.016 +639843.911|221241.336|117.424 +639848.638|221236.852|117.409 +639853.350|221232.384|117.555 +639858.072|221227.907|117.626 +639867.484|221218.982|117.708 +639872.196|221214.517|117.537 +639876.966|221209.990|117.290 +639881.706|221205.491|116.918 +639895.913|221192.010|115.730 +639900.735|221187.435|115.221 +639905.441|221182.967|114.882 +639910.220|221178.431|114.386 +639919.693|221169.440|113.407 +639924.466|221164.910|113.054 +639938.637|221151.463|111.825 +639943.391|221146.948|111.377 +639948.207|221142.373|110.505 +639952.889|221137.932|110.280 +639957.540|221133.531|110.670 +639962.277|221129.029|109.759 +639995.387|221097.592|106.016 +640000.139|221093.078|105.260 +640004.821|221088.634|104.699 +640009.576|221084.117|104.004 +640014.163|221079.773|104.416 +640018.747|221075.433|104.565 +640037.255|221057.889|104.547 +640041.891|221053.490|104.156 +640046.481|221049.138|104.068 +640051.096|221044.764|104.160 +640055.649|221040.451|104.330 +640078.293|221019.002|105.357 +640053.278|221040.408|104.358 +640048.673|221044.764|104.178 +640044.040|221049.147|104.169 +640039.376|221053.561|104.077 +640034.685|221058.005|104.486 +640015.916|221075.771|104.525 +640011.246|221080.185|104.278 +640006.558|221084.623|104.483 +640001.782|221089.146|104.672 +639996.920|221093.758|105.427 +639987.246|221102.932|106.753 +639982.388|221107.541|107.613 +639963.054|221125.862|109.332 +639953.349|221135.061|110.295 +639948.613|221139.542|110.170 +639943.718|221144.184|110.865 +639938.841|221148.805|111.444 +639934.013|221153.380|111.709 +639919.416|221167.215|113.197 +639914.518|221171.860|113.758 +639909.680|221176.444|114.261 +639904.798|221181.071|114.764 +639899.951|221185.661|115.020 +639895.084|221190.276|115.468 +639890.192|221194.909|115.757 +639885.367|221199.484|116.339 +639880.456|221204.135|116.836 +639875.631|221208.707|117.068 +639870.748|221213.331|117.418 +639865.881|221217.943|117.668 +639861.019|221222.545|117.882 +639856.252|221227.056|117.729 +639851.400|221231.643|117.479 +639846.578|221236.206|117.440 +639841.722|221240.800|117.257 +639832.084|221249.913|116.769 +639827.278|221254.458|116.635 +639822.450|221259.024|116.303 +639817.670|221263.541|115.949 +639808.039|221272.648|115.123 +639803.165|221277.254|114.800 +639798.346|221281.807|114.437 +639793.536|221286.355|114.002 +639779.022|221300.080|113.200 +639774.282|221304.543|111.511 +639769.478|221309.084|111.082 +639764.608|221313.690|110.871 +639759.758|221318.274|110.426 +639754.948|221322.818|110.070 +639750.084|221327.418|109.826 +639735.533|221341.183|109.323 +639730.708|221345.742|108.677 +639725.877|221350.302|108.079 +639721.012|221354.905|107.945 +639716.205|221359.440|107.089 +639711.371|221364.003|106.574 +639696.799|221377.762|104.748 +639691.934|221382.355|104.041 +639682.257|221391.487|102.489 +639677.377|221396.096|101.983 +639672.445|221400.756|101.575 +639662.512|221410.174|103.458 +639657.629|221414.792|103.129 +639652.663|221419.492|103.370 +639647.695|221424.192|103.696 +639642.806|221428.819|103.550 +639637.868|221433.485|103.376 +639623.195|221447.332|101.236 +639618.264|221451.996|101.020 +639613.353|221456.629|100.340 +639608.422|221461.295|100.176 +639598.549|221470.616|98.960 +639593.697|221475.194|98.027 +639588.753|221479.852|96.930 +639583.867|221484.439|94.400 +639578.914|221489.130|94.723 +639568.932|221498.594|96.280 +639563.939|221503.321|96.573 +639558.931|221508.064|97.311 +639523.803|221541.385|103.681 +639518.783|221546.134|103.961 +639503.707|221560.435|106.549 +639498.690|221565.187|107.195 +639493.682|221569.923|107.278 +639488.675|221574.666|107.656 +639483.621|221579.451|107.930 +639478.604|221584.218|109.362 +639473.550|221589.007|110.115 +639468.549|221593.747|110.673 +639463.501|221598.526|110.963 +639453.510|221607.978|110.990 +639448.465|221612.751|111.188 +639443.424|221617.527|111.767 +639438.428|221622.255|111.877 +639433.390|221627.025|112.139 +639418.324|221641.283|112.642 +639403.251|221655.539|112.551 +639388.127|221669.840|112.331 +639383.140|221674.564|112.727 +639357.961|221698.397|113.715 +639337.871|221717.410|114.693 +639302.701|221750.682|115.590 +639297.699|221755.410|115.486 +639287.680|221764.892|116.086 +639282.724|221769.595|117.104 +639277.753|221774.304|117.738 +639267.798|221783.732|118.683 +639262.823|221788.444|119.174 +639252.875|221797.865|120.204 +639238.010|221811.932|121.024 +639193.472|221854.052|121.164 +639188.507|221858.749|121.180 +639183.594|221863.394|121.292 +639178.683|221868.043|121.454 +639163.830|221882.064|119.759 +639149.008|221896.051|117.610 +639144.128|221900.659|117.153 +639139.175|221905.332|116.382 +639129.299|221914.650|114.837 +639124.508|221919.185|115.007 +639119.643|221923.782|114.928 +639099.865|221942.429|110.667 +639095.000|221947.020|110.234 +639080.400|221960.809|109.027 +639075.578|221965.372|109.134 +639070.796|221969.895|109.207 +639065.950|221974.476|109.119 +639061.180|221978.990|109.314 +639056.336|221983.568|109.308 +639051.648|221988.009|109.890 +639042.309|221996.876|112.319 +639037.670|222001.283|113.813 +639018.806|222019.145|115.611 +639014.027|222023.662|115.434 +639009.275|222028.157|115.507 +638994.962|222041.678|114.559 +638990.304|222046.086|114.715 +638962.199|222072.686|115.861 +638957.553|222077.084|116.230 +638952.878|222081.510|116.355 +638948.288|222085.859|116.800 +638943.603|222090.297|117.278 +638938.988|222094.665|117.555 +638934.386|222099.027|117.927 +638929.801|222103.370|118.479 +638915.915|222116.516|119.174 +638911.294|222120.887|119.162 +638902.074|222129.616|119.674 +638892.957|222138.255|120.613 +638888.352|222142.613|120.799 +638865.568|222164.187|122.219 +638851.852|222177.162|122.143 +638842.650|222185.864|121.935 +638838.145|222190.125|122.012 +638833.615|222194.414|122.237 +638810.938|222215.863|122.027 +638797.292|222228.762|121.329 +638792.766|222233.041|121.177 +638779.053|222245.995|119.781 +638774.478|222250.314|119.162 +638765.294|222258.983|117.824 +638742.617|222280.401|115.373 +638733.726|222288.805|114.882 +638729.331|222292.962|114.931 +638720.096|222301.670|112.767 +638706.767|222314.262|111.399 +638702.225|222318.544|110.579 +638697.638|222322.866|109.292 +638684.412|222335.360|108.046 +638680.029|222339.502|107.634 +638675.695|222343.599|107.482 +638671.385|222347.674|107.476 +638667.066|222351.755|107.189 +638662.598|222355.971|106.193 +638645.240|222372.369|104.702 +638636.324|222380.775|102.626 +638631.972|222384.887|101.874 +638627.704|222388.923|101.541 +638623.440|222392.952|101.252 +638610.977|222404.757|101.724 +638602.574|222412.700|101.157 +638598.480|222416.577|101.261 +638594.371|222420.466|101.319 +638590.260|222424.359|101.377 +638586.084|222428.306|100.944 +638582.073|222432.107|101.246 +638578.089|222435.880|101.447 +638574.087|222439.672|101.584 +638570.118|222443.433|101.883 +638566.043|222447.286|101.745 +638561.938|222451.169|101.489 +638557.996|222454.903|101.715 +638554.068|222458.621|101.806 +638550.093|222462.386|101.916 +638546.121|222466.144|101.843 +638542.162|222469.890|101.843 +638538.218|222473.621|101.697 +638534.277|222477.351|101.575 +638525.764|222485.371|98.795 +638517.775|222492.917|97.829 +638513.794|222496.679|97.420 +638509.862|222500.394|97.021 +638630.201|222384.494|101.788 +638634.535|222380.391|102.462 +638638.939|222376.228|103.233 +638643.447|222371.973|104.531 +638660.720|222355.617|105.866 +638665.216|222351.368|106.997 +638669.553|222347.262|107.366 +638673.876|222343.166|107.451 +638682.501|222334.994|107.820 +638695.803|222322.400|109.219 +638700.293|222318.160|110.262 +638709.251|222309.684|111.563 +638713.564|222305.593|111.258 +638727.380|222292.542|114.800 +638731.791|222288.363|114.834 +638740.749|222279.877|115.431 +638745.232|222275.631|115.647 +638749.801|222271.306|116.361 +638768.019|222254.064|118.321 +638772.610|222249.723|118.991 +638777.179|222245.401|119.582 +638781.812|222241.018|120.280 +638786.384|222236.693|120.646 +638790.971|222232.353|121.131 +638795.537|222228.024|121.244 +638809.219|222215.067|121.884 +638813.834|222210.696|122.067 +638836.627|222189.092|121.914 +638841.235|222184.724|121.896 +638868.960|222158.451|121.996 +638873.590|222154.065|121.917 +638878.214|222149.681|121.832 +638882.822|222145.305|121.335 +638887.370|222140.986|120.780 +638910.620|222118.933|119.308 +638920.075|222109.978|119.525 +638929.399|222101.127|118.528 +638934.056|222096.701|117.845 +638938.766|222092.236|117.537 +638943.459|222087.780|117.141 +638948.150|222083.329|116.739 +638952.908|222078.818|116.464 +638957.590|222074.374|116.016 +638971.815|222060.884|115.404 +638986.125|222047.314|114.855 +638990.893|222042.797|114.834 +638995.766|222038.179|114.892 +639000.539|222033.656|114.962 +639005.441|222029.017|115.303 +639010.235|222024.479|115.596 +639015.078|222019.885|115.510 +639019.925|222015.298|115.879 +639024.750|222010.723|115.681 +639029.532|222006.187|115.522 +639034.314|222001.643|114.501 +639039.011|221997.171|113.133 +639043.711|221992.697|111.780 +639048.454|221988.183|110.374 +639058.061|221979.063|109.149 +639062.947|221974.433|109.149 +639072.722|221965.170|109.241 +639097.338|221941.862|110.780 +639102.270|221937.190|110.987 +639112.209|221927.790|112.316 +639117.266|221923.032|114.587 +639122.252|221918.313|115.020 +639127.126|221913.687|114.718 +639132.058|221909.017|115.129 +639137.087|221904.262|116.214 +639142.028|221899.586|116.815 +639147.008|221894.871|117.376 +639161.922|221880.759|119.576 +639166.866|221876.083|120.475 +639171.901|221871.322|121.381 +639176.760|221866.711|121.164 +639181.731|221861.998|121.213 +639191.573|221852.669|121.323 +639231.149|221815.145|121.500 +639236.120|221810.423|120.994 +639241.012|221805.781|120.741 +639246.020|221801.035|120.981 +639250.924|221796.372|120.049 +639255.868|221791.684|119.966 +639260.784|221787.011|119.323 +639290.481|221758.811|116.254 +639340.258|221711.592|114.809 +639365.227|221687.902|113.834 +639380.227|221673.665|112.804 +639400.231|221654.694|112.657 +639415.294|221640.415|112.749 +639420.283|221635.681|112.557 +639430.305|221626.174|112.252 +639435.344|221621.392|111.975 +639440.288|221616.701|111.758 +639445.326|221611.919|111.408 +639450.367|221607.133|110.981 +639455.314|221602.442|110.917 +639460.353|221597.663|110.902 +639465.397|221592.878|110.670 +639475.404|221583.365|108.872 +639480.457|221578.561|108.098 +639485.462|221573.813|107.823 +639490.513|221569.018|107.500 +639495.520|221564.266|107.137 +639500.528|221559.508|106.738 +639520.709|221540.315|103.657 +639556.136|221506.616|97.622 +639561.193|221501.806|96.704 +639566.231|221497.018|96.344 +639576.326|221487.429|95.400 +639581.355|221482.653|95.421 +639586.281|221478.002|96.920 +639591.277|221473.274|97.814 +639596.214|221468.601|98.847 +639616.103|221449.759|101.072 +639621.065|221445.056|101.532 +639640.849|221426.316|103.891 +639645.839|221421.577|103.867 +639655.797|221412.125|103.562 +639670.790|221397.869|101.331 +639675.697|221393.221|102.084 +639685.509|221383.919|102.907 +639695.186|221374.766|105.034 +639700.090|221370.123|105.848 +639709.777|221360.949|107.119 +639714.684|221356.295|107.268 +639724.359|221347.123|108.107 +639743.738|221328.753|109.612 +639748.551|221324.193|109.862 +639753.336|221319.658|110.414 +639758.109|221315.137|111.130 +639762.913|221310.584|111.487 +639772.520|221301.467|111.728 +639777.184|221297.063|113.151 +639781.981|221292.518|113.657 +639791.515|221283.481|114.291 +639796.273|221278.967|114.696 +639800.986|221274.501|115.135 +639815.208|221261.020|116.120 +639819.990|221256.485|116.397 +639824.665|221252.053|116.766 +639829.399|221247.566|117.080 +639834.151|221243.055|117.223 +639843.575|221234.115|117.427 +639848.269|221229.665|117.729 +639862.479|221216.178|117.629 +639867.197|221211.697|117.385 +639871.928|221207.198|117.037 +639876.643|221202.721|116.879 +639881.337|221198.259|116.504 +639890.816|221189.243|115.492 +639895.516|221184.777|115.166 +639900.229|221180.300|114.782 +639904.956|221175.804|114.297 +639909.677|221171.314|113.880 +639914.408|221166.818|113.432 +639919.105|221162.350|112.898 +639928.474|221153.444|112.106 +639933.156|221148.994|111.776 +639937.890|221144.489|111.097 +639942.660|221139.947|110.188 +639947.302|221135.543|110.243 +639951.871|221131.209|110.496 +639956.617|221126.688|109.506 +639961.277|221122.257|109.143 +639965.919|221117.846|108.942 +639970.595|221113.402|108.549 +639975.258|221108.964|107.906 +639979.952|221104.502|107.430 +639989.371|221095.538|105.720 +639994.080|221091.054|104.909 +639998.707|221086.656|104.675 +640003.364|221082.230|104.275 +640007.912|221077.911|104.284 +640012.438|221073.613|104.455 +640030.625|221056.350|104.519 +640035.213|221051.985|104.092 +640039.715|221047.715|104.227 +640044.235|221043.420|104.263 +640048.737|221039.150|104.434 +640080.052|221009.428|105.534 +640081.192|221005.545|105.034 +640049.648|221035.401|104.705 +640045.149|221039.656|104.480 +640040.571|221043.987|104.437 +640035.938|221048.379|104.763 +640031.418|221052.652|104.425 +640008.341|221074.500|104.425 +640003.782|221078.810|104.123 +639999.039|221083.309|104.717 +639994.360|221087.741|104.918 +639989.557|221092.298|105.653 +639979.958|221101.405|107.168 +639970.369|221110.500|108.427 +639965.633|221114.990|108.866 +639960.872|221119.501|109.167 +639951.194|221128.682|110.627 +639946.488|221133.132|110.268 +639941.776|221137.594|110.335 +639936.786|221142.331|111.380 +639931.983|221146.887|111.837 +639927.146|221151.472|112.191 +639922.351|221156.016|112.624 +639917.471|221160.640|112.996 +639912.631|221165.230|113.465 +639902.923|221174.432|114.352 +639898.049|221179.053|114.812 +639893.133|221183.713|115.245 +639888.293|221188.298|115.498 +639883.367|221192.970|116.089 +639878.499|221197.585|116.632 +639873.580|221202.245|116.830 +639868.764|221206.805|116.995 +639863.832|221211.481|117.360 +639858.998|221216.056|117.342 +639844.331|221229.943|117.555 +639839.500|221234.521|117.620 +639834.590|221239.166|117.519 +639829.750|221243.744|117.254 +639824.861|221248.368|117.007 +639819.987|221252.979|116.644 +639815.110|221257.591|116.327 +639810.242|221262.194|115.925 +639805.405|221266.772|115.721 +639800.492|221271.414|115.324 +639795.630|221276.010|114.898 +639790.726|221280.649|114.462 +639785.822|221285.285|114.014 +639780.893|221289.949|113.870 +639776.062|221294.512|113.172 +639771.246|221299.053|111.813 +639766.296|221303.735|111.405 +639761.334|221308.435|111.682 +639756.418|221313.086|111.469 +639751.504|221317.728|110.682 +639746.640|221322.322|109.893 +639741.684|221327.006|109.597 +639736.779|221331.645|109.311 +639726.876|221341.015|108.774 +639721.963|221345.654|108.006 +639717.019|221350.333|107.692 +639712.100|221354.984|107.055 +639667.711|221396.940|101.011 +639662.661|221401.743|102.507 +639657.595|221406.556|103.593 +639652.602|221411.284|103.495 +639647.646|221415.981|103.638 +639642.626|221420.742|104.089 +639637.631|221425.472|104.126 +639627.691|221434.875|103.337 +639622.802|221439.493|102.312 +639617.791|221444.233|101.846 +639612.829|221448.927|101.310 +639602.920|221458.290|99.886 +639592.974|221467.699|99.255 +639588.018|221472.369|97.417 +639583.108|221477.011|96.704 +639573.135|221486.441|95.552 +639568.139|221491.175|95.845 +639558.099|221500.694|96.597 +639553.082|221505.461|97.713 +639517.981|221538.785|103.495 +639502.997|221553.016|106.061 +639492.966|221562.532|107.208 +639488.001|221567.241|107.835 +639483.045|221571.935|107.881 +639478.040|221576.681|108.213 +639463.071|221590.891|110.377 +639458.118|221595.584|110.780 +639453.123|221600.318|110.822 +639448.127|221605.049|110.862 +639443.180|221609.739|111.222 +639438.184|221614.476|111.664 +639433.237|221619.167|111.965 +639423.258|221628.625|112.493 +639418.314|221633.310|112.609 +639413.325|221638.040|112.877 +639403.391|221647.452|113.197 +639398.399|221652.177|112.929 +639383.424|221666.359|112.919 +639378.480|221671.044|112.968 +639368.504|221680.499|113.398 +639338.685|221708.760|115.090 +639333.741|221713.442|115.059 +639313.835|221732.297|115.705 +639293.953|221751.124|115.785 +639288.975|221755.843|116.318 +639284.035|221760.524|116.510 +639279.100|221765.203|116.891 +639274.138|221769.912|117.738 +639269.209|221774.585|118.238 +639264.271|221779.263|118.519 +639259.318|221783.966|119.476 +639254.393|221788.639|120.006 +639249.449|221793.321|120.177 +639244.535|221797.984|120.911 +639239.595|221802.666|121.137 +639190.165|221849.468|121.390 +639180.268|221858.835|121.256 +639175.391|221863.452|121.210 +639170.469|221868.113|121.234 +639160.496|221877.534|119.592 +639155.494|221882.268|119.232 +639150.584|221886.901|118.287 +639145.603|221891.607|117.723 +639135.667|221900.998|116.397 +639120.783|221915.067|114.687 +639115.983|221919.618|115.355 +639110.829|221924.461|112.471 +639105.936|221929.088|112.127 +639096.049|221938.433|110.923 +639091.129|221943.085|110.390 +639081.333|221952.354|109.887 +639076.374|221957.035|109.061 +639071.567|221961.592|109.326 +639061.862|221970.779|109.503 +639057.001|221975.378|109.280 +639052.182|221979.947|109.500 +639047.436|221984.452|110.445 +639033.345|221997.845|114.187 +639028.673|222002.283|115.340 +639023.927|222006.785|115.836 +639019.148|222011.314|116.022 +639004.673|222025.009|115.550 +638995.114|222034.058|115.291 +638990.313|222038.600|115.026 +638985.571|222043.090|115.282 +638980.788|222047.619|115.193 +638971.346|222056.559|115.733 +638961.933|222065.471|116.169 +638957.227|222069.927|116.403 +638947.864|222078.791|116.952 +638943.191|222083.214|117.129 +638938.555|222087.606|117.589 +638933.907|222092.010|117.988 +638929.250|222096.421|118.321 +638924.699|222100.734|119.110 +638920.081|222105.114|119.756 +638887.751|222135.719|121.177 +638869.423|222153.071|122.259 +638851.084|222170.420|122.268 +638837.346|222183.411|121.893 +638810.164|222209.127|122.274 +638805.616|222213.424|121.902 +638801.047|222217.743|121.731 +638796.472|222222.066|121.259 +638791.949|222226.342|121.100 +638787.487|222230.563|121.030 +638773.798|222243.490|119.531 +638764.709|222252.073|118.403 +638760.189|222256.343|117.869 +638742.105|222273.418|115.708 +638737.682|222277.600|115.556 +638733.220|222281.816|115.212 +638728.895|222285.909|115.352 +638719.657|222294.620|113.124 +638697.418|222315.618|110.420 +638688.509|222324.030|109.222 +638684.129|222328.167|108.780 +638657.995|222352.849|106.333 +638636.470|222373.180|104.199 +638632.045|222377.346|103.093 +638627.604|222381.531|101.925 +638623.346|222385.551|101.401 +638619.127|222389.535|101.322 +638614.924|222393.507|101.078 +638610.828|222397.381|101.118 +638606.768|222401.224|101.563 +638598.358|222409.158|100.511 +638582.137|222424.499|101.035 +638578.165|222428.257|101.276 +638574.191|222432.015|101.526 +638570.201|222435.789|101.724 +638566.247|222439.526|101.867 +638562.227|222443.329|101.956 +638558.237|222447.100|101.959 +638554.220|222450.895|101.654 +638550.364|222454.543|102.041 +638546.432|222458.262|102.114 +638542.540|222461.938|102.160 +638538.572|222465.690|102.111 +638534.734|222469.323|102.395 +638530.714|222473.115|101.950 +638526.696|222476.906|101.535 +638518.141|222484.947|97.972 +638514.072|222488.778|96.975 +638502.361|222499.833|96.122 +638498.515|222503.464|95.884 +638667.993|222340.849|107.436 +638672.437|222336.643|108.122 +638685.592|222324.165|108.972 +638689.963|222320.022|109.387 +638694.425|222315.798|110.039 +638703.353|222307.337|110.911 +638707.870|222303.057|111.658 +638726.057|222285.842|115.010 +638730.517|222281.608|115.062 +638734.945|222277.408|115.233 +638739.408|222273.178|115.605 +638757.616|222255.923|117.659 +638762.097|222251.674|117.982 +638766.748|222247.273|118.717 +638775.901|222238.604|119.991 +638780.470|222234.276|120.351 +638785.113|222229.878|120.872 +638789.636|222225.589|121.003 +638798.768|222216.933|121.564 +638812.471|222203.939|122.164 +638835.310|222182.265|121.789 +638839.907|222177.903|121.701 +638849.197|222169.097|122.207 +638853.778|222164.748|122.100 +638858.448|222160.319|122.256 +638867.713|222151.526|122.152 +638872.319|222147.158|122.271 +638876.949|222142.759|121.926 +638881.564|222138.379|121.475 +638904.786|222116.327|120.213 +638909.422|222111.926|120.024 +638918.856|222102.974|119.802 +638923.465|222098.591|119.101 +638928.067|222094.214|118.369 +638932.764|222089.752|117.991 +638937.434|222085.314|117.424 +638942.198|222080.797|117.568 +638946.913|222076.316|117.007 +638970.565|222053.852|115.321 +638984.955|222040.203|115.510 +638989.750|222035.653|115.337 +639013.978|222012.677|116.138 +639018.764|222008.135|116.004 +639023.570|222003.569|115.669 +639028.346|221999.031|115.044 +639033.110|221994.495|113.864 +639052.109|221976.408|109.478 +639056.967|221971.797|109.204 +639066.745|221962.522|109.338 +639071.686|221957.837|109.478 +639086.475|221943.816|110.246 +639091.382|221939.168|110.643 +639096.354|221934.459|111.271 +639106.296|221925.043|112.676 +639111.267|221920.331|112.883 +639116.348|221915.540|114.962 +639121.277|221910.861|114.764 +639126.215|221906.185|115.233 +639131.211|221901.461|115.852 +639151.126|221882.615|118.625 +639156.104|221877.906|119.284 +639166.138|221868.418|121.137 +639171.112|221863.702|121.210 +639176.035|221859.036|121.234 +639180.957|221854.369|121.256 +639190.854|221844.991|121.509 +639235.468|221802.678|120.860 +639245.386|221793.269|120.274 +639250.378|221788.535|120.171 +639255.304|221783.857|119.680 +639265.207|221774.457|118.863 +639284.992|221755.666|116.507 +639289.975|221750.938|116.217 +639294.968|221746.202|116.220 +639304.950|221736.738|116.135 +639309.927|221732.013|115.766 +639319.907|221722.549|115.632 +639339.801|221703.679|115.013 +639349.811|221694.178|114.419 +639369.705|221675.305|113.657 +639399.679|221646.879|113.291 +639404.669|221642.152|113.310 +639414.645|221632.688|112.865 +639439.590|221609.011|111.252 +639444.582|221604.274|110.920 +639449.578|221599.535|110.707 +639454.570|221594.795|110.451 +639459.566|221590.061|110.429 +639474.526|221575.849|108.421 +639484.478|221566.409|108.195 +639489.491|221561.642|107.241 +639554.618|221499.761|97.024 +639559.660|221494.976|96.573 +639564.655|221490.236|96.131 +639569.660|221485.481|95.503 +639579.588|221476.084|96.506 +639584.550|221471.390|97.070 +639589.503|221466.703|97.801 +639599.332|221457.415|99.920 +639604.289|221452.724|100.508 +639609.187|221448.094|101.358 +639619.047|221438.765|102.629 +639624.003|221434.077|103.269 +639628.904|221429.438|103.964 +639633.824|221424.780|104.352 +639638.816|221420.047|104.275 +639643.733|221415.380|103.931 +639648.747|221410.622|103.553 +639653.681|221405.950|103.775 +639658.711|221401.161|102.416 +639663.719|221396.403|101.535 +639668.641|221391.731|101.285 +639673.579|221387.055|101.569 +639678.459|221382.434|102.032 +639707.671|221354.816|107.189 +639712.572|221350.171|107.390 +639717.485|221345.514|107.454 +639722.359|221340.902|108.046 +639727.172|221336.348|108.796 +639732.076|221331.706|109.033 +639736.923|221327.116|109.387 +639741.754|221322.544|109.957 +639751.388|221313.431|111.423 +639756.226|221308.849|111.917 +639761.108|221304.223|111.932 +639765.976|221299.605|111.612 +639770.829|221295.011|112.017 +639775.541|221290.561|113.398 +639780.332|221286.026|113.944 +639785.148|221281.463|114.245 +639789.943|221276.928|114.806 +639794.798|221272.325|114.718 +639799.522|221267.857|115.522 +639804.335|221263.300|115.910 +639809.112|221258.777|116.199 +639828.183|221240.711|117.391 +639832.980|221236.167|117.583 +639837.751|221231.646|117.604 +639842.569|221227.077|117.620 +639847.276|221222.618|117.808 +639856.880|221213.508|117.434 +639861.635|221209.000|117.290 +639866.402|221204.477|117.043 +639875.963|221195.400|116.416 +639890.262|221181.830|115.297 +639895.084|221177.249|114.779 +639899.787|221172.786|114.486 +639909.351|221163.703|113.486 +639914.088|221159.204|113.026 +639918.806|221154.727|112.712 +639923.503|221150.268|112.246 +639928.225|221145.787|111.978 +639932.915|221141.334|111.600 +639937.658|221136.823|110.865 +639942.434|221132.291|110.301 +639946.982|221127.984|110.701 +639951.770|221123.430|109.747 +639956.434|221119.001|109.356 +639961.088|221114.585|109.058 +639984.567|221092.279|105.952 +639989.145|221087.936|105.684 +639993.824|221083.492|105.107 +639998.512|221079.036|104.480 +640003.068|221074.714|104.428 +640012.151|221066.100|104.275 +640021.134|221057.584|104.516 +640030.189|221049.001|104.696 +640034.661|221044.764|104.714 +640039.148|221040.506|104.635 +640043.610|221036.278|104.745 +640079.095|221002.634|105.126 +640075.184|221003.332|105.174 +640043.930|221032.889|104.952 +640039.483|221037.092|104.711 +640034.944|221041.384|104.742 +640030.467|221045.621|104.748 +640025.938|221049.903|104.763 +640021.460|221054.131|104.169 +640003.199|221071.410|104.522 +639998.682|221075.677|104.263 +639994.007|221080.106|104.742 +639989.340|221084.525|105.199 +639984.640|221088.981|105.912 +639979.967|221093.407|106.147 +639970.567|221102.320|107.707 +639961.100|221111.290|108.872 +639956.391|221115.749|109.152 +639951.734|221120.160|109.448 +639942.261|221129.133|110.204 +639937.631|221133.510|110.021 +639932.760|221138.134|111.267 +639928.002|221142.642|111.734 +639913.698|221156.187|112.785 +639908.900|221160.732|113.297 +639899.339|221169.787|114.157 +639894.465|221174.405|114.614 +639889.707|221178.910|114.953 +639884.845|221183.515|115.358 +639875.232|221192.620|116.184 +639870.340|221197.253|116.541 +639865.509|221201.828|116.836 +639851.040|221215.519|117.245 +639846.160|221220.143|117.668 +639841.347|221224.694|117.513 +639836.467|221229.312|117.562 +639831.655|221233.862|117.446 +639817.039|221247.685|117.114 +639812.211|221252.245|116.754 +639807.395|221256.796|116.330 +639802.531|221261.389|115.891 +639792.799|221270.585|115.138 +639787.943|221275.175|114.684 +639783.036|221279.811|114.267 +639778.165|221284.414|113.983 +639773.273|221289.034|113.435 +639768.457|221293.570|112.057 +639763.507|221298.245|111.615 +639758.576|221302.918|112.090 +639748.651|221312.300|111.609 +639743.723|221316.954|111.014 +639738.818|221321.584|110.146 +639733.951|221326.177|109.381 +639728.967|221330.886|108.890 +639724.026|221335.553|108.448 +639719.052|221340.250|107.854 +639714.139|221344.889|107.110 +639709.173|221349.586|107.043 +639694.232|221363.704|105.613 +639689.307|221368.350|104.403 +639684.396|221372.973|102.888 +639679.370|221377.722|102.398 +639674.390|221382.428|101.965 +639664.429|221391.840|101.066 +639659.326|221396.681|101.840 +639649.155|221406.334|103.864 +639644.160|221411.061|103.812 +639639.088|221415.865|104.297 +639634.016|221420.672|104.842 +639628.983|221425.433|104.711 +639618.974|221434.884|103.431 +639614.033|221439.548|102.483 +639609.031|221444.272|101.785 +639603.993|221449.027|100.791 +639599.043|221453.700|99.956 +639594.023|221458.427|98.496 +639589.024|221463.146|97.625 +639584.010|221467.885|97.103 +639578.990|221472.628|96.713 +639563.875|221486.917|95.741 +639558.815|221491.718|96.546 +639553.765|221496.503|97.067 +639548.647|221501.364|98.411 +639538.537|221510.960|100.465 +639533.456|221515.772|100.825 +639528.427|221520.539|101.258 +639523.385|221525.322|102.151 +639518.313|221530.125|102.495 +639503.229|221544.427|104.519 +639493.170|221553.973|106.638 +639488.114|221558.765|106.942 +639483.094|221563.529|107.970 +639478.083|221568.277|108.512 +639473.081|221573.008|108.411 +639468.076|221577.751|108.728 +639448.066|221596.706|110.423 +639443.067|221601.443|110.737 +639438.069|221606.176|111.185 +639433.073|221610.910|111.606 +639428.080|221615.643|111.950 +639413.151|221629.780|112.877 +639408.158|221634.507|113.026 +639398.222|221643.914|113.425 +639393.226|221648.638|113.124 +639388.240|221653.362|113.520 +639338.725|221700.244|115.215 +639318.962|221718.968|115.745 +639314.024|221723.646|115.983 +639309.071|221728.334|115.806 +639304.185|221732.967|116.169 +639284.455|221751.655|116.544 +639279.514|221756.336|116.763 +639274.574|221761.018|116.992 +639254.975|221779.611|119.427 +639245.212|221788.871|120.341 +639240.344|221793.491|121.033 +639235.443|221798.134|121.131 +639230.484|221802.828|121.039 +639225.647|221807.415|121.430 +639186.376|221844.600|121.100 +639181.512|221849.206|121.222 +639176.592|221853.866|121.213 +639166.836|221863.102|121.137 +639156.951|221872.450|120.027 +639151.952|221877.171|119.107 +639132.213|221895.822|116.175 +639127.196|221900.559|115.260 +639122.329|221905.167|115.044 +639117.400|221909.828|114.736 +639112.523|221914.452|115.035 +639107.497|221919.185|113.093 +639087.789|221937.818|110.877 +639063.402|221960.900|109.850 +639053.654|221970.126|109.609 +639048.823|221974.702|109.710 +639044.071|221979.216|110.573 +639039.331|221983.718|111.588 +639034.671|221988.149|112.855 +639029.974|221992.618|114.233 +639010.945|222010.662|116.275 +639006.191|222015.167|116.281 +639001.332|222019.766|116.272 +638996.528|222024.314|115.894 +638991.694|222028.886|115.733 +638972.589|222046.979|115.586 +638948.955|222069.382|116.650 +638934.971|222082.644|117.799 +638930.262|222087.109|118.092 +638925.626|222091.507|118.583 +638920.971|222095.921|118.951 +638916.390|222100.270|119.506 +638874.861|222139.644|122.015 +638861.057|222152.726|122.432 +638847.228|222165.824|122.207 +638842.586|222170.219|121.978 +638837.980|222174.575|121.689 +638833.417|222178.897|121.695 +638828.900|222183.182|121.993 +638824.362|222187.477|121.878 +638819.832|222191.771|122.134 +638810.771|222200.355|122.094 +638806.232|222204.655|122.045 +638792.592|222217.564|121.341 +638778.986|222230.441|120.445 +638774.460|222234.727|120.049 +638769.869|222239.064|119.619 +638756.230|222251.963|117.778 +638738.179|222269.035|115.797 +638733.653|222273.315|115.358 +638729.246|222277.487|115.312 +638715.700|222290.289|113.063 +638711.241|222294.507|112.572 +638697.866|222307.154|110.984 +638693.425|222311.354|110.688 +638688.924|222315.606|109.585 +638684.492|222319.797|109.116 +638675.686|222328.127|108.290 +638671.379|222332.205|108.256 +638662.671|222340.441|107.278 +638658.282|222344.592|106.653 +638653.975|222348.668|106.452 +638636.696|222365.011|104.626 +638627.863|222373.347|102.712 +638623.495|222377.471|101.898 +638619.216|222381.516|101.273 +638615.003|222385.503|101.221 +638610.828|222389.456|101.118 +638606.597|222393.458|100.779 +638602.494|222397.344|100.795 +638589.991|222409.170|100.106 +638585.922|222413.029|100.343 +638581.945|222416.800|100.764 +638573.941|222424.386|101.209 +638569.966|222428.150|101.468 +638566.001|222431.912|101.764 +638561.974|222435.725|101.809 +638558.006|222439.483|101.904 +638554.028|222443.250|101.977 +638550.041|222447.024|101.788 +638546.039|222450.812|101.788 +638542.165|222454.485|102.108 +638538.230|222458.210|102.191 +638534.249|222461.980|102.093 +638530.336|222465.684|102.078 +638526.447|222469.369|102.169 +638522.530|222473.075|101.944 +638518.327|222477.034|100.569 +638509.545|222485.291|96.155 +638494.004|222499.989|94.933 +638490.041|222503.735|94.461 +638626.897|222371.790|102.596 +638631.325|222367.602|103.739 +638635.693|222363.472|104.614 +638640.067|222359.336|105.293 +638644.426|222355.209|105.943 +638648.733|222351.124|106.116 +638653.067|222347.019|106.439 +638657.413|222342.901|106.833 +638661.824|222338.725|107.326 +638666.131|222334.641|107.589 +638670.526|222330.480|108.034 +638674.891|222326.344|108.369 +638679.292|222322.174|108.908 +638683.769|222317.934|109.332 +638688.180|222313.756|109.704 +638697.062|222305.343|110.566 +638701.564|222301.085|111.478 +638719.562|222284.047|113.761 +638728.679|222275.418|115.428 +638733.132|222271.196|115.458 +638737.640|222266.926|115.818 +638742.136|222262.662|116.141 +638751.210|222254.073|117.278 +638764.965|222241.052|119.171 +638769.488|222236.763|119.515 +638774.088|222232.407|120.015 +638778.657|222228.079|120.384 +638787.770|222219.438|121.052 +638792.373|222215.076|121.396 +638796.954|222210.736|121.643 +638801.477|222206.448|121.856 +638806.083|222202.080|121.999 +638810.643|222197.755|122.185 +638819.747|222189.114|121.926 +638824.301|222184.791|121.838 +638828.900|222180.433|122.045 +638833.478|222176.080|121.539 +638838.032|222171.758|121.512 +638842.695|222167.339|121.881 +638851.949|222158.560|121.914 +638865.897|222145.332|122.396 +638907.588|222105.751|120.241 +638912.178|222101.389|119.747 +638916.860|222096.939|119.238 +638921.514|222092.516|118.878 +638926.153|222088.109|118.424 +638930.890|222083.613|118.354 +638963.912|222052.249|115.775 +638968.657|222047.744|115.529 +638978.323|222038.582|116.132 +638983.059|222034.083|115.864 +638987.866|222029.523|115.803 +638997.546|222020.345|116.333 +639002.411|222015.731|116.412 +639007.212|222011.177|116.397 +639012.064|222006.575|116.431 +639016.883|222001.999|116.175 +639021.604|221997.510|115.504 +639040.508|221979.508|110.716 +639050.143|221970.355|109.850 +639055.010|221965.734|109.679 +639059.915|221961.086|109.905 +639064.801|221956.450|109.963 +639069.711|221951.790|109.823 +639074.649|221947.114|110.493 +639079.565|221942.448|110.457 +639084.457|221937.812|110.701 +639094.409|221928.390|112.060 +639109.500|221914.116|115.245 +639114.404|221909.459|114.724 +639119.259|221904.850|114.794 +639124.292|221900.080|115.309 +639129.248|221895.380|115.495 +639139.279|221885.889|117.473 +639154.223|221871.737|119.540 +639164.227|221862.264|121.073 +639169.155|221857.588|121.207 +639174.114|221852.882|121.082 +639179.083|221848.167|121.180 +639183.993|221843.506|121.106 +639188.964|221838.791|121.274 +639223.690|221805.833|121.180 +639228.628|221801.142|120.957 +639233.636|221796.393|121.186 +639238.574|221791.705|120.991 +639243.536|221786.987|120.360 +639258.456|221772.811|119.058 +639268.337|221763.417|117.790 +639273.299|221758.695|117.092 +639278.280|221753.968|116.775 +639283.273|221749.228|116.806 +639288.265|221744.489|116.909 +639313.231|221720.787|116.096 +639318.212|221716.057|115.891 +639323.204|221711.320|116.108 +639358.113|221678.167|114.245 +639363.094|221673.437|114.072 +639368.077|221668.706|113.806 +639388.066|221649.732|113.578 +639393.053|221644.999|113.496 +639398.039|221640.268|113.489 +639408.055|221630.755|113.038 +639413.041|221626.019|112.746 +639428.044|221611.769|111.929 +639433.033|221607.027|111.380 +639438.023|221602.284|111.033 +639443.015|221597.544|110.707 +639453.001|221588.056|110.012 +639462.995|221578.558|109.039 +639467.945|221573.858|108.750 +639472.987|221569.073|108.829 +639477.946|221564.358|108.064 +639487.964|221554.827|106.564 +639512.864|221531.153|103.145 +639522.870|221521.640|101.721 +639527.857|221516.894|100.895 +639537.815|221507.433|100.063 +639552.814|221493.162|97.423 +639557.825|221488.392|96.363 +639567.795|221478.928|96.064 +639572.711|221474.265|96.466 +639577.682|221469.552|96.725 +639582.617|221464.886|97.893 +639592.575|221455.425|96.997 +639597.382|221450.905|99.917 +639607.190|221441.627|102.212 +639612.058|221437.012|102.632 +639616.999|221432.336|103.480 +639631.718|221418.392|105.208 +639636.646|221413.707|104.534 +639641.614|221408.982|104.025 +639646.510|221404.340|104.083 +639656.498|221394.824|101.681 +639661.481|221390.088|101.160 +639666.392|221385.427|101.093 +639671.259|221380.819|101.712 +639685.835|221367.021|104.007 +639690.733|221362.382|104.851 +639695.512|221357.861|106.037 +639700.365|221353.271|106.863 +639705.254|221348.632|107.165 +639710.146|221343.987|106.842 +639715.004|221339.387|107.622 +639719.872|221334.776|108.265 +639724.706|221330.195|108.735 +639729.522|221325.635|109.430 +639744.006|221311.922|111.706 +639753.702|221302.729|112.404 +639758.606|221298.069|112.136 +639763.516|221293.405|111.847 +639768.302|221288.873|112.426 +639773.057|221284.380|113.861 +639777.863|221279.823|114.218 +639787.529|221270.664|114.971 +639792.290|221266.147|115.334 +639797.136|221261.557|115.858 +639801.857|221257.082|116.184 +639806.722|221252.467|116.516 +639825.845|221234.335|117.638 +639830.633|221229.796|117.885 +639835.492|221225.179|117.501 +639840.259|221220.652|117.543 +639845.090|221216.068|117.491 +639849.894|221211.505|117.251 +639864.311|221197.820|116.714 +639869.145|221193.226|116.348 +639873.930|221188.688|116.047 +639878.795|221184.064|115.495 +639883.583|221179.519|115.205 +639888.338|221175.002|114.828 +639897.973|221165.852|113.956 +639902.746|221161.317|113.508 +639907.568|221156.739|113.127 +639912.299|221152.246|112.715 +639921.851|221143.169|111.648 +639926.594|221138.673|111.612 +639931.361|221134.141|111.039 +639936.174|221129.566|110.173 +639940.813|221125.167|110.265 +639964.417|221102.749|108.125 +639969.184|221098.217|107.457 +639978.639|221089.228|105.784 +639983.287|221084.815|105.687 +639987.965|221080.368|105.086 +639992.699|221075.872|104.486 +639997.305|221071.501|104.422 +640024.645|221045.572|104.803 +640033.670|221037.013|104.912 +640038.187|221032.731|104.982 +640042.686|221028.466|105.171 +640074.002|220998.757|105.098 +640075.026|220995.106|105.083 +640070.469|220999.419|105.339 +640065.860|221003.793|105.940 +640038.742|221029.466|105.104 +640034.228|221033.742|105.007 +640029.705|221038.025|104.976 +640025.121|221042.365|105.022 +640002.315|221063.960|104.605 +639997.725|221068.307|104.501 +639993.187|221072.598|104.083 +639988.484|221077.061|104.772 +639983.765|221081.541|105.607 +639974.466|221090.359|106.110 +639969.665|221094.922|107.259 +639964.953|221099.390|107.832 +639955.553|221108.312|108.939 +639950.832|221112.786|109.329 +639941.438|221121.696|110.216 +639936.786|221126.100|110.179 +639932.120|221130.523|110.298 +639927.319|221135.080|111.063 +639922.616|221139.539|111.499 +639917.883|221144.028|111.828 +639903.645|221157.534|113.294 +639898.872|221162.060|113.678 +639889.320|221171.119|114.599 +639879.825|221180.120|115.160 +639870.255|221189.200|116.099 +639865.466|221193.738|116.434 +639846.291|221211.914|117.424 +639841.487|221216.467|117.613 +639836.711|221220.991|117.601 +639831.917|221225.532|117.754 +639803.156|221252.754|116.477 +639793.521|221261.874|115.751 +639788.720|221266.409|115.212 +639774.236|221280.116|114.087 +639769.411|221284.673|113.340 +639764.647|221289.165|111.953 +639759.764|221293.789|111.883 +639754.781|221298.517|112.414 +639735.252|221316.988|110.701 +639730.388|221321.587|109.957 +639725.535|221326.171|109.067 +639720.613|221330.826|108.442 +639715.684|221335.486|107.915 +639710.768|221340.131|107.220 +639705.812|221344.819|107.015 +639700.843|221349.525|107.061 +639695.890|221354.201|106.229 +639690.986|221358.834|105.382 +639671.247|221377.472|101.694 +639666.273|221382.172|101.154 +639661.244|221386.939|101.477 +639651.173|221396.480|101.770 +639645.979|221401.433|104.245 +639640.941|221406.197|104.117 +639635.936|221410.942|104.339 +639630.837|221415.783|105.379 +639625.765|221420.592|106.025 +639610.823|221434.699|102.879 +639605.813|221439.432|102.346 +639600.789|221444.172|101.108 +639595.818|221448.856|99.700 +639590.877|221453.493|96.524 +639585.842|221458.260|96.445 +639575.723|221467.839|96.472 +639570.596|221472.692|96.411 +639565.576|221477.441|96.070 +639555.405|221487.078|96.466 +639534.995|221506.452|100.179 +639529.914|221511.271|100.721 +639524.836|221516.083|101.087 +639509.602|221530.537|103.087 +639489.272|221549.822|105.872 +639484.252|221554.589|106.866 +639479.140|221559.441|107.756 +639474.084|221564.239|108.424 +639469.027|221569.033|108.985 +639463.983|221573.809|108.890 +639458.932|221578.595|109.234 +639438.748|221597.727|110.734 +639433.704|221602.506|111.106 +639428.662|221607.286|111.508 +639418.586|221616.838|112.429 +639413.547|221621.611|112.734 +639408.558|221626.339|112.889 +639398.484|221635.885|113.493 +639393.495|221640.610|113.575 +639388.456|221645.380|113.532 +639383.467|221650.107|113.657 +639373.436|221659.602|113.584 +639313.777|221716.100|116.013 +639308.839|221720.775|116.306 +639303.895|221725.454|116.382 +639289.128|221739.432|117.251 +639284.181|221744.114|117.226 +639279.222|221748.802|117.016 +639274.281|221753.480|117.199 +639269.386|221758.113|117.434 +639264.503|221762.740|117.936 +639249.836|221776.642|119.973 +639240.061|221785.902|120.640 +639235.227|221790.480|121.131 +639230.329|221795.116|121.295 +639225.406|221799.770|121.006 +639191.281|221832.058|121.417 +639186.389|221836.679|121.113 +639181.567|221841.245|121.122 +639176.699|221845.850|121.201 +639171.837|221850.450|121.402 +639166.945|221855.076|121.152 +639162.102|221859.655|120.985 +639157.222|221864.269|120.991 +639142.442|221878.211|118.040 +639137.563|221882.822|117.522 +639132.591|221887.510|116.550 +639127.754|221892.082|116.065 +639122.832|221896.734|115.769 +639117.985|221901.312|115.257 +639113.047|221905.978|114.831 +639108.262|221910.507|115.120 +639103.248|221915.226|113.358 +639093.470|221924.461|112.231 +639088.581|221929.082|112.005 +639083.671|221933.715|111.048 +639078.806|221938.311|110.652 +639054.623|221961.178|109.966 +639049.786|221965.756|109.999 +639035.592|221979.207|111.856 +639021.510|221992.575|115.230 +639016.825|221997.016|115.852 +639012.040|222001.551|116.431 +639007.355|222005.986|116.635 +639002.505|222010.574|116.675 +638992.962|222019.599|116.522 +638978.701|222033.089|116.467 +638969.118|222042.151|116.208 +638959.617|222051.139|116.330 +638954.926|222055.580|116.684 +638940.820|222068.934|117.604 +638936.269|222073.250|118.339 +638926.839|222082.171|118.506 +638922.197|222086.569|118.958 +638917.515|222090.998|119.150 +638912.915|222095.357|119.582 +638908.249|222099.773|119.921 +638903.686|222104.102|120.649 +638899.013|222108.524|120.948 +638889.830|222117.220|121.725 +638880.512|222126.035|121.637 +638871.267|222134.783|122.128 +638857.503|222147.807|122.533 +638852.894|222152.166|122.466 +638848.212|222156.591|122.259 +638834.277|222169.762|121.548 +638825.218|222178.336|122.030 +638820.652|222182.655|122.051 +638816.047|222187.007|121.868 +638811.508|222191.299|121.817 +638806.921|222195.639|121.771 +638802.389|222199.925|121.789 +638797.875|222204.192|121.652 +638793.287|222208.526|121.387 +638788.700|222212.864|121.137 +638779.611|222221.453|120.637 +638775.039|222225.772|120.271 +638765.895|222234.404|119.043 +638743.172|222255.862|116.647 +638738.664|222260.120|116.272 +638734.110|222264.418|115.675 +638729.681|222268.606|115.498 +638725.274|222272.775|115.462 +638716.084|222281.435|113.224 +638702.777|222294.008|112.426 +638693.785|222302.490|110.957 +638684.894|222310.884|109.841 +638680.502|222315.036|109.585 +638671.669|222323.372|108.393 +638667.210|222327.578|107.625 +638654.070|222339.990|106.372 +638649.833|222343.998|106.525 +638645.456|222348.125|105.787 +638641.100|222352.240|105.400 +638636.696|222356.394|104.574 +638632.420|222360.433|104.123 +638619.380|222372.753|102.157 +638615.122|222376.776|101.645 +638610.870|222380.797|101.176 +638602.378|222388.825|100.356 +638598.191|222392.784|100.002 +638589.982|222400.557|100.109 +638569.801|222419.674|100.974 +638565.790|222423.475|101.294 +638561.874|222427.190|101.578 +638557.893|222430.961|101.837 +638553.943|222434.704|102.011 +638549.986|222438.450|102.166 +638545.981|222442.241|102.142 +638541.985|222446.021|101.944 +638538.059|222449.739|102.044 +638534.195|222453.400|102.209 +638530.305|222457.085|102.279 +638526.395|222460.785|102.282 +638522.463|222464.507|102.197 +638518.577|222468.186|102.105 +638514.636|222471.914|102.023 +638510.280|222476.007|99.840 +638505.796|222480.216|97.167 +638501.456|222484.298|95.104 +638497.548|222487.995|94.805 +638493.690|222491.640|94.522 +638489.806|222495.313|94.147 +638486.060|222498.858|94.129 +638625.726|222364.825|103.510 +638634.239|222356.745|103.977 +638642.987|222348.451|105.415 +638651.625|222340.255|106.156 +638655.984|222336.119|106.641 +638660.382|222331.952|107.320 +638669.148|222323.634|108.131 +638678.006|222315.234|109.231 +638682.379|222311.083|109.667 +638691.304|222302.618|110.746 +638700.317|222294.075|112.106 +638718.218|222277.094|113.959 +638727.347|222268.447|115.711 +638731.772|222264.241|115.623 +638736.247|222259.989|115.824 +638740.813|222255.658|116.263 +638763.557|222234.084|118.638 +638777.325|222221.041|120.311 +638781.876|222216.728|120.604 +638786.484|222212.358|120.985 +638791.065|222208.011|121.225 +638800.170|222199.376|121.713 +638804.751|222195.027|121.722 +638809.347|222190.668|121.838 +638813.880|222186.358|121.603 +638832.213|222168.957|121.436 +638836.807|222164.595|121.366 +638841.513|222160.136|122.018 +638846.140|222155.747|122.195 +638855.439|222146.926|122.600 +638864.766|222138.075|122.615 +638869.414|222133.658|122.411 +638878.598|222124.935|121.929 +638901.866|222102.831|120.796 +638906.463|222098.457|120.003 +638911.120|222094.031|119.649 +638915.765|222089.617|119.214 +638920.462|222085.158|119.192 +638925.129|222080.720|118.598 +638929.832|222076.258|118.653 +638934.556|222071.771|118.531 +638939.229|222067.327|118.022 +638943.877|222062.908|117.324 +638948.605|222058.415|116.894 +638953.289|222053.962|116.534 +638958.041|222049.448|116.309 +638962.833|222044.903|116.425 +638967.621|222040.362|116.547 +638972.391|222035.832|116.553 +638977.143|222031.318|116.419 +638991.557|222017.642|116.656 +638996.370|222013.073|116.717 +639001.186|222008.504|116.842 +639005.953|222003.978|116.522 +639010.790|221999.384|116.452 +639020.297|221990.344|115.248 +639025.036|221985.833|114.300 +639029.721|221981.364|112.852 +639044.025|221967.752|110.377 +639048.792|221963.217|109.682 +639078.111|221935.404|110.829 +639083.034|221930.740|111.420 +639087.999|221926.034|112.020 +639102.788|221912.025|113.870 +639107.823|221907.261|114.861 +639112.718|221902.613|114.824 +639117.659|221897.931|115.358 +639122.606|221893.250|115.992 +639132.521|221883.853|116.486 +639142.476|221874.434|118.281 +639157.487|221860.231|120.786 +639162.370|221855.601|120.924 +639167.351|221850.879|121.122 +639172.322|221846.167|121.228 +639177.232|221841.507|121.158 +639182.195|221836.801|121.167 +639187.111|221832.140|121.210 +639192.070|221827.434|121.228 +639211.910|221808.622|121.554 +639216.829|221803.946|121.027 +639221.828|221799.207|121.018 +639226.772|221794.516|120.893 +639231.734|221789.813|121.177 +639236.696|221785.097|120.518 +639241.640|221780.406|120.479 +639246.614|221775.685|120.094 +639261.461|221761.576|118.272 +639266.423|221756.861|117.571 +639271.358|221752.176|117.367 +639276.387|221747.403|117.107 +639306.337|221718.980|116.150 +639311.332|221714.246|116.434 +639326.374|221699.973|115.946 +639331.358|221695.245|115.894 +639356.397|221671.477|114.611 +639361.375|221666.749|114.139 +639366.404|221661.976|113.901 +639386.438|221642.969|113.700 +639391.425|221638.238|113.666 +639406.473|221623.958|113.084 +639411.505|221619.179|112.749 +639416.495|221614.446|112.505 +639421.475|221609.715|112.100 +639426.511|221604.933|111.664 +639431.500|221600.193|111.133 +639436.538|221595.408|110.761 +639441.577|221590.622|110.359 +639451.568|221581.137|109.503 +639456.610|221576.352|109.332 +639461.602|221571.615|109.271 +639466.601|221566.869|108.924 +639471.648|221562.075|108.463 +639486.684|221547.770|105.647 +639491.653|221543.049|104.906 +639501.696|221533.503|103.373 +639506.713|221528.739|102.925 +639526.720|221509.731|100.703 +639531.703|221504.992|100.097 +639551.750|221485.929|96.713 +639561.754|221476.426|95.470 +639566.704|221471.744|96.329 +639571.626|221467.077|96.619 +639581.547|221457.665|96.564 +639586.500|221452.962|96.198 +639591.472|221448.253|96.552 +639596.242|221443.779|100.267 +639601.100|221439.191|101.877 +639606.032|221434.531|102.980 +639610.887|221429.934|103.617 +639625.527|221416.081|105.973 +639630.511|221411.342|105.126 +639635.442|221406.651|104.400 +639640.322|221402.027|104.693 +639650.313|221392.505|101.432 +639655.202|221387.872|101.669 +639660.049|221383.279|101.855 +639664.968|221378.606|101.617 +639669.830|221373.994|101.617 +639674.734|221369.346|101.742 +639679.492|221364.841|102.559 +639689.093|221355.770|105.074 +639693.866|221351.262|106.369 +639703.498|221342.134|107.067 +639708.357|221337.528|107.214 +639713.127|221333.011|107.869 +639717.958|221328.436|108.387 +639722.713|221323.940|109.292 +639727.529|221319.380|109.990 +639732.247|221314.918|110.737 +639751.410|221296.764|112.575 +639756.265|221292.155|112.340 +639761.087|221287.574|111.972 +639765.851|221283.069|112.801 +639770.521|221278.656|114.117 +639784.852|221265.077|115.205 +639799.117|221251.559|116.114 +639822.788|221229.132|117.903 +639827.576|221224.584|117.696 +639832.371|221220.037|117.491 +639837.101|221215.547|117.446 +639846.693|221206.446|117.126 +639860.992|221192.867|116.361 +639865.771|221188.325|116.044 +639875.421|221179.154|115.178 +639880.145|221174.667|115.007 +639884.946|221170.107|114.654 +639894.529|221160.997|113.764 +639899.305|221156.455|113.310 +639904.078|221151.920|112.898 +639923.162|221133.787|111.310 +639928.017|221129.163|110.435 +639932.754|221124.661|110.118 +639937.457|221120.196|110.079 +639942.276|221115.618|109.597 +639956.544|221102.054|108.241 +639961.262|221097.574|107.887 +639985.052|221074.948|104.873 +639989.800|221070.437|104.489 +639994.473|221065.999|104.324 +639999.042|221061.665|104.507 +640003.687|221057.258|104.559 +640008.338|221052.841|104.577 +640017.641|221044.011|104.397 +640022.115|221039.771|105.263 +640026.687|221035.434|105.251 +640031.311|221031.045|105.251 +640035.917|221026.674|105.367 +640067.848|220996.365|105.354 +640072.478|220991.963|104.918 +640076.970|220987.699|105.007 +640077.510|220984.791|105.278 +640073.072|220988.986|104.861 +640068.451|220993.362|105.208 +640063.824|220997.742|105.613 +640050.084|221010.736|105.574 +640036.273|221023.800|105.543 +640031.634|221028.183|105.278 +640027.010|221032.554|105.248 +640013.203|221045.599|104.272 +640008.567|221049.985|104.400 +640003.873|221054.426|104.297 +639999.246|221058.797|104.086 +639994.534|221063.256|104.144 +639989.806|221067.731|104.318 +639985.058|221072.224|104.650 +639980.224|221076.808|105.269 +639970.644|221085.885|106.330 +639961.042|221094.977|107.317 +639956.227|221099.543|107.979 +639951.417|221104.103|108.625 +639946.607|221108.656|108.951 +639941.776|221113.231|109.457 +639937.033|221117.718|109.704 +639932.196|221122.299|109.969 +639927.466|221126.774|109.844 +639922.555|221131.434|111.057 +639917.709|221136.024|111.481 +639903.246|221149.722|112.734 +639898.424|221154.288|113.096 +639893.605|221158.851|113.477 +639888.722|221163.475|113.986 +639883.903|221168.041|114.434 +639879.045|221172.643|114.828 +639874.278|221177.154|114.904 +639869.419|221181.757|115.370 +639864.570|221186.350|115.785 +639859.739|221190.922|116.077 +639845.212|221204.675|117.010 +639840.369|221209.259|117.123 +639835.516|221213.852|117.336 +639830.734|221218.375|117.379 +639825.830|221223.021|117.677 +639821.060|221227.532|117.653 +639796.977|221250.291|116.416 +639782.594|221263.879|115.132 +639768.162|221277.516|113.989 +639763.468|221281.932|112.346 +639758.612|221286.520|111.956 +639753.732|221291.140|112.395 +639734.320|221309.493|111.551 +639729.565|221313.979|110.633 +639724.740|221318.533|109.987 +639719.921|221323.081|109.265 +639715.077|221327.646|108.238 +639710.240|221332.218|107.756 +639705.415|221336.778|107.144 +639700.484|221341.445|107.275 +639695.637|221346.029|106.967 +639685.969|221355.149|104.687 +639681.159|221359.678|103.157 +639676.322|221364.244|102.020 +639671.442|221368.852|101.483 +639666.483|221373.543|101.419 +639656.605|221382.907|102.300 +639651.615|221387.637|102.864 +639646.723|221392.267|102.666 +639641.627|221397.126|105.153 +639636.698|221401.786|104.821 +639631.766|221406.447|104.553 +639626.771|221411.189|105.491 +639621.796|221415.908|106.135 +639607.062|221429.819|103.565 +639602.124|221434.479|102.599 +639597.248|221439.075|101.282 +639592.410|221443.608|97.969 +639587.552|221448.180|96.064 +639582.474|221452.999|97.000 +639567.536|221467.132|96.472 +639557.553|221476.566|95.491 +639552.488|221481.376|96.491 +639547.480|221486.128|97.317 +639532.377|221500.456|99.780 +639527.293|221505.275|100.319 +639522.267|221510.036|100.575 +639517.241|221514.803|100.999 +639502.153|221529.107|102.818 +639497.081|221533.914|103.416 +639461.776|221567.409|108.920 +639456.725|221572.200|109.524 +639451.681|221576.976|109.558 +639446.633|221581.759|109.899 +639441.635|221586.495|110.387 +639436.590|221591.275|110.643 +639431.549|221596.048|110.752 +639426.507|221600.830|111.411 +639421.466|221605.606|111.786 +639411.392|221615.156|112.773 +639406.357|221619.929|113.157 +639401.273|221624.745|113.438 +639396.283|221629.469|113.486 +639391.248|221634.236|113.694 +639381.174|221643.776|113.983 +639376.087|221648.586|113.806 +639371.049|221653.356|113.678 +639366.014|221658.123|113.892 +639355.952|221667.658|114.584 +639350.920|221672.425|114.885 +639305.764|221715.213|116.507 +639285.735|221734.196|117.629 +639275.701|221743.702|117.626 +639270.715|221748.427|117.836 +639265.719|221753.160|117.842 +639260.723|221757.891|117.882 +639255.770|221762.597|118.866 +639245.883|221771.979|120.146 +639235.913|221781.427|120.689 +639230.981|221786.103|121.079 +639225.988|221790.834|121.234 +639221.026|221795.534|121.042 +639216.073|221800.225|121.088 +639191.339|221823.655|121.277 +639181.494|221832.975|121.082 +639176.528|221837.678|121.097 +639171.618|221842.330|121.244 +639166.735|221846.957|121.079 +639161.800|221851.626|120.936 +639156.908|221856.256|120.713 +639142.061|221870.289|118.659 +639117.418|221893.588|115.736 +639112.526|221898.218|115.233 +639107.643|221902.836|114.925 +639102.767|221907.459|115.239 +639092.842|221916.826|112.913 +639087.959|221921.441|112.173 +639083.055|221926.083|111.776 +639078.178|221930.691|111.188 +639073.262|221935.343|110.728 +639058.790|221949.053|110.908 +639053.925|221953.655|110.603 +639044.272|221962.793|110.368 +639039.527|221967.298|110.816 +639030.023|221976.314|112.115 +639016.060|221989.591|115.660 +639006.626|221998.540|116.745 +639001.887|222003.030|116.891 +638997.123|222007.541|116.836 +638992.410|222012.003|116.851 +638982.925|222020.986|116.809 +638973.446|222029.968|116.879 +638968.706|222034.455|116.766 +638959.245|222043.416|116.736 +638949.815|222052.346|116.653 +638945.179|222056.742|117.080 +638926.583|222074.380|118.845 +638921.944|222078.773|118.951 +638917.308|222083.171|119.457 +638912.693|222087.545|119.759 +638908.045|222091.949|119.845 +638903.393|222096.360|120.271 +638898.821|222100.697|120.576 +638894.231|222105.053|121.109 +638885.057|222113.749|121.945 +638880.439|222118.125|121.996 +638875.824|222122.496|122.091 +638857.436|222139.922|122.768 +638848.170|222148.691|122.283 +638834.298|222161.816|121.292 +638829.744|222166.129|121.332 +638825.179|222170.457|121.643 +638807.000|222187.675|121.725 +638802.459|222191.976|121.658 +638797.890|222196.298|121.466 +638793.385|222200.565|121.359 +638784.277|222209.185|120.960 +638779.663|222213.549|120.567 +638775.103|222217.859|119.966 +638761.426|222230.798|118.863 +638743.260|222247.977|117.114 +638738.691|222252.296|116.376 +638734.217|222256.526|115.916 +638729.928|222260.598|116.739 +638725.262|222265.003|115.559 +638711.732|222277.792|113.621 +638702.746|222286.284|112.560 +638698.269|222290.521|111.996 +638693.846|222294.703|111.755 +638689.414|222298.894|111.228 +638684.845|222303.203|110.036 +638680.493|222307.324|109.948 +638676.052|222311.525|109.448 +638671.641|222315.691|108.875 +638667.185|222319.903|108.094 +638649.629|222336.497|105.787 +638632.179|222352.996|103.861 +638627.842|222357.095|103.373 +638623.626|222361.085|103.227 +638610.721|222373.277|101.499 +638597.889|222385.399|99.828 +638593.704|222389.358|99.734 +638589.592|222393.251|99.737 +638585.523|222397.103|99.959 +638581.420|222400.983|99.822 +638577.446|222404.754|100.252 +638573.453|222408.536|100.627 +638561.428|222419.924|101.151 +638557.509|222423.639|101.657 +638553.559|222427.382|101.813 +638549.614|222431.116|102.017 +638545.658|222434.865|102.178 +638541.708|222438.602|102.163 +638537.761|222442.339|102.169 +638533.743|222446.137|101.898 +638529.927|222449.752|102.273 +638526.047|222453.427|102.383 +638522.137|222457.128|102.386 +638518.208|222460.846|102.312 +638514.340|222464.507|102.306 +638510.432|222468.201|102.151 +638506.324|222472.072|100.974 +638501.776|222476.339|98.252 +638497.301|222480.539|95.646 +638489.383|222488.016|94.464 +638477.782|222498.983|93.385 +638473.871|222502.674|92.751 +638619.350|222363.109|103.145 +638623.550|222359.122|103.202 +638627.738|222355.145|103.245 +638653.841|222330.407|106.522 +638666.972|222317.959|108.122 +638671.407|222313.762|108.808 +638675.808|222309.586|109.378 +638680.246|222305.380|109.887 +638684.662|222301.195|110.301 +638693.581|222292.743|111.667 +638697.970|222288.582|112.020 +638702.448|222284.339|112.590 +638706.986|222280.039|113.246 +638720.358|222267.359|114.352 +638724.991|222262.979|115.599 +638729.739|222258.492|117.248 +638733.882|222254.542|115.934 +638738.402|222250.253|116.409 +638742.946|222245.950|117.028 +638756.675|222232.941|118.747 +638761.177|222228.668|118.967 +638765.745|222224.330|119.299 +638770.321|222219.990|119.689 +638774.835|222215.710|120.030 +638788.545|222202.702|121.042 +638793.126|222198.352|121.308 +638806.836|222185.337|121.731 +638820.527|222172.331|121.615 +638825.102|222167.982|121.396 +638829.696|222163.617|121.301 +638834.271|222159.271|121.094 +638857.652|222137.084|122.728 +638876.184|222119.476|122.143 +638880.792|222115.090|121.722 +638894.725|222101.846|120.914 +638899.431|222097.372|120.536 +638904.037|222092.992|120.149 +638908.798|222088.471|120.195 +638913.473|222084.027|120.006 +638918.128|222079.602|119.665 +638922.776|222075.179|118.945 +638941.570|222057.303|117.318 +638946.255|222052.849|116.931 +638951.003|222048.335|116.659 +638955.761|222043.815|116.507 +638960.531|222039.289|116.848 +638965.381|222034.686|117.086 +638974.936|222025.612|117.242 +638979.767|222021.025|117.394 +638994.157|222007.358|117.107 +639013.314|221989.146|115.891 +639018.087|221984.601|115.260 +639061.332|221943.469|110.838 +639066.215|221938.833|110.935 +639071.073|221934.215|110.801 +639076.039|221929.506|111.331 +639080.976|221924.830|112.084 +639085.981|221920.090|113.105 +639090.898|221915.421|113.212 +639095.863|221910.724|114.434 +639100.846|221906.006|115.361 +639105.671|221901.418|115.053 +639110.649|221896.694|115.434 +639115.568|221892.027|115.733 +639125.486|221882.624|116.781 +639130.391|221877.970|117.007 +639150.386|221859.042|121.326 +639160.200|221849.715|120.957 +639165.120|221845.042|120.988 +639170.109|221840.312|121.335 +639175.001|221835.661|120.994 +639179.921|221830.988|121.100 +639184.898|221826.267|121.378 +639204.677|221807.485|121.396 +639209.617|221802.791|121.201 +639214.561|221798.094|121.030 +639219.508|221793.394|121.015 +639224.473|221788.682|121.298 +639229.411|221783.991|121.073 +639234.340|221779.306|120.719 +639244.237|221769.894|119.857 +639249.217|221765.163|119.558 +639254.115|221760.497|118.540 +639259.084|221755.769|118.022 +639264.073|221751.033|117.930 +639283.977|221732.126|117.659 +639313.917|221703.682|116.781 +639318.934|221698.909|116.184 +639328.962|221689.390|116.662 +639333.943|221684.659|116.504 +639338.960|221679.886|115.775 +639369.071|221651.265|113.861 +639379.093|221641.750|114.032 +639389.154|221632.191|113.910 +639394.186|221627.412|113.861 +639399.219|221622.629|113.584 +639404.251|221617.847|113.093 +639409.283|221613.062|112.666 +639414.315|221608.276|112.307 +639419.345|221603.494|111.825 +639429.418|221593.911|110.716 +639439.498|221584.334|110.231 +639444.536|221579.543|109.957 +639449.578|221574.751|109.658 +639454.622|221569.957|109.286 +639459.667|221565.162|108.875 +639464.711|221560.365|108.604 +639484.904|221541.138|104.809 +639489.973|221536.316|103.940 +639495.039|221531.497|103.178 +639505.125|221521.914|102.258 +639515.223|221512.313|101.066 +639520.301|221507.485|100.444 +639525.321|221502.721|100.289 +639555.603|221473.920|95.656 +639565.631|221464.414|96.436 +639570.626|221459.668|96.119 +639580.609|221450.204|96.896 +639585.644|221445.409|95.756 +639590.484|221440.862|99.042 +639595.370|221436.259|101.224 +639600.226|221431.672|102.876 +639605.157|221427.008|103.943 +639619.937|221413.012|106.272 +639624.869|221408.321|105.485 +639629.895|221403.545|104.830 +639634.763|221398.930|105.263 +639639.719|221394.224|105.059 +639649.698|221384.723|102.846 +639654.614|221380.054|102.617 +639659.552|221375.363|102.126 +639664.481|221370.678|101.779 +639669.409|221365.999|101.508 +639674.259|221361.400|101.745 +639679.096|221356.822|102.815 +639683.835|221352.351|104.623 +639698.240|221338.714|107.265 +639703.102|221334.105|107.363 +639707.890|221329.567|107.805 +639712.715|221324.995|108.399 +639731.762|221306.963|111.542 +639750.962|221288.757|112.487 +639755.738|221284.215|112.069 +639760.545|221279.662|112.447 +639765.156|221275.303|113.867 +639769.932|221270.777|114.556 +639784.121|221257.329|115.657 +639798.261|221243.924|116.888 +639802.973|221239.458|117.342 +639812.416|221230.503|117.644 +639817.119|221226.041|117.775 +639831.365|221212.517|117.485 +639836.059|221208.058|117.336 +639840.814|221203.544|117.110 +639845.575|221199.021|116.879 +639864.518|221181.025|115.376 +639869.243|221176.542|115.184 +639873.976|221172.049|114.934 +639883.437|221163.063|114.169 +639892.880|221154.093|113.304 +639897.644|221149.570|112.956 +639902.292|221145.156|112.770 +639911.720|221136.201|111.886 +639921.178|221127.216|110.899 +639925.939|221122.686|110.024 +639930.590|221118.273|109.987 +639935.342|221113.759|109.615 +639939.990|221109.345|109.292 +639944.708|221104.865|108.869 +639954.111|221095.931|107.982 +639958.799|221091.475|107.494 +639968.205|221082.538|106.442 +639977.624|221073.589|105.412 +639982.241|221069.203|104.897 +640005.257|221047.367|105.095 +640009.817|221043.042|105.095 +640014.386|221038.711|105.367 +640018.903|221034.431|105.680 +640032.613|221021.422|105.714 +640037.157|221017.116|105.930 +640041.674|221012.830|106.022 +640050.797|221004.177|106.049 +640059.853|220995.581|105.943 +640069.003|220986.895|105.391 +640073.563|220982.566|105.101 +640078.153|220978.208|104.943 +640077.891|220975.913|105.092 +640073.404|220980.162|104.918 +640059.703|220993.158|105.644 +640055.107|220997.517|105.909 +640050.547|221001.839|105.985 +640045.954|221006.192|105.982 +640041.367|221010.538|105.955 +640036.816|221014.848|106.031 +640032.131|221019.289|106.043 +640027.562|221023.620|105.988 +640022.996|221027.939|105.616 +640018.348|221032.346|105.778 +640013.721|221036.726|105.501 +640009.125|221041.079|105.379 +640004.455|221045.508|105.440 +639999.792|221049.927|105.461 +639995.083|221054.387|105.479 +639990.428|221058.797|105.184 +639985.734|221063.241|105.144 +639981.043|221067.688|105.123 +639976.307|221072.178|105.418 +639966.690|221081.304|106.406 +639961.896|221085.854|106.863 +639957.013|221090.493|107.619 +639952.228|221095.035|108.061 +639942.584|221104.182|108.872 +639937.765|221108.757|109.320 +639928.069|221117.953|109.978 +639923.332|221122.442|109.908 +639918.376|221127.155|111.121 +639913.484|221131.794|111.517 +639898.894|221145.638|112.679 +639894.069|221150.216|113.075 +639874.516|221168.766|114.684 +639869.624|221173.405|115.004 +639854.984|221187.289|115.846 +639850.110|221191.913|116.141 +639840.296|221201.224|116.967 +639835.437|221205.830|117.220 +639830.545|221210.469|117.376 +639825.680|221215.087|117.763 +639820.743|221219.765|117.933 +639811.050|221228.946|117.583 +639806.198|221233.542|117.510 +639801.367|221238.117|117.242 +639796.487|221242.738|116.986 +639781.981|221256.463|115.504 +639762.632|221274.770|113.596 +639757.832|221279.299|112.087 +639752.928|221283.947|112.255 +639747.975|221288.647|112.481 +639743.086|221293.277|112.523 +639733.326|221302.519|111.956 +639728.498|221307.088|111.365 +639709.055|221325.467|108.247 +639704.175|221330.082|107.710 +639699.286|221334.706|107.326 +639684.689|221348.501|105.251 +639679.846|221353.067|103.593 +639675.027|221357.608|102.175 +639670.150|221362.223|101.636 +639665.197|221366.911|101.535 +639655.291|221376.302|102.139 +639650.332|221381.008|102.946 +639645.351|221385.735|103.458 +639635.369|221395.218|105.711 +639630.468|221399.851|104.976 +639625.521|221404.535|105.046 +639620.537|221409.266|105.848 +639615.578|221413.972|106.272 +639610.671|221418.611|105.708 +639605.749|221423.256|104.489 +639600.875|221427.853|103.190 +639595.986|221432.467|102.169 +639591.100|221437.067|100.039 +639586.372|221441.496|96.421 +639581.364|221446.241|96.847 +639571.452|221455.626|96.509 +639561.491|221465.057|96.299 +639546.587|221479.175|96.491 +639541.536|221483.966|97.225 +639526.537|221498.210|99.722 +639521.599|221502.892|100.194 +639516.576|221507.653|100.456 +639501.586|221521.871|102.130 +639496.566|221526.636|102.651 +639491.592|221531.351|103.172 +639486.568|221536.121|104.016 +639481.591|221540.848|105.019 +639471.514|221550.413|106.534 +639461.535|221559.895|108.713 +639456.533|221564.635|108.863 +639451.535|221569.375|109.253 +639446.533|221574.120|109.935 +639441.537|221578.854|110.054 +639436.542|221583.591|110.332 +639431.497|221588.373|110.835 +639426.504|221593.103|110.929 +639421.512|221597.840|111.520 +639416.519|221602.570|111.850 +639411.487|221607.347|112.462 +639406.497|221612.077|112.819 +639401.465|221616.850|113.255 +639396.475|221621.581|113.685 +639376.435|221640.570|114.221 +639371.393|221645.337|113.928 +639366.407|221650.065|114.005 +639361.420|221654.789|114.233 +639326.371|221688.015|116.781 +639321.370|221692.740|116.324 +639311.363|221702.219|117.071 +639286.382|221725.875|117.620 +639281.398|221730.593|117.818 +639261.440|221749.490|118.257 +639256.444|221754.218|118.266 +639231.676|221777.697|120.823 +639226.695|221782.415|121.155 +639221.749|221787.097|121.262 +639216.792|221791.788|121.192 +639211.830|221796.482|121.082 +639206.877|221801.169|121.088 +639201.921|221805.860|121.131 +639187.114|221819.881|121.484 +639182.176|221824.548|121.146 +639177.263|221829.202|121.149 +639172.298|221833.899|121.146 +639167.427|221838.511|121.161 +639162.443|221843.223|120.954 +639157.579|221847.828|121.122 +639152.687|221852.464|121.539 +639147.798|221857.091|121.378 +639113.148|221889.808|115.818 +639108.271|221894.420|115.519 +639103.343|221899.081|115.181 +639098.551|221903.616|115.376 +639093.610|221908.289|114.965 +639088.743|221912.888|114.328 +639078.885|221922.197|112.913 +639073.939|221926.860|111.560 +639069.068|221931.463|111.072 +639064.221|221936.047|110.874 +639059.412|221940.600|111.091 +639054.578|221945.176|111.036 +639049.740|221949.754|110.996 +639044.906|221954.323|110.557 +639016.618|221981.151|114.605 +639011.979|221985.562|116.056 +639007.266|221990.027|116.400 +638931.953|222061.332|118.433 +638922.639|222070.156|119.009 +638908.886|222083.192|120.555 +638904.207|222087.621|120.387 +638899.565|222092.016|120.527 +638894.993|222096.347|120.826 +638890.375|222100.721|121.170 +638885.825|222105.028|121.317 +638872.124|222118.013|122.509 +638844.515|222144.137|121.996 +638830.671|222157.228|121.155 +638821.606|222165.812|121.536 +638817.016|222170.155|121.390 +638798.874|222187.324|121.463 +638789.831|222195.877|121.042 +638785.259|222200.205|120.853 +638780.726|222204.491|120.628 +638771.622|222213.095|119.759 +638757.994|222225.979|118.628 +638753.563|222230.170|118.564 +638739.877|222243.097|116.577 +638735.351|222247.373|116.080 +638730.904|222251.579|116.025 +638726.594|222255.667|116.461 +638717.352|222264.378|114.087 +638703.981|222277.021|113.032 +638699.503|222281.249|112.450 +638695.068|222285.437|111.862 +638686.247|222293.776|111.243 +638681.761|222298.013|110.448 +638668.502|222310.540|108.988 +638655.200|222323.098|106.778 +638650.894|222327.170|106.543 +638629.000|222347.848|103.477 +638624.723|222351.895|103.263 +638620.532|222355.864|103.239 +638616.299|222359.872|103.026 +638603.293|222372.158|100.880 +638599.023|222376.191|100.359 +638590.537|222384.213|99.377 +638586.389|222388.142|99.219 +638582.353|222391.964|99.353 +638578.318|222395.793|99.734 +638562.221|222411.042|100.450 +638554.162|222418.674|100.496 +638550.407|222422.249|101.715 +638546.472|222425.977|101.956 +638542.513|222429.729|102.102 +638538.602|222433.433|102.255 +638534.649|222437.176|102.230 +638530.686|222440.928|102.184 +638526.706|222444.695|102.087 +638522.874|222448.325|102.398 +638518.982|222452.013|102.468 +638515.059|222455.729|102.425 +638511.130|222459.447|102.373 +638507.265|222463.108|102.376 +638503.407|222466.759|102.209 +638499.191|222470.728|100.618 +638490.203|222479.168|95.262 +638486.310|222482.850|95.043 +638478.309|222490.400|93.168 +638466.953|222501.153|93.144 +638616.991|222356.915|103.087 +638621.206|222352.916|103.230 +638625.427|222348.911|103.187 +638629.759|222344.809|103.663 +638634.233|222340.581|104.851 +638656.026|222319.937|107.168 +638660.425|222315.767|107.396 +638664.927|222311.512|108.396 +638682.690|222294.690|110.728 +638687.128|222290.490|111.292 +638691.542|222286.305|111.499 +638695.998|222282.084|111.944 +638700.512|222277.811|112.718 +638723.080|222256.441|115.626 +638727.545|222252.210|116.028 +638731.977|222248.007|116.001 +638736.518|222243.703|116.312 +638741.029|222239.430|116.757 +638750.182|222230.768|118.165 +638754.721|222226.467|118.561 +638759.232|222222.187|118.546 +638763.709|222217.945|118.638 +638777.517|222204.872|120.357 +638782.122|222200.510|120.701 +638786.664|222196.203|120.710 +638791.196|222191.909|120.972 +638800.356|222183.228|121.228 +638804.982|222178.842|121.545 +638814.084|222170.210|121.280 +638818.659|222165.869|121.344 +638823.246|222161.523|121.475 +638827.833|222157.167|121.030 +638832.378|222152.854|120.960 +638841.732|222143.994|121.597 +638846.463|222139.513|122.164 +638855.826|222130.644|122.697 +638883.533|222104.348|121.301 +638888.227|222099.895|121.143 +638892.853|222095.506|120.869 +638897.550|222091.047|120.783 +638902.238|222086.603|120.631 +638906.926|222082.153|120.512 +638930.292|222059.966|118.525 +638939.665|222051.063|117.354 +638944.447|222046.528|117.348 +638949.165|222042.050|117.242 +638958.806|222032.912|117.562 +638973.184|222019.282|117.732 +638992.377|222001.076|117.367 +639006.782|221987.403|116.534 +639035.232|221960.345|110.926 +639040.124|221955.706|110.978 +639044.989|221951.092|110.795 +639049.881|221946.453|110.905 +639054.764|221941.823|110.957 +639059.659|221937.184|111.146 +639074.402|221923.215|112.017 +639089.334|221909.093|114.739 +639094.311|221904.384|115.565 +639099.185|221899.757|115.242 +639104.102|221895.097|115.452 +639109.061|221890.397|115.608 +639113.944|221885.770|116.019 +639123.840|221876.382|116.242 +639138.931|221862.123|120.683 +639153.754|221848.066|121.405 +639158.697|221843.372|121.049 +639163.562|221838.754|120.963 +639168.555|221834.024|121.375 +639173.450|221829.373|121.064 +639178.366|221824.709|121.100 +639183.331|221820.000|121.189 +639203.055|221801.282|121.067 +639208.057|221796.536|121.049 +639213.004|221791.839|120.975 +639217.908|221787.188|120.981 +639222.919|221782.436|121.262 +639227.808|221777.794|120.994 +639232.795|221773.058|120.866 +639237.723|221768.376|120.506 +639242.637|221763.706|119.814 +639247.593|221758.991|119.003 +639302.231|221707.123|117.357 +639312.149|221697.708|117.110 +639361.993|221650.375|114.416 +639371.960|221640.911|114.005 +639376.996|221636.135|114.245 +639392.001|221621.895|113.916 +639411.941|221602.948|112.188 +639416.928|221598.215|111.807 +639421.963|221593.430|111.338 +639426.953|221588.690|111.033 +639431.994|221583.901|110.566 +639436.987|221579.159|110.298 +639441.979|221574.419|110.106 +639446.978|221569.667|109.481 +639452.022|221564.873|108.917 +639457.021|221560.127|108.701 +639482.128|221536.246|104.382 +639487.148|221531.464|103.507 +639497.185|221521.914|102.291 +639502.205|221517.138|101.721 +639507.225|221512.365|101.316 +639542.448|221478.837|96.021 +639552.512|221469.269|95.607 +639557.477|221464.560|96.012 +639562.522|221459.765|95.622 +639577.448|221445.610|97.262 +639582.459|221440.840|96.631 +639587.415|221436.158|98.332 +639592.264|221431.593|101.264 +639597.165|221426.957|102.904 +639602.073|221422.318|104.409 +639606.998|221417.654|105.507 +639611.939|221412.972|106.287 +639616.913|221408.251|106.424 +639621.891|221403.511|105.635 +639626.902|221398.747|105.168 +639631.846|221394.062|105.936 +639651.798|221375.070|103.044 +639656.809|221370.297|102.102 +639661.768|221365.585|102.029 +639666.745|221360.854|101.703 +639671.646|221356.200|101.837 +639676.526|221351.582|103.001 +639691.026|221337.863|106.942 +639695.878|221333.264|107.756 +639705.665|221323.980|108.329 +639710.484|221319.411|108.975 +639744.360|221287.282|112.514 +639749.233|221282.655|112.596 +639754.159|221277.970|112.130 +639758.954|221273.419|112.587 +639763.632|221269.000|114.337 +639768.442|221264.434|114.639 +639773.206|221259.914|114.962 +639778.010|221255.357|115.379 +639782.755|221250.858|115.913 +639792.305|221241.799|116.897 +639797.078|221237.270|117.205 +639801.799|221232.789|117.537 +639806.582|221228.251|117.805 +639820.907|221214.642|117.501 +639825.702|221210.082|117.275 +639830.484|221205.540|117.193 +639835.254|221200.999|116.787 +639844.825|221191.903|116.278 +639849.659|221187.307|115.864 +639854.408|221182.787|115.379 +639859.178|221178.248|115.145 +639863.936|221173.725|115.032 +639868.703|221169.190|114.495 +639873.424|221164.700|114.358 +639878.161|221160.195|114.108 +639882.928|221155.657|113.651 +639887.649|221151.164|113.209 +639892.404|221146.641|112.910 +639897.123|221142.154|112.560 +639901.862|221137.643|112.060 +639906.590|221133.144|111.691 +639911.278|221128.682|111.264 +639916.023|221124.168|110.829 +639920.793|221119.620|109.862 +639925.439|221115.203|109.856 +639930.133|221110.738|109.518 +639934.827|221106.276|109.213 +639939.493|221101.835|108.786 +639944.147|221097.403|108.451 +639958.272|221083.955|106.546 +639962.862|221079.591|106.436 +639967.529|221075.147|105.845 +639972.213|221070.690|105.501 +639976.776|221066.353|105.324 +639981.376|221061.979|105.257 +639985.945|221057.639|105.409 +639999.581|221044.676|105.476 +640004.138|221040.347|105.473 +640008.628|221036.083|105.613 +640013.160|221031.776|105.802 +640017.690|221027.470|105.711 +640022.210|221023.172|105.699 +640026.669|221018.941|106.092 +640031.168|221014.665|106.250 +640035.636|221010.422|106.327 +640040.114|221006.167|106.360 +640044.600|221001.900|106.345 +640049.108|220997.611|106.226 +640053.577|220993.362|106.080 +640058.039|220989.120|105.985 +640062.495|220984.886|105.958 +640066.997|220980.604|105.671 +640071.505|220976.315|105.382 +640075.986|220972.051|104.992 +640080.448|220967.805|104.723 +640080.610|220964.793|104.653 +640076.068|220969.100|105.043 +640071.551|220973.386|105.339 +640067.022|220977.680|105.705 +640062.459|220982.006|106.004 +640057.978|220986.255|106.159 +640053.455|220990.543|106.278 +640048.929|220994.835|106.452 +640044.424|220999.105|106.506 +640039.876|221003.418|106.555 +640035.417|221007.639|106.385 +640030.900|221011.919|106.278 +640026.389|221016.192|106.165 +640021.923|221020.420|105.787 +640017.409|221024.696|105.714 +640012.834|221029.030|105.738 +640008.287|221033.340|105.620 +640003.788|221037.604|105.522 +639999.182|221041.966|105.479 +639994.616|221046.294|105.534 +639990.056|221050.610|105.242 +639980.845|221059.343|105.327 +639976.249|221063.701|105.354 +639971.601|221068.106|105.397 +639966.913|221072.553|105.738 +639962.213|221077.012|106.189 +639957.498|221081.486|106.449 +639933.735|221104.045|109.109 +639929.023|221108.513|109.506 +639924.280|221113.012|109.811 +639919.522|221117.523|109.896 +639914.731|221122.077|110.624 +639909.924|221126.637|111.121 +639905.188|221131.132|111.514 +639900.396|221135.680|111.972 +639895.562|221140.267|112.404 +639885.973|221149.366|113.148 +639881.197|221153.898|113.596 +639876.378|221158.473|114.056 +639871.586|221163.014|114.303 +639866.768|221167.583|114.425 +639861.958|221172.152|114.907 +639857.151|221176.706|114.968 +639852.314|221181.296|115.334 +639842.655|221190.459|115.992 +639837.781|221195.083|116.348 +639832.895|221199.722|116.845 +639828.073|221204.297|117.226 +639803.777|221227.330|117.775 +639779.570|221250.242|115.705 +639774.727|221254.827|115.157 +639769.862|221259.432|114.852 +639765.004|221264.031|114.486 +639760.176|221268.600|113.834 +639755.369|221273.136|112.386 +639750.459|221277.784|112.106 +639745.524|221282.469|112.654 +639740.608|221287.126|112.468 +639735.645|221291.826|112.307 +639730.790|221296.426|112.042 +639725.864|221301.086|111.472 +639711.203|221314.955|109.551 +639706.305|221319.584|108.664 +639701.368|221324.257|108.265 +639691.501|221333.599|107.442 +639686.609|221338.223|106.485 +639671.930|221352.073|102.172 +639666.992|221356.749|101.816 +639661.990|221361.485|101.721 +639657.022|221366.198|101.864 +639631.699|221390.262|106.580 +639626.719|221394.968|105.598 +639621.738|221399.686|105.424 +639616.697|221404.478|106.415 +639611.662|221409.251|106.476 +639606.663|221413.981|105.869 +639601.728|221418.642|104.894 +639591.859|221427.953|101.895 +639582.041|221437.183|96.424 +639571.998|221446.711|96.936 +639561.961|221456.208|96.192 +639556.953|221460.951|95.631 +639546.888|221470.488|95.680 +639541.832|221475.292|96.518 +639536.803|221480.059|96.625 +639531.749|221484.863|97.545 +639516.622|221499.234|99.904 +639511.541|221504.053|100.468 +639506.509|221508.832|101.133 +639501.488|221513.593|101.419 +639491.396|221523.176|102.504 +639486.376|221527.940|103.099 +639481.305|221532.759|103.989 +639476.239|221537.572|104.812 +639451.087|221561.465|108.786 +639446.088|221566.205|109.024 +639441.089|221570.950|109.509 +639436.042|221575.745|110.417 +639431.049|221580.482|110.569 +639426.053|221585.218|110.847 +639421.012|221590.001|111.338 +639416.068|221594.691|111.661 +639411.036|221599.468|112.106 +639406.046|221604.204|112.523 +639401.060|221608.938|113.130 +639396.070|221613.668|113.465 +639376.078|221632.630|114.242 +639366.102|221642.082|114.328 +639361.119|221646.809|114.660 +639356.132|221651.537|114.718 +639336.216|221670.434|116.437 +639316.325|221689.286|116.937 +639311.345|221694.011|117.202 +639306.364|221698.732|117.452 +639301.426|221703.411|117.592 +639296.437|221708.138|117.568 +639291.459|221712.860|117.958 +639276.600|221726.941|118.506 +639251.881|221750.362|118.793 +639246.946|221755.041|119.086 +639237.159|221764.331|120.488 +639232.234|221769.004|120.957 +639227.287|221773.692|121.006 +639222.398|221778.328|121.277 +639217.430|221783.028|120.994 +639212.534|221787.670|121.158 +639207.621|221792.321|121.067 +639202.668|221797.015|121.079 +639192.811|221806.354|121.259 +639187.913|221810.996|121.503 +639182.996|221815.654|121.423 +639178.061|221820.323|121.128 +639168.238|221829.632|121.292 +639163.300|221834.304|121.015 +639158.441|221838.913|121.216 +639153.543|221843.555|121.554 +639148.688|221848.161|121.829 +639123.862|221871.612|117.040 +639114.005|221880.936|116.172 +639109.155|221885.529|116.156 +639104.220|221890.199|115.727 +639099.341|221894.819|115.398 +639094.433|221899.465|115.373 +639089.639|221904.009|115.535 +639069.851|221922.706|111.883 +639064.977|221927.314|111.353 +639060.055|221931.969|110.874 +639055.263|221936.513|111.267 +639050.432|221941.088|111.267 +639045.552|221945.706|110.810 +639040.670|221950.333|110.807 +639026.387|221963.881|112.161 +639016.996|221972.809|114.486 +639012.247|221977.317|115.388 +639007.574|221981.755|116.089 +638988.597|221999.753|117.711 +638969.617|222017.739|118.311 +638964.856|222022.244|117.982 +638960.144|222026.710|118.065 +638955.356|222031.239|117.952 +638950.592|222035.747|117.662 +638945.907|222040.182|117.647 +638927.268|222057.851|119.296 +638917.908|222066.712|119.546 +638904.021|222079.879|120.771 +638890.110|222093.056|121.289 +638885.447|222097.472|121.298 +638880.866|222101.813|121.567 +638876.260|222106.174|121.689 +638871.642|222110.551|122.076 +638834.694|222145.518|121.231 +638830.104|222149.858|121.030 +638825.587|222154.141|121.277 +638816.443|222162.794|121.170 +638811.874|222167.116|120.869 +638802.888|222175.626|121.250 +638798.335|222179.936|121.094 +638789.261|222188.519|120.774 +638784.707|222192.826|120.393 +638780.245|222197.054|120.564 +638743.937|222231.380|117.287 +638739.377|222235.690|116.827 +638734.884|222239.936|116.211 +638730.443|222244.136|116.190 +638726.091|222248.263|116.373 +638721.467|222252.625|115.401 +638712.354|222261.229|113.727 +638690.137|222282.233|111.627 +638685.687|222286.439|111.246 +638681.297|222290.591|110.929 +638676.878|222294.764|110.237 +638668.051|222303.106|109.222 +638659.123|222311.537|107.814 +638654.722|222315.694|107.089 +638645.913|222324.015|105.653 +638641.551|222328.136|105.190 +638628.460|222340.508|103.632 +638624.169|222344.562|103.099 +638619.953|222348.549|103.196 +638615.701|222352.572|103.120 +638611.465|222356.580|102.892 +638598.325|222368.976|100.151 +638594.036|222373.024|99.545 +638589.924|222376.913|99.533 +638585.694|222380.912|99.225 +638581.551|222384.832|99.100 +638577.431|222388.731|99.085 +638569.393|222396.344|99.789 +638553.110|222411.749|99.523 +638545.472|222418.997|101.200 +638541.659|222422.615|101.962 +638537.715|222426.349|102.175 +638529.900|222433.747|102.517 +638525.938|222437.496|102.465 +638521.929|222441.284|102.245 +638518.058|222444.951|102.392 +638514.175|222448.624|102.504 +638510.286|222452.306|102.602 +638506.418|222455.966|102.584 +638502.550|222459.624|102.584 +638498.691|222463.273|102.422 +638494.775|222466.976|102.248 +638490.730|222470.789|101.368 +638485.804|222475.391|96.969 +638477.310|222483.377|93.296 +638473.372|222487.096|92.733 +638469.501|222490.753|92.443 +638458.217|222501.421|91.919 +638615.022|222350.966|103.004 +638619.228|222346.973|103.111 +638636.653|222330.443|105.162 +638640.954|222326.362|105.336 +638645.252|222322.281|105.522 +638658.581|222309.650|107.829 +638663.107|222305.364|108.978 +638667.505|222301.195|109.512 +638676.351|222292.801|110.158 +638680.749|222288.631|110.765 +638685.196|222284.409|111.142 +638689.661|222280.176|111.621 +638694.133|222275.933|112.173 +638707.596|222263.165|113.672 +638712.027|222258.956|113.840 +638716.526|222254.691|114.373 +638721.165|222250.296|115.437 +638725.765|222245.941|116.300 +638734.601|222237.543|116.163 +638739.091|222233.282|116.501 +638743.782|222228.841|117.437 +638748.305|222224.553|118.010 +638761.972|222211.583|119.067 +638775.703|222198.550|120.143 +638780.294|222194.198|120.424 +638784.860|222189.860|120.607 +638789.395|222185.553|120.604 +638794.004|222181.177|120.783 +638807.692|222168.174|120.905 +638816.888|222159.438|121.021 +638821.542|222155.022|121.298 +638826.035|222150.748|120.902 +638830.668|222146.344|120.796 +638867.936|222110.954|121.945 +638872.578|222106.543|121.740 +638877.229|222102.120|121.631 +638881.868|222097.713|121.445 +638886.581|222093.235|121.457 +638891.253|222088.798|121.548 +638900.592|222079.922|121.042 +638919.316|222062.112|119.515 +638924.044|222057.620|119.430 +638928.768|222053.130|119.342 +638942.868|222039.716|117.860 +638947.629|222035.189|117.751 +638985.976|221998.759|117.726 +638990.746|221994.224|117.467 +639000.335|221985.110|116.989 +639014.588|221971.535|114.541 +639019.306|221967.039|113.407 +639024.088|221962.482|112.432 +639028.859|221957.941|111.801 +639033.702|221953.335|111.429 +639038.490|221948.772|110.521 +639048.314|221939.451|111.207 +639053.172|221934.834|111.039 +639058.055|221930.195|111.164 +639063.005|221925.498|111.511 +639067.967|221920.791|112.008 +639082.982|221906.582|115.705 +639087.886|221901.921|115.769 +639092.772|221897.282|115.586 +639102.639|221887.913|115.894 +639117.431|221873.870|116.184 +639122.426|221869.140|116.937 +639142.546|221850.114|122.335 +639147.447|221845.457|122.115 +639152.382|221840.769|121.661 +639157.320|221836.075|121.301 +639162.221|221831.421|121.058 +639167.186|221826.706|121.119 +639172.093|221822.045|121.039 +639177.053|221817.339|121.064 +639182.018|221812.627|121.164 +639186.989|221807.912|121.433 +639191.927|221803.221|121.149 +639196.874|221798.521|121.061 +639201.830|221793.818|121.100 +639206.777|221789.121|121.070 +639211.782|221784.372|121.192 +639216.722|221779.678|121.082 +639221.672|221774.981|121.122 +639226.680|221770.232|121.393 +639231.591|221765.560|120.716 +639266.301|221732.583|119.058 +639271.273|221727.859|118.641 +639296.160|221704.215|117.437 +639301.152|221699.479|117.690 +639306.133|221694.751|117.583 +639311.113|221690.021|117.418 +639340.980|221661.650|116.156 +639355.903|221647.462|114.849 +639360.936|221642.688|114.764 +639365.910|221637.955|114.276 +639375.880|221628.494|114.422 +639380.861|221623.760|114.075 +639395.811|221609.560|113.611 +639405.778|221600.083|112.371 +639410.758|221595.347|111.895 +639415.748|221590.607|111.652 +639420.735|221585.864|111.133 +639425.678|221581.170|110.896 +639430.668|221576.431|110.771 +639435.661|221571.679|109.875 +639440.611|221566.967|109.042 +639445.652|221562.181|108.981 +639450.648|221557.433|108.616 +639460.602|221547.969|107.537 +639465.607|221543.204|106.738 +639470.576|221538.474|105.623 +639475.593|221533.695|104.495 +639495.575|221514.693|101.675 +639500.595|221509.923|101.227 +639510.553|221500.456|99.965 +639525.571|221486.176|97.740 +639530.603|221481.394|97.283 +639535.541|221476.700|96.884 +639540.524|221471.970|96.713 +639545.511|221467.236|96.436 +639555.453|221457.805|96.802 +639565.353|221448.415|97.119 +639570.334|221443.687|97.097 +639575.253|221439.024|97.463 +639580.258|221434.269|97.006 +639585.235|221429.535|96.134 +639589.939|221425.143|101.200 +639594.791|221420.574|103.870 +639609.495|221406.663|106.705 +639614.387|221402.018|106.574 +639619.416|221397.232|105.699 +639624.296|221392.602|105.876 +639629.166|221388.000|107.070 +639649.119|221369.014|103.373 +639659.058|221359.565|102.081 +639664.036|221354.838|101.782 +639668.970|221350.159|102.084 +639673.753|221345.639|103.294 +639678.599|221341.064|104.897 +639693.132|221327.311|107.683 +639697.963|221322.730|108.119 +639702.843|221318.109|108.613 +639707.674|221313.528|109.067 +639722.225|221299.748|111.042 +639731.866|221290.616|112.313 +639736.776|221285.959|112.481 +639741.604|221281.381|112.532 +639746.475|221276.760|112.654 +639751.352|221272.124|112.191 +639756.152|221267.585|113.142 +639760.889|221263.102|114.233 +639765.741|221258.502|114.611 +639770.521|221253.976|115.260 +639775.340|221249.407|115.519 +639780.128|221244.875|116.126 +639789.723|221235.776|116.669 +639794.496|221231.256|117.418 +639799.282|221226.718|117.623 +639804.082|221222.164|117.696 +639808.862|221217.632|117.976 +639818.521|221208.454|117.239 +639823.337|221203.885|117.266 +639828.140|221199.325|117.013 +639832.980|221194.723|116.431 +639837.808|221190.136|116.013 +639852.235|221176.432|115.023 +639856.993|221171.915|114.922 +639866.554|221162.832|114.383 +639871.352|221158.275|114.044 +639876.088|221153.773|113.809 +639880.852|221149.247|113.401 +639885.638|221144.699|112.859 +639890.380|221140.194|112.660 +639895.166|221135.646|112.173 +639899.899|221131.148|111.749 +639904.636|221126.646|111.328 +639909.367|221122.150|110.972 +639914.155|221117.596|110.222 +639918.882|221113.106|109.963 +639928.282|221104.173|109.189 +639937.673|221095.248|108.277 +639942.389|221090.765|107.884 +639947.076|221086.308|107.378 +639951.789|221081.828|106.738 +639956.452|221077.399|106.455 +639961.106|221072.973|105.927 +639965.733|221068.578|105.613 +639970.378|221064.165|105.528 +639974.932|221059.843|105.434 +639979.541|221055.469|105.324 +639984.119|221051.122|105.421 +639988.657|221046.818|105.501 +639993.150|221042.554|105.549 +639997.676|221038.263|105.735 +640002.230|221033.938|105.754 +640006.732|221029.667|105.815 +640011.243|221025.385|105.827 +640015.748|221021.108|105.909 +640020.210|221016.878|105.976 +640024.712|221012.605|106.104 +640029.147|221008.398|106.360 +640033.591|221004.186|106.592 +640037.977|221000.025|106.869 +640042.452|220995.776|106.939 +640046.859|220991.595|106.839 +640051.376|220987.303|106.695 +640055.851|220983.054|106.543 +640060.289|220978.839|106.327 +640064.751|220974.599|106.004 +640069.228|220970.347|105.613 +640073.718|220966.077|105.162 +640078.205|220961.813|104.763 +640080.037|220957.216|104.217 +640075.519|220961.505|104.742 +640071.011|220965.781|105.235 +640066.476|220970.085|105.641 +640061.953|220974.373|105.985 +640057.454|220978.641|106.226 +640052.958|220982.899|106.458 +640048.474|220987.148|106.647 +640043.966|220991.415|106.708 +640039.458|220995.688|106.796 +640034.993|220999.913|106.641 +640030.543|221004.119|106.406 +640026.050|221008.374|106.168 +640021.548|221012.632|105.991 +640017.089|221016.853|105.872 +640012.575|221021.127|105.805 +640008.009|221025.446|105.763 +640003.501|221029.713|105.693 +639999.002|221033.974|105.604 +639994.458|221038.275|105.495 +639989.852|221042.633|105.476 +639985.308|221046.937|105.403 +639980.766|221051.238|105.348 +639976.154|221055.603|105.431 +639971.552|221059.961|105.479 +639966.946|221064.326|105.583 +639962.292|221068.734|105.702 +639957.656|221073.129|106.052 +639952.974|221077.567|106.400 +639948.235|221082.059|106.851 +639943.583|221086.470|107.381 +639938.850|221090.957|107.835 +639934.129|221095.434|108.241 +639929.456|221099.866|108.683 +639924.680|221104.395|109.195 +639919.964|221108.867|109.652 +639915.243|221113.338|109.811 +639910.464|221117.874|110.438 +639905.697|221122.397|111.014 +639900.966|221126.880|111.341 +639896.181|221131.416|111.731 +639891.392|221135.957|112.188 +639886.613|221140.487|112.590 +639881.840|221145.013|112.999 +639877.027|221149.576|113.361 +639872.263|221154.090|113.739 +639867.453|221158.650|114.145 +639862.674|221163.179|114.322 +639853.006|221172.344|114.882 +639848.214|221176.883|115.239 +639843.371|221181.476|115.675 +639838.543|221186.051|115.998 +639833.694|221190.645|116.126 +639823.928|221199.908|117.092 +639819.054|221204.528|117.510 +639814.202|221209.122|117.360 +639799.635|221222.917|117.543 +639794.780|221227.516|117.510 +639789.982|221232.052|116.928 +639785.118|221236.651|116.531 +639780.219|221241.290|116.507 +639770.554|221250.419|115.141 +639765.735|221254.982|114.864 +639760.868|221259.578|114.050 +639756.012|221264.169|113.660 +639751.212|221268.698|112.170 +639746.268|221273.380|112.240 +639741.306|221278.083|112.542 +639736.334|221282.786|112.417 +639731.461|221287.401|112.322 +639726.511|221292.085|112.033 +639721.658|221296.666|111.133 +639716.742|221301.315|110.441 +639706.912|221310.602|109.021 +639697.036|221319.941|108.201 +639692.092|221324.611|107.272 +639667.452|221347.870|102.008 +639662.441|221352.616|102.023 +639657.412|221357.380|102.315 +639652.404|221362.125|102.364 +639647.290|221366.984|103.355 +639626.963|221386.293|107.482 +639622.004|221390.969|106.080 +639617.023|221395.681|105.897 +639611.945|221400.500|106.702 +639606.846|221405.334|107.061 +639596.928|221414.704|105.168 +639591.923|221419.419|103.593 +639587.116|221423.915|99.792 +639572.080|221438.118|97.152 +639567.048|221442.885|97.143 +639561.967|221447.695|97.097 +639556.983|221452.414|97.085 +639551.915|221457.211|96.799 +639541.850|221466.745|96.988 +639536.784|221471.540|96.719 +639531.703|221476.353|96.878 +639526.668|221481.126|97.177 +639496.307|221509.932|101.011 +639491.232|221514.745|101.584 +639486.206|221519.512|102.224 +639476.111|221529.098|103.852 +639460.953|221543.494|106.918 +639455.942|221548.249|107.610 +639440.885|221562.526|108.881 +639430.839|221572.054|109.954 +639425.840|221576.800|110.761 +639420.799|221581.579|111.060 +639415.803|221586.312|111.331 +639410.810|221591.046|111.834 +639405.824|221595.776|112.240 +639395.845|221605.244|113.425 +639390.855|221609.971|113.791 +639360.978|221638.281|114.861 +639351.051|221647.684|115.053 +639326.249|221671.202|117.187 +639316.322|221680.609|117.138 +639311.427|221685.245|117.153 +639306.453|221689.966|117.589 +639301.518|221694.645|117.818 +639281.840|221713.308|119.064 +639232.700|221759.890|120.820 +639227.762|221764.572|121.039 +639222.916|221769.165|121.228 +639218.012|221773.811|121.228 +639213.101|221778.465|121.076 +639208.194|221783.113|121.055 +639203.241|221787.807|121.100 +639193.475|221797.061|121.180 +639188.565|221801.712|121.164 +639183.719|221806.311|121.445 +639178.790|221810.975|121.231 +639173.919|221815.590|121.161 +639169.018|221820.238|121.387 +639164.135|221824.862|121.167 +639159.222|221829.516|121.277 +639154.372|221834.115|121.603 +639139.782|221847.947|122.103 +639119.909|221866.708|117.062 +639115.041|221871.316|116.751 +639100.377|221885.206|116.440 +639095.491|221889.830|116.050 +639090.614|221894.448|115.794 +639085.795|221899.020|116.211 +639080.854|221903.689|115.279 +639075.950|221908.328|114.812 +639071.076|221912.937|114.181 +639066.020|221917.707|112.654 +639056.272|221926.930|111.609 +639051.432|221931.511|111.493 +639041.700|221940.732|111.295 +639022.555|221958.892|112.831 +639017.797|221963.412|113.614 +639013.085|221967.886|114.392 +639003.676|221976.829|116.537 +638994.221|221985.802|117.379 +638979.947|221999.339|118.183 +638975.214|222003.825|118.415 +638970.447|222008.342|118.382 +638965.722|222012.823|118.720 +638937.208|222039.844|118.235 +638927.884|222048.695|119.390 +638923.160|222053.169|119.137 +638918.524|222057.571|119.592 +638899.940|222075.207|121.167 +638885.998|222088.429|121.804 +638881.359|222092.824|121.646 +638876.632|222097.305|121.567 +638872.036|222101.663|121.756 +638867.424|222106.037|121.844 +638862.800|222110.423|122.204 +638858.222|222114.760|122.246 +638853.620|222119.128|122.454 +638844.271|222127.977|121.670 +638830.378|222141.132|120.732 +638825.791|222145.481|120.838 +638821.222|222149.816|121.091 +638816.687|222154.113|120.948 +638802.989|222167.092|120.701 +638798.417|222171.426|120.728 +638784.832|222184.298|120.506 +638771.144|222197.261|119.589 +638766.581|222201.580|119.223 +638762.021|222205.896|118.918 +638757.476|222210.200|118.424 +638739.368|222227.339|116.839 +638734.875|222231.588|116.211 +638730.395|222235.836|116.217 +638726.018|222239.988|116.534 +638721.443|222244.310|115.532 +638716.883|222248.620|114.645 +638707.928|222257.096|113.813 +638703.389|222261.388|113.124 +638698.942|222265.597|112.666 +638685.623|222278.204|111.280 +638676.780|222286.570|110.316 +638672.361|222290.752|109.887 +638650.311|222311.610|107.037 +638645.886|222315.795|106.214 +638641.490|222319.952|105.812 +638624.038|222336.460|103.315 +638619.722|222340.545|102.919 +638615.543|222344.507|102.934 +638611.324|222348.503|102.788 +638594.054|222364.834|99.853 +638589.796|222368.864|99.386 +638585.584|222372.853|99.152 +638581.433|222376.785|98.966 +638577.287|222380.714|98.838 +638573.169|222384.613|98.618 +638561.176|222395.997|99.618 +638541.220|222414.925|100.566 +638537.499|222418.470|101.718 +638533.585|222422.182|102.072 +638529.684|222425.883|102.258 +638525.721|222429.641|102.419 +638521.832|222433.329|102.465 +638517.876|222437.078|102.459 +638513.953|222440.790|102.178 +638510.137|222444.415|102.559 +638506.232|222448.118|102.593 +638502.376|222451.772|102.632 +638498.451|222455.494|102.611 +638494.625|222459.118|102.581 +638490.764|222462.776|102.425 +638486.676|222466.638|101.361 +638482.138|222470.899|98.524 +638477.773|222475.001|96.207 +638473.393|222479.122|93.845 +638469.638|222482.682|93.793 +638465.514|222486.572|92.297 +638458.095|222493.606|92.623 +638454.264|222497.230|92.120 +638450.505|222500.787|91.715 +638608.816|222348.591|102.739 +638612.992|222344.629|102.693 +638617.198|222340.636|102.815 +638621.422|222336.625|102.794 +638625.751|222332.522|103.529 +638643.164|222316.020|105.705 +638647.559|222311.854|106.400 +638652.043|222307.611|107.287 +638669.645|222290.926|109.472 +638682.980|222278.286|110.999 +638687.415|222274.077|111.350 +638691.825|222269.898|111.828 +638696.306|222265.652|112.450 +638700.701|222261.482|112.648 +638705.288|222257.139|113.608 +638718.733|222244.389|114.715 +638723.369|222240.006|116.065 +638727.914|222235.696|116.388 +638732.306|222231.520|116.193 +638741.352|222222.943|117.022 +638755.023|222209.980|118.290 +638759.494|222205.734|118.378 +638764.136|222201.333|118.891 +638768.720|222196.987|119.387 +638773.305|222192.640|119.906 +638777.861|222188.312|120.012 +638782.464|222183.947|120.390 +638786.999|222179.640|120.408 +638796.094|222171.002|120.354 +638800.648|222166.680|120.536 +638814.462|222153.568|120.945 +638819.025|222149.233|120.972 +638823.600|222144.887|120.774 +638828.169|222140.544|120.573 +638851.593|222118.324|122.316 +638856.186|222113.956|122.070 +638860.819|222109.554|121.768 +638865.449|222105.156|121.807 +638870.118|222100.721|121.795 +638874.812|222096.262|121.634 +638879.515|222091.800|121.902 +638884.182|222087.368|121.939 +638888.848|222082.933|121.646 +638893.594|222078.428|121.954 +638898.230|222074.021|121.469 +638912.275|222060.668|120.448 +638916.951|222056.220|119.945 +638921.590|222051.804|119.217 +638926.351|222047.287|119.390 +638945.218|222029.352|118.247 +638950.058|222024.759|118.397 +638964.433|222011.116|119.019 +638969.224|222006.556|118.479 +638973.991|222002.030|118.561 +638978.847|221997.421|118.574 +638983.590|221992.913|118.494 +638988.402|221988.341|118.199 +638993.136|221983.836|117.626 +639002.719|221974.723|116.726 +639012.149|221965.737|114.422 +639016.956|221961.162|113.688 +639041.072|221938.226|111.335 +639045.894|221933.648|111.274 +639050.841|221928.951|111.542 +639055.724|221924.318|111.664 +639060.677|221919.618|112.057 +639065.636|221914.924|113.047 +639070.729|221910.108|114.517 +639075.621|221905.466|114.895 +639080.583|221900.766|115.522 +639085.600|221896.011|116.300 +639090.468|221891.384|115.949 +639095.390|221886.712|116.266 +639100.389|221881.975|116.928 +639115.172|221867.936|117.162 +639130.415|221853.528|122.429 +639135.344|221848.846|122.563 +639140.233|221844.198|122.131 +639155.043|221830.119|121.615 +639159.978|221825.425|121.253 +639164.937|221820.716|121.198 +639169.908|221815.995|121.390 +639174.846|221811.298|121.119 +639179.811|221806.583|121.234 +639184.764|221801.877|121.231 +639189.763|221797.128|121.164 +639194.710|221792.428|121.085 +639199.708|221787.679|121.091 +639204.655|221782.976|121.085 +639209.657|221778.230|121.146 +639214.653|221773.481|121.204 +639219.609|221768.775|121.414 +639224.595|221764.039|121.280 +639274.369|221716.715|118.924 +639299.351|221692.971|117.924 +639304.328|221688.241|117.769 +639309.306|221683.507|117.574 +639314.329|221678.734|117.348 +639324.329|221669.227|116.934 +639344.321|221650.214|115.538 +639349.298|221645.480|115.157 +639354.279|221640.747|115.023 +639364.285|221631.234|114.626 +639374.298|221621.721|114.575 +639384.305|221612.205|113.931 +639389.288|221607.472|113.880 +639399.252|221597.989|112.727 +639404.284|221593.201|112.157 +639409.216|221588.507|111.667 +639414.206|221583.764|111.472 +639419.238|221578.979|111.322 +639424.182|221574.273|110.451 +639429.223|221569.472|109.664 +639434.219|221564.714|108.832 +639454.156|221545.750|107.342 +639474.203|221526.654|103.647 +639479.125|221521.969|102.971 +639484.145|221517.187|102.093 +639489.168|221512.404|101.304 +639494.140|221507.677|100.849 +639519.103|221483.912|97.381 +639524.083|221479.175|97.030 +639529.067|221474.438|96.689 +639533.980|221469.775|97.082 +639548.842|221455.663|97.515 +639558.764|221446.232|97.134 +639578.585|221427.392|96.302 +639583.382|221422.863|98.307 +639588.082|221418.462|103.233 +639607.568|221400.006|107.052 +639612.546|221395.266|106.220 +639617.432|221390.621|106.211 +639622.311|221386.001|107.223 +639642.075|221367.191|104.772 +639647.070|221362.427|103.276 +639656.952|221353.021|102.117 +639661.865|221348.352|102.014 +639666.706|221343.758|102.346 +639690.809|221320.929|107.308 +639705.327|221307.158|108.966 +639710.103|221302.628|109.545 +639714.977|221298.008|110.103 +639724.514|221288.973|112.036 +639729.354|221284.380|112.429 +639734.173|221279.805|112.545 +639739.044|221275.178|112.615 +639743.899|221270.563|112.365 +639748.755|221265.946|112.148 +639753.479|221261.474|113.364 +639758.262|221256.945|114.468 +639772.642|221243.296|115.455 +639777.434|221238.754|116.019 +639782.176|221234.256|116.568 +639787.038|221229.644|116.928 +639791.781|221225.145|117.507 +639796.630|221220.536|117.543 +639801.443|221215.964|117.476 +639815.884|221202.242|117.440 +639820.737|221197.628|117.126 +639825.592|221193.010|116.812 +639830.448|221188.386|116.096 +639835.276|221183.802|116.108 +639849.775|221170.013|114.888 +639864.219|221156.291|114.035 +639869.014|221151.734|113.718 +639873.821|221147.165|113.319 +639878.624|221142.602|112.983 +639883.437|221138.027|112.599 +639888.271|221133.431|112.090 +639897.885|221124.293|111.219 +639902.609|221119.803|110.880 +639907.413|221115.234|110.356 +639912.223|221110.662|109.838 +639916.999|221106.123|109.573 +639921.760|221101.600|109.106 +639926.509|221097.086|108.747 +639931.273|221092.557|108.317 +639936.043|221088.024|107.875 +639940.819|221083.480|107.396 +639945.559|221078.975|106.881 +639950.295|221074.470|106.418 +639955.023|221069.977|106.049 +639959.744|221065.490|105.744 +639964.410|221061.059|105.510 +639969.065|221056.639|105.388 +639973.713|221052.226|105.318 +639982.985|221043.426|105.418 +639987.520|221039.119|105.504 +639992.096|221034.779|105.677 +639996.686|221030.423|105.781 +640001.240|221026.101|105.812 +640005.784|221021.788|105.912 +640010.344|221017.460|105.952 +640014.885|221013.150|106.116 +640019.400|221008.865|106.168 +640023.908|221004.585|106.260 +640028.446|221000.281|106.513 +640032.884|220996.072|106.772 +640037.355|220991.829|106.863 +640041.906|220987.507|106.784 +640046.420|220983.219|106.656 +640050.898|220978.967|106.470 +640055.381|220974.706|106.260 +640059.889|220970.423|105.955 +640064.452|220966.086|105.638 +640068.939|220961.822|105.202 +640073.486|220957.497|104.729 +640077.943|220953.257|104.236 +640080.122|220948.648|103.894 +640075.504|220953.031|104.403 +640070.908|220957.390|104.824 +640066.305|220961.758|105.296 +640061.721|220966.104|105.687 +640057.100|220970.487|106.037 +640052.498|220974.852|106.302 +640047.956|220979.156|106.516 +640043.381|220983.496|106.674 +640038.773|220987.864|106.750 +640034.179|220992.216|106.744 +640029.659|220996.499|106.644 +640025.145|221000.775|106.510 +640020.604|221005.073|106.257 +640016.059|221009.380|106.065 +640011.520|221013.677|105.824 +640006.921|221018.033|105.680 +640002.364|221022.352|105.613 +639997.762|221026.711|105.519 +639993.214|221031.018|105.421 +639988.545|221035.449|105.513 +639983.991|221039.762|105.482 +639974.768|221048.501|105.312 +639965.523|221057.264|105.360 +639960.866|221061.680|105.491 +639956.239|221066.067|105.763 +639951.557|221070.511|106.110 +639946.823|221075.003|106.506 +639942.154|221079.435|107.162 +639932.699|221088.405|107.997 +639928.020|221092.849|108.482 +639923.259|221097.367|108.866 +639918.553|221101.832|109.244 +639913.841|221106.303|109.682 +639909.187|221110.717|109.747 +639904.432|221115.234|110.573 +639899.649|221119.772|110.917 +639890.225|221128.712|111.712 +639885.434|221133.263|112.218 +639880.712|221137.740|112.575 +639875.945|221142.267|112.953 +639871.224|221146.744|113.358 +639866.463|221151.261|113.745 +639861.717|221155.763|114.038 +639852.189|221164.804|114.614 +639847.452|221169.296|114.922 +639833.087|221182.924|116.080 +639828.329|221187.438|116.291 +639823.483|221192.041|116.867 +639818.685|221196.588|117.019 +639813.915|221201.115|117.431 +639809.121|221205.662|117.635 +639804.351|221210.182|117.641 +639794.786|221219.244|117.482 +639789.970|221223.804|117.089 +639785.236|221228.284|116.800 +639780.430|221232.835|116.339 +639775.715|221237.300|115.937 +639770.865|221241.888|115.437 +639751.705|221260.011|113.035 +639746.944|221264.510|112.136 +639742.016|221269.189|112.581 +639737.130|221273.822|112.615 +639732.244|221278.452|112.633 +639727.334|221283.103|112.401 +639722.536|221287.644|111.999 +639717.687|221292.229|111.097 +639712.859|221296.788|109.914 +639707.985|221301.397|109.280 +639703.105|221306.015|108.756 +639673.740|221333.782|104.193 +639668.867|221338.382|102.907 +639663.962|221343.018|102.026 +639658.994|221347.730|102.139 +639653.968|221352.494|102.383 +639648.927|221357.279|102.943 +639643.882|221362.071|103.611 +639623.643|221381.313|107.933 +639618.712|221385.970|106.918 +639613.713|221390.697|106.235 +639608.656|221395.498|106.695 +639603.612|221400.283|106.933 +639583.748|221419.035|101.569 +639573.821|221428.386|97.439 +639568.791|221433.150|97.295 +639563.701|221437.978|97.518 +639558.642|221442.764|96.972 +639533.297|221466.788|97.219 +639528.241|221471.576|96.765 +639523.193|221476.365|97.420 +639512.995|221486.036|97.804 +639502.869|221495.656|99.319 +639492.710|221505.303|100.660 +639487.590|221510.164|101.276 +639482.515|221514.983|101.934 +639472.371|221524.618|103.550 +639452.068|221543.915|107.253 +639436.871|221558.332|108.357 +639431.774|221563.166|108.780 +639426.776|221567.918|109.597 +639416.592|221577.589|111.185 +639411.600|221582.326|111.533 +639406.516|221587.151|111.840 +639401.435|221591.970|112.218 +639396.445|221596.709|112.886 +639391.410|221601.488|113.410 +639381.296|221611.084|114.215 +639371.229|221620.630|114.660 +639351.188|221639.631|115.065 +639346.159|221644.401|115.309 +639341.179|221649.126|115.836 +639336.149|221653.896|116.071 +639331.172|221658.620|116.568 +639311.244|221677.512|117.449 +639301.283|221686.958|117.918 +639296.300|221691.682|118.083 +639281.453|221705.758|118.848 +639276.518|221710.433|119.107 +639256.776|221729.148|119.909 +639227.305|221757.089|121.356 +639222.407|221761.728|121.472 +639217.500|221766.376|121.390 +639207.679|221775.676|121.173 +639202.817|221780.281|121.128 +639197.913|221784.930|121.149 +639193.045|221789.538|121.073 +639188.187|221794.144|121.128 +639183.280|221798.792|121.225 +639178.415|221803.401|121.234 +639173.544|221808.012|121.177 +639168.692|221812.612|121.414 +639158.947|221821.844|121.347 +639154.147|221826.395|121.698 +639139.568|221840.214|122.332 +639134.765|221844.762|122.033 +639125.008|221853.997|121.466 +639095.570|221881.817|116.778 +639090.757|221886.376|116.684 +639085.862|221891.006|116.196 +639081.080|221895.542|116.522 +639071.329|221904.765|115.650 +639066.437|221909.389|114.812 +639061.478|221914.065|113.325 +639056.559|221918.713|112.301 +639051.682|221923.324|111.780 +639046.817|221927.927|111.420 +639037.204|221937.037|111.453 +639032.382|221941.597|111.127 +639022.869|221950.625|112.270 +639018.215|221955.048|113.124 +639008.806|221963.985|114.821 +638994.730|221977.353|117.269 +638971.108|221999.753|119.119 +638966.359|222004.255|119.232 +638942.591|222026.765|118.747 +638937.894|222031.212|118.634 +638933.139|222035.720|118.851 +638928.503|222040.115|119.253 +638923.785|222044.589|119.387 +638919.106|222049.021|119.506 +638909.849|222057.805|120.512 +638905.274|222062.149|121.058 +638900.611|222066.572|121.335 +638882.060|222084.158|122.298 +638877.427|222088.551|122.527 +638868.024|222097.445|121.768 +638863.410|222101.819|121.844 +638858.786|222106.199|121.893 +638854.098|222110.640|121.835 +638849.526|222114.971|121.939 +638844.963|222119.299|122.103 +638830.955|222132.555|120.991 +638826.245|222137.011|120.622 +638812.560|222149.977|120.911 +638794.205|222167.357|120.186 +638789.712|222171.615|120.427 +638780.623|222180.223|120.323 +638762.304|222197.553|118.689 +638757.744|222201.863|118.101 +638753.270|222206.103|118.019 +638739.636|222218.999|116.736 +638730.636|222227.518|116.202 +638726.271|222231.658|116.580 +638721.760|222235.925|115.897 +638703.639|222253.058|113.587 +638694.642|222261.562|112.395 +638690.149|222265.811|111.728 +638685.717|222270.005|111.399 +638681.197|222274.275|110.655 +638676.856|222278.387|110.582 +638672.403|222282.596|109.957 +638667.959|222286.796|109.414 +638654.701|222299.332|107.762 +638645.822|222307.724|106.427 +638641.463|222311.848|105.933 +638624.056|222328.307|103.846 +638615.375|222336.518|102.794 +638611.221|222340.459|102.922 +638602.799|222348.439|102.712 +638593.884|222356.854|100.069 +638589.601|222360.905|99.469 +638585.462|222364.825|99.322 +638581.241|222368.824|99.033 +638577.092|222372.753|98.880 +638572.968|222376.663|98.829 +638568.887|222380.528|98.780 +638564.781|222384.424|98.844 +638552.675|222395.906|99.170 +638548.566|222399.798|99.063 +638544.320|222403.812|98.155 +638536.871|222410.905|100.423 +638533.021|222414.559|101.038 +638529.284|222418.116|102.130 +638525.389|222421.811|102.346 +638521.460|222425.538|102.422 +638517.549|222429.248|102.596 +638513.660|222432.936|102.651 +638509.713|222436.673|102.492 +638505.793|222440.391|102.440 +638501.953|222444.034|102.745 +638498.161|222447.630|102.821 +638494.275|222451.312|102.748 +638490.440|222454.945|102.681 +638486.612|222458.576|102.651 +638482.784|222462.203|102.639 +638478.556|222466.186|100.822 +638474.051|222470.414|97.942 +638469.699|222474.511|95.683 +638465.279|222478.662|93.001 +638461.347|222482.380|92.467 +638457.641|222485.895|92.434 +638454.011|222489.339|92.699 +638450.121|222493.018|92.172 +638446.321|222496.615|91.809 +638442.636|222500.108|91.690 +638611.538|222337.853|102.953 +638615.686|222333.909|102.806 +638619.978|222329.837|103.102 +638624.419|222325.631|104.132 +638641.679|222309.248|105.607 +638650.659|222300.741|107.439 +638655.021|222296.598|107.768 +638668.282|222284.022|109.500 +638672.726|222279.807|110.076 +638686.092|222267.127|111.606 +638690.515|222262.927|111.908 +638699.531|222254.380|113.203 +638722.104|222232.971|116.156 +638726.594|222228.707|116.470 +638731.029|222224.489|116.239 +638735.494|222220.249|116.467 +638740.039|222215.936|116.870 +638749.152|222207.295|117.897 +638753.675|222203.000|117.964 +638758.153|222198.751|118.086 +638762.822|222194.329|118.750 +638767.428|222189.961|119.378 +638771.979|222185.648|119.689 +638776.563|222181.298|119.939 +638781.126|222176.967|120.104 +638785.692|222172.636|120.290 +638790.206|222168.347|120.195 +638794.759|222164.022|120.055 +638799.365|222159.652|120.259 +638822.335|222137.849|120.594 +638826.919|222133.494|120.482 +638836.346|222124.560|121.664 +638845.588|222115.788|121.728 +638850.270|222111.344|121.713 +638854.921|222106.927|121.856 +638859.551|222102.532|121.865 +638864.172|222098.146|121.823 +638868.911|222093.650|122.295 +638878.290|222084.747|122.280 +638896.968|222067.001|121.594 +638901.604|222062.594|121.134 +638910.949|222053.712|120.408 +638915.589|222049.301|120.021 +638920.255|222044.864|119.467 +638924.976|222040.380|119.345 +638934.404|222031.419|118.674 +638939.201|222026.868|118.833 +638943.941|222022.369|118.942 +638963.107|222004.176|119.348 +638982.273|221985.973|118.878 +638987.046|221981.438|118.625 +638991.743|221976.966|117.741 +639010.674|221958.940|114.191 +639025.015|221945.297|112.066 +639029.794|221940.753|111.533 +639034.634|221936.160|111.594 +639039.505|221931.533|111.508 +639049.292|221922.245|111.904 +639059.211|221912.848|113.270 +639064.218|221908.115|114.818 +639069.199|221903.396|115.590 +639079.053|221894.054|116.635 +639083.924|221889.427|116.281 +639093.796|221880.067|117.168 +639098.691|221875.419|117.187 +639103.623|221870.737|117.077 +639108.527|221866.083|117.245 +639113.432|221861.432|117.443 +639133.460|221842.485|122.201 +639138.398|221837.800|122.445 +639148.252|221828.440|122.045 +639153.190|221823.749|121.686 +639158.085|221819.098|121.375 +639167.960|221809.725|121.396 +639172.901|221805.031|121.146 +639177.860|221800.322|121.180 +639182.816|221795.619|121.198 +639187.763|221790.922|121.064 +639192.716|221786.219|121.079 +639197.669|221781.519|121.109 +639202.625|221776.816|121.167 +639207.648|221772.055|121.710 +639212.595|221767.358|121.667 +639217.588|221762.618|121.667 +639222.514|221757.940|121.283 +639252.381|221729.563|119.720 +639277.335|221705.867|119.058 +639282.319|221701.137|118.948 +639292.313|221691.639|118.375 +639297.290|221686.912|118.141 +639312.268|221672.687|117.464 +639322.321|221663.140|117.208 +639342.315|221644.139|115.748 +639347.339|221639.366|115.291 +639367.455|221620.264|114.800 +639372.436|221615.531|114.562 +639377.465|221610.754|114.306 +639382.494|221605.978|114.139 +639392.553|221596.414|112.944 +639397.585|221591.631|112.563 +639402.572|221586.892|112.005 +639407.601|221582.112|111.764 +639412.636|221577.327|111.356 +639417.629|221572.578|110.509 +639427.711|221562.986|108.924 +639447.746|221543.942|107.278 +639452.751|221539.184|106.683 +639472.904|221520.003|102.977 +639477.872|221515.276|102.389 +639487.967|221505.665|100.657 +639492.939|221500.938|100.191 +639518.030|221477.069|97.487 +639523.004|221472.347|97.451 +639528.018|221467.583|97.548 +639532.974|221462.883|98.060 +639552.905|221443.946|97.231 +639557.834|221439.264|97.311 +639567.801|221429.794|97.094 +639572.729|221425.119|97.262 +639577.704|221420.379|96.393 +639582.425|221415.962|101.047 +639587.229|221411.436|103.730 +639592.084|221406.846|105.278 +639601.814|221397.632|106.945 +639606.751|221392.938|106.811 +639611.653|221388.277|106.510 +639616.502|221383.684|107.223 +639621.345|221379.094|107.951 +639626.280|221374.409|108.021 +639631.169|221369.755|107.223 +639636.137|221365.021|106.010 +639641.145|221360.239|104.208 +639646.058|221355.557|103.245 +639650.987|221350.872|102.867 +639655.879|221346.218|102.340 +639660.765|221341.573|101.980 +639665.593|221336.995|102.459 +639670.394|221332.447|103.349 +639684.771|221318.832|106.302 +639703.882|221300.720|109.097 +639708.664|221296.188|109.606 +639718.150|221287.205|111.566 +639722.926|221282.676|112.139 +639727.721|221278.129|112.517 +639732.543|221273.550|112.612 +639737.319|221269.015|112.688 +639742.156|221264.412|112.112 +639746.914|221259.898|112.438 +639751.635|221255.430|113.685 +639756.296|221251.017|114.553 +639770.585|221237.459|115.504 +639784.755|221224.017|116.827 +639803.704|221206.034|117.656 +639808.502|221201.474|117.351 +639813.266|221196.951|117.385 +639818.085|221192.367|116.931 +639822.824|221187.862|116.806 +639846.730|221165.124|114.748 +639851.555|221160.533|114.465 +639856.292|221156.028|114.145 +639861.065|221151.490|113.950 +639865.823|221146.964|113.514 +639870.632|221142.383|113.060 +639875.369|221137.881|112.859 +639884.937|221128.770|111.789 +639894.431|221119.739|111.045 +639899.214|221115.188|110.630 +639903.969|221110.662|110.091 +639908.736|221106.126|109.847 +639918.221|221097.101|109.103 +639922.976|221092.578|108.686 +639927.706|221088.073|108.128 +639941.947|221074.522|106.958 +639951.514|221065.408|105.379 +639956.230|221060.925|105.110 +639960.988|221056.392|104.565 +639965.660|221051.951|104.635 +639970.363|221047.483|104.528 +639974.981|221043.091|104.355 +639979.529|221038.778|104.976 +639984.116|221034.425|105.662 +639988.602|221030.173|106.394 +639993.174|221025.833|106.894 +639997.710|221021.526|107.323 +640002.309|221017.155|107.372 +640006.909|221012.787|107.457 +640011.560|221008.368|107.531 +640016.144|221004.009|107.433 +640020.741|220999.638|107.272 +640025.325|220995.280|107.214 +640029.940|220990.894|107.009 +640034.545|220986.511|106.863 +640039.154|220982.131|106.741 +640043.713|220977.793|106.613 +640048.240|220973.489|106.430 +640052.818|220969.137|106.250 +640057.402|220964.778|106.065 +640061.944|220960.456|105.845 +640066.482|220956.140|105.684 +640071.024|220951.821|105.516 +640075.568|220947.499|105.360 +640080.113|220943.174|104.952 +640077.580|220943.147|104.918 +640072.990|220947.496|105.272 +640068.418|220951.833|105.565 +640063.846|220956.168|105.863 +640059.179|220960.590|106.150 +640054.586|220964.943|106.342 +640049.995|220969.289|106.528 +640045.356|220973.688|106.750 +640040.720|220978.077|106.951 +640036.100|220982.454|107.104 +640031.488|220986.824|107.226 +640026.818|220991.247|107.412 +640022.161|220995.658|107.546 +640017.571|221000.007|107.619 +640012.880|221004.448|107.704 +640008.253|221008.828|107.732 +640003.583|221013.248|107.720 +639998.957|221017.628|107.491 +639994.342|221021.989|107.177 +639989.764|221026.321|106.671 +639985.183|221030.643|105.857 +639980.620|221034.956|105.263 +639976.060|221039.259|104.336 +639971.396|221043.670|104.105 +639966.651|221048.169|104.443 +639952.456|221061.610|104.656 +639933.110|221079.969|107.439 +639923.518|221089.061|108.290 +639918.712|221093.617|108.664 +639913.917|221098.162|108.978 +639909.101|221102.728|109.478 +639904.340|221107.239|109.612 +639899.503|221111.829|110.329 +639894.678|221116.401|110.633 +639880.225|221130.102|111.908 +639875.433|221134.647|112.447 +639870.550|221139.280|112.983 +639865.811|221143.772|113.194 +639860.955|221148.372|113.557 +639856.170|221152.907|113.788 +639851.305|221157.519|114.306 +639846.532|221162.042|114.489 +639841.692|221166.632|114.873 +639827.186|221180.382|116.050 +639822.334|221184.985|116.681 +639817.494|221189.572|116.797 +639812.702|221194.107|116.909 +639807.850|221198.707|117.214 +639803.052|221203.254|117.461 +639783.923|221221.353|116.745 +639769.530|221234.966|115.550 +639755.180|221248.538|114.541 +639750.398|221253.056|113.889 +639745.698|221257.484|112.346 +639740.888|221262.035|111.984 +639736.002|221266.671|112.538 +639731.168|221271.246|112.487 +639726.340|221275.815|112.420 +639721.481|221280.411|112.161 +639716.699|221284.932|111.591 +639707.098|221293.996|109.728 +639702.331|221298.498|108.966 +639697.460|221303.104|108.329 +639673.335|221325.894|103.955 +639668.498|221330.460|102.849 +639663.624|221335.065|102.215 +639658.732|221339.695|101.892 +639653.791|221344.380|102.297 +639643.836|221353.829|103.666 +639638.829|221358.587|104.534 +639618.888|221377.521|107.957 +639613.987|221382.154|107.275 +639609.083|221386.790|106.653 +639604.072|221391.545|107.150 +639599.092|221396.263|107.104 +639594.200|221400.884|106.232 +639589.283|221405.520|104.894 +639584.391|221410.129|103.020 +639579.527|221414.701|100.459 +639574.717|221419.202|96.570 +639569.691|221423.976|97.445 +639559.672|221433.464|97.423 +639544.615|221447.735|97.820 +639524.513|221466.773|97.716 +639514.467|221476.292|97.756 +639509.401|221481.089|97.658 +639504.399|221485.817|96.905 +639494.243|221495.476|99.746 +639479.022|221509.920|101.560 +639468.927|221519.503|103.120 +639453.778|221533.893|105.866 +639448.673|221538.739|106.549 +639443.619|221543.537|107.287 +639428.470|221557.905|108.634 +639423.426|221562.690|109.131 +639418.382|221567.482|110.088 +639413.291|221572.313|110.655 +639408.299|221577.053|111.478 +639403.212|221581.878|111.962 +639398.179|221586.648|112.200 +639393.141|221591.424|112.487 +639388.106|221596.197|112.673 +639377.995|221605.795|114.200 +639372.963|221610.565|114.407 +639367.885|221615.381|114.629 +639362.850|221620.148|114.645 +639357.818|221624.918|114.931 +639347.756|221634.456|115.334 +639337.701|221643.990|116.041 +639332.629|221648.803|116.376 +639327.648|221653.524|116.702 +639312.567|221667.825|117.421 +639307.538|221672.592|117.647 +639297.531|221682.084|118.104 +639282.550|221696.297|119.003 +639277.530|221701.061|119.421 +639217.868|221757.638|121.573 +639212.922|221762.329|121.582 +639207.993|221767.001|122.024 +639203.037|221771.698|121.899 +639198.062|221776.407|121.521 +639193.140|221781.071|121.222 +639188.227|221785.725|121.143 +639178.366|221795.073|121.265 +639173.447|221799.734|121.140 +639168.555|221804.376|121.487 +639163.675|221808.997|121.295 +639158.761|221813.654|121.356 +639153.866|221818.299|121.661 +639149.023|221822.893|122.097 +639134.429|221836.731|122.475 +639129.537|221841.367|122.262 +639109.762|221860.048|117.900 +639104.958|221864.598|117.836 +639090.431|221878.378|118.546 +639085.521|221883.014|117.293 +639080.598|221887.669|116.513 +639075.773|221892.247|116.870 +639070.903|221896.852|116.217 +639056.187|221910.767|113.837 +639051.261|221915.421|112.764 +639046.369|221920.048|112.054 +639036.716|221929.192|111.645 +639027.106|221938.302|111.746 +639022.372|221942.795|112.292 +639012.942|221951.753|113.764 +639008.224|221956.237|114.453 +639003.633|221960.605|115.919 +638989.500|221974.028|117.805 +638980.182|221982.873|119.055 +638975.464|221987.351|119.357 +638970.782|221991.792|119.604 +638956.584|222005.249|119.540 +638942.371|222018.712|119.183 +638937.626|222023.211|119.019 +638932.926|222027.664|118.884 +638928.213|222032.129|119.058 +638923.580|222036.527|119.476 +638918.932|222040.938|119.777 +638914.296|222045.336|120.210 +638909.639|222049.756|120.479 +638904.991|222054.166|120.847 +638900.324|222058.592|121.076 +638895.752|222062.932|121.679 +638877.202|222080.525|122.286 +638872.657|222084.838|122.789 +638868.006|222089.252|122.893 +638863.324|222093.680|122.490 +638858.615|222098.137|121.932 +638853.976|222102.532|121.859 +638849.386|222106.884|121.811 +638844.716|222111.307|121.594 +638840.153|222115.632|121.780 +638826.142|222128.894|120.338 +638821.606|222133.195|120.457 +638812.374|222141.936|120.058 +638803.273|222150.568|120.247 +638798.701|222154.897|119.927 +638785.061|222167.823|119.902 +638780.598|222172.054|120.040 +638776.014|222176.394|119.765 +638766.922|222185.008|119.439 +638762.316|222189.367|118.817 +638744.111|222206.597|117.287 +638739.530|222210.931|116.656 +638730.590|222219.399|116.163 +638726.176|222223.586|116.516 +638721.659|222227.863|116.056 +638717.023|222232.240|114.980 +638712.549|222236.473|114.538 +638699.083|222249.217|113.121 +638694.663|222253.402|112.788 +638685.708|222261.876|111.600 +638676.826|222270.279|110.627 +638672.409|222274.461|110.435 +638667.926|222278.701|109.661 +638663.509|222282.876|108.997 +638654.649|222291.258|107.860 +638650.238|222295.431|107.302 +638645.791|222299.634|106.586 +638641.335|222303.847|105.848 +638628.347|222316.139|104.647 +638623.992|222320.263|104.236 +638611.035|222332.519|102.696 +638598.084|222344.763|101.157 +638593.759|222348.847|100.331 +638589.400|222352.965|99.606 +638585.197|222356.943|99.392 +638581.070|222360.850|99.292 +638576.897|222364.798|99.011 +638568.658|222372.600|98.972 +638564.525|222376.514|98.923 +638560.401|222380.412|98.704 +638548.240|222391.928|98.591 +638532.338|222406.997|99.252 +638528.644|222410.515|100.526 +638524.886|222414.084|101.544 +638521.113|222417.668|102.282 +638513.288|222425.081|102.620 +638509.451|222428.720|102.895 +638505.565|222432.396|102.776 +638501.587|222436.161|102.507 +638497.722|222439.824|102.703 +638493.872|222443.470|102.773 +638490.038|222447.103|102.910 +638486.204|222450.733|102.855 +638482.372|222454.360|102.821 +638478.568|222457.960|102.700 +638474.707|222461.614|102.578 +638470.266|222465.784|99.947 +638465.785|222469.990|97.186 +638461.433|222474.078|94.766 +638457.147|222478.104|92.431 +638453.410|222481.643|92.483 +638449.576|222485.267|92.178 +638445.833|222488.812|92.019 +638609.014|222332.541|102.876 +638617.539|222324.448|103.196 +638621.886|222320.330|103.775 +638626.223|222316.221|104.336 +638630.518|222312.143|104.470 +638634.858|222308.028|104.845 +638639.171|222303.938|105.104 +638643.594|222299.744|105.677 +638648.050|222295.529|106.674 +638661.293|222282.980|108.488 +638665.807|222278.707|109.381 +638683.580|222261.857|111.286 +638688.088|222257.587|112.020 +638692.563|222253.350|112.609 +638697.056|222249.089|113.060 +638701.573|222244.810|113.663 +638710.500|222236.342|114.370 +638714.975|222232.097|114.547 +638719.596|222227.723|115.550 +638724.210|222223.355|116.528 +638728.572|222219.210|116.163 +638737.588|222210.654|116.544 +638742.178|222206.301|116.949 +638760.375|222189.028|118.467 +638769.607|222180.268|119.576 +638774.155|222175.943|119.640 +638783.275|222167.281|119.933 +638787.840|222162.940|119.869 +638796.939|222154.293|119.869 +638806.138|222145.551|119.960 +638810.713|222141.202|120.046 +638819.988|222132.393|120.442 +638824.578|222128.031|120.366 +638833.987|222119.104|121.451 +638838.629|222114.690|121.466 +638843.281|222110.271|121.567 +638847.944|222105.842|121.774 +638852.629|222101.389|121.823 +638857.308|222096.948|122.164 +638876.083|222079.108|122.573 +638899.452|222056.876|121.186 +638904.119|222052.438|120.972 +638913.528|222043.489|120.442 +638922.867|222034.598|119.436 +638927.610|222030.087|119.134 +638937.120|222021.050|119.174 +638946.663|222011.988|119.570 +638956.258|222002.868|119.726 +638970.645|221989.192|119.442 +638975.366|221984.702|119.156 +638989.686|221971.071|117.659 +639003.865|221957.563|115.394 +639008.641|221953.009|114.373 +639027.804|221934.760|111.737 +639037.570|221925.482|111.834 +639042.474|221920.825|112.157 +639052.350|221911.458|113.563 +639067.257|221897.334|116.519 +639072.210|221892.634|117.074 +639077.072|221888.007|116.638 +639081.994|221883.335|116.885 +639106.610|221859.953|118.223 +639121.689|221845.679|122.606 +639126.590|221841.016|122.316 +639131.521|221836.328|122.475 +639151.184|221817.623|121.820 +639156.122|221812.923|121.518 +639161.023|221808.262|121.341 +639165.982|221803.547|121.396 +639170.926|221798.844|121.195 +639175.885|221794.129|121.262 +639180.838|221789.419|121.259 +639185.785|221784.716|121.189 +639190.741|221780.004|121.262 +639200.729|221770.519|122.073 +639205.637|221765.855|122.234 +639210.602|221761.128|121.710 +639215.589|221756.385|121.658 +639240.390|221732.790|120.628 +639265.225|221709.162|119.595 +639280.203|221694.913|119.119 +639295.123|221680.718|118.217 +639310.144|221666.429|117.677 +639320.138|221656.916|117.089 +639325.158|221652.140|116.733 +639335.156|221642.627|116.181 +639340.179|221637.848|115.882 +639345.199|221633.069|115.465 +639350.176|221628.332|115.254 +639355.202|221623.550|115.056 +639360.229|221618.768|114.815 +639365.255|221613.985|114.562 +639370.284|221609.206|114.529 +639375.310|221604.421|114.002 +639380.288|221599.678|113.349 +639390.346|221590.104|112.593 +639395.329|221585.361|112.328 +639400.359|221580.579|112.255 +639405.391|221575.782|111.417 +639420.500|221561.389|109.396 +639425.493|221556.631|108.637 +639430.534|221551.830|108.253 +639435.578|221547.027|107.680 +639440.577|221542.266|107.089 +639445.625|221537.462|106.625 +639450.678|221532.643|105.729 +639455.683|221527.879|105.190 +639465.805|221518.229|103.309 +639470.826|221513.441|102.346 +639480.911|221503.839|100.950 +639511.196|221475.018|97.939 +639521.172|221465.541|98.216 +639531.200|221456.019|98.548 +639541.253|221446.461|98.225 +639546.248|221441.706|97.661 +639551.275|221436.927|97.579 +639561.242|221427.453|97.375 +639566.219|221422.723|97.426 +639576.104|221413.356|99.200 +639580.895|221408.848|102.264 +639585.763|221404.252|104.525 +639590.667|221399.613|105.991 +639595.501|221395.032|106.955 +639600.451|221390.335|107.467 +639605.413|221385.613|106.900 +639610.327|221380.950|107.268 +639615.216|221376.314|108.067 +639620.153|221371.620|107.994 +639635.058|221357.425|105.772 +639640.057|221352.652|104.156 +639654.892|221338.528|102.261 +639659.750|221333.913|102.288 +639664.651|221329.256|102.419 +639669.467|221324.690|103.111 +639674.310|221320.100|104.062 +639679.044|221315.616|105.196 +639683.826|221311.096|106.936 +639693.403|221302.016|108.347 +639698.185|221297.477|108.826 +639702.992|221292.920|109.631 +639707.744|221288.416|110.469 +639712.502|221283.908|111.289 +639717.272|221279.381|111.914 +639722.060|221274.837|112.346 +639726.876|221270.265|112.514 +639731.649|221265.729|112.609 +639736.468|221261.142|112.200 +639745.987|221252.111|113.337 +639750.693|221247.652|114.233 +639769.631|221229.677|115.702 +639779.113|221220.674|116.388 +639783.831|221216.193|116.723 +639807.481|221193.729|117.309 +639812.248|221189.191|116.867 +639816.985|221184.689|116.766 +639821.761|221180.141|116.294 +639826.519|221175.615|116.053 +639836.007|221166.584|115.044 +639840.777|221162.051|114.791 +639845.468|221157.592|114.404 +639850.226|221153.072|114.294 +639854.932|221148.597|113.855 +639864.402|221139.591|112.993 +639869.087|221135.140|112.804 +639873.854|221130.605|112.374 +639878.579|221126.115|111.941 +639892.724|221112.661|110.633 +639897.446|221108.172|110.338 +639902.158|221103.691|109.774 +639906.803|221099.281|109.750 +639916.237|221090.304|108.695 +639920.986|221085.787|108.000 +639939.767|221067.923|105.985 +639953.870|221054.505|104.412 +639963.085|221045.755|104.446 +639967.690|221041.381|104.348 +639972.268|221037.034|104.434 +639981.156|221028.616|106.104 +639985.661|221024.345|106.714 +639990.175|221020.066|107.281 +639994.628|221015.845|107.625 +639999.142|221011.559|107.893 +640003.702|221007.231|107.921 +640008.271|221002.891|107.902 +640012.804|220998.584|107.811 +640017.397|220994.222|107.692 +640021.954|220989.891|107.503 +640026.523|220985.547|107.265 +640031.034|220981.262|107.119 +640035.584|220976.940|107.034 +640040.196|220972.554|106.628 +640044.710|220968.265|106.519 +640049.236|220963.964|106.354 +640053.757|220959.667|106.241 +640058.301|220955.351|106.031 +640062.855|220951.020|105.775 +640067.323|220946.774|105.473 +640071.886|220942.436|105.214 +640076.416|220938.133|104.900 +640080.948|220933.823|104.592 +640077.336|220934.920|104.623 +640072.843|220939.187|104.992 +640068.381|220943.421|105.211 +640063.861|220947.712|105.485 +640059.399|220951.946|105.751 +640054.900|220956.213|105.946 +640050.413|220960.471|106.113 +640045.893|220964.754|106.186 +640041.363|220969.049|106.345 +640036.828|220973.349|106.555 +640032.259|220977.687|106.991 +640027.705|220982.003|107.061 +640023.139|220986.331|107.229 +640018.570|220990.665|107.448 +640013.995|220995.002|107.713 +640009.366|220999.391|107.747 +640004.821|221003.698|107.866 +640000.249|221008.029|107.887 +639995.662|221012.373|107.701 +639991.087|221016.707|107.470 +639986.603|221020.950|106.997 +639982.031|221025.275|106.455 +639977.532|221029.527|105.775 +639973.049|221033.767|105.010 +639968.455|221038.107|104.306 +639963.792|221042.527|104.428 +639944.998|221060.342|104.763 +639935.430|221069.425|105.912 +639930.602|221074.007|106.336 +639920.973|221083.145|107.424 +639911.332|221092.301|108.750 +639901.661|221101.478|109.701 +639896.815|221106.075|110.118 +639891.975|221110.668|110.539 +639887.140|221115.255|110.932 +639877.420|221124.479|111.847 +639872.553|221129.096|112.215 +639867.728|221133.677|112.682 +639862.851|221138.298|112.798 +639857.965|221142.940|113.425 +639853.119|221147.537|113.749 +639848.236|221152.170|114.032 +639843.344|221156.809|114.392 +639838.452|221161.448|114.785 +639833.560|221166.093|115.233 +639823.769|221175.377|115.839 +639813.955|221184.692|116.800 +639809.041|221189.352|117.181 +639804.152|221193.988|117.367 +639769.984|221226.349|116.044 +639765.184|221230.894|115.559 +639760.282|221235.530|115.105 +639755.372|221240.181|114.785 +639750.523|221244.768|114.306 +639745.640|221249.386|113.709 +639740.836|221253.918|112.264 +639735.935|221258.557|111.874 +639730.948|221263.291|112.465 +639726.017|221267.966|112.468 +639721.103|221272.618|112.279 +639716.163|221277.293|111.883 +639711.280|221281.914|111.383 +639706.436|221286.489|110.380 +639681.976|221309.611|106.705 +639672.256|221318.777|103.812 +639667.355|221323.410|102.940 +639662.441|221328.052|102.197 +639657.473|221332.758|102.264 +639637.454|221351.750|104.443 +639612.360|221375.567|108.140 +639607.468|221380.188|107.296 +639602.499|221384.888|106.976 +639592.542|221394.319|106.814 +639582.776|221403.527|103.733 +639577.878|221408.126|100.923 +639573.062|221412.634|97.192 +639563.073|221422.098|97.509 +639553.094|221431.553|97.701 +639543.115|221441.008|98.033 +639538.122|221445.741|98.405 +639533.075|221450.530|98.981 +639528.155|221455.187|98.737 +639518.164|221464.645|98.426 +639508.179|221474.100|98.088 +639503.165|221478.843|97.823 +639488.160|221493.083|99.652 +639478.147|221502.584|101.096 +639468.146|221512.072|102.386 +639463.123|221516.845|103.291 +639453.086|221526.373|104.961 +639438.105|221540.589|106.891 +639433.146|221545.292|107.467 +639428.144|221550.038|108.003 +639423.097|221554.830|108.716 +639413.145|221564.272|110.097 +639408.152|221569.012|110.749 +639403.205|221573.706|111.374 +639397.890|221578.750|111.886 +639393.229|221583.170|112.471 +639388.237|221587.900|112.648 +639383.250|221592.628|112.868 +639373.277|221602.086|113.849 +639363.307|221611.538|114.483 +639358.321|221616.262|114.742 +639353.337|221620.987|114.971 +639348.399|221625.668|115.236 +639343.370|221630.435|115.577 +639338.390|221635.157|115.971 +639333.455|221639.835|116.117 +639328.478|221644.554|116.559 +639323.445|221649.321|116.726 +639318.514|221653.996|117.034 +639308.556|221663.436|117.607 +639298.598|221672.876|118.116 +639293.617|221677.594|118.372 +639278.731|221691.703|119.268 +639273.754|221696.422|119.579 +639268.776|221701.140|119.860 +639263.832|221705.819|119.796 +639258.849|221710.543|119.939 +639244.005|221724.613|120.674 +639234.084|221734.013|120.997 +639214.278|221752.779|121.585 +639209.340|221757.458|121.814 +639199.480|221766.806|122.548 +639189.534|221776.212|121.853 +639184.548|221780.928|121.301 +639179.637|221785.579|121.265 +639174.681|221790.270|121.338 +639169.774|221794.921|121.414 +639164.815|221799.618|121.417 +639159.898|221804.272|121.411 +639154.994|221808.920|121.567 +639150.050|221813.608|121.859 +639125.535|221836.831|122.487 +639120.692|221841.415|122.313 +639110.722|221850.828|120.296 +639100.846|221860.167|119.031 +639096.009|221864.745|119.147 +639081.275|221878.683|118.037 +639076.273|221883.405|116.873 +639071.448|221887.977|117.229 +639066.572|221892.594|117.016 +639061.713|221897.191|116.489 +639051.840|221906.509|114.468 +639046.872|221911.199|113.441 +639041.971|221915.832|112.636 +639037.024|221920.505|111.929 +639032.242|221925.034|111.944 +639027.444|221929.582|112.292 +639013.094|221943.188|113.380 +639008.373|221947.666|114.059 +639003.645|221952.152|114.684 +638999.003|221956.569|116.096 +638989.576|221965.518|117.586 +638984.952|221969.907|118.287 +638975.491|221978.877|119.113 +638970.782|221983.343|119.509 +638966.051|221987.826|119.741 +638951.857|222001.268|119.726 +638947.120|222005.752|119.589 +638942.423|222010.202|119.799 +638932.965|222019.157|119.363 +638928.247|222023.628|119.442 +638923.544|222028.078|119.314 +638918.865|222032.519|119.741 +638914.278|222036.872|120.143 +638905.015|222045.656|121.070 +638900.397|222050.033|121.295 +638886.593|222063.124|122.396 +638877.360|222071.875|122.652 +638872.731|222076.261|122.886 +638858.896|222089.371|123.045 +638849.575|222098.188|122.265 +638844.905|222102.605|121.689 +638840.300|222106.967|121.554 +638835.676|222111.344|121.332 +638831.031|222115.739|121.003 +638826.407|222120.113|120.506 +638821.792|222124.481|120.427 +638808.064|222137.480|120.070 +638789.822|222154.750|119.387 +638771.808|222171.813|119.521 +638767.279|222176.102|119.296 +638758.110|222184.773|118.302 +638739.950|222201.949|116.464 +638735.467|222206.195|116.391 +638730.995|222210.425|116.126 +638726.597|222214.595|116.266 +638722.086|222218.865|116.099 +638717.532|222223.166|115.175 +638708.525|222231.682|114.224 +638704.042|222235.925|113.749 +638699.604|222240.125|113.544 +638695.111|222244.374|113.072 +638686.217|222252.783|112.161 +638677.228|222261.284|111.109 +638672.784|222265.484|110.484 +638668.334|222269.694|109.850 +638663.875|222273.906|109.204 +638646.090|222290.716|106.622 +638641.676|222294.888|106.068 +638637.284|222299.040|105.403 +638632.916|222303.173|105.123 +638619.996|222315.399|104.294 +638615.525|222319.617|103.123 +638611.218|222323.692|102.745 +638606.993|222327.694|102.785 +638602.744|222331.721|102.721 +638598.340|222335.881|101.709 +638593.939|222340.039|100.755 +638589.610|222344.129|99.920 +638585.401|222348.113|99.648 +638581.186|222352.103|99.371 +638572.950|222359.909|99.508 +638560.429|222371.762|98.758 +638552.047|222379.693|97.728 +638543.966|222387.350|97.875 +638531.848|222398.826|97.423 +638520.741|222409.402|100.944 +638517.050|222412.913|102.032 +638513.142|222416.620|102.431 +638509.271|222420.290|102.562 +638505.412|222423.947|102.754 +638501.520|222427.638|102.812 +638497.609|222431.342|102.824 +638493.684|222435.060|102.556 +638489.934|222438.614|102.824 +638486.082|222442.269|102.885 +638482.281|222445.868|102.962 +638478.450|222449.499|102.934 +638474.615|222453.132|102.895 +638470.805|222456.741|102.764 +638466.919|222460.414|102.133 +638462.420|222464.635|99.298 +638457.982|222468.805|96.741 +638453.660|222472.865|94.253 +638449.625|222476.672|92.918 +638445.729|222480.357|92.364 +638442.026|222483.865|92.367 +638434.644|222490.854|92.096 +638430.861|222494.429|91.635 +638427.100|222497.989|91.260 +638423.512|222501.388|91.157 +638598.023|222334.025|102.032 +638606.591|222325.902|102.712 +638610.815|222321.891|102.690 +638615.162|222317.773|103.248 +638619.621|222313.558|104.379 +638636.806|222297.257|105.266 +638641.228|222293.069|106.086 +638645.694|222288.838|106.653 +638650.189|222284.586|107.634 +638654.551|222280.450|107.985 +638667.956|222267.755|110.018 +638672.361|222263.579|110.420 +638676.863|222259.315|111.091 +638685.839|222250.808|112.097 +638694.767|222242.347|112.944 +638699.284|222238.068|113.557 +638703.743|222233.834|113.624 +638717.261|222221.023|114.956 +638721.869|222216.661|115.922 +638726.380|222212.382|116.096 +638730.834|222208.154|115.980 +638735.308|222203.912|116.275 +638739.868|222199.586|116.513 +638753.590|222186.587|118.180 +638758.174|222182.237|118.378 +638762.740|222177.909|118.763 +638767.343|222173.547|119.107 +638771.930|222169.195|119.400 +638776.474|222164.882|119.448 +638781.025|222160.566|119.543 +638785.573|222156.247|119.360 +638790.130|222151.922|119.238 +638794.726|222147.560|119.387 +638808.558|222134.438|119.918 +638817.805|222125.666|120.128 +638822.448|222121.265|120.384 +638827.129|222116.824|120.607 +638831.838|222112.359|121.036 +638836.478|222107.963|121.344 +638841.184|222103.495|121.497 +638850.614|222094.561|122.615 +638855.342|222090.075|122.637 +638860.060|222085.606|123.286 +638864.766|222081.138|123.231 +638874.041|222072.332|122.853 +638883.380|222063.459|122.332 +638897.404|222050.137|121.408 +638911.489|222036.756|120.369 +638916.177|222032.303|119.988 +638920.895|222027.816|119.494 +638925.601|222023.345|119.308 +638930.374|222018.815|119.259 +638935.209|222014.234|119.735 +638944.758|222005.172|119.802 +638949.571|222000.604|119.793 +638954.374|221996.050|120.110 +638959.190|221991.481|120.165 +638963.951|221986.955|119.796 +638968.731|221982.416|119.564 +638973.488|221977.896|119.186 +638978.347|221973.287|119.278 +638983.041|221968.816|118.372 +638992.584|221959.742|117.077 +638997.284|221955.264|115.763 +639002.039|221950.741|114.974 +639006.794|221946.218|114.178 +639011.552|221941.689|113.425 +639016.365|221937.114|112.731 +639030.931|221923.276|111.996 +639035.811|221918.646|112.023 +639040.764|221913.958|112.816 +639045.763|221909.224|113.657 +639050.725|221904.527|114.666 +639065.627|221890.421|117.053 +639070.537|221885.761|117.147 +639075.423|221881.122|116.964 +639080.458|221876.364|118.564 +639100.127|221857.704|119.186 +639115.117|221843.509|122.377 +639120.091|221838.788|122.417 +639149.566|221810.792|121.939 +639154.503|221806.098|121.612 +639159.405|221801.441|121.426 +639164.315|221796.777|121.442 +639169.277|221792.065|121.545 +639174.218|221787.371|121.286 +639179.128|221782.711|121.332 +639184.100|221777.992|121.698 +639189.089|221773.265|122.368 +639198.995|221763.859|122.569 +639203.863|221759.229|121.948 +639208.846|221754.492|121.792 +639213.781|221749.804|121.582 +639218.710|221745.120|121.274 +639223.647|221740.432|121.137 +639228.585|221735.738|121.064 +639243.441|221721.629|120.750 +639248.376|221716.941|120.655 +639273.117|221693.428|119.598 +639278.094|221688.701|119.430 +639283.026|221684.016|119.265 +639292.965|221674.564|118.479 +639297.891|221669.883|118.110 +639302.871|221665.152|118.019 +639307.843|221660.425|117.684 +639312.771|221655.743|117.464 +639317.749|221651.012|117.174 +639322.723|221646.285|116.845 +639327.700|221641.554|116.644 +639332.672|221636.827|116.181 +639337.603|221632.139|115.955 +639342.581|221627.409|115.690 +639347.604|221622.632|115.245 +639352.535|221617.948|114.980 +639357.516|221613.214|114.742 +639362.496|221608.481|114.480 +639372.457|221599.010|113.733 +639377.441|221594.274|113.447 +639382.375|221589.583|112.959 +639387.362|221584.843|112.691 +639392.345|221580.110|112.578 +639397.326|221575.364|111.484 +639407.302|221565.879|110.673 +639422.283|221551.626|108.686 +639427.279|221546.871|107.936 +639432.277|221542.116|107.439 +639437.230|221537.404|106.796 +639442.235|221532.646|106.205 +639452.251|221523.112|104.714 +639457.262|221518.342|103.885 +639462.279|221513.566|103.071 +639467.250|221508.835|102.242 +639472.267|221504.056|101.599 +639477.287|221499.277|100.892 +639482.307|221494.497|100.322 +639497.377|221480.129|96.890 +639512.370|221465.907|98.847 +639517.399|221461.125|98.466 +639522.364|221456.406|98.585 +639527.323|221451.703|99.011 +639537.342|221442.172|98.277 +639542.368|221437.393|98.173 +639547.410|221432.595|97.673 +639557.389|221423.107|97.167 +639577.146|221404.395|101.877 +639591.819|221390.524|107.137 +639596.772|221385.824|107.598 +639601.774|221381.066|107.168 +639606.730|221376.363|107.634 +639626.658|221357.407|106.165 +639631.623|221352.680|105.769 +639636.695|221347.846|104.525 +639641.621|221343.158|104.123 +639651.691|221333.563|102.312 +639656.608|221328.890|102.209 +639661.558|221324.187|102.312 +639666.431|221319.563|102.867 +639671.332|221314.918|103.690 +639680.967|221305.807|106.942 +639685.826|221301.199|107.665 +639690.684|221296.593|108.396 +639695.561|221291.963|108.863 +639700.356|221287.422|109.823 +639705.202|221282.829|110.679 +639719.741|221269.033|112.200 +639724.606|221264.412|112.346 +639729.482|221259.776|112.362 +639734.411|221255.086|111.819 +639739.266|221250.477|112.139 +639743.921|221246.076|113.608 +639748.746|221241.501|114.273 +639753.555|221236.935|114.587 +639758.368|221232.363|114.870 +639763.181|221227.794|115.190 +639777.528|221214.172|116.193 +639782.249|221209.689|116.516 +639801.306|221191.590|117.309 +639806.094|221187.039|117.129 +639810.904|221182.464|116.772 +639815.713|221177.889|116.440 +639820.499|221173.332|115.913 +639825.312|221168.754|115.638 +639830.115|221164.182|115.029 +639834.870|221159.659|114.888 +639839.662|221155.099|114.465 +639844.398|221150.591|114.114 +639853.923|221141.529|113.505 +639858.715|221136.966|112.819 +639863.457|221132.455|112.551 +639868.234|221127.908|112.033 +639872.934|221123.436|111.789 +639887.098|221109.958|110.697 +639891.825|221105.459|110.338 +639896.562|221100.945|109.582 +639901.216|221096.519|109.466 +639906.011|221091.950|108.713 +639910.644|221087.546|108.463 +639915.395|221083.020|107.732 +639920.080|221078.557|107.153 +639924.750|221074.110|106.714 +639929.413|221069.675|106.366 +639938.704|221060.833|105.641 +639943.455|221056.304|104.763 +639952.590|221047.620|104.601 +639957.223|221043.216|104.605 +639961.780|221038.881|104.477 +639966.288|221034.596|104.696 +639970.735|221030.377|105.333 +639975.203|221026.144|106.177 +639979.620|221021.950|106.699 +639984.015|221017.783|107.384 +639988.538|221013.485|107.585 +639993.004|221009.246|107.857 +639997.457|221005.012|107.902 +640001.980|221000.711|107.854 +640006.510|220996.404|107.771 +640011.005|220992.131|107.637 +640015.513|220987.843|107.433 +640020.037|220983.536|107.162 +640024.526|220979.265|107.104 +640029.037|220974.974|106.662 +640033.597|220970.633|106.257 +640038.090|220966.357|105.967 +640042.546|220962.123|105.918 +640047.008|220957.878|105.842 +640051.416|220953.687|105.824 +640055.863|220949.456|105.601 +640060.313|220945.222|105.376 +640064.781|220940.970|105.071 +640069.237|220936.731|104.861 +640073.669|220932.515|104.541 +640078.095|220928.300|104.254 +640080.402|220923.173|103.949 +640076.013|220927.337|104.242 +640071.588|220931.534|104.489 +640067.107|220935.780|104.775 +640062.639|220940.016|105.007 +640058.173|220944.250|105.257 +640053.766|220948.429|105.495 +640049.273|220952.687|105.653 +640044.850|220956.878|105.732 +640040.345|220961.148|105.732 +640035.874|220965.388|105.848 +640031.381|220969.652|106.116 +640026.861|220973.941|106.564 +640022.289|220978.284|107.055 +640017.729|220982.606|107.189 +640013.209|220986.895|107.421 +640008.692|220991.180|107.656 +640004.099|220995.536|107.771 +639999.560|220999.836|107.872 +639995.040|221004.122|107.881 +639990.483|221008.441|107.838 +639985.957|221012.726|107.610 +639981.443|221017.003|107.339 +639976.941|221021.261|106.677 +639972.421|221025.537|106.132 +639967.974|221029.737|105.135 +639963.453|221034.014|104.623 +639958.833|221038.394|104.477 +639954.218|221042.768|104.620 +639949.567|221047.178|104.714 +639944.909|221051.592|104.541 +639940.212|221056.054|105.007 +639930.678|221065.109|106.299 +639925.990|221069.553|106.430 +639921.232|221074.068|106.738 +639911.665|221083.151|107.826 +639906.867|221087.710|108.524 +639902.106|221092.228|108.972 +639897.232|221096.854|109.570 +639892.520|221101.326|109.740 +639887.683|221105.922|110.502 +639882.858|221110.500|110.832 +639873.266|221119.605|111.527 +639868.450|221124.174|111.883 +639858.767|221133.363|112.700 +639853.841|221138.039|113.249 +639849.034|221142.605|113.672 +639839.305|221151.837|114.346 +639834.428|221156.464|114.629 +639824.644|221165.752|115.544 +639819.764|221170.385|115.961 +639814.833|221175.063|116.419 +639809.977|221179.669|116.675 +639805.064|221184.332|117.046 +639800.175|221188.971|117.248 +639790.470|221198.167|117.019 +639785.602|221202.773|116.605 +639780.719|221207.400|116.379 +639775.849|221212.011|116.047 +639766.080|221221.268|115.705 +639761.243|221225.846|115.102 +639756.338|221230.488|114.690 +639751.419|221235.149|114.440 +639746.557|221239.754|114.130 +639741.677|221244.372|113.502 +639736.871|221248.907|112.069 +639731.970|221253.546|111.691 +639726.934|221258.329|112.295 +639722.015|221262.989|112.167 +639717.040|221267.707|112.148 +639702.315|221281.640|110.387 +639692.458|221290.961|108.783 +639682.631|221300.257|107.387 +639677.691|221304.930|106.452 +639672.863|221309.480|104.571 +639667.937|221314.135|103.373 +639662.981|221318.822|102.590 +639657.979|221323.565|102.474 +639652.974|221328.308|102.401 +639648.012|221333.017|102.471 +639637.847|221342.676|104.147 +639632.797|221347.480|104.998 +639627.758|221352.268|105.690 +639622.756|221357.011|105.805 +639607.614|221371.401|108.018 +639602.621|221376.125|107.326 +639597.592|221380.892|107.284 +639592.593|221385.638|107.643 +639572.879|221404.228|100.325 +639568.045|221408.766|97.018 +639563.003|221413.548|97.210 +639552.978|221423.055|97.369 +639547.934|221427.844|97.716 +639542.890|221432.635|98.149 +639537.851|221437.417|98.490 +639532.807|221442.206|98.999 +639527.777|221446.979|99.179 +639522.809|221451.685|98.963 +639517.753|221456.477|98.588 +639512.723|221461.250|98.880 +639507.749|221465.968|98.947 +639497.718|221475.450|96.978 +639477.616|221494.564|100.606 +639467.573|221504.102|101.752 +639462.550|221508.875|102.474 +639447.499|221523.182|104.970 +639442.488|221527.943|105.754 +639437.529|221532.658|106.491 +639432.524|221537.413|107.140 +639427.568|221542.116|107.646 +639422.566|221546.868|108.314 +639402.632|221565.805|110.768 +639387.716|221579.976|112.459 +639382.775|221584.663|112.880 +639377.788|221589.397|113.142 +639372.802|221594.128|113.331 +639367.864|221598.815|113.700 +639357.946|221608.231|114.507 +639353.011|221612.915|114.803 +639348.030|221617.643|115.065 +639343.096|221622.325|115.379 +639338.118|221627.052|115.849 +639333.135|221631.776|115.971 +639328.252|221636.412|116.376 +639323.275|221641.137|116.672 +639318.343|221645.819|117.022 +639308.480|221655.176|117.549 +639303.551|221659.855|117.845 +639298.574|221664.579|118.159 +639293.645|221669.255|118.522 +639278.847|221683.294|119.037 +639273.973|221687.921|119.610 +639264.116|221697.275|120.247 +639244.423|221715.953|120.805 +639239.470|221720.647|120.579 +639224.720|221734.641|121.350 +639219.819|221739.289|121.262 +639214.884|221743.971|121.512 +639209.992|221748.610|121.707 +639205.064|221753.288|122.070 +639200.184|221757.921|122.441 +639195.252|221762.600|122.771 +639190.357|221767.242|122.917 +639180.427|221776.639|121.667 +639175.501|221781.306|121.381 +639170.591|221785.963|121.359 +639165.693|221790.608|121.591 +639160.773|221795.272|121.469 +639155.866|221799.923|121.582 +639150.965|221804.574|121.783 +639146.137|221809.161|122.384 +639116.763|221837.011|122.509 +639111.904|221841.610|122.192 +639097.000|221855.707|119.619 +639072.405|221878.988|117.120 +639067.553|221883.591|117.135 +639062.658|221888.233|117.242 +639057.778|221892.856|117.022 +639052.874|221897.499|116.553 +639047.869|221902.223|115.068 +639042.895|221906.923|113.974 +639028.176|221920.859|112.508 +639013.719|221934.568|112.953 +639008.970|221939.086|113.803 +639004.234|221943.581|114.337 +638985.354|221961.525|117.516 +638971.163|221975.003|119.345 +638966.451|221979.475|119.726 +638961.723|221983.964|119.966 +638956.987|221988.454|120.174 +638952.271|221992.932|120.546 +638928.439|222015.505|119.921 +638923.666|222020.022|119.607 +638919.021|222024.430|119.902 +638914.324|222028.883|120.213 +638909.645|222033.321|120.652 +638905.003|222037.725|121.033 +638900.333|222042.157|121.570 +638886.367|222055.398|122.188 +638881.747|222059.777|122.445 +638877.053|222064.225|122.539 +638853.891|222086.179|123.039 +638844.588|222094.985|122.408 +638839.913|222099.408|122.140 +638835.203|222103.861|121.326 +638830.567|222108.247|121.045 +638825.931|222112.639|120.777 +638821.280|222117.037|120.451 +638816.629|222121.442|120.137 +638784.521|222151.846|118.958 +638780.068|222156.064|119.134 +638775.536|222160.359|119.153 +638761.908|222173.264|118.525 +638757.342|222177.583|118.138 +638734.601|222199.099|116.208 +638730.084|222203.375|115.952 +638725.719|222207.514|116.281 +638721.223|222211.769|115.916 +638716.566|222216.162|114.693 +638712.125|222220.368|114.386 +638698.686|222233.084|113.291 +638694.261|222237.269|112.907 +638680.983|222249.833|111.871 +638676.536|222254.042|111.453 +638672.031|222258.300|110.774 +638667.581|222262.506|110.143 +638658.700|222270.901|108.777 +638645.413|222283.462|106.979 +638640.981|222287.653|106.321 +638636.592|222291.801|105.665 +638632.164|222295.989|105.071 +638614.936|222312.290|103.815 +638610.623|222316.365|103.166 +638606.347|222320.412|102.946 +638593.533|222332.531|101.995 +638589.181|222336.637|101.032 +638576.202|222348.896|98.865 +638572.136|222352.746|99.066 +638567.985|222356.672|98.890 +638564.031|222360.421|99.386 +638535.414|222387.496|98.371 +638512.276|222409.442|101.456 +638508.668|222412.871|102.690 +638504.775|222416.556|102.727 +638500.898|222420.229|102.846 +638497.082|222423.840|103.020 +638493.159|222427.553|102.974 +638489.291|222431.214|102.962 +638485.399|222434.899|102.849 +638481.647|222438.450|103.123 +638477.846|222442.052|103.193 +638474.070|222445.625|103.181 +638470.223|222449.264|103.102 +638466.453|222452.833|103.126 +638462.630|222456.448|102.968 +638458.647|222460.200|101.761 +638454.178|222464.391|98.874 +638445.485|222472.551|93.946 +638441.514|222476.297|92.879 +638426.612|222490.382|91.620 +638422.860|222493.929|91.279 +638419.266|222497.328|91.367 +638412.030|222504.171|90.971 +638604.241|222319.727|102.879 +638608.529|222315.655|103.172 +638612.778|222311.616|103.303 +638625.699|222299.351|104.376 +638630.091|222295.178|104.787 +638634.468|222291.024|105.391 +638652.253|222274.156|108.158 +638656.584|222270.041|108.396 +638661.156|222265.710|109.356 +638665.588|222261.504|109.905 +638670.130|222257.200|110.765 +638674.583|222252.972|111.200 +638679.054|222248.726|111.773 +638683.468|222244.538|112.042 +638687.948|222240.280|112.450 +638692.508|222235.955|113.008 +638696.854|222231.822|113.011 +638701.378|222227.531|113.425 +638719.465|222210.361|115.324 +638724.146|222205.926|116.467 +638728.490|222201.787|115.769 +638732.949|222197.547|115.721 +638751.338|222180.104|118.049 +638760.338|222171.545|118.125 +638769.565|222162.788|119.006 +638774.106|222158.472|119.058 +638778.660|222154.141|118.915 +638783.165|222149.858|118.787 +638815.434|222119.201|119.973 +638820.137|222114.736|120.354 +638824.785|222110.323|120.698 +638829.418|222105.924|120.972 +638838.910|222096.917|122.143 +638848.276|222088.020|122.582 +638852.970|222083.567|123.072 +638867.064|222070.174|123.456 +638871.697|222065.767|123.292 +638876.355|222061.338|122.969 +638881.021|222056.900|122.716 +638885.642|222052.499|122.161 +638899.672|222039.152|121.454 +638904.363|222034.689|121.097 +638909.041|222030.236|120.698 +638913.738|222025.768|120.433 +638918.414|222021.318|120.018 +638923.196|222016.773|120.067 +638937.501|222003.182|120.411 +638942.326|221998.595|120.533 +638956.615|221985.010|120.235 +638961.388|221980.471|119.991 +638966.155|221975.936|119.701 +638970.898|221971.422|119.235 +638980.374|221962.394|117.821 +638985.184|221957.816|117.546 +639004.185|221939.713|114.343 +639018.471|221926.095|111.883 +639023.363|221921.450|112.033 +639033.171|221912.135|112.642 +639043.132|221902.695|114.480 +639053.139|221893.222|117.013 +639058.004|221888.598|117.114 +639062.938|221883.914|117.522 +639067.806|221879.281|117.168 +639082.717|221865.150|119.823 +639107.473|221841.668|122.259 +639151.836|221799.536|121.728 +639156.780|221794.836|121.554 +639161.733|221790.133|121.466 +639166.686|221785.430|121.448 +639171.645|221780.720|121.548 +639176.617|221776.002|121.893 +639191.515|221761.868|122.807 +639196.453|221757.178|122.646 +639201.406|221752.465|121.923 +639206.356|221747.765|122.039 +639216.256|221738.356|121.390 +639221.246|221733.616|121.411 +639241.085|221714.774|121.161 +639246.059|221710.046|120.893 +639251.040|221705.316|120.835 +639275.896|221681.691|119.317 +639300.808|221658.014|117.866 +639315.776|221643.789|116.970 +639320.751|221639.061|116.812 +639325.774|221634.288|116.470 +639335.720|221624.830|115.657 +639340.700|221620.100|115.541 +639345.720|221615.323|115.081 +639350.701|221610.593|114.849 +639355.678|221605.862|114.596 +639360.701|221601.083|113.867 +639370.665|221591.616|113.447 +639375.645|221586.879|113.145 +639380.629|221582.146|113.026 +639390.642|221572.618|111.551 +639400.612|221563.135|110.600 +639420.579|221544.143|108.317 +639435.572|221529.876|106.427 +639440.577|221525.115|105.680 +639455.610|221510.801|103.120 +639460.627|221506.028|102.367 +639465.595|221501.304|101.770 +639470.612|221496.536|101.212 +639475.632|221491.763|100.630 +639495.676|221472.692|97.033 +639505.564|221463.341|98.999 +639510.532|221458.625|99.039 +639515.549|221453.861|99.002 +639520.474|221449.189|98.966 +639545.346|221425.573|97.835 +639550.339|221420.830|97.527 +639555.267|221416.154|97.640 +639565.213|221406.712|97.094 +639570.023|221402.185|99.850 +639574.814|221397.680|102.870 +639589.372|221383.937|107.668 +639594.312|221379.246|107.491 +639599.253|221374.555|107.342 +639604.188|221369.874|107.345 +639614.033|221360.528|107.028 +639619.026|221355.773|106.101 +639623.942|221351.104|105.757 +639628.913|221346.383|105.354 +639633.802|221341.734|104.736 +639638.819|221336.961|103.708 +639643.782|221332.237|102.831 +639648.695|221327.573|102.739 +639653.624|221322.895|102.477 +639658.488|221318.277|102.474 +639663.374|221313.647|102.864 +639668.163|221309.118|103.952 +639687.380|221290.951|108.604 +639721.116|221258.987|112.063 +639725.977|221254.375|112.264 +639730.863|221249.733|111.719 +639735.706|221245.143|112.164 +639740.333|221240.778|113.956 +639745.201|221236.161|114.148 +639750.032|221231.579|114.251 +639754.778|221227.081|114.767 +639759.600|221222.512|115.032 +639773.998|221208.863|116.025 +639797.953|221186.146|116.961 +639802.756|221181.589|117.074 +639807.572|221177.014|116.687 +639812.416|221172.415|116.486 +639817.265|221167.803|115.852 +639822.078|221163.234|115.583 +639826.924|221158.628|115.059 +639831.740|221154.053|114.812 +639841.369|221144.906|114.069 +639855.783|221131.209|112.819 +639860.611|221126.618|112.264 +639865.378|221122.092|111.868 +639870.184|221117.523|111.557 +639879.743|221108.440|110.704 +639884.528|221103.892|110.274 +639889.317|221099.342|109.850 +639894.081|221094.818|109.643 +639898.842|221090.295|109.137 +639908.400|221081.203|107.912 +639917.953|221072.126|106.900 +639922.683|221067.630|106.403 +639936.860|221054.158|105.208 +639941.526|221049.729|104.952 +639946.211|221045.279|104.903 +639950.807|221040.914|104.821 +639955.471|221036.489|104.647 +639960.043|221032.157|105.114 +639964.563|221027.872|105.580 +639969.053|221023.623|106.284 +639973.582|221019.328|106.726 +639978.081|221015.070|107.393 +639982.586|221010.797|107.707 +639987.106|221006.512|107.939 +639991.650|221002.202|108.052 +639996.168|220997.913|108.027 +640000.746|220993.567|107.954 +640005.296|220989.248|107.787 +640009.865|220984.907|107.518 +640014.437|220980.564|107.244 +640018.988|220976.245|107.144 +640023.514|220971.941|106.604 +640028.096|220967.589|106.071 +640032.640|220963.269|105.775 +640037.160|220958.978|105.647 +640041.629|220954.738|105.549 +640046.082|220950.507|105.546 +640050.575|220946.243|105.357 +640055.064|220941.982|105.208 +640059.508|220937.761|105.037 +640063.986|220933.506|104.711 +640068.405|220929.309|104.455 +640072.868|220925.072|104.260 +640077.296|220920.866|103.998 +640079.592|220915.730|103.519 +640075.056|220920.030|103.782 +640070.573|220924.282|104.047 +640066.049|220928.571|104.288 +640061.483|220932.902|104.504 +640056.963|220937.191|104.778 +640052.455|220941.464|105.001 +640047.959|220945.728|105.181 +640043.378|220950.072|105.287 +640038.849|220954.363|105.424 +640034.323|220958.652|105.540 +640029.793|220962.943|105.702 +640025.200|220967.299|105.985 +640020.570|220971.691|106.500 +640015.989|220976.035|107.040 +640011.426|220980.360|107.204 +640006.851|220984.694|107.464 +640002.279|220989.031|107.747 +639997.737|220993.335|107.854 +639993.150|220997.678|107.954 +639988.587|221002.001|107.930 +639984.088|221006.259|107.829 +639979.568|221010.535|107.564 +639975.011|221014.848|107.247 +639970.540|221019.072|106.702 +639966.056|221023.315|106.266 +639957.022|221031.856|105.205 +639952.545|221036.089|104.760 +639947.890|221040.497|104.851 +639943.291|221044.855|104.931 +639938.649|221049.251|104.986 +639933.982|221053.676|105.245 +639929.307|221058.108|105.577 +639924.701|221062.476|105.812 +639919.907|221067.024|106.348 +639915.219|221071.471|106.860 +639910.488|221075.957|107.357 +639905.779|221080.423|107.738 +639901.030|221084.931|108.439 +639891.539|221093.934|109.527 +639886.887|221098.342|109.585 +639882.023|221102.963|110.563 +639872.583|221111.912|111.155 +639867.859|221116.389|111.502 +639863.104|221120.900|111.773 +639858.319|221125.439|112.285 +639853.515|221129.998|113.002 +639848.778|221134.485|113.197 +639839.220|221143.553|113.992 +639834.407|221148.116|114.511 +639829.634|221152.639|114.727 +639824.806|221157.220|115.053 +639820.005|221161.774|115.559 +639815.171|221166.358|115.977 +639810.398|221170.884|116.333 +639805.539|221175.487|116.592 +639800.717|221180.062|117.016 +639791.110|221189.157|116.687 +639786.309|221193.705|116.556 +639781.530|221198.225|116.208 +639776.708|221202.788|115.830 +639771.901|221207.339|115.785 +639757.411|221221.045|114.575 +639752.568|221225.633|114.517 +639742.833|221234.847|113.938 +639738.002|221239.410|113.270 +639733.228|221243.915|112.005 +639728.379|221248.502|111.539 +639723.399|221253.226|112.045 +639718.534|221257.832|111.840 +639694.049|221280.988|109.420 +639689.115|221285.657|108.969 +639684.241|221290.266|108.357 +639674.384|221299.580|106.692 +639669.519|221304.171|105.315 +639664.648|221308.755|103.340 +639659.777|221313.357|102.626 +639654.760|221318.112|102.703 +639649.756|221322.852|102.590 +639644.736|221327.610|102.745 +639639.676|221332.417|103.556 +639634.628|221337.208|104.236 +639624.485|221346.843|105.793 +639619.471|221351.598|106.077 +639614.411|221356.395|106.400 +639609.348|221361.199|106.814 +639604.337|221365.948|107.147 +639599.296|221370.730|107.302 +639594.251|221375.512|107.512 +639589.204|221380.298|107.832 +639584.211|221385.019|107.104 +639579.197|221389.750|105.796 +639574.269|221394.389|103.721 +639569.371|221398.988|100.843 +639559.452|221408.324|96.436 +639554.304|221413.222|97.929 +639549.287|221417.968|97.539 +639544.240|221422.756|97.902 +639539.131|221427.606|98.688 +639534.035|221432.443|99.219 +639523.928|221442.020|99.429 +639518.859|221446.823|99.392 +639503.701|221461.183|99.274 +639498.629|221465.992|99.417 +639493.603|221470.732|97.853 +639463.138|221499.652|101.758 +639458.067|221504.464|102.422 +639442.869|221518.900|104.928 +639437.806|221523.706|105.726 +639432.750|221528.507|106.436 +639427.696|221533.308|107.198 +639422.643|221538.105|107.896 +639417.595|221542.897|108.497 +639412.545|221547.688|109.198 +639397.417|221562.044|110.667 +639392.422|221566.784|111.115 +639372.375|221585.809|113.383 +639367.340|221590.583|113.544 +639357.321|221600.086|114.285 +639352.331|221604.811|114.236 +639347.351|221609.538|114.843 +639342.319|221614.311|115.062 +639337.335|221619.036|115.538 +639322.397|221633.206|116.656 +639317.462|221637.885|116.946 +639312.479|221642.609|117.101 +639302.524|221652.058|117.711 +639297.595|221656.737|118.080 +639292.666|221661.412|118.525 +639272.903|221680.170|119.695 +639248.294|221703.520|120.905 +639243.365|221708.199|121.167 +639238.476|221712.835|121.338 +639233.538|221717.520|121.414 +639223.760|221726.795|121.777 +639218.804|221731.492|121.533 +639213.952|221736.091|121.512 +639209.060|221740.734|121.682 +639204.177|221745.370|121.996 +639199.279|221750.012|122.097 +639194.405|221754.642|122.624 +639189.562|221759.238|122.844 +639184.676|221763.874|123.164 +639179.832|221768.470|123.399 +639174.907|221773.134|123.078 +639169.945|221777.828|122.182 +639165.065|221782.452|121.875 +639160.185|221787.075|121.612 +639155.323|221791.687|121.689 +639150.465|221796.296|121.826 +639145.631|221800.883|122.356 +639106.735|221837.767|122.423 +639096.856|221847.097|119.863 +639091.986|221851.718|120.079 +639072.494|221870.173|118.287 +639067.556|221874.843|117.299 +639062.704|221879.445|117.339 +639057.921|221883.984|117.650 +639053.035|221888.611|117.357 +639043.227|221897.886|115.495 +639038.231|221902.604|114.154 +639028.398|221911.900|112.328 +639023.598|221916.451|112.148 +639009.187|221930.128|113.054 +638999.707|221939.134|114.504 +638980.886|221957.029|117.787 +638976.195|221961.482|118.321 +638966.777|221970.431|119.503 +638962.019|221974.948|119.890 +638957.297|221979.429|120.192 +638952.561|221983.925|120.396 +638947.913|221988.338|120.945 +638943.152|221992.852|120.975 +638924.163|222010.860|120.561 +638919.429|222015.350|120.518 +638905.353|222028.706|121.140 +638900.653|222033.171|121.420 +638895.996|222037.588|121.707 +638891.345|222042.008|122.024 +638882.057|222050.822|122.487 +638877.400|222055.245|122.813 +638854.138|222077.313|123.194 +638849.508|222081.705|123.142 +638844.835|222086.131|122.841 +638830.799|222099.426|121.597 +638826.133|222103.846|121.119 +638821.445|222108.283|120.515 +638816.760|222112.724|120.271 +638812.142|222117.095|119.869 +638807.543|222121.460|119.902 +638802.925|222125.834|119.540 +638798.313|222130.205|119.247 +638784.521|222143.275|118.452 +638780.007|222147.557|118.528 +638775.511|222151.824|118.750 +638770.979|222156.122|118.759 +638766.459|222160.410|118.857 +638761.942|222164.693|118.714 +638757.284|222169.100|118.052 +638743.690|222181.984|117.260 +638734.494|222190.686|116.013 +638730.008|222194.938|115.632 +638725.542|222199.172|115.672 +638721.117|222203.375|115.940 +638716.456|222207.780|114.666 +638711.927|222212.062|113.874 +638707.486|222216.274|113.864 +638698.491|222224.793|113.002 +638694.053|222229.000|112.801 +638680.761|222241.594|111.883 +638676.369|222245.755|111.749 +638671.934|222249.955|111.130 +638667.472|222254.179|110.679 +638663.009|222258.401|109.981 +638649.662|222271.032|107.985 +638645.261|222275.198|107.439 +638640.847|222279.380|106.842 +638636.355|222283.626|105.906 +638627.570|222291.938|104.577 +638618.947|222300.113|104.105 +638610.206|222308.385|102.916 +638606.045|222312.335|103.233 +638601.769|222316.389|103.004 +638593.344|222324.372|102.745 +638588.952|222328.523|101.800 +638584.633|222332.605|101.002 +638575.980|222340.791|99.600 +638571.822|222344.729|99.368 +638559.295|222356.598|98.725 +638555.403|222360.299|99.496 +638546.957|222368.288|98.173 +638542.872|222372.162|98.137 +638538.840|222375.984|98.118 +638522.792|222391.199|98.356 +638518.790|222394.991|98.100 +638511.130|222402.270|99.313 +638507.643|222405.598|101.051 +638503.937|222409.128|102.075 +638500.109|222412.764|102.605 +638496.247|222416.428|102.785 +638492.379|222420.101|102.949 +638488.542|222423.737|103.050 +638484.680|222427.398|103.053 +638480.812|222431.064|102.837 +638476.990|222434.688|103.026 +638473.192|222438.291|103.123 +638469.391|222441.897|103.212 +638465.550|222445.536|103.154 +638461.774|222449.115|103.163 +638458.010|222452.684|103.017 +638454.181|222456.311|102.840 +638449.814|222460.417|100.346 +638445.418|222464.550|97.774 +638441.517|222468.235|96.960 +638436.747|222472.700|92.787 +638433.007|222476.242|92.653 +638421.757|222486.892|91.593 +638407.209|222500.681|91.071 +638593.600|222321.555|102.821 +638601.988|222313.591|102.949 +638606.243|222309.552|103.084 +638610.340|222305.654|102.489 +638614.729|222301.497|103.303 +638619.063|222297.391|103.873 +638623.349|222293.322|103.986 +638627.753|222289.152|104.690 +638632.136|222284.998|105.315 +638636.556|222280.816|106.141 +638640.969|222276.631|106.720 +638645.447|222272.391|107.653 +638649.808|222268.252|107.762 +638658.770|222259.769|109.506 +638667.673|222251.329|110.551 +638672.163|222247.074|111.185 +638676.613|222242.856|111.627 +638681.044|222238.653|112.005 +638689.917|222230.237|112.609 +638694.343|222226.037|112.749 +638698.823|222221.785|112.929 +638703.283|222217.554|113.300 +638707.772|222213.296|113.581 +638712.213|222209.081|113.611 +638716.843|222204.698|114.431 +638721.555|222200.242|115.736 +638725.935|222196.078|115.516 +638730.401|222191.838|115.495 +638734.985|222187.492|115.885 +638762.478|222161.422|118.403 +638767.056|222157.082|118.634 +638771.543|222152.815|118.360 +638780.632|222144.186|118.244 +638785.219|222139.830|118.321 +638794.409|222131.110|118.641 +638799.127|222126.639|119.305 +638803.766|222122.240|119.805 +638808.320|222117.915|119.464 +638812.990|222113.486|119.893 +638817.641|222109.073|120.247 +638822.399|222104.568|120.963 +638827.093|222100.115|121.329 +638831.814|222095.643|121.881 +638845.878|222082.302|122.731 +638850.608|222077.816|123.133 +638855.305|222073.356|123.341 +638859.981|222068.918|123.423 +638864.690|222064.450|123.408 +638869.329|222060.043|123.277 +638874.050|222055.556|123.045 +638883.362|222046.708|122.399 +638888.019|222042.282|122.103 +638892.732|222037.804|121.887 +638897.392|222033.376|121.649 +638902.098|222028.904|121.414 +638906.804|222024.433|121.189 +638920.959|222010.985|120.546 +638944.865|221988.293|121.100 +638949.647|221983.751|120.890 +638954.341|221979.286|120.357 +638959.102|221974.763|119.997 +638963.869|221970.230|119.704 +638973.409|221961.162|118.787 +638978.124|221956.673|118.086 +638992.404|221943.088|115.864 +638997.132|221938.583|114.858 +639001.905|221934.041|114.251 +639011.445|221924.958|112.569 +639021.144|221915.744|111.969 +639026.060|221911.084|112.353 +639030.995|221906.405|112.974 +639035.970|221901.699|114.053 +639040.941|221896.993|115.166 +639050.908|221887.559|117.251 +639055.855|221882.871|117.708 +639060.722|221878.241|117.348 +639065.621|221873.590|117.333 +639070.595|221868.881|118.205 +639095.247|221845.497|120.046 +639105.275|221836.002|122.195 +639144.768|221798.481|122.301 +639149.697|221793.793|121.844 +639154.647|221789.087|121.728 +639159.603|221784.378|121.756 +639164.617|221779.629|122.688 +639169.567|221774.926|122.640 +639179.558|221765.444|123.435 +639184.487|221760.759|123.097 +639189.467|221756.022|122.859 +639194.435|221751.295|122.435 +639199.364|221746.607|122.146 +639204.351|221741.870|122.045 +639209.328|221737.137|121.804 +639214.260|221732.449|121.551 +639219.255|221727.706|121.710 +639249.132|221699.308|120.884 +639264.101|221685.077|120.186 +639274.046|221675.622|119.613 +639299.043|221651.851|117.918 +639314.057|221637.571|116.970 +639319.035|221632.840|116.827 +639334.049|221618.557|115.708 +639339.072|221613.781|115.352 +639344.099|221609.005|114.940 +639359.128|221594.710|113.947 +639364.109|221589.973|113.657 +639369.141|221585.194|113.767 +639394.147|221561.395|110.804 +639409.164|221547.106|109.265 +639419.201|221537.553|108.040 +639424.197|221532.799|107.564 +639429.199|221528.038|106.784 +639434.198|221523.280|106.348 +639444.265|221513.688|104.309 +639459.310|221499.362|101.965 +639464.281|221494.625|101.179 +639474.361|221485.030|100.151 +639484.374|221475.487|98.396 +639499.327|221461.289|99.667 +639519.200|221442.398|99.517 +639534.075|221428.252|99.222 +639539.076|221423.491|98.533 +639544.036|221418.764|97.743 +639553.942|221409.348|97.814 +639568.538|221395.535|102.148 +639573.351|221390.993|104.583 +639587.924|221377.186|107.845 +639592.819|221372.531|107.625 +639597.763|221367.828|107.378 +639602.661|221363.168|107.137 +639607.565|221358.501|106.811 +639612.518|221353.789|106.534 +639617.425|221349.117|106.226 +639622.339|221344.444|105.918 +639642.038|221325.684|103.541 +639646.997|221320.959|102.745 +639651.865|221316.329|102.623 +639656.717|221311.718|102.736 +639666.364|221302.574|104.516 +639671.119|221298.072|105.988 +639685.463|221284.474|108.683 +639690.285|221279.899|109.265 +639694.985|221275.443|110.146 +639699.798|221270.880|110.850 +639723.850|221248.029|111.816 +639728.705|221243.406|111.548 +639733.454|221238.907|112.493 +639738.160|221234.445|113.395 +639747.697|221225.395|114.383 +639752.501|221220.832|114.754 +639757.283|221216.288|114.882 +639771.612|221202.675|115.590 +639776.394|221198.131|115.788 +639781.158|221193.610|116.202 +639785.883|221189.121|116.525 +639790.686|221184.555|116.586 +639795.447|221180.031|116.632 +639805.039|221170.909|116.556 +639809.834|221166.349|116.364 +639814.659|221161.759|115.943 +639819.441|221157.205|115.492 +639829.070|221148.040|114.547 +639833.892|221143.455|114.282 +639838.689|221138.890|113.843 +639843.523|221134.290|113.511 +639848.281|221129.764|113.066 +639853.125|221125.152|112.353 +639857.913|221120.598|112.103 +639862.711|221116.036|111.831 +639867.481|221111.497|111.386 +639872.257|221106.953|110.969 +639877.067|221102.377|110.661 +639886.680|221093.227|109.481 +639891.429|221088.713|109.372 +639901.058|221079.548|108.271 +639905.822|221075.006|107.412 +639910.613|221070.453|107.122 +639920.169|221061.357|106.095 +639924.920|221056.840|105.830 +639929.630|221052.360|105.522 +639934.388|221047.833|105.248 +639939.085|221043.368|105.083 +639943.708|221038.973|105.107 +639948.436|221034.483|105.126 +639953.011|221030.140|105.516 +639957.577|221025.808|105.991 +639962.176|221021.447|106.574 +639966.709|221017.143|106.964 +639975.874|221008.447|107.793 +639980.388|221004.162|108.034 +639985.021|220999.760|108.171 +639989.627|220995.383|108.174 +639994.205|220991.034|108.085 +639998.783|220986.678|107.997 +640003.452|220982.240|107.692 +640008.021|220977.894|107.412 +640012.572|220973.566|107.256 +640017.254|220969.109|106.653 +640021.887|220964.699|106.077 +640026.477|220960.331|105.772 +640031.076|220955.957|105.434 +640035.652|220951.605|105.266 +640040.175|220947.304|105.129 +640044.646|220943.052|105.022 +640049.182|220938.742|104.864 +640053.732|220934.414|104.641 +640058.228|220930.138|104.470 +640062.736|220925.852|104.257 +640067.198|220921.609|104.041 +640071.700|220917.330|103.891 +640076.187|220913.060|103.574 +640080.619|220908.847|103.321 +640076.803|220910.128|103.340 +640072.164|220914.529|103.614 +640067.585|220918.872|103.864 +640063.026|220923.197|104.019 +640058.405|220927.580|104.272 +640053.802|220931.948|104.452 +640049.194|220936.322|104.678 +640044.640|220940.641|104.894 +640039.974|220945.067|104.940 +640035.395|220949.410|105.053 +640030.756|220953.812|105.257 +640026.099|220958.234|105.592 +640021.393|220962.700|105.949 +640016.717|220967.144|106.455 +640011.990|220971.633|106.991 +640007.302|220976.083|107.326 +640002.623|220980.524|107.625 +639997.951|220984.962|107.921 +639993.257|220989.415|108.067 +639988.630|220993.801|108.113 +639984.012|220998.181|108.143 +639979.321|221002.628|108.009 +639974.749|221006.963|107.796 +639970.095|221011.370|107.470 +639965.511|221015.710|107.043 +639960.930|221020.051|106.607 +639956.306|221024.431|106.150 +639951.700|221028.789|105.571 +639947.119|221033.127|105.181 +639942.395|221037.607|105.101 +639937.710|221042.051|105.123 +639933.007|221046.511|105.272 +639928.255|221051.022|105.467 +639923.537|221055.499|105.784 +639918.782|221060.013|106.055 +639914.012|221064.543|106.452 +639909.251|221069.063|106.808 +639904.423|221073.647|107.317 +639894.888|221082.706|108.305 +639890.006|221087.351|109.341 +639885.299|221091.813|109.436 +639880.468|221096.406|110.158 +639875.689|221100.945|110.512 +639870.858|221105.532|110.917 +639866.124|221110.025|111.356 +639861.299|221114.609|111.792 +639856.545|221119.120|112.063 +639846.946|221128.237|113.051 +639842.143|221132.800|113.456 +639837.370|221137.326|113.593 +639832.545|221141.913|114.224 +639827.765|221146.449|114.504 +639822.977|221150.996|114.882 +639818.179|221155.553|115.376 +639803.765|221169.235|116.394 +639798.946|221173.814|116.790 +639789.434|221182.830|116.486 +639784.676|221187.341|116.391 +639779.951|221191.815|115.986 +639775.148|221196.372|115.925 +639770.417|221200.852|115.611 +639760.846|221209.923|115.202 +639756.058|221214.456|114.559 +639751.288|221218.979|114.709 +639746.490|221223.523|114.191 +639736.923|221232.585|113.410 +639732.177|221237.072|112.392 +639727.419|221241.571|111.466 +639722.560|221246.179|111.658 +639717.726|221250.764|111.627 +639712.855|221255.381|111.490 +639693.507|221273.712|110.112 +639688.752|221278.211|109.244 +639683.884|221282.819|108.573 +639679.059|221287.385|107.963 +639674.207|221291.970|107.067 +639669.434|221296.474|105.754 +639654.888|221310.224|102.901 +639649.981|221314.872|102.794 +639645.050|221319.551|103.044 +639630.032|221333.822|105.367 +639625.039|221338.561|106.007 +639620.138|221343.210|106.022 +639615.127|221347.961|106.296 +639610.168|221352.668|106.570 +639605.160|221357.419|106.869 +639600.158|221362.165|107.137 +639595.199|221366.871|107.518 +639590.204|221371.611|107.723 +639585.156|221376.399|108.067 +639580.261|221381.029|107.326 +639570.349|221390.384|104.373 +639565.497|221394.943|101.602 +639560.717|221399.396|96.024 +639555.603|221404.270|97.841 +639550.619|221408.992|97.750 +639545.541|221413.807|97.762 +639520.337|221437.728|99.597 +639515.262|221442.541|99.755 +639510.233|221447.308|99.962 +639505.192|221452.078|99.142 +639500.089|221456.931|100.350 +639495.078|221461.679|100.161 +639485.023|221471.171|97.204 +639459.618|221495.317|101.672 +639454.500|221500.176|102.392 +639439.309|221514.611|104.647 +639429.144|221524.276|106.607 +639424.090|221529.077|107.351 +639419.040|221533.868|107.814 +639413.947|221538.709|108.460 +639408.899|221543.500|109.073 +639403.809|221548.334|109.588 +639393.680|221557.951|110.588 +639383.607|221567.512|111.578 +639373.490|221577.120|112.740 +639368.455|221581.899|113.233 +639363.380|221586.724|114.123 +639358.345|221591.494|113.925 +639353.310|221596.267|113.901 +639343.205|221605.859|114.864 +639338.176|221610.632|115.291 +639333.144|221615.403|115.419 +639308.065|221639.204|117.324 +639303.036|221643.972|117.458 +639298.007|221648.739|117.656 +639293.032|221653.457|118.031 +639283.035|221662.939|118.939 +639278.018|221667.700|119.384 +639268.069|221677.134|120.140 +639263.083|221681.858|120.204 +639243.225|221700.686|121.436 +639218.478|221724.134|121.881 +639213.528|221728.822|121.792 +639208.578|221733.510|121.731 +639203.698|221738.140|122.161 +639198.745|221742.831|122.067 +639193.902|221747.421|122.320 +639188.982|221752.090|122.862 +639184.090|221756.726|123.106 +639179.201|221761.362|123.374 +639174.361|221765.950|123.700 +639164.559|221775.228|123.152 +639159.697|221779.833|123.161 +639154.769|221784.488|122.170 +639149.840|221789.154|121.932 +639145.039|221793.705|122.243 +639140.175|221798.313|122.350 +639135.292|221802.937|122.170 +639101.401|221835.042|122.362 +639091.583|221844.317|120.607 +639072.241|221862.632|119.921 +639062.365|221871.950|117.449 +639057.565|221876.501|117.540 +639052.804|221881.018|118.110 +639047.963|221885.590|117.318 +639033.254|221899.480|114.166 +639028.365|221904.094|113.044 +639023.485|221908.709|112.538 +639018.657|221913.278|112.103 +639009.187|221922.258|112.660 +638995.102|221935.632|114.983 +638990.371|221940.119|115.577 +638976.341|221953.442|118.004 +638971.718|221957.831|118.720 +638962.363|221966.713|120.046 +638957.636|221971.193|120.308 +638952.893|221975.686|120.445 +638948.208|221980.127|120.683 +638943.517|221984.580|121.289 +638938.808|221989.039|121.378 +638934.081|221993.517|121.323 +638919.828|222007.007|120.728 +638915.150|222011.439|120.771 +638901.153|222024.707|121.689 +638896.487|222029.130|121.899 +638891.820|222033.552|122.115 +638887.202|222037.929|122.341 +638882.539|222042.349|122.633 +638877.900|222046.744|122.734 +638868.640|222055.526|123.499 +638864.004|222059.912|123.350 +638859.380|222064.298|123.642 +638854.729|222068.699|123.426 +638850.069|222073.106|123.176 +638845.372|222077.553|123.021 +638826.651|222095.265|121.478 +638821.999|222099.664|121.122 +638817.284|222104.120|120.686 +638812.599|222108.546|119.838 +638807.954|222112.944|119.576 +638803.288|222117.357|119.229 +638798.655|222121.740|118.787 +638784.762|222134.886|117.985 +638780.224|222139.181|117.933 +638775.682|222143.488|118.162 +638771.156|222147.773|118.229 +638766.617|222152.071|118.226 +638762.097|222156.354|118.351 +638757.519|222160.688|118.144 +638734.628|222182.332|115.815 +638730.078|222186.636|115.349 +638725.634|222190.845|115.507 +638711.933|222203.796|113.797 +638707.385|222208.097|113.185 +638702.923|222212.318|113.075 +638694.023|222220.737|112.523 +638689.564|222224.961|112.487 +638680.673|222233.371|111.831 +638676.241|222237.568|111.737 +638671.797|222241.768|111.347 +638667.295|222246.026|110.661 +638662.836|222250.241|110.234 +638649.376|222262.955|107.912 +638644.980|222267.112|107.653 +638640.515|222271.334|107.061 +638636.050|222275.552|106.238 +638609.648|222300.497|102.523 +638605.512|222304.420|102.962 +638601.324|222308.388|103.154 +638597.148|222312.344|103.181 +638588.534|222320.498|102.288 +638579.771|222328.776|100.334 +638575.562|222332.763|100.060 +638571.328|222336.771|99.703 +638567.122|222340.752|99.487 +638562.989|222344.669|99.377 +638534.146|222371.991|98.124 +638530.174|222375.755|98.411 +638526.221|222379.504|98.554 +638514.130|222390.962|98.298 +638510.134|222394.744|98.100 +638506.269|222398.414|98.460 +638502.712|222401.809|100.130 +638499.036|222405.306|101.307 +638495.448|222408.728|102.846 +638491.596|222412.383|102.852 +638487.725|222416.053|103.020 +638483.936|222419.643|103.108 +638480.025|222423.350|103.145 +638476.191|222426.983|103.065 +638472.283|222430.686|102.919 +638468.534|222434.240|103.224 +638464.782|222437.797|103.309 +638461.012|222441.370|103.340 +638457.226|222444.960|103.309 +638453.489|222448.499|103.294 +638449.673|222452.114|103.166 +638445.763|222455.808|102.276 +638437.433|222463.654|98.768 +638433.223|222467.616|96.777 +638428.551|222471.987|92.818 +638420.845|222479.275|91.526 +638409.546|222489.955|89.794 +638402.914|222496.267|91.715 +638591.817|222315.712|103.337 +638596.020|222311.710|103.215 +638600.193|222307.742|103.184 +638604.418|222303.725|103.190 +638608.538|222299.796|102.721 +638630.472|222278.981|105.763 +638639.305|222270.596|106.948 +638657.096|222253.710|109.475 +638661.623|222249.415|110.252 +638666.091|222245.172|110.758 +638670.498|222240.988|111.228 +638688.347|222224.031|112.383 +638692.755|222219.837|112.453 +638697.266|222215.552|112.813 +638701.740|222211.303|112.990 +638710.692|222202.793|113.450 +638715.319|222198.407|114.255 +638720.016|222193.957|115.483 +638724.518|222189.677|115.666 +638728.916|222185.489|115.288 +638733.498|222181.137|115.681 +638738.143|222176.736|116.446 +638765.566|222150.684|118.211 +638770.116|222146.356|118.016 +638774.710|222141.991|118.110 +638779.239|222137.678|117.839 +638793.077|222124.535|118.638 +638797.756|222120.088|118.766 +638802.431|222115.650|119.183 +638807.086|222111.231|119.500 +638811.810|222106.750|120.302 +638816.531|222102.270|120.792 +638830.628|222088.883|121.999 +638844.750|222075.472|122.963 +638849.462|222070.994|123.271 +638858.890|222062.039|123.618 +638863.532|222057.623|123.505 +638882.216|222039.850|122.643 +638886.876|222035.415|122.399 +638891.589|222030.931|122.188 +638896.292|222026.457|121.932 +638900.982|222021.991|121.597 +638919.871|222004.026|121.021 +638938.967|221985.876|121.259 +638943.755|221981.322|121.097 +638948.467|221976.835|120.716 +638953.268|221972.272|120.710 +638957.947|221967.816|120.061 +638962.781|221963.217|119.963 +638972.272|221954.176|118.647 +638976.911|221949.751|117.705 +638981.788|221945.115|117.607 +638986.470|221940.649|116.598 +638991.179|221936.156|115.413 +638995.928|221931.630|114.602 +639000.680|221927.101|113.819 +639005.432|221922.572|113.026 +639010.199|221918.030|112.404 +639024.823|221904.134|112.834 +639029.764|221899.446|113.560 +639034.769|221894.710|114.995 +639049.600|221880.649|117.641 +639054.501|221875.989|117.650 +639059.342|221871.383|117.516 +639064.334|221866.653|118.570 +639088.971|221843.265|120.823 +639093.943|221838.559|121.932 +639098.871|221833.887|122.554 +639103.757|221829.235|122.094 +639133.198|221801.267|122.423 +639138.154|221796.555|122.380 +639143.055|221791.897|122.237 +639148.017|221787.182|122.326 +639152.955|221782.497|122.789 +639167.838|221768.373|124.017 +639177.647|221759.043|123.377 +639182.582|221754.352|123.161 +639187.513|221749.664|122.926 +639192.421|221744.989|122.252 +639197.310|221740.343|122.073 +639207.228|221730.916|121.817 +639212.172|221726.216|121.911 +639217.164|221721.476|121.984 +639261.805|221679.036|120.314 +639266.780|221674.305|120.201 +639276.759|221664.811|119.278 +639281.733|221660.083|119.092 +639286.695|221655.359|118.455 +639296.687|221645.855|117.882 +639301.704|221641.082|117.519 +639306.681|221636.352|117.391 +639326.670|221617.341|116.138 +639336.658|221607.834|114.870 +639341.688|221603.055|114.937 +639351.691|221593.542|114.258 +639356.717|221588.760|113.938 +639361.743|221583.981|113.770 +639371.750|221574.456|112.599 +639376.779|221569.667|111.862 +639381.812|221564.882|111.581 +639386.792|221560.145|111.222 +639396.860|221550.562|110.076 +639401.898|221545.768|109.509 +639416.970|221531.421|107.774 +639437.172|221512.176|104.355 +639457.314|221493.001|101.660 +639477.504|221473.777|98.621 +639482.566|221468.961|98.438 +639492.536|221459.515|100.453 +639497.544|221454.760|100.599 +639502.577|221449.969|99.929 +639512.592|221440.462|100.410 +639517.625|221435.674|99.947 +639522.639|221430.910|99.990 +639527.677|221426.115|99.426 +639532.627|221421.403|98.804 +639537.674|221416.599|98.207 +639542.707|221411.814|97.981 +639547.699|221407.068|97.658 +639557.633|221397.638|98.249 +639562.442|221393.121|101.998 +639582.008|221374.616|107.976 +639586.945|221369.922|107.811 +639591.932|221365.180|107.637 +639596.818|221360.537|107.616 +639606.742|221351.098|106.671 +639611.692|221346.389|106.436 +639616.602|221341.722|106.165 +639621.504|221337.059|106.013 +639626.414|221332.395|105.824 +639631.355|221327.689|105.156 +639646.159|221313.595|103.041 +639651.063|221308.935|103.120 +639655.903|221304.329|102.748 +639660.771|221299.715|103.382 +639665.474|221295.267|104.922 +639675.014|221286.239|107.488 +639679.827|221281.676|108.168 +639689.337|221272.660|109.811 +639694.183|221268.061|110.106 +639698.926|221263.559|110.502 +639708.524|221254.452|111.161 +639713.334|221249.883|111.359 +639718.098|221245.359|111.591 +639722.954|221240.745|111.335 +639727.650|221236.285|111.792 +639732.378|221231.811|112.971 +639746.588|221218.327|114.218 +639751.340|221213.819|114.672 +639756.009|221209.384|114.980 +639760.804|221204.833|115.050 +639765.555|221200.316|115.053 +639770.249|221195.863|115.650 +639774.919|221191.431|116.031 +639779.692|221186.896|115.910 +639784.368|221182.458|116.260 +639789.068|221177.995|116.422 +639793.747|221173.554|116.787 +639798.520|221169.010|116.294 +639803.238|221164.529|116.361 +639812.711|221155.516|115.754 +639817.454|221151.005|115.266 +639822.258|221146.433|114.681 +639826.982|221141.938|114.364 +639831.667|221137.478|114.029 +639836.464|221132.915|113.608 +639841.155|221128.450|113.270 +639860.089|221110.430|111.652 +639864.805|221105.947|111.295 +639869.532|221101.445|110.841 +639874.257|221096.949|110.460 +639878.966|221092.465|109.862 +639883.687|221087.973|109.548 +639893.172|221078.935|107.988 +639897.833|221074.503|107.878 +639902.518|221070.047|107.607 +639907.209|221065.585|107.311 +639911.921|221061.095|106.558 +639916.612|221056.627|105.967 +639921.336|221052.131|105.528 +639925.951|221047.745|105.549 +639930.590|221043.335|105.418 +639935.220|221038.933|105.360 +639939.795|221034.584|105.385 +639944.382|221030.228|105.665 +639948.902|221025.940|106.089 +639953.413|221021.657|106.589 +639967.017|221008.743|107.692 +639971.576|221004.411|107.930 +639976.142|221000.074|108.137 +639980.696|220995.746|108.143 +639985.250|220991.418|108.174 +639989.861|220987.035|108.162 +639994.433|220982.685|108.098 +639999.005|220978.339|107.777 +640003.638|220973.928|107.387 +640008.265|220969.524|107.076 +640012.923|220965.092|106.604 +640017.549|220960.685|106.049 +640022.170|220956.287|105.552 +640026.794|220951.888|105.086 +640031.332|220947.569|104.833 +640035.901|220943.223|104.717 +640040.477|220938.873|104.592 +640044.957|220934.612|104.452 +640049.505|220930.287|104.245 +640054.061|220925.953|104.004 +640058.615|220921.622|103.812 +640063.123|220917.333|103.611 +640067.634|220913.044|103.419 +640072.154|220908.744|103.193 +640076.669|220904.449|103.023 +640081.152|220900.185|102.767 +640077.705|220901.413|102.733 +640073.224|220905.659|102.937 +640068.753|220909.899|103.123 +640064.239|220914.175|103.282 +640059.786|220918.394|103.401 +640055.275|220922.670|103.596 +640050.693|220927.017|103.919 +640046.185|220931.287|104.129 +640041.641|220935.594|104.291 +640037.108|220939.891|104.416 +640032.530|220944.229|104.534 +640027.934|220948.581|104.760 +640023.365|220952.915|105.162 +640018.714|220957.329|105.775 +640014.050|220961.755|106.208 +640009.375|220966.189|106.729 +640004.693|220970.633|107.314 +640000.075|220975.007|107.543 +639995.393|220979.448|107.893 +639990.733|220983.868|108.125 +639986.097|220988.257|108.232 +639981.443|220992.668|108.174 +639976.831|220997.032|108.165 +639972.195|221001.421|108.034 +639967.574|221005.795|107.814 +639962.954|221010.169|107.622 +639958.305|221014.567|107.287 +639939.783|221032.084|105.379 +639935.064|221036.553|105.287 +639930.331|221041.033|105.299 +639925.582|221045.535|105.464 +639920.766|221050.098|105.440 +639915.984|221054.633|105.876 +639911.119|221059.251|106.589 +639896.641|221072.979|107.747 +639891.834|221077.536|107.823 +639882.041|221086.836|109.390 +639877.161|221091.459|109.719 +639872.294|221096.083|110.387 +639867.414|221100.710|110.789 +639862.586|221105.285|111.191 +639857.700|221109.921|111.716 +639852.872|221114.496|111.804 +639838.189|221128.429|113.486 +639833.316|221133.050|113.678 +639828.418|221137.695|114.099 +639823.602|221142.258|114.282 +639818.640|221146.967|114.895 +639813.741|221151.612|115.425 +639808.849|221156.257|115.955 +639803.930|221160.920|116.321 +639799.111|221165.486|116.254 +639794.204|221170.138|116.565 +639789.342|221174.740|116.480 +639779.668|221183.899|115.955 +639774.800|221188.508|115.992 +639769.987|221193.062|115.547 +639750.550|221211.456|114.297 +639745.713|221216.038|114.172 +639731.140|221229.824|113.023 +639726.361|221234.332|111.816 +639721.527|221238.904|111.228 +639716.577|221243.595|111.386 +639711.764|221248.151|111.139 +639706.869|221252.781|110.728 +639702.002|221257.390|110.573 +639697.100|221262.026|110.240 +639692.248|221266.619|109.954 +639663.176|221294.094|104.766 +639658.363|221298.632|103.306 +639653.432|221303.302|102.858 +639648.509|221307.969|102.965 +639643.593|221312.629|103.017 +639628.627|221326.845|105.229 +639623.683|221331.542|105.897 +639618.709|221336.263|106.327 +639613.774|221340.936|106.147 +639608.864|221345.593|106.382 +639603.871|221350.336|107.235 +639598.830|221355.130|108.244 +639593.895|221359.809|108.210 +639588.981|221364.457|107.793 +639584.092|221369.093|107.829 +639579.097|221373.833|108.174 +639564.451|221387.656|104.114 +639559.721|221392.078|99.758 +639554.822|221396.693|97.777 +639549.821|221401.442|98.219 +639544.901|221406.096|97.801 +639539.909|221410.830|98.015 +639529.920|221420.309|98.749 +639524.918|221425.061|99.447 +639519.975|221429.752|99.880 +639514.945|221434.525|100.151 +639490.034|221458.141|100.523 +639485.023|221462.886|100.337 +639470.106|221477.008|99.002 +639465.117|221481.751|100.130 +639455.022|221491.340|101.535 +639450.050|221496.061|102.209 +639414.879|221529.476|107.787 +639409.881|221534.222|108.241 +639404.882|221538.968|108.896 +639399.840|221543.753|109.402 +639394.848|221548.496|109.957 +639379.830|221562.748|111.505 +639374.844|221567.482|111.917 +639369.808|221572.261|112.456 +639354.767|221586.544|114.096 +639349.780|221591.272|114.236 +639344.751|221596.042|114.468 +639339.725|221600.815|115.035 +639334.741|221605.539|115.205 +639324.692|221615.076|116.132 +639314.688|221624.568|116.659 +639309.668|221629.335|117.132 +639304.688|221634.056|117.330 +639294.687|221643.551|117.933 +639279.676|221657.806|119.253 +639274.695|221662.531|119.378 +639269.672|221667.301|119.668 +639264.710|221672.016|120.341 +639239.787|221695.675|121.704 +639234.803|221700.402|121.807 +639229.871|221705.081|122.012 +639214.912|221719.273|122.161 +639199.983|221733.434|122.149 +639194.993|221738.167|122.213 +639190.055|221742.852|122.426 +639185.136|221747.525|122.975 +639180.158|221752.252|123.298 +639140.574|221789.788|122.697 +639135.636|221794.467|122.356 +639130.723|221799.127|122.426 +639101.337|221827.001|122.481 +639096.479|221831.613|122.768 +639086.591|221840.967|121.277 +639081.696|221845.612|121.164 +639057.144|221868.847|117.559 +639032.790|221891.915|115.519 +639027.764|221896.660|113.910 +639022.884|221901.275|112.868 +639017.965|221905.935|112.441 +639008.321|221915.076|112.188 +639003.615|221919.551|113.002 +638994.194|221928.509|114.492 +638989.521|221932.956|115.614 +638984.824|221937.424|116.498 +638975.430|221946.352|117.842 +638966.106|221955.216|119.412 +638961.403|221959.684|119.832 +638956.706|221964.143|120.323 +638952.000|221968.615|120.747 +638947.282|221973.089|120.671 +638942.603|221977.530|120.963 +638937.946|221981.953|121.430 +638923.836|221995.340|121.433 +638919.033|221999.890|121.207 +638914.360|222004.322|121.262 +638900.376|222017.596|121.789 +638895.731|222022.010|122.109 +638891.116|222026.387|122.338 +638886.434|222030.831|122.417 +638881.811|222035.217|122.618 +638877.199|222039.597|122.893 +638872.557|222044.001|122.981 +638867.997|222048.332|123.319 +638863.334|222052.761|123.633 +638858.707|222057.147|123.527 +638854.092|222061.524|123.542 +638849.395|222065.977|123.328 +638844.808|222070.330|123.231 +638835.453|222079.190|122.557 +638830.781|222083.616|121.960 +638826.108|222088.039|121.402 +638816.851|222096.814|120.924 +638812.179|222101.240|120.442 +638807.534|222105.638|119.851 +638802.870|222110.051|119.159 +638798.265|222114.416|118.863 +638793.629|222118.808|118.412 +638789.047|222123.149|118.016 +638784.445|222127.510|117.830 +638775.271|222136.206|117.379 +638770.811|222140.443|117.818 +638766.255|222144.762|117.680 +638761.801|222148.990|117.894 +638757.266|222153.287|117.635 +638748.180|222161.904|117.363 +638734.391|222174.959|115.532 +638729.846|222179.262|115.071 +638725.411|222183.472|115.260 +638721.028|222187.635|115.745 +638716.368|222192.043|114.715 +638693.813|222213.403|112.423 +638680.499|222226.028|111.840 +638675.966|222230.316|111.207 +638671.599|222234.459|111.170 +638667.142|222238.680|110.710 +638662.753|222242.838|110.362 +638644.822|222259.809|107.534 +638640.454|222263.945|107.159 +638636.035|222268.130|106.528 +638631.618|222272.309|105.949 +638618.085|222285.101|102.730 +638613.741|222289.216|102.358 +638609.480|222293.261|102.395 +638605.347|222297.187|102.821 +638596.996|222305.115|103.306 +638592.768|222309.120|103.337 +638583.859|222317.535|101.081 +638579.576|222321.589|100.682 +638575.355|222325.585|100.340 +638571.142|222329.572|100.060 +638566.982|222333.516|100.036 +638562.757|222337.515|99.740 +638558.597|222341.456|99.514 +638554.479|222345.360|99.490 +638550.383|222349.244|99.584 +638546.198|222353.206|99.301 +638538.044|222360.933|99.295 +638534.109|222364.670|99.697 +638525.944|222372.405|99.496 +638521.771|222376.350|98.701 +638505.763|222391.522|98.585 +638501.861|222395.220|98.810 +638490.968|222405.595|102.450 +638487.149|222409.222|102.824 +638483.268|222412.898|102.962 +638479.446|222416.525|103.129 +638475.612|222420.162|103.257 +638471.732|222423.834|103.224 +638467.824|222427.535|102.870 +638464.072|222431.095|103.157 +638460.293|222434.679|103.352 +638456.534|222438.242|103.431 +638452.740|222441.836|103.379 +638448.991|222445.390|103.309 +638445.196|222448.983|103.279 +638441.416|222452.565|103.117 +638437.134|222456.594|100.996 +638432.687|222460.770|98.048 +638428.343|222464.848|95.342 +638424.024|222468.908|92.973 +638416.301|222476.208|91.416 +638412.192|222480.073|89.520 +638408.745|222483.350|90.169 +638401.835|222489.915|91.224 +638398.226|222493.329|91.090 +638593.792|222306.059|103.410 +638602.156|222298.110|103.251 +638606.283|222294.181|102.556 +638610.443|222290.225|102.294 +638614.656|222286.223|102.285 +638619.078|222282.032|103.068 +638623.711|222277.655|104.653 +638632.548|222269.282|106.049 +638641.359|222260.925|107.195 +638645.791|222256.727|107.918 +638650.284|222252.469|108.738 +638654.713|222248.269|109.241 +638668.002|222235.666|110.682 +638676.844|222227.275|111.322 +638681.334|222223.017|111.773 +638685.781|222218.795|112.017 +638690.185|222214.613|112.057 +638694.663|222210.364|112.514 +638712.604|222193.341|113.907 +638717.276|222188.918|115.001 +638721.839|222184.590|115.529 +638726.231|222180.411|115.108 +638730.706|222176.160|115.184 +638735.284|222171.813|115.565 +638753.529|222154.491|116.992 +638758.153|222150.102|117.498 +638762.728|222145.759|117.723 +638767.239|222141.467|117.601 +638771.829|222137.105|117.662 +638776.301|222132.850|117.333 +638785.506|222124.109|117.720 +638790.139|222119.707|118.147 +638794.814|222115.273|118.540 +638799.444|222110.877|118.994 +638804.169|222106.394|119.777 +638827.577|222084.174|121.722 +638832.256|222079.733|122.039 +638837.057|222075.179|122.883 +638841.754|222070.717|123.069 +638851.157|222061.786|123.548 +638860.502|222052.907|123.716 +638865.190|222048.451|123.591 +638869.823|222044.038|123.106 +638874.544|222039.548|122.923 +638879.214|222035.107|122.731 +638883.889|222030.660|122.591 +638888.632|222026.155|122.612 +638893.326|222021.687|122.304 +638916.991|221999.183|121.311 +638931.277|221985.607|121.594 +638936.077|221981.041|121.521 +638940.786|221976.561|121.091 +638945.550|221972.028|120.765 +638950.375|221967.444|120.936 +638955.124|221962.924|120.515 +638959.864|221958.413|119.994 +638964.585|221953.917|119.348 +638983.617|221935.791|116.809 +638988.360|221931.274|115.940 +638997.827|221922.245|114.035 +639002.649|221917.649|113.011 +639027.112|221894.417|114.404 +639032.169|221889.635|115.888 +639037.106|221884.944|116.184 +639042.069|221880.244|117.269 +639047.037|221875.532|117.985 +639051.859|221870.944|117.623 +639056.790|221866.263|117.991 +639076.642|221847.441|121.250 +639086.481|221838.090|121.551 +639096.390|221828.687|122.816 +639101.236|221824.072|122.463 +639130.735|221796.018|122.350 +639135.694|221791.312|123.042 +639180.177|221749.018|123.271 +639185.099|221744.330|122.874 +639190.019|221739.645|122.441 +639194.966|221734.945|122.463 +639199.946|221730.206|122.307 +639214.769|221716.112|122.344 +639219.752|221711.369|122.344 +639224.678|221706.684|122.079 +639229.612|221701.990|121.990 +639234.584|221697.257|121.765 +639239.525|221692.563|121.862 +639259.334|221673.699|120.018 +639269.236|221664.277|119.637 +639289.113|221645.355|118.220 +639299.058|221635.891|117.559 +639304.023|221631.161|116.925 +639309.050|221626.382|116.888 +639313.975|221621.691|116.614 +639318.998|221616.911|116.272 +639328.944|221607.441|115.532 +639333.967|221602.662|115.193 +639338.990|221597.880|114.748 +639343.967|221593.143|114.498 +639348.997|221588.361|114.529 +639353.968|221583.615|113.191 +639363.981|221574.090|112.807 +639373.990|221564.556|111.819 +639394.025|221545.475|109.768 +639399.014|221540.723|109.253 +639404.007|221535.972|108.768 +639409.049|221531.168|108.064 +639429.147|221512.011|104.918 +639449.282|221492.821|101.965 +639454.345|221488.005|101.447 +639469.518|221473.539|98.652 +639489.607|221454.468|100.666 +639494.609|221449.716|100.996 +639509.749|221435.323|100.846 +639514.790|221430.523|100.148 +639519.825|221425.725|99.606 +639524.870|221420.922|98.917 +639529.905|221416.130|98.600 +639550.055|221396.943|96.332 +639554.932|221392.353|99.758 +639559.779|221387.787|102.660 +639574.513|221373.848|107.631 +639579.456|221369.154|108.226 +639584.449|221364.402|107.887 +639589.347|221359.757|108.521 +639594.331|221355.030|109.283 +639604.362|221345.462|107.229 +639609.348|221340.713|106.424 +639614.338|221335.967|106.406 +639624.259|221326.528|105.827 +639639.213|221312.278|103.513 +639644.193|221307.542|103.166 +639658.936|221293.527|103.663 +639663.694|221289.025|105.132 +639673.283|221279.945|107.656 +639692.638|221261.572|109.801 +639697.442|221257.012|110.076 +639702.322|221252.367|109.990 +639707.052|221247.880|110.588 +639711.886|221243.290|111.097 +639716.672|221238.742|111.097 +639721.457|221234.207|112.164 +639726.242|221229.656|112.200 +639731.015|221225.130|112.907 +639735.709|221220.674|113.416 +639740.480|221216.147|114.148 +639750.032|221207.073|114.562 +639759.581|221197.990|114.559 +639783.249|221175.514|116.281 +639787.986|221171.012|116.534 +639792.704|221166.526|116.550 +639797.511|221161.954|116.239 +639802.223|221157.473|116.355 +639806.978|221152.950|116.120 +639811.769|221148.384|115.568 +639825.997|221134.845|114.215 +639830.786|221130.288|113.834 +639835.492|221125.811|113.380 +639840.241|221121.293|112.999 +639849.665|221112.326|112.121 +639863.820|221098.863|110.929 +639873.239|221089.902|110.033 +639877.954|221085.412|109.405 +639882.608|221080.990|109.271 +639892.093|221071.955|107.759 +639896.693|221067.588|107.771 +639910.784|221054.176|106.138 +639915.432|221049.757|105.882 +639920.089|221045.325|105.580 +639924.698|221040.948|105.668 +639929.285|221036.586|105.552 +639933.921|221032.185|105.498 +639938.460|221027.875|105.766 +639942.956|221023.611|106.348 +639947.457|221019.341|106.906 +639951.929|221015.098|107.329 +639956.464|221010.794|107.692 +639961.024|221006.463|107.902 +639965.496|221002.217|108.073 +639970.031|220997.913|108.174 +639974.600|220993.573|108.372 +639979.099|220989.299|108.430 +639983.619|220985.002|108.351 +639988.145|220980.701|108.277 +639992.699|220976.373|108.049 +639997.274|220972.017|107.704 +640001.806|220967.707|107.360 +640006.412|220963.324|106.884 +640010.984|220958.975|106.354 +640015.559|220954.619|105.818 +640020.146|220950.251|105.248 +640024.709|220945.911|104.836 +640029.266|220941.577|104.501 +640033.750|220937.316|104.324 +640038.236|220933.049|104.144 +640042.772|220928.739|103.992 +640047.283|220924.447|103.711 +640051.754|220920.195|103.416 +640056.210|220915.958|103.212 +640060.709|220911.682|103.077 +640065.199|220907.415|103.017 +640069.609|220903.221|102.843 +640074.069|220898.981|102.718 +640078.540|220894.729|102.535 +640079.945|220890.974|102.303 +640075.516|220895.177|102.483 +640071.149|220899.325|102.623 +640066.744|220903.504|102.706 +640062.334|220907.695|102.855 +640057.939|220911.865|102.925 +640053.534|220916.047|103.074 +640049.011|220920.344|103.349 +640044.539|220924.590|103.638 +640040.080|220928.830|103.894 +640035.588|220933.094|104.053 +640031.144|220937.316|104.257 +640026.590|220941.641|104.550 +640022.027|220945.978|104.909 +640017.488|220950.294|105.446 +640012.907|220954.647|105.961 +640008.280|220959.048|106.491 +640003.663|220963.437|106.997 +639999.091|220967.784|107.546 +639994.513|220972.133|107.860 +639989.898|220976.516|108.107 +639985.295|220980.887|108.311 +639980.769|220985.188|108.396 +639976.161|220989.559|108.375 +639971.570|220993.914|108.262 +639967.035|220998.218|108.137 +639962.457|221002.561|107.979 +639953.316|221011.230|107.628 +639948.735|221015.573|107.238 +639944.175|221019.892|106.699 +639939.633|221024.193|106.058 +639935.025|221028.561|105.562 +639930.404|221032.944|105.482 +639925.719|221037.394|105.546 +639921.004|221041.868|105.485 +639916.289|221046.349|105.799 +639911.552|221050.845|105.943 +639897.132|221064.558|107.717 +639892.426|221069.026|107.756 +639887.686|221073.522|107.695 +639877.923|221082.812|109.442 +639873.086|221087.412|109.853 +639843.944|221115.103|112.374 +639839.049|221119.760|113.084 +639834.166|221124.399|113.358 +639829.262|221129.060|113.809 +639809.681|221147.671|115.730 +639804.756|221152.350|116.114 +639799.858|221157.001|116.315 +639795.002|221161.609|116.163 +639790.092|221166.276|116.537 +639785.194|221170.921|116.376 +639770.682|221184.677|115.181 +639765.738|221189.368|115.074 +639760.846|221194.010|114.962 +639751.041|221203.309|114.535 +639746.192|221207.906|114.044 +639741.217|221212.627|113.880 +639736.350|221217.242|113.605 +639731.415|221221.917|113.066 +639726.541|221226.535|112.374 +639721.689|221231.128|111.463 +639716.745|221235.810|111.018 +639711.831|221240.473|110.813 +639706.836|221245.210|110.475 +639701.941|221249.849|110.054 +639697.006|221254.525|109.588 +639691.974|221259.304|109.722 +639687.051|221263.977|109.722 +639652.618|221296.548|102.925 +639647.576|221301.333|103.343 +639642.572|221306.079|103.291 +639637.594|221310.806|103.617 +639627.487|221320.417|105.184 +639622.494|221325.159|105.851 +639612.411|221334.733|106.616 +639607.398|221339.494|107.009 +639602.365|221344.273|107.723 +639587.320|221358.556|108.594 +639582.376|221363.238|107.912 +639577.332|221368.026|108.271 +639572.382|221372.711|107.710 +639557.572|221386.695|103.172 +639552.762|221391.188|98.292 +639542.761|221400.671|98.036 +639537.744|221405.425|97.725 +639532.700|221410.217|98.161 +639527.701|221414.963|98.637 +639517.664|221424.497|99.691 +639512.620|221429.288|100.356 +639507.572|221434.089|101.221 +639502.598|221438.807|101.389 +639487.620|221453.005|100.700 +639482.606|221457.760|100.691 +639472.715|221467.117|99.008 +639467.738|221471.817|97.402 +639457.689|221481.394|100.813 +639452.717|221486.115|101.316 +639442.735|221495.598|102.325 +639412.770|221524.081|107.009 +639407.814|221528.797|108.104 +639402.864|221533.497|108.640 +639397.868|221538.239|109.036 +639392.876|221542.985|109.576 +639387.932|221547.676|109.798 +639373.061|221561.803|111.652 +639363.136|221571.228|112.529 +639348.277|221585.334|113.566 +639343.352|221590.022|114.739 +639338.368|221594.749|114.693 +639333.479|221599.388|114.953 +639328.502|221604.116|115.407 +639323.573|221608.798|115.855 +639318.645|221613.479|116.275 +639308.827|221622.794|116.763 +639303.847|221627.518|116.918 +639289.064|221641.545|118.074 +639274.293|221655.560|119.494 +639264.491|221664.860|120.244 +639259.565|221669.532|120.539 +639239.902|221688.177|121.704 +639234.983|221692.843|122.143 +639230.091|221697.479|122.143 +639225.107|221702.204|122.219 +639220.215|221706.840|122.256 +639215.281|221711.515|122.438 +639210.346|221716.194|122.591 +639195.597|221730.166|122.405 +639190.695|221734.808|122.374 +639185.764|221739.487|122.646 +639180.896|221744.108|123.246 +639176.004|221748.744|123.432 +639161.285|221762.701|124.130 +639156.430|221767.300|124.173 +639151.519|221771.951|124.127 +639146.618|221776.599|124.203 +639126.956|221795.208|122.661 +639122.018|221799.880|122.384 +639102.434|221818.439|122.515 +639097.567|221823.054|122.649 +639082.875|221836.965|122.088 +639077.965|221841.613|121.811 +639058.284|221860.228|119.421 +639053.294|221864.934|117.869 +639048.375|221869.594|117.690 +639043.544|221874.175|117.988 +639038.655|221878.796|117.153 +639033.671|221883.505|116.391 +639023.808|221892.826|114.572 +639018.849|221897.505|113.215 +639013.942|221902.147|112.420 +639009.095|221906.737|112.261 +638994.824|221920.279|114.102 +638985.418|221929.222|116.172 +638980.740|221933.669|117.226 +638976.024|221938.147|117.940 +638971.288|221942.640|118.470 +638966.563|221947.126|119.113 +638961.821|221951.628|119.589 +638957.148|221956.063|120.287 +638947.687|221965.039|121.103 +638942.914|221969.560|120.966 +638938.183|221974.043|121.222 +638933.511|221978.475|121.573 +638914.583|221996.406|121.618 +638909.874|222000.869|121.768 +638881.850|222027.429|122.954 +638877.150|222031.882|122.935 +638872.526|222036.265|123.146 +638867.918|222040.633|123.481 +638863.276|222045.031|123.578 +638858.701|222049.369|123.831 +638849.380|222058.193|123.542 +638844.725|222062.600|123.307 +638835.392|222071.433|122.737 +638826.011|222080.303|121.634 +638812.112|222093.452|120.518 +638807.445|222097.865|120.070 +638798.173|222106.638|119.369 +638793.580|222110.981|118.848 +638788.916|222115.391|118.223 +638784.293|222119.765|117.885 +638779.705|222124.106|117.482 +638761.634|222141.220|117.513 +638757.101|222145.515|117.540 +638743.547|222158.344|116.870 +638734.318|222167.064|115.330 +638729.816|222171.325|115.111 +638725.338|222175.565|115.038 +638720.995|222179.686|115.455 +638716.426|222184.005|114.922 +638711.829|222188.345|113.980 +638707.315|222192.613|113.249 +638689.448|222209.514|111.868 +638680.575|222217.914|111.496 +638676.131|222222.120|111.301 +638671.739|222226.272|110.883 +638649.601|222247.212|108.939 +638645.063|222251.494|107.656 +638640.631|222255.682|107.192 +638631.783|222264.046|105.900 +638627.372|222268.215|105.351 +638618.466|222276.628|103.672 +638613.967|222280.871|102.538 +638609.678|222284.931|102.181 +638605.442|222288.945|102.346 +638601.333|222292.843|102.885 +638597.246|222296.723|103.541 +638588.876|222304.654|103.745 +638584.715|222308.601|103.858 +638575.751|222317.060|100.926 +638571.584|222321.007|100.843 +638567.421|222324.951|100.791 +638563.227|222328.926|100.606 +638559.100|222332.839|100.740 +638554.979|222336.747|100.691 +638550.895|222340.618|100.822 +638546.761|222344.531|100.532 +638542.561|222348.509|100.173 +638538.443|222352.410|99.972 +638534.313|222356.321|99.734 +638530.296|222360.128|99.792 +638526.319|222363.904|100.249 +638522.359|222367.663|100.581 +638518.211|222371.589|100.103 +638514.029|222375.542|99.277 +638510.185|222379.193|99.917 +638506.171|222382.997|99.840 +638494.180|222394.351|99.283 +638487.008|222401.191|102.169 +638483.299|222404.714|102.782 +638479.425|222408.387|102.953 +638475.603|222412.014|103.114 +638471.771|222415.647|103.263 +638467.913|222419.305|103.303 +638464.069|222422.944|103.224 +638460.213|222426.596|102.885 +638456.483|222430.138|103.276 +638452.682|222433.740|103.394 +638448.920|222437.307|103.471 +638445.193|222440.842|103.483 +638441.432|222444.402|103.391 +638437.661|222447.975|103.263 +638433.741|222451.681|102.559 +638429.499|222455.674|100.414 +638425.061|222459.840|97.542 +638416.423|222467.957|92.614 +638412.433|222471.722|91.349 +638401.405|222482.170|91.068 +638587.257|222303.984|103.788 +638591.430|222300.018|103.772 +638595.615|222296.038|103.586 +638599.739|222292.112|102.873 +638603.854|222288.195|102.373 +638608.057|222284.196|102.081 +638612.333|222280.136|102.383 +638630.140|222263.262|105.519 +638634.669|222258.974|106.689 +638639.064|222254.801|106.985 +638643.456|222250.631|107.272 +638652.479|222242.085|109.119 +638656.895|222237.897|109.591 +638665.789|222229.451|110.173 +638670.215|222225.254|110.502 +638688.018|222208.350|111.551 +638692.542|222204.058|111.984 +638701.542|222195.520|112.938 +638706.008|222191.278|112.855 +638710.564|222186.959|113.572 +638715.179|222182.585|114.358 +638719.751|222178.250|115.230 +638724.198|222174.023|114.840 +638728.633|222169.811|114.687 +638733.181|222165.495|114.916 +638737.829|222161.096|116.035 +638742.471|222156.698|116.562 +638756.114|222143.756|117.248 +638760.649|222139.446|117.263 +638774.228|222126.550|116.928 +638778.855|222122.164|117.257 +638783.494|222117.763|117.714 +638788.161|222113.340|118.034 +638797.512|222104.477|119.204 +638802.169|222100.060|119.570 +638806.778|222095.686|119.628 +638811.520|222091.190|120.277 +638825.560|222077.877|121.454 +638830.284|222073.402|122.076 +638835.018|222068.912|122.487 +638839.757|222064.420|122.947 +638844.427|222059.991|123.304 +638849.081|222055.571|123.234 +638853.784|222051.109|123.536 +638858.521|222046.616|123.755 +638863.202|222042.169|123.609 +638867.805|222037.795|123.255 +638872.468|222033.363|123.014 +638877.132|222028.935|122.768 +638881.905|222024.405|123.005 +638900.726|222006.529|122.518 +638910.142|221997.580|121.868 +638914.830|221993.124|121.600 +638929.134|221979.545|121.655 +638933.934|221974.985|121.591 +638938.631|221970.520|121.088 +638943.450|221965.945|121.207 +638948.220|221961.412|120.951 +638962.433|221947.897|119.406 +638967.222|221943.344|118.930 +638971.940|221938.854|118.281 +638976.704|221934.322|117.595 +638981.474|221929.783|116.998 +638986.156|221925.321|115.556 +639000.427|221911.736|112.910 +639019.977|221893.177|113.438 +639034.875|221879.076|116.605 +639039.901|221874.325|117.879 +639044.733|221869.731|117.644 +639049.631|221865.083|117.598 +639054.611|221860.368|118.516 +639059.604|221855.649|120.195 +639064.645|221850.879|121.387 +639074.417|221841.601|121.329 +639089.297|221827.495|123.085 +639094.156|221822.877|122.847 +639099.042|221818.232|122.371 +639103.946|221813.572|122.134 +639118.717|221799.548|122.353 +639123.703|221794.820|122.670 +639128.678|221790.108|123.554 +639143.503|221776.042|124.392 +639148.444|221771.348|124.203 +639153.403|221766.639|124.340 +639158.295|221761.993|124.151 +639163.239|221757.296|124.084 +639168.186|221752.599|124.066 +639173.102|221747.924|123.572 +639178.034|221743.239|123.316 +639182.950|221738.563|122.798 +639187.876|221733.879|122.463 +639192.817|221729.188|122.426 +639212.586|221710.418|122.603 +639217.570|221705.685|122.542 +639222.498|221701.003|122.350 +639237.379|221686.866|121.902 +639242.301|221682.187|121.609 +639257.154|221668.066|120.433 +639272.019|221653.939|119.531 +639276.988|221649.217|119.095 +639311.735|221616.186|116.483 +639321.638|221606.774|115.910 +639326.612|221602.043|115.559 +639331.586|221597.316|115.017 +639336.518|221592.628|114.745 +639341.499|221587.897|114.614 +639346.467|221583.161|113.249 +639351.444|221578.427|112.648 +639356.428|221573.694|112.758 +639361.411|221568.960|112.496 +639371.378|221559.484|111.652 +639376.316|221554.787|111.036 +639391.227|221540.601|109.268 +639396.216|221535.862|108.997 +639401.209|221531.113|108.439 +639416.156|221516.891|106.244 +639466.153|221469.293|98.725 +639471.106|221464.590|99.130 +639485.998|221450.460|100.916 +639491.000|221445.711|101.230 +639495.959|221441.002|101.416 +639500.925|221436.280|101.389 +639510.943|221426.743|100.276 +639515.887|221422.037|99.703 +639520.938|221417.224|98.816 +639525.924|221412.482|98.524 +639540.875|221398.263|97.969 +639545.880|221393.499|97.417 +639550.759|221388.890|99.667 +639555.523|221384.412|103.315 +639570.194|221370.529|107.631 +639575.128|221365.850|108.405 +639580.124|221361.098|108.058 +639585.025|221356.444|108.539 +639589.945|221351.784|109.585 +639594.898|221347.071|109.237 +639604.889|221337.555|107.915 +639609.866|221332.816|107.262 +639624.814|221318.582|105.391 +639629.791|221313.848|104.979 +639634.811|221309.060|103.919 +639639.807|221304.305|103.330 +639644.693|221299.663|103.620 +639649.692|221294.908|103.074 +639659.430|221285.672|104.888 +639669.132|221276.486|107.211 +639683.692|221262.678|109.573 +639693.498|221253.357|109.405 +639698.387|221248.718|109.826 +639703.227|221244.122|110.246 +639708.119|221239.477|110.630 +639712.977|221234.865|110.896 +639717.848|221230.235|110.999 +639722.630|221225.703|112.124 +639727.465|221221.119|112.679 +639746.719|221202.840|114.358 +639751.580|221198.225|114.700 +639761.215|221189.069|114.852 +639766.016|221184.506|114.895 +639785.157|221166.331|116.315 +639789.927|221161.798|116.312 +639794.774|221157.187|116.050 +639799.538|221152.663|116.160 +639804.338|221148.094|115.940 +639809.145|221143.522|115.690 +639823.599|221129.755|114.062 +639828.402|221125.180|113.584 +639837.943|221116.093|112.855 +639842.755|221111.506|112.383 +639861.805|221093.358|110.518 +639866.566|221088.823|110.231 +639871.327|221084.284|109.603 +639876.043|221079.798|109.359 +639885.641|221070.636|107.336 +639890.310|221066.198|107.525 +639894.953|221061.781|107.570 +639909.080|221048.318|106.049 +639913.771|221043.853|105.851 +639918.379|221039.464|105.577 +639923.009|221035.059|105.513 +639927.642|221030.649|105.446 +639932.178|221026.336|105.723 +639936.671|221022.072|106.333 +639945.677|221013.516|107.400 +639954.696|221004.942|108.122 +639959.214|221000.647|108.296 +639968.263|220992.037|108.290 +639972.811|220987.711|108.332 +639977.310|220983.429|108.387 +639981.790|220979.165|108.271 +639986.320|220974.855|108.183 +639990.888|220970.502|107.863 +639995.403|220966.205|107.616 +639999.923|220961.895|107.037 +640004.489|220957.542|106.513 +640009.073|220953.174|105.924 +640013.599|220948.862|105.394 +640018.135|220944.536|104.839 +640022.688|220940.202|104.513 +640027.224|220935.877|104.004 +640031.692|220931.622|103.644 +640036.170|220927.352|103.227 +640040.629|220923.106|102.956 +640045.085|220918.866|102.736 +640049.547|220914.614|102.483 +640053.952|220910.420|102.309 +640058.399|220906.189|102.194 +640062.764|220902.032|102.005 +640067.153|220897.856|101.962 +640071.557|220893.662|101.870 +640075.964|220889.468|101.782 +640080.344|220885.298|101.584 +640069.445|220892.717|101.931 +640051.827|220909.423|102.337 +640047.359|220913.660|102.572 +640033.945|220926.383|103.154 +640029.495|220930.604|103.367 +640024.971|220934.899|103.748 +640020.418|220939.227|104.324 +640015.864|220943.555|104.946 +640011.325|220947.868|105.485 +640006.747|220952.217|105.997 +640002.145|220956.594|106.689 +639997.618|220960.895|107.250 +639988.496|220969.561|107.973 +639983.927|220973.898|108.271 +639979.446|220978.153|108.354 +639974.926|220982.438|108.390 +639970.369|220986.760|108.357 +639965.870|220991.028|108.299 +639961.292|220995.374|108.457 +639956.812|220999.620|108.314 +639952.231|221003.963|108.207 +639938.694|221016.789|106.964 +639934.199|221021.044|106.363 +639929.697|221025.309|105.818 +639925.064|221029.698|105.491 +639920.486|221034.041|105.488 +639915.776|221038.513|105.738 +639911.080|221042.972|105.940 +639906.428|221047.388|106.177 +639896.934|221056.410|107.421 +639892.279|221060.827|107.415 +639887.537|221065.326|107.363 +639882.812|221069.816|107.927 +639873.187|221078.966|109.381 +639868.450|221083.468|109.783 +639863.576|221088.101|110.496 +639858.821|221092.615|110.710 +639839.622|221110.854|112.526 +639834.794|221115.441|113.096 +639825.153|221124.600|113.816 +639800.790|221147.747|116.153 +639796.008|221152.282|116.175 +639791.156|221156.882|115.967 +639786.294|221161.500|116.333 +639781.393|221166.148|116.211 +639766.948|221179.836|115.273 +639762.072|221184.463|115.007 +639757.213|221189.066|114.553 +639747.411|221198.365|114.550 +639742.494|221203.023|114.242 +639737.642|221207.622|113.806 +639732.744|221212.264|113.361 +639727.843|221216.906|112.950 +639722.978|221221.515|112.663 +639718.119|221226.105|111.280 +639713.224|221230.744|110.853 +639708.259|221235.453|110.685 +639703.306|221240.147|110.368 +639698.411|221244.786|109.990 +639693.470|221249.468|109.567 +639688.502|221254.180|109.500 +639668.708|221272.929|107.265 +639663.807|221277.571|106.421 +639653.925|221286.913|103.833 +639649.009|221291.570|103.175 +639643.922|221296.404|103.599 +639638.938|221301.129|103.242 +639633.882|221305.942|104.007 +639628.810|221310.770|105.046 +639623.710|221315.619|105.815 +639608.528|221330.051|107.488 +639598.375|221339.707|108.844 +639593.307|221344.529|109.536 +639588.259|221349.321|109.820 +639583.285|221354.030|108.835 +639578.301|221358.751|108.046 +639573.260|221363.537|108.314 +639563.256|221373.007|106.415 +639553.298|221382.419|103.462 +639548.376|221387.055|101.112 +639533.371|221401.256|98.143 +639528.302|221406.066|97.978 +639523.205|221410.909|98.533 +639518.161|221415.706|99.075 +639508.017|221425.353|100.590 +639502.976|221430.151|101.364 +639497.910|221434.961|101.416 +639492.847|221439.764|101.389 +639487.846|221444.507|100.953 +639482.786|221449.308|100.834 +639477.723|221454.114|100.944 +639467.695|221463.606|99.024 +639412.282|221516.300|106.223 +639402.230|221525.864|108.018 +639382.253|221544.856|110.149 +639376.749|221550.090|110.847 +639367.288|221559.075|111.395 +639357.318|221568.558|112.478 +639352.328|221573.291|112.481 +639347.345|221578.028|112.880 +639342.407|221582.716|113.182 +639332.504|221592.140|114.885 +639327.569|221596.828|115.175 +639322.589|221601.559|115.373 +639317.660|221606.243|116.028 +639302.826|221620.340|117.040 +639283.111|221639.067|118.299 +639278.185|221643.746|118.790 +639273.260|221648.425|119.156 +639268.340|221653.100|119.710 +639258.538|221662.412|120.421 +639253.615|221667.091|120.750 +639248.787|221671.678|121.180 +639243.862|221676.357|121.500 +639238.939|221681.032|121.847 +639214.467|221704.264|122.673 +639204.674|221713.558|122.609 +639199.791|221718.197|122.819 +639194.886|221722.848|122.682 +639189.979|221727.499|122.524 +639185.087|221732.144|122.679 +639180.204|221736.783|122.963 +639175.373|221741.374|123.362 +639170.478|221746.019|123.484 +639165.638|221750.618|123.734 +639160.755|221755.254|124.087 +639155.857|221759.902|124.228 +639146.100|221769.165|124.334 +639141.251|221773.768|124.517 +639136.410|221778.364|124.859 +639126.648|221787.624|124.322 +639121.682|221792.324|123.603 +639116.784|221796.960|122.530 +639102.154|221810.841|122.417 +639097.295|221815.452|122.655 +639092.489|221820.018|122.999 +639087.618|221824.642|123.112 +639082.763|221829.245|122.838 +639077.825|221833.923|122.155 +639068.035|221843.201|121.433 +639058.345|221852.397|121.399 +639053.352|221857.113|119.765 +639048.363|221861.825|118.235 +639043.455|221866.473|117.668 +639038.673|221871.014|117.982 +639033.741|221875.687|117.199 +639018.992|221889.647|114.651 +639013.984|221894.380|113.276 +639009.101|221899.004|112.752 +639004.249|221903.607|112.529 +638999.457|221908.161|112.944 +638994.709|221912.669|113.337 +638985.293|221921.639|115.775 +638980.621|221926.089|116.870 +638971.138|221935.105|118.235 +638966.405|221939.604|118.802 +638961.723|221944.054|119.396 +638957.002|221948.547|120.049 +638942.835|221962.004|121.277 +638938.052|221966.539|121.076 +638933.340|221971.017|121.466 +638928.625|221975.494|121.862 +638923.849|221980.020|121.801 +638909.657|221993.477|122.012 +638900.217|222002.432|122.536 +638895.545|222006.864|122.627 +638890.863|222011.305|122.655 +638872.112|222029.090|123.203 +638867.451|222033.513|123.490 +638862.815|222037.911|123.630 +638858.134|222042.352|123.804 +638844.064|222055.684|123.252 +638839.410|222060.091|123.042 +638834.679|222064.572|122.633 +638829.997|222069.007|122.271 +638820.582|222077.916|121.292 +638806.552|222091.202|119.982 +638801.928|222095.582|119.835 +638797.292|222099.969|119.329 +638792.534|222104.473|118.680 +638787.956|222108.811|118.601 +638783.275|222113.240|117.879 +638778.632|222117.635|117.431 +638774.051|222121.972|117.077 +638769.409|222126.367|116.693 +638764.852|222130.686|116.544 +638755.873|222139.205|117.095 +638737.618|222156.494|115.836 +638733.031|222160.837|115.367 +638728.380|222165.235|114.565 +638723.948|222169.439|114.742 +638719.553|222173.608|115.163 +638715.057|222177.872|115.007 +638710.330|222182.335|113.605 +638701.314|222190.869|112.776 +638696.851|222195.097|112.633 +638692.279|222199.422|111.932 +638674.412|222216.341|110.512 +638665.527|222224.754|109.939 +638661.153|222228.896|109.652 +638647.809|222241.530|108.265 +638634.501|222254.118|106.531 +638629.999|222258.373|105.501 +638625.610|222262.528|105.059 +638621.176|222266.722|104.409 +638616.738|222270.919|103.532 +638612.275|222275.137|102.806 +638607.877|222279.298|102.157 +638603.683|222283.276|102.282 +638599.532|222287.217|102.614 +638595.472|222291.075|103.394 +638587.172|222298.948|104.141 +638583.054|222302.853|104.446 +638574.181|222311.226|101.904 +638569.902|222315.274|101.523 +638565.754|222319.202|101.517 +638557.536|222326.990|101.685 +638553.495|222330.821|101.974 +638549.371|222334.726|101.916 +638536.880|222346.543|100.843 +638532.802|222350.408|100.813 +638528.720|222354.270|100.572 +638516.702|222365.657|100.901 +638500.612|222380.891|100.374 +638496.594|222384.695|100.084 +638488.740|222392.129|99.877 +638481.455|222399.057|102.084 +638477.703|222402.623|102.730 +638473.932|222406.196|103.114 +638470.107|222409.823|103.276 +638466.328|222413.404|103.416 +638462.588|222416.949|103.733 +638458.726|222420.607|103.568 +638454.837|222424.285|103.312 +638451.082|222427.843|103.401 +638447.393|222431.342|103.757 +638443.660|222434.877|103.736 +638436.158|222441.979|103.608 +638432.434|222445.506|103.663 +638428.749|222448.996|103.678 +638424.600|222452.897|101.697 +638420.196|222457.033|98.957 +638415.856|222461.108|96.290 +638411.531|222465.168|93.717 +638403.319|222472.895|89.916 +638399.793|222476.239|90.276 +638580.052|222303.255|104.723 +638584.167|222299.332|104.196 +638596.563|222287.525|103.138 +638600.690|222283.593|102.459 +638604.820|222279.658|102.056 +638609.124|222275.567|102.255 +638613.516|222271.401|102.898 +638626.891|222258.706|104.967 +638631.335|222254.490|105.723 +638644.606|222241.890|107.320 +638666.938|222220.682|109.579 +638675.954|222212.123|110.646 +638684.818|222203.695|110.755 +638689.341|222199.401|111.466 +638712.058|222177.830|113.745 +638716.776|222173.358|114.879 +638721.242|222169.113|114.888 +638725.686|222164.879|114.514 +638730.227|222160.563|114.718 +638734.781|222156.232|115.029 +638748.655|222143.058|116.723 +638762.234|222130.138|116.303 +638766.831|222125.764|116.440 +638771.470|222121.356|116.839 +638776.103|222116.955|117.229 +638780.812|222112.484|117.821 +638790.081|222103.678|118.442 +638804.126|222090.334|119.698 +638808.796|222085.899|120.210 +638818.260|222076.910|121.146 +638822.963|222072.442|121.643 +638827.663|222067.980|122.137 +638832.415|222063.466|122.670 +638837.069|222059.043|122.911 +638841.812|222054.535|123.121 +638851.215|222045.598|123.694 +638855.930|222041.115|123.795 +638860.572|222036.695|123.731 +638874.629|222023.320|123.173 +638893.408|222005.450|122.743 +638898.157|222000.927|122.548 +638902.894|221996.425|122.627 +638907.618|221991.926|122.268 +638926.577|221973.888|121.893 +638931.338|221969.355|121.518 +638936.047|221964.869|121.143 +638969.343|221933.160|118.378 +638992.999|221910.584|113.169 +639002.633|221901.409|112.490 +639007.507|221896.782|112.935 +639017.471|221887.327|114.745 +639032.376|221873.194|117.601 +639037.268|221868.536|117.510 +639042.133|221863.913|117.629 +639047.113|221859.185|118.561 +639066.986|221840.327|121.603 +639076.880|221830.933|122.609 +639081.839|221826.227|123.008 +639086.771|221821.539|123.097 +639091.687|221816.867|123.021 +639096.582|221812.209|122.688 +639101.486|221807.543|122.502 +639106.406|221802.867|122.533 +639111.316|221798.201|122.454 +639116.348|221793.431|123.432 +639121.384|221788.660|124.545 +639131.272|221779.266|124.929 +639136.212|221774.569|124.737 +639141.101|221769.918|124.514 +639146.100|221765.166|124.523 +639155.997|221755.760|124.572 +639160.923|221751.072|124.246 +639165.848|221746.388|123.914 +639170.819|221741.657|123.530 +639175.736|221736.978|123.060 +639180.668|221732.284|122.902 +639185.642|221727.554|122.615 +639190.628|221722.814|122.576 +639195.575|221718.114|122.737 +639200.559|221713.378|122.673 +639205.542|221708.641|122.655 +639210.532|221703.898|122.826 +639215.506|221699.168|122.618 +639230.435|221684.973|122.298 +639235.355|221680.292|121.984 +639240.369|221675.521|121.692 +639245.334|221670.797|121.314 +639255.264|221661.348|120.588 +639265.195|221651.899|119.726 +639280.142|221637.674|118.598 +639305.084|221613.943|116.854 +639315.069|221604.436|115.946 +639320.041|221599.705|115.422 +639325.015|221594.972|115.233 +639340.023|221580.677|113.026 +639345.004|221575.940|112.758 +639350.030|221571.158|112.365 +639359.991|221561.681|111.956 +639364.974|221556.939|111.496 +639379.967|221542.668|110.198 +639394.933|221528.419|108.439 +639409.917|221514.148|106.351 +639444.914|221480.812|101.349 +639454.918|221471.281|99.267 +639459.929|221466.520|99.155 +639464.885|221461.811|99.335 +639469.811|221457.156|100.944 +639479.735|221447.726|100.804 +639484.749|221442.965|100.743 +639489.693|221438.274|101.358 +639494.609|221433.604|101.386 +639499.574|221428.889|101.398 +639509.560|221419.382|99.859 +639514.516|221414.664|98.975 +639524.437|221405.230|98.329 +639534.343|221395.806|97.183 +639544.060|221386.619|100.517 +639548.888|221382.069|102.797 +639553.728|221377.494|104.626 +639568.276|221363.726|108.396 +639573.220|221359.026|108.052 +639578.097|221354.396|108.158 +639582.898|221349.857|109.640 +639587.820|221345.182|109.747 +639597.638|221335.846|108.890 +639607.492|221326.467|107.607 +639632.138|221303.009|104.391 +639636.997|221298.383|103.687 +639641.880|221293.750|104.025 +639646.796|221289.071|103.269 +639651.639|221284.474|103.559 +639670.811|221266.314|107.436 +639675.627|221261.749|108.094 +639680.385|221257.241|108.875 +639685.210|221252.665|109.445 +639690.044|221248.072|109.347 +639694.884|221243.479|109.743 +639699.673|221238.937|110.201 +639704.470|221234.384|110.573 +639709.283|221229.815|110.786 +639714.108|221225.233|110.874 +639718.857|221220.738|111.840 +639723.603|221216.242|112.831 +639728.400|221211.691|113.264 +639733.152|221207.183|113.666 +639737.980|221202.599|113.813 +639742.763|221198.057|113.950 +639757.173|221184.378|114.797 +639761.959|221179.839|114.998 +639781.021|221161.747|116.199 +639785.822|221157.187|116.336 +639790.677|221152.569|115.998 +639795.429|221148.058|116.181 +639800.245|221143.480|115.824 +639824.358|221120.550|113.861 +639829.210|221115.932|113.380 +639834.026|221111.354|112.862 +639838.842|221106.770|112.362 +639853.314|221093.005|110.886 +639858.069|221088.488|110.637 +639862.878|221083.916|110.350 +639867.703|221079.322|109.603 +639872.461|221074.799|109.393 +639882.175|221065.548|107.610 +639886.964|221060.998|107.296 +639891.664|221056.535|107.281 +639896.406|221052.024|106.970 +639901.189|221047.474|106.409 +639905.968|221042.935|106.269 +639910.659|221038.476|106.074 +639915.359|221034.008|105.833 +639920.114|221029.487|105.580 +639924.759|221025.077|105.772 +639933.903|221016.408|106.872 +639943.102|221007.682|107.653 +639952.273|220998.983|108.354 +639961.445|220990.275|108.494 +639966.047|220985.901|108.475 +639970.647|220981.533|108.515 +639975.252|220977.159|108.515 +639979.782|220972.859|108.418 +639993.687|220959.633|107.198 +639998.304|220955.238|106.650 +640002.983|220950.788|106.071 +640007.561|220946.432|105.528 +640012.130|220942.086|105.056 +640025.907|220928.979|103.684 +640044.037|220911.740|102.087 +640048.487|220907.509|101.916 +640052.915|220903.306|101.901 +640057.335|220899.106|101.947 +640074.971|220882.351|101.471 +640079.366|220878.172|101.203 +640074.532|220880.013|101.148 +640070.006|220884.311|101.297 +640065.443|220888.639|101.383 +640060.910|220892.940|101.605 +640051.958|220901.428|101.230 +640047.341|220905.818|101.718 +640033.625|220918.845|102.568 +640019.747|220932.027|103.983 +640015.056|220936.481|104.492 +640010.371|220940.934|105.010 +640005.729|220945.341|105.583 +640001.026|220949.813|106.260 +639996.344|220954.260|106.842 +639991.696|220958.673|107.244 +639987.066|220963.065|107.558 +639982.409|220967.488|107.781 +639977.749|220971.911|108.030 +639973.134|220976.291|108.329 +639968.513|220980.674|108.396 +639963.914|220985.035|108.338 +639959.302|220989.409|108.378 +639954.654|220993.817|108.360 +639950.027|220998.203|108.216 +639945.446|221002.546|108.125 +639936.293|221011.212|107.272 +639931.733|221015.531|106.769 +639927.194|221019.819|105.787 +639922.634|221024.138|105.312 +639917.944|221028.594|105.741 +639913.256|221033.038|105.833 +639908.601|221037.449|105.708 +639903.853|221041.963|106.296 +639899.165|221046.410|106.458 +639894.425|221050.912|107.034 +639889.689|221055.408|107.259 +639885.016|221059.843|107.409 +639880.298|221064.323|107.915 +639870.730|221073.418|109.286 +639866.021|221077.884|109.445 +639846.943|221096.004|111.514 +639842.137|221100.567|111.834 +639837.440|221105.026|112.081 +639832.612|221109.613|112.654 +639827.832|221114.152|113.227 +639803.869|221136.914|115.632 +639794.329|221145.964|115.830 +639789.546|221150.499|115.864 +639784.734|221155.065|116.172 +639779.970|221159.585|116.114 +639775.230|221164.078|115.824 +639765.717|221173.088|115.138 +639760.935|221177.621|114.849 +639756.152|221182.153|114.590 +639746.597|221191.202|113.983 +639736.977|221200.325|113.654 +639732.140|221204.909|113.557 +639717.744|221218.540|112.075 +639712.971|221223.051|110.819 +639708.146|221227.623|110.646 +639703.236|221232.280|110.414 +639698.420|221236.840|110.170 +639693.525|221241.479|109.783 +639688.685|221246.064|109.295 +639683.799|221250.700|109.408 +639678.931|221255.305|108.698 +639674.057|221259.920|108.101 +639669.217|221264.492|107.049 +639664.350|221269.100|106.378 +639659.461|221273.721|105.318 +639654.584|221278.339|104.751 +639649.698|221282.957|103.672 +639644.733|221287.666|103.663 +639639.798|221292.347|103.946 +639634.796|221297.087|103.830 +639629.779|221301.860|104.708 +639624.728|221306.661|105.427 +639604.673|221325.714|108.049 +639599.625|221330.515|108.988 +639594.575|221335.309|109.298 +639579.578|221349.528|109.216 +639574.656|221354.182|108.137 +639569.611|221358.971|108.463 +639564.622|221363.689|107.717 +639554.646|221373.129|106.156 +639544.776|221382.434|102.184 +639539.854|221387.067|99.725 +639534.867|221391.767|97.585 +639509.511|221415.840|99.584 +639499.361|221425.490|101.416 +639494.295|221430.297|101.444 +639489.232|221435.095|101.386 +639484.185|221439.874|100.779 +639479.122|221444.675|100.749 +639474.011|221449.521|100.788 +639458.862|221463.865|99.191 +639403.074|221516.879|107.031 +639397.978|221521.719|107.662 +639382.848|221536.093|109.359 +639352.581|221564.836|112.328 +639347.546|221569.615|112.517 +639342.559|221574.346|112.663 +639337.478|221579.168|113.026 +639332.501|221583.901|113.739 +639322.455|221593.451|115.352 +639317.422|221598.221|115.492 +639312.442|221602.948|115.745 +639302.441|221612.446|116.617 +639297.464|221617.170|116.964 +639292.444|221621.938|117.519 +639287.470|221626.662|117.885 +639282.486|221631.392|117.860 +639277.518|221636.114|118.488 +639267.578|221645.557|119.442 +639262.598|221650.281|119.634 +639252.753|221659.635|120.485 +639237.940|221673.705|121.750 +639233.011|221678.387|121.978 +639228.085|221683.062|122.295 +639223.157|221687.741|122.554 +639213.333|221697.065|122.743 +639208.392|221701.753|122.752 +639203.488|221706.401|122.597 +639198.596|221711.043|122.633 +639193.664|221715.725|122.911 +639188.757|221720.379|122.716 +639183.871|221725.018|122.990 +639179.015|221729.624|122.917 +639174.123|221734.266|123.069 +639169.253|221738.896|123.612 +639164.361|221743.538|123.822 +639159.530|221748.128|124.228 +639154.683|221752.727|124.432 +639149.794|221757.370|124.691 +639144.927|221761.984|124.572 +639140.074|221766.593|124.663 +639135.219|221771.198|124.798 +639130.369|221775.801|124.999 +639115.742|221789.672|124.554 +639110.841|221794.308|123.463 +639105.946|221798.938|122.530 +639101.063|221803.568|122.426 +639096.250|221808.137|122.646 +639091.401|221812.746|122.990 +639086.637|221817.269|123.271 +639081.754|221821.902|123.228 +639072.046|221831.104|122.804 +639067.233|221835.667|122.588 +639062.344|221840.297|122.033 +639047.713|221854.147|119.924 +639042.718|221858.865|118.339 +639037.838|221863.486|117.552 +639033.013|221868.058|117.431 +639028.200|221872.627|117.427 +639018.376|221881.917|115.492 +639003.752|221895.758|113.081 +638998.854|221900.397|112.426 +638984.836|221913.735|115.288 +638966.088|221931.569|118.714 +638951.933|221945.020|120.390 +638942.542|221953.942|121.396 +638937.854|221958.392|121.579 +638933.075|221962.927|121.390 +638928.354|221967.408|121.740 +638923.660|221971.867|121.896 +638914.253|221980.801|122.539 +638904.823|221989.743|122.307 +638895.432|221998.665|122.810 +638890.699|222003.155|122.822 +638886.053|222007.565|123.136 +638872.042|222020.864|123.261 +638853.437|222038.527|123.655 +638848.758|222042.965|123.530 +638844.061|222047.418|123.298 +638839.419|222051.819|123.136 +638834.679|222056.312|122.658 +638825.352|222065.154|122.152 +638811.249|222078.514|120.539 +638806.558|222082.961|120.223 +638801.883|222087.389|119.720 +638787.904|222100.636|118.357 +638783.241|222105.056|117.726 +638778.623|222109.436|117.717 +638774.036|222113.782|117.312 +638769.385|222118.189|116.842 +638764.746|222122.588|116.461 +638760.143|222126.946|116.053 +638755.590|222131.265|115.943 +638746.577|222139.824|116.333 +638737.564|222148.377|116.224 +638732.778|222152.897|114.885 +638723.729|222161.477|114.428 +638719.343|222165.647|114.870 +638714.798|222169.954|114.440 +638710.168|222174.337|113.547 +638692.072|222191.482|111.804 +638687.515|222195.798|111.185 +638683.020|222200.056|110.652 +638678.530|222204.314|110.441 +638674.080|222208.532|110.201 +638656.200|222225.473|108.494 +638651.570|222229.850|107.168 +638647.352|222233.858|107.723 +638642.938|222238.043|107.296 +638629.606|222250.668|105.717 +638625.135|222254.902|104.845 +638620.734|222259.071|104.342 +638616.375|222263.204|104.071 +638611.864|222267.466|102.846 +638607.356|222271.730|101.907 +638603.137|222275.735|101.883 +638598.977|222279.688|102.413 +638594.905|222283.559|103.129 +638586.788|222291.286|104.699 +638582.509|222295.343|104.467 +638578.360|222299.284|104.867 +638569.579|222307.586|102.745 +638565.327|222311.616|102.483 +638561.255|222315.484|102.828 +638548.898|222327.210|102.824 +638544.756|222331.135|102.675 +638540.598|222335.076|102.489 +638528.156|222346.869|101.666 +638524.036|222350.774|101.246 +638519.991|222354.614|101.395 +638515.943|222358.452|101.334 +638507.899|222366.081|101.005 +638503.910|222369.866|101.005 +638495.854|222377.502|100.514 +638491.721|222381.412|99.962 +638487.746|222385.186|99.862 +638479.955|222392.577|99.944 +638476.346|222396.015|101.203 +638472.789|222399.411|102.657 +638469.074|222402.946|103.257 +638465.264|222406.558|103.276 +638461.430|222410.201|103.404 +638453.816|222417.424|103.513 +638449.960|222421.079|103.398 +638446.202|222424.642|103.260 +638442.517|222428.144|103.632 +638438.758|222431.710|103.733 +638435.022|222435.255|103.711 +638431.276|222438.809|103.672 +638427.578|222442.314|103.632 +638423.805|222445.893|103.513 +638419.830|222449.648|102.416 +638411.140|222457.820|97.018 +638406.840|222461.864|94.537 +638402.594|222465.863|92.300 +638395.059|222472.993|90.937 +638391.594|222476.288|91.522 +638577.869|222297.248|104.818 +638581.978|222293.337|104.504 +638586.206|222289.323|104.751 +638590.229|222285.485|103.803 +638594.283|222281.621|103.020 +638606.734|222269.770|101.855 +638611.218|222265.524|102.946 +638620.023|222257.172|104.169 +638624.428|222252.991|104.711 +638628.933|222248.720|105.516 +638642.222|222236.114|107.208 +638646.553|222231.996|107.238 +638655.210|222223.769|107.043 +638659.913|222219.322|108.786 +638673.312|222206.606|109.975 +638677.698|222202.436|110.179 +638682.197|222198.166|110.457 +638691.243|222189.586|111.618 +638709.357|222172.395|113.563 +638713.935|222168.055|114.169 +638718.495|222163.727|114.721 +638722.927|222159.508|114.267 +638727.402|222155.253|114.087 +638731.961|222150.928|114.687 +638736.704|222146.438|115.800 +638741.328|222142.049|116.266 +638750.219|222133.591|115.434 +638754.821|222129.217|115.553 +638759.424|222124.849|115.971 +638764.017|222120.491|116.355 +638768.702|222116.047|116.723 +638773.362|222111.624|117.293 +638777.971|222107.250|117.537 +638782.580|222102.870|117.516 +638801.319|222085.091|119.607 +638806.019|222080.635|120.290 +638810.685|222076.203|120.463 +638815.376|222071.750|120.826 +638820.110|222067.263|121.506 +638824.804|222062.807|121.957 +638829.540|222058.314|122.377 +638838.983|222049.350|123.112 +638843.689|222044.882|123.417 +638848.359|222040.447|123.490 +638853.037|222036.003|123.648 +638871.792|222018.172|123.030 +638881.244|222009.193|123.219 +638890.659|222000.241|122.844 +638895.350|221995.785|122.932 +638904.792|221986.805|122.524 +638909.560|221982.276|122.509 +638914.321|221977.753|122.460 +638928.543|221964.226|121.567 +638933.307|221959.699|121.634 +638938.101|221955.142|121.564 +638952.341|221941.591|120.256 +638990.213|221905.518|114.035 +638999.820|221896.374|113.051 +639014.536|221882.414|114.517 +639019.550|221877.671|116.047 +639024.472|221873.002|116.690 +639029.422|221868.311|117.647 +639034.308|221863.663|117.470 +639039.258|221858.969|117.994 +639044.227|221854.266|119.272 +639064.054|221835.469|122.316 +639068.989|221830.787|122.954 +639078.779|221821.481|123.356 +639083.701|221816.803|123.325 +639088.612|221812.133|123.170 +639093.513|221807.467|122.947 +639098.399|221802.815|122.527 +639103.297|221798.164|122.896 +639108.329|221793.394|123.837 +639123.152|221779.318|125.172 +639128.053|221774.658|125.081 +639132.988|221769.961|124.846 +639137.931|221765.261|124.724 +639142.827|221760.604|124.615 +639147.783|221755.894|124.721 +639152.720|221751.197|124.581 +639162.578|221741.816|124.069 +639167.503|221737.128|123.731 +639172.417|221732.449|123.216 +639177.345|221727.761|122.938 +639182.344|221723.009|123.167 +639187.324|221718.273|123.030 +639192.262|221713.579|122.963 +639197.249|221708.836|123.045 +639207.161|221699.409|122.856 +639212.147|221694.669|122.935 +639217.116|221689.942|122.694 +639222.093|221685.208|122.588 +639232.033|221675.750|122.091 +639236.995|221671.026|121.701 +639242.009|221666.256|121.375 +639246.974|221661.531|120.951 +639251.933|221656.807|120.405 +639261.906|221647.309|119.503 +639286.881|221623.535|117.479 +639291.904|221618.758|117.418 +639301.935|221609.209|116.440 +639306.904|221604.479|115.864 +639311.927|221599.699|115.736 +639316.947|221594.923|115.480 +639332.001|221580.582|113.630 +639337.024|221575.800|113.011 +639342.002|221571.060|112.505 +639347.076|221566.232|112.426 +639352.103|221561.447|112.078 +639357.086|221556.704|111.612 +639362.161|221551.870|110.996 +639377.252|221537.505|109.658 +639397.396|221518.321|107.649 +639432.658|221484.713|101.837 +639442.781|221475.069|100.365 +639447.792|221470.296|99.993 +639452.818|221465.502|99.011 +639467.835|221451.243|101.136 +639472.901|221446.421|100.688 +639477.860|221441.700|100.657 +639482.917|221436.890|100.660 +639487.907|221432.153|101.364 +639492.866|221427.435|101.432 +639497.877|221422.668|101.398 +639502.894|221417.895|101.282 +639507.972|221413.036|99.368 +639512.967|221408.275|98.670 +639517.932|221403.554|98.832 +639522.962|221398.766|98.591 +639537.818|221384.653|100.142 +639562.186|221361.574|107.704 +639567.069|221356.941|108.512 +639572.007|221352.238|108.250 +639576.893|221347.602|109.015 +639606.337|221319.563|107.415 +639621.065|221305.533|105.958 +639625.960|221300.867|105.278 +639630.882|221296.170|104.275 +639645.531|221282.228|103.888 +639650.350|221277.641|103.827 +639655.120|221273.121|105.101 +639664.706|221264.016|106.327 +639674.179|221255.034|108.427 +639678.968|221250.483|108.844 +639683.738|221245.951|109.439 +639688.566|221241.360|109.408 +639693.354|221236.810|109.850 +639698.085|221232.317|110.414 +639702.916|221227.721|110.377 +639707.677|221223.194|110.630 +639712.429|221218.674|110.969 +639717.077|221214.276|112.499 +639731.311|221200.746|113.389 +639740.824|221191.699|113.669 +639750.248|221182.741|114.425 +639754.979|221178.245|114.648 +639759.716|221173.737|114.812 +639764.449|221169.239|115.038 +639773.794|221160.357|115.794 +639778.525|221155.861|116.108 +639788.041|221146.802|115.839 +639797.422|221137.878|115.995 +639802.196|221133.333|115.617 +639816.460|221119.742|114.261 +639821.258|221115.173|113.794 +639826.016|221110.638|113.273 +639830.832|221106.053|112.737 +639835.556|221101.548|112.154 +639840.308|221097.025|111.816 +639845.066|221092.496|111.426 +639849.812|221087.973|110.798 +639859.279|221078.957|110.188 +639864.113|221074.348|109.347 +639868.740|221069.947|109.372 +639887.701|221051.884|107.454 +639892.435|221047.376|107.174 +639897.153|221042.883|106.711 +639901.841|221038.421|106.482 +639911.232|221029.478|105.973 +639915.929|221025.010|105.775 +639934.263|221007.591|107.195 +639948.040|220994.496|108.015 +639952.670|220990.092|108.088 +639957.248|220985.736|108.180 +639961.844|220981.366|108.189 +639966.431|220977.004|108.274 +639971.052|220972.609|108.466 +639989.614|220954.936|107.189 +639994.247|220950.523|106.814 +640003.632|220941.577|105.455 +640022.195|220923.886|103.157 +640026.910|220919.387|102.221 +640031.454|220915.068|102.300 +640045.106|220902.066|101.401 +640049.681|220897.710|101.115 +640058.667|220889.163|100.965 +640072.157|220876.322|100.535 +640076.592|220872.104|100.584 +640081.088|220867.818|100.069 +640080.661|220865.605|100.164 +640071.615|220874.185|100.602 +640067.125|220878.447|100.831 +640062.687|220882.647|100.505 +640058.173|220886.929|100.621 +640049.054|220895.585|101.154 +640044.518|220899.883|101.176 +640035.292|220908.637|101.590 +640026.123|220917.333|102.050 +640011.984|220930.781|104.181 +639993.153|220948.685|106.619 +639988.389|220953.214|107.125 +639974.252|220966.647|108.162 +639969.549|220971.112|108.390 +639964.886|220975.538|108.405 +639960.210|220979.976|108.216 +639955.516|220984.426|108.134 +639950.819|220988.885|108.119 +639946.095|220993.372|108.305 +639941.486|220997.736|107.732 +639932.031|221006.704|107.275 +639918.075|221019.929|105.665 +639913.277|221024.483|105.812 +639894.062|221042.734|106.903 +639874.747|221061.086|108.463 +639864.988|221070.364|109.460 +639860.132|221074.982|110.030 +639855.353|221079.517|110.027 +639840.780|221093.371|111.673 +639835.873|221098.034|112.033 +639831.039|221102.627|112.612 +639826.119|221107.303|113.145 +639821.255|221111.930|113.675 +639801.766|221130.453|115.538 +639796.855|221135.116|115.769 +639787.202|221144.278|115.733 +639782.390|221148.850|116.059 +639777.516|221153.474|116.086 +639772.734|221158.010|115.760 +639767.902|221162.591|115.440 +639763.193|221167.053|114.892 +639758.304|221171.689|114.690 +639753.504|221176.246|114.602 +639748.673|221180.824|114.331 +639743.890|221185.362|114.111 +639739.023|221189.977|113.767 +639734.225|221194.531|113.742 +639729.418|221199.088|113.310 +639714.965|221212.791|112.471 +639710.225|221217.269|110.853 +639705.415|221221.829|110.496 +639700.520|221226.477|110.627 +639690.882|221235.612|109.713 +639686.027|221240.214|109.414 +639681.202|221244.796|109.359 +639671.525|221253.967|108.448 +639647.424|221276.781|103.873 +639642.511|221281.445|103.843 +639632.687|221290.772|103.830 +639612.847|221309.654|107.119 +639602.996|221319.021|108.070 +639598.004|221323.772|108.936 +639593.041|221328.491|109.347 +639578.249|221342.542|109.987 +639573.397|221347.129|108.515 +639568.481|221351.793|108.241 +639563.537|221356.487|108.466 +639558.608|221361.156|107.564 +639539.110|221379.588|101.773 +639534.209|221384.217|99.996 +639524.324|221393.575|98.170 +639519.335|221398.314|98.432 +639514.342|221403.060|98.795 +639504.299|221412.616|100.157 +639494.268|221422.156|101.425 +639489.254|221426.914|101.368 +639484.249|221431.663|101.005 +639479.244|221436.408|100.660 +639474.276|221441.130|100.788 +639469.259|221445.894|100.938 +639464.187|221450.716|101.502 +639454.208|221460.162|99.527 +639444.174|221469.699|100.176 +639439.163|221474.460|100.353 +639429.123|221484.012|101.907 +639398.929|221512.746|106.744 +639393.882|221517.549|107.461 +639388.837|221522.347|108.119 +639383.842|221527.093|108.469 +639378.754|221531.933|109.091 +639373.716|221536.724|109.792 +639368.729|221541.467|110.237 +639363.694|221546.256|110.911 +639358.662|221551.041|111.271 +639348.594|221560.609|112.084 +639343.562|221565.391|112.270 +639338.530|221570.170|112.435 +639333.501|221574.953|113.057 +639318.431|221589.287|115.062 +639313.414|221594.064|115.870 +639308.382|221598.840|115.824 +639278.298|221627.424|118.141 +639258.319|221646.401|119.723 +639253.301|221651.165|120.201 +639248.327|221655.889|120.466 +639243.365|221660.605|121.091 +639238.345|221665.372|121.335 +639228.408|221674.808|122.210 +639223.437|221679.533|122.505 +639218.457|221684.257|122.658 +639208.502|221693.706|123.036 +639188.601|221712.588|123.173 +639173.721|221726.707|123.237 +639168.796|221731.382|123.664 +639163.922|221736.012|124.136 +639158.984|221740.700|124.328 +639154.058|221745.379|124.712 +639139.300|221759.381|124.776 +639134.350|221764.075|124.883 +639129.504|221768.678|125.087 +639124.602|221773.329|125.252 +639119.698|221777.983|125.346 +639114.834|221782.595|125.368 +639100.051|221796.597|123.615 +639095.144|221801.246|123.179 +639090.331|221805.815|123.368 +639085.454|221810.441|123.395 +639080.626|221815.023|123.447 +639075.752|221819.646|123.548 +639066.047|221828.848|123.136 +639061.164|221833.472|122.633 +639046.528|221847.335|120.914 +639041.553|221852.035|119.540 +639036.655|221856.658|117.997 +639031.739|221861.316|117.360 +639026.917|221865.888|117.284 +639022.119|221870.441|117.440 +639017.151|221875.132|115.897 +638988.204|221902.570|114.154 +638983.489|221907.051|114.867 +638941.439|221947.023|120.945 +638932.084|221955.911|121.862 +638927.345|221960.403|121.643 +638922.657|221964.850|121.865 +638917.969|221969.300|122.100 +638913.330|221973.702|122.362 +638908.630|221978.161|122.530 +638903.939|221982.611|122.792 +638894.603|221991.463|122.978 +638880.652|222004.694|123.447 +638862.029|222022.354|123.889 +638852.766|222031.132|123.895 +638848.017|222035.628|123.261 +638843.384|222040.023|123.466 +638838.736|222044.419|122.935 +638829.431|222053.236|122.502 +638824.767|222057.653|122.262 +638815.437|222066.483|121.173 +638810.697|222070.967|120.512 +638806.049|222075.368|120.149 +638801.395|222079.772|119.461 +638792.160|222088.517|118.961 +638787.523|222092.906|118.449 +638782.808|222097.362|117.504 +638773.631|222106.055|116.928 +638764.499|222114.709|116.745 +638759.854|222119.104|116.047 +638755.269|222123.441|115.760 +638750.670|222127.800|115.382 +638746.065|222132.158|115.010 +638741.538|222136.447|114.831 +638737.113|222140.650|115.254 +638732.504|222145.009|114.648 +638727.920|222149.346|114.209 +638723.433|222153.598|114.044 +638718.974|222157.829|114.364 +638714.472|222162.096|114.154 +638709.997|222166.330|113.870 +638696.336|222179.259|112.334 +638691.743|222183.603|111.484 +638687.204|222187.891|110.688 +638682.666|222192.189|110.182 +638678.179|222196.438|109.978 +638669.240|222204.899|109.027 +638660.284|222213.373|108.088 +638655.725|222217.682|107.089 +638651.351|222221.828|107.086 +638642.606|222230.112|106.631 +638624.940|222246.837|105.074 +638620.490|222251.043|104.327 +638616.058|222255.234|103.693 +638607.283|222263.540|102.675 +638602.811|222267.767|101.919 +638586.376|222283.382|104.803 +638582.219|222287.326|105.138 +638577.994|222291.331|104.925 +638573.828|222295.285|105.245 +638569.664|222299.232|105.360 +638565.117|222303.523|103.718 +638560.901|222307.513|103.394 +638556.875|222311.339|103.952 +638552.751|222315.249|104.074 +638536.127|222331.001|103.462 +638531.915|222334.991|103.032 +638519.540|222346.711|102.139 +638515.401|222350.630|101.892 +638511.347|222354.474|101.800 +638507.326|222358.284|101.651 +638503.236|222362.155|101.444 +638471.323|222392.397|100.435 +638464.237|222399.152|103.285 +638460.369|222402.818|103.291 +638456.537|222406.452|103.452 +638452.740|222410.054|103.547 +638448.945|222413.654|103.666 +638445.117|222417.281|103.663 +638441.273|222420.924|103.401 +638437.542|222424.459|103.617 +638433.796|222428.013|103.766 +638430.093|222431.525|103.894 +638426.332|222435.091|103.800 +638422.586|222438.642|103.785 +638418.852|222442.177|103.635 +638415.149|222445.686|103.602 +638410.936|222449.648|101.413 +638406.489|222453.827|98.554 +638402.182|222457.875|95.845 +638397.876|222461.922|93.391 +638390.228|222469.149|91.815 +638386.631|222472.557|91.708 +638570.874|222295.989|105.473 +638574.956|222292.097|105.004 +638579.134|222288.119|105.025 +638583.386|222284.074|105.147 +638587.510|222280.142|104.687 +638604.003|222264.408|102.465 +638612.699|222256.136|103.129 +638617.173|222251.890|103.983 +638621.584|222247.699|104.547 +638626.077|222243.438|105.552 +638634.916|222235.038|106.644 +638639.238|222230.923|106.616 +638656.877|222214.144|107.415 +638661.403|222209.849|108.268 +638665.881|222205.591|108.640 +638683.879|222188.480|110.280 +638706.757|222166.750|113.468 +638711.247|222162.477|113.602 +638715.834|222158.121|114.297 +638720.278|222153.891|113.919 +638724.811|222149.575|113.794 +638733.970|222140.873|114.703 +638738.505|222136.560|114.632 +638743.017|222132.268|114.754 +638747.628|222127.885|115.181 +638752.276|222123.469|115.562 +638756.906|222119.070|115.858 +638761.521|222114.684|116.403 +638766.184|222110.259|116.943 +638770.790|222105.872|116.879 +638789.453|222088.142|118.607 +638794.138|222083.695|119.140 +638798.829|222079.236|119.433 +638803.516|222074.786|120.052 +638808.253|222070.281|120.393 +638817.702|222061.311|121.609 +638822.441|222056.806|122.045 +638827.163|222052.319|122.387 +638831.890|222047.826|122.804 +638836.566|222043.379|122.874 +638850.751|222029.898|123.664 +638888.422|221994.047|122.981 +638893.152|221989.548|123.011 +638897.928|221985.004|123.054 +638902.665|221980.493|122.795 +638907.395|221975.988|122.502 +638912.141|221971.474|122.347 +638916.884|221966.960|122.192 +638921.587|221962.476|121.737 +638926.327|221957.968|121.585 +638931.152|221953.378|121.780 +638964.436|221921.669|118.503 +638993.038|221894.393|113.953 +638997.827|221889.833|113.581 +639007.654|221880.494|114.447 +639012.616|221875.788|115.416 +639017.633|221871.039|116.998 +639027.417|221861.733|117.217 +639032.342|221857.058|117.982 +639037.402|221852.269|119.744 +639042.306|221847.612|120.372 +639047.284|221842.891|121.347 +639052.197|221838.227|122.167 +639057.092|221833.573|122.268 +639066.956|221824.206|123.441 +639071.881|221819.525|123.417 +639081.641|221810.246|123.514 +639086.554|221805.574|123.414 +639091.425|221800.944|123.408 +639096.381|221796.241|123.917 +639116.135|221777.480|125.425 +639121.039|221772.817|125.392 +639125.938|221768.160|125.267 +639130.869|221763.466|124.987 +639135.773|221758.805|125.011 +639150.556|221744.748|124.798 +639155.482|221740.060|124.481 +639160.365|221735.415|124.261 +639165.290|221730.727|123.935 +639175.138|221721.357|123.277 +639180.094|221716.651|123.557 +639185.026|221711.960|123.395 +639194.902|221702.569|123.426 +639214.662|221683.775|122.826 +639219.636|221679.045|122.691 +639229.469|221669.688|121.878 +639239.400|221660.236|121.198 +639244.316|221655.557|120.768 +639249.278|221650.833|120.268 +639259.205|221641.381|119.403 +639274.159|221627.153|118.351 +639279.118|221622.428|117.699 +639284.086|221617.698|117.287 +639289.064|221612.964|117.220 +639294.072|221608.194|116.480 +639304.020|221598.730|115.989 +639314.018|221589.220|115.504 +639318.989|221584.487|115.062 +639334.001|221570.188|113.035 +639339.021|221565.403|112.301 +639344.004|221560.666|112.154 +639349.030|221555.881|111.706 +639354.014|221551.141|111.487 +639358.994|221546.396|110.978 +639364.023|221541.607|110.368 +639369.053|221536.822|109.975 +639384.110|221522.484|108.402 +639389.099|221517.729|107.717 +639399.182|221508.134|106.769 +639424.350|221484.137|101.938 +639434.426|221474.533|100.215 +639449.550|221460.149|99.548 +639454.567|221455.404|101.236 +639464.574|221445.897|101.459 +639469.640|221441.081|101.090 +639474.703|221436.262|100.801 +639479.668|221431.544|100.746 +639484.709|221426.758|101.218 +639489.717|221422.001|101.349 +639494.679|221417.285|101.441 +639509.809|221402.871|98.963 +639519.880|221393.291|98.225 +639524.909|221388.491|96.860 +639529.820|221383.864|99.618 +639534.745|221379.200|100.798 +639539.637|221374.577|102.666 +639554.368|221360.641|107.631 +639559.318|221355.944|108.046 +639564.216|221351.299|108.613 +639569.252|221346.504|108.302 +639574.122|221341.893|109.378 +639588.936|221327.820|109.771 +639598.851|221318.387|108.963 +639603.840|221313.629|108.055 +639613.698|221304.244|106.942 +639618.690|221299.492|106.229 +639628.599|221290.052|104.650 +639638.396|221280.732|104.178 +639643.318|221276.050|103.986 +639648.119|221271.493|104.233 +639652.987|221266.875|104.839 +639657.729|221262.379|105.812 +639676.919|221244.183|108.802 +639696.064|221226.014|110.694 +639700.862|221221.451|110.505 +639705.705|221216.848|110.408 +639710.371|221212.432|111.728 +639715.120|221207.930|112.679 +639724.615|221198.911|113.051 +639729.385|221194.382|113.294 +639734.140|221189.867|113.712 +639753.101|221171.860|114.645 +639762.535|221162.896|114.959 +639767.247|221158.424|115.440 +639771.926|221153.983|115.788 +639781.356|221145.019|115.836 +639786.096|221140.511|115.687 +639795.487|221131.586|115.812 +639800.202|221127.103|115.538 +639804.951|221122.583|114.986 +639809.688|221118.069|114.556 +639819.173|221109.037|113.718 +639823.928|221104.502|112.843 +639833.337|221095.547|112.045 +639842.807|221086.528|111.243 +639852.201|221077.585|110.420 +639856.892|221073.117|109.908 +639861.565|221068.666|109.576 +639870.980|221059.702|108.817 +639899.076|221032.947|106.199 +639903.752|221028.497|106.083 +639908.342|221024.135|106.250 +639912.963|221019.737|105.897 +639917.508|221015.421|106.415 +639922.110|221011.041|106.211 +639926.569|221006.813|107.019 +639931.123|221002.488|107.503 +639935.662|220998.175|107.802 +639940.176|220993.884|107.936 +639944.717|220989.571|108.244 +639962.996|220972.185|108.277 +639972.079|220963.547|108.158 +639976.737|220959.109|107.573 +639990.489|220946.015|106.400 +639995.174|220941.549|105.757 +639999.758|220937.182|105.147 +640009.064|220928.312|103.791 +640013.666|220923.926|103.166 +640018.241|220919.570|102.727 +640022.847|220915.181|102.142 +640027.416|220910.832|101.791 +640031.994|220906.473|101.410 +640036.566|220902.117|100.816 +640041.053|220897.850|100.721 +640045.625|220893.498|100.456 +640050.108|220889.233|100.420 +640054.522|220885.036|100.505 +640076.918|220863.725|99.749 +640078.796|220859.595|99.097 +640074.379|220863.789|99.420 +640069.875|220868.071|99.962 +640065.488|220872.235|100.154 +640047.947|220888.877|100.054 +640038.977|220897.393|100.395 +640029.924|220905.991|101.273 +640025.346|220910.341|101.639 +640020.792|220914.669|102.160 +640016.211|220919.019|102.578 +640011.639|220923.362|103.251 +640007.009|220927.757|103.711 +640002.361|220932.174|104.318 +639997.695|220936.606|105.040 +639993.037|220941.031|105.754 +639979.108|220954.257|107.217 +639969.735|220963.151|108.034 +639965.148|220967.503|108.186 +639960.530|220971.877|107.918 +639946.577|220985.112|108.219 +639904.679|221024.800|106.208 +639895.074|221033.916|106.756 +639890.332|221038.415|106.991 +639885.522|221042.978|107.375 +639871.038|221056.731|108.811 +639866.207|221061.315|109.125 +639861.330|221065.942|109.439 +639856.560|221070.471|109.731 +639851.680|221075.101|110.131 +639841.935|221084.352|110.947 +639837.083|221088.963|111.627 +639832.167|221093.630|112.063 +639827.314|221098.235|112.420 +639812.601|221112.207|114.175 +639802.851|221121.461|114.776 +639797.931|221126.137|115.501 +639793.021|221130.794|115.763 +639783.347|221139.962|115.507 +639778.433|221144.626|115.864 +639773.563|221149.244|115.879 +639768.735|221153.816|115.532 +639763.858|221158.436|115.193 +639754.223|221167.556|114.355 +639749.325|221172.204|114.303 +639744.482|221176.791|114.175 +639739.608|221181.409|113.910 +639734.746|221186.012|113.526 +639729.872|221190.629|113.282 +639725.017|221195.229|112.886 +639720.094|221199.895|112.706 +639715.218|221204.513|112.545 +639710.329|221209.143|112.039 +639705.616|221213.590|110.640 +639700.721|221218.226|110.192 +639695.756|221222.938|110.573 +639686.003|221232.177|109.926 +639681.120|221236.798|109.405 +639676.237|221241.421|108.902 +639651.911|221264.428|104.742 +639647.031|221269.045|104.233 +639642.105|221273.709|103.696 +639637.167|221278.397|104.019 +639627.216|221287.836|104.489 +639617.230|221297.331|106.339 +639612.244|221302.068|106.912 +639607.245|221306.819|107.738 +639602.271|221311.538|108.174 +639597.327|221316.238|109.000 +639592.322|221320.990|109.317 +639587.354|221325.705|109.807 +639582.395|221330.414|110.256 +639577.457|221335.099|110.362 +639572.565|221339.723|109.582 +639567.648|221344.371|108.427 +639557.794|221353.710|108.274 +639552.856|221358.383|107.509 +639538.220|221372.199|103.233 +639518.582|221390.743|97.747 +639508.636|221400.186|98.722 +639503.634|221404.938|99.417 +639493.625|221414.460|101.416 +639488.656|221419.169|101.368 +639483.740|221423.823|101.139 +639478.735|221428.566|100.825 +639473.767|221433.278|100.883 +639468.744|221438.045|101.230 +639458.792|221447.494|102.130 +639453.784|221452.243|102.160 +639443.912|221461.567|99.578 +639423.889|221480.583|101.688 +639418.872|221485.347|102.474 +639383.881|221518.601|107.991 +639378.934|221523.304|108.756 +639368.949|221532.783|109.570 +639358.973|221542.257|110.676 +639353.986|221546.993|111.124 +639348.997|221551.727|111.380 +639344.013|221556.460|111.776 +639339.027|221561.191|112.081 +639329.063|221570.655|113.236 +639324.037|221575.428|113.922 +639319.059|221580.155|114.379 +639314.088|221584.883|115.291 +639304.090|221594.374|116.288 +639299.104|221599.102|116.144 +639294.123|221603.826|116.318 +639289.149|221608.548|116.726 +639284.181|221613.272|117.446 +639279.161|221618.039|117.854 +639269.218|221627.488|118.744 +639264.238|221632.212|118.936 +639259.266|221636.937|119.268 +639254.292|221641.658|119.628 +639249.318|221646.383|119.930 +639244.353|221651.104|120.469 +639239.387|221655.822|121.009 +639234.416|221660.544|121.338 +639229.494|221665.219|121.725 +639224.467|221669.989|121.890 +639219.554|221674.662|122.463 +639214.577|221679.386|122.679 +639209.611|221684.105|123.133 +639204.628|221688.832|123.252 +639199.696|221693.514|123.441 +639194.713|221698.244|123.520 +639189.778|221702.929|123.633 +639184.779|221707.669|123.484 +639179.796|221712.399|123.639 +639169.890|221721.796|123.356 +639164.952|221726.484|123.514 +639160.045|221731.148|124.264 +639155.107|221735.835|124.478 +639150.175|221740.520|124.773 +639130.430|221759.259|125.060 +639125.486|221763.953|125.261 +639120.588|221768.601|125.447 +639115.641|221773.298|125.617 +639110.780|221777.913|125.657 +639090.949|221796.707|124.103 +639086.024|221801.371|123.466 +639081.150|221805.994|123.533 +639076.234|221810.661|123.655 +639071.363|221815.285|123.789 +639066.468|221819.927|123.648 +639061.570|221824.572|123.490 +639051.685|221833.935|122.201 +639046.817|221838.550|121.954 +639041.852|221843.250|121.173 +639031.894|221852.665|118.900 +639026.963|221857.326|117.589 +639022.007|221862.023|117.071 +639012.290|221871.237|116.717 +639002.359|221880.628|114.309 +638997.476|221885.252|113.773 +638992.645|221889.836|113.764 +638973.659|221907.889|116.693 +638968.987|221912.339|117.775 +638964.265|221916.826|118.415 +638959.529|221921.328|118.918 +638954.835|221925.793|119.829 +638931.173|221948.266|121.515 +638926.403|221952.792|121.411 +638921.721|221957.236|121.676 +638916.969|221961.748|121.768 +638912.266|221966.216|121.871 +638907.527|221970.718|122.103 +638902.887|221975.122|122.377 +638898.145|221979.630|122.609 +638893.481|221984.056|122.746 +638888.772|221988.527|122.896 +638884.109|221992.956|123.045 +638879.451|221997.379|123.277 +638874.782|222001.814|123.411 +638860.785|222015.100|123.691 +638856.070|222019.574|123.581 +638851.443|222023.970|123.776 +638828.068|222046.135|122.353 +638818.732|222054.989|121.780 +638814.017|222059.454|121.237 +638795.332|222077.163|119.153 +638790.663|222081.586|118.720 +638786.079|222085.935|118.534 +638781.354|222090.404|117.507 +638762.941|222107.863|116.345 +638753.883|222116.458|116.050 +638744.632|222125.224|114.995 +638740.029|222129.586|114.648 +638735.512|222133.868|114.242 +638730.946|222138.200|114.148 +638721.906|222146.774|113.691 +638717.508|222150.956|114.050 +638712.972|222155.256|113.928 +638708.394|222159.591|113.038 +638699.384|222168.131|112.423 +638685.726|222181.070|110.469 +638681.206|222185.349|109.777 +638676.707|222189.613|109.503 +638672.193|222193.896|109.155 +638667.734|222198.117|108.607 +638649.876|222215.043|106.766 +638623.663|222239.902|105.406 +638619.106|222244.212|104.358 +638614.729|222248.361|103.980 +638610.398|222252.463|103.605 +638589.248|222272.547|104.156 +638585.218|222276.381|105.071 +638581.100|222280.298|105.565 +638576.861|222284.318|105.516 +638572.639|222288.320|105.333 +638568.515|222292.237|105.607 +638564.342|222296.193|105.680 +638560.130|222300.183|105.345 +638555.924|222304.173|105.293 +638551.827|222308.056|105.299 +638547.655|222312.012|105.205 +638543.412|222316.029|104.568 +638539.205|222320.013|104.123 +638535.027|222323.970|103.830 +638530.860|222327.914|103.370 +638526.718|222331.843|103.263 +638522.630|222335.720|103.193 +638514.489|222343.431|102.797 +638510.472|222347.244|102.849 +638506.394|222351.109|102.648 +638502.181|222355.090|101.685 +638498.143|222358.918|101.474 +638494.220|222362.637|101.553 +638486.094|222370.333|100.785 +638482.019|222374.192|100.264 +638469.973|222385.600|99.139 +638462.661|222392.556|100.852 +638459.238|222395.826|102.666 +638455.590|222399.298|103.559 +638451.755|222402.931|103.507 +638447.909|222406.583|103.620 +638444.160|222410.137|103.711 +638440.377|222413.727|103.678 +638436.585|222417.318|103.638 +638432.778|222420.930|103.535 +638429.072|222424.447|103.855 +638425.408|222427.922|103.934 +638421.674|222431.461|103.955 +638417.910|222435.033|103.864 +638414.219|222438.532|103.870 +638410.537|222442.022|103.718 +638406.648|222445.698|102.776 +638402.274|222449.806|100.200 +638397.964|222453.860|97.695 +638393.590|222457.969|94.769 +638389.509|222461.816|92.992 +638567.390|222291.228|105.726 +638571.533|222287.287|105.312 +638575.766|222283.266|105.568 +638579.991|222279.252|105.577 +638584.167|222275.281|105.357 +638588.233|222271.404|104.388 +638592.448|222267.392|104.144 +638596.654|222263.393|103.858 +638600.885|222259.373|103.718 +638609.453|222251.232|103.745 +638613.815|222247.090|104.050 +638618.204|222242.920|104.260 +638622.706|222238.659|105.290 +638631.536|222230.274|105.824 +638635.928|222226.104|106.135 +638649.165|222213.534|106.720 +638667.124|222196.496|108.628 +638671.638|222192.210|108.963 +638676.174|222187.907|109.426 +638680.615|222183.691|109.689 +638685.147|222179.390|110.188 +638689.737|222175.038|110.761 +638694.328|222170.688|111.630 +638698.939|222166.314|112.377 +638708.019|222157.695|113.148 +638712.622|222153.324|113.651 +638717.179|222148.993|113.919 +638721.613|222144.768|113.523 +638726.140|222140.464|113.651 +638730.770|222136.069|114.117 +638735.329|222131.732|114.209 +638739.901|222127.391|114.663 +638744.547|222122.978|115.010 +638749.198|222118.564|115.705 +638758.345|222109.862|115.654 +638763.008|222105.431|116.220 +638781.662|222087.716|118.098 +638786.335|222083.275|118.229 +638791.020|222078.828|118.756 +638795.701|222074.380|119.320 +638800.423|222069.897|119.842 +638805.144|222065.413|120.390 +638809.835|222060.957|120.768 +638814.544|222056.486|121.295 +638819.284|222051.984|121.737 +638824.020|222047.485|122.179 +638828.754|222042.989|122.615 +638842.823|222029.614|123.231 +638861.712|222011.656|123.542 +638866.409|222007.187|123.588 +638871.130|222002.694|123.487 +638875.775|221998.272|123.182 +638880.536|221993.742|123.042 +638885.255|221989.253|122.957 +638890.010|221984.729|122.792 +638894.716|221980.252|122.673 +638899.465|221975.735|122.493 +638904.192|221971.230|122.204 +638908.932|221966.722|121.984 +638913.662|221962.217|121.750 +638918.463|221957.651|121.679 +638923.202|221953.143|121.527 +638927.973|221948.601|121.259 +638932.770|221944.039|121.231 +638937.531|221939.506|120.927 +638942.344|221934.925|120.646 +638951.902|221925.824|119.997 +638961.403|221916.771|118.872 +638966.140|221912.254|117.979 +638970.873|221907.740|117.040 +638975.543|221903.278|115.529 +638994.821|221884.919|113.779 +638999.692|221880.290|114.261 +639009.714|221870.792|116.708 +639014.576|221866.171|116.690 +639019.455|221861.532|116.915 +639024.436|221856.808|117.711 +639029.441|221852.062|118.830 +639034.439|221847.331|120.463 +639069.028|221814.477|123.859 +639073.929|221809.807|123.609 +639078.855|221805.123|123.648 +639083.741|221800.471|123.840 +639113.447|221772.226|125.678 +639118.342|221767.565|125.553 +639123.283|221762.862|125.368 +639128.217|221758.159|125.151 +639133.070|221753.541|125.081 +639147.898|221739.426|124.910 +639152.824|221734.735|124.593 +639157.759|221730.035|124.471 +639162.660|221725.359|123.743 +639167.589|221720.665|123.520 +639172.551|221715.947|123.935 +639177.528|221711.211|123.719 +639182.463|221706.511|123.667 +639192.378|221697.074|123.572 +639197.316|221692.374|123.636 +639202.229|221687.692|123.191 +639207.213|221682.949|123.222 +639212.123|221678.268|122.743 +639217.103|221673.528|122.755 +639226.970|221664.122|121.622 +639236.906|221654.658|121.103 +639241.865|221649.930|120.533 +639246.824|221645.203|119.954 +639256.752|221635.742|119.083 +639261.726|221631.005|119.022 +639266.701|221626.272|118.854 +639276.622|221616.811|117.632 +639281.544|221612.123|117.242 +639286.506|221607.389|116.608 +639291.530|221602.607|116.422 +639296.455|221597.916|116.220 +639301.433|221593.177|116.202 +639316.343|221578.967|114.620 +639331.309|221564.696|112.706 +639336.280|221559.950|111.837 +639341.264|221555.208|111.697 +639346.244|221550.462|111.359 +639351.274|221545.670|111.002 +639356.208|221540.967|110.676 +639361.237|221536.173|109.957 +639371.204|221526.675|109.125 +639376.191|221521.926|108.994 +639381.181|221517.165|108.131 +639386.173|221512.407|107.534 +639391.212|221507.601|106.903 +639421.234|221478.956|101.645 +639426.206|221474.207|100.471 +639441.229|221459.896|99.621 +639451.184|221450.457|102.233 +639456.186|221445.696|102.200 +639461.191|221440.929|102.157 +639466.162|221436.189|101.608 +639471.185|221431.404|101.060 +639476.196|221426.630|100.886 +639481.152|221421.915|101.105 +639486.154|221417.160|101.383 +639491.165|221412.390|101.337 +639496.130|221407.666|101.355 +639501.178|221402.844|100.276 +639506.246|221398.001|98.838 +639511.221|221393.264|98.719 +639516.271|221388.442|97.896 +639526.132|221379.088|100.026 +639531.069|221374.415|101.983 +639550.705|221355.801|107.363 +639555.630|221351.125|108.280 +639560.562|221346.440|109.018 +639565.564|221341.673|108.469 +639570.465|221337.025|109.795 +639575.345|221332.392|110.630 +639580.331|221327.643|110.408 +639585.281|221322.925|109.996 +639595.239|221313.434|109.189 +639600.195|221308.712|108.853 +639615.155|221294.445|106.683 +639620.150|221289.677|105.915 +639625.201|221284.849|104.406 +639635.083|221275.437|104.062 +639639.984|221270.774|104.160 +639644.934|221266.061|104.251 +639649.814|221261.425|104.687 +639654.663|221256.823|105.549 +639674.027|221238.431|108.677 +639678.892|221233.811|109.329 +639683.738|221229.202|109.649 +639693.421|221219.994|110.399 +639698.326|221215.318|110.073 +639703.172|221210.713|110.448 +639707.893|221206.235|111.697 +639712.660|221201.709|112.429 +639722.368|221192.470|112.581 +639727.120|221187.953|113.011 +639731.924|221183.384|113.392 +639741.507|221174.271|113.998 +639746.252|221169.751|114.050 +639751.023|221165.215|114.370 +639755.799|221160.674|114.645 +639760.560|221156.147|115.087 +639765.290|221151.648|115.382 +639770.024|221147.147|115.663 +639774.757|221142.645|115.949 +639779.573|221138.054|115.526 +639793.780|221124.530|115.663 +639798.578|221119.955|115.084 +639803.369|221115.389|114.590 +639808.130|221110.857|114.398 +639812.928|221106.288|113.928 +639817.710|221101.728|113.203 +639827.223|221092.663|112.292 +639831.981|221088.131|111.877 +639836.748|221083.590|111.417 +639841.472|221079.088|110.957 +639846.191|221074.595|110.563 +639850.930|221070.078|110.036 +639855.664|221065.567|109.591 +639860.352|221061.104|109.509 +639865.000|221056.679|109.045 +639879.088|221043.255|107.793 +639883.833|221038.735|107.424 +639888.494|221034.294|107.003 +639893.090|221029.920|106.732 +639897.763|221025.473|106.628 +639902.365|221021.087|106.333 +639906.986|221016.692|106.296 +639911.546|221012.355|106.369 +639920.605|221003.744|106.958 +639934.058|220990.961|108.229 +639938.670|220986.568|108.055 +639943.181|220982.280|108.247 +639947.744|220977.933|107.802 +639952.231|220973.669|108.183 +639956.809|220969.311|107.994 +639961.283|220965.056|108.189 +639965.782|220960.773|107.930 +639970.321|220956.451|107.744 +639988.654|220938.977|105.601 +639997.704|220930.351|104.495 +640002.251|220926.017|103.849 +640006.839|220921.640|103.285 +640011.395|220917.296|102.645 +640020.390|220908.722|101.557 +640024.886|220904.443|101.346 +640029.391|220900.148|100.819 +640047.155|220883.232|99.837 +640051.559|220879.038|99.706 +640060.292|220870.729|99.658 +640069.024|220862.417|99.411 +640073.441|220858.211|99.048 +640077.924|220853.938|98.624 +640080.098|220849.512|97.814 +640075.623|220853.767|98.402 +640071.173|220858.001|98.886 +640049.212|220878.864|99.575 +640044.881|220882.979|99.548 +640040.473|220887.167|99.691 +640031.549|220895.653|100.365 +640026.977|220899.999|100.919 +640022.484|220904.272|101.352 +640018.016|220908.518|101.657 +640013.544|220912.773|102.026 +640008.981|220917.114|102.642 +640004.348|220921.524|103.407 +639999.837|220925.813|103.785 +639986.076|220938.910|105.842 +639981.501|220943.256|106.101 +639958.622|220965.013|108.177 +639949.494|220973.678|107.966 +639940.359|220982.356|108.198 +639935.762|220986.721|108.213 +639926.658|220995.362|107.735 +639922.037|220999.748|107.643 +639917.547|221003.997|106.680 +639912.948|221008.365|106.497 +639908.388|221012.687|106.037 +639903.728|221017.116|106.302 +639898.982|221021.627|106.503 +639894.288|221026.086|106.708 +639889.646|221030.499|106.927 +639880.157|221039.515|107.482 +639875.384|221044.054|108.006 +639870.642|221048.565|108.360 +639865.875|221053.100|108.924 +639856.310|221062.193|109.615 +639851.515|221066.752|110.103 +639846.709|221071.321|110.356 +639841.926|221075.869|110.807 +639837.092|221080.468|111.331 +639832.267|221085.053|111.792 +639827.393|221089.689|112.310 +639822.587|221094.261|112.703 +639812.854|221103.517|113.791 +639803.140|221112.753|114.459 +639798.264|221117.389|114.791 +639778.817|221135.866|115.486 +639769.052|221145.144|115.745 +639764.266|221149.682|115.434 +639759.389|221154.309|115.114 +639754.564|221158.887|114.785 +639749.697|221163.505|114.410 +639744.832|221168.120|114.035 +639739.937|221172.765|113.944 +639735.054|221177.401|113.797 +639730.208|221181.994|113.264 +639725.300|221186.652|112.910 +639720.445|221191.257|112.502 +639715.513|221195.939|112.414 +639705.726|221205.217|111.472 +639700.904|221209.780|110.237 +639695.988|221214.447|110.048 +639690.992|221219.195|110.262 +639686.097|221223.837|109.868 +639681.135|221228.550|109.740 +639671.308|221237.861|108.341 +639666.334|221242.580|107.802 +639651.639|221256.491|105.123 +639646.671|221261.200|104.528 +639641.706|221265.903|103.882 +639636.725|221270.633|104.141 +639631.711|221275.391|104.193 +639626.704|221280.143|104.227 +639616.566|221289.793|106.211 +639611.512|221294.600|107.046 +639606.413|221299.452|107.948 +639601.366|221304.256|108.835 +639596.367|221309.002|108.966 +639586.290|221318.579|109.948 +639576.238|221328.128|110.704 +639571.266|221332.846|110.588 +639566.332|221337.504|108.890 +639561.333|221342.243|108.424 +639551.369|221351.686|107.643 +639546.392|221356.398|106.726 +639541.463|221361.062|105.723 +639531.557|221370.419|102.596 +639516.658|221384.501|98.374 +639511.644|221389.256|98.118 +639506.597|221394.053|98.667 +639501.555|221398.845|99.222 +639491.442|221408.473|101.374 +639486.383|221413.277|101.328 +639481.417|221417.983|101.169 +639471.347|221427.542|101.096 +639466.321|221432.318|101.553 +639461.294|221437.094|102.099 +639456.287|221441.849|102.151 +639451.273|221446.610|102.331 +639441.296|221456.047|100.276 +639436.249|221460.832|99.798 +639431.238|221465.590|99.911 +639411.219|221484.631|103.020 +639386.195|221508.433|106.933 +639376.249|221517.894|108.497 +639360.713|221532.658|110.012 +639351.350|221541.555|110.777 +639346.363|221546.295|111.048 +639341.422|221550.986|111.450 +639336.439|221555.723|111.773 +639331.455|221560.459|112.389 +639321.546|221569.881|113.794 +639311.634|221579.299|114.572 +639306.660|221584.029|115.151 +639296.809|221593.393|116.376 +639291.828|221598.120|116.510 +639286.942|221602.759|116.562 +639281.962|221607.490|116.687 +639262.275|221626.189|118.860 +639257.343|221630.868|118.976 +639252.421|221635.544|119.384 +639247.492|221640.219|119.631 +639242.618|221644.846|120.113 +639237.699|221649.519|120.610 +639213.147|221672.833|122.761 +639208.267|221677.463|122.987 +639203.384|221682.096|123.155 +639198.456|221686.772|123.423 +639183.752|221700.725|123.886 +639178.814|221705.410|123.938 +639173.916|221710.052|123.923 +639169.024|221714.694|124.002 +639164.062|221719.394|123.709 +639159.228|221723.985|123.996 +639154.363|221728.606|124.606 +639149.422|221733.293|124.764 +639144.582|221737.887|125.011 +639124.983|221756.477|125.297 +639120.137|221761.076|125.523 +639115.242|221765.721|125.752 +639110.429|221770.284|125.791 +639105.531|221774.935|125.950 +639095.787|221784.171|125.822 +639090.815|221788.877|125.102 +639076.139|221802.776|123.792 +639071.244|221807.415|123.588 +639066.428|221811.987|123.783 +639056.675|221821.237|123.944 +639046.790|221830.586|122.121 +639032.126|221844.472|120.735 +639017.215|221858.560|117.077 +639012.366|221863.157|116.696 +639007.465|221867.799|116.352 +638997.696|221877.046|115.077 +638987.994|221886.239|114.639 +638968.938|221904.338|116.836 +638959.574|221913.248|118.805 +638954.856|221917.731|119.479 +638950.089|221922.255|119.710 +638935.839|221935.779|120.546 +638931.176|221940.204|120.914 +638926.412|221944.727|121.256 +638921.730|221949.171|121.484 +638916.997|221953.664|121.701 +638907.581|221962.598|122.234 +638902.857|221967.082|122.579 +638898.169|221971.532|122.832 +638888.830|221980.392|123.335 +638884.069|221984.903|123.085 +638879.387|221989.341|123.094 +638874.663|221993.822|123.176 +638869.984|221998.260|123.252 +638865.290|222002.707|123.246 +638860.606|222007.151|123.319 +638841.894|222024.893|123.280 +638823.139|222042.657|121.975 +638818.494|222047.058|121.841 +638813.843|222051.459|121.362 +638809.116|222055.934|120.738 +638804.431|222060.372|120.405 +638790.431|222073.625|118.994 +638785.804|222078.005|118.519 +638776.444|222086.862|117.287 +638757.973|222104.348|115.489 +638753.410|222108.671|115.297 +638748.826|222113.014|114.989 +638744.333|222117.275|115.245 +638739.719|222121.643|114.803 +638735.171|222125.950|114.489 +638730.562|222130.314|114.123 +638726.048|222134.591|113.755 +638721.482|222138.916|113.407 +638717.011|222143.153|113.334 +638712.552|222147.383|113.636 +638708.019|222151.675|113.252 +638703.591|222155.875|113.197 +638680.758|222177.473|109.753 +638676.247|222181.747|109.378 +638667.350|222190.168|108.591 +638645.105|222211.227|106.592 +638636.309|222219.560|106.110 +638631.901|222223.733|105.720 +638627.479|222227.918|105.284 +638618.829|222236.120|105.174 +638614.461|222240.250|104.577 +638610.090|222244.389|104.224 +638605.817|222248.443|104.367 +638597.361|222256.459|104.659 +638593.119|222260.486|104.748 +638589.013|222264.384|105.519 +638584.883|222268.307|105.936 +638580.692|222272.281|106.074 +638576.477|222276.277|106.107 +638572.282|222280.255|106.031 +638568.027|222284.284|105.690 +638563.937|222288.171|106.116 +638559.764|222292.130|106.193 +638555.598|222296.080|106.058 +638551.440|222300.024|106.001 +638547.264|222303.981|105.872 +638543.125|222307.903|105.693 +638538.940|222311.875|105.549 +638534.707|222315.877|104.751 +638518.217|222331.507|103.961 +638514.126|222335.384|103.660 +638510.048|222339.249|103.431 +638505.949|222343.132|103.126 +638501.831|222347.034|102.767 +638497.646|222350.993|101.907 +638493.592|222354.834|101.633 +638489.557|222358.656|101.456 +638485.561|222362.445|101.243 +638481.562|222366.233|101.026 +638477.526|222370.055|100.456 +638473.457|222373.905|99.990 +638454.291|222392.102|101.209 +638450.890|222395.348|102.910 +638447.150|222398.905|103.437 +638439.578|222406.089|103.754 +638435.863|222409.615|103.995 +638432.114|222413.169|103.907 +638428.273|222416.809|103.669 +638424.506|222420.381|103.751 +638420.867|222423.840|104.120 +638417.176|222427.340|104.108 +638413.436|222430.884|103.916 +638409.751|222434.377|103.946 +638406.053|222437.883|103.943 +638402.417|222441.336|103.971 +638398.241|222445.268|101.947 +638389.692|222453.303|96.829 +638385.449|222457.295|94.430 +638381.361|222461.148|92.647 +638564.382|222285.400|105.613 +638568.576|222281.413|105.674 +638572.868|222277.332|105.994 +638577.107|222273.299|106.074 +638581.326|222269.288|106.068 +638585.544|222265.277|106.083 +638589.717|222261.303|105.656 +638593.859|222257.352|105.092 +638598.209|222253.219|105.290 +638610.870|222241.164|104.364 +638615.204|222237.037|104.321 +638628.351|222224.547|104.976 +638632.807|222220.316|105.616 +638637.254|222216.091|105.988 +638641.698|222211.870|106.351 +638645.980|222207.789|105.903 +638650.452|222203.540|106.189 +638654.926|222199.291|106.513 +638673.071|222182.067|108.829 +638677.640|222177.726|109.527 +638682.163|222173.428|109.716 +638686.723|222169.100|110.405 +638691.374|222164.690|111.350 +638705.072|222151.684|112.657 +638709.693|222147.301|113.252 +638714.201|222143.015|113.246 +638718.681|222138.751|113.105 +638723.235|222134.426|113.392 +638727.847|222130.049|113.761 +638732.455|222125.672|114.126 +638737.125|222121.244|114.882 +638746.199|222112.615|114.605 +638750.810|222108.238|115.093 +638760.082|222099.429|115.535 +638774.085|222086.140|117.126 +638783.454|222077.249|118.135 +638788.185|222072.759|118.665 +638797.588|222063.834|119.741 +638802.276|222059.381|120.085 +638806.958|222054.940|120.716 +638811.679|222050.457|121.021 +638816.437|222045.943|121.564 +638821.085|222041.526|121.737 +638825.843|222037.006|122.021 +638840.038|222023.528|123.152 +638849.444|222014.591|123.539 +638854.107|222010.156|123.295 +638858.829|222005.663|123.142 +638863.526|222001.201|123.179 +638868.207|221996.748|123.133 +638872.941|221992.249|123.124 +638877.708|221987.720|123.408 +638882.460|221983.205|123.581 +638896.599|221969.755|123.008 +638901.336|221965.250|122.761 +638906.051|221960.760|122.387 +638910.748|221956.292|121.850 +638915.470|221951.799|121.545 +638920.258|221947.242|121.417 +638924.982|221942.749|121.155 +638929.743|221938.217|120.826 +638934.501|221933.691|120.466 +638939.268|221929.155|120.216 +638944.036|221924.620|119.979 +638948.833|221920.054|119.613 +638967.865|221901.924|116.778 +638987.015|221883.688|114.727 +638991.850|221879.089|114.355 +638996.854|221874.349|115.690 +639006.642|221865.053|116.257 +639011.579|221860.362|116.553 +639016.529|221855.671|117.510 +639026.530|221846.201|120.137 +639031.483|221841.501|120.783 +639046.339|221827.401|122.313 +639061.152|221813.340|123.706 +639066.032|221808.698|123.740 +639070.939|221804.031|123.548 +639075.908|221799.316|124.130 +639080.839|221794.628|124.307 +639085.814|221789.910|125.035 +639100.612|221775.853|125.877 +639105.565|221771.140|125.834 +639110.521|221766.431|125.837 +639115.419|221761.771|125.745 +639120.399|221757.034|125.477 +639125.291|221752.380|125.291 +639145.058|221733.583|124.950 +639150.032|221728.849|124.676 +639154.970|221724.152|124.560 +639159.865|221719.486|123.734 +639164.806|221714.789|123.734 +639169.817|221710.031|124.124 +639174.745|221705.340|123.975 +639179.677|221700.652|123.816 +639184.663|221695.913|123.847 +639194.557|221686.497|123.377 +639199.535|221681.764|123.261 +639204.509|221677.033|123.118 +639239.204|221644.005|120.223 +639244.212|221639.235|119.698 +639254.137|221629.786|118.580 +639259.120|221625.050|118.842 +639264.091|221620.322|118.570 +639269.060|221615.592|118.168 +639278.981|221606.140|116.751 +639284.004|221601.363|116.644 +639288.985|221596.630|116.806 +639293.953|221591.899|116.373 +639298.921|221587.169|115.785 +639303.944|221582.390|115.559 +639308.912|221577.656|114.953 +639313.884|221572.923|114.401 +639338.761|221549.230|111.505 +639343.791|221544.445|111.036 +639348.725|221539.745|110.713 +639353.709|221535.002|110.359 +639359.022|221529.946|109.878 +639363.673|221525.514|109.256 +639368.659|221520.768|109.033 +639373.695|221515.974|108.482 +639378.639|221511.264|107.814 +639393.580|221497.024|105.120 +639408.582|221482.732|103.236 +639418.567|221473.204|100.697 +639428.586|221463.667|99.801 +639433.533|221458.967|100.279 +639438.483|221454.261|100.633 +639453.367|221440.124|102.191 +639458.368|221435.360|102.154 +639468.305|221425.899|101.438 +639473.273|221421.168|101.148 +639478.235|221416.444|101.060 +639483.188|221411.735|101.377 +639498.099|221397.522|99.466 +639508.017|221388.076|98.722 +639512.986|221383.334|97.606 +639522.757|221374.080|100.718 +639527.616|221369.477|102.242 +639542.192|221355.667|106.485 +639551.945|221346.413|108.347 +639556.859|221341.737|108.509 +639561.778|221337.059|108.579 +639566.633|221332.459|109.923 +639571.465|221327.872|110.749 +639576.378|221323.199|110.947 +639581.331|221318.481|110.530 +639591.152|221309.124|109.594 +639596.105|221304.405|109.259 +639601.024|221299.721|108.765 +639610.909|221290.290|107.183 +639615.914|221285.517|106.263 +639620.830|221280.823|105.309 +639625.811|221276.071|104.199 +639630.703|221271.420|104.379 +639635.619|221266.738|104.242 +639640.542|221262.053|104.065 +639645.363|221257.472|104.629 +639650.237|221252.842|105.123 +639659.838|221243.729|106.823 +639664.642|221239.172|107.637 +639669.458|221234.597|108.271 +639683.948|221220.829|109.756 +639688.788|221216.230|110.158 +639693.693|221211.560|109.865 +639698.487|221207.003|110.259 +639703.260|221202.480|111.459 +639708.058|221197.920|111.853 +639722.533|221184.158|112.758 +639727.352|221179.580|113.011 +639732.155|221175.014|113.413 +639746.536|221161.344|114.538 +639751.355|221156.763|114.858 +639756.128|221152.228|115.184 +639760.910|221147.677|115.401 +639765.720|221143.102|115.416 +639770.524|221138.533|115.495 +639775.373|221133.915|115.196 +639780.119|221129.404|115.419 +639784.941|221124.814|115.410 +639789.754|221120.230|115.087 +639794.582|221115.630|114.660 +639799.398|221111.043|114.373 +639804.174|221106.489|114.035 +639808.996|221101.896|113.767 +639813.787|221097.330|113.368 +639818.588|221092.752|112.935 +639823.401|221088.165|112.420 +639833.011|221079.005|111.639 +639842.560|221069.901|110.688 +639847.327|221065.356|110.323 +639852.165|221060.742|109.451 +639856.889|221056.243|109.460 +639861.775|221051.573|108.290 +639875.936|221038.083|107.601 +639885.431|221029.033|106.894 +639890.118|221024.568|106.659 +639894.788|221020.121|106.567 +639899.482|221015.646|106.336 +639904.133|221011.221|106.433 +639922.491|220993.762|107.668 +639926.993|220989.482|108.198 +639940.737|220976.400|108.299 +639954.450|220963.340|108.137 +639972.792|220945.859|106.875 +639991.260|220928.239|104.352 +639995.838|220923.871|103.522 +640000.444|220919.476|102.834 +640004.989|220915.145|102.544 +640009.497|220910.847|102.191 +640014.029|220906.525|101.733 +640018.595|220902.172|101.108 +640023.130|220897.847|100.676 +640027.593|220893.595|100.407 +640036.517|220885.085|99.652 +640040.989|220880.824|99.402 +640045.442|220876.578|98.993 +640054.150|220868.291|99.319 +640062.855|220859.997|98.932 +640067.354|220855.708|98.393 +640071.764|220851.502|97.814 +640076.153|220847.317|97.628 +640080.570|220843.102|97.052 +640079.165|220841.678|96.933 +640070.103|220850.286|97.871 +640060.999|220858.930|98.859 +640056.527|220863.173|98.972 +640052.105|220867.367|98.832 +640047.624|220871.619|99.024 +640043.113|220875.898|99.136 +640038.602|220880.178|99.258 +640034.045|220884.503|99.664 +640024.913|220893.174|100.374 +640020.375|220897.481|100.474 +640011.197|220906.199|101.581 +640006.610|220910.554|102.029 +639992.797|220923.685|103.580 +639983.403|220932.622|105.156 +639964.916|220950.194|107.171 +639951.072|220963.346|108.134 +639937.350|220976.370|108.244 +639923.671|220989.348|107.927 +639919.077|220993.707|107.979 +639905.462|221006.612|106.796 +639900.890|221010.946|106.430 +639896.230|221015.366|106.351 +639891.652|221019.712|106.424 +639886.948|221024.181|106.708 +639882.245|221028.646|107.003 +639877.637|221033.020|107.009 +639854.024|221055.466|109.494 +639849.293|221059.958|109.844 +639844.535|221064.485|110.451 +639839.820|221068.962|110.749 +639835.038|221073.507|111.213 +639830.301|221078.009|111.737 +639825.574|221082.504|112.237 +639816.061|221091.542|112.980 +639811.257|221096.108|113.404 +639806.502|221100.625|113.840 +639801.720|221105.169|114.160 +639796.987|221109.665|114.483 +639792.174|221114.237|114.690 +639787.416|221118.754|114.864 +639782.630|221123.302|115.309 +639777.848|221127.840|115.330 +639773.102|221132.342|115.050 +639768.277|221136.927|115.513 +639763.522|221141.438|115.367 +639749.179|221155.044|114.861 +639744.396|221159.579|114.584 +639734.768|221168.714|114.264 +639725.206|221177.767|112.819 +639720.375|221182.348|112.633 +639701.090|221200.630|111.161 +639696.299|221205.162|110.097 +639691.446|221209.765|109.728 +639686.490|221214.471|110.012 +639681.690|221219.022|109.618 +639667.035|221232.908|108.128 +639662.173|221237.511|107.363 +639657.321|221242.104|106.473 +639647.555|221251.355|104.897 +639642.669|221255.991|104.498 +639632.751|221265.409|104.367 +639627.755|221270.152|104.202 +639622.799|221274.870|104.882 +639607.635|221289.315|108.052 +639602.600|221294.109|108.741 +639597.571|221298.895|109.344 +639592.526|221303.689|109.509 +639587.531|221308.435|109.640 +639582.492|221313.235|110.606 +639577.457|221318.018|110.719 +639572.458|221322.770|111.042 +639567.490|221327.488|110.905 +639562.510|221332.194|109.213 +639557.569|221336.879|108.512 +639552.527|221341.670|108.875 +639547.498|221346.437|108.064 +639532.584|221360.556|104.839 +639527.653|221365.213|102.773 +639522.605|221369.995|102.194 +639517.622|221374.717|101.258 +639507.636|221384.160|98.463 +639497.483|221393.813|98.841 +639492.387|221398.662|99.642 +639487.288|221403.520|100.682 +639482.249|221408.315|101.371 +639477.193|221413.116|101.169 +639472.084|221417.968|101.191 +639467.064|221422.738|101.407 +639456.884|221432.422|102.142 +639451.824|221437.228|102.319 +639446.758|221442.047|102.803 +639441.705|221446.848|102.800 +639436.624|221451.655|101.663 +639431.640|221456.370|100.365 +639426.547|221461.201|99.831 +639406.247|221480.531|103.145 +639401.191|221485.341|103.821 +639396.091|221490.194|104.470 +639391.041|221495.000|105.110 +639380.946|221504.617|106.979 +639375.856|221509.460|107.653 +639365.773|221519.052|108.811 +639355.705|221528.635|110.167 +639350.670|221533.423|110.530 +639345.635|221538.209|110.701 +639340.602|221542.994|111.115 +639335.570|221547.780|111.441 +639325.515|221557.347|112.758 +639320.537|221562.087|113.462 +639315.511|221566.866|113.928 +639305.511|221576.379|114.992 +639300.488|221581.155|115.391 +639285.473|221595.435|116.775 +639280.490|221600.169|116.717 +639275.509|221604.899|116.885 +639265.579|221614.354|118.098 +639260.611|221619.078|118.598 +639255.636|221623.809|118.753 +639245.736|221633.224|119.250 +639240.768|221637.949|119.689 +639235.900|221642.582|120.241 +639230.941|221647.303|120.847 +639206.396|221670.654|122.963 +639201.470|221675.336|123.167 +639181.844|221693.992|123.883 +639176.958|221698.638|123.978 +639172.118|221703.237|124.084 +639167.229|221707.882|124.215 +639162.315|221712.546|123.911 +639157.420|221717.200|123.923 +639152.565|221721.824|124.670 +639147.722|221726.426|124.807 +639142.836|221731.071|125.041 +639128.300|221744.888|125.489 +639123.435|221749.509|125.371 +639118.540|221754.163|125.523 +639113.742|221758.723|125.730 +639108.890|221763.335|125.889 +639104.035|221767.949|125.950 +639099.167|221772.576|125.889 +639094.354|221777.148|125.974 +639084.561|221786.441|125.227 +639070.013|221800.252|124.307 +639065.130|221804.879|123.667 +639060.296|221809.472|123.642 +639055.452|221814.075|123.520 +639026.350|221841.687|120.832 +639021.418|221846.359|119.976 +639016.487|221851.026|118.644 +639011.512|221855.729|116.912 +639006.645|221860.346|116.370 +639001.798|221864.946|116.086 +638997.001|221869.503|115.824 +638982.492|221883.277|115.023 +638977.655|221887.870|114.968 +638972.879|221892.408|115.056 +638968.161|221896.901|115.684 +638963.521|221901.330|117.071 +638954.124|221910.279|118.741 +638949.424|221914.750|119.119 +638944.673|221919.271|119.500 +638939.988|221923.730|120.049 +638935.205|221928.277|120.155 +638930.496|221932.755|120.524 +638925.793|221937.229|120.960 +638921.108|221941.689|121.536 +638911.650|221950.677|121.634 +638906.923|221955.167|121.923 +638902.308|221959.559|122.758 +638892.960|221968.447|123.466 +638864.638|221995.330|123.200 +638860.002|221999.732|123.249 +638855.314|222004.182|123.301 +638850.617|222008.641|123.310 +638845.963|222013.061|123.289 +638841.275|222017.514|123.389 +638836.575|222021.970|123.106 +638831.909|222026.399|123.069 +638822.469|222035.348|121.972 +638813.090|222044.245|121.423 +638808.354|222048.732|120.713 +638803.672|222053.172|120.387 +638789.563|222066.544|118.845 +638780.196|222075.426|118.110 +638775.536|222079.843|117.449 +638770.927|222084.213|117.150 +638756.885|222097.518|115.391 +638743.062|222110.627|114.294 +638738.490|222114.965|114.093 +638733.988|222119.241|114.331 +638729.389|222123.603|113.998 +638724.832|222127.925|113.663 +638720.217|222132.299|113.304 +638715.697|222136.584|112.944 +638711.147|222140.903|112.700 +638706.648|222145.177|112.785 +638702.109|222149.477|112.383 +638688.427|222162.450|110.950 +638683.852|222166.781|110.173 +638679.307|222171.085|109.603 +638674.784|222175.373|109.152 +638670.239|222179.680|108.619 +638665.695|222183.990|108.110 +638656.633|222192.573|106.781 +638647.800|222200.952|106.494 +638643.322|222205.195|105.936 +638639.034|222209.273|106.369 +638634.514|222213.552|105.632 +638630.106|222217.731|105.232 +638625.729|222221.886|105.010 +638608.496|222238.247|105.434 +638604.354|222242.188|105.955 +638600.114|222246.218|106.263 +638591.640|222254.265|106.452 +638587.376|222258.312|106.446 +638583.155|222262.321|106.403 +638578.866|222266.390|106.311 +638574.611|222270.425|106.156 +638570.350|222274.467|105.985 +638566.153|222278.445|105.900 +638561.965|222282.413|105.885 +638557.774|222286.388|105.860 +638553.577|222290.365|105.824 +638549.419|222294.306|105.741 +638545.253|222298.253|105.653 +638541.077|222302.210|105.531 +638536.889|222306.181|105.367 +638532.732|222310.116|105.135 +638528.580|222314.048|104.949 +638524.456|222317.959|104.882 +638516.175|222325.798|104.233 +638512.087|222329.672|104.163 +638507.970|222333.571|103.751 +638499.697|222341.404|103.050 +638495.585|222345.293|102.501 +638491.462|222349.195|101.913 +638483.332|222356.888|101.096 +638479.337|222360.677|101.105 +638467.013|222372.329|98.963 +638463.039|222376.090|98.481 +638454.913|222383.774|97.274 +638451.490|222387.045|99.100 +638448.098|222390.282|100.834 +638444.696|222393.528|102.532 +638441.090|222396.963|103.605 +638437.311|222400.545|103.791 +638433.565|222404.099|103.897 +638429.825|222407.643|104.053 +638426.057|222411.216|104.108 +638422.220|222414.852|103.888 +638418.486|222418.388|103.894 +638414.832|222421.856|104.214 +638411.150|222425.346|104.242 +638407.455|222428.845|104.230 +638403.740|222432.366|104.153 +638400.098|222435.819|104.156 +638396.416|222439.306|104.022 +638392.432|222443.064|102.742 +638388.207|222447.039|100.575 +638379.648|222455.076|95.290 +638375.488|222458.993|93.242 +638561.118|222280.554|105.940 +638565.348|222276.527|105.940 +638569.533|222272.544|106.001 +638573.764|222268.517|106.040 +638578.037|222264.451|106.061 +638582.323|222260.373|106.156 +638586.587|222256.313|106.165 +638590.866|222252.241|106.278 +638595.152|222248.163|106.427 +638599.449|222244.075|106.656 +638603.744|222239.988|106.638 +638607.959|222235.971|106.250 +638612.278|222231.859|106.132 +638620.776|222223.757|105.254 +638625.107|222219.636|105.248 +638629.551|222215.409|105.574 +638634.017|222211.172|106.281 +638638.351|222207.042|106.101 +638642.780|222202.830|106.144 +638656.124|222190.138|107.000 +638660.513|222185.959|106.924 +638669.761|222177.184|108.524 +638674.257|222172.910|109.100 +638678.813|222168.582|109.740 +638688.061|222159.801|111.039 +638692.673|222155.424|111.786 +638697.135|222151.175|111.749 +638701.734|222146.801|112.225 +638706.270|222142.485|112.353 +638710.802|222138.172|112.496 +638715.380|222133.820|112.910 +638719.992|222129.431|113.273 +638724.600|222125.051|113.630 +638729.200|222120.677|113.959 +638733.778|222116.315|113.913 +638738.222|222112.075|113.361 +638756.842|222094.372|115.263 +638766.309|222085.381|116.745 +638770.955|222080.964|116.961 +638780.339|222072.037|117.805 +638785.009|222067.599|118.257 +638789.800|222063.048|118.903 +638803.916|222049.628|120.302 +638808.622|222045.153|120.829 +638822.865|222031.611|122.112 +638841.793|222013.606|123.203 +638846.509|222009.120|123.325 +638851.248|222004.609|123.301 +638855.939|222000.140|123.316 +638860.660|221995.641|123.207 +638874.971|221982.032|124.100 +638889.168|221968.508|123.603 +638908.014|221950.537|121.615 +638912.760|221946.017|121.518 +638931.801|221927.869|120.232 +638936.498|221923.391|119.808 +638941.280|221918.832|119.317 +638946.050|221914.290|119.128 +638950.808|221909.749|118.442 +638955.594|221905.186|117.997 +638994.093|221868.500|115.660 +638998.991|221863.843|115.986 +639003.895|221859.179|116.446 +639008.827|221854.494|117.208 +639013.817|221849.758|118.107 +639028.767|221835.572|121.460 +639048.497|221816.821|123.618 +639053.377|221812.176|123.645 +639058.247|221807.537|123.575 +639063.203|221802.828|123.978 +639068.156|221798.121|124.356 +639078.005|221788.761|125.154 +639082.933|221784.076|125.319 +639087.853|221779.398|125.441 +639092.787|221774.707|125.770 +639097.710|221770.025|125.959 +639102.669|221765.307|126.044 +639107.567|221760.646|125.956 +639112.499|221755.949|125.681 +639117.400|221751.286|125.678 +639122.338|221746.586|125.496 +639127.291|221741.874|125.608 +639132.186|221737.216|125.563 +639137.121|221732.519|125.410 +639142.089|221727.786|125.069 +639146.978|221723.134|124.947 +639151.946|221718.401|124.618 +639156.869|221713.713|124.307 +639161.849|221708.970|124.225 +639166.775|221704.282|123.987 +639171.725|221699.576|124.206 +639176.696|221694.843|124.014 +639196.538|221675.954|123.286 +639201.510|221671.221|123.085 +639231.271|221642.865|120.485 +639236.275|221638.098|119.899 +639241.189|221633.416|119.369 +639246.203|221628.640|119.061 +639256.139|221619.176|118.598 +639261.141|221614.406|117.815 +639266.100|221609.678|117.120 +639271.074|221604.945|117.028 +639276.098|221600.166|116.989 +639286.086|221590.656|116.419 +639296.065|221581.143|115.352 +639301.039|221576.409|115.193 +639306.050|221571.627|114.431 +639311.070|221566.848|113.995 +639316.042|221562.108|113.471 +639321.062|221557.323|112.849 +639326.036|221552.583|112.371 +639331.007|221547.837|111.295 +639336.037|221543.052|111.271 +639341.063|221538.264|110.868 +639351.072|221528.729|110.216 +639356.053|221523.981|109.253 +639361.036|221519.232|108.725 +639371.055|221509.686|107.970 +639411.133|221471.464|101.721 +639426.151|221457.159|100.487 +639431.101|221452.453|100.749 +639441.110|221442.962|102.788 +639446.067|221438.249|102.782 +639451.071|221433.488|102.648 +639456.088|221428.709|102.108 +639466.022|221419.254|101.456 +639471.033|221414.484|101.288 +639475.989|221409.772|101.438 +639481.015|221404.983|100.889 +639485.965|221400.262|99.883 +639490.955|221395.507|99.179 +639495.969|221390.740|99.225 +639500.912|221386.028|98.618 +639515.613|221372.089|101.550 +639520.535|221367.423|102.651 +639525.431|221362.775|103.260 +639549.729|221339.744|108.905 +639554.667|221335.044|108.585 +639559.529|221330.423|108.869 +639564.320|221325.888|110.469 +639569.212|221321.246|111.075 +639578.969|221311.964|111.048 +639588.765|221302.628|109.753 +639593.666|221297.965|109.518 +639598.574|221293.292|109.216 +639603.496|221288.605|108.689 +639623.189|221269.823|105.037 +639628.100|221265.141|104.272 +639632.967|221260.508|104.163 +639642.614|221251.340|104.577 +639647.436|221246.761|105.123 +639652.200|221242.241|105.845 +639680.867|221215.029|109.692 +639685.673|221210.460|109.914 +639690.483|221205.882|109.612 +639695.256|221201.352|110.256 +639699.941|221196.911|111.359 +639719.022|221178.782|112.685 +639737.965|221160.789|114.620 +639747.496|221151.731|114.888 +639761.767|221138.164|115.413 +639771.347|221129.044|114.956 +639776.022|221124.607|115.401 +639780.860|221120.004|115.248 +639785.608|221115.484|115.050 +639790.418|221110.906|114.788 +639795.182|221106.370|114.507 +639799.952|221101.832|114.242 +639804.716|221097.296|114.029 +639819.054|221083.644|112.819 +639823.864|221079.063|112.362 +639828.640|221074.516|111.816 +639838.238|221065.375|110.862 +639842.999|221060.842|110.527 +639847.818|221056.249|109.792 +639852.530|221051.765|109.542 +639876.347|221029.085|107.464 +639881.121|221024.544|107.284 +639885.830|221020.063|106.897 +639890.588|221015.534|106.537 +639895.227|221011.120|106.668 +639913.747|220993.527|107.732 +639918.376|220989.129|108.037 +639922.988|220984.740|108.137 +639927.658|220980.302|108.226 +639932.306|220975.882|108.143 +639946.116|220962.751|108.259 +639955.419|220953.894|107.619 +639964.718|220945.039|106.814 +639978.706|220931.713|105.117 +639983.305|220927.334|104.687 +639988.060|220922.798|103.650 +640011.069|220900.880|101.118 +640020.204|220892.184|100.447 +640024.752|220887.853|99.990 +640029.223|220883.598|99.969 +640033.795|220879.242|99.417 +640038.294|220874.960|99.021 +640042.814|220870.659|98.804 +640051.672|220862.231|98.606 +640056.067|220858.052|98.591 +640060.505|220853.828|98.362 +640065.013|220849.533|97.777 +640073.916|220841.054|97.015 +640078.439|220836.744|96.177 +640080.552|220832.178|95.521 +640075.900|220836.607|96.454 +640071.380|220840.901|96.722 +640062.328|220849.512|97.682 +640057.832|220853.788|98.176 +640053.315|220858.077|98.256 +640048.807|220862.356|98.310 +640044.253|220866.684|98.637 +640039.745|220870.970|98.743 +640035.149|220875.338|99.072 +640025.983|220884.049|99.932 +640021.399|220888.404|99.984 +640012.118|220897.225|100.804 +640007.494|220901.627|101.459 +640002.895|220905.994|101.691 +639988.795|220919.400|103.458 +639979.346|220928.388|104.790 +639969.839|220937.432|106.296 +639960.488|220946.313|106.958 +639955.715|220950.855|107.637 +639951.033|220955.299|107.774 +639946.360|220959.740|108.186 +639937.027|220968.594|108.055 +639932.358|220973.026|108.207 +639927.728|220977.421|108.125 +639923.022|220981.887|108.223 +639918.367|220986.300|108.024 +639913.731|220990.695|107.710 +639909.092|220995.094|107.433 +639904.410|220999.538|107.473 +639899.811|221003.890|106.613 +639895.178|221008.282|106.351 +639890.432|221012.790|106.549 +639885.696|221017.286|106.717 +639880.932|221021.813|107.086 +639876.174|221026.336|107.473 +639871.440|221030.829|107.692 +639866.688|221035.337|107.704 +639852.287|221049.031|109.420 +639847.541|221053.536|109.512 +639842.658|221058.181|110.301 +639837.882|221062.717|110.682 +639833.063|221067.298|111.069 +639828.283|221071.839|111.530 +639818.676|221080.971|112.596 +639813.863|221085.543|113.035 +639809.014|221090.152|113.428 +639804.256|221094.675|113.898 +639794.652|221103.798|114.450 +639789.824|221108.385|114.797 +639785.084|221112.884|114.803 +639780.271|221117.453|115.062 +639775.471|221122.013|115.242 +639770.752|221126.487|115.148 +639765.882|221131.117|115.599 +639761.148|221135.604|115.239 +639746.835|221149.183|114.879 +639742.086|221153.688|114.757 +639737.273|221158.257|114.815 +639727.830|221167.193|113.127 +639723.082|221171.692|112.575 +639718.226|221176.301|112.648 +639713.465|221180.815|112.258 +639699.069|221194.461|111.325 +639694.318|221198.960|110.374 +639689.566|221203.452|109.378 +639684.655|221208.119|109.692 +639679.830|221212.697|109.579 +639674.972|221217.306|109.347 +639665.349|221226.422|108.323 +639660.539|221230.976|107.506 +639655.745|221235.511|106.503 +639650.926|221240.074|105.784 +639646.065|221244.677|105.022 +639641.230|221249.255|104.507 +639636.308|221253.924|104.574 +639631.398|221258.582|104.467 +639626.536|221263.190|104.394 +639601.646|221286.867|109.000 +639586.805|221300.961|109.972 +639581.831|221305.686|110.539 +639576.863|221310.410|111.124 +639571.925|221315.095|111.197 +639567.011|221319.749|110.816 +639562.071|221324.428|110.149 +639557.157|221329.070|108.911 +639552.241|221333.730|108.616 +639547.254|221338.461|108.786 +639517.625|221366.484|102.788 +639512.699|221371.138|101.572 +639497.782|221385.232|97.463 +639487.666|221394.855|99.417 +639482.633|221399.634|99.764 +639477.583|221404.444|100.849 +639472.545|221409.232|101.547 +639467.534|221413.984|101.404 +639462.468|221418.788|101.520 +639457.448|221423.555|101.788 +639452.376|221428.377|102.364 +639447.356|221433.144|102.754 +639442.348|221437.896|102.748 +639427.266|221452.176|100.764 +639422.210|221456.970|100.697 +639412.106|221466.550|100.331 +639376.703|221500.228|106.924 +639366.614|221509.817|108.204 +639356.486|221519.436|109.064 +639351.499|221524.179|109.884 +639336.344|221538.572|110.987 +639331.306|221543.348|110.920 +639321.251|221552.912|112.660 +639301.146|221572.017|114.858 +639296.123|221576.790|115.327 +639286.119|221586.288|116.092 +639271.099|221600.556|117.184 +639266.070|221605.329|117.196 +639261.040|221610.105|117.260 +639256.066|221614.830|117.638 +639241.064|221629.088|119.086 +639236.089|221633.813|119.427 +639231.130|221638.531|120.104 +639226.165|221643.252|120.658 +639221.154|221648.013|121.219 +639206.295|221662.135|122.393 +639196.407|221671.532|123.228 +639176.589|221690.350|124.042 +639171.700|221694.992|124.151 +639166.766|221699.677|124.279 +639161.831|221704.365|124.468 +639156.869|221709.071|124.139 +639151.967|221713.719|124.142 +639147.121|221718.334|125.051 +639142.171|221723.031|125.029 +639137.282|221727.673|125.264 +639132.387|221732.321|125.392 +639127.495|221736.966|125.563 +639122.646|221741.572|125.703 +639117.738|221746.226|125.724 +639112.819|221750.896|125.523 +639103.129|221760.098|126.084 +639098.268|221764.712|126.117 +639093.342|221769.385|125.971 +639088.508|221773.969|125.779 +639083.619|221778.608|125.508 +639078.736|221783.238|125.380 +639073.887|221787.837|125.087 +639068.973|221792.495|124.606 +639054.407|221806.305|123.798 +639039.816|221820.143|122.944 +639034.918|221824.782|122.335 +639030.075|221829.373|121.817 +639015.405|221843.262|119.576 +639005.611|221852.531|117.799 +639000.707|221857.173|116.894 +638995.797|221861.822|115.971 +638990.990|221866.382|115.660 +638986.141|221870.978|115.449 +638981.364|221875.513|115.471 +638967.091|221889.071|116.257 +638962.406|221893.524|116.775 +638957.602|221898.087|117.104 +638952.939|221902.525|117.833 +638948.175|221907.048|118.107 +638943.536|221911.458|118.650 +638938.805|221915.957|119.217 +638934.105|221920.423|119.671 +638924.781|221929.289|120.829 +638920.039|221933.791|120.948 +638905.942|221947.181|121.695 +638901.251|221951.640|121.911 +638887.309|221964.908|123.639 +638882.691|221969.300|124.106 +638873.291|221978.231|124.170 +638868.616|221982.672|124.225 +638863.907|221987.144|124.060 +638859.173|221991.630|123.386 +638854.458|221996.105|123.225 +638849.822|222000.509|123.316 +638845.125|222004.974|123.322 +638840.455|222009.406|123.213 +638821.698|222027.200|121.783 +638802.971|222044.970|120.293 +638798.265|222049.433|119.823 +638784.244|222062.731|118.266 +638774.859|222071.628|117.135 +638770.202|222076.048|116.830 +638765.572|222080.437|116.425 +638760.936|222084.835|115.995 +638756.239|222089.288|115.215 +638751.557|222093.723|114.568 +638746.945|222098.100|114.376 +638733.181|222111.164|113.456 +638728.642|222115.471|113.200 +638719.654|222124.011|113.547 +638714.996|222128.428|112.956 +638710.464|222132.728|112.520 +638705.883|222137.075|112.127 +638701.366|222141.360|111.844 +638696.809|222145.686|111.636 +638692.285|222149.977|111.371 +638687.686|222154.339|110.685 +638683.154|222158.633|110.140 +638678.603|222162.949|109.789 +638674.104|222167.217|109.195 +638664.838|222175.995|107.445 +638655.975|222184.407|107.153 +638638.202|222201.278|106.308 +638633.837|222205.423|106.351 +638616.411|222221.977|106.631 +638612.178|222226.004|106.912 +638607.783|222230.173|106.665 +638603.445|222234.291|106.461 +638599.138|222238.382|106.433 +638594.816|222242.487|106.345 +638590.516|222246.572|106.385 +638586.187|222250.683|106.293 +638581.948|222254.707|106.174 +638577.671|222258.767|106.138 +638573.386|222262.836|106.068 +638569.152|222266.856|106.025 +638564.922|222270.876|105.997 +638560.731|222274.860|105.940 +638556.539|222278.841|105.900 +638552.315|222282.855|105.961 +638548.145|222286.817|106.052 +638544.006|222290.752|106.055 +638539.791|222294.751|105.735 +638535.667|222298.671|105.848 +638531.409|222302.710|105.373 +638522.996|222310.695|104.714 +638518.881|222314.603|104.470 +638514.721|222318.553|104.275 +638510.658|222322.412|104.303 +638506.561|222326.304|104.190 +638502.392|222330.258|103.553 +638494.043|222338.176|102.532 +638489.977|222342.032|102.184 +638485.838|222345.961|101.761 +638481.690|222349.896|101.084 +638477.602|222353.773|100.700 +638473.506|222357.656|100.069 +638469.391|222361.561|99.603 +638465.236|222365.496|98.777 +638457.129|222373.183|97.585 +638445.787|222383.979|99.060 +638442.245|222387.362|100.398 +638438.841|222390.623|102.072 +638435.448|222393.869|103.809 +638431.629|222397.497|103.830 +638427.862|222401.078|103.852 +638424.067|222404.687|103.992 +638420.275|222408.290|103.955 +638416.478|222411.895|103.903 +638412.768|222415.419|103.794 +638409.117|222418.894|104.132 +638405.395|222422.432|104.205 +638401.710|222425.934|104.227 +638397.997|222429.458|104.163 +638394.352|222432.924|104.156 +638390.609|222436.478|103.995 +638386.763|222440.123|103.248 +638382.541|222444.098|100.685 +638378.210|222448.176|98.140 +638373.943|222452.196|95.674 +638554.537|222278.515|106.022 +638558.679|222274.574|105.851 +638562.864|222270.593|105.891 +638567.040|222266.621|105.894 +638571.219|222262.647|105.943 +638575.449|222258.623|106.010 +638579.671|222254.609|106.040 +638583.895|222250.595|106.101 +638588.160|222246.538|106.144 +638592.433|222242.475|106.229 +638596.700|222238.418|106.308 +638600.958|222234.367|106.363 +638605.262|222230.274|106.418 +638609.575|222226.174|106.519 +638613.918|222222.047|106.799 +638618.121|222218.042|106.403 +638622.413|222213.961|106.202 +638631.173|222205.634|106.488 +638639.994|222197.252|107.180 +638657.584|222180.521|107.229 +638671.111|222167.680|108.780 +638675.723|222163.303|109.457 +638680.246|222159.008|109.945 +638689.341|222150.373|110.993 +638693.904|222146.039|111.511 +638698.449|222141.720|111.670 +638702.954|222137.438|111.892 +638707.532|222133.091|112.279 +638712.098|222128.751|112.627 +638716.712|222124.371|113.279 +638725.759|222115.763|112.996 +638730.346|222111.405|113.270 +638739.487|222102.712|113.377 +638753.438|222089.462|114.718 +638758.086|222085.049|115.221 +638762.774|222080.598|115.977 +638767.507|222076.106|116.437 +638776.852|222067.230|117.296 +638791.020|222053.779|119.125 +638795.768|222049.271|119.543 +638824.142|222022.321|122.161 +638838.395|222008.778|123.124 +638843.116|222004.289|123.292 +638847.816|221999.820|123.325 +638852.544|221995.324|123.219 +638857.265|221990.838|123.441 +638862.123|221986.223|124.008 +638866.891|221981.694|124.285 +638871.633|221977.183|124.389 +638881.106|221968.173|124.209 +638885.806|221963.695|123.679 +638899.922|221950.241|121.893 +638904.664|221945.730|121.740 +638914.220|221936.638|121.283 +638923.751|221927.564|120.698 +638933.300|221918.469|119.942 +638937.997|221913.991|119.083 +638942.777|221909.441|118.546 +638947.544|221904.896|117.921 +638952.308|221900.355|117.272 +638957.099|221895.792|116.870 +638961.900|221891.223|116.577 +638966.737|221886.617|116.190 +638971.519|221882.064|115.742 +638976.372|221877.443|115.529 +638981.188|221872.862|115.446 +638986.107|221868.183|115.449 +638990.954|221863.580|115.702 +638995.879|221858.905|116.309 +639000.847|221854.193|117.421 +639010.766|221844.780|119.064 +639015.691|221840.111|119.820 +639030.556|221825.998|121.859 +639035.476|221821.332|122.749 +639040.368|221816.681|122.835 +639045.303|221811.996|123.429 +639055.175|221802.614|124.246 +639065.008|221793.260|124.740 +639074.826|221783.921|125.166 +639079.760|221779.230|125.432 +639084.637|221774.591|125.596 +639089.614|221769.854|125.895 +639094.534|221765.176|126.041 +639099.447|221760.500|126.157 +639104.348|221755.833|126.151 +639109.219|221751.191|125.681 +639119.089|221741.800|125.989 +639124.011|221737.113|125.627 +639128.949|221732.409|125.538 +639133.832|221727.758|125.322 +639138.767|221723.061|125.179 +639143.659|221718.404|125.139 +639148.554|221713.731|124.377 +639153.488|221709.034|124.270 +639163.367|221699.631|124.337 +639168.347|221694.892|124.270 +639173.227|221690.243|124.154 +639188.047|221676.128|123.594 +639193.018|221671.398|123.389 +639197.983|221666.667|123.082 +639202.884|221661.991|122.451 +639212.812|221652.530|121.777 +639217.771|221647.806|121.262 +639222.727|221643.082|120.753 +639227.637|221638.397|120.247 +639232.593|221633.672|119.595 +639237.555|221628.945|119.156 +639252.488|221614.711|117.766 +639257.453|221609.977|117.360 +639262.427|221605.241|117.284 +639267.456|221600.458|117.519 +639272.422|221595.728|116.979 +639282.401|221586.215|116.092 +639287.372|221581.481|115.955 +639297.403|221571.920|115.017 +639332.394|221538.553|110.661 +639357.488|221514.639|108.549 +639367.507|221505.086|107.509 +639372.543|221500.289|106.997 +639387.667|221485.856|104.519 +639392.665|221481.089|103.769 +639417.872|221457.056|100.816 +639422.874|221452.289|100.645 +639442.927|221433.226|102.764 +639447.929|221428.459|102.617 +639452.949|221423.671|101.928 +639458.003|221418.855|101.736 +639463.007|221414.088|101.700 +639468.012|221409.321|101.700 +639473.029|221404.542|101.374 +639483.100|221394.928|99.679 +639512.949|221366.536|101.974 +639517.859|221361.879|103.337 +639522.797|221357.185|103.983 +639527.747|221352.491|105.421 +639547.349|221333.874|108.957 +639552.283|221329.170|108.695 +639557.172|221324.525|109.329 +639562.028|221319.920|110.588 +639566.954|221315.241|111.383 +639581.688|221301.196|110.460 +639601.344|221282.460|109.335 +639616.154|221268.320|106.702 +639621.092|221263.599|105.452 +639626.006|221258.911|104.665 +639630.849|221254.299|104.848 +639635.784|221249.596|104.483 +639640.578|221245.030|104.720 +639645.412|221240.437|105.126 +639650.167|221235.917|105.903 +639654.965|221231.360|106.766 +639659.717|221226.846|107.598 +639664.493|221222.307|108.149 +639674.048|221213.221|109.213 +639678.797|221208.704|109.530 +639683.653|221204.074|109.198 +639688.444|221199.517|109.615 +639693.150|221195.046|110.463 +639697.859|221190.575|111.280 +639702.617|221186.048|111.572 +639707.363|221181.534|112.017 +639712.081|221177.044|112.246 +639721.558|221168.025|112.843 +639759.267|221132.150|115.471 +639768.728|221123.134|115.215 +639773.456|221118.629|115.129 +639787.620|221105.139|114.846 +639797.075|221096.129|114.105 +639811.291|221082.584|112.968 +639815.988|221078.106|112.590 +639820.724|221073.592|112.313 +639825.498|221069.041|111.761 +639830.231|221064.527|111.194 +639834.943|221060.038|110.816 +639839.659|221055.542|110.448 +639844.368|221051.052|109.786 +639858.541|221037.540|108.381 +639877.314|221019.655|107.244 +639881.965|221015.223|106.891 +639891.228|221006.408|106.897 +639900.357|220997.727|107.558 +639904.923|220993.387|107.915 +639914.128|220984.627|108.165 +639918.687|220980.287|108.265 +639932.458|220967.180|108.442 +639946.336|220953.961|107.503 +639960.162|220940.787|106.790 +640001.944|220900.941|101.575 +640006.546|220896.552|100.983 +640011.069|220892.245|100.877 +640020.262|220883.482|99.889 +640029.336|220874.832|99.118 +640047.362|220857.659|97.990 +640051.791|220853.444|98.045 +640056.311|220849.134|97.622 +640069.798|220836.277|96.378 +640071.255|220832.605|95.771 +640066.796|220836.841|96.259 +640062.334|220841.081|96.789 +640057.899|220845.293|97.198 +640053.470|220849.500|97.597 +640044.533|220857.985|98.085 +640040.022|220862.271|98.460 +640035.584|220866.480|98.454 +640026.553|220875.057|99.085 +640017.449|220883.704|99.944 +640012.859|220888.066|100.346 +639984.985|220914.572|103.797 +639980.373|220918.958|104.224 +639975.706|220923.392|104.699 +639956.922|220941.257|106.723 +639952.203|220945.747|107.369 +639942.815|220954.665|107.805 +639928.740|220968.037|108.311 +639924.037|220972.502|108.378 +639919.334|220976.970|108.472 +639914.661|220981.399|108.058 +639905.240|220990.345|108.137 +639895.885|220999.221|107.515 +639891.173|221003.689|107.125 +639872.068|221021.834|107.589 +639862.497|221030.923|107.759 +639857.636|221035.547|108.265 +639852.768|221040.177|108.860 +639847.839|221044.865|109.558 +639843.091|221049.379|109.695 +639838.122|221054.106|110.405 +639833.300|221058.687|110.771 +639823.547|221067.962|111.722 +639818.612|221072.656|112.310 +639808.901|221081.889|113.118 +639803.979|221086.570|113.724 +639799.087|221091.219|114.102 +639789.397|221100.427|114.584 +639784.526|221105.057|114.895 +639779.598|221109.744|115.315 +639774.748|221114.347|115.471 +639769.908|221118.940|115.163 +639760.170|221128.194|115.593 +639755.339|221132.778|115.260 +639740.818|221146.555|114.626 +639721.484|221164.889|112.849 +639711.792|221174.079|112.282 +639706.939|221178.684|111.868 +639702.078|221183.293|111.530 +639697.222|221187.901|111.182 +639692.388|221192.483|110.594 +639687.600|221197.012|109.487 +639682.750|221201.608|109.058 +639677.788|221206.330|109.448 +639668.089|221215.526|108.713 +639663.210|221220.152|108.158 +639658.385|221224.727|107.555 +639653.529|221229.321|106.689 +639648.716|221233.881|105.924 +639643.861|221238.480|105.089 +639638.966|221243.125|104.775 +639634.061|221247.780|104.583 +639629.142|221252.452|104.635 +639619.260|221261.852|105.461 +639614.237|221266.647|107.134 +639609.190|221271.459|108.527 +639604.237|221276.175|109.332 +639599.339|221280.826|109.329 +639579.594|221299.602|110.630 +639574.619|221304.335|111.280 +639559.852|221318.356|110.838 +639555.002|221322.943|109.344 +639550.104|221327.582|108.698 +639545.157|221332.289|109.100 +639535.334|221341.597|107.497 +639510.849|221364.777|101.989 +639505.926|221369.432|100.663 +639501.025|221374.080|99.996 +639491.177|221383.394|97.207 +639466.125|221407.251|101.752 +639461.154|221411.976|101.968 +639456.149|221416.727|101.749 +639451.181|221421.449|101.916 +639446.207|221426.182|102.437 +639441.193|221430.949|102.791 +639436.218|221435.680|103.376 +639431.214|221440.438|103.422 +639421.244|221449.871|101.041 +639416.239|221454.626|100.962 +639396.198|221473.692|102.998 +639366.139|221502.303|107.247 +639361.097|221507.101|107.835 +639356.056|221511.892|108.323 +639346.083|221521.387|109.731 +639336.061|221530.924|110.914 +639331.026|221535.706|110.829 +639316.036|221549.971|112.843 +639311.006|221554.753|113.279 +639295.983|221569.049|114.855 +639285.982|221578.558|115.602 +639280.962|221583.331|116.135 +639270.965|221592.838|116.766 +639260.970|221602.339|117.528 +639255.935|221607.118|117.461 +639250.906|221611.894|117.528 +639245.934|221616.622|117.915 +639235.958|221626.113|119.159 +639230.981|221630.841|119.396 +639225.970|221635.608|120.012 +639221.008|221640.329|120.570 +639216.040|221645.051|121.049 +639211.029|221649.818|121.542 +639201.086|221659.266|122.228 +639186.184|221673.437|123.463 +639181.210|221678.161|123.755 +639176.236|221682.888|124.014 +639171.258|221687.619|124.225 +639166.266|221692.359|124.176 +639161.337|221697.043|124.444 +639156.357|221701.774|124.648 +639151.391|221706.483|124.313 +639146.451|221711.177|124.398 +639141.495|221715.892|125.063 +639136.557|221720.583|125.258 +639131.662|221725.231|125.380 +639126.672|221729.971|125.514 +639121.725|221734.671|125.560 +639116.836|221739.316|125.849 +639111.895|221744.010|126.020 +639106.964|221748.689|125.678 +639102.035|221753.374|126.123 +639097.134|221758.031|126.251 +639092.214|221762.701|126.151 +639087.292|221767.373|126.035 +639082.400|221772.012|125.739 +639072.527|221781.379|125.291 +639062.746|221790.663|124.898 +639057.845|221795.314|124.627 +639052.929|221799.975|124.206 +639038.213|221813.931|122.963 +639008.845|221841.766|119.482 +638984.315|221865.004|115.501 +638979.484|221869.591|115.452 +638974.711|221874.123|115.559 +638969.941|221878.656|115.687 +638965.134|221883.222|115.940 +638960.379|221887.742|116.266 +638955.630|221892.256|116.647 +638950.945|221896.709|117.199 +638946.215|221901.211|117.751 +638941.527|221905.667|118.299 +638936.833|221910.139|119.201 +638922.724|221923.553|120.482 +638913.315|221932.493|120.969 +638908.660|221936.922|121.439 +638903.936|221941.411|121.750 +638899.230|221945.880|121.835 +638894.697|221950.196|122.944 +638880.701|221963.488|123.944 +638871.338|221972.379|124.292 +638857.271|221985.723|123.889 +638852.595|221990.155|123.676 +638847.892|221994.614|123.255 +638843.244|221999.025|123.286 +638838.535|222003.493|123.228 +638824.499|222016.795|122.176 +638810.475|222030.087|121.091 +638801.084|222038.987|120.210 +638796.430|222043.398|119.774 +638791.772|222047.811|119.332 +638787.103|222052.237|118.833 +638782.424|222056.669|118.321 +638768.409|222069.940|116.440 +638763.740|222074.362|115.782 +638754.437|222083.177|114.764 +638749.844|222087.527|114.367 +638745.223|222091.910|114.108 +638740.627|222096.265|113.733 +638736.034|222100.615|113.099 +638722.397|222113.547|112.795 +638717.922|222117.796|112.953 +638713.451|222122.042|113.139 +638708.879|222126.376|112.770 +638704.301|222130.714|112.106 +638699.774|222135.002|111.770 +638695.193|222139.343|111.429 +638690.713|222143.592|111.106 +638686.232|222147.844|111.091 +638672.583|222160.767|109.210 +638667.999|222165.107|108.448 +638663.555|222169.317|108.210 +638659.047|222173.593|107.899 +638654.557|222177.845|107.451 +638650.232|222181.951|107.631 +638628.198|222202.848|106.912 +638624.007|222206.835|107.622 +638619.633|222210.980|107.406 +638615.201|222215.180|106.927 +638610.831|222219.325|106.769 +638606.509|222223.425|106.619 +638602.150|222227.558|106.561 +638597.895|222231.600|106.787 +638593.655|222235.623|106.851 +638589.394|222239.665|106.830 +638585.096|222243.743|106.884 +638580.893|222247.733|106.930 +638576.647|222251.759|107.031 +638572.468|222255.728|107.220 +638568.198|222259.779|107.232 +638563.955|222263.805|107.153 +638559.642|222267.886|106.519 +638555.332|222271.971|106.162 +638551.230|222275.869|106.546 +638547.338|222279.578|107.918 +638543.332|222283.388|108.527 +638538.962|222287.521|107.497 +638534.551|222291.688|106.302 +638521.957|222303.624|105.278 +638517.757|222307.602|104.891 +638513.502|222311.628|104.288 +638509.378|222315.539|104.041 +638505.257|222319.446|103.827 +638501.179|222323.314|103.821 +638497.024|222327.249|103.498 +638492.897|222331.160|103.087 +638484.607|222339.008|101.950 +638480.525|222342.876|101.569 +638472.223|222350.734|100.276 +638468.211|222354.535|100.033 +638459.973|222362.332|98.676 +638451.703|222370.153|97.076 +638447.723|222373.926|96.820 +638440.112|222381.153|97.369 +638436.997|222384.152|100.456 +638433.763|222387.255|103.050 +638430.005|222390.821|103.327 +638426.292|222394.351|103.782 +638422.510|222397.942|103.980 +638418.809|222401.453|104.099 +638415.045|222405.025|104.181 +638411.259|222408.616|104.187 +638407.410|222412.264|103.964 +638403.767|222415.718|104.153 +638400.134|222419.168|104.379 +638396.391|222422.719|104.397 +638392.666|222426.251|104.300 +638389.006|222429.720|104.257 +638385.345|222433.195|104.214 +638381.645|222436.700|104.044 +638377.430|222440.672|101.925 +638373.101|222444.738|99.207 +638368.816|222448.770|96.683 +638551.099|222274.174|106.534 +638555.211|222270.255|106.217 +638559.527|222266.149|106.647 +638563.952|222261.952|107.832 +638568.165|222257.938|107.802 +638572.359|222253.942|107.713 +638576.577|222249.921|107.500 +638580.792|222245.901|107.299 +638585.020|222241.875|107.165 +638589.242|222237.851|107.015 +638593.554|222233.742|107.092 +638597.806|222229.689|106.878 +638602.125|222225.574|106.756 +638606.374|222221.523|106.561 +638610.760|222217.350|106.805 +638615.128|222213.193|106.985 +638619.514|222209.020|107.265 +638623.983|222204.771|107.744 +638628.277|222200.672|107.357 +638650.238|222179.759|107.363 +638659.193|222171.237|107.930 +638668.154|222162.709|108.622 +638677.353|222153.970|110.158 +638681.880|222149.666|110.417 +638686.470|222145.301|111.075 +638690.938|222141.046|111.057 +638695.477|222136.727|111.472 +638700.043|222132.384|111.780 +638704.663|222127.992|112.414 +638709.239|222123.639|112.828 +638713.771|222119.326|113.020 +638718.264|222115.044|112.700 +638736.558|222097.625|113.264 +638745.805|222088.831|114.117 +638750.448|222084.411|114.261 +638755.096|222079.989|114.754 +638759.906|222075.426|115.989 +638764.484|222071.061|115.803 +638769.187|222066.593|116.409 +638778.660|222057.592|117.854 +638783.387|222053.096|118.403 +638792.867|222044.083|119.436 +638797.554|222039.621|119.823 +638802.279|222035.134|120.460 +638807.003|222030.636|120.826 +638816.547|222021.565|121.911 +638821.222|222017.112|122.018 +638825.992|222012.576|122.460 +638835.484|222003.545|123.097 +638840.196|221999.058|123.194 +638844.896|221994.581|123.258 +638849.651|221990.054|123.374 +638878.122|221962.948|124.151 +638882.838|221958.453|123.752 +638887.568|221953.945|123.478 +638892.287|221949.446|123.130 +638896.929|221945.011|122.182 +638901.690|221940.472|121.817 +638906.438|221935.949|121.765 +638911.178|221931.420|120.869 +638925.488|221917.780|120.180 +638935.026|221908.688|119.329 +638944.511|221899.629|117.671 +638949.290|221895.072|117.165 +638954.070|221890.513|116.684 +638958.901|221885.904|116.248 +638963.698|221881.332|115.949 +638968.542|221876.714|115.663 +638973.354|221872.130|115.544 +638978.228|221867.488|115.562 +638983.123|221862.831|115.846 +638987.994|221858.195|115.870 +639027.630|221820.533|122.100 +639032.504|221815.897|122.499 +639047.384|221801.752|124.188 +639052.292|221797.076|123.993 +639062.161|221787.697|124.938 +639067.108|221782.994|125.307 +639072.027|221778.315|125.374 +639076.938|221773.640|125.331 +639081.842|221768.982|125.852 +639086.810|221764.255|126.032 +639091.730|221759.576|126.194 +639096.652|221754.895|126.450 +639101.587|221750.195|126.212 +639106.467|221745.546|125.883 +639111.405|221740.843|125.721 +639116.291|221736.189|125.541 +639121.228|221731.489|125.416 +639126.163|221726.792|125.212 +639131.052|221722.138|125.099 +639135.981|221717.441|124.898 +639140.912|221712.747|124.734 +639145.838|221708.053|124.478 +639150.776|221703.356|124.435 +639155.732|221698.644|124.761 +639160.660|221693.950|124.612 +639165.574|221689.268|124.164 +639170.512|221684.568|124.264 +639175.486|221679.831|124.118 +639180.396|221675.153|123.639 +639200.102|221656.377|122.070 +639205.073|221651.643|121.911 +639210.032|221646.916|121.454 +639214.988|221642.192|120.884 +639219.947|221637.464|120.421 +639224.858|221632.782|119.912 +639244.697|221613.872|117.723 +639249.671|221609.136|117.638 +639254.600|221604.445|117.607 +639264.585|221594.935|117.050 +639269.502|221590.247|116.492 +639279.490|221580.735|116.016 +639284.412|221576.044|115.602 +639294.395|221566.528|114.712 +639304.337|221557.055|113.721 +639309.309|221552.315|113.136 +639314.283|221547.575|112.697 +639319.306|221542.790|112.447 +639329.255|221533.298|110.944 +639334.235|221528.559|110.841 +639344.242|221519.015|109.686 +639364.225|221499.962|107.022 +639369.214|221495.204|106.476 +639379.251|221485.631|104.778 +639404.300|221461.740|101.465 +639409.350|221456.934|101.270 +639414.300|221452.221|101.209 +639419.342|221447.433|101.694 +639434.307|221433.220|103.425 +639439.312|221428.450|103.093 +639444.335|221423.665|102.261 +639449.343|221418.895|102.020 +639454.351|221414.131|101.883 +639459.350|221409.376|102.093 +639464.361|221404.609|101.950 +639489.461|221380.666|97.637 +639504.326|221366.576|101.243 +639509.307|221361.851|102.160 +639514.214|221357.203|103.605 +639519.136|221352.533|104.638 +639533.944|221338.491|107.732 +639543.804|221329.134|109.286 +639548.800|221324.373|108.762 +639553.679|221319.743|109.576 +639558.550|221315.134|111.405 +639573.376|221301.028|111.347 +639578.335|221296.304|110.816 +639598.098|221277.485|109.585 +639608.016|221268.030|108.323 +639627.859|221249.105|104.931 +639632.781|221244.421|104.751 +639637.640|221239.800|104.803 +639642.498|221235.185|105.504 +639647.332|221230.595|105.915 +639652.136|221226.035|106.714 +639656.955|221221.457|107.323 +639661.768|221216.888|108.009 +639666.541|221212.356|108.622 +639676.234|221203.145|109.244 +639681.095|221198.515|108.878 +639685.859|221193.988|109.600 +639690.602|221189.493|110.612 +639700.148|221180.422|111.414 +639704.952|221175.856|111.761 +639709.686|221171.363|112.368 +639714.474|221166.812|112.880 +639728.708|221153.279|113.480 +639733.445|221148.783|114.117 +639738.169|221144.291|114.398 +639742.939|221139.755|114.709 +639747.621|221135.308|114.995 +639752.364|221130.797|115.157 +639757.045|221126.350|115.471 +639766.555|221117.297|115.230 +639771.249|221112.835|115.495 +639780.707|221103.831|115.017 +639785.499|221099.262|114.468 +639790.211|221094.773|114.239 +639809.166|221076.716|112.724 +639813.830|221072.275|112.633 +639827.991|221058.779|111.173 +639832.706|221054.286|110.774 +639837.363|221049.851|110.502 +639842.143|221045.291|109.692 +639851.525|221036.348|108.753 +639856.218|221031.877|108.311 +639860.851|221027.464|107.988 +639870.136|221018.621|107.653 +639874.738|221014.238|107.281 +639888.466|221001.181|107.582 +639893.008|220996.859|107.717 +639897.580|220992.509|108.006 +639929.285|220962.340|108.290 +639942.971|220949.304|107.332 +639993.174|220901.453|102.105 +640006.726|220888.535|100.651 +640015.809|220879.879|99.734 +640020.219|220875.679|99.478 +640033.640|220862.896|98.649 +640038.139|220858.607|98.265 +640042.534|220854.425|98.216 +640051.440|220845.936|97.262 +640055.906|220841.681|96.896 +640060.334|220837.463|96.744 +640064.803|220833.202|96.143 +640077.970|220820.659|95.436 +640079.064|220817.721|95.686 +640066.135|220830.011|96.332 +640061.825|220834.101|96.317 +640057.463|220838.252|96.866 +640053.153|220842.343|96.881 +640048.770|220846.513|97.323 +640039.986|220854.864|98.097 +640035.600|220859.034|98.347 +640031.177|220863.234|98.545 +640026.803|220867.391|98.765 +640022.374|220871.601|99.039 +640017.906|220875.853|99.563 +640013.471|220880.068|99.917 +640008.981|220884.338|100.325 +640004.455|220888.642|100.962 +639995.494|220897.164|101.788 +639991.023|220901.413|102.194 +639986.417|220905.790|102.824 +639977.398|220914.364|103.632 +639972.771|220918.766|104.470 +639959.046|220931.811|105.940 +639945.193|220944.975|107.518 +639940.666|220949.276|107.646 +639936.024|220953.687|108.192 +639917.666|220971.112|108.381 +639913.058|220975.489|108.533 +639899.226|220988.611|108.152 +639894.590|220993.006|107.899 +639889.960|220997.395|107.622 +639885.348|221001.769|107.567 +639876.040|221010.599|107.119 +639871.309|221015.092|107.293 +639866.493|221019.667|107.747 +639861.824|221024.102|107.896 +639856.980|221028.701|108.259 +639852.274|221033.169|108.351 +639842.585|221042.380|109.622 +639837.784|221046.946|110.173 +639832.965|221051.525|110.521 +639828.143|221056.106|110.896 +639808.791|221074.497|112.538 +639799.050|221083.754|113.675 +639794.210|221088.351|113.666 +639789.321|221092.996|114.059 +639784.453|221097.620|114.331 +639779.549|221102.283|114.937 +639774.675|221106.913|115.306 +639769.789|221111.552|115.413 +639764.989|221116.103|115.169 +639760.081|221120.766|115.504 +639755.235|221125.362|115.327 +639750.373|221129.971|114.852 +639745.533|221134.561|114.611 +639740.638|221139.207|114.498 +639735.767|221143.824|114.166 +639730.930|221148.411|113.956 +639721.155|221157.680|113.230 +639716.251|221162.329|112.816 +639711.371|221166.946|112.127 +639706.464|221171.601|111.780 +639701.529|221176.285|111.740 +639686.853|221190.194|110.292 +639681.985|221194.793|109.000 +639677.087|221199.438|108.631 +639672.079|221204.199|109.000 +639667.148|221208.872|108.475 +639662.262|221213.502|107.997 +639657.345|221218.159|107.342 +639647.494|221227.492|106.223 +639642.562|221232.168|105.754 +639637.634|221236.837|105.266 +639632.699|221241.507|104.227 +639627.691|221246.265|104.812 +639622.686|221251.023|105.418 +639607.519|221265.458|108.393 +639602.469|221270.259|109.170 +639597.455|221275.023|109.503 +639592.410|221279.820|110.310 +639577.417|221294.054|110.853 +639567.417|221303.555|111.505 +639552.564|221317.625|109.996 +639547.605|221322.312|108.759 +639542.612|221327.058|109.134 +639532.727|221336.419|107.823 +639512.918|221355.158|103.800 +639503.061|221364.479|101.529 +639493.143|221373.863|99.527 +639488.257|221378.463|97.021 +639473.142|221392.849|100.036 +639468.152|221397.595|100.688 +639458.128|221407.126|102.184 +639453.162|221411.838|102.200 +639448.206|221416.538|102.005 +639443.192|221421.299|102.172 +639438.218|221426.027|102.745 +639428.239|221435.506|103.407 +639423.286|221440.200|103.026 +639413.352|221449.600|101.240 +639408.393|221454.309|101.337 +639398.423|221463.776|101.913 +639378.538|221482.680|104.300 +639358.683|221501.563|107.290 +639353.736|221506.263|107.771 +639343.803|221515.711|109.445 +639328.983|221529.793|110.886 +639319.065|221539.221|112.033 +639309.196|221548.599|112.919 +639284.449|221572.115|115.361 +639274.592|221581.478|116.099 +639269.663|221586.160|116.461 +639259.806|221595.523|117.077 +639249.909|221604.933|117.958 +639244.968|221609.621|117.857 +639240.034|221614.308|117.915 +639235.111|221618.987|118.375 +639230.188|221623.669|118.799 +639225.226|221628.387|119.512 +639215.436|221637.699|120.539 +639210.520|221642.374|121.076 +639205.600|221647.050|121.512 +639200.632|221651.774|121.908 +639195.758|221656.407|122.329 +639185.922|221665.759|123.283 +639181.000|221670.434|123.667 +639176.062|221675.125|123.679 +639171.142|221679.801|124.103 +639161.273|221689.177|124.407 +639146.490|221703.210|124.462 +639141.601|221707.858|124.609 +639131.774|221717.191|125.002 +639126.834|221721.885|125.145 +639121.939|221726.533|125.288 +639117.046|221731.181|125.468 +639112.106|221735.875|125.700 +639107.204|221740.529|125.764 +639102.325|221745.168|126.194 +639092.519|221754.480|126.410 +639087.588|221759.159|126.157 +639082.665|221763.831|126.032 +639072.777|221773.210|125.304 +639067.910|221777.831|125.404 +639062.978|221782.513|125.255 +639058.071|221787.167|124.886 +639053.179|221791.812|124.706 +639048.238|221796.491|124.005 +639043.343|221801.136|123.847 +639033.479|221810.487|122.829 +639023.610|221819.845|121.856 +639008.803|221833.871|119.634 +638993.968|221847.926|117.488 +638984.102|221857.268|115.708 +638979.228|221861.898|115.699 +638974.348|221866.528|115.684 +638969.538|221871.097|115.876 +638964.704|221875.687|115.836 +638959.888|221880.262|116.016 +638955.088|221884.822|116.376 +638950.302|221889.376|116.842 +638945.590|221893.859|117.568 +638936.092|221902.894|118.820 +638931.374|221907.383|119.525 +638921.825|221916.457|119.939 +638907.609|221929.963|120.823 +638898.209|221938.903|121.847 +638893.518|221943.362|122.079 +638888.827|221947.824|122.697 +638879.494|221956.709|123.962 +638874.858|221961.117|124.276 +638846.438|221988.101|123.545 +638837.026|221997.037|123.085 +638832.384|222001.448|123.182 +638827.635|222005.953|122.911 +638822.856|222010.482|122.085 +638808.719|222023.893|120.878 +638804.053|222028.325|120.600 +638799.344|222032.790|120.082 +638785.271|222046.138|118.732 +638780.601|222050.566|118.260 +638775.859|222055.062|117.665 +638771.137|222059.537|116.915 +638766.471|222063.959|116.248 +638757.059|222072.881|114.782 +638752.417|222077.282|114.364 +638747.753|222081.708|113.809 +638738.640|222090.358|113.502 +638733.961|222094.793|112.956 +638720.303|222107.765|112.788 +638715.749|222112.087|112.487 +638711.305|222116.315|112.831 +638702.204|222124.953|112.362 +638697.601|222129.318|111.865 +638693.029|222133.652|111.277 +638688.509|222137.941|111.018 +638683.971|222142.247|110.685 +638679.502|222146.490|110.749 +638675.009|222150.754|110.429 +638670.386|222155.134|109.411 +638665.747|222159.530|108.616 +638661.306|222163.742|108.381 +638656.825|222167.997|108.223 +638643.533|222180.619|107.851 +638639.140|222184.791|107.957 +638634.831|222188.891|108.256 +638630.499|222193.006|108.469 +638626.061|222197.218|108.140 +638621.633|222201.415|107.622 +638617.204|222205.622|107.381 +638612.797|222209.800|107.028 +638608.459|222213.921|107.037 +638604.216|222217.954|107.284 +638595.688|222226.061|107.854 +638591.442|222230.100|108.122 +638587.199|222234.136|108.411 +638582.920|222238.199|108.561 +638578.702|222242.207|108.515 +638574.407|222246.285|108.363 +638570.259|222250.232|108.936 +638566.034|222254.243|108.917 +638557.189|222262.619|107.067 +638552.812|222266.768|106.391 +638548.682|222270.693|106.647 +638544.789|222274.409|108.006 +638536.322|222282.447|107.640 +638532.027|222286.516|106.967 +638523.618|222294.492|106.275 +638510.990|222306.468|104.967 +638506.714|222310.522|104.275 +638502.507|222314.509|103.690 +638498.441|222318.367|103.513 +638494.375|222322.229|103.568 +638490.236|222326.155|103.105 +638486.060|222330.111|102.504 +638481.946|222334.013|101.965 +638469.592|222345.723|100.414 +638465.428|222349.670|99.734 +638457.263|222357.409|98.691 +638453.273|222361.192|98.377 +638449.158|222365.090|97.554 +638441.243|222372.600|97.036 +638437.253|222376.383|96.567 +638433.604|222379.864|97.707 +638430.419|222382.924|100.298 +638426.871|222386.313|101.636 +638423.579|222389.465|103.574 +638419.815|222393.043|103.843 +638416.066|222396.604|103.983 +638412.329|222400.157|104.172 +638408.550|222403.748|104.196 +638404.813|222407.296|104.211 +638401.055|222410.862|103.934 +638397.367|222414.364|104.166 +638393.669|222417.882|104.355 +638390.048|222421.320|104.455 +638386.324|222424.855|104.370 +638382.657|222428.336|104.312 +638378.978|222431.829|104.211 +638375.275|222435.341|103.843 +638546.307|222271.327|107.055 +638550.383|222267.435|106.351 +638554.638|222263.393|106.708 +638563.590|222254.908|109.109 +638567.857|222250.851|109.356 +638572.005|222246.895|108.823 +638576.227|222242.874|108.652 +638580.552|222238.759|108.750 +638584.825|222234.696|108.860 +638589.056|222230.664|108.530 +638593.311|222226.613|108.338 +638597.502|222222.617|107.842 +638606.024|222214.500|107.339 +638610.328|222210.404|107.183 +638614.711|222206.231|107.208 +638619.103|222202.058|107.537 +638623.529|222197.849|107.817 +638628.018|222193.585|108.427 +638632.401|222189.415|108.521 +638636.736|222185.285|108.125 +638641.128|222181.103|108.046 +638645.444|222176.992|107.582 +638654.457|222168.424|108.177 +638658.949|222164.150|108.436 +638663.387|222159.926|108.430 +638667.941|222155.598|108.792 +638672.662|222151.126|110.365 +638677.234|222146.780|110.603 +638681.700|222142.531|110.548 +638686.226|222138.224|110.868 +638690.789|222133.884|111.139 +638695.394|222129.504|111.667 +638699.979|222125.145|112.106 +638704.520|222120.823|112.325 +638713.667|222112.115|112.618 +638718.178|222107.820|112.420 +638731.919|222094.741|112.913 +638736.546|222090.340|113.203 +638741.243|222085.871|113.648 +638745.830|222081.504|113.745 +638755.172|222072.625|114.733 +638764.554|222063.703|115.782 +638769.339|222059.159|116.641 +638778.806|222050.164|118.113 +638783.509|222045.690|118.531 +638792.995|222036.677|119.646 +638802.453|222027.679|120.396 +638807.192|222023.171|120.881 +638821.460|222009.604|122.155 +638826.212|222005.084|122.493 +638835.679|221996.077|123.002 +638840.379|221991.600|123.069 +638845.183|221987.034|123.530 +638849.974|221982.477|123.941 +638873.706|221959.885|124.371 +638892.442|221942.009|121.884 +638897.206|221937.473|121.939 +638906.670|221928.445|120.796 +638920.950|221914.836|119.838 +638940.055|221896.618|118.107 +638944.868|221892.027|117.479 +638949.647|221887.468|117.016 +638954.454|221882.883|116.342 +638959.242|221878.321|115.967 +638968.923|221869.097|115.821 +638973.839|221864.419|115.800 +638978.697|221859.789|115.724 +638983.526|221855.189|115.343 +638993.529|221845.695|117.744 +639008.422|221831.543|119.768 +639023.247|221817.458|121.990 +639033.144|221808.046|122.920 +639052.904|221789.252|124.846 +639057.824|221784.567|124.862 +639067.705|221775.161|125.526 +639072.619|221770.482|125.538 +639077.602|221765.739|125.904 +639082.528|221761.052|126.154 +639087.438|221756.373|126.233 +639092.409|221751.645|126.477 +639097.347|221746.936|126.346 +639102.264|221742.245|125.880 +639107.204|221737.539|125.779 +639112.103|221732.873|125.788 +639117.046|221728.164|125.749 +639121.969|221723.470|125.471 +639126.892|221718.776|125.133 +639131.869|221714.033|124.950 +639141.729|221704.636|124.624 +639146.707|221699.893|124.499 +639161.547|221685.754|124.264 +639166.473|221681.057|124.133 +639171.408|221676.357|124.161 +639176.364|221671.629|123.740 +639181.286|221666.938|123.527 +639186.242|221662.211|123.091 +639191.144|221657.532|122.396 +639196.097|221652.808|121.823 +639215.896|221633.925|120.381 +639220.798|221629.247|119.595 +639225.793|221624.477|118.827 +639230.704|221619.789|118.314 +639235.675|221615.052|118.092 +639240.646|221610.315|118.010 +639255.584|221596.069|116.690 +639260.562|221591.326|116.812 +639270.492|221581.856|116.022 +639285.446|221567.598|115.044 +639290.365|221562.904|114.443 +639295.334|221558.164|114.014 +639300.344|221553.379|113.218 +639305.270|221548.682|112.868 +639315.264|221539.151|111.962 +639320.193|221534.451|111.572 +639355.047|221501.188|107.226 +639359.985|221496.479|106.778 +639364.971|221491.721|106.357 +639374.957|221482.186|104.662 +639379.903|221477.462|103.967 +639404.858|221453.651|101.032 +639409.850|221448.899|101.322 +639424.764|221434.720|103.068 +639434.713|221425.237|102.934 +639439.727|221420.455|102.291 +639444.683|221415.731|102.169 +639449.630|221411.022|102.392 +639454.631|221406.258|102.389 +639459.545|221401.576|102.276 +639464.583|221396.757|101.054 +639479.579|221382.425|97.625 +639484.560|221377.676|97.207 +639489.418|221373.071|98.917 +639494.359|221368.374|99.597 +639499.221|221363.765|101.118 +639518.859|221345.118|105.299 +639528.634|221335.836|107.637 +639533.505|221331.210|108.558 +639538.397|221326.558|109.113 +639543.377|221321.809|108.820 +639548.230|221317.192|109.195 +639553.106|221312.571|110.917 +639567.834|221298.550|111.581 +639572.769|221293.847|111.408 +639577.719|221289.126|111.033 +639587.601|221279.707|110.673 +639592.563|221274.974|110.173 +639597.495|221270.268|109.527 +639602.454|221265.537|109.170 +639622.305|221246.576|105.440 +639632.147|221237.194|105.013 +639646.723|221223.328|106.418 +639656.434|221214.090|107.262 +639661.301|221209.463|107.863 +639666.108|221204.891|108.591 +639670.958|221200.273|108.847 +639675.865|221195.595|108.445 +639680.678|221191.020|109.161 +639685.454|221186.487|110.320 +639695.086|221177.322|111.167 +639699.911|221172.735|111.780 +639704.748|221168.132|112.258 +639709.524|221163.584|112.392 +639714.346|221159.000|113.060 +639719.119|221154.456|113.252 +639728.748|221145.290|113.846 +639733.570|221140.703|114.108 +639738.343|221136.158|114.389 +639743.171|221131.559|114.590 +639747.953|221127.008|114.834 +639752.717|221122.473|115.224 +639757.506|221117.916|115.434 +639762.346|221113.305|115.199 +639767.086|221108.790|115.434 +639771.871|221104.231|115.312 +639776.647|221099.674|114.864 +639781.521|221095.029|114.443 +639791.095|221085.912|113.968 +639795.831|221081.395|113.566 +639810.157|221067.743|112.432 +639824.501|221054.073|111.048 +639829.259|221049.540|110.716 +639833.974|221045.044|110.347 +639838.778|221040.463|109.707 +639843.463|221036.007|109.661 +639853.027|221026.878|108.134 +639857.672|221022.459|108.085 +639862.403|221017.954|107.802 +639871.803|221008.999|107.372 +639876.375|221004.649|107.592 +639880.999|221000.251|107.808 +639885.598|220995.874|107.875 +639890.204|220991.491|107.902 +639894.788|220987.132|108.125 +639913.082|220969.722|108.430 +639922.189|220961.054|108.472 +639931.282|220952.397|108.387 +639940.435|220943.671|107.372 +639958.659|220926.300|105.866 +639963.173|220921.996|105.272 +639981.437|220904.574|102.572 +639985.896|220900.325|102.450 +640008.338|220878.931|100.182 +640012.788|220874.688|99.670 +640021.655|220866.242|99.219 +640026.099|220862.006|98.822 +640034.874|220853.645|98.438 +640048.127|220841.011|96.878 +640052.409|220836.933|96.936 +640056.802|220832.745|96.439 +640061.051|220828.706|96.725 +640073.953|220816.414|96.061 +640078.220|220812.347|95.787 +640079.332|220809.077|96.317 +640075.093|220813.103|95.872 +640070.755|220817.224|95.680 +640061.776|220825.780|96.954 +640057.408|220829.934|96.994 +640053.089|220834.031|96.503 +640048.718|220838.188|96.591 +640044.137|220842.559|97.561 +640039.657|220846.823|97.999 +640035.203|220851.063|98.332 +640021.823|220863.795|99.005 +640012.868|220872.317|99.581 +640008.326|220876.642|99.984 +640003.803|220880.946|100.301 +639999.280|220885.253|100.657 +639990.236|220893.860|101.401 +639971.909|220911.319|103.763 +639967.279|220915.736|104.653 +639962.679|220920.122|105.388 +639930.605|220950.660|108.076 +639916.959|220963.641|108.475 +639912.402|220967.976|108.597 +639894.184|220985.297|108.268 +639889.606|220989.647|107.982 +639885.065|220993.963|107.774 +639875.887|221002.689|107.774 +639871.327|221007.024|107.439 +639862.019|221015.878|107.793 +639857.334|221020.340|108.073 +639852.704|221024.745|108.314 +639843.207|221033.794|109.591 +639838.497|221038.275|109.783 +639833.742|221042.804|110.368 +639824.306|221051.787|111.045 +639810.078|221065.335|112.130 +639805.268|221069.913|112.554 +639795.746|221078.981|113.517 +639790.970|221083.526|113.767 +639781.399|221092.639|114.523 +639776.638|221097.171|114.748 +639771.752|221101.823|115.239 +639766.991|221106.355|115.529 +639762.242|221110.866|115.273 +639757.451|221115.426|115.440 +639747.920|221124.482|114.937 +639743.140|221129.023|114.617 +639738.346|221133.580|114.443 +639733.564|221138.124|114.191 +639728.739|221142.709|113.883 +639719.159|221151.810|113.142 +639714.267|221156.458|113.078 +639699.798|221170.205|111.920 +639694.976|221174.780|111.179 +639680.434|221188.584|109.393 +639675.591|221193.178|108.408 +639670.644|221197.887|108.619 +639660.847|221207.189|107.927 +639655.980|221211.810|107.256 +639651.039|221216.504|106.921 +639646.150|221221.149|106.510 +639641.215|221225.837|106.110 +639636.280|221230.522|105.717 +639631.410|221235.146|105.120 +639626.387|221239.922|105.303 +639621.400|221244.664|105.638 +639596.190|221268.677|109.411 +639576.131|221287.760|111.118 +639566.085|221297.316|111.725 +639551.122|221311.516|110.582 +639546.139|221316.232|108.948 +639541.116|221321.005|108.960 +639536.089|221325.784|109.058 +639516.140|221344.688|105.229 +639491.140|221368.362|99.203 +639481.067|221377.911|97.408 +639476.031|221382.703|97.850 +639470.929|221387.564|98.865 +639465.815|221392.450|100.545 +639460.761|221397.272|101.904 +639455.686|221402.100|102.443 +639450.629|221406.907|102.453 +639445.622|221411.662|102.306 +639440.568|221416.465|102.291 +639435.505|221421.278|102.559 +639425.435|221430.858|103.169 +639420.378|221435.665|103.376 +639410.295|221445.235|102.401 +639405.257|221450.009|101.471 +639390.148|221464.374|101.904 +639385.091|221469.190|102.663 +639380.035|221474.012|103.803 +639369.982|221483.579|104.973 +639359.893|221493.187|106.461 +639354.898|221497.942|106.979 +639329.767|221521.868|110.408 +639324.826|221526.565|110.530 +639314.816|221536.097|111.959 +639309.833|221540.836|112.246 +639304.849|221545.576|112.441 +639299.875|221550.315|113.294 +639294.895|221555.052|113.499 +639284.995|221564.477|114.806 +639275.043|221573.944|115.541 +639260.211|221588.053|116.583 +639235.571|221611.471|118.125 +639230.640|221616.155|118.321 +639225.708|221620.840|118.519 +639220.788|221625.519|119.009 +639215.921|221630.149|119.616 +639211.013|221634.818|120.482 +639206.100|221639.491|121.100 +639196.298|221648.809|121.704 +639186.511|221658.114|122.725 +639181.643|221662.744|123.228 +639171.877|221672.022|123.615 +639167.009|221676.649|124.148 +639162.114|221681.294|124.161 +639157.244|221685.927|124.609 +639147.466|221695.215|124.846 +639142.601|221699.829|124.609 +639137.752|221704.432|124.694 +639132.899|221709.053|125.496 +639128.056|221713.652|125.651 +639123.167|221718.297|125.858 +639118.366|221722.857|125.989 +639113.477|221727.502|126.197 +639103.745|221736.741|125.974 +639098.886|221741.352|126.014 +639094.077|221745.918|126.102 +639089.206|221750.554|126.648 +639084.369|221755.141|126.392 +639079.492|221759.771|126.233 +639074.606|221764.404|126.029 +639055.081|221782.927|125.005 +639045.351|221792.156|124.194 +639040.459|221796.792|123.508 +639035.546|221801.453|123.185 +639030.663|221806.080|122.725 +639025.795|221810.697|122.435 +639020.903|221815.337|121.899 +639016.057|221819.930|121.405 +639006.273|221829.199|120.034 +638981.675|221852.495|115.629 +638967.222|221866.217|115.443 +638962.433|221870.768|115.858 +638957.700|221875.266|116.379 +638952.863|221879.860|116.345 +638943.383|221888.873|117.290 +638938.577|221893.442|117.601 +638933.816|221897.965|117.903 +638924.431|221906.893|119.351 +638919.664|221911.422|119.643 +638905.414|221924.964|120.625 +638896.063|221933.864|122.039 +638891.369|221938.321|122.231 +638872.642|221956.121|124.285 +638867.893|221960.629|124.496 +638863.215|221965.070|124.517 +638853.696|221974.098|124.167 +638844.256|221983.050|123.767 +638839.489|221987.567|123.255 +638820.588|222005.486|122.024 +638801.703|222023.390|120.640 +638792.288|222032.312|119.643 +638787.511|222036.835|119.067 +638782.790|222041.307|118.546 +638745.181|222076.935|113.953 +638735.939|222085.698|113.471 +638731.269|222090.120|112.974 +638726.676|222094.476|112.660 +638722.107|222098.810|112.502 +638717.529|222103.154|112.621 +638713.042|222107.412|112.697 +638699.363|222120.384|112.090 +638694.888|222124.630|112.026 +638690.295|222128.982|111.612 +638685.702|222133.332|110.932 +638681.176|222137.624|110.664 +638676.664|222141.900|110.499 +638672.144|222146.188|110.295 +638667.752|222150.358|110.545 +638663.052|222154.799|109.143 +638658.529|222159.085|108.722 +638654.170|222163.224|108.948 +638649.668|222167.491|108.686 +638645.142|222171.783|108.323 +638640.820|222175.885|108.515 +638636.406|222180.073|108.524 +638632.060|222184.197|108.628 +638627.662|222188.373|108.741 +638623.199|222192.600|108.296 +638618.749|222196.819|107.915 +638614.333|222201.004|107.750 +638609.998|222205.119|107.747 +638605.701|222209.200|107.948 +638601.388|222213.293|108.091 +638592.917|222221.340|108.936 +638580.180|222233.435|109.533 +638575.891|222237.501|109.393 +638571.594|222241.576|109.222 +638558.938|222253.585|109.481 +638549.877|222262.144|106.668 +638545.682|222266.128|106.625 +638537.596|222273.824|107.963 +638533.430|222277.777|107.860 +638529.202|222281.785|107.491 +638525.017|222285.754|107.342 +638495.372|222313.847|103.398 +638491.266|222317.742|103.279 +638483.000|222325.579|102.431 +638478.821|222329.535|101.834 +638462.457|222345.053|100.243 +638454.227|222352.843|98.938 +638450.195|222356.669|98.646 +638442.200|222364.249|97.981 +638423.226|222382.284|99.618 +638419.940|222385.433|101.803 +638416.624|222388.606|103.867 +638412.884|222392.160|104.038 +638409.184|222395.674|104.163 +638405.432|222399.237|104.306 +638401.646|222402.831|104.324 +638397.909|222406.378|104.342 +638394.148|222409.945|104.071 +638390.518|222413.395|104.321 +638386.802|222416.922|104.464 +638383.123|222420.415|104.544 +638379.459|222423.892|104.498 +638375.787|222427.376|104.434 +638372.102|222430.872|104.330 +638368.331|222434.441|103.721 +638536.319|222272.970|107.814 +638544.472|222265.189|106.881 +638548.645|222261.211|106.625 +638553.086|222256.996|107.643 +638557.682|222252.640|109.433 +638570.356|222240.564|109.170 +638574.681|222236.449|109.515 +638578.997|222232.337|109.594 +638583.304|222228.235|109.646 +638600.324|222212.001|108.259 +638604.625|222207.901|108.113 +638608.971|222203.759|107.951 +638613.351|222199.586|107.985 +638617.686|222195.453|107.808 +638622.184|222191.174|108.219 +638626.601|222186.971|108.497 +638631.088|222182.704|108.893 +638635.468|222178.528|108.762 +638639.896|222174.309|108.625 +638644.276|222170.134|108.524 +638648.748|222165.879|108.658 +638657.663|222157.381|108.582 +638666.911|222148.596|110.384 +638671.352|222144.366|110.185 +638675.924|222140.013|110.463 +638680.465|222135.694|110.573 +638685.034|222131.351|111.152 +638689.625|222126.986|111.588 +638694.215|222122.621|111.770 +638698.744|222118.311|111.911 +638712.494|222105.232|112.517 +638721.650|222096.515|112.401 +638726.262|222092.129|112.575 +638730.901|222087.719|112.935 +638735.531|222083.314|113.264 +638740.225|222078.855|113.697 +638744.806|222074.493|113.782 +638759.022|222060.994|115.873 +638763.630|222056.605|115.922 +638768.431|222052.048|116.903 +638773.158|222047.555|117.443 +638777.941|222043.013|118.055 +638782.619|222038.563|118.336 +638787.341|222034.077|118.924 +638801.617|222020.513|120.640 +638806.333|222016.029|120.985 +638820.500|222002.557|121.975 +638839.568|221984.425|123.322 +638849.069|221975.390|123.929 +638853.824|221970.867|124.121 +638858.633|221966.292|124.389 +638863.330|221961.818|124.203 +638868.064|221957.310|123.935 +638872.773|221952.826|123.862 +638886.919|221939.342|122.390 +638891.619|221934.858|121.939 +638896.426|221930.286|121.960 +638905.783|221921.355|120.363 +638910.544|221916.820|120.055 +638915.345|221912.245|119.680 +638920.106|221907.709|119.424 +638924.848|221903.189|118.994 +638929.612|221898.648|118.351 +638934.398|221894.085|117.897 +638939.137|221889.568|117.498 +638943.984|221884.950|117.202 +638948.690|221880.460|116.516 +638953.533|221875.846|116.205 +638963.147|221866.686|115.404 +638967.935|221862.123|115.065 +638977.771|221852.766|115.617 +638992.590|221838.696|118.068 +638997.659|221833.890|119.342 +639002.542|221829.245|119.713 +639012.433|221819.848|120.853 +639017.377|221815.148|121.490 +639027.292|221805.729|122.588 +639032.269|221800.999|123.182 +639037.170|221796.338|123.444 +639047.107|221786.902|124.551 +639071.845|221763.386|126.087 +639076.767|221758.705|126.267 +639081.717|221753.995|126.251 +639086.673|221749.280|126.322 +639091.562|221744.626|126.120 +639096.552|221739.877|126.005 +639111.359|221725.792|126.297 +639116.291|221721.098|126.108 +639121.268|221716.359|125.959 +639126.200|221711.668|125.794 +639131.128|221706.974|125.642 +639136.066|221702.265|124.807 +639140.995|221697.574|124.654 +639145.981|221692.831|124.700 +639150.965|221688.088|124.758 +639155.887|221683.404|124.499 +639160.846|221678.679|124.103 +639205.536|221636.111|120.591 +639210.483|221631.392|119.802 +639215.494|221626.622|119.424 +639220.447|221621.901|118.784 +639225.415|221617.170|118.555 +639230.432|221612.394|118.378 +639245.368|221598.166|117.184 +639250.330|221593.439|116.690 +639255.304|221588.705|116.650 +639260.321|221583.929|116.455 +639265.283|221579.201|115.876 +639270.248|221574.471|115.376 +639275.268|221569.695|115.266 +639280.237|221564.961|115.032 +639285.202|221560.231|114.456 +639290.219|221555.451|113.992 +639295.233|221550.672|113.419 +639300.158|221545.981|113.078 +639305.176|221541.199|112.584 +639320.144|221526.937|111.030 +639325.116|221522.192|109.737 +639330.099|221517.455|110.073 +639335.073|221512.712|109.445 +639340.100|221507.918|108.664 +639360.037|221488.916|106.238 +639365.029|221484.155|105.287 +639384.966|221465.139|101.931 +639394.976|221455.593|100.313 +639399.911|221450.914|101.471 +639404.854|221446.214|101.840 +639414.773|221436.796|103.419 +639419.720|221432.086|103.422 +639424.673|221427.368|103.221 +639429.680|221422.598|102.797 +639434.637|221417.874|102.507 +639439.544|221413.201|102.386 +639444.491|221408.495|102.648 +639449.447|221403.780|102.596 +639474.282|221380.075|98.115 +639479.156|221375.439|98.088 +639498.815|221356.749|99.825 +639503.649|221352.177|101.922 +639508.499|221347.580|103.538 +639513.299|221343.033|105.138 +639537.546|221320.011|109.356 +639542.438|221315.348|108.920 +639547.282|221310.745|109.494 +639552.052|221306.231|111.411 +639556.892|221301.632|111.996 +639561.775|221296.983|111.856 +639571.501|221287.718|111.502 +639576.393|221283.057|111.252 +639591.066|221269.064|109.420 +639595.934|221264.425|109.018 +639600.814|221259.783|109.170 +639605.636|221255.189|108.841 +639610.555|221250.501|108.479 +639625.301|221236.420|105.239 +639630.163|221231.793|105.220 +639639.764|221222.667|106.180 +639644.601|221218.068|106.522 +639649.393|221213.511|106.848 +639654.224|221208.917|107.299 +639658.958|221204.419|107.784 +639663.755|221199.865|108.637 +639668.617|221195.229|108.186 +639673.420|221190.660|108.439 +639678.178|221186.140|109.228 +639682.887|221181.677|110.579 +639692.458|221172.573|111.054 +639697.158|221168.111|111.965 +639702.002|221163.499|111.871 +639706.759|221158.976|112.212 +639725.828|221140.849|113.809 +639730.601|221136.308|114.066 +639735.389|221131.751|114.178 +639740.120|221127.249|114.416 +639749.678|221118.160|114.949 +639754.412|221113.658|115.212 +639759.176|221109.123|115.218 +639763.913|221104.615|115.483 +639768.771|221099.988|115.141 +639797.627|221072.464|112.874 +639826.321|221045.099|110.697 +639831.130|221040.512|110.347 +639835.876|221035.983|109.768 +639854.957|221017.786|108.192 +639859.690|221013.269|107.851 +639864.415|221008.767|107.622 +639869.108|221004.296|107.646 +639873.708|220999.916|108.000 +639878.405|220995.444|108.040 +639901.615|220973.340|108.716 +639906.187|220968.985|108.741 +639910.805|220964.586|108.786 +639920.123|220955.704|108.411 +639924.698|220951.346|108.491 +639929.383|220946.877|108.192 +639957.156|220920.381|105.671 +639971.080|220907.089|103.513 +639980.227|220898.362|102.730 +639994.001|220885.213|100.721 +639998.530|220880.894|100.282 +640003.020|220876.612|100.078 +640007.500|220872.335|99.667 +640016.516|220863.740|99.191 +640020.948|220859.512|98.838 +640025.358|220855.309|98.911 +640034.216|220846.866|98.380 +640038.690|220842.593|97.878 +640043.076|220838.411|97.631 +640047.493|220834.199|97.234 +640051.876|220830.020|97.030 +640060.310|220821.997|98.176 +640069.359|220813.347|95.924 +640073.651|220809.254|95.768 +640077.936|220805.169|95.683 +640077.677|220802.826|96.119 +640073.514|220806.764|95.003 +640068.985|220811.080|95.796 +640064.492|220815.353|96.415 +640059.740|220819.894|98.167 +640055.424|220823.985|97.652 +640051.102|220828.084|97.186 +640046.682|220832.284|97.256 +640042.135|220836.610|97.747 +640037.663|220840.859|97.868 +640033.070|220845.229|98.399 +640028.541|220849.539|98.880 +640024.033|220853.822|98.978 +640019.625|220858.007|98.844 +640015.020|220862.387|99.255 +640001.389|220875.344|99.880 +639996.686|220879.824|100.682 +639992.156|220884.122|100.493 +639987.527|220888.529|101.200 +639968.925|220906.232|103.361 +639959.470|220915.239|105.098 +639954.782|220919.704|105.784 +639950.161|220924.100|106.080 +639936.210|220937.371|107.067 +639926.801|220946.323|108.015 +639922.132|220950.764|108.460 +639917.477|220955.189|108.533 +639903.536|220968.439|108.713 +639889.643|220981.637|108.439 +639885.007|220986.038|108.204 +639880.365|220990.446|108.009 +639871.029|220999.315|108.073 +639866.371|221003.738|107.729 +639861.717|221008.161|107.701 +639856.977|221012.669|107.991 +639852.241|221017.173|108.274 +639847.504|221021.678|108.579 +639837.961|221030.761|109.823 +639833.203|221035.285|110.012 +639828.500|221039.759|110.198 +639823.718|221044.310|110.643 +639809.395|221057.938|111.965 +639795.115|221071.516|112.816 +639790.281|221076.122|113.532 +639771.158|221094.312|114.864 +639766.394|221098.839|115.117 +639761.611|221103.386|115.145 +639756.881|221107.882|115.166 +639752.105|221112.421|115.196 +639747.380|221116.901|114.739 +639742.631|221121.412|114.559 +639737.880|221125.923|114.395 +639733.146|221130.419|114.108 +639728.358|221134.967|113.901 +639709.326|221153.032|112.471 +639699.801|221162.073|111.679 +639690.236|221171.150|110.865 +639680.638|221180.260|109.978 +639675.883|221184.765|109.042 +639671.113|221189.285|108.274 +639666.306|221193.848|107.924 +639656.577|221203.090|107.570 +639651.780|221207.643|107.171 +639642.081|221216.848|106.513 +639637.228|221221.457|106.247 +639632.352|221226.087|105.732 +639627.557|221230.628|104.729 +639622.574|221235.374|105.604 +639607.608|221249.651|108.942 +639597.799|221258.975|108.966 +639592.889|221263.647|109.170 +639587.933|221268.360|109.320 +639582.910|221273.151|110.563 +639577.984|221277.845|111.142 +639573.019|221282.566|111.560 +639568.075|221287.273|111.746 +639548.315|221306.042|110.661 +639543.417|221310.678|109.186 +639538.452|221315.396|108.951 +639533.462|221320.145|109.286 +639508.761|221343.566|104.669 +639483.895|221367.139|99.862 +639468.850|221381.419|98.027 +639443.549|221405.535|102.547 +639438.492|221410.342|102.541 +639433.439|221415.149|102.541 +639428.425|221419.919|102.806 +639423.362|221424.735|103.215 +639418.305|221429.547|103.428 +639413.255|221434.348|103.449 +639403.114|221443.980|102.818 +639398.131|221448.704|101.557 +639393.092|221453.477|100.429 +639382.930|221463.149|101.313 +639377.870|221467.980|102.593 +639352.578|221492.077|106.503 +639347.537|221496.881|107.268 +639337.414|221506.525|108.613 +639302.146|221540.108|112.429 +639292.048|221549.724|113.529 +639287.070|221554.461|114.151 +639276.975|221564.071|114.892 +639266.975|221573.590|115.562 +639261.897|221578.415|115.678 +639251.902|221587.931|116.452 +639246.873|221592.713|116.589 +639241.902|221597.450|116.958 +639226.951|221611.687|118.604 +639221.925|221616.469|118.692 +639216.951|221621.206|118.970 +639211.977|221625.940|119.250 +639207.018|221630.667|119.915 +639202.046|221635.398|120.302 +639197.133|221640.079|120.933 +639192.158|221644.816|121.140 +639187.209|221649.534|122.006 +639162.556|221673.007|123.926 +639157.618|221677.704|123.993 +639152.696|221682.392|124.386 +639147.819|221687.034|124.755 +639142.912|221691.697|124.545 +639137.980|221696.391|124.758 +639133.082|221701.049|124.801 +639128.187|221705.718|125.666 +639123.301|221710.366|125.919 +639118.458|221714.975|126.087 +639113.563|221719.632|126.187 +639103.827|221728.898|126.590 +639094.043|221738.201|126.303 +639089.127|221742.873|126.236 +639084.311|221747.454|126.218 +639079.455|221752.075|126.367 +639074.579|221756.708|126.248 +639045.333|221784.497|124.386 +639035.589|221793.757|123.469 +639030.706|221798.393|122.969 +639025.844|221803.013|122.722 +639020.949|221807.662|122.131 +639011.192|221816.925|120.920 +639006.337|221821.533|120.381 +638996.556|221830.817|119.128 +638991.642|221835.478|118.061 +638976.972|221849.401|115.913 +638972.138|221853.988|115.364 +638967.234|221858.646|114.605 +638962.485|221863.163|114.959 +638957.742|221867.689|115.797 +638953.003|221872.200|116.254 +638948.233|221876.742|116.403 +638943.514|221881.237|117.062 +638938.784|221885.742|117.629 +638929.286|221894.780|118.028 +638919.856|221903.765|119.052 +638915.113|221908.282|119.552 +638891.671|221930.612|122.085 +638886.888|221935.166|122.335 +638882.301|221939.540|123.395 +638863.526|221957.404|124.340 +638858.786|221961.909|124.276 +638854.031|221966.429|124.124 +638849.325|221970.901|123.999 +638844.500|221975.479|123.368 +638839.794|221979.953|123.286 +638825.642|221993.398|122.585 +638820.866|221997.933|122.106 +638816.144|222002.417|121.695 +638801.947|222015.898|120.396 +638797.250|222020.358|119.921 +638787.795|222029.334|119.000 +638783.070|222033.818|118.446 +638773.606|222042.803|117.299 +638768.900|222047.272|116.946 +638764.243|222051.694|116.623 +638759.592|222056.114|116.336 +638740.813|222073.939|114.126 +638736.131|222078.379|113.505 +638731.431|222082.845|113.093 +638726.877|222087.170|112.999 +638722.296|222091.529|113.041 +638717.630|222095.957|112.618 +638699.406|222113.279|112.249 +638694.834|222117.623|111.911 +638690.298|222121.932|111.789 +638685.711|222126.288|111.411 +638681.108|222130.659|110.957 +638676.533|222135.002|110.414 +638672.028|222139.282|110.289 +638667.508|222143.579|110.085 +638663.000|222147.862|109.981 +638653.920|222156.485|109.216 +638649.482|222160.706|109.280 +638645.023|222164.940|108.985 +638640.610|222169.137|108.948 +638636.181|222173.349|109.119 +638631.798|222177.519|109.277 +638627.290|222181.798|108.805 +638622.861|222186.005|108.506 +638618.387|222190.253|108.259 +638614.049|222194.380|108.457 +638609.700|222198.520|108.619 +638605.369|222202.638|108.899 +638601.059|222206.740|109.030 +638596.746|222210.843|109.167 +638583.917|222223.047|109.975 +638579.622|222227.134|110.012 +638575.282|222231.258|109.850 +638566.653|222239.457|109.597 +638549.151|222256.063|107.208 +638544.823|222260.175|106.759 +638540.690|222264.107|107.238 +638536.557|222268.039|107.732 +638523.962|222280.005|107.680 +638519.771|222283.983|107.503 +638515.373|222288.149|106.403 +638489.922|222312.280|103.148 +638485.798|222316.197|102.949 +638477.553|222324.021|102.425 +638473.338|222328.014|101.678 +638469.123|222332.010|100.953 +638456.818|222343.684|99.673 +638452.795|222347.503|99.618 +638448.637|222351.444|99.014 +638444.672|222355.212|99.002 +638417.563|222380.976|100.060 +638414.167|222384.226|102.020 +638410.851|222387.405|104.077 +638407.032|222391.032|104.144 +638403.277|222394.598|104.266 +638399.521|222398.167|104.397 +638395.733|222401.767|104.412 +638391.950|222405.363|104.455 +638388.177|222408.942|104.150 +638384.519|222412.420|104.501 +638380.795|222415.958|104.614 +638377.109|222419.461|104.678 +638373.440|222422.944|104.614 +638369.770|222426.428|104.562 +638366.033|222429.979|104.461 +638362.125|222433.679|103.535 +638537.782|222264.546|107.604 +638541.775|222260.733|106.744 +638545.987|222256.718|106.699 +638555.015|222248.156|109.460 +638567.863|222235.925|109.807 +638572.182|222231.813|109.890 +638576.504|222227.695|110.012 +638580.777|222223.623|109.908 +638585.093|222219.514|110.024 +638593.640|222211.367|109.402 +638597.956|222207.252|109.329 +638602.321|222203.095|109.262 +638606.566|222199.044|108.866 +638610.934|222194.883|108.841 +638615.272|222190.750|108.695 +638619.667|222186.562|108.588 +638624.108|222182.335|108.741 +638628.573|222178.086|109.030 +638633.118|222173.761|109.506 +638637.479|222169.603|109.301 +638641.902|222165.391|109.167 +638646.401|222161.105|109.198 +638659.876|222148.279|109.814 +638664.430|222143.945|109.942 +638668.950|222139.641|110.188 +638673.446|222135.356|110.335 +638678.070|222130.958|110.926 +638682.696|222126.553|111.271 +638691.847|222117.842|112.045 +638696.406|222113.496|112.093 +638714.725|222096.046|112.660 +638724.021|222087.194|113.151 +638728.606|222082.823|113.200 +638737.920|222073.954|113.657 +638756.891|222055.913|116.690 +638766.267|222046.982|116.925 +638770.979|222042.498|117.382 +638785.177|222028.983|118.699 +638813.794|222001.753|121.628 +638818.540|221997.232|121.954 +638823.371|221992.636|122.554 +638828.050|221988.177|122.438 +638847.142|221969.995|123.588 +638851.977|221965.393|124.026 +638861.514|221956.310|124.365 +638866.275|221951.771|124.350 +638870.987|221947.276|123.947 +638880.497|221938.205|123.514 +638885.160|221933.745|122.380 +638889.885|221929.241|122.155 +638894.765|221924.592|122.414 +638908.795|221911.181|119.427 +638913.607|221906.591|119.195 +638918.377|221902.043|119.012 +638923.215|221897.425|118.610 +638942.362|221879.156|117.016 +638947.126|221874.608|116.431 +638952.015|221869.954|116.571 +638956.767|221865.406|115.458 +638961.559|221860.831|114.706 +638966.435|221856.186|114.785 +638971.324|221851.535|115.501 +638991.030|221832.786|117.839 +638996.062|221828.010|119.241 +639001.021|221823.295|119.939 +639005.962|221818.592|120.497 +639015.801|221809.231|121.765 +639025.701|221799.813|122.786 +639030.648|221795.104|123.045 +639035.564|221790.425|123.551 +639060.287|221766.898|125.364 +639075.085|221752.813|126.425 +639080.019|221748.107|126.206 +639084.969|221743.391|126.245 +639089.837|221738.758|126.456 +639094.833|221734.001|126.495 +639099.743|221729.325|126.739 +639104.662|221724.631|126.416 +639119.470|221710.522|126.251 +639129.299|221701.146|125.569 +639134.240|221696.431|124.849 +639139.166|221691.737|124.663 +639144.134|221687.000|124.462 +639149.054|221682.309|124.221 +639154.019|221677.573|123.999 +639158.941|221672.882|123.801 +639163.894|221668.157|123.359 +639168.856|221663.427|123.027 +639173.813|221658.696|122.624 +639188.669|221644.520|121.094 +639193.640|221639.787|120.981 +639198.584|221635.065|120.256 +639203.589|221630.292|119.829 +639208.548|221625.559|119.473 +639213.510|221620.828|119.186 +639218.524|221616.049|118.955 +639258.447|221577.970|115.894 +639273.437|221563.675|114.858 +639283.465|221554.110|114.288 +639303.469|221535.021|111.978 +639313.554|221525.401|111.313 +639323.546|221515.864|109.844 +639333.589|221506.281|108.771 +639338.612|221501.483|108.012 +639343.638|221496.683|107.314 +639348.622|221491.931|106.854 +639378.797|221463.118|102.069 +639383.842|221458.302|101.413 +639393.815|221448.808|102.102 +639398.850|221444.016|102.456 +639408.863|221434.500|103.687 +639413.861|221429.739|103.443 +639423.859|221420.211|102.959 +639428.861|221415.447|102.709 +639433.859|221410.686|102.636 +639438.855|221405.931|102.675 +639458.871|221386.845|100.569 +639468.850|221377.317|98.661 +639478.741|221367.911|99.597 +639493.570|221353.817|101.200 +639503.345|221344.545|103.748 +639508.234|221339.909|105.400 +639532.606|221316.765|109.750 +639537.510|221312.086|109.036 +639542.362|221307.469|109.350 +639547.196|221302.887|110.963 +639561.751|221289.043|112.023 +639576.341|221275.138|111.112 +639581.279|221270.426|110.204 +639586.113|221265.815|109.506 +639591.008|221261.148|109.344 +639595.818|221256.567|109.091 +639605.462|221247.395|109.731 +639620.175|221233.335|106.098 +639625.030|221228.702|105.440 +639629.828|221224.136|105.604 +639634.586|221219.616|106.330 +639639.328|221215.105|106.613 +639653.663|221201.468|107.454 +639658.372|221196.991|108.186 +639663.219|221192.376|107.912 +639667.937|221187.883|108.024 +639672.695|221183.363|108.771 +639677.352|221178.940|109.622 +639682.065|221174.463|110.362 +639686.761|221169.997|110.777 +639700.910|221156.537|111.923 +639705.607|221152.075|112.395 +639710.326|221147.582|112.624 +639715.020|221143.120|113.127 +639724.353|221134.244|113.785 +639729.065|221129.764|114.166 +639743.140|221116.365|114.578 +639752.452|221107.504|115.157 +639757.149|221103.033|115.318 +639761.806|221098.601|115.422 +639766.531|221094.096|114.959 +639809.005|221053.622|111.773 +639818.417|221044.648|110.996 +639823.166|221040.119|110.323 +639827.771|221035.736|110.402 +639841.902|221022.267|109.177 +639846.639|221017.753|108.753 +639851.265|221013.345|108.445 +639855.953|221008.877|108.076 +639860.608|221004.442|107.970 +639865.192|221000.077|108.040 +639869.809|220995.685|108.253 +639874.406|220991.308|108.277 +639883.617|220982.545|108.619 +639888.195|220978.189|108.826 +639892.752|220973.852|108.881 +639897.324|220969.506|109.183 +639901.945|220965.098|108.823 +639906.547|220960.721|108.957 +639915.737|220951.967|108.732 +639925.033|220943.107|107.909 +639929.688|220938.669|107.201 +639952.755|220916.681|105.309 +639957.351|220912.301|105.107 +639975.908|220894.598|102.364 +639985.158|220885.774|101.044 +639989.706|220881.443|100.749 +639994.247|220877.115|100.496 +639998.771|220872.802|100.090 +640003.318|220868.467|99.837 +640007.823|220864.176|99.588 +640016.818|220855.605|98.957 +640021.219|220851.414|99.051 +640025.706|220847.144|98.984 +640034.734|220838.536|98.076 +640039.154|220834.327|97.887 +640043.616|220830.072|97.494 +640047.938|220825.963|97.881 +640052.288|220821.827|98.131 +640056.768|220817.550|97.430 +640065.751|220808.976|96.015 +640070.076|220804.859|95.948 +640080.390|220792.401|97.634 +640072.279|220800.091|95.860 +640063.547|220808.409|96.805 +640059.447|220812.296|95.924 +640054.878|220816.657|97.250 +640050.279|220821.050|98.502 +640046.073|220825.045|97.975 +640041.787|220829.118|97.865 +640037.435|220833.257|97.875 +640033.027|220837.454|98.195 +640028.528|220841.736|98.502 +640024.112|220845.940|98.640 +640019.653|220850.185|99.042 +640015.209|220854.413|99.103 +640010.801|220858.604|99.249 +640006.250|220862.941|99.679 +640001.745|220867.227|99.862 +639988.179|220880.144|100.865 +639978.937|220888.950|101.941 +639974.341|220893.327|102.511 +639955.760|220911.027|105.083 +639951.152|220915.413|105.281 +639946.467|220919.875|105.967 +639923.183|220942.034|107.713 +639918.416|220946.579|108.479 +639913.771|220950.998|108.799 +639904.398|220959.914|109.097 +639899.774|220964.309|109.021 +639890.411|220973.209|109.061 +639885.796|220977.592|108.661 +639881.093|220982.064|108.549 +639876.475|220986.447|108.192 +639871.742|220990.948|108.320 +639862.348|220999.879|108.168 +639857.538|221004.451|108.207 +639852.823|221008.935|108.320 +639848.035|221013.491|108.625 +639843.274|221018.021|108.753 +639833.587|221027.247|109.990 +639828.820|221031.783|110.252 +639819.210|221040.927|110.713 +639814.333|221045.566|111.158 +639809.523|221050.144|111.502 +639804.701|221054.737|111.978 +639799.815|221059.391|112.609 +639795.027|221063.945|112.877 +639790.171|221068.569|113.334 +639785.355|221073.150|113.471 +639780.488|221077.786|114.102 +639770.804|221087.000|114.587 +639761.118|221096.217|115.212 +639756.280|221100.817|115.300 +639751.477|221105.383|115.132 +639746.670|221109.952|114.992 +639737.081|221119.062|114.541 +639727.455|221128.206|114.066 +639722.627|221132.793|113.770 +639703.376|221151.075|112.161 +639688.926|221164.795|110.728 +639684.088|221169.391|110.640 +639674.502|221178.486|109.082 +639669.610|221183.131|108.610 +639664.846|221187.645|107.750 +639659.945|221192.312|107.979 +639655.077|221196.936|107.808 +639650.231|221201.538|107.424 +639640.526|221210.758|106.839 +639635.680|221215.361|106.513 +639625.960|221224.584|104.970 +639621.013|221229.299|105.979 +639616.051|221234.027|106.659 +639596.294|221252.836|109.155 +639591.380|221257.506|109.344 +639586.467|221262.178|109.551 +639581.563|221266.842|109.692 +639576.564|221271.606|110.600 +639561.763|221285.688|111.999 +639556.834|221290.366|111.883 +639551.957|221295.002|111.798 +639547.041|221299.669|111.527 +639542.225|221304.216|109.393 +639537.312|221308.880|109.058 +639532.359|221313.595|109.576 +639527.464|221318.237|108.878 +639507.795|221336.891|106.083 +639502.924|221341.503|104.806 +639493.198|221350.683|100.493 +639458.448|221383.702|100.124 +639433.451|221407.492|102.779 +639428.443|221412.250|102.742 +639423.435|221417.011|102.812 +639418.467|221421.738|103.212 +639413.410|221426.545|103.373 +639408.442|221431.273|103.940 +639403.437|221436.030|103.977 +639393.455|221445.491|102.139 +639388.404|221450.292|102.248 +639373.341|221464.612|102.654 +639363.328|221474.155|104.629 +639358.281|221478.959|105.245 +639353.282|221483.717|105.708 +639348.283|221488.474|106.473 +639343.242|221493.275|107.009 +639338.201|221498.073|107.540 +639333.208|221502.824|108.143 +639323.183|221512.368|109.277 +639273.040|221560.093|114.809 +639268.008|221564.876|114.834 +639258.005|221574.392|115.422 +639252.985|221579.168|115.925 +639247.955|221583.947|116.132 +639242.981|221588.681|116.516 +639237.952|221593.463|116.644 +639232.932|221598.242|117.040 +639213.025|221617.195|119.576 +639207.996|221621.977|119.619 +639202.973|221626.753|119.899 +639198.044|221631.441|120.207 +639193.027|221636.217|120.582 +639188.056|221640.945|120.966 +639183.085|221645.675|121.366 +639178.116|221650.406|121.765 +639168.171|221659.867|122.441 +639163.209|221664.591|123.021 +639158.237|221669.319|123.420 +639153.315|221674.007|123.783 +639148.340|221678.737|124.109 +639143.415|221683.425|124.447 +639138.434|221688.158|124.697 +639133.500|221692.852|124.913 +639128.556|221697.552|124.971 +639123.655|221702.222|125.739 +639118.711|221706.922|125.806 +639103.940|221720.967|126.401 +639098.999|221725.667|126.593 +639094.086|221730.337|126.477 +639089.166|221735.009|126.358 +639084.226|221739.709|126.590 +639079.291|221744.394|126.270 +639074.377|221749.067|126.276 +639069.467|221753.733|126.361 +639059.613|221763.088|125.541 +639054.733|221767.727|125.450 +639044.897|221777.060|124.462 +639039.987|221781.723|124.100 +639025.277|221795.689|122.917 +639020.388|221800.328|122.414 +639015.481|221804.982|121.716 +639010.628|221809.594|121.661 +638995.867|221823.594|119.521 +638990.957|221828.254|118.979 +638971.318|221846.877|115.812 +638961.577|221856.125|114.995 +638952.085|221865.162|116.230 +638947.318|221869.695|116.446 +638937.784|221878.772|117.312 +638923.562|221892.302|118.372 +638918.813|221896.822|118.820 +638914.092|221901.312|119.101 +638890.674|221923.611|122.259 +638885.907|221928.143|122.243 +638881.241|221932.584|122.658 +638876.629|221936.976|123.542 +638871.947|221941.436|123.850 +638867.259|221945.895|124.139 +638857.871|221954.826|124.292 +638848.383|221963.842|123.767 +638843.625|221968.362|123.261 +638824.755|221986.296|122.338 +638805.897|222004.212|120.878 +638801.118|222008.748|120.131 +638791.657|222017.730|119.086 +638782.290|222026.627|118.458 +638772.850|222035.595|117.434 +638763.618|222044.373|117.239 +638749.679|222057.616|116.541 +638730.867|222075.475|113.947 +638726.307|222079.809|113.797 +638721.702|222084.186|113.685 +638717.099|222088.563|113.602 +638712.512|222092.922|113.352 +638707.940|222097.268|113.209 +638703.213|222101.752|112.182 +638698.699|222106.046|112.426 +638694.242|222110.289|112.727 +638689.649|222114.651|112.264 +638680.462|222123.383|111.685 +638675.872|222127.739|111.039 +638666.688|222136.459|110.094 +638662.159|222140.766|109.844 +638657.657|222145.045|109.774 +638653.177|222149.307|109.850 +638648.742|222153.528|110.176 +638644.298|222157.753|109.951 +638639.765|222162.056|109.536 +638630.847|222170.539|109.527 +638626.369|222174.794|109.198 +638621.898|222179.040|108.930 +638617.512|222183.216|109.116 +638613.239|222187.285|109.634 +638608.819|222191.488|109.679 +638600.156|222199.733|110.201 +638595.703|222203.960|109.628 +638582.816|222216.232|110.588 +638574.117|222224.501|110.390 +638569.756|222228.649|110.118 +638561.182|222236.803|110.134 +638556.881|222240.887|109.987 +638552.458|222245.087|109.271 +638547.847|222249.449|107.713 +638543.378|222253.689|106.842 +638539.151|222257.709|106.878 +638513.858|222281.767|106.589 +638509.609|222285.805|106.412 +638496.872|222297.906|105.126 +638492.553|222302.006|104.260 +638488.362|222305.986|103.760 +638484.079|222310.052|103.096 +638479.913|222314.012|102.733 +638475.807|222317.916|102.654 +638471.683|222321.836|102.294 +638467.407|222325.890|101.297 +638463.267|222329.825|100.907 +638459.012|222333.857|100.060 +638455.035|222337.646|100.161 +638442.815|222349.259|99.170 +638438.713|222353.151|98.615 +638422.104|222368.906|95.122 +638414.935|222375.761|97.740 +638411.546|222379.017|99.725 +638408.312|222382.122|102.123 +638404.919|222385.378|104.096 +638401.097|222389.017|104.153 +638397.287|222392.638|104.288 +638393.745|222396.021|105.266 +638389.734|222399.828|104.409 +638385.982|222403.398|104.385 +638382.123|222407.067|104.169 +638378.463|222410.554|104.519 +638374.729|222414.105|104.611 +638371.090|222417.571|104.650 +638367.304|222421.170|104.562 +638363.598|222424.697|104.586 +638359.897|222428.214|104.437 +638534.429|222260.071|107.695 +638538.474|222256.203|106.866 +638542.689|222252.189|106.820 +638547.194|222247.913|107.906 +638551.684|222243.648|109.207 +638556.107|222239.445|109.966 +638560.444|222235.318|110.100 +638564.729|222231.234|110.265 +638573.361|222223.013|110.432 +638586.258|222210.727|110.307 +638607.962|222190.037|109.679 +638612.367|222185.843|109.871 +638616.664|222181.740|109.268 +638621.044|222177.568|109.113 +638625.467|222173.352|109.195 +638629.972|222169.067|109.460 +638638.955|222160.511|109.929 +638643.414|222156.265|110.021 +638647.879|222152.013|110.161 +638652.271|222147.822|109.661 +638656.752|222143.552|109.658 +638661.248|222139.273|109.747 +638665.859|222134.886|110.225 +638670.416|222130.555|110.682 +638675.028|222126.169|111.216 +638679.648|222121.774|111.548 +638693.447|222108.649|112.575 +638697.909|222104.397|112.371 +638702.445|222100.078|112.319 +638707.257|222095.509|113.325 +638711.845|222091.145|113.624 +638716.444|222086.768|113.730 +638721.016|222082.412|113.681 +638725.670|222077.983|113.855 +638749.219|222055.596|116.522 +638753.877|222051.164|116.879 +638758.558|222046.711|117.092 +638763.264|222042.230|117.178 +638782.092|222024.320|118.421 +638786.880|222019.766|118.857 +638796.341|222010.769|119.674 +638801.099|222006.242|119.982 +638825.041|221983.474|122.344 +638848.941|221960.736|123.706 +638853.769|221956.145|124.130 +638858.557|221951.585|124.292 +638868.046|221942.545|123.990 +638877.528|221933.508|123.319 +638882.228|221929.021|122.493 +638886.998|221924.477|122.219 +638896.401|221915.500|120.619 +638910.687|221901.876|118.970 +638915.528|221897.267|118.982 +638920.340|221892.680|118.793 +638934.760|221878.933|117.668 +638939.512|221874.398|116.976 +638944.334|221869.798|116.507 +638953.884|221860.688|115.111 +638958.748|221856.055|115.065 +638963.634|221851.404|115.251 +638968.554|221846.728|115.775 +638973.482|221842.037|115.980 +638988.323|221827.937|118.308 +638993.307|221823.203|119.214 +638998.263|221818.491|119.881 +639027.923|221790.288|123.386 +639032.827|221785.612|123.173 +639037.759|221780.922|123.901 +639062.478|221757.397|125.886 +639067.398|221752.715|126.066 +639072.360|221747.988|126.230 +639077.267|221743.312|126.319 +639082.226|221738.591|126.480 +639087.118|221733.927|126.401 +639092.062|221729.215|126.410 +639101.925|221719.824|126.809 +639116.635|221705.794|125.895 +639121.603|221701.058|125.654 +639126.462|221696.422|125.145 +639131.384|221691.731|124.929 +639136.353|221686.991|124.740 +639141.229|221682.346|124.532 +639146.192|221677.612|124.231 +639151.102|221672.928|123.880 +639156.061|221668.197|123.520 +639160.974|221663.512|123.149 +639165.924|221658.788|122.649 +639170.835|221654.103|122.216 +639175.797|221649.373|121.932 +639180.704|221644.691|121.500 +639185.660|221639.960|121.094 +639190.619|221635.233|120.713 +639195.581|221630.499|120.411 +639200.541|221625.769|120.101 +639235.239|221592.664|116.760 +639240.204|221587.931|116.510 +639245.206|221583.155|115.900 +639255.142|221573.681|115.617 +639260.156|221568.902|115.343 +639265.116|221564.169|114.764 +639270.087|221559.432|114.669 +639295.007|221535.655|112.161 +639304.996|221526.126|111.533 +639314.987|221516.595|110.560 +639324.975|221507.055|108.896 +639335.025|221497.463|107.646 +639340.005|221492.711|107.055 +639344.986|221487.956|106.567 +639370.068|221464.005|102.748 +639375.106|221459.198|102.340 +639390.123|221444.888|102.282 +639400.124|221435.372|103.980 +639405.110|221430.614|103.964 +639410.152|221425.804|103.690 +639415.151|221421.034|103.334 +639420.146|221416.264|103.032 +639425.188|221411.454|102.879 +639430.180|221406.693|102.910 +639455.238|221382.764|100.298 +639465.275|221373.178|99.274 +639470.262|221368.426|99.743 +639475.260|221363.662|99.978 +639480.235|221358.931|100.831 +639509.846|221330.768|106.491 +639514.769|221326.080|107.235 +639519.694|221321.392|107.909 +639524.623|221316.701|108.591 +639529.524|221312.044|109.747 +639534.468|221307.316|109.091 +639539.366|221302.650|109.430 +639544.249|221298.014|110.917 +639549.123|221293.375|111.648 +639558.934|221284.020|111.999 +639578.658|221265.184|109.890 +639583.596|221260.471|109.737 +639588.442|221255.848|109.564 +639593.395|221251.117|109.228 +639598.199|221246.542|109.737 +639622.842|221222.981|105.363 +639627.685|221218.366|105.549 +639632.412|221213.870|106.589 +639637.256|221209.253|106.759 +639646.887|221200.075|107.281 +639651.667|221195.521|107.707 +639656.461|221190.953|107.982 +639661.262|221186.371|107.649 +639666.023|221181.836|108.323 +639670.753|221177.331|108.829 +639694.415|221154.797|111.377 +639703.852|221145.812|112.279 +639722.627|221127.920|113.742 +639727.297|221123.470|114.029 +639732.003|221118.986|114.431 +639746.033|221105.614|115.254 +639750.675|221101.189|115.428 +639755.348|221096.733|115.352 +639760.069|221092.221|114.852 +639769.460|221083.260|114.443 +639778.872|221074.275|113.928 +639792.905|221060.879|112.907 +639802.302|221051.902|112.008 +639806.963|221047.449|111.523 +639816.293|221038.543|110.975 +639825.568|221029.695|110.588 +639848.778|221007.530|108.786 +639853.338|221003.177|108.604 +639857.928|220998.800|108.588 +639862.491|220994.445|108.436 +639871.574|220985.782|108.503 +639880.615|220977.165|108.963 +639885.138|220972.849|108.850 +639889.667|220968.530|109.052 +639894.172|220964.236|109.113 +639907.785|220951.245|108.759 +639912.277|220946.960|108.671 +639921.461|220938.184|107.573 +639926.006|220933.844|107.208 +639935.150|220925.108|106.214 +639957.778|220903.498|104.419 +639966.861|220894.817|102.983 +639975.941|220886.143|101.962 +639984.978|220877.505|100.715 +639989.462|220873.225|100.490 +639993.967|220868.925|100.157 +639998.448|220864.639|99.688 +640007.268|220856.224|99.365 +640011.746|220851.947|98.999 +640016.092|220847.802|99.109 +640020.582|220843.513|98.719 +640025.020|220839.277|98.356 +640029.348|220835.147|98.353 +640033.774|220830.919|97.832 +640042.400|220822.692|98.329 +640051.480|220814.006|96.250 +640055.738|220809.949|96.466 +640060.011|220805.877|96.872 +640072.807|220793.672|97.274 +640076.986|220789.692|97.713 +640081.003|220783.739|97.533 +640076.784|220787.750|97.707 +640072.621|220791.706|97.634 +640056.134|220807.346|95.790 +640047.237|220815.828|97.737 +640042.884|220819.971|98.243 +640034.380|220828.048|97.972 +640030.043|220832.172|98.185 +640025.712|220836.290|98.387 +640021.335|220840.453|98.582 +640017.019|220844.556|98.749 +640012.581|220848.777|99.045 +640008.177|220852.965|99.179 +640003.803|220857.126|99.444 +639990.559|220869.720|100.215 +639986.057|220874.003|100.453 +639981.580|220878.264|100.849 +639977.087|220882.540|101.377 +639958.814|220899.950|104.333 +639954.267|220904.278|104.717 +639945.159|220912.953|105.357 +639931.452|220926.005|106.610 +639899.022|220956.884|109.173 +639889.811|220965.644|109.155 +639880.526|220974.477|109.079 +639852.567|221001.065|108.692 +639847.800|221005.600|108.832 +639843.069|221010.102|109.085 +639838.284|221014.659|109.408 +639823.925|221028.332|110.606 +639814.369|221037.427|111.054 +639809.566|221041.999|111.331 +639804.759|221046.578|111.670 +639799.934|221051.174|112.188 +639780.582|221069.602|113.776 +639756.265|221092.758|115.462 +639751.455|221097.327|115.300 +639746.597|221101.951|115.205 +639741.754|221106.553|114.974 +639732.122|221115.706|114.480 +639727.248|221120.339|114.151 +639722.432|221124.917|113.745 +639707.890|221138.731|112.548 +639693.312|221152.584|111.405 +639688.462|221157.190|110.923 +639683.625|221161.783|110.341 +639673.835|221171.083|109.423 +639669.013|221175.664|108.716 +639664.069|221180.358|108.265 +639659.244|221184.939|107.607 +639654.294|221189.648|107.838 +639649.384|221194.318|107.637 +639644.510|221198.947|107.037 +639634.638|221208.335|106.793 +639624.939|221217.534|104.949 +639614.877|221227.132|106.778 +639609.836|221231.942|107.896 +639599.842|221241.476|109.847 +639594.882|221246.198|109.993 +639589.929|221250.901|109.375 +639584.961|221255.631|109.701 +639580.005|221260.350|109.905 +639565.009|221274.648|112.060 +639560.068|221279.354|112.228 +639550.189|221288.745|111.706 +639545.221|221293.466|111.511 +639540.335|221298.096|109.887 +639535.446|221302.738|109.155 +639530.457|221307.487|109.408 +639515.628|221321.572|107.531 +639510.736|221326.217|106.842 +639505.795|221330.911|106.168 +639491.089|221344.834|101.142 +639476.187|221359.007|100.691 +639471.292|221363.656|99.883 +639466.327|221368.377|99.716 +639451.346|221382.642|100.529 +639431.424|221401.631|103.087 +639421.414|221411.156|102.995 +639416.452|221415.877|103.102 +639411.484|221420.614|103.711 +639406.476|221425.384|104.028 +639401.520|221430.096|103.986 +639396.515|221434.860|104.156 +639386.582|221444.291|102.489 +639381.583|221449.045|102.328 +639371.680|221458.461|101.660 +639341.813|221486.941|106.400 +639336.869|221491.657|107.028 +639331.876|221496.411|107.500 +639326.886|221501.169|108.271 +639307.044|221520.088|111.173 +639297.120|221529.534|111.520 +639277.256|221548.465|113.770 +639267.295|221557.951|114.264 +639252.418|221572.124|115.443 +639247.437|221576.864|115.663 +639232.557|221591.037|116.586 +639227.582|221595.773|116.976 +639217.667|221605.207|117.263 +639192.945|221628.762|120.375 +639187.983|221633.489|120.939 +639183.057|221638.177|121.289 +639178.135|221642.865|121.673 +639173.166|221647.599|122.067 +639168.244|221652.283|122.472 +639163.321|221656.971|122.883 +639158.356|221661.699|123.328 +639153.434|221666.387|123.755 +639148.462|221671.120|124.075 +639143.592|221675.759|124.535 +639133.670|221685.196|124.846 +639128.733|221689.896|124.977 +639123.807|221694.587|125.316 +639118.875|221699.281|125.614 +639113.947|221703.972|125.907 +639099.130|221718.072|126.480 +639089.264|221727.456|126.389 +639084.311|221732.166|126.465 +639069.458|221746.287|126.172 +639064.584|221750.923|126.096 +639059.665|221755.602|126.072 +639044.793|221769.729|124.706 +639039.871|221774.402|124.188 +639034.909|221779.117|123.804 +639020.096|221793.190|122.545 +639015.164|221797.875|122.094 +639010.238|221802.553|121.722 +639005.288|221807.253|121.149 +639000.323|221811.965|120.424 +638990.457|221821.335|119.299 +638985.467|221826.069|118.442 +638980.514|221830.769|117.519 +638960.800|221849.489|115.248 +638955.962|221854.089|115.178 +638951.104|221858.713|115.394 +638941.564|221867.805|116.626 +638936.754|221872.380|116.906 +638931.978|221876.931|117.488 +638917.673|221890.552|118.677 +638893.984|221913.117|121.070 +638884.612|221922.044|122.338 +638879.890|221926.540|122.688 +638875.212|221931.002|123.389 +638846.816|221958.002|123.581 +638823.045|221980.581|122.182 +638808.738|221994.163|120.585 +638785.140|222016.572|118.766 +638780.416|222021.062|118.491 +638775.719|222025.518|117.812 +638766.334|222034.430|117.214 +638747.808|222052.039|116.918 +638733.723|222065.404|114.919 +638719.971|222078.474|114.882 +638706.242|222091.526|114.568 +638701.628|222095.906|114.197 +638696.992|222100.307|113.718 +638669.444|222126.468|111.484 +638664.875|222130.802|111.002 +638660.260|222135.179|110.307 +638655.652|222139.553|109.646 +638651.156|222143.826|109.640 +638646.730|222148.033|109.762 +638642.387|222152.172|110.316 +638637.943|222156.396|110.380 +638628.884|222164.998|109.634 +638624.467|222169.195|109.625 +638620.097|222173.355|109.856 +638615.717|222177.522|110.067 +638607.033|222185.785|110.670 +638602.689|222189.915|110.856 +638563.471|222227.195|110.667 +638559.133|222231.316|110.557 +638541.339|222248.193|107.528 +638536.953|222252.354|107.067 +638532.796|222256.313|107.683 +638528.614|222260.294|107.951 +638524.404|222264.293|107.887 +638515.852|222272.419|107.427 +638511.475|222276.570|106.662 +638507.189|222280.639|106.327 +638494.299|222292.874|104.827 +638485.908|222300.841|104.224 +638481.613|222304.916|103.519 +638477.316|222308.995|102.815 +638473.146|222312.954|102.468 +638469.040|222316.855|102.407 +638464.904|222320.784|102.248 +638460.546|222324.914|101.151 +638435.796|222348.411|98.941 +638431.547|222352.438|97.801 +638427.374|222356.397|97.216 +638418.821|222364.496|94.833 +638407.836|222374.978|97.984 +638404.505|222378.178|100.417 +638401.143|222381.403|102.526 +638397.696|222384.701|104.300 +638393.861|222388.346|104.333 +638390.042|222391.980|104.437 +638386.275|222395.558|104.565 +638382.434|222399.213|104.608 +638378.597|222402.858|104.473 +638374.766|222406.497|104.388 +638371.105|222409.984|104.757 +638367.438|222413.471|104.918 +638363.625|222417.092|104.723 +638356.167|222424.182|104.623 +638512.112|222274.461|106.897 +638516.428|222270.352|107.448 +638524.956|222262.223|107.924 +638533.372|222254.188|107.491 +638537.569|222250.180|107.122 +638542.043|222245.922|108.064 +638572.901|222216.527|111.228 +638581.579|222208.243|110.993 +638590.369|222199.858|111.121 +638594.749|222195.682|111.136 +638603.604|222187.230|110.944 +638607.990|222183.045|110.789 +638612.336|222178.894|110.451 +638616.732|222174.696|110.115 +638621.185|222170.448|110.094 +638625.571|222166.257|109.750 +638634.590|222157.661|110.121 +638639.180|222153.284|110.374 +638643.557|222149.102|109.780 +638648.013|222144.847|109.622 +638652.539|222140.525|109.597 +638657.160|222136.124|110.103 +638661.842|222131.665|110.981 +638666.445|222127.279|111.444 +638671.090|222122.850|111.883 +638675.732|222118.424|112.346 +638694.264|222100.758|113.941 +638698.942|222096.302|114.443 +638717.538|222078.559|115.193 +638722.189|222074.124|115.364 +638726.798|222069.726|115.309 +638736.207|222060.756|116.147 +638740.929|222056.254|116.550 +638745.680|222051.722|116.879 +638764.414|222033.845|116.958 +638773.911|222024.792|117.827 +638783.433|222015.706|118.342 +638792.946|222006.639|118.866 +638797.722|222002.082|119.323 +638802.456|221997.571|119.488 +638807.317|221992.938|120.256 +638821.795|221979.142|121.984 +638836.161|221965.439|122.460 +638841.019|221960.809|123.072 +638845.878|221956.182|123.709 +638879.278|221924.284|122.377 +638884.124|221919.658|122.380 +638907.901|221896.923|119.198 +638912.736|221892.302|118.753 +638917.554|221887.699|118.641 +638922.419|221883.057|118.488 +638927.226|221878.461|117.863 +638932.005|221873.892|117.440 +638941.658|221864.669|116.598 +638946.578|221859.975|116.608 +638951.281|221855.464|115.053 +638956.176|221850.797|115.306 +638970.937|221836.718|116.138 +638980.929|221827.209|118.049 +638985.872|221822.496|118.549 +638995.797|221813.044|120.049 +639000.722|221808.351|120.463 +639005.730|221803.583|121.295 +639010.638|221798.905|121.573 +639015.612|221794.168|122.140 +639050.335|221761.100|125.898 +639055.276|221756.385|125.727 +639060.192|221751.697|125.919 +639065.154|221746.967|126.090 +639070.144|221742.215|126.666 +639079.983|221732.830|126.611 +639084.917|221728.121|126.480 +639094.802|221718.693|126.578 +639099.682|221714.039|126.379 +639104.608|221709.336|126.212 +639109.524|221704.642|125.916 +639114.447|221699.945|125.749 +639119.369|221695.248|125.553 +639129.196|221685.863|124.926 +639139.041|221676.472|124.621 +639218.042|221601.013|117.059 +639232.886|221586.846|116.373 +639247.772|221572.633|115.455 +639252.735|221567.896|115.123 +639262.662|221558.420|114.523 +639267.621|221553.680|114.059 +639277.548|221544.201|113.364 +639312.268|221511.039|110.131 +639322.159|221501.575|107.713 +639327.136|221496.826|107.790 +639332.114|221492.074|107.235 +639342.069|221482.561|106.183 +639361.963|221463.539|102.712 +639366.956|221458.766|101.883 +639376.929|221449.256|102.148 +639381.909|221444.519|102.800 +639396.799|221430.349|104.473 +639401.794|221425.582|104.010 +639416.684|221411.381|103.151 +639421.628|221406.666|103.068 +639426.620|221401.908|103.111 +639461.374|221368.737|99.502 +639466.318|221364.030|99.868 +639476.160|221354.661|100.615 +639481.076|221349.991|101.715 +639490.912|221340.625|102.504 +639500.656|221331.377|105.437 +639505.570|221326.708|106.439 +639515.339|221317.411|107.534 +639520.200|221312.793|108.610 +639530.021|221303.445|109.579 +639534.904|221298.788|109.253 +639539.768|221294.161|110.149 +639549.507|221284.901|111.813 +639564.152|221270.947|112.023 +639574.007|221261.532|110.326 +639578.905|221256.860|110.030 +639583.800|221252.190|109.820 +639588.695|221247.520|109.618 +639598.427|221238.255|110.213 +639613.241|221224.093|106.951 +639623.043|221214.733|105.644 +639627.828|221210.182|106.543 +639632.656|221205.586|106.884 +639642.306|221196.390|107.144 +639651.950|221187.203|107.549 +639656.769|221182.613|107.555 +639661.530|221178.084|108.229 +639666.319|221173.524|108.613 +639671.104|221168.967|109.009 +639699.615|221141.831|111.920 +639704.361|221137.317|112.350 +639718.519|221123.835|113.511 +639727.934|221114.871|114.288 +639742.004|221101.469|115.145 +639746.743|221096.958|115.330 +639751.398|221092.523|115.416 +639756.119|221088.021|115.361 +639760.880|221083.480|114.977 +639779.774|221065.457|113.794 +639784.514|221060.928|112.932 +639793.902|221051.973|112.468 +639798.587|221047.504|112.167 +639803.299|221043.005|111.642 +639807.987|221038.534|111.377 +639812.708|221034.026|110.865 +639817.350|221029.600|110.633 +639821.950|221025.217|110.737 +639835.937|221011.873|109.771 +639840.582|221007.441|109.283 +639845.200|221003.037|109.018 +639849.796|220998.651|108.927 +639854.377|220994.286|108.978 +639858.888|220989.991|109.213 +639872.583|220976.940|109.195 +639886.122|220964.038|109.423 +639895.175|220955.409|109.274 +639899.674|220951.114|109.073 +639908.778|220942.430|108.402 +639926.880|220925.154|106.784 +639940.410|220912.240|105.342 +639967.376|220886.496|102.276 +639976.346|220877.931|101.087 +639980.748|220873.731|100.718 +639993.943|220861.143|99.834 +639998.344|220856.946|99.572 +640002.666|220852.825|99.490 +640007.019|220848.674|99.255 +640011.392|220844.498|98.917 +640015.669|220840.423|98.883 +640020.058|220836.232|98.499 +640024.350|220832.141|98.408 +640028.644|220828.048|98.332 +640032.899|220823.994|98.475 +640037.127|220819.964|98.512 +640041.321|220815.969|98.740 +640045.893|220811.589|96.988 +640050.364|220807.312|95.820 +640054.564|220803.307|95.811 +640062.873|220795.398|96.597 +640066.921|220791.551|97.423 +640070.999|220787.671|97.853 +640075.212|220783.654|97.853 +640079.384|220779.676|97.832 +640080.436|220776.728|97.829 +640076.224|220780.737|97.716 +640071.981|220784.772|97.780 +640067.720|220788.823|97.686 +640063.644|220792.691|96.924 +640055.302|220800.616|95.893 +640050.962|220804.746|96.268 +640046.643|220808.858|96.302 +640042.138|220813.155|97.332 +640037.541|220817.550|98.886 +640033.323|220821.555|98.438 +640024.718|220829.739|98.246 +640020.335|220833.912|98.478 +640015.971|220838.067|98.624 +640011.594|220842.230|98.588 +640002.846|220850.557|99.085 +639994.013|220858.967|99.600 +639989.547|220863.219|99.874 +639971.625|220880.294|101.605 +639962.475|220889.017|103.154 +639948.933|220901.916|104.589 +639939.969|220910.448|104.998 +639935.390|220914.806|105.674 +639908.047|220940.833|108.283 +639898.909|220949.532|109.000 +639889.753|220958.243|109.603 +639885.324|220962.450|109.271 +639880.749|220966.799|109.265 +639876.171|220971.152|109.326 +639871.666|220975.431|109.219 +639862.497|220984.148|109.177 +639857.901|220988.516|109.085 +639853.305|220992.887|109.039 +639848.705|220997.255|109.003 +639844.148|221001.589|109.058 +639839.467|221006.045|109.341 +639834.773|221010.514|109.737 +639825.491|221019.338|109.804 +639820.767|221023.836|110.509 +639806.691|221037.229|111.331 +639797.206|221046.258|112.182 +639792.482|221050.753|112.322 +639783.027|221059.754|113.115 +639778.205|221064.344|113.721 +639773.489|221068.831|113.901 +639763.989|221077.868|114.501 +639759.200|221082.428|114.977 +639754.391|221087.006|115.266 +639749.654|221091.508|115.315 +639744.896|221096.031|115.193 +639740.190|221100.503|115.023 +639721.152|221118.587|113.867 +639716.391|221123.107|113.407 +639711.600|221127.664|113.282 +639697.283|221141.255|111.859 +639692.510|221145.784|111.100 +639687.716|221150.335|110.566 +639682.894|221154.916|110.341 +639678.029|221159.540|110.088 +639673.259|221164.063|109.308 +639668.431|221168.644|108.646 +639663.569|221173.262|108.384 +639658.763|221177.831|108.082 +639653.892|221182.452|107.390 +639649.012|221187.091|107.412 +639644.089|221191.772|107.396 +639639.246|221196.372|106.985 +639634.324|221201.051|107.006 +639624.591|221210.289|105.684 +639614.679|221219.726|106.747 +639604.636|221229.306|109.189 +639599.616|221234.094|110.164 +639589.762|221243.467|110.295 +639584.800|221248.179|109.817 +639579.853|221252.882|109.862 +639574.851|221257.640|110.064 +639544.962|221286.081|111.588 +639540.024|221290.766|110.908 +639535.126|221295.408|109.500 +639530.121|221300.160|109.155 +639525.187|221304.853|109.314 +639520.179|221309.614|109.070 +639500.348|221328.424|105.821 +639475.510|221351.976|100.688 +639470.551|221356.685|100.365 +639455.616|221370.858|98.222 +639450.492|221375.756|100.170 +639445.454|221380.560|100.987 +639420.351|221404.456|103.215 +639415.349|221409.214|103.154 +639410.341|221413.975|103.297 +639405.281|221418.794|103.803 +639400.276|221423.555|103.964 +639360.198|221461.643|102.059 +639355.193|221466.413|102.962 +639340.148|221480.757|105.976 +639325.170|221495.019|107.509 +639300.204|221518.808|111.325 +639295.269|221523.508|111.664 +639285.303|221532.991|112.167 +639280.322|221537.733|112.505 +639275.348|221542.470|113.124 +639260.419|221556.686|114.419 +639245.532|221570.850|115.257 +639240.597|221575.544|115.410 +639235.632|221580.274|116.102 +639230.652|221585.011|116.284 +639220.743|221594.441|116.699 +639210.852|221603.866|117.653 +639196.014|221618.012|119.607 +639171.429|221641.442|122.143 +639151.736|221660.202|123.475 +639146.856|221664.847|123.780 +639141.924|221669.544|123.981 +639122.304|221688.229|125.093 +639117.388|221692.916|125.557 +639107.613|221702.225|125.983 +639102.684|221706.919|126.322 +639097.789|221711.576|126.456 +639092.851|221716.279|126.660 +639083.034|221725.622|126.581 +639073.225|221734.958|126.730 +639068.312|221739.633|126.678 +639063.377|221744.324|126.425 +639058.470|221748.988|125.895 +639053.493|221753.724|125.706 +639048.607|221758.369|125.541 +639043.644|221763.088|125.029 +639038.740|221767.748|124.679 +639028.804|221777.185|123.136 +639004.179|221800.590|121.109 +638999.192|221805.324|120.134 +638994.282|221809.996|120.024 +638989.381|221814.654|119.543 +638984.394|221819.387|118.677 +638979.487|221824.051|118.202 +638969.553|221833.478|116.138 +638954.850|221847.459|115.337 +638949.961|221852.111|115.245 +638940.393|221861.233|116.647 +638935.580|221865.818|116.864 +638930.777|221870.399|117.610 +638925.955|221874.992|117.757 +638921.145|221879.570|118.061 +638916.357|221884.133|118.549 +638911.577|221888.684|118.723 +638906.768|221893.265|119.061 +638883.109|221915.826|122.557 +638878.339|221920.368|122.484 +638873.563|221924.915|122.798 +638868.917|221929.347|123.770 +638854.668|221942.917|124.292 +638845.073|221952.046|123.633 +638835.423|221961.223|122.697 +638825.831|221970.349|121.935 +638811.514|221983.967|120.838 +638806.738|221988.509|120.396 +638787.636|222006.675|118.546 +638778.114|222015.734|117.812 +638754.736|222037.993|117.467 +638750.033|222042.465|117.181 +638745.345|222046.927|116.998 +638740.700|222051.350|116.790 +638736.040|222055.785|116.528 +638726.545|222064.810|115.297 +638722.055|222069.092|115.855 +638703.588|222086.676|115.422 +638699.009|222091.032|115.245 +638694.395|222095.421|114.876 +638689.771|222099.819|114.477 +638684.949|222104.397|113.246 +638680.471|222108.661|113.453 +638675.814|222113.090|112.935 +638662.043|222126.187|111.847 +638657.392|222130.610|111.185 +638652.658|222135.103|110.115 +638648.031|222139.501|109.381 +638643.554|222143.765|109.478 +638639.107|222148.005|109.759 +638634.672|222152.233|110.118 +638625.738|222160.740|110.009 +638621.325|222164.946|110.274 +638616.878|222169.183|110.365 +638612.522|222173.334|110.697 +638608.087|222177.562|110.877 +638603.747|222181.695|111.066 +638590.516|222194.298|111.139 +638581.747|222202.650|111.203 +638568.640|222215.128|111.173 +638559.929|222223.422|110.957 +638555.503|222227.631|110.417 +638533.271|222248.760|107.150 +638520.594|222260.839|107.832 +638511.917|222269.093|107.025 +638507.570|222273.223|106.397 +638503.306|222277.280|106.144 +638498.966|222281.404|105.580 +638494.601|222285.552|104.934 +638473.222|222305.877|102.818 +638468.964|222309.924|102.306 +638464.813|222313.878|102.276 +638456.428|222321.848|101.468 +638452.051|222326.003|100.316 +638447.918|222329.934|100.212 +638422.750|222353.849|96.494 +638414.277|222361.890|94.650 +638410.305|222365.669|94.519 +638403.146|222372.527|97.625 +638399.814|222375.728|99.856 +638393.014|222382.257|104.175 +638389.149|222385.939|104.300 +638385.339|222389.569|104.443 +638381.489|222393.235|104.647 +638377.673|222396.866|104.592 +638373.812|222400.542|104.574 +638369.953|222404.214|104.367 +638366.195|222407.796|104.775 +638362.442|222411.368|104.809 +638358.684|222414.946|104.827 +638354.905|222418.543|104.784 +638351.150|222422.121|104.833 +638497.978|222280.615|105.781 +638502.294|222276.503|106.068 +638510.880|222268.331|106.948 +638515.248|222264.177|107.515 +638519.537|222260.089|107.768 +638523.877|222255.959|108.018 +638528.007|222252.015|107.573 +638532.186|222248.025|107.122 +638554.446|222226.857|110.576 +638558.832|222222.678|110.990 +638563.239|222218.481|111.264 +638567.582|222214.342|111.267 +638576.330|222206.006|111.356 +638585.169|222197.584|111.737 +638589.437|222193.509|111.191 +638602.665|222180.899|111.024 +638611.501|222172.474|110.838 +638615.854|222168.320|110.563 +638620.343|222164.041|110.493 +638624.812|222159.780|110.326 +638629.222|222155.573|110.149 +638633.688|222151.315|109.993 +638638.165|222147.042|109.670 +638642.649|222142.763|109.390 +638647.117|222138.501|109.308 +638651.851|222133.999|110.417 +638656.654|222129.437|111.673 +638670.477|222116.266|112.654 +638679.746|222107.436|113.560 +638684.400|222103.004|113.867 +638703.085|222085.210|115.779 +638712.402|222076.325|116.169 +638726.201|222063.158|115.538 +638730.867|222058.714|115.870 +638735.643|222054.166|116.614 +638740.322|222049.710|116.766 +638745.068|222045.187|117.071 +638749.740|222040.734|117.235 +638754.459|222036.235|117.421 +638778.032|222013.759|117.888 +638787.618|222004.627|118.552 +638792.348|222000.116|118.677 +638802.005|221990.920|119.680 +638806.814|221986.345|120.424 +638821.262|221972.577|121.305 +638830.869|221963.424|121.939 +638835.758|221958.773|122.768 +638840.580|221954.176|123.133 +638845.439|221949.552|123.789 +638850.273|221944.944|123.932 +638874.130|221922.181|122.911 +638878.878|221917.646|122.518 +638888.361|221908.584|121.204 +638893.116|221904.043|120.475 +638902.674|221894.914|119.461 +638907.478|221890.327|119.183 +638912.260|221885.761|118.750 +638917.097|221881.143|118.360 +638921.962|221876.501|118.257 +638936.419|221862.693|116.754 +638941.332|221858.009|116.696 +638946.142|221853.415|116.156 +638950.982|221848.791|115.437 +638955.837|221844.158|115.355 +638965.716|221834.746|115.961 +638975.726|221825.221|117.580 +638980.700|221820.488|118.369 +638985.656|221815.769|119.019 +638990.664|221811.002|119.747 +638995.599|221806.302|120.265 +639005.520|221796.853|121.420 +639010.510|221792.092|121.603 +639025.430|221777.883|123.365 +639045.287|221758.961|125.313 +639050.259|221754.218|125.529 +639055.187|221749.521|125.819 +639060.171|221744.772|126.258 +639065.200|221739.978|126.754 +639070.101|221735.302|126.791 +639084.975|221721.110|126.788 +639119.668|221687.991|125.273 +639124.587|221683.294|125.057 +639139.452|221669.093|123.847 +639144.430|221664.347|123.862 +639149.383|221659.614|123.453 +639154.339|221654.883|123.051 +639159.301|221650.144|122.874 +639189.059|221621.715|120.067 +639198.968|221612.248|119.247 +639213.842|221598.023|116.754 +639228.786|221583.758|116.260 +639233.797|221578.976|116.019 +639238.747|221574.239|115.315 +639243.758|221569.457|115.035 +639258.703|221555.189|114.376 +639273.684|221540.879|113.185 +639283.611|221531.393|112.097 +639288.622|221526.605|111.463 +639293.593|221521.859|111.167 +639303.530|221512.368|110.533 +639323.412|221493.354|107.296 +639353.255|221464.822|102.940 +639358.299|221459.985|100.974 +639368.217|221450.539|102.279 +639373.201|221445.787|102.593 +639378.169|221441.066|104.150 +639383.101|221436.363|104.501 +639388.084|221431.608|104.623 +639393.022|221426.896|104.629 +639398.012|221422.132|104.477 +639403.010|221417.352|103.779 +639407.912|221412.671|103.428 +639412.901|221407.907|103.391 +639417.842|221403.191|103.468 +639462.343|221360.669|99.773 +639477.059|221346.645|101.374 +639486.788|221337.376|102.504 +639496.481|221328.165|105.528 +639520.709|221305.085|109.262 +639525.601|221300.422|109.625 +639530.484|221295.758|109.277 +639535.379|221291.092|109.652 +639540.158|221286.550|111.228 +639544.944|221281.987|111.816 +639569.395|221258.633|110.280 +639579.042|221249.425|110.469 +639583.913|221244.780|110.649 +639603.362|221226.200|109.259 +639608.318|221221.448|107.698 +639613.177|221216.803|106.942 +639618.120|221212.066|105.702 +639622.900|221207.509|106.058 +639632.431|221198.423|107.113 +639637.271|221193.808|107.357 +639642.026|221189.273|107.482 +639646.903|221184.616|107.296 +639651.652|221180.086|107.534 +639656.431|221175.530|107.991 +639661.180|221171.000|108.253 +639666.020|221166.383|108.573 +639670.708|221161.914|109.021 +639675.481|221157.367|109.591 +639680.227|221152.843|109.960 +639685.000|221148.293|110.530 +639689.770|221143.742|110.682 +639694.473|221139.264|111.523 +639699.225|221134.732|111.871 +639713.398|221121.223|113.340 +639718.104|221116.737|113.721 +639727.519|221107.757|114.480 +639736.980|221098.735|114.888 +639741.699|221094.236|115.227 +639746.399|221089.753|115.309 +639751.093|221085.278|115.498 +639755.906|221080.679|115.053 +639760.584|221076.213|114.968 +639779.558|221058.087|113.532 +639784.331|221053.527|113.209 +639789.022|221049.046|112.801 +639793.774|221044.508|112.310 +639798.517|221039.976|111.929 +639817.280|221022.053|110.777 +639821.986|221017.558|110.448 +639826.683|221013.074|110.228 +639836.059|221004.119|109.609 +639840.725|220999.663|109.338 +639845.377|220995.219|109.170 +639859.135|220982.097|109.573 +639877.408|220964.659|109.725 +639895.623|220947.271|109.292 +639904.801|220938.501|108.424 +639918.471|220925.441|107.323 +639927.575|220916.739|106.247 +639932.108|220912.404|105.720 +639941.096|220903.818|104.915 +639972.622|220873.679|101.176 +639981.507|220865.191|100.282 +639985.896|220860.997|100.017 +639990.346|220856.748|99.737 +639994.723|220852.566|99.584 +639999.088|220848.396|99.252 +640003.422|220844.257|99.109 +640007.774|220840.100|98.890 +640012.051|220836.018|98.832 +640016.330|220831.934|98.783 +640020.649|220827.810|98.539 +640029.141|220819.705|98.874 +640033.308|220815.734|99.222 +640038.218|220811.000|95.640 +640042.269|220807.145|96.393 +640046.451|220803.155|96.460 +640050.693|220799.101|96.210 +640054.903|220795.081|95.909 +640058.859|220791.319|97.195 +640062.928|220787.442|97.646 +640067.031|220783.532|97.929 +640071.133|220779.612|97.960 +640075.269|220775.671|98.103 +640079.348|220771.782|98.295 +640077.391|220771.343|98.289 +640073.127|220775.403|98.185 +640068.951|220779.380|97.923 +640064.696|220783.431|97.801 +640060.502|220787.424|97.646 +640056.290|220791.429|97.082 +640052.224|220795.291|96.034 +640047.871|220799.439|96.216 +640043.488|220803.618|96.326 +640039.190|220807.708|96.256 +640030.010|220816.490|98.786 +640021.359|220824.722|98.304 +640016.976|220828.901|98.536 +640012.493|220833.174|98.786 +640008.067|220837.390|98.743 +640003.632|220841.621|99.054 +639999.216|220845.833|99.289 +639994.763|220850.076|99.466 +639990.242|220854.386|99.755 +639985.798|220858.622|99.926 +639981.339|220862.874|100.206 +639976.801|220867.205|100.679 +639972.256|220871.540|101.203 +639953.907|220889.057|103.754 +639940.264|220902.066|104.702 +639935.656|220906.464|105.251 +639931.010|220910.896|105.735 +639926.408|220915.288|106.305 +639921.851|220919.634|106.613 +639917.224|220924.048|107.070 +639903.328|220937.307|108.719 +639898.680|220941.741|109.106 +639889.527|220950.468|109.369 +639884.928|220954.851|109.515 +639875.744|220963.602|109.765 +639843.612|220994.210|109.231 +639838.988|220998.617|109.445 +639834.364|221003.028|109.682 +639825.065|221011.891|110.231 +639820.340|221016.399|110.573 +639815.680|221020.846|110.838 +639811.038|221025.266|110.950 +639806.335|221029.753|111.213 +639787.544|221047.675|112.737 +639782.792|221052.210|113.163 +639778.089|221056.694|113.587 +639763.949|221070.181|114.535 +639759.225|221074.686|114.852 +639754.525|221079.164|114.992 +639749.749|221083.724|115.431 +639745.085|221088.165|115.300 +639740.373|221092.651|115.184 +639735.688|221097.110|114.864 +639730.997|221101.576|114.596 +639726.309|221106.041|114.328 +639716.900|221114.996|113.688 +639712.225|221119.446|113.340 +639698.106|221132.879|111.892 +639693.412|221137.341|111.280 +639688.660|221141.864|110.807 +639679.202|221150.865|109.926 +639674.463|221155.373|109.356 +639669.711|221159.896|108.936 +639664.962|221164.414|108.482 +639660.128|221169.019|108.463 +639655.376|221173.539|108.058 +639650.588|221178.096|107.570 +639645.781|221182.671|107.290 +639640.880|221187.347|107.610 +639636.110|221191.891|107.518 +639631.212|221196.555|107.272 +639626.414|221201.121|106.948 +639621.620|221205.677|105.994 +639616.755|221210.313|105.985 +639606.861|221219.759|107.585 +639572.364|221252.659|110.545 +639567.484|221257.305|110.353 +639562.455|221262.102|111.100 +639542.737|221280.884|111.764 +639537.805|221285.569|110.938 +639532.956|221290.168|109.542 +639527.994|221294.890|109.277 +639523.007|221299.641|109.542 +639503.256|221318.411|106.790 +639498.270|221323.151|106.122 +639483.447|221337.205|101.706 +639478.464|221341.957|102.041 +639453.482|221365.686|97.622 +639443.314|221375.403|100.535 +639418.104|221399.445|103.440 +639413.051|221404.258|103.544 +639408.003|221409.065|103.489 +639397.935|221418.663|104.391 +639392.885|221423.473|104.620 +639387.837|221428.279|104.650 +639382.796|221433.080|104.544 +639372.768|221442.608|103.013 +639367.727|221447.403|102.541 +639347.491|221466.678|103.172 +639332.361|221481.126|106.357 +639322.284|221490.730|107.162 +639312.219|221500.337|109.085 +639282.047|221529.107|111.953 +639277.021|221533.896|112.444 +639271.995|221538.687|112.822 +639251.948|221557.795|114.285 +639241.951|221567.323|115.071 +639236.970|221572.069|115.209 +639231.956|221576.851|115.830 +639217.027|221591.073|116.617 +639211.998|221595.865|116.644 +639192.201|221614.738|119.293 +639187.230|221619.475|119.653 +639162.556|221642.987|122.213 +639157.591|221647.718|122.640 +639152.675|221652.402|123.100 +639147.743|221657.096|123.313 +639137.934|221666.435|123.798 +639133.000|221671.132|123.953 +639123.225|221680.450|125.096 +639118.284|221685.153|125.163 +639113.456|221689.753|125.553 +639108.527|221694.447|125.846 +639103.641|221699.098|126.108 +639098.807|221703.700|126.422 +639093.924|221708.352|126.721 +639089.023|221713.015|126.745 +639079.254|221722.311|126.648 +639059.747|221740.874|126.547 +639054.855|221745.525|126.224 +639049.954|221750.182|125.819 +639045.043|221754.846|125.331 +639040.185|221759.467|124.913 +639035.247|221764.161|124.758 +639030.358|221768.806|124.023 +639025.433|221773.487|123.481 +639020.568|221778.111|123.142 +639005.858|221792.086|121.576 +639000.927|221796.774|121.140 +638986.269|221810.701|119.506 +638981.304|221815.419|118.878 +638976.418|221820.058|118.116 +638966.548|221829.424|116.202 +638961.650|221834.079|115.943 +638956.782|221838.706|115.526 +638937.598|221856.978|116.839 +638932.785|221861.560|117.046 +638928.055|221866.077|118.013 +638908.959|221884.261|119.134 +638899.434|221893.332|119.781 +638894.710|221897.837|120.457 +638889.943|221902.375|120.783 +638885.270|221906.829|121.503 +638875.794|221915.863|122.667 +638871.027|221920.404|123.036 +638852.120|221938.412|124.389 +638847.258|221943.030|123.734 +638842.424|221947.623|123.344 +638837.645|221952.168|122.999 +638828.016|221961.312|121.926 +638818.357|221970.483|120.747 +638780.196|222006.748|117.818 +638775.447|222011.259|117.382 +638742.687|222042.419|117.232 +638737.993|222046.884|117.022 +638728.621|222055.791|116.492 +638696.202|222086.624|116.303 +638691.621|222090.980|116.114 +638672.739|222108.899|112.718 +638668.209|222113.212|112.935 +638654.573|222126.181|112.904 +638649.802|222130.705|111.624 +638645.011|222135.240|109.990 +638635.943|222143.860|109.597 +638631.508|222148.084|109.954 +638627.064|222152.312|110.286 +638622.657|222156.509|110.545 +638618.246|222160.709|110.810 +638600.534|222177.562|111.423 +638569.756|222206.844|111.880 +638560.947|222215.217|111.402 +638529.775|222244.813|107.336 +638508.256|222265.271|106.717 +638499.682|222273.418|106.235 +638495.372|222277.515|105.799 +638473.811|222298.004|103.224 +638461.113|222310.074|102.242 +638448.354|222322.196|100.734 +638444.147|222326.192|100.331 +638440.036|222330.105|100.331 +638435.921|222334.016|100.121 +638427.380|222342.123|98.457 +638418.794|222350.265|96.287 +638414.438|222354.392|94.979 +638395.407|222372.552|98.905 +638392.084|222375.743|101.166 +638388.649|222379.038|103.190 +638385.053|222382.473|104.373 +638381.191|222386.149|104.519 +638377.326|222389.831|104.669 +638373.516|222393.458|104.830 +638369.651|222397.134|104.809 +638365.740|222400.852|104.601 +638361.940|222404.470|104.641 +638358.224|222408.009|105.022 +638354.399|222411.648|104.995 +638350.558|222415.300|104.918 +638487.776|222282.440|104.650 +638492.144|222278.280|105.379 +638496.427|222274.199|105.735 +638500.724|222270.102|106.189 +638509.390|222261.842|107.015 +638526.602|222245.422|107.643 +638530.802|222241.408|107.320 +638535.292|222237.129|107.881 +638539.980|222232.679|109.628 +638544.533|222228.344|110.548 +638548.877|222224.205|110.719 +638557.676|222215.811|111.210 +638562.114|222211.577|111.429 +638566.595|222207.307|111.865 +638570.996|222203.107|111.947 +638579.753|222194.749|111.923 +638593.003|222182.100|111.600 +638615.125|222160.974|111.018 +638619.557|222156.741|110.670 +638623.961|222152.534|110.457 +638628.357|222148.334|109.954 +638632.825|222144.070|109.567 +638637.263|222139.833|109.314 +638641.920|222135.399|109.981 +638646.782|222130.784|111.508 +638669.840|222108.814|113.072 +638684.062|222095.281|115.501 +638688.783|222090.788|116.254 +638693.459|222086.332|116.507 +638698.168|222081.848|116.955 +638712.052|222068.608|117.034 +638721.284|222059.793|116.467 +638725.948|222055.349|116.480 +638730.693|222050.826|117.046 +638740.063|222041.892|117.174 +638782.473|222001.454|117.723 +638787.283|221996.876|118.369 +638792.102|221992.282|118.796 +638796.911|221987.701|119.180 +638801.739|221983.105|119.723 +638806.552|221978.518|120.192 +638811.374|221973.924|120.393 +638816.132|221969.389|120.518 +638820.917|221964.823|120.524 +638825.880|221960.108|121.841 +638835.609|221950.842|122.795 +638840.437|221946.242|123.225 +638845.298|221941.612|123.575 +638850.181|221936.961|124.115 +638864.556|221923.248|123.770 +638869.253|221918.755|122.963 +638874.059|221914.171|122.621 +638883.594|221905.064|121.777 +638888.315|221900.550|120.774 +638893.122|221895.959|120.509 +638897.941|221891.360|119.936 +638907.557|221882.173|119.089 +638931.612|221859.207|117.074 +638936.498|221854.543|116.800 +638941.369|221849.898|116.827 +638985.778|221807.576|119.363 +638990.768|221802.824|119.951 +638995.763|221798.073|120.622 +639015.603|221779.181|122.682 +639020.617|221774.408|123.258 +639030.541|221764.959|124.398 +639035.512|221760.219|124.560 +639040.505|221755.465|124.996 +639050.460|221745.988|126.251 +639060.387|221736.527|126.654 +639065.337|221731.809|126.700 +639075.237|221722.369|126.913 +639080.166|221717.669|126.748 +639085.116|221712.951|126.892 +639090.096|221708.202|126.828 +639095.015|221703.508|126.581 +639099.978|221698.769|126.303 +639104.940|221694.035|126.002 +639109.853|221689.344|125.657 +639114.809|221684.614|125.267 +639119.784|221679.871|125.206 +639129.665|221670.428|123.944 +639134.624|221665.698|123.618 +639139.599|221660.952|123.606 +639149.560|221651.445|122.938 +639154.516|221646.718|122.548 +639159.481|221641.978|122.417 +639164.425|221637.257|121.804 +639179.332|221623.026|120.600 +639189.269|221613.534|119.302 +639209.108|221594.585|116.781 +639219.066|221585.075|115.897 +639229.049|221575.553|115.672 +639234.005|221570.819|115.202 +639238.967|221566.086|114.831 +639243.978|221561.304|114.690 +639248.986|221556.521|114.294 +639253.948|221551.788|113.837 +639268.892|221537.529|113.169 +639278.902|221527.961|111.624 +639283.870|221523.219|111.301 +639288.881|221518.433|110.768 +639293.901|221513.648|110.719 +639308.806|221499.414|109.280 +639313.777|221494.665|108.594 +639328.749|221480.361|106.424 +639343.693|221466.066|103.102 +639348.683|221461.286|101.401 +639353.617|221456.589|102.151 +639358.598|221451.844|102.587 +639363.581|221447.095|102.840 +639368.507|221442.407|103.900 +639383.357|221428.249|104.577 +639388.340|221423.497|104.614 +639393.275|221418.785|104.605 +639398.225|221414.054|103.958 +639403.169|221409.336|103.690 +639408.110|221404.624|103.727 +639413.054|221399.906|103.599 +639427.885|221385.751|103.370 +639452.623|221362.089|98.765 +639462.383|221352.799|100.362 +639467.272|221348.141|100.904 +639481.902|221334.197|102.093 +639491.543|221325.040|105.181 +639496.365|221320.450|106.034 +639515.668|221302.074|109.070 +639520.465|221297.499|109.384 +639525.318|221292.872|109.594 +639530.143|221288.266|109.411 +639534.959|221283.682|110.329 +639539.704|221279.171|111.627 +639559.074|221260.685|110.990 +639563.930|221256.043|110.493 +639568.737|221251.462|110.841 +639578.307|221242.339|111.459 +639602.539|221219.183|108.698 +639607.413|221214.520|107.668 +639626.606|221196.201|107.268 +639631.394|221191.638|107.528 +639636.140|221187.112|107.717 +639640.947|221182.519|107.192 +639645.702|221177.986|107.348 +639650.420|221173.487|107.912 +639664.682|221159.890|108.543 +639669.376|221155.416|108.902 +639674.079|221150.932|109.167 +639678.800|221146.436|109.807 +639683.476|221141.980|110.393 +639688.161|221137.518|110.917 +639692.858|221133.043|111.325 +639697.542|221128.581|111.865 +639702.212|221124.134|112.554 +639706.921|221119.644|112.868 +639711.612|221115.176|113.386 +639716.269|221110.738|113.767 +639720.972|221106.255|114.184 +639725.651|221101.789|114.386 +639730.378|221097.278|114.611 +639735.008|221092.859|114.843 +639739.718|221088.366|115.269 +639744.363|221083.934|115.413 +639749.075|221079.432|115.401 +639753.805|221074.915|115.257 +639763.209|221065.926|114.706 +639767.985|221061.354|113.846 +639777.385|221052.375|113.511 +639782.137|221047.830|112.956 +639791.521|221038.857|112.127 +639796.234|221034.358|111.987 +639800.943|221029.853|111.499 +639805.576|221025.427|111.280 +639810.270|221020.938|110.969 +639814.897|221016.521|110.856 +639819.612|221012.010|110.438 +639824.245|221007.588|110.332 +639828.917|221003.122|109.942 +639833.566|220998.678|109.753 +639838.223|220994.228|109.524 +639856.566|220976.717|109.865 +639879.423|220954.887|109.801 +639893.145|220941.778|109.250 +639897.766|220937.358|108.899 +639906.928|220928.595|107.872 +639911.467|220924.258|107.518 +639916.069|220919.857|107.080 +639925.164|220911.158|106.065 +639934.305|220902.413|104.867 +639938.765|220898.149|104.541 +639943.306|220893.808|104.050 +639947.781|220889.529|103.672 +639952.249|220885.262|103.660 +639965.791|220872.302|101.493 +639970.232|220868.053|101.145 +639974.768|220863.716|100.578 +639983.546|220855.324|100.045 +639992.403|220846.854|99.149 +639996.728|220842.727|99.322 +640001.041|220838.606|99.301 +640005.406|220834.436|99.018 +640009.731|220830.306|98.966 +640014.029|220826.198|98.804 +640022.667|220817.941|98.307 +640031.384|220809.601|97.213 +640035.694|220805.480|96.829 +640039.980|220801.381|96.326 +640044.195|220797.354|96.219 +640048.365|220793.371|96.360 +640052.333|220789.597|97.573 +640056.424|220785.696|97.884 +640060.578|220781.724|97.881 +640064.644|220777.844|98.100 +640068.759|220773.915|98.332 +640072.868|220769.989|98.353 +640076.879|220766.158|98.621 +640077.397|220763.104|98.850 +640073.297|220767.002|98.423 +640069.119|220770.977|98.393 +640064.961|220774.933|98.277 +640060.825|220778.868|98.073 +640056.677|220782.815|97.951 +640052.403|220786.881|97.951 +640048.362|220790.716|97.033 +640044.259|220794.611|96.189 +640039.995|220798.671|96.445 +640035.706|220802.755|96.344 +640031.488|220806.764|95.872 +640026.657|220811.400|98.691 +640022.414|220815.429|98.118 +640013.651|220823.781|98.819 +640009.222|220827.996|99.030 +640004.876|220832.138|99.112 +640000.441|220836.360|99.127 +639995.994|220840.596|99.520 +639991.635|220844.745|99.447 +639987.188|220848.978|99.588 +639982.674|220853.285|100.154 +639978.203|220857.543|100.215 +639973.670|220861.862|100.627 +639969.211|220866.111|100.944 +639964.685|220870.424|101.386 +639960.064|220874.835|102.117 +639946.351|220887.911|103.614 +639941.806|220892.239|103.998 +639937.198|220896.634|104.507 +639932.623|220900.996|104.830 +639927.990|220905.412|105.534 +639923.375|220909.814|106.153 +639914.091|220918.671|107.238 +639909.482|220923.063|107.595 +639890.963|220940.723|109.247 +639886.308|220945.161|109.728 +639877.091|220953.940|109.814 +639854.006|220975.928|109.908 +639840.134|220989.135|109.652 +639835.489|220993.561|109.664 +639830.813|220998.014|109.893 +639821.389|221006.996|110.307 +639816.704|221011.462|110.694 +639811.995|221015.948|110.938 +639807.356|221020.371|111.048 +639802.604|221024.897|111.289 +639797.886|221029.396|111.700 +639793.167|221033.895|112.121 +639774.218|221051.960|113.581 +639764.748|221060.989|114.273 +639759.947|221065.570|114.812 +639755.183|221070.108|115.047 +639745.747|221079.100|115.263 +639741.065|221083.556|115.276 +639731.628|221092.538|114.751 +639726.937|221097.004|114.489 +639722.188|221101.524|114.337 +639717.498|221105.986|114.081 +639712.788|221110.464|113.575 +639708.064|221114.963|113.258 +639698.630|221123.933|112.450 +639693.976|221128.356|111.450 +639689.270|221132.830|110.975 +639679.803|221141.834|110.112 +639675.088|221146.311|109.247 +639670.357|221150.816|109.082 +639665.550|221155.388|108.716 +639660.817|221159.896|108.631 +639651.258|221169.001|108.482 +639646.488|221173.533|107.750 +639641.755|221178.035|107.177 +639636.920|221182.638|107.235 +639632.111|221187.225|107.628 +639627.307|221191.794|107.348 +639612.930|221205.476|106.272 +639607.977|221210.207|107.421 +639598.129|221219.616|109.826 +639593.230|221224.292|110.451 +639578.600|221238.242|111.642 +639568.859|221247.520|111.712 +639564.021|221252.120|110.905 +639559.157|221256.750|110.533 +639554.237|221261.447|111.085 +639544.481|221270.755|111.770 +639539.558|221275.446|111.694 +639534.727|221280.037|110.798 +639529.868|221284.648|109.539 +639525.001|221289.287|109.375 +639520.060|221293.996|109.655 +639515.168|221298.651|109.058 +639510.334|221303.244|108.183 +639500.522|221312.574|106.482 +639480.969|221331.155|102.248 +639461.154|221350.016|100.624 +639446.307|221364.143|98.993 +639436.215|221373.790|101.322 +639406.122|221402.502|103.913 +639401.124|221407.263|103.785 +639396.122|221412.030|103.922 +639391.065|221416.855|104.458 +639386.067|221421.623|104.562 +639381.025|221426.426|104.449 +639360.957|221445.528|102.885 +639355.964|221450.286|102.578 +639345.879|221459.887|101.831 +639325.753|221479.123|106.333 +639320.714|221483.924|106.183 +639295.562|221507.945|110.131 +639290.533|221512.740|110.521 +639280.484|221522.332|111.499 +639275.409|221527.172|111.709 +639250.296|221551.132|113.861 +639245.227|221555.966|114.181 +639235.181|221565.546|114.818 +639230.167|221570.335|115.327 +639225.147|221575.123|115.650 +639200.105|221599.010|117.616 +639175.163|221622.821|120.552 +639160.267|221637.034|121.792 +639155.256|221641.814|122.252 +639150.282|221646.559|122.463 +639135.420|221660.736|123.463 +639130.442|221665.481|123.661 +639125.477|221670.221|124.057 +639120.573|221674.903|124.740 +639115.611|221679.639|125.215 +639110.679|221684.342|125.419 +639105.763|221689.033|125.886 +639100.785|221693.779|126.157 +639095.857|221698.479|126.447 +639090.974|221703.139|126.696 +639066.367|221726.591|126.873 +639056.486|221736.006|126.660 +639046.671|221745.354|126.197 +639041.727|221750.054|125.240 +639036.820|221754.724|124.804 +639031.873|221759.436|124.505 +639026.993|221764.087|124.459 +639017.176|221773.426|123.207 +639002.387|221787.496|121.210 +638977.780|221810.911|118.412 +638963.086|221824.895|116.824 +638953.314|221834.195|116.041 +638938.894|221847.953|117.074 +638934.047|221852.571|116.949 +638929.259|221857.140|117.363 +638924.522|221861.666|118.263 +638905.466|221879.845|119.680 +638895.935|221888.937|120.241 +638891.262|221893.399|120.914 +638872.350|221911.446|122.685 +638867.607|221915.966|122.853 +638858.252|221924.900|124.273 +638848.746|221933.959|124.173 +638839.090|221943.149|123.014 +638834.289|221947.724|122.883 +638829.498|221952.277|122.137 +638810.228|221970.608|120.101 +638800.685|221979.691|119.579 +638795.909|221984.239|119.140 +638791.093|221988.823|118.796 +638781.491|221997.955|117.754 +638776.691|222002.518|116.952 +638743.916|222033.748|117.479 +638739.225|222038.210|117.275 +638734.577|222042.642|117.354 +638729.883|222047.113|117.156 +638720.547|222056.001|116.876 +638715.926|222060.405|117.211 +638706.754|222069.150|117.735 +638702.140|222073.548|117.845 +638688.131|222086.877|116.800 +638678.688|222095.863|115.708 +638664.402|222109.436|112.929 +638655.298|222118.107|112.898 +638650.747|222122.448|113.346 +638641.280|222131.439|111.197 +638636.345|222136.115|109.369 +638631.810|222140.437|109.439 +638627.369|222144.671|109.765 +638622.968|222148.871|110.316 +638618.472|222153.159|110.643 +638614.028|222157.396|110.987 +638596.157|222174.425|111.298 +638591.829|222178.552|111.810 +638587.346|222182.826|111.804 +638560.770|222208.136|111.523 +638556.305|222212.385|111.246 +638551.864|222216.616|111.100 +638543.043|222225.010|110.697 +638533.890|222233.706|108.567 +638529.290|222238.071|107.323 +638524.898|222242.252|107.314 +638494.510|222271.181|105.818 +638490.175|222275.305|105.528 +638481.379|222283.663|103.964 +638477.029|222287.793|103.440 +638468.449|222295.952|102.742 +638459.960|222304.026|102.288 +638438.865|222324.088|100.904 +638421.711|222340.374|97.707 +638417.325|222344.531|96.448 +638400.485|222360.527|93.897 +638389.722|222370.839|99.011 +638386.299|222374.118|101.099 +638382.916|222377.368|103.330 +638379.246|222380.876|104.431 +638375.342|222384.591|104.638 +638371.477|222388.273|104.784 +638367.615|222391.949|104.970 +638363.680|222395.692|104.888 +638359.751|222399.429|104.635 +638355.920|222403.077|104.763 +638352.195|222406.628|105.117 +638348.315|222410.320|105.092 +638344.471|222413.977|105.013 +638476.456|222286.147|103.562 +638480.772|222282.032|104.010 +638485.021|222277.975|104.196 +638489.523|222273.693|105.281 +638493.879|222269.538|105.751 +638506.979|222257.047|106.955 +638511.350|222252.881|107.348 +638515.849|222248.595|108.107 +638524.331|222240.482|107.332 +638528.626|222236.379|107.208 +638551.340|222214.744|111.063 +638555.781|222210.507|111.271 +638609.261|222159.444|111.072 +638613.735|222155.171|110.941 +638618.164|222150.934|110.603 +638622.599|222146.688|110.045 +638627.058|222142.424|109.622 +638631.527|222138.148|109.265 +638636.150|222133.737|109.759 +638655.057|222115.718|113.160 +638659.657|222111.322|113.112 +638664.268|222106.918|113.425 +638669.197|222102.233|115.273 +638683.312|222088.767|116.641 +638688.003|222084.287|116.989 +638692.755|222079.757|117.708 +638697.476|222075.249|117.982 +638716.026|222057.519|117.321 +638725.353|222048.604|117.123 +638730.078|222044.092|117.278 +638734.799|222039.584|117.434 +638739.484|222035.107|117.385 +638777.172|221999.092|116.900 +638791.727|221985.211|118.817 +638796.539|221980.618|119.268 +638801.380|221976.000|119.592 +638806.165|221971.431|119.887 +638810.966|221966.847|119.976 +638815.821|221962.214|120.512 +638820.704|221957.560|121.237 +638830.375|221948.333|122.137 +638835.295|221943.639|122.914 +638844.994|221934.379|123.487 +638864.227|221916.006|123.249 +638869.021|221911.419|122.856 +638873.904|221906.755|123.200 +638878.692|221902.177|122.774 +638893.033|221888.452|121.000 +638897.794|221883.898|120.387 +638902.616|221879.281|119.930 +638926.726|221856.219|117.711 +638931.520|221851.629|117.034 +638936.406|221846.966|117.242 +638946.084|221837.703|115.900 +638960.894|221823.566|116.891 +638970.754|221814.154|117.607 +638975.738|221809.408|118.534 +638980.734|221804.644|119.165 +638985.690|221799.917|119.948 +638995.596|221790.471|120.988 +639000.564|221785.728|121.494 +639010.537|221776.215|122.469 +639015.447|221771.531|122.944 +639020.480|221766.733|123.801 +639025.408|221762.030|124.002 +639030.395|221757.272|124.365 +639045.339|221743.020|126.151 +639055.224|221733.583|126.696 +639065.124|221724.131|126.913 +639089.880|221700.479|126.696 +639094.796|221695.779|126.471 +639099.709|221691.082|126.212 +639104.659|221686.348|125.764 +639109.606|221681.617|125.310 +639114.526|221676.914|125.157 +639119.467|221672.190|124.560 +639124.417|221667.456|124.148 +639129.367|221662.720|123.737 +639149.169|221643.783|122.161 +639164.022|221629.579|121.000 +639208.734|221586.806|116.199 +639213.741|221582.021|116.013 +639223.660|221572.538|115.501 +639238.622|221558.231|114.477 +639243.624|221553.446|113.938 +639248.635|221548.657|113.880 +639263.604|221534.344|112.606 +639303.591|221496.101|108.969 +639353.575|221448.277|103.071 +639373.475|221429.310|105.303 +639383.445|221419.782|104.623 +639388.432|221415.021|104.431 +639393.421|221410.250|103.964 +639398.408|221405.489|103.897 +639403.343|221400.780|104.016 +639433.131|221372.318|102.062 +639452.931|221353.390|100.231 +639457.871|221348.678|100.532 +639462.809|221343.969|100.938 +639467.668|221339.348|102.181 +639477.525|221329.939|102.206 +639487.163|221320.776|105.275 +639492.043|221316.125|105.863 +639496.932|221311.465|106.257 +639501.757|221306.865|106.970 +639506.582|221302.269|107.701 +639511.404|221297.675|108.451 +639516.229|221293.076|109.146 +639521.054|221288.483|109.862 +639525.930|221283.819|109.545 +639530.777|221279.198|109.871 +639535.513|221274.693|111.292 +639540.308|221270.121|111.697 +639545.185|221265.464|111.496 +639549.988|221260.871|110.969 +639554.877|221256.201|110.630 +639559.623|221251.672|111.091 +639574.001|221237.959|111.908 +639588.424|221224.176|110.862 +639593.294|221219.518|110.353 +639602.975|221210.249|108.351 +639626.853|221187.441|107.515 +639631.608|221182.903|107.552 +639636.402|221178.322|107.162 +639641.096|221173.844|107.448 +639645.763|221169.397|108.040 +639664.584|221151.435|108.774 +639678.636|221138.033|109.725 +639683.226|221133.662|110.719 +639710.978|221107.205|113.611 +639715.583|221102.819|114.047 +639720.198|221098.418|114.383 +639724.852|221093.974|114.346 +639729.415|221089.628|114.767 +639738.602|221080.874|115.516 +639743.278|221076.408|115.388 +639747.889|221072.010|115.422 +639752.528|221067.581|115.245 +639757.186|221063.131|114.928 +639771.155|221049.787|113.761 +639775.806|221045.343|113.215 +639780.445|221040.908|112.785 +639789.696|221032.075|112.270 +639794.326|221027.653|112.008 +639798.946|221023.236|111.463 +639803.595|221018.801|111.136 +639808.154|221014.449|111.121 +639812.736|221010.072|110.960 +639817.396|221005.622|110.597 +639831.149|220992.491|109.954 +639835.702|220988.144|109.765 +639849.299|220975.169|109.807 +639853.792|220970.886|110.161 +639880.883|220945.033|109.935 +639889.999|220936.328|109.356 +639908.178|220918.955|107.558 +639912.671|220914.663|107.192 +639917.212|220910.323|106.555 +639921.787|220905.949|106.031 +639930.888|220897.250|104.775 +639935.326|220893.013|104.574 +639944.385|220884.354|103.446 +639953.380|220875.758|102.492 +639966.846|220862.886|100.834 +639971.278|220858.656|100.587 +639975.719|220854.413|100.282 +639980.141|220850.192|100.127 +639984.524|220846.004|99.914 +639988.923|220841.803|99.648 +639993.296|220837.628|99.530 +639997.646|220833.476|99.307 +640002.020|220829.297|98.950 +640006.369|220825.149|99.042 +640010.728|220820.986|98.826 +640015.023|220816.886|98.697 +640019.418|220812.683|98.042 +640023.737|220808.559|97.829 +640028.318|220804.167|96.241 +640032.500|220800.180|96.536 +640036.755|220796.117|96.451 +640041.004|220792.063|96.436 +640045.045|220788.219|97.500 +640049.108|220784.352|98.207 +640053.287|220780.365|98.320 +640057.506|220776.341|98.262 +640061.614|220772.422|98.499 +640065.741|220768.484|98.670 +640069.856|220764.558|98.661 +640073.986|220760.620|98.853 +640078.007|220756.788|99.097 +640063.084|220768.688|98.591 +640059.048|220772.528|98.396 +640054.988|220776.396|98.329 +640050.879|220780.310|98.277 +640046.826|220784.169|98.216 +640042.854|220787.945|97.487 +640038.876|220791.725|96.527 +640034.740|220795.663|96.408 +640030.580|220799.625|96.430 +640022.051|220807.763|97.375 +640017.760|220811.860|97.890 +640013.453|220815.969|98.509 +640009.183|220820.041|98.685 +640000.627|220828.197|99.185 +639996.323|220832.300|99.325 +639991.980|220836.439|99.426 +639987.645|220840.572|99.780 +639983.345|220844.672|99.965 +639978.977|220848.838|100.273 +639974.630|220852.980|100.481 +639970.263|220857.144|100.545 +639961.396|220865.602|101.221 +639943.498|220882.680|103.218 +639929.983|220895.576|104.656 +639925.402|220899.950|105.357 +639920.858|220904.288|105.866 +639893.355|220930.525|109.045 +639888.808|220934.856|109.103 +639884.199|220939.254|109.603 +639879.627|220943.610|109.875 +639865.814|220956.777|110.533 +639852.067|220969.868|110.262 +639838.189|220983.085|110.054 +639833.563|220987.486|109.902 +639828.924|220991.906|109.881 +639819.466|221000.922|110.509 +639814.756|221005.414|110.728 +639810.044|221009.904|110.972 +639805.329|221014.397|111.277 +639795.862|221023.419|111.517 +639791.086|221027.976|112.020 +639781.603|221037.016|112.545 +639776.766|221041.631|113.233 +639772.026|221046.148|113.553 +639767.183|221050.769|113.965 +639752.830|221064.457|115.148 +639748.014|221069.044|115.440 +639743.235|221073.601|115.468 +639738.474|221078.131|115.327 +639724.279|221091.639|114.245 +639719.479|221096.208|114.117 +639714.681|221100.780|113.995 +639709.966|221105.267|113.557 +639700.453|221114.313|112.560 +639686.106|221127.959|110.984 +639676.602|221136.994|109.515 +639662.152|221150.746|108.692 +639642.837|221169.135|107.881 +639638.057|221173.679|107.268 +639633.193|221178.309|107.113 +639628.334|221182.945|107.537 +639623.424|221187.621|107.424 +639608.931|221201.416|106.595 +639603.962|221206.168|108.003 +639599.019|221210.893|109.140 +639574.427|221234.350|111.831 +639554.978|221252.861|110.783 +639550.101|221257.503|110.612 +639545.145|221262.227|110.999 +639540.296|221266.851|111.252 +639535.364|221271.548|111.292 +639530.545|221276.123|110.179 +639525.650|221280.774|109.539 +639520.749|221285.444|109.939 +639515.906|221290.052|109.311 +639506.176|221299.294|107.777 +639501.284|221303.945|107.137 +639491.531|221313.217|106.104 +639486.599|221317.905|105.272 +639476.839|221327.171|103.160 +639467.089|221336.440|101.983 +639457.244|221345.797|100.676 +639437.477|221364.616|100.377 +639432.479|221369.395|101.627 +639422.499|221378.923|103.699 +639417.580|221383.611|104.050 +639402.712|221397.772|104.059 +639397.710|221402.536|104.092 +639392.757|221407.248|103.971 +639372.789|221426.280|105.251 +639367.839|221430.995|105.229 +639352.862|221445.239|103.760 +639347.915|221449.939|102.995 +639342.919|221454.696|102.837 +639337.875|221459.482|101.779 +639332.922|221464.215|103.017 +639322.930|221473.762|105.421 +639302.929|221492.851|108.530 +639297.894|221497.646|108.707 +639282.901|221511.947|110.399 +639272.885|221521.490|110.871 +639262.887|221531.028|112.292 +639257.913|221535.773|112.788 +639252.844|221540.608|113.361 +639242.841|221550.142|113.971 +639232.828|221559.679|114.096 +639227.817|221564.461|114.913 +639222.791|221569.250|115.120 +639212.800|221578.775|115.992 +639207.773|221583.566|116.126 +639202.808|221588.303|116.739 +639197.791|221593.085|117.178 +639192.823|221597.822|117.711 +639152.970|221635.839|121.771 +639147.947|221640.628|122.024 +639142.964|221645.377|122.057 +639137.989|221650.119|122.332 +639128.065|221659.586|123.395 +639123.100|221664.323|123.850 +639118.138|221669.057|124.346 +639113.249|221673.729|125.297 +639108.210|221678.530|125.276 +639103.291|221683.221|125.752 +639098.310|221687.970|125.928 +639093.345|221692.703|126.413 +639068.592|221716.295|127.138 +639028.834|221754.139|124.490 +639023.872|221758.860|124.060 +639018.916|221763.578|123.703 +639013.969|221768.288|123.523 +639009.028|221772.988|122.850 +639004.042|221777.727|122.265 +638999.080|221782.446|121.439 +638969.383|221810.688|117.796 +638954.579|221824.779|116.669 +638949.705|221829.415|116.181 +638935.190|221843.259|117.254 +638930.344|221847.871|117.141 +638925.516|221852.480|117.632 +638920.788|221856.994|118.638 +638916.067|221861.508|119.662 +638901.586|221875.309|120.043 +638892.058|221884.398|121.036 +638877.860|221897.947|122.813 +638873.102|221902.482|123.228 +638868.311|221907.045|122.972 +638863.504|221911.623|123.036 +638858.816|221916.101|123.639 +638854.147|221920.560|124.420 +638849.374|221925.104|124.401 +638844.515|221929.725|123.764 +638820.344|221952.716|121.180 +638810.652|221961.943|119.738 +638805.964|221966.414|119.851 +638801.182|221970.971|119.649 +638796.408|221975.515|119.223 +638777.206|221993.797|117.001 +638739.682|222029.581|117.336 +638725.734|222042.882|117.540 +638679.399|222087.057|117.174 +638674.647|222091.580|116.309 +638669.947|222096.052|115.797 +638660.562|222104.986|114.626 +638655.776|222109.533|113.428 +638637.156|222127.263|111.554 +638627.653|222136.298|109.335 +638623.166|222140.580|109.667 +638618.740|222144.805|110.094 +638614.311|222149.038|110.755 +638609.846|222153.299|110.993 +638605.344|222157.591|111.057 +638596.389|222166.132|111.237 +638591.884|222170.429|111.328 +638560.822|222200.050|111.633 +638556.366|222204.299|111.612 +638551.891|222208.563|111.283 +638547.420|222212.821|111.005 +638524.755|222234.386|107.256 +638520.411|222238.528|107.461 +638502.834|222255.274|106.348 +638489.782|222267.709|105.568 +638480.946|222276.119|104.242 +638467.903|222288.539|103.126 +638459.348|222296.693|102.559 +638455.108|222300.732|102.364 +638450.908|222304.740|102.340 +638434.125|222320.736|101.867 +638429.773|222324.878|101.075 +638425.362|222329.069|99.856 +638416.438|222337.545|97.079 +638412.152|222341.621|96.244 +638407.711|222345.836|94.793 +638399.332|222353.816|93.796 +638395.227|222357.729|93.546 +638381.011|222371.381|101.032 +638374.010|222378.102|104.568 +638370.023|222381.906|104.641 +638366.195|222385.564|104.934 +638362.223|222389.349|104.894 +638358.367|222393.028|104.906 +638354.384|222396.820|104.650 +638350.476|222400.548|104.693 +638346.715|222404.141|105.098 +638342.853|222407.826|105.141 +638461.405|222292.420|103.047 +638465.669|222288.347|103.218 +638469.988|222284.230|103.647 +638478.632|222275.976|104.147 +638482.958|222271.846|104.449 +638487.359|222267.652|105.101 +638491.824|222263.393|105.833 +638496.195|222259.224|106.162 +638500.560|222255.060|106.482 +638504.882|222250.930|106.644 +638518.168|222238.253|107.741 +638522.460|222234.148|107.360 +638536.203|222221.060|110.384 +638540.702|222216.765|110.822 +638545.094|222212.571|110.765 +638554.001|222204.070|111.313 +638558.475|222199.797|111.478 +638580.856|222178.424|112.139 +638589.732|222169.935|111.341 +638594.188|222165.674|111.057 +638598.629|222161.428|110.984 +638603.204|222157.061|111.078 +638607.719|222152.748|110.883 +638612.181|222148.487|110.710 +638616.616|222144.244|110.143 +638621.115|222139.943|109.652 +638625.580|222135.676|109.262 +638630.338|222131.144|110.195 +638635.190|222126.532|111.664 +638649.440|222112.962|114.334 +638654.039|222108.573|114.276 +638668.173|222095.098|115.839 +638672.867|222090.626|116.397 +638677.625|222086.091|117.083 +638682.352|222081.586|117.616 +638687.034|222077.121|117.918 +638691.819|222072.561|118.552 +638696.495|222068.096|118.589 +638701.113|222063.688|118.583 +638705.755|222059.250|118.150 +638710.342|222054.867|117.702 +638715.021|222050.399|117.516 +638724.381|222041.459|117.549 +638729.112|222036.942|117.455 +638733.799|222032.467|117.400 +638738.539|222027.941|117.406 +638776.459|221991.740|117.199 +638781.357|221987.076|118.144 +638786.243|221982.419|118.699 +638795.820|221973.278|118.897 +638800.706|221968.621|119.564 +638805.525|221964.024|119.774 +638820.098|221950.129|121.049 +638824.965|221945.493|121.722 +638834.746|221936.169|122.801 +638844.488|221926.881|123.722 +638849.413|221922.187|124.273 +638854.232|221917.588|124.395 +638858.947|221913.071|123.368 +638863.742|221908.490|122.944 +638868.625|221903.832|123.267 +638873.428|221899.242|122.966 +638892.628|221880.887|120.969 +638897.419|221876.309|120.628 +638902.220|221871.716|119.982 +638907.069|221867.086|119.753 +638911.952|221862.422|119.866 +638921.557|221853.232|118.217 +638926.366|221848.630|117.248 +638931.210|221844.003|117.031 +638955.667|221820.652|116.766 +638965.527|221811.249|117.409 +638970.532|221806.479|118.080 +638975.473|221801.767|118.604 +638995.394|221782.787|121.259 +639000.329|221778.084|121.932 +639010.308|221768.571|123.005 +639015.216|221763.892|123.450 +639020.202|221759.137|123.764 +639025.155|221754.416|124.282 +639035.113|221744.925|125.520 +639054.971|221725.987|127.041 +639059.930|221721.257|127.276 +639064.788|221716.612|126.831 +639069.754|221711.878|127.184 +639074.734|221707.123|127.154 +639084.579|221697.720|126.757 +639089.499|221693.020|126.590 +639094.397|221688.338|126.032 +639099.356|221683.602|125.715 +639104.269|221678.908|125.447 +639109.189|221674.208|125.304 +639119.022|221664.805|124.042 +639128.915|221655.347|123.066 +639133.814|221650.665|122.530 +639143.726|221641.195|121.902 +639148.694|221636.452|121.826 +639153.656|221631.712|121.646 +639178.385|221608.069|118.958 +639183.331|221603.339|118.400 +639188.266|221598.617|117.449 +639198.184|221589.141|116.928 +639203.140|221584.407|116.550 +639208.097|221579.671|116.169 +639213.095|221574.892|115.690 +639223.010|221565.418|114.980 +639228.012|221560.636|114.410 +639232.965|221555.899|113.855 +639237.933|221551.157|113.867 +639252.866|221536.892|113.002 +639257.870|221532.107|112.514 +639267.789|221522.624|111.304 +639277.759|221513.093|110.301 +639287.741|221503.556|109.591 +639297.671|221494.058|108.378 +639312.677|221479.711|106.394 +639327.603|221465.425|103.794 +639332.583|221460.658|102.840 +639342.590|221451.109|103.199 +639347.567|221446.357|103.474 +639367.471|221427.371|105.208 +639372.451|221422.619|105.296 +639387.411|221408.318|104.178 +639392.345|221403.600|104.077 +639397.326|221398.848|104.248 +639402.306|221394.093|104.419 +639417.226|221379.840|104.077 +639422.173|221375.110|103.715 +639432.174|221365.527|101.282 +639442.226|221355.886|97.789 +639451.989|221346.596|100.563 +639466.778|221332.496|102.386 +639476.525|221323.205|103.913 +639481.451|221318.509|104.531 +639486.315|221313.876|105.513 +639491.192|221309.227|106.156 +639500.964|221299.907|107.012 +639505.829|221295.271|107.860 +639520.359|221281.417|109.817 +639525.275|221276.720|109.679 +639530.100|221272.121|110.359 +639544.682|221258.201|110.633 +639549.543|221253.559|110.737 +639573.650|221230.546|111.764 +639593.017|221212.026|109.890 +639597.885|221207.366|108.866 +639602.789|221202.669|108.018 +639607.635|221198.024|106.738 +639612.430|221193.446|106.817 +639617.136|221188.959|107.454 +639621.936|221184.375|107.491 +639626.725|221179.797|107.125 +639631.486|221175.249|107.128 +639636.192|221170.759|107.262 +639640.944|221166.227|107.960 +639645.620|221161.768|108.439 +639655.050|221152.761|108.567 +639659.802|221148.226|108.792 +639673.844|221134.830|109.801 +639678.517|221130.373|110.417 +639683.147|221125.957|110.972 +639687.837|221121.479|110.950 +639697.033|221112.716|112.761 +639710.984|221099.396|113.538 +639715.522|221095.071|114.139 +639724.791|221086.217|114.453 +639729.385|221081.837|115.023 +639733.960|221077.472|115.340 +639738.562|221073.077|115.419 +639743.171|221068.670|115.443 +639747.798|221064.250|115.352 +639766.314|221046.541|113.898 +639770.926|221042.131|113.654 +639789.388|221024.470|112.036 +639807.685|221006.978|111.039 +639812.220|221002.644|110.865 +639816.777|220998.285|110.548 +639821.349|220993.917|110.524 +639825.854|220989.607|110.286 +639830.353|220985.307|110.118 +639834.870|220980.994|110.216 +639848.300|220968.165|110.402 +639852.768|220963.897|110.560 +639861.635|220955.430|110.740 +639866.237|220951.023|110.030 +639870.663|220946.792|109.890 +639879.594|220938.258|109.795 +639888.573|220929.665|108.817 +639897.534|220921.094|108.073 +639902.003|220916.818|107.802 +639906.471|220912.545|107.259 +639919.903|220899.688|105.601 +639924.338|220895.445|105.068 +639928.886|220891.087|104.160 +639937.722|220882.638|103.428 +639942.151|220878.398|103.023 +639946.516|220874.225|102.742 +639951.002|220869.927|102.044 +639959.826|220861.484|101.038 +639964.145|220857.357|101.099 +639968.534|220853.160|100.795 +639972.863|220849.021|100.563 +639977.221|220844.854|100.194 +639985.868|220836.582|99.603 +639990.169|220832.473|99.621 +639998.795|220824.226|99.286 +640003.084|220820.123|98.868 +640007.400|220815.996|98.600 +640011.706|220811.872|98.121 +640016.016|220807.751|97.661 +640020.454|220803.496|96.539 +640028.882|220795.440|96.472 +640033.137|220791.374|96.393 +640037.182|220787.521|97.167 +640041.165|220783.730|98.256 +640045.274|220779.807|98.457 +640049.416|220775.851|98.484 +640053.528|220771.925|98.697 +640057.655|220767.984|98.832 +640061.776|220764.046|98.765 +640065.872|220760.132|98.841 +640069.896|220756.295|99.295 +640073.974|220752.402|99.484 +640052.266|220770.748|98.801 +640048.282|220774.534|98.368 +640044.219|220778.402|98.362 +640040.184|220782.242|98.228 +640036.243|220785.985|97.612 +640032.351|220789.673|96.475 +640028.251|220793.578|96.454 +640024.154|220797.476|96.427 +640020.049|220801.387|96.463 +640015.861|220805.374|96.686 +640011.530|220809.513|97.713 +640007.308|220813.536|98.164 +640003.090|220817.560|98.637 +639998.868|220821.583|99.124 +639994.628|220825.625|99.475 +639990.373|220829.678|99.652 +639981.979|220837.670|99.682 +639977.669|220841.779|99.941 +639973.393|220845.851|100.304 +639969.126|220849.920|100.654 +639964.795|220854.050|101.099 +639960.579|220858.061|100.898 +639947.457|220870.574|102.334 +639943.114|220874.713|102.669 +639938.707|220878.916|103.129 +639934.311|220883.107|103.526 +639920.992|220895.808|105.110 +639916.590|220900.005|105.644 +639912.070|220904.318|106.345 +639907.623|220908.561|106.927 +639903.142|220912.834|107.436 +639889.692|220925.672|108.847 +639880.639|220934.310|109.722 +639876.177|220938.565|109.948 +639867.170|220947.152|110.015 +639862.680|220951.434|110.161 +639858.084|220955.820|110.713 +639849.034|220964.443|110.566 +639844.499|220968.765|110.441 +639835.394|220977.440|110.454 +639830.826|220981.792|110.265 +639826.235|220986.169|110.256 +639821.617|220990.570|110.466 +639817.009|220994.966|110.637 +639812.315|220999.443|110.749 +639807.658|221003.884|110.966 +639803.003|221008.322|111.200 +639788.912|221021.761|111.892 +639784.252|221026.202|111.880 +639774.757|221035.263|112.971 +639769.981|221039.826|113.614 +639746.185|221062.531|115.367 +639736.673|221071.596|115.437 +639731.930|221076.113|115.193 +639727.196|221080.621|114.876 +639722.417|221085.171|114.529 +639712.892|221094.245|114.066 +639689.078|221116.907|111.520 +639684.283|221121.473|111.002 +639679.477|221126.048|110.603 +639674.652|221130.639|109.914 +639660.158|221144.440|109.100 +639655.294|221149.076|108.893 +639645.516|221158.388|108.533 +639640.673|221162.999|108.140 +639635.854|221167.586|107.482 +639630.956|221172.250|107.168 +639626.091|221176.886|107.095 +639621.141|221181.607|107.482 +639616.231|221186.289|107.421 +639606.474|221195.576|106.522 +639591.523|221209.865|109.628 +639571.647|221228.839|111.776 +639551.918|221247.642|111.603 +639547.020|221252.303|111.039 +639542.118|221256.975|110.585 +639532.218|221266.412|110.475 +639527.320|221271.075|109.960 +639522.364|221275.800|109.701 +639517.430|221280.506|109.865 +639512.489|221285.215|109.338 +639497.749|221299.236|106.848 +639492.860|221303.893|106.183 +639487.903|221308.615|105.885 +639482.966|221313.312|105.178 +639478.077|221317.969|104.501 +639473.166|221322.629|103.050 +639458.323|221336.769|101.608 +639453.391|221341.460|100.624 +639443.503|221350.872|99.292 +639438.575|221355.575|99.591 +639433.533|221360.394|100.596 +639428.541|221365.173|101.794 +639423.539|221369.962|103.340 +639418.564|221374.714|104.013 +639413.602|221379.453|104.379 +639398.691|221393.672|104.504 +639393.744|221398.385|104.242 +639388.749|221403.149|104.150 +639383.845|221407.830|104.321 +639378.843|221412.604|104.589 +639368.891|221422.101|105.193 +639363.895|221426.865|105.278 +639358.945|221431.596|105.784 +639353.998|221436.311|105.732 +639344.071|221445.751|103.852 +639339.082|221450.502|103.102 +639334.135|221455.218|102.916 +639329.185|221459.942|103.291 +639324.192|221464.712|103.815 +639309.269|221478.977|106.604 +639299.348|221488.456|108.043 +639294.410|221493.171|108.439 +639289.478|221497.884|109.289 +639279.514|221507.396|109.926 +639269.605|221516.858|110.810 +639254.728|221531.064|112.386 +639249.799|221535.770|112.819 +639239.854|221545.268|113.685 +639234.925|221549.971|113.934 +639229.939|221554.726|113.733 +639224.976|221559.466|114.611 +639219.999|221564.214|114.754 +639210.050|221573.709|115.352 +639200.172|221583.146|116.629 +639175.404|221606.801|119.272 +639170.441|221611.538|119.741 +639155.585|221625.714|120.927 +639145.695|221635.154|121.594 +639140.705|221639.909|121.509 +639125.910|221654.030|122.954 +639116.038|221663.454|124.029 +639106.186|221672.867|125.416 +639101.261|221677.567|125.715 +639091.343|221687.025|126.029 +639086.423|221691.719|126.459 +639071.625|221705.837|127.166 +639066.663|221710.564|127.044 +639061.725|221715.274|127.266 +639026.926|221748.418|125.066 +639021.970|221753.139|124.633 +639016.947|221757.912|123.447 +639011.945|221762.676|123.133 +639007.044|221767.346|122.944 +639002.085|221772.070|122.637 +638992.084|221781.586|121.195 +638987.095|221786.335|120.671 +638962.220|221810.006|117.339 +638957.352|221814.645|117.309 +638952.390|221819.369|116.830 +638932.859|221837.995|117.336 +638927.921|221842.702|117.229 +638923.145|221847.261|117.744 +638918.307|221851.885|118.583 +638913.616|221856.372|119.896 +638908.743|221861.020|120.009 +638903.857|221865.677|119.994 +638899.096|221870.225|120.707 +638894.286|221874.815|120.978 +638889.449|221879.433|121.460 +638884.682|221883.984|122.140 +638870.292|221897.715|123.103 +638865.519|221902.269|123.386 +638860.679|221906.880|123.139 +638855.906|221911.434|123.447 +638851.215|221915.918|124.432 +638846.335|221920.563|123.950 +638841.552|221925.123|123.871 +638831.817|221934.389|122.877 +638822.100|221943.639|121.759 +638812.380|221952.887|120.415 +638807.540|221957.489|119.765 +638802.745|221962.058|119.817 +638788.325|221975.781|118.839 +638773.957|221989.451|117.790 +638769.040|221994.123|116.864 +638736.122|222025.481|117.424 +638726.783|222034.378|117.604 +638698.979|222060.872|118.689 +638689.743|222069.668|118.903 +638685.016|222074.164|118.403 +638680.368|222078.587|118.098 +638675.631|222083.092|117.589 +638666.240|222092.022|116.574 +638661.546|222096.488|116.099 +638656.886|222100.919|115.583 +638647.526|222109.823|114.660 +638633.572|222123.094|113.276 +638628.695|222127.718|111.758 +638623.812|222132.347|109.966 +638619.207|222136.731|109.679 +638614.717|222141.007|110.042 +638610.297|222145.228|110.765 +638605.823|222149.493|110.960 +638601.339|222153.763|111.130 +638596.828|222158.060|111.170 +638592.354|222162.325|111.414 +638569.999|222183.615|111.746 +638565.540|222187.861|111.661 +638561.054|222192.131|111.472 +638556.625|222196.350|111.594 +638552.175|222200.586|111.368 +638547.664|222204.878|111.127 +638534.252|222217.637|110.128 +638525.291|222226.162|109.396 +638516.108|222234.882|107.491 +638511.828|222238.961|107.784 +638507.329|222243.237|107.080 +638494.058|222255.862|106.138 +638485.204|222264.280|105.129 +638476.410|222272.641|104.254 +638472.043|222276.799|104.083 +638463.502|222284.931|103.971 +638459.165|222289.055|103.553 +638454.785|222293.218|102.962 +638450.399|222297.385|102.370 +638446.162|222301.417|102.437 +638441.919|222305.456|102.264 +638437.676|222309.495|102.117 +638433.467|222313.500|102.130 +638424.911|222321.632|101.197 +638411.326|222334.510|96.655 +638402.591|222342.797|94.586 +638398.363|222346.814|94.049 +638390.036|222354.736|93.531 +638385.991|222358.586|93.568 +638375.820|222368.364|101.483 +638372.019|222371.994|102.291 +638368.538|222375.331|104.358 +638364.664|222379.023|104.681 +638360.751|222382.750|104.867 +638356.822|222386.493|105.007 +638352.850|222390.270|105.004 +638348.937|222393.997|105.019 +638344.941|222397.798|104.742 +638341.122|222401.438|105.147 +638449.753|222295.992|102.407 +638467.202|222279.341|104.315 +638471.512|222275.220|104.284 +638475.825|222271.099|104.504 +638493.470|222254.259|106.183 +638506.750|222241.579|107.134 +638511.234|222237.303|107.838 +638515.550|222233.176|107.540 +638529.306|222220.060|109.844 +638533.722|222215.842|110.112 +638538.212|222211.553|110.268 +638547.283|222202.897|111.063 +638551.788|222198.593|111.353 +638556.277|222194.304|111.591 +638560.749|222190.031|111.514 +638565.248|222185.733|111.581 +638569.777|222181.405|111.575 +638574.261|222177.120|111.618 +638596.859|222155.521|111.216 +638601.370|222151.205|111.002 +638605.942|222146.835|110.847 +638610.389|222142.577|110.323 +638614.851|222138.303|109.902 +638619.380|222133.972|109.573 +638624.132|222129.440|110.454 +638629.186|222124.639|112.718 +638634.002|222120.052|113.739 +638643.356|222111.124|114.639 +638648.096|222106.598|115.077 +638652.805|222102.102|115.638 +638676.479|222079.507|117.897 +638681.297|222074.911|118.683 +638685.991|222070.424|118.784 +638690.704|222065.928|118.997 +638695.398|222061.439|118.857 +638700.037|222057.001|118.689 +638704.700|222052.542|118.394 +638718.794|222039.063|117.952 +638723.515|222034.549|117.775 +638728.218|222030.050|117.510 +638732.992|222025.494|117.699 +638737.704|222020.986|117.537 +638761.439|221998.293|116.833 +638766.309|221993.642|117.208 +638785.707|221975.128|118.991 +638795.351|221965.911|119.000 +638800.255|221961.232|119.802 +638805.071|221956.633|120.000 +638814.843|221947.303|120.792 +638829.629|221933.200|122.801 +638849.218|221914.500|124.410 +638853.927|221909.986|123.295 +638858.804|221905.323|123.146 +638863.699|221900.647|123.569 +638868.549|221896.011|123.222 +638883.115|221882.079|122.505 +638887.882|221877.516|121.945 +638892.735|221872.871|121.301 +638902.436|221863.586|120.469 +638907.322|221858.920|120.573 +638926.628|221840.425|117.327 +638931.481|221835.786|117.217 +638941.253|221826.437|116.309 +638946.194|221821.719|116.669 +638951.174|221816.964|116.964 +638956.106|221812.258|117.254 +638961.077|221807.512|117.531 +638966.094|221802.730|118.299 +638971.077|221797.972|118.775 +638976.094|221793.193|119.622 +638981.072|221788.450|120.622 +638986.061|221783.683|120.768 +638996.056|221774.158|122.356 +639001.039|221769.397|122.530 +639005.989|221764.673|122.902 +639020.970|221750.384|124.642 +639025.969|221745.616|125.160 +639050.847|221721.882|127.556 +639055.843|221717.108|127.638 +639065.672|221707.708|126.971 +639070.625|221702.981|127.193 +639080.510|221693.532|126.663 +639085.420|221688.835|126.312 +639090.355|221684.111|125.624 +639100.203|221674.699|125.368 +639105.171|221669.950|125.249 +639110.103|221665.231|124.462 +639114.995|221660.547|123.844 +639119.945|221655.813|123.338 +639124.840|221651.128|122.780 +639139.693|221636.925|121.414 +639144.658|221632.176|121.295 +639154.531|221622.739|120.789 +639164.425|221613.275|119.723 +639189.153|221589.610|116.669 +639194.118|221584.865|116.525 +639199.090|221580.116|116.617 +639208.971|221570.652|114.843 +639218.950|221561.115|114.605 +639223.864|221556.418|114.285 +639228.826|221551.675|114.038 +639243.706|221537.444|112.977 +639248.665|221532.701|112.575 +639263.546|221518.464|110.954 +639273.470|221508.966|109.814 +639283.361|221499.511|109.219 +639303.234|221480.495|106.833 +639308.160|221475.783|106.510 +639323.040|221461.524|103.163 +639328.020|221456.763|102.821 +639337.929|221447.311|103.666 +639352.804|221433.132|105.827 +639367.650|221418.940|105.168 +639372.585|221414.225|105.022 +639377.526|221409.501|104.583 +639382.461|221404.782|104.379 +639387.399|221400.067|104.342 +639392.330|221395.358|104.470 +639402.206|221385.921|104.355 +639412.036|221376.536|104.379 +639421.957|221367.039|102.834 +639431.857|221357.553|100.691 +639436.804|221352.808|99.185 +639441.714|221348.117|99.002 +639446.618|221343.450|100.395 +639456.387|221334.136|101.514 +639466.132|221324.848|103.199 +639470.990|221320.218|104.269 +639475.839|221315.607|105.650 +639485.645|221306.240|105.668 +639490.479|221301.632|106.208 +639495.365|221296.968|106.641 +639509.864|221283.152|109.216 +639514.689|221278.552|109.905 +639519.557|221273.898|109.737 +639524.409|221269.268|109.920 +639529.259|221264.638|110.195 +639534.108|221260.011|110.463 +639538.921|221255.415|110.569 +639543.737|221250.824|111.399 +639553.390|221241.610|112.002 +639567.868|221227.785|111.959 +639572.720|221223.142|111.591 +639577.576|221218.500|111.216 +639582.398|221213.886|110.682 +639592.139|221204.559|109.067 +639601.835|221195.281|107.637 +639606.745|221190.581|106.820 +639616.252|221181.510|107.470 +639621.080|221176.889|107.153 +639625.893|221172.296|107.119 +639630.642|221167.757|107.244 +639635.384|221163.234|107.512 +639640.090|221158.747|108.213 +639649.570|221149.698|108.826 +639654.315|221145.168|109.113 +639659.012|221140.685|109.399 +639663.752|221136.162|109.774 +639668.425|221131.699|109.844 +639673.167|221127.173|110.216 +639677.809|221122.744|110.655 +639682.500|221118.273|111.109 +639687.191|221113.795|111.551 +639691.812|221109.391|112.240 +639710.310|221091.740|113.995 +639724.228|221078.457|114.828 +639728.861|221074.034|115.038 +639733.433|221069.672|115.398 +639738.026|221065.283|115.547 +639742.656|221060.861|115.419 +639765.854|221038.680|113.913 +639770.539|221034.194|113.099 +639784.417|221020.926|112.246 +639789.016|221016.527|111.840 +639802.711|221003.436|111.243 +639807.252|220999.096|111.014 +639811.852|220994.697|110.749 +639816.326|220990.421|110.710 +639820.868|220986.081|110.563 +639825.418|220981.731|110.377 +639829.893|220977.458|110.408 +639843.271|220964.681|110.606 +639847.690|220960.459|110.758 +639852.113|220956.238|110.905 +639861.114|220947.630|110.185 +639865.500|220943.442|110.316 +639874.351|220934.981|110.082 +639878.822|220930.705|109.695 +639901.030|220909.460|107.509 +639905.465|220905.217|106.878 +639909.967|220900.904|106.156 +639931.952|220879.864|103.483 +639936.323|220875.688|103.138 +639949.375|220863.203|101.977 +639953.660|220859.104|101.633 +639975.130|220838.573|100.267 +639979.385|220834.503|99.932 +639987.807|220826.457|99.844 +639996.311|220818.322|99.085 +640000.596|220814.219|98.411 +640004.815|220810.186|98.140 +640009.052|220806.133|97.786 +640013.541|220801.823|96.082 +640017.595|220797.952|96.485 +640021.695|220794.038|96.668 +640025.788|220790.124|96.607 +640029.833|220786.266|97.106 +640033.762|220782.523|97.948 +640037.758|220778.710|98.448 +640041.808|220774.839|98.667 +640045.823|220771.007|98.841 +640049.794|220767.216|99.243 +640053.854|220763.336|99.203 +640057.945|220759.425|99.030 +640061.956|220755.594|99.271 +640065.882|220751.848|99.700 +640069.890|220748.016|99.731 +640073.819|220744.264|100.157 +640077.793|220740.469|100.383 +640039.641|220775.083|98.576 +640035.523|220778.999|98.338 +640031.470|220782.855|97.795 +640027.425|220786.699|96.942 +640023.292|220790.630|96.558 +640019.101|220794.623|96.512 +640014.943|220798.583|96.558 +640010.661|220802.667|96.765 +640006.193|220806.937|97.999 +640001.971|220810.961|98.182 +639997.689|220815.042|98.445 +639993.309|220819.227|99.277 +639988.950|220823.384|99.740 +639984.677|220827.456|99.752 +639976.081|220835.649|100.097 +639963.109|220848.015|100.923 +639958.717|220852.203|101.163 +639949.984|220860.530|101.691 +639945.610|220864.703|102.184 +639936.881|220873.027|102.828 +639932.437|220877.267|103.224 +639923.616|220885.676|103.958 +639914.722|220894.168|105.263 +639910.244|220898.445|106.001 +639905.755|220902.727|106.516 +639901.259|220907.019|107.107 +639896.739|220911.335|107.893 +639892.307|220915.562|108.436 +639887.817|220919.845|108.762 +639883.334|220924.118|109.064 +639878.902|220928.339|109.372 +639869.941|220936.883|110.064 +639865.484|220941.129|110.286 +639861.043|220945.356|110.085 +639856.602|220949.587|110.240 +639847.550|220958.216|110.804 +639843.158|220962.395|110.679 +639838.662|220966.674|110.615 +639829.686|220975.224|110.460 +639825.235|220979.461|110.484 +639816.140|220988.123|110.609 +639811.663|220992.384|110.530 +639807.082|220996.755|110.905 +639802.528|221001.092|111.097 +639784.176|221018.582|112.036 +639779.540|221022.998|112.228 +639770.274|221031.834|113.066 +639765.595|221036.300|113.715 +639742.250|221058.550|115.337 +639732.985|221067.377|115.401 +639728.336|221071.800|115.157 +639723.691|221076.219|114.904 +639709.707|221089.524|113.800 +639686.338|221111.750|111.627 +639681.632|221116.228|111.176 +639676.880|221120.748|110.704 +639672.162|221125.237|110.390 +639667.419|221129.749|109.862 +639662.691|221134.244|109.661 +639657.872|221138.835|109.475 +639653.160|221143.318|109.173 +639648.347|221147.896|108.917 +639643.608|221152.404|108.418 +639638.822|221156.955|107.906 +639634.025|221161.518|107.509 +639629.224|221166.087|107.208 +639624.363|221170.717|107.080 +639619.538|221175.310|107.098 +639614.637|221179.986|107.506 +639609.805|221184.582|107.064 +639604.959|221189.191|106.796 +639600.009|221193.921|107.976 +639590.164|221203.312|109.076 +639585.187|221208.067|110.134 +639580.246|221212.779|110.728 +639570.392|221222.176|111.679 +639565.487|221226.849|111.877 +639536.007|221254.915|110.755 +639531.100|221259.581|110.384 +639526.186|221264.260|110.152 +639521.224|221268.981|109.942 +639516.290|221273.688|110.182 +639511.343|221278.394|109.737 +639496.566|221292.430|107.070 +639491.628|221297.127|106.439 +639486.684|221301.827|105.882 +639481.716|221306.557|105.876 +639471.740|221316.061|105.866 +639466.796|221320.746|104.129 +639461.864|221325.434|103.321 +639451.919|221334.876|101.078 +639446.923|221339.628|100.621 +639437.014|221349.040|98.475 +639426.864|221358.742|101.188 +639411.761|221373.165|104.477 +639406.766|221377.923|104.339 +639401.764|221382.690|104.437 +639386.719|221397.022|104.577 +639381.723|221401.777|104.422 +639376.724|221406.538|104.528 +639371.677|221411.348|104.809 +639366.678|221416.115|105.178 +639361.679|221420.882|105.632 +639356.635|221425.689|105.830 +639351.642|221430.443|105.879 +639336.625|221444.736|105.010 +639331.638|221449.469|103.626 +639321.604|221459.015|102.809 +639311.573|221468.598|105.217 +639301.551|221478.163|106.686 +639286.555|221492.470|108.509 +639276.591|221501.971|109.436 +639271.562|221506.766|109.707 +639266.579|221511.511|109.701 +639256.633|221521.006|111.316 +639241.707|221535.237|112.560 +639236.736|221539.980|113.081 +639231.761|221544.719|113.441 +639226.790|221549.462|113.883 +639221.809|221554.205|113.986 +639216.884|221558.902|114.431 +639206.941|221568.381|115.221 +639197.069|221577.802|116.614 +639167.451|221606.042|119.134 +639162.495|221610.773|119.759 +639147.722|221624.861|120.597 +639142.759|221629.597|121.045 +639137.877|221634.251|121.225 +639123.124|221648.324|122.542 +639118.193|221653.027|122.710 +639113.340|221657.660|123.475 +639108.442|221662.336|124.231 +639103.562|221666.999|125.319 +639098.673|221671.660|125.416 +639093.784|221676.320|125.557 +639083.997|221685.659|126.419 +639079.056|221690.365|126.520 +639074.179|221695.017|126.898 +639069.296|221699.674|127.175 +639064.395|221704.343|127.196 +639049.713|221718.343|127.644 +639044.754|221723.067|127.605 +639020.013|221746.607|124.898 +639005.093|221760.802|123.194 +639000.207|221765.450|122.600 +638995.242|221770.174|122.259 +638990.289|221774.893|122.057 +638980.285|221784.399|120.192 +638975.403|221789.051|119.808 +638970.398|221793.808|119.220 +638965.457|221798.509|118.308 +638960.464|221803.251|117.446 +638950.616|221812.633|117.162 +638945.675|221817.339|116.894 +638940.774|221822.006|116.586 +638926.180|221835.920|117.324 +638921.368|221840.513|117.924 +638902.162|221858.850|120.841 +638897.371|221863.422|121.244 +638892.539|221868.030|121.750 +638887.724|221872.621|121.975 +638882.905|221877.223|122.591 +638878.098|221881.804|122.932 +638873.252|221886.425|122.932 +638868.457|221891.000|123.402 +638863.663|221895.572|123.889 +638858.810|221900.193|123.527 +638853.921|221904.847|123.286 +638849.160|221909.392|123.682 +638839.510|221918.588|123.959 +638824.898|221932.493|122.554 +638815.056|221941.850|120.905 +638810.204|221946.468|120.475 +638800.551|221955.661|120.030 +638795.692|221960.288|119.634 +638786.039|221969.480|119.037 +638781.312|221973.982|118.961 +638771.710|221983.129|118.537 +638757.330|221996.824|117.583 +638752.432|222001.481|116.848 +638738.304|222014.957|117.510 +638728.923|222023.899|117.659 +638724.244|222028.359|117.857 +638719.547|222032.842|118.241 +638714.908|222037.268|118.385 +638700.960|222050.566|119.083 +638691.557|222059.531|119.107 +638672.812|222077.386|118.324 +638668.173|222081.808|118.388 +638658.666|222090.852|117.010 +638653.960|222095.332|116.477 +638649.299|222099.770|116.242 +638639.842|222108.765|114.809 +638635.160|222113.224|114.529 +638620.734|222126.925|110.743 +638615.979|222131.445|109.926 +638611.431|222135.780|109.954 +638606.911|222140.096|110.408 +638584.496|222161.477|111.819 +638579.954|222165.799|111.505 +638575.437|222170.106|111.575 +638570.880|222174.447|111.475 +638566.397|222178.723|111.499 +638561.934|222182.975|111.655 +638557.408|222187.288|111.508 +638552.906|222191.579|111.505 +638548.398|222195.871|111.252 +638543.887|222200.169|110.996 +638539.404|222204.436|110.664 +638534.868|222208.755|110.326 +638525.867|222217.326|109.835 +638516.632|222226.101|107.872 +638512.176|222230.347|107.552 +638507.835|222234.486|107.787 +638503.309|222238.793|107.189 +638489.959|222251.500|106.110 +638481.077|222259.955|105.196 +638472.277|222268.334|104.736 +638450.387|222289.177|102.931 +638446.004|222293.340|102.364 +638441.703|222297.440|102.367 +638437.405|222301.533|102.194 +638433.181|222305.557|102.114 +638428.926|222309.613|102.151 +638424.622|222313.707|101.779 +638410.988|222326.643|97.402 +638406.611|222330.803|96.610 +638402.100|222335.086|95.296 +638393.419|222343.337|93.930 +638385.056|222351.301|93.476 +638380.910|222355.248|93.330 +638370.029|222365.685|98.859 +638366.646|222368.943|101.508 +638363.140|222372.305|103.477 +638359.391|222375.892|104.705 +638355.472|222379.629|104.867 +638351.485|222383.427|104.998 +638347.599|222387.133|105.315 +638343.578|222390.965|105.129 +638339.488|222394.854|104.702 +638335.654|222398.512|105.050 +638440.121|222296.787|102.315 +638444.376|222292.724|102.379 +638448.759|222288.543|102.806 +638466.255|222271.858|104.736 +638479.254|222259.449|105.007 +638488.194|222250.924|106.058 +638501.508|222238.223|107.122 +638506.022|222233.919|107.713 +638510.365|222229.768|107.546 +638514.748|222225.583|107.579 +638519.384|222221.169|108.567 +638533.045|222208.145|110.292 +638537.502|222203.893|110.539 +638542.080|222199.522|110.908 +638546.618|222195.191|111.106 +638551.120|222190.897|111.389 +638555.631|222186.590|111.490 +638560.130|222182.295|111.560 +638569.146|222173.685|111.581 +638573.642|222169.390|111.447 +638578.162|222165.074|111.438 +638587.327|222156.323|111.877 +638600.864|222143.384|111.228 +638605.301|222139.132|110.396 +638609.761|222134.868|109.948 +638614.418|222130.418|110.039 +638619.155|222125.904|110.819 +638633.575|222112.170|113.986 +638638.357|222107.613|114.882 +638657.413|222089.438|117.287 +638671.583|222075.917|118.406 +638676.393|222071.332|119.140 +638685.805|222062.341|119.214 +638695.224|222053.346|119.400 +638699.890|222048.887|119.116 +638713.935|222035.457|118.375 +638718.657|222030.946|118.202 +638723.326|222026.478|117.741 +638728.060|222021.955|117.674 +638737.576|222012.869|117.927 +638751.780|221999.290|117.083 +638766.282|221985.449|118.058 +638775.911|221976.256|118.479 +638780.818|221971.571|118.872 +638785.643|221966.966|119.043 +638795.363|221957.688|119.634 +638800.212|221953.061|120.064 +638809.917|221943.795|120.351 +638819.726|221934.440|121.518 +638834.557|221920.301|123.709 +638839.388|221915.683|123.511 +638849.066|221906.435|123.301 +638853.958|221901.763|123.264 +638858.853|221897.093|123.664 +638868.607|221887.775|123.456 +638873.398|221883.191|123.091 +638878.305|221878.500|122.908 +638883.106|221873.910|122.643 +638887.974|221869.259|122.118 +638892.808|221864.632|121.774 +638897.630|221860.017|120.887 +638912.178|221846.100|119.476 +638926.671|221832.229|117.174 +638931.584|221827.529|116.751 +638936.470|221822.859|116.556 +638941.405|221818.150|116.812 +638946.376|221813.401|117.016 +638961.299|221799.155|117.897 +638971.312|221789.611|119.308 +638976.329|221784.829|120.198 +638981.300|221780.083|120.652 +638986.382|221775.246|121.807 +638991.319|221770.531|121.966 +638996.318|221765.758|122.301 +639001.301|221761.009|123.039 +639006.334|221756.211|123.816 +639021.327|221741.907|125.230 +639046.293|221718.087|127.498 +639051.249|221713.347|127.032 +639056.227|221708.595|127.574 +639061.155|221703.886|127.410 +639066.133|221699.131|127.306 +639071.034|221694.443|126.770 +639085.878|221680.249|125.989 +639090.840|221675.506|125.685 +639095.802|221670.764|125.444 +639100.770|221666.015|125.270 +639105.696|221661.296|124.432 +639115.565|221651.851|122.954 +639125.416|221642.426|121.993 +639135.371|221632.907|121.155 +639140.291|221628.207|121.024 +639145.241|221623.471|120.591 +639150.255|221618.679|120.475 +639160.109|221609.255|119.521 +639165.101|221604.475|118.973 +639174.998|221595.008|117.818 +639189.909|221580.750|116.580 +639214.683|221557.052|114.331 +639219.694|221552.263|114.117 +639224.653|221547.520|113.688 +639229.612|221542.778|113.252 +639234.617|221537.989|112.773 +639239.534|221533.289|112.502 +639279.240|221495.308|108.674 +639289.134|221485.850|107.988 +639299.025|221476.380|106.634 +639313.902|221462.137|103.974 +639318.882|221457.373|103.480 +639323.814|221452.670|104.260 +639353.447|221424.375|105.741 +639363.319|221414.935|105.208 +639368.254|221410.220|105.107 +639373.198|221405.493|104.632 +639378.087|221400.820|104.559 +639383.022|221396.108|104.714 +639402.684|221377.314|104.379 +639407.576|221372.641|104.419 +639412.520|221367.914|104.312 +639427.257|221353.792|100.944 +639432.244|221349.010|99.688 +639437.115|221344.350|99.225 +639451.690|221330.463|102.020 +639461.386|221321.221|103.769 +639480.762|221302.738|106.226 +639485.636|221298.078|105.915 +639490.473|221293.460|106.400 +639495.301|221288.858|107.107 +639504.933|221279.677|108.942 +639514.561|221270.490|109.911 +639519.371|221265.897|110.036 +639524.220|221261.267|110.289 +639529.033|221256.668|110.387 +639533.870|221252.053|110.911 +639538.628|221247.523|111.990 +639548.251|221238.331|112.313 +639553.039|221233.756|112.139 +639562.717|221224.505|111.767 +639567.527|221219.902|111.362 +639572.388|221215.251|110.890 +639586.927|221201.337|109.158 +639601.433|221187.456|107.607 +639606.261|221182.842|107.275 +639610.997|221178.319|107.528 +639615.834|221173.692|107.131 +639620.641|221169.101|107.180 +639625.375|221164.578|107.506 +639630.142|221160.024|107.491 +639634.881|221155.501|107.805 +639639.673|221150.923|108.070 +639649.109|221141.925|109.265 +639653.806|221137.442|109.591 +639658.558|221132.903|109.844 +639663.313|221128.362|110.057 +639668.004|221123.884|110.481 +639677.419|221114.899|111.048 +639682.116|221110.415|111.453 +639686.822|221105.922|111.776 +639696.155|221097.016|112.773 +639700.837|221092.554|113.392 +639705.452|221088.146|113.715 +639719.436|221074.802|114.876 +639724.078|221070.367|114.998 +639728.748|221065.911|115.364 +639733.411|221061.455|115.361 +639738.020|221057.051|115.419 +639742.747|221052.533|115.327 +639780.125|221016.780|112.285 +639784.764|221012.345|111.972 +639789.388|221007.926|111.801 +639793.972|221003.543|111.584 +639798.572|220999.145|111.289 +639803.198|220994.722|111.158 +639807.743|220990.375|110.941 +639812.327|220985.995|110.847 +639816.887|220981.634|110.563 +639821.395|220977.330|110.704 +639825.921|220973.005|110.719 +639830.441|220968.683|110.795 +639834.916|220964.409|110.883 +639839.396|220960.130|110.947 +639848.348|220951.574|110.832 +639852.853|220947.264|110.441 +639866.228|220934.484|110.380 +639870.700|220930.208|109.981 +639879.639|220921.658|109.283 +639892.993|220908.881|108.128 +639897.473|220904.592|107.506 +639906.376|220896.067|106.092 +639910.793|220891.839|105.638 +639924.128|220879.074|103.629 +639928.478|220874.911|103.385 +639932.790|220870.787|103.087 +639950.256|220854.075|101.176 +639958.735|220845.970|101.118 +639975.722|220829.724|100.188 +639979.964|220825.667|99.959 +639984.113|220821.705|100.011 +639992.681|220813.500|98.643 +639996.856|220809.504|98.313 +640000.983|220805.560|98.262 +640005.403|220801.314|96.646 +640013.587|220793.499|96.780 +640017.644|220789.622|96.908 +640021.658|220785.790|97.286 +640025.572|220782.059|97.939 +640029.543|220778.268|98.289 +640033.548|220774.446|98.487 +640037.529|220770.642|98.807 +640041.424|220766.929|99.341 +640045.423|220763.107|99.347 +640049.432|220759.276|99.304 +640053.434|220755.450|99.319 +640057.372|220751.692|99.432 +640061.270|220747.971|99.740 +640069.064|220740.527|100.407 +640072.895|220736.873|100.840 +640076.723|220733.221|101.291 +640080.628|220729.490|101.380 +640029.443|220776.162|98.274 +640025.319|220780.093|98.124 +640021.277|220783.940|97.545 +640017.217|220787.802|97.067 +640013.084|220791.740|96.732 +640004.717|220799.710|96.360 +640000.176|220804.060|98.015 +639995.896|220808.144|98.271 +639991.608|220812.238|98.600 +639982.833|220820.620|99.871 +639978.559|220824.692|99.889 +639974.243|220828.810|100.176 +639969.812|220833.043|100.593 +639965.404|220837.253|101.163 +639956.842|220845.412|100.919 +639952.429|220849.625|101.294 +639939.082|220862.365|102.648 +639934.711|220866.538|102.882 +639930.288|220870.756|103.154 +639925.853|220874.990|103.507 +639921.354|220879.285|103.992 +639916.862|220883.576|104.461 +639907.818|220892.214|105.842 +639903.286|220896.543|106.336 +639898.720|220900.904|107.049 +639894.224|220905.199|107.686 +639880.575|220918.232|109.198 +639866.963|220931.226|110.393 +639853.463|220944.098|110.356 +639848.928|220948.423|110.524 +639839.845|220957.088|111.021 +639835.254|220961.462|110.938 +639830.761|220965.744|110.896 +639826.235|220970.060|110.761 +639817.103|220978.769|110.786 +639812.574|220983.085|110.737 +639808.002|220987.443|110.655 +639803.372|220991.860|111.033 +639798.767|220996.255|111.255 +639794.115|221000.693|111.496 +639789.519|221005.076|111.691 +639784.932|221009.453|111.856 +639780.299|221013.872|112.023 +639766.372|221027.168|113.322 +639752.321|221040.582|114.696 +639743.022|221049.455|115.349 +639738.386|221053.878|115.391 +639733.695|221058.352|115.501 +639729.083|221062.747|115.373 +639724.435|221067.173|115.129 +639719.845|221071.547|114.834 +639705.952|221084.781|113.861 +639701.273|221089.237|113.550 +639691.980|221098.089|112.825 +639687.362|221102.478|111.956 +639682.683|221106.937|111.703 +639678.041|221111.357|111.109 +639668.626|221120.327|110.792 +639654.587|221133.702|109.838 +639649.835|221138.225|109.436 +639645.135|221142.703|109.061 +639640.465|221147.144|108.287 +639635.713|221151.673|107.970 +639630.949|221156.211|107.781 +639626.201|221160.741|108.009 +639621.443|221165.276|107.811 +639616.734|221169.754|107.006 +639611.951|221174.316|107.156 +639602.283|221183.540|107.598 +639578.024|221206.711|110.637 +639573.168|221211.338|110.725 +639568.337|221215.949|111.216 +639563.418|221220.649|111.670 +639558.559|221225.282|111.938 +639553.713|221229.903|112.042 +639548.815|221234.579|112.285 +639543.978|221239.190|112.319 +639529.420|221253.053|110.908 +639524.571|221257.667|110.396 +639519.655|221262.349|110.201 +639514.790|221266.982|109.987 +639500.105|221280.957|108.378 +639495.228|221285.593|107.461 +639490.351|221290.229|106.516 +639485.453|221294.890|106.004 +639480.488|221299.626|106.001 +639431.073|221346.636|99.633 +639426.029|221351.461|100.828 +639400.956|221375.403|104.592 +639380.915|221394.504|104.711 +639375.920|221399.265|104.638 +639370.875|221404.072|104.723 +639365.828|221408.891|105.165 +639360.832|221413.652|105.330 +639350.746|221423.272|105.839 +639340.712|221432.842|106.385 +639325.652|221447.174|104.751 +639320.614|221451.969|104.123 +639315.572|221456.751|102.535 +639310.534|221461.576|104.160 +639285.418|221485.561|107.970 +639270.331|221499.953|109.158 +639265.301|221504.751|109.430 +639260.272|221509.545|109.701 +639255.249|221514.340|110.362 +639240.189|221528.717|112.145 +639235.029|221533.640|112.612 +639220.109|221547.877|113.745 +639215.092|221552.662|114.191 +639205.094|221562.200|114.736 +639180.094|221586.044|116.568 +639175.141|221590.775|117.388 +639160.221|221605.021|119.320 +639150.279|221614.500|119.945 +639135.374|221628.713|121.036 +639130.378|221633.468|120.917 +639120.497|221642.893|121.823 +639115.550|221647.614|122.643 +639105.696|221657.020|123.993 +639095.899|221666.368|125.566 +639090.943|221671.087|125.355 +639086.006|221675.802|126.233 +639081.104|221680.471|126.206 +639076.188|221685.159|126.657 +639071.256|221689.859|126.937 +639066.325|221694.559|127.209 +639061.390|221699.262|127.416 +639051.588|221708.601|127.532 +639046.644|221713.305|127.050 +639041.730|221717.992|127.638 +639036.780|221722.699|127.111 +639017.072|221741.450|125.407 +639007.199|221750.841|124.535 +638997.257|221760.293|122.987 +638992.307|221764.999|122.249 +638987.329|221769.732|121.789 +638982.440|221774.380|121.320 +638977.451|221779.129|120.789 +638972.562|221783.777|120.375 +638967.560|221788.529|119.284 +638938.016|221816.641|116.982 +638933.063|221821.353|116.662 +638923.428|221830.540|117.318 +638918.606|221835.139|117.848 +638913.812|221839.718|118.634 +638909.057|221844.259|119.796 +638894.679|221857.972|121.405 +638885.148|221867.067|122.704 +638856.351|221894.515|124.410 +638851.416|221899.209|123.789 +638846.554|221903.832|123.420 +638841.781|221908.383|123.755 +638827.263|221922.203|122.993 +638822.316|221926.903|122.109 +638812.557|221936.184|121.097 +638802.831|221945.441|120.427 +638798.051|221949.988|120.219 +638788.334|221959.233|119.457 +638783.497|221963.835|119.262 +638773.862|221973.004|118.884 +638769.086|221977.548|118.854 +638759.518|221986.650|118.442 +638740.423|222004.825|118.119 +638735.692|222009.330|118.223 +638730.965|222013.832|118.366 +638721.516|222022.823|118.129 +638716.834|222027.286|118.616 +638712.094|222031.794|118.455 +638698.211|222045.025|119.531 +638693.493|222049.518|119.573 +638679.484|222062.850|119.543 +638670.029|222071.842|118.860 +638655.865|222085.305|117.437 +638632.191|222107.805|114.581 +638618.079|222121.216|113.005 +638613.068|222125.959|110.816 +638608.307|222130.482|109.981 +638603.826|222134.749|110.399 +638599.422|222138.949|110.950 +638594.923|222143.238|111.557 +638590.442|222147.511|111.993 +638585.916|222151.818|111.965 +638581.378|222156.137|111.895 +638576.797|222160.493|111.636 +638572.264|222164.809|111.636 +638567.777|222169.079|111.633 +638563.306|222173.334|111.734 +638558.783|222177.638|111.588 +638554.293|222181.911|111.618 +638549.822|222186.166|111.523 +638540.821|222194.728|111.103 +638536.279|222199.047|110.725 +638531.717|222203.384|110.274 +638509.018|222224.949|107.485 +638500.203|222233.340|107.601 +638495.738|222237.586|107.067 +638486.835|222246.050|106.433 +638482.357|222250.305|105.924 +638477.858|222254.582|105.324 +638464.612|222267.173|104.348 +638456.019|222275.351|104.461 +638442.733|222287.973|102.486 +638438.405|222292.093|102.376 +638434.129|222296.163|102.285 +638425.686|222304.200|102.386 +638421.443|222308.236|102.264 +638407.833|222321.144|98.387 +638394.544|222333.754|95.208 +638390.118|222337.954|94.287 +638381.688|222345.970|93.565 +638377.494|222349.963|93.409 +638373.400|222353.858|93.473 +638362.641|222364.173|99.487 +638359.163|222367.513|101.767 +638355.603|222370.927|103.724 +638351.845|222374.518|104.925 +638347.876|222378.297|105.110 +638343.892|222382.092|105.254 +638339.945|222385.853|105.546 +638335.928|222389.672|105.391 +638331.859|222393.543|105.040 +638430.864|222296.751|102.203 +638435.147|222292.657|102.154 +638439.417|222288.582|102.276 +638443.891|222284.318|103.081 +638457.114|222271.711|104.522 +638461.308|222267.700|104.190 +638465.797|222263.424|104.940 +638474.548|222255.072|105.281 +638478.895|222250.921|105.476 +638487.877|222242.356|106.516 +638492.367|222238.077|106.939 +638505.720|222225.333|107.598 +638514.782|222216.695|108.808 +638523.901|222207.999|109.914 +638528.385|222203.720|110.021 +638532.899|222199.416|110.524 +638537.468|222195.057|110.841 +638541.970|222190.763|111.094 +638546.521|222186.419|111.368 +638551.044|222182.103|111.523 +638555.543|222177.805|111.591 +638560.057|222173.499|111.737 +638564.522|222169.228|111.435 +638569.067|222164.891|111.520 +638573.636|222160.532|111.752 +638578.196|222156.180|111.719 +638582.749|222151.836|111.904 +638587.300|222147.490|111.859 +638591.808|222143.186|111.603 +638596.340|222138.855|111.234 +638600.736|222134.649|110.429 +638605.262|222130.324|110.054 +638609.959|222125.846|110.597 +638614.948|222121.113|112.715 +638619.697|222116.586|113.337 +638629.109|222107.613|114.194 +638648.272|222089.368|117.546 +638653.033|222084.823|117.897 +638667.246|222071.275|118.936 +638671.922|222066.812|119.177 +638681.392|222057.778|119.558 +638695.504|222044.309|119.582 +638718.989|222021.876|118.436 +638728.542|222012.759|118.543 +638738.051|222003.682|118.467 +638742.788|221999.159|118.186 +638747.622|221994.544|118.250 +638752.465|221989.926|118.711 +638757.269|221985.345|118.927 +638762.054|221980.773|118.744 +638766.888|221976.165|118.878 +638796.015|221948.379|120.155 +638800.883|221943.734|120.399 +638810.630|221934.440|121.009 +638820.530|221925.004|122.182 +638840.147|221906.298|123.481 +638844.985|221901.677|123.362 +638849.901|221896.993|123.883 +638869.442|221878.339|123.691 +638874.288|221873.709|123.371 +638879.159|221869.058|123.286 +638884.045|221864.388|122.941 +638888.906|221859.743|122.374 +638893.695|221855.162|121.625 +638908.218|221841.272|119.503 +638913.050|221836.651|118.705 +638917.926|221831.985|117.912 +638922.779|221827.346|117.333 +638932.633|221817.933|116.711 +638957.526|221794.189|118.183 +638972.592|221779.836|120.332 +638977.573|221775.088|120.875 +638982.596|221770.302|121.378 +638987.607|221765.526|121.774 +639002.667|221751.179|124.136 +639017.663|221736.884|125.563 +639027.719|221727.301|126.864 +639032.681|221722.567|127.017 +639037.710|221717.773|127.471 +639042.657|221713.052|127.507 +639047.656|221708.281|127.617 +639057.568|221698.817|127.361 +639062.545|221694.062|127.257 +639067.495|221689.332|126.733 +639072.415|221684.632|126.450 +639077.428|221679.844|126.203 +639082.406|221675.092|126.160 +639092.318|221665.622|125.380 +639097.292|221660.870|125.319 +639102.233|221656.145|124.700 +639112.139|221646.669|122.999 +639146.905|221613.446|119.896 +639156.863|221603.930|119.150 +639161.861|221599.151|118.677 +639171.801|221589.647|117.373 +639201.668|221561.099|114.337 +639206.685|221556.311|114.255 +639211.654|221551.568|114.120 +639216.664|221546.780|113.892 +639221.621|221542.043|113.307 +639226.622|221537.258|112.740 +639241.564|221522.987|111.844 +639246.514|221518.247|110.755 +639251.528|221513.456|110.384 +639261.458|221503.964|109.292 +639271.440|221494.424|108.347 +639276.415|221489.675|108.140 +639286.403|221480.129|107.403 +639296.303|221470.665|106.253 +639301.274|221465.907|105.184 +639306.251|221461.140|104.099 +639311.229|221456.379|103.599 +639316.209|221451.627|103.913 +639321.141|221446.933|104.982 +639336.027|221432.733|106.092 +639340.956|221428.033|106.449 +639355.809|221413.832|105.324 +639360.701|221409.159|105.080 +639365.636|221404.444|104.900 +639370.574|221399.726|104.739 +639375.508|221395.020|104.925 +639414.791|221357.477|102.812 +639419.729|221352.747|101.413 +639434.365|221338.763|100.624 +639439.263|221334.084|100.770 +639453.708|221320.337|104.309 +639458.472|221315.820|106.723 +639482.670|221292.710|106.488 +639487.465|221288.138|106.909 +639492.232|221283.597|107.872 +639496.987|221279.073|109.082 +639511.337|221265.382|109.969 +639516.140|221260.798|110.231 +639520.898|221256.256|110.429 +639525.687|221251.693|110.993 +639530.420|221247.179|111.642 +639535.166|221242.656|112.127 +639544.700|221233.554|112.359 +639559.029|221219.863|111.731 +639573.360|221206.162|110.649 +639578.167|221201.569|110.399 +639602.057|221178.724|107.768 +639606.779|221174.213|107.598 +639611.576|221169.623|107.104 +639616.252|221165.166|107.589 +639620.888|221160.753|108.543 +639630.346|221151.716|108.235 +639635.073|221147.201|108.152 +639639.758|221142.733|108.582 +639644.400|221138.304|108.945 +639649.088|221133.836|109.384 +639653.727|221129.410|109.801 +639677.051|221107.154|111.359 +639681.635|221102.783|111.959 +639686.295|221098.333|112.255 +639695.500|221089.548|113.118 +639700.148|221085.117|113.614 +639704.757|221080.718|114.020 +639718.574|221067.530|114.934 +639723.246|221063.070|115.254 +639727.788|221058.736|115.489 +639732.448|221054.283|115.510 +639737.124|221049.815|115.419 +639741.757|221045.389|115.321 +639751.023|221036.531|114.776 +639760.386|221027.573|113.913 +639765.050|221023.111|113.294 +639769.747|221018.615|112.810 +639774.340|221014.226|112.441 +639778.976|221009.791|112.121 +639783.612|221005.356|111.834 +639788.169|221001.004|111.825 +639792.805|220996.575|111.606 +639797.398|220992.183|111.365 +639801.985|220987.800|111.185 +639806.606|220983.380|110.783 +639811.157|220979.034|110.929 +639815.665|220974.727|111.033 +639824.772|220966.025|111.027 +639829.253|220961.745|111.057 +639833.849|220957.353|110.978 +639842.807|220948.795|110.813 +639847.379|220944.424|110.621 +639856.298|220935.908|110.874 +639887.848|220905.735|108.332 +639892.328|220901.444|107.686 +639896.851|220897.116|107.128 +639901.405|220892.757|106.400 +639905.849|220888.502|105.760 +639914.816|220879.919|104.412 +639923.698|220871.418|103.385 +639928.087|220867.218|102.922 +639932.409|220863.091|102.901 +639949.890|220846.366|101.246 +639954.148|220842.303|101.413 +639975.523|220821.866|100.255 +639979.766|220817.809|100.039 +639984.101|220813.658|99.331 +639988.356|220809.586|98.822 +640001.102|220797.385|97.231 +640005.315|220793.358|96.783 +640009.375|220789.481|97.155 +640013.465|220785.574|97.390 +640017.415|220781.809|98.118 +640021.420|220777.984|98.292 +640025.514|220774.071|98.274 +640029.519|220770.248|98.484 +640033.512|220766.435|98.768 +640037.486|220762.641|99.149 +640041.437|220758.870|99.408 +640045.423|220755.060|99.496 +640049.395|220751.268|99.682 +640053.333|220747.504|99.789 +640061.151|220740.043|100.343 +640064.952|220736.416|100.916 +640068.823|220732.718|101.151 +640072.731|220728.985|101.224 +640076.556|220725.333|101.459 +640080.360|220721.703|101.822 +640018.823|220778.103|98.368 +640014.760|220781.968|98.164 +640010.761|220785.766|97.631 +640006.766|220789.564|97.094 +640002.642|220793.486|96.991 +639989.874|220805.660|98.405 +639985.606|220809.729|98.896 +639972.750|220821.988|100.240 +639951.207|220842.511|101.395 +639946.887|220846.619|101.230 +639933.650|220859.241|102.797 +639929.273|220863.414|103.065 +639924.875|220867.602|103.172 +639911.491|220880.364|104.809 +639906.956|220884.692|105.565 +639897.940|220893.290|106.820 +639875.323|220914.855|109.372 +639857.105|220932.223|110.792 +639852.610|220936.502|110.963 +639843.563|220945.116|110.768 +639838.964|220949.499|111.066 +639829.865|220958.167|111.359 +639825.318|220962.489|110.984 +639820.782|220966.808|110.920 +639816.165|220971.210|111.112 +639811.590|220975.562|110.996 +639807.011|220979.918|110.935 +639802.403|220984.313|111.146 +639797.736|220988.757|111.426 +639793.149|220993.128|111.505 +639788.440|220997.614|111.813 +639783.877|221001.961|111.761 +639779.183|221006.432|111.987 +639774.526|221010.873|112.350 +639765.107|221019.850|113.188 +639760.423|221024.315|113.477 +639741.580|221042.280|115.337 +639732.207|221051.208|115.401 +639727.526|221055.667|115.443 +639722.890|221060.080|115.498 +639713.535|221068.977|114.712 +639704.214|221077.844|114.096 +639699.557|221082.273|113.572 +639694.881|221086.720|113.215 +639680.842|221100.070|111.911 +639676.130|221104.554|111.502 +639671.403|221109.053|111.277 +639661.920|221118.078|111.146 +639657.174|221122.592|110.649 +639652.499|221127.033|109.911 +639647.747|221131.553|109.524 +639643.044|221136.027|109.106 +639638.298|221140.542|108.668 +639633.559|221145.053|108.695 +639628.740|221149.643|108.600 +639623.966|221154.191|109.073 +639619.163|221158.763|108.823 +639614.448|221163.243|108.101 +639609.711|221167.742|107.046 +639604.926|221172.299|107.174 +639600.070|221176.929|107.683 +639595.279|221181.498|107.988 +639575.872|221200.005|110.301 +639566.173|221209.250|110.966 +639561.360|221213.837|111.197 +639556.481|221218.488|111.703 +639551.616|221223.127|112.078 +639546.773|221227.739|112.112 +639532.267|221241.552|112.075 +639527.448|221246.137|111.819 +639522.678|221250.663|110.710 +639517.814|221255.293|110.448 +639512.949|221259.926|110.210 +639508.087|221264.556|109.948 +639503.229|221269.177|109.585 +639483.847|221287.617|107.311 +639478.955|221292.268|106.656 +639469.119|221301.656|107.784 +639459.362|221310.943|107.183 +639449.654|221320.154|103.974 +639444.759|221324.793|102.056 +639425.139|221343.444|99.005 +639370.388|221395.693|105.165 +639365.395|221400.448|104.940 +639360.448|221405.166|105.046 +639355.449|221409.927|105.245 +639350.454|221414.691|105.476 +639340.462|221424.226|106.427 +639335.473|221428.974|106.058 +639330.480|221433.738|106.528 +639310.424|221452.813|103.910 +639300.439|221462.332|104.370 +639280.356|221481.507|107.323 +639275.372|221486.262|107.753 +639270.392|221491.013|108.207 +639260.333|221500.606|108.887 +639250.284|221510.198|109.999 +639200.114|221558.054|114.163 +639185.063|221572.410|115.516 +639180.104|221577.147|116.214 +639140.099|221615.314|120.024 +639135.124|221620.057|120.280 +639125.090|221629.631|120.978 +639120.119|221634.373|121.320 +639105.269|221648.556|123.475 +639090.361|221662.787|125.368 +639085.375|221667.542|125.435 +639080.409|221672.278|125.889 +639075.432|221677.027|126.111 +639070.473|221681.761|126.642 +639065.529|221686.473|126.754 +639060.561|221691.216|127.160 +639050.676|221700.640|127.398 +639040.734|221710.116|127.617 +639035.811|221714.807|127.422 +639030.770|221719.605|126.977 +639020.833|221729.066|126.215 +639015.834|221733.824|125.816 +638990.981|221757.479|123.149 +638980.977|221766.986|121.149 +638976.015|221771.713|120.899 +638971.068|221776.423|120.357 +638966.134|221781.120|119.976 +638951.250|221795.281|118.193 +638931.560|221814.029|116.928 +638926.759|221818.616|117.607 +638921.813|221823.328|117.376 +638917.042|221827.879|117.946 +638912.163|221832.536|118.375 +638897.825|221846.231|120.735 +638893.055|221850.785|121.332 +638883.539|221859.880|123.149 +638878.735|221864.461|123.484 +638873.922|221869.052|123.755 +638869.079|221873.669|123.767 +638864.364|221878.171|124.484 +638854.732|221887.355|124.676 +638844.954|221896.660|123.807 +638840.089|221901.293|123.399 +638835.271|221905.887|123.399 +638830.473|221910.462|123.575 +638820.674|221919.780|122.097 +638806.156|221933.602|120.920 +638801.313|221938.214|120.567 +638796.488|221942.810|120.363 +638786.835|221951.997|119.680 +638762.899|221974.802|119.259 +638758.074|221979.399|119.268 +638720.025|222015.648|118.833 +638715.328|222020.123|118.912 +638696.623|222037.957|119.872 +638691.877|222042.477|119.744 +638687.235|222046.903|119.960 +638682.575|222051.344|120.085 +638677.798|222055.891|119.851 +638673.147|222060.323|119.784 +638668.401|222064.840|119.473 +638663.735|222069.290|119.640 +638659.017|222073.777|119.265 +638654.243|222078.319|118.595 +638640.125|222091.757|117.598 +638635.337|222096.311|116.955 +638625.610|222105.546|114.416 +638620.883|222110.042|113.931 +638611.462|222119.003|112.962 +638606.365|222123.831|110.600 +638601.690|222128.281|110.243 +638597.191|222132.573|110.560 +638592.741|222136.822|111.408 +638588.284|222141.074|111.987 +638583.691|222145.448|111.868 +638579.128|222149.797|111.926 +638574.523|222154.183|111.773 +638569.948|222158.539|111.563 +638565.440|222162.834|111.441 +638560.865|222167.192|111.523 +638556.357|222171.490|111.685 +638551.843|222175.791|111.603 +638547.335|222180.082|111.569 +638542.750|222184.444|111.188 +638538.248|222188.733|111.219 +638533.698|222193.064|110.792 +638524.578|222201.741|109.926 +638520.052|222206.051|109.692 +638515.474|222210.404|108.981 +638510.975|222214.686|108.683 +638506.269|222219.155|107.436 +638501.886|222223.334|107.710 +638497.530|222227.485|107.893 +638492.937|222231.853|107.241 +638488.401|222236.166|106.650 +638479.541|222244.599|106.250 +638470.622|222253.091|105.656 +638466.270|222257.233|105.528 +638461.841|222261.452|105.309 +638453.160|222269.718|105.242 +638439.716|222282.501|103.017 +638435.351|222286.653|102.757 +638430.968|222290.826|102.428 +638422.424|222298.958|102.331 +638404.508|222315.962|98.292 +638399.994|222320.242|96.942 +638395.458|222324.543|95.521 +638391.051|222328.727|94.653 +638386.744|222332.821|94.217 +638382.416|222336.936|93.711 +638378.164|222340.974|93.330 +638373.949|222344.986|93.098 +638369.849|222348.890|93.144 +638365.768|222352.779|93.476 +638362.196|222356.205|95.613 +638355.161|222362.957|100.109 +638351.616|222366.361|102.337 +638348.080|222369.751|104.409 +638344.215|222373.439|104.995 +638340.183|222377.279|105.156 +638336.205|222381.068|105.339 +638332.237|222384.844|105.376 +638328.229|222388.657|105.269 +638417.694|222300.607|102.181 +638422.113|222296.391|102.657 +638439.539|222279.767|103.940 +638448.427|222271.297|105.114 +638461.622|222258.706|105.668 +638466.035|222254.493|105.888 +638470.403|222250.321|105.918 +638483.765|222237.571|106.598 +638488.237|222233.307|106.942 +638492.882|222228.881|107.872 +638497.274|222224.684|107.668 +638501.660|222220.496|107.689 +638506.202|222216.162|107.976 +638520.006|222203.009|109.792 +638533.655|222189.988|110.874 +638538.187|222185.660|111.039 +638542.729|222181.329|111.252 +638547.325|222176.943|111.514 +638551.821|222172.651|111.566 +638556.357|222168.320|111.572 +638560.901|222163.977|111.402 +638565.415|222159.667|111.338 +638569.975|222155.314|111.533 +638574.648|222150.852|111.807 +638579.217|222146.490|111.837 +638583.783|222142.125|111.877 +638588.330|222137.779|111.575 +638592.799|222133.503|110.874 +638597.270|222129.223|110.481 +638601.906|222124.798|110.417 +638606.637|222120.283|110.883 +638621.102|222106.510|114.181 +638626.046|222101.809|115.638 +638654.655|222074.527|119.107 +638659.458|222069.946|119.756 +638664.165|222065.453|119.869 +638668.752|222061.070|119.610 +638673.546|222056.495|119.994 +638683.038|222047.433|120.280 +638687.713|222042.965|120.034 +638706.492|222025.018|119.418 +638711.211|222020.510|119.226 +638715.999|222015.941|119.491 +638720.815|222011.342|119.643 +638778.322|221956.420|119.906 +638783.125|221951.826|119.631 +638787.917|221947.251|119.619 +638792.854|221942.545|120.317 +638797.737|221937.888|120.655 +638802.654|221933.194|120.939 +638807.488|221928.582|121.344 +638822.338|221914.424|123.158 +638827.202|221909.782|123.551 +638832.021|221905.177|123.261 +638836.929|221900.489|123.295 +638841.824|221895.819|123.633 +638851.718|221886.386|124.843 +638880.829|221858.563|123.237 +638890.485|221849.322|122.018 +638895.304|221844.710|121.119 +638900.108|221840.111|120.530 +638904.969|221835.459|119.579 +638909.755|221830.872|118.394 +638914.641|221826.200|118.129 +638919.481|221821.570|117.452 +638924.434|221816.842|117.363 +638929.308|221812.185|117.025 +638934.288|221807.430|117.293 +638944.252|221797.929|117.882 +638949.239|221793.174|118.287 +638954.225|221788.417|118.747 +638959.212|221783.665|119.208 +638964.201|221778.907|119.768 +638969.227|221774.112|120.229 +638974.214|221769.360|120.820 +638979.261|221764.554|121.591 +638984.315|221759.741|122.463 +638994.331|221750.198|123.892 +638999.339|221745.421|124.429 +639014.344|221731.117|125.947 +639019.327|221726.365|126.312 +639024.296|221721.623|126.529 +639034.299|221712.085|127.266 +639044.205|221702.630|127.495 +639049.186|221697.876|127.361 +639054.175|221693.112|127.391 +639059.147|221688.363|127.138 +639064.097|221683.629|126.654 +639069.016|221678.929|126.383 +639073.993|221674.177|126.251 +639078.989|221669.401|125.739 +639083.915|221664.698|125.605 +639088.938|221659.900|125.541 +639098.856|221650.424|124.868 +639103.745|221645.733|123.350 +639108.719|221640.972|122.414 +639113.657|221636.251|121.676 +639118.607|221631.517|121.116 +639123.606|221626.738|120.649 +639173.346|221579.195|116.150 +639178.345|221574.416|115.526 +639183.350|221569.631|115.126 +639188.309|221564.891|114.660 +639193.320|221560.103|114.422 +639203.287|221550.578|113.614 +639233.307|221521.893|111.627 +639238.318|221517.104|111.176 +639243.322|221512.316|110.374 +639248.288|221507.570|109.868 +639263.278|221493.232|107.970 +639278.289|221478.888|106.921 +639293.255|221464.572|104.614 +639298.281|221459.768|103.907 +639303.264|221455.017|104.059 +639308.248|221450.268|104.568 +639323.189|221436.037|106.372 +639328.167|221431.285|106.382 +639333.147|221426.536|106.461 +639338.131|221421.781|106.314 +639343.114|221417.023|106.001 +639348.101|221412.259|105.543 +639353.084|221407.501|105.306 +639358.071|221402.743|105.174 +639363.008|221398.028|105.071 +639367.946|221393.319|105.156 +639372.933|221388.561|105.050 +639392.669|221369.749|106.208 +639407.570|221355.487|103.044 +639422.454|221341.228|98.518 +639427.297|221336.638|100.630 +639432.189|221331.975|101.047 +639437.084|221327.308|101.368 +639441.906|221322.721|102.437 +639446.734|221318.143|104.605 +639456.396|221308.959|107.220 +639461.264|221304.314|106.982 +639466.086|221299.724|107.845 +639480.625|221285.849|107.646 +639499.843|221267.537|109.490 +639504.695|221262.910|109.731 +639509.435|221258.396|110.335 +639514.244|221253.808|110.493 +639519.008|221249.267|110.652 +639523.788|221244.716|111.395 +639528.527|221240.205|112.026 +639533.340|221235.612|112.179 +639547.684|221221.926|112.036 +639552.439|221217.388|111.734 +639557.243|221212.801|111.426 +639562.055|221208.201|111.002 +639566.813|221203.657|110.749 +639571.590|221199.094|110.277 +639576.387|221194.510|109.545 +639581.160|221189.950|109.186 +639595.428|221176.319|107.787 +639600.204|221171.759|107.537 +639604.898|221167.276|107.162 +639609.610|221162.786|107.771 +639614.188|221158.433|108.881 +639618.873|221153.971|109.280 +639623.525|221149.533|109.472 +639628.261|221145.013|109.289 +639632.949|221140.538|109.131 +639637.634|221136.067|109.018 +639642.273|221131.644|109.460 +639646.869|221127.267|109.862 +639651.514|221122.839|110.243 +639656.083|221118.489|110.966 +639670.004|221105.218|111.441 +639674.615|221100.823|111.764 +639679.227|221096.431|112.112 +639692.961|221083.346|113.258 +639697.530|221078.993|113.596 +639706.641|221070.315|114.587 +639715.809|221061.580|115.084 +639720.332|221057.270|115.471 +639724.895|221052.917|115.510 +639729.482|221048.541|115.370 +639734.076|221044.157|115.193 +639743.238|221035.413|114.696 +639770.728|221009.169|112.679 +639779.863|221000.446|112.048 +639784.380|220996.136|111.984 +639788.909|220991.814|111.850 +639797.947|220983.188|111.432 +639802.500|220978.842|111.182 +639807.036|220974.517|111.100 +639811.486|220970.271|110.944 +639824.876|220957.506|111.395 +639833.874|220948.916|110.911 +639838.354|220944.646|111.027 +639842.734|220940.470|111.161 +639847.184|220936.228|111.185 +639851.668|220931.948|110.990 +639856.118|220927.699|110.697 +639869.502|220914.922|109.777 +639891.859|220893.571|107.457 +639896.336|220889.291|106.903 +639900.786|220885.039|106.244 +639905.243|220880.778|105.555 +639918.629|220867.986|103.605 +639923.028|220863.783|103.090 +639940.621|220846.982|101.307 +639944.894|220842.907|101.368 +639949.210|220838.789|101.197 +639953.474|220834.720|101.057 +639957.766|220830.626|101.066 +639979.358|220810.007|99.213 +639983.616|220805.944|98.969 +639987.886|220801.865|98.408 +639996.497|220793.633|97.222 +640000.688|220789.634|97.152 +640004.781|220785.735|97.628 +640008.768|220781.944|98.420 +640012.932|220777.972|98.539 +640017.022|220774.071|98.530 +640021.146|220770.139|98.630 +640025.215|220766.256|98.755 +640029.257|220762.406|99.054 +640033.250|220758.599|99.338 +640037.261|220754.774|99.551 +640041.239|220750.985|99.953 +640045.262|220747.148|100.127 +640049.163|220743.432|100.679 +640053.205|220739.576|100.545 +640068.750|220724.766|101.944 +640072.715|220720.977|101.733 +640080.399|220713.656|102.346 +640011.335|220776.917|98.527 +640007.287|220780.770|98.530 +640003.349|220784.513|97.963 +639999.359|220788.305|97.417 +639986.947|220800.134|98.527 +639978.593|220808.099|99.078 +639974.268|220812.235|100.231 +639970.055|220816.246|100.468 +639957.510|220828.197|100.819 +639953.300|220832.202|100.831 +639944.812|220840.292|101.337 +639940.551|220844.352|101.428 +639936.232|220848.469|101.889 +639931.907|220852.596|102.410 +639918.898|220864.993|103.391 +639896.778|220886.100|106.747 +639874.510|220907.339|109.228 +639870.050|220911.588|109.384 +639856.633|220924.377|110.588 +639852.122|220928.675|110.862 +639847.620|220932.963|111.085 +639843.130|220937.240|111.252 +639838.677|220941.479|111.194 +639834.172|220945.765|111.167 +639829.716|220950.008|111.164 +639820.648|220958.643|111.292 +639807.094|220971.545|111.130 +639802.567|220975.852|111.039 +639797.959|220980.241|111.234 +639793.326|220984.660|111.658 +639788.736|220989.028|111.746 +639784.127|220993.420|112.029 +639779.485|220997.843|112.215 +639774.855|221002.253|112.343 +639765.546|221011.117|112.627 +639751.477|221024.528|113.977 +639742.046|221033.520|114.806 +639732.622|221042.496|115.263 +639727.977|221046.919|115.355 +639723.234|221051.439|115.513 +639718.564|221055.880|115.431 +639713.895|221060.321|114.971 +639704.559|221069.203|114.471 +639699.837|221073.690|114.066 +639695.180|221078.118|113.529 +639690.447|221082.620|113.276 +639676.353|221096.022|112.036 +639671.625|221100.518|111.780 +639666.910|221105.005|111.432 +639662.109|221109.577|111.484 +639657.357|221114.091|111.014 +639652.624|221118.596|110.908 +639647.896|221123.089|110.219 +639643.093|221127.658|109.878 +639638.353|221132.163|109.341 +639633.531|221136.753|109.241 +639614.265|221155.093|109.277 +639609.504|221159.616|108.512 +639604.721|221164.154|107.448 +639599.966|221168.681|107.232 +639595.023|221173.390|107.613 +639590.173|221178.011|108.030 +639580.438|221187.292|108.899 +639575.494|221192.007|109.484 +639570.599|221196.677|110.073 +639560.839|221205.976|110.932 +639551.055|221215.303|111.661 +639546.200|221219.927|111.865 +639531.542|221233.884|111.895 +639526.699|221238.495|112.026 +639521.864|221243.086|111.203 +639516.963|221247.746|110.755 +639512.132|221252.345|110.728 +639507.219|221257.018|110.484 +639502.366|221261.630|109.993 +639497.523|221266.232|109.375 +639492.616|221270.899|109.058 +639487.748|221275.529|108.890 +639473.041|221289.510|107.695 +639458.310|221303.521|107.147 +639453.391|221308.203|107.211 +639438.812|221322.020|102.568 +639428.976|221331.362|101.160 +639419.171|221340.658|98.515 +639409.204|221350.186|101.621 +639404.208|221354.957|102.998 +639379.419|221378.591|105.930 +639374.521|221383.248|105.626 +639369.528|221387.991|105.193 +639364.578|221392.700|105.156 +639359.628|221397.418|105.342 +639349.728|221406.840|105.406 +639344.733|221411.598|105.555 +639339.734|221416.359|105.936 +639334.784|221421.071|106.238 +639329.791|221425.826|106.442 +639324.847|221430.532|106.311 +639304.923|221449.472|104.635 +639299.881|221454.267|104.330 +639294.931|221458.970|103.718 +639289.942|221463.731|104.690 +639284.903|221468.528|104.976 +639259.977|221492.291|107.896 +639254.993|221497.039|108.332 +639250.013|221501.788|109.073 +639244.993|221506.577|109.847 +639200.050|221549.395|113.389 +639190.104|221558.871|114.270 +639175.087|221573.179|115.404 +639170.121|221577.912|115.974 +639125.215|221620.703|120.177 +639120.256|221625.434|120.768 +639115.288|221630.167|121.225 +639110.271|221634.946|121.622 +639085.527|221658.547|125.468 +639080.544|221663.293|125.627 +639075.618|221667.987|125.959 +639070.622|221672.742|125.986 +639060.728|221682.169|126.809 +639055.757|221686.906|127.233 +639050.758|221691.664|127.251 +639040.816|221701.131|127.465 +639035.848|221705.855|127.330 +639030.867|221710.592|127.074 +639015.911|221724.817|126.245 +639010.915|221729.566|125.922 +639005.913|221734.321|125.553 +638980.941|221758.049|122.420 +638970.876|221767.611|120.939 +638965.841|221772.387|120.003 +638960.897|221777.087|119.540 +638955.956|221781.787|119.162 +638946.005|221791.245|118.290 +638941.049|221795.957|117.851 +638936.089|221800.670|117.418 +638931.152|221805.370|117.220 +638926.266|221810.021|117.568 +638921.374|221814.675|117.418 +638916.488|221819.332|117.778 +638911.635|221823.950|118.049 +638906.777|221828.586|118.695 +638902.001|221833.143|119.683 +638897.227|221837.700|120.677 +638878.119|221855.924|123.734 +638873.218|221860.593|124.054 +638868.448|221865.135|124.289 +638863.547|221869.801|124.255 +638858.786|221874.337|124.599 +638853.909|221878.979|124.822 +638849.130|221883.530|125.057 +638844.210|221888.205|124.566 +638839.391|221892.792|124.526 +638834.368|221897.557|123.289 +638829.546|221902.147|123.295 +638824.737|221906.725|123.408 +638814.949|221916.021|122.079 +638800.414|221929.844|121.195 +638790.727|221939.055|120.549 +638785.804|221943.731|120.064 +638771.476|221957.368|120.094 +638766.675|221961.933|119.872 +638761.954|221966.435|120.186 +638757.181|221970.977|120.201 +638738.170|221989.082|120.293 +638733.376|221993.648|120.259 +638709.610|222016.270|119.875 +638704.941|222020.714|119.829 +638690.844|222034.144|120.491 +638686.135|222038.627|120.293 +638671.998|222052.084|120.070 +638667.335|222056.522|119.945 +638662.555|222061.067|119.744 +638657.928|222065.474|119.866 +638653.237|222069.940|119.649 +638648.443|222074.496|119.153 +638624.781|222096.991|116.592 +638619.840|222101.672|114.931 +638615.052|222106.223|114.126 +638605.576|222115.230|112.874 +638600.696|222119.857|111.420 +638595.911|222124.401|110.487 +638591.326|222128.769|110.896 +638586.910|222132.988|111.655 +638582.359|222137.319|111.749 +638577.784|222141.680|111.984 +638573.185|222146.054|111.877 +638568.567|222150.450|111.682 +638563.949|222154.842|111.514 +638559.402|222159.173|111.463 +638554.827|222163.529|111.548 +638550.258|222167.878|111.432 +638545.807|222172.118|111.661 +638536.596|222180.878|110.929 +638532.110|222185.151|111.051 +638527.553|222189.485|110.856 +638509.152|222206.978|108.741 +638495.598|222219.871|107.893 +638491.126|222224.126|107.799 +638482.162|222232.651|107.095 +638477.651|222236.940|106.634 +638464.353|222249.598|106.214 +638459.945|222253.789|106.080 +638446.723|222266.368|105.327 +638420.227|222291.560|102.828 +638411.272|222300.064|101.075 +638388.631|222321.540|95.037 +638380.029|222329.718|94.205 +638371.376|222337.942|93.050 +638367.228|222341.892|93.104 +638363.055|222345.863|93.071 +638355.362|222353.215|95.198 +638351.793|222356.641|97.353 +638344.782|222363.371|101.727 +638341.280|222366.733|103.925 +638337.562|222370.290|105.083 +638333.566|222374.094|105.199 +638409.370|222299.229|100.813 +638453.721|222256.959|105.790 +638458.132|222252.753|106.193 +638462.569|222248.519|106.275 +638475.853|222235.846|106.753 +638480.419|222231.493|107.265 +638489.371|222222.959|107.768 +638493.821|222218.710|107.823 +638502.840|222210.108|108.293 +638516.629|222196.965|109.792 +638521.241|222192.567|110.256 +638525.803|222188.220|110.746 +638534.868|222179.570|110.774 +638548.612|222166.461|111.313 +638553.174|222162.105|111.453 +638557.737|222157.753|111.356 +638562.322|222153.376|111.405 +638566.927|222148.987|111.560 +638571.551|222144.576|111.840 +638576.187|222140.156|111.941 +638580.722|222135.822|111.557 +638585.346|222131.412|111.648 +638589.799|222127.154|110.865 +638594.380|222122.777|110.502 +638599.242|222118.159|111.880 +638613.604|222104.483|114.011 +638618.454|222099.868|114.928 +638637.738|222081.513|118.342 +638647.242|222072.457|119.189 +638652.034|222067.894|119.726 +638656.737|222063.405|119.518 +638661.452|222058.906|119.689 +638675.777|222045.257|120.780 +638680.551|222040.700|120.817 +638685.202|222036.259|120.418 +638689.999|222031.684|120.637 +638699.366|222022.738|120.037 +638704.157|222018.166|119.970 +638708.897|222013.646|119.902 +638713.704|222009.059|119.982 +638718.447|222004.532|119.994 +638728.081|221995.349|120.384 +638732.882|221990.771|120.503 +638752.148|221972.391|120.735 +638756.897|221967.856|120.299 +638761.719|221963.256|120.384 +638771.384|221954.036|120.445 +638781.050|221944.813|120.232 +638785.875|221940.207|120.107 +638790.803|221935.513|120.762 +638795.729|221930.819|121.064 +638800.596|221926.177|121.332 +638805.513|221921.493|121.612 +638810.323|221916.902|121.512 +638820.302|221907.405|123.344 +638825.136|221902.790|123.130 +638830.004|221898.151|123.179 +638835.008|221893.384|123.975 +638839.977|221888.659|124.877 +638844.881|221883.981|124.941 +638849.785|221879.302|125.044 +638854.631|221874.672|124.682 +638859.493|221870.033|124.465 +638864.364|221865.385|124.334 +638869.274|221860.697|124.151 +638874.136|221856.058|123.996 +638879.006|221851.404|123.511 +638883.831|221846.795|123.078 +638888.675|221842.165|122.374 +638893.490|221837.560|121.448 +638898.291|221832.966|120.375 +638903.055|221828.403|118.951 +638907.932|221823.743|118.595 +638912.803|221819.095|118.156 +638917.640|221814.468|117.440 +638922.602|221809.737|117.446 +638927.543|221805.022|117.275 +638932.456|221800.340|117.315 +638937.446|221795.585|117.674 +638942.445|221790.824|118.162 +638952.390|221781.345|118.708 +638957.380|221776.593|119.198 +638962.433|221771.784|119.918 +638972.446|221762.256|121.466 +638977.500|221757.446|122.335 +638982.501|221752.688|123.176 +639002.505|221733.638|125.310 +639007.458|221728.923|125.785 +639012.494|221724.125|126.154 +639017.425|221719.425|126.474 +639032.388|221705.166|127.245 +639037.344|221700.439|127.385 +639042.340|221695.678|127.410 +639052.215|221686.257|127.251 +639057.193|221681.508|127.081 +639062.094|221676.826|126.520 +639067.053|221672.089|126.123 +639072.024|221667.347|125.892 +639076.953|221662.647|125.742 +639081.921|221657.904|125.538 +639086.890|221653.161|125.319 +639106.595|221634.334|122.307 +639111.530|221629.615|121.463 +639116.483|221624.885|120.942 +639121.417|221620.167|120.070 +639126.379|221615.430|119.774 +639185.968|221558.530|114.142 +639190.939|221553.787|114.008 +639195.892|221549.054|113.328 +639210.864|221534.777|113.310 +639215.814|221530.043|112.404 +639220.779|221525.304|112.036 +639225.799|221520.515|111.898 +639240.686|221506.293|109.935 +639250.619|221496.802|108.664 +639285.431|221463.548|104.464 +639290.414|221458.799|104.775 +639295.398|221454.044|104.458 +639300.381|221449.295|104.708 +639305.364|221444.559|106.113 +639310.345|221439.822|107.019 +639315.277|221435.119|107.022 +639320.257|221430.367|106.991 +639325.241|221425.609|106.439 +639330.175|221420.900|106.339 +639335.156|221416.145|106.199 +639340.142|221411.384|105.738 +639345.080|221406.672|105.586 +639359.942|221392.493|105.266 +639364.883|221387.784|105.272 +639369.821|221383.074|105.306 +639374.752|221378.377|105.830 +639409.426|221345.243|100.956 +639448.545|221308.017|107.208 +639453.449|221303.339|107.201 +639458.353|221298.663|107.220 +639472.950|221284.752|107.912 +639477.836|221280.094|108.378 +639482.643|221275.513|108.552 +639487.538|221270.850|108.893 +639492.390|221266.226|109.131 +639497.224|221261.624|109.734 +639502.016|221257.058|110.222 +639506.853|221252.452|110.761 +639511.715|221247.819|110.899 +639516.530|221243.223|110.947 +639521.328|221238.657|111.414 +639526.110|221234.106|112.127 +639540.585|221220.302|112.154 +639545.395|221215.705|111.697 +639550.174|221211.146|111.737 +639555.054|221206.485|111.060 +639574.348|221188.060|109.201 +639579.118|221183.506|108.899 +639583.967|221178.870|108.226 +639588.765|221174.292|107.689 +639593.544|221169.729|107.403 +639598.314|221165.179|107.262 +639603.033|221160.686|107.814 +639626.490|221138.338|109.963 +639631.285|221133.763|109.679 +639635.973|221129.288|109.558 +639645.306|221120.400|110.420 +639654.581|221111.567|111.420 +639659.256|221107.108|111.514 +639663.904|221102.670|111.426 +639668.480|221098.318|112.139 +639673.149|221093.864|112.356 +639686.941|221080.724|113.398 +639691.516|221076.363|113.669 +639696.134|221071.961|114.014 +639705.296|221063.229|114.553 +639714.404|221054.548|115.181 +639718.945|221050.223|115.437 +639723.517|221045.858|115.410 +639728.102|221041.484|115.303 +639737.224|221032.779|115.148 +639741.839|221028.375|114.849 +639746.414|221024.007|114.517 +639755.570|221015.256|113.462 +639764.653|221006.591|113.154 +639778.217|220993.643|112.374 +639782.755|220989.312|112.154 +639796.240|220976.440|111.536 +639800.760|220972.124|111.185 +639805.177|220967.909|111.261 +639809.593|220963.699|111.374 +639827.345|220946.765|111.356 +639831.752|220942.558|111.271 +639836.117|220938.398|111.520 +639840.497|220934.216|111.322 +639844.926|220929.991|111.161 +639853.765|220921.551|110.667 +639858.181|220917.333|110.323 +639862.564|220913.148|109.896 +639866.957|220908.954|109.747 +639880.118|220896.387|108.610 +639888.933|220887.959|107.378 +639893.358|220883.732|106.851 +639897.671|220879.614|106.449 +639906.434|220871.235|105.138 +639915.274|220862.783|103.486 +639932.598|220846.232|101.742 +639936.820|220842.203|101.493 +639941.072|220838.146|101.395 +639949.603|220829.998|100.779 +639953.773|220826.024|100.919 +639958.001|220821.988|100.740 +639970.598|220809.964|100.240 +639974.862|220805.892|99.944 +639979.273|220801.661|98.274 +639987.761|220793.547|96.902 +639991.809|220789.692|97.323 +639995.832|220785.866|97.905 +639999.856|220782.035|98.481 +640003.861|220778.219|98.893 +640007.976|220774.293|98.731 +640012.060|220770.398|98.755 +640016.132|220766.515|98.853 +640020.174|220762.662|98.868 +640024.142|220758.882|99.274 +640028.111|220755.100|99.685 +640032.043|220751.357|100.054 +640036.029|220747.556|100.142 +640043.893|220740.064|100.916 +640047.749|220736.394|101.447 +640059.575|220725.123|101.825 +640063.468|220721.413|102.218 +640075.102|220710.322|102.687 +640078.985|220706.621|102.931 +640001.319|220778.496|98.768 +639997.265|220782.343|98.289 +639993.293|220786.110|97.646 +639989.236|220789.963|97.216 +639980.760|220798.034|98.384 +639976.401|220802.188|99.386 +639972.094|220806.294|100.133 +639963.716|220814.259|100.377 +639959.509|220818.261|100.624 +639951.112|220826.243|100.523 +639942.562|220834.378|101.081 +639938.280|220838.451|101.288 +639934.052|220842.471|101.496 +639929.721|220846.589|101.727 +639925.411|220850.694|102.175 +639921.074|220854.824|102.806 +639907.876|220867.398|104.781 +639903.588|220871.479|105.208 +639899.147|220875.712|106.019 +639894.785|220879.867|106.650 +639885.961|220888.267|107.707 +639881.547|220892.467|108.116 +639877.158|220896.649|108.732 +639868.356|220905.028|109.539 +639859.580|220913.374|109.935 +639855.142|220917.598|110.341 +639850.689|220921.838|110.871 +639841.865|220930.232|111.097 +639837.421|220934.463|111.307 +639833.026|220938.645|111.523 +639828.610|220942.842|111.231 +639824.132|220947.103|111.392 +639806.362|220964.001|111.231 +639801.909|220968.235|111.307 +639797.404|220972.520|111.444 +639792.893|220976.818|111.664 +639774.739|220994.091|112.447 +639765.562|221002.830|113.206 +639756.460|221011.489|113.477 +639737.880|221029.183|115.062 +639724.014|221042.371|115.513 +639719.384|221046.779|115.519 +639710.176|221055.530|115.090 +639705.546|221059.928|114.712 +639700.895|221064.347|114.526 +639696.265|221068.746|114.169 +639686.954|221077.594|113.517 +639682.278|221082.038|113.197 +639677.575|221086.510|113.160 +639672.869|221090.981|112.679 +639668.202|221095.413|112.289 +639663.496|221099.881|111.834 +639658.759|221104.383|111.691 +639654.023|221108.888|111.624 +639649.292|221113.387|111.472 +639644.580|221117.855|110.606 +639639.825|221122.372|110.231 +639635.080|221126.880|109.786 +639630.285|221131.443|109.893 +639625.494|221136.000|109.978 +639611.095|221149.692|109.622 +639601.518|221158.781|108.183 +639596.717|221163.331|107.293 +639591.898|221167.919|107.320 +639587.009|221172.570|107.622 +639582.157|221177.194|108.134 +639577.210|221181.903|108.661 +639572.315|221186.566|109.186 +639567.389|221191.257|109.539 +639557.550|221200.633|110.859 +639547.763|221209.951|111.584 +639542.813|221214.660|111.752 +639537.900|221219.339|112.151 +639532.956|221224.042|112.331 +639523.163|221233.356|112.008 +639518.283|221237.983|111.136 +639513.363|221242.662|110.984 +639508.429|221247.356|111.103 +639503.482|221252.053|110.606 +639498.632|221256.658|110.048 +639493.682|221261.364|109.625 +639488.742|221266.058|109.021 +639483.831|221270.725|108.707 +639478.875|221275.440|108.421 +639468.960|221284.865|107.912 +639459.106|221294.234|107.183 +639454.095|221299.001|107.140 +639449.130|221303.726|107.144 +639444.168|221308.450|107.150 +639434.368|221317.722|103.446 +639429.403|221322.431|102.053 +639419.491|221331.831|99.837 +639414.504|221336.568|98.944 +639404.455|221346.163|101.529 +639374.377|221374.839|105.888 +639369.388|221379.584|105.434 +639364.435|221384.294|105.363 +639359.390|221389.094|105.388 +639339.395|221408.126|105.830 +639334.400|221412.884|106.083 +639329.401|221417.645|106.427 +639324.408|221422.397|106.455 +639319.413|221427.158|107.015 +639314.371|221431.955|107.012 +639309.379|221436.707|107.137 +639299.345|221446.238|105.824 +639294.349|221450.981|105.056 +639289.353|221455.730|104.675 +639284.358|221460.485|104.729 +639269.337|221474.792|106.110 +639264.354|221479.547|106.799 +639259.367|221484.296|107.369 +639254.380|221489.047|107.671 +639239.393|221503.334|109.667 +639234.462|221508.034|110.307 +639199.574|221541.272|113.587 +639164.793|221574.404|116.217 +639159.801|221579.153|116.163 +639139.940|221598.081|118.519 +639130.040|221607.511|119.281 +639125.108|221612.205|119.561 +639120.134|221616.942|119.951 +639105.309|221631.075|121.969 +639100.404|221635.751|122.743 +639095.503|221640.424|123.533 +639085.673|221649.802|125.419 +639080.729|221654.509|125.456 +639075.789|221659.209|125.624 +639070.799|221663.957|125.733 +639065.925|221668.599|126.194 +639060.939|221673.348|126.373 +639051.088|221682.733|127.178 +639041.236|221692.106|127.391 +639036.235|221696.867|127.434 +639031.309|221701.548|127.254 +639026.323|221706.288|126.925 +639021.367|221711.006|127.013 +639016.386|221715.734|126.251 +639011.421|221720.458|126.270 +639006.477|221725.158|126.035 +639001.512|221729.877|125.535 +638996.501|221734.638|125.090 +638991.530|221739.359|124.633 +638971.498|221758.375|121.433 +638966.536|221763.094|121.237 +638961.476|221767.891|120.024 +638956.481|221772.640|119.549 +638951.509|221777.358|118.881 +638946.514|221782.107|118.485 +638936.632|221791.501|117.940 +638931.670|221796.216|117.488 +638926.735|221800.907|117.348 +638921.831|221805.577|117.519 +638916.902|221810.265|117.498 +638912.041|221814.898|118.125 +638907.210|221819.500|118.592 +638902.354|221824.130|119.268 +638897.520|221828.739|120.162 +638883.170|221842.427|122.920 +638878.311|221847.054|123.194 +638868.628|221856.277|124.075 +638863.818|221860.855|124.404 +638858.960|221865.482|124.721 +638854.113|221870.094|124.785 +638849.300|221874.678|125.130 +638839.577|221883.926|125.096 +638834.658|221888.601|124.663 +638829.702|221893.308|123.962 +638824.727|221898.029|123.173 +638819.893|221902.625|123.115 +638815.087|221907.200|123.295 +638810.198|221911.849|122.853 +638805.263|221916.530|122.131 +638800.359|221921.191|121.658 +638795.482|221925.827|121.430 +638790.663|221930.408|121.280 +638785.777|221935.050|120.677 +638756.970|221962.455|120.829 +638752.206|221966.987|120.905 +638747.467|221971.495|121.164 +638733.095|221985.159|121.049 +638723.445|221994.325|120.341 +638718.696|221998.842|120.338 +638704.487|222012.354|120.415 +638699.710|222016.895|120.335 +638695.007|222021.367|120.439 +638690.326|222025.823|120.668 +638685.650|222030.273|120.954 +638671.507|222043.715|120.692 +638662.028|222052.724|120.418 +638657.291|222057.223|119.906 +638652.558|222061.722|119.723 +638647.922|222066.130|119.829 +638643.197|222070.619|119.457 +638638.382|222075.191|118.891 +638614.503|222097.844|115.123 +638609.806|222102.306|114.831 +638595.542|222115.843|112.642 +638590.540|222120.576|110.862 +638586.041|222124.859|111.203 +638581.576|222129.114|111.990 +638577.007|222133.457|112.008 +638572.447|222137.794|112.081 +638567.787|222142.220|111.673 +638563.169|222146.606|111.511 +638558.579|222150.971|111.493 +638554.043|222155.284|111.517 +638549.483|222159.615|111.450 +638540.272|222168.372|111.158 +638535.709|222172.706|110.880 +638531.192|222177.001|110.856 +638526.721|222181.253|111.057 +638517.406|222190.092|109.765 +638503.745|222203.070|108.747 +638499.133|222207.447|108.189 +638494.631|222211.724|107.921 +638490.194|222215.942|107.970 +638485.734|222220.179|107.939 +638476.752|222228.713|107.409 +638472.162|222233.072|106.839 +638467.702|222237.309|106.662 +638463.328|222241.466|106.644 +638445.562|222258.346|105.812 +638441.139|222262.543|105.461 +638423.372|222279.414|103.699 +638405.432|222296.431|100.694 +638396.339|222305.041|98.515 +638391.764|222309.376|97.347 +638387.174|222313.722|95.921 +638382.556|222318.090|94.433 +638369.630|222330.364|93.385 +638361.159|222338.411|93.022 +638352.527|222346.601|91.885 +638338.418|222360.131|101.179 +638334.898|222363.502|103.315 +638331.283|222366.965|105.287 +638327.284|222370.763|105.406 +638323.291|222374.560|105.552 +638400.716|222298.650|99.691 +638423.204|222277.253|103.803 +638440.883|222260.406|105.370 +638449.768|222251.936|105.909 +638454.233|222247.681|106.086 +638458.766|222243.362|106.577 +638463.136|222239.195|106.601 +638467.623|222234.916|106.699 +638472.076|222230.670|106.903 +638481.187|222221.992|107.829 +638485.658|222217.728|107.951 +638490.114|222213.479|108.009 +638494.583|222209.215|107.921 +638517.620|222187.273|110.289 +638526.888|222178.442|110.975 +638531.366|222174.169|110.850 +638535.923|222169.823|110.877 +638540.541|222165.418|110.984 +638545.183|222160.996|111.210 +638549.752|222156.637|111.368 +638554.375|222152.227|111.563 +638558.990|222147.825|111.472 +638563.583|222143.445|111.560 +638568.265|222138.983|111.853 +638572.929|222134.536|112.075 +638582.097|222125.785|111.514 +638586.669|222121.417|111.072 +638591.412|222116.900|111.533 +638620.502|222089.224|116.931 +638639.732|222070.915|119.272 +638649.242|222061.850|119.610 +638658.876|222052.670|120.485 +638668.487|222043.510|121.030 +638673.251|222038.966|120.951 +638687.518|222025.356|121.012 +638716.267|221997.933|120.588 +638721.056|221993.368|120.570 +638735.604|221979.499|121.225 +638745.315|221970.239|121.326 +638750.112|221965.661|121.192 +638754.940|221961.053|120.957 +638784.125|221933.221|121.085 +638803.821|221914.455|122.612 +638808.799|221909.712|123.018 +638813.654|221905.082|122.877 +638818.589|221900.376|123.024 +638823.527|221895.676|123.572 +638828.534|221890.909|124.322 +638848.316|221872.057|125.346 +638853.174|221867.421|125.063 +638858.048|221862.764|124.532 +638862.998|221858.045|124.636 +638867.842|221853.421|124.270 +638877.583|221844.116|123.240 +638882.463|221839.455|122.829 +638887.279|221834.850|121.838 +638892.152|221830.189|120.963 +638896.968|221825.584|119.988 +638901.812|221820.957|119.265 +638906.707|221816.281|118.580 +638911.620|221811.591|118.083 +638916.530|221806.903|117.580 +638921.489|221802.175|117.549 +638926.391|221797.500|117.437 +638931.426|221792.705|117.720 +638941.384|221783.220|118.257 +638946.367|221778.474|118.580 +638951.357|221773.722|119.052 +638956.389|221768.931|119.479 +638961.443|221764.130|120.671 +638966.505|221759.317|121.509 +638981.538|221745.010|123.118 +638991.618|221735.421|124.724 +639006.626|221721.132|126.090 +639011.656|221716.343|126.352 +639016.596|221711.637|126.742 +639021.610|221706.861|126.882 +639036.552|221692.624|127.428 +639051.450|221678.417|126.910 +639056.367|221673.723|126.547 +639061.295|221669.023|126.328 +639066.279|221664.271|126.224 +639071.183|221659.590|125.651 +639076.167|221654.841|125.590 +639081.141|221650.095|125.435 +639086.091|221645.371|124.834 +639091.007|221640.668|123.688 +639095.915|221635.983|123.185 +639100.852|221631.264|122.356 +639105.799|221626.540|121.661 +639115.693|221617.091|120.271 +639120.646|221612.361|119.720 +639125.611|221607.624|119.336 +639130.577|221602.884|119.003 +639140.446|221593.466|118.004 +639145.451|221588.687|117.507 +639160.331|221574.483|115.980 +639165.299|221569.743|115.696 +639170.216|221565.053|115.263 +639175.227|221560.270|114.843 +639214.961|221522.353|111.725 +639219.932|221517.610|111.325 +639224.854|221512.913|110.874 +639229.823|221508.171|110.445 +639244.731|221493.936|108.533 +639249.702|221489.188|107.991 +639259.605|221479.736|106.775 +639264.582|221474.984|106.503 +639269.557|221470.232|105.620 +639279.472|221460.771|104.696 +639284.455|221456.022|104.836 +639289.442|221451.277|104.986 +639294.383|221446.580|105.915 +639309.235|221432.443|106.967 +639314.170|221427.743|107.177 +639319.154|221422.994|106.994 +639324.091|221418.282|106.519 +639329.078|221413.524|106.068 +639333.970|221408.864|105.927 +639338.908|221404.161|106.080 +639363.612|221380.615|105.479 +639368.553|221375.909|105.577 +639412.932|221333.529|98.368 +639427.553|221319.648|101.880 +639432.369|221315.095|104.580 +639437.145|221310.575|106.967 +639446.947|221301.239|107.147 +639451.803|221296.612|107.198 +639456.668|221291.979|107.156 +639461.514|221287.364|107.488 +639466.409|221282.704|107.790 +639471.219|221278.122|107.942 +639476.114|221273.462|108.277 +639480.969|221268.841|108.500 +639485.755|221264.294|109.204 +639495.395|221255.116|110.076 +639505.036|221245.945|110.987 +639509.883|221241.330|111.386 +639514.717|221236.724|111.222 +639519.517|221232.155|111.642 +639524.309|221227.596|112.191 +639529.088|221223.045|112.225 +639533.916|221218.446|112.240 +639543.569|221209.241|111.612 +639548.364|221204.669|111.472 +639562.900|221190.800|109.801 +639567.676|221186.243|109.387 +639572.504|221181.638|108.969 +639577.308|221177.054|108.280 +639582.133|221172.451|107.982 +639586.933|221167.870|107.424 +639591.746|221163.286|107.369 +639596.428|221158.830|107.793 +639601.164|221154.328|108.716 +639620.013|221136.390|110.222 +639629.453|221127.395|110.295 +639634.144|221122.927|110.164 +639638.883|221118.416|110.588 +639652.801|221105.179|112.100 +639657.488|221100.710|112.097 +639662.173|221096.248|112.164 +639666.782|221091.859|112.511 +639671.436|221087.433|112.935 +639680.690|221078.621|113.374 +639685.301|221074.235|113.782 +639689.889|221069.864|113.956 +639694.513|221065.463|114.264 +639699.027|221061.165|114.706 +639708.250|221052.387|115.202 +639712.785|221048.071|115.501 +639717.394|221043.679|115.580 +639721.969|221039.320|115.568 +639740.345|221021.797|114.623 +639754.116|221008.666|113.797 +639758.661|221004.332|113.422 +639763.172|221000.038|113.368 +639772.298|220991.332|112.837 +639776.800|220987.038|112.508 +639781.359|220982.691|112.161 +639785.837|220978.424|112.090 +639790.330|220974.139|111.908 +639794.883|220969.801|111.685 +639799.340|220965.549|111.463 +639808.289|220957.021|111.200 +639821.456|220944.482|111.591 +639830.289|220936.066|111.661 +639834.712|220931.851|111.511 +639839.095|220927.672|111.319 +639852.311|220915.068|110.423 +639856.682|220910.899|110.076 +639896.035|220873.356|106.324 +639913.433|220856.748|103.779 +639917.828|220852.548|103.010 +639926.435|220844.330|101.761 +639930.672|220840.295|101.715 +639934.881|220836.280|101.563 +639939.124|220832.236|101.233 +639943.321|220828.234|100.904 +639947.476|220824.271|100.825 +639951.694|220820.251|100.700 +639964.154|220808.373|100.395 +639981.193|220792.090|96.887 +639989.078|220784.595|98.338 +639993.092|220780.767|98.402 +639997.064|220776.988|98.987 +640001.063|220773.178|99.176 +640005.126|220769.304|99.036 +640009.122|220765.490|98.987 +640013.118|220761.684|98.966 +640017.092|220757.898|99.341 +640020.942|220754.234|99.834 +640024.877|220750.485|100.170 +640028.736|220746.812|100.645 +640032.631|220743.106|100.959 +640036.423|220739.497|101.538 +640040.364|220735.739|101.614 +640044.235|220732.054|101.831 +640048.130|220728.341|101.916 +640055.799|220721.035|102.495 +640059.664|220717.353|102.526 +640063.443|220713.754|102.983 +640067.360|220710.017|102.788 +640075.001|220702.735|103.126 +639992.726|220779.188|98.667 +639988.612|220783.096|98.524 +639984.433|220787.070|98.740 +639980.464|220790.826|97.542 +639975.926|220795.166|99.514 +639971.640|220799.244|100.109 +639967.468|220803.207|99.825 +639963.176|220807.291|100.215 +639958.866|220811.393|100.743 +639954.642|220815.411|100.801 +639950.414|220819.431|100.904 +639941.880|220827.542|101.020 +639937.628|220831.583|101.026 +639933.242|220835.759|101.547 +639928.923|220839.865|101.678 +639920.260|220848.110|102.492 +639915.819|220852.340|103.141 +639902.536|220864.990|105.315 +639875.963|220890.288|108.613 +639871.541|220894.500|109.122 +639858.258|220907.134|109.893 +639853.841|220911.335|110.134 +639849.415|220915.544|110.441 +639836.086|220928.220|111.234 +639822.760|220940.882|111.527 +639818.298|220945.122|111.581 +639804.924|220957.829|111.438 +639800.473|220962.056|111.493 +639796.005|220966.299|111.322 +639791.457|220970.627|111.801 +639786.898|220974.962|112.008 +639773.343|220987.846|112.578 +639768.802|220992.162|112.749 +639759.648|221000.864|113.334 +639755.098|221005.192|113.660 +639750.523|221009.538|113.800 +639745.939|221013.900|114.059 +639741.394|221018.222|114.410 +639736.743|221022.648|114.892 +639732.171|221026.991|115.105 +639722.960|221035.745|115.391 +639718.415|221040.067|115.477 +639713.825|221044.429|115.544 +639709.216|221048.803|115.358 +639704.623|221053.164|115.053 +639700.069|221057.486|114.837 +639695.482|221061.842|114.529 +639690.888|221066.201|114.264 +639686.225|221070.623|113.770 +639681.626|221074.991|113.614 +639676.996|221079.383|113.282 +639667.742|221088.168|112.624 +639663.057|221092.618|112.444 +639658.409|221097.031|112.368 +639644.272|221110.452|111.798 +639639.655|221114.829|110.960 +639630.239|221123.765|110.225 +639625.463|221128.310|110.688 +639620.739|221132.797|110.563 +639615.999|221137.292|110.073 +639601.838|221150.722|108.533 +639597.080|221155.242|108.332 +639592.319|221159.756|107.582 +639587.561|221164.273|107.390 +639582.712|221168.885|107.793 +639577.878|221173.481|108.024 +639573.016|221178.108|108.692 +639563.345|221187.307|109.454 +639558.407|221192.004|109.966 +639548.693|221201.246|110.862 +639538.964|221210.496|111.481 +639534.044|221215.175|111.935 +639529.152|221219.826|112.029 +639524.303|221224.435|112.212 +639519.444|221229.043|111.752 +639514.586|221233.655|111.322 +639509.709|221238.285|111.216 +639504.783|221242.964|111.155 +639499.919|221247.584|110.923 +639485.227|221261.520|109.274 +639475.428|221270.813|108.271 +639470.475|221275.516|107.942 +639465.565|221280.177|107.717 +639460.651|221284.840|107.525 +639455.698|221289.543|107.195 +639450.733|221294.259|107.201 +639445.795|221298.959|107.771 +639426.081|221317.612|102.352 +639411.228|221331.685|99.395 +639401.200|221341.234|101.227 +639376.109|221365.134|106.189 +639366.120|221374.613|105.604 +639361.122|221379.362|105.565 +639356.077|221384.160|105.677 +639336.037|221403.200|106.223 +639331.041|221407.946|106.159 +639325.999|221412.738|106.293 +639321.004|221417.486|106.580 +639315.962|221422.284|107.022 +639310.970|221427.021|106.769 +639305.974|221431.779|107.692 +639285.906|221450.813|105.449 +639280.862|221455.599|105.074 +639275.866|221460.344|105.120 +639270.824|221465.133|104.946 +639265.792|221469.924|106.010 +639260.803|221474.670|106.318 +639255.822|221479.413|107.214 +639250.784|221484.201|107.378 +639245.806|221488.941|108.256 +639240.771|221493.726|108.543 +639235.742|221498.512|109.009 +639230.768|221503.248|109.939 +639225.790|221507.985|110.502 +639220.761|221512.767|110.804 +639210.770|221522.277|112.258 +639195.792|221536.517|113.444 +639190.808|221541.254|113.541 +639185.834|221545.984|113.992 +639160.907|221569.689|115.894 +639155.933|221574.416|116.321 +639146.033|221583.831|117.132 +639141.062|221588.562|117.534 +639136.093|221593.286|118.098 +639131.174|221597.965|118.610 +639126.197|221602.699|118.942 +639121.222|221607.426|119.326 +639116.300|221612.111|119.774 +639111.389|221616.783|120.491 +639101.529|221626.171|121.948 +639091.702|221635.522|123.173 +639086.795|221640.195|123.877 +639081.915|221644.846|124.987 +639077.044|221649.479|125.499 +639072.046|221654.228|125.465 +639067.163|221658.870|125.782 +639062.243|221663.552|126.258 +639057.312|221668.240|126.587 +639052.410|221672.897|126.648 +639047.473|221677.591|126.910 +639032.693|221691.642|127.513 +639022.839|221701.000|127.154 +639017.855|221705.727|126.913 +639012.966|221710.369|126.696 +639007.971|221715.112|126.322 +639003.024|221719.809|126.020 +638993.090|221729.233|125.057 +638988.171|221733.900|124.624 +638963.268|221757.513|121.219 +638958.279|221762.246|120.762 +638948.291|221771.710|118.878 +638943.356|221776.395|118.610 +638938.403|221781.095|118.205 +638933.410|221785.835|117.885 +638928.539|221790.459|117.897 +638923.565|221795.183|117.824 +638918.670|221799.831|117.632 +638913.754|221804.504|117.708 +638908.883|221809.140|118.223 +638904.061|221813.724|118.790 +638899.196|221818.354|119.390 +638894.377|221822.941|119.991 +638889.595|221827.504|121.326 +638884.807|221832.064|122.195 +638879.973|221836.660|122.688 +638870.316|221845.847|123.761 +638865.476|221850.453|124.228 +638855.738|221859.709|124.691 +638850.925|221864.284|125.020 +638836.328|221878.156|125.209 +638831.451|221882.780|124.734 +638821.554|221892.165|123.499 +638816.644|221896.828|123.219 +638811.773|221901.452|122.905 +638806.875|221906.103|122.777 +638802.096|221910.642|122.844 +638797.149|221915.336|122.417 +638792.297|221919.938|121.990 +638768.050|221942.963|121.408 +638763.231|221947.535|121.039 +638748.844|221961.208|121.561 +638744.120|221965.704|121.908 +638739.237|221970.337|121.579 +638734.458|221974.878|121.622 +638720.044|221988.564|121.082 +638710.421|221997.699|120.658 +638705.688|222002.198|120.811 +638700.957|222006.696|120.991 +638696.187|222011.226|120.966 +638691.514|222015.670|121.250 +638677.369|222029.112|121.439 +638672.614|222033.626|121.317 +638667.877|222038.124|121.308 +638653.661|222051.621|120.546 +638648.812|222056.214|119.717 +638644.084|222060.704|119.601 +638639.445|222065.115|119.726 +638634.663|222069.647|119.086 +638629.935|222074.134|118.753 +638620.252|222083.308|116.958 +638615.561|222087.761|116.635 +638610.742|222092.327|115.666 +638586.706|222115.102|111.328 +638582.109|222119.470|111.432 +638577.565|222123.792|111.828 +638573.032|222128.105|112.292 +638568.436|222132.469|112.194 +638563.785|222136.880|111.847 +638559.118|222141.312|111.691 +638554.479|222145.716|111.450 +638549.944|222150.026|111.481 +638545.359|222154.375|111.307 +638540.696|222158.801|111.002 +638536.115|222163.154|110.871 +638531.592|222167.448|110.804 +638527.065|222171.746|110.737 +638522.542|222176.047|110.954 +638513.364|222184.752|110.088 +638504.239|222193.414|109.564 +638495.028|222202.147|108.494 +638490.386|222206.548|107.826 +638485.951|222210.760|107.899 +638481.488|222215.000|107.866 +638472.375|222223.647|107.226 +638467.861|222227.930|106.787 +638463.420|222232.145|106.702 +638458.970|222236.373|106.583 +638449.935|222244.944|105.833 +638427.752|222265.996|104.714 +638423.284|222270.233|104.236 +638418.590|222274.674|102.834 +638405.203|222287.369|101.252 +638400.549|222291.773|99.904 +638395.964|222296.111|98.893 +638386.814|222304.770|96.567 +638382.325|222309.019|95.589 +638369.069|222321.589|93.836 +638364.771|222325.661|93.510 +638360.510|222329.709|93.327 +638351.872|222337.902|92.583 +638347.407|222342.126|91.462 +638329.237|222359.512|101.931 +638325.699|222362.902|104.208 +638321.904|222366.520|105.324 +638317.853|222370.366|105.467 +638390.064|222299.497|97.628 +638394.572|222295.218|98.566 +638412.637|222278.067|102.517 +638417.115|222273.812|103.023 +638421.610|222269.538|103.852 +638439.316|222252.701|105.309 +638452.676|222239.988|106.080 +638457.141|222235.742|106.513 +638461.554|222231.539|106.494 +638470.464|222223.062|106.900 +638475.072|222218.682|107.592 +638479.574|222214.397|107.832 +638484.027|222210.157|107.869 +638488.456|222205.942|107.814 +638493.074|222201.552|108.408 +638506.863|222188.440|109.804 +638511.365|222184.154|109.960 +638516.013|222179.738|110.573 +638520.634|222175.340|110.859 +638525.105|222171.082|110.676 +638529.623|222166.781|110.743 +638534.179|222162.443|110.771 +638538.797|222158.045|110.871 +638543.424|222153.644|111.292 +638548.020|222149.267|111.335 +638552.559|222144.945|111.365 +638557.262|222140.470|111.719 +638561.874|222136.078|111.911 +638566.516|222131.665|112.258 +638571.197|222127.205|112.334 +638575.742|222122.871|111.978 +638580.268|222118.555|111.548 +638584.932|222114.111|111.591 +638590.031|222109.286|113.928 +638608.959|222091.282|115.617 +638613.793|222086.688|116.452 +638628.226|222072.969|118.500 +638633.038|222068.394|119.073 +638637.851|222063.816|119.680 +638642.576|222059.314|119.540 +638647.337|222054.785|119.899 +638652.219|222050.146|120.707 +638671.273|222032.007|121.439 +638685.577|222018.389|121.734 +638690.344|222013.847|121.466 +638695.077|222009.336|121.323 +638699.845|222004.795|121.097 +638704.618|222000.244|120.945 +638709.409|221995.681|120.899 +638728.663|221977.347|121.256 +638733.626|221972.629|121.807 +638738.435|221968.051|122.045 +638743.358|221963.369|122.402 +638748.119|221958.831|122.024 +638752.871|221954.295|121.283 +638757.677|221949.717|121.253 +638762.487|221945.133|120.924 +638767.465|221940.402|121.789 +638782.074|221926.485|121.600 +638786.957|221921.840|121.902 +638791.897|221917.140|122.307 +638796.844|221912.434|122.801 +638801.694|221907.816|122.573 +638806.589|221903.156|122.722 +638811.523|221898.459|122.835 +638826.474|221884.249|124.834 +638831.372|221879.579|124.801 +638850.986|221860.904|124.971 +638855.893|221856.229|124.703 +638860.782|221851.565|124.307 +638865.705|221846.877|124.200 +638870.594|221842.217|123.834 +638875.413|221837.621|123.277 +638885.139|221828.336|121.743 +638889.991|221823.706|121.097 +638894.832|221819.083|119.899 +638899.675|221814.459|119.168 +638904.588|221809.774|118.638 +638909.499|221805.089|118.101 +638914.412|221800.404|117.601 +638919.377|221795.674|117.616 +638924.352|221790.940|117.741 +638929.353|221786.173|117.711 +638934.282|221781.482|117.909 +638939.320|221776.688|118.287 +638949.363|221767.138|119.281 +638954.417|221762.335|119.915 +638974.561|221743.184|122.694 +638979.627|221738.374|123.694 +638984.638|221733.607|124.139 +638989.664|221728.828|124.785 +638999.720|221719.263|125.651 +639004.709|221714.515|125.980 +639009.763|221709.711|126.556 +639014.752|221704.962|126.937 +639019.724|221700.232|127.126 +639024.738|221695.458|127.282 +639044.659|221676.482|126.956 +639049.646|221671.730|126.852 +639059.579|221662.260|126.090 +639069.482|221652.823|125.614 +639074.518|221648.025|125.627 +639079.483|221643.295|125.236 +639109.186|221614.945|120.597 +639114.084|221610.267|119.851 +639119.089|221605.494|119.299 +639124.051|221600.763|118.814 +639129.019|221596.026|118.494 +639138.986|221586.523|117.427 +639143.951|221581.786|117.013 +639148.959|221577.010|116.495 +639153.927|221572.276|116.102 +639173.849|221553.284|114.706 +639178.869|221548.499|114.501 +639183.837|221543.765|114.026 +639193.820|221534.246|113.182 +639198.776|221529.516|112.481 +639203.744|221524.779|111.990 +639228.643|221501.032|109.338 +639238.638|221491.501|108.302 +639243.615|221486.755|107.848 +639258.550|221472.515|106.506 +639263.528|221467.763|105.915 +639273.498|221458.263|105.205 +639278.484|221453.511|105.339 +639293.407|221439.322|107.064 +639308.318|221425.122|107.259 +639313.256|221420.416|107.076 +639318.245|221415.661|106.695 +639323.186|221410.948|106.369 +639328.127|221406.239|106.336 +639333.117|221401.490|106.354 +639357.793|221377.978|105.696 +639362.740|221373.266|105.644 +639367.635|221368.602|105.754 +639377.514|221359.199|106.394 +639392.315|221345.051|102.291 +639397.295|221340.293|101.249 +639402.251|221335.550|99.551 +639407.174|221330.856|99.191 +639416.882|221321.639|101.520 +639421.765|221317.000|102.437 +639436.285|221303.235|107.235 +639450.876|221289.336|107.180 +639455.741|221284.703|107.180 +639460.596|221280.082|107.424 +639465.452|221275.458|107.649 +639470.304|221270.844|108.037 +639479.939|221261.681|109.177 +639484.737|221257.119|109.719 +639503.942|221238.849|111.453 +639508.724|221234.295|111.414 +639513.546|221229.699|111.472 +639518.307|221225.172|111.874 +639523.114|221220.597|112.243 +639527.860|221216.074|112.093 +639537.491|221206.900|111.938 +639542.320|221202.294|111.335 +639547.081|221197.756|111.091 +639556.709|221188.566|109.798 +639571.148|221174.798|108.643 +639575.954|221170.211|107.979 +639580.752|221165.639|107.528 +639585.525|221161.088|107.369 +639590.204|221156.638|107.869 +639594.928|221152.145|108.408 +639599.607|221147.698|108.948 +639609.016|221138.746|109.948 +639613.664|221134.324|110.277 +639623.058|221125.387|110.984 +639627.792|221120.876|110.923 +639632.434|221116.459|111.377 +639637.143|221111.982|111.670 +639641.770|221107.580|112.295 +639646.433|221103.146|112.593 +639655.779|221094.245|112.481 +639660.454|221089.795|112.670 +639665.084|221085.388|112.862 +639669.769|221080.926|112.990 +639674.338|221076.579|113.349 +639678.959|221072.184|113.681 +639692.775|221059.041|114.767 +639697.359|221054.679|115.050 +639702.011|221050.253|115.184 +639706.595|221045.892|115.501 +639711.194|221041.512|115.699 +639715.836|221037.089|115.522 +639720.418|221032.724|115.480 +639725.057|221028.305|115.394 +639729.662|221023.919|115.212 +639743.534|221010.696|114.319 +639748.118|221006.326|113.989 +639752.763|221001.900|113.608 +639757.350|220997.526|113.319 +639761.898|220993.195|113.386 +639771.030|220984.493|112.892 +639784.679|220971.484|112.164 +639798.276|220958.527|111.685 +639802.759|220954.257|111.694 +639811.733|220945.713|111.728 +639816.189|220941.467|111.642 +639842.957|220915.964|110.694 +639847.422|220911.709|110.374 +639851.835|220907.503|110.091 +639856.285|220903.260|109.914 +639865.113|220894.848|109.457 +639873.979|220886.393|108.509 +639882.776|220878.008|108.110 +639918.044|220844.345|102.404 +639922.372|220840.215|101.813 +639930.922|220832.068|101.624 +639935.183|220828.008|101.215 +639939.447|220823.945|101.090 +639943.593|220819.995|101.090 +639952.042|220811.945|100.816 +639981.184|220784.181|99.508 +639985.286|220780.273|99.362 +639989.398|220776.357|99.188 +639993.373|220772.577|99.508 +639997.414|220768.731|99.478 +640001.471|220764.866|99.380 +640005.519|220761.013|99.350 +640009.472|220757.255|99.569 +640013.386|220753.533|99.996 +640017.348|220749.766|100.200 +640021.210|220746.093|100.654 +640025.078|220742.417|101.099 +640028.958|220738.729|101.489 +640032.841|220735.035|101.630 +640036.639|220731.426|102.200 +640040.470|220727.787|102.620 +640044.375|220724.068|102.669 +640048.228|220720.401|102.748 +640052.062|220716.756|102.931 +640055.784|220713.217|103.428 +640059.664|220709.520|103.157 +640063.449|220705.920|103.370 +640067.265|220702.287|103.196 +640070.999|220698.733|103.428 +640074.754|220695.161|103.574 +640078.510|220691.585|103.724 +639985.765|220777.765|99.374 +639981.641|220781.688|99.575 +639973.798|220789.113|97.777 +639961.064|220801.234|99.764 +639944.105|220817.361|101.194 +639939.895|220821.363|101.227 +639935.643|220825.402|101.212 +639927.106|220833.519|101.752 +639922.830|220837.585|101.959 +639918.572|220841.630|102.066 +639891.965|220866.971|106.988 +639887.515|220871.204|107.549 +639874.302|220883.771|108.509 +639869.889|220887.969|108.939 +639860.946|220896.472|109.643 +639856.514|220900.688|109.951 +639852.064|220904.915|110.064 +639847.599|220909.158|110.298 +639843.127|220913.413|110.621 +639829.649|220926.227|111.441 +639816.143|220939.068|112.008 +639811.623|220943.360|111.776 +639802.619|220951.916|111.834 +639798.090|220956.216|111.725 +639765.991|220986.733|113.176 +639761.398|220991.101|113.404 +639747.469|221004.344|114.218 +639742.790|221008.791|114.431 +639738.194|221013.165|114.812 +639724.185|221026.482|115.489 +639719.497|221030.938|115.522 +639714.855|221035.349|115.568 +639710.149|221039.823|115.818 +639705.540|221044.200|115.620 +639700.901|221048.605|115.288 +639696.244|221053.024|115.132 +639691.602|221057.435|114.876 +639686.911|221061.885|114.614 +639682.208|221066.353|114.507 +639677.563|221070.757|113.849 +639672.927|221075.159|113.578 +639668.214|221079.630|113.136 +639663.520|221084.086|112.987 +639658.823|221088.549|112.916 +639644.571|221102.091|112.996 +639639.917|221106.507|112.532 +639635.183|221110.997|111.926 +639625.719|221119.980|111.203 +639611.491|221133.485|110.338 +639606.742|221137.990|109.935 +639602.009|221142.483|109.414 +639597.226|221147.019|108.869 +639592.487|221151.514|108.415 +639587.704|221156.053|107.912 +639582.968|221160.543|107.406 +639578.088|221165.185|107.601 +639573.275|221169.763|108.168 +639558.709|221183.619|109.350 +639553.832|221188.255|109.673 +639548.915|221192.940|110.612 +639539.201|221202.181|111.588 +639534.294|221206.845|111.816 +639529.509|221211.389|111.645 +639519.749|221220.668|112.157 +639514.900|221225.267|111.508 +639510.066|221229.860|111.472 +639505.173|221234.509|111.630 +639500.312|221239.120|111.234 +639485.794|221252.894|109.801 +639480.887|221257.548|109.393 +639471.139|221266.790|108.235 +639466.278|221271.402|107.857 +639461.419|221276.007|107.418 +639456.500|221280.680|107.390 +639451.586|221285.343|107.180 +639441.720|221294.719|107.835 +639436.822|221299.358|107.238 +639431.909|221304.024|107.159 +639422.134|221313.263|103.961 +639412.325|221322.541|101.386 +639387.490|221346.151|103.599 +639377.511|221355.664|106.385 +639367.565|221365.100|105.802 +639362.612|221369.800|105.708 +639357.656|221374.506|105.735 +639332.745|221398.168|106.302 +639327.743|221402.920|106.674 +639322.747|221407.660|106.467 +639317.749|221412.408|106.653 +639307.754|221421.906|107.293 +639302.758|221426.655|107.735 +639297.763|221431.398|107.713 +639292.767|221436.134|107.131 +639277.728|221450.399|106.232 +639272.729|221455.138|105.568 +639267.731|221459.884|105.543 +639262.692|221464.673|106.071 +639247.669|221478.949|107.174 +639232.660|221493.220|108.634 +639222.593|221502.788|109.442 +639212.632|221512.261|110.560 +639202.631|221521.774|111.908 +639192.591|221531.323|113.203 +639177.613|221545.561|114.602 +639172.627|221550.297|114.757 +639167.604|221555.073|115.215 +639157.597|221564.580|115.931 +639152.605|221569.323|115.934 +639147.594|221574.087|116.699 +639127.644|221593.052|118.378 +639122.676|221597.776|118.955 +639117.650|221602.552|119.275 +639112.724|221607.234|119.759 +639107.723|221611.989|120.567 +639102.751|221616.710|121.100 +639097.789|221621.428|121.747 +639092.854|221626.125|122.868 +639083.019|221635.480|124.831 +639078.044|221640.204|125.197 +639073.061|221644.935|125.468 +639068.068|221649.674|125.563 +639063.078|221654.411|125.749 +639058.156|221659.087|126.273 +639053.172|221663.817|126.572 +639048.174|221668.560|126.623 +639043.276|221673.211|126.818 +639028.401|221687.329|127.602 +639023.412|221692.057|127.276 +639018.434|221696.778|127.129 +639008.452|221706.239|126.568 +638998.506|221715.670|125.965 +638993.480|221720.428|125.386 +638988.518|221725.131|125.011 +638973.491|221739.359|123.091 +638958.471|221753.581|121.076 +638948.458|221763.057|119.445 +638943.472|221767.782|119.174 +638938.500|221772.494|118.552 +638928.549|221781.921|117.885 +638923.611|221786.606|117.717 +638918.691|221791.273|117.760 +638913.763|221795.945|117.757 +638908.880|221800.584|118.196 +638904.043|221805.178|118.625 +638899.126|221809.850|119.201 +638894.310|221814.425|119.866 +638889.546|221818.961|120.966 +638884.685|221823.578|121.658 +638879.820|221828.196|121.875 +638870.243|221837.307|123.700 +638865.406|221841.900|124.206 +638860.572|221846.487|124.350 +638855.689|221851.126|124.883 +638850.843|221855.723|124.959 +638846.018|221860.304|125.221 +638841.184|221864.891|125.413 +638831.381|221874.184|125.215 +638816.653|221888.138|123.941 +638811.709|221892.820|123.459 +638806.836|221897.441|123.149 +638801.947|221902.074|122.761 +638797.097|221906.670|122.694 +638792.239|221911.279|122.579 +638787.429|221915.842|122.856 +638777.654|221925.104|121.990 +638772.866|221929.649|122.475 +638768.025|221934.239|122.259 +638763.200|221938.814|122.195 +638758.235|221943.508|121.183 +638700.789|221997.985|121.436 +638672.425|222024.887|122.155 +638667.697|222029.371|122.185 +638662.973|222033.845|121.978 +638648.693|222047.375|121.155 +638643.813|222051.990|120.168 +638639.015|222056.528|119.680 +638624.769|222070.019|118.339 +638619.975|222074.560|117.955 +638615.162|222079.111|116.970 +638610.404|222083.616|116.580 +638605.649|222088.118|115.961 +638600.861|222092.644|115.212 +638596.179|222097.082|115.029 +638591.427|222101.581|114.511 +638586.681|222106.071|113.797 +638581.768|222110.707|112.246 +638577.046|222115.181|111.969 +638572.545|222119.451|112.328 +638563.391|222128.135|112.584 +638558.716|222132.558|112.130 +638549.419|222141.367|111.539 +638544.811|222145.734|111.475 +638540.248|222150.056|111.414 +638535.655|222154.406|110.981 +638531.070|222158.749|110.847 +638526.514|222163.071|110.865 +638521.960|222167.384|110.691 +638517.476|222171.636|110.859 +638499.173|222188.970|109.512 +638489.974|222197.678|108.518 +638485.503|222201.912|108.415 +638467.410|222219.048|107.006 +638427.127|222257.191|104.092 +638422.680|222261.400|103.696 +638418.264|222265.582|103.455 +638413.728|222269.874|102.727 +638400.296|222282.575|100.566 +638395.672|222286.942|99.133 +638386.610|222295.507|97.140 +638377.957|222303.703|96.683 +638373.281|222308.114|94.973 +638364.610|222316.325|94.144 +638343.155|222336.643|92.574 +638334.919|222344.452|92.891 +638331.496|222347.735|95.640 +638327.912|222351.161|97.762 +638320.892|222357.869|102.376 +638317.295|222361.308|104.437 +638313.501|222364.916|105.562 +638387.765|222291.792|97.237 +638392.340|222287.451|98.231 +638401.576|222278.694|100.666 +638406.105|222274.397|101.566 +638410.592|222270.133|102.078 +638423.948|222257.438|103.337 +638428.465|222253.149|104.068 +638432.918|222248.912|104.342 +638441.892|222240.384|105.223 +638464.334|222219.048|106.720 +638468.937|222214.674|107.131 +638473.481|222210.355|107.534 +638478.008|222206.048|107.890 +638482.598|222201.687|108.314 +638487.069|222197.435|108.451 +638491.599|222193.128|108.643 +638500.883|222184.307|109.661 +638505.409|222180.000|109.911 +638510.021|222175.617|110.344 +638514.617|222171.246|110.722 +638519.168|222166.918|110.661 +638528.254|222158.274|110.765 +638532.814|222153.936|110.807 +638537.499|222149.483|111.240 +638542.058|222145.149|111.319 +638546.661|222140.769|111.389 +638551.291|222136.368|111.618 +638555.982|222131.912|111.908 +638560.676|222127.452|112.505 +638565.324|222123.033|112.636 +638569.948|222118.634|112.670 +638574.456|222114.340|112.115 +638579.064|222109.954|112.115 +638588.781|222100.740|114.227 +638593.545|222096.216|114.852 +638598.285|222091.711|115.102 +638603.012|222087.222|115.571 +638612.617|222078.102|116.885 +638622.227|222068.979|118.333 +638627.055|222064.395|118.961 +638636.528|222055.391|119.552 +638641.353|222050.807|119.970 +638646.239|222046.174|121.036 +638651.012|222041.636|121.213 +638660.559|222032.565|121.923 +638665.399|222027.965|122.268 +638670.087|222023.503|122.039 +638674.915|222018.916|122.374 +638684.321|222009.961|121.914 +638693.852|222000.893|121.670 +638698.644|221996.336|121.585 +638712.994|221982.678|121.335 +638727.600|221968.798|122.286 +638732.443|221964.198|122.701 +638737.317|221959.565|122.691 +638742.133|221954.981|122.664 +638761.433|221936.614|121.999 +638766.322|221931.969|122.240 +638771.214|221927.320|122.518 +638781.065|221917.957|122.975 +638785.929|221913.327|122.801 +638790.776|221908.712|122.524 +638795.671|221904.058|122.612 +638800.590|221899.382|122.902 +638805.559|221894.661|123.219 +638810.466|221889.997|123.487 +638815.474|221885.243|124.173 +638835.249|221866.449|125.273 +638840.160|221861.779|125.343 +638845.085|221857.091|125.182 +638854.839|221847.807|124.484 +638859.773|221843.113|124.444 +638869.472|221833.871|123.386 +638874.364|221829.214|123.045 +638879.204|221824.593|121.817 +638884.100|221819.936|121.509 +638888.955|221815.309|120.872 +638893.798|221810.688|119.656 +638903.613|221801.340|118.479 +638908.523|221796.664|117.921 +638913.476|221791.958|117.757 +638918.435|221787.243|117.699 +638923.398|221782.525|117.696 +638928.372|221777.797|117.854 +638938.446|221768.236|119.009 +638943.478|221763.456|119.342 +638958.602|221749.100|120.884 +638963.613|221744.345|121.646 +638968.691|221739.536|122.670 +638978.746|221729.992|123.758 +638983.809|221725.183|124.246 +638988.853|221720.400|125.084 +638993.922|221715.588|125.715 +638998.936|221710.830|126.270 +639003.901|221706.111|126.267 +639008.973|221701.301|127.047 +639013.975|221696.544|126.983 +639018.943|221691.825|127.087 +639028.980|221682.288|127.507 +639033.921|221677.588|127.349 +639043.879|221668.115|126.812 +639048.853|221663.384|126.453 +639053.831|221658.645|126.221 +639058.811|221653.908|126.005 +639063.786|221649.178|125.700 +639068.815|221644.392|125.560 +639073.792|221639.662|125.300 +639098.569|221616.058|121.512 +639103.522|221611.340|120.853 +639108.518|221606.579|120.091 +639113.523|221601.815|119.461 +639118.485|221597.090|118.961 +639123.453|221592.363|118.552 +639128.467|221587.590|118.122 +639143.415|221573.364|116.775 +639148.383|221568.634|116.364 +639153.388|221563.870|115.611 +639158.420|221559.085|115.620 +639168.427|221549.569|115.394 +639183.383|221535.338|114.120 +639208.301|221511.606|110.688 +639248.217|221473.612|106.860 +639253.201|221468.870|106.497 +639258.187|221464.127|106.339 +639263.171|221459.384|105.781 +639268.161|221454.642|105.876 +639273.156|221449.905|106.561 +639283.090|221440.474|107.561 +639293.017|221431.035|107.232 +639298.004|221426.298|107.649 +639307.885|221416.904|107.412 +639312.875|221412.152|106.906 +639317.819|221407.452|106.732 +639327.706|221398.055|106.613 +639332.653|221393.346|106.226 +639357.245|221369.968|105.839 +639362.192|221365.265|105.808 +639367.093|221360.608|105.888 +639371.988|221355.956|106.083 +639386.768|221341.868|103.090 +639401.480|221327.845|100.115 +639416.056|221314.025|102.523 +639420.832|221309.520|105.248 +639430.446|221300.409|107.204 +639435.307|221295.789|107.220 +639444.988|221286.590|107.314 +639449.809|221282.006|107.229 +639454.680|221277.376|107.125 +639459.493|221272.804|107.345 +639464.294|221268.250|107.857 +639469.097|221263.687|108.262 +639473.825|221259.210|109.332 +639483.386|221250.133|110.103 +639497.715|221236.526|111.136 +639502.482|221232.000|111.420 +639507.240|221227.483|111.840 +639512.028|221222.929|111.719 +639516.796|221218.406|112.054 +639521.569|221213.867|112.228 +639526.314|221209.359|112.154 +639531.142|221204.760|111.517 +639535.873|221200.267|111.716 +639545.465|221191.138|110.893 +639550.260|221186.576|110.249 +639559.806|221177.486|109.000 +639569.383|221168.370|108.140 +639574.110|221163.874|107.948 +639578.853|221159.363|107.592 +639583.547|221154.907|107.939 +639588.235|221150.457|108.335 +639592.923|221146.007|108.750 +639597.604|221141.563|109.237 +639602.298|221137.106|109.606 +639606.931|221132.711|110.146 +639620.912|221119.440|111.405 +639639.475|221101.811|112.923 +639653.441|221088.533|113.108 +639658.065|221084.141|113.361 +639662.728|221079.706|113.264 +639667.361|221075.305|113.468 +639681.129|221062.226|114.520 +639685.765|221057.822|114.760 +639694.939|221049.107|115.337 +639699.530|221044.746|115.605 +639704.086|221040.415|115.751 +639708.719|221036.007|115.660 +639713.310|221031.642|115.562 +639717.946|221027.232|115.495 +639722.548|221022.852|115.324 +639740.906|221005.387|114.532 +639745.536|221000.982|114.270 +639750.133|220996.609|113.922 +639759.289|220987.897|113.566 +639763.833|220983.572|113.313 +639781.960|220966.327|112.557 +639786.575|220961.934|112.270 +639791.140|220957.585|111.636 +639795.588|220953.360|111.923 +639800.086|220949.084|111.840 +639804.573|220944.817|111.865 +639809.017|220940.592|111.868 +639817.942|220932.107|112.017 +639822.419|220927.849|111.862 +639826.848|220923.636|111.709 +639831.374|220919.326|111.237 +639840.332|220910.801|110.697 +639844.761|220906.583|110.289 +639849.223|220902.337|110.024 +639853.661|220898.115|109.951 +639866.908|220885.512|109.012 +639871.352|220881.281|108.658 +639880.157|220872.899|107.936 +639884.522|220868.742|107.521 +639888.924|220864.548|106.918 +639915.490|220839.225|101.998 +639923.979|220831.154|101.886 +639928.337|220826.999|101.182 +639932.571|220822.973|101.230 +639936.789|220818.962|101.105 +639940.996|220814.963|101.063 +639945.199|220810.964|101.057 +639949.454|220806.913|100.496 +639953.742|220802.822|99.746 +639966.367|220790.801|98.758 +639974.554|220783.020|99.115 +639978.532|220779.246|99.944 +639982.625|220775.351|99.877 +639986.734|220771.443|99.749 +639990.812|220767.560|99.792 +639994.872|220763.698|99.691 +639998.938|220759.827|99.557 +640002.943|220756.020|99.770 +640006.872|220752.287|100.136 +640010.880|220748.473|100.109 +640014.788|220744.764|100.612 +640018.610|220741.134|101.288 +640022.484|220737.455|101.718 +640030.229|220730.097|102.379 +640037.910|220722.791|102.873 +640041.757|220719.136|103.242 +640045.615|220715.467|103.312 +640053.324|220708.136|103.529 +640057.137|220704.512|103.614 +640060.926|220700.909|103.821 +640064.699|220697.319|103.873 +640068.475|220693.725|103.919 +640072.301|220690.086|103.745 +640076.108|220686.462|103.675 +640079.771|220682.981|104.053 +639978.120|220777.305|99.950 +639974.137|220781.072|99.374 +639970.043|220784.952|99.423 +639966.172|220788.600|97.963 +639962.012|220792.545|98.124 +639957.677|220796.665|99.277 +639953.459|220800.668|99.542 +639936.460|220816.798|101.191 +639932.300|220820.736|101.197 +639923.707|220828.889|102.011 +639915.100|220837.052|102.419 +639910.735|220841.194|102.867 +639888.567|220862.259|107.055 +639884.202|220866.395|107.354 +639879.816|220870.558|107.817 +639875.393|220874.755|108.229 +639848.821|220899.956|109.817 +639844.270|220904.272|110.259 +639839.838|220908.475|110.594 +639835.364|220912.721|110.929 +639830.847|220917.007|111.222 +639826.321|220921.305|111.636 +639821.837|220925.557|111.755 +639817.344|220929.818|111.969 +639812.772|220934.155|112.069 +639808.298|220938.398|112.200 +639803.842|220942.616|111.837 +639799.288|220946.935|111.871 +639794.728|220951.260|111.984 +639790.263|220955.488|111.749 +639785.666|220959.853|112.191 +639781.030|220964.251|112.554 +639762.669|220981.667|113.307 +639758.054|220986.050|113.663 +639744.152|220999.236|114.163 +639739.501|221003.649|114.529 +639734.850|221008.063|114.925 +639716.214|221025.741|115.413 +639711.554|221030.161|115.599 +639706.848|221034.626|115.806 +639702.218|221039.012|115.766 +639697.503|221043.481|115.654 +639692.909|221047.833|115.334 +639683.564|221056.685|114.849 +639678.888|221061.114|114.437 +639664.831|221074.427|113.590 +639660.122|221078.893|113.584 +639655.382|221083.382|113.410 +639650.691|221087.829|113.255 +639645.943|221092.328|113.200 +639641.197|221096.827|113.172 +639636.521|221101.256|112.895 +639622.348|221114.676|111.716 +639603.402|221132.617|109.945 +639598.659|221137.103|109.454 +639593.910|221141.599|109.039 +639589.170|221146.089|108.561 +639584.409|221150.600|108.341 +639579.624|221155.126|107.799 +639574.817|221159.683|107.610 +639570.017|221164.240|107.979 +639565.164|221168.842|108.427 +639560.333|221173.430|108.655 +639550.586|221182.683|109.710 +639545.727|221187.301|110.469 +639540.820|221191.964|111.271 +639535.989|221196.549|111.691 +639531.078|221201.206|111.880 +639526.257|221205.784|112.270 +639521.364|221210.420|112.243 +639516.527|221215.004|112.121 +639511.708|221219.567|111.749 +639506.810|221224.212|111.880 +639497.121|221233.390|111.243 +639492.305|221237.950|110.832 +639482.573|221247.167|110.149 +639477.696|221251.791|110.073 +639468.018|221260.947|108.290 +639458.252|221270.201|107.409 +639453.391|221274.803|106.982 +639448.465|221279.479|107.003 +639443.579|221284.115|107.229 +639438.654|221288.793|107.384 +639433.743|221293.445|107.049 +639428.821|221298.114|107.128 +639414.206|221311.919|102.675 +639409.305|221316.561|102.014 +639394.522|221330.542|99.054 +639364.584|221359.035|105.915 +639359.628|221363.735|105.848 +639354.666|221368.447|106.196 +639329.752|221392.081|106.125 +639314.792|221406.282|107.022 +639309.793|221411.025|107.015 +639299.796|221420.516|107.665 +639294.800|221425.256|107.668 +639289.801|221429.995|107.421 +639284.806|221434.738|107.744 +639279.807|221439.475|107.567 +639259.806|221458.430|106.147 +639254.765|221463.216|106.464 +639249.772|221467.958|106.851 +639229.747|221486.966|107.826 +639219.670|221496.533|108.472 +639199.711|221515.507|111.700 +639194.701|221520.277|112.840 +639179.686|221534.545|114.791 +639169.667|221544.055|115.199 +639159.645|221553.568|115.547 +639149.636|221563.068|116.321 +639129.668|221582.030|117.836 +639124.691|221586.757|118.266 +639114.690|221596.255|119.125 +639080.004|221629.234|124.740 +639075.030|221633.959|125.172 +639070.049|221638.689|125.514 +639065.051|221643.432|125.529 +639060.049|221648.175|125.566 +639055.132|221652.847|126.181 +639050.140|221657.587|126.358 +639045.147|221662.327|126.556 +639040.197|221667.024|126.693 +639035.226|221671.748|127.242 +639030.276|221676.445|127.404 +639025.317|221681.151|127.452 +639015.304|221690.646|127.032 +639000.335|221704.837|126.334 +638995.337|221709.574|126.041 +638990.365|221714.283|125.560 +638985.367|221719.017|124.773 +638980.328|221723.787|124.148 +638975.326|221728.520|123.423 +638965.308|221738.012|122.463 +638960.330|221742.721|121.618 +638955.255|221747.525|120.774 +638935.361|221766.376|119.107 +638920.414|221780.537|117.699 +638915.497|221785.201|117.805 +638910.575|221789.874|117.839 +638905.606|221794.586|117.958 +638900.769|221799.179|118.397 +638891.049|221808.421|119.765 +638886.227|221813.005|120.832 +638876.556|221822.195|121.804 +638866.906|221831.369|123.444 +638857.277|221840.519|124.462 +638852.367|221845.180|124.798 +638842.741|221854.321|125.526 +638837.770|221859.030|125.014 +638832.933|221863.620|125.224 +638828.053|221868.247|125.136 +638813.380|221882.155|124.328 +638798.682|221896.081|123.213 +638793.751|221900.754|122.917 +638788.865|221905.387|122.603 +638784.009|221909.989|122.560 +638779.215|221914.540|122.603 +638774.429|221919.085|123.106 +638769.580|221923.687|123.139 +638764.706|221928.302|122.710 +638759.790|221932.962|122.338 +638754.937|221937.562|122.103 +638745.427|221946.593|123.030 +638740.587|221951.183|122.954 +638735.802|221955.722|122.932 +638730.977|221960.297|122.993 +638726.054|221964.954|122.451 +638721.229|221969.523|121.923 +638716.407|221974.095|122.091 +638711.582|221978.667|121.939 +638682.913|222005.849|122.018 +638673.522|222014.758|122.405 +638668.758|222019.276|122.515 +638659.248|222028.289|122.326 +638654.509|222032.778|122.067 +638649.659|222037.369|121.490 +638644.886|222041.889|121.091 +638640.094|222046.424|120.625 +638635.175|222051.075|119.729 +638630.451|222055.550|119.418 +638625.714|222060.037|119.336 +638620.810|222064.676|118.339 +638606.417|222078.294|116.498 +638601.552|222082.894|115.586 +638577.650|222105.513|112.636 +638572.907|222110.006|112.270 +638568.354|222114.328|112.624 +638559.085|222123.112|112.599 +638554.363|222127.583|112.170 +638549.678|222132.018|111.700 +638545.030|222136.420|111.438 +638540.403|222140.803|111.316 +638535.783|222145.183|111.228 +638531.101|222149.617|110.868 +638526.581|222153.900|110.832 +638521.999|222158.243|110.746 +638517.409|222162.593|110.649 +638512.840|222166.924|110.673 +638508.271|222171.252|110.481 +638499.063|222179.970|109.582 +638489.770|222188.760|108.390 +638480.766|222197.297|108.372 +638476.112|222201.699|107.707 +638471.598|222205.975|107.467 +638462.460|222214.625|106.555 +638444.312|222231.804|104.897 +638439.844|222236.038|104.775 +638435.329|222240.308|104.260 +638417.532|222257.160|103.053 +638408.547|222265.664|101.992 +638404.008|222269.959|101.294 +638394.846|222278.612|99.207 +638390.152|222283.041|97.518 +638372.656|222299.595|96.055 +638363.784|222307.977|94.638 +638350.811|222320.248|93.574 +638341.832|222328.721|91.324 +638337.930|222332.434|92.632 +638322.306|222347.278|96.616 +638311.745|222357.373|103.748 +638389.186|222280.740|97.817 +638393.496|222276.646|97.734 +638402.957|222267.700|100.919 +638407.544|222263.354|101.858 +638412.073|222259.059|102.349 +638416.548|222254.816|102.849 +638429.919|222242.118|103.379 +638434.528|222237.751|104.102 +638438.996|222233.508|104.248 +638457.266|222216.177|106.065 +638461.847|222211.833|106.577 +638475.530|222198.849|107.525 +638489.422|222185.666|108.707 +638494.025|222181.301|109.253 +638498.539|222177.013|109.170 +638512.578|222163.699|110.670 +638517.147|222159.356|110.697 +638521.737|222155.000|110.835 +638526.325|222150.639|110.752 +638530.948|222146.246|110.853 +638535.603|222141.827|111.127 +638540.269|222137.392|111.237 +638544.911|222132.988|111.493 +638549.605|222128.528|111.795 +638554.351|222124.026|112.356 +638559.036|222119.579|112.657 +638563.861|222115.004|113.422 +638568.381|222110.701|112.666 +638572.980|222106.324|112.331 +638577.793|222101.761|113.124 +638592.210|222088.087|115.013 +638601.766|222079.020|115.952 +638606.637|222074.402|116.684 +638621.163|222060.628|118.900 +638626.061|222055.986|119.637 +638630.743|222051.536|119.485 +638635.583|222046.942|119.948 +638640.445|222042.334|120.860 +638645.258|222037.765|121.244 +638650.113|222033.162|121.890 +638654.947|222028.578|122.435 +638659.708|222024.052|122.304 +638664.524|222019.480|122.822 +638669.233|222015.002|122.414 +638674.061|222010.418|122.765 +638678.835|222005.883|122.789 +638712.369|221974.016|122.225 +638717.145|221969.471|121.814 +638722.001|221964.863|122.274 +638731.849|221955.520|123.173 +638736.677|221950.930|123.203 +638741.529|221946.322|123.085 +638746.430|221941.667|123.322 +638760.914|221927.902|122.999 +638765.843|221923.221|123.182 +638770.644|221918.655|122.847 +638775.517|221914.022|122.673 +638780.355|221909.425|122.621 +638785.277|221904.747|122.509 +638790.191|221900.086|123.066 +638795.134|221895.392|123.149 +638804.979|221886.047|123.816 +638809.896|221881.381|124.145 +638824.758|221867.272|125.075 +638829.687|221862.593|125.240 +638834.615|221857.911|125.432 +638839.510|221853.260|125.380 +638844.390|221848.621|125.227 +638854.193|221839.300|124.514 +638859.082|221834.649|124.081 +638863.977|221829.994|123.700 +638878.540|221816.129|121.609 +638883.456|221811.453|121.039 +638898.114|221797.497|118.543 +638902.982|221792.867|118.007 +638907.987|221788.109|117.872 +638912.949|221783.396|117.784 +638917.917|221778.678|117.815 +638927.912|221769.193|118.491 +638933.075|221764.313|120.076 +638942.990|221754.888|119.674 +638958.090|221740.572|121.420 +638968.176|221731.010|122.624 +638973.229|221726.219|123.444 +638988.381|221711.860|125.450 +638993.386|221707.108|125.877 +638998.388|221702.365|126.267 +639003.423|221697.586|126.514 +639008.416|221692.849|126.879 +639023.436|221678.591|127.452 +639028.420|221673.854|127.148 +639033.418|221669.105|127.105 +639038.399|221664.372|126.788 +639043.391|221659.629|126.678 +639048.372|221654.893|126.407 +639053.340|221650.168|125.953 +639058.385|221645.380|125.950 +639063.365|221640.646|125.718 +639068.345|221635.913|125.483 +639073.317|221631.185|125.102 +639093.147|221612.309|121.829 +639098.103|221607.594|121.143 +639103.108|221602.830|120.469 +639108.064|221598.114|119.802 +639113.029|221593.393|119.223 +639118.043|221588.623|118.720 +639122.969|221583.938|118.378 +639127.986|221579.168|117.909 +639147.978|221560.164|116.553 +639152.964|221555.427|116.461 +639167.927|221541.199|115.230 +639192.924|221517.427|112.712 +639207.908|221503.157|109.704 +639217.856|221493.690|108.189 +639227.884|221484.165|108.040 +639232.871|221479.425|107.787 +639237.851|221474.685|107.171 +639242.850|221469.946|107.607 +639247.879|221465.160|107.058 +639252.866|221460.421|106.577 +639262.851|221450.941|106.519 +639267.804|221446.257|107.549 +639272.793|221441.520|107.616 +639277.786|221436.783|107.710 +639287.720|221427.350|107.534 +639292.712|221422.613|107.473 +639297.656|221417.922|107.701 +639302.649|221413.186|107.616 +639307.596|221408.483|107.192 +639327.478|221389.606|106.705 +639332.431|221384.903|106.357 +639357.181|221361.406|106.077 +639362.088|221356.749|105.933 +639366.992|221352.098|106.089 +639391.806|221328.451|98.944 +639406.421|221314.622|102.172 +639411.325|221309.974|102.596 +639416.077|221305.515|106.247 +639425.779|221296.319|107.140 +639430.686|221291.662|107.296 +639435.566|221287.029|107.006 +639440.428|221282.420|107.250 +639445.314|221277.775|106.817 +639450.184|221273.151|106.848 +639454.991|221268.597|107.314 +639464.693|221259.402|108.302 +639474.276|221250.331|109.875 +639479.086|221245.768|110.201 +639483.908|221241.196|110.377 +639488.705|221236.648|110.960 +639493.524|221232.079|111.185 +639498.334|221227.522|111.615 +639503.098|221223.002|111.959 +639507.941|221218.403|111.792 +639512.726|221213.864|111.847 +639517.494|221209.347|112.249 +639522.309|221204.769|111.804 +639536.662|221191.145|111.551 +639541.509|221186.536|110.813 +639546.303|221181.976|110.204 +639551.116|221177.398|109.366 +639555.895|221172.856|109.067 +639560.717|221168.272|108.226 +639565.472|221163.758|108.329 +639570.236|221159.232|107.723 +639574.982|221154.730|107.991 +639579.679|221150.280|108.332 +639584.431|221145.772|108.561 +639589.079|221141.364|108.924 +639593.819|221136.875|109.356 +639598.467|221132.464|109.710 +639603.158|221128.020|110.195 +639607.846|221123.576|110.679 +639617.142|221114.768|111.539 +639621.781|221110.372|112.084 +639635.741|221097.144|113.316 +639640.386|221092.740|113.328 +639645.083|221088.283|113.328 +639649.676|221083.925|113.419 +639654.312|221079.530|113.593 +639658.955|221075.128|113.730 +639663.545|221070.776|113.916 +639672.768|221062.034|114.392 +639677.358|221057.681|114.629 +639681.933|221053.350|115.044 +639686.472|221049.046|115.343 +639691.071|221044.688|115.550 +639695.613|221040.384|115.858 +639700.185|221036.047|115.897 +639704.754|221031.712|115.986 +639709.314|221027.384|115.742 +639713.928|221023.001|115.468 +639718.479|221018.685|115.379 +639736.688|221001.403|114.739 +639741.306|220997.017|114.575 +639745.811|220992.738|114.187 +639750.364|220988.416|113.837 +639754.915|220984.103|113.938 +639759.408|220979.835|113.724 +639777.485|220962.672|112.682 +639781.972|220958.417|112.636 +639790.918|220949.922|112.100 +639795.362|220945.707|112.075 +639799.861|220941.437|112.033 +639804.213|220937.313|112.371 +639808.630|220933.122|112.252 +639813.101|220928.879|112.112 +639817.533|220924.673|111.944 +639821.919|220920.509|111.749 +639826.357|220916.297|111.572 +639830.758|220912.118|111.338 +639835.242|220907.860|110.899 +639839.622|220903.699|110.509 +639844.036|220899.508|110.252 +639852.829|220891.160|109.716 +639865.975|220878.675|108.561 +639870.285|220874.588|108.491 +639874.641|220870.452|108.134 +639883.398|220862.128|107.189 +639909.757|220837.064|102.654 +639918.328|220828.929|102.072 +639926.850|220820.839|101.560 +639948.101|220800.655|99.655 +639960.841|220788.543|98.027 +639972.951|220777.070|99.252 +639976.907|220773.327|99.944 +639980.943|220769.499|100.200 +639984.969|220765.679|100.255 +639989.072|220761.787|100.197 +639993.135|220757.928|100.075 +639997.180|220754.091|100.087 +640001.121|220750.354|100.380 +640005.162|220746.523|100.441 +640009.070|220742.822|100.944 +640013.023|220739.073|101.206 +640016.867|220735.437|101.809 +640024.670|220728.043|102.675 +640032.445|220720.673|103.221 +640040.147|220713.370|103.666 +640047.859|220706.057|104.117 +640051.727|220702.388|104.175 +640059.429|220695.082|104.242 +640063.254|220691.451|104.303 +640067.110|220687.794|104.239 +640070.935|220684.164|104.077 +640078.336|220677.147|104.501 +639973.948|220773.732|99.493 +639969.991|220777.466|98.749 +639962.024|220784.992|97.326 +639953.572|220793.014|98.676 +639949.305|220797.065|99.203 +639945.074|220801.079|99.816 +639932.321|220813.177|101.304 +639923.881|220821.174|101.755 +639915.402|220829.212|102.245 +639880.438|220862.390|107.229 +639871.663|220870.711|108.171 +639858.529|220883.162|108.966 +639840.905|220899.868|110.316 +639836.419|220904.123|110.685 +639831.978|220908.335|111.112 +639818.658|220920.957|111.807 +639814.171|220925.209|111.962 +639809.730|220929.415|112.139 +639805.311|220933.603|112.221 +639800.812|220937.861|112.157 +639796.371|220942.065|112.063 +639791.899|220946.301|112.212 +639787.428|220950.532|112.008 +639778.342|220959.146|112.770 +639773.834|220963.419|112.935 +639760.157|220976.376|113.581 +639755.543|220980.747|113.889 +639746.362|220989.449|114.245 +639741.720|220993.847|114.486 +639737.127|220998.200|114.745 +639732.521|221002.564|115.117 +639714.020|221020.093|115.580 +639709.375|221024.489|115.586 +639704.720|221028.899|115.733 +639700.103|221033.273|115.992 +639695.424|221037.705|115.958 +639686.167|221046.465|115.477 +639681.513|221050.869|115.273 +639676.926|221055.207|114.907 +639672.235|221059.644|114.608 +639667.568|221064.061|114.587 +639662.890|221068.487|114.224 +639658.205|221072.918|113.931 +639653.514|221077.356|113.709 +639648.817|221081.803|113.581 +639644.111|221086.260|113.590 +639639.365|221090.755|113.520 +639634.674|221095.190|113.361 +639620.419|221108.681|112.487 +639615.807|221113.030|111.499 +639610.997|221117.581|111.158 +639606.300|221122.022|110.649 +639601.500|221126.560|110.219 +639596.748|221131.056|109.820 +639591.950|221135.592|109.387 +639587.201|221140.081|108.948 +639582.398|221144.629|108.643 +639577.591|221149.177|108.390 +639572.790|221153.718|108.046 +639567.984|221158.263|107.784 +639563.070|221162.926|108.402 +639553.338|221172.149|109.055 +639548.449|221176.782|109.405 +639543.588|221181.397|110.152 +639519.149|221204.562|112.054 +639514.244|221209.210|112.237 +639509.371|221213.819|111.886 +639504.515|221218.418|112.072 +639499.635|221223.036|111.886 +639494.719|221227.687|111.554 +639489.894|221232.250|111.210 +639484.980|221236.895|110.816 +639480.061|221241.549|110.530 +639475.187|221246.161|110.310 +639465.421|221255.378|108.259 +639450.675|221269.317|107.125 +639445.716|221274.008|106.744 +639440.781|221278.677|106.833 +639435.844|221283.356|107.104 +639430.869|221288.065|107.147 +639425.947|221292.722|107.083 +639420.972|221297.428|107.128 +639391.407|221325.312|99.728 +639386.426|221330.024|99.908 +639366.413|221349.050|106.125 +639361.454|221353.740|105.976 +639356.437|221358.495|106.375 +639351.475|221363.192|106.485 +639336.543|221377.329|106.894 +639331.544|221382.053|106.412 +639326.530|221386.808|107.183 +639306.562|221405.712|107.464 +639301.561|221410.442|107.390 +639291.554|221419.916|107.607 +639286.506|221424.695|107.729 +639281.505|221429.425|107.625 +639276.503|221434.159|107.616 +639271.452|221438.938|107.637 +639261.443|221448.399|106.766 +639256.441|221453.136|106.863 +639251.439|221457.869|107.037 +639246.443|221462.603|107.534 +639241.402|221467.382|108.195 +639231.383|221476.852|107.189 +639226.382|221481.586|107.244 +639221.386|221486.320|107.665 +639216.390|221491.053|108.125 +639211.364|221495.823|109.192 +639206.435|221500.502|110.326 +639201.412|221505.269|111.417 +639171.475|221533.649|114.809 +639166.494|221538.367|115.379 +639161.502|221543.095|115.532 +639151.495|221552.577|116.617 +639141.473|221562.069|117.184 +639136.432|221566.842|117.315 +639126.453|221576.291|117.888 +639121.478|221581.009|118.473 +639116.489|221585.733|118.708 +639111.459|221590.497|119.180 +639106.494|221595.207|119.884 +639096.552|221604.631|121.183 +639091.626|221609.300|121.740 +639081.714|221618.704|123.527 +639071.832|221628.073|124.901 +639066.852|221632.788|125.334 +639061.911|221637.470|125.642 +639056.915|221642.201|125.819 +639046.997|221651.595|126.636 +639042.029|221656.295|126.572 +639032.096|221665.704|127.245 +639027.139|221670.395|127.394 +639012.204|221684.522|127.123 +639007.209|221689.247|126.831 +639002.216|221693.965|126.663 +638997.260|221698.650|126.349 +638992.255|221703.383|126.038 +638987.253|221708.114|125.822 +638972.190|221722.336|123.563 +638962.119|221731.846|122.143 +638952.113|221741.297|121.097 +638942.124|221750.731|119.860 +638927.140|221764.892|118.513 +638922.206|221769.555|118.446 +638917.234|221774.256|117.988 +638912.294|221778.928|117.897 +638907.368|221783.589|117.985 +638902.449|221788.246|118.135 +638897.575|221792.858|118.287 +638892.686|221797.490|118.753 +638887.821|221802.105|119.442 +638878.199|221811.234|121.396 +638858.835|221829.589|123.871 +638854.025|221834.143|124.279 +638844.302|221843.351|125.063 +638839.419|221847.975|125.291 +638834.576|221852.559|125.468 +638829.665|221857.207|125.520 +638824.776|221861.828|125.377 +638819.869|221866.467|125.127 +638814.943|221871.121|124.755 +638810.033|221875.766|124.517 +638805.107|221880.418|123.834 +638795.342|221889.656|123.932 +638790.501|221894.231|123.612 +638785.573|221898.892|123.380 +638780.723|221903.473|123.057 +638775.816|221908.112|122.685 +638770.979|221912.690|122.844 +638766.133|221917.277|122.944 +638761.326|221921.825|123.008 +638756.574|221926.327|123.490 +638746.851|221935.516|122.978 +638742.096|221940.021|123.475 +638737.295|221944.563|123.353 +638732.467|221949.132|123.395 +638727.658|221953.679|123.267 +638722.814|221958.264|123.249 +638717.941|221962.869|122.755 +638713.106|221967.441|122.536 +638694.008|221985.525|123.072 +638684.458|221994.562|123.018 +638679.682|221999.083|123.008 +638670.099|222008.150|122.859 +638665.341|222012.655|123.021 +638646.163|222030.791|121.899 +638641.317|222035.366|121.097 +638636.489|222039.929|120.719 +638631.652|222044.498|120.037 +638626.878|222049.006|119.464 +638612.364|222062.716|117.382 +638597.968|222076.316|115.675 +638593.116|222080.903|115.126 +638588.379|222085.378|114.715 +638583.645|222089.855|114.331 +638578.903|222094.336|113.928 +638574.059|222098.908|113.029 +638569.323|222103.385|112.703 +638564.705|222107.759|113.020 +638560.215|222112.017|113.739 +638555.357|222116.601|112.602 +638550.687|222121.021|112.459 +638545.890|222125.550|111.694 +638541.202|222129.982|111.511 +638536.532|222134.396|111.188 +638531.881|222138.800|111.213 +638527.230|222143.195|110.774 +638522.618|222147.560|110.792 +638518.010|222151.922|110.856 +638513.410|222156.271|110.731 +638508.799|222160.636|110.557 +638504.248|222164.940|110.463 +638499.469|222169.448|109.564 +638494.851|222173.816|109.195 +638490.261|222178.156|108.988 +638471.741|222195.658|107.159 +638458.135|222208.523|106.497 +638439.703|222225.930|103.888 +638435.201|222230.185|103.644 +638430.724|222234.419|103.526 +638417.160|222247.236|102.297 +638412.671|222251.482|101.983 +638398.994|222264.390|99.658 +638367.953|222293.730|96.893 +638363.336|222298.083|95.659 +638358.776|222302.384|94.473 +638354.530|222306.404|94.561 +638350.226|222310.476|94.436 +638320.459|222338.630|93.205 +638316.805|222342.114|95.092 +638313.348|222345.418|97.530 +638370.355|222288.710|96.860 +638406.215|222254.746|101.212 +638415.149|222246.279|101.901 +638419.629|222242.036|102.212 +638424.149|222237.754|102.727 +638428.740|222233.407|103.337 +638433.165|222229.207|103.263 +638437.689|222224.922|103.638 +638442.325|222220.532|104.288 +638469.918|222194.393|107.064 +638474.582|222189.979|107.796 +638493.025|222172.496|108.786 +638497.682|222168.088|109.362 +638502.434|222163.590|110.179 +638507.101|222159.170|110.612 +638511.725|222154.784|110.624 +638516.318|222150.428|110.768 +638520.957|222146.027|110.661 +638525.541|222141.680|110.795 +638530.208|222137.261|111.100 +638534.847|222132.860|111.057 +638539.553|222128.400|111.350 +638544.192|222124.005|111.591 +638548.959|222119.494|112.243 +638553.711|222114.992|112.596 +638558.591|222110.380|113.880 +638563.114|222106.080|113.115 +638567.732|222101.697|112.859 +638572.490|222097.192|113.337 +638577.257|222092.678|113.880 +638582.024|222088.161|114.200 +638586.718|222083.713|114.422 +638591.512|222079.175|114.922 +638601.211|222069.994|116.361 +638606.060|222065.407|116.973 +638610.861|222060.860|117.357 +638615.771|222056.214|118.388 +638625.434|222047.067|119.357 +638630.329|222042.431|120.122 +638635.221|222037.807|120.875 +638654.576|222019.477|122.743 +638659.388|222014.914|122.917 +638668.987|222005.816|123.167 +638688.174|221987.622|123.292 +638702.560|221973.973|122.829 +638707.300|221969.480|122.774 +638712.223|221964.814|122.972 +638726.743|221951.049|123.368 +638731.590|221946.456|123.493 +638736.445|221941.850|123.368 +638741.307|221937.245|123.627 +638746.165|221932.636|123.581 +638751.018|221928.034|123.502 +638755.812|221923.480|123.036 +638760.658|221918.886|122.944 +638765.502|221914.290|122.862 +638770.397|221909.651|122.819 +638775.310|221904.991|122.947 +638780.266|221900.297|123.392 +638785.119|221895.700|123.453 +638790.084|221890.994|123.676 +638804.745|221877.095|123.810 +638809.765|221872.343|124.569 +638814.736|221867.634|124.959 +638819.665|221862.965|125.066 +638829.540|221853.604|125.493 +638834.441|221848.959|125.438 +638839.330|221844.320|125.325 +638849.038|221835.106|124.551 +638858.780|221825.858|123.719 +638883.024|221802.815|119.814 +638887.913|221798.167|118.973 +638892.802|221793.528|118.570 +638897.767|221788.819|118.449 +638902.723|221784.119|118.263 +638907.618|221779.471|118.001 +638912.598|221774.746|117.598 +638922.636|221765.243|118.631 +638937.674|221750.999|119.768 +638947.696|221741.508|120.491 +638972.897|221717.657|123.822 +638977.935|221712.890|124.478 +638982.983|221708.117|125.285 +638988.012|221703.356|125.928 +638993.014|221698.619|126.288 +638998.007|221693.889|126.538 +639002.987|221689.167|126.706 +639008.019|221684.403|126.919 +639027.938|221665.521|127.239 +639032.915|221660.797|126.837 +639037.902|221656.066|126.553 +639042.907|221651.320|126.596 +639047.884|221646.599|126.206 +639052.822|221641.911|125.992 +639057.805|221637.184|125.718 +639062.838|221632.410|125.529 +639067.769|221627.732|125.191 +639082.668|221613.574|122.847 +639087.673|221608.819|122.158 +639092.632|221604.110|121.497 +639097.591|221599.398|120.829 +639102.599|221594.640|120.146 +639112.532|221585.209|119.034 +639117.549|221580.445|118.531 +639122.539|221575.711|118.455 +639127.510|221570.993|117.970 +639142.549|221556.725|117.211 +639147.545|221551.992|117.363 +639152.519|221547.271|116.955 +639157.533|221542.510|116.352 +639177.662|221523.399|114.355 +639182.445|221518.860|113.886 +639192.469|221509.332|112.033 +639207.429|221495.113|109.390 +639242.466|221461.893|108.997 +639247.443|221457.156|107.744 +639262.470|221442.907|107.552 +639267.466|221438.173|107.656 +639272.412|221433.482|107.582 +639277.454|221428.709|108.168 +639287.393|221419.279|107.768 +639292.389|221414.545|107.741 +639297.382|221409.808|107.628 +639302.332|221405.118|107.732 +639307.321|221400.393|108.332 +639332.129|221376.850|106.580 +639337.076|221372.166|106.951 +639351.935|221358.075|106.720 +639356.897|221353.362|106.168 +639361.853|221348.665|106.110 +639366.757|221344.014|106.257 +639376.718|221334.544|104.205 +639381.738|221329.722|99.697 +639386.701|221325.022|99.871 +639391.580|221320.392|99.615 +639401.383|221311.138|102.590 +639435.533|221278.820|106.781 +639440.409|221274.194|106.695 +639445.277|221269.582|106.842 +639464.623|221251.260|108.326 +639474.187|221242.220|110.323 +639479.046|221237.621|110.749 +639483.813|221233.103|111.048 +639498.215|221219.467|112.060 +639503.043|221214.888|112.157 +639507.847|221210.332|111.935 +639512.632|221205.793|112.017 +639517.405|221201.273|112.353 +639522.251|221196.680|112.279 +639531.834|221187.588|111.716 +639536.681|221182.982|111.005 +639555.935|221164.697|108.546 +639560.705|221160.174|108.479 +639565.463|221155.654|107.918 +639570.203|221151.164|108.326 +639574.906|221146.711|108.597 +639579.624|221142.239|108.674 +639584.321|221137.792|109.058 +639589.009|221133.351|109.536 +639593.715|221128.895|109.826 +639603.063|221120.041|110.624 +639607.715|221115.639|111.033 +639612.357|221111.247|111.588 +639616.944|221106.907|112.197 +639630.849|221093.739|113.550 +639635.494|221089.338|113.596 +639640.133|221084.943|113.706 +639644.775|221080.542|113.791 +639649.375|221076.183|113.880 +639654.038|221071.769|114.294 +639667.812|221058.718|114.898 +639672.363|221054.408|115.062 +639676.947|221050.065|115.373 +639690.629|221037.104|116.175 +639695.214|221032.755|116.114 +639699.795|221028.415|116.123 +639704.352|221024.089|115.900 +639708.905|221019.770|115.754 +639713.520|221015.396|115.538 +639722.582|221006.801|115.337 +639727.154|221002.464|115.129 +639740.723|220989.595|114.663 +639754.296|220976.717|113.992 +639758.798|220972.447|113.730 +639763.285|220968.186|113.246 +639767.817|220963.888|113.182 +639772.246|220959.691|113.209 +639776.693|220955.476|113.105 +639781.173|220951.221|112.746 +639785.742|220946.880|112.142 +639790.116|220942.738|112.301 +639794.585|220938.498|112.121 +639798.940|220934.374|112.435 +639803.363|220930.177|112.273 +639807.786|220925.986|112.154 +639812.211|220921.786|112.008 +639816.600|220917.626|111.828 +639821.038|220913.413|111.633 +639825.434|220909.244|111.441 +639829.887|220905.016|110.874 +639834.251|220900.874|110.591 +639838.674|220896.677|110.283 +639856.151|220880.092|109.055 +639873.552|220863.578|107.741 +639877.893|220859.454|107.211 +639904.109|220834.546|102.946 +639908.345|220830.532|102.928 +639912.600|220826.490|102.523 +639916.843|220822.464|102.209 +639921.147|220818.379|101.849 +639967.346|220774.549|98.749 +639971.332|220770.779|99.277 +639975.283|220767.045|100.005 +639979.288|220763.256|100.465 +639983.299|220759.455|100.609 +639987.392|220755.578|100.618 +639991.413|220751.765|100.478 +639995.421|220747.971|100.691 +639999.417|220744.185|100.731 +640007.305|220736.717|101.358 +640011.216|220733.017|101.864 +640015.041|220729.402|102.565 +640018.848|220725.805|103.367 +640022.789|220722.075|103.498 +640030.583|220714.695|103.967 +640034.490|220710.995|104.050 +640038.395|220707.295|104.147 +640046.003|220700.092|104.638 +640049.877|220696.423|104.687 +640061.398|220685.508|104.888 +640065.211|220681.893|104.790 +640069.024|220678.278|104.702 +640072.874|220674.626|104.458 +640076.626|220671.069|104.440 +640080.445|220667.445|104.129 +639966.846|220773.257|98.947 +639958.741|220780.901|98.265 +639954.687|220784.720|97.804 +639950.475|220788.704|98.265 +639946.165|220792.782|99.011 +639941.919|220796.797|99.408 +639937.628|220800.860|100.100 +639933.360|220804.895|100.679 +639924.850|220812.939|101.453 +639920.592|220816.965|101.761 +639916.334|220820.989|102.081 +639907.812|220829.044|102.821 +639903.551|220833.068|102.919 +639877.362|220857.851|106.970 +639872.955|220862.018|107.528 +639868.584|220866.151|107.896 +639864.219|220870.275|108.241 +639846.736|220886.798|109.381 +639842.329|220890.965|109.804 +639837.924|220895.128|110.237 +639833.489|220899.319|110.563 +639829.109|220903.462|110.880 +639824.611|220907.717|111.362 +639820.212|220911.868|111.502 +639815.802|220916.038|111.758 +639811.358|220920.238|111.911 +639806.917|220924.435|112.075 +639802.436|220928.665|112.188 +639798.047|220932.814|112.377 +639793.591|220937.023|112.362 +639789.147|220941.223|112.292 +639784.712|220945.405|112.136 +639780.180|220949.697|112.758 +639775.702|220953.927|112.993 +639771.203|220958.179|113.047 +639766.674|220962.462|113.364 +639762.157|220966.732|113.590 +639757.600|220971.039|113.782 +639753.083|220975.309|114.069 +639739.388|220988.254|114.690 +639725.703|221001.187|115.053 +639721.116|221005.521|115.285 +639716.422|221009.959|115.654 +639711.871|221014.257|115.638 +639702.599|221023.020|115.907 +639697.932|221027.430|116.123 +639693.339|221031.767|116.138 +639688.685|221036.169|116.327 +639674.786|221049.281|115.428 +639670.147|221053.661|115.081 +639665.505|221058.041|114.773 +639656.117|221066.905|114.739 +639651.484|221071.276|114.383 +639646.805|221075.692|114.020 +639642.099|221080.136|113.986 +639632.672|221089.036|113.578 +639627.941|221093.508|113.849 +639613.811|221106.828|111.965 +639609.107|221111.265|111.475 +639604.410|221115.694|110.890 +639599.653|221120.181|110.496 +639594.898|221124.668|110.054 +639590.085|221129.206|109.743 +639585.327|221133.699|109.387 +639580.529|221138.222|108.914 +639575.762|221142.721|108.701 +639570.940|221147.275|108.582 +639566.134|221151.810|108.280 +639561.275|221156.397|108.073 +639556.410|221161.000|108.604 +639551.494|221165.642|108.576 +639546.654|221170.220|108.860 +639531.837|221184.253|111.545 +639522.020|221193.537|112.426 +639517.167|221198.118|112.395 +639512.288|221202.724|112.093 +639507.399|221207.342|111.953 +639502.482|221211.987|112.261 +639497.590|221216.611|112.237 +639492.713|221221.210|111.923 +639478.046|221235.051|110.868 +639473.127|221239.693|110.539 +639463.358|221248.892|108.338 +639443.631|221267.515|106.903 +639438.660|221272.209|106.601 +639433.722|221276.879|106.744 +639423.752|221286.306|107.144 +639418.775|221291.012|107.177 +639408.869|221300.355|105.818 +639389.093|221318.960|99.588 +639384.058|221323.721|99.889 +639363.880|221342.874|106.180 +639358.915|221347.568|106.141 +639333.888|221371.227|106.891 +639328.880|221375.960|106.808 +639298.775|221404.426|108.018 +639293.770|221409.153|107.756 +639288.762|221413.887|107.918 +639278.704|221423.396|108.168 +639268.642|221432.897|107.582 +639263.637|221437.628|107.662 +639258.632|221442.358|107.549 +639218.350|221480.431|108.168 +639213.351|221485.161|108.485 +639208.307|221489.934|108.985 +639198.303|221499.420|111.292 +639178.263|221518.391|113.907 +639163.327|221532.533|115.977 +639148.328|221546.728|117.446 +639138.331|221556.177|117.696 +639118.296|221575.117|118.461 +639113.358|221579.790|118.860 +639108.314|221584.560|119.076 +639098.448|221593.911|121.091 +639093.403|221598.678|121.311 +639088.426|221603.390|121.878 +639063.630|221626.866|125.358 +639058.683|221631.545|125.602 +639053.681|221636.272|125.749 +639028.877|221659.724|126.998 +639023.921|221664.408|127.175 +639018.956|221669.102|127.291 +639004.042|221683.187|126.879 +638999.043|221687.906|126.648 +638994.087|221692.584|126.376 +638989.070|221697.318|125.983 +638984.092|221702.015|125.523 +638979.051|221706.773|124.883 +638974.052|221711.488|124.240 +638968.974|221716.270|123.283 +638958.974|221725.704|122.201 +638948.949|221735.159|121.021 +638933.959|221749.308|119.994 +638928.985|221753.998|119.470 +638923.974|221758.729|119.083 +638918.975|221763.447|118.848 +638909.029|221772.832|118.040 +638904.113|221777.480|118.232 +638899.187|221782.144|118.805 +638894.249|221786.810|118.811 +638889.370|221791.419|118.958 +638884.462|221796.061|119.290 +638879.628|221800.636|119.881 +638874.782|221805.226|120.783 +638860.386|221818.863|123.548 +638855.534|221823.453|123.981 +638845.771|221832.683|124.465 +638836.103|221841.830|125.364 +638831.241|221846.423|125.441 +638826.398|221851.001|125.660 +638821.472|221855.656|125.630 +638816.611|221860.243|125.374 +638811.652|221864.928|125.127 +638806.756|221869.542|124.676 +638801.788|221874.230|124.054 +638787.167|221888.044|124.139 +638762.758|221911.090|123.283 +638757.857|221915.717|123.048 +638753.054|221920.255|123.173 +638748.247|221924.797|123.322 +638743.431|221929.350|123.734 +638738.682|221933.840|123.965 +638733.760|221938.488|123.688 +638729.026|221942.960|123.731 +638724.128|221947.583|123.691 +638709.702|221961.202|123.173 +638704.926|221965.716|123.365 +638690.615|221979.228|123.560 +638685.842|221983.736|123.536 +638681.081|221988.232|123.624 +638671.504|221997.272|123.508 +638662.065|222006.187|123.712 +638652.375|222015.328|122.810 +638637.906|222028.968|121.353 +638628.241|222038.082|120.326 +638623.398|222042.645|119.656 +638618.664|222047.113|119.610 +638594.478|222069.900|115.910 +638589.684|222074.417|115.169 +638584.916|222078.910|114.590 +638570.758|222092.266|113.794 +638565.976|222096.774|113.249 +638561.358|222101.139|113.569 +638556.893|222105.360|114.178 +638547.271|222114.428|112.697 +638537.880|222123.283|111.743 +638533.198|222127.696|111.374 +638528.592|222132.043|111.395 +638519.198|222140.903|110.606 +638514.568|222145.274|110.585 +638510.036|222149.550|110.548 +638458.976|222197.697|105.997 +638449.725|222206.414|104.928 +638445.107|222210.767|104.355 +638440.593|222215.025|104.025 +638436.049|222219.307|103.586 +638431.401|222223.687|102.949 +638426.902|222227.930|102.757 +638422.427|222232.154|102.690 +638417.752|222236.553|101.550 +638413.277|222240.774|101.300 +638404.313|222249.226|100.578 +638377.405|222274.592|97.990 +638372.979|222278.765|97.692 +638368.545|222282.946|97.384 +638364.155|222287.086|97.064 +638350.479|222299.954|93.976 +638346.258|222303.947|94.394 +638337.787|222311.945|94.772 +638324.434|222324.518|92.312 +638320.154|222328.554|91.998 +638316.302|222332.208|93.333 +638304.783|222343.132|97.329 +638301.214|222346.531|99.548 +638363.113|222285.482|97.079 +638367.560|222281.273|97.460 +638376.320|222272.979|97.932 +638380.691|222268.837|98.057 +638403.146|222247.590|100.380 +638412.262|222238.967|101.825 +638416.724|222234.739|101.831 +638421.196|222230.502|101.901 +638425.725|222226.220|102.456 +638430.322|222221.870|103.108 +638434.912|222217.524|103.541 +638443.995|222208.929|104.257 +638448.558|222204.610|104.626 +638453.233|222200.187|105.293 +638457.827|222195.844|105.833 +638480.842|222174.053|107.308 +638485.503|222169.646|107.845 +638494.991|222160.673|109.292 +638504.443|222151.736|110.685 +638509.042|222147.377|110.566 +638513.669|222142.994|110.603 +638518.378|222138.538|111.048 +638523.091|222134.079|111.289 +638527.791|222129.629|111.502 +638532.433|222125.230|111.447 +638551.785|222106.945|114.858 +638556.280|222102.672|113.938 +638560.892|222098.298|113.605 +638565.604|222093.836|113.544 +638570.384|222089.313|113.855 +638580.003|222080.214|114.870 +638584.734|222075.731|114.727 +638589.559|222071.168|115.385 +638594.411|222066.581|115.952 +638609.127|222052.676|118.403 +638618.813|222043.510|119.436 +638623.690|222038.896|119.759 +638638.336|222025.049|121.548 +638667.633|221997.330|123.932 +638672.446|221992.770|123.859 +638686.900|221979.078|123.557 +638691.749|221974.482|123.502 +638696.595|221969.892|123.432 +638730.742|221937.552|123.773 +638735.555|221932.993|123.667 +638740.456|221928.347|123.523 +638745.299|221923.757|123.347 +638750.188|221919.124|123.155 +638755.090|221914.485|123.395 +638764.953|221905.146|123.734 +638769.952|221900.422|124.414 +638789.630|221881.780|124.060 +638794.516|221877.150|124.063 +638804.537|221867.674|124.898 +638814.462|221858.280|125.493 +638819.381|221853.620|125.505 +638824.353|221848.913|125.566 +638829.263|221844.259|125.142 +638834.246|221839.541|125.352 +638839.181|221834.865|125.176 +638853.885|221820.920|123.923 +638873.380|221802.413|120.597 +638878.238|221797.804|119.851 +638883.176|221793.126|119.403 +638898.081|221779.010|119.000 +638902.991|221774.353|118.351 +638907.950|221769.659|118.171 +638917.984|221760.174|119.040 +638923.010|221755.416|119.162 +638928.030|221750.673|119.704 +638933.069|221745.909|120.003 +638938.113|221741.139|120.363 +638943.097|221736.427|120.655 +638953.213|221726.868|121.908 +638963.360|221717.282|123.109 +638968.401|221712.518|123.709 +638973.449|221707.751|124.392 +638978.539|221702.941|125.084 +638983.522|221698.232|125.663 +638988.588|221693.444|126.145 +638993.633|221688.674|126.383 +638998.631|221683.946|126.690 +639003.679|221679.173|127.029 +639018.706|221664.957|127.349 +639023.656|221660.269|127.126 +639038.597|221646.117|126.553 +639053.523|221631.981|125.825 +639058.503|221627.262|125.444 +639063.496|221622.535|125.267 +639068.480|221617.814|124.947 +639093.303|221594.277|121.737 +639118.193|221570.676|118.586 +639123.188|221565.949|118.525 +639138.203|221551.730|117.976 +639148.215|221542.244|117.367 +639158.176|221532.808|116.528 +639163.199|221528.047|115.955 +639168.152|221523.341|114.672 +639183.082|221509.186|112.877 +639198.014|221495.022|110.594 +639227.963|221466.687|111.319 +639247.910|221447.771|108.335 +639252.856|221443.087|107.835 +639257.855|221438.359|107.954 +639262.851|221433.629|107.567 +639267.853|221428.907|108.101 +639272.848|221424.180|108.216 +639277.801|221419.498|108.216 +639282.797|221414.771|108.180 +639287.750|221410.086|108.207 +639292.700|221405.401|107.960 +639332.336|221367.892|106.714 +639337.286|221363.211|107.003 +639342.242|221358.526|107.061 +639352.066|221349.229|106.811 +639361.899|221339.918|106.202 +639366.812|221335.273|106.220 +639386.551|221316.509|99.563 +639391.413|221311.943|101.883 +639405.982|221298.209|105.321 +639415.672|221289.068|107.009 +639420.546|221284.459|107.040 +639430.308|221275.218|106.705 +639435.191|221270.600|106.589 +639440.013|221266.040|106.787 +639449.724|221256.872|107.927 +639459.362|221247.764|108.570 +639464.248|221243.140|108.451 +639468.994|221238.678|110.353 +639473.755|221234.179|110.853 +639497.712|221211.545|112.502 +639502.510|221207.003|112.398 +639507.331|221202.437|111.965 +639512.120|221197.908|112.069 +639516.899|221193.394|112.386 +639521.669|221188.877|112.090 +639526.497|221184.305|111.673 +639540.945|221170.613|109.823 +639545.773|221166.035|108.875 +639560.080|221152.493|108.183 +639564.817|221148.021|108.692 +639569.520|221143.577|109.000 +639574.287|221139.069|109.116 +639579.008|221134.604|109.186 +639583.705|221130.169|109.628 +639588.415|221125.719|109.929 +639593.121|221121.272|110.265 +639597.830|221116.822|110.585 +639602.478|221112.433|111.075 +639607.120|221108.050|111.645 +639611.820|221103.609|112.084 +639630.404|221086.055|113.767 +639635.028|221081.685|114.066 +639667.431|221051.055|115.282 +639671.979|221046.757|115.513 +639690.346|221029.396|116.318 +639694.924|221025.065|116.361 +639699.545|221020.691|116.031 +639704.144|221016.338|115.925 +639708.686|221012.041|115.913 +639713.349|221007.630|115.733 +639722.502|220998.968|115.257 +639727.065|220994.649|115.154 +639731.640|220990.321|115.007 +639736.151|220986.053|115.001 +639740.736|220981.716|114.806 +639745.329|220977.360|114.163 +639749.819|220973.118|114.392 +639763.394|220960.267|113.593 +639767.976|220955.930|113.206 +639772.447|220951.696|112.923 +639785.922|220938.946|112.532 +639799.190|220926.395|112.401 +639803.613|220922.210|112.282 +639812.458|220913.843|112.118 +639821.325|220905.449|111.554 +639825.744|220901.264|111.219 +639834.632|220892.848|110.323 +639847.794|220880.388|109.628 +639861.013|220867.864|108.116 +639865.341|220863.770|107.973 +639869.721|220859.622|107.506 +639900.207|220830.730|103.230 +639912.969|220818.651|102.383 +639917.227|220814.618|102.020 +639921.415|220810.653|101.794 +639942.626|220790.551|98.835 +639946.811|220786.589|98.475 +639959.089|220774.973|98.496 +639962.987|220771.294|99.222 +639967.020|220767.481|99.511 +639970.951|220763.771|100.093 +639974.890|220760.053|100.642 +639978.867|220756.295|100.996 +639982.848|220752.527|101.054 +639986.850|220748.742|101.026 +639990.828|220744.980|101.151 +639994.778|220741.244|101.160 +639998.731|220737.507|101.419 +640002.626|220733.828|101.752 +640010.228|220726.653|103.148 +640014.099|220722.995|103.364 +640021.682|220715.829|104.117 +640025.520|220712.202|104.291 +640029.263|220708.663|104.675 +640033.137|220705.000|104.684 +640036.941|220701.403|104.806 +640040.739|220697.813|104.967 +640044.579|220694.176|104.925 +640055.796|220683.566|105.126 +640059.606|220679.960|105.037 +640078.247|220662.322|104.818 +639960.610|220771.763|99.213 +639948.448|220783.221|98.341 +639944.199|220787.229|98.694 +639939.920|220791.277|99.264 +639935.680|220795.279|99.618 +639931.404|220799.317|100.200 +639927.078|220803.405|100.807 +639922.708|220807.541|101.712 +639914.231|220815.542|102.041 +639909.927|220819.602|102.312 +639901.219|220827.825|103.245 +639896.912|220831.891|103.321 +639883.593|220844.492|106.122 +639879.203|220848.634|106.491 +639874.866|220852.731|106.869 +639870.450|220856.900|107.144 +639866.070|220861.033|107.521 +639821.639|220902.992|111.368 +639817.216|220907.165|111.636 +639812.742|220911.386|111.959 +639803.747|220919.875|112.343 +639790.257|220932.594|112.334 +639785.730|220936.862|112.459 +639781.204|220941.132|112.630 +639776.598|220945.481|113.044 +639767.525|220954.040|113.282 +639758.277|220962.773|114.224 +639753.744|220967.046|114.206 +639735.356|220984.392|114.879 +639730.726|220988.757|114.974 +639726.145|220993.079|115.099 +639721.533|220997.428|115.111 +639716.937|221001.766|115.401 +639712.255|221006.182|115.632 +639707.625|221010.550|115.858 +639703.007|221014.909|116.016 +639698.359|221019.289|116.022 +639693.729|221023.660|116.342 +639689.087|221028.037|116.333 +639670.534|221045.520|115.535 +639665.880|221049.903|115.303 +639656.550|221058.700|115.096 +639651.862|221063.113|114.764 +639642.437|221071.995|114.648 +639637.725|221076.439|114.642 +639633.013|221080.877|114.136 +639628.337|221085.278|113.755 +639623.613|221089.728|113.407 +639618.879|221094.187|113.182 +639609.467|221103.048|112.124 +639604.758|221107.480|111.661 +639600.064|221111.896|111.018 +639595.318|221116.365|110.423 +639590.545|221120.861|110.167 +639585.818|221125.314|109.960 +639576.293|221134.287|109.280 +639571.507|221138.795|109.250 +639566.725|221143.306|109.216 +639561.979|221147.774|108.725 +639557.185|221152.285|108.216 +639552.369|221156.836|108.735 +639547.544|221161.384|108.701 +639542.743|221165.913|109.036 +639532.974|221175.139|110.225 +639528.076|221179.775|111.472 +639523.245|221184.335|111.746 +639518.368|221188.935|112.005 +639513.549|221193.482|112.170 +639508.663|221198.082|111.856 +639503.854|221202.620|111.929 +639498.925|221207.275|112.423 +639494.079|221211.840|112.343 +639474.614|221230.174|111.024 +639460.109|221243.814|108.399 +639455.171|221248.468|108.363 +639450.300|221253.056|107.957 +639435.645|221266.851|106.503 +639430.708|221271.508|106.540 +639425.764|221276.172|106.790 +639420.826|221280.829|106.933 +639415.943|221285.435|106.964 +639411.008|221290.086|107.037 +639401.261|221299.227|103.446 +639396.357|221303.842|102.572 +639386.536|221313.077|100.941 +639381.574|221317.743|100.173 +639376.581|221322.486|102.632 +639366.553|221331.987|106.125 +639361.631|221336.629|106.138 +639351.633|221346.066|106.851 +639336.683|221360.160|106.942 +639331.718|221364.841|106.851 +639326.697|221369.584|107.634 +639301.737|221393.133|108.631 +639296.729|221397.851|108.546 +639291.767|221402.521|108.049 +639286.714|221407.291|108.375 +639281.706|221412.012|108.223 +639276.744|221416.691|108.488 +639271.736|221421.409|108.168 +639266.728|221426.131|108.219 +639261.717|221430.846|107.631 +639216.658|221473.378|111.319 +639211.571|221478.151|109.676 +639201.549|221487.594|109.353 +639186.501|221501.819|112.182 +639176.473|221511.289|113.325 +639166.415|221520.789|114.678 +639106.314|221577.519|119.909 +639101.395|221582.167|120.725 +639076.474|221605.710|123.941 +639071.543|221610.367|124.493 +639066.559|221615.073|124.956 +639061.567|221619.783|125.307 +639056.568|221624.498|125.538 +639051.569|221629.216|125.779 +639046.616|221633.892|125.968 +639031.605|221648.053|126.590 +639026.612|221652.768|126.974 +639021.656|221657.444|127.209 +639016.642|221662.171|127.340 +639011.665|221666.868|127.306 +639006.629|221671.611|127.193 +639001.640|221676.317|127.056 +638996.586|221681.075|126.770 +638991.624|221685.751|126.440 +638986.616|221690.469|126.187 +638981.593|221695.199|125.761 +638976.558|221699.942|125.215 +638971.504|221704.697|124.532 +638966.499|221709.406|123.886 +638961.482|221714.128|123.149 +638956.426|221718.885|122.539 +638951.479|221723.546|122.140 +638936.443|221737.704|120.543 +638931.438|221742.413|120.189 +638926.476|221747.089|119.777 +638906.512|221765.892|118.342 +638901.595|221770.531|118.543 +638881.908|221789.112|119.759 +638876.995|221793.748|120.085 +638872.097|221798.371|120.558 +638867.262|221802.940|121.155 +638862.419|221807.518|122.121 +638857.628|221812.051|123.121 +638847.895|221821.241|124.276 +638843.040|221825.825|124.737 +638838.184|221830.409|125.227 +638828.406|221839.635|125.697 +638818.634|221848.849|125.892 +638813.782|221853.424|125.712 +638808.817|221858.100|125.456 +638803.946|221862.690|125.179 +638794.080|221871.984|124.520 +638789.185|221876.592|124.164 +638784.360|221881.146|124.334 +638769.784|221894.890|124.618 +638750.225|221913.318|123.630 +638745.394|221917.868|123.615 +638740.538|221922.443|123.441 +638735.744|221926.967|123.700 +638730.885|221931.551|123.880 +638726.149|221936.022|124.218 +638716.423|221945.191|123.969 +638706.767|221954.295|123.965 +638701.948|221958.837|123.914 +638687.454|221972.501|123.615 +638682.733|221976.960|123.923 +638663.653|221994.956|124.206 +638654.079|222003.975|123.694 +638649.214|222008.553|123.018 +638634.712|222022.208|121.417 +638625.068|222031.288|120.253 +638620.225|222035.848|119.585 +638615.436|222040.359|119.265 +638610.788|222044.742|119.467 +638605.731|222049.487|117.723 +638600.940|222053.998|117.205 +638591.208|222063.155|115.687 +638586.364|222067.711|114.977 +638581.637|222072.168|114.620 +638576.876|222076.654|114.389 +638567.387|222085.588|113.654 +638562.770|222089.947|113.974 +638558.064|222094.385|113.855 +638553.507|222098.688|114.258 +638539.263|222112.097|112.712 +638534.484|222116.592|112.093 +638529.696|222121.100|111.459 +638525.038|222125.489|111.240 +638511.121|222138.602|110.496 +638506.528|222142.930|110.435 +638501.941|222147.258|110.408 +638478.355|222169.445|106.677 +638473.707|222173.822|106.272 +638469.080|222178.177|105.766 +638464.590|222182.411|105.903 +638459.942|222186.788|105.330 +638455.379|222191.086|105.187 +638437.006|222208.389|103.535 +638432.333|222212.784|102.779 +638427.780|222217.073|102.572 +638423.272|222221.325|102.572 +638418.815|222225.522|102.373 +638395.858|222247.126|99.258 +638386.961|222255.508|98.981 +638382.565|222259.650|98.765 +638378.106|222263.851|98.518 +638373.647|222268.051|98.070 +638369.240|222272.202|97.859 +638364.600|222276.558|96.738 +638351.253|222289.122|95.375 +638346.901|222293.221|95.064 +638342.374|222297.476|94.308 +638333.541|222305.788|93.287 +638329.487|222309.620|94.019 +638316.177|222322.138|92.047 +638308.090|222329.779|93.504 +638303.881|222333.748|93.516 +638300.126|222337.308|95.268 +638296.587|222340.673|97.637 +638352.881|222284.952|95.616 +638361.555|222276.762|95.829 +638366.298|222272.309|97.603 +638370.684|222268.173|97.737 +638375.101|222264.006|98.027 +638379.633|222259.733|98.591 +638384.089|222255.536|99.069 +638388.454|222251.415|98.981 +638392.855|222247.257|99.069 +638397.616|222242.783|100.453 +638424.759|222217.195|102.861 +638429.218|222212.982|102.910 +638442.949|222200.035|104.047 +638452.133|222191.375|104.818 +638461.283|222182.746|105.287 +638465.739|222178.534|105.025 +638470.461|222174.087|105.741 +638475.088|222169.722|106.058 +638479.785|222165.299|106.720 +638484.549|222160.816|107.717 +638493.988|222151.925|109.158 +638498.816|222147.380|110.313 +638503.425|222143.031|110.445 +638508.064|222138.648|110.521 +638517.470|222129.775|111.322 +638522.012|222125.480|110.978 +638526.764|222120.997|111.438 +638531.464|222116.565|111.920 +638536.237|222112.063|112.526 +638541.074|222107.506|113.224 +638550.684|222098.448|114.669 +638555.238|222094.135|114.023 +638559.880|222089.749|113.837 +638564.623|222085.271|113.928 +638569.314|222080.839|113.773 +638574.053|222076.365|114.163 +638578.811|222071.875|114.404 +638583.655|222067.306|114.852 +638588.507|222062.734|115.650 +638593.326|222058.189|116.013 +638598.218|222053.578|116.821 +638603.107|222048.972|117.638 +638608.075|222044.300|118.906 +638612.888|222039.755|119.101 +638617.686|222035.226|119.509 +638622.602|222030.593|120.043 +638632.319|222021.434|121.393 +638637.318|222016.727|122.484 +638642.118|222012.195|122.780 +638646.959|222007.629|123.021 +638656.727|221998.418|124.118 +638671.199|221984.751|124.295 +638685.629|221971.120|124.127 +638690.591|221966.438|124.444 +638695.361|221961.930|124.206 +638700.204|221957.355|124.133 +638714.792|221943.575|124.106 +638724.604|221934.312|124.340 +638729.422|221929.756|123.911 +638734.269|221925.178|123.679 +638739.121|221920.590|123.523 +638744.010|221915.976|123.627 +638748.957|221911.306|123.807 +638768.733|221892.643|124.764 +638783.387|221878.799|124.471 +638788.322|221874.139|124.429 +638793.306|221869.439|124.752 +638798.268|221864.754|124.968 +638803.233|221860.069|125.218 +638808.189|221855.390|125.441 +638813.148|221850.712|125.706 +638818.092|221846.045|125.889 +638823.106|221841.312|125.874 +638837.864|221827.364|125.261 +638842.747|221822.743|124.645 +638847.709|221818.052|124.292 +638852.562|221813.465|123.865 +638857.436|221808.847|122.761 +638862.273|221804.263|121.804 +638867.186|221799.612|121.088 +638872.136|221794.927|120.689 +638877.089|221790.242|120.354 +638882.039|221785.561|119.976 +638901.830|221766.837|118.619 +638906.844|221762.100|118.473 +638911.870|221757.354|118.970 +638921.950|221747.835|119.360 +638952.174|221719.312|122.192 +638957.218|221714.551|122.716 +638962.321|221709.741|123.371 +638967.377|221704.974|124.097 +638972.431|221700.207|124.840 +638977.509|221695.416|125.371 +638982.529|221690.676|125.788 +638987.585|221685.903|126.120 +638992.654|221681.121|126.611 +639007.724|221666.890|127.242 +639012.753|221662.141|127.355 +639017.761|221657.404|127.239 +639022.759|221652.680|126.956 +639027.761|221647.949|126.788 +639047.793|221629.009|125.819 +639052.791|221624.284|125.657 +639057.784|221619.563|125.435 +639062.771|221614.845|125.112 +639067.754|221610.133|124.706 +639072.777|221605.378|124.212 +639077.749|221600.672|123.627 +639082.720|221595.965|123.054 +639087.740|221591.217|122.438 +639092.711|221586.511|121.847 +639097.686|221581.801|121.262 +639102.709|221577.046|120.759 +639122.691|221558.146|119.259 +639127.730|221553.382|119.009 +639142.790|221539.141|118.208 +639147.773|221534.426|117.879 +639167.735|221515.516|114.239 +639187.769|221496.558|111.990 +639192.792|221491.797|111.014 +639212.851|221472.847|111.283 +639217.853|221468.123|111.310 +639242.841|221444.504|110.640 +639262.778|221425.628|108.171 +639267.783|221420.897|108.137 +639272.787|221416.176|108.759 +639287.747|221402.033|108.363 +639292.703|221397.348|108.287 +639297.659|221392.663|108.372 +639302.661|221387.942|108.820 +639332.480|221359.739|106.820 +639337.390|221355.097|106.955 +639352.188|221341.113|106.787 +639362.082|221331.752|106.110 +639367.001|221327.101|106.080 +639396.472|221299.212|103.291 +639401.267|221294.719|106.046 +639415.910|221280.896|107.229 +639420.750|221276.318|106.976 +639425.651|221271.682|106.485 +639430.531|221267.067|106.516 +639435.356|221262.511|106.781 +639459.511|221239.711|108.668 +639469.094|221230.683|110.719 +639473.928|221226.117|110.853 +639488.288|221212.566|112.212 +639493.073|221208.046|112.426 +639497.864|221203.519|112.538 +639502.686|221198.957|112.124 +639507.453|221194.449|111.911 +639512.245|221189.925|112.133 +639517.006|221185.423|112.039 +639521.831|221180.861|111.773 +639526.616|221176.331|111.371 +639536.214|221167.239|109.631 +639545.800|221158.171|108.948 +639550.601|221153.630|108.567 +639555.331|221149.155|108.509 +639560.053|221144.705|109.262 +639564.713|221140.307|109.567 +639569.499|221135.784|109.487 +639574.183|221131.355|109.484 +639578.896|221126.905|109.780 +639583.608|221122.458|110.079 +639588.335|221117.992|110.219 +639593.002|221113.585|110.539 +639597.644|221109.208|111.146 +639602.332|221104.788|111.801 +639611.631|221096.016|112.874 +639616.255|221091.652|113.166 +639620.934|221087.235|113.416 +639625.545|221082.882|113.864 +639634.836|221074.116|114.648 +639639.490|221069.718|114.693 +639644.153|221065.314|114.669 +639648.777|221060.943|114.596 +639653.413|221056.566|114.882 +639658.055|221052.186|115.157 +639662.649|221047.849|115.428 +639667.245|221043.511|115.708 +639685.597|221026.180|116.336 +639690.224|221021.813|116.416 +639694.778|221017.509|116.303 +639699.389|221013.147|116.117 +639703.980|221008.813|116.147 +639713.230|221000.065|115.675 +639722.377|220991.421|115.373 +639726.962|220987.087|115.157 +639731.528|220982.774|115.126 +639736.066|220978.482|114.943 +639749.761|220965.534|114.294 +639754.360|220961.188|114.117 +639767.994|220948.298|113.480 +639772.444|220944.094|113.416 +639777.001|220939.782|112.941 +639781.558|220935.469|112.484 +639786.078|220931.198|112.340 +639794.960|220922.810|112.554 +639808.319|220910.179|112.051 +639812.784|220905.961|111.749 +639830.603|220889.105|110.313 +639835.105|220884.844|109.871 +639852.765|220868.135|108.046 +639857.191|220863.947|107.570 +639874.625|220847.461|106.421 +639879.002|220843.321|106.086 +639892.142|220830.876|103.903 +639896.501|220826.752|103.458 +639909.403|220814.545|102.142 +639913.637|220810.546|101.953 +639917.846|220806.565|101.904 +639934.982|220790.338|99.103 +639939.115|220786.433|99.030 +639943.355|220782.419|98.371 +639955.446|220771.017|99.490 +639959.509|220767.182|99.600 +639963.523|220763.393|99.734 +639967.465|220759.678|100.267 +639971.393|220755.978|100.892 +639975.368|220752.226|101.261 +639979.330|220748.489|101.450 +639983.360|220744.682|101.291 +639987.298|220740.969|101.636 +639991.294|220737.196|101.688 +639999.030|220729.899|102.364 +640002.907|220726.244|102.806 +640006.699|220722.672|103.437 +640018.168|220711.855|104.632 +640025.764|220704.689|105.141 +640029.592|220701.074|105.141 +640033.375|220697.505|105.376 +640048.429|220683.295|105.796 +640052.135|220679.796|105.964 +640055.869|220676.272|106.013 +640063.458|220669.094|105.315 +640067.171|220665.583|105.007 +640070.792|220662.166|105.159 +640074.498|220658.661|104.909 +639957.799|220766.987|99.706 +639953.761|220770.788|99.408 +639937.320|220786.275|99.362 +639924.646|220798.229|100.471 +639916.005|220806.389|101.962 +639911.796|220810.354|101.950 +639903.155|220818.501|102.687 +639894.526|220826.643|103.471 +639876.936|220843.251|106.132 +639872.550|220847.387|106.482 +639859.327|220859.857|107.753 +639855.027|220863.908|107.656 +639837.141|220880.790|110.006 +639814.796|220901.861|111.636 +639810.285|220906.113|111.853 +639787.782|220927.318|112.545 +639783.316|220931.525|112.563 +639778.753|220935.825|112.609 +639774.163|220940.156|113.236 +639751.251|220961.755|114.312 +639746.643|220966.098|114.501 +639732.826|220979.122|115.145 +639728.248|220983.435|115.199 +639723.566|220987.846|115.303 +639718.948|220992.195|115.315 +639714.325|220996.554|115.422 +639704.982|221005.362|116.068 +639700.310|221009.764|116.239 +639695.713|221014.095|116.184 +639691.047|221018.493|116.352 +639686.347|221022.919|116.397 +639681.711|221027.287|116.342 +639677.060|221031.667|116.431 +639667.721|221040.460|116.129 +639663.094|221044.810|115.596 +639649.079|221058.005|114.940 +639639.655|221066.877|114.730 +639634.945|221071.312|114.648 +639630.227|221075.756|114.675 +639625.561|221080.145|114.181 +639620.851|221084.571|113.599 +639616.167|221088.981|113.343 +639611.393|221093.471|112.971 +639606.693|221097.897|112.889 +639601.981|221102.323|111.877 +639597.269|221106.754|111.399 +639592.529|221111.208|110.676 +639587.802|221115.658|110.420 +639583.035|221120.144|110.067 +639578.252|221124.646|109.923 +639573.479|221129.139|109.661 +639568.697|221133.644|109.567 +639563.848|221138.210|109.701 +639559.120|221142.663|109.564 +639554.338|221147.156|108.856 +639549.568|221151.645|108.658 +639544.663|221156.272|109.042 +639539.902|221160.753|108.771 +639535.001|221165.383|109.875 +639525.220|221174.612|111.197 +639520.365|221179.193|111.761 +639515.528|221183.756|112.130 +639510.684|221188.313|111.816 +639505.865|221192.851|111.898 +639500.979|221197.463|112.392 +639496.106|221202.056|112.673 +639491.265|221206.613|112.456 +639486.425|221211.170|112.215 +639476.702|221220.317|111.673 +639466.997|221229.449|110.841 +639452.443|221243.113|107.945 +639447.560|221247.706|107.649 +639427.934|221266.168|106.482 +639422.993|221270.819|106.506 +639418.089|221275.443|106.909 +639413.148|221280.094|106.951 +639398.374|221293.990|105.946 +639393.577|221298.468|102.959 +639378.754|221312.376|99.688 +639363.752|221326.586|106.034 +639358.775|221331.274|106.122 +639353.791|221335.971|106.540 +639333.891|221354.713|106.982 +639328.919|221359.394|107.153 +639293.892|221392.389|108.442 +639288.924|221397.065|108.463 +639283.910|221401.786|108.637 +639273.885|221411.229|108.835 +639263.857|221420.659|108.128 +639258.843|221425.378|107.997 +639253.841|221430.108|109.731 +639248.787|221434.872|110.067 +639243.831|221439.548|110.801 +639213.684|221467.937|111.395 +639198.578|221482.141|110.405 +639193.512|221486.908|110.188 +639188.492|221491.657|111.770 +639158.426|221520.021|116.400 +639153.440|221524.724|117.037 +639143.369|221534.219|118.205 +639118.238|221557.896|119.668 +639113.230|221562.611|119.784 +639108.235|221567.320|120.143 +639103.193|221572.069|120.515 +639098.204|221576.772|121.018 +639093.214|221581.475|121.524 +639088.185|221586.218|122.128 +639083.201|221590.918|122.707 +639068.248|221605.012|124.386 +639063.255|221609.712|124.798 +639058.217|221614.461|125.215 +639053.258|221619.127|125.450 +639048.262|221623.833|125.813 +639043.248|221628.552|125.934 +639038.252|221633.258|126.331 +639033.239|221637.976|126.443 +639028.228|221642.691|126.672 +639023.256|221647.370|126.776 +639018.251|221652.085|127.047 +639013.283|221656.761|127.227 +639008.251|221661.495|127.227 +639003.274|221666.176|127.312 +638988.189|221680.356|126.376 +638983.212|221685.034|125.968 +638978.140|221689.798|125.621 +638973.150|221694.489|125.130 +638968.100|221699.229|124.554 +638963.046|221703.978|123.941 +638958.023|221708.693|123.194 +638952.951|221713.454|122.484 +638947.931|221718.169|121.865 +638942.963|221722.842|121.847 +638937.900|221727.597|121.362 +638927.860|221737.021|119.875 +638912.833|221751.146|119.006 +638907.877|221755.806|118.839 +638897.980|221765.121|119.168 +638878.305|221783.643|120.241 +638873.407|221788.258|120.750 +638868.558|221792.827|121.268 +638863.647|221797.451|121.689 +638858.740|221802.072|122.143 +638853.900|221806.634|122.771 +638849.084|221811.176|123.597 +638844.210|221815.772|124.359 +638819.771|221838.773|125.407 +638805.071|221852.601|125.441 +638800.191|221857.195|125.505 +638795.320|221861.773|125.307 +638790.340|221866.452|125.054 +638780.598|221875.617|125.142 +638775.706|221880.216|124.895 +638770.827|221884.810|125.105 +638766.020|221889.330|125.160 +638736.728|221916.869|124.209 +638731.833|221921.471|124.145 +638726.969|221926.046|123.999 +638722.122|221930.606|124.322 +638717.404|221935.053|124.849 +638712.561|221939.607|124.898 +638707.708|221944.167|124.581 +638702.826|221948.757|124.420 +638693.252|221957.764|124.755 +638669.270|221980.319|125.026 +638664.521|221984.784|125.258 +638654.798|221993.916|124.426 +638649.973|221998.446|123.990 +638645.096|222003.027|123.548 +638640.287|222007.541|122.950 +638635.425|222012.104|122.384 +638630.573|222016.660|121.878 +638625.687|222021.242|120.942 +638620.822|222025.811|120.442 +638615.957|222030.373|119.695 +638611.129|222034.906|119.168 +638606.393|222039.359|119.180 +638586.922|222057.620|115.833 +638577.299|222066.654|114.800 +638567.805|222075.575|114.282 +638563.071|222080.019|114.008 +638558.515|222084.311|114.389 +638553.790|222088.752|114.462 +638549.243|222093.034|114.931 +638544.527|222097.460|114.575 +638525.413|222115.398|111.865 +638516.038|222124.203|111.194 +638478.477|222159.453|106.787 +638473.750|222163.888|106.016 +638469.107|222168.241|105.440 +638464.508|222172.560|105.080 +638459.912|222176.882|104.976 +638455.343|222181.170|104.568 +638437.082|222198.322|103.419 +638432.696|222202.452|103.919 +638387.396|222244.977|99.886 +638382.928|222249.168|99.365 +638378.441|222253.384|98.996 +638373.997|222257.553|98.609 +638369.569|222261.714|98.301 +638365.125|222265.887|97.957 +638356.039|222274.403|96.320 +638351.634|222278.542|95.979 +638338.476|222290.896|94.897 +638308.197|222319.334|92.958 +638300.019|222327.036|93.897 +638295.862|222330.943|93.927 +638291.936|222334.644|94.845 +638346.605|222280.417|95.384 +638351.192|222276.104|96.460 +638355.514|222272.031|96.491 +638364.591|222263.488|97.954 +638369.017|222259.318|98.252 +638373.455|222255.139|98.627 +638377.942|222250.912|99.005 +638382.465|222246.651|99.341 +638386.939|222242.435|99.712 +638391.527|222238.116|100.359 +638396.196|222233.727|101.371 +638432.537|222199.489|103.797 +638437.231|222195.075|104.687 +638441.782|222190.787|104.748 +638446.388|222186.447|105.080 +638450.734|222182.338|104.257 +638455.263|222178.065|104.272 +638459.924|222173.678|104.903 +638464.484|222169.378|104.879 +638469.147|222164.986|105.330 +638478.517|222156.168|106.525 +638497.713|222138.123|110.399 +638502.517|222133.606|111.231 +638516.303|222120.607|111.103 +638525.828|222111.642|112.078 +638530.631|222107.125|112.822 +638545.009|222093.598|114.779 +638549.605|222089.261|114.590 +638554.299|222084.835|114.386 +638559.027|222080.382|114.636 +638563.660|222076.011|114.425 +638577.903|222062.591|114.916 +638587.623|222053.447|116.013 +638602.193|222039.740|118.101 +638607.185|222035.049|119.253 +638611.955|222030.553|119.183 +638616.817|222025.981|119.948 +638621.709|222021.379|120.625 +638626.616|222016.764|121.423 +638631.545|222012.128|122.079 +638636.382|222007.574|122.548 +638641.268|222002.975|123.027 +638646.154|221998.375|123.539 +638650.991|221993.825|124.078 +638655.923|221989.186|124.618 +638670.462|221975.488|125.200 +638689.707|221957.340|124.721 +638704.234|221943.645|124.459 +638714.027|221934.422|124.776 +638718.855|221929.865|124.365 +638723.704|221925.290|124.109 +638728.609|221920.666|124.249 +638733.531|221916.030|124.532 +638738.408|221911.431|124.176 +638748.271|221902.141|124.654 +638763.048|221888.224|125.264 +638767.989|221883.566|125.160 +638772.890|221878.945|125.148 +638782.723|221869.676|125.063 +638787.676|221865.010|125.133 +638797.570|221855.686|125.270 +638802.584|221850.965|125.532 +638807.494|221846.338|125.755 +638822.374|221832.317|125.849 +638842.055|221813.749|124.435 +638851.885|221804.461|122.905 +638856.814|221799.807|122.277 +638861.718|221795.180|121.853 +638866.665|221790.514|121.387 +638871.597|221785.859|120.799 +638876.534|221781.199|120.296 +638881.521|221776.493|119.805 +638901.434|221757.720|118.985 +638906.463|221752.980|118.973 +638921.596|221738.734|120.079 +638936.812|221724.424|121.853 +638946.834|221714.984|121.862 +638951.948|221710.171|122.576 +638962.071|221700.655|123.938 +638967.124|221695.900|124.621 +638972.166|221691.161|125.182 +638977.241|221686.385|125.630 +638982.312|221681.611|126.050 +638987.329|221676.890|126.443 +638992.435|221672.083|126.776 +638997.437|221667.374|127.047 +639002.472|221662.631|127.157 +639007.550|221657.849|127.230 +639012.524|221653.161|127.184 +639017.584|221648.394|127.053 +639022.589|221643.676|126.828 +639027.597|221638.955|126.660 +639032.647|221634.191|126.462 +639042.642|221624.766|125.889 +639047.689|221620.008|125.642 +639052.703|221615.284|125.675 +639067.754|221601.086|124.343 +639072.719|221596.398|123.600 +639077.697|221591.698|123.018 +639082.723|221586.956|122.441 +639087.700|221582.259|121.853 +639092.681|221577.559|121.289 +639097.713|221572.813|120.823 +639102.700|221568.107|120.402 +639107.689|221563.401|120.052 +639112.731|221558.649|119.765 +639117.723|221553.943|119.448 +639122.768|221549.188|119.268 +639132.799|221539.727|118.650 +639158.384|221515.586|116.065 +639162.812|221511.392|114.532 +639177.827|221497.222|112.862 +639192.881|221483.009|110.368 +639212.973|221464.093|111.264 +639217.978|221459.378|111.362 +639238.043|221440.474|111.389 +639243.045|221435.759|111.289 +639262.955|221416.971|108.820 +639267.959|221412.253|108.777 +639272.922|221407.580|108.820 +639282.888|221398.193|108.878 +639287.848|221393.514|108.616 +639292.810|221388.838|108.521 +639297.769|221384.166|108.515 +639302.728|221379.499|108.948 +639332.483|221351.442|106.945 +639337.399|221346.809|106.994 +639357.147|221328.195|106.177 +639362.073|221323.550|105.985 +639366.953|221318.954|105.906 +639381.802|221304.902|101.428 +639386.652|221300.352|102.757 +639391.522|221295.767|103.151 +639405.997|221282.185|107.211 +639410.890|221277.577|106.994 +639415.730|221273.014|106.869 +639420.622|221268.402|106.677 +639425.468|221263.836|106.525 +639430.342|221259.246|106.827 +639435.112|221254.759|107.406 +639444.777|221245.664|107.878 +639449.614|221241.107|107.997 +639454.458|221236.545|108.015 +639459.191|221232.107|109.375 +639473.532|221218.619|111.328 +639478.293|221214.148|112.081 +639483.085|221209.637|112.234 +639487.870|221205.132|112.505 +639497.428|221196.128|112.502 +639502.266|221191.562|111.959 +639507.030|221187.072|111.871 +639511.827|221182.558|112.051 +639530.972|221164.496|110.085 +639535.739|221159.994|109.417 +639540.546|221155.462|108.960 +639545.276|221151.002|108.927 +639550.065|221146.491|108.786 +639554.694|221142.139|109.521 +639559.401|221137.713|109.920 +639564.134|221133.251|109.896 +639568.831|221128.828|109.820 +639578.246|221119.961|110.012 +639582.925|221115.554|110.179 +639587.595|221111.162|110.518 +639592.282|221106.754|111.200 +639596.888|221102.423|111.740 +639601.527|221098.061|112.447 +639610.823|221089.311|113.108 +639615.456|221084.949|113.377 +639620.068|221080.609|113.883 +639624.671|221076.280|114.507 +639629.322|221071.900|114.608 +639633.967|221067.527|114.815 +639638.569|221063.192|114.968 +639643.202|221058.824|114.828 +639647.842|221054.457|115.114 +639666.197|221037.174|116.117 +639670.805|221032.834|116.333 +639675.383|221028.524|116.419 +639679.946|221024.224|116.626 +639684.536|221019.901|116.629 +639689.084|221015.616|116.601 +639693.760|221011.205|116.309 +639698.301|221006.926|116.352 +639702.861|221002.628|116.281 +639707.500|220998.255|115.974 +639721.167|220985.371|115.641 +639725.712|220981.085|115.404 +639730.260|220976.797|115.166 +639739.349|220968.229|114.821 +639743.890|220963.946|114.706 +639748.435|220959.664|114.593 +639752.943|220955.412|114.401 +639757.518|220951.099|114.114 +639762.041|220946.835|113.855 +639766.567|220942.564|113.602 +639771.039|220938.349|113.407 +639775.599|220934.045|112.953 +639780.101|220929.799|112.602 +639784.578|220925.578|112.438 +639789.095|220921.317|112.026 +639793.582|220917.092|112.203 +639811.343|220900.353|111.673 +639829.137|220883.564|110.228 +639833.541|220879.410|109.823 +639851.323|220862.627|107.671 +639855.648|220858.549|107.582 +639873.156|220842.032|106.095 +639886.385|220829.538|103.724 +639890.679|220825.490|103.690 +639899.314|220817.340|102.797 +639907.946|220809.199|102.035 +639916.474|220801.152|101.355 +639920.784|220797.083|100.791 +639929.395|220788.951|99.213 +639937.865|220780.953|98.265 +639942.008|220777.049|98.198 +639950.012|220769.523|99.703 +639954.044|220765.725|100.008 +639958.122|220761.882|100.075 +639962.192|220758.047|100.209 +639966.130|220754.344|100.807 +639970.092|220750.616|101.273 +639974.088|220746.852|101.572 +639978.123|220743.048|101.669 +639982.132|220739.272|101.657 +639986.048|220735.580|101.867 +639989.956|220731.904|102.416 +639993.876|220728.213|102.654 +639997.765|220724.553|103.050 +640001.590|220720.953|103.526 +640005.470|220717.298|103.986 +640009.314|220713.680|104.385 +640013.172|220710.050|104.726 +640020.844|220702.820|105.144 +640024.700|220699.187|105.275 +640028.434|220695.676|105.772 +640032.241|220692.088|105.915 +640036.008|220688.537|106.016 +640043.631|220681.350|106.061 +640047.353|220677.845|106.180 +640051.175|220674.242|106.065 +640054.961|220670.667|105.650 +640062.437|220663.617|105.559 +640066.147|220660.118|105.543 +640069.899|220656.579|105.342 +639950.094|220767.036|99.889 +639946.132|220770.751|99.423 +639933.940|220782.197|98.963 +639929.901|220785.982|98.688 +639908.617|220806.020|101.938 +639904.420|220809.964|102.120 +639900.143|220813.987|102.517 +639895.888|220817.992|103.090 +639891.575|220822.049|103.736 +639887.329|220826.036|103.699 +639874.220|220838.380|105.726 +639869.925|220842.416|106.083 +639865.594|220846.488|106.382 +639852.475|220858.830|107.589 +639848.129|220862.911|107.747 +639830.384|220879.605|109.728 +639825.940|220883.784|110.024 +639817.027|220892.172|111.170 +639812.550|220896.381|111.420 +639808.078|220900.581|111.645 +639794.697|220913.160|112.255 +639785.755|220921.558|112.228 +639781.250|220925.794|112.487 +639776.739|220930.031|112.459 +639772.124|220934.377|113.243 +639767.628|220938.605|113.529 +639763.053|220942.903|113.672 +639758.466|220947.219|113.962 +639753.943|220951.471|114.157 +639749.371|220955.768|114.355 +639744.732|220960.130|114.733 +639740.181|220964.406|114.831 +639735.594|220968.716|114.846 +639730.982|220973.051|115.090 +639726.376|220977.382|115.324 +639721.716|220981.765|115.620 +639717.086|220986.111|115.663 +639707.823|220994.816|115.897 +639703.196|220999.166|116.028 +639698.505|221003.576|116.294 +639693.836|221007.965|116.403 +639689.169|221012.352|116.525 +639679.803|221021.151|116.681 +639675.127|221025.540|116.507 +639670.452|221029.929|116.345 +639637.600|221060.772|115.074 +639632.900|221065.186|114.834 +639628.148|221069.645|114.632 +639623.436|221074.071|114.547 +639618.715|221078.499|114.059 +639614.009|221082.910|113.425 +639609.205|221087.424|113.355 +639604.462|221091.874|113.133 +639595.001|221100.744|111.923 +639590.207|221105.240|111.249 +639585.510|221109.641|110.551 +639580.685|221114.170|110.237 +639575.942|221118.620|110.100 +639571.059|221123.208|109.981 +639566.262|221127.712|109.972 +639561.409|221132.272|110.109 +639556.627|221136.765|110.006 +639551.762|221141.328|109.679 +639546.983|221145.808|108.884 +639542.134|221150.365|109.073 +639532.374|221159.543|109.759 +639527.509|221164.118|110.246 +639522.584|221168.757|111.021 +639512.787|221177.974|111.911 +639507.929|221182.531|111.719 +639503.110|221187.060|111.734 +639498.166|221191.711|112.279 +639493.271|221196.317|112.840 +639483.514|221205.479|112.660 +639478.625|221210.067|112.328 +639473.797|221214.596|111.798 +639468.930|221219.156|111.078 +639454.318|221232.853|109.103 +639449.471|221237.392|107.951 +639444.570|221241.994|107.893 +639439.635|221246.627|107.585 +639434.752|221251.215|107.238 +639429.808|221255.857|107.144 +639424.932|221260.432|106.625 +639419.991|221265.077|106.561 +639415.044|221269.725|106.665 +639410.091|221274.383|106.903 +639405.150|221279.028|106.927 +639400.206|221283.673|107.040 +639390.434|221292.811|103.577 +639385.509|221297.428|102.962 +639380.583|221302.046|102.337 +639365.636|221316.146|105.818 +639360.692|221320.795|106.208 +639355.705|221325.482|106.406 +639330.855|221348.842|106.866 +639325.911|221353.503|107.948 +639310.933|221367.594|109.122 +639300.991|221376.933|108.957 +639291.002|221386.314|108.643 +639286.031|221390.987|108.799 +639266.009|221409.802|108.799 +639260.992|221414.518|108.652 +639215.921|221456.903|111.112 +639210.913|221461.612|111.459 +639205.905|221466.325|111.844 +639200.894|221471.037|112.109 +639195.880|221475.746|112.237 +639175.791|221494.634|113.038 +639145.747|221522.923|117.251 +639140.751|221527.626|117.751 +639135.712|221532.369|118.308 +639130.714|221537.069|118.741 +639125.709|221541.775|118.948 +639120.658|221546.527|119.195 +639115.654|221551.233|119.445 +639110.649|221555.939|119.735 +639105.595|221560.688|119.982 +639100.593|221565.394|120.314 +639095.595|221570.097|120.686 +639090.550|221574.840|121.140 +639085.561|221579.537|121.686 +639080.586|221584.221|122.551 +639075.600|221588.915|123.170 +639070.613|221593.612|123.719 +639065.630|221598.303|124.377 +639060.637|221603.003|124.855 +639055.641|221607.703|125.288 +639050.688|221612.361|125.651 +639045.626|221617.122|125.761 +639040.676|221621.779|126.197 +639030.642|221631.213|126.483 +639025.628|221635.928|126.657 +639020.656|221640.600|126.806 +639015.639|221645.319|127.013 +639010.662|221649.994|127.141 +639005.633|221654.725|127.172 +639000.649|221659.407|127.251 +638995.647|221664.107|127.084 +638990.630|221668.816|126.764 +638980.542|221678.289|126.105 +638975.509|221683.010|125.691 +638970.471|221687.741|125.236 +638965.417|221692.481|124.651 +638955.338|221701.935|123.344 +638950.266|221706.690|122.676 +638945.200|221711.442|122.112 +638940.171|221716.161|121.478 +638935.181|221720.854|121.795 +638930.188|221725.542|121.615 +638925.171|221730.251|121.192 +638905.088|221749.097|119.217 +638900.102|221753.782|119.265 +638895.130|221758.458|119.479 +638880.323|221772.375|119.884 +638875.358|221777.044|120.253 +638870.454|221781.659|120.728 +638855.814|221795.439|122.429 +638850.931|221800.039|123.127 +638846.057|221804.623|123.517 +638841.196|221809.195|124.014 +638836.368|221813.745|124.776 +638826.581|221822.954|125.697 +638821.731|221827.513|125.941 +638806.939|221841.412|125.992 +638802.029|221846.024|125.852 +638797.119|221850.636|125.718 +638787.301|221859.859|125.550 +638782.391|221864.470|125.499 +638772.661|221873.617|125.761 +638767.745|221878.235|125.730 +638762.859|221882.822|125.605 +638757.952|221887.431|125.325 +638743.276|221901.217|124.996 +638728.712|221914.900|124.980 +638723.823|221919.487|124.682 +638718.928|221924.086|124.688 +638714.106|221928.616|124.563 +638709.248|221933.185|124.852 +638704.511|221937.641|125.322 +638699.589|221942.259|124.916 +638675.613|221964.786|125.465 +638670.846|221969.267|125.870 +638665.963|221973.848|125.590 +638661.062|221978.445|124.910 +638656.179|221983.023|124.395 +638651.296|221987.601|123.898 +638646.453|221992.142|123.380 +638641.564|221996.729|122.896 +638636.699|222001.289|122.320 +638631.801|222005.883|121.844 +638626.933|222010.449|121.286 +638622.062|222015.014|120.759 +638617.277|222019.504|120.439 +638612.397|222024.076|119.637 +638607.493|222028.676|118.991 +638602.717|222033.156|118.820 +638597.813|222037.750|117.970 +638583.258|222051.395|116.178 +638573.520|222060.518|114.587 +638559.466|222073.719|114.776 +638554.708|222078.187|114.663 +638550.035|222082.574|114.767 +638545.460|222086.880|115.373 +638530.988|222100.441|113.054 +638526.203|222104.925|112.453 +638521.332|222109.484|111.456 +638516.629|222113.895|111.063 +638483.418|222145.030|107.128 +638478.724|222149.432|106.738 +638474.015|222153.842|106.058 +638469.257|222158.304|105.409 +638464.569|222162.700|104.879 +638459.948|222167.034|104.690 +638455.352|222171.347|104.388 +638450.746|222175.666|104.068 +638428.087|222196.944|103.952 +638396.156|222226.887|101.215 +638391.594|222231.164|100.691 +638387.073|222235.404|100.356 +638382.535|222239.659|99.981 +638378.042|222243.871|99.591 +638373.549|222248.086|99.219 +638369.108|222252.250|98.868 +638364.677|222256.407|98.576 +638360.230|222260.580|98.234 +638355.813|222264.722|98.051 +638351.195|222269.044|97.058 +638346.593|222273.348|95.960 +638342.018|222277.628|94.997 +638337.455|222281.898|94.095 +638328.890|222289.939|94.375 +638324.528|222294.023|94.132 +638320.350|222297.949|94.397 +638316.088|222301.945|94.369 +638290.759|222325.710|94.604 +638339.009|222277.256|94.747 +638357.371|222260.022|98.277 +638361.808|222255.850|98.600 +638366.335|222251.595|98.883 +638370.812|222247.382|99.200 +638375.357|222243.112|99.594 +638379.886|222238.854|99.950 +638384.361|222234.648|100.307 +638388.936|222230.347|100.673 +638393.459|222226.095|101.066 +638398.052|222221.779|101.557 +638402.713|222217.405|102.349 +638411.988|222208.688|103.388 +638425.637|222195.853|103.958 +638462.274|222161.383|104.690 +638466.959|222156.978|104.998 +638471.835|222152.403|106.223 +638481.162|222143.634|106.769 +638490.895|222134.502|108.856 +638524.191|222103.205|112.157 +638543.607|222084.972|115.282 +638548.212|222080.629|114.870 +638552.918|222076.197|114.739 +638567.104|222062.847|114.782 +638571.792|222058.430|114.642 +638586.517|222044.605|117.037 +638591.372|222040.042|117.616 +638596.252|222035.454|118.089 +638601.117|222030.888|118.759 +638605.972|222026.316|118.881 +638610.864|222021.723|119.500 +638615.729|222017.151|119.997 +638620.596|222012.576|120.536 +638625.510|222007.958|121.088 +638630.426|222003.341|121.679 +638635.318|221998.741|122.173 +638640.219|221994.136|122.734 +638645.108|221989.542|123.249 +638650.049|221984.900|123.825 +638654.917|221980.325|124.282 +638659.830|221975.704|124.761 +638664.796|221971.041|125.261 +638669.666|221966.463|125.828 +638679.402|221957.300|125.785 +638684.224|221952.756|125.523 +638703.584|221934.529|125.102 +638708.443|221929.951|124.849 +638713.329|221925.351|124.791 +638718.251|221920.721|125.002 +638723.186|221916.079|125.325 +638728.066|221911.489|125.285 +638742.785|221897.633|125.221 +638747.668|221893.039|125.291 +638752.615|221888.382|125.172 +638757.552|221883.743|125.691 +638762.560|221879.034|126.050 +638772.381|221869.786|125.788 +638787.164|221855.875|125.742 +638792.117|221851.215|125.852 +638802.084|221841.839|126.245 +638807.025|221837.185|125.950 +638816.970|221827.830|126.312 +638821.847|221823.237|125.947 +638826.754|221818.610|125.474 +638831.717|221813.934|125.044 +638836.596|221809.332|124.353 +638841.513|221804.699|123.978 +638846.432|221800.066|123.627 +638851.358|221795.421|122.944 +638856.271|221790.794|122.569 +638866.104|221781.525|121.036 +638871.045|221776.868|120.509 +638875.986|221772.210|120.012 +638890.988|221758.098|119.765 +638895.953|221753.422|119.555 +638900.958|221748.710|119.262 +638905.960|221744.007|119.448 +638921.154|221729.736|121.128 +638926.250|221724.957|121.908 +638936.245|221715.548|121.506 +638941.292|221710.805|121.887 +638946.349|221706.056|122.411 +638951.454|221701.262|122.969 +638956.532|221696.498|123.816 +638961.583|221691.755|124.368 +638966.688|221686.961|125.078 +638971.718|221682.236|125.468 +638976.747|221677.512|125.907 +638981.819|221672.748|126.309 +638986.878|221667.993|126.602 +638991.892|221663.281|126.974 +638996.937|221658.538|127.135 +639001.923|221653.850|127.178 +639006.953|221649.120|127.190 +639012.018|221644.353|127.074 +639016.977|221639.683|126.824 +639021.991|221634.965|126.678 +639027.008|221630.243|126.611 +639032.016|221625.531|126.401 +639042.029|221616.107|126.017 +639047.022|221611.407|125.608 +639052.029|221606.694|125.456 +639057.025|221601.988|125.136 +639066.986|221592.604|123.978 +639072.009|221587.870|123.304 +639076.990|221583.176|122.679 +639081.970|221578.482|122.088 +639086.996|221573.745|121.454 +639091.989|221569.045|121.021 +639096.978|221564.345|120.567 +639102.008|221559.606|119.976 +639107.003|221554.903|119.634 +639112.002|221550.200|119.372 +639117.001|221545.494|119.104 +639122.048|221540.742|118.927 +639127.047|221536.036|118.686 +639132.046|221531.332|118.412 +639137.081|221526.587|117.970 +639142.068|221521.890|117.403 +639147.057|221517.190|116.824 +639152.035|221512.499|116.160 +639157.070|221507.753|115.504 +639162.059|221503.053|114.971 +639187.084|221479.480|112.514 +639192.091|221474.771|112.432 +639207.106|221460.640|111.810 +639217.113|221451.219|111.277 +639237.153|221432.385|111.566 +639262.135|221408.861|108.890 +639277.125|221394.782|109.542 +639282.090|221390.109|109.283 +639287.101|221385.391|108.866 +639292.069|221380.721|108.704 +639297.034|221376.052|108.674 +639306.962|221366.725|109.177 +639331.785|221343.359|106.833 +639336.756|221338.692|107.009 +639361.506|221315.412|105.940 +639366.440|221310.770|105.702 +639376.356|221301.418|103.626 +639381.312|221296.752|102.931 +639386.234|221292.131|103.446 +639400.883|221278.412|106.961 +639405.766|221273.822|107.061 +639410.658|221269.225|107.028 +639415.559|221264.611|106.641 +639420.454|221260.008|106.583 +639425.331|221255.430|106.979 +639435.100|221246.256|107.412 +639439.952|221241.693|107.299 +639444.829|221237.115|107.744 +639449.639|221232.604|108.588 +639473.709|221210.030|112.191 +639478.497|221205.534|112.478 +639492.942|221191.961|112.843 +639497.767|221187.420|112.548 +639502.577|221182.891|111.792 +639507.444|221178.312|111.688 +639512.208|221173.838|111.758 +639517.024|221169.312|111.770 +639521.803|221164.804|110.877 +639526.668|221160.223|110.228 +639531.444|221155.727|109.548 +639536.272|221151.185|109.509 +639541.024|221146.717|109.247 +639545.794|221142.236|109.414 +639550.479|221137.838|110.088 +639555.246|221133.363|110.341 +639559.925|221128.968|110.499 +639564.732|221124.445|110.243 +639569.477|221119.983|110.198 +639574.165|221115.578|110.307 +639578.899|221111.134|110.481 +639583.577|221106.739|110.734 +639588.226|221102.380|111.374 +639592.874|221098.019|112.014 +639597.531|221093.654|112.590 +639606.824|221084.934|113.441 +639611.461|221080.578|113.706 +639616.066|221076.262|114.361 +639620.714|221071.894|114.532 +639625.320|221067.569|114.654 +639629.968|221063.204|114.870 +639634.558|221058.895|115.212 +639643.812|221050.208|115.684 +639648.369|221045.931|115.919 +639657.565|221037.293|116.099 +639662.179|221032.959|116.281 +639666.760|221028.655|116.361 +639671.336|221024.358|116.507 +639675.901|221020.069|116.745 +639680.452|221015.796|116.729 +639685.055|221011.471|116.678 +639689.636|221007.164|116.412 +639694.193|221002.881|116.379 +639698.755|220998.593|116.324 +639703.346|220994.277|116.053 +639721.463|220977.248|115.644 +639726.023|220972.959|115.352 +639730.564|220968.689|115.215 +639739.568|220960.225|114.907 +639744.094|220955.966|114.578 +639748.563|220951.766|114.364 +639753.025|220947.572|114.215 +639766.494|220934.908|113.651 +639770.950|220930.717|113.273 +639775.513|220926.419|112.496 +639779.930|220922.271|112.474 +639784.383|220918.080|112.182 +639788.790|220913.941|112.261 +639793.177|220909.823|112.517 +639815.268|220889.051|111.200 +639824.092|220880.748|110.246 +639832.871|220872.488|109.375 +639880.852|220827.331|103.974 +639885.101|220823.339|103.943 +639923.512|220787.192|99.639 +639927.697|220783.254|99.307 +639932.038|220779.164|98.387 +639936.076|220775.375|98.920 +639944.114|220767.834|99.962 +639948.146|220764.052|100.285 +639952.154|220760.291|100.752 +639956.245|220756.447|100.770 +639960.280|220752.652|100.828 +639964.258|220748.922|101.233 +639968.245|220745.182|101.587 +639972.180|220741.487|101.953 +639976.215|220737.696|102.075 +639980.224|220733.928|102.084 +639984.094|220730.298|102.559 +639991.928|220722.943|103.077 +639999.700|220715.649|103.946 +640003.568|220712.022|104.242 +640007.369|220708.459|104.879 +640015.087|220701.211|105.330 +640018.878|220697.654|105.790 +640022.716|220694.051|106.028 +640030.302|220686.928|106.479 +640034.076|220683.383|106.564 +640037.953|220679.738|106.403 +640041.787|220676.129|106.217 +640045.567|220672.578|106.311 +640049.355|220669.021|106.382 +640053.123|220665.479|106.318 +640060.676|220658.374|105.888 +640068.229|220651.273|105.534 +639943.276|220766.289|100.075 +639931.324|220777.469|97.920 +639926.920|220781.624|99.435 +639922.683|220785.604|100.017 +639909.927|220797.589|101.313 +639888.536|220817.685|103.507 +639862.525|220842.123|106.217 +639858.245|220846.138|106.186 +639845.115|220858.476|107.802 +639831.807|220870.985|109.518 +639823.053|220879.202|110.100 +639814.119|220887.597|111.024 +639809.678|220891.766|111.344 +639791.857|220908.494|112.209 +639787.419|220912.657|112.273 +639782.957|220916.842|112.167 +639778.436|220921.085|112.508 +639773.977|220925.267|112.423 +639769.381|220929.595|113.404 +639764.830|220933.865|113.694 +639751.233|220946.627|114.288 +639746.725|220950.858|114.340 +639742.150|220955.150|114.559 +639737.553|220959.469|114.989 +639733.036|220963.705|114.812 +639723.831|220972.346|115.471 +639719.223|220976.672|115.708 +639696.192|220998.285|116.324 +639691.559|221002.631|116.498 +639682.226|221011.388|116.656 +639672.954|221020.084|116.790 +639668.284|221024.461|116.528 +639663.655|221028.805|116.388 +639658.967|221033.200|116.318 +639654.355|221037.522|116.038 +639644.973|221046.315|115.632 +639635.598|221055.103|115.209 +639630.879|221059.529|115.120 +639626.131|221063.979|114.843 +639621.470|221068.343|114.651 +639616.670|221072.848|114.480 +639611.982|221077.241|114.120 +639607.251|221081.669|113.691 +639602.509|221086.113|113.438 +639597.793|221090.530|112.898 +639593.081|221094.940|112.285 +639583.574|221103.840|110.996 +639578.804|221108.306|110.551 +639574.046|221112.771|110.569 +639569.212|221117.300|110.353 +639564.408|221121.808|110.396 +639549.915|221135.400|110.441 +639545.124|221139.886|109.792 +639540.271|221144.431|109.283 +639535.443|221148.966|109.811 +639530.582|221153.523|109.481 +639525.693|221158.116|110.246 +639520.770|221162.743|110.914 +639515.848|221167.370|111.627 +639510.983|221171.930|111.435 +639506.048|221176.560|111.642 +639501.156|221181.153|111.975 +639491.317|221190.392|112.898 +639476.617|221204.175|112.319 +639471.712|221208.771|112.209 +639461.934|221217.933|111.484 +639452.160|221227.074|109.667 +639447.252|221231.665|108.710 +639442.351|221236.243|107.509 +639437.450|221240.836|107.378 +639422.615|221254.735|106.851 +639417.677|221259.356|106.503 +639407.756|221268.664|107.092 +639402.760|221273.349|107.156 +639397.817|221277.979|107.040 +639392.839|221282.640|106.580 +639382.991|221291.826|103.477 +639362.966|221310.626|105.668 +639338.009|221334.038|106.994 +639332.979|221338.747|106.827 +639297.952|221371.605|108.768 +639292.929|221376.314|108.753 +639287.951|221380.980|108.927 +639282.925|221385.696|109.305 +639277.902|221390.411|109.661 +639272.879|221395.117|109.628 +639267.856|221399.823|109.609 +639262.833|221404.526|109.189 +639232.767|221432.739|111.408 +639222.724|221442.148|111.365 +639217.704|221446.854|111.459 +639212.684|221451.560|111.423 +639172.511|221489.236|113.569 +639167.457|221493.982|114.038 +639162.450|221498.682|114.547 +639157.448|221503.376|115.184 +639152.449|221508.073|115.849 +639147.408|221512.807|116.449 +639142.455|221517.455|117.065 +639137.407|221522.195|117.595 +639132.405|221526.888|118.113 +639127.398|221531.585|118.439 +639122.387|221536.285|118.686 +639117.376|221540.986|118.936 +639112.377|221545.676|119.470 +639107.320|221550.422|119.741 +639102.355|221555.076|120.000 +639097.353|221559.770|120.463 +639092.306|221564.507|120.936 +639087.350|221569.158|121.378 +639082.369|221573.837|122.213 +639077.352|221578.540|122.417 +639072.351|221583.234|122.850 +639067.364|221587.916|123.588 +639062.368|221592.607|124.097 +639047.418|221606.633|125.553 +639042.395|221611.340|125.706 +639037.384|221616.040|126.029 +639032.403|221620.706|126.084 +639027.399|221625.400|126.507 +639022.378|221630.106|126.718 +639017.395|221634.779|126.785 +639012.369|221639.488|126.965 +639007.343|221644.200|127.126 +639002.399|221648.830|127.166 +638997.360|221653.554|127.184 +638992.353|221658.242|127.062 +638987.336|221662.939|126.797 +638982.261|221667.688|126.462 +638977.250|221672.382|126.352 +638972.199|221677.103|125.819 +638967.155|221681.825|125.355 +638962.162|221686.497|124.987 +638957.087|221691.240|124.270 +638952.067|221695.934|123.670 +638946.971|221700.698|122.798 +638941.908|221705.435|122.338 +638936.934|221710.089|121.811 +638921.934|221724.137|121.734 +638916.920|221728.831|121.454 +638906.899|221738.207|120.530 +638901.808|221742.962|119.582 +638896.798|221747.656|119.439 +638891.808|221752.328|119.555 +638886.943|221756.891|119.936 +638881.945|221761.576|119.985 +638876.982|221766.221|119.970 +638872.063|221770.839|120.338 +638867.095|221775.496|120.744 +638847.618|221793.778|123.344 +638842.741|221798.359|124.154 +638837.843|221802.949|124.383 +638832.948|221807.537|124.663 +638828.065|221812.115|125.063 +638823.185|221816.693|125.496 +638818.363|221821.219|126.002 +638788.898|221848.819|126.029 +638784.021|221853.388|126.255 +638779.096|221857.999|126.126 +638774.249|221862.541|126.251 +638764.481|221871.694|126.337 +638749.832|221885.413|126.175 +638744.861|221890.061|125.541 +638715.786|221917.301|126.130 +638710.875|221921.892|125.444 +638705.956|221926.494|125.063 +638701.122|221931.027|125.243 +638696.306|221935.538|125.575 +638691.557|221939.991|125.706 +638686.665|221944.572|125.578 +638681.877|221949.065|125.809 +638667.429|221962.598|125.523 +638662.540|221967.173|125.230 +638657.712|221971.690|124.734 +638652.774|221976.311|124.203 +638647.934|221980.837|123.706 +638643.039|221985.418|123.185 +638638.199|221989.948|122.731 +638633.340|221994.492|122.198 +638628.399|221999.110|121.518 +638623.522|222003.673|120.942 +638618.652|222008.230|120.427 +638613.821|222012.747|119.884 +638608.996|222017.261|119.409 +638604.104|222021.839|118.857 +638599.282|222026.350|118.449 +638594.481|222030.846|118.189 +638589.690|222035.329|118.004 +638584.849|222039.859|117.574 +638560.627|222062.515|114.654 +638556.015|222066.840|115.056 +638551.282|222071.275|115.099 +638546.591|222075.673|115.105 +638542.016|222079.964|115.745 +638531.942|222089.358|112.417 +638527.257|222093.744|112.310 +638513.200|222106.912|112.100 +638489.081|222129.452|107.930 +638484.311|222133.911|107.150 +638474.978|222142.647|106.625 +638470.278|222147.045|106.494 +638465.596|222151.425|105.985 +638460.924|222155.802|105.766 +638451.828|222164.324|106.083 +638419.495|222194.588|104.178 +638414.950|222198.846|104.047 +638410.330|222203.168|103.617 +638405.672|222207.520|103.059 +638401.067|222211.830|102.511 +638396.406|222216.186|101.983 +638391.871|222220.429|101.566 +638387.278|222224.726|101.145 +638382.739|222228.975|100.749 +638378.222|222233.203|100.468 +638373.793|222237.348|100.587 +638369.169|222241.670|99.682 +638364.616|222245.928|99.322 +638360.138|222250.119|99.075 +638355.694|222254.280|98.761 +638346.703|222262.689|97.786 +638341.963|222267.109|96.366 +638332.843|222275.631|94.592 +638328.341|222279.840|93.979 +638324.117|222283.806|94.467 +638319.825|222287.826|94.510 +638315.546|222291.837|94.601 +638306.484|222300.302|92.708 +638302.250|222304.273|92.824 +638294.240|222311.805|94.857 +638289.991|222315.783|94.766 +638285.889|222319.635|95.235 +638333.002|222272.598|95.095 +638342.100|222264.070|96.637 +638346.748|222259.721|97.731 +638355.789|222251.247|98.969 +638360.263|222247.047|99.228 +638364.747|222242.841|99.533 +638373.900|222234.258|100.764 +638378.320|222230.106|100.648 +638382.876|222225.830|100.910 +638387.406|222221.581|101.300 +638391.990|222217.280|101.721 +638396.574|222212.979|102.163 +638415.130|222195.578|104.205 +638419.754|222191.241|104.717 +638470.531|222143.573|106.510 +638475.222|222139.169|106.659 +638484.604|222130.366|107.259 +638489.425|222125.849|107.845 +638494.552|222121.070|110.155 +638499.395|222116.534|110.908 +638508.933|222107.592|111.792 +638513.614|222103.196|111.840 +638518.461|222098.655|112.478 +638523.213|222094.196|112.673 +638527.931|222089.767|112.718 +638532.482|222085.481|111.959 +638537.840|222080.495|115.023 +638542.625|222076.005|115.230 +638547.344|222071.573|115.114 +638552.126|222067.087|115.364 +638556.792|222062.694|114.773 +638571.341|222049.061|116.217 +638576.132|222044.562|116.367 +638581.091|222039.920|117.434 +638585.886|222035.424|117.647 +638590.766|222030.846|117.796 +638595.551|222026.353|118.007 +638600.419|222021.790|118.427 +638605.292|222017.221|118.903 +638610.172|222012.649|119.427 +638615.140|222007.992|119.930 +638620.042|222003.399|120.655 +638629.945|221994.123|122.176 +638634.895|221989.484|122.694 +638639.784|221984.900|123.179 +638644.731|221980.264|123.740 +638649.598|221975.698|123.862 +638654.524|221971.081|124.362 +638659.495|221966.420|124.865 +638664.411|221961.812|125.358 +638669.322|221957.203|125.550 +638674.235|221952.600|126.075 +638679.078|221948.050|125.895 +638684.004|221943.426|125.965 +638693.654|221934.361|125.474 +638698.531|221929.780|125.279 +638703.405|221925.205|125.392 +638708.345|221920.572|125.651 +638713.347|221915.887|126.343 +638723.104|221906.719|125.849 +638727.911|221902.199|125.310 +638732.806|221897.605|125.383 +638737.695|221893.012|125.108 +638742.696|221888.324|125.630 +638747.625|221883.703|126.017 +638752.578|221879.055|126.264 +638757.534|221874.401|126.209 +638762.493|221869.753|126.535 +638767.391|221865.153|126.474 +638772.259|221860.578|126.191 +638777.203|221855.936|126.133 +638801.977|221832.689|126.602 +638806.927|221828.041|126.340 +638811.908|221823.365|126.370 +638816.793|221818.772|126.032 +638821.692|221814.166|125.413 +638826.623|221809.533|125.072 +638831.564|221804.891|124.840 +638836.496|221800.258|124.542 +638841.394|221795.653|123.959 +638846.320|221791.017|123.252 +638865.961|221772.549|120.677 +638870.868|221767.937|120.256 +638875.836|221763.271|119.960 +638880.838|221758.577|119.994 +638885.828|221753.892|119.933 +638890.790|221749.231|119.637 +638905.853|221735.107|120.610 +638915.951|221725.643|121.533 +638920.935|221720.964|121.603 +638930.929|221711.585|121.588 +638935.974|221706.855|121.884 +638941.039|221702.109|122.414 +638946.096|221697.370|122.929 +638951.128|221692.660|123.725 +638956.176|221687.927|124.206 +638961.321|221683.117|125.273 +638966.338|221678.411|125.468 +638971.373|221673.690|125.928 +638976.415|221668.968|126.474 +638981.459|221664.232|126.538 +638986.522|221659.486|126.831 +638991.536|221654.786|127.120 +638996.525|221650.104|127.166 +639001.561|221645.380|127.187 +639006.538|221640.707|127.102 +639011.558|221635.995|126.943 +639016.578|221631.280|126.834 +639021.598|221626.567|126.715 +639026.615|221621.855|126.611 +639031.553|221617.216|125.998 +639036.585|221612.495|126.130 +639041.590|221607.795|125.840 +639051.612|221598.386|125.529 +639066.511|221584.377|123.618 +639071.540|221579.646|123.014 +639076.487|221574.998|122.585 +639086.524|221565.568|121.716 +639091.465|221560.923|121.152 +639106.494|221546.801|119.838 +639111.493|221542.104|119.473 +639116.531|221537.371|118.948 +639121.530|221532.674|118.583 +639126.532|221527.977|118.354 +639131.589|221523.228|118.287 +639136.581|221518.537|117.748 +639141.571|221513.846|117.120 +639146.594|221509.122|116.248 +639151.586|221504.428|115.596 +639156.579|221499.734|114.959 +639161.621|221494.991|114.428 +639166.619|221490.294|113.910 +639171.621|221485.597|113.477 +639176.626|221480.894|113.102 +639181.631|221476.194|112.782 +639201.720|221457.336|112.377 +639206.676|221452.679|111.746 +639211.733|221447.930|111.514 +639216.744|221443.227|111.383 +639221.706|221438.563|111.280 +639231.737|221429.157|111.658 +639241.765|221419.751|112.124 +639246.727|221415.091|112.020 +639261.705|221400.994|109.152 +639266.722|221396.291|109.600 +639271.736|221391.584|109.622 +639276.704|221386.921|109.542 +639281.721|221382.215|109.539 +639286.689|221377.545|109.173 +639291.661|221372.876|108.844 +639296.678|221368.170|109.036 +639301.649|221363.500|108.753 +639331.462|221335.489|106.726 +639336.433|221330.829|107.015 +639366.102|221302.964|105.531 +639380.830|221289.132|105.001 +639390.666|221279.921|106.333 +639400.468|221270.731|107.144 +639405.315|221266.183|107.110 +639410.271|221261.526|106.689 +639415.169|221256.927|106.558 +639420.052|221252.348|106.875 +639424.938|221247.767|107.192 +639434.679|221238.629|107.332 +639439.529|221234.076|107.351 +639454.010|221220.521|110.006 +639463.620|221211.530|111.923 +639468.457|221206.994|112.255 +639473.316|221202.434|112.170 +639478.101|221197.948|112.587 +639487.742|221188.907|113.057 +639497.392|221179.846|112.666 +639502.211|221175.310|111.795 +639507.045|221170.769|111.536 +639511.833|221166.276|111.313 +639516.658|221161.743|111.249 +639521.422|221157.266|110.707 +639526.302|221152.679|109.929 +639531.042|221148.226|109.823 +639535.839|221143.721|109.591 +639540.567|221139.286|109.737 +639545.300|221134.854|110.448 +639559.486|221121.546|110.950 +639564.296|221117.029|110.728 +639578.441|221103.758|110.792 +639583.087|221099.406|111.478 +639592.444|221090.640|112.706 +639597.117|221086.263|113.139 +639601.737|221081.928|113.593 +639615.691|221068.843|114.556 +639620.348|221064.472|114.684 +639624.939|221060.169|115.010 +639643.407|221042.844|115.913 +639652.581|221034.239|116.352 +639657.156|221029.945|116.461 +639661.786|221025.601|116.534 +639666.312|221021.352|116.696 +639670.891|221017.058|116.854 +639680.016|221008.493|117.028 +639689.218|220999.849|116.614 +639693.754|220995.591|116.397 +639698.316|220991.305|116.361 +639702.888|220987.013|116.281 +639716.486|220974.245|115.958 +639721.045|220969.963|115.681 +639725.544|220965.735|115.495 +639730.129|220961.428|115.081 +639743.649|220948.727|114.605 +639748.106|220944.543|114.507 +639761.547|220931.915|113.797 +639765.982|220927.751|113.605 +639770.505|220923.490|112.737 +639774.998|220919.272|112.517 +639779.421|220915.117|112.471 +639783.859|220910.954|112.343 +639788.196|220906.878|112.237 +639805.838|220890.303|111.374 +639823.404|220873.798|110.064 +639841.027|220857.223|107.759 +639845.361|220853.154|107.637 +639854.106|220844.925|106.321 +639867.124|220832.684|104.873 +639875.793|220824.536|104.001 +639888.622|220812.479|102.846 +639897.165|220804.444|101.749 +639909.845|220792.529|100.935 +639914.045|220788.585|100.755 +639918.258|220784.620|100.225 +639922.449|220780.682|99.856 +639938.786|220765.353|100.130 +639942.794|220761.598|100.596 +639946.796|220757.849|101.102 +639950.832|220754.064|101.154 +639954.867|220750.275|101.215 +639958.894|220746.501|101.355 +639962.880|220742.765|101.715 +639966.815|220739.073|102.090 +639970.769|220735.370|102.389 +639974.774|220731.609|102.413 +639978.788|220727.845|102.419 +639982.607|220724.269|103.181 +639986.502|220720.618|103.553 +639990.410|220716.954|103.879 +639994.302|220713.306|104.038 +639998.188|220709.660|104.242 +640005.906|220702.427|104.946 +640009.698|220698.873|105.400 +640021.128|220688.163|106.546 +640024.886|220684.639|106.945 +640028.711|220681.052|107.040 +640032.482|220677.513|107.144 +640036.273|220673.956|107.168 +640040.025|220670.435|107.156 +640043.842|220666.851|107.083 +640047.627|220663.297|106.936 +640051.434|220659.722|106.699 +640055.232|220656.152|106.503 +640058.960|220652.650|106.189 +640062.727|220649.115|106.177 +639940.017|220762.583|100.353 +639936.006|220766.326|99.597 +639927.743|220774.052|99.740 +639923.802|220777.719|98.591 +639919.291|220781.968|100.459 +639915.191|220785.796|100.264 +639910.955|220789.762|100.593 +639898.263|220801.640|101.288 +639893.959|220805.672|101.816 +639889.576|220809.778|102.517 +639885.275|220813.811|103.081 +639880.919|220817.889|103.669 +639876.646|220821.888|103.797 +639872.376|220825.881|103.916 +639850.494|220846.375|106.336 +639828.442|220867.035|109.222 +639819.578|220875.338|110.188 +639815.186|220879.446|110.441 +639810.788|220883.567|110.774 +639784.173|220908.475|112.356 +639779.820|220912.538|112.130 +639775.422|220916.656|112.282 +639770.947|220920.838|112.285 +639766.357|220925.142|113.176 +639761.858|220929.357|113.779 +639748.359|220941.994|114.687 +639743.863|220946.198|114.623 +639734.832|220954.647|114.870 +639730.308|220958.877|115.090 +639725.785|220963.111|115.321 +639721.213|220967.390|115.599 +639716.647|220971.661|115.846 +639698.429|220988.702|116.284 +639693.793|220993.039|116.425 +639689.212|220997.325|116.541 +639684.622|221001.620|116.748 +639679.980|221005.963|117.028 +639675.420|221010.227|117.025 +639661.652|221023.096|116.589 +639657.016|221027.430|116.470 +639652.380|221031.761|116.361 +639638.509|221044.724|115.812 +639629.206|221053.420|115.590 +639624.518|221057.797|115.151 +639619.876|221062.132|114.739 +639615.213|221066.487|114.547 +639610.500|221070.895|114.419 +639601.128|221079.645|113.611 +639596.446|221084.019|113.169 +639577.585|221101.622|110.816 +639563.204|221115.069|110.905 +639543.975|221133.046|110.615 +639534.355|221142.026|109.661 +639524.653|221151.103|109.972 +639519.755|221155.693|110.856 +639514.857|221160.277|111.106 +639510.011|221164.813|111.289 +639505.125|221169.385|111.432 +639500.266|221173.932|111.908 +639495.277|221178.614|113.014 +639490.397|221183.180|113.172 +639485.532|221187.728|113.075 +639475.766|221196.853|112.770 +639465.967|221206.007|112.221 +639461.069|221210.585|111.941 +639456.158|221215.163|111.002 +639451.294|221219.698|110.045 +639436.542|221233.457|107.375 +639431.628|221238.050|107.400 +639421.673|221247.359|107.192 +639416.733|221251.977|106.808 +639411.737|221256.649|106.622 +639406.775|221261.291|106.830 +639401.764|221265.982|107.122 +639386.826|221279.951|106.766 +639376.868|221289.248|105.543 +639366.876|221298.593|105.440 +639331.715|221331.499|106.634 +639301.487|221359.800|108.668 +639296.458|221364.509|108.710 +639291.426|221369.215|108.853 +639286.345|221373.976|109.457 +639281.316|221378.682|109.539 +639271.212|221388.134|109.643 +639266.185|221392.837|109.631 +639261.107|221397.580|109.262 +639225.702|221430.730|111.527 +639220.676|221435.430|111.505 +639215.604|221440.176|111.584 +639210.581|221444.876|111.731 +639205.512|221449.622|112.075 +639190.394|221463.767|112.508 +639185.322|221468.513|112.602 +639180.253|221473.256|112.773 +639175.233|221477.956|113.035 +639170.167|221482.699|113.355 +639165.101|221487.441|113.727 +639160.093|221492.132|114.346 +639155.043|221496.869|115.105 +639119.753|221529.924|118.574 +639114.693|221534.658|118.967 +639069.495|221576.992|123.130 +639064.487|221581.679|123.566 +639044.483|221600.425|125.697 +639039.493|221605.088|125.688 +639034.482|221609.782|126.084 +639029.447|221614.494|126.111 +639019.458|221623.846|126.721 +639014.429|221628.552|126.901 +639009.431|221633.227|126.849 +639004.398|221637.933|127.038 +638999.457|221642.560|127.138 +638994.410|221647.282|127.141 +638989.402|221651.963|127.068 +638984.385|221656.654|126.885 +638979.350|221661.357|126.507 +638974.330|221666.051|126.337 +638969.294|221670.757|126.029 +638964.192|221675.521|125.514 +638959.169|221680.212|124.837 +638954.106|221684.940|124.322 +638944.008|221694.367|123.146 +638938.915|221699.122|122.396 +638933.901|221703.807|122.021 +638928.902|221708.483|121.853 +638923.876|221713.183|121.963 +638913.882|221722.528|121.789 +638908.886|221727.194|121.244 +638903.842|221731.907|120.759 +638878.900|221755.224|120.107 +638873.886|221759.912|120.088 +638868.945|221764.538|120.302 +638864.016|221769.150|120.680 +638859.194|221773.673|121.564 +638844.472|221787.469|123.295 +638839.608|221792.025|123.837 +638834.719|221796.610|124.593 +638829.839|221801.179|125.023 +638824.929|221805.775|125.233 +638819.973|221810.411|125.474 +638815.117|221814.959|125.758 +638810.198|221819.567|126.328 +638805.272|221824.176|126.462 +638800.395|221828.739|126.632 +638785.558|221842.613|126.407 +638770.903|221856.326|127.026 +638765.947|221860.959|126.745 +638751.225|221874.721|126.434 +638746.269|221879.354|126.255 +638741.395|221883.908|125.995 +638736.439|221888.541|125.877 +638731.568|221893.094|125.691 +638726.640|221897.700|125.468 +638721.842|221902.193|125.834 +638707.324|221915.777|126.501 +638702.423|221920.359|126.251 +638697.516|221924.937|125.685 +638692.639|221929.500|125.636 +638687.805|221934.023|125.883 +638673.312|221947.571|125.886 +638668.441|221952.122|125.678 +638663.555|221956.688|125.401 +638658.700|221961.220|125.047 +638653.814|221965.786|124.822 +638648.958|221970.322|124.523 +638634.468|221983.861|123.908 +638624.699|221992.977|122.902 +638619.770|221997.574|122.054 +638614.863|222002.152|121.350 +638609.870|222006.803|120.201 +638604.939|222011.403|119.442 +638600.007|222015.999|118.430 +638595.173|222020.510|117.991 +638590.348|222025.015|117.623 +638585.541|222029.508|117.376 +638580.744|222033.988|117.208 +638576.031|222038.396|117.248 +638571.222|222042.885|116.790 +638566.357|222047.421|116.074 +638556.792|222056.352|115.327 +638552.160|222060.692|115.879 +638547.377|222065.154|115.437 +638542.668|222069.555|115.382 +638538.026|222073.905|115.946 +638523.328|222087.597|112.633 +638518.558|222092.050|112.151 +638513.861|222096.436|112.057 +638509.164|222100.828|111.969 +638499.606|222109.750|110.832 +638494.860|222114.175|110.100 +638489.998|222118.708|109.335 +638475.667|222132.073|107.189 +638471.055|222136.383|107.217 +638466.468|222140.672|107.137 +638461.777|222145.052|106.839 +638415.703|222188.086|104.620 +638411.083|222192.399|104.184 +638406.440|222196.731|103.681 +638401.814|222201.050|103.266 +638397.226|222205.329|102.824 +638392.642|222209.605|102.416 +638388.104|222213.845|101.992 +638383.519|222218.121|101.636 +638378.993|222222.349|101.304 +638374.415|222226.625|101.002 +638356.374|222243.469|99.840 +638338.156|222260.458|97.219 +638333.505|222264.789|96.192 +638328.924|222269.060|95.461 +638324.397|222273.278|94.766 +638319.840|222277.527|93.967 +638315.342|222281.724|93.415 +638306.947|222289.582|94.513 +638294.082|222301.600|94.488 +638289.888|222305.523|94.808 +638285.602|222309.528|94.787 +638321.313|222273.879|94.278 +638325.775|222269.703|94.958 +638330.350|222265.423|95.896 +638339.585|222256.791|97.762 +638353.241|222244.014|99.953 +638371.248|222227.147|101.291 +638375.695|222222.974|101.300 +638384.784|222214.461|101.944 +638393.950|222205.881|102.773 +638407.772|222192.933|104.077 +638412.402|222188.601|104.568 +638417.017|222184.279|105.028 +638421.757|222179.848|105.821 +638431.056|222171.133|106.485 +638463.551|222140.684|107.717 +638472.796|222132.012|107.805 +638482.010|222123.362|107.351 +638491.666|222114.325|108.829 +638506.409|222100.542|112.148 +638511.091|222096.149|112.185 +638515.910|222091.632|112.414 +638520.613|222087.225|112.593 +638540.163|222068.928|115.510 +638544.914|222064.471|115.556 +638549.712|222059.973|115.864 +638554.519|222055.468|115.974 +638559.304|222050.978|116.004 +638564.108|222046.476|116.135 +638569.039|222041.861|116.989 +638573.880|222037.323|117.098 +638578.634|222032.864|117.053 +638583.548|222028.258|117.339 +638588.315|222023.787|117.415 +638593.234|222019.178|117.781 +638598.224|222014.512|118.848 +638608.295|222005.099|121.033 +638613.367|222000.360|122.396 +638618.326|221995.718|122.871 +638623.227|221991.127|123.328 +638628.195|221986.476|123.911 +638633.057|221981.919|124.203 +638638.025|221977.268|124.843 +638647.800|221968.103|124.983 +638652.668|221963.540|125.115 +638657.614|221958.904|125.465 +638662.494|221954.326|125.416 +638667.426|221949.705|125.718 +638672.394|221945.047|125.950 +638677.366|221940.393|126.556 +638682.255|221935.806|126.349 +638687.064|221931.289|125.983 +638691.987|221926.671|125.724 +638696.955|221922.020|126.410 +638716.651|221903.546|126.373 +638721.559|221898.937|125.794 +638726.472|221894.329|125.968 +638731.452|221889.659|125.928 +638736.402|221885.017|126.053 +638761.326|221861.654|126.904 +638771.232|221852.367|126.803 +638786.094|221838.422|126.507 +638791.108|221833.722|126.660 +638796.101|221829.040|126.663 +638801.096|221824.359|126.715 +638806.019|221819.732|126.233 +638810.966|221815.090|125.941 +638815.928|221810.435|125.797 +638820.936|221805.735|125.639 +638825.901|221801.078|125.557 +638830.872|221796.411|125.145 +638835.795|221791.785|124.337 +638840.678|221787.197|123.591 +638845.609|221782.564|122.868 +638860.487|221768.592|121.030 +638865.440|221763.941|120.527 +638870.472|221759.223|120.323 +638875.498|221754.514|120.552 +638885.593|221745.050|120.549 +638900.705|221730.888|120.896 +638910.831|221721.406|121.451 +638915.951|221716.615|121.881 +638920.983|221711.896|121.929 +638926.031|221707.169|122.173 +638931.054|221702.460|122.161 +638936.102|221697.732|122.454 +638946.282|221688.207|123.536 +638951.406|221683.416|124.264 +638956.471|221678.673|124.938 +638961.574|221673.900|125.499 +638966.658|221669.142|125.864 +638971.696|221664.424|126.340 +638976.759|221659.681|126.526 +638981.831|221654.932|126.846 +638986.894|221650.189|127.102 +638991.938|221645.462|127.145 +638996.979|221640.738|127.193 +639002.009|221636.022|127.077 +639007.038|221631.307|126.959 +639012.113|221626.546|126.898 +639017.139|221621.837|126.757 +639027.158|221612.437|126.114 +639032.187|221607.722|126.130 +639037.237|221602.982|125.742 +639042.255|221598.279|125.572 +639047.281|221593.567|125.569 +639062.283|221579.476|123.551 +639067.340|221574.733|123.316 +639072.341|221570.039|122.929 +639077.355|221565.336|122.771 +639082.366|221560.639|122.533 +639087.435|221555.887|122.569 +639102.376|221541.848|120.107 +639107.375|221537.157|119.637 +639112.417|221532.424|119.095 +639117.415|221527.733|118.583 +639122.438|221523.027|118.705 +639162.413|221485.490|113.919 +639167.473|221480.745|113.709 +639172.481|221476.045|113.270 +639177.440|221471.390|112.782 +639182.454|221466.687|112.557 +639187.519|221461.939|112.478 +639192.491|221457.281|112.514 +639197.508|221452.578|112.484 +639207.490|221443.218|112.170 +639212.507|221438.515|112.039 +639217.521|221433.815|111.819 +639222.489|221429.160|111.725 +639242.466|221410.458|112.157 +639247.388|221405.849|112.383 +639262.287|221391.853|109.417 +639267.261|221387.198|109.631 +639282.133|221373.269|109.554 +639292.039|221363.982|108.786 +639296.967|221359.361|108.597 +639301.945|221354.701|108.527 +639326.658|221331.533|107.241 +639331.602|221326.897|106.631 +639351.286|221308.435|104.897 +639366.044|221294.624|105.476 +639370.930|221290.049|105.708 +639390.462|221271.776|107.201 +639395.311|221267.235|107.144 +639405.062|221258.100|107.028 +639409.972|221253.501|106.747 +639414.815|221248.968|106.982 +639429.370|221235.341|107.214 +639434.222|221230.796|107.259 +639448.606|221217.370|110.338 +639453.461|221212.819|110.329 +639463.041|221203.876|112.133 +639472.633|221194.900|112.697 +639477.482|221190.361|112.923 +639482.283|221185.868|113.154 +639496.712|221172.347|112.724 +639501.522|221167.839|112.176 +639506.396|221163.258|111.338 +639511.184|221158.775|111.197 +639516.034|221154.227|110.853 +639520.819|221149.743|110.804 +639525.638|221145.226|110.313 +639530.402|221140.758|109.926 +639535.178|221136.287|110.100 +639539.930|221131.846|110.630 +639544.682|221127.402|111.164 +639549.394|221122.997|111.606 +639558.913|221114.076|111.267 +639563.659|221109.635|111.328 +639577.801|221096.391|111.572 +639591.798|221083.309|113.176 +639596.531|221078.883|113.493 +639601.146|221074.570|114.084 +639605.867|221070.148|114.020 +639610.485|221065.832|114.590 +639615.142|221061.476|114.760 +639619.779|221057.139|115.154 +639629.142|221048.379|115.544 +639633.757|221044.060|115.727 +639638.408|221039.707|116.013 +639643.004|221035.413|116.416 +639647.634|221031.078|116.489 +639652.270|221026.735|116.489 +639656.897|221022.407|116.638 +639661.475|221018.121|116.800 +639675.274|221005.210|117.245 +639679.846|221000.928|117.114 +639684.500|220996.563|116.669 +639689.054|220992.299|116.736 +639693.632|220988.013|116.617 +639698.222|220983.709|116.391 +639716.473|220966.616|115.903 +639721.009|220962.364|115.468 +639725.550|220958.109|115.398 +639730.119|220953.824|114.751 +639734.612|220949.617|114.727 +639739.120|220945.393|114.617 +639743.662|220941.144|114.657 +639761.602|220924.334|113.718 +639766.156|220920.061|113.035 +639770.658|220915.833|112.380 +639775.141|220911.639|112.292 +639779.576|220907.485|112.203 +639784.008|220903.334|112.151 +639810.504|220878.504|110.576 +639828.098|220862.006|108.674 +639832.493|220857.885|108.137 +639849.985|220841.480|106.129 +639854.320|220837.417|105.772 +639858.629|220833.373|105.284 +639871.559|220821.251|103.974 +639880.106|220813.241|103.358 +639884.352|220809.257|102.779 +639897.159|220797.242|101.121 +639901.347|220793.319|100.987 +639909.714|220785.479|100.560 +639913.972|220781.489|100.093 +639918.096|220777.618|99.822 +639926.356|220769.880|99.572 +639930.453|220766.045|99.816 +639934.391|220762.366|100.392 +639938.384|220758.632|100.944 +639942.349|220754.926|101.389 +639946.375|220751.156|101.502 +639950.365|220747.416|101.541 +639954.343|220743.694|101.688 +639958.311|220739.979|101.877 +639962.240|220736.303|102.294 +639966.136|220732.660|102.632 +639970.071|220728.975|102.779 +639973.993|220725.303|102.736 +639985.567|220714.476|103.943 +639989.435|220710.861|104.245 +639993.263|220707.274|104.473 +639997.079|220703.704|104.793 +640004.705|220696.572|105.491 +640008.479|220693.042|105.793 +640012.264|220689.501|106.052 +640015.964|220686.038|106.479 +640027.221|220675.507|107.339 +640031.012|220671.956|107.369 +640034.704|220668.497|107.393 +640038.431|220665.010|107.518 +640042.150|220661.526|107.689 +640053.360|220651.020|107.278 +640057.198|220647.414|106.455 +639933.607|220761.559|100.426 +639929.645|220765.247|99.636 +639921.598|220772.742|98.231 +639917.145|220776.920|99.703 +639912.933|220780.862|100.136 +639908.589|220784.925|100.743 +639895.843|220796.836|101.383 +639891.536|220800.866|101.870 +639869.861|220821.129|103.736 +639852.308|220837.551|105.708 +639834.547|220854.163|107.802 +639825.632|220862.502|108.927 +639816.716|220870.842|109.838 +639798.840|220887.554|111.252 +639794.274|220891.824|111.734 +639785.328|220900.185|112.185 +639780.844|220904.367|112.151 +639776.361|220908.555|112.164 +639771.865|220912.749|112.267 +639767.336|220916.979|112.639 +639762.754|220921.265|113.432 +639758.179|220925.541|113.837 +639749.133|220933.990|114.334 +639744.558|220938.261|114.450 +639740.038|220942.479|114.532 +639735.520|220946.694|114.626 +639730.930|220950.983|114.928 +639708.021|220972.374|116.096 +639698.761|220981.018|116.498 +639689.596|220989.571|116.605 +639684.966|220993.893|116.678 +639680.358|220998.200|117.028 +639675.673|221002.574|117.217 +639657.239|221019.764|116.702 +639652.602|221024.086|116.522 +639647.960|221028.418|116.431 +639638.713|221037.040|115.961 +639634.025|221041.411|115.910 +639629.368|221045.755|115.568 +639624.719|221050.092|115.641 +639620.056|221054.438|115.382 +639615.411|221058.770|114.983 +639610.756|221063.104|114.648 +639606.047|221067.496|114.431 +639601.375|221071.852|114.340 +639596.675|221076.235|114.044 +639592.002|221080.584|113.453 +639573.260|221098.040|111.185 +639558.940|221111.409|111.569 +639554.198|221115.831|111.362 +639549.388|221120.318|111.402 +639544.636|221124.750|111.341 +639539.860|221129.203|110.993 +639535.105|221133.629|110.329 +639530.332|221138.076|109.954 +639525.476|221142.611|110.112 +639520.651|221147.119|110.539 +639515.796|221151.648|110.722 +639510.983|221156.144|111.045 +639506.134|221160.671|111.194 +639501.260|221165.227|111.804 +639496.319|221169.851|112.801 +639476.903|221187.969|112.868 +639472.045|221192.498|112.633 +639467.180|221197.033|112.487 +639462.319|221201.566|112.310 +639452.635|221210.576|110.313 +639447.716|221215.166|110.341 +639433.146|221228.717|107.473 +639428.166|221233.369|107.893 +639423.252|221237.953|107.918 +639408.463|221251.736|106.903 +639403.458|221256.405|106.891 +639393.583|221265.620|107.150 +639388.581|221270.289|107.204 +639383.628|221274.907|107.168 +639373.701|221284.157|106.318 +639368.723|221288.787|105.464 +639363.725|221293.451|105.467 +639353.770|221302.708|103.547 +639348.762|221307.386|103.943 +639328.679|221326.165|106.924 +639303.566|221349.610|108.366 +639293.496|221359.010|108.604 +639288.457|221363.713|109.024 +639283.422|221368.417|109.512 +639278.390|221373.117|109.728 +639273.357|221377.814|110.076 +639263.296|221387.192|109.487 +639258.221|221391.947|110.917 +639243.091|221406.078|112.115 +639222.840|221424.969|112.249 +639212.736|221434.397|112.267 +639192.530|221453.249|112.584 +639187.449|221457.985|112.447 +639182.380|221462.719|112.788 +639172.292|221472.140|113.511 +639116.812|221523.962|118.634 +639111.792|221528.650|118.872 +639106.741|221533.369|119.558 +639081.647|221556.820|122.829 +639076.618|221561.514|122.883 +639071.552|221566.244|123.121 +639066.575|221570.886|123.310 +639061.512|221575.614|123.679 +639041.489|221594.326|125.691 +639036.497|221598.980|125.672 +639031.480|221603.668|125.977 +639026.454|221608.362|126.215 +639021.415|221613.062|126.251 +639016.401|221617.750|126.657 +639011.424|221622.395|126.934 +639006.431|221627.058|126.968 +639001.390|221631.761|127.044 +638996.443|221636.379|127.126 +638991.441|221641.045|127.141 +638986.397|221645.755|127.196 +638981.419|221650.394|126.962 +638976.393|221655.082|126.709 +638971.358|221659.775|126.392 +638966.371|221664.427|126.108 +638961.333|221669.121|125.840 +638956.310|221673.799|125.185 +638951.259|221678.505|124.816 +638946.221|221683.196|124.081 +638941.198|221687.878|123.527 +638936.156|221692.581|123.371 +638931.139|221697.248|122.469 +638926.144|221701.908|122.362 +638921.151|221706.565|122.298 +638916.149|221711.232|122.173 +638911.141|221715.901|121.987 +638906.179|221720.528|121.847 +638901.135|221725.228|121.356 +638891.189|221734.503|120.963 +638886.108|221739.234|120.219 +638881.253|221743.772|120.774 +638861.404|221762.295|120.884 +638851.654|221771.409|122.188 +638846.713|221776.023|122.490 +638841.818|221780.601|123.185 +638837.020|221785.088|123.908 +638832.149|221789.645|124.831 +638817.491|221803.340|126.078 +638807.671|221812.502|126.184 +638802.785|221817.065|126.267 +638797.868|221821.655|126.514 +638793.022|221826.181|126.956 +638788.063|221830.808|126.907 +638763.533|221853.699|127.178 +638758.625|221858.277|127.297 +638753.727|221862.846|127.141 +638748.802|221867.442|127.148 +638743.882|221872.026|126.898 +638738.947|221876.626|126.565 +638734.046|221881.198|126.489 +638729.112|221885.800|126.197 +638724.247|221890.339|126.416 +638719.315|221894.938|126.212 +638714.460|221899.474|126.523 +638704.828|221908.468|127.077 +638690.076|221922.221|126.428 +638685.181|221926.781|125.989 +638680.282|221931.356|126.172 +638675.491|221935.827|126.123 +638670.596|221940.396|126.059 +638665.692|221944.968|125.669 +638660.867|221949.473|125.779 +638656.090|221953.935|126.227 +638651.293|221958.413|126.248 +638646.242|221963.110|125.075 +638641.393|221967.633|124.840 +638636.562|221972.147|125.023 +638631.703|221976.674|124.493 +638587.340|222017.989|118.058 +638582.359|222022.622|116.885 +638577.565|222027.094|116.751 +638572.788|222031.550|116.739 +638568.034|222035.988|116.580 +638563.303|222040.404|116.858 +638558.539|222044.851|116.696 +638553.751|222049.317|116.434 +638548.950|222053.791|116.147 +638544.116|222058.296|115.705 +638539.401|222062.697|115.638 +638534.822|222066.977|116.281 +638524.865|222076.234|113.599 +638519.997|222080.769|112.862 +638515.212|222085.225|112.325 +638510.563|222089.566|112.468 +638491.407|222107.415|110.310 +638486.344|222112.115|108.594 +638481.821|222116.342|108.988 +638477.304|222120.564|109.423 +638463.094|222133.807|108.253 +638458.506|222138.090|108.192 +638439.996|222155.354|107.689 +638435.390|222159.655|107.646 +638425.966|222168.430|106.470 +638421.293|222172.782|105.979 +638416.654|222177.104|105.424 +638412.037|222181.408|104.995 +638407.361|222185.767|104.553 +638402.728|222190.083|104.102 +638398.257|222194.256|104.132 +638388.963|222202.912|102.992 +638384.321|222207.234|102.373 +638379.743|222211.501|102.044 +638375.256|222215.692|102.108 +638370.727|222219.914|101.800 +638348.126|222240.978|100.127 +638343.505|222245.282|99.350 +638334.181|222253.954|97.356 +638329.661|222258.163|96.856 +638320.545|222266.649|95.418 +638307.228|222279.066|94.503 +638302.872|222283.126|94.357 +638294.292|222291.136|94.622 +638290.061|222295.087|94.793 +638324.638|222260.324|96.131 +638329.186|222256.084|96.960 +638333.828|222251.759|97.978 +638343.021|222243.191|99.502 +638347.654|222238.872|100.353 +638365.884|222221.858|102.312 +638370.267|222217.762|102.017 +638379.249|222209.368|102.175 +638383.824|222205.097|102.520 +638388.552|222200.687|103.324 +638406.928|222183.533|104.684 +638411.555|222179.214|105.168 +638416.255|222174.828|105.543 +638420.922|222170.472|106.022 +638425.594|222166.113|106.540 +638434.994|222157.341|107.686 +638439.691|222152.955|107.936 +638453.526|222140.031|108.338 +638458.205|222135.661|108.351 +638481.757|222113.663|109.972 +638486.292|222109.414|109.439 +638505.613|222091.385|112.200 +638515.096|222082.528|112.609 +638534.609|222064.331|115.995 +638539.334|222059.909|115.611 +638544.104|222055.452|115.742 +638548.932|222050.941|116.202 +638553.772|222046.421|116.480 +638558.548|222041.959|116.720 +638563.273|222037.539|116.434 +638568.040|222033.080|116.403 +638572.825|222028.606|116.495 +638577.659|222024.088|116.592 +638582.545|222019.529|117.266 +638597.724|222005.401|121.512 +638632.173|221973.245|124.996 +638637.056|221968.682|125.142 +638641.920|221964.134|125.203 +638646.754|221959.614|125.105 +638656.688|221950.345|126.264 +638661.455|221945.880|125.840 +638666.313|221941.338|125.660 +638671.248|221936.726|126.005 +638676.146|221932.151|126.117 +638681.069|221927.549|126.114 +638690.978|221918.295|126.910 +638710.567|221899.980|126.645 +638715.456|221895.408|126.587 +638720.352|221890.830|126.255 +638725.301|221886.203|126.312 +638730.264|221881.564|126.489 +638740.194|221872.289|126.928 +638745.184|221867.625|127.023 +638750.155|221862.983|127.361 +638755.099|221858.356|127.199 +638760.034|221853.741|126.968 +638769.979|221844.448|127.120 +638779.870|221835.200|126.971 +638784.878|221830.519|127.032 +638789.870|221825.852|127.010 +638794.796|221821.241|126.462 +638799.719|221816.635|126.315 +638804.702|221811.978|126.264 +638809.740|221807.268|126.303 +638834.478|221784.113|124.188 +638839.346|221779.547|123.298 +638854.220|221765.611|121.747 +638859.167|221760.972|120.707 +638874.236|221746.881|121.122 +638879.265|221742.175|120.899 +638889.318|221732.775|120.945 +638894.393|221728.036|121.234 +638899.471|221723.290|121.615 +638904.494|221718.596|121.932 +638909.575|221713.844|121.923 +638914.638|221709.114|122.201 +638919.682|221704.398|122.362 +638929.771|221694.968|122.710 +638934.895|221690.185|123.286 +638939.982|221685.431|123.484 +638945.044|221680.703|124.002 +638955.219|221671.202|125.145 +638960.333|221666.429|125.831 +638965.411|221661.684|126.081 +638970.440|221656.987|126.386 +638975.515|221652.244|126.700 +638980.587|221647.504|126.989 +638985.650|221642.774|127.202 +638990.691|221638.058|127.157 +638995.739|221633.337|127.233 +639000.771|221628.631|127.077 +639005.803|221623.925|126.971 +639010.836|221619.216|126.892 +639015.853|221614.522|126.611 +639020.873|221609.822|126.389 +639025.942|221605.079|126.175 +639030.959|221600.385|125.904 +639035.979|221595.688|125.715 +639041.060|221590.936|125.755 +639056.038|221576.903|123.917 +639061.055|221572.209|123.734 +639066.117|221567.473|123.484 +639071.180|221562.736|123.292 +639076.191|221558.042|123.048 +639101.264|221534.557|120.015 +639106.269|221529.869|119.604 +639111.307|221525.148|118.891 +639116.321|221520.457|118.638 +639171.600|221468.702|114.145 +639181.618|221459.317|113.112 +639186.684|221454.578|112.852 +639191.653|221449.929|112.542 +639196.679|221445.232|112.697 +639201.751|221440.490|112.819 +639211.745|221431.141|112.807 +639216.762|221426.441|112.508 +639221.782|221421.744|112.365 +639226.802|221417.047|112.371 +639241.820|221402.999|112.474 +639246.794|221398.348|112.468 +639261.757|221384.309|109.591 +639266.734|221379.658|110.097 +639271.760|221374.958|110.064 +639276.692|221370.343|109.844 +639291.633|221356.346|108.637 +639296.617|221351.680|108.375 +639301.551|221347.062|108.192 +639321.443|221328.445|107.576 +639331.291|221319.216|106.412 +639341.206|221309.913|104.635 +639351.127|221300.611|103.114 +639370.753|221282.292|105.778 +639385.405|221268.604|107.235 +639390.306|221264.019|107.253 +639400.069|221254.884|107.040 +639404.979|221250.288|106.857 +639409.823|221245.762|107.162 +639414.657|221241.248|107.784 +639419.509|221236.709|107.899 +639424.368|221232.165|107.878 +639429.229|221227.617|107.863 +639448.508|221209.618|110.438 +639453.293|221205.153|111.063 +639462.855|221196.226|112.383 +639467.653|221191.742|112.737 +639472.459|221187.249|112.971 +639477.266|221182.756|113.194 +639496.450|221164.801|112.532 +639501.272|221160.280|111.871 +639506.124|221155.736|111.511 +639510.901|221151.261|110.905 +639515.701|221146.766|110.676 +639520.459|221142.309|110.417 +639525.260|221137.820|110.283 +639530.015|221133.370|110.134 +639534.757|221128.944|110.847 +639539.473|221124.536|111.274 +639544.200|221120.117|111.545 +639548.900|221115.722|111.581 +639553.698|221111.235|111.597 +639563.119|221102.420|111.472 +639567.892|221097.952|111.271 +639591.191|221076.186|113.374 +639595.858|221071.830|113.980 +639600.497|221067.496|114.355 +639605.148|221063.150|114.599 +639609.830|221058.767|114.532 +639614.387|221054.515|115.294 +639619.038|221050.171|115.608 +639623.662|221045.843|115.681 +639628.343|221041.466|115.711 +639632.967|221037.144|115.836 +639637.567|221032.843|116.220 +639642.212|221028.500|116.190 +639646.772|221024.242|116.544 +639651.405|221019.908|116.638 +639656.038|221015.576|116.793 +639674.365|220998.437|117.153 +639678.986|220994.112|117.068 +639683.589|220989.802|116.711 +639688.200|220985.489|116.754 +639692.778|220981.207|116.681 +639711.103|220964.050|115.666 +639715.699|220959.749|115.556 +639720.247|220955.494|115.489 +639724.770|220951.260|115.230 +639729.354|220946.966|114.888 +639733.868|220942.744|114.760 +639738.395|220938.504|114.550 +639742.906|220934.283|114.468 +639747.490|220929.991|114.242 +639751.967|220925.803|114.111 +639756.475|220921.582|113.767 +639761.038|220917.309|113.398 +639765.583|220913.041|112.459 +639770.103|220908.811|112.115 +639774.584|220904.617|112.066 +639787.934|220892.123|111.676 +639801.318|220879.596|110.914 +639819.136|220862.902|109.170 +639841.289|220842.142|106.482 +639845.648|220838.060|106.290 +639854.435|220829.822|104.900 +639863.150|220821.659|104.092 +639867.478|220817.608|103.907 +639871.782|220813.576|103.562 +639889.006|220797.434|101.517 +639893.300|220793.410|101.060 +639905.895|220781.627|100.913 +639910.196|220777.597|100.221 +639914.633|220773.421|98.460 +639918.581|220769.749|99.563 +639926.737|220762.129|99.981 +639930.696|220758.440|100.746 +639934.680|220754.725|101.368 +639938.685|220750.982|101.608 +639942.712|220747.224|101.758 +639946.741|220743.456|101.880 +639950.768|220739.695|102.047 +639954.727|220735.998|102.312 +639958.689|220732.298|102.575 +639962.646|220728.607|102.892 +639970.506|220721.261|103.276 +639978.215|220714.065|103.967 +639982.107|220710.428|104.144 +639985.911|220706.877|104.516 +639989.752|220703.290|104.708 +639993.586|220699.708|104.949 +639997.393|220696.154|105.342 +640001.148|220692.652|105.757 +640008.680|220685.621|106.494 +640012.316|220682.234|107.272 +640016.099|220678.692|107.061 +640019.777|220675.260|107.393 +640023.511|220671.773|107.713 +640031.064|220664.708|107.461 +640034.768|220661.249|107.470 +640038.428|220657.826|107.445 +640042.122|220654.372|107.512 +640045.786|220650.946|107.500 +640053.196|220644.012|106.872 +640060.520|220637.157|106.458 +639926.573|220760.220|100.237 +639922.610|220763.909|99.728 +639918.480|220767.764|99.920 +639914.585|220771.373|98.460 +639910.214|220775.470|100.066 +639901.731|220783.391|100.959 +639884.797|220799.189|101.663 +639880.520|220803.182|101.998 +639876.180|220807.239|102.730 +639871.867|220811.268|103.346 +639858.876|220823.396|104.385 +639850.061|220831.629|105.440 +639841.311|220839.804|106.500 +639823.602|220856.339|108.354 +639814.699|220864.657|109.451 +639805.664|220873.094|110.524 +639801.239|220877.224|110.640 +639787.794|220889.773|111.618 +639783.261|220894.001|111.877 +639774.319|220902.340|111.969 +639769.765|220906.589|112.112 +639765.278|220910.777|112.148 +639760.642|220915.120|113.343 +639756.027|220919.427|113.645 +639751.458|220923.694|114.020 +639746.917|220927.934|114.203 +639742.327|220932.219|114.422 +639737.739|220936.502|114.639 +639733.180|220940.754|114.648 +639728.608|220945.018|114.770 +639723.953|220949.368|115.202 +639719.375|220953.641|115.443 +639714.706|220957.999|115.672 +639696.186|220975.291|116.696 +639691.559|220979.607|116.675 +639682.250|220988.291|116.763 +639677.550|220992.677|117.031 +639672.917|220996.999|117.153 +639654.261|221014.400|116.830 +639649.576|221018.765|116.647 +639644.928|221023.099|116.586 +639640.209|221027.497|116.309 +639635.518|221031.874|116.254 +639630.818|221036.251|115.815 +639626.134|221040.619|115.724 +639621.403|221045.029|115.623 +639616.718|221049.397|115.580 +639612.021|221053.774|115.187 +639602.560|221062.589|114.608 +639597.818|221067.008|114.221 +639588.399|221075.781|113.255 +639564.707|221097.851|111.350 +639559.873|221102.362|111.609 +639555.042|221106.873|111.856 +639550.290|221111.302|111.712 +639545.493|221115.776|111.603 +639540.698|221120.245|111.463 +639535.919|221124.698|111.103 +639531.118|221129.166|110.420 +639526.324|221133.635|110.289 +639521.511|221138.128|110.478 +639516.658|221142.657|110.615 +639511.803|221147.186|110.786 +639506.969|221151.703|111.383 +639502.040|221156.309|112.014 +639497.221|221160.808|112.484 +639492.332|221165.371|112.584 +639477.796|221178.940|113.322 +639472.932|221183.473|113.127 +639468.113|221187.969|113.014 +639458.411|221197.003|112.154 +639453.568|221201.511|111.584 +639448.734|221206.013|110.896 +639443.848|221210.560|110.225 +639429.284|221224.112|108.134 +639424.426|221228.641|107.927 +639419.509|221233.222|107.896 +639414.605|221237.791|107.628 +639409.698|221242.363|107.454 +639404.803|221246.923|107.003 +639399.886|221251.507|107.052 +639390.008|221260.718|107.302 +639385.094|221265.303|107.412 +639375.249|221274.474|106.863 +639370.321|221279.052|105.833 +639365.374|221283.661|105.531 +639350.573|221297.425|102.898 +639345.604|221302.061|103.407 +639340.639|221306.701|104.013 +639330.642|221316.058|106.506 +639315.688|221330.009|107.366 +639300.704|221343.987|108.006 +639295.711|221348.647|108.287 +639290.670|221353.350|108.637 +639270.663|221372.022|110.054 +639265.628|221376.716|110.027 +639260.595|221381.404|109.649 +639245.553|221395.465|112.398 +639240.475|221400.201|112.584 +639225.382|221414.268|112.383 +639220.353|221418.959|112.538 +639215.326|221423.649|112.795 +639200.187|221437.765|112.871 +639195.106|221442.498|112.770 +639190.077|221447.189|112.877 +639185.051|221451.880|113.133 +639169.896|221466.026|114.636 +639164.824|221470.759|114.925 +639149.703|221484.887|117.174 +639139.654|221494.281|118.900 +639134.600|221498.999|119.573 +639129.525|221503.733|119.610 +639124.502|221508.411|119.689 +639114.306|221517.903|118.708 +639109.283|221522.591|118.961 +639094.144|221536.721|120.241 +639079.087|221550.800|123.115 +639074.009|221555.531|123.231 +639068.937|221560.264|123.417 +639063.908|221564.952|123.563 +639058.836|221569.682|123.795 +639053.764|221574.416|124.033 +639033.705|221593.128|125.788 +639028.621|221597.864|125.901 +639023.595|221602.549|126.200 +639018.556|221607.246|126.297 +639008.501|221616.616|126.928 +639003.456|221621.316|126.995 +638998.369|221626.058|127.163 +638993.374|221630.713|127.282 +638988.317|221635.419|127.279 +638983.257|221640.131|127.230 +638978.234|221644.810|127.047 +638973.153|221649.537|126.788 +638968.115|221654.225|126.504 +638963.083|221658.910|126.309 +638957.983|221663.653|125.941 +638952.908|221668.371|125.279 +638947.858|221673.071|124.977 +638942.755|221677.811|124.109 +638937.781|221682.443|124.203 +638932.718|221687.156|123.850 +638927.610|221691.901|123.036 +638922.590|221696.571|122.713 +638917.542|221701.271|122.646 +638912.522|221705.944|122.371 +638907.499|221710.616|122.121 +638902.482|221715.286|121.942 +638897.505|221719.919|121.692 +638892.402|221724.661|121.216 +638887.428|221729.294|121.067 +638882.429|221733.949|121.186 +638877.415|221738.612|120.713 +638872.410|221743.276|120.808 +638867.461|221747.887|121.000 +638857.521|221757.144|121.039 +638847.719|221766.294|122.399 +638842.799|221770.881|122.929 +638837.910|221775.438|123.338 +638833.012|221780.010|124.060 +638828.208|221784.500|125.200 +638813.526|221798.188|126.367 +638803.669|221807.372|126.642 +638798.694|221811.999|126.474 +638793.802|221816.559|126.556 +638788.868|221821.158|126.730 +638783.991|221825.700|126.998 +638779.114|221830.244|127.276 +638774.204|221834.819|127.315 +638769.293|221839.394|127.364 +638754.672|221853.013|127.782 +638739.862|221866.799|127.358 +638734.976|221871.344|127.059 +638730.026|221875.952|127.010 +638725.131|221880.506|126.696 +638715.353|221889.613|126.901 +638710.494|221894.137|126.901 +638705.669|221898.632|127.163 +638700.786|221903.183|127.358 +638695.891|221907.740|127.178 +638686.180|221916.780|127.111 +638676.287|221925.982|126.276 +638671.422|221930.505|126.111 +638666.536|221935.050|125.837 +638661.680|221939.573|126.078 +638656.990|221943.947|126.739 +638642.323|221957.587|125.843 +638637.382|221962.180|125.380 +638632.569|221966.658|125.413 +638573.459|222021.559|117.101 +638568.594|222026.079|116.632 +638563.681|222030.645|116.208 +638558.969|222035.034|116.342 +638554.211|222039.459|116.245 +638549.410|222043.928|116.214 +638544.640|222048.363|116.117 +638539.843|222052.825|115.882 +638535.152|222057.196|116.217 +638530.089|222061.884|114.428 +638525.176|222066.443|113.703 +638510.929|222079.696|113.102 +638496.408|222093.181|111.130 +638491.745|222097.521|111.304 +638487.133|222101.822|111.728 +638454.072|222132.552|109.219 +638449.301|222136.983|108.607 +638444.702|222141.260|108.567 +638440.078|222145.564|108.661 +638435.345|222149.962|108.043 +638430.693|222154.287|107.826 +638425.999|222158.649|107.204 +638421.330|222162.983|106.732 +638412.009|222171.645|105.912 +638407.343|222175.983|105.519 +638402.722|222180.277|105.114 +638379.612|222201.751|102.949 +638375.031|222206.006|102.632 +638370.572|222210.157|102.611 +638329.475|222248.330|97.942 +638324.827|222252.637|96.963 +638320.237|222256.898|96.006 +638302.467|222273.415|94.753 +638298.130|222277.451|94.689 +638289.610|222285.382|95.006 +638272.706|222301.125|95.893 +638308.435|222264.805|93.769 +638326.875|222247.635|97.301 +638336.367|222238.808|99.780 +638345.486|222230.307|100.865 +638368.301|222209.029|102.742 +638377.317|222200.614|102.828 +638381.901|222196.340|103.215 +638391.344|222187.544|104.793 +638400.549|222178.951|105.010 +638405.160|222174.651|105.409 +638409.836|222170.292|105.885 +638414.484|222165.958|106.269 +638419.193|222161.566|106.711 +638423.881|222157.195|107.076 +638428.587|222152.809|107.552 +638433.266|222148.444|107.930 +638438.006|222144.024|108.384 +638442.745|222139.608|108.844 +638447.415|222135.249|109.027 +638456.912|222126.401|110.152 +638480.571|222104.345|111.578 +638490.059|222095.500|112.285 +638494.689|222091.172|111.752 +638499.353|222086.819|111.648 +638523.414|222064.392|113.343 +638528.321|222059.820|114.093 +638533.500|222055.020|116.245 +638538.160|222050.664|115.791 +638542.991|222046.162|115.967 +638547.752|222041.721|116.068 +638552.522|222037.268|115.986 +638557.295|222032.812|115.931 +638562.136|222028.298|115.980 +638567.052|222023.720|116.733 +638572.118|222019.013|118.049 +638626.595|221968.292|125.724 +638631.447|221963.765|125.660 +638636.266|221959.263|125.438 +638656.011|221940.863|126.922 +638660.812|221936.376|126.379 +638665.625|221931.880|125.922 +638670.526|221927.305|126.044 +638675.488|221922.681|126.245 +638685.443|221913.406|127.273 +638695.260|221904.247|127.184 +638700.198|221899.641|127.373 +638705.072|221895.091|127.163 +638709.979|221890.513|127.190 +638719.779|221881.366|126.885 +638724.802|221876.681|127.099 +638729.715|221872.100|127.257 +638734.699|221867.451|127.257 +638739.615|221862.864|127.507 +638754.541|221848.944|127.888 +638764.441|221839.705|127.660 +638769.376|221835.100|127.443 +638774.338|221830.470|127.486 +638779.282|221825.852|127.013 +638784.207|221821.253|126.809 +638789.185|221816.605|126.645 +638794.141|221811.984|126.706 +638799.167|221807.296|126.986 +638814.047|221793.406|126.312 +638833.759|221774.984|123.709 +638838.672|221770.394|123.161 +638843.649|221765.745|122.783 +638853.531|221756.510|121.366 +638858.539|221751.837|121.265 +638868.567|221742.480|120.850 +638873.627|221737.762|120.860 +638878.592|221733.129|120.917 +638883.661|221728.407|121.049 +638888.754|221723.665|121.463 +638893.762|221718.992|121.564 +638898.821|221714.277|121.701 +638903.918|221709.531|122.240 +638908.977|221704.816|122.460 +638914.083|221700.058|122.670 +638919.085|221695.398|122.810 +638924.153|221690.673|123.225 +638929.247|221685.927|123.380 +638939.354|221676.509|124.020 +638944.474|221671.745|124.578 +638949.565|221667.008|125.404 +638954.673|221662.253|125.944 +638959.748|221657.520|126.120 +638964.847|221652.771|126.605 +638969.919|221648.047|126.776 +638974.948|221643.359|127.056 +638980.060|221638.595|127.193 +638985.120|221633.880|127.324 +638990.118|221629.216|127.297 +638995.209|221624.470|127.218 +639000.238|221619.773|127.010 +639005.282|221615.073|126.971 +639010.311|221610.376|126.812 +639015.371|221605.655|126.349 +639020.364|221600.998|126.340 +639025.426|221596.273|125.971 +639030.453|221591.582|125.773 +639035.470|221586.898|125.483 +639040.557|221582.155|125.529 +639050.597|221572.776|124.228 +639055.614|221568.091|123.935 +639060.686|221563.361|123.789 +639065.709|221558.673|123.639 +639070.781|221553.943|123.475 +639075.840|221549.221|123.130 +639095.924|221530.455|120.427 +639106.019|221521.021|119.098 +639111.033|221516.339|118.802 +639116.126|221511.597|119.217 +639121.219|221506.854|119.710 +639126.239|221502.175|119.717 +639141.403|221488.011|118.159 +639161.553|221469.178|114.968 +639196.837|221436.247|112.877 +639201.866|221431.556|112.993 +639216.991|221417.450|112.865 +639222.062|221412.719|112.593 +639227.086|221408.028|112.386 +639242.118|221394.011|112.301 +639247.145|221389.329|112.798 +639262.174|221375.268|109.765 +639267.207|221370.581|109.963 +639292.182|221347.266|108.390 +639297.171|221342.606|107.991 +639302.112|221337.997|107.823 +639331.946|221310.145|105.638 +639336.878|221305.521|103.940 +639351.743|221291.622|101.334 +639366.398|221278.019|105.671 +639371.244|221273.505|106.065 +639381.013|221264.416|107.381 +639385.865|221259.889|107.494 +639390.773|221255.314|107.464 +639400.502|221246.237|107.177 +639405.348|221241.723|107.549 +639414.998|221232.732|108.210 +639419.878|221228.178|107.829 +639424.694|221223.685|107.851 +639439.084|221210.301|110.304 +639448.645|221201.395|110.926 +639458.179|221192.522|112.097 +639467.723|221183.634|113.057 +639477.263|221174.740|113.270 +639482.039|221170.290|113.328 +639486.785|221165.858|113.072 +639491.570|221161.396|112.999 +639501.144|221152.456|112.167 +639505.875|221148.037|111.563 +639510.645|221143.583|111.133 +639515.421|221139.124|110.664 +639520.173|221134.692|110.609 +639524.876|221130.303|110.542 +639529.570|221125.929|110.658 +639534.300|221121.522|110.938 +639538.976|221117.169|111.356 +639543.667|221112.796|111.539 +639548.348|221108.437|111.880 +639557.706|221099.713|112.060 +639562.378|221095.355|111.975 +639567.011|221091.039|112.377 +639571.654|221086.711|112.694 +639576.335|221082.349|113.099 +639585.565|221073.738|113.304 +639590.170|221069.453|114.081 +639599.427|221060.821|114.578 +639603.947|221056.612|115.254 +639608.577|221052.296|115.294 +639613.183|221048.001|115.599 +639617.813|221043.682|115.644 +639622.433|221039.372|115.803 +639627.018|221035.096|115.900 +639631.568|221030.856|116.324 +639640.724|221022.315|116.659 +639645.318|221018.033|116.723 +639649.871|221013.781|116.702 +639672.728|220992.460|117.071 +639677.285|220988.205|116.726 +639681.848|220983.947|116.766 +639690.956|220975.446|116.672 +639695.488|220971.216|116.629 +639700.048|220966.958|116.379 +639704.626|220962.684|116.022 +639709.189|220958.423|115.797 +639713.745|220954.168|115.647 +639718.272|220949.941|115.367 +639722.813|220945.698|114.998 +639727.330|220941.482|114.855 +639731.857|220937.255|114.651 +639736.368|220933.045|114.608 +639740.894|220928.821|114.447 +639745.393|220924.621|114.169 +639749.895|220920.415|113.870 +639754.397|220916.211|113.617 +639758.957|220911.953|113.307 +639763.556|220907.643|112.008 +639768.030|220903.468|112.029 +639772.487|220899.310|111.850 +639776.949|220895.147|111.990 +639785.864|220886.816|111.347 +639790.314|220882.665|111.298 +639799.251|220874.320|110.670 +639803.765|220870.095|109.890 +639808.221|220865.931|109.554 +639834.937|220840.965|106.552 +639856.996|220820.348|103.897 +639870.053|220808.150|102.949 +639874.418|220804.072|102.319 +639883.032|220796.025|101.803 +639895.836|220784.071|101.264 +639904.289|220776.177|101.020 +639908.772|220771.967|99.292 +639912.847|220768.167|99.648 +639916.910|220764.381|100.100 +639921.059|220760.507|100.081 +639925.079|220756.764|100.795 +639929.087|220753.027|101.294 +639933.107|220749.278|101.733 +639937.177|220745.483|101.931 +639941.200|220741.725|102.096 +639945.217|220737.976|102.319 +639949.256|220734.209|102.447 +639953.203|220730.530|102.800 +639957.171|220726.827|103.047 +639961.186|220723.077|103.065 +639965.093|220719.435|103.401 +639969.025|220715.765|103.611 +639972.920|220712.132|104.016 +639976.916|220708.398|103.925 +639984.561|220701.272|104.778 +639988.414|220697.675|104.940 +639992.190|220694.158|105.498 +639996.009|220690.592|105.580 +639999.798|220687.059|105.851 +640003.596|220683.520|106.327 +640014.760|220673.108|107.427 +640018.494|220669.622|107.503 +640022.240|220666.122|107.528 +640025.974|220662.639|107.631 +640033.411|220655.689|107.515 +640040.739|220648.846|107.491 +640044.445|220645.387|107.531 +640048.090|220641.979|107.396 +640055.421|220635.124|106.726 +639910.720|220767.706|99.319 +639906.568|220771.571|99.627 +639898.107|220779.466|101.252 +639893.977|220783.312|101.508 +639889.829|220787.168|101.584 +639881.422|220794.998|102.169 +639877.262|220798.866|102.081 +639873.022|220802.816|102.501 +639855.908|220818.760|104.403 +639851.582|220822.793|104.848 +639847.263|220826.816|105.275 +639834.245|220838.941|106.449 +639816.652|220855.340|108.820 +639812.199|220859.491|109.356 +639803.375|220867.705|109.945 +639785.547|220884.308|111.271 +639781.116|220888.432|111.487 +639776.678|220892.565|111.773 +639772.246|220896.686|111.691 +639767.720|220900.898|111.929 +639763.276|220905.031|111.962 +639758.652|220909.344|112.990 +639754.104|220913.581|113.486 +639749.547|220917.821|113.718 +639745.027|220922.030|114.056 +639740.455|220926.285|114.437 +639735.874|220930.546|114.547 +639731.351|220934.755|114.611 +639726.782|220939.004|114.681 +639722.192|220943.275|114.919 +639717.586|220947.563|115.321 +639713.014|220951.818|115.483 +639708.332|220956.174|115.751 +639703.708|220960.478|115.983 +639699.082|220964.784|116.275 +639694.406|220969.137|116.580 +639689.809|220973.413|116.669 +639680.492|220982.076|116.693 +639675.868|220986.373|116.647 +639671.174|220990.741|116.818 +639666.462|220995.130|117.202 +639657.129|221003.799|116.705 +639652.429|221008.176|117.031 +639647.747|221012.525|116.772 +639643.044|221016.896|116.714 +639638.304|221021.304|116.571 +639633.604|221025.671|116.525 +639628.926|221030.018|116.284 +639624.219|221034.392|115.873 +639619.486|221038.787|115.727 +639614.758|221043.185|115.571 +639610.016|221047.593|115.550 +639605.264|221052.006|115.181 +639595.806|221060.790|114.453 +639586.284|221069.636|113.953 +639581.514|221074.065|113.310 +639576.753|221078.487|113.108 +639567.142|221087.415|112.633 +639552.725|221100.817|112.157 +639547.931|221105.267|111.856 +639543.078|221109.778|111.737 +639538.314|221114.198|111.078 +639533.471|221118.700|110.853 +639528.622|221123.208|110.761 +639523.772|221127.716|110.661 +639518.868|221132.275|110.679 +639514.061|221136.747|110.725 +639509.121|221141.349|111.328 +639504.256|221145.876|111.597 +639499.324|221150.469|112.182 +639484.645|221164.133|113.145 +639479.756|221168.681|113.206 +639474.864|221173.228|113.316 +639469.993|221177.758|113.133 +639465.065|221182.339|113.124 +639455.348|221191.364|112.368 +639450.535|221195.820|111.051 +639445.615|221200.392|110.944 +639435.798|221209.512|110.289 +639421.128|221223.121|108.058 +639416.233|221227.681|108.573 +639401.468|221241.394|107.451 +639396.509|221246.006|107.290 +639391.580|221250.593|107.570 +639386.618|221255.211|107.589 +639381.705|221259.776|107.479 +639376.758|221264.373|107.043 +639371.817|221268.957|106.275 +639366.916|221273.511|105.897 +639352.115|221287.196|100.441 +639342.139|221296.508|102.648 +639332.199|221305.765|103.477 +639322.177|221315.134|106.900 +639302.310|221333.624|107.713 +639282.358|221352.201|109.280 +639262.382|221370.788|109.753 +639242.426|221389.390|112.700 +639227.360|221403.399|112.371 +639222.373|221408.038|112.633 +639217.341|221412.722|112.926 +639212.358|221417.364|113.203 +639202.281|221426.731|113.084 +639197.291|221431.373|112.980 +639187.175|221440.785|113.392 +639157.030|221468.839|114.770 +639137.011|221487.517|118.766 +639121.899|221501.584|119.820 +639116.854|221506.272|119.610 +639111.789|221510.975|118.830 +639106.702|221515.705|118.842 +639101.694|221520.375|119.585 +639091.608|221529.766|120.488 +639076.569|221543.790|123.167 +639066.526|221553.141|123.847 +639061.445|221557.868|124.005 +639056.364|221562.596|124.151 +639051.328|221567.281|124.295 +639046.302|221571.959|124.630 +639041.258|221576.662|125.425 +639036.198|221581.366|125.197 +639031.187|221586.035|125.788 +639026.143|221590.729|125.825 +639021.104|221595.420|125.995 +639016.039|221600.138|126.456 +639010.997|221604.832|126.602 +639006.017|221609.471|126.946 +639000.920|221614.211|127.026 +638995.870|221618.911|127.071 +638990.829|221623.605|127.279 +638985.775|221628.308|127.346 +638980.758|221632.971|127.294 +638975.686|221637.690|127.163 +638970.611|221642.408|127.004 +638965.570|221647.093|126.718 +638960.492|221651.817|126.568 +638955.392|221656.554|126.239 +638950.314|221661.269|125.602 +638940.140|221670.724|124.795 +638935.056|221675.445|124.215 +638929.969|221680.176|124.167 +638914.699|221694.367|123.060 +638909.685|221699.028|122.871 +638904.610|221703.746|122.591 +638899.507|221708.486|122.057 +638894.463|221713.173|121.658 +638889.391|221717.889|121.521 +638884.365|221722.561|121.375 +638879.332|221727.240|121.177 +638874.251|221731.964|121.027 +638869.277|221736.591|120.988 +638864.211|221741.304|121.009 +638844.369|221759.777|122.100 +638839.455|221764.365|123.139 +638834.615|221768.879|123.981 +638829.644|221773.509|124.538 +638824.782|221778.041|125.194 +638819.872|221782.619|125.861 +638814.852|221787.286|125.633 +638800.161|221800.971|126.895 +638790.236|221810.204|127.175 +638785.259|221814.834|127.026 +638780.327|221819.418|126.892 +638775.392|221824.011|127.123 +638770.464|221828.601|127.425 +638765.578|221833.149|127.702 +638760.658|221837.727|127.730 +638755.775|221842.275|128.056 +638750.798|221846.905|128.065 +638731.050|221865.263|127.416 +638726.201|221869.774|127.428 +638721.242|221874.386|127.361 +638711.448|221883.490|127.175 +638701.710|221892.555|127.413 +638696.885|221897.044|127.711 +638691.935|221901.644|127.196 +638687.080|221906.161|127.334 +638672.309|221919.886|126.242 +638667.426|221924.422|125.986 +638662.619|221928.899|126.221 +638657.886|221933.310|126.937 +638653.015|221937.839|126.815 +638633.480|221955.996|125.675 +638618.981|221969.480|125.227 +638613.897|221974.193|124.075 +638608.974|221978.761|123.313 +638604.110|221983.279|122.914 +638599.187|221987.848|122.207 +638584.456|222001.524|120.207 +638579.649|222005.995|120.259 +638564.973|222019.620|118.366 +638559.914|222024.302|116.644 +638555.067|222028.804|116.077 +638550.212|222033.315|115.754 +638545.475|222037.722|115.812 +638540.729|222042.136|115.852 +638535.978|222046.558|115.867 +638531.387|222050.835|116.480 +638526.291|222055.547|114.547 +638521.387|222060.098|113.605 +638516.568|222064.575|113.136 +638511.755|222069.043|112.731 +638507.244|222073.256|113.822 +638502.407|222077.742|113.078 +638497.792|222082.043|113.438 +638459.866|222117.287|111.304 +638440.895|222134.905|109.332 +638436.107|222139.352|108.686 +638431.428|222143.698|108.338 +638426.734|222148.060|107.942 +638422.037|222152.425|107.549 +638412.668|222161.127|106.726 +638408.019|222165.443|106.403 +638403.322|222169.807|105.872 +638394.011|222178.455|105.043 +638389.396|222182.740|104.723 +638384.723|222187.081|104.175 +638380.066|222191.406|103.715 +638375.473|222195.673|103.330 +638370.895|222199.928|103.248 +638366.399|222204.110|103.312 +638343.414|222225.458|100.959 +638334.184|222234.020|99.746 +638315.198|222251.607|94.446 +638301.988|222263.887|94.412 +638297.666|222267.904|94.412 +638293.338|222271.931|94.607 +638289.037|222275.933|94.708 +638276.272|222287.811|95.646 +638272.069|222291.725|95.970 +638267.991|222295.526|96.582 +638305.734|222257.450|93.424 +638310.370|222253.143|94.314 +638314.878|222248.949|94.711 +638319.773|222244.417|96.671 +638329.067|222235.785|98.487 +638338.436|222227.083|100.289 +638343.030|222222.809|100.971 +638366.091|222201.360|103.593 +638379.719|222188.669|103.949 +638384.422|222184.292|104.422 +638389.064|222179.976|104.867 +638393.733|222175.629|105.242 +638403.078|222166.939|106.302 +638421.860|222149.459|107.753 +638426.548|222145.097|108.137 +638431.279|222140.696|108.512 +638436.012|222136.295|108.905 +638445.595|222127.385|110.320 +638450.423|222122.893|111.008 +638455.257|222118.394|111.746 +638459.869|222114.090|111.481 +638474.118|222100.816|112.246 +638502.812|222074.088|113.883 +638507.412|222069.790|113.258 +638512.267|222065.270|113.657 +638521.966|222056.239|114.480 +638527.129|222051.453|116.251 +638531.899|222047.003|116.342 +638536.557|222042.657|115.861 +638541.388|222038.152|115.772 +638546.164|222033.696|115.693 +638551.013|222029.182|115.998 +638555.976|222024.564|116.678 +638561.154|222019.760|118.528 +638575.907|222006.032|120.110 +638590.741|221992.225|121.570 +638595.703|221987.607|122.216 +638600.672|221982.980|122.658 +638605.606|221978.390|123.200 +638610.565|221973.778|123.914 +638615.662|221969.044|125.172 +638625.488|221959.891|125.663 +638630.420|221955.295|125.776 +638635.382|221950.677|126.370 +638655.118|221932.292|127.205 +638664.841|221923.212|126.270 +638669.709|221918.673|126.172 +638674.671|221914.052|126.361 +638679.740|221909.337|127.288 +638684.726|221904.695|127.708 +638689.643|221900.114|127.705 +638694.602|221895.490|127.666 +638704.468|221886.288|127.355 +638714.344|221877.080|127.172 +638719.327|221872.438|127.416 +638724.271|221867.829|127.422 +638729.304|221863.141|127.730 +638734.321|221858.469|127.952 +638754.203|221839.937|128.147 +638759.195|221835.283|127.967 +638764.115|221830.692|127.611 +638769.040|221826.096|127.330 +638774.027|221821.445|127.169 +638779.032|221816.781|127.160 +638783.994|221812.157|127.224 +638798.944|221798.216|126.898 +638813.867|221784.296|126.130 +638828.797|221770.357|124.764 +638833.692|221765.782|124.072 +638838.599|221761.192|123.036 +638843.521|221756.592|122.149 +638858.527|221742.590|121.219 +638863.580|221737.878|121.128 +638868.591|221733.205|121.113 +638873.624|221728.517|121.329 +638878.705|221723.784|121.591 +638883.773|221719.062|121.734 +638888.845|221714.338|121.945 +638893.887|221709.635|121.887 +638898.968|221704.904|122.262 +638924.379|221681.243|124.139 +638929.417|221676.546|124.270 +638934.544|221671.779|124.828 +638939.592|221667.075|125.105 +638944.645|221662.369|125.474 +638949.757|221657.611|126.029 +638954.801|221652.914|126.361 +638959.885|221648.181|126.614 +638964.966|221643.447|126.904 +638969.995|221638.763|127.135 +638975.064|221634.041|127.297 +638980.124|221629.326|127.394 +638985.174|221624.617|127.388 +638990.216|221619.914|127.269 +638995.248|221615.220|127.059 +639000.296|221610.517|127.041 +639005.334|221605.817|126.965 +639010.345|221601.138|126.468 +639015.386|221596.441|126.434 +639020.452|221591.713|126.081 +639025.478|221587.023|125.852 +639030.507|221582.335|125.694 +639035.573|221577.607|125.361 +639040.545|221572.968|125.057 +639045.607|221568.244|124.709 +639050.676|221563.516|124.420 +639060.735|221554.138|124.249 +639065.749|221549.456|123.923 +639085.753|221530.759|120.411 +639090.831|221526.026|120.405 +639100.855|221516.669|119.558 +639105.909|221511.950|118.988 +639110.990|221507.217|119.012 +639115.995|221502.556|119.622 +639121.076|221497.826|119.957 +639136.164|221483.744|118.814 +639156.223|221465.002|115.538 +639171.338|221450.902|114.898 +639181.420|221441.489|113.843 +639186.443|221436.805|113.587 +639191.464|221432.117|113.154 +639196.490|221427.435|113.017 +639201.525|221422.750|113.191 +639211.583|221413.384|113.300 +639216.558|221408.745|112.959 +639221.587|221404.060|112.740 +639226.610|221399.375|112.371 +639236.623|221390.054|112.529 +639241.655|221385.373|112.962 +639246.636|221380.737|113.063 +639261.629|221366.725|109.707 +639281.624|221348.099|109.326 +639286.613|221343.444|108.838 +639296.553|221334.175|107.845 +639301.548|221329.518|107.515 +639306.541|221324.867|107.345 +639351.274|221283.115|100.755 +639365.959|221269.515|105.988 +639370.900|221264.922|106.467 +639375.792|221260.368|106.909 +639380.681|221255.823|107.488 +639385.582|221251.266|107.729 +639390.504|221246.676|107.372 +639395.406|221242.113|107.561 +639400.252|221237.608|108.055 +639405.147|221233.055|108.451 +639414.922|221223.956|108.536 +639419.793|221219.415|108.390 +639434.316|221205.918|110.179 +639439.102|221201.471|110.932 +639443.970|221196.939|110.963 +639448.801|221192.437|110.795 +639458.387|221183.540|112.898 +639463.151|221179.108|113.127 +639468.018|221174.579|113.267 +639477.623|221165.636|113.334 +639482.448|221161.140|113.374 +639496.923|221147.646|112.252 +639501.705|221143.184|111.661 +639506.515|221138.701|111.377 +639511.312|221134.232|111.331 +639516.088|221129.779|110.902 +639520.886|221125.311|110.896 +639525.632|221120.894|111.002 +639530.393|221116.459|110.908 +639535.090|221112.088|111.045 +639539.826|221107.681|111.322 +639544.569|221103.267|111.539 +639549.260|221098.903|111.804 +639553.945|221094.544|112.161 +639558.632|221090.185|112.493 +639568.023|221081.456|113.075 +639572.672|221077.137|113.364 +639577.356|221072.778|113.258 +639595.885|221055.560|114.834 +639600.549|221051.223|115.029 +639605.182|221046.925|115.617 +639614.451|221038.302|115.696 +639619.026|221034.047|115.900 +639623.662|221029.737|115.983 +639628.267|221025.458|116.403 +639651.161|221004.171|117.129 +639655.715|220999.934|117.211 +639660.329|220995.642|117.193 +639664.916|220991.372|117.001 +639674.036|220982.883|116.739 +639687.658|220970.213|116.827 +639692.163|220966.022|116.662 +639696.695|220961.797|116.266 +639701.267|220957.539|115.964 +639705.775|220953.345|115.830 +639710.307|220949.124|115.535 +639714.788|220944.951|115.260 +639719.320|220940.733|115.004 +639723.798|220936.566|114.837 +639728.266|220932.408|114.748 +639737.212|220924.081|114.556 +639755.107|220907.415|113.304 +639759.655|220903.172|112.414 +639764.092|220899.039|112.011 +639777.312|220886.737|111.618 +639799.361|220866.206|110.256 +639816.951|220849.814|108.360 +639830.076|220837.579|106.442 +639847.407|220821.437|105.028 +639851.677|220817.456|104.559 +639864.573|220805.441|103.120 +639868.892|220801.411|102.450 +639881.508|220789.673|102.084 +639889.993|220781.767|101.270 +639894.130|220777.923|101.532 +639898.302|220774.037|101.011 +639902.679|220769.941|99.600 +639914.911|220758.578|100.459 +639918.922|220754.850|100.941 +639922.967|220751.089|100.971 +639926.947|220747.398|101.663 +639930.925|220743.703|102.084 +639934.927|220739.985|102.395 +639938.905|220736.288|102.565 +639942.876|220732.596|102.779 +639946.845|220728.908|103.035 +639950.819|220725.214|103.254 +639954.757|220721.553|103.425 +639958.702|220717.887|103.571 +639962.633|220714.232|103.788 +639966.520|220710.620|103.992 +639974.405|220703.281|103.852 +639978.154|220699.809|104.815 +639981.985|220696.249|105.089 +639989.596|220689.178|105.677 +639993.449|220685.596|105.882 +639997.201|220682.112|106.345 +640004.748|220675.105|107.083 +640012.182|220668.198|107.668 +640015.894|220664.748|107.863 +640023.402|220657.768|108.146 +640027.157|220654.278|108.180 +640030.918|220650.773|107.936 +640034.646|220647.304|107.872 +640038.346|220643.866|107.960 +640045.795|220636.932|107.680 +640049.456|220633.524|107.497 +640053.062|220630.171|107.598 +639915.584|220755.886|100.840 +639903.554|220767.030|98.957 +639899.250|220771.041|99.859 +639894.824|220775.177|101.517 +639882.276|220786.833|101.739 +639865.314|220802.600|102.681 +639861.031|220806.584|103.087 +639848.050|220818.660|104.614 +639843.734|220822.674|104.992 +639826.388|220838.804|106.351 +639804.277|220859.384|109.707 +639799.864|220863.490|110.006 +639795.459|220867.586|110.271 +639777.741|220884.055|111.530 +639773.343|220888.142|111.517 +639768.924|220892.248|111.661 +639764.455|220896.399|111.834 +639760.020|220900.517|111.783 +639755.421|220904.806|112.974 +639750.913|220908.997|113.511 +639741.827|220917.443|114.099 +639737.371|220921.585|114.328 +639732.884|220925.752|114.434 +639719.281|220938.392|114.888 +639714.700|220942.644|115.047 +639710.164|220946.859|115.273 +639705.571|220951.132|115.623 +639701.005|220955.372|115.739 +639691.785|220963.943|116.412 +639687.213|220968.192|116.662 +639678.026|220976.723|116.760 +639673.408|220981.012|116.656 +639668.787|220985.304|117.001 +639664.145|220989.620|117.159 +639659.555|220993.875|116.842 +639654.925|220998.175|116.906 +639650.262|221002.503|116.851 +639636.302|221015.464|116.568 +639631.635|221019.798|116.638 +639626.966|221024.129|116.281 +639622.278|221028.475|116.099 +639617.645|221032.776|115.894 +639612.920|221037.159|115.650 +639575.156|221072.193|113.425 +639570.343|221076.658|113.249 +639565.640|221081.020|112.935 +639560.842|221085.470|112.581 +639556.097|221089.875|112.252 +639551.244|221094.373|112.008 +639546.498|221098.778|111.688 +639541.652|221103.271|111.411 +639536.900|221107.681|111.210 +639532.033|221112.201|111.252 +639527.232|221116.657|111.103 +639522.379|221121.162|110.990 +639517.521|221125.670|110.981 +639512.669|221130.175|110.929 +639507.783|221134.720|111.386 +639502.878|221139.277|111.493 +639498.002|221143.809|111.892 +639493.079|221148.387|112.310 +639478.342|221162.082|113.316 +639473.514|221166.565|113.139 +639463.687|221175.688|113.255 +639458.765|221180.257|113.087 +639448.993|221189.307|111.402 +639444.088|221193.854|110.932 +639439.160|221198.429|110.899 +639424.365|221212.161|110.274 +639419.439|221216.717|109.192 +639414.541|221221.253|108.533 +639409.567|221225.870|108.570 +639404.650|221230.433|108.390 +639394.686|221239.672|107.732 +639389.724|221244.274|107.537 +639384.753|221248.892|107.643 +639379.794|221253.491|107.372 +639374.789|221258.131|107.028 +639369.839|221262.718|106.552 +639350.009|221281.052|101.441 +639344.986|221285.715|101.672 +639334.924|221295.072|103.062 +639299.799|221327.738|107.415 +639294.745|221332.432|107.720 +639289.740|221337.086|108.146 +639284.687|221341.786|108.933 +639264.591|221360.455|110.057 +639259.593|221365.091|109.881 +639244.517|221379.124|112.852 +639224.400|221397.793|112.514 +639219.411|221402.429|112.883 +639204.296|221416.465|113.313 +639199.251|221421.144|113.230 +639194.216|221425.820|113.508 +639189.174|221430.501|113.477 +639184.139|221435.177|113.831 +639169.042|221449.207|115.017 +639153.927|221463.240|115.306 +639143.997|221472.506|118.759 +639133.896|221481.891|119.528 +639128.912|221486.518|119.683 +639123.825|221491.239|119.729 +639118.842|221495.869|119.918 +639113.797|221500.548|119.649 +639108.686|221505.281|119.128 +639103.690|221509.917|119.101 +639098.676|221514.581|119.781 +639093.665|221519.241|120.549 +639083.576|221528.605|120.527 +639068.638|221542.513|123.542 +639063.618|221547.179|124.002 +639058.589|221551.852|124.298 +639053.550|221556.527|124.481 +639048.567|221561.157|124.767 +639043.522|221565.839|124.813 +639038.490|221570.515|125.102 +639033.461|221575.184|125.462 +639028.429|221579.863|125.742 +639023.387|221584.545|125.907 +639013.369|221593.853|126.541 +639008.309|221598.550|126.486 +639003.331|221603.177|126.946 +638998.278|221607.871|127.001 +638993.227|221612.562|127.114 +638988.226|221617.207|127.266 +638983.169|221621.901|127.379 +638978.109|221626.601|127.398 +638973.089|221631.258|127.394 +638968.011|221635.971|127.266 +638962.970|221640.646|126.995 +638957.941|221645.316|126.943 +638952.835|221650.049|126.565 +638947.818|221654.697|126.148 +638942.749|221659.398|125.672 +638927.534|221673.504|124.474 +638922.465|221678.207|124.145 +638917.411|221682.895|124.063 +638912.306|221687.625|123.426 +638897.139|221701.689|122.301 +638892.113|221706.352|122.128 +638887.056|221711.046|122.167 +638882.012|221715.722|121.878 +638876.973|221720.397|121.661 +638871.917|221725.088|121.298 +638866.884|221729.755|121.219 +638861.809|221734.467|121.180 +638856.826|221739.091|121.161 +638841.848|221753.005|121.789 +638836.904|221757.607|122.591 +638832.040|221762.137|123.685 +638827.184|221766.660|124.840 +638822.286|221771.220|125.639 +638817.336|221775.819|126.008 +638812.371|221780.431|126.273 +638807.384|221785.061|126.367 +638802.419|221789.672|126.663 +638797.500|221794.244|126.956 +638782.647|221808.034|127.178 +638777.712|221812.618|127.419 +638772.750|221817.226|127.458 +638767.775|221821.841|127.443 +638762.859|221826.407|127.507 +638757.897|221831.012|127.626 +638753.029|221835.539|128.099 +638748.119|221840.096|128.288 +638743.193|221844.671|128.364 +638738.240|221849.267|128.263 +638723.412|221863.020|127.675 +638718.443|221867.631|127.568 +638713.527|221872.194|127.516 +638708.623|221876.745|127.574 +638698.823|221885.846|127.794 +638693.956|221890.363|127.818 +638689.049|221894.920|127.925 +638684.224|221899.401|127.958 +638679.219|221904.037|127.492 +638674.205|221908.676|126.373 +638669.243|221913.278|126.245 +638664.421|221917.756|126.379 +638659.690|221922.157|127.108 +638654.835|221926.671|127.370 +638630.451|221949.303|126.309 +638625.549|221953.847|125.858 +638610.806|221967.520|124.420 +638605.893|221972.071|123.728 +638600.928|221976.677|123.039 +638591.064|221985.815|121.594 +638586.181|221990.344|121.183 +638581.311|221994.858|120.607 +638576.352|221999.454|119.829 +638566.854|222008.278|120.113 +638551.989|222022.046|117.418 +638547.048|222026.621|116.388 +638542.104|222031.202|115.644 +638537.343|222035.622|115.614 +638532.622|222040.011|115.809 +638527.992|222044.315|116.233 +638523.274|222048.701|116.467 +638513.343|222057.888|114.041 +638508.616|222062.280|114.059 +638470.772|222097.405|112.837 +638466.047|222101.788|112.569 +638447.134|222119.336|111.167 +638442.288|222123.822|110.466 +638437.536|222128.227|109.734 +638432.821|222132.597|109.207 +638418.727|222145.670|108.223 +638399.960|222163.081|106.796 +638390.609|222171.749|105.802 +638385.918|222176.096|105.168 +638376.661|222184.685|104.708 +638372.007|222188.998|104.071 +638367.402|222193.271|103.882 +638339.732|222218.926|101.090 +638335.059|222223.251|100.145 +638330.374|222227.592|99.374 +638325.659|222231.956|98.304 +638311.440|222245.108|94.756 +638306.954|222249.272|94.479 +638293.765|222261.522|94.610 +638289.333|222265.637|94.415 +638272.298|222281.480|95.817 +638263.815|222289.366|96.219 +638292.024|222260.303|94.607 +638300.647|222252.265|93.958 +638305.173|222248.056|94.388 +638309.663|222243.877|94.714 +638314.479|222239.418|96.332 +638323.779|222230.783|97.929 +638328.570|222226.345|99.322 +638333.200|222222.044|100.115 +638337.808|222217.762|100.837 +638370.151|222187.702|104.278 +638379.374|222179.122|104.833 +638384.001|222174.818|105.205 +638388.710|222170.445|105.726 +638398.162|222161.660|107.000 +638402.877|222157.280|107.622 +638421.613|222139.855|108.902 +638426.301|222135.493|109.067 +638430.989|222131.131|109.253 +638440.487|222122.307|110.472 +638445.339|222117.805|111.243 +638450.173|222113.319|111.953 +638454.965|222108.869|112.508 +638459.735|222104.437|112.987 +638473.981|222091.196|113.770 +638507.339|222060.180|114.648 +638512.081|222055.769|114.754 +638516.986|222051.216|115.434 +638521.969|222046.598|116.541 +638526.642|222042.239|115.855 +638531.354|222037.853|115.626 +638536.118|222033.418|115.443 +638540.973|222028.904|115.736 +638546.006|222024.244|116.979 +638551.077|222019.544|118.202 +638560.977|222010.357|119.738 +638565.860|222005.819|120.070 +638575.550|221996.806|120.094 +638580.424|221992.276|120.451 +638590.342|221983.068|121.603 +638600.379|221973.757|123.283 +638605.305|221969.182|123.795 +638615.393|221959.827|125.669 +638620.273|221955.289|125.712 +638630.216|221946.050|126.660 +638635.141|221941.475|127.056 +638659.681|221918.649|127.053 +638664.515|221914.144|126.401 +638669.371|221909.627|126.215 +638674.321|221905.021|126.349 +638679.395|221900.315|127.294 +638684.443|221895.627|127.788 +638689.359|221891.055|127.766 +638694.282|221886.477|127.818 +638699.238|221881.868|127.791 +638704.173|221877.272|127.654 +638709.117|221872.676|127.577 +638714.064|221868.073|127.556 +638719.090|221863.401|127.763 +638734.037|221849.508|128.309 +638739.078|221844.817|128.388 +638743.983|221840.254|128.208 +638748.994|221835.594|128.096 +638753.904|221831.019|127.647 +638758.860|221826.407|127.529 +638763.883|221821.734|127.596 +638768.854|221817.114|127.644 +638773.908|221812.410|127.617 +638783.829|221803.178|127.297 +638798.813|221789.236|126.803 +638808.799|221779.943|126.416 +638813.816|221775.283|126.666 +638818.766|221770.671|125.947 +638823.706|221766.069|125.157 +638828.580|221761.518|123.801 +638833.515|221756.918|122.966 +638838.395|221752.371|122.073 +638848.410|221743.047|121.320 +638853.470|221738.341|121.225 +638858.496|221733.671|121.262 +638863.519|221729.002|121.320 +638868.597|221724.283|121.454 +638873.688|221719.556|121.725 +638878.775|221714.832|122.024 +638883.856|221710.113|122.265 +638888.925|221705.404|122.420 +638893.972|221700.710|122.411 +638899.053|221695.992|122.740 +638909.215|221686.558|123.508 +638914.330|221681.809|123.816 +638919.402|221677.097|124.203 +638924.483|221672.382|124.724 +638929.579|221667.648|124.895 +638934.660|221662.933|125.496 +638939.756|221658.203|125.730 +638944.813|221653.509|126.114 +638949.915|221648.769|126.526 +638955.011|221644.039|126.861 +638960.038|221639.366|126.986 +638965.116|221634.651|127.175 +638970.191|221629.935|127.343 +638975.208|221625.275|127.434 +638980.261|221620.575|127.391 +638985.309|221615.884|127.276 +638990.356|221611.190|127.178 +638995.394|221606.502|127.007 +639000.442|221601.812|126.943 +639005.419|221597.179|126.599 +639010.506|221592.448|126.474 +639020.571|221583.088|126.023 +639025.600|221578.409|125.797 +639030.632|221573.730|125.590 +639035.659|221569.055|125.343 +639040.724|221564.339|124.965 +639045.705|221559.706|124.752 +639050.789|221554.982|124.691 +639060.844|221545.628|124.313 +639065.852|221540.964|123.773 +639070.887|221536.285|123.706 +639080.803|221527.023|120.491 +639095.942|221512.947|120.070 +639100.950|221508.280|119.488 +639105.930|221503.650|119.262 +639111.027|221498.920|119.613 +639116.065|221494.241|119.918 +639121.052|221489.605|119.982 +639126.123|221484.890|119.826 +639156.137|221456.931|115.599 +639171.222|221442.904|114.943 +639176.199|221438.271|114.614 +639181.222|221433.595|114.075 +639186.248|221428.919|113.806 +639191.232|221424.283|113.614 +639196.261|221419.605|113.340 +639201.248|221414.969|113.374 +639211.266|221405.657|113.328 +639221.279|221396.339|112.798 +639226.263|221391.703|112.526 +639241.222|221377.804|112.968 +639246.209|221373.168|113.063 +639261.123|221359.257|109.649 +639266.112|221354.624|110.042 +639285.991|221336.123|108.491 +639290.993|221331.466|107.930 +639295.943|221326.857|107.473 +639300.896|221322.248|107.122 +639325.707|221299.141|104.028 +639345.571|221280.628|100.535 +639350.484|221276.086|102.504 +639355.346|221271.597|104.480 +639365.160|221262.504|106.580 +639370.065|221257.948|106.802 +639374.963|221253.400|107.220 +639379.864|221248.849|107.567 +639384.771|221244.290|107.707 +639389.685|221239.724|107.744 +639394.586|221235.173|108.104 +639404.294|221226.160|108.829 +639409.222|221221.576|108.533 +639414.096|221217.046|108.491 +639418.894|221212.609|110.158 +639428.629|221203.559|110.286 +639433.472|221199.069|110.941 +639438.340|221194.546|111.066 +639443.220|221190.008|110.929 +639448.023|221185.548|111.399 +639457.652|221176.621|112.871 +639462.529|221172.088|112.880 +639472.151|221163.155|113.633 +639476.952|221158.689|113.368 +639491.515|221145.138|112.490 +639496.343|221140.645|111.981 +639501.214|221136.113|111.566 +639506.009|221131.654|111.581 +639510.837|221127.158|111.158 +639515.637|221122.699|111.170 +639520.398|221118.279|111.767 +639525.159|221113.856|111.731 +639534.703|221104.990|112.036 +639539.515|221100.515|111.965 +639544.221|221096.141|112.090 +639548.986|221091.716|112.121 +639553.689|221087.348|112.322 +639558.486|221082.888|112.545 +639563.186|221078.521|112.816 +639567.892|221074.147|112.996 +639591.271|221052.436|114.919 +639595.879|221048.156|115.227 +639609.897|221035.129|115.727 +639614.524|221030.832|115.919 +639619.154|221026.525|116.059 +639623.835|221022.175|116.227 +639628.450|221017.890|116.580 +639633.050|221013.613|116.626 +639637.686|221009.304|116.784 +639642.282|221005.033|116.897 +639646.927|221000.717|117.040 +639651.478|220996.484|117.141 +639669.885|220979.366|116.854 +639674.487|220975.084|116.626 +639679.010|220970.877|116.665 +639683.552|220966.653|116.577 +639697.244|220953.912|115.900 +639701.819|220949.654|115.638 +639706.351|220945.439|115.352 +639710.841|220941.257|115.017 +639715.370|220937.041|114.800 +639719.909|220932.820|114.550 +639724.356|220928.684|114.639 +639728.842|220924.511|114.447 +639733.326|220920.338|114.282 +639737.758|220916.217|114.184 +639742.208|220912.078|113.974 +639746.728|220907.866|113.596 +639751.209|220903.696|113.203 +639755.762|220899.447|112.279 +639760.218|220895.296|111.755 +639764.614|220891.209|111.697 +639769.073|220887.060|111.548 +639773.422|220883.015|111.520 +639791.043|220866.614|110.347 +639804.168|220854.392|109.064 +639826.104|220833.952|106.040 +639843.341|220817.904|104.620 +639856.194|220805.928|103.087 +639864.610|220798.101|102.828 +639889.801|220774.650|101.002 +639894.020|220770.721|100.508 +639898.016|220767.014|101.051 +639902.234|220763.080|100.289 +639906.309|220759.294|100.401 +639910.284|220755.606|101.078 +639914.320|220751.854|101.151 +639918.349|220748.111|101.264 +639922.354|220744.389|101.523 +639926.304|220740.722|102.105 +639930.242|220737.068|102.480 +639934.183|220733.410|102.861 +639938.097|220729.771|103.108 +639942.005|220726.141|103.404 +639945.994|220722.434|103.553 +639949.893|220718.810|103.647 +639953.767|220715.211|103.888 +639961.570|220707.962|104.397 +639969.269|220700.812|104.958 +639977.011|220693.615|105.089 +639980.787|220690.110|105.647 +639984.503|220686.663|106.016 +639995.866|220676.105|106.592 +640021.948|220651.873|108.277 +640025.617|220648.465|108.485 +640029.315|220645.027|108.555 +640036.758|220638.102|108.271 +640040.522|220634.594|107.820 +640044.219|220631.156|107.707 +640047.868|220627.763|107.607 +639909.251|220754.542|101.087 +639905.212|220758.279|100.438 +639901.100|220762.083|100.200 +639888.408|220773.860|101.115 +639884.251|220777.707|100.910 +639875.637|220785.708|102.081 +639866.993|220793.727|102.910 +639862.790|220797.623|102.794 +639858.489|220801.606|102.965 +639854.173|220805.614|103.279 +639849.815|220809.662|103.870 +639845.474|220813.689|104.370 +639841.137|220817.712|104.556 +639810.346|220846.293|108.055 +639801.482|220854.526|109.131 +639792.597|220862.774|110.112 +639788.160|220866.885|110.262 +639774.840|220879.245|111.258 +639770.420|220883.342|111.377 +639761.489|220891.623|111.627 +639757.058|220895.729|111.539 +639752.455|220900.014|112.746 +639747.895|220904.248|113.291 +639734.405|220916.763|114.053 +639729.857|220920.981|114.236 +639725.368|220925.142|114.367 +639720.832|220929.351|114.511 +639711.786|220937.739|114.681 +639707.296|220941.906|114.922 +639702.690|220946.179|115.315 +639698.106|220950.434|115.596 +639684.360|220963.187|116.486 +639675.234|220971.648|116.464 +639670.686|220975.864|116.544 +639666.081|220980.134|116.751 +639661.463|220984.420|117.098 +639652.264|220992.948|117.095 +639647.649|220997.224|117.025 +639638.438|221005.762|116.803 +639633.824|221010.038|116.778 +639624.604|221018.579|116.281 +639619.964|221022.873|116.096 +639615.325|221027.174|115.943 +639610.638|221031.517|115.794 +639592.026|221048.757|114.946 +639587.311|221053.122|114.657 +639577.920|221061.821|114.255 +639573.272|221066.124|113.822 +639568.538|221070.501|113.233 +639563.832|221074.860|112.929 +639559.123|221079.225|112.682 +639554.350|221083.647|112.627 +639549.626|221088.027|112.599 +639544.852|221092.450|112.584 +639540.046|221096.906|112.447 +639535.276|221101.326|112.426 +639530.502|221105.752|112.529 +639525.696|221110.208|112.426 +639516.131|221119.059|111.584 +639511.340|221123.497|111.304 +639506.466|221128.017|111.557 +639501.647|221132.489|111.761 +639496.798|221136.985|111.722 +639491.893|221141.541|112.557 +639487.032|221146.052|112.776 +639482.161|221150.573|113.206 +639477.257|221155.123|113.401 +639467.503|221164.170|113.806 +639462.596|221168.711|113.328 +639443.104|221186.755|111.551 +639438.258|221191.236|110.813 +639433.323|221195.811|110.923 +639428.397|221200.377|110.859 +639423.499|221204.906|110.219 +639413.639|221214.035|109.311 +639398.789|221227.797|108.783 +639393.836|221232.384|108.244 +639388.877|221236.977|107.899 +639383.906|221241.586|107.872 +639378.943|221246.185|107.656 +639373.981|221250.785|107.396 +639368.973|221255.424|107.089 +639354.038|221269.244|104.781 +639349.045|221273.858|103.763 +639344.096|221278.406|100.889 +639339.075|221283.063|100.889 +639334.040|221287.745|101.706 +639298.628|221320.666|107.086 +639293.572|221325.363|107.509 +639288.512|221330.064|108.116 +639283.455|221334.767|108.908 +639278.405|221339.451|109.003 +639263.253|221353.512|109.667 +639258.157|221358.245|110.088 +639248.068|221367.639|112.840 +639242.978|221372.364|112.953 +639222.709|221391.158|112.840 +639217.667|221395.836|113.057 +639202.449|221409.958|113.462 +639197.358|221414.679|113.313 +639146.676|221461.731|116.842 +639141.656|221466.419|119.220 +639126.465|221480.519|119.982 +639121.381|221485.237|120.107 +639111.237|221494.641|119.829 +639106.135|221499.365|119.369 +639101.041|221504.089|119.314 +639096.027|221508.750|120.091 +639090.956|221513.459|120.549 +639080.815|221522.862|120.588 +639055.684|221546.225|124.593 +639045.601|221555.582|124.840 +639040.563|221560.258|125.029 +639035.488|221564.970|125.453 +639030.456|221569.640|125.785 +639025.405|221574.325|125.840 +639020.355|221579.009|125.919 +639010.336|221588.315|126.605 +639005.279|221593.003|126.654 +639000.235|221597.688|126.858 +638995.230|221602.330|127.020 +638990.179|221607.018|127.157 +638985.117|221611.711|127.205 +638980.109|221616.357|127.337 +638975.049|221621.054|127.413 +638970.032|221625.708|127.477 +638965.012|221630.362|127.519 +638959.916|221635.087|127.193 +638954.865|221639.765|126.928 +638949.812|221644.447|126.632 +638944.767|221649.126|126.447 +638939.738|221653.783|125.947 +638929.615|221663.162|125.413 +638924.598|221667.813|125.136 +638919.514|221672.519|124.694 +638914.479|221677.186|124.285 +638909.453|221681.843|123.993 +638904.351|221686.567|123.450 +638899.306|221691.240|123.072 +638894.286|221695.897|122.932 +638889.248|221700.564|122.670 +638874.203|221714.512|122.237 +638869.143|221719.199|121.878 +638864.126|221723.848|121.478 +638859.088|221728.517|121.387 +638854.055|221733.184|121.369 +638849.072|221737.804|121.378 +638844.052|221742.465|121.497 +638839.145|221747.019|121.807 +638834.198|221751.621|122.600 +638829.272|221756.196|123.191 +638824.377|221760.750|124.051 +638819.537|221765.258|125.371 +638814.675|221769.781|126.504 +638809.841|221774.283|127.873 +638799.780|221783.604|126.983 +638794.839|221788.188|127.123 +638779.995|221801.959|127.483 +638770.101|221811.139|127.821 +638765.145|221815.736|127.964 +638760.204|221820.317|127.855 +638755.218|221824.941|127.818 +638750.280|221829.519|127.794 +638745.351|221834.091|127.846 +638735.555|221843.186|128.461 +638730.596|221847.783|128.382 +638720.632|221857.012|127.605 +638715.716|221861.575|127.882 +638710.793|221866.141|127.803 +638705.828|221870.743|127.788 +638700.930|221875.288|127.910 +638696.001|221879.857|127.864 +638691.039|221884.456|127.611 +638686.211|221888.940|127.931 +638681.176|221893.597|127.263 +638676.177|221898.224|126.547 +638671.233|221902.808|126.504 +638666.307|221907.374|126.303 +638661.543|221911.803|127.145 +638637.120|221934.447|127.215 +638622.346|221948.120|126.002 +638617.463|221952.643|125.703 +638607.743|221961.647|125.444 +638602.613|221966.384|124.103 +638597.694|221970.931|123.423 +638592.698|221975.552|122.624 +638582.826|221984.681|121.244 +638577.921|221989.222|121.042 +638572.993|221993.779|120.180 +638568.149|221998.266|120.101 +638563.315|222002.746|120.082 +638558.481|222007.224|119.823 +638538.760|222025.460|117.019 +638533.743|222030.090|115.681 +638528.897|222034.580|115.522 +638524.182|222038.954|115.785 +638519.479|222043.318|116.132 +638514.840|222047.622|116.556 +638509.798|222052.276|115.248 +638505.107|222056.629|115.455 +638500.346|222061.039|115.337 +638476.450|222083.165|113.910 +638471.896|222087.392|114.428 +638462.332|222096.244|113.596 +638448.061|222109.451|112.285 +638443.251|222113.898|111.743 +638438.539|222118.257|111.191 +638433.586|222122.832|110.036 +638428.941|222127.135|109.838 +638395.907|222157.701|106.577 +638386.607|222166.311|106.065 +638381.947|222170.621|105.580 +638377.314|222174.910|105.229 +638372.736|222179.150|105.132 +638368.078|222183.459|104.717 +638363.363|222187.818|103.873 +638358.821|222192.027|103.986 +638340.293|222209.163|101.642 +638335.632|222213.473|100.944 +638330.978|222217.777|100.304 +638326.336|222222.069|99.511 +638307.459|222239.494|94.985 +638302.891|222243.722|94.403 +638289.824|222255.828|94.857 +638285.337|222259.980|94.461 +638264.099|222279.673|96.485 +638285.773|222257.154|94.656 +638294.396|222249.135|94.171 +638298.943|222244.916|94.662 +638303.323|222240.844|94.519 +638308.060|222236.461|95.802 +638312.748|222232.118|96.920 +638331.481|222214.766|100.520 +638336.187|222210.404|101.419 +638359.251|222189.007|103.708 +638364.000|222184.606|104.498 +638368.715|222180.235|105.165 +638373.284|222175.992|105.245 +638377.932|222171.673|105.470 +638382.599|222167.345|106.001 +638396.559|222154.385|106.680 +638429.733|222123.612|110.185 +638434.467|222119.217|110.597 +638439.496|222114.565|112.130 +638453.770|222101.313|113.218 +638463.328|222092.440|114.008 +638468.208|222087.914|114.559 +638477.602|222079.178|114.486 +638501.608|222056.885|115.687 +638506.385|222052.441|115.687 +638516.047|222043.471|116.269 +638520.789|222039.057|115.897 +638525.538|222034.638|115.568 +638530.342|222030.175|115.806 +638535.432|222025.463|117.022 +638540.531|222020.748|118.567 +638545.353|222016.267|118.735 +638555.232|222007.102|119.814 +638564.986|221998.040|120.073 +638569.832|221993.538|120.204 +638579.787|221984.303|121.423 +638584.709|221979.734|121.780 +638589.623|221975.171|122.115 +638594.603|221970.553|122.850 +638599.739|221965.798|123.932 +638614.702|221951.915|125.718 +638619.618|221947.352|125.944 +638629.652|221938.043|127.102 +638659.300|221910.495|127.623 +638664.088|221906.030|126.666 +638668.987|221901.476|126.425 +638673.940|221896.874|126.547 +638679.002|221892.174|127.102 +638684.031|221887.510|127.772 +638689.012|221882.883|127.839 +638703.917|221869.033|127.937 +638718.901|221855.110|128.117 +638728.868|221845.853|128.306 +638733.863|221841.211|128.367 +638738.841|221836.584|128.312 +638743.821|221831.951|127.949 +638748.799|221827.324|127.937 +638753.843|221822.640|128.068 +638758.823|221818.013|128.132 +638768.763|221808.765|127.410 +638778.855|221799.386|127.574 +638788.874|221790.072|127.251 +638793.866|221785.433|127.181 +638804.089|221775.950|128.239 +638809.103|221771.287|128.028 +638813.907|221766.797|126.041 +638818.811|221762.225|124.904 +638823.746|221757.623|123.624 +638828.733|221752.983|123.194 +638833.673|221748.384|122.353 +638843.701|221739.057|121.631 +638848.764|221734.351|121.509 +638853.842|221729.636|121.539 +638858.917|221724.924|121.570 +638894.548|221691.847|123.149 +638899.626|221687.137|123.414 +638904.780|221682.358|124.033 +638909.922|221677.588|124.584 +638914.994|221672.882|124.913 +638920.084|221668.154|124.950 +638935.434|221653.914|126.123 +638940.533|221649.181|126.404 +638945.642|221644.441|126.812 +638950.787|221639.668|127.096 +638955.819|221634.995|127.230 +638960.946|221630.234|127.404 +638966.027|221625.516|127.602 +638971.090|221620.816|127.559 +638976.143|221616.119|127.458 +638981.243|221611.382|127.334 +638986.290|221606.691|127.193 +638991.341|221602.001|127.084 +638996.443|221597.258|127.093 +639001.463|221592.588|126.602 +639006.559|221587.855|126.544 +639011.601|221583.170|126.386 +639016.627|221578.494|125.995 +639021.720|221573.764|125.919 +639046.985|221550.282|124.877 +639062.128|221536.209|124.307 +639082.257|221517.458|120.689 +639087.301|221512.776|120.771 +639092.376|221508.058|120.466 +639097.381|221503.398|119.643 +639102.462|221498.676|119.518 +639122.667|221479.913|119.869 +639142.820|221461.180|118.793 +639152.739|221451.914|114.907 +639182.902|221423.887|114.114 +639187.934|221419.212|113.965 +639197.953|221409.906|113.398 +639202.945|221405.276|113.538 +639222.895|221386.747|113.026 +639242.853|221368.221|112.889 +639257.730|221354.374|110.280 +639262.726|221349.726|109.436 +639292.438|221322.117|107.354 +639302.350|221312.909|106.833 +639322.135|221294.499|103.529 +639351.539|221267.226|104.903 +639361.283|221258.225|107.963 +639366.163|221253.690|107.467 +639371.067|221249.142|107.787 +639375.880|221244.680|108.040 +639380.797|221240.114|108.027 +639385.664|221235.597|108.070 +639390.529|221231.083|108.192 +639395.387|221226.578|108.527 +639400.246|221222.073|108.817 +639405.095|221217.583|109.442 +639419.631|221204.102|110.292 +639424.484|221199.603|110.752 +639429.257|221195.177|110.899 +639434.137|221190.645|110.819 +639438.904|221186.225|111.118 +639458.112|221168.428|113.389 +639467.707|221159.531|113.895 +639472.563|221155.017|113.532 +639477.360|221150.563|113.413 +639482.176|221146.089|113.029 +639486.989|221141.617|112.746 +639491.796|221137.155|112.575 +639501.431|221128.203|111.990 +639506.222|221123.747|111.435 +639511.029|221119.288|111.423 +639515.723|221114.941|112.319 +639534.727|221097.309|112.855 +639539.528|221092.859|113.032 +639549.034|221084.031|112.782 +639553.728|221079.679|113.133 +639558.465|221075.284|112.990 +639563.180|221070.910|113.121 +639567.886|221066.545|113.377 +639581.925|221053.530|114.562 +639586.598|221049.196|114.715 +639591.271|221044.871|115.416 +639609.930|221027.561|116.056 +639614.630|221023.199|116.022 +639619.212|221018.950|116.230 +639623.887|221014.613|116.477 +639633.114|221006.060|116.861 +639637.759|221001.751|116.982 +639642.361|220997.480|117.077 +639646.964|220993.210|117.193 +639670.046|220971.776|116.547 +639683.738|220959.072|116.623 +639692.952|220950.511|115.913 +639697.542|220946.246|115.538 +639702.123|220941.991|115.285 +639715.718|220929.363|114.626 +639720.223|220925.185|114.687 +639724.715|220921.012|114.450 +639742.714|220904.300|113.599 +639747.225|220900.106|113.346 +639751.724|220895.924|112.843 +639756.326|220891.635|111.609 +639760.715|220887.563|111.630 +639765.171|220883.427|111.539 +639769.567|220879.346|111.523 +639774.005|220875.225|111.249 +639787.254|220862.914|110.304 +639809.227|220842.489|108.055 +639835.340|220818.218|105.193 +639839.662|220814.198|104.714 +639848.233|220806.233|103.998 +639873.595|220782.669|102.069 +639877.750|220778.810|101.898 +639890.530|220766.914|99.661 +639902.563|220755.749|100.761 +639906.538|220752.070|101.459 +639910.549|220748.345|101.672 +639914.557|220744.621|101.621 +639918.599|220740.869|101.697 +639922.531|220737.223|102.108 +639926.405|220733.633|102.568 +639930.340|220729.981|102.971 +639934.241|220726.363|103.306 +639938.143|220722.742|103.647 +639942.084|220719.085|103.794 +639945.946|220715.503|104.096 +639949.884|220711.846|104.281 +639953.733|220708.270|104.394 +639965.328|220697.508|104.873 +639972.850|220690.531|105.607 +639976.715|220686.937|105.455 +639984.195|220680.003|106.232 +639987.953|220676.510|106.400 +639991.736|220672.999|106.467 +640002.742|220662.791|107.659 +640013.874|220652.452|107.829 +640017.534|220649.051|107.817 +640021.055|220645.792|108.506 +640028.409|220638.962|108.619 +640032.058|220635.572|108.475 +640035.709|220632.174|108.308 +640039.382|220628.760|108.070 +640043.064|220625.337|107.802 +640046.667|220621.987|107.680 +639902.749|220753.756|101.115 +639898.650|220757.550|100.807 +639894.538|220761.360|100.581 +639890.643|220764.945|98.810 +639881.663|220773.312|102.270 +639851.768|220801.033|103.437 +639838.686|220813.170|104.626 +639834.264|220817.279|105.065 +639829.868|220821.357|105.641 +639812.147|220837.804|107.561 +639803.250|220846.061|108.418 +639794.246|220854.422|109.454 +639789.778|220858.570|110.115 +639785.340|220862.685|110.249 +639780.832|220866.864|110.536 +639776.345|220871.028|110.725 +639771.868|220875.182|111.200 +639767.387|220879.337|111.383 +639762.867|220883.525|111.508 +639758.353|220887.709|111.621 +639753.863|220891.876|111.938 +639749.246|220896.165|112.874 +639744.698|220900.380|113.313 +639726.489|220917.254|114.352 +639721.960|220921.445|114.401 +639717.418|220925.651|114.556 +639712.813|220929.912|114.459 +639703.644|220938.410|115.215 +639699.088|220942.631|115.209 +639694.442|220946.932|115.538 +639680.647|220959.716|116.361 +639666.824|220972.514|116.388 +639662.195|220976.803|116.775 +639657.540|220981.116|116.979 +639639.039|220998.242|116.986 +639634.366|221002.567|117.016 +639629.776|221006.810|116.748 +639620.498|221015.393|116.291 +639615.904|221019.642|116.105 +639611.220|221023.977|115.873 +639606.562|221028.290|115.894 +639587.838|221045.611|115.111 +639583.178|221049.918|114.709 +639578.518|221054.225|114.337 +639573.796|221058.593|114.139 +639569.160|221062.878|113.517 +639564.445|221067.237|113.255 +639559.711|221071.617|113.215 +639554.969|221076.012|113.368 +639550.260|221080.365|113.066 +639545.480|221084.787|113.081 +639531.222|221097.985|112.913 +639512.220|221115.560|111.929 +639507.435|221119.986|111.545 +639502.598|221124.466|111.908 +639493.009|221133.348|112.225 +639488.181|221137.823|112.596 +639483.316|221142.328|112.804 +639478.488|221146.802|113.224 +639473.617|221151.316|113.627 +639468.817|221155.760|113.685 +639463.955|221160.265|113.977 +639454.311|221169.184|113.310 +639444.689|221178.059|111.264 +639439.791|221182.598|111.520 +639430.055|221191.599|110.749 +639425.172|221196.119|110.746 +639420.302|221200.624|110.460 +639415.382|221205.171|110.198 +639405.565|221214.248|109.280 +639400.700|221218.747|108.924 +639395.777|221223.298|108.759 +639390.864|221227.833|108.323 +639385.896|221232.430|108.213 +639380.967|221236.987|108.235 +639376.039|221241.549|108.415 +639371.067|221246.146|108.375 +639351.249|221264.446|106.174 +639336.381|221278.141|102.294 +639331.391|221282.734|100.843 +639316.313|221296.734|104.446 +639301.241|221310.706|106.634 +639296.227|221315.345|106.872 +639260.922|221348.031|109.210 +639245.773|221362.092|112.548 +639225.495|221380.855|113.105 +639220.450|221385.522|113.142 +639215.406|221390.188|113.361 +639210.315|221394.901|113.685 +639205.222|221399.613|113.654 +639200.224|221404.234|113.557 +639195.136|221408.946|113.877 +639190.043|221413.655|113.901 +639184.999|221418.322|114.102 +639179.909|221423.034|114.282 +639154.549|221446.497|114.949 +639149.413|221451.252|115.239 +639144.387|221455.934|117.559 +639124.142|221474.691|119.945 +639119.052|221479.401|119.954 +639103.721|221493.577|119.701 +639098.670|221498.246|119.628 +639078.428|221516.982|120.789 +639043.102|221549.715|125.096 +639022.939|221568.375|126.008 +639017.886|221573.051|126.069 +639012.829|221577.726|126.120 +639007.779|221582.399|126.273 +639002.743|221587.062|126.629 +638992.648|221596.404|127.081 +638987.637|221601.040|127.184 +638982.578|221605.719|127.269 +638977.564|221610.358|127.367 +638972.498|221615.043|127.419 +638967.432|221619.731|127.474 +638962.461|221624.327|127.553 +638957.383|221629.024|127.501 +638952.332|221633.691|127.260 +638947.282|221638.357|127.023 +638942.237|221643.021|126.879 +638937.223|221647.650|126.587 +638932.154|221652.335|126.206 +638927.086|221657.017|125.870 +638922.066|221661.656|125.599 +638917.049|221666.292|125.374 +638911.955|221670.995|124.892 +638906.926|221675.640|124.593 +638901.876|221680.307|124.106 +638896.877|221684.922|123.694 +638891.845|221689.573|123.459 +638886.818|221694.218|123.344 +638881.838|221698.823|123.200 +638876.870|221703.423|123.697 +638866.808|221712.710|122.569 +638861.788|221717.349|122.158 +638856.728|221722.022|121.884 +638851.727|221726.646|121.698 +638846.783|221731.218|121.628 +638827.023|221749.509|123.039 +638822.118|221754.053|123.837 +638812.407|221763.057|125.444 +638807.543|221767.571|126.596 +638802.788|221771.991|128.236 +638797.884|221776.532|128.638 +638792.854|221781.174|128.053 +638787.828|221785.814|127.541 +638782.897|221790.373|127.404 +638777.953|221794.948|127.590 +638753.377|221817.684|128.394 +638743.477|221826.837|128.181 +638738.557|221831.381|127.995 +638733.607|221835.956|127.971 +638728.715|221840.483|128.004 +638723.805|221845.027|128.288 +638718.904|221849.560|128.309 +638699.229|221867.750|128.153 +638684.477|221881.387|127.983 +638679.438|221886.032|126.965 +638674.446|221890.644|126.608 +638669.532|221895.185|126.468 +638664.671|221899.681|126.675 +638659.940|221904.070|127.721 +638635.449|221926.720|127.404 +638630.524|221931.274|127.074 +638625.565|221935.855|126.565 +638620.627|221940.418|126.224 +638615.738|221944.935|125.895 +638610.806|221949.495|125.633 +638605.939|221953.996|125.474 +638595.956|221963.208|123.837 +638590.955|221967.825|123.002 +638585.992|221972.409|122.429 +638581.091|221976.936|121.957 +638556.646|221999.525|119.988 +638551.730|222004.069|119.585 +638546.899|222008.534|119.393 +638522.198|222031.334|115.745 +638517.427|222035.747|115.757 +638512.724|222040.103|116.123 +638498.484|222053.282|116.431 +638483.963|222066.700|115.047 +638469.741|222079.855|114.837 +638464.898|222084.329|114.486 +638460.152|222088.715|114.133 +638455.385|222093.117|113.715 +638450.621|222097.518|113.325 +638445.943|222101.849|113.349 +638431.437|222115.236|111.188 +638426.560|222119.735|110.176 +638393.672|222150.130|108.021 +638379.533|222163.187|106.467 +638370.194|222171.813|105.473 +638356.209|222184.731|104.266 +638351.579|222189.007|103.827 +638347.068|222193.180|103.894 +638332.865|222206.283|101.255 +638323.474|222214.945|99.670 +638318.798|222219.258|98.771 +638309.368|222227.954|96.750 +638290.845|222245.044|93.726 +638282.240|222253.021|94.570 +638265.071|222268.929|95.750 +638260.993|222272.720|96.777 +638256.616|222276.768|96.704 +638277.123|222255.600|94.909 +638281.433|222251.601|94.625 +638289.955|222243.688|93.504 +638294.688|222239.317|94.705 +638299.056|222235.266|94.494 +638308.514|222226.537|96.765 +638313.162|222222.239|97.518 +638317.896|222217.865|98.643 +638332.042|222204.796|101.310 +638336.760|222200.434|102.041 +638350.784|222187.465|104.092 +638355.402|222183.191|104.507 +638360.120|222178.830|105.153 +638364.826|222174.471|105.559 +638369.337|222170.292|105.595 +638378.694|222161.633|106.500 +638397.540|222144.192|108.238 +638402.246|222139.843|108.817 +638425.823|222118.013|110.240 +638430.855|222113.368|111.755 +638450.027|222095.619|113.730 +638454.727|222091.263|113.852 +638459.515|222086.826|114.175 +638464.310|222082.388|114.547 +638469.098|222077.953|114.913 +638483.439|222064.660|115.306 +638498.009|222051.173|116.778 +638507.491|222042.373|116.416 +638512.176|222038.024|115.974 +638516.876|222033.662|115.620 +638521.756|222029.142|115.943 +638541.656|222010.741|119.470 +638546.515|222006.239|119.567 +638551.337|222001.771|119.744 +638556.219|221997.248|120.015 +638590.720|221965.305|123.261 +638595.798|221960.614|124.279 +638600.806|221955.981|125.233 +638605.731|221951.418|125.456 +638610.654|221946.858|125.669 +638615.576|221942.295|125.934 +638620.505|221937.732|126.239 +638625.507|221933.102|126.715 +638630.441|221928.533|127.120 +638635.382|221923.955|127.297 +638640.317|221919.383|127.449 +638655.048|221905.725|127.641 +638659.943|221901.184|127.334 +638664.792|221896.679|126.767 +638669.681|221892.143|126.465 +638674.589|221887.596|126.608 +638679.600|221882.950|126.818 +638684.684|221878.253|127.852 +638699.567|221864.458|128.053 +638714.466|221850.648|128.245 +638724.335|221841.495|128.044 +638729.307|221836.883|127.888 +638734.302|221832.253|127.928 +638739.283|221827.641|128.233 +638744.333|221822.960|128.388 +638754.291|221813.727|128.391 +638764.215|221804.522|127.864 +638774.176|221795.284|127.718 +638779.154|221790.666|127.440 +638784.158|221786.027|127.404 +638789.249|221781.318|128.083 +638794.314|221776.627|128.617 +638799.331|221771.966|128.379 +638804.129|221767.495|126.733 +638809.061|221762.905|125.809 +638813.980|221758.327|124.764 +638818.894|221753.758|124.100 +638823.892|221749.106|123.347 +638833.820|221739.880|122.076 +638838.824|221735.232|121.826 +638843.842|221730.575|121.704 +638848.929|221725.856|121.804 +638854.016|221721.138|121.920 +638859.072|221716.450|122.256 +638864.169|221711.726|122.527 +638879.448|221697.565|123.417 +638884.462|221692.913|123.475 +638889.531|221688.213|123.618 +638894.640|221683.474|123.700 +638904.826|221674.037|124.666 +638909.944|221669.291|124.941 +638915.022|221664.588|125.349 +638920.136|221659.846|125.648 +638925.202|221655.152|125.983 +638930.307|221650.418|126.267 +638935.468|221645.636|126.651 +638940.509|221640.963|126.797 +638945.617|221636.230|127.209 +638950.747|221631.472|127.315 +638955.776|221626.805|127.428 +638960.851|221622.099|127.489 +638965.966|221617.356|127.492 +638971.023|221612.659|127.413 +638976.082|221607.965|127.385 +638981.182|221603.232|127.239 +638986.235|221598.544|127.169 +638991.289|221593.853|127.084 +639001.411|221584.456|126.514 +639006.495|221579.735|126.273 +639011.589|221575.007|126.160 +639016.636|221570.326|126.087 +639021.729|221565.598|126.005 +639047.058|221542.089|125.157 +639077.340|221513.931|120.853 +639082.442|221509.204|121.113 +639092.583|221499.783|120.247 +639097.652|221495.073|119.720 +639102.739|221490.358|119.848 +639112.880|221480.955|120.201 +639118.004|221476.197|119.954 +639123.039|221471.525|119.930 +639153.269|221443.413|115.020 +639183.588|221415.271|114.206 +639188.672|221410.549|114.017 +639193.710|221405.874|114.041 +639198.742|221401.195|113.557 +639203.784|221396.519|113.593 +639208.825|221391.844|113.736 +639213.860|221387.165|113.374 +639223.891|221377.853|113.112 +639228.930|221373.174|113.154 +639253.945|221349.924|110.554 +639258.943|221345.270|109.381 +639263.942|221340.625|109.012 +639278.853|221326.778|108.320 +639283.855|221322.130|108.015 +639288.817|221317.518|107.363 +639298.787|221308.252|106.467 +639318.584|221289.833|103.251 +639328.478|221280.613|100.447 +639343.132|221267.073|104.894 +639347.960|221262.617|106.494 +639377.215|221235.496|108.445 +639382.086|221230.976|108.506 +639386.963|221226.453|108.439 +639391.833|221221.932|108.500 +639396.640|221217.476|108.972 +639401.508|221212.962|109.158 +639406.321|221208.503|109.554 +639411.133|221204.041|109.905 +639415.943|221199.581|110.350 +639420.805|221195.080|110.752 +639425.581|221190.645|110.847 +639440.047|221177.230|111.514 +639444.759|221172.866|112.048 +639454.308|221164.023|113.419 +639459.085|221159.595|113.669 +639463.867|221155.157|113.803 +639468.674|221150.694|113.547 +639473.416|221146.293|113.593 +639478.226|221141.825|113.316 +639482.950|221137.436|112.944 +639487.760|221132.970|112.776 +639492.543|221128.526|112.328 +639502.092|221119.654|111.758 +639506.853|221115.237|111.737 +639511.498|221110.939|112.682 +639530.368|221093.435|113.194 +639544.465|221080.359|113.444 +639549.178|221075.988|113.587 +639553.865|221071.635|113.456 +639558.581|221067.264|113.617 +639563.278|221062.903|113.435 +639567.941|221058.581|113.685 +639572.586|221054.280|114.169 +639577.192|221050.010|114.541 +639581.904|221045.642|114.800 +639591.100|221037.126|115.797 +639600.439|221028.460|115.815 +639614.310|221015.595|116.163 +639618.946|221011.300|116.385 +639623.534|221007.048|116.598 +639628.176|221002.741|116.769 +639632.775|220998.477|116.891 +639637.341|220994.240|116.909 +639641.992|220989.927|117.043 +639655.791|220977.120|116.757 +639660.381|220972.862|116.659 +639665.011|220968.558|116.217 +639669.580|220964.324|116.370 +639674.207|220960.026|116.004 +639678.782|220955.784|116.135 +639692.562|220942.985|115.312 +639697.109|220938.760|114.934 +639701.660|220934.542|114.977 +639706.260|220930.269|114.617 +639710.835|220926.023|114.501 +639719.909|220917.598|114.145 +639724.426|220913.407|114.160 +639742.558|220896.573|113.206 +639747.097|220892.358|112.813 +639751.718|220888.054|111.816 +639756.250|220883.848|111.530 +639760.657|220879.754|111.435 +639769.618|220871.433|110.984 +639792.058|220850.591|109.024 +639800.915|220842.358|108.259 +639805.353|220838.237|107.860 +639809.752|220834.150|107.418 +639823.077|220821.763|105.714 +639827.476|220817.678|105.379 +639831.880|220813.582|104.699 +639836.163|220809.607|104.818 +639844.880|220801.512|104.175 +639857.803|220789.506|103.065 +639878.978|220769.849|102.245 +639887.406|220762.028|101.663 +639891.664|220758.078|101.291 +639895.754|220754.286|101.313 +639899.817|220750.522|101.514 +639903.856|220746.785|101.886 +639907.919|220743.021|102.111 +639911.982|220739.256|102.078 +639916.014|220735.519|102.215 +639920.028|220731.804|102.483 +639923.988|220728.137|102.785 +639931.879|220720.834|103.568 +639935.793|220717.213|103.876 +639939.645|220713.650|104.516 +639947.457|220706.417|104.992 +639951.295|220702.863|105.461 +639958.979|220695.749|105.885 +639970.564|220685.011|106.010 +639974.423|220681.439|106.186 +639981.946|220674.471|106.525 +639989.483|220667.485|106.570 +639996.771|220660.746|107.674 +640000.523|220657.268|107.686 +640007.817|220650.514|108.046 +640011.490|220647.112|108.244 +640015.157|220643.710|108.219 +640018.738|220640.394|108.384 +640022.289|220637.108|108.701 +640025.931|220633.731|108.591 +640036.700|220623.743|108.341 +640040.373|220620.335|107.902 +640043.896|220617.065|107.915 +639896.726|220751.628|101.611 +639892.703|220755.341|101.145 +639888.628|220759.108|100.993 +639876.189|220770.617|101.593 +639872.086|220774.403|101.066 +639850.744|220794.172|103.407 +639846.398|220798.199|103.876 +639837.805|220806.154|104.556 +639833.474|220810.159|104.678 +639829.195|220814.118|104.809 +639824.793|220818.200|105.431 +639820.374|220822.290|105.863 +639815.988|220826.350|106.113 +639807.152|220834.540|107.427 +639802.711|220838.652|107.771 +639798.291|220842.748|108.354 +639789.360|220851.021|109.186 +639784.874|220855.175|109.606 +639766.964|220871.756|110.987 +639762.480|220875.904|111.155 +639757.945|220880.102|111.383 +639753.434|220884.274|111.463 +639748.865|220888.514|112.350 +639744.280|220892.763|113.026 +639739.708|220896.997|113.264 +639726.053|220909.643|114.056 +639721.454|220913.898|114.215 +639716.870|220918.141|114.303 +639707.707|220926.617|114.474 +639703.123|220930.860|114.629 +639698.490|220935.152|114.809 +639693.848|220939.449|115.081 +639689.197|220943.759|115.471 +639675.216|220956.701|116.169 +639670.583|220960.990|116.086 +639665.928|220965.293|116.184 +639661.198|220969.676|116.571 +639656.495|220974.029|116.754 +639642.428|220987.047|117.025 +639637.765|220991.360|116.943 +639633.050|220995.722|116.900 +639628.386|221000.035|116.821 +639618.995|221008.718|116.452 +639614.301|221013.056|116.260 +639609.555|221017.445|116.132 +639604.865|221021.782|115.986 +639600.125|221026.165|115.830 +639585.955|221039.268|115.489 +639581.203|221043.661|115.041 +639576.494|221048.010|114.651 +639571.791|221052.354|114.178 +639567.039|221056.746|113.764 +639562.253|221061.168|113.709 +639557.511|221065.558|113.773 +639552.747|221069.962|113.553 +639533.529|221087.741|113.614 +639528.738|221092.170|113.227 +639509.511|221109.946|112.581 +639504.799|221114.295|111.810 +639499.934|221118.794|111.853 +639490.211|221127.801|112.663 +639485.389|221132.263|112.877 +639480.512|221136.780|113.236 +639475.693|221141.240|113.486 +639465.979|221150.234|113.797 +639461.139|221154.709|113.706 +639456.293|221159.192|113.736 +639451.416|221163.700|113.435 +639441.827|221172.546|111.648 +639436.941|221177.063|111.557 +639422.414|221190.489|110.737 +639417.488|221195.046|110.591 +639412.673|221199.493|110.097 +639407.802|221203.995|109.804 +639402.934|221208.488|109.378 +639398.054|221213.002|109.314 +639393.141|221217.543|108.914 +639388.273|221222.042|108.613 +639378.468|221231.110|108.533 +639373.539|221235.670|108.576 +639353.828|221253.912|109.161 +639344.080|221262.876|105.446 +639339.136|221267.433|104.327 +639334.235|221271.950|103.224 +639319.367|221285.703|103.120 +639314.390|221290.314|103.541 +639304.410|221299.583|106.135 +639299.442|221304.180|106.311 +639294.474|221308.782|106.601 +639289.454|221313.431|107.159 +639284.489|221318.033|107.649 +639279.475|221322.678|108.131 +639264.494|221336.547|108.881 +639259.486|221341.177|108.838 +639229.378|221369.087|113.057 +639224.330|221373.757|113.051 +639219.286|221378.429|113.267 +639214.287|221383.053|113.368 +639209.194|221387.768|113.639 +639204.146|221392.435|113.642 +639199.099|221397.104|113.611 +639194.057|221401.774|113.995 +639189.010|221406.443|113.974 +639183.920|221411.156|114.172 +639178.881|221415.822|114.669 +639173.837|221420.489|114.910 +639163.663|221429.910|115.577 +639153.507|221439.298|115.041 +639148.441|221444.001|116.184 +639143.457|221448.640|118.470 +639123.179|221467.419|119.851 +639118.040|221472.174|119.906 +639113.005|221476.837|120.226 +639107.915|221481.546|120.366 +639102.757|221486.310|119.988 +639097.710|221490.977|119.860 +639092.626|221495.683|120.140 +639077.374|221509.804|121.088 +639067.297|221519.174|124.566 +639057.132|221528.586|125.099 +639052.036|221533.298|125.154 +639041.834|221542.735|125.099 +639026.576|221556.860|125.977 +639021.473|221561.581|126.008 +639016.377|221566.296|126.139 +639011.272|221571.018|126.160 +639006.166|221575.736|126.255 +639001.116|221580.411|126.410 +638996.022|221585.121|126.712 +638990.905|221589.854|126.636 +638985.876|221594.509|127.175 +638980.764|221599.236|127.212 +638975.704|221603.915|127.373 +638970.642|221608.599|127.471 +638965.518|221613.333|127.440 +638960.452|221618.021|127.541 +638955.374|221622.715|127.513 +638950.287|221627.415|127.404 +638945.197|221632.118|127.294 +638940.107|221636.824|127.190 +638935.004|221641.536|126.983 +638929.890|221646.261|126.657 +638924.815|221650.948|126.270 +638919.691|221655.679|125.910 +638914.613|221660.367|125.560 +638909.480|221665.106|125.169 +638904.411|221669.791|124.971 +638894.219|221679.200|124.115 +638889.144|221683.888|123.969 +638884.121|221688.533|123.862 +638879.052|221693.218|123.813 +638874.020|221697.869|123.685 +638868.981|221702.524|123.530 +638863.925|221707.199|123.664 +638858.856|221711.872|122.807 +638853.784|221716.557|122.399 +638848.724|221721.229|122.152 +638843.720|221725.856|121.972 +638838.678|221730.514|121.957 +638833.698|221735.119|122.067 +638828.723|221739.722|122.246 +638823.886|221744.205|123.207 +638818.912|221748.814|123.834 +638809.131|221757.876|125.300 +638804.284|221762.368|126.191 +638799.414|221766.882|126.898 +638794.546|221771.400|128.031 +638789.755|221775.840|129.004 +638784.698|221780.510|128.632 +638779.730|221785.094|128.230 +638764.813|221798.880|127.812 +638750.060|221812.523|128.504 +638730.294|221830.790|128.141 +638725.366|221835.344|127.934 +638720.397|221839.937|127.824 +638715.523|221844.442|128.065 +638710.567|221849.020|127.754 +638700.832|221858.024|128.059 +638695.910|221862.575|128.047 +638691.066|221867.052|128.248 +638686.080|221871.652|127.532 +638681.078|221876.269|127.059 +638676.134|221880.832|126.690 +638671.297|221885.304|126.709 +638666.405|221889.827|126.709 +638661.595|221894.280|127.251 +638656.871|221898.657|128.031 +638637.333|221916.710|127.669 +638632.468|221921.203|127.367 +638627.528|221925.760|126.953 +638617.716|221934.818|126.303 +638612.833|221939.323|126.014 +638607.959|221943.825|125.785 +638603.058|221948.352|125.435 +638598.206|221952.829|125.105 +638593.323|221957.337|124.919 +638588.248|221962.007|123.383 +638583.341|221966.536|123.118 +638563.763|221984.598|121.195 +638553.955|221993.648|120.442 +638549.191|221998.049|120.296 +638519.906|222025.064|117.147 +638514.858|222029.712|116.004 +638510.070|222034.135|115.940 +638505.421|222038.435|116.339 +638500.740|222042.767|116.854 +638491.212|222051.566|116.598 +638481.781|222060.283|116.656 +638476.907|222064.776|116.074 +638462.533|222078.041|114.934 +638457.738|222082.467|114.596 +638452.953|222086.883|114.319 +638443.492|222095.616|113.861 +638424.134|222113.459|110.777 +638409.930|222126.565|109.567 +638405.288|222130.854|109.469 +638400.524|222135.246|109.091 +638395.922|222139.498|108.972 +638386.290|222148.371|107.195 +638372.394|222161.203|106.741 +638367.737|222165.501|106.302 +638353.841|222178.324|105.446 +638330.356|222199.971|101.809 +638306.591|222221.849|96.640 +638288.224|222238.784|94.196 +638284.045|222242.655|94.985 +638279.601|222246.760|94.958 +638266.750|222258.645|96.219 +638262.480|222262.595|96.512 +638258.292|222266.472|97.125 +638254.068|222270.376|97.417 +638272.520|222250.558|95.848 +638281.079|222242.618|95.034 +638294.329|222230.344|95.104 +638303.503|222221.858|96.241 +638308.142|222217.570|96.948 +638312.873|222213.199|97.826 +638331.877|222195.655|101.931 +638336.632|222191.265|103.053 +638341.433|222186.831|104.169 +638364.692|222165.312|106.168 +638383.309|222148.078|107.137 +638393.066|222139.071|109.484 +638397.674|222134.798|109.180 +638402.316|222130.500|109.268 +638407.001|222126.163|109.564 +638421.220|222113.005|110.393 +638426.487|222108.162|112.953 +638450.268|222086.161|114.312 +638455.120|222081.671|114.678 +638459.875|222077.270|114.843 +638464.666|222072.838|115.199 +638469.510|222068.358|115.599 +638474.347|222063.883|115.986 +638479.178|222059.418|116.361 +638488.889|222050.435|117.202 +638498.387|222041.636|116.821 +638503.068|222037.289|116.333 +638507.814|222032.891|115.910 +638512.697|222028.374|116.208 +638517.555|222023.878|116.669 +638547.341|221996.352|120.381 +638557.155|221987.272|120.887 +638562.090|221982.706|121.201 +638566.982|221978.179|121.570 +638596.974|221950.461|125.172 +638606.908|221941.271|125.779 +638611.797|221936.742|125.816 +638616.820|221932.100|126.376 +638621.806|221927.485|126.742 +638626.854|221922.818|127.209 +638636.742|221913.668|127.568 +638651.576|221899.934|127.711 +638656.493|221895.380|127.513 +638661.360|221890.863|127.041 +638666.249|221886.334|126.709 +638671.187|221881.759|126.724 +638676.158|221877.156|126.642 +638681.142|221872.545|126.992 +638686.308|221867.774|127.928 +638691.252|221863.199|128.062 +638696.239|221858.579|127.876 +638706.169|221849.386|127.907 +638711.153|221844.765|127.757 +638716.145|221840.144|127.666 +638721.117|221835.542|127.815 +638726.158|221830.878|128.141 +638731.190|221826.221|128.425 +638761.155|221798.469|127.876 +638766.093|221793.894|127.602 +638771.162|221789.206|128.004 +638776.304|221784.451|128.635 +638781.312|221779.821|128.995 +638786.365|221775.139|128.989 +638791.205|221770.641|127.660 +638815.907|221747.723|123.941 +638820.863|221743.123|123.179 +638825.825|221738.518|122.493 +638830.875|221733.845|122.600 +638835.856|221729.230|122.067 +638840.897|221724.561|122.149 +638846.006|221719.839|122.384 +638856.152|221710.455|123.261 +638861.261|221705.733|123.615 +638866.366|221701.012|123.975 +638871.411|221696.339|123.761 +638876.452|221691.676|124.029 +638881.521|221686.985|124.106 +638886.590|221682.294|124.221 +638891.653|221677.609|124.279 +638896.740|221672.903|124.645 +638901.845|221668.188|125.212 +638906.920|221663.494|125.508 +638911.989|221658.806|125.758 +638917.103|221654.076|126.035 +638922.184|221649.379|126.474 +638927.247|221644.697|126.767 +638932.353|221639.973|127.041 +638937.397|221635.309|127.154 +638942.496|221630.591|127.422 +638947.522|221625.940|127.367 +638952.610|221621.230|127.535 +638957.681|221616.536|127.507 +638962.702|221611.888|127.489 +638967.770|221607.194|127.480 +638972.879|221602.467|127.367 +638977.884|221597.831|127.202 +638982.946|221593.143|127.163 +638998.089|221579.119|126.523 +639003.179|221574.404|126.300 +639008.233|221569.725|126.200 +639013.286|221565.046|126.175 +639018.383|221560.328|126.047 +639023.424|221555.659|125.840 +639028.481|221550.980|125.892 +639053.767|221527.559|124.874 +639073.856|221508.905|120.887 +639099.146|221485.487|120.119 +639104.251|221480.766|120.439 +639109.289|221476.103|120.314 +639114.370|221471.393|120.076 +639119.454|221466.684|119.881 +639124.499|221462.018|119.976 +639154.759|221433.940|114.995 +639159.810|221429.267|115.209 +639175.029|221415.176|114.885 +639180.064|221410.510|114.413 +639185.105|221405.843|114.392 +639190.193|221401.131|114.169 +639195.234|221396.464|113.944 +639200.272|221391.795|113.636 +639205.314|221387.128|113.572 +639210.407|221382.416|113.532 +639215.400|221377.792|113.252 +639220.441|221373.123|113.081 +639225.485|221368.453|113.063 +639260.669|221335.827|108.506 +639290.716|221307.999|106.842 +639295.730|221303.351|106.311 +639310.702|221289.464|104.114 +639315.676|221284.852|103.687 +639325.655|221275.586|101.553 +639330.642|221270.996|103.108 +639335.546|221266.467|103.806 +639340.493|221261.901|104.760 +639350.265|221252.925|109.173 +639355.181|221248.371|109.167 +639360.049|221243.869|109.256 +639365.020|221239.269|109.189 +639369.900|221234.746|108.908 +639374.829|221230.183|108.704 +639394.290|221212.188|109.832 +639403.998|221203.205|109.881 +639408.872|221198.697|110.015 +639413.694|221194.238|110.286 +639418.500|221189.797|110.865 +639432.927|221176.456|111.520 +639442.540|221167.565|111.822 +639452.013|221158.827|113.840 +639456.805|221154.395|113.861 +639461.590|221149.969|114.029 +639466.394|221145.522|113.867 +639471.158|221141.112|113.636 +639490.223|221123.454|112.798 +639494.996|221119.035|112.560 +639499.736|221114.640|112.127 +639504.485|221110.250|112.343 +639509.096|221105.992|113.108 +639513.790|221101.655|113.444 +639541.899|221075.643|113.776 +639546.562|221071.330|113.974 +639551.198|221067.039|113.941 +639555.828|221062.753|114.002 +639560.498|221058.431|114.157 +639565.158|221054.115|113.898 +639569.779|221049.842|114.130 +639574.318|221045.648|114.770 +639578.932|221041.384|115.093 +639583.535|221037.126|115.541 +639588.119|221032.886|115.696 +639597.290|221024.403|116.041 +639606.434|221015.939|116.211 +639611.031|221011.687|116.327 +639615.575|221007.481|116.473 +639620.132|221003.265|116.550 +639624.701|220999.035|116.528 +639629.236|220994.838|116.812 +639633.799|220990.619|116.894 +639638.313|220986.440|116.973 +639656.470|220969.628|116.595 +639661.070|220965.363|116.016 +639665.599|220961.169|116.074 +639679.111|220948.657|115.818 +639683.653|220944.448|115.452 +639688.182|220940.254|115.224 +639692.723|220936.045|114.904 +639701.694|220927.736|114.501 +639706.177|220923.584|114.340 +639715.145|220915.279|114.087 +639719.564|220911.185|114.099 +639724.066|220907.015|113.892 +639728.492|220902.919|113.904 +639737.496|220894.577|113.221 +639746.423|220886.301|112.474 +639750.977|220882.071|111.289 +639755.409|220877.971|111.411 +639768.692|220865.666|110.886 +639773.163|220861.518|110.094 +639781.996|220853.334|109.713 +639786.434|220849.222|109.247 +639795.280|220841.017|108.229 +639799.745|220836.875|107.649 +639804.149|220832.793|107.189 +639821.681|220816.538|105.421 +639826.077|220812.463|104.809 +639830.432|220808.434|104.809 +639838.997|220800.497|104.480 +639856.325|220784.437|102.888 +639864.997|220776.396|101.870 +639869.392|220772.315|100.892 +639873.443|220768.575|101.709 +639886.144|220756.804|101.273 +639890.268|220752.985|101.407 +639894.325|220749.235|101.947 +639898.479|220745.386|101.938 +639902.588|220741.582|102.197 +639906.645|220737.830|102.495 +639910.796|220733.983|102.541 +639914.829|220730.249|102.712 +639918.907|220726.476|102.919 +639922.933|220722.748|103.151 +639926.944|220719.039|103.480 +639930.965|220715.317|103.769 +639934.851|220711.727|104.510 +639950.627|220697.127|105.812 +639954.565|220693.484|106.071 +639958.519|220689.821|105.982 +639962.402|220686.227|106.281 +639966.340|220682.579|106.311 +639970.241|220678.964|106.272 +639974.137|220675.358|106.290 +639977.907|220671.868|106.680 +639989.264|220661.361|107.720 +639993.071|220657.835|107.723 +639996.881|220654.302|107.713 +640000.685|220650.782|107.762 +640004.437|220647.304|107.814 +640008.076|220643.939|108.192 +640011.847|220640.446|108.183 +640015.522|220637.041|108.390 +640019.168|220633.667|108.762 +640022.862|220630.247|108.671 +640026.572|220626.806|108.506 +640030.220|220623.423|108.399 +640033.896|220620.021|108.439 +640037.499|220616.678|108.323 +639893.733|220747.349|102.102 +639889.737|220751.031|101.758 +639885.784|220754.670|101.166 +639869.569|220769.633|100.731 +639861.129|220777.445|102.011 +639848.467|220789.152|103.349 +639835.757|220800.902|104.559 +639831.533|220804.807|104.925 +639827.345|220808.672|104.775 +639823.120|220812.573|104.876 +639818.768|220816.599|105.491 +639805.725|220828.663|107.080 +639801.440|220832.623|107.360 +639797.133|220836.604|107.482 +639788.379|220844.702|108.719 +639783.984|220848.765|109.173 +639779.528|220852.886|109.719 +639770.755|220860.994|110.271 +639766.357|220865.063|110.850 +639761.919|220869.162|111.021 +639757.475|220873.268|111.261 +639753.117|220877.291|111.264 +639748.694|220881.376|111.395 +639744.137|220885.600|112.551 +639739.590|220889.803|112.929 +639735.158|220893.900|113.209 +639726.163|220902.209|113.706 +639721.670|220906.357|113.770 +639717.174|220910.512|113.892 +639712.688|220914.651|113.931 +639708.155|220918.839|114.002 +639703.553|220923.088|114.236 +639699.018|220927.279|114.358 +639685.234|220940.013|115.138 +639680.678|220944.219|115.123 +639676.002|220948.545|115.736 +639666.797|220957.045|115.794 +639662.140|220961.343|115.885 +639657.491|220965.644|116.394 +639652.840|220969.939|116.501 +639638.807|220982.896|116.797 +639634.135|220987.212|116.763 +639629.465|220991.518|116.693 +639624.792|220995.834|116.696 +639615.386|221004.515|116.397 +639610.677|221008.859|116.318 +639596.464|221021.980|116.166 +639591.798|221026.281|115.730 +639587.015|221030.694|115.535 +639582.273|221035.068|115.425 +639577.554|221039.418|115.062 +639572.748|221043.853|114.669 +639568.045|221048.184|114.148 +639553.579|221061.540|114.126 +639548.797|221065.954|114.056 +639543.972|221070.407|113.980 +639539.159|221074.848|113.749 +639524.586|221088.299|113.639 +639510.050|221101.713|113.276 +639505.213|221106.172|112.855 +639500.345|221110.656|112.182 +639495.466|221115.164|112.389 +639490.531|221119.724|112.749 +639475.815|221133.321|113.456 +639470.856|221137.902|113.602 +639465.988|221142.401|113.870 +639456.137|221151.496|113.968 +639446.316|221160.555|113.633 +639441.464|221165.014|111.981 +639436.554|221169.549|112.276 +639431.649|221174.067|111.563 +639426.724|221178.611|111.292 +639416.870|221187.700|110.804 +639411.950|221192.236|110.414 +639407.025|221196.780|110.158 +639402.053|221201.364|109.875 +639387.213|221215.065|109.728 +639372.366|221228.769|108.753 +639367.382|221233.378|108.972 +639362.448|221237.941|109.241 +639357.473|221242.534|109.259 +639352.505|221247.121|109.049 +639337.689|221260.752|105.153 +639322.817|221274.425|100.429 +639297.802|221297.617|106.238 +639292.785|221302.257|106.342 +639267.801|221325.363|108.110 +639257.776|221334.639|109.085 +639247.806|221343.877|110.899 +639242.801|221348.510|111.682 +639237.751|221353.183|112.023 +639227.747|221362.439|113.075 +639222.742|221367.060|112.959 +639217.740|221371.684|113.057 +639212.742|221376.305|113.233 +639202.692|221385.592|113.560 +639197.691|221390.216|113.614 +639192.695|221394.837|114.029 +639187.650|221399.500|114.322 +639157.512|221427.356|115.190 +639152.461|221432.022|115.199 +639122.399|221459.860|119.918 +639117.354|221464.523|119.960 +639107.275|221473.841|120.475 +639102.218|221478.511|120.296 +639097.164|221483.180|120.183 +639092.129|221487.834|120.390 +639087.085|221492.495|120.591 +639071.893|221506.534|120.908 +639056.912|221520.442|125.465 +639046.784|221529.790|125.060 +639041.742|221534.451|125.276 +639031.593|221543.829|125.450 +639026.557|221548.487|125.837 +639021.498|221553.162|125.797 +639016.450|221557.826|126.029 +639011.403|221562.495|126.215 +639006.346|221567.168|126.315 +639001.280|221571.850|126.273 +638996.181|221576.565|126.465 +638991.179|221581.192|126.687 +638986.071|221585.913|126.788 +638981.026|221590.583|127.093 +638976.012|221595.216|127.227 +638970.907|221599.937|127.410 +638965.890|221604.576|127.507 +638960.821|221609.261|127.580 +638955.752|221613.949|127.666 +638950.665|221618.649|127.526 +638945.581|221623.349|127.465 +638940.485|221628.055|127.306 +638935.452|221632.709|127.318 +638930.338|221637.427|126.995 +638925.248|221642.134|126.986 +638920.176|221646.815|126.620 +638915.034|221651.561|126.081 +638909.968|221656.240|125.864 +638904.902|221660.918|125.694 +638899.769|221665.658|125.343 +638894.667|221670.367|124.849 +638889.577|221675.067|124.517 +638884.459|221679.795|124.426 +638879.439|221684.434|124.359 +638874.364|221689.122|124.264 +638869.277|221693.822|124.084 +638864.248|221698.470|124.008 +638859.149|221703.179|123.758 +638854.055|221707.882|123.594 +638848.983|221712.564|123.213 +638843.838|221717.313|122.603 +638838.821|221721.946|122.338 +638833.713|221726.664|122.155 +638828.745|221731.257|122.380 +638823.722|221735.902|122.573 +638818.744|221740.514|123.167 +638813.837|221745.059|123.962 +638808.856|221749.670|124.575 +638803.980|221754.194|125.630 +638799.069|221758.741|126.416 +638794.153|221763.295|127.166 +638789.166|221767.910|127.324 +638784.232|221772.475|127.946 +638779.407|221776.950|129.068 +638774.390|221781.586|129.046 +638769.363|221786.225|128.595 +638764.325|221790.876|128.077 +638759.311|221795.503|127.806 +638754.395|221800.057|128.263 +638734.589|221818.369|128.940 +638729.621|221822.960|128.760 +638724.637|221827.562|128.504 +638719.632|221832.183|128.123 +638714.615|221836.813|127.693 +638709.632|221841.415|127.516 +638704.743|221845.935|127.684 +638699.790|221850.514|127.772 +638694.843|221855.083|127.599 +638689.951|221859.606|127.803 +638685.065|221864.120|127.742 +638679.959|221868.829|126.910 +638675.031|221873.380|126.614 +638670.166|221877.879|126.767 +638660.394|221886.913|127.184 +638655.642|221891.314|127.794 +638650.659|221895.914|127.590 +638640.930|221904.908|127.794 +638636.041|221909.425|127.617 +638631.173|221913.921|127.614 +638626.305|221918.417|127.321 +638616.418|221927.540|126.517 +638611.532|221932.051|126.191 +638606.591|221936.611|125.874 +638601.735|221941.094|125.785 +638596.770|221945.672|125.096 +638591.893|221950.174|124.929 +638582.054|221959.251|123.914 +638567.305|221972.854|122.256 +638562.404|221977.378|121.835 +638557.475|221981.922|121.311 +638552.611|221986.412|120.875 +638547.825|221990.835|120.884 +638513.550|222022.436|116.577 +638508.722|222026.896|116.303 +638503.952|222031.300|116.092 +638499.292|222035.610|116.446 +638494.647|222039.908|116.900 +638480.461|222053.014|116.882 +638475.630|222057.473|116.492 +638470.833|222061.899|116.056 +638466.047|222066.312|115.708 +638447.012|222083.884|114.526 +638442.312|222088.221|114.450 +638418.209|222110.441|110.917 +638413.466|222114.812|110.326 +638408.711|222119.201|109.920 +638404.066|222123.490|109.807 +638399.494|222127.718|110.033 +638390.335|222136.185|110.469 +638380.712|222145.049|108.515 +638361.940|222162.361|106.513 +638357.285|222166.659|106.342 +638338.595|222183.892|104.059 +638333.828|222188.284|103.096 +638329.036|222192.692|101.864 +638319.551|222201.427|99.859 +638314.662|222205.920|98.323 +638291.439|222227.326|94.808 +638273.867|222243.557|95.278 +638256.817|222259.309|96.969 +638269.195|222245.005|95.674 +638277.888|222236.961|95.144 +638281.920|222233.209|93.583 +638291.159|222224.687|94.839 +638295.560|222220.615|94.753 +638314.461|222203.198|98.701 +638319.328|222198.718|100.170 +638328.911|222189.888|102.151 +638333.773|222185.413|103.477 +638347.815|222172.459|105.373 +638357.276|222163.730|106.510 +638361.930|222159.432|106.918 +638375.954|222146.481|107.842 +638399.720|222124.548|110.408 +638404.343|222120.268|110.201 +638408.961|222116.001|110.198 +638413.740|222111.591|110.716 +638438.082|222089.124|114.587 +638442.773|222084.783|114.623 +638447.518|222080.391|114.709 +638452.356|222075.926|115.224 +638462.033|222066.983|116.123 +638466.712|222062.652|115.983 +638471.537|222058.193|116.297 +638476.380|222053.718|116.733 +638490.788|222040.389|117.098 +638495.509|222036.015|116.784 +638500.179|222031.687|116.208 +638505.019|222027.210|116.266 +638514.754|222018.212|116.970 +638519.860|222013.509|118.452 +638524.923|222008.839|119.482 +638544.375|221990.853|120.311 +638549.386|221986.226|120.960 +638554.308|221981.675|121.445 +638559.246|221977.113|121.759 +638564.163|221972.568|121.978 +638589.016|221949.613|124.737 +638593.942|221945.057|124.904 +638598.934|221940.445|125.471 +638608.874|221931.258|126.139 +638613.808|221926.695|126.459 +638618.893|221922.002|127.099 +638623.803|221917.463|127.334 +638628.799|221912.842|127.501 +638633.733|221908.279|127.623 +638638.735|221903.656|127.885 +638653.509|221889.982|127.675 +638658.529|221885.340|127.846 +638663.357|221880.869|127.440 +638668.270|221876.318|126.949 +638673.220|221871.731|126.739 +638678.216|221867.110|126.834 +638683.215|221862.495|127.282 +638688.274|221857.817|127.544 +638693.200|221853.254|127.242 +638703.176|221844.024|127.209 +638708.217|221839.364|127.440 +638713.280|221834.685|127.827 +638718.358|221829.994|128.367 +638733.464|221816.025|128.891 +638743.428|221806.808|128.821 +638748.411|221802.194|128.477 +638753.401|221797.573|128.196 +638758.394|221792.952|127.934 +638763.496|221788.237|128.562 +638768.620|221783.512|129.367 +638773.618|221778.885|129.248 +638778.483|221774.365|128.086 +638783.479|221769.738|127.574 +638788.481|221765.108|127.535 +638793.464|221760.488|126.956 +638803.327|221751.328|124.980 +638813.307|221742.078|124.002 +638828.263|221728.212|122.530 +638833.326|221723.521|122.313 +638838.392|221718.837|122.588 +638843.525|221714.094|123.072 +638848.590|221709.409|123.411 +638858.783|221699.982|123.847 +638863.894|221695.257|124.261 +638868.978|221690.554|124.420 +638879.122|221681.169|124.606 +638884.191|221676.479|124.724 +638889.248|221671.806|125.227 +638894.347|221667.085|125.206 +638899.428|221662.388|125.529 +638904.515|221657.685|125.953 +638914.695|221648.266|126.437 +638919.807|221643.542|126.681 +638924.882|221638.851|127.093 +638929.929|221634.178|127.245 +638940.122|221624.751|127.623 +638945.145|221620.100|127.547 +638950.226|221615.400|127.599 +638955.301|221610.703|127.611 +638960.318|221606.057|127.529 +638965.387|221601.367|127.489 +638970.443|221596.682|127.340 +638975.503|221591.997|127.239 +638980.529|221587.340|126.672 +638985.586|221582.655|126.568 +638990.652|221577.967|126.614 +638995.711|221573.285|126.544 +639000.750|221568.616|126.230 +639005.809|221563.934|126.245 +639010.909|221559.213|126.130 +639015.904|221554.586|125.944 +639020.998|221549.870|125.779 +639026.042|221545.198|125.602 +639031.087|221540.525|125.468 +639041.224|221531.140|125.200 +639046.211|221526.520|124.941 +639071.360|221503.190|121.036 +639081.449|221493.851|120.835 +639086.484|221489.185|120.570 +639091.532|221484.515|120.582 +639096.607|221479.812|120.311 +639101.657|221475.139|120.421 +639106.705|221470.470|120.503 +639116.772|221461.143|119.970 +639121.814|221456.477|119.835 +639157.042|221423.805|115.257 +639177.211|221405.136|114.764 +639192.287|221391.179|113.956 +639197.325|221386.510|113.553 +639202.369|221381.843|113.523 +639207.417|221377.173|113.602 +639212.458|221372.504|113.127 +639217.454|221367.880|112.977 +639222.498|221363.211|112.910 +639242.539|221344.651|111.618 +639247.541|221340.012|110.725 +639257.550|221330.728|109.167 +639262.607|221326.037|108.183 +639287.561|221302.930|106.869 +639292.578|221298.282|106.321 +639297.595|221293.634|105.900 +639327.493|221265.936|103.388 +639332.446|221261.364|104.208 +639337.335|221256.890|107.528 +639352.136|221243.223|109.442 +639357.065|221238.660|109.131 +639361.978|221234.115|109.341 +639366.959|221229.504|109.018 +639371.881|221224.950|109.067 +639386.573|221211.374|110.039 +639396.363|221202.319|110.380 +639406.122|221193.290|110.387 +639410.996|221188.785|110.621 +639415.864|221184.283|110.908 +639420.722|221179.800|111.502 +639425.605|221175.283|111.527 +639430.415|221170.842|112.100 +639435.249|221166.370|112.188 +639440.150|221161.829|111.880 +639444.890|221157.473|113.809 +639449.666|221153.057|114.066 +639454.552|221148.536|114.148 +639464.214|221139.594|113.779 +639469.018|221135.147|113.681 +639473.828|221130.696|113.544 +639488.224|221117.368|113.017 +639493.049|221112.899|112.746 +639497.834|221108.467|112.392 +639502.616|221104.051|112.828 +639507.341|221099.686|113.380 +639512.050|221095.334|113.520 +639516.820|221090.920|113.486 +639521.566|221086.531|113.782 +639540.381|221069.136|114.285 +639545.112|221064.762|114.282 +639549.836|221060.397|114.386 +639554.509|221056.081|114.556 +639559.202|221051.741|114.495 +639563.884|221047.413|114.575 +639568.542|221043.103|114.410 +639577.804|221034.556|115.309 +639582.453|221030.259|115.315 +639587.058|221026.004|115.782 +639591.685|221021.730|116.053 +639596.248|221017.521|116.513 +639610.141|221004.677|116.358 +639614.749|221000.416|116.422 +639628.474|220987.730|116.708 +639633.059|220983.490|116.620 +639637.625|220979.272|116.720 +639642.203|220975.041|116.729 +639646.747|220970.835|116.598 +639651.353|220966.577|116.403 +639655.855|220962.413|116.291 +639660.445|220958.161|115.827 +639669.485|220949.806|115.815 +639678.565|220941.400|115.111 +639683.101|220937.203|114.855 +639687.648|220932.997|114.523 +639692.102|220928.879|114.584 +639696.597|220924.718|114.303 +639701.081|220920.570|114.157 +639709.999|220912.325|113.950 +639714.483|220908.177|113.858 +639718.872|220904.120|113.788 +639723.322|220900.002|113.624 +639727.775|220895.884|113.477 +639736.666|220887.658|112.959 +639741.104|220883.552|112.630 +639745.554|220879.422|111.840 +639750.026|220875.283|111.319 +639754.433|220871.211|111.286 +639758.813|220867.157|111.100 +639763.202|220863.094|110.865 +639785.133|220842.791|108.820 +639789.534|220838.716|108.320 +639793.905|220834.665|107.701 +639802.595|220826.627|107.259 +639819.929|220810.570|104.949 +639824.163|220806.657|105.068 +639862.531|220771.138|101.688 +639875.357|220759.251|99.551 +639879.155|220755.770|101.313 +639883.212|220752.027|101.840 +639887.311|220748.245|102.133 +639891.365|220744.502|102.407 +639895.455|220740.722|102.483 +639899.537|220736.952|102.636 +639903.545|220733.252|102.916 +639907.562|220729.542|103.157 +639911.607|220725.805|103.276 +639915.645|220722.075|103.428 +639919.626|220718.399|103.635 +639923.680|220714.656|103.739 +639927.572|220711.062|104.175 +639931.532|220707.411|104.541 +639951.039|220689.409|106.439 +639954.931|220685.816|106.680 +639962.841|220678.506|106.567 +639966.727|220674.913|106.613 +639970.616|220671.322|106.668 +639978.291|220664.233|107.073 +639985.798|220657.308|107.854 +639989.712|220653.687|107.592 +639993.476|220650.212|107.829 +639997.259|220646.719|107.994 +640001.078|220643.189|107.982 +640004.769|220639.782|108.354 +640012.218|220632.902|108.564 +640015.931|220629.476|108.878 +640019.634|220626.056|108.994 +640034.521|220612.289|108.479 +639888.948|220744.752|102.471 +639884.897|220748.486|102.157 +639880.813|220752.247|101.742 +639876.750|220755.987|101.224 +639860.068|220771.373|101.221 +639834.419|220795.077|104.141 +639821.547|220806.962|104.931 +639817.338|220810.845|104.928 +639804.235|220822.961|106.872 +639799.940|220826.926|107.192 +639795.670|220830.870|107.375 +639786.901|220838.972|108.344 +639782.490|220843.050|108.893 +639756.204|220867.330|111.045 +639751.821|220871.375|111.203 +639747.469|220875.389|111.167 +639742.927|220879.593|112.182 +639738.468|220883.713|112.627 +639734.027|220887.816|112.944 +639729.595|220891.910|113.236 +639725.130|220896.030|113.425 +639720.683|220900.133|113.493 +639716.214|220904.263|113.764 +639711.731|220908.396|113.770 +639707.284|220912.505|113.919 +639702.806|220916.632|113.913 +639698.310|220920.786|114.108 +639693.818|220924.932|114.285 +639689.294|220929.104|114.328 +639680.196|220937.508|114.934 +639675.645|220941.711|115.282 +639671.061|220945.945|115.541 +639666.486|220950.169|115.742 +639662.003|220954.305|115.596 +639652.791|220962.809|116.220 +639643.583|220971.307|116.467 +639634.357|220979.823|116.559 +639629.727|220984.097|116.571 +639625.146|220988.321|116.592 +639620.480|220992.628|116.528 +639615.856|220996.889|116.513 +639611.208|221001.174|116.306 +639606.489|221005.533|116.352 +639592.462|221018.469|116.239 +639587.799|221022.767|115.785 +639583.068|221027.125|115.501 +639578.387|221031.441|115.266 +639573.623|221035.833|114.898 +639568.950|221040.137|114.562 +639564.149|221044.569|114.639 +639559.404|221048.946|114.645 +639554.615|221053.366|114.617 +639540.241|221066.621|114.175 +639535.480|221071.010|113.904 +639516.183|221088.811|113.742 +639511.321|221093.294|113.605 +639506.463|221097.775|113.474 +639501.674|221102.185|113.008 +639496.798|221106.678|112.465 +639491.915|221111.186|112.731 +639487.029|221115.697|113.044 +639472.322|221129.273|113.566 +639467.363|221133.854|113.715 +639462.459|221138.377|113.755 +639457.548|221142.910|113.904 +639437.874|221161.036|111.990 +639432.869|221165.654|112.246 +639427.928|221170.214|112.234 +639422.963|221174.789|111.810 +639418.043|221179.321|111.365 +639413.081|221183.893|110.859 +639408.101|221188.484|110.697 +639393.168|221202.255|110.277 +639388.185|221206.854|110.344 +639383.183|221211.459|109.652 +639373.180|221220.680|109.497 +639363.185|221229.888|109.106 +639358.156|221234.527|109.271 +639353.121|221239.178|109.686 +639348.091|221243.817|109.865 +639343.068|221248.450|109.945 +639333.107|221257.585|106.613 +639318.090|221271.368|101.861 +639307.955|221280.738|103.660 +639302.914|221285.398|104.623 +639292.801|221294.746|106.305 +639287.729|221299.428|106.714 +639282.706|221304.064|107.095 +639262.494|221322.715|107.909 +639257.428|221327.400|108.920 +639242.249|221341.433|111.560 +639232.185|221350.714|111.572 +639222.078|221360.047|112.791 +639217.027|221364.707|112.950 +639212.019|221369.325|113.054 +639201.918|221378.646|113.468 +639196.865|221383.306|113.572 +639191.817|221387.966|113.907 +639186.767|221392.624|114.081 +639181.765|221397.239|114.410 +639171.670|221406.556|114.940 +639156.564|221420.489|115.230 +639136.514|221439.033|119.406 +639121.375|221452.996|119.814 +639116.367|221457.613|119.713 +639106.339|221466.870|120.500 +639101.285|221471.528|120.503 +639096.277|221476.145|120.421 +639086.185|221485.451|120.668 +639081.184|221490.066|120.796 +639071.137|221499.335|121.167 +639046.183|221522.396|124.950 +639041.169|221527.017|124.901 +639036.137|221531.662|125.386 +639031.126|221536.282|125.398 +639026.121|221540.900|125.508 +639021.071|221545.558|125.718 +639016.115|221550.130|125.925 +639011.064|221554.790|126.136 +639006.053|221559.411|126.230 +639001.036|221564.035|126.255 +638991.018|221573.273|126.617 +638985.991|221577.903|126.575 +638980.910|221582.585|126.468 +638975.939|221587.166|126.587 +638970.928|221591.787|126.812 +638965.896|221596.435|127.419 +638960.918|221601.022|127.468 +638955.889|221605.658|127.526 +638950.857|221610.294|127.559 +638945.828|221614.930|127.617 +638940.786|221619.575|127.577 +638935.754|221624.214|127.647 +638930.697|221628.872|127.462 +638925.684|221633.493|127.236 +638920.618|221638.156|127.001 +638915.552|221642.819|126.824 +638910.517|221647.455|126.450 +638905.448|221652.125|126.261 +638900.370|221656.801|126.005 +638895.374|221661.400|125.630 +638890.308|221666.067|125.596 +638885.218|221670.754|125.279 +638875.099|221680.075|124.944 +638870.118|221684.662|124.871 +638859.981|221693.998|124.505 +638854.976|221698.610|124.261 +638849.852|221703.325|123.877 +638844.841|221707.940|123.652 +638839.760|221712.616|123.255 +638834.670|221717.300|122.792 +638829.644|221721.930|122.512 +638814.620|221735.784|123.188 +638809.722|221740.310|124.109 +638804.745|221744.906|124.788 +638799.840|221749.439|125.648 +638794.878|221754.017|126.053 +638785.039|221763.106|127.580 +638780.056|221767.702|127.846 +638775.027|221772.332|127.775 +638770.171|221776.822|128.690 +638765.264|221781.354|129.607 +638760.250|221785.972|129.299 +638755.135|221790.675|128.662 +638750.185|221795.238|128.534 +638745.159|221799.871|128.611 +638740.225|221804.419|128.659 +638735.272|221808.985|128.952 +638715.283|221827.398|128.355 +638710.293|221831.991|128.153 +638705.300|221836.584|127.617 +638700.259|221841.220|127.126 +638695.266|221845.823|126.977 +638690.353|221850.349|127.065 +638685.434|221854.884|127.123 +638680.401|221859.517|126.794 +638675.421|221864.102|126.514 +638670.526|221868.616|126.803 +638665.698|221873.072|127.215 +638660.754|221877.626|127.242 +638650.964|221886.654|127.629 +638646.072|221891.162|127.721 +638641.152|221895.694|127.672 +638631.365|221904.713|127.632 +638626.421|221909.270|127.492 +638621.483|221913.818|127.111 +638616.564|221918.347|126.876 +638611.602|221922.916|126.416 +638606.679|221927.451|126.206 +638601.790|221931.953|125.944 +638596.819|221936.528|125.508 +638586.934|221945.630|124.767 +638582.064|221950.113|124.423 +638562.346|221968.264|122.536 +638537.931|221990.740|120.570 +638513.404|222013.308|117.629 +638508.475|222017.843|117.114 +638498.938|222026.633|116.992 +638494.065|222031.120|116.568 +638489.404|222035.421|116.982 +638484.771|222039.694|117.284 +638479.992|222044.102|117.388 +638475.213|222048.503|117.010 +638470.439|222052.898|116.690 +638465.617|222057.339|116.406 +638446.513|222074.929|115.166 +638441.767|222079.300|114.873 +638437.097|222083.604|114.721 +638432.388|222087.941|114.645 +638403.621|222114.404|110.944 +638398.997|222118.662|110.722 +638394.337|222122.960|110.804 +638389.649|222127.276|110.563 +638380.478|222135.731|110.566 +638356.737|222157.558|106.839 +638352.125|222161.806|106.653 +638347.398|222166.153|106.004 +638323.666|222187.964|101.459 +638309.224|222201.220|97.734 +638304.360|222205.686|96.347 +638299.696|222209.971|95.585 +638295.075|222214.223|95.003 +638281.356|222226.845|93.559 +638277.214|222230.679|94.711 +638272.907|222234.654|95.028 +638260.008|222246.568|96.155 +638243.204|222262.104|98.704 +638271.310|222233.791|94.881 +638275.650|222229.774|94.699 +638298.111|222209.020|95.543 +638302.750|222204.738|96.232 +638312.382|222195.871|98.874 +638322.047|222186.974|101.569 +638345.739|222165.126|105.571 +638355.203|222156.393|106.961 +638364.570|222147.746|107.811 +638369.163|222143.500|107.768 +638379.045|222134.405|110.521 +638383.672|222130.125|110.472 +638392.996|222121.509|110.749 +638397.674|222117.187|110.984 +638402.371|222112.843|111.100 +638407.044|222108.524|111.130 +638417.160|222099.225|114.721 +638431.205|222086.246|114.514 +638435.942|222081.872|114.748 +638440.718|222077.462|114.940 +638445.507|222073.042|115.202 +638450.280|222068.638|115.678 +638459.912|222059.750|116.352 +638469.574|222050.832|117.028 +638474.341|222046.427|117.101 +638479.145|222041.995|117.360 +638483.909|222037.591|117.208 +638488.627|222033.223|116.851 +638493.403|222028.813|116.787 +638507.988|222015.350|117.775 +638512.865|222010.845|117.805 +638537.557|221988.070|120.415 +638557.292|221969.864|122.231 +638562.294|221965.247|122.658 +638577.196|221951.506|124.319 +638582.060|221947.010|124.368 +638587.010|221942.441|124.624 +638592.040|221937.805|125.374 +638596.965|221933.258|125.547 +638601.912|221928.689|125.889 +638616.838|221914.915|126.949 +638621.785|221910.349|127.084 +638626.772|221905.747|127.489 +638641.576|221892.070|127.620 +638646.507|221887.513|127.483 +638651.491|221882.914|127.687 +638656.368|221878.400|127.242 +638661.293|221873.849|127.129 +638666.219|221869.295|127.041 +638671.160|221864.729|126.736 +638676.113|221860.151|126.538 +638681.124|221855.525|126.748 +638686.125|221850.904|126.916 +638691.069|221846.335|126.736 +638696.111|221841.680|126.879 +638701.152|221837.029|127.391 +638706.242|221832.335|127.955 +638711.272|221827.696|128.443 +638716.313|221823.042|128.729 +638731.324|221809.177|128.885 +638736.351|221804.531|128.800 +638741.319|221799.938|128.675 +638746.296|221795.342|128.620 +638751.350|221790.675|128.793 +638756.440|221785.981|129.287 +638761.484|221781.321|129.467 +638766.367|221776.798|128.394 +638776.304|221767.608|127.629 +638781.333|221762.963|127.772 +638791.303|221753.736|126.572 +638796.223|221749.183|125.852 +638801.179|221744.592|125.047 +638816.083|221730.800|122.932 +638821.180|221726.091|122.954 +638826.184|221721.467|122.594 +638831.244|221716.795|122.761 +638836.377|221712.061|123.197 +638841.501|221707.334|123.551 +638846.637|221702.597|124.081 +638851.739|221697.891|124.310 +638856.777|221693.240|124.420 +638861.898|221688.518|124.898 +638866.973|221683.830|124.950 +638872.072|221679.127|125.279 +638877.126|221674.458|125.182 +638882.201|221669.773|125.322 +638887.282|221665.085|125.529 +638892.405|221660.355|125.742 +638897.514|221655.645|126.337 +638902.570|221650.979|126.373 +638912.702|221641.628|126.776 +638917.820|221636.906|127.065 +638922.940|221632.182|127.431 +638927.979|221627.528|127.425 +638933.072|221622.824|127.507 +638938.113|221618.170|127.571 +638943.197|221613.476|127.632 +638948.272|221608.788|127.565 +638953.347|221604.101|127.532 +638958.416|221599.419|127.410 +638963.454|221594.758|126.965 +638968.474|221590.122|126.879 +638973.574|221585.407|126.611 +638978.633|221580.735|126.434 +638983.711|221576.047|126.568 +638988.774|221571.371|126.520 +638998.891|221562.026|126.300 +639003.956|221557.347|126.325 +639009.050|221552.641|126.084 +639014.057|221548.014|125.995 +639019.154|221543.305|125.822 +639024.198|221538.645|125.587 +639029.243|221533.984|125.358 +639034.299|221529.315|125.380 +639049.490|221515.282|125.026 +639069.467|221496.777|121.183 +639074.518|221492.114|121.103 +639079.559|221487.456|120.872 +639084.607|221482.793|120.796 +639089.645|221478.139|120.655 +639094.686|221473.478|120.430 +639099.691|221468.858|120.536 +639104.793|221464.148|120.677 +639109.817|221459.500|119.970 +639114.812|221454.885|119.759 +639119.896|221450.185|119.433 +639124.910|221445.562|119.872 +639129.943|221440.907|119.396 +639145.036|221426.944|117.693 +639155.028|221417.685|115.242 +639160.072|221413.024|115.029 +639175.120|221399.119|114.818 +639180.162|221394.456|114.450 +639185.157|221389.835|114.047 +639190.205|221385.171|113.898 +639195.203|221380.551|113.691 +639200.202|221375.927|113.368 +639205.201|221371.306|113.163 +639210.154|221366.728|113.172 +639215.201|221362.061|112.868 +639220.157|221357.483|112.627 +639260.062|221320.551|108.000 +639284.943|221297.550|106.830 +639289.914|221292.951|106.485 +639299.872|221283.728|104.897 +639324.661|221260.813|103.733 +639329.572|221256.317|106.555 +639339.377|221247.307|109.963 +639344.300|221242.756|109.917 +639349.225|221238.206|109.838 +639354.151|221233.658|109.811 +639359.086|221229.092|109.448 +639364.020|221224.532|109.192 +639368.882|221220.049|109.722 +639403.148|221188.410|111.002 +639408.034|221183.896|111.018 +639412.916|221179.385|111.075 +639417.781|221174.902|111.609 +639422.637|221170.424|112.231 +639427.526|221165.907|112.240 +639432.372|221161.430|112.194 +639437.215|221156.967|113.090 +639446.838|221148.098|114.328 +639451.724|221143.583|114.425 +639456.582|221139.094|114.242 +639461.471|221134.567|113.553 +639471.167|221125.612|113.694 +639480.844|221116.670|113.438 +639485.724|221112.155|113.112 +639490.564|221107.681|112.700 +639495.377|221103.237|112.727 +639500.144|221098.839|113.395 +639504.942|221094.413|113.678 +639509.700|221090.018|113.825 +639514.506|221085.580|113.992 +639519.316|221081.133|113.520 +639533.541|221067.999|114.267 +639538.357|221063.552|114.419 +639552.539|221050.446|114.666 +639557.261|221046.084|114.864 +639561.997|221041.707|114.913 +639566.765|221037.296|114.623 +639571.443|221032.977|114.849 +639576.125|221028.649|115.007 +639580.859|221024.281|115.199 +639585.461|221020.033|115.724 +639590.158|221015.698|116.309 +639599.470|221007.094|116.358 +639604.133|221002.784|116.330 +639608.803|220998.465|116.254 +639618.111|220989.860|116.025 +639622.692|220985.633|116.431 +639627.356|220981.320|116.495 +639631.937|220977.086|116.467 +639641.157|220968.561|116.355 +639645.751|220964.315|116.272 +639650.353|220960.060|116.135 +639654.965|220955.790|115.513 +639659.509|220951.586|115.480 +639668.656|220943.134|115.455 +639673.204|220938.925|115.068 +639677.791|220934.679|114.776 +639682.345|220930.464|114.383 +639686.868|220926.282|114.279 +639691.337|220922.152|114.245 +639695.881|220917.949|114.014 +639700.380|220913.788|113.779 +639704.854|220909.652|113.767 +639709.338|220905.507|113.700 +639718.305|220897.210|113.230 +639722.664|220893.187|113.441 +639731.668|220884.853|112.828 +639740.495|220876.688|112.182 +639745.058|220872.454|110.987 +639749.441|220868.403|111.121 +639753.854|220864.322|111.054 +639788.885|220831.897|107.790 +639793.219|220827.883|107.442 +639810.614|220811.777|105.315 +639814.857|220807.852|105.043 +639831.853|220792.127|104.019 +639848.854|220776.387|102.361 +639853.091|220772.461|101.691 +639857.322|220768.542|101.096 +639865.762|220760.726|100.115 +639873.714|220753.402|101.791 +639877.719|220749.708|102.312 +639881.681|220746.053|102.800 +639885.766|220742.283|102.904 +639889.807|220738.549|102.953 +639893.843|220734.821|103.062 +639897.882|220731.091|103.172 +639901.826|220727.451|103.532 +639905.846|220723.742|103.782 +639913.765|220716.430|104.123 +639917.794|220712.702|104.059 +639921.751|220709.047|104.138 +639925.731|220705.369|104.105 +639941.060|220691.241|106.464 +639948.674|220684.215|107.287 +639956.483|220676.998|107.134 +639960.387|220673.389|107.067 +639964.267|220669.798|106.887 +639971.930|220662.724|107.086 +639987.054|220648.758|107.854 +639990.849|220645.253|107.939 +640031.585|220607.622|108.844 +640035.255|220604.224|108.451 +639886.766|220739.820|102.959 +639882.584|220743.667|102.800 +639878.393|220747.519|102.712 +639874.324|220751.253|101.941 +639861.888|220762.671|100.093 +639853.189|220770.687|101.075 +639844.407|220778.792|102.681 +639835.641|220786.872|103.672 +639831.252|220790.917|104.086 +639813.787|220807.004|105.074 +639809.422|220811.019|105.120 +639791.622|220827.429|107.150 +639787.148|220831.553|107.707 +639782.761|220835.598|108.055 +639778.250|220839.752|108.576 +639760.362|220856.239|110.259 +639751.398|220864.496|110.859 +639746.911|220868.632|111.066 +639742.421|220872.765|111.307 +639737.852|220876.983|112.161 +639733.317|220881.159|112.420 +639728.830|220885.295|112.718 +639724.319|220889.453|113.212 +639719.832|220893.586|113.194 +639715.349|220897.710|113.142 +639710.838|220901.867|113.358 +639706.330|220906.019|113.544 +639701.776|220910.213|113.739 +639697.256|220914.376|113.709 +639692.748|220918.528|113.959 +639688.212|220922.707|114.099 +639683.677|220926.882|114.224 +639679.154|220931.049|114.303 +639674.585|220935.261|114.782 +639665.456|220943.671|115.306 +639660.881|220947.886|115.516 +639656.339|220952.065|115.431 +639651.749|220956.296|115.791 +639647.180|220960.505|115.995 +639642.572|220964.751|116.166 +639638.027|220968.933|116.184 +639633.488|220973.112|116.202 +639624.311|220981.564|116.312 +639605.889|220998.514|115.977 +639601.295|221002.750|116.224 +639596.669|221007.008|116.306 +639592.011|221011.297|116.254 +639587.415|221015.525|116.053 +639582.821|221019.743|115.343 +639578.173|221024.019|115.218 +639573.531|221028.293|115.059 +639568.846|221032.602|114.858 +639564.177|221036.900|115.013 +639559.492|221041.213|114.861 +639554.783|221045.550|115.004 +639550.092|221049.866|114.940 +639531.277|221067.179|114.376 +639526.552|221071.529|114.236 +639512.275|221084.672|114.075 +639507.554|221089.015|113.974 +639502.796|221093.392|113.730 +639498.002|221097.799|113.346 +639493.268|221102.149|112.791 +639488.446|221106.590|112.840 +639483.648|221111.012|113.255 +639478.820|221115.459|113.471 +639469.131|221124.381|113.700 +639459.389|221133.360|114.203 +639449.633|221142.340|114.215 +639439.913|221151.280|113.669 +639435.036|221155.766|113.313 +639430.098|221160.311|113.194 +639425.310|221164.703|112.017 +639415.449|221173.774|111.545 +639410.530|221178.297|111.091 +639405.589|221182.845|111.069 +639400.642|221187.405|111.301 +639395.643|221192.007|111.572 +639365.922|221219.360|109.609 +639360.905|221223.978|109.314 +639355.916|221228.580|109.634 +639350.932|221233.177|109.847 +639345.857|221237.852|109.929 +639335.857|221247.066|109.963 +639325.905|221256.183|106.089 +639320.934|221260.731|103.657 +639310.887|221269.948|100.798 +639290.502|221288.809|106.250 +639285.431|221293.490|106.680 +639259.995|221316.942|107.796 +639249.815|221326.348|109.579 +639224.333|221349.866|112.182 +639219.231|221354.573|112.514 +639214.129|221359.276|112.737 +639209.075|221363.939|113.121 +639203.924|221368.685|113.054 +639198.824|221373.388|113.258 +639193.774|221378.045|113.654 +639188.626|221382.791|113.910 +639183.527|221387.494|114.096 +639178.479|221392.151|114.562 +639173.383|221396.851|114.849 +639158.033|221410.997|115.114 +639152.937|221415.700|115.285 +639127.541|221439.158|119.427 +639122.402|221443.897|119.677 +639117.296|221448.600|119.509 +639112.252|221453.249|119.811 +639107.116|221457.988|120.192 +639102.029|221462.679|120.591 +639096.930|221467.379|120.613 +639091.836|221472.076|120.844 +639086.737|221476.773|120.744 +639081.638|221481.473|120.847 +639076.545|221486.170|121.097 +639071.442|221490.873|121.207 +639056.330|221504.842|124.453 +639051.271|221509.506|124.383 +639036.085|221523.505|125.145 +639030.980|221528.211|125.166 +639025.935|221532.866|125.447 +639020.940|221537.471|125.794 +639015.837|221542.174|125.965 +639010.778|221546.838|126.047 +639005.724|221551.498|126.227 +638995.650|221560.785|126.453 +638990.582|221565.458|126.447 +638985.516|221570.128|126.532 +638980.490|221574.760|126.486 +638975.409|221579.442|126.398 +638970.349|221584.109|126.617 +638965.381|221588.690|126.815 +638960.324|221593.353|127.108 +638955.286|221597.995|127.041 +638950.287|221602.613|127.465 +638945.258|221607.246|127.565 +638940.226|221611.885|127.617 +638935.239|221616.482|127.669 +638930.195|221621.133|127.602 +638925.184|221625.748|127.416 +638920.139|221630.396|127.425 +638915.119|221635.023|127.166 +638910.053|221639.686|127.001 +638905.012|221644.325|126.575 +638899.998|221648.946|126.483 +638894.978|221653.573|126.349 +638889.930|221658.221|125.941 +638884.941|221662.814|125.700 +638879.912|221667.447|125.541 +638874.937|221672.031|125.486 +638869.905|221676.668|125.386 +638864.873|221681.304|125.294 +638859.871|221685.909|125.047 +638854.808|221690.573|124.697 +638849.797|221695.187|124.420 +638844.783|221699.805|124.164 +638839.757|221704.432|123.810 +638834.737|221709.056|123.527 +638829.693|221713.698|123.066 +638824.663|221718.328|122.795 +638819.668|221722.933|122.829 +638814.767|221727.456|123.292 +638809.734|221732.099|123.456 +638804.864|221736.597|124.197 +638799.944|221741.142|124.947 +638785.253|221754.709|127.004 +638780.370|221759.220|127.663 +638775.359|221763.837|127.730 +638770.461|221768.358|127.916 +638765.505|221772.927|128.062 +638760.533|221777.508|128.102 +638755.721|221781.961|129.382 +638750.798|221786.499|129.461 +638745.787|221791.114|129.254 +638740.801|221795.707|128.891 +638730.858|221804.870|128.842 +638716.042|221818.522|128.772 +638701.076|221832.302|127.858 +638696.080|221836.898|127.334 +638691.027|221841.546|126.797 +638686.068|221846.115|126.575 +638681.075|221850.715|126.495 +638676.186|221855.223|126.468 +638671.285|221859.740|126.718 +638666.350|221864.291|126.751 +638661.415|221868.838|126.818 +638656.514|221873.355|126.803 +638651.643|221877.851|127.297 +638641.884|221886.849|127.644 +638617.323|221909.474|127.239 +638612.388|221914.016|126.913 +638607.395|221918.606|126.291 +638602.439|221923.166|125.892 +638597.544|221927.674|125.892 +638592.634|221932.194|125.532 +638587.647|221936.778|125.051 +638582.713|221941.320|124.596 +638577.830|221945.813|124.185 +638572.968|221950.293|124.206 +638563.056|221959.407|122.993 +638533.713|221986.409|121.058 +638523.862|221995.465|119.814 +638518.991|221999.945|119.253 +638514.041|222004.493|118.577 +638509.106|222009.031|118.013 +638499.837|222017.590|119.457 +638489.831|222026.774|117.046 +638485.042|222031.187|117.062 +638480.370|222035.494|117.437 +638475.636|222039.856|117.525 +638470.903|222044.217|117.632 +638461.186|222053.151|116.455 +638442.130|222070.692|115.468 +638437.378|222075.063|115.160 +638432.650|222079.416|114.989 +638413.963|222096.631|115.029 +638403.959|222105.799|111.764 +638394.663|222114.358|111.533 +638389.902|222118.735|110.963 +638380.578|222127.315|110.509 +638375.887|222131.634|110.304 +638371.279|222135.877|110.252 +638361.711|222144.668|108.482 +638352.229|222153.382|107.180 +638342.743|222162.096|105.540 +638318.941|222183.953|100.764 +638314.287|222188.230|100.148 +638309.352|222192.753|98.432 +638299.769|222201.540|95.817 +638295.197|222205.747|95.424 +638290.613|222209.962|95.000 +638281.301|222218.518|93.449 +638272.874|222226.299|95.000 +638259.865|222238.284|95.695 +638255.585|222242.231|96.174 +638251.321|222246.160|96.524 +638268.320|222228.189|94.979 +638281.414|222216.088|94.330 +638290.497|222207.709|95.012 +638295.082|222203.482|95.457 +638299.715|222199.212|96.113 +638309.300|222190.397|98.554 +638314.174|222185.916|100.054 +638318.829|222181.631|100.676 +638352.305|222150.809|107.345 +638371.327|222133.286|110.362 +638375.951|222129.019|110.502 +638380.639|222124.694|110.713 +638385.321|222120.375|110.911 +638404.240|222102.928|112.581 +638409.424|222098.176|114.916 +638414.143|222093.821|115.202 +638432.909|222076.487|115.111 +638437.698|222072.067|115.349 +638442.434|222067.696|115.608 +638456.851|222054.392|116.531 +638461.695|222049.923|116.906 +638471.418|222040.956|117.909 +638476.151|222036.579|117.571 +638480.879|222032.208|117.226 +638485.643|222027.810|117.315 +638490.590|222023.253|118.098 +638505.043|222009.903|118.153 +638509.902|222005.419|118.330 +638514.840|222000.869|118.933 +638519.777|221996.315|119.570 +638524.673|221991.804|120.009 +638534.682|221982.581|121.612 +638559.188|221959.964|122.816 +638564.044|221955.481|122.993 +638569.113|221950.814|123.810 +638574.005|221946.297|123.965 +638583.923|221937.150|124.819 +638588.906|221932.554|125.282 +638593.920|221927.930|125.657 +638608.801|221914.199|126.623 +638613.796|221909.590|127.001 +638638.656|221886.642|127.724 +638648.495|221877.552|127.266 +638653.378|221873.035|126.852 +638658.300|221868.488|126.684 +638663.284|221863.882|126.632 +638668.240|221859.307|126.739 +638673.211|221854.717|126.626 +638678.115|221850.184|126.447 +638683.151|221845.533|126.492 +638688.143|221840.931|126.925 +638693.209|221836.255|127.233 +638698.260|221831.601|127.797 +638713.387|221817.647|128.812 +638723.384|221808.415|128.784 +638728.456|221803.733|128.995 +638733.427|221799.139|128.839 +638738.502|221794.458|129.104 +638743.550|221789.803|129.562 +638748.634|221785.109|129.589 +638753.496|221780.605|128.708 +638758.506|221775.972|128.199 +638763.520|221771.342|128.117 +638768.513|221766.724|127.916 +638773.579|221762.048|127.900 +638778.596|221757.409|127.516 +638783.616|221752.770|127.151 +638788.581|221748.174|126.386 +638793.537|221743.590|125.508 +638798.515|221738.984|124.834 +638803.507|221734.366|124.298 +638808.488|221729.761|123.673 +638818.561|221720.449|123.018 +638823.639|221715.761|122.853 +638828.736|221711.061|123.325 +638838.983|221701.609|123.990 +638844.110|221696.882|124.404 +638849.221|221692.167|124.697 +638854.336|221687.451|125.054 +638859.444|221682.742|125.358 +638864.592|221677.990|125.651 +638869.689|221673.293|125.904 +638890.074|221654.478|126.297 +638895.191|221649.754|126.453 +638900.330|221645.017|126.824 +638905.448|221640.296|127.029 +638910.556|221635.583|127.141 +638915.662|221630.868|127.279 +638920.840|221626.095|127.696 +638925.940|221621.389|127.806 +638931.018|221616.698|127.696 +638936.156|221611.958|127.718 +638941.228|221607.274|127.574 +638951.412|221597.867|127.199 +638956.538|221593.134|127.202 +638961.607|221588.452|127.047 +638966.704|221583.743|126.687 +638971.757|221579.073|126.364 +638976.878|221574.346|126.367 +638981.956|221569.658|126.450 +638987.089|221564.922|126.660 +638992.130|221560.264|126.227 +638997.245|221555.543|126.181 +639002.316|221550.861|126.279 +639007.416|221546.152|126.059 +639022.665|221532.064|125.474 +639032.821|221522.685|125.258 +639068.269|221489.910|121.378 +639083.506|221475.834|120.826 +639088.599|221471.134|120.771 +639093.653|221466.468|120.802 +639098.746|221461.762|120.628 +639108.875|221452.401|119.954 +639113.916|221447.744|119.628 +639118.958|221443.087|119.284 +639124.014|221438.420|119.421 +639154.217|221410.482|115.291 +639159.219|221405.861|115.050 +639174.328|221391.920|114.843 +639179.372|221387.256|114.419 +639184.371|221382.639|113.947 +639189.373|221378.018|113.575 +639199.376|221368.779|113.035 +639204.430|221364.116|112.883 +639214.394|221354.917|112.535 +639219.399|221350.296|112.221 +639224.406|221345.672|112.023 +639229.414|221341.052|111.987 +639249.312|221322.657|109.451 +639259.248|221313.470|108.192 +639264.219|221308.880|107.835 +639279.133|221295.103|106.842 +639284.059|221290.555|106.558 +639288.985|221286.008|106.388 +639313.719|221263.148|103.492 +639318.596|221258.649|103.681 +639323.464|221254.196|106.397 +639338.112|221240.729|109.795 +639342.940|221236.276|109.902 +639347.866|221231.732|109.917 +639352.752|221227.221|109.719 +639357.644|221222.704|109.439 +639362.518|221218.208|109.643 +639367.398|221213.706|109.731 +639372.274|221209.213|109.972 +639377.148|221204.720|110.280 +639386.853|221195.768|110.688 +639401.432|221182.330|111.542 +639406.241|221177.892|111.246 +639411.124|221173.387|111.380 +639420.786|221164.478|111.923 +639435.155|221151.243|113.386 +639439.977|221146.802|113.907 +639449.538|221137.990|114.623 +639454.357|221133.540|114.367 +639459.179|221129.084|114.038 +639463.995|221124.640|113.910 +639473.584|221115.789|113.593 +639478.406|221111.339|113.474 +639483.191|221106.919|113.179 +639488.022|221102.457|112.916 +639492.792|221098.058|112.932 +639497.553|221093.675|113.764 +639502.257|221089.341|114.075 +639507.072|221084.900|114.145 +639511.803|221080.535|114.108 +639526.116|221067.331|114.386 +639530.883|221062.936|114.581 +639549.805|221045.483|114.892 +639554.536|221041.125|115.047 +639564.012|221032.386|115.215 +639568.767|221027.997|115.126 +639573.452|221023.681|115.324 +639578.143|221019.353|115.440 +639582.809|221015.055|115.870 +639587.436|221010.794|116.220 +639592.136|221006.457|116.306 +639596.790|221002.165|116.388 +639606.218|220993.460|115.894 +639610.857|220989.187|116.227 +639615.572|220984.831|115.797 +639620.156|220980.607|116.181 +639624.820|220976.309|116.324 +639629.450|220972.039|116.321 +639634.092|220967.753|116.220 +639638.734|220963.468|116.138 +639643.385|220959.179|116.022 +639647.994|220954.924|115.849 +639652.694|220950.584|115.355 +639657.290|220946.341|115.340 +639661.893|220942.095|115.312 +639666.526|220937.816|115.035 +639675.737|220929.315|114.617 +639680.327|220925.075|114.373 +639694.068|220912.392|113.645 +639698.637|220908.180|113.685 +639703.172|220903.992|113.602 +639712.212|220895.653|113.377 +639716.708|220891.501|113.270 +639721.265|220887.298|113.133 +639725.745|220883.159|112.822 +639730.266|220878.983|112.615 +639739.318|220870.619|111.472 +639743.835|220866.447|111.002 +639748.246|220862.377|110.993 +639779.387|220833.610|108.165 +639797.115|220817.221|105.653 +639801.403|220813.265|105.699 +639805.820|220809.184|105.263 +639818.780|220797.217|104.364 +639827.339|220789.317|103.858 +639848.891|220769.395|101.224 +639857.264|220761.668|100.929 +639869.459|220750.436|102.306 +639873.443|220746.770|102.965 +639877.503|220743.027|103.196 +639881.523|220739.320|103.373 +639889.643|220731.828|103.580 +639893.608|220728.171|103.818 +639897.650|220724.443|103.931 +639901.615|220720.788|104.199 +639905.599|220717.113|104.364 +639909.504|220713.516|104.711 +639913.503|220709.822|104.541 +639917.471|220706.158|104.559 +639925.420|220698.824|104.574 +639940.496|220684.953|107.518 +639944.291|220681.454|107.741 +639967.312|220660.206|107.689 +639974.801|220653.299|108.024 +639982.330|220646.350|107.957 +639986.106|220642.866|107.890 +639989.742|220639.510|108.009 +639993.367|220636.167|108.201 +640029.525|220602.806|108.914 +639885.281|220734.008|103.574 +639881.142|220737.821|103.465 +639876.972|220741.655|103.251 +639872.806|220745.489|103.035 +639868.734|220749.232|102.285 +639851.976|220764.658|101.566 +639847.788|220768.511|101.264 +639817.045|220796.870|104.147 +639803.735|220809.147|105.333 +639799.312|220813.222|105.467 +639781.231|220829.907|107.851 +639776.711|220834.074|108.091 +639767.665|220842.416|108.707 +639753.991|220855.038|110.554 +639749.380|220859.290|110.886 +639744.905|220863.414|111.002 +639740.397|220867.565|111.002 +639735.731|220871.875|111.825 +639731.107|220876.139|112.371 +639726.517|220880.367|112.694 +639721.942|220884.579|112.904 +639717.321|220888.837|113.142 +639712.764|220893.034|113.279 +639708.223|220897.216|113.325 +639703.583|220901.483|113.361 +639699.030|220905.677|113.557 +639694.464|220909.881|113.459 +639689.803|220914.172|113.761 +639685.201|220918.412|114.002 +639680.559|220922.688|114.215 +639675.871|220927.007|114.416 +639666.602|220935.542|114.821 +639661.911|220939.864|115.117 +639657.284|220944.125|115.315 +639652.639|220948.401|115.279 +639647.954|220952.717|115.614 +639643.327|220956.981|115.907 +639638.624|220961.310|116.004 +639633.970|220965.595|116.160 +639629.282|220969.908|116.169 +639624.585|220974.236|116.312 +639619.980|220978.470|116.062 +639615.313|220982.765|115.931 +639605.962|220991.369|115.940 +639601.259|220995.697|115.785 +639591.837|221004.375|116.147 +639587.177|221008.663|116.111 +639582.495|221012.967|115.775 +639577.814|221017.271|115.480 +639573.162|221021.550|115.388 +639568.429|221025.906|115.175 +639563.720|221030.240|115.224 +639559.017|221034.568|115.227 +639554.265|221038.942|115.269 +639549.580|221043.252|115.120 +639544.846|221047.608|115.004 +639530.691|221060.632|114.779 +639525.915|221065.027|114.651 +639521.200|221069.361|114.389 +639516.402|221073.778|114.581 +639511.705|221078.097|114.145 +639506.920|221082.504|114.230 +639502.159|221086.881|114.011 +639497.389|221091.271|113.953 +639492.649|221095.626|113.432 +639487.907|221099.985|113.020 +639483.118|221104.395|113.273 +639478.290|221108.839|113.401 +639473.462|221113.289|113.624 +639468.686|221117.685|113.767 +639463.864|221122.125|113.950 +639459.048|221126.560|114.032 +639454.171|221131.053|114.386 +639449.355|221135.488|114.538 +639444.552|221139.908|114.492 +639439.794|221144.275|113.700 +639434.950|221148.732|113.526 +639410.761|221170.967|111.511 +639405.918|221175.420|111.389 +639401.020|221179.928|111.511 +639381.507|221197.871|110.365 +639371.707|221206.875|109.640 +639366.770|221211.417|109.713 +639361.884|221215.910|109.664 +639356.906|221220.485|109.506 +639351.969|221225.029|109.707 +639347.031|221229.571|109.871 +639342.053|221234.149|109.862 +639337.067|221238.739|110.173 +639332.086|221243.320|110.252 +639322.253|221252.321|107.278 +639317.343|221256.792|104.160 +639312.329|221261.398|103.471 +639287.241|221284.511|106.406 +639282.215|221289.138|106.695 +639262.077|221307.667|107.433 +639257.002|221312.348|108.411 +639251.982|221316.972|108.963 +639226.671|221340.293|111.789 +639221.611|221344.944|111.865 +639216.552|221349.601|112.173 +639211.495|221354.256|112.569 +639206.390|221358.953|112.639 +639201.333|221363.607|112.834 +639196.231|221368.304|113.249 +639191.174|221372.955|113.352 +639186.075|221377.652|113.736 +639180.972|221382.346|113.931 +639175.931|221386.997|114.831 +639170.829|221391.691|114.998 +639160.621|221401.079|115.074 +639155.518|221405.773|115.227 +639125.005|221433.894|119.375 +639119.893|221438.591|119.119 +639114.803|221443.279|119.503 +639109.710|221447.966|119.832 +639099.484|221457.382|120.588 +639094.427|221462.033|120.594 +639089.273|221466.773|120.567 +639084.183|221471.454|120.814 +639079.135|221476.103|121.018 +639068.897|221485.524|121.554 +639043.501|221508.920|124.548 +639028.209|221522.993|125.221 +639023.101|221527.693|125.291 +639007.791|221541.778|125.834 +639002.725|221546.438|125.886 +638997.610|221551.141|125.938 +638992.557|221555.793|126.221 +638982.386|221565.150|126.541 +638977.289|221569.832|126.270 +638972.217|221574.498|126.306 +638967.149|221579.162|126.443 +638962.089|221583.816|126.754 +638957.044|221588.461|127.221 +638951.979|221593.125|127.452 +638946.946|221597.752|127.483 +638941.896|221602.394|127.355 +638936.827|221607.057|127.577 +638931.746|221611.730|127.681 +638921.663|221621.005|127.727 +638916.607|221625.653|127.623 +638911.547|221630.301|127.510 +638906.484|221634.956|127.382 +638901.443|221639.585|126.974 +638891.348|221648.864|126.681 +638886.273|221653.527|126.526 +638876.266|221662.726|126.276 +638871.191|221667.392|126.206 +638866.202|221671.977|126.066 +638861.160|221676.613|125.883 +638856.107|221681.255|125.633 +638851.087|221685.863|125.255 +638846.012|221690.527|124.846 +638830.991|221704.325|123.932 +638825.938|221708.964|123.408 +638820.924|221713.573|123.274 +638810.981|221722.717|123.420 +638806.028|221727.271|123.456 +638796.296|221736.244|125.066 +638786.518|221745.251|126.328 +638776.746|221754.251|127.690 +638771.835|221758.769|127.769 +638766.895|221763.316|128.044 +638761.999|221767.821|128.297 +638757.034|221772.387|128.409 +638752.173|221776.859|128.571 +638747.195|221781.437|128.641 +638742.361|221785.893|129.421 +638737.475|221790.392|129.812 +638732.477|221794.979|129.415 +638727.523|221799.530|129.016 +638722.580|221804.077|129.050 +638717.663|221808.594|128.973 +638712.680|221813.172|128.781 +638697.793|221826.849|127.782 +638692.825|221831.409|127.480 +638687.884|221835.944|127.047 +638682.925|221840.504|126.834 +638677.945|221845.079|126.514 +638673.071|221849.560|126.614 +638668.151|221854.080|126.425 +638663.268|221858.569|126.501 +638658.401|221863.050|126.684 +638653.469|221867.582|126.477 +638648.626|221872.039|126.870 +638643.828|221876.455|127.248 +638634.133|221885.377|127.730 +638629.210|221889.900|127.705 +638609.605|221907.926|126.800 +638604.668|221912.464|126.498 +638589.915|221926.025|125.523 +638585.005|221930.536|125.200 +638575.077|221939.656|124.011 +638570.170|221944.164|123.789 +638565.296|221948.644|123.499 +638560.380|221953.164|123.252 +638555.454|221957.688|122.731 +638526.130|221984.635|120.539 +638521.231|221989.137|120.073 +638516.376|221993.596|119.601 +638511.466|221998.107|119.125 +638506.625|222002.554|118.781 +638482.497|222024.735|117.531 +638477.730|222029.121|117.424 +638473.015|222033.461|117.607 +638468.382|222037.731|118.199 +638458.702|222046.622|117.208 +638453.892|222051.042|117.013 +638434.705|222068.672|115.513 +638429.965|222073.030|115.285 +638425.289|222077.334|115.361 +638411.217|222090.279|115.288 +638382.352|222116.772|110.935 +638377.695|222121.052|110.862 +638354.064|222142.753|107.966 +638349.412|222147.024|107.607 +638335.202|222160.069|105.580 +638311.029|222182.219|99.438 +638301.482|222190.970|97.125 +638296.691|222195.362|96.046 +638292.052|222199.620|95.390 +638287.519|222203.787|95.165 +638282.954|222207.981|94.845 +638278.241|222212.300|93.760 +638269.600|222220.264|94.689 +638265.263|222224.257|95.119 +638256.634|222232.209|95.765 +638252.303|222236.199|96.046 +638243.924|222243.926|97.314 +638239.766|222247.763|98.076 +638235.685|222251.531|98.941 +638262.757|222224.257|95.095 +638267.034|222220.313|94.631 +638271.545|222216.162|95.104 +638275.861|222212.181|94.613 +638280.390|222208.011|94.982 +638284.892|222203.866|95.052 +638289.367|222199.745|95.247 +638293.966|222195.517|95.738 +638298.587|222191.265|96.122 +638303.534|222186.733|97.835 +638313.019|222178.025|99.938 +638318.045|222173.422|101.855 +638337.138|222155.890|105.717 +638342.057|222151.376|107.153 +638346.703|222147.103|107.461 +638351.351|222142.827|107.799 +638356.115|222138.450|108.664 +638379.725|222116.736|110.850 +638384.437|222112.395|111.194 +638398.769|222099.216|112.731 +638408.696|222090.111|115.404 +638413.305|222085.862|115.181 +638417.910|222081.610|114.742 +638422.723|222077.182|115.257 +638427.414|222072.860|115.230 +638432.150|222068.498|115.440 +638436.954|222064.078|115.748 +638451.420|222050.765|117.077 +638456.196|222046.366|117.098 +638465.925|222037.417|118.327 +638470.595|222033.104|117.659 +638475.316|222028.752|117.510 +638480.123|222024.323|117.546 +638504.376|222001.993|118.903 +638514.133|221993.014|119.473 +638519.086|221988.457|119.927 +638524.029|221983.907|120.369 +638538.843|221970.282|121.999 +638553.565|221956.724|122.594 +638558.496|221952.183|122.874 +638568.317|221943.142|123.283 +638573.276|221938.580|123.804 +638578.214|221934.035|124.218 +638583.298|221929.366|125.218 +638588.248|221924.809|125.496 +638598.096|221915.738|125.809 +638603.144|221911.096|126.431 +638608.057|221906.573|126.593 +638627.930|221888.275|127.599 +638642.652|221874.706|127.187 +638647.529|221870.204|126.703 +638652.442|221865.674|126.453 +638657.398|221861.108|126.489 +638662.378|221856.518|126.395 +638667.298|221851.983|126.239 +638672.281|221847.395|126.535 +638677.253|221842.814|126.447 +638682.282|221838.184|126.757 +638687.262|221833.597|126.779 +638692.301|221828.961|127.212 +638697.382|221824.285|127.635 +638712.466|221810.402|128.662 +638717.468|221805.793|128.653 +638722.519|221801.145|129.004 +638727.508|221796.552|129.312 +638732.605|221791.861|129.687 +638737.570|221787.286|129.504 +638742.514|221782.720|128.797 +638747.476|221778.145|128.635 +638752.508|221773.509|128.620 +638757.461|221768.937|128.041 +638762.451|221764.340|128.141 +638767.498|221759.689|127.940 +638772.439|221755.132|127.687 +638777.456|221750.505|127.279 +638787.328|221741.383|125.986 +638792.321|221736.771|125.425 +638797.231|221732.233|124.587 +638802.227|221727.618|124.072 +638812.267|221718.355|123.478 +638817.296|221713.716|123.292 +638822.341|221709.062|123.289 +638827.422|221704.383|123.609 +638832.561|221699.653|124.048 +638837.633|221694.980|124.359 +638842.756|221690.262|124.724 +638852.961|221680.865|125.639 +638858.057|221676.168|125.849 +638863.102|221671.519|126.059 +638868.195|221666.826|126.297 +638878.336|221657.477|126.383 +638883.463|221652.753|126.559 +638888.492|221648.120|126.718 +638893.628|221643.389|127.062 +638898.687|221638.726|127.093 +638903.762|221634.050|127.346 +638908.865|221629.347|127.401 +638913.982|221624.632|127.629 +638919.048|221619.962|127.885 +638924.123|221615.284|127.663 +638929.213|221610.590|127.657 +638934.279|221605.914|127.401 +638939.375|221601.217|127.522 +638944.410|221596.575|127.486 +638949.476|221591.902|127.291 +638954.588|221587.187|127.038 +638959.596|221582.563|126.712 +638964.707|221577.848|126.517 +638969.767|221573.182|126.270 +638974.839|221568.506|126.187 +638979.932|221563.812|126.486 +638995.212|221549.718|126.044 +639000.262|221545.058|125.752 +639005.331|221540.385|125.770 +639015.548|221530.964|125.596 +639030.815|221516.885|125.328 +639040.932|221507.546|124.356 +639046.049|221502.831|124.557 +639051.103|221498.170|124.441 +639066.239|221484.177|121.692 +639076.487|221474.725|121.436 +639081.519|221470.077|120.875 +639086.603|221465.386|120.543 +639091.715|221460.677|120.789 +639096.762|221456.019|120.591 +639101.858|221451.319|120.427 +639107.006|221446.577|120.317 +639112.036|221441.928|119.589 +639117.126|221437.231|119.284 +639122.231|221432.525|119.378 +639157.695|221399.774|115.199 +639167.893|221390.359|114.888 +639183.045|221376.372|113.819 +639188.096|221371.708|113.438 +639193.149|221367.042|113.258 +639198.248|221362.333|112.758 +639203.256|221357.712|112.566 +639208.313|221353.045|112.535 +639213.367|221348.379|112.215 +639218.423|221343.709|111.844 +639223.480|221339.040|111.581 +639228.491|221334.422|111.728 +639258.632|221306.569|108.119 +639283.647|221283.472|106.525 +639288.677|221278.827|106.052 +639298.695|221269.527|101.953 +639313.503|221255.899|104.028 +639333.120|221237.892|110.280 +639338.048|221233.344|110.225 +639342.928|221228.842|110.240 +639347.866|221224.285|109.996 +639352.807|221219.723|109.640 +639357.635|221215.273|109.905 +639362.566|221210.725|109.978 +639367.465|221206.202|109.631 +639372.335|221201.712|110.003 +639377.154|221197.274|110.542 +639391.745|221183.826|111.216 +639396.524|221179.422|111.581 +639406.202|221170.500|111.801 +639411.097|221165.983|111.764 +639425.459|221152.761|113.474 +639430.250|221148.341|113.596 +639435.097|221143.873|113.700 +639439.812|221139.533|114.370 +639444.604|221135.116|114.599 +639454.208|221126.259|114.730 +639463.821|221117.380|113.965 +639468.588|221112.985|113.938 +639473.358|221108.580|113.840 +639487.654|221095.388|113.307 +639492.351|221091.060|113.697 +639501.793|221082.361|114.477 +639515.985|221069.270|114.450 +639520.639|221064.981|114.855 +639525.327|221060.659|114.843 +639530.048|221056.304|115.004 +639539.461|221047.623|115.233 +639544.103|221043.341|115.245 +639558.130|221030.405|115.449 +639562.866|221026.028|115.035 +639567.493|221021.764|115.361 +639572.135|221017.481|115.504 +639576.786|221013.193|115.605 +639581.404|221008.938|116.047 +639586.052|221004.652|116.193 +639600.021|220991.762|115.998 +639604.593|220987.544|116.013 +639613.908|220978.948|115.879 +639618.480|220974.733|115.964 +639623.165|220970.408|115.903 +639627.743|220966.186|115.977 +639636.981|220957.661|115.864 +639641.547|220953.446|115.644 +639646.171|220949.179|115.401 +639650.807|220944.896|115.059 +639655.358|220940.696|115.062 +639659.976|220936.435|114.925 +639673.771|220923.700|114.349 +639678.373|220919.448|114.035 +639682.915|220915.257|113.849 +639687.520|220911.005|113.563 +639692.068|220906.805|113.371 +639701.148|220898.426|113.182 +639705.693|220894.232|113.084 +639710.237|220890.038|113.023 +639714.736|220885.884|112.926 +639732.872|220869.135|111.776 +639737.441|220864.916|111.301 +639742.004|220860.701|110.899 +639746.432|220856.614|110.777 +639750.934|220852.453|110.493 +639764.580|220839.837|108.482 +639795.865|220810.933|105.629 +639800.251|220806.882|105.409 +639804.719|220802.752|104.672 +639822.309|220786.503|103.465 +639826.753|220782.395|102.700 +639835.498|220774.308|101.496 +639844.084|220766.384|101.374 +639848.345|220762.452|101.236 +639852.634|220758.495|101.255 +639856.776|220754.679|101.846 +639861.019|220750.766|101.864 +639865.088|220747.023|102.626 +639869.163|220743.277|103.367 +639873.336|220739.430|103.535 +639881.563|220731.847|104.016 +639885.708|220728.024|104.083 +639889.789|220724.263|104.257 +639893.883|220720.490|104.379 +639897.964|220716.725|104.565 +639901.966|220713.040|104.946 +639906.020|220709.300|105.034 +639914.152|220701.802|105.135 +639918.108|220698.160|105.531 +639926.085|220690.802|105.723 +639937.622|220680.189|107.717 +639949.338|220669.387|108.043 +639960.917|220658.707|108.140 +639964.819|220655.104|107.902 +639972.451|220648.066|108.073 +639976.258|220644.552|108.082 +639980.025|220641.077|108.064 +639983.768|220637.627|108.180 +639987.548|220634.137|108.110 +640020.241|220603.998|109.551 +640023.859|220600.657|109.396 +639877.640|220733.368|104.004 +639873.638|220737.046|103.699 +639869.566|220740.786|103.507 +639865.545|220744.474|103.013 +639861.498|220748.190|102.410 +639853.466|220755.551|100.837 +639849.257|220759.428|101.240 +639840.902|220767.109|101.078 +639836.641|220771.032|101.538 +639828.085|220778.914|102.434 +639806.411|220798.872|104.504 +639802.061|220802.874|104.754 +639793.283|220810.964|105.860 +639788.903|220814.990|106.049 +639780.009|220823.186|107.098 +639748.581|220852.139|110.734 +639744.110|220856.248|110.752 +639739.583|220860.411|110.853 +639735.021|220864.621|111.615 +639730.537|220868.748|111.828 +639725.931|220872.988|112.212 +639707.704|220889.767|112.953 +639703.111|220893.991|113.008 +639698.573|220898.167|113.041 +639689.374|220906.634|113.355 +639684.796|220910.847|113.374 +639680.068|220915.202|113.846 +639675.472|220919.433|114.050 +639661.460|220932.332|114.687 +639656.833|220936.590|114.855 +639652.127|220940.918|114.870 +639647.506|220945.170|115.023 +639642.724|220949.575|115.352 +639638.042|220953.888|115.690 +639633.333|220958.219|115.836 +639628.621|220962.550|115.599 +639623.927|220966.869|115.669 +639619.132|220971.283|115.797 +639614.441|220975.599|115.870 +639609.674|220979.982|115.779 +639604.935|220984.346|115.919 +639600.125|220988.775|116.284 +639585.824|221001.927|116.275 +639581.072|221006.298|116.172 +639576.296|221010.687|115.806 +639571.556|221015.043|115.608 +639566.719|221019.490|115.416 +639561.988|221023.839|115.154 +639557.108|221028.329|115.468 +639542.685|221041.597|115.303 +639537.900|221045.998|115.199 +639533.057|221050.455|115.263 +639528.241|221054.880|114.983 +639523.410|221059.324|114.928 +639504.024|221077.149|114.456 +639499.202|221081.584|114.370 +639494.341|221086.052|114.215 +639489.498|221090.499|113.779 +639484.654|221094.949|113.380 +639479.720|221099.494|113.651 +639474.831|221103.993|113.953 +639469.914|221108.519|114.032 +639465.092|221112.957|114.148 +639455.272|221121.991|114.187 +639445.423|221131.056|114.806 +639440.541|221135.546|114.468 +639435.667|221140.017|113.922 +639430.769|221144.525|113.901 +639425.840|221149.055|113.538 +639406.290|221167.010|111.752 +639391.516|221180.598|111.636 +639381.635|221189.688|111.661 +639376.798|221194.119|110.350 +639371.872|221198.646|109.987 +639366.925|221203.199|110.225 +639352.136|221216.790|109.640 +639347.147|221221.381|109.847 +639342.203|221225.938|110.277 +639337.225|221230.513|110.185 +639332.291|221235.051|110.277 +639317.465|221248.651|107.759 +639312.558|221253.120|104.431 +639307.586|221257.679|103.769 +639302.630|221262.221|102.437 +639297.674|221266.756|100.834 +639282.642|221280.664|106.601 +639267.661|221294.445|106.878 +639262.638|221299.065|106.955 +639252.634|221308.292|108.649 +639227.640|221331.322|111.767 +639222.626|221335.928|111.508 +639217.612|221340.543|111.734 +639212.601|221345.157|112.112 +639207.542|221349.815|112.322 +639202.577|221354.380|112.462 +639197.520|221359.038|112.752 +639192.463|221363.692|113.087 +639187.501|221368.258|113.389 +639182.448|221372.912|113.874 +639162.282|221391.478|115.120 +639157.225|221396.129|115.221 +639147.155|221405.419|117.235 +639121.829|221428.737|119.278 +639116.772|221433.388|119.253 +639111.725|221438.036|119.515 +639106.644|221442.718|120.262 +639101.593|221447.366|120.445 +639096.491|221452.060|120.527 +639091.437|221456.708|120.698 +639086.368|221461.366|120.463 +639081.284|221466.047|120.829 +639076.200|221470.732|121.359 +639060.978|221484.732|121.579 +639055.995|221489.340|123.246 +639035.665|221508.052|124.529 +639025.518|221517.391|125.075 +639020.412|221522.088|125.209 +639010.257|221531.436|125.663 +639005.136|221536.142|125.611 +639000.018|221540.848|125.642 +638994.971|221545.494|125.998 +638989.865|221550.187|126.248 +638984.751|221554.891|126.370 +638979.682|221559.548|126.489 +638974.531|221564.275|126.139 +638969.404|221568.988|126.136 +638964.326|221573.654|126.187 +638959.266|221578.308|126.492 +638943.984|221592.357|126.782 +638938.942|221596.999|127.410 +638933.855|221601.674|127.443 +638928.780|221606.338|127.654 +638923.678|221611.029|127.526 +638918.588|221615.704|127.608 +638913.495|221620.386|127.654 +638908.453|221625.019|127.788 +638903.329|221629.725|127.529 +638898.206|221634.431|127.297 +638893.122|221639.098|127.029 +638888.071|221643.740|127.123 +638882.926|221648.461|126.776 +638877.894|221653.085|126.611 +638872.776|221657.788|126.593 +638867.689|221662.461|126.419 +638862.666|221667.075|126.428 +638857.564|221671.760|126.163 +638852.461|221676.445|125.941 +638847.389|221681.099|125.541 +638842.257|221685.812|125.066 +638837.221|221690.429|124.654 +638832.098|221695.135|124.343 +638827.010|221699.802|123.953 +638821.951|221704.453|123.822 +638816.928|221709.062|123.648 +638811.886|221713.698|123.731 +638806.884|221718.294|123.770 +638801.931|221722.854|124.258 +638796.963|221727.420|124.645 +638792.010|221731.980|125.145 +638787.072|221736.524|125.797 +638782.122|221741.081|126.352 +638777.224|221745.592|126.937 +638772.317|221750.106|127.477 +638767.379|221754.648|127.754 +638762.435|221759.192|128.031 +638757.498|221763.737|128.345 +638752.538|221768.294|128.544 +638747.625|221772.811|128.705 +638742.648|221777.380|128.422 +638737.682|221781.946|128.620 +638732.781|221786.454|128.943 +638727.956|221790.898|129.842 +638723.006|221795.448|129.830 +638717.938|221800.090|129.004 +638713.003|221804.623|128.809 +638707.974|221809.237|128.312 +638698.013|221818.382|127.772 +638693.090|221822.902|127.428 +638688.079|221827.501|127.178 +638683.141|221832.034|126.791 +638678.131|221836.633|126.602 +638673.220|221841.144|126.456 +638668.276|221845.686|126.425 +638663.332|221850.224|126.099 +638658.459|221854.702|126.270 +638653.582|221859.185|126.428 +638648.720|221863.654|126.703 +638643.892|221868.094|126.888 +638639.034|221872.563|127.212 +638634.184|221877.019|127.291 +638619.667|221890.357|127.568 +638600.044|221908.359|126.437 +638595.161|221912.839|126.203 +638570.542|221935.407|123.716 +638565.699|221939.851|123.578 +638560.804|221944.337|123.185 +638541.400|221962.141|122.262 +638536.484|221966.646|121.600 +638531.573|221971.151|121.268 +638521.902|221980.020|120.689 +638517.019|221984.501|120.308 +638512.167|221988.948|119.866 +638507.342|221993.374|119.582 +638502.706|221997.641|120.543 +638483.784|222015.018|120.829 +638478.828|222019.553|119.774 +638473.740|222024.201|118.098 +638468.958|222028.590|117.967 +638464.282|222032.885|118.110 +638459.613|222037.177|118.552 +638449.978|222046.004|117.354 +638426.106|222067.897|115.672 +638421.370|222072.244|115.483 +638416.731|222076.502|115.535 +638392.703|222098.515|112.340 +638378.545|222111.496|111.179 +638350.324|222137.368|108.533 +638345.660|222141.641|108.119 +638341.018|222145.899|107.823 +638331.456|222154.647|105.924 +638312.178|222172.279|100.953 +638297.910|222185.331|97.771 +638283.953|222198.108|95.436 +638261.706|222218.524|95.235 +638248.822|222230.368|96.463 +638244.564|222234.282|96.835 +638240.345|222238.159|97.369 +638236.197|222241.975|97.975 +638261.587|222216.034|95.083 +638274.888|222203.768|94.985 +638279.409|222199.602|95.125 +638283.877|222195.481|95.287 +638288.632|222191.116|96.378 +638297.986|222182.509|97.838 +638302.695|222178.180|98.612 +638307.380|222173.867|99.335 +638312.397|222169.271|101.200 +638331.716|222151.526|105.952 +638341.271|222142.744|107.845 +638345.953|222138.431|108.110 +638350.662|222134.100|108.722 +638374.247|222112.386|110.996 +638378.987|222108.021|111.447 +638403.225|222085.737|115.751 +638407.937|222081.394|115.760 +638412.607|222077.087|115.605 +638417.307|222072.759|115.593 +638421.970|222068.458|115.437 +638426.765|222064.045|115.669 +638431.510|222059.677|115.931 +638446.083|222046.269|117.495 +638450.868|222041.867|117.787 +638455.812|222037.323|118.638 +638460.451|222033.040|118.046 +638465.197|222028.666|117.982 +638470.031|222024.213|118.125 +638474.899|222019.736|118.708 +638480.135|222014.941|120.884 +638484.930|222010.525|120.911 +638503.931|221993.005|119.802 +638508.732|221988.579|119.698 +638513.663|221984.041|120.034 +638518.564|221979.530|120.494 +638523.475|221975.009|120.780 +638528.385|221970.489|121.073 +638543.131|221956.913|121.939 +638548.057|221952.381|122.140 +638557.905|221943.316|122.908 +638562.895|221938.726|123.258 +638567.817|221934.194|123.566 +638572.734|221929.664|123.575 +638582.847|221920.371|125.255 +638592.841|221911.178|126.392 +638617.628|221888.358|127.370 +638627.506|221879.253|127.312 +638632.404|221874.739|127.199 +638637.333|221870.198|126.992 +638642.195|221865.711|126.706 +638652.064|221856.610|126.160 +638656.999|221852.065|126.056 +638661.900|221847.545|125.779 +638666.938|221842.906|126.087 +638671.971|221838.276|126.379 +638676.951|221833.686|126.367 +638681.974|221829.062|126.651 +638687.019|221824.423|127.111 +638697.107|221815.138|127.788 +638712.235|221801.215|128.818 +638717.297|221796.564|129.595 +638722.378|221791.885|129.845 +638727.207|221787.423|128.986 +638732.242|221782.784|128.934 +638737.210|221778.206|128.757 +638742.224|221773.582|128.583 +638747.229|221768.973|128.739 +638752.203|221764.386|128.306 +638757.193|221759.784|128.010 +638762.155|221755.212|127.888 +638767.187|221750.569|127.583 +638772.134|221746.010|127.382 +638777.127|221741.404|126.791 +638782.086|221736.832|126.315 +638787.011|221732.288|125.575 +638792.016|221727.676|125.075 +638801.977|221718.495|124.164 +638817.104|221704.566|123.895 +638827.205|221695.276|124.420 +638832.335|221690.560|124.798 +638837.407|221685.897|125.096 +638842.525|221681.191|125.419 +638847.551|221676.570|125.837 +638852.681|221671.855|126.331 +638857.780|221667.164|126.584 +638862.815|221662.531|126.684 +638872.968|221653.189|126.824 +638883.118|221643.850|127.059 +638888.141|221639.229|127.181 +638893.262|221634.517|127.343 +638898.349|221629.841|127.672 +638903.393|221625.196|127.574 +638908.453|221620.542|127.657 +638913.488|221615.902|127.522 +638918.594|221611.205|127.620 +638923.693|221606.512|127.708 +638928.674|221601.927|127.507 +638933.736|221597.261|127.187 +638953.932|221578.662|126.507 +638959.001|221573.995|126.322 +638964.058|221569.338|125.971 +638969.157|221564.650|126.227 +638974.244|221559.969|126.383 +638989.448|221545.969|126.081 +638994.501|221541.315|125.788 +638999.558|221536.657|125.563 +639004.633|221531.988|125.639 +639009.671|221527.343|125.172 +639014.752|221522.670|125.389 +639019.800|221518.022|125.044 +639024.908|221513.316|125.005 +639060.280|221480.717|121.777 +639080.574|221462.027|120.829 +639085.609|221457.385|120.433 +639090.672|221452.727|120.576 +639095.771|221448.030|120.445 +639100.874|221443.337|120.320 +639110.957|221434.043|119.488 +639116.053|221429.349|119.232 +639121.109|221424.695|119.211 +639146.435|221401.359|117.488 +639156.549|221392.020|115.202 +639161.605|221387.369|114.989 +639181.868|221368.706|113.770 +639186.922|221364.052|113.343 +639191.976|221359.394|112.968 +639197.032|221354.737|112.563 +639202.138|221350.034|112.282 +639207.152|221345.422|112.203 +639212.211|221340.762|111.865 +639217.271|221336.105|111.594 +639222.334|221331.444|111.527 +639247.559|221308.203|109.167 +639252.582|221303.573|108.591 +639262.638|221294.295|106.628 +639277.707|221280.433|106.753 +639287.784|221271.133|104.906 +639292.825|221266.449|101.322 +639297.854|221261.822|101.511 +639307.772|221252.736|104.120 +639312.713|221248.212|105.994 +639327.502|221234.667|110.237 +639332.528|221230.046|110.283 +639337.463|221225.505|110.173 +639342.395|221220.966|110.149 +639347.339|221216.412|109.835 +639352.270|221211.877|109.899 +639371.939|221193.793|110.761 +639376.807|221189.325|111.362 +639381.638|221184.899|112.776 +639401.148|221166.953|112.993 +639405.991|221162.481|112.033 +639410.871|221157.997|112.389 +639415.681|221153.584|113.206 +639420.524|221149.131|113.358 +639425.291|221144.754|114.032 +639434.938|221135.884|114.230 +639439.711|221131.498|114.794 +639449.340|221122.638|114.565 +639454.101|221118.258|114.593 +639458.932|221113.807|114.276 +639473.240|221100.646|114.197 +639478.061|221096.208|114.151 +639482.822|221091.822|113.624 +639487.577|221087.451|113.904 +639501.757|221074.415|114.678 +639506.487|221070.062|114.687 +639511.151|221065.777|114.965 +639515.906|221061.400|114.721 +639525.248|221052.808|115.175 +639529.987|221048.449|115.209 +639534.620|221044.185|115.334 +639553.286|221027.009|115.696 +639557.944|221022.724|115.678 +639567.216|221014.186|115.599 +639571.809|221009.959|115.794 +639576.433|221005.713|116.236 +639581.041|221001.470|116.278 +639617.870|220967.561|115.599 +639622.430|220963.361|115.407 +639627.005|220959.155|115.553 +639636.088|220950.794|115.596 +639649.826|220938.136|114.803 +639654.337|220933.987|114.788 +639658.915|220929.769|114.614 +639672.527|220917.232|114.023 +639677.026|220913.087|113.788 +639686.082|220904.745|113.313 +639690.587|220900.596|113.121 +639695.037|220896.500|112.983 +639699.520|220892.370|112.971 +639704.019|220888.231|112.895 +639708.488|220884.113|112.663 +639712.910|220880.044|112.828 +639726.386|220867.629|111.862 +639730.793|220863.572|111.837 +639735.292|220859.421|111.164 +639739.797|220855.269|110.841 +639748.688|220847.083|110.423 +639770.993|220826.515|107.838 +639775.477|220822.382|107.195 +639779.936|220818.267|106.723 +639784.423|220814.131|106.113 +639797.596|220801.990|104.992 +639802.025|220797.909|104.528 +639806.441|220793.837|104.172 +639819.539|220781.773|103.260 +639828.323|220773.668|102.105 +639832.685|220769.648|101.621 +639837.080|220765.594|100.929 +639853.896|220750.138|102.443 +639858.120|220746.251|102.581 +639862.220|220742.487|103.483 +639866.359|220738.677|103.839 +639870.584|220734.788|104.022 +639874.738|220730.969|104.345 +639878.908|220727.128|104.571 +639883.062|220723.303|104.626 +639891.399|220715.628|104.894 +639895.492|220711.864|105.339 +639899.589|220708.090|105.476 +639911.842|220696.813|106.205 +639915.947|220693.030|106.083 +639920.166|220689.135|105.370 +639924.308|220685.313|105.083 +639931.977|220678.281|107.296 +639947.802|220663.715|108.430 +639951.767|220660.063|108.375 +639955.724|220656.418|108.375 +639971.433|220641.943|108.320 +639975.283|220638.398|108.408 +639979.148|220634.841|108.448 +639982.985|220631.305|108.625 +639994.186|220620.997|109.481 +639998.003|220617.482|109.558 +640001.745|220614.035|109.747 +640005.482|220610.594|109.728 +640020.393|220596.850|109.244 +640027.724|220590.090|108.817 +639881.663|220722.312|104.739 +639869.520|220733.450|104.224 +639865.506|220737.129|103.971 +639857.456|220744.505|103.059 +639853.439|220748.184|102.559 +639849.367|220751.918|102.114 +639845.413|220755.527|100.941 +639841.204|220759.398|101.352 +639837.287|220762.973|99.981 +639832.880|220767.033|101.307 +639820.014|220778.868|102.998 +639811.416|220786.772|103.949 +639802.887|220794.602|104.227 +639798.541|220798.601|104.781 +639785.578|220810.510|105.714 +639781.161|220814.573|106.162 +639776.797|220818.581|106.604 +639772.404|220822.625|107.290 +639767.970|220826.704|107.927 +639763.547|220830.773|108.536 +639754.659|220838.941|109.393 +639750.184|220843.059|110.097 +639741.370|220851.155|110.597 +639736.892|220855.266|110.667 +639732.375|220859.421|111.429 +639727.913|220863.523|111.810 +639723.426|220867.641|112.014 +639709.926|220880.041|112.743 +639705.431|220884.165|112.737 +639700.941|220888.285|112.712 +639696.387|220892.464|112.819 +639687.335|220900.776|113.072 +639682.741|220904.995|113.185 +639678.126|220909.234|113.486 +639668.925|220917.684|113.931 +639655.065|220930.409|114.468 +639650.429|220934.667|114.690 +639645.824|220938.892|114.675 +639641.124|220943.211|115.084 +639636.436|220947.520|115.434 +639622.455|220960.350|115.370 +639617.703|220964.711|115.492 +639603.563|220977.693|115.852 +639584.556|220995.142|116.452 +639579.804|220999.501|116.281 +639575.040|221003.875|116.284 +639570.291|221008.228|116.114 +639565.573|221012.553|115.644 +639560.754|221016.975|115.763 +639555.941|221021.395|115.861 +639551.140|221025.802|115.824 +639527.012|221047.937|115.184 +639522.172|221052.378|115.172 +639517.277|221056.871|115.263 +639507.597|221065.747|114.739 +639502.711|221070.233|114.824 +639497.837|221074.705|114.745 +639488.071|221083.660|114.212 +639483.182|221088.137|113.709 +639478.232|221092.685|114.120 +639473.355|221097.165|114.230 +639458.533|221110.775|114.642 +639453.616|221115.286|114.690 +639448.648|221119.849|114.861 +639443.741|221124.351|114.815 +639433.868|221133.403|114.197 +639428.922|221137.942|114.062 +639423.975|221142.480|113.965 +639419.037|221147.006|113.712 +639414.069|221151.557|113.102 +639409.152|221156.059|112.426 +639404.214|221160.588|112.237 +639374.286|221188.051|111.618 +639369.373|221192.550|110.868 +639354.364|221206.330|110.804 +639349.359|221210.914|109.951 +639344.422|221215.449|109.935 +639339.383|221220.079|110.201 +639334.397|221224.660|110.338 +639329.368|221229.278|110.262 +639324.341|221233.893|110.146 +639309.415|221247.527|105.074 +639299.436|221256.661|103.020 +639289.396|221265.900|104.284 +639284.300|221270.591|105.242 +639279.298|221275.205|106.833 +639274.269|221279.823|106.814 +639264.216|221289.056|106.848 +639259.187|221293.679|107.299 +639223.928|221326.116|111.438 +639218.911|221330.722|111.490 +639213.848|221335.376|111.575 +639203.768|221344.636|111.962 +639198.751|221349.245|112.167 +639193.740|221353.853|112.587 +639188.681|221358.504|113.017 +639183.670|221363.110|113.413 +639158.478|221386.266|114.989 +639123.301|221418.626|119.290 +639113.230|221427.877|119.256 +639108.180|221432.516|119.619 +639103.138|221437.155|120.168 +639098.131|221441.755|120.293 +639093.077|221446.397|120.536 +639088.008|221451.051|120.311 +639082.951|221455.696|120.457 +639077.904|221460.335|120.655 +639057.732|221478.867|121.542 +639037.600|221497.393|124.209 +639032.541|221502.041|124.325 +639027.530|221506.644|124.523 +639022.436|221511.325|124.944 +639017.413|221515.940|124.886 +638997.156|221534.548|125.398 +638992.112|221539.190|125.877 +638987.037|221543.854|125.858 +638982.014|221548.468|125.977 +638971.882|221557.783|126.322 +638966.777|221562.468|125.980 +638961.677|221567.153|125.733 +638956.670|221571.758|126.126 +638951.582|221576.431|126.130 +638946.556|221581.061|126.904 +638941.521|221585.688|126.992 +638936.446|221590.354|127.151 +638931.414|221594.978|127.309 +638921.282|221604.290|127.401 +638916.210|221608.953|127.715 +638911.166|221613.589|127.763 +638906.048|221618.289|127.577 +638901.004|221622.925|127.675 +638895.938|221627.576|127.586 +638890.878|221632.225|127.574 +638885.809|221636.882|127.474 +638880.753|221641.530|127.538 +638875.641|221646.218|127.059 +638870.573|221650.875|127.056 +638865.485|221655.548|126.864 +638860.453|221660.169|126.785 +638855.375|221664.835|126.770 +638845.186|221674.186|125.980 +638840.111|221678.844|125.596 +638834.972|221683.559|125.112 +638829.882|221688.226|124.676 +638824.819|221692.877|124.487 +638819.756|221697.525|124.353 +638814.669|221702.195|124.014 +638809.661|221706.797|123.972 +638804.592|221711.451|123.871 +638799.597|221716.048|124.420 +638794.631|221720.617|124.798 +638789.614|221725.228|125.200 +638784.661|221729.788|125.712 +638779.724|221734.336|126.361 +638774.771|221738.893|126.919 +638764.825|221748.043|127.736 +638759.872|221752.596|127.925 +638749.939|221761.731|128.528 +638744.989|221766.282|128.809 +638739.999|221770.866|128.812 +638735.043|221775.423|129.062 +638730.062|221779.998|129.178 +638725.067|221784.588|129.181 +638720.096|221789.154|129.025 +638715.252|221793.616|129.818 +638710.129|221798.313|128.973 +638705.108|221802.913|128.208 +638695.059|221812.133|127.407 +638685.141|221821.237|126.949 +638680.112|221825.855|126.611 +638675.168|221830.391|126.218 +638670.197|221834.963|126.309 +638665.247|221839.501|125.938 +638660.193|221844.140|125.544 +638655.402|221848.548|125.934 +638650.458|221853.089|125.977 +638635.894|221866.482|127.007 +638630.954|221871.021|126.837 +638616.366|221884.432|127.303 +638611.455|221888.937|127.126 +638606.542|221893.451|126.928 +638581.984|221915.991|125.557 +638577.022|221920.542|124.956 +638567.086|221929.652|123.487 +638562.181|221934.154|123.292 +638557.347|221938.592|122.963 +638552.458|221943.075|122.637 +638542.729|221952.006|122.039 +638537.846|221956.493|121.804 +638532.988|221960.949|121.472 +638528.138|221965.402|121.207 +638523.301|221969.843|121.021 +638518.494|221974.257|120.762 +638513.605|221978.743|120.363 +638508.756|221983.190|119.933 +638504.035|221987.534|120.183 +638470.570|222018.264|119.384 +638465.654|222022.766|118.342 +638460.920|222027.112|118.217 +638456.169|222031.477|118.269 +638451.548|222035.729|118.720 +638446.711|222040.167|118.147 +638441.934|222044.547|117.668 +638427.542|222057.744|116.053 +638422.796|222062.103|115.800 +638418.062|222066.450|115.626 +638413.460|222070.680|115.843 +638408.879|222074.890|115.928 +638399.552|222083.457|115.894 +638389.618|222092.537|112.788 +638380.182|222101.197|112.005 +638375.421|222105.562|111.459 +638370.754|222109.847|111.112 +638347.251|222131.403|108.591 +638342.606|222135.664|108.265 +638309.087|222166.354|100.956 +638304.125|222170.886|99.112 +638299.480|222175.145|98.573 +638280.777|222192.280|95.320 +638276.327|222196.368|95.238 +638271.761|222200.556|94.729 +638245.743|222224.458|96.137 +638241.488|222228.372|96.518 +638229.086|222239.790|98.911 +638256.488|222211.827|95.311 +638260.816|222207.844|95.046 +638265.239|222203.771|94.961 +638269.475|222199.867|94.363 +638274.072|222195.645|94.985 +638278.577|222191.506|95.262 +638283.252|222187.215|96.030 +638297.389|222174.245|98.710 +638301.970|222170.036|98.975 +638306.755|222165.647|100.103 +638326.391|222147.673|106.253 +638331.207|222143.259|107.433 +638340.552|222134.670|108.256 +638345.188|222130.409|108.543 +638349.894|222126.084|108.927 +638354.551|222121.807|109.341 +638364.064|222113.069|110.435 +638368.785|222108.735|110.984 +638378.252|222100.039|111.786 +638382.992|222095.683|112.261 +638397.766|222082.141|115.824 +638411.799|222069.226|115.861 +638416.401|222064.987|115.638 +638421.187|222060.582|115.812 +638425.963|222056.193|116.196 +638440.435|222042.895|117.690 +638445.357|222038.374|118.631 +638450.149|222033.967|118.726 +638454.828|222029.654|118.305 +638459.595|222025.268|118.324 +638479.294|222007.175|121.247 +638503.187|221985.174|120.674 +638507.939|221980.791|120.052 +638512.828|221976.299|120.427 +638517.760|221971.763|120.792 +638522.664|221967.252|121.030 +638527.504|221962.799|121.231 +638532.445|221958.255|121.442 +638537.337|221953.756|121.695 +638542.244|221949.245|122.048 +638547.188|221944.697|122.362 +638552.123|221940.162|122.643 +638557.058|221935.620|122.963 +638561.971|221931.106|123.164 +638566.924|221926.546|123.359 +638571.926|221921.953|124.127 +638577.010|221917.289|125.112 +638606.804|221889.894|126.992 +638616.722|221880.765|127.050 +638621.672|221876.208|126.910 +638631.563|221867.104|126.943 +638636.477|221862.578|126.626 +638651.320|221848.904|125.843 +638656.215|221844.396|125.489 +638661.208|221839.800|125.459 +638666.195|221835.216|125.755 +638671.309|221830.516|126.258 +638676.262|221825.959|126.379 +638681.322|221821.305|126.578 +638686.403|221816.638|127.285 +638691.435|221812.008|127.352 +638701.576|221802.684|128.096 +638706.693|221797.984|128.867 +638711.805|221793.290|129.613 +638716.731|221788.752|129.037 +638721.748|221784.134|129.165 +638726.798|221779.486|129.205 +638736.792|221770.287|128.888 +638741.809|221765.666|128.736 +638746.848|221761.027|128.778 +638751.837|221756.428|128.068 +638756.769|221751.883|127.693 +638761.844|221747.211|127.687 +638766.824|221742.623|127.324 +638771.845|221737.996|126.925 +638786.853|221724.158|125.361 +638791.827|221719.574|125.035 +638796.875|221714.920|124.505 +638801.892|221710.296|124.176 +638806.933|221705.654|124.051 +638822.204|221691.606|124.700 +638827.306|221686.912|124.804 +638832.387|221682.239|125.182 +638842.659|221672.797|126.154 +638847.776|221668.090|126.520 +638852.861|221663.412|126.575 +638863.013|221654.073|127.138 +638868.088|221649.403|127.193 +638873.172|221644.724|127.364 +638883.365|221635.346|127.556 +638888.419|221630.691|127.477 +638893.490|221626.025|127.644 +638898.550|221621.364|127.708 +638908.755|221611.974|127.736 +638913.796|221607.331|127.641 +638923.952|221597.983|127.833 +638929.012|221593.323|127.410 +638934.075|221588.656|127.081 +638939.156|221583.978|126.971 +638944.164|221579.363|126.568 +638949.266|221574.657|126.172 +638959.343|221565.373|125.572 +638964.448|221560.679|125.898 +638969.553|221555.985|126.236 +638989.817|221537.322|125.630 +638999.951|221527.992|125.462 +639020.181|221509.359|124.718 +639035.348|221495.390|124.167 +639050.505|221481.427|123.600 +639081.068|221453.252|120.427 +639085.780|221448.911|120.271 +639090.840|221444.251|120.332 +639095.942|221439.554|120.171 +639100.947|221434.945|120.055 +639106.049|221430.245|119.906 +639111.088|221425.600|119.305 +639121.152|221416.334|119.208 +639141.345|221397.729|118.049 +639156.454|221383.779|114.953 +639181.637|221360.589|113.410 +639186.645|221355.978|113.096 +639191.701|221351.317|112.621 +639196.712|221346.706|112.368 +639201.769|221342.045|111.932 +639206.783|221337.427|111.630 +639211.797|221332.813|111.527 +639231.908|221314.308|111.185 +639236.925|221309.685|110.737 +639241.942|221305.064|110.377 +639262.049|221286.511|106.622 +639267.024|221281.939|106.860 +639272.047|221277.318|106.942 +639292.154|221258.731|101.023 +639307.029|221245.106|105.156 +639321.842|221231.555|110.670 +639326.868|221226.931|110.652 +639331.803|221222.390|110.548 +639336.789|221217.799|110.316 +639341.733|221213.246|110.012 +639346.705|221208.677|110.341 +639366.434|221190.532|110.847 +639371.375|221186.003|112.002 +639390.956|221168.013|113.874 +639400.852|221158.891|112.548 +639405.748|221154.386|112.566 +639410.624|221149.905|113.005 +639420.369|221140.953|114.038 +639425.221|221136.491|114.032 +639430.107|221132.001|114.358 +639434.932|221127.566|114.849 +639439.836|221123.055|114.849 +639444.692|221118.590|114.892 +639454.378|221109.674|114.617 +639468.914|221096.300|114.724 +639473.758|221091.837|114.334 +639478.610|221087.369|113.898 +639483.426|221082.940|113.977 +639488.196|221078.560|114.760 +639497.739|221069.782|114.919 +639521.587|221047.846|115.242 +639526.314|221043.505|115.428 +639531.048|221039.156|115.556 +639535.788|221034.800|115.635 +639549.958|221021.779|115.995 +639554.658|221017.457|116.044 +639559.324|221013.165|115.943 +639564.018|221008.852|116.117 +639568.670|221004.582|116.260 +639573.370|221000.263|116.406 +639578.051|220995.956|116.239 +639582.709|220991.677|116.333 +639596.772|220978.735|115.404 +639610.613|220966.013|115.483 +639615.225|220961.773|115.260 +639619.849|220957.524|115.401 +639633.595|220944.884|115.294 +639638.225|220940.626|115.035 +639642.785|220936.429|114.550 +639647.403|220932.183|114.443 +639651.959|220927.992|114.459 +639656.489|220923.825|114.294 +639661.024|220919.653|114.117 +639674.612|220907.156|113.483 +639679.178|220902.953|113.163 +639683.674|220898.819|113.041 +639692.669|220890.547|112.807 +639697.122|220886.451|112.688 +639701.590|220882.345|112.490 +639706.019|220878.273|112.599 +639710.472|220874.176|112.532 +639723.813|220861.905|111.901 +639728.254|220857.821|111.661 +639732.771|220853.657|110.883 +639737.163|220849.618|110.685 +639745.966|220841.520|110.219 +639776.922|220813.009|106.278 +639781.277|220808.998|105.888 +639789.946|220801.021|105.449 +639794.286|220797.025|104.906 +639798.587|220793.069|104.647 +639802.878|220789.122|104.464 +639807.152|220785.193|104.412 +639820.151|220773.223|102.931 +639824.446|220769.270|102.529 +639837.165|220757.569|101.819 +639841.198|220753.868|102.468 +639845.444|220749.961|102.151 +639849.552|220746.194|102.675 +639853.637|220742.441|103.041 +639857.617|220738.799|104.047 +639865.820|220731.267|104.656 +639869.880|220727.543|104.940 +639873.955|220723.803|105.138 +639882.151|220716.271|105.306 +639886.250|220712.504|105.400 +639894.267|220705.149|106.104 +639898.269|220701.476|106.503 +639902.292|220697.779|106.513 +639910.400|220690.330|106.534 +639914.481|220686.578|106.287 +639918.523|220682.859|105.985 +639926.362|220675.669|107.022 +639930.130|220672.218|107.945 +639934.116|220668.558|108.000 +639941.895|220661.419|108.625 +639945.833|220657.801|108.692 +639953.675|220650.596|108.805 +639980.720|220625.752|109.414 +639984.506|220622.277|109.618 +639992.105|220615.297|109.667 +639995.899|220611.807|109.597 +639999.694|220608.317|109.548 +640003.504|220604.818|109.454 +640007.317|220601.310|109.341 +640011.030|220597.902|109.481 +640014.742|220594.491|109.634 +640018.485|220591.050|109.408 +640022.256|220587.581|109.079 +640025.977|220584.158|108.975 +639879.840|220716.152|105.446 +639875.701|220719.950|105.293 +639871.553|220723.757|105.214 +639867.371|220727.592|105.037 +639854.960|220738.961|103.824 +639850.872|220742.697|102.834 +639846.678|220746.544|102.797 +639838.287|220754.234|102.197 +639834.197|220757.977|101.270 +639829.871|220761.949|101.483 +639825.434|220766.033|102.422 +639803.634|220786.061|104.412 +639790.510|220798.119|105.281 +639786.114|220802.155|105.534 +639781.704|220806.206|105.900 +639777.315|220810.238|106.153 +639759.520|220826.597|108.366 +639755.058|220830.700|108.924 +639750.620|220834.775|109.320 +639746.100|220838.932|109.969 +639741.620|220843.050|110.384 +639737.224|220847.086|110.551 +639732.820|220851.124|110.454 +639728.266|220855.318|111.487 +639723.767|220859.451|111.764 +639719.345|220863.514|111.877 +639710.420|220871.713|112.392 +639705.912|220875.853|112.471 +639701.432|220879.964|112.365 +639696.960|220884.073|112.590 +639692.477|220888.188|112.526 +639678.913|220900.645|113.011 +639674.341|220904.848|113.374 +639669.751|220909.064|113.517 +639665.203|220913.243|113.727 +639660.661|220917.412|113.901 +639656.071|220921.631|114.114 +639651.484|220925.846|114.322 +639646.900|220930.055|114.529 +639642.306|220934.268|114.383 +639637.701|220938.501|114.824 +639614.579|220959.734|115.196 +639609.964|220963.974|115.413 +639605.316|220968.238|115.077 +639600.631|220972.545|115.574 +639595.974|220976.815|115.327 +639591.255|220981.152|115.730 +639586.552|220985.474|116.013 +639581.861|220989.784|116.220 +639577.140|220994.115|116.227 +639572.443|220998.431|116.525 +639567.703|221002.778|116.272 +639563.043|221007.060|116.257 +639548.763|221020.167|116.352 +639544.048|221024.492|115.931 +639539.250|221028.893|115.891 +639534.514|221033.240|115.733 +639529.728|221037.632|115.611 +639524.931|221042.036|115.672 +639520.127|221046.437|115.193 +639510.514|221055.261|115.032 +639505.658|221059.721|115.282 +639500.830|221064.152|115.221 +639496.029|221068.554|114.803 +639486.276|221077.506|114.782 +639481.451|221081.925|114.062 +639476.577|221086.400|114.066 +639471.691|221090.890|114.273 +639452.044|221108.931|114.797 +639447.191|221113.381|114.608 +639442.208|221117.965|115.074 +639437.307|221122.461|114.968 +639432.372|221126.987|114.605 +639427.422|221131.532|114.565 +639422.502|221136.037|113.913 +639417.546|221140.587|114.011 +639412.612|221145.114|113.727 +639407.659|221149.646|112.816 +639402.718|221154.181|112.700 +639397.676|221158.823|113.715 +639387.688|221167.992|113.773 +639367.772|221186.237|111.523 +639362.807|221190.785|110.896 +639352.727|221200.036|111.082 +639347.701|221204.641|110.813 +639342.636|221209.283|110.347 +639337.658|221213.849|110.100 +639327.530|221223.149|110.658 +639322.497|221227.766|110.713 +639317.468|221232.378|110.664 +639307.455|221241.507|106.534 +639297.431|221250.642|101.971 +639292.362|221255.275|100.956 +639287.232|221260.020|103.666 +639271.995|221274.047|106.979 +639266.966|221278.662|106.979 +639261.845|221283.356|106.659 +639256.764|221288.022|107.250 +639236.458|221306.704|110.826 +639231.392|221311.355|110.871 +639221.255|221320.657|111.161 +639211.077|221330.003|111.652 +639206.009|221334.651|111.572 +639200.897|221339.345|111.792 +639190.772|221348.644|112.572 +639185.663|221353.338|112.996 +639180.604|221357.986|113.398 +639160.328|221376.610|115.059 +639155.217|221381.300|115.050 +639150.245|221385.891|117.199 +639140.096|221395.215|118.147 +639135.036|221399.857|118.165 +639119.881|221413.777|119.162 +639109.759|221423.061|119.220 +639099.661|221432.336|119.963 +639094.604|221436.978|120.101 +639089.541|221441.624|120.158 +639084.482|221446.266|120.223 +639079.431|221450.902|120.411 +639059.226|221469.458|121.661 +639044.175|221483.296|123.795 +639034.104|221492.537|124.103 +639029.032|221497.189|124.026 +639013.954|221511.033|124.691 +638993.834|221529.495|125.255 +638988.811|221534.103|125.361 +638983.806|221538.696|125.767 +638978.780|221543.305|125.855 +638973.751|221547.917|125.919 +638963.671|221557.155|125.822 +638958.642|221561.770|125.922 +638948.595|221570.978|125.752 +638938.622|221580.131|126.651 +638933.599|221584.743|126.925 +638928.616|221589.312|127.114 +638923.608|221593.911|127.602 +638903.497|221612.348|127.660 +638898.504|221616.930|127.858 +638893.445|221621.569|127.836 +638888.464|221626.132|127.678 +638883.386|221630.786|127.513 +638878.366|221635.385|127.504 +638873.361|221639.979|127.635 +638863.291|221649.208|127.388 +638858.243|221653.832|127.172 +638853.199|221658.453|127.047 +638848.133|221663.095|126.690 +638843.104|221667.697|126.288 +638838.099|221672.284|126.123 +638827.952|221681.581|125.526 +638822.874|221686.223|124.798 +638817.854|221690.822|124.624 +638812.831|221695.425|124.441 +638807.750|221700.082|124.212 +638802.785|221704.633|124.170 +638797.798|221709.205|124.401 +638792.848|221713.753|124.947 +638787.877|221718.315|125.313 +638782.906|221722.878|125.712 +638777.986|221727.395|126.145 +638773.015|221731.955|126.584 +638768.120|221736.454|127.227 +638763.094|221741.063|127.227 +638758.132|221745.620|127.766 +638753.206|221750.140|128.224 +638748.235|221754.700|128.339 +638738.329|221763.789|128.891 +638733.351|221768.352|129.025 +638728.380|221772.914|129.202 +638723.448|221777.438|129.330 +638718.437|221782.028|129.272 +638713.457|221786.594|129.089 +638708.397|221791.227|128.729 +638703.420|221795.787|128.638 +638698.357|221800.420|127.955 +638693.389|221804.967|127.635 +638688.360|221809.573|127.254 +638683.318|221814.187|126.831 +638678.338|221818.750|126.504 +638673.360|221823.310|126.215 +638668.392|221827.861|126.044 +638663.354|221832.472|125.407 +638658.386|221837.026|125.270 +638653.448|221841.549|125.374 +638633.934|221859.453|126.489 +638629.024|221863.958|126.529 +638624.138|221868.439|126.754 +638619.219|221872.950|126.770 +638614.391|221877.382|127.068 +638599.608|221890.930|126.620 +638564.897|221922.712|123.347 +638560.036|221927.165|123.127 +638545.356|221940.616|122.390 +638540.416|221945.139|122.124 +638535.572|221949.577|121.850 +638530.726|221954.018|121.594 +638525.831|221958.501|121.366 +638520.991|221962.936|121.195 +638516.138|221967.383|120.972 +638511.319|221971.797|120.686 +638506.467|221976.247|120.506 +638482.787|221997.967|121.366 +638478.105|222002.265|121.661 +638458.519|222020.181|118.842 +638453.761|222024.543|118.619 +638449.021|222028.886|118.519 +638444.376|222033.150|118.881 +638439.636|222037.494|118.814 +638434.726|222041.983|117.723 +638425.103|222050.792|116.800 +638415.575|222059.515|115.934 +638406.221|222068.092|115.964 +638392.292|222080.861|115.779 +638382.184|222090.075|112.218 +638377.561|222094.311|112.033 +638368.097|222102.974|111.021 +638363.357|222107.311|110.402 +638358.666|222111.606|110.015 +638354.030|222115.852|109.661 +638349.382|222120.107|109.280 +638344.737|222124.362|108.942 +638340.085|222128.620|108.588 +638330.749|222137.166|107.592 +638311.394|222154.839|102.450 +638306.384|222159.405|100.377 +638301.620|222163.754|99.350 +638273.752|222189.248|95.253 +638269.237|222193.381|94.955 +638260.398|222201.485|94.936 +638256.082|222205.448|95.250 +638251.754|222209.425|95.525 +638247.441|222213.385|95.875 +638243.177|222217.301|96.216 +638238.876|222221.249|96.442 +638234.707|222225.086|97.161 +638230.561|222228.896|97.795 +638256.628|222202.638|95.046 +638261.047|222198.575|95.134 +638265.403|222194.563|94.787 +638269.932|222190.406|95.122 +638274.453|222186.251|95.238 +638278.967|222182.106|95.558 +638302.409|222160.612|99.712 +638312.208|222151.644|102.715 +638345.721|222120.927|109.076 +638350.378|222116.650|109.478 +638355.082|222112.331|109.875 +638359.763|222108.030|110.207 +638364.509|222103.672|110.612 +638369.243|222099.328|110.975 +638374.141|222094.839|112.097 +638378.740|222090.611|112.161 +638383.583|222086.170|112.862 +638388.823|222081.391|115.340 +638393.648|222076.962|116.035 +638407.650|222064.087|115.867 +638412.351|222059.765|115.849 +638417.102|222055.401|116.080 +638421.912|222050.987|116.601 +638426.743|222046.552|117.013 +638431.586|222042.108|117.504 +638436.570|222037.542|118.689 +638441.355|222033.150|118.961 +638446.007|222028.868|118.616 +638450.786|222024.475|118.659 +638455.602|222020.053|118.903 +638460.588|222015.484|119.994 +638465.642|222010.860|121.457 +638475.310|222001.975|121.807 +638480.031|221997.632|121.448 +638508.750|221971.224|120.646 +638513.596|221966.771|120.808 +638518.506|221962.260|121.058 +638528.224|221953.332|121.366 +638533.268|221948.705|122.131 +638547.938|221935.227|122.679 +638552.858|221930.710|122.880 +638557.734|221926.226|122.874 +638562.660|221921.703|123.155 +638567.729|221917.061|124.267 +638582.685|221903.332|125.557 +638587.583|221898.834|125.837 +638592.607|221894.222|126.279 +638607.411|221880.622|126.791 +638612.345|221876.086|126.803 +638617.241|221871.584|126.614 +638622.166|221867.058|126.608 +638627.122|221862.501|126.523 +638632.008|221858.006|126.334 +638651.671|221839.916|125.230 +638656.609|221835.380|125.130 +638661.607|221830.784|125.151 +638666.594|221826.203|125.432 +638671.693|221821.527|126.154 +638676.695|221816.931|126.276 +638681.727|221812.313|126.611 +638686.766|221807.686|127.035 +638691.859|221803.013|127.507 +638696.861|221798.417|127.727 +638701.963|221793.735|128.342 +638706.971|221789.139|128.665 +638717.072|221779.864|129.287 +638722.065|221775.274|129.226 +638727.051|221770.689|129.141 +638732.092|221766.053|129.132 +638737.085|221761.460|128.766 +638742.087|221756.864|128.858 +638747.052|221752.295|128.300 +638752.069|221747.680|128.187 +638757.043|221743.102|127.733 +638762.003|221738.536|127.187 +638767.001|221733.936|126.968 +638772.012|221729.328|126.450 +638776.980|221724.750|126.041 +638781.991|221720.138|125.572 +638787.030|221715.502|125.349 +638792.047|221710.887|124.956 +638797.033|221706.291|124.331 +638802.014|221701.710|124.084 +638807.156|221696.986|124.429 +638812.203|221692.343|124.389 +638817.327|221687.637|124.606 +638822.451|221682.937|125.307 +638827.510|221678.289|125.465 +638832.640|221673.577|125.858 +638847.999|221659.471|126.925 +638853.071|221654.816|127.340 +638858.192|221650.107|127.318 +638863.285|221645.428|127.526 +638868.357|221640.768|127.550 +638873.428|221636.102|127.623 +638878.537|221631.405|127.580 +638883.615|221626.741|127.730 +638888.736|221622.035|127.870 +638893.795|221617.384|127.891 +638898.858|221612.723|127.407 +638914.162|221598.663|127.983 +638919.237|221593.990|127.751 +638924.248|221589.379|127.318 +638929.323|221584.712|127.059 +638934.392|221580.046|126.797 +638949.559|221566.086|125.441 +638959.803|221556.671|125.803 +638964.893|221551.992|125.919 +638980.118|221537.992|125.675 +638985.226|221533.292|125.435 +638990.286|221528.638|125.169 +638995.364|221523.972|125.240 +639010.592|221509.963|124.633 +639020.751|221500.618|124.097 +639025.811|221495.963|123.926 +639030.922|221491.260|123.895 +639036.037|221486.560|123.911 +639046.141|221477.264|123.353 +639056.205|221467.992|121.975 +639081.534|221444.681|120.229 +639086.591|221440.033|120.073 +639091.657|221435.375|120.155 +639096.753|221430.687|119.832 +639101.761|221426.082|119.643 +639116.973|221412.088|119.131 +639122.030|221407.440|119.104 +639127.077|221402.792|118.714 +639132.119|221398.150|118.001 +639142.238|221388.847|118.104 +639147.231|221384.245|117.184 +639157.308|221374.948|114.901 +639162.322|221370.340|115.026 +639182.445|221351.808|113.112 +639187.452|221347.196|112.718 +639192.512|221342.539|112.289 +639197.526|221337.924|111.981 +639202.537|221333.310|111.612 +639207.554|221328.695|111.520 +639212.522|221324.129|111.517 +639217.539|221319.511|111.164 +639222.556|221314.897|111.024 +639227.525|221310.322|110.798 +639232.542|221305.707|110.679 +639252.451|221287.355|107.506 +639257.477|221282.728|107.168 +639262.458|221278.144|106.759 +639267.432|221273.575|107.076 +639272.412|221268.991|106.799 +639282.361|221259.804|104.300 +639292.340|221250.584|101.017 +639297.251|221246.091|102.568 +639302.134|221241.635|105.202 +639307.056|221237.148|107.979 +639316.859|221228.175|110.621 +639321.790|221223.639|110.615 +639326.725|221219.101|110.563 +639331.657|221214.565|110.539 +639336.555|221210.057|110.204 +639341.483|221205.528|110.387 +639346.348|221201.063|111.097 +639351.292|221196.515|110.899 +639356.181|221192.019|110.883 +639361.070|221187.523|110.886 +639385.454|221165.145|113.953 +639390.303|221160.683|113.858 +639400.087|221151.673|112.953 +639404.982|221147.177|113.057 +639409.804|221142.748|113.596 +639414.696|221138.252|113.791 +639419.518|221133.827|114.373 +639424.359|221129.380|114.623 +639429.226|221124.899|114.376 +639438.895|221116.020|115.148 +639443.787|221111.515|114.599 +639448.627|221107.068|114.940 +639453.446|221102.637|114.864 +639458.313|221098.159|114.791 +639463.138|221093.718|114.651 +639467.973|221089.274|114.447 +639472.782|221084.851|114.602 +639477.674|221080.350|114.285 +639482.423|221075.988|114.687 +639487.260|221071.547|115.187 +639492.030|221067.164|115.340 +639501.635|221058.334|115.410 +639506.463|221053.893|115.455 +639516.037|221045.090|115.431 +639520.807|221040.707|115.687 +639525.598|221036.300|115.669 +639530.332|221031.953|115.843 +639535.117|221027.552|115.958 +639539.854|221023.199|116.099 +639544.578|221018.859|116.397 +639554.094|221010.105|116.278 +639558.846|221005.737|116.327 +639563.558|221001.403|116.309 +639577.783|220988.318|115.961 +639582.520|220983.959|115.779 +639591.953|220975.282|115.416 +639596.641|220970.969|115.309 +639610.702|220958.039|115.196 +639643.288|220928.059|114.187 +639647.890|220923.825|114.230 +639652.542|220919.546|113.889 +639657.135|220915.318|113.633 +639661.722|220911.100|113.477 +639666.352|220906.839|113.364 +639670.939|220902.620|113.252 +639675.502|220898.417|112.941 +639680.096|220894.193|112.831 +639689.218|220885.795|112.359 +639693.693|220881.684|112.465 +639698.237|220877.505|112.447 +639702.733|220873.369|112.414 +639707.256|220869.208|112.218 +639720.756|220856.784|111.502 +639725.227|220852.673|111.411 +639729.787|220848.469|110.682 +639734.216|220844.394|110.585 +639743.128|220836.189|110.042 +639769.905|220811.518|106.692 +639774.297|220807.474|106.372 +639778.692|220803.429|106.058 +639783.045|220799.421|105.702 +639800.406|220783.437|104.556 +639809.014|220775.515|104.086 +639817.725|220767.487|102.757 +639822.023|220763.528|102.322 +639826.333|220759.556|101.852 +639830.600|220755.627|101.352 +639834.824|220751.738|101.136 +639838.772|220748.129|102.617 +639842.908|220744.328|102.956 +639847.001|220740.567|103.251 +639851.070|220736.836|104.025 +639855.115|220733.124|104.638 +639859.138|220729.433|105.107 +639871.416|220718.158|105.656 +639875.461|220714.439|105.751 +639879.511|220710.718|105.815 +639883.468|220707.091|106.439 +639887.500|220703.387|106.653 +639891.426|220699.788|107.186 +639907.468|220685.047|107.278 +639911.525|220681.311|106.875 +639915.484|220677.671|106.750 +639931.001|220663.428|108.082 +639938.676|220656.387|108.985 +639942.593|220652.787|108.899 +639950.289|220645.716|109.219 +639965.642|220631.607|109.198 +639969.397|220628.160|109.506 +639973.149|220624.715|109.841 +639976.926|220621.244|109.823 +639980.702|220617.775|109.811 +639984.494|220614.285|109.728 +639992.028|220607.360|109.612 +639995.835|220603.858|109.506 +639999.505|220600.487|109.579 +640003.108|220597.183|109.978 +640006.851|220593.738|109.960 +640010.481|220590.404|110.015 +640014.215|220586.972|109.829 +640021.643|220580.135|109.204 +639879.533|220709.233|106.007 +639875.412|220713.001|105.732 +639871.218|220716.841|105.610 +639858.623|220728.363|105.083 +639854.448|220732.179|104.611 +639850.241|220736.022|104.025 +639846.108|220739.799|103.330 +639841.835|220743.706|103.166 +639837.620|220747.559|102.675 +639833.557|220751.259|101.261 +639829.204|220755.252|101.633 +639824.681|220759.401|102.434 +639820.310|220763.409|102.660 +639815.887|220767.459|102.898 +639806.999|220775.613|104.047 +639802.595|220779.652|104.266 +639798.175|220783.702|104.583 +639793.667|220787.838|105.171 +639780.357|220800.034|105.714 +639775.858|220804.157|106.016 +639771.362|220808.278|106.330 +639766.918|220812.351|106.641 +639762.383|220816.514|107.281 +639757.878|220820.647|107.732 +639753.232|220824.914|108.823 +639744.180|220833.217|109.829 +639739.660|220837.362|110.149 +639735.118|220841.523|110.295 +639730.644|220845.620|110.329 +639726.096|220849.792|110.920 +639721.518|220853.989|111.405 +639712.474|220862.274|111.609 +639707.918|220866.450|112.008 +639703.361|220870.619|112.042 +639698.829|220874.774|112.313 +639694.290|220878.928|112.261 +639689.749|220883.086|112.264 +639680.635|220891.434|112.566 +639676.081|220895.607|112.721 +639671.467|220899.834|113.011 +639666.873|220904.041|113.130 +639662.286|220908.241|113.230 +639657.687|220912.456|113.462 +639653.102|220916.653|113.584 +639648.488|220920.884|114.002 +639643.861|220925.124|114.130 +639639.255|220929.339|114.087 +639634.604|220933.603|114.471 +639629.998|220937.822|114.492 +639625.353|220942.080|114.879 +639611.442|220954.817|115.087 +639602.219|220963.260|114.986 +639592.871|220971.822|115.260 +639578.886|220984.633|115.739 +639574.241|220988.888|115.949 +639560.156|221001.787|116.266 +639555.438|221006.109|116.333 +639541.362|221018.993|116.297 +639536.623|221023.334|116.156 +639531.944|221027.610|115.839 +639522.443|221036.309|115.879 +639517.774|221040.579|115.519 +639512.998|221044.950|115.318 +639489.095|221066.838|115.492 +639484.340|221071.184|115.114 +639479.610|221075.506|114.407 +639474.788|221079.920|114.319 +639469.926|221084.379|114.821 +639465.104|221088.792|114.770 +639460.285|221093.203|114.730 +639455.406|221097.674|114.888 +639450.526|221102.146|115.102 +639445.713|221106.550|115.020 +639435.984|221115.459|115.077 +639431.134|221119.897|114.882 +639426.239|221124.375|114.626 +639421.384|221128.819|114.565 +639411.606|221137.762|113.938 +639406.677|221142.270|113.474 +639401.791|221146.738|113.121 +639396.805|221151.313|113.889 +639391.910|221155.797|113.852 +639386.963|221160.323|113.800 +639381.958|221164.910|114.084 +639372.064|221173.975|114.261 +639362.201|221182.988|112.493 +639357.272|221187.484|110.822 +639352.276|221192.062|110.987 +639347.293|221196.628|110.813 +639342.251|221201.249|110.954 +639337.277|221205.796|110.438 +639332.248|221210.405|110.262 +639327.249|221214.989|110.649 +639322.171|221219.643|110.606 +639317.136|221224.258|110.630 +639307.102|221233.436|109.484 +639302.140|221237.934|106.129 +639292.060|221247.106|101.584 +639281.892|221256.460|104.065 +639276.799|221261.139|104.800 +639261.528|221275.160|106.994 +639256.502|221279.759|106.583 +639251.366|221284.487|107.951 +639230.963|221303.220|110.640 +639225.894|221307.865|110.649 +639220.727|221312.605|110.862 +639215.610|221317.298|111.249 +639210.541|221321.944|111.423 +639205.423|221326.634|111.444 +639200.260|221331.368|111.563 +639195.194|221336.016|112.020 +639190.034|221340.750|112.279 +639184.926|221345.441|113.035 +639179.814|221350.129|113.459 +639159.335|221368.916|115.001 +639149.133|221378.283|116.217 +639123.536|221401.774|118.567 +639118.436|221406.450|119.067 +639113.328|221411.131|119.159 +639108.177|221415.856|119.409 +639103.071|221420.537|119.537 +639097.963|221425.219|119.683 +639092.864|221429.898|120.034 +639087.743|221434.586|119.899 +639082.638|221439.267|120.091 +639077.489|221443.989|120.277 +639057.034|221462.749|121.533 +639031.605|221486.082|123.773 +639026.487|221490.773|123.789 +639016.313|221500.100|124.133 +639006.142|221509.426|124.584 +639001.039|221514.108|124.929 +638990.908|221523.399|125.307 +638985.830|221528.056|125.313 +638980.743|221532.719|125.215 +638975.680|221537.364|125.480 +638965.539|221546.667|125.858 +638960.504|221551.288|125.877 +638955.414|221555.951|125.840 +638940.247|221569.859|125.959 +638935.273|221574.425|126.264 +638930.259|221579.031|126.663 +638920.212|221588.251|127.294 +638915.192|221592.860|127.669 +638910.169|221597.468|128.013 +638905.177|221602.049|128.175 +638885.057|221620.490|127.852 +638880.040|221625.092|127.830 +638875.026|221629.689|127.882 +638869.987|221634.306|127.678 +638864.979|221638.900|127.843 +638859.975|221643.484|127.544 +638854.945|221648.096|127.529 +638849.938|221652.683|127.266 +638844.927|221657.273|127.007 +638839.870|221661.909|126.776 +638834.838|221666.518|126.367 +638829.815|221671.117|126.090 +638824.755|221675.747|125.477 +638819.717|221680.362|125.112 +638814.669|221684.982|124.694 +638809.695|221689.542|124.523 +638804.690|221694.133|124.532 +638799.719|221698.689|124.444 +638789.828|221707.766|125.197 +638784.896|221712.293|125.496 +638779.943|221716.837|125.636 +638775.033|221721.345|126.154 +638770.065|221725.908|126.611 +638765.172|221730.398|126.901 +638760.241|221734.927|127.260 +638750.420|221743.940|128.022 +638745.461|221748.491|128.227 +638740.581|221752.968|128.702 +638735.619|221757.522|128.918 +638730.706|221762.033|129.144 +638725.774|221766.553|129.278 +638720.842|221771.076|129.415 +638715.865|221775.636|129.242 +638710.881|221780.205|129.028 +638705.904|221784.765|128.915 +638700.930|221789.322|128.477 +638690.914|221798.490|127.590 +638685.918|221803.065|127.096 +638680.916|221807.643|126.602 +638675.936|221812.206|126.279 +638670.983|221816.748|126.166 +638665.939|221821.359|125.477 +638660.986|221825.898|125.093 +638656.036|221830.436|125.078 +638651.153|221834.914|125.203 +638626.769|221857.283|126.315 +638621.870|221861.779|126.447 +638616.985|221866.253|126.395 +638612.099|221870.737|126.639 +638607.234|221875.199|126.739 +638602.327|221879.692|126.626 +638597.526|221884.100|126.849 +638592.445|221888.745|126.035 +638582.560|221897.794|125.252 +638562.888|221915.808|123.969 +638557.835|221920.426|122.969 +638552.970|221924.882|122.752 +638548.081|221929.359|122.441 +638543.208|221933.822|122.243 +638538.285|221938.327|121.792 +638523.780|221951.625|121.725 +638518.860|221956.124|121.137 +638514.020|221960.559|120.966 +638494.988|221978.018|121.996 +638485.484|221986.732|122.292 +638480.598|221991.207|121.780 +638475.923|221995.495|122.103 +638471.168|221999.851|122.051 +638461.527|222008.678|121.369 +638456.571|222013.207|120.408 +638451.603|222017.749|119.406 +638446.778|222022.162|118.897 +638442.075|222026.472|118.732 +638437.341|222030.812|118.945 +638432.693|222035.073|119.092 +638427.761|222039.578|117.918 +638422.851|222044.068|117.123 +638418.069|222048.445|116.714 +638413.311|222052.801|116.199 +638408.605|222057.107|115.955 +638403.883|222061.436|115.891 +638389.981|222074.179|116.065 +638385.104|222078.636|115.163 +638379.935|222083.342|112.761 +638375.162|222087.706|112.148 +638370.389|222092.071|111.325 +638365.698|222096.363|110.902 +638360.967|222100.697|110.539 +638356.282|222104.986|110.179 +638351.637|222109.234|109.798 +638346.956|222113.523|109.497 +638342.356|222117.732|109.116 +638332.901|222126.383|108.018 +638308.743|222148.435|101.727 +638303.924|222152.833|100.438 +638275.821|222178.522|95.470 +638271.307|222182.655|95.144 +638266.863|222186.727|95.128 +638262.370|222190.839|94.933 +638258.082|222194.774|95.332 +638253.674|222198.809|95.506 +638249.337|222202.787|95.747 +638240.678|222210.721|96.131 +638232.280|222218.423|97.158 +638228.059|222222.297|97.707 +638223.990|222226.034|98.640 +638261.252|222189.711|94.942 +638270.088|222181.594|94.973 +638274.639|222177.418|95.430 +638302.878|222151.556|100.913 +638307.435|222147.371|101.133 +638341.189|222116.477|109.064 +638345.840|222112.209|109.433 +638350.491|222107.942|109.832 +638355.188|222103.632|110.213 +638359.876|222099.331|110.585 +638364.567|222095.028|110.987 +638369.261|222090.721|111.420 +638374.043|222086.338|112.051 +638384.019|222077.218|115.202 +638398.250|222064.164|116.419 +638402.795|222059.979|115.907 +638407.501|222055.657|116.129 +638412.265|222051.283|116.400 +638417.063|222046.878|116.851 +638421.872|222042.465|117.400 +638426.826|222037.926|118.638 +638431.715|222033.446|119.351 +638436.323|222029.200|118.775 +638441.084|222024.826|118.945 +638445.879|222020.425|119.290 +638450.865|222015.856|120.338 +638465.480|222002.441|121.756 +638475.051|221993.648|122.137 +638479.858|221989.228|121.960 +638484.701|221984.778|122.256 +638489.425|221980.432|121.954 +638513.310|221958.465|121.045 +638518.186|221953.984|121.137 +638532.814|221940.549|121.777 +638542.659|221931.508|122.374 +638547.499|221927.058|122.405 +638552.422|221922.538|122.618 +638557.423|221917.948|123.319 +638577.336|221899.675|125.282 +638582.213|221895.194|125.404 +638602.101|221876.931|126.636 +638607.045|221872.389|126.693 +638611.952|221867.878|126.538 +638616.838|221863.382|126.276 +638636.510|221845.286|125.310 +638651.418|221831.585|125.209 +638656.343|221827.053|125.051 +638661.309|221822.493|125.154 +638666.341|221817.872|125.422 +638671.446|221813.191|126.191 +638676.445|221808.597|126.288 +638681.502|221803.958|126.791 +638686.546|221799.328|127.266 +638691.642|221794.653|127.775 +638696.678|221790.032|128.233 +638701.734|221785.387|128.522 +638706.779|221780.754|128.763 +638711.790|221776.157|129.129 +638721.830|221766.931|129.385 +638726.856|221762.307|129.242 +638731.815|221757.748|128.967 +638741.843|221748.527|128.562 +638746.790|221743.974|128.257 +638751.856|221739.316|128.123 +638756.778|221734.787|127.638 +638761.786|221730.178|127.071 +638766.791|221725.573|126.916 +638771.796|221720.967|126.355 +638781.802|221711.762|125.660 +638786.883|221707.090|125.380 +638791.907|221702.469|125.038 +638796.939|221697.842|124.782 +638807.055|221688.546|124.804 +638812.179|221683.839|125.002 +638817.242|221679.191|125.118 +638822.356|221674.500|125.742 +638827.495|221669.785|126.160 +638837.691|221660.425|126.815 +638842.808|221655.728|127.145 +638847.917|221651.037|127.428 +638853.010|221646.361|127.571 +638858.088|221641.695|127.596 +638863.215|221636.986|127.644 +638868.293|221632.319|127.715 +638873.371|221627.656|127.815 +638878.485|221622.959|127.791 +638903.957|221599.556|128.129 +638909.081|221594.844|127.797 +638914.156|221590.177|127.519 +638919.234|221585.508|127.257 +638924.284|221580.860|126.660 +638929.414|221576.141|126.498 +638944.657|221562.120|125.401 +638954.908|221552.708|125.721 +638960.050|221547.984|125.806 +638970.288|221538.572|125.428 +638975.351|221533.917|125.133 +638980.474|221529.208|125.032 +638990.685|221519.826|125.102 +639000.905|221510.429|124.636 +639016.179|221496.384|123.847 +639021.293|221491.684|123.770 +639026.405|221486.987|123.600 +639031.513|221482.290|123.405 +639056.955|221458.887|121.487 +639072.262|221444.812|120.610 +639077.355|221440.124|120.143 +639082.503|221435.393|119.933 +639087.563|221430.742|119.808 +639092.723|221425.999|119.823 +639097.826|221421.309|119.503 +639102.879|221416.660|119.275 +639107.994|221411.963|119.305 +639113.099|221407.269|119.137 +639118.199|221402.579|118.793 +639138.523|221383.894|118.013 +639158.765|221365.259|114.916 +639173.944|221351.308|113.709 +639179.006|221346.654|113.377 +639184.066|221341.999|112.688 +639189.080|221337.388|112.225 +639194.146|221332.734|111.831 +639199.212|221328.076|111.456 +639204.232|221323.468|111.389 +639209.255|221318.859|111.389 +639219.298|221309.630|110.716 +639224.367|221304.972|110.603 +639229.390|221300.361|110.512 +639254.454|221277.287|105.991 +639259.425|221272.737|107.104 +639269.404|221263.565|106.196 +639274.409|221258.950|104.699 +639279.356|221254.400|104.184 +639289.332|221245.204|101.578 +639313.832|221222.844|110.743 +639318.724|221218.351|110.600 +639323.662|221213.822|110.649 +639328.505|221209.369|110.521 +639333.446|221204.836|110.505 +639338.323|221200.362|110.929 +639343.215|221195.875|111.011 +639348.098|221191.394|111.252 +639352.953|221186.932|110.960 +639357.821|221182.476|111.737 +639367.513|221173.612|114.221 +639372.354|221169.168|114.325 +639382.058|221160.259|114.166 +639386.966|221155.748|113.892 +639396.668|221146.845|113.934 +639401.496|221142.404|113.465 +639406.339|221137.963|113.712 +639411.115|221133.586|114.346 +639415.958|221129.142|114.599 +639420.765|221124.735|114.681 +639425.584|221120.306|114.526 +639430.391|221115.895|114.632 +639444.756|221102.716|115.199 +639454.348|221093.907|115.135 +639459.118|221089.530|115.166 +639463.946|221085.095|115.087 +639468.686|221080.746|114.946 +639473.541|221076.280|114.517 +639478.263|221071.946|114.636 +639482.996|221067.612|115.352 +639501.973|221050.193|115.577 +639506.682|221045.877|116.004 +639525.726|221028.396|115.846 +639530.390|221024.123|116.303 +639535.129|221019.773|116.434 +639539.851|221015.439|116.254 +639558.730|220998.111|116.348 +639572.854|220985.148|116.141 +639582.261|220976.507|115.559 +639586.961|220972.188|115.340 +639601.000|220959.298|114.962 +639605.681|220955.003|115.026 +639615.045|220946.405|114.754 +639619.638|220942.189|114.800 +639624.293|220937.919|114.764 +639628.993|220933.600|114.331 +639633.647|220929.327|114.322 +639638.283|220925.069|114.072 +639642.904|220920.826|113.986 +639652.185|220912.304|113.560 +639656.833|220908.037|113.307 +639661.475|220903.772|113.136 +639670.714|220895.290|112.843 +639679.922|220886.832|112.478 +639689.136|220878.373|112.197 +639693.665|220874.219|112.298 +639698.277|220869.985|112.170 +639702.846|220865.788|112.011 +639707.366|220861.637|111.874 +639716.544|220853.209|111.380 +639721.045|220849.073|111.088 +639725.669|220844.824|110.646 +639730.211|220840.651|110.448 +639734.688|220836.543|110.399 +639739.227|220832.370|109.932 +639743.762|220828.203|109.530 +639757.341|220815.719|107.933 +639761.886|220811.540|107.235 +639766.394|220807.394|106.784 +639770.853|220803.298|106.378 +639775.352|220799.165|106.065 +639779.753|220795.120|105.754 +639788.665|220786.930|105.129 +639801.888|220774.787|104.361 +639806.271|220770.757|103.967 +639815.201|220762.543|102.575 +639819.621|220758.477|102.041 +639824.041|220754.411|101.221 +639828.207|220750.598|101.989 +639836.477|220743.033|103.626 +639840.698|220739.159|103.779 +639844.907|220735.300|104.016 +639849.080|220731.478|104.489 +639853.219|220727.686|105.159 +639857.291|220723.958|105.653 +639865.600|220716.335|106.004 +639869.755|220712.519|106.043 +639873.851|220708.758|106.150 +639881.928|220701.357|107.342 +639885.927|220697.694|107.759 +639918.492|220667.774|106.699 +639922.330|220664.260|107.540 +639949.369|220639.465|109.807 +639957.089|220632.375|109.832 +639961.003|220628.775|109.591 +639968.516|220621.884|109.972 +639972.293|220618.415|109.948 +639976.121|220614.901|109.942 +639979.907|220611.423|109.902 +639983.631|220608.000|109.914 +639987.362|220604.577|109.920 +639991.029|220601.209|109.984 +639994.738|220597.804|110.118 +639998.402|220594.442|110.234 +640005.665|220587.770|110.301 +640009.320|220584.415|110.243 +640013.038|220580.995|109.902 +640016.742|220577.590|109.655 +639878.826|220702.382|107.034 +639874.830|220706.036|106.622 +639870.803|220709.721|106.113 +639866.649|220713.525|106.058 +639862.546|220717.283|105.997 +639858.358|220721.118|105.869 +639850.168|220728.610|104.873 +639846.050|220732.374|104.364 +639833.514|220743.847|103.422 +639825.245|220751.400|101.794 +639821.163|220755.121|100.508 +639816.546|220759.376|102.239 +639812.092|220763.467|103.004 +639803.262|220771.574|104.105 +639794.405|220779.700|104.851 +639789.958|220783.775|105.037 +639781.015|220791.975|105.507 +639776.559|220796.062|105.821 +639772.112|220800.140|106.125 +639767.561|220804.316|106.467 +639763.001|220808.498|106.887 +639749.304|220821.077|108.829 +639730.979|220837.887|110.365 +639726.443|220842.038|110.481 +639721.826|220846.272|110.847 +639717.214|220850.496|111.197 +639712.666|220854.657|111.100 +639707.973|220858.964|111.761 +639703.419|220863.133|111.761 +639698.749|220867.413|111.923 +639694.122|220871.653|112.148 +639689.526|220875.859|112.151 +639684.881|220880.111|112.176 +639680.227|220884.375|112.304 +639675.563|220888.645|112.517 +639670.848|220892.967|112.807 +639666.212|220897.210|112.849 +639661.466|220901.557|113.011 +639656.763|220905.866|113.258 +639652.057|220910.179|113.569 +639647.329|220914.511|113.672 +639642.611|220918.830|113.694 +639637.878|220923.164|113.892 +639628.423|220931.826|114.255 +639623.656|220936.191|114.392 +639618.922|220940.528|114.703 +639614.143|220944.902|114.547 +639609.427|220949.221|114.727 +639604.670|220953.580|114.895 +639599.912|220957.932|114.599 +639590.344|220966.699|115.081 +639585.577|220971.066|115.422 +639580.791|220975.446|115.495 +639576.046|220979.793|115.693 +639556.852|220997.374|116.431 +639552.134|221001.696|116.498 +639537.714|221014.897|116.473 +639528.110|221023.687|116.467 +639523.330|221028.061|116.233 +639508.916|221041.253|115.971 +639504.088|221045.672|115.830 +639499.245|221050.107|115.900 +639479.960|221067.749|115.169 +639475.163|221072.135|114.706 +639470.271|221076.616|114.931 +639465.427|221081.051|115.151 +639455.729|221089.929|115.184 +639450.849|221094.401|115.352 +639441.110|221103.316|115.431 +639426.639|221116.557|115.013 +639421.753|221121.025|114.587 +639416.897|221125.469|114.544 +639407.192|221134.351|114.319 +639402.319|221138.801|113.657 +639397.463|221143.245|113.642 +639387.636|221152.252|114.191 +639382.738|221156.736|114.163 +639372.988|221165.660|114.230 +639368.044|221170.180|114.194 +639363.161|221174.649|113.947 +639353.432|221183.506|110.978 +639338.603|221197.076|110.981 +639333.671|221201.584|110.694 +639328.737|221206.092|110.426 +639323.741|221210.670|110.722 +639318.803|221215.190|110.771 +639313.817|221219.750|110.746 +639299.037|221233.222|107.116 +639284.172|221246.749|101.721 +639279.149|221251.370|103.507 +639274.147|221255.960|104.406 +639269.148|221260.542|105.117 +639264.101|221265.178|106.208 +639259.111|221269.743|106.482 +639228.963|221297.386|110.393 +639223.891|221302.028|110.533 +639218.865|221306.627|110.624 +639208.773|221315.872|111.319 +639203.701|221320.514|111.341 +639198.632|221325.153|111.414 +639193.564|221329.795|111.798 +639188.495|221334.437|112.121 +639173.258|221348.400|113.624 +639158.027|221362.354|114.818 +639152.912|221367.036|114.959 +639137.685|221381.014|118.141 +639117.342|221399.631|118.598 +639112.249|221404.304|119.220 +639107.183|221408.937|119.247 +639102.069|221413.618|119.125 +639096.960|221418.294|119.339 +639091.861|221422.964|119.753 +639086.749|221427.642|119.890 +639081.684|221432.278|119.881 +639076.587|221436.948|120.207 +639066.379|221446.293|120.832 +639056.129|221455.684|121.533 +639040.834|221469.696|122.813 +639030.654|221479.013|123.039 +639015.280|221493.092|123.719 +639010.165|221497.771|123.920 +639005.066|221502.443|124.343 +638994.843|221511.804|124.788 +638989.716|221516.495|124.816 +638984.644|221521.137|124.983 +638979.514|221525.831|124.974 +638974.394|221530.516|125.179 +638969.319|221535.161|125.313 +638964.235|221539.812|125.364 +638959.111|221544.503|125.538 +638954.070|221549.115|125.557 +638948.949|221553.805|125.782 +638928.610|221572.420|126.319 +638923.532|221577.068|126.590 +638918.521|221581.658|127.108 +638903.336|221595.563|128.007 +638898.291|221600.181|128.169 +638893.198|221604.841|128.333 +638888.163|221609.453|128.626 +638867.863|221628.012|127.745 +638862.776|221632.663|127.608 +638857.759|221637.254|127.711 +638852.717|221641.862|127.586 +638847.679|221646.474|127.513 +638842.628|221651.089|127.358 +638832.552|221660.300|126.888 +638827.465|221664.948|126.462 +638817.342|221674.199|125.736 +638807.278|221683.391|124.788 +638802.279|221687.966|124.868 +638797.308|221692.514|124.782 +638792.315|221697.083|124.965 +638787.389|221701.594|125.331 +638782.446|221706.117|125.560 +638777.535|221710.619|126.069 +638772.588|221715.149|126.285 +638767.650|221719.669|126.611 +638757.824|221728.666|127.288 +638752.913|221733.162|127.486 +638733.318|221751.109|129.147 +638728.328|221755.672|129.208 +638708.592|221773.725|129.074 +638703.615|221778.276|128.955 +638693.663|221787.368|128.138 +638688.683|221791.919|127.724 +638683.751|221796.424|127.349 +638678.612|221801.105|125.925 +638673.732|221805.574|126.297 +638668.819|221810.067|126.145 +638663.814|221814.632|125.401 +638658.867|221819.153|125.060 +638654.006|221823.600|124.980 +638649.065|221828.120|125.069 +638634.489|221841.452|125.115 +638629.573|221845.948|125.127 +638624.797|221850.328|125.709 +638619.965|221854.753|125.968 +638615.174|221859.139|126.194 +638610.312|221863.593|126.300 +638605.436|221868.055|126.343 +638600.605|221872.478|126.376 +638595.691|221876.973|126.245 +638590.866|221881.387|126.056 +638576.062|221894.923|124.916 +638551.474|221917.396|122.707 +638546.576|221921.877|122.329 +638541.744|221926.296|122.085 +638536.852|221930.774|122.082 +638531.927|221935.273|121.369 +638522.301|221944.081|121.237 +638517.464|221948.504|121.085 +638512.648|221952.911|121.061 +638507.936|221957.230|121.323 +638503.218|221961.549|121.591 +638484.238|221978.932|122.240 +638474.749|221987.616|122.161 +638465.215|221996.339|121.951 +638450.707|222009.598|120.555 +638445.949|222013.951|120.338 +638441.060|222018.413|119.540 +638436.232|222022.827|119.043 +638431.462|222027.191|118.851 +638426.871|222031.398|119.284 +638422.098|222035.762|119.125 +638417.200|222040.231|117.921 +638412.274|222044.720|116.873 +638407.452|222049.131|116.309 +638402.761|222053.419|116.147 +638398.250|222057.559|116.818 +638384.132|222070.467|116.077 +638374.083|222079.617|112.569 +638369.291|222083.988|111.673 +638364.582|222088.298|111.377 +638359.876|222092.595|110.905 +638355.182|222096.887|110.496 +638350.510|222101.157|109.981 +638336.541|222113.928|109.003 +638312.583|222135.780|103.800 +638307.527|222140.376|101.505 +638274.684|222170.356|95.957 +638265.595|222178.662|95.086 +638260.983|222182.874|94.424 +638256.695|222186.809|95.043 +638252.464|222190.692|95.680 +638248.060|222194.728|95.656 +638243.750|222198.678|95.814 +638235.185|222206.530|96.378 +638230.979|222210.389|96.966 +638226.764|222214.260|97.533 +638222.618|222218.064|98.167 +638218.577|222221.779|98.993 +638253.071|222187.742|95.238 +638257.393|222183.773|94.961 +638266.229|222175.669|94.976 +638270.746|222171.533|95.293 +638275.544|222167.153|96.741 +638280.402|222162.721|98.472 +638284.959|222158.548|98.807 +638307.999|222137.456|101.654 +638332.191|222115.364|108.146 +638341.618|222106.735|109.369 +638355.615|222093.915|110.548 +638360.306|222089.617|110.950 +638365.042|222085.283|111.335 +638379.758|222071.838|115.129 +638394.017|222058.784|116.446 +638398.628|222054.553|116.217 +638403.274|222050.289|116.166 +638408.031|222045.933|116.391 +638412.789|222041.575|116.888 +638417.779|222037.021|118.241 +638422.720|222032.507|119.400 +638427.325|222028.276|118.790 +638432.038|222023.957|118.921 +638436.814|222019.583|119.144 +638441.721|222015.094|120.024 +638446.564|222010.662|120.616 +638465.834|221993.017|121.990 +638475.423|221984.224|121.972 +638480.275|221979.780|122.277 +638485.100|221975.354|122.222 +638508.936|221953.481|120.975 +638513.745|221949.074|120.951 +638518.622|221944.602|121.030 +638523.545|221940.091|121.103 +638528.397|221935.647|121.369 +638538.227|221926.641|121.844 +638543.159|221922.123|122.064 +638548.173|221917.536|122.771 +638577.943|221890.281|125.310 +638582.880|221885.755|125.502 +638587.882|221881.173|125.788 +638592.844|221876.632|126.169 +638602.723|221867.573|126.148 +638607.633|221863.074|126.303 +638612.574|221858.542|126.047 +638617.463|221854.052|125.816 +638622.349|221849.572|125.569 +638627.259|221845.064|125.176 +638632.194|221840.537|124.956 +638647.093|221826.879|125.051 +638652.073|221822.313|124.883 +638657.032|221817.766|124.935 +638662.058|221813.160|125.124 +638667.094|221808.552|125.742 +638672.205|221803.873|126.233 +638677.241|221799.261|126.568 +638682.291|221794.638|127.041 +638687.351|221790.008|127.605 +638692.426|221785.362|127.967 +638697.510|221780.705|128.437 +638702.533|221776.109|128.836 +638707.590|221771.476|129.156 +638712.622|221766.867|129.324 +638717.584|221762.313|129.010 +638727.661|221753.078|129.217 +638737.591|221743.967|128.766 +638742.596|221739.377|128.480 +638752.517|221730.267|127.693 +638757.488|221725.704|127.199 +638762.505|221721.104|127.084 +638767.477|221716.538|126.632 +638772.460|221711.963|126.273 +638782.464|221702.777|125.523 +638787.493|221698.159|125.209 +638797.512|221688.960|124.694 +638807.659|221679.658|124.950 +638812.767|221674.979|125.450 +638817.860|221670.312|125.819 +638823.011|221665.594|126.337 +638828.114|221660.922|126.895 +638833.225|221656.237|127.093 +638838.279|221651.604|127.215 +638843.332|221646.968|127.407 +638848.429|221642.298|127.529 +638853.525|221637.623|127.711 +638858.594|221632.974|127.602 +638883.984|221609.697|128.544 +638889.089|221605.015|128.461 +638894.094|221600.412|127.839 +638919.389|221577.199|126.809 +638924.400|221572.593|126.300 +638929.484|221567.927|126.123 +638944.685|221553.979|125.578 +638949.784|221549.300|125.681 +638954.865|221544.640|125.544 +638959.983|221539.943|125.243 +638965.076|221535.271|125.310 +638970.151|221530.613|125.136 +638980.356|221521.250|124.944 +638985.424|221516.598|124.727 +638990.560|221511.889|124.837 +638995.626|221507.241|124.563 +639000.692|221502.590|124.346 +639005.785|221497.911|123.770 +639010.903|221493.214|123.670 +639015.972|221488.563|123.499 +639031.263|221474.530|122.984 +639056.690|221451.185|121.314 +639061.747|221446.543|121.027 +639077.057|221432.486|119.954 +639087.234|221423.150|119.924 +639092.342|221418.462|119.717 +639097.439|221413.780|119.180 +639102.550|221409.089|118.979 +639107.619|221404.441|119.119 +639112.773|221399.710|118.814 +639117.830|221395.068|118.430 +639122.935|221390.380|118.107 +639143.336|221371.666|117.848 +639158.576|221357.639|114.681 +639163.678|221352.945|113.788 +639178.927|221338.942|113.108 +639183.990|221334.285|112.346 +639189.104|221329.585|111.874 +639194.128|221324.973|111.783 +639199.245|221320.273|111.341 +639204.317|221315.616|111.310 +639209.343|221311.004|111.240 +639219.487|221301.687|110.545 +639224.513|221297.072|110.454 +639244.782|221278.439|108.143 +639249.821|221273.809|107.445 +639254.868|221269.155|105.882 +639259.916|221264.507|104.854 +639264.948|221259.895|105.181 +639269.995|221255.253|104.461 +639274.991|221250.663|103.992 +639280.048|221246.006|102.940 +639285.114|221241.342|101.715 +639295.007|221232.329|106.400 +639299.924|221227.864|109.704 +639309.872|221218.747|110.740 +639319.754|221209.682|110.691 +639324.747|221205.095|110.515 +639329.685|221200.566|110.624 +639334.625|221196.034|110.713 +639339.517|221191.547|110.829 +639344.458|221187.014|110.969 +639349.359|221182.519|110.877 +639359.092|221173.628|113.843 +639363.962|221169.165|114.453 +639368.873|221164.657|114.160 +639378.611|221155.724|114.437 +639398.106|221137.826|113.806 +639402.956|221133.379|113.986 +639407.781|221128.959|114.642 +639412.648|221124.491|114.501 +639422.286|221115.658|115.175 +639427.111|221111.226|114.977 +639431.945|221106.797|115.522 +639441.595|221097.940|115.324 +639451.190|221089.137|115.337 +639465.574|221075.936|115.285 +639470.384|221071.513|114.846 +639475.163|221067.130|114.925 +639479.851|221062.836|115.583 +639484.612|221058.477|115.955 +639489.345|221054.131|115.998 +639494.131|221049.741|116.047 +639503.558|221041.091|116.196 +639508.307|221036.736|116.153 +639513.025|221032.401|115.913 +639517.743|221028.076|116.300 +639536.562|221010.803|116.284 +639550.641|220997.886|116.373 +639555.298|220993.612|116.473 +639564.707|220984.971|116.242 +639583.471|220967.735|115.169 +639597.479|220954.872|114.700 +639602.070|220950.657|114.727 +639606.730|220946.377|114.578 +639611.345|220942.138|114.398 +639615.938|220937.925|114.474 +639620.598|220933.646|114.379 +639625.234|220929.388|114.120 +639629.794|220925.203|114.114 +639634.488|220920.887|113.794 +639643.672|220912.453|113.328 +639648.268|220908.232|113.124 +639652.840|220904.035|113.112 +639657.449|220899.801|112.837 +639662.027|220895.601|112.828 +639666.617|220891.382|112.734 +639671.198|220887.176|112.359 +639675.758|220882.988|112.176 +639684.890|220874.600|111.776 +639694.031|220866.212|111.792 +639707.595|220853.761|111.761 +639716.702|220845.391|111.118 +639721.277|220841.188|110.691 +639725.867|220836.966|110.173 +639730.330|220832.873|110.246 +639734.874|220828.694|109.740 +639744.012|220820.294|108.832 +639748.532|220816.142|108.597 +639766.644|220799.488|106.305 +639771.139|220795.355|106.013 +639775.586|220791.271|105.744 +639780.088|220787.131|105.449 +639784.529|220783.056|105.272 +639788.922|220779.021|105.101 +639793.381|220774.924|104.839 +639802.266|220766.755|103.949 +639806.804|220762.583|103.266 +639811.239|220758.501|102.611 +639815.659|220754.438|102.102 +639824.260|220746.547|102.590 +639832.718|220738.805|104.022 +639841.268|220730.966|104.620 +639845.447|220727.134|105.056 +639849.696|220723.242|105.406 +639858.081|220715.555|106.189 +639862.253|220711.730|106.418 +639866.509|220707.825|106.473 +639883.062|220692.661|108.079 +639912.000|220666.104|107.604 +639916.350|220662.093|106.247 +639924.049|220655.058|108.375 +639931.882|220647.886|109.295 +639935.860|220644.235|109.180 +639939.712|220640.708|109.728 +639959.281|220622.758|110.289 +639963.161|220619.198|110.252 +639967.017|220615.660|110.347 +639970.894|220612.106|110.359 +639974.697|220608.613|110.234 +639978.541|220605.083|110.164 +639982.314|220601.624|110.219 +639986.134|220598.118|110.301 +639989.904|220594.662|110.393 +639993.629|220591.245|110.469 +639997.305|220587.874|110.533 +640001.035|220584.451|110.600 +640004.726|220581.062|110.612 +640008.472|220577.624|110.390 +640015.858|220570.836|109.750 +639868.502|220703.604|106.976 +639864.500|220707.255|106.592 +639860.394|220711.013|106.552 +639856.276|220714.775|106.293 +639852.216|220718.484|105.988 +639848.096|220722.248|105.488 +639843.999|220725.988|105.126 +639835.782|220733.493|104.312 +639831.569|220737.345|104.096 +639827.451|220741.103|103.611 +639823.379|220744.819|102.867 +639819.298|220748.534|101.867 +639810.666|220756.441|102.520 +639806.252|220760.492|103.330 +639801.830|220764.546|103.910 +639788.720|220776.555|105.123 +639784.331|220780.569|105.251 +639779.997|220784.537|105.388 +639775.544|220788.616|105.653 +639771.091|220792.694|105.952 +639766.699|220796.714|106.202 +639762.227|220800.814|106.680 +639744.195|220817.337|108.799 +639730.497|220829.892|110.268 +639726.020|220833.991|110.298 +639721.524|220838.109|110.472 +639716.940|220842.312|110.957 +639703.209|220854.898|111.709 +639694.052|220863.280|111.706 +639689.496|220867.452|111.767 +639684.905|220871.653|111.703 +639680.257|220875.911|111.755 +639675.627|220880.153|112.066 +639670.964|220884.424|112.279 +639666.288|220888.712|112.630 +639661.631|220892.979|112.855 +639656.937|220897.277|112.987 +639647.625|220905.805|113.108 +639638.192|220914.450|113.557 +639633.455|220918.787|113.764 +639628.709|220923.136|114.093 +639624.006|220927.440|114.038 +639619.233|220931.814|114.230 +639614.509|220936.142|114.437 +639609.711|220940.534|114.447 +639604.959|220944.884|114.498 +639595.422|220953.616|114.556 +639590.615|220958.021|114.757 +639580.993|220966.839|115.330 +639576.168|220971.258|115.321 +639571.428|220975.596|115.422 +639561.708|220984.508|116.272 +639552.034|220993.366|116.202 +639547.199|220997.794|116.443 +639532.676|221011.093|116.486 +639522.919|221020.023|116.537 +639518.079|221024.455|116.446 +639513.226|221028.887|115.903 +639503.488|221037.805|115.961 +639498.544|221042.332|116.022 +639493.698|221046.773|116.147 +639488.763|221051.287|116.126 +639483.886|221055.752|116.050 +639478.982|221060.236|115.681 +639474.148|221064.652|115.044 +639469.225|221069.157|114.959 +639464.269|221073.702|115.416 +639449.462|221087.259|115.349 +639439.617|221096.269|115.468 +639429.748|221105.304|115.346 +639424.801|221109.830|115.123 +639419.838|221114.374|115.202 +639414.885|221118.910|115.138 +639409.954|221123.415|114.623 +639404.998|221127.953|114.654 +639400.072|221132.455|114.084 +639395.128|221136.981|113.938 +639375.213|221155.218|114.337 +639370.318|221159.698|114.273 +639365.319|221164.279|114.465 +639355.367|221173.378|113.642 +639350.435|221177.870|112.036 +639345.531|221182.345|110.905 +639340.542|221186.911|110.844 +639335.540|221191.495|111.133 +639330.556|221196.055|110.929 +639325.579|221200.609|110.606 +639320.583|221205.184|110.807 +639305.578|221218.921|110.758 +639295.663|221227.967|108.299 +639290.673|221232.503|106.080 +639280.752|221241.540|102.800 +639270.696|221250.770|104.440 +639255.612|221264.611|106.513 +639250.574|221269.231|107.098 +639245.584|221273.813|108.021 +639240.549|221278.427|108.475 +639220.481|221296.828|110.423 +639215.454|221301.434|110.676 +639205.408|221310.642|111.258 +639200.385|221315.241|111.292 +639195.313|221319.883|111.371 +639190.342|221324.443|111.819 +639185.273|221329.088|112.298 +639180.256|221333.691|112.795 +639155.080|221356.764|114.401 +639150.081|221361.357|115.672 +639124.895|221384.449|118.086 +639119.881|221389.042|118.159 +639114.824|221393.675|118.510 +639109.817|221398.266|118.869 +639104.754|221402.902|119.025 +639099.685|221407.541|118.936 +639094.677|221412.131|119.296 +639089.627|221416.761|119.741 +639079.553|221425.990|120.137 +639059.308|221444.534|120.716 +639034.043|221467.690|122.667 +639028.926|221472.375|122.771 +639023.912|221476.971|122.972 +639018.797|221481.653|123.139 +639008.669|221490.934|123.520 +638983.346|221514.123|124.816 +638978.268|221518.772|124.874 +638973.193|221523.417|125.017 +638968.090|221528.080|124.798 +638963.070|221532.677|125.054 +638957.947|221537.368|125.261 +638947.827|221546.627|125.468 +638942.734|221551.288|125.459 +638922.468|221569.841|126.392 +638917.381|221574.498|126.556 +638897.163|221593.009|127.812 +638881.996|221606.896|128.562 +638876.946|221611.519|128.714 +638861.672|221625.488|128.531 +638851.483|221634.797|127.644 +638846.393|221639.451|127.556 +638841.309|221644.103|127.538 +638836.197|221648.775|127.282 +638831.134|221653.402|127.059 +638826.069|221658.035|126.812 +638820.975|221662.692|126.815 +638815.858|221667.365|126.163 +638810.771|221672.013|125.831 +638805.702|221676.649|125.691 +638800.633|221681.279|125.121 +638785.570|221695.062|125.355 +638780.553|221699.656|125.791 +638775.624|221704.170|126.148 +638770.586|221708.781|126.428 +638765.642|221713.308|126.690 +638760.661|221717.870|127.081 +638755.660|221722.449|127.312 +638750.725|221726.969|127.678 +638745.726|221731.544|127.983 +638730.971|221745.062|129.275 +638725.993|221749.615|129.412 +638720.982|221754.200|129.303 +638711.040|221763.295|129.415 +638706.120|221767.794|129.339 +638696.071|221776.974|128.473 +638691.051|221781.562|128.102 +638686.031|221786.149|127.779 +638681.023|221790.721|127.224 +638676.030|221795.281|126.803 +638671.013|221799.862|126.242 +638666.030|221804.416|125.941 +638655.987|221813.587|124.572 +638651.061|221818.092|124.749 +638646.163|221822.573|124.801 +638631.487|221835.999|124.837 +638626.583|221840.489|124.926 +638616.933|221849.319|125.535 +638612.092|221853.744|125.761 +638607.246|221858.176|125.977 +638602.363|221862.642|125.974 +638597.532|221867.058|126.014 +638592.652|221871.514|125.794 +638582.868|221880.454|125.566 +638568.162|221893.881|124.484 +638543.653|221916.250|122.301 +638538.797|221920.685|121.920 +638533.939|221925.123|121.823 +638524.228|221933.989|121.189 +638519.439|221938.363|121.003 +638514.632|221942.758|120.997 +638509.856|221947.123|121.189 +638481.491|221973.056|121.826 +638467.309|221986.019|122.015 +638462.563|221990.353|121.774 +638433.915|222016.505|119.473 +638429.206|222020.806|119.326 +638424.518|222025.085|119.058 +638419.879|222029.328|119.275 +638415.213|222033.595|119.378 +638410.229|222038.124|117.812 +638405.398|222042.526|116.733 +638400.661|222046.854|116.586 +638395.998|222051.112|116.327 +638391.353|222055.355|116.178 +638377.350|222068.144|115.769 +638362.744|222081.437|111.780 +638343.920|222098.609|109.515 +638339.290|222102.837|109.228 +638325.223|222115.663|107.308 +638310.562|222128.998|102.712 +638305.966|222133.189|102.294 +638301.312|222137.435|101.660 +638287.431|222150.093|99.798 +638282.804|222154.311|99.158 +638264.056|222171.389|95.238 +638255.332|222179.360|95.461 +638250.965|222183.353|95.564 +638246.679|222187.273|96.000 +638242.272|222191.296|95.768 +638238.005|222195.200|96.308 +638233.750|222199.090|96.497 +638229.482|222202.994|96.847 +638225.297|222206.822|97.320 +638221.149|222210.620|97.951 +638217.034|222214.388|98.710 +638212.953|222218.128|99.402 +638258.210|222174.035|94.211 +638262.809|222169.829|95.034 +638277.086|222156.783|98.725 +638281.634|222152.620|99.014 +638286.270|222148.374|99.691 +638309.361|222127.236|102.398 +638314.412|222122.633|104.489 +638319.338|222118.138|106.107 +638342.905|222096.573|109.506 +638361.833|222079.242|111.737 +638366.621|222074.865|112.602 +638371.486|222070.418|113.593 +638376.579|222065.776|115.641 +638390.588|222052.935|116.062 +638395.346|222048.576|116.492 +638399.945|222044.358|116.449 +638404.676|222040.023|116.806 +638409.656|222035.479|118.086 +638414.603|222030.959|119.247 +638419.199|222026.737|118.808 +638423.936|222022.400|119.034 +638428.727|222018.011|119.308 +638433.449|222013.686|119.515 +638438.329|222009.223|120.253 +638462.445|221987.137|121.993 +638467.114|221982.849|121.606 +638471.963|221978.408|121.881 +638481.482|221969.678|121.835 +638486.286|221965.271|121.689 +638510.228|221943.313|121.070 +638519.854|221934.483|120.844 +638524.752|221929.999|121.076 +638534.551|221921.023|121.640 +638539.492|221916.497|121.920 +638544.430|221911.977|122.484 +638579.089|221880.244|125.160 +638598.846|221862.139|125.578 +638608.718|221853.086|125.602 +638613.616|221848.593|125.395 +638618.545|221844.070|125.108 +638623.391|221839.620|124.630 +638628.366|221835.060|124.645 +638633.300|221830.534|124.450 +638638.247|221825.998|124.337 +638643.255|221821.411|124.648 +638653.207|221812.289|124.602 +638663.305|221803.044|125.636 +638668.429|221798.356|126.215 +638673.421|221793.778|126.251 +638678.527|221789.112|127.105 +638683.617|221784.451|127.522 +638688.671|221779.827|128.086 +638693.733|221775.191|128.388 +638698.775|221770.577|128.912 +638703.810|221765.962|129.083 +638708.864|221761.335|129.412 +638713.887|221756.729|129.549 +638718.895|221752.142|129.574 +638723.924|221747.531|129.431 +638728.910|221742.956|129.370 +638733.885|221738.390|128.836 +638738.856|221733.824|128.297 +638743.779|221729.304|127.788 +638748.853|221724.649|127.718 +638753.785|221720.126|127.276 +638758.830|221715.496|127.010 +638763.822|221710.915|126.700 +638768.809|221706.340|126.383 +638773.875|221701.695|126.340 +638778.843|221697.138|125.870 +638783.890|221692.511|125.703 +638793.955|221683.279|125.157 +638799.024|221678.637|125.233 +638804.120|221673.973|125.572 +638809.216|221669.310|125.941 +638814.294|221664.658|126.191 +638819.433|221659.955|126.596 +638824.554|221655.267|126.834 +638829.635|221650.616|127.196 +638834.691|221645.983|127.370 +638839.788|221641.317|127.465 +638844.820|221636.705|127.428 +638860.176|221622.654|128.681 +638875.388|221608.715|128.687 +638880.433|221604.088|128.446 +638885.493|221599.452|128.397 +638890.519|221594.841|127.989 +638895.548|221590.229|127.605 +638900.650|221585.550|127.556 +638930.902|221557.801|125.444 +638941.061|221548.496|125.605 +638946.139|221543.842|125.380 +638951.204|221539.193|125.029 +638966.457|221525.215|124.764 +638971.544|221520.555|124.758 +638976.625|221515.897|124.697 +638986.784|221506.586|124.563 +638991.847|221501.944|124.246 +638996.864|221497.341|123.972 +639001.926|221492.699|123.667 +639007.038|221488.014|123.359 +639012.052|221483.415|123.112 +639027.304|221469.434|122.630 +639032.382|221464.782|122.664 +639037.457|221460.134|122.682 +639042.517|221455.492|122.423 +639057.653|221441.599|120.634 +639078.154|221422.808|120.113 +639083.064|221418.303|119.906 +639093.184|221409.025|119.317 +639098.237|221404.389|118.833 +639103.300|221399.747|118.641 +639108.415|221395.059|118.659 +639113.428|221390.463|118.449 +639118.537|221385.778|118.113 +639123.603|221381.136|118.077 +639153.985|221353.247|114.306 +639174.206|221334.712|113.224 +639179.272|221330.064|112.737 +639184.337|221325.415|112.179 +639189.406|221320.764|111.591 +639194.478|221316.113|111.365 +639199.504|221311.510|111.283 +639204.576|221306.862|111.225 +639214.677|221297.602|110.606 +639219.752|221292.948|110.310 +639224.778|221288.342|110.246 +639234.892|221279.058|108.686 +639239.976|221274.395|108.210 +639255.100|221260.505|105.662 +639260.147|221255.869|104.717 +639265.231|221251.215|104.888 +639275.290|221241.976|103.157 +639280.350|221237.325|102.114 +639285.321|221232.829|105.943 +639290.292|221228.288|106.875 +639305.270|221214.623|110.746 +639320.236|221200.916|110.746 +639330.154|221191.839|111.249 +639340.133|221182.702|111.402 +639345.077|221178.172|111.469 +639354.864|221169.245|114.221 +639369.687|221155.678|114.639 +639379.529|221146.662|114.754 +639384.442|221142.160|114.529 +639389.401|221137.615|114.358 +639394.314|221133.114|114.212 +639399.210|221128.630|114.386 +639404.041|221124.213|114.968 +639413.797|221115.280|115.190 +639418.708|221110.784|115.215 +639423.575|221106.325|115.181 +639433.277|221097.446|115.687 +639438.133|221093.002|115.894 +639442.985|221088.549|115.391 +639457.478|221075.281|115.855 +639462.270|221070.888|115.641 +639467.119|221066.445|115.376 +639471.904|221062.058|115.334 +639476.705|221057.669|115.809 +639481.463|221053.314|116.175 +639490.982|221044.602|116.339 +639500.516|221035.867|116.348 +639505.314|221031.472|116.306 +639510.056|221027.128|116.367 +639514.817|221022.767|116.239 +639528.960|221009.813|116.498 +639533.660|221005.509|116.611 +639538.369|221001.199|116.650 +639543.088|220996.874|116.580 +639561.866|220979.665|116.074 +639566.551|220975.370|115.958 +639571.269|220971.042|115.544 +639575.912|220966.787|115.449 +639585.306|220958.170|114.703 +639599.208|220945.433|114.495 +639603.807|220941.217|114.459 +639608.412|220936.999|114.407 +639613.033|220932.762|114.251 +639622.226|220924.337|113.989 +639626.847|220920.104|113.913 +639631.394|220915.934|113.605 +639635.991|220911.719|113.340 +639640.596|220907.494|113.032 +639654.233|220895.000|112.938 +639663.292|220886.697|112.566 +639667.876|220882.491|112.173 +639672.393|220878.352|111.969 +639676.956|220874.167|111.783 +639681.431|220870.068|111.569 +639686.003|220865.874|111.365 +639690.465|220861.786|111.283 +639717.318|220837.177|110.633 +639721.780|220833.086|110.344 +639726.206|220829.029|110.313 +639730.692|220824.914|109.905 +639735.142|220820.830|109.405 +639761.980|220796.202|106.385 +639766.421|220792.130|106.132 +639770.765|220788.146|105.879 +639775.181|220784.096|105.507 +639779.521|220780.118|105.339 +639783.904|220776.101|105.220 +639801.488|220759.971|103.702 +639805.893|220755.926|102.931 +639810.221|220751.957|102.669 +639814.561|220747.974|102.343 +639818.819|220744.078|102.565 +639822.989|220740.268|103.324 +639827.131|220736.486|104.260 +639835.483|220728.850|105.156 +639839.686|220725.004|105.452 +639843.904|220721.142|105.665 +639848.028|220717.372|106.156 +639852.238|220713.519|106.467 +639860.595|220705.865|106.869 +639864.756|220702.055|107.201 +639868.862|220698.300|107.857 +639889.390|220679.503|109.326 +639934.287|220638.355|110.067 +639938.249|220634.728|110.335 +639946.147|220627.498|111.039 +639954.203|220620.107|110.475 +639958.153|220616.486|110.606 +639962.094|220612.874|110.548 +639966.005|220609.289|110.655 +639969.930|220605.690|110.682 +639973.893|220602.056|110.563 +639977.794|220598.481|110.505 +639981.687|220594.909|110.490 +639985.512|220591.407|110.585 +639989.343|220587.892|110.643 +639993.159|220584.396|110.792 +639996.951|220580.918|110.822 +640000.825|220577.368|110.728 +640004.656|220573.853|110.600 +640008.491|220570.333|110.231 +639861.370|220702.775|107.009 +639857.209|220706.576|106.970 +639848.995|220714.071|106.327 +639844.868|220717.835|106.129 +639840.728|220721.611|105.726 +639832.423|220729.189|105.117 +639824.163|220736.720|103.986 +639820.060|220740.454|103.102 +639815.936|220744.212|102.370 +639807.514|220751.899|101.992 +639803.037|220756.005|103.178 +639798.718|220759.958|103.739 +639776.915|220779.895|105.251 +639772.578|220783.864|105.424 +639768.201|220787.866|105.860 +639759.408|220795.907|106.400 +639741.626|220812.183|108.460 +639732.619|220820.422|109.414 +639728.156|220824.503|109.972 +639723.706|220828.569|110.143 +639719.256|220832.632|110.316 +639714.742|220836.759|110.615 +639692.239|220857.315|111.636 +639687.786|220861.375|111.240 +639678.721|220869.650|111.328 +639674.158|220873.817|111.453 +639669.549|220878.032|111.978 +639664.962|220882.220|111.953 +639660.347|220886.435|112.194 +639641.889|220903.300|112.938 +639637.259|220907.525|112.999 +639632.608|220911.776|113.270 +639627.920|220916.059|113.462 +639623.223|220920.351|113.752 +639618.553|220924.615|113.831 +639609.159|220933.195|114.114 +639604.441|220937.502|114.258 +639599.735|220941.802|114.346 +639595.032|220946.094|114.376 +639590.292|220950.422|114.340 +639580.831|220959.066|114.660 +639571.291|220967.784|115.358 +639566.466|220972.188|115.334 +639561.708|220976.537|115.644 +639556.825|220981.003|116.275 +639552.049|220985.368|116.342 +639547.215|220989.781|116.513 +639542.448|220994.134|116.501 +639537.580|220998.578|116.562 +639532.767|221002.973|116.598 +639527.960|221007.359|116.550 +639523.096|221011.803|116.656 +639518.262|221016.213|116.412 +639513.412|221020.642|116.406 +639498.773|221034.005|116.373 +639479.183|221051.887|116.160 +639474.325|221056.319|115.806 +639469.420|221060.790|115.379 +639464.513|221065.274|115.733 +639459.539|221069.816|115.699 +639454.622|221074.302|115.562 +639429.848|221096.928|115.897 +639424.910|221101.430|115.446 +639414.998|221110.473|115.160 +639410.036|221115.005|115.199 +639400.051|221124.110|114.581 +639395.101|221128.630|114.431 +639390.099|221133.196|114.373 +639385.091|221137.768|114.492 +639380.083|221142.343|114.639 +639375.075|221146.918|114.797 +639355.001|221165.252|114.532 +639349.984|221169.824|113.819 +639345.031|221174.335|112.721 +639324.966|221192.635|110.911 +639319.928|221197.234|110.813 +639314.880|221201.852|111.088 +639304.813|221211.042|110.707 +639299.729|221215.687|110.670 +639279.658|221233.920|103.818 +639274.622|221238.517|103.367 +639269.535|221243.156|102.956 +639264.479|221247.792|104.004 +639244.243|221266.308|106.378 +639234.111|221275.586|108.061 +639229.027|221280.244|108.808 +639213.833|221294.146|110.484 +639208.755|221298.791|111.024 +639198.602|221308.069|111.228 +639193.576|221312.662|111.319 +639188.501|221317.301|111.661 +639183.380|221321.986|111.993 +639178.357|221326.580|112.465 +639158.128|221345.081|113.828 +639142.955|221358.977|116.516 +639122.798|221377.408|117.854 +639117.680|221382.084|117.930 +639112.666|221386.668|118.257 +639107.653|221391.252|118.503 +639102.581|221395.885|118.470 +639097.512|221400.515|118.634 +639092.507|221405.096|119.201 +639087.444|221409.723|119.515 +639082.382|221414.353|119.738 +639077.374|221418.931|120.061 +639072.274|221423.598|120.561 +639041.995|221451.277|122.210 +639031.903|221460.500|122.435 +639026.819|221465.142|122.320 +639021.796|221469.732|122.448 +639016.731|221474.365|122.682 +639011.656|221479.001|122.819 +639006.642|221483.585|123.136 +639001.579|221488.215|123.481 +638996.553|221492.809|123.664 +638991.481|221497.448|123.850 +638986.452|221502.047|123.950 +638981.428|221506.647|124.127 +638976.347|221511.292|124.228 +638971.318|221515.894|124.386 +638966.268|221520.509|124.221 +638961.184|221525.160|124.322 +638956.161|221529.757|124.618 +638946.114|221538.953|125.221 +638941.091|221543.552|125.547 +638930.920|221552.845|125.243 +638920.913|221562.008|125.880 +638895.758|221585.032|127.486 +638890.744|221589.626|128.031 +638885.745|221594.198|128.230 +638875.657|221603.430|128.705 +638855.461|221621.895|128.653 +638850.389|221626.534|128.705 +638835.158|221640.442|127.413 +638830.107|221645.060|127.315 +638825.011|221649.720|127.260 +638820.000|221654.298|127.141 +638814.925|221658.934|126.876 +638809.859|221663.558|126.288 +638804.760|221668.218|125.855 +638799.667|221672.870|125.541 +638779.590|221691.231|125.803 +638774.627|221695.775|126.303 +638769.632|221700.347|126.538 +638764.618|221704.932|126.642 +638759.671|221709.461|126.898 +638754.666|221714.039|127.120 +638744.748|221723.119|127.937 +638739.734|221727.700|127.736 +638729.877|221736.735|129.101 +638724.933|221741.261|129.510 +638719.961|221745.808|129.714 +638714.990|221750.350|129.583 +638709.982|221754.931|129.559 +638705.005|221759.482|129.409 +638699.960|221764.090|129.171 +638694.956|221768.662|128.897 +638689.926|221773.256|128.464 +638684.888|221777.855|128.007 +638679.828|221782.470|127.443 +638674.769|221787.085|126.556 +638669.825|221791.605|126.498 +638664.750|221796.238|125.913 +638654.682|221805.418|124.404 +638639.857|221818.976|124.340 +638634.895|221823.508|124.014 +638610.428|221845.896|124.926 +638605.594|221850.325|125.206 +638586.032|221868.216|125.206 +638581.186|221872.651|125.221 +638576.239|221877.174|124.965 +638571.264|221881.713|124.285 +638561.496|221890.647|124.048 +638536.935|221913.086|121.963 +638532.052|221917.545|121.457 +638527.163|221922.014|121.225 +638522.313|221926.446|120.960 +638517.501|221930.847|120.908 +638512.700|221935.242|120.933 +638507.963|221939.576|121.055 +638484.189|221961.330|121.487 +638469.946|221974.360|121.576 +638465.267|221978.643|121.637 +638441.428|222000.430|120.381 +638436.579|222004.859|119.750 +638431.882|222009.153|119.637 +638427.136|222013.490|119.561 +638422.409|222017.813|119.336 +638417.736|222022.086|119.153 +638412.969|222026.441|118.790 +638408.394|222030.632|119.104 +638403.563|222035.037|118.263 +638398.631|222039.530|116.982 +638393.907|222043.849|116.672 +638389.167|222048.174|116.099 +638384.528|222052.420|115.980 +638370.434|222065.291|114.773 +638365.463|222069.815|113.060 +638360.684|222074.176|112.221 +638356.039|222078.419|111.770 +638346.581|222087.051|110.438 +638341.832|222091.385|109.612 +638318.146|222112.987|105.245 +638313.315|222117.388|104.022 +638308.633|222121.658|103.001 +638280.914|222146.963|99.588 +638276.315|222151.163|99.072 +638266.561|222160.036|95.494 +638262.020|222164.184|95.073 +638253.278|222172.176|95.204 +638248.932|222176.150|95.393 +638244.527|222180.177|95.369 +638240.248|222184.093|95.637 +638236.029|222187.955|96.149 +638231.784|222191.845|96.570 +638227.458|222195.795|96.500 +638223.228|222199.666|96.805 +638219.128|222203.424|97.615 +638215.047|222207.170|98.496 +638210.847|222211.013|98.740 +638254.153|222168.402|93.921 +638258.850|222164.120|95.113 +638263.355|222160.002|95.363 +638277.687|222146.938|99.307 +638286.910|222138.517|100.673 +638310.072|222117.360|103.504 +638314.866|222112.987|104.556 +638319.822|222108.475|106.311 +638343.466|222086.890|109.847 +638357.767|222073.835|112.194 +638362.442|222069.559|112.554 +638367.408|222065.035|113.980 +638386.412|222047.671|115.952 +638391.249|222043.254|116.726 +638395.958|222038.950|116.934 +638400.920|222034.427|118.330 +638405.755|222030.008|118.939 +638410.351|222025.798|118.705 +638415.124|222021.434|119.064 +638419.861|222017.099|119.284 +638424.655|222012.716|119.546 +638429.371|222008.400|119.710 +638434.101|222004.072|119.717 +638438.832|221999.741|119.750 +638448.482|221990.917|120.552 +638462.944|221977.689|121.490 +638467.724|221973.315|121.643 +638472.518|221968.929|121.631 +638482.040|221960.205|121.347 +638486.774|221955.871|121.088 +638491.501|221951.537|120.820 +638510.853|221933.822|120.924 +638515.654|221929.430|120.860 +638520.503|221924.989|120.817 +638525.389|221920.517|120.991 +638530.302|221916.024|121.347 +638535.350|221911.416|122.173 +638545.228|221902.385|123.027 +638560.023|221888.854|123.944 +638584.709|221866.269|125.002 +638594.573|221857.244|125.105 +638609.206|221843.835|124.307 +638623.961|221830.321|123.816 +638628.908|221825.791|123.648 +638633.889|221821.231|123.737 +638643.847|221812.121|123.932 +638648.821|221807.567|124.057 +638653.865|221802.953|124.331 +638659.004|221798.268|125.590 +638664.040|221793.662|125.877 +638669.127|221789.017|126.517 +638674.171|221784.399|126.590 +638679.301|221779.718|127.599 +638684.382|221775.072|127.980 +638689.475|221770.415|128.477 +638694.498|221765.825|128.842 +638699.549|221761.204|129.095 +638704.606|221756.580|129.403 +638709.629|221751.984|129.507 +638714.646|221747.390|129.598 +638719.699|221742.767|129.604 +638724.692|221738.198|129.537 +638739.572|221724.552|127.977 +638744.589|221719.952|127.419 +638754.629|221710.759|127.157 +638759.622|221706.181|126.852 +638764.709|221701.527|126.919 +638769.705|221696.952|126.648 +638774.688|221692.383|126.319 +638779.748|221687.741|125.813 +638784.805|221683.108|125.721 +638789.892|221678.451|125.901 +638805.120|221664.512|126.358 +638815.413|221655.094|127.218 +638820.515|221650.421|127.285 +638825.566|221645.797|127.334 +638840.934|221631.737|128.336 +638861.361|221613.031|128.510 +638871.499|221603.744|128.428 +638876.632|221599.047|128.598 +638881.673|221594.423|128.330 +638886.675|221589.833|127.599 +638896.825|221580.533|127.318 +638901.924|221575.861|127.215 +638912.047|221566.574|126.117 +638917.122|221561.919|125.739 +638922.212|221557.256|125.578 +638932.432|221547.898|125.816 +638937.455|221543.296|125.432 +638942.597|221538.584|125.432 +638947.632|221533.963|124.563 +638952.710|221529.309|124.331 +638957.785|221524.654|124.075 +638962.918|221519.951|123.978 +638967.969|221515.327|124.106 +638973.101|221510.627|124.014 +638978.173|221505.976|123.798 +638988.387|221496.622|123.700 +638993.508|221491.931|123.511 +639003.645|221482.641|122.999 +639008.751|221477.956|122.585 +639018.959|221468.611|122.576 +639024.018|221463.969|122.231 +639029.084|221459.326|121.999 +639034.220|221454.626|122.256 +639039.283|221449.984|121.984 +639059.561|221431.391|120.439 +639084.927|221408.147|119.442 +639089.989|221403.505|119.211 +639095.095|221398.827|118.781 +639100.109|221394.230|118.427 +639105.178|221389.585|118.418 +639110.286|221384.903|118.083 +639115.300|221380.307|117.705 +639120.411|221375.622|117.412 +639135.563|221361.738|116.918 +639140.675|221357.054|116.632 +639150.733|221347.812|114.718 +639175.971|221324.669|112.599 +639181.039|221320.017|111.993 +639191.089|221310.809|111.484 +639196.115|221306.204|111.435 +639216.229|221287.760|109.701 +639221.261|221283.142|108.924 +639226.244|221278.570|108.579 +639231.283|221273.947|107.710 +639236.321|221269.320|106.927 +639246.355|221260.112|105.656 +639256.429|221250.834|101.968 +639261.391|221246.320|104.227 +639266.411|221241.696|102.383 +639271.373|221237.182|104.483 +639281.349|221228.092|107.604 +639296.199|221214.541|110.941 +639301.189|221209.972|110.957 +639306.133|221205.440|110.798 +639311.116|221200.880|111.051 +639316.063|221196.347|110.905 +639321.043|221191.791|111.219 +639340.813|221173.695|111.636 +639350.603|221164.767|114.440 +639365.334|221151.280|114.751 +639370.269|221146.766|115.068 +639375.182|221142.261|114.782 +639380.089|221137.768|114.709 +639385.006|221133.263|114.477 +639389.956|221128.727|114.520 +639394.805|221124.290|114.748 +639399.706|221119.806|114.898 +639404.541|221115.383|115.401 +639409.463|221110.875|115.196 +639414.349|221106.407|115.681 +639419.214|221101.951|115.657 +639424.139|221097.437|115.452 +639428.964|221093.026|116.172 +639433.841|221088.561|116.053 +639438.727|221084.083|115.797 +639443.607|221079.612|115.690 +639448.468|221075.162|115.876 +639453.345|221070.693|115.836 +639458.158|221066.289|116.071 +639463.053|221061.805|115.830 +639467.899|221057.364|115.632 +639472.706|221052.966|116.007 +639477.525|221048.556|116.254 +639482.344|221044.148|116.507 +639496.755|221030.954|116.678 +639501.610|221026.503|116.528 +639506.399|221022.120|116.635 +639511.209|221017.713|116.528 +639515.948|221013.376|116.696 +639520.727|221009.002|116.964 +639525.507|221004.625|116.693 +639530.307|221000.224|116.217 +639535.084|220995.856|116.601 +639539.793|220991.549|116.681 +639544.612|220987.135|116.617 +639549.370|220982.777|116.199 +639554.164|220978.382|115.925 +639563.659|220969.686|115.474 +639573.110|220961.026|115.053 +639582.617|220952.321|114.709 +639592.026|220943.707|114.453 +639596.733|220939.398|114.340 +639601.454|220935.072|114.120 +639615.499|220922.210|113.785 +639620.126|220917.973|113.639 +639624.856|220913.642|113.468 +639629.489|220909.399|113.322 +639634.119|220905.156|113.200 +639643.404|220896.655|112.859 +639657.266|220883.957|112.234 +639671.058|220871.323|111.609 +639675.670|220867.096|111.075 +639693.796|220850.499|110.932 +639711.868|220833.952|110.423 +639716.406|220829.794|110.295 +639720.856|220825.722|110.115 +639725.334|220821.623|110.103 +639738.959|220809.123|108.146 +639743.390|220805.063|107.866 +639770.097|220780.581|105.513 +639796.417|220756.456|103.285 +639800.824|220752.418|102.809 +639805.466|220748.135|100.575 +639809.496|220744.468|102.200 +639813.650|220740.677|102.754 +639817.737|220736.946|103.699 +639825.982|220729.420|105.214 +639830.100|220725.659|105.708 +639834.215|220721.898|106.214 +639838.388|220718.085|106.409 +639846.736|220710.447|106.802 +639850.811|220706.722|107.290 +639854.957|220702.930|107.400 +639875.329|220684.316|109.283 +639879.377|220680.619|109.457 +639887.485|220673.203|109.756 +639895.681|220665.699|109.356 +639903.865|220658.207|108.835 +639907.830|220654.583|109.262 +639927.645|220636.459|109.533 +639931.538|220632.902|109.884 +639950.993|220615.117|110.822 +639962.557|220604.544|111.158 +639966.401|220601.023|111.091 +639970.314|220597.442|110.944 +639974.152|220593.930|110.941 +639978.002|220590.410|110.896 +639981.839|220586.899|110.920 +639985.567|220583.488|110.975 +639989.343|220580.038|111.078 +639993.138|220576.566|111.097 +639996.960|220573.067|110.999 +640000.721|220569.626|110.954 +640004.473|220566.187|110.713 +640008.317|220562.664|110.320 +639878.371|220679.464|109.454 +639874.165|220683.301|109.298 +639853.213|220702.403|107.491 +639848.986|220706.259|107.262 +639844.734|220710.136|106.900 +639840.463|220714.031|106.656 +639836.135|220717.978|106.464 +639831.880|220721.861|106.171 +639827.659|220725.708|105.674 +639815.000|220737.229|103.294 +639810.770|220741.082|102.584 +639806.621|220744.846|101.060 +639802.043|220749.040|102.212 +639797.578|220753.128|103.020 +639793.122|220757.206|103.495 +639779.622|220769.550|104.897 +639775.184|220773.604|105.010 +639770.719|220777.686|105.327 +639761.730|220785.900|106.089 +639743.631|220802.451|107.744 +639739.132|220806.562|108.131 +639725.361|220819.166|109.999 +639720.869|220823.268|110.094 +639716.373|220827.377|110.234 +639711.895|220831.465|110.252 +639707.281|220835.686|110.585 +639698.292|220843.894|110.624 +639689.179|220852.218|110.941 +639675.554|220864.663|111.045 +639670.979|220868.845|111.274 +639666.434|220873.000|111.667 +639661.835|220877.203|111.737 +639657.220|220881.418|111.956 +639638.822|220898.231|112.956 +639634.186|220902.471|113.081 +639629.553|220906.702|113.179 +639624.975|220910.880|113.236 +639620.315|220915.145|113.660 +639615.703|220919.354|113.624 +639601.740|220932.113|114.017 +639597.077|220936.371|114.105 +639592.362|220940.681|114.282 +639578.371|220953.458|114.346 +639573.653|220957.771|114.636 +639568.874|220962.142|115.081 +639554.734|220975.059|115.565 +639545.206|220983.773|116.455 +639535.718|220992.439|116.480 +639521.447|221005.478|116.861 +639511.910|221014.180|116.537 +639507.130|221018.551|116.854 +639502.339|221022.922|116.726 +639497.557|221027.287|116.504 +639492.692|221031.731|116.754 +639478.287|221044.883|116.461 +639473.422|221049.321|116.160 +639468.610|221053.710|115.788 +639463.718|221058.178|115.913 +639458.890|221062.589|115.855 +639453.943|221067.109|116.129 +639444.207|221075.994|115.794 +639439.269|221080.508|116.047 +639424.526|221093.968|115.760 +639419.610|221098.458|115.754 +639409.731|221107.477|115.745 +639404.833|221111.945|115.437 +639399.844|221116.496|115.096 +639394.894|221121.016|114.940 +639389.941|221125.539|114.849 +639384.951|221130.090|114.517 +639380.035|221134.580|114.666 +639375.027|221139.158|114.846 +639370.016|221143.730|115.001 +639365.011|221148.305|115.163 +639360.037|221152.837|114.572 +639355.041|221157.394|114.501 +639349.996|221161.996|114.456 +639340.051|221171.040|111.822 +639335.022|221175.621|111.289 +639329.965|221180.242|111.627 +639324.927|221184.838|111.478 +639319.885|221189.438|111.356 +639314.856|221194.022|110.920 +639309.760|221198.676|111.170 +639304.676|221203.315|110.999 +639299.634|221207.918|111.021 +639294.547|221212.560|110.947 +639289.463|221217.202|110.920 +639264.088|221240.266|104.269 +639258.998|221244.914|104.233 +639243.664|221258.926|105.501 +639238.525|221263.620|105.668 +639233.386|221268.323|106.516 +639187.355|221310.407|111.383 +639177.110|221319.770|112.221 +639156.631|221338.485|113.627 +639141.312|221352.509|116.586 +639131.083|221361.854|117.043 +639115.730|221375.872|117.440 +639110.615|221380.545|117.696 +639100.386|221389.887|118.278 +639095.272|221394.559|118.442 +639090.215|221399.183|119.028 +639085.100|221403.853|119.287 +639079.989|221408.522|119.570 +639059.686|221427.069|120.613 +639054.584|221431.733|121.103 +639029.191|221454.922|122.079 +639024.110|221459.561|122.021 +639019.041|221464.191|122.262 +639013.963|221468.827|122.335 +639008.876|221473.469|122.237 +639003.816|221478.093|122.716 +638998.790|221482.683|122.877 +638993.721|221487.310|123.213 +638968.456|221510.371|123.792 +638963.403|221514.980|123.670 +638958.407|221519.540|123.709 +638953.329|221524.176|123.984 +638948.321|221528.745|123.874 +638943.322|221533.314|124.636 +638938.321|221537.886|125.297 +638933.334|221542.439|125.553 +638923.251|221551.635|125.258 +638918.280|221556.177|125.727 +638908.295|221565.293|126.221 +638898.346|221574.383|127.151 +638893.393|221578.906|127.315 +638888.364|221583.499|127.739 +638883.423|221588.010|128.086 +638878.430|221592.570|128.419 +638873.435|221597.133|128.705 +638863.440|221606.252|128.769 +638848.441|221619.935|128.720 +638818.333|221647.379|127.221 +638813.328|221651.948|127.181 +638808.372|221656.468|127.181 +638803.355|221661.043|127.087 +638788.316|221674.750|126.215 +638783.332|221679.295|126.093 +638778.370|221683.821|126.187 +638773.411|221688.351|126.309 +638768.483|221692.849|126.727 +638763.548|221697.357|127.099 +638758.549|221701.917|126.946 +638753.636|221706.401|127.123 +638748.698|221710.912|127.538 +638743.806|221715.380|127.919 +638738.853|221719.903|128.224 +638733.976|221724.360|128.745 +638729.102|221728.813|129.309 +638724.110|221733.370|129.357 +638719.190|221737.859|129.607 +638714.277|221742.346|129.924 +638704.307|221751.435|129.537 +638699.372|221755.934|129.400 +638694.367|221760.500|129.117 +638689.338|221765.081|128.702 +638684.352|221769.623|128.278 +638679.292|221774.231|127.702 +638674.205|221778.855|126.642 +638669.282|221783.348|126.748 +638664.244|221787.935|126.075 +638659.263|221792.473|125.843 +638629.311|221819.759|123.219 +638624.388|221824.252|123.207 +638604.835|221842.095|123.344 +638595.325|221850.797|124.996 +638575.705|221868.695|124.282 +638570.780|221873.188|124.191 +638565.909|221877.632|124.154 +638561.038|221882.073|123.850 +638546.316|221895.496|123.030 +638526.645|221913.421|121.326 +638521.713|221917.917|120.893 +638516.909|221922.300|120.905 +638512.112|221926.680|120.951 +638507.329|221931.048|121.113 +638492.790|221944.304|120.457 +638488.033|221948.647|120.564 +638483.351|221952.924|120.808 +638478.581|221957.282|121.149 +638469.156|221965.884|121.442 +638464.417|221970.212|121.472 +638459.665|221974.549|121.457 +638445.299|221987.643|120.527 +638440.453|221992.057|119.899 +638435.723|221996.373|119.860 +638431.056|222000.631|119.890 +638426.362|222004.913|119.817 +638421.677|222009.193|120.049 +638416.926|222013.524|119.738 +638412.174|222017.852|119.217 +638407.468|222022.141|118.933 +638402.697|222026.490|118.607 +638398.107|222030.684|118.894 +638393.304|222035.055|118.229 +638388.372|222039.536|116.775 +638383.535|222043.937|116.016 +638378.844|222048.213|115.708 +638364.695|222061.103|114.340 +638355.100|222069.836|112.526 +638345.508|222078.559|110.621 +638340.872|222082.787|110.280 +638317.180|222104.345|106.122 +638312.367|222108.716|104.748 +638289.211|222129.802|101.825 +638284.563|222134.033|101.069 +638275.309|222142.458|99.578 +638256.579|222159.493|95.378 +638247.694|222167.604|95.195 +638243.332|222171.588|95.342 +638239.004|222175.541|95.409 +638234.731|222179.448|95.720 +638230.586|222183.243|96.527 +638226.331|222187.135|96.914 +638221.984|222191.101|96.783 +638217.684|222195.033|96.826 +638209.567|222202.467|98.588 +638205.458|222206.228|99.179 +638251.340|222161.605|94.473 +638255.918|222157.423|95.198 +638260.493|222153.245|95.729 +638274.776|222140.227|99.679 +638279.436|222135.972|100.438 +638284.112|222131.704|101.276 +638288.751|222127.471|101.995 +638293.448|222123.182|102.757 +638312.004|222106.229|105.120 +638316.841|222101.822|106.595 +638321.855|222097.262|108.399 +638340.491|222080.233|110.359 +638345.166|222075.956|110.652 +638359.504|222062.871|113.215 +638364.500|222058.324|115.017 +638378.551|222045.473|115.730 +638383.401|222041.044|116.522 +638388.329|222036.552|117.699 +638393.227|222032.083|118.781 +638397.836|222027.862|118.561 +638402.521|222023.576|118.708 +638407.291|222019.221|119.022 +638412.119|222014.816|119.637 +638421.565|222006.181|119.960 +638426.265|222001.881|119.802 +638431.017|221997.537|119.893 +638435.726|221993.230|119.817 +638440.438|221988.920|119.768 +638459.805|221971.233|121.335 +638464.523|221966.920|121.436 +638469.287|221962.561|121.268 +638474.003|221958.242|120.866 +638478.788|221953.865|120.850 +638483.503|221949.549|120.488 +638488.228|221945.224|120.195 +638512.490|221923.050|121.018 +638551.760|221887.172|123.304 +638556.692|221882.667|123.621 +638561.642|221878.144|123.783 +638566.503|221873.700|123.740 +638581.271|221860.203|124.252 +638586.282|221855.625|124.606 +638600.839|221842.296|123.533 +638610.532|221833.423|122.713 +638620.438|221824.371|122.987 +638625.397|221819.832|122.899 +638630.438|221815.236|123.655 +638640.268|221806.241|123.319 +638660.516|221787.761|125.880 +638665.564|221783.153|126.239 +638670.639|221778.520|126.834 +638680.801|221769.251|128.196 +638685.815|221764.670|128.464 +638690.911|221760.015|128.986 +638700.972|221750.826|129.543 +638706.005|221746.226|129.687 +638711.040|221741.624|129.903 +638715.975|221737.109|129.735 +638720.976|221732.528|129.360 +638725.954|221727.975|129.190 +638730.904|221723.445|128.818 +638735.927|221718.849|128.653 +638740.889|221714.304|128.028 +638745.805|221709.799|127.440 +638750.810|221705.221|127.172 +638760.872|221696.019|127.148 +638765.867|221691.447|126.882 +638770.857|221686.881|126.547 +638775.898|221682.270|126.276 +638786.033|221673.013|126.663 +638806.284|221654.512|127.160 +638811.310|221649.912|126.913 +638831.765|221631.240|128.513 +638836.852|221626.589|128.495 +638852.166|221612.601|129.135 +638857.277|221607.929|128.976 +638872.511|221593.996|128.568 +638882.649|221584.724|127.992 +638907.972|221561.553|126.245 +638918.131|221552.260|125.520 +638923.202|221547.618|125.084 +638933.435|221538.273|125.401 +638943.554|221529.007|124.279 +638948.629|221524.362|123.923 +638958.846|221515.020|123.578 +638963.942|221510.362|123.591 +638969.029|221505.711|123.463 +638974.162|221501.017|123.377 +638984.336|221491.718|123.246 +638989.469|221487.024|123.207 +638999.656|221477.706|122.536 +639004.776|221473.021|122.323 +639009.845|221468.385|121.999 +639014.978|221463.694|122.042 +639020.102|221459.009|121.917 +639030.303|221449.682|121.740 +639040.502|221440.359|121.558 +639045.623|221435.677|121.402 +639055.794|221426.371|120.668 +639060.908|221421.693|120.396 +639081.266|221403.072|119.381 +639086.283|221398.482|119.098 +639096.451|221389.177|118.150 +639101.523|221384.541|118.025 +639111.706|221375.226|117.528 +639116.775|221370.590|117.245 +639121.847|221365.954|117.117 +639126.919|221361.315|117.068 +639142.132|221347.407|116.580 +639152.236|221338.129|113.925 +639157.262|221333.532|113.654 +639182.576|221310.352|111.517 +639187.602|221305.750|111.298 +639192.680|221301.104|111.097 +639257.846|221241.424|104.946 +639262.802|221236.886|104.452 +639267.795|221232.320|104.562 +639272.711|221227.855|106.485 +639287.506|221214.386|110.871 +639292.496|221209.826|110.914 +639297.437|221205.306|110.999 +639302.380|221200.788|111.091 +639307.321|221196.274|111.258 +639312.223|221191.788|111.057 +639327.045|221178.242|111.719 +639331.949|221173.759|111.618 +639336.841|221169.284|111.822 +639341.709|221164.868|114.154 +639346.601|221160.396|114.325 +639351.499|221155.922|114.456 +639356.397|221151.441|114.501 +639361.283|221146.979|114.949 +639366.126|221142.556|115.233 +639371.037|221138.060|115.056 +639375.959|221133.555|114.742 +639380.827|221129.099|114.520 +639385.698|221124.658|115.346 +639390.556|221120.217|115.379 +639395.424|221115.764|115.276 +639400.264|221111.345|115.733 +639405.123|221106.901|115.833 +639409.981|221102.463|116.016 +639414.861|221097.994|115.742 +639419.689|221093.581|115.635 +639424.529|221089.158|116.126 +639443.884|221071.462|116.102 +639448.709|221067.051|116.156 +639458.368|221058.218|116.230 +639463.224|221053.774|115.937 +639468.061|221049.351|115.922 +639472.868|221044.962|116.358 +639477.632|221040.610|116.708 +639492.107|221027.375|116.790 +639496.910|221022.980|116.702 +639501.687|221018.618|117.025 +639506.512|221014.202|116.742 +639525.702|220996.645|116.571 +639530.454|220992.299|116.702 +639535.266|220987.894|116.696 +639540.034|220983.530|116.669 +639544.834|220979.131|116.312 +639549.613|220974.754|116.214 +639559.175|220965.997|115.586 +639563.970|220961.605|115.401 +639568.761|220957.213|114.794 +639587.820|220939.763|114.258 +639592.532|220935.447|114.099 +639597.290|220931.095|114.020 +639616.151|220913.828|113.648 +639620.897|220909.478|113.340 +639625.637|220905.138|113.108 +639630.322|220900.849|112.965 +639635.019|220896.549|112.755 +639639.706|220892.257|112.642 +639649.146|220883.607|111.929 +639653.797|220879.349|111.789 +639658.488|220875.045|111.319 +639663.109|220870.820|111.484 +639667.757|220866.562|111.042 +639672.451|220862.259|110.649 +639677.069|220858.031|110.493 +639681.677|220853.813|110.441 +639690.849|220845.418|110.384 +639695.403|220841.252|110.441 +639699.981|220837.061|110.329 +639704.559|220832.870|110.237 +639709.100|220828.709|110.064 +639713.621|220824.573|110.094 +639718.156|220820.422|110.015 +639722.667|220816.295|110.146 +639727.269|220812.070|109.277 +639740.976|220799.500|107.576 +639763.501|220778.856|105.449 +639767.960|220774.772|105.138 +639772.438|220770.666|104.717 +639776.922|220766.554|104.294 +639785.758|220758.462|103.733 +639790.156|220754.429|103.279 +639794.746|220750.208|101.959 +639799.074|220746.245|101.697 +639803.299|220742.387|102.419 +639807.523|220738.531|103.141 +639811.699|220734.724|104.166 +639820.002|220727.140|105.318 +639824.099|220723.404|106.238 +639836.638|220711.940|107.241 +639840.814|220708.121|107.433 +639849.117|220700.528|107.848 +639853.231|220696.764|108.125 +639877.591|220674.495|110.240 +639881.651|220670.783|110.353 +639910.132|220644.689|108.777 +639921.927|220633.899|109.378 +639925.753|220630.403|109.798 +639929.624|220626.867|110.274 +639937.335|220619.814|110.862 +639945.016|220612.791|111.399 +639948.853|220609.277|111.307 +639956.428|220602.346|111.667 +639964.118|220595.305|111.505 +639967.995|220591.751|111.289 +639971.768|220588.298|111.344 +639975.496|220584.884|111.374 +639983.037|220577.983|111.335 +639986.774|220574.560|111.362 +639990.532|220571.119|111.301 +639994.199|220567.763|111.207 +639997.966|220564.310|111.124 +640001.681|220560.908|111.069 +640005.446|220557.458|110.798 +639879.179|220671.228|110.219 +639874.921|220675.114|110.353 +639862.391|220686.523|109.481 +639849.830|220697.956|108.030 +639845.547|220701.857|107.823 +639841.271|220705.753|107.601 +639832.612|220713.644|107.247 +639828.320|220717.548|106.854 +639824.022|220721.465|106.525 +639819.780|220725.318|105.562 +639815.488|220729.225|105.208 +639806.944|220736.989|103.364 +639802.641|220740.902|102.495 +639798.364|220744.782|101.444 +639793.984|220748.772|101.081 +639784.673|220757.297|103.574 +639780.146|220761.431|103.894 +639775.647|220765.536|104.059 +639771.082|220769.706|104.678 +639766.503|220773.885|105.068 +639761.953|220778.039|105.312 +639757.393|220782.200|105.635 +639752.876|220786.327|106.040 +639739.020|220798.979|107.445 +639720.472|220815.923|109.893 +639715.897|220820.092|109.850 +639711.316|220824.268|109.887 +639706.726|220828.453|109.993 +639702.133|220832.641|110.164 +639692.894|220841.063|110.201 +639688.346|220845.205|110.085 +639683.695|220849.445|110.030 +639679.105|220853.633|110.289 +639674.481|220857.848|110.451 +639669.812|220862.106|110.606 +639665.112|220866.398|111.024 +639660.472|220870.631|111.402 +639655.779|220874.911|111.423 +639651.161|220879.123|111.661 +639646.522|220883.348|111.670 +639637.116|220891.937|112.496 +639632.422|220896.216|112.645 +639627.770|220900.456|112.871 +639623.092|220904.726|112.968 +639618.395|220909.009|113.227 +639613.686|220913.307|113.617 +639594.974|220930.363|113.886 +639590.265|220934.658|113.962 +639585.604|220938.907|114.056 +639561.973|220960.465|115.358 +639557.227|220964.790|115.477 +639552.466|220969.137|115.827 +639547.699|220973.486|116.260 +639538.223|220982.128|116.568 +639533.526|220986.407|116.321 +639528.774|220990.741|116.705 +639523.977|220995.112|116.525 +639519.255|220999.416|116.595 +639514.479|221003.771|116.793 +639504.954|221012.455|116.931 +639495.414|221021.148|116.729 +639490.607|221025.531|116.839 +639485.877|221029.841|116.626 +639476.272|221038.595|116.809 +639471.459|221042.975|116.419 +639466.695|221047.312|116.038 +639461.846|221051.735|116.227 +639456.997|221056.161|116.449 +639447.338|221064.960|116.327 +639442.470|221069.395|116.153 +639437.633|221073.805|116.303 +639423.024|221087.119|116.071 +639413.261|221096.010|115.626 +639408.384|221100.460|115.803 +639398.557|221109.415|115.754 +639393.662|221113.871|115.401 +639388.676|221118.425|115.955 +639378.870|221127.344|114.681 +639373.960|221131.821|114.718 +639368.989|221136.354|115.010 +639364.020|221140.889|115.364 +639359.040|221145.424|114.922 +639354.093|221149.935|114.800 +639349.143|221154.447|114.760 +639344.147|221158.997|114.660 +639334.260|221167.971|111.664 +639319.221|221181.677|111.575 +639314.234|221186.219|111.243 +639309.196|221190.812|111.075 +639299.162|221199.956|110.920 +639294.120|221204.553|110.908 +639289.036|221209.186|110.780 +639283.992|221213.788|110.950 +639273.918|221222.929|108.067 +639268.862|221227.513|106.153 +639263.787|221232.125|105.104 +639258.690|221236.773|105.260 +639217.820|221274.050|106.382 +639197.337|221292.777|110.195 +639192.210|221297.462|110.874 +639187.084|221302.141|111.103 +639181.957|221306.816|111.414 +639176.833|221311.495|111.837 +639156.351|221330.195|113.636 +639151.233|221334.867|114.066 +639146.134|221339.540|115.666 +639120.497|221362.930|116.861 +639115.379|221367.597|117.178 +639110.216|221372.309|117.427 +639105.059|221377.018|117.903 +639099.984|221381.645|117.943 +639094.823|221386.354|118.287 +639089.666|221391.063|118.744 +639084.555|221395.730|119.052 +639079.440|221400.396|119.360 +639074.280|221405.102|119.561 +639058.936|221419.102|120.314 +639053.828|221423.765|120.680 +639043.550|221433.141|121.237 +639028.182|221447.159|121.506 +639023.101|221451.789|121.521 +639017.977|221456.461|121.658 +639012.844|221461.143|121.622 +639007.727|221465.809|121.923 +639002.649|221470.442|122.064 +638992.465|221479.736|122.707 +638987.387|221484.369|122.929 +638982.309|221489.005|123.091 +638977.225|221493.641|123.185 +638966.987|221502.977|123.091 +638961.949|221507.573|123.240 +638956.855|221512.218|123.274 +638951.787|221516.848|123.685 +638946.739|221521.451|123.743 +638941.673|221526.078|124.212 +638936.675|221530.647|124.968 +638931.667|221535.222|125.557 +638921.526|221544.463|125.197 +638916.482|221549.066|125.361 +638911.465|221553.650|125.877 +638901.458|221562.788|126.715 +638896.414|221567.387|126.968 +638886.389|221576.541|127.629 +638881.448|221581.052|128.004 +638876.431|221585.627|128.050 +638871.472|221590.159|128.751 +638866.461|221594.731|128.903 +638861.474|221599.285|129.303 +638851.510|221608.368|129.296 +638801.297|221654.124|126.748 +638796.430|221658.565|127.184 +638791.422|221663.134|127.215 +638786.445|221667.673|127.096 +638781.473|221672.202|127.096 +638771.448|221681.343|126.809 +638766.489|221685.866|126.971 +638761.554|221690.365|126.946 +638756.611|221694.876|127.257 +638751.670|221699.381|127.215 +638746.723|221703.898|127.541 +638741.846|221708.355|128.035 +638736.896|221712.872|128.376 +638731.983|221717.355|128.623 +638727.112|221721.805|129.205 +638722.193|221726.295|129.434 +638707.437|221739.755|129.894 +638702.518|221744.242|129.839 +638697.562|221748.756|129.540 +638687.598|221757.833|128.995 +638682.614|221762.368|128.592 +638677.667|221766.876|128.096 +638672.589|221771.491|127.087 +638667.621|221776.017|126.873 +638662.641|221780.550|126.264 +638652.512|221789.761|124.340 +638647.596|221794.238|124.270 +638642.582|221798.801|123.566 +638617.847|221821.338|122.350 +638598.331|221839.141|122.813 +638593.570|221843.491|123.316 +638579.083|221856.710|123.999 +638574.163|221861.197|123.917 +638549.825|221883.383|123.353 +638540.016|221892.308|122.274 +638520.576|221910.026|121.369 +638515.721|221914.446|121.106 +638510.880|221918.859|120.936 +638506.156|221923.172|121.122 +638486.780|221940.820|119.896 +638482.055|221945.133|120.189 +638477.392|221949.391|120.549 +638472.640|221953.725|120.744 +638467.913|221958.041|121.076 +638453.703|221970.998|121.030 +638444.059|221979.780|120.180 +638439.240|221984.166|119.692 +638434.552|221988.442|119.845 +638429.877|221992.703|119.845 +638425.140|221997.025|119.802 +638420.528|222001.231|120.143 +638415.901|222005.453|120.171 +638406.361|222014.140|119.448 +638401.597|222018.477|118.900 +638396.928|222022.729|118.583 +638392.188|222027.045|118.214 +638387.589|222031.242|118.491 +638382.809|222035.592|117.738 +638377.853|222040.090|116.220 +638373.144|222044.376|115.849 +638368.542|222048.573|115.971 +638363.826|222052.865|115.370 +638358.864|222057.367|113.727 +638354.149|222061.658|113.185 +638344.490|222070.433|110.975 +638321.203|222091.635|108.796 +638311.394|222100.532|105.674 +638288.236|222121.606|102.684 +638283.566|222125.849|101.840 +638278.894|222130.098|100.993 +638264.348|222143.290|96.113 +638259.776|222147.450|95.567 +638255.268|222151.550|95.092 +638250.773|222155.640|94.683 +638246.521|222159.527|95.235 +638242.122|222163.535|95.238 +638237.913|222167.378|95.777 +638233.582|222171.325|95.866 +638229.345|222175.190|96.119 +638225.130|222179.040|96.674 +638220.856|222182.938|96.817 +638216.559|222186.858|96.872 +638212.276|222190.759|97.018 +638208.021|222194.640|97.061 +638204.077|222198.251|98.286 +638257.079|222147.737|95.326 +638261.633|222143.582|95.777 +638271.505|222134.624|100.020 +638280.725|222126.221|101.566 +638285.392|222121.969|102.379 +638313.281|222096.543|106.513 +638341.652|222070.686|111.130 +638346.279|222066.465|111.444 +638360.745|222053.291|114.620 +638365.582|222048.884|115.501 +638370.267|222044.611|115.955 +638374.942|222040.340|116.169 +638379.898|222035.835|117.659 +638384.711|222031.446|118.311 +638389.283|222027.264|118.125 +638393.974|222022.985|118.503 +638398.711|222018.663|118.872 +638403.511|222014.280|119.323 +638413.018|222005.596|120.094 +638417.742|222001.277|120.256 +638422.388|221997.028|120.064 +638427.005|221992.801|119.756 +638431.754|221988.457|119.866 +638436.460|221984.153|119.765 +638446.019|221975.421|120.363 +638469.967|221953.524|120.725 +638474.673|221949.217|120.549 +638479.455|221944.837|120.259 +638488.929|221936.169|119.768 +638513.316|221913.885|120.997 +638537.800|221891.512|122.289 +638547.615|221882.545|122.826 +638552.605|221877.991|123.444 +638557.478|221873.535|123.444 +638562.340|221869.088|123.392 +638577.117|221855.582|123.895 +638582.067|221851.059|124.164 +638586.919|221846.618|123.859 +638591.726|221842.208|123.011 +638601.391|221833.356|121.945 +638606.393|221828.787|122.326 +638616.256|221819.768|122.289 +638631.267|221806.049|122.850 +638636.278|221801.477|123.447 +638641.314|221796.872|123.606 +638651.357|221787.703|124.450 +638661.659|221778.319|126.849 +638666.658|221773.747|126.895 +638671.715|221769.132|127.370 +638676.768|221764.517|127.858 +638681.864|221759.869|128.690 +638686.955|221755.221|129.156 +638691.950|221750.655|129.318 +638696.931|221746.101|129.409 +638702.021|221741.456|129.955 +638707.026|221736.881|129.903 +638711.997|221732.327|129.644 +638722.007|221723.177|129.647 +638727.011|221718.596|129.309 +638731.949|221714.073|128.851 +638736.924|221709.516|128.309 +638746.863|221700.421|127.553 +638751.895|221695.812|127.132 +638756.928|221691.216|127.526 +638761.975|221686.598|127.233 +638772.076|221677.359|127.239 +638777.121|221672.742|127.001 +638782.171|221668.127|127.269 +638787.286|221663.451|127.260 +638792.281|221658.879|127.096 +638812.712|221640.207|128.123 +638827.989|221626.241|128.489 +638843.299|221612.251|129.488 +638853.446|221602.970|129.342 +638873.642|221584.484|128.196 +638883.761|221575.218|127.401 +638888.885|221570.533|127.516 +638893.926|221565.909|126.645 +638909.142|221551.983|125.773 +638914.211|221547.338|125.288 +638929.588|221533.277|125.447 +638960.166|221505.278|123.146 +638965.301|221500.581|123.002 +638970.431|221495.887|122.819 +638980.676|221486.521|123.014 +638990.923|221477.142|122.545 +638996.035|221472.460|122.124 +639006.227|221463.133|121.564 +639011.363|221458.436|121.625 +639016.490|221453.749|121.484 +639021.613|221449.061|121.323 +639036.997|221434.991|121.213 +639042.117|221430.303|121.058 +639057.461|221416.261|120.174 +639072.814|221402.210|119.579 +639077.931|221397.528|119.366 +639083.037|221392.852|118.997 +639093.263|221383.492|118.318 +639098.371|221378.813|117.757 +639103.489|221374.129|117.549 +639113.724|221364.762|117.110 +639118.845|221360.077|116.952 +639123.965|221355.392|116.836 +639139.285|221341.384|116.736 +639144.396|221336.699|116.166 +639154.510|221327.415|113.535 +639169.780|221313.443|112.395 +639174.855|221308.798|111.859 +639179.933|221304.152|111.383 +639185.011|221299.507|111.085 +639190.092|221294.862|110.886 +639195.121|221290.241|109.378 +639205.241|221280.920|104.455 +639210.331|221276.288|105.528 +639230.557|221257.780|103.955 +639250.677|221239.407|104.928 +639255.712|221234.816|105.623 +639260.662|221230.287|105.409 +639265.695|221225.700|106.171 +639270.669|221221.173|107.503 +639280.590|221212.157|110.957 +639285.534|221207.640|110.972 +639290.533|221203.068|110.749 +639295.474|221198.554|110.935 +639300.411|221194.049|111.335 +639305.361|221189.523|111.185 +639310.302|221185.012|111.450 +639315.243|221180.498|111.642 +639339.703|221158.186|114.486 +639344.592|221153.724|114.849 +639349.497|221149.244|114.828 +639354.401|221144.760|114.797 +639359.287|221140.301|115.224 +639364.139|221135.869|115.379 +639369.065|221131.361|114.943 +639373.932|221126.911|114.779 +639388.505|221113.612|116.086 +639393.339|221109.187|115.708 +639398.192|221104.758|116.013 +639403.053|221100.317|116.099 +639407.921|221095.867|116.068 +639422.429|221082.611|116.220 +639427.227|221078.231|116.681 +639436.846|221069.441|116.501 +639441.674|221065.027|116.531 +639446.451|221060.662|116.601 +639456.064|221051.878|116.699 +639460.871|221047.483|116.446 +639465.674|221043.091|116.266 +639470.387|221038.793|116.705 +639475.215|221034.383|116.888 +639479.951|221030.054|117.013 +639484.785|221025.629|116.486 +639499.004|221012.641|116.964 +639508.529|221003.936|116.848 +639522.718|220990.970|116.830 +639527.485|220986.614|116.787 +639532.218|220982.292|116.635 +639546.483|220969.256|116.120 +639551.192|220964.949|115.800 +639560.726|220956.229|115.038 +639570.178|220947.594|114.782 +639579.630|220938.953|114.126 +639584.339|220934.649|114.002 +639589.012|220930.378|113.803 +639593.712|220926.087|113.806 +639612.445|220908.972|113.401 +639617.133|220904.690|113.206 +639631.111|220891.916|112.654 +639635.835|220887.594|112.231 +639640.484|220883.339|111.673 +639645.187|220879.041|111.505 +639649.780|220874.847|111.450 +639654.443|220870.586|111.261 +639659.107|220866.322|111.078 +639663.752|220862.079|111.078 +639668.358|220857.866|110.630 +639673.058|220853.569|110.243 +639682.253|220845.168|109.993 +639686.896|220840.926|109.747 +639696.037|220832.580|110.036 +639700.612|220828.398|109.987 +639705.205|220824.204|109.847 +639709.759|220820.047|109.990 +639714.294|220815.904|109.945 +639737.334|220794.828|107.454 +639746.496|220786.442|106.333 +639755.686|220778.030|105.150 +639760.118|220773.985|105.351 +639764.574|220769.913|105.089 +639769.143|220765.731|104.425 +639773.691|220761.571|103.928 +639787.077|220749.336|103.294 +639796.017|220741.158|102.556 +639800.294|220737.266|103.285 +639804.570|220733.371|104.010 +639817.314|220721.761|106.147 +639821.499|220717.954|107.156 +639825.812|220714.019|107.418 +639830.060|220710.145|107.759 +639834.273|220706.298|108.015 +639838.558|220702.388|108.174 +639847.041|220694.643|108.448 +639851.223|220690.833|108.951 +639863.744|220679.415|110.106 +639884.489|220660.471|110.786 +639888.677|220656.646|110.542 +639897.080|220648.953|109.408 +639925.301|220623.185|110.118 +639936.933|220612.581|111.539 +639940.862|220608.994|111.505 +639948.604|220601.928|112.060 +639952.535|220598.335|112.051 +639956.452|220594.756|111.877 +639964.249|220587.633|111.764 +639968.044|220584.165|111.728 +639971.842|220580.696|111.691 +639975.679|220577.191|111.725 +639979.483|220573.716|111.685 +639983.287|220570.241|111.670 +639987.039|220566.812|111.648 +639990.831|220563.347|111.469 +639994.543|220559.954|111.417 +639998.310|220556.513|111.374 +639881.837|220660.929|110.688 +639877.789|220664.617|110.478 +639849.025|220690.827|108.881 +639844.916|220694.569|108.546 +639836.483|220702.257|108.271 +639832.304|220706.064|108.082 +639823.870|220713.748|107.601 +639819.597|220717.643|107.424 +639815.525|220721.340|106.333 +639802.830|220732.886|104.187 +639798.642|220736.690|103.218 +639794.240|220740.707|103.282 +639789.787|220744.773|103.687 +639785.505|220748.669|103.026 +639781.003|220752.780|103.452 +639772.084|220760.918|103.855 +639767.540|220765.070|104.321 +639762.959|220769.261|105.068 +639758.463|220773.360|105.251 +639744.838|220785.799|106.226 +639735.588|220794.251|107.259 +639721.628|220807.001|109.244 +639717.013|220811.217|109.829 +639712.438|220815.386|109.768 +639707.784|220819.632|109.960 +639703.190|220823.817|110.079 +639698.597|220828.002|109.859 +639693.970|220832.220|109.920 +639689.328|220836.448|109.731 +639684.707|220840.660|109.789 +639679.989|220844.961|109.832 +639675.353|220849.189|110.045 +639670.628|220853.496|110.201 +639661.131|220862.164|110.984 +639656.440|220866.437|110.941 +639651.719|220870.747|111.191 +639647.009|220875.039|111.347 +639642.215|220879.410|111.426 +639637.451|220883.756|111.685 +639632.665|220888.127|112.167 +639627.898|220892.473|112.499 +639623.116|220896.835|112.596 +639618.337|220901.191|112.663 +639613.518|220905.589|113.108 +639608.745|220909.939|113.194 +639594.315|220923.097|113.685 +639589.570|220927.422|113.621 +639584.708|220931.857|113.739 +639579.883|220936.258|114.011 +639570.169|220945.119|114.764 +639560.516|220953.921|115.053 +639541.064|220971.670|116.522 +639536.202|220976.102|116.416 +639526.497|220984.947|116.608 +639511.888|220998.267|116.897 +639507.021|221002.705|117.013 +639497.264|221011.596|116.998 +639477.723|221029.405|117.022 +639472.849|221033.843|116.766 +639468.037|221038.223|116.364 +639463.108|221042.713|116.217 +639458.201|221047.187|116.495 +639453.290|221051.668|116.870 +639438.626|221065.027|116.434 +639433.734|221069.489|116.641 +639428.803|221073.985|116.754 +639423.883|221078.466|116.665 +639418.988|221082.922|116.224 +639404.233|221096.367|116.166 +639399.359|221100.811|116.263 +639394.415|221105.310|115.873 +639389.544|221109.751|115.974 +639374.716|221123.262|115.943 +639369.848|221127.682|115.020 +639364.877|221132.211|115.315 +639359.912|221136.738|115.583 +639355.035|221141.169|114.888 +639350.036|221145.720|114.797 +639345.132|221150.188|114.828 +639330.340|221163.612|111.712 +639315.441|221177.182|111.658 +639305.508|221186.216|111.133 +639300.512|221190.770|111.158 +639295.565|221195.268|111.030 +639290.576|221199.810|110.835 +639285.577|221204.364|111.008 +639280.584|221208.911|110.987 +639265.679|221222.426|106.851 +639260.702|221226.937|105.485 +639245.700|221240.553|102.264 +639240.637|221245.186|103.769 +639230.597|221254.318|103.077 +639225.543|221258.938|104.291 +639220.496|221263.541|104.760 +639215.448|221268.149|105.656 +639200.275|221281.960|105.068 +639185.127|221295.837|110.908 +639180.098|221300.425|111.240 +639175.017|221305.055|111.642 +639164.915|221314.272|112.712 +639154.766|221323.526|113.541 +639149.745|221328.107|114.361 +639144.643|221332.776|115.882 +639124.356|221351.262|116.766 +639119.281|221355.886|116.830 +639114.160|221360.550|116.986 +639109.088|221365.170|117.214 +639104.016|221369.794|117.360 +639098.899|221374.458|117.604 +639083.653|221388.357|118.720 +639078.593|221392.971|119.275 +639073.527|221397.586|119.491 +639048.085|221420.772|120.668 +639042.956|221425.442|120.628 +639037.832|221430.111|120.732 +639032.751|221434.738|120.762 +639027.624|221439.408|120.856 +639017.419|221448.701|121.106 +639012.296|221453.371|121.262 +639007.202|221458.007|121.116 +638997.010|221467.297|121.713 +638991.892|221471.960|122.057 +638986.820|221476.581|122.411 +638976.607|221485.884|122.691 +638961.281|221499.834|122.838 +638956.237|221504.428|122.938 +638951.116|221509.094|123.331 +638946.056|221513.709|123.911 +638930.841|221527.577|125.148 +638925.802|221532.168|125.416 +638920.709|221536.807|125.569 +638910.477|221546.115|125.383 +638905.442|221550.706|125.715 +638900.419|221555.284|126.209 +638895.347|221559.908|126.718 +638890.296|221564.507|126.925 +638885.252|221569.103|127.196 +638880.229|221573.685|127.730 +638860.118|221592.009|129.220 +638849.968|221601.251|129.281 +638824.715|221624.227|128.672 +638794.446|221651.759|127.254 +638789.441|221656.313|127.355 +638784.436|221660.864|127.017 +638779.440|221665.414|127.205 +638774.481|221669.931|127.330 +638759.503|221683.565|127.346 +638754.556|221688.070|127.654 +638749.615|221692.566|127.608 +638744.665|221697.074|127.934 +638739.737|221701.561|128.041 +638734.787|221706.072|128.379 +638729.904|221710.525|128.867 +638725.027|221714.969|129.434 +638720.105|221719.455|129.638 +638715.170|221723.945|129.793 +638710.244|221728.435|130.001 +638705.319|221732.915|129.891 +638700.363|221737.426|129.927 +638695.413|221741.928|129.693 +638690.472|221746.421|129.525 +638675.464|221760.058|127.894 +638670.483|221764.587|127.568 +638665.512|221769.101|126.995 +638660.605|221773.567|126.895 +638635.471|221796.384|122.798 +638610.885|221818.747|121.753 +638601.199|221827.568|121.996 +638596.423|221831.924|122.399 +638591.488|221836.414|122.161 +638586.757|221840.726|122.576 +638567.506|221858.265|123.313 +638562.648|221862.684|123.072 +638557.740|221867.147|122.859 +638543.147|221880.427|122.213 +638528.687|221893.585|121.692 +638514.151|221906.807|120.960 +638490.154|221928.643|120.363 +638480.455|221937.461|119.381 +638471.125|221945.965|120.125 +638466.453|221950.226|120.479 +638442.696|221971.839|119.576 +638437.987|221976.128|119.610 +638433.293|221980.401|119.735 +638428.609|221984.665|119.683 +638423.982|221988.881|119.933 +638419.367|221993.084|120.250 +638405.358|222005.837|120.040 +638395.809|222014.515|119.113 +638391.078|222018.812|118.531 +638386.366|222023.101|118.299 +638381.660|222027.380|117.863 +638377.021|222031.605|118.013 +638367.466|222040.276|116.181 +638362.781|222044.534|115.711 +638357.913|222048.951|114.690 +638353.189|222053.243|114.111 +638343.356|222062.152|111.115 +638310.517|222091.977|106.415 +638292.116|222108.701|104.632 +638287.431|222112.953|103.681 +638282.761|222117.190|102.815 +638278.110|222121.414|102.050 +638263.785|222134.393|97.789 +638258.947|222138.776|96.186 +638254.266|222143.028|95.223 +638249.675|222147.197|94.442 +638245.457|222151.050|95.128 +638241.171|222154.961|95.564 +638236.929|222158.829|95.976 +638232.579|222162.794|95.979 +638228.230|222166.753|96.012 +638223.853|222170.737|95.951 +638219.692|222174.538|96.518 +638215.510|222178.351|96.820 +638211.222|222182.259|96.933 +638206.964|222186.139|96.963 +638202.736|222189.991|97.134 +638198.490|222193.859|97.253 +638253.991|222140.931|95.214 +638258.743|222136.618|96.664 +638273.200|222123.496|101.346 +638277.802|222119.305|102.105 +638282.460|222115.068|102.885 +638287.102|222110.847|103.843 +638291.802|222106.570|104.641 +638310.172|222089.837|106.491 +638315.083|222085.384|108.280 +638319.892|222081.013|109.475 +638342.929|222060.015|111.033 +638352.759|222051.094|114.218 +638357.480|222046.793|114.791 +638362.293|222042.416|115.788 +638367.097|222038.045|116.537 +638371.974|222033.613|117.641 +638376.600|222029.395|117.900 +638381.203|222025.195|117.818 +638385.936|222020.882|118.125 +638390.685|222016.554|118.519 +638404.968|222003.548|120.015 +638419.013|221990.734|120.119 +638423.707|221986.449|119.930 +638428.316|221982.239|119.589 +638433.053|221977.920|119.631 +638437.747|221973.635|119.491 +638442.465|221969.331|119.488 +638447.314|221964.917|120.152 +638466.340|221947.562|120.171 +638475.734|221938.979|119.439 +638480.437|221934.681|119.006 +638490.142|221925.836|119.445 +638529.062|221890.354|121.137 +638538.928|221881.366|121.850 +638548.819|221872.353|122.539 +638553.726|221867.878|122.713 +638558.691|221863.352|122.941 +638563.495|221858.966|122.554 +638568.475|221854.427|122.923 +638587.961|221836.639|122.045 +638602.778|221823.127|122.201 +638612.556|221814.197|121.594 +638622.584|221805.059|122.353 +638647.684|221782.193|124.438 +638652.951|221777.416|126.200 +638657.980|221772.838|126.745 +638662.994|221768.263|126.895 +638668.005|221763.700|127.376 +638673.065|221759.086|127.535 +638683.245|221749.823|129.071 +638688.268|221745.248|129.415 +638693.285|221740.670|129.382 +638698.330|221736.076|129.940 +638703.335|221731.510|129.888 +638708.355|221726.932|129.943 +638713.329|221722.391|129.702 +638718.315|221717.840|129.552 +638723.299|221713.289|129.415 +638728.295|221708.729|128.992 +638733.251|221704.203|128.678 +638738.237|221699.649|128.196 +638743.163|221695.148|127.663 +638758.244|221681.389|127.416 +638763.298|221676.780|127.608 +638768.263|221672.248|127.495 +638773.305|221667.642|127.215 +638778.300|221663.080|126.965 +638783.427|221658.407|127.477 +638788.447|221653.826|127.510 +638793.379|221649.312|126.757 +638808.671|221635.367|127.846 +638813.797|221630.697|128.553 +638834.097|221612.178|129.232 +638844.186|221602.970|129.388 +638854.336|221593.704|129.220 +638859.405|221589.077|129.110 +638869.448|221579.896|128.464 +638894.640|221556.875|126.590 +638909.776|221543.040|125.246 +638919.947|221533.756|125.249 +638930.073|221524.505|124.718 +638935.135|221519.875|124.145 +638940.180|221515.269|123.975 +638950.336|221505.988|123.298 +638955.414|221501.349|122.944 +638960.483|221496.713|122.490 +638965.518|221492.114|122.259 +638970.669|221487.414|122.356 +638991.063|221468.793|121.841 +639011.384|221450.234|121.128 +639021.635|221440.871|120.777 +639026.719|221436.232|120.707 +639031.843|221431.553|120.497 +639062.481|221403.569|119.339 +639082.915|221384.909|118.638 +639087.978|221380.279|118.141 +639098.213|221370.928|117.440 +639103.288|221366.295|117.220 +639108.411|221361.613|117.181 +639113.532|221356.938|116.934 +639118.607|221352.305|116.702 +639123.734|221347.623|116.733 +639144.223|221328.911|115.931 +639149.276|221324.275|114.264 +639154.394|221319.588|113.334 +639159.517|221314.903|113.066 +639174.846|221300.879|111.505 +639179.927|221296.234|111.103 +639215.637|221263.532|105.123 +639256.237|221226.459|105.888 +639261.275|221221.862|106.388 +639276.280|221208.219|110.847 +639281.319|221203.623|111.097 +639286.360|221199.018|111.146 +639291.356|221194.455|111.203 +639296.352|221189.895|111.283 +639301.353|221185.326|111.179 +639306.343|221180.769|111.423 +639311.320|221176.237|112.243 +639321.284|221167.129|111.819 +639326.240|221162.600|111.716 +639340.990|221149.173|114.840 +639345.943|221144.650|114.873 +639350.853|221140.164|114.770 +639355.730|221135.720|115.516 +639360.671|221131.212|115.858 +639385.097|221108.912|116.565 +639390.029|221104.401|116.239 +639394.851|221099.997|116.178 +639414.282|221082.248|116.281 +639419.147|221077.807|116.449 +639423.953|221073.424|116.830 +639428.778|221069.017|116.882 +639433.618|221064.594|116.739 +639452.858|221047.023|116.821 +639457.649|221042.643|116.781 +639462.471|221038.232|116.367 +639467.253|221033.867|116.525 +639471.965|221029.573|117.043 +639476.800|221025.159|117.196 +639495.819|221007.783|117.098 +639500.553|221003.454|116.806 +639510.041|220994.786|116.653 +639514.735|220990.503|116.909 +639519.514|220986.136|116.763 +639524.245|220981.811|116.620 +639528.914|220977.546|116.665 +639538.336|220968.933|116.412 +639543.124|220964.550|115.757 +639547.815|220960.261|115.666 +639557.233|220951.650|115.178 +639566.649|220943.043|114.831 +639571.306|220938.785|114.693 +639576.012|220934.478|114.133 +639580.755|220930.138|113.703 +639585.376|220925.913|113.532 +639590.088|220921.606|113.465 +639594.696|220917.397|113.489 +639599.381|220913.115|113.249 +639604.057|220908.841|113.148 +639608.705|220904.589|112.865 +639613.317|220900.377|112.935 +639617.974|220896.119|112.627 +639622.622|220891.867|112.414 +639627.274|220887.615|112.194 +639631.913|220883.369|111.712 +639636.582|220879.099|111.405 +639641.185|220874.893|111.264 +639650.417|220866.450|110.853 +639655.007|220862.259|110.905 +639668.876|220849.573|109.981 +639673.497|220845.351|109.871 +639678.062|220841.179|109.826 +639682.671|220836.960|109.466 +639687.210|220832.815|109.676 +639691.769|220828.651|109.743 +639696.287|220824.527|109.795 +639700.855|220820.352|109.826 +639705.437|220816.167|109.801 +639709.972|220812.021|109.762 +639714.489|220807.897|109.878 +639719.137|220803.639|109.073 +639728.373|220795.178|107.634 +639737.645|220786.689|106.406 +639742.199|220782.526|106.083 +639751.364|220774.135|105.086 +639755.872|220770.017|105.135 +639760.389|220765.887|104.806 +639764.998|220761.668|104.233 +639778.860|220748.961|101.453 +639782.966|220745.240|103.565 +639787.315|220741.274|104.132 +639796.215|220733.142|104.324 +639800.440|220729.298|105.385 +639808.977|220721.520|106.967 +639813.330|220717.548|107.262 +639830.643|220701.748|108.567 +639834.931|220697.831|108.713 +639839.235|220693.902|108.789 +639843.563|220689.949|109.024 +639847.830|220686.056|109.350 +639860.537|220674.456|110.332 +639864.704|220670.664|110.984 +639885.815|220651.388|110.929 +639890.167|220647.402|110.109 +639902.621|220636.036|110.423 +639906.904|220632.116|109.783 +639919.169|220620.924|109.963 +639931.017|220610.128|111.597 +639938.996|220602.843|111.712 +639946.875|220595.659|112.404 +639950.835|220592.041|112.270 +639954.794|220588.426|112.173 +639958.735|220584.826|112.164 +639962.688|220581.214|112.112 +639966.611|220577.633|111.984 +639970.446|220574.131|112.036 +639974.313|220570.601|111.947 +639978.160|220567.087|111.959 +639985.893|220560.021|111.624 +639989.688|220556.556|111.682 +639993.464|220553.105|111.603 +640001.041|220546.183|111.359 +639847.388|220684.176|109.414 +639839.064|220691.741|109.015 +639834.916|220695.511|108.893 +639826.528|220703.137|108.658 +639822.334|220706.950|108.567 +639809.803|220718.323|107.125 +639805.591|220722.151|106.894 +639792.981|220733.584|104.519 +639788.717|220737.461|104.339 +639784.438|220741.347|103.952 +639775.812|220749.184|103.321 +639771.402|220753.192|103.172 +639766.955|220757.243|103.605 +639762.407|220761.391|104.403 +639757.917|220765.481|104.830 +639753.452|220769.547|105.141 +639739.903|220781.886|106.202 +639735.368|220786.016|106.403 +639730.766|220790.216|107.101 +639726.191|220794.389|107.646 +639716.845|220802.929|109.844 +639712.301|220807.068|109.899 +639707.707|220811.253|109.969 +639703.205|220815.350|109.762 +639698.615|220819.532|109.853 +639693.976|220823.756|109.960 +639689.428|220827.892|109.750 +639684.863|220832.047|109.719 +639680.202|220836.293|109.679 +639675.578|220840.502|109.743 +639670.948|220844.720|109.890 +639666.224|220849.024|110.036 +639661.503|220853.331|110.573 +639652.112|220861.887|110.902 +639647.442|220866.136|110.691 +639642.666|220870.494|111.380 +639637.987|220874.752|111.292 +639633.269|220879.050|111.551 +639628.432|220883.464|112.029 +639623.674|220887.801|112.295 +639618.925|220892.126|112.471 +639614.118|220896.506|112.761 +639609.388|220900.813|112.849 +639604.554|220905.220|113.023 +639599.759|220909.588|113.279 +639594.943|220913.974|113.331 +639590.128|220918.360|113.395 +639585.309|220922.749|113.520 +639580.496|220927.132|113.621 +639575.607|220931.592|114.014 +639570.696|220936.072|114.651 +639565.911|220940.425|114.544 +639560.982|220944.917|114.937 +639556.176|220949.297|115.126 +639551.201|220953.833|115.541 +639536.580|220967.162|116.452 +639531.655|220971.645|116.489 +639521.834|220980.591|116.836 +639516.969|220985.020|116.809 +639512.041|220989.513|117.004 +639507.133|220993.978|116.943 +639502.238|220998.434|116.800 +639497.313|221002.921|117.016 +639477.540|221020.929|117.312 +639472.654|221025.373|117.162 +639467.686|221029.893|116.858 +639462.815|221034.325|116.537 +639457.798|221038.897|116.931 +639452.864|221043.389|116.918 +639432.985|221061.488|116.912 +639428.004|221066.024|116.961 +639423.033|221070.550|116.906 +639418.080|221075.052|116.544 +639413.108|221079.581|116.550 +639408.168|221084.071|116.004 +639393.196|221097.708|116.318 +639388.173|221102.283|116.489 +639383.198|221106.818|116.742 +639358.293|221129.489|115.955 +639353.300|221134.031|115.654 +639348.332|221138.545|114.821 +639343.327|221143.102|114.837 +639333.348|221152.185|114.230 +639323.381|221161.228|111.792 +639318.364|221165.809|112.325 +639308.370|221174.908|112.078 +639303.344|221179.474|111.347 +639298.348|221184.024|111.243 +639293.349|221188.581|111.338 +639288.308|221193.171|111.237 +639283.312|221197.719|111.088 +639278.271|221202.312|111.097 +639273.235|221206.894|110.710 +639258.227|221220.500|106.177 +639253.225|221225.057|106.314 +639248.190|221229.632|105.488 +639238.119|221238.773|103.266 +639228.052|221247.978|105.607 +639207.871|221266.378|106.753 +639202.827|221270.975|106.951 +639197.785|221275.568|106.912 +639192.744|221280.158|106.772 +639177.644|221293.975|111.060 +639172.563|221298.611|111.615 +639157.420|221312.422|112.727 +639122.115|221344.636|116.547 +639117.037|221349.263|116.641 +639112.011|221353.844|116.809 +639106.985|221358.425|117.074 +639101.858|221363.095|117.083 +639096.835|221367.676|117.312 +639091.821|221372.251|117.924 +639086.746|221376.878|118.074 +639081.668|221381.502|118.199 +639061.439|221399.945|119.311 +639056.315|221404.615|119.448 +639051.304|221409.187|120.003 +639046.229|221413.814|120.210 +639041.151|221418.440|120.262 +639020.818|221436.963|120.418 +639010.653|221446.223|120.619 +639005.563|221450.862|120.555 +639000.485|221455.489|120.796 +638990.335|221464.743|121.399 +638975.092|221478.632|122.045 +638969.989|221483.278|121.935 +638964.911|221487.904|122.259 +638959.855|221492.507|122.155 +638954.746|221497.167|122.777 +638949.705|221501.761|122.929 +638944.624|221506.394|123.219 +638939.552|221511.018|123.688 +638934.514|221515.608|123.926 +638929.426|221520.244|124.185 +638919.359|221529.431|125.493 +638914.241|221534.088|125.377 +638909.139|221538.736|125.450 +638899.047|221547.932|125.931 +638893.972|221552.559|126.434 +638883.837|221561.797|127.035 +638878.848|221566.345|127.407 +638873.770|221570.975|127.910 +638868.738|221575.565|128.370 +638843.506|221598.559|129.574 +638833.353|221607.798|129.272 +638828.281|221612.419|129.470 +638818.144|221621.642|128.970 +638813.090|221626.244|128.915 +638802.901|221635.510|128.117 +638772.649|221663.046|127.550 +638767.599|221667.642|127.309 +638762.658|221672.144|127.632 +638757.610|221676.744|127.885 +638752.602|221681.300|127.687 +638747.677|221685.790|128.196 +638732.742|221699.400|128.882 +638727.831|221703.877|129.150 +638722.884|221708.385|129.559 +638717.950|221712.881|129.680 +638712.960|221717.425|129.787 +638708.035|221721.912|130.034 +638703.069|221726.432|129.994 +638698.116|221730.943|130.052 +638693.112|221735.497|129.778 +638688.091|221740.063|129.394 +638683.138|221744.568|129.193 +638673.031|221753.749|127.779 +638668.081|221758.257|127.672 +638663.073|221762.810|127.181 +638658.099|221767.330|126.620 +638653.100|221771.875|126.267 +638648.211|221776.328|126.343 +638637.997|221785.588|123.676 +638628.088|221794.601|123.173 +638623.093|221799.142|122.694 +638603.403|221817.050|121.942 +638593.625|221825.941|121.667 +638588.815|221830.321|121.896 +638569.451|221847.941|122.237 +638559.795|221856.728|122.393 +638545.298|221869.914|122.259 +638535.499|221878.811|121.256 +638525.791|221887.635|120.564 +638516.224|221896.340|120.756 +638511.350|221900.766|120.113 +638473.091|221935.550|118.982 +638468.473|221939.759|119.342 +638435.567|221969.694|119.515 +638430.852|221973.982|119.543 +638426.195|221978.219|119.625 +638416.996|221986.595|120.152 +638389.070|222011.991|119.628 +638384.254|222016.356|118.683 +638379.551|222020.623|118.040 +638374.860|222024.887|117.708 +638370.166|222029.151|117.388 +638365.603|222033.296|117.214 +638360.839|222037.618|116.394 +638356.054|222041.959|115.504 +638351.378|222046.205|114.901 +638346.745|222050.417|114.724 +638341.582|222055.074|112.048 +638336.806|222059.403|110.865 +638313.470|222080.580|107.677 +638290.424|222101.502|104.970 +638276.708|222113.959|103.547 +638253.019|222135.402|96.640 +638243.912|222143.659|95.363 +638239.623|222147.560|95.582 +638235.459|222151.352|96.302 +638231.174|222155.247|96.347 +638226.812|222159.210|96.326 +638222.478|222163.148|96.216 +638218.177|222167.058|96.250 +638213.953|222170.899|96.387 +638209.807|222174.672|96.835 +638205.589|222178.506|97.027 +638201.392|222182.326|97.305 +638197.183|222186.151|97.347 +638249.995|222134.972|95.098 +638264.772|222121.582|101.395 +638278.689|222108.917|103.660 +638283.298|222104.720|104.275 +638287.876|222100.548|104.793 +638292.503|222096.335|105.306 +638297.243|222092.025|106.311 +638315.741|222075.176|108.442 +638329.875|222062.310|110.438 +638334.504|222058.092|110.731 +638344.474|222049.052|114.471 +638349.165|222044.775|114.885 +638354.088|222040.307|116.333 +638358.596|222036.186|115.995 +638363.348|222031.864|116.748 +638368.060|222027.569|117.114 +638372.772|222023.278|117.507 +638377.509|222018.959|117.802 +638382.255|222014.637|118.400 +638387.104|222010.229|119.494 +638391.828|222005.922|119.805 +638419.952|221980.270|119.875 +638424.600|221976.027|119.735 +638429.243|221971.788|119.323 +638433.970|221967.478|119.351 +638438.655|221963.201|119.186 +638443.404|221958.867|119.101 +638467.151|221937.211|118.979 +638471.851|221932.916|118.506 +638481.370|221924.230|118.208 +638486.106|221919.908|117.976 +638515.529|221893.113|120.436 +638520.363|221888.705|120.610 +638535.027|221875.340|121.036 +638539.931|221870.871|121.423 +638544.899|221866.348|121.899 +638549.776|221861.898|121.890 +638564.449|221848.520|121.932 +638579.098|221835.155|121.423 +638584.014|221830.671|121.497 +638588.912|221826.203|121.484 +638598.809|221817.178|121.542 +638608.694|221808.165|121.588 +638633.758|221785.338|123.472 +638638.854|221780.702|124.353 +638644.066|221775.975|126.053 +638649.028|221771.448|126.139 +638654.045|221766.876|126.264 +638659.074|221762.298|126.828 +638669.209|221753.072|127.928 +638674.205|221748.518|128.016 +638689.430|221734.662|129.808 +638694.456|221730.078|129.876 +638704.502|221720.922|130.028 +638714.512|221711.793|130.004 +638719.474|221707.263|129.714 +638729.474|221698.135|128.964 +638734.439|221693.602|128.748 +638739.441|221689.036|128.437 +638744.452|221684.464|128.208 +638759.467|221670.760|127.486 +638769.589|221661.534|127.669 +638784.747|221647.721|127.629 +638815.309|221619.895|129.178 +638820.369|221615.287|129.284 +638825.444|221610.666|129.586 +638835.648|221601.373|129.836 +638840.675|221596.791|129.693 +638850.821|221587.541|129.498 +638865.912|221573.776|128.437 +638881.067|221559.947|127.093 +638896.252|221546.100|126.200 +638906.313|221536.919|125.300 +638916.515|221527.629|125.648 +638921.593|221522.993|125.264 +638926.583|221518.433|124.279 +638931.661|221513.803|123.871 +638936.754|221509.158|123.709 +638941.780|221504.571|123.280 +638946.858|221499.938|122.877 +638956.977|221490.712|122.301 +638962.061|221486.076|122.048 +638967.155|221481.434|121.945 +638972.242|221476.795|121.786 +638987.461|221462.923|121.387 +639002.682|221449.036|120.354 +639023.083|221430.447|120.180 +639038.341|221416.545|120.165 +639043.379|221411.954|120.131 +639058.592|221398.080|119.174 +639078.885|221379.575|118.235 +639083.960|221374.948|117.997 +639089.035|221370.322|117.812 +639094.107|221365.695|117.461 +639099.176|221361.068|117.059 +639104.254|221356.441|116.854 +639109.332|221351.811|116.772 +639114.410|221347.184|116.583 +639119.488|221342.554|116.513 +639124.572|221337.924|116.705 +639149.822|221314.860|112.584 +639154.906|221310.230|112.654 +639195.438|221273.243|107.601 +639200.480|221268.646|107.558 +639205.527|221264.044|106.942 +639210.620|221259.399|106.555 +639215.619|221254.845|106.479 +639220.712|221250.209|106.638 +639225.766|221245.597|105.909 +639245.965|221227.190|105.418 +639251.003|221222.612|106.162 +639256.008|221218.052|105.982 +639271.017|221204.455|110.877 +639276.061|221199.859|110.941 +639281.060|221195.308|110.990 +639291.103|221186.167|111.182 +639296.150|221181.571|111.246 +639301.137|221177.032|111.685 +639321.129|221158.839|112.356 +639331.047|221149.820|113.511 +639341.008|221140.767|114.806 +639345.970|221136.247|114.706 +639365.758|221118.258|116.928 +639380.595|221104.743|116.915 +639385.612|221100.177|116.861 +639390.501|221095.718|116.483 +639400.383|221086.720|116.617 +639405.312|221082.230|116.510 +639420.067|221068.798|116.888 +639429.866|221059.876|117.053 +639434.746|221055.432|117.104 +639444.500|221046.553|117.345 +639454.284|221037.641|117.248 +639459.213|221033.145|116.720 +639464.059|221028.728|116.693 +639468.884|221024.339|117.001 +639473.712|221019.947|117.284 +639478.546|221015.546|117.479 +639483.350|221011.172|117.479 +639493.036|221002.348|117.168 +639497.895|220997.922|117.153 +639502.680|220993.561|116.894 +639507.548|220989.129|116.848 +639512.318|220984.782|116.803 +639521.901|220976.053|116.861 +639526.683|220971.694|116.763 +639531.438|220967.360|116.470 +639536.211|220963.013|116.541 +639550.558|220949.922|115.510 +639555.304|220945.591|114.928 +639564.759|220936.974|114.770 +639574.305|220928.263|113.809 +639583.696|220919.701|113.526 +639588.372|220915.437|113.361 +639593.041|220911.179|113.297 +639597.763|220906.878|113.236 +639602.399|220902.651|113.075 +639611.781|220894.098|112.740 +639616.389|220889.895|112.462 +639625.701|220881.406|112.029 +639630.312|220877.200|111.795 +639634.994|220872.927|111.417 +639639.639|220868.690|110.972 +639644.251|220864.484|110.819 +639648.826|220860.314|110.612 +639653.413|220856.135|110.707 +639657.976|220851.978|110.637 +639662.597|220847.759|110.115 +639667.187|220843.571|109.850 +639671.698|220839.463|109.871 +639676.218|220835.342|109.829 +639680.800|220831.166|109.716 +639685.323|220827.045|109.701 +639698.783|220814.786|109.844 +639703.263|220810.702|109.838 +639707.759|220806.602|109.750 +639712.182|220802.576|109.859 +639716.736|220798.418|109.393 +639725.913|220790.027|107.360 +639730.397|220785.933|106.787 +639734.908|220781.819|106.397 +639739.367|220777.753|106.055 +639743.878|220773.635|105.705 +639748.292|220769.611|105.382 +639752.702|220765.585|105.083 +639757.183|220761.498|104.693 +639761.660|220757.407|103.989 +639766.104|220753.353|103.568 +639774.736|220745.502|104.422 +639779.049|220741.573|104.556 +639804.396|220718.527|108.061 +639817.137|220706.929|108.777 +639821.383|220703.061|108.847 +639829.868|220695.335|109.091 +639834.090|220691.491|109.359 +639838.324|220687.632|109.256 +639842.487|220683.844|109.597 +639846.663|220680.043|109.878 +639850.823|220676.257|110.249 +639875.628|220653.653|111.661 +639879.847|220649.800|111.264 +639892.429|220638.306|110.280 +639896.516|220634.582|110.640 +639904.791|220627.026|110.347 +639912.844|220619.686|110.749 +639916.941|220615.946|110.603 +639920.995|220612.249|110.704 +639924.933|220608.664|111.399 +639932.897|220601.407|111.859 +639936.924|220597.731|111.877 +639944.797|220590.559|112.621 +639948.826|220586.880|112.414 +639952.804|220583.253|112.484 +639956.781|220579.620|112.301 +639960.771|220575.978|112.334 +639964.718|220572.378|112.356 +639968.650|220568.790|112.200 +639972.564|220565.218|112.142 +639976.526|220561.597|111.865 +639980.406|220558.058|112.008 +639984.338|220554.471|111.920 +639988.228|220550.920|111.792 +639992.156|220547.336|111.746 +639996.003|220543.821|111.594 +639882.919|220644.189|110.621 +639853.274|220671.146|110.893 +639849.092|220674.937|110.323 +639836.400|220686.465|109.548 +639827.811|220694.271|109.256 +639823.516|220698.175|109.436 +639819.286|220702.016|108.954 +639814.942|220705.963|108.853 +639806.268|220713.845|108.622 +639801.997|220717.719|108.122 +639789.284|220729.244|105.769 +639784.971|220733.154|104.949 +639780.561|220737.165|105.065 +639771.679|220745.246|105.437 +639763.044|220753.073|103.958 +639758.603|220757.112|104.041 +639754.001|220761.309|104.891 +639749.538|220765.369|105.153 +639745.018|220769.483|105.513 +639740.477|220773.616|105.702 +639735.978|220777.710|105.961 +639731.457|220781.825|106.378 +639726.892|220785.979|106.793 +639722.295|220790.167|107.473 +639717.613|220794.434|108.408 +639712.919|220798.723|109.841 +639708.445|220802.789|109.743 +639703.900|220806.916|109.786 +639699.374|220811.031|109.725 +639694.833|220815.158|109.807 +639685.740|220823.418|109.701 +639681.190|220827.554|109.542 +639676.657|220831.675|109.631 +639672.030|220835.878|109.689 +639667.468|220840.023|109.664 +639662.899|220844.178|109.737 +639658.171|220848.482|110.286 +639653.581|220852.651|110.158 +639639.636|220865.334|110.923 +639630.285|220873.841|111.478 +639625.606|220878.096|111.825 +639620.964|220882.318|111.883 +639616.252|220886.603|112.151 +639611.567|220890.861|112.209 +639606.837|220895.168|112.694 +639602.085|220899.490|112.971 +639597.409|220903.739|112.999 +639592.691|220908.030|113.026 +639587.966|220912.325|113.121 +639583.227|220916.632|113.361 +639578.457|220920.972|113.496 +639573.726|220925.273|113.709 +639564.119|220934.021|114.751 +639559.370|220938.334|114.754 +639549.766|220947.075|115.477 +639530.539|220964.562|116.428 +639525.687|220968.975|116.693 +639511.227|220982.112|116.589 +639506.344|220986.553|116.772 +639496.648|220995.368|116.989 +639486.870|221004.256|117.117 +639477.095|221013.144|117.318 +639472.246|221017.548|117.266 +639467.372|221021.971|116.915 +639462.492|221026.403|116.669 +639457.521|221030.926|117.059 +639452.605|221035.401|117.382 +639447.670|221039.884|117.303 +639442.744|221044.359|117.138 +639437.797|221048.858|117.306 +639432.869|221053.335|117.199 +639427.949|221057.800|116.946 +639422.954|221062.345|117.217 +639418.007|221066.835|116.717 +639413.020|221071.367|116.858 +639393.135|221089.436|116.711 +639388.173|221093.944|116.562 +639383.125|221098.540|117.214 +639373.158|221107.596|116.943 +639363.136|221116.703|116.922 +639358.141|221121.242|116.659 +639343.081|221134.912|115.230 +639333.071|221143.989|113.825 +639328.029|221148.567|113.459 +639322.973|221153.163|113.563 +639317.953|221157.714|112.572 +639297.729|221176.081|111.487 +639292.685|221180.662|111.234 +639287.592|221185.292|111.121 +639282.489|221189.931|111.261 +639277.445|221194.513|111.066 +639272.355|221199.139|110.850 +639257.081|221212.968|107.198 +639252.043|221217.537|106.461 +639246.949|221222.164|106.132 +639241.811|221226.821|105.272 +639236.739|221231.400|102.913 +639226.464|221240.775|105.504 +639221.407|221245.387|106.455 +639216.259|221250.075|107.107 +639211.117|221254.753|107.223 +639206.021|221259.389|107.497 +639190.689|221273.319|107.162 +639180.454|221282.624|107.281 +639154.900|221305.932|112.356 +639149.773|221310.602|112.926 +639139.590|221319.895|115.544 +639124.267|221333.840|116.717 +639119.180|221338.461|116.528 +639114.096|221343.082|116.464 +639108.969|221347.745|116.614 +639103.839|221352.408|116.693 +639098.761|221357.029|116.903 +639093.638|221361.690|117.272 +639088.517|221366.350|117.711 +639083.439|221370.971|117.912 +639078.319|221375.631|118.275 +639057.964|221394.145|119.058 +639032.513|221417.291|119.811 +639027.417|221421.921|119.665 +639022.327|221426.548|119.710 +639017.236|221431.175|119.701 +639012.155|221435.796|119.924 +639001.993|221445.040|120.448 +638986.793|221458.872|121.100 +638971.620|221472.677|121.503 +638966.582|221477.261|121.734 +638961.473|221481.906|121.615 +638956.456|221486.478|122.192 +638951.433|221491.056|122.658 +638946.343|221495.689|122.847 +638941.350|221500.234|123.085 +638936.300|221504.827|123.216 +638931.264|221509.411|123.548 +638926.244|221513.986|124.097 +638916.271|221523.075|125.496 +638911.215|221527.675|125.590 +638901.178|221536.804|125.563 +638896.161|221541.376|126.181 +638891.171|221545.920|126.587 +638881.131|221555.061|127.202 +638876.184|221559.566|127.550 +638871.185|221564.117|127.888 +638866.199|221568.658|128.342 +638861.194|221573.215|128.614 +638856.207|221577.757|129.123 +638851.263|221582.259|129.540 +638841.208|221591.409|129.699 +638836.221|221595.941|129.760 +638811.045|221618.826|128.818 +638806.043|221623.376|128.842 +638785.942|221641.643|127.876 +638780.925|221646.206|127.888 +638765.928|221659.839|127.678 +638760.884|221664.427|127.538 +638755.980|221668.889|127.809 +638750.938|221673.473|127.742 +638746.049|221677.926|128.150 +638741.047|221682.480|128.446 +638736.104|221686.976|128.458 +638731.157|221691.478|128.848 +638726.277|221695.925|129.391 +638721.370|221700.393|129.726 +638706.501|221713.920|130.086 +638701.542|221718.431|130.107 +638691.581|221727.487|129.900 +638686.668|221731.958|129.940 +638681.636|221736.527|129.525 +638676.634|221741.066|129.004 +638671.580|221745.650|128.141 +638666.548|221750.222|127.824 +638661.543|221754.767|127.370 +638656.517|221759.329|126.797 +638651.515|221763.868|126.081 +638646.520|221768.406|125.782 +638641.530|221772.939|125.566 +638636.614|221777.413|125.505 +638631.450|221782.083|123.871 +638626.424|221786.649|123.493 +638621.483|221791.138|123.365 +638611.340|221800.331|121.219 +638596.673|221813.672|121.201 +638586.876|221822.585|121.173 +638572.243|221835.892|121.085 +638567.467|221840.245|121.582 +638562.575|221844.692|121.430 +638543.147|221862.361|121.280 +638518.766|221884.514|119.777 +638514.014|221888.839|120.064 +638509.180|221893.237|119.915 +638489.703|221910.925|118.305 +638480.031|221919.716|117.726 +638470.574|221928.320|118.092 +638465.898|221932.578|118.439 +638461.283|221936.781|118.848 +638447.223|221949.580|119.604 +638442.379|221953.975|118.948 +638437.673|221958.258|118.991 +638433.050|221962.467|119.204 +638423.790|221970.895|119.616 +638419.132|221975.131|119.729 +638391.188|222000.543|119.284 +638386.537|222004.773|119.308 +638377.097|222013.341|118.327 +638372.382|222017.621|117.656 +638367.664|222021.906|117.217 +638362.955|222026.182|116.864 +638358.331|222030.383|116.440 +638353.689|222034.601|116.178 +638348.970|222038.880|115.391 +638344.359|222043.071|115.318 +638339.494|222047.479|113.931 +638329.719|222056.321|110.856 +638325.107|222060.515|110.643 +638315.549|222069.171|108.223 +638287.964|222094.214|105.251 +638283.438|222098.323|104.726 +638278.872|222102.468|104.278 +638274.294|222106.625|103.809 +638265.065|222114.992|101.986 +638260.075|222119.494|99.728 +638250.440|222128.202|96.262 +638241.470|222136.346|95.305 +638237.060|222140.352|95.265 +638232.844|222144.192|95.781 +638228.708|222147.962|96.405 +638224.401|222151.876|96.604 +638220.052|222155.829|96.436 +638215.751|222159.740|96.472 +638211.426|222163.666|96.232 +638207.174|222167.537|96.475 +638202.943|222171.383|96.622 +638198.847|222175.111|97.079 +638194.616|222178.958|97.256 +638190.440|222182.758|97.436 +638260.203|222116.467|99.801 +638274.538|222103.477|103.919 +638279.073|222099.353|104.434 +638283.652|222095.195|104.922 +638288.227|222091.038|105.424 +638292.832|222086.850|105.857 +638316.076|222065.730|108.838 +638325.519|222057.159|110.539 +638335.224|222048.363|113.270 +638340.152|222043.894|114.672 +638344.901|222039.584|115.547 +638349.513|222035.387|115.617 +638354.170|222031.154|116.147 +638358.858|222026.896|116.592 +638363.555|222022.622|116.873 +638368.273|222018.331|117.284 +638373.083|222013.966|118.119 +638377.838|222009.647|118.732 +638382.541|222005.371|119.140 +638387.220|222001.109|119.229 +638391.904|221996.848|119.351 +638419.995|221971.266|119.272 +638424.753|221966.938|119.393 +638429.349|221962.744|119.015 +638434.061|221958.453|118.973 +638438.783|221954.149|118.726 +638448.384|221945.416|119.345 +638457.793|221936.839|118.839 +638471.906|221923.971|117.674 +638476.633|221919.661|117.351 +638491.221|221906.393|118.345 +638520.405|221879.829|119.430 +638530.144|221870.969|119.939 +638535.112|221866.452|120.357 +638549.846|221853.046|121.109 +638569.369|221835.261|120.756 +638574.157|221830.897|120.311 +638579.150|221826.352|120.515 +638594.024|221812.819|121.250 +638623.958|221785.588|123.051 +638628.988|221781.019|123.767 +638634.203|221776.295|125.407 +638639.150|221771.790|125.316 +638644.136|221767.251|125.529 +638649.153|221762.688|125.953 +638664.402|221748.838|128.126 +638669.413|221744.275|128.303 +638674.442|221739.703|128.632 +638679.551|221735.064|129.568 +638684.571|221730.498|129.882 +638689.597|221725.923|129.921 +638694.593|221721.376|130.125 +638699.625|221716.795|130.272 +638704.575|221712.280|129.812 +638709.623|221707.690|130.110 +638724.594|221694.041|129.068 +638729.514|221689.554|128.434 +638734.586|221684.940|128.650 +638739.594|221680.374|128.394 +638744.580|221675.829|127.949 +638754.666|221666.640|127.672 +638759.686|221662.068|127.559 +638779.971|221643.600|127.897 +638835.972|221592.619|130.077 +638846.103|221583.383|129.668 +638856.213|221574.166|129.101 +638861.258|221569.567|128.742 +638871.371|221560.340|127.733 +638881.497|221551.102|126.937 +638891.683|221541.815|126.306 +638896.709|221537.230|125.782 +638911.989|221523.307|125.624 +638917.079|221518.668|125.364 +638922.120|221514.062|124.429 +638927.174|221509.448|123.670 +638932.316|221504.760|123.481 +638937.354|221500.167|123.182 +638942.441|221495.531|122.920 +638947.574|221490.849|122.633 +638952.616|221486.256|122.390 +638957.681|221481.632|121.847 +638962.808|221476.956|121.469 +638967.865|221472.351|121.558 +638988.250|221453.770|120.637 +639003.539|221439.831|119.851 +639008.669|221435.156|119.640 +639013.753|221430.526|119.439 +639018.855|221425.881|119.686 +639023.991|221421.202|119.686 +639029.081|221416.566|119.680 +639034.171|221411.930|119.781 +639080.007|221370.154|117.958 +639085.085|221365.527|117.784 +639090.160|221360.900|117.525 +639095.235|221356.273|117.232 +639100.307|221351.646|116.742 +639105.385|221347.020|116.571 +639110.466|221342.390|116.473 +639115.498|221337.805|116.486 +639120.585|221333.176|116.614 +639135.810|221319.292|115.526 +639150.925|221305.481|112.666 +639156.006|221300.848|112.215 +639186.315|221273.151|106.061 +639201.498|221259.344|107.710 +639226.695|221236.362|105.495 +639236.748|221227.199|105.211 +639241.795|221222.609|105.571 +639246.834|221218.031|106.339 +639256.813|221208.963|107.851 +639271.757|221195.393|110.740 +639276.698|221190.898|111.152 +639281.700|221186.341|111.085 +639286.699|221181.790|111.142 +639291.694|221177.240|111.289 +639296.690|221172.695|111.551 +639301.622|221168.211|112.249 +639306.614|221163.670|112.545 +639316.517|221154.654|112.770 +639321.485|221150.143|113.803 +639326.445|221145.623|113.681 +639331.407|221141.102|113.560 +639336.323|221136.640|114.654 +639346.232|221127.633|116.001 +639356.065|221118.687|116.793 +639361.015|221114.182|117.007 +639365.928|221109.708|117.025 +639380.748|221096.217|117.464 +639385.686|221091.712|117.013 +639390.617|221087.217|116.800 +639395.512|221082.764|117.245 +639400.450|221078.262|116.949 +639415.199|221064.823|116.595 +639429.842|221051.497|117.382 +639434.740|221047.035|117.202 +639439.620|221042.591|117.269 +639444.497|221038.153|117.440 +639449.377|221033.709|117.580 +639454.284|221029.237|117.348 +639459.176|221024.769|116.653 +639464.065|221020.319|116.754 +639468.884|221015.933|117.138 +639473.770|221011.486|117.333 +639478.628|221007.060|117.257 +639483.478|221002.644|117.290 +639493.210|220993.774|117.053 +639502.903|220984.944|116.830 +639507.743|220980.533|116.556 +639512.537|220976.169|116.815 +639517.390|220971.740|116.431 +639531.749|220958.670|116.662 +639541.381|220949.892|115.967 +639546.242|220945.463|115.678 +639551.028|220941.098|115.218 +639555.868|220936.685|114.733 +639560.608|220932.372|114.800 +639565.362|220928.041|114.730 +639570.212|220923.612|113.752 +639574.945|220919.296|113.474 +639579.722|220914.946|113.300 +639584.449|220910.643|113.151 +639589.170|220906.342|113.078 +639593.898|220902.038|112.971 +639598.586|220897.765|112.795 +639603.331|220893.443|112.569 +639608.019|220889.172|112.462 +639612.707|220884.902|112.346 +639617.428|220880.601|112.008 +639622.095|220876.346|111.706 +639626.853|220872.009|111.505 +639636.177|220863.511|110.749 +639640.892|220859.217|110.576 +639650.149|220850.780|110.112 +639659.433|220842.328|109.945 +639664.023|220838.143|109.698 +639668.638|220833.943|109.701 +639673.207|220829.782|109.664 +639677.782|220825.615|109.628 +639682.351|220821.455|109.643 +639695.924|220809.101|109.728 +639700.456|220804.974|109.734 +639704.964|220800.869|109.582 +639709.426|220796.809|109.774 +639714.020|220792.615|109.036 +639723.258|220784.175|106.961 +639727.833|220780.002|106.464 +639732.293|220775.936|106.092 +639736.782|220771.846|105.897 +639741.275|220767.749|105.680 +639745.725|220763.698|105.467 +639750.209|220759.608|105.028 +639754.622|220755.588|104.754 +639759.124|220751.479|104.251 +639772.124|220739.659|105.196 +639776.431|220735.739|105.367 +639797.648|220716.463|108.186 +639801.808|220712.687|109.024 +639806.067|220708.816|109.305 +639814.610|220701.034|109.100 +639831.499|220685.663|109.765 +639839.909|220678.010|109.960 +639848.138|220670.530|110.667 +639868.670|220651.861|112.023 +639872.815|220648.084|112.002 +639881.230|220640.412|111.072 +639885.367|220636.642|110.880 +639889.396|220632.978|111.014 +639913.875|220610.691|110.771 +639917.925|220607.003|110.630 +639921.812|220603.474|111.344 +639925.750|220599.895|111.792 +639929.672|220596.329|112.078 +639933.656|220592.705|112.325 +639941.477|220585.594|112.819 +639945.391|220582.031|112.932 +639953.334|220574.798|112.657 +639957.223|220571.259|112.685 +639961.186|220567.650|112.618 +639965.102|220564.084|112.548 +639969.016|220560.521|112.499 +639972.930|220556.958|112.471 +639980.693|220549.887|112.258 +639984.543|220546.382|112.090 +639988.438|220542.831|111.947 +639992.348|220539.271|111.764 +639881.578|220637.925|111.191 +639872.864|220645.850|112.042 +639864.277|220653.653|112.301 +639860.068|220657.475|112.127 +639851.528|220665.220|111.636 +639838.808|220676.751|110.076 +639834.471|220680.689|110.140 +639830.152|220684.609|109.826 +639817.067|220696.490|109.707 +639812.751|220700.400|109.122 +639808.337|220704.408|109.149 +639803.881|220708.459|109.454 +639799.547|220712.391|109.030 +639786.529|220724.184|107.287 +639782.256|220728.052|106.214 +639777.882|220732.017|105.772 +639773.560|220735.931|105.031 +639760.267|220747.992|104.281 +639751.227|220756.212|104.845 +639746.716|220760.309|105.089 +639742.153|220764.460|105.388 +639737.630|220768.572|105.760 +639733.073|220772.714|106.061 +639728.531|220776.844|106.284 +639723.969|220780.993|106.656 +639714.663|220789.475|108.454 +639709.975|220793.752|109.826 +639705.397|220797.909|109.719 +639700.904|220801.990|109.750 +639696.384|220806.096|109.634 +639691.788|220810.272|109.734 +639682.692|220818.532|109.628 +639678.172|220822.638|109.591 +639668.970|220830.998|109.664 +639664.401|220835.150|109.695 +639659.784|220839.344|109.710 +639655.172|220843.538|110.118 +639650.627|220847.662|109.996 +639645.940|220851.926|110.271 +639641.349|220856.092|110.164 +639636.695|220860.326|110.615 +639622.753|220873.009|111.581 +639618.026|220877.307|111.932 +639613.344|220881.568|112.350 +639608.729|220885.756|112.188 +639604.008|220890.050|112.575 +639599.366|220894.269|112.724 +639594.687|220898.521|112.782 +639589.996|220902.782|112.965 +639585.318|220907.034|113.069 +639580.584|220911.335|113.246 +639575.915|220915.580|113.322 +639571.172|220919.890|113.639 +639561.595|220928.608|114.812 +639556.910|220932.863|114.669 +639552.155|220937.179|114.718 +639547.343|220941.565|115.440 +639532.956|220954.641|116.187 +639528.192|220958.978|116.544 +639518.600|220967.686|116.355 +639508.953|220976.455|116.897 +639504.149|220980.817|116.714 +639494.496|220989.586|116.909 +639475.047|221007.258|117.053 +639470.170|221011.690|117.339 +639465.351|221016.061|116.854 +639460.459|221020.502|116.742 +639455.521|221024.998|117.318 +639450.608|221029.463|117.565 +639440.833|221038.342|117.440 +639435.892|221042.829|117.473 +639430.970|221047.297|117.235 +639426.020|221051.796|117.443 +639421.134|221056.234|117.449 +639416.193|221060.714|116.827 +639411.261|221065.192|116.800 +639406.278|221069.718|116.900 +639391.352|221083.279|116.946 +639386.384|221087.790|116.876 +639381.339|221092.380|117.403 +639366.285|221106.053|117.549 +639361.298|221110.574|117.013 +639356.239|221115.167|116.955 +639336.180|221133.348|115.013 +639331.175|221137.875|113.636 +639326.112|221142.474|113.761 +639321.056|221147.067|113.809 +639310.933|221156.242|112.709 +639305.883|221160.823|112.523 +639300.783|221165.450|112.371 +639295.751|221170.010|111.679 +639290.655|221174.633|111.408 +639285.562|221179.254|111.161 +639280.465|221183.878|110.905 +639275.363|221188.514|111.033 +639270.270|221193.135|110.771 +639254.969|221206.988|108.155 +639244.746|221216.242|106.284 +639239.607|221220.899|105.565 +639198.504|221258.252|107.960 +639183.069|221272.264|107.921 +639177.924|221276.928|107.275 +639172.834|221281.567|108.378 +639152.303|221300.266|112.313 +639147.176|221304.933|113.246 +639131.802|221318.926|115.538 +639121.551|221328.247|116.525 +639101.063|221346.849|116.571 +639095.979|221351.467|116.736 +639090.815|221356.167|117.406 +639085.686|221360.827|117.610 +639054.998|221388.701|118.534 +639029.526|221411.838|119.311 +639024.396|221416.499|119.549 +639019.343|221421.086|119.342 +639014.246|221425.713|119.329 +639009.156|221430.334|119.470 +638998.988|221439.572|120.006 +638988.899|221448.735|120.195 +638968.639|221467.132|121.137 +638963.649|221471.665|121.420 +638958.599|221476.246|121.558 +638953.567|221480.818|121.978 +638948.534|221485.390|122.390 +638938.506|221494.500|123.051 +638933.462|221499.082|123.307 +638928.415|221503.663|123.569 +638913.449|221517.269|125.392 +638908.453|221521.807|125.697 +638903.366|221526.419|125.474 +638898.392|221530.930|125.486 +638883.368|221544.579|126.733 +638878.385|221549.112|127.236 +638873.425|221553.613|127.507 +638868.430|221558.152|127.919 +638863.458|221562.663|128.065 +638853.522|221571.694|129.004 +638843.582|221580.725|129.918 +638838.636|221585.212|129.891 +638823.706|221598.767|130.467 +638808.649|221612.419|129.994 +638778.584|221639.674|128.370 +638763.505|221653.341|127.544 +638743.708|221671.315|128.425 +638733.799|221680.310|128.678 +638728.871|221684.784|128.833 +638723.902|221689.295|129.092 +638718.946|221693.791|129.092 +638714.070|221698.223|129.723 +638694.392|221716.087|130.308 +638689.411|221720.601|130.253 +638684.428|221725.119|129.815 +638679.435|221729.645|129.702 +638669.465|221738.676|128.608 +638664.509|221743.169|128.495 +638659.501|221747.707|128.035 +638649.424|221756.824|126.465 +638644.432|221761.344|125.880 +638639.372|221765.925|125.203 +638634.468|221770.372|124.919 +638629.527|221774.856|125.090 +638619.420|221783.994|123.066 +638599.391|221802.126|120.640 +638584.596|221815.541|120.064 +638579.704|221819.976|119.851 +638574.803|221824.426|119.912 +638565.101|221833.228|120.110 +638555.488|221841.955|120.607 +638550.623|221846.368|120.680 +638536.020|221859.609|120.137 +638526.197|221868.509|119.400 +638521.335|221872.913|119.076 +638516.501|221877.296|118.918 +638497.292|221894.722|118.927 +638487.563|221903.534|118.275 +638477.828|221912.352|117.138 +638472.969|221916.756|117.062 +638454.251|221933.755|118.510 +638440.045|221946.642|118.406 +638430.672|221955.146|118.759 +638426.060|221959.334|119.073 +638421.315|221963.637|119.000 +638416.593|221967.917|118.827 +638388.686|221993.230|118.939 +638374.756|222005.858|118.534 +638370.075|222010.101|118.263 +638365.384|222014.347|117.741 +638360.608|222018.669|116.854 +638355.880|222022.948|116.455 +638351.232|222027.161|116.193 +638346.605|222031.352|115.818 +638342.021|222035.506|115.650 +638337.357|222039.728|115.163 +638332.563|222044.062|114.130 +638327.671|222048.479|112.700 +638317.859|222057.327|109.390 +638294.664|222078.325|106.558 +638285.496|222086.624|105.656 +638280.933|222090.757|105.211 +638276.379|222094.881|104.827 +638257.369|222112.048|99.459 +638251.998|222116.867|95.515 +638247.606|222120.850|95.509 +638238.861|222128.787|95.467 +638230.302|222136.569|96.201 +638226.096|222140.388|96.570 +638221.820|222144.271|96.680 +638217.473|222148.215|96.738 +638213.206|222152.089|96.704 +638208.786|222156.098|96.302 +638204.553|222159.938|96.433 +638200.331|222163.772|96.619 +638196.113|222167.607|96.826 +638191.946|222171.389|97.039 +638187.825|222175.135|97.442 +638251.282|222115.196|95.918 +638256.710|222110.313|100.100 +638271.170|222097.213|104.928 +638275.559|222093.217|104.836 +638280.128|222089.060|105.299 +638284.688|222084.911|105.738 +638289.257|222080.760|106.229 +638293.859|222076.572|106.677 +638316.936|222055.586|109.262 +638326.939|222046.537|113.182 +638331.752|222042.172|114.504 +638336.489|222037.868|115.303 +638341.091|222033.680|115.541 +638345.736|222029.453|115.748 +638350.360|222025.247|116.117 +638354.987|222021.031|116.300 +638359.721|222016.734|116.964 +638364.515|222012.378|117.940 +638369.191|222008.123|118.168 +638387.884|221991.109|119.025 +638392.666|221986.763|119.613 +638411.192|221969.889|119.131 +638415.780|221965.707|118.662 +638420.483|221961.424|118.769 +638425.253|221957.087|118.951 +638429.846|221952.899|118.567 +638434.558|221948.611|118.522 +638439.280|221944.313|118.275 +638453.514|221931.356|118.290 +638472.299|221914.238|116.970 +638477.069|221909.898|116.861 +638491.791|221896.523|118.583 +638515.931|221874.556|118.641 +638520.826|221870.103|118.866 +638525.694|221865.674|118.967 +638530.641|221861.182|119.525 +638535.578|221856.692|119.790 +638545.362|221847.792|120.134 +638550.279|221843.320|120.341 +638555.147|221838.888|120.299 +638564.836|221830.068|119.979 +638574.629|221821.152|119.771 +638584.487|221812.182|120.037 +638594.451|221803.123|120.433 +638604.399|221794.080|121.155 +638609.483|221789.465|122.097 +638614.510|221784.896|122.384 +638619.609|221780.275|123.487 +638624.800|221775.572|124.919 +638629.679|221771.128|124.660 +638634.675|221766.584|124.889 +638654.972|221748.155|127.812 +638660.028|221743.562|128.260 +638665.021|221739.024|128.623 +638670.026|221734.473|128.751 +638685.174|221720.705|129.940 +638690.170|221716.161|130.129 +638715.075|221693.486|129.333 +638720.108|221688.902|129.181 +638725.061|221684.391|128.806 +638730.160|221679.755|129.214 +638740.087|221670.709|128.324 +638750.146|221661.552|128.178 +638755.123|221657.017|127.705 +638780.501|221633.953|129.013 +638790.608|221624.760|128.803 +638795.738|221620.106|129.437 +638821.137|221597.020|130.308 +638826.157|221592.451|130.058 +638831.256|221587.818|130.116 +638836.328|221583.203|129.933 +638841.367|221578.622|129.927 +638846.469|221573.977|129.620 +638851.449|221569.442|128.998 +638866.607|221555.640|128.092 +638871.673|221551.026|127.401 +638876.739|221546.417|127.269 +638886.843|221537.212|126.163 +638891.887|221532.622|125.816 +638907.179|221518.717|125.666 +638912.272|221514.081|125.383 +638922.383|221504.864|123.840 +638927.479|221500.225|123.645 +638932.563|221495.598|123.261 +638937.656|221490.965|123.036 +638942.798|221486.286|122.841 +638947.873|221481.665|122.332 +638952.939|221477.047|121.743 +638958.017|221472.424|121.308 +638963.110|221467.791|121.155 +638988.634|221444.562|119.811 +639014.216|221421.287|118.909 +639019.373|221416.606|119.195 +639055.157|221384.053|118.132 +639075.594|221365.469|118.119 +639080.717|221360.806|117.732 +639085.795|221356.185|117.495 +639090.925|221351.518|117.318 +639096.046|221346.855|116.787 +639101.121|221342.234|116.406 +639106.208|221337.610|116.458 +639116.425|221328.320|116.388 +639126.632|221319.030|115.724 +639146.896|221300.571|113.529 +639151.974|221295.941|112.435 +639167.217|221282.024|108.640 +639172.313|221277.397|108.933 +639177.360|221272.807|108.725 +639197.642|221254.369|108.896 +639228.015|221226.703|105.257 +639233.014|221222.167|105.879 +639238.071|221217.571|105.802 +639253.094|221203.952|108.451 +639258.078|221199.435|109.509 +639278.018|221181.330|110.838 +639283.013|221176.795|111.258 +639287.957|221172.308|111.743 +639292.913|221167.803|111.764 +639297.860|221163.310|112.130 +639302.801|221158.827|112.721 +639307.754|221154.328|112.910 +639312.683|221149.859|113.809 +639317.624|221145.376|114.337 +639322.601|221140.843|113.834 +639332.425|221131.913|113.852 +639337.277|221127.523|115.431 +639342.218|221123.040|115.943 +639352.002|221114.161|116.976 +639356.906|221109.708|117.232 +639376.511|221091.889|117.598 +639381.382|221087.464|117.653 +639386.289|221082.992|117.034 +639391.154|221078.576|117.260 +639396.037|221074.132|117.132 +639400.929|221069.681|116.888 +639405.802|221065.253|117.001 +639415.519|221056.420|117.010 +639420.372|221052.018|117.574 +639425.206|221047.623|117.616 +639430.040|221043.228|117.668 +639434.886|221038.820|117.583 +639439.721|221034.428|117.714 +639449.416|221025.613|117.635 +639454.281|221021.188|117.403 +639459.124|221016.777|116.830 +639463.928|221012.409|116.830 +639473.560|221003.662|117.229 +639492.826|220986.145|116.998 +639512.041|220968.668|116.598 +639516.838|220964.306|116.388 +639521.587|220959.990|116.711 +639531.203|220951.236|116.129 +639540.750|220942.546|115.888 +639545.590|220938.136|115.364 +639555.121|220929.458|114.946 +639559.882|220925.124|114.821 +639574.238|220912.045|113.438 +639579.024|220907.689|113.209 +639583.757|220903.379|113.020 +639593.267|220894.726|112.785 +639597.997|220890.422|112.727 +639602.743|220886.103|112.542 +639607.452|220881.812|112.243 +639612.180|220877.514|112.292 +639616.907|220873.207|111.886 +639621.632|220868.906|111.578 +639635.835|220855.967|110.509 +639640.551|220851.679|110.377 +639645.217|220847.430|110.262 +639649.932|220843.141|110.176 +639654.593|220838.899|110.143 +639659.332|220834.580|109.527 +639663.987|220830.346|109.594 +639668.601|220826.149|109.618 +639673.231|220821.936|109.545 +639677.904|220817.685|109.542 +639691.739|220805.099|109.551 +639696.375|220800.884|109.551 +639705.525|220792.563|109.740 +639710.173|220788.326|109.335 +639714.940|220783.967|107.768 +639724.267|220775.467|106.577 +639728.882|220771.263|106.196 +639733.430|220767.121|105.952 +639737.968|220762.988|105.772 +639747.100|220754.673|105.165 +639751.681|220750.500|104.797 +639756.198|220746.389|104.541 +639804.152|220702.839|109.689 +639808.581|220698.809|109.576 +639817.173|220690.997|110.039 +639821.456|220687.102|110.231 +639829.999|220679.336|110.496 +639834.319|220675.407|110.521 +639838.583|220671.527|110.588 +639851.189|220660.075|111.655 +639859.489|220652.534|112.350 +639872.126|220641.028|112.017 +639876.308|220637.224|111.847 +639880.502|220633.402|111.603 +639888.835|220625.813|111.213 +639892.965|220622.054|111.109 +639897.053|220618.336|111.240 +639901.161|220614.593|111.011 +639905.176|220610.944|111.289 +639909.321|220607.165|110.890 +639913.213|220603.635|111.566 +639925.170|220592.760|112.194 +639929.084|220589.203|112.520 +639933.040|220585.606|112.673 +639936.908|220582.089|112.996 +639940.846|220578.504|112.987 +639944.784|220574.920|112.996 +639948.741|220571.317|112.682 +639952.618|220567.791|112.767 +639956.483|220564.273|112.919 +639960.399|220560.710|112.843 +639964.234|220557.220|112.926 +639972.021|220550.124|112.310 +639975.734|220546.747|112.514 +639979.614|220543.215|112.426 +639983.409|220539.758|112.270 +639987.213|220536.296|112.093 +639990.959|220532.882|111.941 +639881.142|220630.967|111.490 +639868.523|220642.409|112.087 +639855.813|220653.921|112.209 +639834.764|220672.968|110.658 +639826.132|220680.786|110.548 +639817.533|220688.568|109.999 +639808.813|220696.462|109.637 +639804.451|220700.412|109.637 +639778.165|220724.196|107.601 +639773.736|220728.198|106.869 +639769.341|220732.170|106.257 +639756.082|220744.157|104.617 +639751.471|220748.339|104.809 +639742.296|220756.663|105.607 +639737.645|220760.879|105.812 +639733.070|220765.027|105.860 +639728.461|220769.206|106.144 +639723.795|220773.437|106.519 +639714.437|220781.928|107.509 +639709.661|220786.275|108.765 +639704.891|220790.609|109.655 +639700.264|220794.800|109.530 +639695.634|220798.991|109.448 +639690.956|220803.231|109.381 +639686.262|220807.483|109.448 +639681.653|220811.656|109.259 +639676.950|220815.917|109.436 +639672.274|220820.153|109.448 +639667.599|220824.390|109.457 +639662.822|220828.718|109.512 +639658.144|220832.955|109.594 +639653.368|220837.289|110.076 +639648.610|220841.599|110.064 +639643.891|220845.876|110.134 +639639.167|220850.158|110.304 +639634.400|220854.477|110.423 +639620.080|220867.468|111.551 +639615.258|220871.842|111.834 +639610.473|220876.182|112.270 +639605.749|220880.461|112.179 +639600.948|220884.811|112.359 +639596.193|220889.121|112.593 +639591.359|220893.504|112.694 +639581.764|220902.203|113.191 +639576.972|220906.546|113.441 +639572.202|220910.868|113.499 +639557.654|220924.069|114.767 +639552.887|220928.388|114.913 +639543.252|220937.124|115.318 +639538.357|220941.565|115.870 +639514.226|220963.434|116.446 +639509.438|220967.774|116.580 +639504.561|220972.191|116.577 +639490.080|220985.313|116.790 +639470.688|221002.887|117.275 +639465.848|221007.267|117.025 +639461.011|221011.647|116.790 +639456.146|221016.058|116.925 +639451.260|221020.490|117.379 +639436.657|221033.721|117.543 +639431.805|221038.119|117.665 +639426.910|221042.551|117.690 +639422.060|221046.946|117.821 +639412.350|221055.731|116.797 +639397.637|221069.063|116.982 +639387.819|221077.957|117.141 +639382.924|221082.395|117.415 +639368.089|221095.846|117.793 +639358.260|221104.755|117.626 +639348.424|221113.655|116.498 +639333.665|221127.002|114.328 +639318.742|221140.526|113.901 +639308.778|221149.561|113.758 +639303.789|221154.075|113.139 +639298.796|221158.595|112.627 +639293.803|221163.115|112.103 +639288.841|221167.611|112.124 +639278.755|221176.746|111.283 +639273.763|221181.260|110.582 +639268.712|221185.838|110.448 +639258.614|221194.988|110.027 +639238.406|221213.252|106.186 +639233.352|221217.830|105.879 +639223.148|221227.084|105.824 +639192.527|221254.891|108.780 +639182.240|221264.242|110.423 +639166.903|221278.135|109.414 +639161.806|221282.755|109.402 +639156.671|221287.428|110.438 +639146.423|221296.767|113.736 +639120.771|221320.060|116.108 +639115.638|221324.717|116.266 +639110.499|221329.375|116.205 +639105.312|221334.078|116.074 +639100.179|221338.735|116.278 +639095.052|221343.389|116.757 +639089.883|221348.086|117.318 +639084.747|221352.744|117.400 +639079.617|221357.398|117.610 +639069.278|221366.786|118.534 +639038.338|221394.837|118.363 +639022.878|221408.861|118.763 +639012.582|221418.194|118.680 +639007.449|221422.851|118.930 +638997.171|221432.175|119.326 +638976.616|221450.835|120.186 +638951.025|221474.079|121.618 +638945.944|221478.696|122.042 +638935.736|221487.972|123.005 +638930.652|221492.589|123.414 +638925.577|221497.204|123.941 +638920.468|221501.840|124.057 +638915.390|221506.455|124.563 +638910.386|221511.008|125.410 +638905.283|221515.641|125.605 +638890.043|221529.476|125.934 +638884.993|221534.060|126.245 +638879.966|221538.629|126.873 +638874.922|221543.214|127.276 +638869.902|221547.770|127.407 +638864.858|221552.355|127.809 +638859.880|221556.881|128.461 +638854.860|221561.438|128.623 +638844.869|221570.518|129.546 +638839.855|221575.068|129.851 +638834.826|221579.634|129.994 +638824.795|221588.739|130.077 +638819.835|221593.234|130.025 +638784.735|221625.065|128.790 +638774.783|221634.102|129.171 +638769.760|221638.653|128.760 +638764.734|221643.207|128.364 +638754.736|221652.274|128.099 +638744.839|221661.257|128.382 +638730.108|221674.634|129.251 +638715.234|221688.128|129.162 +638710.369|221692.548|129.522 +638705.432|221697.028|129.708 +638700.509|221701.497|129.647 +638695.596|221705.959|130.061 +638670.861|221728.383|128.986 +638665.905|221732.879|128.842 +638656.020|221741.837|128.153 +638641.024|221755.413|126.187 +638636.001|221759.957|125.432 +638631.018|221764.468|124.630 +638626.065|221768.958|124.420 +638621.154|221773.408|124.176 +638611.166|221782.455|122.993 +638606.173|221786.975|122.307 +638601.239|221791.443|121.698 +638586.361|221804.922|120.223 +638581.295|221809.503|119.250 +638576.458|221813.895|119.372 +638571.536|221818.357|119.022 +638566.705|221822.743|119.232 +638561.828|221827.166|119.192 +638556.978|221831.570|119.336 +638552.187|221835.920|119.549 +638547.365|221840.297|119.595 +638523.042|221862.352|118.662 +638518.119|221866.808|117.994 +638513.328|221871.155|118.095 +638508.500|221875.541|118.278 +638503.791|221879.817|118.567 +638494.250|221888.477|118.839 +638479.641|221901.711|117.412 +638474.694|221906.188|116.580 +638470.004|221910.453|117.107 +638455.916|221923.245|117.918 +638446.385|221931.892|117.848 +638441.691|221936.150|117.952 +638436.985|221940.424|118.001 +638427.609|221948.934|118.345 +638408.894|221965.917|118.674 +638395.099|221978.448|119.570 +638390.432|221982.681|119.503 +638385.680|221986.985|119.055 +638357.642|222012.399|117.391 +638352.899|222016.688|116.452 +638348.129|222021.007|115.888 +638343.533|222025.177|115.641 +638338.921|222029.355|115.358 +638334.379|222033.473|115.410 +638329.698|222037.716|114.852 +638324.955|222042.005|114.069 +638320.014|222046.461|112.240 +638314.964|222051.014|110.195 +638301.056|222063.603|108.424 +638296.407|222067.812|107.753 +638291.741|222072.037|107.022 +638287.169|222076.176|106.494 +638282.533|222080.373|105.949 +638277.985|222084.494|105.562 +638273.547|222088.517|105.431 +638249.648|222110.082|98.045 +638240.233|222118.580|95.314 +638235.743|222122.643|94.741 +638231.619|222126.392|95.622 +638227.394|222130.229|96.119 +638223.271|222133.981|97.012 +638218.924|222137.916|96.853 +638214.602|222141.833|96.805 +638210.365|222145.676|96.887 +638206.083|222149.560|96.811 +638201.715|222153.513|96.430 +638197.478|222157.353|96.567 +638193.257|222161.182|96.777 +638189.078|222164.973|96.942 +638184.902|222168.762|97.146 +638251.593|222105.772|100.962 +638274.794|222084.756|105.644 +638283.850|222076.535|106.247 +638288.437|222072.378|106.820 +638293.116|222068.138|107.805 +638297.657|222064.017|108.009 +638321.486|222042.440|113.291 +638326.302|222038.085|114.596 +638331.014|222033.815|115.266 +638335.577|222029.663|115.084 +638340.195|222025.472|115.376 +638344.801|222021.290|115.654 +638349.528|222017.005|116.245 +638354.316|222012.668|117.138 +638391.892|221978.560|119.531 +638401.173|221970.117|119.214 +638405.749|221965.951|118.634 +638419.824|221953.155|118.692 +638424.472|221948.928|118.540 +638433.866|221940.378|118.013 +638438.545|221936.123|117.802 +638443.260|221931.831|117.549 +638447.966|221927.552|117.516 +638486.460|221892.570|118.418 +638491.324|221888.150|118.604 +638496.094|221883.813|118.583 +638505.629|221875.135|117.748 +638515.382|221866.269|117.897 +638520.229|221861.867|118.110 +638535.033|221848.426|119.296 +638544.844|221839.510|119.494 +638569.256|221817.315|119.083 +638574.163|221812.852|119.037 +638579.019|221808.439|118.991 +638584.185|221803.763|120.265 +638589.385|221799.063|122.103 +638604.329|221785.487|122.822 +638609.319|221780.958|123.167 +638619.362|221771.842|124.039 +638624.318|221767.340|124.246 +638629.347|221762.774|124.633 +638634.471|221758.132|125.709 +638644.566|221748.972|126.901 +638669.770|221726.097|129.199 +638674.753|221721.568|129.193 +638679.743|221717.035|129.248 +638689.762|221707.934|129.751 +638694.828|221703.328|129.735 +638699.817|221698.796|129.903 +638704.813|221694.255|129.757 +638709.772|221689.747|129.738 +638739.743|221662.488|128.641 +638754.818|221648.778|128.297 +638759.835|221644.218|128.147 +638800.493|221607.286|130.418 +638805.476|221602.750|130.183 +638810.566|221598.120|130.061 +638815.632|221593.515|130.193 +638820.689|221588.918|130.284 +638835.865|221575.117|130.199 +638840.937|221570.505|129.994 +638845.932|221565.955|129.528 +638850.931|221561.395|128.583 +638855.994|221556.786|128.333 +638871.146|221542.997|127.245 +638891.387|221524.569|125.880 +638901.565|221515.312|125.694 +638906.670|221510.670|125.493 +638911.748|221506.043|125.002 +638916.765|221501.471|124.319 +638921.861|221496.835|124.036 +638926.951|221492.202|123.703 +638932.045|221487.566|123.408 +638957.474|221464.404|120.866 +638988.174|221436.475|119.540 +638998.403|221427.170|119.110 +639003.536|221422.497|118.842 +639008.684|221417.816|118.848 +639018.919|221408.507|118.677 +639024.061|221403.831|118.592 +639029.197|221399.159|118.394 +639034.287|221394.529|118.318 +639049.679|221380.523|117.388 +639065.087|221366.530|118.491 +639080.513|221352.488|117.510 +639085.649|221347.818|117.440 +639095.902|221338.485|116.519 +639101.029|221333.816|116.160 +639106.165|221329.146|116.044 +639121.567|221315.134|115.553 +639126.700|221310.465|115.215 +639157.426|221282.451|109.704 +639218.755|221226.669|106.174 +639223.867|221222.012|105.348 +639228.969|221217.385|105.754 +639234.023|221212.795|105.982 +639239.119|221208.174|106.567 +639244.157|221203.608|107.598 +639249.202|221199.039|108.375 +639254.292|221194.421|109.018 +639264.378|221185.271|110.155 +639269.428|221180.687|110.365 +639274.421|221176.161|111.036 +639289.457|221162.515|112.258 +639294.459|221157.976|112.496 +639299.400|221153.493|113.075 +639309.388|221144.431|113.998 +639314.353|221139.914|113.819 +639324.235|221130.953|114.995 +639329.203|221126.438|114.904 +639334.174|221121.918|114.712 +639339.042|221117.514|115.934 +639343.998|221113.012|116.099 +639353.770|221104.154|117.531 +639358.686|221099.689|117.607 +639363.603|221095.218|117.607 +639368.504|221090.774|118.058 +639388.090|221072.964|117.324 +639397.923|221064.024|116.928 +639412.484|221050.790|116.848 +639426.989|221037.626|117.869 +639431.784|221033.267|117.866 +639446.292|221020.078|117.595 +639451.108|221015.701|117.412 +639455.930|221011.315|117.147 +639460.758|221006.923|116.827 +639465.501|221002.616|117.065 +639470.316|220998.239|116.995 +639489.431|220980.860|116.345 +639494.176|220976.553|116.675 +639503.707|220967.887|116.281 +639513.205|220959.258|116.406 +639541.561|220933.490|115.562 +639546.376|220929.117|115.343 +639551.046|220924.871|115.132 +639555.767|220920.579|114.925 +639565.317|220911.886|113.566 +639570.002|220907.637|113.813 +639579.368|220899.124|113.465 +639584.132|220894.790|113.014 +639593.471|220886.304|112.630 +639598.153|220882.052|112.587 +639602.810|220877.819|112.337 +639607.495|220873.564|112.307 +639612.155|220869.327|112.084 +639616.822|220865.087|111.840 +639630.840|220852.340|110.713 +639635.512|220848.094|110.509 +639640.133|220843.894|110.374 +639658.653|220827.069|109.750 +639663.277|220822.869|109.701 +639667.870|220818.693|109.524 +639672.451|220814.533|109.478 +639677.054|220810.357|109.649 +639681.650|220806.178|109.506 +639686.195|220802.051|109.423 +639690.828|220797.845|109.436 +639695.427|220793.666|109.359 +639699.932|220789.579|109.612 +639704.473|220785.452|109.612 +639709.265|220781.081|108.232 +639723.121|220768.474|106.528 +639727.708|220764.305|106.339 +639732.259|220760.172|106.113 +639741.309|220751.945|105.693 +639745.871|220747.797|105.434 +639750.443|220743.642|105.150 +639754.845|220739.646|105.330 +639759.344|220735.565|105.568 +639798.584|220699.998|110.067 +639803.015|220695.969|109.914 +639811.772|220688.022|110.323 +639824.678|220676.315|111.194 +639833.401|220668.390|111.054 +639837.769|220664.425|111.130 +639841.978|220660.615|111.834 +639846.187|220656.799|112.255 +639858.968|220645.195|112.465 +639871.821|220633.512|111.877 +639876.094|220629.632|111.780 +639888.722|220618.156|111.508 +639892.895|220614.364|111.466 +639905.294|220603.108|111.801 +639921.522|220588.383|112.517 +639929.517|220581.126|112.895 +639933.491|220577.520|113.221 +639937.454|220573.923|113.358 +639941.486|220570.260|113.169 +639957.342|220555.855|113.139 +639961.323|220552.240|113.023 +639965.270|220548.652|112.843 +639969.123|220545.153|112.871 +639973.009|220541.621|112.761 +639976.907|220538.076|112.593 +639980.781|220534.558|112.575 +639984.640|220531.053|112.392 +639988.499|220527.545|112.218 +639877.655|220626.139|111.755 +639873.516|220629.894|111.932 +639869.392|220633.634|112.039 +639865.207|220637.438|112.505 +639861.031|220641.226|112.666 +639856.923|220644.948|112.468 +639852.686|220648.795|112.715 +639840.274|220660.033|111.865 +639836.166|220663.751|111.450 +639823.449|220675.282|111.359 +639819.237|220679.095|111.008 +639810.776|220686.760|110.563 +639806.429|220690.699|110.457 +639802.196|220694.530|109.984 +639793.420|220702.491|110.344 +639776.147|220718.124|108.600 +639758.789|220733.825|105.988 +639754.385|220737.812|105.458 +639749.892|220741.887|105.528 +639745.356|220745.998|105.540 +639740.851|220750.086|105.744 +639736.319|220754.198|105.793 +639731.689|220758.401|106.183 +639727.151|220762.513|106.314 +639722.560|220766.676|106.482 +639717.973|220770.837|106.653 +639708.567|220779.386|108.366 +639703.803|220783.721|109.530 +639699.149|220787.939|109.585 +639694.558|220792.100|109.558 +639685.311|220800.472|109.301 +639680.656|220804.694|109.445 +639675.956|220808.955|109.570 +639671.290|220813.180|109.466 +639666.602|220817.432|109.558 +639661.868|220821.723|109.643 +639657.184|220825.969|109.737 +639652.414|220830.297|110.161 +639642.946|220838.877|110.106 +639638.216|220843.166|110.277 +639633.403|220847.528|110.329 +639628.645|220851.847|110.798 +639618.919|220860.677|111.911 +639614.134|220865.011|111.862 +639609.315|220869.382|112.121 +639604.548|220873.707|112.383 +639599.665|220878.133|112.401 +639594.864|220882.485|112.593 +639590.024|220886.871|112.691 +639585.217|220891.233|112.993 +639580.282|220895.713|113.590 +639575.464|220900.081|113.596 +639570.629|220904.464|113.788 +639565.774|220908.863|113.703 +639555.950|220917.781|114.779 +639551.116|220922.164|115.081 +639546.184|220926.639|115.410 +639541.323|220931.049|115.580 +639536.394|220935.517|115.916 +639521.706|220948.834|116.172 +639516.832|220953.248|116.053 +639511.919|220957.704|116.385 +639492.259|220975.519|116.486 +639487.337|220979.982|116.541 +639482.417|220984.441|116.568 +639472.505|220993.430|117.010 +639467.592|220997.883|117.043 +639462.657|221002.348|116.726 +639457.698|221006.844|116.772 +639452.705|221011.376|117.345 +639447.795|221015.829|117.452 +639442.830|221020.328|117.662 +639427.986|221033.782|117.796 +639423.042|221038.263|117.830 +639418.104|221042.737|117.802 +639393.354|221065.155|117.373 +639388.371|221069.672|117.461 +639383.403|221074.174|117.315 +639378.450|221078.667|117.744 +639363.517|221092.200|118.077 +639358.567|221096.675|117.623 +639353.602|221101.170|117.552 +639343.678|221110.138|116.181 +639338.722|221114.621|115.922 +639333.748|221119.111|114.919 +639328.782|221123.604|114.824 +639323.811|221128.106|114.989 +639313.817|221137.143|114.108 +639308.809|221141.678|114.044 +639298.863|221150.670|113.197 +639293.867|221155.187|112.657 +639288.863|221159.717|112.535 +639283.852|221164.255|112.596 +639268.877|221177.782|110.432 +639263.826|221182.348|110.073 +639253.829|221191.388|109.180 +639238.790|221204.970|106.747 +639233.739|221209.530|106.083 +639228.738|221214.053|105.510 +639223.675|221218.641|105.729 +639218.621|221223.210|105.336 +639178.177|221259.926|111.597 +639127.516|221305.850|115.239 +639122.374|221310.504|115.065 +639117.290|221315.116|115.580 +639112.255|221319.679|116.025 +639102.023|221328.945|115.998 +639096.981|221333.511|116.092 +639091.858|221338.162|116.726 +639086.783|221342.765|117.479 +639081.696|221347.373|117.555 +639051.011|221375.140|116.714 +639035.735|221388.997|118.250 +639030.581|221393.660|118.040 +639025.436|221398.321|118.074 +639020.348|221402.929|118.366 +639015.207|221407.586|118.482 +639010.110|221412.204|118.570 +638999.866|221421.482|118.674 +638989.640|221430.748|119.287 +638984.544|221435.363|119.409 +638969.249|221449.225|120.750 +638933.578|221481.543|123.164 +638918.304|221495.384|124.215 +638913.205|221500.002|124.484 +638908.121|221504.611|124.971 +638903.095|221509.167|125.575 +638897.977|221513.800|125.608 +638867.528|221541.388|127.644 +638862.486|221545.951|127.559 +638857.463|221550.507|128.275 +638847.362|221559.661|129.098 +638842.318|221564.233|129.592 +638837.319|221568.765|130.040 +638832.283|221573.322|130.144 +638822.198|221582.451|130.235 +638817.114|221587.053|130.391 +638812.115|221591.576|130.461 +638807.049|221596.161|130.339 +638801.977|221600.748|130.202 +638791.937|221609.834|130.055 +638751.633|221646.279|128.367 +638746.674|221650.772|128.614 +638741.697|221655.277|128.754 +638736.728|221659.779|128.961 +638731.846|221664.204|129.498 +638726.871|221668.709|129.693 +638697.135|221695.620|129.879 +638692.197|221700.091|130.125 +638687.314|221704.508|130.055 +638682.315|221709.031|129.882 +638677.369|221713.506|129.757 +638672.419|221717.983|129.626 +638667.475|221722.449|129.226 +638637.635|221749.411|126.504 +638627.631|221758.442|124.999 +638622.629|221762.954|124.154 +638617.713|221767.401|123.874 +638612.803|221771.838|123.685 +638607.944|221776.240|123.837 +638603.015|221780.693|123.243 +638578.278|221803.053|120.759 +638568.140|221812.191|117.961 +638563.416|221816.480|118.836 +638558.560|221820.872|118.647 +638553.744|221825.233|118.705 +638548.901|221829.616|118.622 +638539.303|221838.312|119.049 +638534.527|221842.638|119.125 +638529.668|221847.030|118.750 +638524.727|221851.489|117.958 +638515.102|221860.200|117.568 +638505.504|221868.887|117.437 +638496.091|221877.415|118.119 +638491.288|221881.765|117.949 +638471.979|221899.221|116.513 +638448.515|221920.474|117.217 +638443.794|221924.745|117.178 +638434.433|221933.224|117.540 +638420.519|221945.834|118.324 +638401.905|221962.686|118.491 +638392.776|221970.962|119.278 +638388.067|221975.217|119.031 +638364.536|221996.486|116.714 +638359.928|222000.655|116.565 +638355.368|222004.782|116.669 +638350.851|222008.879|116.967 +638346.175|222013.103|116.592 +638341.463|222017.355|115.843 +638336.739|222021.620|115.071 +638332.139|222025.783|114.852 +638327.576|222029.907|114.605 +638323.065|222033.997|114.809 +638318.365|222038.237|114.011 +638313.360|222042.739|111.926 +638308.374|222047.217|109.747 +638299.129|222055.571|108.774 +638294.548|222059.713|108.378 +638289.958|222063.862|107.966 +638285.340|222068.028|107.256 +638280.747|222072.180|106.662 +638276.230|222076.264|106.394 +638244.012|222105.354|100.843 +638238.645|222110.155|96.988 +638233.865|222114.459|95.275 +638229.306|222118.580|94.446 +638225.230|222122.286|95.528 +638221.030|222126.099|96.131 +638216.891|222129.857|96.786 +638212.587|222133.756|96.805 +638208.296|222137.642|96.890 +638204.035|222141.504|96.893 +638199.725|222145.405|96.741 +638195.442|222149.282|96.491 +638191.224|222153.104|96.707 +638187.063|222156.875|96.957 +638182.848|222160.694|97.012 +638178.666|222164.483|97.207 +638274.489|222075.097|106.461 +638278.958|222071.046|106.513 +638283.581|222066.864|107.229 +638288.211|222062.676|107.991 +638292.826|222058.500|108.500 +638297.358|222054.392|108.683 +638306.569|222046.049|109.740 +638311.583|222041.535|111.810 +638316.637|222036.981|113.867 +638321.246|222032.809|114.276 +638325.769|222028.706|114.334 +638330.377|222024.530|114.565 +638335.017|222020.327|114.940 +638339.784|222016.017|115.903 +638344.505|222011.744|116.458 +638349.205|222007.492|116.940 +638353.722|222003.386|116.638 +638367.630|221990.777|116.964 +638386.522|221973.671|118.720 +638391.243|221969.392|119.037 +638395.852|221965.210|118.836 +638400.405|221961.077|118.391 +638423.738|221939.912|117.635 +638428.404|221935.681|117.586 +638433.129|221931.392|117.336 +638437.814|221927.144|117.165 +638442.492|221922.898|116.979 +638447.238|221918.594|116.891 +638470.970|221897.072|116.199 +638485.713|221883.731|117.943 +638490.517|221879.375|117.805 +638500.029|221870.737|117.089 +638504.894|221866.333|117.342 +638509.722|221861.953|117.132 +638514.642|221857.497|117.452 +638524.380|221848.676|117.888 +638529.397|221844.137|118.549 +638539.132|221835.313|118.549 +638544.052|221830.857|118.726 +638548.840|221826.514|118.458 +638553.744|221822.064|118.311 +638563.559|221813.166|118.394 +638568.539|221808.655|118.759 +638598.791|221781.303|123.237 +638603.774|221776.788|123.517 +638608.731|221772.293|123.331 +638613.662|221767.827|123.661 +638618.737|221763.231|123.975 +638623.779|221758.671|124.740 +638628.887|221754.053|125.675 +638633.922|221749.497|126.133 +638639.012|221744.891|126.675 +638654.341|221731.047|129.924 +638659.300|221726.539|129.351 +638664.296|221722.019|129.729 +638669.288|221717.486|129.427 +638674.327|221712.927|129.818 +638679.325|221708.397|129.964 +638684.370|221703.825|130.098 +638689.347|221699.314|130.129 +638719.370|221672.092|129.702 +638724.421|221667.511|129.705 +638729.392|221663.003|129.455 +638739.408|221653.914|128.845 +638749.463|221644.798|128.614 +638754.459|221640.268|128.687 +638789.968|221608.081|129.900 +638800.133|221598.867|130.278 +638805.187|221594.283|130.247 +638810.307|221589.641|130.385 +638815.303|221585.108|130.318 +638820.384|221580.497|130.107 +638825.441|221575.913|130.183 +638830.485|221571.335|130.159 +638835.563|221566.726|130.001 +638840.617|221562.136|129.610 +638845.618|221557.594|129.165 +638850.675|221553.001|128.812 +638855.659|221548.471|128.193 +638880.927|221525.526|126.507 +638896.054|221511.789|125.191 +638901.208|221507.119|125.599 +638906.240|221502.547|125.072 +638911.273|221497.975|124.535 +638916.375|221493.342|124.340 +638921.435|221488.752|124.200 +638931.600|221479.516|123.246 +638977.234|221438.073|119.732 +638982.315|221433.458|119.284 +638987.409|221428.834|119.031 +638997.604|221419.583|118.756 +639007.794|221410.336|118.446 +639012.887|221405.715|118.287 +639028.206|221391.810|117.565 +639053.672|221368.703|116.979 +639079.257|221345.511|117.635 +639084.344|221340.893|117.437 +639089.419|221336.281|116.772 +639094.546|221331.621|116.202 +639099.588|221327.046|115.961 +639104.723|221322.386|115.821 +639109.820|221317.765|115.879 +639114.904|221313.147|115.507 +639120.037|221308.487|115.102 +639125.130|221303.866|115.044 +639150.602|221280.698|110.947 +639155.698|221276.071|110.908 +639165.946|221266.787|112.380 +639181.231|221252.906|112.170 +639196.523|221239.004|110.841 +639216.911|221220.421|106.071 +639227.131|221211.139|105.613 +639232.231|221206.513|106.089 +639242.368|221197.338|107.982 +639247.465|221192.723|108.664 +639257.602|221183.537|109.890 +639262.656|221178.953|110.103 +639267.731|221174.365|111.499 +639277.811|221165.233|112.855 +639282.873|221160.634|112.621 +639287.875|221156.096|112.859 +639292.977|221151.466|112.962 +639297.976|221146.933|113.404 +639308.035|221137.807|113.791 +639323.083|221124.165|114.879 +639333.095|221115.078|115.294 +639338.033|221110.604|115.992 +639347.954|221101.622|117.482 +639352.956|221097.086|117.802 +639357.906|221092.596|118.211 +639372.832|221079.042|117.985 +639377.813|221074.519|117.869 +639382.766|221070.017|117.418 +639387.737|221065.506|117.552 +639392.681|221061.013|117.318 +639397.637|221056.508|116.897 +639402.535|221052.070|117.540 +639407.421|221047.632|117.534 +639412.356|221043.152|117.580 +639417.226|221038.738|117.940 +639422.170|221034.248|117.869 +639427.020|221029.847|117.815 +639436.822|221020.941|117.641 +639441.674|221016.536|117.613 +639446.542|221012.114|117.385 +639456.302|221003.241|116.714 +639461.163|220998.828|116.681 +639465.952|220994.487|117.013 +639470.819|220990.068|116.955 +639475.641|220985.688|116.851 +639480.479|220981.292|116.623 +639490.138|220972.520|116.409 +639494.911|220968.186|116.425 +639499.699|220963.836|116.321 +639504.491|220959.484|116.166 +639509.267|220955.150|116.236 +639518.856|220946.438|116.031 +639533.139|220933.463|115.910 +639537.903|220929.132|115.721 +639542.630|220924.831|115.407 +639547.391|220920.506|115.312 +639552.140|220916.184|114.831 +639556.929|220911.828|114.504 +639561.638|220907.543|114.023 +639566.359|220903.254|113.959 +639571.084|220898.963|113.858 +639575.765|220894.705|113.715 +639580.444|220890.456|113.657 +639589.878|220881.872|112.871 +639594.544|220877.627|112.529 +639599.183|220873.414|112.481 +639603.886|220869.138|112.319 +639608.547|220864.898|112.097 +639613.170|220860.695|111.831 +639622.479|220852.228|111.228 +639627.136|220847.994|110.765 +639631.788|220843.760|110.350 +639636.408|220839.560|110.228 +639640.977|220835.409|110.149 +639645.613|220831.196|109.963 +639654.748|220822.894|109.935 +639659.348|220818.712|109.689 +639663.941|220814.536|109.545 +639668.489|220810.403|109.381 +639673.009|220806.297|109.445 +639691.187|220789.783|109.548 +639695.753|220785.632|109.366 +639700.218|220781.578|109.597 +639704.806|220777.399|108.948 +639718.586|220764.850|106.750 +639723.075|220760.766|106.564 +639727.568|220756.682|106.385 +639732.091|220752.567|106.010 +639736.584|220748.483|105.866 +639740.986|220744.487|106.031 +639745.472|220740.408|105.973 +639749.941|220736.345|105.729 +639754.302|220732.392|106.202 +639758.591|220728.509|107.156 +639767.272|220720.636|108.110 +639775.897|220712.815|109.131 +639780.314|220708.801|109.009 +639784.569|220704.945|109.899 +639793.250|220697.066|110.368 +639797.617|220693.097|110.307 +639801.936|220689.178|110.560 +639814.860|220677.446|111.292 +639819.176|220673.529|111.630 +639823.446|220669.649|111.642 +639827.811|220665.680|111.420 +639832.145|220661.742|111.392 +639836.385|220657.896|111.920 +639840.619|220654.055|112.212 +639874.793|220623.008|111.984 +639879.045|220619.144|111.770 +639887.464|220611.496|111.822 +639895.876|220603.855|111.716 +639900.030|220600.084|111.828 +639904.200|220596.299|111.865 +639908.425|220592.455|111.639 +639916.490|220585.149|112.688 +639920.586|220581.431|112.895 +639924.719|220577.678|112.941 +639928.752|220574.018|113.227 +639945.034|220559.229|113.297 +639949.100|220555.532|112.996 +639957.077|220548.290|113.197 +639961.116|220544.620|113.081 +639965.145|220540.959|113.014 +639969.144|220537.323|112.865 +639973.134|220533.702|112.785 +639977.087|220530.108|112.636 +639981.046|220526.509|112.481 +639984.948|220522.961|112.356 +639878.091|220617.699|111.911 +639873.863|220621.527|112.243 +639869.642|220625.346|112.292 +639861.199|220632.991|112.727 +639848.525|220644.454|112.843 +639831.728|220659.630|111.639 +639823.123|220667.415|111.847 +639818.822|220671.304|111.691 +639814.506|220675.205|111.624 +639797.480|220690.586|110.435 +639793.122|220694.527|110.396 +639784.420|220702.394|109.993 +639780.168|220706.228|109.353 +639771.581|220713.982|108.619 +639767.174|220717.972|108.686 +639762.815|220721.904|108.116 +639749.867|220733.590|106.345 +639745.512|220737.522|105.812 +639741.001|220741.603|105.982 +639736.511|220745.666|106.034 +639732.067|220749.687|106.147 +639727.565|220753.762|106.324 +639723.045|220757.861|106.668 +639718.494|220761.985|106.915 +639709.408|220770.215|107.320 +639704.708|220774.491|108.686 +639700.042|220778.728|109.500 +639695.546|220782.800|109.487 +639690.992|220786.921|109.515 +639686.393|220791.085|109.554 +639681.854|220795.187|109.167 +639677.288|220799.326|109.381 +639672.695|220803.481|109.417 +639668.059|220807.681|109.448 +639663.459|220811.848|109.606 +639658.863|220816.011|109.750 +639654.163|220820.269|109.966 +639644.891|220828.666|110.225 +639640.182|220832.928|110.167 +639635.573|220837.097|110.124 +639630.867|220841.364|110.512 +639626.128|220845.662|110.798 +639621.370|220849.975|111.258 +639616.642|220854.258|111.499 +639611.899|220858.558|111.901 +639607.175|220862.841|112.167 +639602.408|220867.157|112.392 +639597.653|220871.467|112.563 +639592.974|220875.700|112.490 +639578.524|220888.798|113.560 +639573.772|220893.104|113.834 +639568.935|220897.484|113.989 +639564.155|220901.813|114.105 +639559.376|220906.144|114.258 +639554.466|220910.594|114.751 +639549.693|220914.919|114.907 +639544.740|220919.412|115.407 +639539.933|220923.764|115.455 +639535.044|220928.196|115.864 +639530.188|220932.591|115.958 +639525.357|220936.965|115.833 +639510.736|220950.200|115.879 +639496.020|220963.526|116.132 +639491.119|220967.970|116.431 +639486.136|220972.481|116.565 +639476.272|220981.414|116.848 +639471.420|220985.806|116.659 +639456.527|220999.288|116.745 +639451.529|221003.823|117.348 +639446.563|221008.319|117.485 +639441.565|221012.845|117.449 +639436.602|221017.338|117.592 +639431.592|221021.877|117.781 +639426.642|221026.363|117.876 +639421.600|221030.923|117.842 +639416.653|221035.404|117.915 +639411.630|221039.948|117.653 +639406.647|221044.456|117.577 +639396.585|221053.564|117.449 +639391.593|221058.087|117.601 +639381.540|221067.182|117.427 +639376.481|221071.772|118.037 +639371.400|221076.375|118.211 +639366.422|221080.880|118.214 +639356.288|221090.060|118.211 +639346.235|221099.156|117.516 +639341.172|221103.737|117.403 +639336.168|221108.248|115.980 +639331.111|221112.829|115.843 +639295.715|221144.848|113.441 +639290.667|221149.414|113.054 +639285.601|221154.005|113.273 +639280.505|221158.613|112.843 +639260.196|221176.965|110.033 +639255.136|221181.546|110.039 +639249.988|221186.207|109.811 +639244.947|221190.754|108.738 +639229.667|221204.553|105.997 +639219.459|221213.779|104.873 +639193.899|221237.023|111.222 +639148.017|221278.574|110.954 +639122.539|221301.705|114.773 +639117.452|221306.316|115.096 +639112.410|221310.885|115.379 +639102.184|221320.154|115.861 +639097.140|221324.723|115.876 +639086.972|221333.944|116.623 +639081.949|221338.506|117.452 +639051.368|221366.192|117.004 +639036.116|221380.002|116.800 +639031.026|221384.614|117.037 +639025.993|221389.180|117.479 +639020.955|221393.745|117.818 +639015.862|221398.363|117.988 +639010.817|221402.932|118.211 +639005.718|221407.553|118.238 +639000.661|221412.131|118.220 +638995.580|221416.740|118.677 +638955.182|221453.343|120.954 +638935.041|221471.604|122.807 +638930.060|221476.118|123.380 +638914.936|221489.828|124.508 +638909.870|221494.415|124.572 +638904.887|221498.932|125.145 +638899.852|221503.498|125.648 +638894.838|221508.040|125.776 +638889.784|221512.609|125.459 +638884.755|221517.171|126.062 +638879.753|221521.704|126.413 +638874.724|221526.264|127.023 +638864.690|221535.353|127.446 +638859.639|221539.931|127.833 +638854.638|221544.463|128.257 +638849.621|221549.008|128.489 +638839.672|221558.027|129.418 +638829.659|221567.104|130.235 +638824.624|221571.664|130.348 +638819.549|221576.251|130.104 +638814.575|221580.759|130.378 +638809.503|221585.346|130.193 +638804.528|221589.854|130.522 +638799.478|221594.420|130.135 +638794.479|221598.943|130.272 +638789.465|221603.485|130.257 +638784.442|221608.036|130.656 +638779.492|221612.519|130.845 +638724.207|221662.540|129.568 +638719.236|221667.042|129.842 +638709.345|221676.003|130.421 +638679.456|221703.051|130.208 +638674.464|221707.571|130.101 +638669.496|221712.061|129.851 +638649.781|221729.910|130.193 +638629.439|221748.259|125.980 +638624.382|221752.828|125.386 +638619.411|221757.315|124.737 +638614.366|221761.871|123.947 +638609.340|221766.410|123.335 +638604.439|221770.839|123.231 +638599.526|221775.283|123.395 +638594.600|221779.733|123.188 +638584.825|221788.575|123.301 +638564.626|221806.778|118.982 +638559.517|221811.380|117.860 +638540.196|221828.858|118.193 +638535.365|221833.228|118.537 +638525.639|221842.019|118.043 +638510.969|221855.265|116.918 +638496.546|221868.305|116.793 +638491.903|221872.514|117.507 +638487.179|221876.784|117.522 +638482.327|221881.170|117.403 +638477.621|221885.428|117.555 +638472.820|221889.763|117.232 +638467.867|221894.231|116.394 +638463.066|221898.562|115.861 +638449.052|221911.251|116.861 +638444.376|221915.479|117.040 +638439.572|221919.816|116.592 +638434.927|221924.019|116.964 +638430.303|221928.204|117.193 +638425.612|221932.450|117.363 +638416.304|221940.869|117.616 +638388.533|221965.990|118.543 +638384.001|221970.093|118.887 +638360.434|221991.359|116.242 +638355.911|221995.455|116.492 +638351.369|221999.564|116.678 +638346.818|222003.679|116.858 +638342.167|222007.876|116.364 +638332.959|222016.194|115.861 +638328.207|222020.473|114.773 +638323.565|222024.661|114.181 +638318.960|222028.825|113.995 +638314.385|222032.955|113.742 +638309.916|222036.994|113.745 +638304.960|222041.444|111.694 +638299.967|222045.927|109.743 +638295.441|222050.015|109.344 +638286.389|222058.193|108.832 +638281.765|222062.365|108.308 +638277.092|222066.575|107.396 +638249.596|222091.367|103.321 +638245.027|222095.482|102.565 +638240.385|222099.661|101.547 +638225.706|222112.828|95.064 +638221.490|222116.644|95.613 +638217.211|222120.512|95.707 +638213.200|222124.151|96.863 +638208.924|222128.016|96.994 +638204.647|222131.878|96.945 +638200.322|222135.786|96.920 +638195.997|222139.687|96.719 +638191.702|222143.567|96.643 +638187.508|222147.356|96.756 +638183.339|222151.126|96.975 +638179.190|222154.878|97.286 +638175.005|222158.658|97.274 +638246.594|222091.178|102.584 +638251.175|222087.033|103.416 +638255.793|222082.857|104.193 +638274.236|222066.175|107.232 +638283.490|222057.802|108.713 +638297.212|222045.370|109.771 +638302.092|222040.971|111.453 +638307.066|222036.491|113.590 +638311.535|222032.434|113.358 +638316.122|222028.276|113.672 +638320.724|222024.107|113.831 +638325.418|222019.858|114.410 +638330.243|222015.499|115.593 +638334.797|222011.366|115.620 +638339.448|222007.157|116.074 +638353.280|221994.614|116.373 +638357.846|221990.472|116.306 +638376.835|221973.278|118.391 +638386.202|221964.786|118.610 +638399.982|221952.271|117.589 +638418.706|221935.285|117.226 +638423.454|221930.978|117.074 +638428.121|221926.744|117.043 +638432.784|221922.511|116.760 +638437.533|221918.204|116.659 +638442.343|221913.845|116.888 +638446.994|221909.621|116.595 +638461.100|221896.813|115.550 +638465.956|221892.415|115.843 +638470.878|221887.961|116.528 +638480.595|221879.156|117.031 +638485.387|221874.809|117.095 +638490.187|221870.457|116.946 +638494.994|221866.095|116.867 +638499.755|221861.773|116.537 +638504.577|221857.396|116.300 +638509.466|221852.970|116.711 +638519.299|221844.061|117.098 +638529.123|221835.161|117.827 +638534.051|221830.695|118.031 +638538.855|221826.337|117.827 +638543.814|221821.841|117.964 +638553.638|221812.935|118.049 +638563.669|221803.861|119.464 +638579.003|221790.011|123.161 +638583.880|221785.588|123.005 +638588.931|221781.016|123.673 +638593.762|221776.624|122.966 +638598.675|221772.168|122.789 +638603.640|221767.666|122.990 +638608.682|221763.103|123.359 +638618.813|221753.938|124.868 +638623.824|221749.402|125.465 +638628.905|221744.809|126.239 +638659.306|221717.297|130.022 +638699.427|221680.935|130.924 +638719.373|221662.830|129.936 +638749.490|221635.504|128.781 +638769.857|221617.061|130.083 +638780.016|221607.862|130.708 +638790.133|221598.693|130.555 +638800.252|221589.522|130.543 +638805.303|221584.944|130.476 +638810.408|221580.317|130.510 +638820.488|221571.179|130.266 +638825.575|221566.567|130.165 +638830.613|221561.998|130.107 +638835.682|221557.399|129.845 +638840.733|221552.815|129.415 +638845.789|221548.228|129.062 +638860.941|221534.478|127.827 +638871.051|221525.307|127.181 +638876.096|221520.728|126.754 +638881.189|221516.105|126.312 +638886.239|221511.523|125.983 +638891.357|221506.884|125.904 +638896.417|221502.294|125.694 +638901.461|221497.716|125.328 +638906.548|221493.098|124.886 +638911.608|221488.511|124.727 +638931.904|221470.092|122.987 +638962.375|221442.440|120.570 +638972.531|221433.220|119.473 +638987.811|221419.361|118.686 +638997.952|221410.165|118.263 +639003.097|221405.502|118.110 +639008.187|221400.884|117.836 +639028.554|221382.413|116.940 +639054.062|221359.282|116.019 +639084.655|221331.569|116.723 +639089.739|221326.955|116.300 +639094.830|221322.340|116.111 +639099.917|221317.725|115.830 +639105.007|221313.110|115.663 +639110.097|221308.493|115.443 +639115.135|221303.921|115.056 +639120.271|221299.263|114.727 +639125.364|221294.646|114.776 +639140.574|221280.832|112.712 +639145.667|221276.211|112.221 +639171.060|221253.217|113.233 +639176.156|221248.596|113.054 +639181.253|221243.966|112.145 +639186.258|221239.425|111.591 +639191.357|221234.798|111.152 +639211.650|221216.345|106.869 +639216.716|221211.743|106.074 +639221.837|221207.092|105.171 +639226.860|221202.529|104.437 +639236.937|221193.449|107.802 +639241.932|221188.938|108.789 +639252.012|221179.836|110.832 +639257.029|221175.283|110.463 +639262.055|221170.753|111.972 +639277.113|221157.129|112.947 +639287.119|221148.067|113.416 +639292.130|221143.532|113.526 +639297.129|221139.005|113.901 +639302.118|221134.494|114.617 +639327.082|221111.902|116.294 +639332.108|221107.349|116.071 +639337.045|221102.886|116.830 +639341.968|221098.439|117.897 +639351.941|221089.408|118.214 +639356.915|221084.900|118.162 +639361.890|221080.395|118.165 +639371.832|221071.391|118.321 +639376.782|221066.899|117.888 +639381.778|221062.366|117.586 +639386.694|221057.919|117.924 +639391.638|221053.436|117.720 +639406.510|221039.960|117.519 +639411.386|221035.544|117.757 +639416.330|221031.066|117.769 +639421.222|221026.634|117.799 +639426.172|221022.148|117.729 +639431.076|221017.707|117.656 +639436.039|221013.205|117.437 +639445.844|221004.323|117.473 +639450.724|220999.894|117.144 +639455.671|220995.408|116.644 +639460.584|220990.955|116.608 +639465.421|220986.575|116.946 +639470.316|220982.137|116.583 +639484.926|220968.899|116.598 +639489.775|220964.504|116.330 +639504.341|220951.303|116.013 +639509.121|220946.972|116.071 +639528.341|220929.555|116.010 +639533.148|220925.197|115.885 +639537.979|220920.817|115.577 +639547.568|220912.112|114.748 +639561.845|220899.170|114.331 +639566.627|220894.833|114.160 +639571.364|220890.538|114.014 +639576.082|220886.256|113.590 +639590.295|220873.366|112.868 +639595.041|220869.062|112.758 +639599.698|220864.840|112.581 +639604.410|220860.567|112.386 +639613.829|220852.020|111.694 +639618.559|220847.732|111.432 +639623.177|220843.544|111.295 +639627.908|220839.246|110.661 +639632.595|220834.994|110.411 +639637.186|220830.834|110.204 +639641.779|220826.673|110.371 +639660.235|220809.940|109.811 +639664.825|220805.773|109.341 +639669.418|220801.609|109.259 +639673.923|220797.531|109.481 +639682.982|220789.323|109.618 +639696.515|220777.061|109.646 +639701.054|220772.943|109.369 +639714.828|220760.425|106.915 +639723.792|220752.299|106.708 +639732.701|220744.225|106.613 +639737.148|220740.192|106.488 +639745.987|220732.179|106.314 +639750.355|220728.229|106.753 +639763.242|220716.579|108.899 +639780.512|220700.940|109.655 +639784.840|220697.026|110.131 +639793.381|220689.293|110.591 +639797.642|220685.438|110.893 +639814.607|220670.082|112.133 +639818.871|220666.217|112.185 +639823.099|220662.386|112.179 +639827.375|220658.512|112.206 +639831.584|220654.702|112.346 +639848.306|220639.559|113.093 +639865.189|220624.240|112.350 +639869.377|220620.442|112.462 +639873.562|220616.647|112.328 +639877.768|220612.828|112.087 +639881.944|220609.039|112.045 +639886.055|220605.312|112.072 +639906.575|220586.710|112.410 +639910.631|220583.031|112.545 +639914.594|220579.443|112.916 +639918.636|220575.783|113.166 +639922.662|220572.131|113.236 +639926.652|220568.516|113.499 +639930.730|220564.816|113.349 +639934.778|220561.146|113.364 +639946.772|220550.268|113.450 +639950.780|220546.634|113.459 +639962.728|220535.796|113.203 +639966.678|220532.208|113.044 +639970.641|220528.612|112.859 +639974.582|220525.039|112.785 +639978.520|220521.464|112.734 +639875.320|220612.721|112.520 +639866.850|220620.378|112.462 +639858.294|220628.126|112.962 +639853.981|220632.024|113.002 +639849.702|220635.898|113.166 +639841.234|220643.549|112.740 +639836.964|220647.408|112.602 +639832.706|220651.254|112.429 +639828.445|220655.107|112.285 +639824.108|220659.027|112.289 +639819.773|220662.946|112.301 +639811.157|220670.737|112.090 +639806.908|220674.572|111.648 +639794.033|220686.197|110.566 +639789.659|220690.150|110.332 +639785.340|220694.051|110.079 +639781.045|220697.928|109.682 +639776.623|220701.933|109.804 +639759.164|220717.707|108.942 +639746.256|220729.350|106.930 +639741.839|220733.334|106.458 +639737.395|220737.354|106.528 +639732.893|220741.426|106.677 +639728.452|220745.447|106.781 +639723.981|220749.485|106.744 +639719.506|220753.530|106.766 +639714.931|220757.669|107.153 +639701.191|220770.111|108.920 +639696.597|220774.272|109.567 +639692.108|220778.326|109.466 +639687.615|220782.386|109.426 +639683.012|220786.546|109.460 +639673.978|220794.703|109.079 +639669.421|220798.820|109.213 +639664.837|220802.963|109.207 +639660.192|220807.169|109.686 +639650.984|220815.496|110.100 +639646.345|220819.687|110.204 +639641.742|220823.854|110.478 +639637.131|220828.014|110.405 +639632.470|220832.227|110.380 +639627.825|220836.430|110.649 +639623.095|220840.712|111.240 +639618.407|220844.952|111.505 +639613.795|220849.122|111.591 +639604.298|220857.717|112.478 +639599.595|220861.966|112.542 +639594.907|220866.203|112.538 +639590.179|220870.482|112.889 +639585.397|220874.807|113.322 +639571.087|220887.749|114.011 +639566.335|220892.047|114.273 +639561.555|220896.369|114.379 +639556.779|220900.685|114.456 +639547.126|220909.411|114.733 +639532.654|220922.505|115.815 +639527.744|220926.943|115.919 +639518.137|220935.621|115.556 +639508.377|220944.442|115.836 +639503.525|220948.828|116.001 +639488.861|220962.084|116.205 +639464.297|220984.292|116.833 +639459.356|220988.748|116.495 +639454.433|220993.198|116.595 +639449.383|220997.773|117.168 +639444.451|221002.235|117.504 +639434.475|221011.251|117.726 +639429.491|221015.750|117.470 +639424.526|221020.243|117.720 +639419.528|221024.760|117.741 +639414.477|221029.323|117.836 +639409.561|221033.761|117.409 +639404.525|221038.308|117.306 +639389.432|221051.957|117.833 +639384.457|221056.447|117.623 +639379.379|221061.037|117.604 +639374.329|221065.606|117.967 +639354.114|221083.876|118.156 +639349.085|221088.421|118.257 +639344.016|221092.996|118.171 +639333.958|221102.054|116.294 +639308.574|221124.966|114.873 +639303.508|221129.547|114.913 +639298.415|221134.141|114.328 +639293.361|221138.697|113.931 +639288.253|221143.312|113.837 +639283.145|221147.924|113.657 +639272.931|221157.150|113.404 +639257.654|221170.915|111.078 +639232.118|221193.927|107.144 +639227.040|221198.475|104.397 +639221.867|221203.160|105.248 +639206.460|221217.117|107.546 +639201.339|221221.768|109.256 +639196.231|221226.398|110.082 +639191.073|221231.073|111.091 +639185.968|221235.688|111.365 +639175.715|221244.969|112.578 +639170.615|221249.590|113.453 +639160.368|221258.847|113.346 +639155.268|221263.455|113.447 +639139.910|221277.318|112.590 +639134.813|221281.926|112.798 +639124.590|221291.192|114.611 +639119.491|221295.798|114.727 +639114.398|221300.403|114.934 +639104.166|221309.660|115.641 +639093.976|221318.871|116.096 +639088.831|221323.519|116.211 +639083.790|221328.082|116.510 +639053.194|221355.725|116.571 +639027.780|221378.685|116.793 +639017.590|221387.899|117.269 +639012.543|221392.462|117.580 +639007.489|221397.031|117.702 +638967.014|221433.641|119.906 +638961.970|221438.207|120.259 +638946.864|221451.874|120.972 +638931.816|221465.502|122.704 +638926.796|221470.052|123.450 +638901.662|221492.800|125.322 +638896.660|221497.329|125.651 +638891.643|221501.864|125.819 +638886.590|221506.439|126.154 +638881.558|221510.987|126.133 +638876.553|221515.516|126.514 +638866.552|221524.569|127.376 +638861.538|221529.107|127.635 +638856.527|221533.640|127.977 +638851.559|221538.139|128.230 +638846.481|221542.729|128.397 +638841.552|221547.194|129.123 +638826.553|221560.767|130.132 +638821.558|221565.284|130.189 +638806.589|221578.823|130.683 +638801.523|221583.402|130.622 +638746.260|221633.331|128.998 +638741.191|221637.912|128.760 +638726.374|221651.320|129.833 +638716.389|221660.348|130.010 +638701.558|221673.766|130.814 +638696.586|221678.259|130.784 +638691.597|221682.767|130.634 +638651.826|221718.706|129.891 +638626.595|221741.459|126.507 +638616.518|221750.545|124.947 +638606.502|221759.579|123.621 +638601.458|221764.133|122.914 +638596.545|221768.574|122.771 +638591.692|221772.966|123.045 +638586.764|221777.419|122.838 +638581.926|221781.799|123.240 +638572.124|221790.666|123.292 +638551.803|221808.969|118.199 +638541.940|221817.876|117.339 +638537.136|221822.228|117.836 +638527.425|221831.003|117.424 +638498.158|221857.445|115.708 +638493.424|221861.733|116.208 +638483.909|221870.341|116.419 +638479.166|221874.636|116.635 +638474.326|221879.006|116.355 +638469.540|221883.335|116.388 +638464.676|221887.727|115.760 +638459.784|221892.143|115.288 +638455.041|221896.432|115.352 +638445.717|221904.872|116.080 +638441.151|221909.014|116.812 +638436.460|221913.260|116.931 +638426.999|221921.813|116.845 +638422.302|221926.061|117.001 +638417.633|221930.283|116.797 +638412.954|221934.517|117.080 +638394.389|221951.311|117.592 +638389.868|221955.411|118.199 +638371.373|221972.135|118.177 +638357.176|221984.946|116.227 +638352.585|221989.100|116.416 +638324.979|222014.045|115.382 +638320.255|222018.303|114.450 +638315.528|222022.564|113.520 +638310.931|222026.716|113.188 +638306.396|222030.812|112.904 +638301.906|222034.875|113.054 +638297.145|222039.161|111.865 +638292.323|222043.501|110.445 +638278.561|222055.922|108.844 +638269.308|222064.264|107.195 +638255.293|222076.892|104.275 +638250.882|222080.879|104.105 +638246.134|222085.152|102.824 +638241.522|222089.313|101.898 +638236.904|222093.473|100.971 +638232.235|222097.676|99.661 +638227.373|222102.041|97.628 +638222.390|222106.513|95.134 +638218.162|222110.341|95.430 +638213.889|222114.209|95.759 +638209.722|222117.985|96.314 +638205.580|222121.740|96.963 +638201.294|222125.614|96.872 +638197.039|222129.467|96.908 +638192.714|222133.375|96.701 +638184.232|222141.043|96.765 +638180.038|222144.841|96.890 +638175.920|222148.569|97.106 +638171.875|222152.233|97.615 +638255.238|222074.323|104.367 +638269.289|222061.649|107.674 +638273.913|222057.470|108.381 +638278.513|222053.316|108.988 +638287.785|222044.943|110.606 +638292.375|222040.795|111.036 +638297.136|222036.500|112.444 +638301.674|222032.391|112.471 +638306.256|222028.249|112.938 +638310.849|222024.091|113.020 +638315.506|222019.882|113.624 +638320.356|222015.514|115.087 +638324.912|222011.390|115.306 +638329.494|222007.245|115.425 +638348.092|221990.417|116.626 +638352.607|221986.327|116.309 +638357.212|221982.154|116.190 +638408.635|221935.593|117.001 +638413.286|221931.377|116.833 +638418.014|221927.098|116.803 +638422.741|221922.815|116.787 +638432.214|221914.238|116.925 +638450.905|221897.282|115.081 +638455.699|221892.942|115.288 +638460.494|221888.601|115.239 +638465.407|221884.161|115.849 +638470.269|221879.765|116.202 +638479.934|221871.014|116.419 +638489.596|221862.264|116.425 +638494.281|221858.009|115.672 +638513.941|221840.227|117.034 +638518.799|221835.825|117.059 +638533.536|221822.490|117.577 +638543.195|221813.736|117.187 +638568.792|221790.651|123.374 +638583.453|221777.364|122.734 +638588.376|221772.908|122.899 +638593.277|221768.467|122.618 +638598.236|221763.978|122.740 +638603.284|221759.421|123.441 +638608.346|221754.846|124.301 +638613.400|221750.277|124.785 +638618.493|221745.677|125.575 +638648.864|221718.233|129.434 +638679.051|221690.923|131.019 +638694.105|221677.292|130.976 +638714.030|221659.233|130.068 +638719.059|221654.676|129.879 +638734.138|221641.015|129.330 +638754.319|221622.739|129.120 +638764.487|221613.537|129.632 +638784.896|221595.063|130.817 +638800.060|221581.326|130.607 +638805.178|221576.690|130.729 +638815.300|221567.515|130.406 +638820.421|221562.873|130.125 +638825.462|221558.304|130.058 +638830.534|221553.705|129.818 +638835.578|221549.127|129.321 +638840.620|221544.552|128.769 +638845.679|221539.964|128.409 +638850.733|221535.377|128.031 +638855.790|221530.793|127.687 +638860.892|221526.166|127.300 +638865.955|221521.573|127.074 +638876.117|221512.359|126.468 +638881.219|221507.732|126.136 +638886.279|221503.145|125.901 +638891.393|221498.512|125.764 +638896.502|221493.882|125.557 +638901.589|221489.264|125.099 +638906.704|221484.631|125.005 +638921.919|221470.827|123.731 +638927.003|221466.212|123.271 +638957.538|221438.505|120.162 +638972.876|221424.600|119.439 +638977.990|221419.955|118.665 +639008.620|221392.191|117.534 +639013.710|221387.576|117.239 +639028.999|221373.717|116.824 +639044.345|221359.815|116.769 +639080.117|221327.412|116.766 +639085.201|221322.800|116.281 +639090.291|221318.185|116.132 +639095.381|221313.571|115.824 +639100.471|221308.956|115.684 +639105.565|221304.341|115.526 +639115.739|221295.112|114.608 +639120.786|221290.540|114.547 +639136.002|221276.726|112.612 +639151.251|221262.925|113.438 +639176.586|221239.958|112.660 +639201.818|221217.034|108.326 +639227.037|221194.156|106.247 +639237.074|221185.103|108.786 +639257.102|221167.004|111.929 +639262.098|221162.487|112.526 +639267.106|221157.955|112.715 +639282.056|221144.428|113.895 +639287.012|221139.938|114.120 +639292.023|221135.403|114.181 +639296.976|221130.919|114.529 +639301.920|221126.451|115.169 +639321.790|221108.467|116.315 +639331.721|221099.473|116.498 +639336.600|221095.068|117.479 +639346.461|221086.144|118.183 +639351.429|221081.645|118.226 +639371.195|221063.732|117.997 +639376.127|221059.263|117.952 +639381.074|221054.777|117.674 +639385.990|221050.330|117.994 +639390.949|221045.828|117.555 +639395.845|221041.393|117.452 +639400.773|221036.931|117.601 +639405.720|221032.447|117.510 +639410.588|221028.043|117.882 +639420.433|221019.121|117.787 +639425.349|221014.665|117.531 +639444.933|220996.919|117.245 +639449.825|220992.491|117.446 +639454.753|220988.010|116.537 +639459.670|220983.554|116.464 +639464.519|220979.168|116.693 +639469.378|220974.767|116.800 +639479.183|220965.869|115.980 +639484.036|220961.480|116.266 +639488.922|220957.052|116.144 +639493.771|220952.653|115.894 +639498.657|220948.225|115.818 +639503.470|220943.869|116.068 +639513.184|220935.060|115.626 +639518.021|220930.680|115.675 +639522.818|220926.337|115.666 +639527.646|220921.966|115.843 +639542.158|220908.820|115.288 +639546.959|220904.467|114.855 +639551.726|220900.157|115.291 +639561.379|220891.404|114.559 +639566.167|220887.066|114.376 +639570.971|220882.711|114.047 +639585.324|220869.705|113.416 +639590.094|220865.377|113.063 +639594.858|220861.061|112.819 +639599.610|220856.760|112.727 +639613.847|220843.852|111.853 +639618.556|220839.588|111.789 +639623.317|220835.268|111.307 +639628.029|220830.995|110.865 +639632.766|220826.704|110.655 +639637.402|220822.506|110.874 +639641.998|220818.346|111.033 +639646.750|220814.042|110.783 +639660.805|220801.292|109.396 +639665.438|220797.098|109.405 +639670.016|220792.956|109.460 +639679.221|220784.620|109.618 +639683.814|220780.462|109.625 +639692.998|220772.147|109.713 +639697.530|220768.042|109.509 +639702.242|220763.756|108.393 +639706.887|220759.541|107.787 +639716.056|220751.229|107.171 +639720.515|220747.190|107.241 +639725.060|220743.075|107.092 +639729.601|220738.961|106.979 +639734.067|220734.916|107.061 +639760.362|220711.145|109.518 +639764.659|220707.258|110.124 +639769.042|220703.293|110.225 +639782.192|220691.384|110.277 +639786.471|220687.513|110.454 +639799.230|220675.986|112.151 +639803.543|220672.078|112.176 +639807.767|220668.256|112.441 +639812.065|220664.370|112.602 +639816.326|220660.511|112.679 +639824.836|220652.806|112.679 +639829.042|220648.996|112.822 +639833.267|220645.173|112.898 +639837.543|220641.296|112.682 +639858.507|220622.316|112.822 +639875.083|220607.308|112.615 +639879.264|220603.516|112.264 +639891.386|220592.556|113.011 +639911.525|220574.332|113.364 +639915.499|220570.732|113.422 +639923.357|220563.627|113.794 +639927.344|220560.018|113.849 +639931.355|220556.388|113.791 +639935.311|220552.807|113.764 +639939.240|220549.247|113.624 +639943.209|220545.653|113.569 +639947.147|220542.084|113.413 +639951.106|220538.496|113.182 +639954.971|220535.000|113.169 +639958.878|220531.458|112.968 +639962.734|220527.975|113.276 +639966.556|220524.515|113.258 +639970.464|220520.973|113.096 +639978.126|220514.036|113.029 +639876.061|220604.345|112.505 +639837.385|220639.285|113.014 +639833.005|220643.238|112.926 +639824.312|220651.084|112.703 +639819.920|220655.052|112.743 +639815.543|220659.005|112.703 +639806.722|220666.970|112.487 +639802.333|220670.929|112.270 +639797.919|220674.910|111.926 +639789.174|220682.795|111.078 +639784.755|220686.782|110.789 +639762.370|220706.987|109.887 +639739.980|220727.174|107.464 +639735.435|220731.271|107.174 +639730.903|220735.364|107.180 +639726.282|220739.540|107.122 +639721.701|220743.676|107.134 +639712.450|220752.046|107.528 +639707.741|220756.304|107.811 +639703.123|220760.483|108.177 +639698.380|220764.783|109.119 +639693.650|220769.066|109.652 +639689.008|220773.260|109.567 +639684.344|220777.475|109.655 +639679.699|220781.672|109.634 +639665.727|220794.300|109.625 +639661.061|220798.516|109.472 +639656.376|220802.752|109.859 +639646.848|220811.378|110.819 +639642.148|220815.630|111.030 +639632.720|220824.146|110.950 +639628.014|220828.398|110.890 +639623.253|220832.711|111.310 +639618.507|220837.003|111.612 +639599.473|220854.224|112.767 +639594.770|220858.473|112.846 +639589.960|220862.822|113.035 +639585.171|220867.157|113.477 +639570.876|220880.080|113.947 +639566.064|220884.436|114.303 +639561.306|220888.743|114.654 +639556.490|220893.101|115.099 +639551.665|220897.463|115.196 +639546.968|220901.706|115.017 +639542.057|220906.150|115.516 +639522.910|220923.456|115.779 +639513.275|220932.165|115.690 +639508.471|220936.505|115.775 +639503.668|220940.848|115.910 +639498.791|220945.253|115.788 +639484.310|220958.344|116.099 +639469.676|220971.578|116.739 +639464.803|220975.983|116.769 +639459.962|220980.351|116.376 +639455.086|220984.761|116.480 +639450.126|220989.254|117.095 +639445.256|220993.655|117.174 +639425.694|221011.340|117.601 +639420.741|221015.814|117.592 +639415.830|221020.255|117.732 +639410.874|221024.739|117.897 +639406.007|221029.128|117.397 +639396.107|221038.077|117.586 +639391.163|221042.545|117.644 +639381.281|221051.476|117.711 +639376.279|221056.002|118.016 +639371.336|221060.470|118.159 +639366.361|221064.966|118.046 +639351.365|221078.518|118.244 +639346.388|221083.013|118.229 +639341.364|221087.552|118.241 +639336.421|221092.008|117.522 +639331.437|221096.498|116.626 +639316.383|221110.095|116.379 +639306.303|221119.199|116.220 +639301.317|221123.695|115.376 +639296.272|221128.243|114.712 +639260.836|221160.226|112.493 +639240.530|221178.544|110.606 +639235.391|221183.168|109.329 +639230.350|221187.700|107.869 +639225.208|221192.324|106.324 +639209.819|221206.232|106.467 +639199.577|221215.519|108.799 +639189.257|221224.871|110.563 +639142.951|221266.750|113.273 +639132.698|221276.010|112.983 +639122.365|221285.364|114.017 +639117.223|221290.016|114.593 +639112.081|221294.667|114.849 +639101.800|221303.970|115.629 +639096.610|221308.663|115.858 +639091.465|221313.312|116.038 +639086.368|221317.920|116.208 +639081.178|221322.611|116.403 +639024.469|221373.848|116.373 +639019.337|221378.493|116.952 +639014.143|221383.190|117.135 +639009.053|221387.793|117.568 +639003.886|221392.459|117.312 +638988.503|221406.370|118.263 +638968.042|221424.872|119.872 +638932.508|221456.998|122.984 +638927.409|221461.606|123.295 +638902.104|221484.475|125.011 +638897.051|221489.044|125.319 +638892.043|221493.568|125.657 +638886.980|221498.143|125.898 +638881.908|221502.724|126.020 +638866.866|221516.315|126.879 +638851.839|221529.897|128.038 +638841.857|221538.919|128.699 +638836.849|221543.445|129.120 +638826.876|221552.461|129.949 +638821.899|221556.960|130.223 +638816.900|221561.471|130.311 +638811.911|221565.979|130.491 +638801.910|221575.010|130.692 +638796.939|221579.497|130.628 +638791.934|221584.017|130.732 +638776.996|221597.505|130.970 +638717.230|221651.439|129.943 +638707.343|221660.370|130.214 +638702.478|221664.771|131.006 +638672.891|221691.481|131.080 +638667.911|221695.971|130.753 +638662.982|221700.421|130.817 +638653.061|221709.367|130.217 +638643.051|221718.386|129.117 +638638.095|221722.857|128.763 +638633.127|221727.335|128.370 +638618.054|221740.901|125.901 +638613.025|221745.431|125.236 +638608.081|221749.887|124.831 +638597.998|221758.961|123.167 +638593.006|221763.456|122.545 +638588.096|221767.885|122.457 +638583.283|221772.232|122.716 +638578.357|221776.676|122.576 +638568.725|221785.375|123.121 +638563.839|221789.779|122.999 +638553.607|221798.972|120.055 +638548.609|221803.465|119.070 +638543.464|221808.085|117.528 +638538.565|221812.499|117.196 +638533.725|221816.867|117.202 +638514.315|221834.377|116.925 +638509.390|221838.809|116.297 +638499.624|221847.612|115.580 +638490.053|221856.250|115.745 +638485.250|221860.581|115.629 +638461.241|221882.237|115.117 +638456.434|221886.568|114.852 +638451.639|221890.900|114.919 +638446.909|221895.167|115.090 +638428.343|221911.946|116.909 +638423.686|221916.149|117.001 +638418.885|221920.474|116.662 +638414.207|221924.696|116.687 +638409.501|221928.942|116.605 +638404.834|221933.154|116.723 +638358.218|221975.195|115.836 +638353.689|221979.286|116.077 +638344.627|221987.470|116.589 +638326.083|222004.179|115.266 +638321.441|222008.361|114.904 +638316.863|222012.491|114.852 +638312.275|222016.624|114.544 +638307.399|222021.001|113.014 +638302.717|222025.213|112.356 +638298.181|222029.304|112.106 +638293.637|222033.397|111.856 +638289.068|222037.515|111.508 +638284.325|222041.776|110.466 +638279.771|222045.882|110.222 +638270.496|222054.224|108.466 +638265.842|222058.412|107.668 +638261.212|222062.573|106.784 +638256.454|222066.843|105.400 +638251.867|222070.970|104.519 +638228.708|222091.806|99.563 +638223.926|222096.098|97.847 +638218.936|222100.560|95.150 +638214.443|222104.608|94.628 +638210.624|222108.085|96.518 +638206.406|222111.898|96.881 +638202.154|222115.736|96.917 +638197.859|222119.616|97.006 +638193.580|222123.478|96.966 +638189.349|222127.297|96.924 +638185.018|222131.208|96.710 +638180.824|222134.993|96.838 +638176.636|222138.779|96.991 +638172.497|222142.516|97.149 +638168.321|222146.289|97.384 +638250.797|222069.979|104.797 +638260.118|222061.567|106.979 +638264.684|222057.440|107.625 +638278.625|222044.842|110.039 +638283.182|222040.721|110.515 +638287.852|222036.503|111.261 +638292.442|222032.352|111.697 +638297.026|222028.203|112.136 +638301.531|222024.125|112.258 +638306.219|222019.888|112.953 +638311.093|222015.493|114.486 +638315.692|222011.329|114.629 +638320.252|222007.202|114.843 +638348.044|221982.041|116.193 +638352.591|221977.920|116.035 +638357.200|221973.741|115.931 +638408.507|221927.268|116.230 +638413.311|221922.925|116.553 +638418.081|221918.609|116.729 +638422.863|221914.284|116.995 +638446.235|221893.088|114.879 +638450.905|221888.851|114.431 +638455.766|221884.453|114.715 +638460.546|221880.125|114.590 +638465.450|221875.693|115.151 +638475.103|221866.951|115.257 +638479.974|221862.544|115.440 +638484.841|221858.140|115.632 +638489.587|221853.836|115.187 +638499.383|221844.975|115.718 +638509.225|221836.078|116.623 +638514.096|221831.668|116.693 +638518.967|221827.260|116.781 +638523.920|221822.774|116.793 +638568.963|221782.086|122.877 +638573.791|221777.706|122.390 +638578.744|221773.219|122.377 +638583.639|221768.787|122.335 +638588.586|221764.310|122.335 +638593.628|221759.753|122.960 +638598.733|221755.148|124.011 +638603.768|221750.594|124.346 +638613.821|221741.508|125.291 +638639.192|221718.593|129.013 +638644.188|221714.073|129.336 +638649.257|221709.491|129.824 +638669.300|221691.359|130.836 +638674.394|221686.753|131.311 +638704.264|221659.699|130.583 +638709.254|221655.179|130.449 +638729.279|221637.037|129.757 +638739.271|221627.988|129.357 +638754.431|221614.266|129.775 +638769.720|221600.446|130.735 +638774.777|221595.874|131.043 +638784.866|221586.739|130.631 +638789.941|221582.146|130.738 +638795.000|221577.568|130.723 +638800.002|221573.041|130.616 +638805.120|221568.415|130.729 +638810.149|221563.858|130.497 +638815.187|221559.298|130.339 +638820.283|221554.686|130.308 +638830.339|221545.582|129.869 +638835.368|221541.019|129.190 +638840.358|221536.496|128.571 +638845.448|221531.890|128.562 +638850.498|221527.312|128.147 +638860.618|221518.147|127.483 +638865.638|221513.602|127.321 +638870.725|221508.991|126.770 +638875.791|221504.403|126.562 +638885.962|221495.195|126.099 +638891.006|221490.623|125.681 +638896.109|221486.003|125.401 +638901.196|221481.391|124.907 +638906.240|221476.822|124.496 +638911.346|221472.198|124.279 +638921.480|221463.014|123.487 +638962.244|221426.082|120.223 +638967.359|221421.443|119.406 +638977.524|221412.232|118.351 +638982.681|221407.565|118.327 +639054.346|221342.691|116.403 +639080.025|221319.456|116.397 +639085.167|221314.802|116.220 +639090.261|221310.191|115.974 +639095.403|221305.536|115.867 +639100.493|221300.925|115.602 +639105.635|221296.270|115.370 +639115.815|221287.047|114.553 +639120.948|221282.390|113.691 +639131.137|221273.160|113.148 +639151.590|221254.677|114.322 +639156.689|221250.066|114.373 +639161.736|221245.494|114.227 +639177.034|221231.631|112.532 +639217.707|221194.717|104.443 +639222.748|221190.184|106.330 +639232.828|221181.110|109.472 +639237.866|221176.575|110.850 +639262.967|221153.910|113.584 +639272.986|221144.848|113.758 +639287.951|221131.324|114.675 +639292.865|221126.880|114.821 +639297.866|221122.363|115.263 +639302.813|221117.901|115.925 +639312.686|221108.973|116.321 +639327.484|221095.596|116.769 +639332.449|221091.106|116.915 +639337.335|221086.699|117.781 +639342.242|221082.267|118.208 +639347.168|221077.811|118.199 +639352.090|221073.354|118.266 +639357.031|221068.883|118.043 +639361.911|221064.469|118.086 +639366.837|221060.016|118.217 +639371.720|221055.597|118.186 +639376.679|221051.104|117.732 +639381.565|221046.684|117.763 +639386.445|221042.277|117.964 +639401.142|221028.972|117.565 +639406.007|221024.568|117.309 +639410.874|221020.170|117.757 +639415.730|221015.777|117.677 +639420.585|221011.382|117.623 +639425.441|221006.993|117.616 +639430.296|221002.601|117.620 +639435.118|220998.236|117.418 +639439.992|220993.823|117.217 +639444.811|220989.461|117.120 +639449.685|220985.054|117.001 +639454.543|220980.646|116.419 +639459.322|220976.321|116.309 +639464.163|220971.950|116.699 +639468.972|220967.592|116.254 +639473.788|220963.236|116.355 +639478.583|220958.896|116.153 +639483.426|220954.513|115.998 +639488.220|220950.172|115.833 +639493.015|220945.835|115.748 +639502.595|220937.169|115.699 +639512.187|220928.489|115.626 +639521.736|220919.845|115.562 +639536.019|220906.918|115.794 +639540.792|220902.596|115.657 +639545.593|220898.243|115.230 +639559.891|220885.292|114.736 +639569.395|220876.685|114.203 +639588.418|220859.448|113.288 +639593.133|220855.178|113.051 +639597.869|220850.890|113.087 +639602.530|220846.668|112.944 +639607.273|220842.370|112.554 +639616.676|220833.854|112.145 +639635.546|220816.764|111.487 +639644.912|220808.272|110.859 +639649.661|220803.965|110.271 +639654.319|220799.747|110.057 +639659.022|220795.486|109.868 +639682.241|220774.467|109.725 +639686.850|220770.294|109.637 +639691.489|220766.097|109.734 +639696.140|220761.879|109.387 +639700.843|220757.608|108.372 +639705.534|220753.356|108.158 +639710.140|220749.184|107.875 +639719.296|220740.896|107.774 +639723.965|220736.662|107.454 +639728.489|220732.569|107.497 +639733.000|220728.488|107.619 +639746.429|220716.351|108.792 +639755.293|220708.334|109.551 +639794.950|220672.481|112.328 +639799.279|220668.564|112.560 +639803.665|220664.595|112.770 +639808.066|220660.615|112.907 +639812.425|220656.671|113.026 +639816.765|220652.742|112.968 +639821.084|220648.831|113.032 +639825.406|220644.920|113.115 +639829.740|220640.998|113.139 +639834.062|220637.087|113.255 +639842.594|220629.367|113.578 +639846.867|220625.502|113.724 +639851.189|220621.585|113.346 +639863.973|220610.003|113.020 +639868.209|220606.165|112.892 +639888.966|220587.365|113.130 +639893.069|220583.653|113.261 +639897.202|220579.910|113.261 +639901.186|220576.310|113.770 +639905.249|220572.631|113.883 +639909.360|220568.903|113.764 +639913.399|220565.246|113.773 +639917.444|220561.585|113.764 +639921.495|220557.915|113.742 +639925.545|220554.245|113.733 +639929.541|220550.624|113.749 +639933.528|220547.015|113.834 +639937.548|220543.373|113.764 +639941.486|220539.804|113.602 +639945.473|220536.192|113.486 +639949.411|220532.623|113.355 +639953.361|220529.041|113.194 +639957.315|220525.460|113.264 +639961.198|220521.943|113.194 +639965.121|220518.392|113.212 +639968.986|220514.886|113.011 +639972.829|220511.403|112.923 +639875.829|220597.731|112.648 +639871.763|220601.395|112.621 +639834.215|220635.274|113.432 +639825.857|220642.802|112.724 +639817.225|220650.596|113.066 +639812.952|220654.446|113.005 +639808.676|220658.304|112.990 +639804.384|220662.172|112.791 +639800.080|220666.052|112.676 +639795.746|220669.960|112.450 +639791.494|220673.785|112.042 +639756.488|220705.332|109.850 +639747.670|220713.272|109.061 +639743.272|220717.237|108.789 +639738.846|220721.215|108.034 +639729.872|220729.305|107.723 +639725.361|220733.374|107.598 +639720.783|220737.501|107.570 +639716.166|220741.670|107.860 +639711.655|220745.736|107.774 +639707.040|220749.900|108.073 +639702.404|220754.085|108.223 +639692.961|220762.622|109.756 +639688.365|220766.765|109.692 +639683.713|220770.959|109.667 +639679.062|220775.156|109.689 +639665.084|220787.756|109.631 +639660.326|220792.051|109.774 +639655.617|220796.300|109.954 +639650.847|220800.607|110.252 +639636.503|220813.561|111.563 +639631.721|220817.874|111.664 +639622.156|220826.505|111.969 +639607.766|220839.490|112.542 +639602.975|220843.815|112.889 +639598.107|220848.207|113.066 +639593.328|220852.517|112.944 +639588.533|220856.839|112.962 +639583.684|220861.219|113.483 +639573.973|220869.985|113.898 +639569.169|220874.320|114.102 +639564.274|220878.736|114.276 +639559.404|220883.134|114.736 +639554.518|220887.542|114.870 +639544.752|220896.357|115.215 +639539.863|220900.770|115.483 +639534.995|220905.159|115.565 +639525.229|220913.968|115.623 +639520.322|220918.391|115.663 +639510.526|220927.230|115.696 +639505.661|220931.610|115.352 +639500.705|220936.081|115.522 +639495.776|220940.534|115.974 +639490.854|220944.969|115.809 +639485.931|220949.404|115.641 +639481.021|220953.839|115.967 +639476.007|220958.365|116.403 +639471.142|220962.751|116.254 +639461.279|220971.648|116.428 +639456.326|220976.114|116.214 +639451.398|220980.561|116.361 +639446.384|220985.090|116.979 +639441.458|220989.534|117.144 +639436.493|220994.015|117.220 +639431.576|220998.450|117.293 +639426.605|221002.936|117.510 +639416.696|221011.870|117.513 +639406.848|221020.752|117.455 +639401.861|221025.245|117.281 +639386.960|221038.689|117.580 +639377.026|221047.647|117.656 +639372.015|221052.174|118.119 +639367.023|221056.679|118.266 +639362.091|221061.126|118.193 +639357.071|221065.652|118.016 +639352.093|221070.142|117.900 +639347.104|221074.650|118.174 +639342.123|221079.142|118.196 +639337.161|221083.614|117.879 +639332.181|221088.094|116.885 +639322.183|221097.114|116.873 +639307.236|221110.592|116.367 +639302.280|221115.060|115.961 +639297.281|221119.562|115.407 +639292.276|221124.073|115.032 +639287.262|221128.593|114.864 +639282.245|221133.120|114.846 +639252.195|221160.213|113.334 +639227.064|221182.814|108.390 +639221.971|221187.386|106.790 +639216.914|221191.937|106.025 +639191.512|221214.919|110.146 +639186.453|221219.497|110.783 +639176.236|221228.736|112.173 +639145.728|221256.302|114.605 +639140.672|221260.859|114.267 +639110.030|221288.519|115.111 +639104.934|221293.122|115.391 +639099.837|221297.724|115.513 +639094.741|221302.327|115.782 +639089.596|221306.972|115.943 +639084.497|221311.574|116.004 +639079.355|221316.219|116.336 +639074.213|221320.862|116.650 +639043.373|221348.675|115.650 +639033.117|221357.931|115.769 +639012.564|221376.485|116.364 +638971.611|221413.487|119.125 +638966.475|221418.133|119.573 +638941.003|221441.172|122.252 +638920.532|221459.665|123.191 +638915.445|221464.267|123.697 +638900.156|221478.090|124.913 +638895.066|221482.692|125.398 +638889.967|221487.304|125.758 +638884.846|221491.928|125.870 +638879.744|221496.539|126.242 +638874.632|221501.157|126.529 +638869.570|221505.735|126.779 +638864.452|221510.359|126.998 +638854.351|221519.491|127.925 +638849.276|221524.075|128.126 +638844.216|221528.650|128.483 +638839.148|221533.231|128.781 +638834.118|221537.773|128.995 +638829.077|221542.336|129.592 +638824.072|221546.862|130.092 +638819.046|221551.407|130.342 +638814.002|221555.960|130.449 +638808.963|221560.511|130.641 +638803.919|221565.068|130.787 +638798.844|221569.649|130.619 +638793.906|221574.111|130.897 +638783.823|221583.213|130.912 +638773.731|221592.326|130.900 +638758.659|221605.920|130.144 +638733.519|221628.613|129.796 +638693.840|221664.451|130.906 +638679.075|221677.789|131.323 +638674.116|221682.264|131.092 +638669.182|221686.720|131.070 +638654.362|221700.088|130.342 +638649.379|221704.581|130.086 +638609.532|221740.487|125.395 +638589.632|221758.412|122.807 +638584.642|221762.908|122.234 +638579.787|221767.291|122.219 +638574.962|221771.653|122.393 +638570.100|221776.039|122.387 +638565.214|221780.446|122.240 +638555.521|221789.197|122.182 +638550.191|221793.967|119.464 +638540.358|221802.824|118.165 +638535.383|221807.305|117.360 +638530.519|221811.691|116.946 +638515.952|221824.831|116.288 +638511.161|221829.159|116.382 +638501.535|221837.840|115.833 +638486.957|221850.986|114.690 +638482.296|221855.195|115.077 +638477.538|221859.493|114.937 +638472.683|221863.870|114.587 +638467.983|221868.113|114.818 +638458.446|221876.720|114.593 +638448.881|221885.352|114.315 +638444.184|221889.592|114.389 +638411.582|221919.057|116.467 +638406.837|221923.334|116.193 +638402.170|221927.546|116.056 +638365.085|221961.025|116.181 +638355.810|221969.395|115.843 +638346.739|221977.588|116.272 +638342.231|221981.663|116.635 +638318.969|222002.627|114.361 +638309.962|222010.759|114.443 +638305.372|222014.899|114.145 +638300.473|222019.294|112.545 +638295.740|222023.555|111.682 +638291.192|222027.658|111.392 +638286.645|222031.760|111.139 +638282.085|222035.869|110.853 +638277.464|222040.029|110.115 +638272.840|222044.193|109.387 +638258.880|222056.760|106.973 +638249.605|222065.105|105.190 +638226.626|222085.768|100.727 +638221.926|222089.983|99.124 +638217.330|222094.113|98.164 +638213.084|222097.948|98.384 +638208.768|222101.837|98.344 +638204.306|222105.854|97.753 +638199.874|222109.847|97.305 +638195.610|222113.694|97.298 +638191.340|222117.543|97.298 +638186.947|222121.500|96.850 +638182.720|222125.313|96.832 +638178.501|222129.120|96.863 +638174.320|222132.893|97.042 +638170.150|222136.657|97.292 +638166.069|222140.345|97.673 +638254.543|222058.595|106.479 +638259.091|222054.492|107.022 +638268.424|222046.086|109.158 +638300.669|222017.002|113.691 +638305.326|222012.799|114.267 +638309.825|222008.729|114.184 +638314.327|222004.660|114.126 +638323.577|221996.306|114.925 +638328.165|221992.161|115.074 +638351.305|221971.254|116.105 +638355.844|221967.146|115.675 +638360.376|221963.046|115.468 +638397.702|221929.298|116.114 +638402.374|221925.071|115.992 +638444.501|221886.931|114.130 +638449.295|221882.594|114.315 +638454.111|221878.238|114.343 +638463.697|221869.564|114.258 +638468.547|221865.181|114.538 +638473.347|221860.837|114.587 +638497.774|221838.754|115.513 +638507.610|221829.869|116.358 +638512.484|221825.459|116.446 +638522.112|221816.739|115.687 +638532.155|221807.674|117.107 +638537.218|221803.111|118.104 +638542.138|221798.661|118.311 +638552.330|221789.480|120.887 +638562.392|221780.400|122.219 +638572.209|221771.518|122.185 +638577.174|221767.026|122.240 +638582.070|221762.597|122.201 +638587.096|221758.055|122.688 +638592.207|221753.450|123.743 +638617.570|221730.565|127.708 +638622.648|221725.978|128.111 +638637.717|221712.360|129.053 +638667.990|221685.004|130.912 +638673.019|221680.459|131.275 +638688.009|221666.896|130.997 +638728.060|221630.652|130.010 +638743.163|221616.985|129.766 +638758.397|221603.214|130.455 +638763.508|221598.593|130.756 +638773.609|221589.446|130.796 +638778.681|221584.859|130.802 +638788.816|221575.684|130.833 +638793.891|221571.091|130.951 +638799.002|221566.464|130.988 +638804.047|221561.895|130.866 +638809.137|221557.286|130.717 +638814.160|221552.733|130.418 +638819.238|221548.133|130.165 +638824.249|221543.592|129.769 +638834.353|221534.429|128.815 +638844.460|221525.276|128.477 +638849.514|221520.695|128.068 +638854.503|221516.169|127.455 +638859.630|221511.527|127.364 +638864.696|221506.939|127.099 +638869.713|221502.392|126.898 +638874.770|221497.801|125.965 +638879.857|221493.196|126.032 +638884.938|221488.599|126.011 +638895.042|221479.443|125.325 +638956.103|221424.098|120.488 +638961.196|221419.480|120.140 +638966.271|221414.874|119.494 +638991.850|221391.703|118.074 +638996.958|221387.076|118.101 +639042.934|221345.416|115.071 +639068.684|221322.133|116.742 +639078.922|221312.861|116.333 +639084.061|221308.203|116.028 +639089.157|221303.589|115.913 +639094.302|221298.931|115.849 +639099.441|221294.274|115.495 +639104.586|221289.613|115.373 +639109.728|221284.956|114.983 +639119.960|221275.681|114.038 +639125.108|221271.021|114.157 +639145.701|221252.391|114.550 +639150.797|221247.776|114.535 +639161.041|221238.495|113.919 +639166.141|221233.871|113.203 +639196.828|221206.034|108.799 +639217.247|221187.517|106.290 +639222.337|221182.933|107.845 +639242.597|221164.673|112.746 +639247.647|221160.107|113.157 +639252.701|221155.538|113.459 +639257.816|221150.908|113.209 +639262.863|221146.348|113.813 +639288.034|221123.592|115.303 +639293.044|221119.059|115.398 +639298.052|221114.530|115.672 +639303.045|221110.022|116.315 +639317.980|221096.516|116.955 +639327.901|221087.546|117.479 +639332.891|221083.023|117.062 +639342.745|221074.119|118.129 +639347.692|221069.636|117.717 +639352.596|221065.207|118.226 +639357.525|221060.745|118.226 +639372.287|221047.385|118.052 +639377.240|221042.896|117.714 +639387.024|221034.038|117.656 +639391.919|221029.609|117.607 +639396.823|221025.171|117.485 +639401.715|221020.743|117.534 +639406.610|221016.314|117.580 +639416.364|221007.484|117.537 +639426.123|220998.654|117.525 +639430.988|220994.249|117.421 +639435.804|220989.888|117.342 +639445.503|220981.103|117.010 +639450.398|220976.672|116.647 +639455.250|220972.270|116.202 +639460.054|220967.927|116.440 +639464.821|220963.611|116.501 +639484.060|220946.188|115.644 +639488.836|220941.866|115.748 +639498.376|220933.228|115.599 +639512.614|220920.347|115.577 +639526.830|220907.488|115.437 +639531.563|220903.212|115.684 +639536.278|220898.944|115.590 +639541.058|220894.619|115.391 +639555.210|220881.815|114.885 +639559.949|220877.526|114.690 +639564.701|220873.225|114.428 +639569.395|220868.976|114.258 +639574.098|220864.718|114.044 +639578.847|220860.415|113.435 +639588.235|220851.923|113.313 +639592.916|220847.689|113.383 +639597.562|220843.492|113.380 +639602.225|220839.274|113.243 +639639.459|220805.572|111.490 +639644.144|220801.326|111.002 +639648.786|220797.123|110.499 +639653.468|220792.883|110.088 +639658.061|220788.728|110.021 +639662.658|220784.568|109.917 +639667.245|220780.420|109.926 +639671.863|220776.244|109.747 +639680.998|220767.981|109.792 +639685.603|220763.814|109.743 +639690.230|220759.629|109.570 +639699.441|220751.284|108.546 +639704.019|220747.138|108.424 +639708.616|220742.981|108.216 +639713.212|220738.820|108.027 +639717.760|220734.706|107.857 +639722.295|220730.603|107.802 +639726.788|220726.543|108.030 +639731.284|220722.483|108.271 +639735.697|220718.496|108.732 +639749.014|220706.472|110.015 +639788.644|220670.667|112.505 +639797.398|220662.760|113.014 +639801.748|220658.829|113.145 +639806.106|220654.887|113.240 +639810.550|220650.867|113.154 +639814.900|220646.938|113.340 +639819.222|220643.028|113.401 +639827.942|220635.142|113.441 +639845.148|220619.589|113.886 +639849.488|220615.663|113.965 +639853.777|220611.783|113.794 +639858.053|220607.918|113.703 +639891.740|220577.474|113.977 +639895.919|220573.698|114.017 +639900.043|220569.970|114.078 +639904.179|220566.233|114.108 +639912.396|220558.802|113.962 +639916.508|220555.087|113.898 +639924.683|220547.695|113.800 +639928.758|220544.010|113.709 +639932.784|220540.368|113.608 +639936.814|220536.725|113.520 +639940.810|220533.117|113.611 +639952.721|220522.351|113.809 +639964.532|220511.674|113.642 +639968.586|220508.001|113.066 +639972.475|220504.484|113.035 +639860.239|220604.297|113.721 +639856.072|220608.058|113.742 +639851.896|220611.831|113.825 +639847.711|220615.611|113.983 +639843.575|220619.345|113.889 +639839.409|220623.106|113.694 +639835.312|220626.800|113.410 +639831.082|220630.622|113.611 +639826.906|220634.393|113.511 +639818.457|220642.019|113.337 +639814.232|220645.832|113.276 +639809.986|220649.666|113.358 +639805.710|220653.528|113.340 +639797.163|220661.243|113.017 +639792.860|220665.126|112.901 +639788.592|220668.975|112.593 +639784.350|220672.798|112.139 +639758.234|220696.365|111.005 +639749.514|220704.223|109.881 +639731.811|220720.185|108.494 +639727.376|220724.184|108.162 +639722.829|220728.283|107.915 +639718.305|220732.368|107.869 +639713.742|220736.489|108.128 +639709.204|220740.588|108.232 +639704.562|220744.779|108.381 +639699.965|220748.931|108.576 +639690.660|220757.343|109.503 +639686.009|220761.546|109.814 +639676.807|220769.846|109.430 +639672.119|220774.080|109.716 +639667.513|220778.237|109.783 +639662.807|220782.489|109.902 +639658.104|220786.735|110.003 +639653.428|220790.960|110.310 +639648.704|220795.227|110.609 +639643.928|220799.543|110.975 +639639.182|220803.837|111.542 +639629.605|220812.491|112.221 +639605.663|220834.116|113.392 +639600.875|220838.435|113.300 +639596.010|220842.828|113.444 +639591.261|220847.116|113.483 +639586.391|220851.511|113.307 +639581.563|220855.873|113.642 +639571.833|220864.660|114.181 +639566.947|220869.074|114.267 +639557.191|220877.886|114.776 +639547.425|220886.701|115.026 +639542.533|220891.123|115.300 +639537.653|220895.531|115.486 +639532.755|220899.947|115.358 +639527.893|220904.339|115.413 +639522.946|220908.799|115.318 +639518.082|220913.194|115.443 +639503.296|220926.538|115.413 +639493.451|220935.423|115.529 +639488.507|220939.888|115.617 +639483.520|220944.387|115.638 +639468.622|220957.847|116.370 +639458.688|220966.811|116.208 +639453.723|220971.292|116.147 +639448.673|220975.855|116.586 +639443.720|220980.332|117.046 +639433.676|220989.400|117.354 +639423.700|220998.407|117.507 +639413.691|221007.441|117.574 +639408.738|221011.916|117.626 +639403.702|221016.457|117.437 +639398.701|221020.971|117.525 +639393.705|221025.479|117.510 +639388.712|221029.984|117.510 +639383.698|221034.514|117.863 +639378.666|221039.055|117.763 +639373.731|221043.508|117.674 +639368.669|221048.086|118.202 +639358.653|221057.124|118.205 +639353.617|221061.665|118.290 +639348.646|221066.149|118.119 +639343.641|221070.654|117.626 +639333.601|221079.703|117.336 +639328.572|221084.239|117.415 +639318.532|221093.294|117.324 +639303.450|221106.885|116.598 +639298.455|221111.378|115.903 +639293.398|221115.935|115.617 +639288.384|221120.455|115.513 +639278.310|221129.538|115.273 +639263.192|221143.160|114.349 +639238.019|221165.834|112.447 +639217.945|221183.854|106.942 +639212.882|221188.414|106.546 +639207.883|221192.894|104.723 +639197.721|221202.105|107.768 +639187.632|221211.240|110.192 +639182.566|221215.821|111.069 +639172.401|221224.996|111.655 +639167.393|221229.534|113.014 +639142.034|221252.431|114.706 +639126.824|221266.141|114.410 +639106.528|221284.456|115.154 +639101.480|221289.013|115.422 +639091.330|221298.172|115.763 +639086.234|221302.772|115.955 +639081.181|221307.328|115.992 +639065.944|221321.081|116.717 +639035.436|221348.580|115.775 +638999.878|221380.682|118.214 +638994.696|221385.348|117.726 +638979.469|221399.098|118.964 +638974.369|221403.700|119.186 +638943.889|221431.221|122.076 +638938.802|221435.814|122.560 +638928.610|221445.001|122.563 +638923.483|221449.618|122.481 +638898.218|221472.430|124.834 +638893.122|221477.032|125.227 +638883.008|221486.158|125.883 +638877.891|221490.776|126.066 +638867.781|221499.901|126.788 +638852.589|221513.608|127.687 +638817.254|221545.503|130.345 +638812.164|221550.093|130.476 +638807.147|221554.619|130.875 +638802.099|221559.173|130.985 +638797.045|221563.730|131.040 +638792.031|221568.247|131.049 +638776.828|221581.954|131.025 +638771.799|221586.486|130.942 +638756.711|221600.086|130.924 +638751.642|221604.649|130.607 +638746.589|221609.203|130.461 +638741.572|221613.723|130.220 +638736.561|221618.237|130.058 +638731.544|221622.757|129.891 +638726.505|221627.299|129.961 +638721.601|221631.728|130.354 +638716.587|221636.251|130.665 +638711.582|221640.759|130.266 +638691.746|221658.654|131.183 +638686.763|221663.144|131.083 +638647.020|221698.955|130.220 +638641.978|221703.490|129.562 +638607.109|221734.866|126.072 +638602.107|221739.365|125.273 +638587.279|221752.721|124.218 +638582.170|221757.303|122.563 +638577.205|221761.774|122.161 +638572.346|221766.154|122.149 +638552.745|221783.808|120.978 +638547.612|221788.410|119.122 +638542.665|221792.861|118.436 +638537.794|221797.247|118.223 +638532.826|221801.715|117.461 +638527.900|221806.150|116.976 +638522.993|221810.569|116.629 +638513.313|221819.293|116.205 +638494.004|221836.691|115.334 +638484.354|221845.381|114.800 +638465.182|221862.660|114.126 +638460.393|221866.973|113.910 +638455.711|221871.194|113.998 +638450.926|221875.504|113.846 +638446.253|221879.723|114.017 +638441.456|221884.039|113.578 +638436.832|221888.217|114.029 +638432.178|221892.418|114.352 +638409.098|221913.251|116.129 +638399.741|221921.685|115.989 +638395.084|221925.885|115.916 +638390.380|221930.121|115.650 +638362.601|221955.164|115.599 +638357.962|221959.343|115.535 +638353.433|221963.430|115.748 +638348.882|221967.536|115.879 +638303.076|222008.803|113.910 +638298.620|222012.820|113.980 +638293.871|222017.084|112.810 +638288.989|222021.458|111.109 +638284.465|222025.533|110.722 +638279.924|222029.624|110.512 +638275.416|222033.684|110.228 +638270.874|222037.771|109.844 +638261.462|222046.223|107.549 +638247.770|222058.540|105.714 +638243.198|222062.652|104.900 +638238.529|222066.846|103.724 +638234.054|222070.878|103.355 +638229.620|222074.871|102.946 +638225.060|222078.968|102.075 +638220.408|222083.147|100.852 +638215.907|222087.197|100.255 +638211.499|222091.169|99.825 +638207.076|222095.150|99.362 +638202.642|222099.139|98.877 +638198.262|222103.090|98.609 +638193.915|222107.003|98.295 +638189.529|222110.954|97.841 +638185.152|222114.892|97.231 +638180.876|222118.747|97.027 +638176.648|222122.557|97.030 +638172.463|222126.334|97.204 +638168.327|222130.071|97.567 +638240.455|222062.826|104.531 +638245.033|222058.702|105.357 +638249.553|222054.626|105.748 +638254.193|222050.448|106.650 +638258.679|222046.397|106.961 +638263.489|222042.075|108.393 +638272.788|222033.690|109.814 +638277.327|222029.596|110.198 +638281.878|222025.490|110.435 +638286.395|222021.412|110.780 +638291.317|222016.990|112.420 +638296.063|222012.719|113.560 +638300.626|222008.598|113.715 +638305.149|222004.511|113.727 +638346.602|221967.085|115.641 +638351.171|221962.958|115.577 +638355.758|221958.812|115.620 +638360.321|221954.685|115.318 +638364.954|221950.500|115.376 +638388.241|221929.463|115.492 +638392.987|221925.181|115.708 +638397.684|221920.938|115.702 +638411.738|221908.240|115.373 +638435.052|221887.163|113.779 +638444.556|221878.577|113.648 +638449.350|221874.248|113.828 +638454.056|221869.993|113.572 +638463.648|221861.334|113.788 +638468.437|221857.009|113.755 +638473.262|221852.650|113.669 +638478.136|221848.255|114.126 +638487.901|221839.446|114.962 +638492.769|221835.057|115.190 +638552.047|221781.592|120.055 +638557.219|221776.944|121.573 +638562.209|221772.445|122.021 +638567.119|221768.010|122.009 +638572.020|221763.581|121.963 +638576.995|221759.095|122.067 +638581.963|221754.611|122.487 +638587.282|221749.844|124.852 +638592.219|221745.385|124.840 +638602.199|221736.384|125.526 +638617.329|221722.750|127.535 +638627.427|221713.646|128.675 +638652.600|221690.938|130.543 +638657.560|221686.464|130.665 +638682.632|221663.826|131.177 +638707.705|221641.177|130.753 +638717.736|221632.115|130.503 +638722.726|221627.601|129.997 +638747.960|221604.823|130.574 +638753.041|221600.230|130.567 +638758.135|221595.639|131.101 +638768.297|221586.462|131.195 +638783.406|221572.813|131.156 +638788.520|221568.192|131.168 +638793.565|221563.632|130.982 +638798.579|221559.103|131.006 +638813.745|221545.393|130.470 +638818.827|221540.800|130.272 +638823.810|221536.289|129.525 +638828.867|221531.713|129.074 +638833.939|221527.126|128.809 +638849.066|221513.444|127.623 +638859.271|221504.224|127.315 +638864.278|221499.694|126.965 +638874.440|221490.504|126.251 +638884.627|221481.296|125.898 +638889.653|221476.746|125.191 +638894.716|221472.168|124.965 +638899.815|221467.556|124.572 +638915.052|221453.776|123.319 +638920.026|221449.271|122.557 +638925.144|221444.647|122.493 +638930.237|221440.039|122.082 +638975.963|221398.689|119.052 +638981.047|221394.087|118.500 +639006.568|221371.026|117.790 +639016.828|221361.757|117.684 +639037.164|221343.353|115.297 +639052.508|221329.503|116.114 +639057.668|221324.848|116.428 +639062.728|221320.279|116.647 +639083.119|221301.854|116.092 +639088.264|221297.203|115.858 +639093.312|221292.640|115.586 +639098.408|221288.031|115.376 +639103.507|221283.423|115.209 +639113.700|221274.209|114.690 +639128.955|221260.429|114.666 +639134.060|221255.823|114.962 +639144.256|221246.600|114.483 +639149.358|221241.991|114.684 +639154.458|221237.377|114.349 +639164.611|221228.184|113.404 +639174.821|221218.930|111.697 +639184.990|221209.716|110.310 +639195.176|221200.471|107.842 +639205.430|221191.160|105.037 +639210.483|221186.609|106.311 +639220.636|221177.465|108.518 +639225.668|221172.948|110.643 +639230.761|221168.361|111.685 +639235.763|221163.847|112.353 +639240.856|221159.256|113.191 +639245.913|221154.687|113.416 +639261.031|221141.038|114.349 +639286.211|221118.297|115.794 +639291.231|221113.756|115.718 +639296.288|221109.193|116.041 +639301.286|221104.682|116.623 +639306.297|221100.155|116.842 +639311.311|221095.623|116.937 +639326.359|221082.029|117.409 +639331.376|221077.494|117.543 +639336.399|221072.955|117.620 +639341.377|221068.456|117.626 +639346.388|221063.933|117.982 +639356.342|221054.938|118.147 +639366.303|221045.934|118.257 +639371.299|221041.411|118.025 +639376.261|221036.922|117.616 +639401.038|221014.525|117.531 +639405.988|221010.047|117.495 +639410.871|221005.637|117.778 +639415.794|221001.187|117.531 +639420.707|220996.743|117.421 +639425.633|220992.287|117.138 +639440.321|220979.009|117.126 +639445.262|220974.535|116.766 +639450.120|220970.137|116.260 +639455.061|220965.668|116.022 +639459.868|220961.325|116.239 +639464.754|220956.908|116.135 +639479.363|220943.698|115.903 +639484.200|220939.324|115.876 +639489.083|220934.902|115.346 +639493.865|220930.583|115.455 +639503.506|220921.865|115.410 +639508.353|220917.482|115.413 +639513.120|220913.172|115.269 +639517.963|220908.789|115.327 +639522.709|220904.501|115.440 +639527.503|220900.167|115.556 +639532.273|220895.851|115.455 +639537.037|220891.541|115.446 +639560.766|220870.065|114.669 +639584.419|220848.652|113.471 +639589.088|220844.431|113.657 +639598.461|220835.951|113.413 +639603.118|220831.736|113.355 +639617.102|220819.081|112.819 +639626.435|220810.631|112.368 +639631.068|220806.437|112.249 +639635.762|220802.185|111.676 +639645.046|220793.776|111.014 +639649.704|220789.551|110.423 +639654.352|220785.345|110.316 +639659.006|220781.130|109.814 +639672.701|220768.743|109.725 +639677.240|220764.637|109.786 +639681.757|220760.547|109.673 +639686.283|220756.456|109.884 +639699.978|220744.054|108.744 +639704.510|220739.951|108.637 +639709.006|220735.879|108.451 +639713.493|220731.822|108.366 +639718.010|220727.732|108.098 +639722.451|220723.718|108.341 +639731.250|220715.771|109.131 +639735.648|220711.794|109.372 +639740.047|220707.819|109.637 +639753.187|220695.950|110.871 +639757.558|220691.997|111.045 +639761.922|220688.053|111.280 +639766.229|220684.161|111.566 +639770.633|220680.177|111.581 +639775.007|220676.224|111.801 +639779.329|220672.322|112.362 +639787.955|220664.528|112.996 +639792.235|220660.660|113.233 +639796.587|220656.722|113.349 +639805.213|220648.926|113.517 +639809.557|220644.994|113.438 +639813.848|220641.117|113.688 +639818.134|220637.240|113.691 +639822.422|220633.356|113.688 +639826.695|220629.491|113.788 +639830.938|220625.657|113.806 +639835.205|220621.795|113.965 +639839.442|220617.967|114.047 +639843.697|220614.114|114.026 +639847.940|220610.277|114.099 +639852.207|220606.418|114.059 +639856.493|220602.538|113.934 +639860.702|220598.731|113.962 +639873.284|220587.356|114.114 +639877.478|220583.558|114.002 +639881.727|220579.715|113.907 +639885.903|220575.938|113.944 +639890.027|220572.207|113.983 +639894.218|220568.419|113.977 +639898.382|220564.648|113.846 +639902.548|220560.878|113.730 +639906.663|220557.159|113.895 +639910.766|220553.453|114.126 +639914.850|220549.756|114.200 +639918.968|220546.031|114.123 +639923.110|220542.279|113.947 +639927.246|220538.539|113.825 +639931.303|220534.869|113.852 +639935.332|220531.227|114.023 +639939.432|220527.517|113.867 +639943.474|220523.860|113.992 +639947.503|220520.217|113.965 +639951.496|220516.602|113.867 +639955.553|220512.930|113.724 +639959.500|220509.360|113.642 +639963.490|220505.749|113.602 +639967.586|220502.036|113.084 +639869.663|220588.255|113.938 +639865.463|220592.041|114.078 +639861.223|220595.860|114.154 +639852.786|220603.458|114.139 +639848.534|220607.290|114.081 +639844.270|220611.130|114.084 +639840.006|220614.971|114.105 +639835.766|220618.790|114.017 +639831.502|220622.633|114.084 +639827.238|220626.471|113.870 +639822.998|220630.290|113.834 +639818.701|220634.161|113.837 +639814.363|220638.069|113.813 +639805.759|220645.817|113.681 +639801.376|220649.764|113.672 +639784.154|220665.266|112.868 +639779.832|220669.155|112.572 +639775.522|220673.032|112.215 +639771.146|220676.970|111.972 +639766.854|220680.829|111.536 +639762.492|220684.758|111.246 +639758.176|220688.641|110.978 +639753.799|220692.579|110.792 +639749.346|220696.593|110.810 +639744.963|220700.534|110.374 +639736.246|220708.377|109.570 +639731.799|220712.382|109.600 +639727.385|220716.351|109.091 +639718.519|220724.330|108.384 +639714.020|220728.390|108.509 +639709.536|220732.435|108.558 +639704.992|220736.537|108.698 +639700.456|220740.628|108.789 +639686.716|220753.039|109.829 +639682.150|220757.157|109.884 +639677.657|220761.208|109.792 +639673.045|220765.369|109.841 +639654.620|220781.992|110.155 +639649.945|220786.220|110.841 +639635.896|220798.903|111.636 +639626.496|220807.394|112.465 +639621.808|220811.625|112.615 +639617.121|220815.856|112.810 +639607.678|220824.381|113.386 +639598.238|220832.897|113.633 +639588.780|220841.432|113.715 +639584.053|220845.693|113.569 +639579.264|220850.021|113.992 +639574.503|220854.315|114.169 +639569.764|220858.592|114.187 +639536.025|220889.041|115.291 +639531.161|220893.427|115.297 +639526.330|220897.789|115.501 +639521.438|220902.200|115.337 +639516.625|220906.540|115.379 +639506.886|220915.321|115.205 +639501.991|220919.735|115.169 +639497.066|220924.182|115.489 +639492.186|220928.583|115.340 +639487.288|220933.003|115.425 +639482.335|220937.471|115.593 +639462.507|220955.366|116.178 +639457.594|220959.795|116.007 +639452.620|220964.281|116.019 +639447.609|220968.811|116.544 +639442.610|220973.322|116.925 +639427.593|220986.876|117.327 +639422.640|220991.339|117.193 +639412.602|221000.400|117.592 +639407.552|221004.954|117.549 +639402.556|221009.459|117.464 +639397.554|221013.973|117.534 +639382.412|221027.634|117.653 +639372.335|221036.720|117.571 +639357.095|221050.479|118.235 +639341.889|221064.195|117.616 +639336.817|221068.773|117.531 +639331.742|221073.351|117.516 +639326.667|221077.932|117.562 +639321.595|221082.514|117.577 +639306.358|221096.254|116.949 +639301.253|221100.860|116.681 +639296.150|221105.456|116.251 +639291.094|221110.016|115.958 +639270.657|221128.453|115.318 +639265.548|221133.062|115.181 +639260.455|221137.649|114.489 +639250.244|221146.854|113.980 +639234.937|221160.655|112.862 +639209.368|221183.640|106.726 +639193.969|221197.554|107.598 +639152.998|221234.630|114.105 +639142.796|221243.845|114.718 +639137.648|221248.493|114.800 +639132.546|221253.098|114.901 +639122.341|221262.306|114.712 +639117.245|221266.912|114.919 +639112.139|221271.514|114.748 +639096.844|221285.328|115.437 +639091.699|221289.976|115.684 +639086.649|221294.536|115.800 +639076.459|221303.741|116.513 +639040.791|221335.916|115.166 +639035.689|221340.521|115.315 +638995.178|221377.128|118.211 +638985.065|221386.257|118.525 +638974.967|221395.379|119.107 +638954.813|221413.591|121.180 +638924.580|221440.889|122.646 +638914.516|221449.978|123.179 +638909.520|221454.492|123.609 +638904.485|221459.046|124.191 +638899.455|221463.581|124.197 +638894.475|221468.086|124.886 +638889.409|221472.658|125.084 +638884.404|221477.179|125.456 +638879.403|221481.699|125.877 +638874.392|221486.222|126.191 +638869.390|221490.742|126.608 +638859.374|221499.789|127.355 +638849.349|221508.844|128.041 +638844.317|221513.386|128.187 +638839.279|221517.933|128.242 +638834.326|221522.408|128.766 +638824.282|221531.479|129.351 +638814.312|221540.486|130.272 +638809.314|221544.997|130.360 +638804.348|221549.483|130.778 +638794.318|221558.539|131.168 +638789.291|221563.071|131.046 +638784.338|221567.543|131.189 +638779.279|221572.106|131.281 +638759.241|221590.186|131.354 +638749.158|221599.273|130.759 +638734.098|221612.854|130.394 +638724.052|221621.916|130.363 +638709.138|221635.376|130.747 +638704.161|221639.866|130.601 +638689.262|221653.317|131.329 +638684.242|221657.840|130.951 +638654.359|221684.793|130.610 +638649.354|221689.301|130.150 +638639.360|221698.308|129.458 +638634.346|221702.826|129.037 +638609.319|221725.369|126.645 +638579.308|221752.371|123.194 +638574.242|221756.918|122.179 +638569.298|221761.372|121.948 +638564.440|221765.752|121.966 +638554.400|221774.777|120.396 +638549.410|221779.263|119.704 +638544.482|221783.698|119.403 +638534.618|221792.574|118.546 +638519.692|221806.001|116.547 +638514.800|221810.402|116.035 +638505.010|221819.214|115.346 +638495.369|221827.907|115.593 +638480.754|221841.059|114.294 +638475.908|221845.420|113.971 +638471.070|221849.776|113.703 +638466.248|221854.119|113.541 +638456.733|221862.696|113.703 +638451.950|221867.003|113.553 +638447.165|221871.313|113.410 +638442.425|221875.586|113.520 +638437.643|221879.896|113.428 +638432.906|221884.161|113.337 +638428.270|221888.345|113.758 +638409.714|221905.085|115.062 +638405.151|221909.209|115.666 +638395.836|221917.600|115.766 +638391.185|221921.794|115.742 +638386.506|221926.007|115.608 +638381.794|221930.249|115.340 +638363.293|221946.919|115.367 +638358.690|221951.067|115.212 +638354.118|221955.191|115.468 +638349.559|221959.300|115.562 +638340.344|221967.600|115.370 +638335.821|221971.675|115.199 +638317.079|221988.527|112.825 +638294.661|222008.733|113.352 +638289.940|222012.972|112.316 +638285.108|222017.307|110.838 +638280.579|222021.379|110.448 +638276.047|222025.457|110.070 +638271.551|222029.508|109.847 +638267.089|222033.528|109.792 +638262.498|222037.652|109.012 +638257.594|222042.044|107.186 +638252.986|222046.180|106.162 +638248.545|222050.179|106.071 +638243.921|222054.334|105.248 +638239.361|222058.424|104.507 +638234.856|222062.472|103.779 +638230.305|222066.559|103.111 +638225.849|222070.564|102.632 +638221.381|222074.579|102.117 +638217.056|222078.471|101.983 +638212.493|222082.567|101.142 +638208.055|222086.554|100.606 +638203.608|222090.547|100.057 +638199.146|222094.555|99.249 +638194.695|222098.551|98.728 +638190.361|222102.447|98.256 +638185.999|222106.369|97.902 +638181.641|222110.289|97.573 +638177.358|222114.139|97.356 +638173.180|222117.900|97.332 +638169.028|222121.640|97.436 +638239.141|222055.855|104.498 +638243.726|222051.722|105.141 +638248.276|222047.613|105.677 +638252.842|222043.495|106.287 +638257.570|222039.240|107.592 +638262.465|222034.845|109.390 +638266.915|222030.818|109.390 +638271.411|222026.755|109.597 +638275.977|222022.634|109.881 +638280.646|222018.425|110.633 +638285.093|222014.405|110.685 +638289.933|222010.052|112.206 +638294.499|222005.925|112.368 +638299.111|222001.765|112.740 +638317.271|221985.345|112.740 +638331.523|221972.495|114.928 +638340.820|221964.098|115.449 +638350.077|221955.731|115.385 +638354.609|221951.628|115.193 +638359.248|221947.431|115.023 +638363.835|221943.283|114.855 +638377.881|221930.591|115.102 +638382.642|221926.290|115.358 +638387.375|221922.014|115.504 +638392.121|221917.725|115.727 +638406.123|221905.061|115.141 +638410.674|221900.937|114.483 +638424.735|221888.214|113.621 +638438.963|221875.346|113.236 +638448.530|221866.695|113.236 +638453.243|221862.434|113.017 +638458.113|221858.036|113.392 +638472.579|221844.966|113.590 +638482.378|221836.121|114.315 +638501.944|221818.449|115.337 +638506.842|221814.029|115.824 +638511.722|221809.622|115.961 +638516.678|221805.144|116.266 +638521.679|221800.636|117.159 +638526.712|221796.101|117.964 +638531.628|221791.663|118.418 +638536.627|221787.155|119.089 +638541.562|221782.699|119.412 +638546.524|221778.218|119.622 +638551.504|221773.725|120.268 +638556.555|221769.174|121.067 +638561.624|221764.606|122.030 +638566.497|221760.198|121.798 +638571.432|221755.742|121.978 +638576.498|221751.179|123.008 +638596.602|221733.043|125.523 +638611.733|221719.401|127.507 +638616.756|221714.862|127.894 +638631.767|221701.314|129.141 +638641.823|221692.237|129.869 +638646.840|221687.707|130.010 +638651.927|221683.117|130.711 +638671.931|221665.045|131.244 +638676.951|221660.507|131.217 +638681.925|221656.008|130.857 +638691.999|221646.907|131.162 +638696.955|221642.426|131.104 +638701.999|221637.863|131.003 +638706.968|221633.371|130.683 +638712.037|221628.789|130.808 +638717.011|221624.294|130.577 +638722.068|221619.722|130.665 +638727.115|221615.159|130.686 +638732.135|221610.620|130.473 +638737.167|221606.073|130.409 +638742.209|221601.513|130.455 +638747.329|221596.892|130.778 +638752.392|221592.320|131.049 +638767.580|221578.604|131.113 +638782.805|221564.858|131.293 +638787.908|221560.246|131.180 +638792.952|221555.689|131.015 +638798.060|221551.074|131.012 +638803.093|221546.527|130.747 +638808.119|221541.982|130.442 +638818.314|221532.768|129.830 +638828.431|221523.618|128.955 +638833.445|221519.083|128.605 +638838.572|221514.450|128.416 +638843.622|221509.881|127.916 +638848.718|221505.281|127.980 +638853.802|221500.679|127.321 +638858.880|221496.091|127.205 +638869.033|221486.908|126.389 +638874.099|221482.330|126.151 +638879.214|221477.709|125.947 +638884.310|221473.100|125.477 +638889.351|221468.541|124.962 +638894.484|221463.904|125.069 +638904.680|221454.687|124.273 +638909.761|221450.088|123.688 +638945.486|221417.797|121.932 +638950.586|221413.189|121.661 +638976.064|221390.140|119.137 +638986.290|221380.892|118.186 +639011.863|221357.791|117.696 +639022.101|221348.534|117.135 +639027.167|221343.944|116.031 +639032.324|221339.287|116.050 +639052.749|221320.843|116.175 +639057.857|221316.232|116.416 +639083.354|221293.201|115.964 +639088.499|221288.550|115.693 +639093.543|221283.987|115.288 +639103.745|221274.773|115.145 +639108.847|221270.167|115.145 +639124.100|221256.390|115.178 +639134.298|221247.176|114.797 +639139.352|221242.610|114.565 +639144.405|221238.050|114.669 +639154.561|221228.870|113.709 +639159.664|221224.261|113.541 +639169.780|221215.102|111.463 +639195.066|221192.217|107.348 +639200.193|221187.572|106.107 +639205.207|221183.055|106.720 +639260.300|221133.449|114.730 +639265.311|221128.929|114.965 +639280.285|221115.426|115.913 +639290.262|221106.428|116.288 +639295.230|221101.948|116.428 +639300.186|221097.479|116.842 +639305.145|221093.011|117.239 +639320.056|221079.554|117.540 +639325.024|221075.073|117.735 +639330.002|221070.584|117.757 +639334.988|221066.079|117.583 +639354.742|221048.257|118.153 +639364.673|221039.293|118.034 +639369.638|221034.803|117.552 +639374.582|221030.344|117.537 +639379.507|221025.903|117.842 +639394.311|221012.534|117.583 +639399.228|221008.093|117.336 +639404.172|221003.637|117.495 +639414.044|220994.722|117.272 +639418.958|220990.287|117.208 +639423.868|220985.852|117.190 +639438.572|220972.581|117.046 +639443.549|220968.085|116.912 +639448.462|220963.644|116.373 +639453.418|220959.167|115.946 +639458.283|220954.778|116.096 +639463.199|220950.340|116.196 +639473.008|220941.479|115.650 +639487.641|220928.269|115.401 +639492.539|220923.847|115.315 +639497.407|220919.448|115.065 +639502.250|220915.081|115.138 +639511.946|220906.330|115.202 +639516.786|220901.962|115.352 +639521.599|220897.615|115.282 +639526.397|220893.290|115.431 +639531.203|220888.950|115.468 +639536.022|220884.600|115.437 +639540.841|220880.254|115.431 +639545.712|220875.850|114.928 +639550.510|220871.515|114.693 +639555.344|220867.151|114.608 +639560.089|220862.871|114.907 +639564.835|220858.586|114.794 +639569.651|220854.233|114.474 +639574.458|220849.893|114.300 +639579.280|220845.537|114.017 +639584.001|220841.270|113.752 +639588.738|220836.997|113.843 +639593.502|220832.693|113.691 +639598.263|220828.395|113.605 +639603.024|220824.098|113.557 +639612.485|220815.551|113.179 +639617.185|220811.305|112.883 +639636.052|220794.261|111.813 +639650.137|220781.532|110.743 +639654.876|220777.247|110.335 +639668.711|220764.756|109.969 +639682.452|220752.357|110.124 +639687.118|220748.138|109.710 +639696.271|220739.869|109.189 +639700.819|220735.760|108.988 +639705.403|220731.621|108.896 +639709.884|220727.576|108.856 +639714.419|220723.483|108.808 +639718.903|220719.435|108.792 +639727.772|220711.440|109.454 +639749.770|220691.610|111.179 +639754.132|220687.675|111.432 +639797.319|220648.727|113.614 +639801.665|220644.802|113.514 +639805.899|220640.986|113.791 +639814.378|220633.335|114.035 +639818.618|220629.510|114.032 +639822.846|220625.694|114.111 +639839.668|220610.515|114.251 +639843.831|220606.753|114.197 +639848.044|220602.949|114.172 +639856.362|220595.439|114.206 +639860.480|220591.715|114.181 +639864.686|220587.914|113.992 +639868.828|220584.171|113.874 +639872.864|220580.528|114.069 +639876.972|220576.819|114.169 +639881.044|220573.137|114.194 +639885.117|220569.461|114.245 +639889.192|220565.779|114.291 +639893.279|220562.088|114.294 +639897.321|220558.436|114.282 +639901.347|220554.800|114.352 +639905.361|220551.176|114.504 +639917.398|220540.301|114.559 +639921.434|220536.649|114.148 +639929.435|220529.422|113.995 +639933.357|220525.878|114.172 +639937.277|220522.336|114.142 +639941.209|220518.785|114.075 +639945.114|220515.258|114.136 +639949.052|220511.698|114.069 +639964.718|220497.534|113.328 +639869.304|220581.607|114.090 +639865.024|220585.466|114.087 +639860.800|220589.273|114.093 +639856.575|220593.080|113.849 +639852.219|220597.009|114.032 +639847.870|220600.932|114.212 +639843.511|220604.864|114.184 +639839.211|220608.738|114.130 +639834.861|220612.660|114.084 +639830.493|220616.595|114.145 +639826.132|220620.530|114.215 +639821.730|220624.499|114.212 +639817.408|220628.391|114.081 +639812.982|220632.381|113.983 +639808.563|220636.362|113.852 +639804.192|220640.303|113.761 +639799.775|220644.283|113.654 +639795.389|220648.234|113.395 +639791.019|220652.169|113.051 +639786.572|220656.177|112.880 +639782.097|220660.209|112.877 +639777.650|220664.217|112.749 +639773.221|220668.207|112.508 +639759.834|220680.265|111.892 +639750.974|220688.245|111.277 +639746.512|220692.259|110.694 +639719.534|220716.552|108.890 +639715.007|220720.630|108.841 +639710.414|220724.766|108.914 +639705.830|220728.896|108.963 +639701.240|220733.032|109.070 +639696.658|220737.156|109.119 +639691.980|220741.378|109.545 +639682.723|220749.720|110.085 +639678.145|220753.841|109.862 +639673.466|220758.056|110.018 +639668.867|220762.196|109.981 +639654.946|220774.738|110.188 +639650.289|220778.938|110.673 +639631.446|220795.931|112.307 +639622.098|220804.356|112.700 +639612.707|220812.820|113.151 +639603.344|220821.257|113.477 +639598.668|220825.469|113.624 +639593.947|220829.721|113.761 +639589.231|220833.973|113.889 +639584.577|220838.164|113.922 +639579.898|220842.373|113.742 +639575.168|220846.641|114.090 +639570.383|220850.954|114.474 +639565.625|220855.242|114.663 +639560.915|220859.485|114.888 +639556.173|220863.758|114.983 +639546.724|220872.268|114.910 +639537.168|220880.879|115.465 +639532.356|220885.213|115.410 +639527.582|220889.511|115.468 +639522.824|220893.796|115.410 +639518.082|220898.064|115.205 +639513.257|220902.410|115.364 +639508.471|220906.720|115.148 +639498.870|220915.364|115.081 +639494.064|220919.695|115.148 +639489.217|220924.057|115.123 +639484.319|220928.477|115.736 +639479.534|220932.786|115.650 +639469.783|220941.571|115.931 +639464.937|220945.939|116.065 +639460.045|220950.346|116.172 +639455.195|220954.708|115.779 +639450.312|220959.103|115.815 +639445.381|220963.556|116.541 +639440.473|220967.982|116.979 +639435.548|220972.420|117.074 +639430.705|220976.778|116.714 +639425.712|220981.277|117.080 +639420.802|220985.697|117.007 +639415.882|220990.129|117.092 +639410.923|220994.600|117.129 +639405.991|220999.044|117.458 +639400.990|221003.546|117.403 +639396.094|221007.953|117.260 +639391.087|221012.464|117.360 +639386.124|221016.936|117.543 +639381.120|221021.447|117.684 +639376.121|221025.949|117.723 +639371.144|221030.426|117.424 +639366.151|221034.925|117.440 +639361.140|221039.442|117.821 +639356.092|221043.987|117.955 +639351.103|221048.480|117.955 +639330.986|221066.585|117.537 +639325.951|221071.117|117.607 +639315.798|221080.258|117.583 +639300.643|221093.892|117.022 +639295.586|221098.439|116.571 +639290.515|221103.002|116.492 +639285.403|221107.602|116.281 +639280.328|221112.171|116.364 +639275.229|221116.752|115.736 +639259.955|221130.486|114.617 +639244.575|221144.321|113.913 +639239.464|221148.920|113.727 +639224.096|221162.731|112.203 +639218.957|221167.337|110.697 +639208.712|221176.514|107.717 +639203.549|221181.153|107.131 +639193.262|221190.416|107.183 +639188.041|221195.131|108.073 +639146.795|221232.354|114.233 +639136.441|221241.687|114.913 +639131.287|221246.326|114.946 +639126.133|221250.968|115.169 +639120.978|221255.607|115.172 +639100.365|221274.169|115.379 +639095.156|221278.854|115.081 +639090.002|221283.496|115.288 +639084.856|221288.135|115.687 +639079.708|221292.774|116.083 +639059.049|221311.379|116.513 +639053.892|221316.021|116.403 +639022.997|221343.837|116.720 +639012.765|221353.064|117.763 +638992.273|221371.516|118.025 +638982.078|221380.706|118.817 +638976.985|221385.299|119.326 +638956.755|221403.560|121.954 +638941.497|221417.307|121.993 +638931.338|221426.466|122.579 +638926.278|221431.029|122.832 +638921.212|221435.595|122.975 +638916.155|221440.154|123.289 +638911.099|221444.714|123.618 +638906.091|221449.228|123.965 +638890.964|221462.868|124.944 +638885.892|221467.440|125.090 +638880.942|221471.906|125.602 +638875.937|221476.420|126.047 +638870.917|221480.946|126.270 +638865.915|221485.460|126.745 +638855.933|221494.461|127.416 +638850.910|221498.990|127.675 +638845.893|221503.513|127.995 +638840.918|221508.000|128.297 +638835.883|221512.535|128.455 +638811.069|221534.914|130.238 +638806.061|221539.428|130.238 +638801.084|221543.915|130.613 +638796.155|221548.359|130.991 +638791.166|221552.858|131.229 +638786.152|221557.375|131.284 +638781.196|221561.843|131.409 +638776.176|221566.363|131.445 +638766.160|221575.382|131.314 +638761.192|221579.860|131.430 +638756.205|221584.353|131.372 +638746.144|221593.402|130.595 +638741.169|221597.886|130.735 +638736.149|221602.406|130.510 +638731.166|221606.896|130.616 +638726.240|221611.334|130.839 +638721.199|221615.869|130.503 +638716.276|221620.307|130.775 +638711.351|221624.748|131.037 +638696.537|221638.095|131.226 +638686.613|221647.029|130.964 +638671.742|221660.425|131.040 +638637.050|221691.655|129.644 +638632.026|221696.172|129.184 +638572.136|221750.048|122.829 +638567.089|221754.584|121.957 +638562.200|221758.988|121.795 +638552.339|221767.864|121.021 +638547.411|221772.302|120.698 +638542.458|221776.761|120.238 +638537.517|221781.205|119.589 +638532.573|221785.658|119.235 +638527.687|221790.056|118.970 +638522.722|221794.522|118.250 +638512.798|221803.443|116.690 +638507.838|221807.906|116.102 +638498.134|221816.647|115.657 +638493.037|221821.222|114.401 +638488.429|221825.392|115.300 +638483.470|221829.851|114.578 +638478.416|221834.387|113.374 +638464.042|221847.344|113.346 +638454.355|221856.067|112.889 +638444.858|221864.632|112.962 +638440.042|221868.972|112.950 +638435.326|221873.221|112.944 +638430.590|221877.495|113.115 +638425.865|221881.753|113.102 +638411.854|221894.396|113.995 +638407.202|221898.593|114.416 +638379.289|221923.766|115.242 +638374.604|221927.988|115.132 +638356.072|221944.691|115.105 +638351.451|221948.858|115.132 +638346.934|221952.933|115.416 +638342.387|221957.035|115.590 +638282.329|222011.104|111.200 +638277.626|222015.328|110.298 +638273.044|222019.449|109.710 +638268.479|222023.561|109.433 +638263.967|222027.624|109.192 +638259.594|222031.568|109.295 +638250.181|222040.014|106.869 +638245.384|222044.318|105.321 +638240.891|222048.360|104.818 +638236.389|222052.410|104.297 +638231.860|222056.489|103.678 +638227.337|222060.558|103.117 +638222.868|222064.578|102.581 +638218.391|222068.608|102.029 +638213.916|222072.634|101.505 +638209.430|222076.670|100.962 +638204.982|222080.672|100.386 +638200.548|222084.661|99.871 +638196.101|222088.663|99.338 +638191.702|222092.623|98.789 +638187.338|222096.552|98.402 +638182.994|222100.462|98.118 +638178.660|222104.364|97.673 +638174.335|222108.262|97.484 +638170.089|222112.090|97.405 +638165.889|222115.879|97.518 +638161.661|222119.686|97.347 +638153.267|222127.251|97.262 +638233.789|222052.447|103.983 +638238.184|222048.482|104.281 +638242.729|222044.388|104.992 +638247.459|222040.136|106.257 +638252.080|222035.982|107.329 +638256.917|222031.641|109.091 +638261.270|222027.706|108.887 +638265.720|222023.695|109.094 +638270.249|222019.611|109.439 +638274.885|222015.435|110.256 +638279.393|222011.366|110.329 +638284.048|222007.175|111.045 +638288.452|222003.194|110.713 +638293.128|221998.988|111.557 +638297.755|221994.815|112.005 +638325.498|221969.803|114.331 +638348.598|221948.958|115.038 +638353.237|221944.770|115.084 +638357.758|221940.683|114.852 +638362.382|221936.507|114.617 +638367.091|221932.261|115.050 +638371.754|221928.052|115.047 +638376.360|221923.894|115.038 +638381.124|221919.597|115.297 +638385.885|221915.305|115.827 +638404.417|221898.559|114.626 +638409.019|221894.396|113.947 +638427.783|221877.443|112.938 +638432.577|221873.112|112.801 +638437.359|221868.796|112.874 +638451.685|221855.860|112.602 +638461.241|221847.231|112.353 +638466.154|221842.802|112.983 +638470.961|221838.462|112.795 +638480.708|221829.671|113.200 +638490.629|221820.735|114.672 +638500.535|221811.807|115.617 +638505.510|221807.329|116.233 +638510.435|221802.888|116.626 +638535.347|221780.446|119.753 +638545.295|221771.479|120.582 +638550.251|221767.010|121.091 +638560.200|221758.043|121.771 +638565.135|221753.590|121.923 +638570.259|221748.981|122.963 +638575.352|221744.400|124.157 +638580.457|221739.804|124.837 +638600.425|221721.802|126.236 +638615.558|221708.163|127.647 +638630.664|221694.547|129.171 +638635.739|221689.975|129.653 +638660.739|221667.420|130.223 +638670.773|221658.370|130.735 +638685.793|221644.816|131.107 +638690.868|221640.235|131.174 +638695.836|221635.751|131.192 +638700.905|221631.176|131.265 +638710.872|221622.175|130.863 +638715.929|221617.609|130.897 +638720.900|221613.120|130.644 +638726.012|221608.508|130.772 +638741.136|221594.856|130.759 +638746.177|221590.305|130.778 +638756.385|221581.097|131.186 +638761.472|221576.501|131.299 +638766.556|221571.911|131.381 +638771.576|221567.378|131.357 +638781.763|221558.179|131.363 +638786.813|221553.613|131.235 +638796.911|221544.491|130.991 +638807.043|221535.325|130.171 +638812.139|221530.723|130.086 +638817.208|221526.139|129.744 +638822.195|221521.625|129.046 +638827.291|221517.022|129.010 +638842.491|221503.279|128.053 +638867.890|221480.315|126.315 +638872.999|221475.697|126.014 +638878.119|221471.070|125.867 +638883.213|221466.462|125.380 +638888.312|221461.850|124.993 +638903.683|221447.954|124.191 +638908.788|221443.340|123.911 +638913.940|221438.685|123.575 +638919.045|221434.071|123.328 +638929.295|221424.802|122.758 +638944.709|221410.872|122.134 +638990.807|221369.182|118.034 +639016.471|221345.992|117.418 +639021.665|221341.298|117.110 +639031.888|221332.048|115.983 +639037.049|221327.387|116.208 +639052.511|221313.424|116.190 +639057.668|221308.770|116.437 +639083.406|221285.514|115.672 +639093.653|221276.254|115.273 +639098.761|221271.645|115.718 +639124.359|221248.520|115.157 +639129.510|221243.869|115.029 +639134.609|221239.260|115.056 +639139.708|221234.649|114.629 +639149.910|221225.422|113.898 +639155.009|221220.805|113.191 +639165.171|221211.603|111.731 +639175.388|221202.361|110.795 +639210.892|221170.253|108.622 +639220.974|221161.189|111.627 +639226.019|221156.650|112.749 +639241.082|221143.059|113.962 +639246.084|221138.545|114.465 +639261.059|221125.027|115.233 +639271.074|221115.987|115.763 +639285.952|221102.560|116.675 +639290.920|221098.074|116.696 +639295.843|221093.627|116.723 +639300.796|221089.158|117.211 +639305.761|221084.678|117.403 +639310.683|221080.231|117.479 +639325.512|221066.832|117.437 +639330.440|221062.378|117.467 +639340.304|221053.469|117.476 +639350.149|221044.581|117.897 +639355.050|221040.149|117.644 +639359.991|221035.684|117.565 +639364.889|221031.255|117.406 +639369.830|221026.796|117.434 +639374.701|221022.398|117.799 +639379.654|221017.923|117.662 +639384.521|221013.519|117.290 +639389.474|221009.044|117.226 +639394.342|221004.643|116.958 +639399.234|221000.227|117.123 +639404.092|220995.834|117.034 +639409.000|220991.403|117.028 +639413.864|220987.004|116.931 +639418.775|220982.569|116.912 +639423.588|220978.220|116.918 +639428.452|220973.822|116.867 +639433.314|220969.433|116.928 +639438.160|220965.059|117.211 +639443.019|220960.660|116.708 +639447.956|220956.186|115.849 +639452.793|220951.815|115.718 +639457.597|220947.481|116.019 +639462.431|220943.113|115.967 +639472.081|220934.396|116.132 +639476.958|220929.982|115.638 +639481.823|220925.584|115.327 +639486.675|220921.198|115.209 +639501.095|220908.174|115.388 +639510.751|220899.450|115.324 +639520.368|220890.767|115.273 +639525.168|220886.432|115.364 +639529.978|220882.092|115.382 +639534.736|220877.797|115.458 +639544.371|220869.089|114.977 +639549.129|220864.798|115.141 +639553.905|220860.485|115.126 +639558.693|220856.160|115.010 +639563.491|220851.825|114.837 +639568.264|220847.512|114.486 +639573.074|220843.166|114.267 +639577.850|220838.847|113.928 +639582.575|220834.586|114.096 +639587.329|220830.288|114.002 +639592.078|220826.003|113.995 +639606.285|220813.167|113.584 +639611.009|220808.900|113.447 +639615.795|220804.578|113.255 +639625.244|220796.038|112.731 +639630.032|220791.709|112.206 +639644.169|220778.932|111.395 +639648.902|220774.650|111.008 +639653.669|220770.340|110.420 +639667.718|220757.651|110.289 +639672.329|220753.487|110.201 +639676.987|220749.281|110.170 +639681.629|220745.093|110.283 +639686.228|220740.942|110.353 +639695.573|220732.490|109.509 +639700.148|220728.360|109.478 +639704.736|220724.214|109.356 +639709.317|220720.078|109.317 +639713.901|220715.939|109.283 +639718.458|220711.827|109.436 +639736.289|220695.752|111.176 +639740.766|220691.710|111.271 +639745.231|220687.681|111.466 +639754.125|220679.656|111.825 +639758.566|220675.647|111.901 +639762.962|220671.679|111.972 +639767.363|220667.707|112.322 +639771.795|220663.711|112.517 +639776.193|220659.740|112.618 +639780.582|220655.781|112.788 +639784.904|220651.879|113.060 +639789.235|220647.972|113.307 +639793.594|220644.043|113.709 +639797.962|220640.102|113.779 +639802.272|220636.209|113.886 +639806.597|220632.305|113.928 +639810.916|220628.406|114.032 +639815.238|220624.508|114.136 +639819.508|220620.652|114.242 +639823.836|220616.742|114.062 +639828.116|220612.880|114.163 +639832.325|220609.082|114.392 +639840.799|220601.432|114.562 +639845.005|220597.634|114.575 +639849.220|220593.827|114.541 +639861.766|220582.510|114.565 +639865.884|220578.794|114.587 +639870.078|220575.011|114.495 +639874.205|220571.287|114.489 +639878.289|220567.605|114.471 +639882.419|220563.877|114.474 +639886.500|220560.198|114.507 +639890.582|220556.513|114.529 +639894.611|220552.880|114.584 +639898.619|220549.265|114.748 +639902.612|220545.668|115.007 +639914.664|220534.790|114.736 +639922.689|220527.545|114.175 +639926.685|220523.936|113.992 +639961.756|220492.292|113.621 +639868.221|220574.911|114.584 +639864.043|220578.672|114.587 +639859.839|220582.455|114.468 +639855.609|220586.262|114.504 +639851.393|220590.059|114.492 +639847.114|220593.909|114.538 +639842.893|220597.713|114.593 +639838.674|220601.508|114.355 +639834.322|220605.431|114.596 +639830.024|220609.298|114.541 +639825.696|220613.191|114.386 +639821.377|220617.080|114.218 +639817.042|220620.978|114.126 +639812.708|220624.880|114.066 +639808.316|220628.833|114.056 +639803.948|220632.765|113.931 +639799.541|220636.731|113.761 +639795.142|220640.684|113.535 +639790.732|220644.652|113.407 +639786.328|220648.618|113.270 +639777.461|220656.594|112.773 +639772.980|220660.624|112.517 +639768.494|220664.659|112.319 +639764.041|220668.671|112.258 +639755.037|220676.769|111.813 +639750.520|220680.832|111.560 +639745.954|220684.944|111.642 +639741.464|220688.979|111.240 +639736.852|220693.134|111.322 +639732.302|220697.224|111.030 +639727.803|220701.272|110.755 +639714.139|220713.559|109.423 +639709.503|220717.734|109.436 +639704.870|220721.910|109.472 +639700.182|220726.135|109.539 +639695.549|220730.307|109.597 +639686.054|220738.875|110.356 +639681.400|220743.066|110.292 +639676.749|220747.254|110.216 +639648.305|220772.891|110.911 +639643.495|220777.234|111.466 +639633.882|220785.906|112.209 +639619.504|220798.872|113.032 +639614.749|220803.158|113.316 +639609.912|220807.516|113.483 +639605.133|220811.826|113.630 +639590.725|220824.811|113.953 +639585.921|220829.139|113.980 +639581.127|220833.458|113.944 +639576.332|220837.777|113.944 +639571.495|220842.142|114.337 +639566.673|220846.491|114.651 +639561.808|220850.877|114.913 +639557.011|220855.199|115.026 +639552.192|220859.540|114.913 +639547.343|220863.911|115.117 +639532.862|220876.959|115.233 +639527.991|220881.348|115.285 +639508.679|220898.743|114.925 +639494.039|220911.938|115.269 +639489.211|220916.281|115.023 +639469.588|220933.981|116.260 +639455.012|220947.106|115.913 +639450.151|220951.483|115.693 +639445.234|220955.921|116.187 +639440.263|220960.407|116.821 +639435.438|220964.754|116.793 +639430.513|220969.192|116.873 +639425.651|220973.572|116.800 +639420.725|220978.010|116.922 +639415.873|220982.380|116.748 +639410.902|220986.861|116.891 +639406.034|220991.247|116.970 +639401.121|220995.676|117.059 +639396.210|221000.099|117.086 +639391.248|221004.573|117.248 +639386.341|221008.993|117.275 +639381.388|221013.455|117.312 +639376.465|221017.896|117.720 +639371.537|221022.334|117.409 +639366.544|221026.830|117.376 +639361.652|221031.237|117.330 +639356.662|221035.730|117.266 +639351.712|221040.192|117.437 +639341.776|221049.147|117.699 +639331.812|221058.120|117.616 +639326.832|221062.607|117.546 +639321.848|221067.097|117.635 +639306.870|221080.584|117.427 +639301.853|221085.101|117.257 +639296.894|221089.561|116.790 +639291.874|221094.081|116.678 +639286.842|221098.616|116.955 +639281.840|221103.115|116.391 +639266.804|221116.648|115.614 +639261.735|221121.217|115.669 +639256.718|221125.734|115.608 +639251.659|221130.288|115.330 +639246.608|221134.830|114.754 +639241.597|221139.338|114.443 +639236.495|221143.928|114.002 +639221.331|221157.562|112.252 +639211.190|221166.654|109.500 +639206.088|221171.238|108.488 +639195.889|221180.370|104.858 +639170.219|221203.583|111.124 +639165.107|221208.198|111.749 +639144.533|221226.764|114.053 +639124.026|221245.256|115.324 +639118.875|221249.898|115.483 +639108.579|221259.182|116.050 +639082.808|221282.390|115.736 +639077.663|221287.029|116.114 +639057.056|221305.597|116.352 +639051.850|221310.285|116.242 +639041.550|221319.569|116.650 +639031.236|221328.856|116.656 +639015.755|221342.819|117.732 +638984.836|221370.684|118.738 +638959.209|221393.800|121.585 +638954.039|221398.452|121.497 +638943.837|221407.644|122.146 +638933.611|221416.855|122.390 +638923.355|221426.097|122.990 +638918.304|221430.648|123.392 +638913.156|221435.290|123.776 +638902.982|221444.455|124.255 +638887.702|221458.220|125.157 +638882.582|221462.832|125.319 +638877.613|221467.318|126.194 +638872.471|221471.945|126.139 +638867.396|221476.517|126.297 +638862.373|221481.043|126.495 +638857.311|221485.603|126.864 +638852.251|221490.166|127.254 +638847.249|221494.674|127.788 +638837.209|221503.721|128.416 +638827.157|221512.779|128.946 +638822.134|221517.306|129.293 +638807.165|221530.796|130.382 +638787.225|221548.752|131.070 +638782.232|221553.251|131.314 +638772.277|221562.218|131.689 +638762.301|221571.194|131.485 +638757.287|221575.702|131.189 +638752.325|221580.174|131.381 +638742.340|221589.153|130.848 +638737.326|221593.661|130.668 +638712.527|221615.991|131.101 +638707.541|221620.474|130.872 +638697.677|221629.362|131.360 +638672.894|221651.656|130.436 +638663.043|221660.525|130.549 +638623.559|221696.041|128.845 +638618.573|221700.521|128.355 +638613.635|221704.956|127.903 +638598.730|221718.352|126.383 +638573.971|221740.602|124.157 +638569.045|221745.031|123.700 +638563.937|221749.603|122.149 +638559.014|221754.029|121.789 +638554.147|221758.409|121.786 +638539.367|221771.695|120.543 +638534.493|221776.075|120.308 +638529.571|221780.498|119.805 +638509.871|221798.195|117.427 +638504.992|221802.578|116.720 +638495.177|221811.395|115.678 +638466.105|221837.523|113.282 +638461.250|221841.888|112.959 +638456.355|221846.283|112.179 +638451.508|221850.636|111.697 +638437.436|221863.318|112.791 +638427.847|221871.938|112.279 +638423.131|221876.184|112.322 +638418.492|221880.366|112.770 +638409.217|221888.723|113.477 +638404.566|221892.911|113.654 +638372.108|221922.139|114.876 +638367.481|221926.302|114.818 +638362.817|221930.496|114.602 +638358.209|221934.645|114.666 +638353.579|221938.811|114.648 +638349.065|221942.877|114.949 +638311.952|221976.238|112.520 +638288.967|221996.897|110.899 +638284.368|222001.033|110.621 +638279.848|222005.099|110.475 +638275.425|222009.083|110.765 +638270.954|222013.106|110.640 +638266.125|222017.428|109.277 +638261.544|222021.546|108.738 +638257.088|222025.551|108.524 +638252.620|222029.572|108.491 +638243.208|222038.012|106.330 +638238.450|222042.273|104.751 +638233.615|222046.604|103.111 +638229.159|222050.612|102.806 +638224.727|222054.602|102.614 +638220.369|222058.525|102.520 +638215.910|222062.533|102.047 +638211.432|222066.559|101.517 +638206.958|222070.580|101.029 +638202.474|222074.606|100.313 +638198.024|222078.608|99.740 +638193.479|222082.683|98.838 +638189.017|222086.694|98.051 +638184.506|222090.742|97.113 +638180.019|222094.769|96.290 +638175.709|222098.649|96.149 +638171.616|222102.340|96.658 +638167.666|222105.915|97.698 +638159.119|222113.605|97.192 +638154.949|222117.360|97.256 +638150.929|222120.991|97.884 +638233.823|222044.467|103.135 +638238.645|222040.139|104.949 +638252.638|222027.545|108.223 +638257.079|222023.534|108.372 +638261.566|222019.486|108.722 +638266.324|222015.210|110.237 +638271.008|222010.994|111.243 +638275.337|222007.074|110.786 +638279.680|222003.146|110.390 +638284.203|221999.061|110.569 +638293.420|221990.746|111.472 +638311.690|221974.253|112.359 +638348.982|221940.604|115.007 +638358.075|221932.383|114.523 +638362.769|221928.146|114.626 +638372.147|221919.679|115.108 +638376.832|221915.448|115.245 +638404.621|221890.333|113.569 +638413.859|221881.978|112.685 +638428.020|221869.189|112.343 +638432.845|221864.839|112.618 +638447.107|221851.955|112.237 +638451.975|221847.566|112.572 +638456.833|221843.186|112.874 +638466.550|221834.420|113.279 +638471.418|221830.025|113.444 +638491.187|221812.206|115.391 +638496.113|221807.768|115.998 +638501.157|221803.227|116.733 +638526.090|221780.766|119.790 +638535.959|221771.866|120.372 +638540.964|221767.355|121.143 +638550.873|221758.421|121.820 +638555.765|221754.002|121.676 +638560.755|221749.506|122.137 +638565.918|221744.870|123.725 +638581.082|221731.215|126.053 +638586.023|221726.752|126.062 +638590.948|221722.305|125.977 +638631.267|221685.961|129.431 +638636.248|221681.465|129.635 +638646.331|221672.373|130.266 +638661.412|221658.760|130.394 +638681.523|221640.619|131.156 +638686.534|221636.092|131.107 +638696.586|221627.022|131.275 +638706.632|221617.951|131.104 +638711.585|221613.479|131.080 +638716.636|221608.919|131.070 +638721.665|221604.375|130.921 +638736.725|221590.778|130.744 +638741.788|221586.212|130.936 +638751.932|221577.059|131.192 +638756.967|221572.520|131.217 +638762.060|221567.927|131.381 +638767.151|221563.337|131.546 +638777.282|221554.199|131.445 +638782.330|221549.642|131.256 +638787.389|221545.076|131.217 +638807.628|221526.806|130.223 +638812.618|221522.295|129.516 +638843.031|221494.842|128.074 +638863.199|221476.621|126.346 +638868.277|221472.040|126.215 +638873.337|221467.471|125.874 +638878.400|221462.902|125.581 +638883.502|221458.293|125.227 +638898.739|221444.537|124.459 +638903.805|221439.965|124.279 +638908.913|221435.354|124.072 +638914.022|221430.742|123.825 +638929.338|221416.916|123.051 +638939.540|221407.705|122.466 +638965.097|221384.635|121.207 +638980.395|221370.809|119.393 +639000.896|221352.305|118.452 +639005.995|221347.699|118.235 +639011.107|221343.091|118.269 +639016.249|221338.446|117.851 +639036.680|221319.996|116.510 +639041.779|221315.393|116.220 +639052.045|221306.137|116.315 +639057.199|221301.488|116.348 +639077.703|221282.987|115.977 +639093.114|221269.088|115.971 +639103.416|221259.795|116.105 +639108.521|221255.192|116.205 +639118.763|221245.939|115.190 +639123.914|221241.290|115.163 +639129.016|221236.688|115.047 +639144.375|221222.819|113.758 +639154.634|221213.557|112.987 +639159.743|221208.939|112.252 +639169.966|221199.694|110.652 +639200.574|221172.055|108.040 +639205.628|221167.513|109.146 +639210.730|221162.926|110.134 +639230.926|221144.772|114.050 +639246.102|221131.099|114.895 +639251.153|221126.551|115.468 +639261.242|221117.453|115.318 +639276.369|221103.822|116.248 +639291.365|221090.304|116.778 +639296.339|221085.824|116.870 +639301.344|221081.316|117.318 +639306.319|221076.832|117.403 +639316.261|221067.868|117.699 +639321.245|221063.372|117.568 +639326.228|221058.879|117.549 +639331.157|221054.435|117.629 +639336.143|221049.936|117.577 +639341.029|221045.532|117.641 +639345.982|221041.061|117.312 +639350.929|221036.595|117.150 +639355.867|221032.148|117.248 +639360.805|221027.692|117.303 +639365.694|221023.285|117.388 +639370.574|221018.890|117.717 +639375.536|221014.412|117.440 +639380.458|221009.968|117.053 +639385.350|221005.554|117.190 +639404.897|220987.925|116.864 +639409.811|220983.493|116.836 +639414.687|220979.092|116.611 +639419.555|220974.703|116.586 +639424.410|220970.326|116.757 +639438.959|220957.210|116.949 +639443.842|220952.797|116.214 +639448.709|220948.395|115.678 +639453.543|220944.037|115.654 +639458.347|220939.711|116.001 +639467.960|220931.043|116.117 +639482.441|220917.967|114.892 +639492.037|220909.314|114.892 +639506.277|220896.472|115.117 +639511.050|220892.163|114.953 +639530.030|220875.036|115.166 +639549.019|220857.903|115.172 +639553.713|220853.663|115.041 +639558.443|220849.396|115.047 +639567.914|220840.843|114.593 +639577.393|220832.281|114.166 +639582.081|220828.051|114.221 +639586.790|220823.802|114.136 +639600.878|220811.086|113.892 +639605.557|220806.861|113.730 +639610.287|220802.588|113.569 +639614.978|220798.354|113.368 +639633.717|220781.422|112.176 +639638.457|220777.140|111.725 +639643.126|220772.925|111.456 +639647.784|220768.712|110.908 +639652.502|220764.451|110.704 +639661.762|220756.090|110.545 +639675.636|220743.569|110.426 +639680.239|220739.415|110.460 +639684.853|220735.251|110.438 +639694.116|220726.884|109.875 +639698.731|220722.721|109.917 +639703.300|220718.597|109.945 +639712.447|220710.343|110.006 +639716.976|220706.265|110.368 +639721.433|220702.247|110.874 +639725.941|220698.184|111.082 +639730.503|220694.067|111.246 +639739.495|220685.959|111.557 +639743.976|220681.914|111.655 +639748.514|220677.824|111.749 +639752.992|220673.785|111.920 +639761.901|220665.751|112.273 +639766.348|220661.736|112.365 +639770.801|220657.719|112.438 +639775.230|220653.726|112.673 +639779.607|220649.779|112.938 +639784.002|220645.814|113.096 +639788.406|220641.842|113.233 +639792.744|220637.934|113.764 +639814.558|220618.260|114.462 +639818.932|220614.312|114.587 +639823.266|220610.402|114.663 +639827.607|220606.488|114.730 +639831.904|220602.608|114.754 +639836.254|220598.679|114.529 +639840.512|220594.842|114.806 +639844.819|220590.956|114.846 +639849.095|220587.094|114.779 +639853.305|220583.293|114.815 +639861.812|220575.606|114.736 +639866.042|220571.787|114.712 +639870.255|220567.983|114.800 +639874.439|220564.203|114.779 +639878.621|220560.427|114.782 +639882.770|220556.681|114.721 +639886.961|220552.895|114.712 +639891.021|220549.228|114.861 +639895.151|220545.504|114.946 +639899.220|220541.828|115.077 +639903.301|220538.146|115.166 +639907.379|220534.458|115.023 +639911.485|220530.748|114.770 +639915.627|220526.999|114.340 +639923.762|220519.647|114.032 +639947.573|220498.141|114.078 +639951.502|220494.593|114.078 +639955.434|220491.036|113.828 +639868.517|220567.824|114.748 +639864.445|220571.488|114.721 +639860.324|220575.197|114.703 +639856.194|220578.913|114.733 +639852.018|220582.674|114.770 +639847.846|220586.429|114.794 +639843.673|220590.184|114.828 +639839.515|220593.927|114.824 +639835.352|220597.667|114.556 +639826.921|220605.260|114.681 +639822.678|220609.079|114.626 +639818.454|220612.877|114.480 +639814.165|220616.739|114.440 +639809.870|220620.604|114.440 +639805.591|220624.453|114.376 +639801.309|220628.306|114.340 +639784.170|220643.720|113.246 +639779.793|220647.652|112.941 +639775.413|220651.590|112.679 +639771.057|220655.512|112.602 +639766.702|220659.426|112.228 +639762.255|220663.425|112.093 +639753.363|220671.429|111.911 +639748.907|220675.437|111.898 +639744.427|220679.470|111.755 +639739.958|220683.490|111.542 +639735.429|220687.562|111.408 +639730.894|220691.643|111.341 +639726.407|220695.682|111.295 +639712.727|220707.981|110.725 +639708.189|220712.059|110.420 +639703.629|220716.155|110.277 +639699.018|220720.301|110.167 +639694.391|220724.464|110.188 +639689.776|220728.616|110.149 +639685.113|220732.813|110.441 +639680.422|220737.034|110.630 +639675.767|220741.222|110.579 +639661.707|220753.865|110.496 +639656.998|220758.099|110.557 +639652.221|220762.400|110.780 +639647.488|220766.661|111.066 +639642.663|220771.007|111.344 +639637.920|220775.278|111.767 +639633.095|220779.621|112.078 +639628.255|220783.983|112.551 +639613.826|220796.973|113.398 +639608.989|220801.326|113.553 +639604.157|220805.672|113.697 +639579.959|220827.447|114.303 +639575.134|220831.785|114.120 +639570.194|220836.235|114.553 +639565.326|220840.615|114.785 +639550.708|220853.767|114.934 +639545.880|220858.110|114.913 +639531.130|220871.378|115.181 +639526.266|220875.755|115.141 +639516.521|220884.512|114.776 +639506.716|220893.333|114.629 +639491.899|220906.659|114.687 +639482.027|220915.544|114.980 +639477.104|220919.973|115.273 +639467.156|220928.934|116.102 +639462.184|220933.405|115.931 +639457.256|220937.837|115.861 +639452.303|220942.287|115.513 +639447.371|220946.722|115.522 +639442.354|220951.242|116.047 +639437.322|220955.781|116.824 +639422.478|220969.128|116.586 +639417.513|220973.593|116.580 +639412.548|220978.061|116.605 +639407.579|220982.533|116.690 +639402.611|220986.998|116.775 +639377.782|221009.334|116.858 +639372.747|221013.872|117.461 +639367.785|221018.341|117.751 +639362.816|221022.800|117.260 +639357.876|221027.244|117.171 +639352.886|221031.731|117.147 +639347.948|221036.172|117.046 +639342.953|221040.668|117.165 +639337.957|221045.160|117.309 +639333.022|221049.601|117.293 +639327.984|221054.134|117.354 +639322.994|221058.626|117.534 +639318.011|221063.107|117.528 +639313.027|221067.591|117.610 +639308.059|221072.056|117.348 +639303.042|221076.567|117.089 +639298.071|221081.035|116.912 +639293.047|221085.549|116.818 +639288.064|221090.036|117.025 +639273.068|221103.511|116.266 +639258.026|221117.035|115.672 +639253.009|221121.543|115.513 +639248.038|221126.018|115.562 +639242.984|221130.556|115.038 +639232.965|221139.557|114.267 +639227.951|221144.062|114.005 +639212.891|221157.574|111.633 +639207.889|221162.051|110.316 +639202.833|221166.587|109.384 +639187.705|221180.147|106.083 +639172.523|221193.848|109.265 +639157.274|221207.610|112.322 +639152.214|221212.173|113.072 +639147.106|221216.775|113.508 +639142.046|221221.329|113.736 +639131.838|221230.528|114.751 +639126.782|221235.078|115.090 +639121.676|221239.675|115.306 +639106.369|221253.452|116.041 +639101.316|221258.003|116.147 +639096.165|221262.639|116.284 +639086.003|221271.780|116.303 +639070.686|221285.557|116.510 +639060.427|221294.789|116.553 +639055.364|221299.337|116.376 +639050.210|221303.976|116.412 +639040.002|221313.162|116.684 +639029.749|221322.392|117.110 +639019.504|221331.615|117.763 +638952.930|221391.575|121.932 +638942.670|221400.817|122.408 +638937.577|221405.407|122.859 +638932.438|221410.040|123.389 +638927.317|221414.649|123.399 +638922.194|221419.263|123.359 +638917.091|221423.860|123.703 +638911.934|221428.505|123.975 +638906.865|221433.071|124.112 +638901.751|221437.676|124.313 +638896.648|221442.273|124.718 +638891.549|221446.872|125.139 +638881.356|221456.050|125.444 +638876.242|221460.658|125.700 +638871.142|221465.255|126.197 +638866.061|221469.830|126.285 +638860.938|221474.445|126.450 +638855.799|221479.068|126.480 +638850.764|221483.613|127.196 +638840.589|221492.781|127.955 +638825.346|221506.510|128.559 +638810.195|221520.168|129.772 +638784.969|221542.891|131.144 +638779.928|221547.432|131.415 +638774.868|221551.989|131.497 +638764.782|221561.069|131.601 +638759.741|221565.607|131.470 +638754.684|221570.152|131.244 +638749.600|221574.730|131.211 +638744.608|221579.223|131.165 +638739.557|221583.764|131.067 +638734.525|221588.291|130.717 +638729.499|221592.817|130.854 +638719.532|221601.790|131.122 +638714.518|221606.304|131.022 +638709.501|221610.818|130.921 +638704.514|221615.308|131.098 +638694.562|221624.269|131.296 +638684.577|221633.249|130.912 +638679.658|221637.680|130.930 +638674.625|221642.207|130.872 +638659.736|221655.603|130.561 +638654.704|221660.129|130.238 +638634.867|221677.972|129.516 +638629.929|221682.413|129.299 +638624.906|221686.930|128.836 +638620.005|221691.338|128.568 +638605.097|221704.740|127.574 +638590.253|221718.087|126.224 +638560.538|221744.797|122.886 +638555.506|221749.317|121.826 +638550.611|221753.721|121.664 +638536.008|221766.867|121.167 +638526.194|221775.691|120.302 +638521.256|221780.132|119.720 +638516.403|221784.497|119.390 +638501.553|221797.835|116.848 +638496.643|221802.255|116.568 +638491.772|221806.631|115.977 +638486.941|221810.978|115.635 +638481.997|221815.419|114.986 +638477.133|221819.790|114.221 +638472.323|221824.118|114.084 +638467.465|221828.489|113.694 +638462.615|221832.847|113.108 +638453.032|221841.476|112.886 +638443.224|221850.282|111.054 +638429.240|221862.892|112.127 +638424.515|221867.147|112.118 +638415.203|221875.535|112.310 +638405.870|221883.947|112.715 +638401.402|221887.983|113.547 +638396.851|221892.091|114.242 +638369.197|221917.012|115.205 +638359.769|221925.488|114.288 +638355.133|221929.664|114.218 +638313.507|221967.112|111.676 +638308.993|221971.181|111.883 +638286.157|221991.725|110.435 +638281.682|221995.754|110.237 +638277.187|221999.802|110.201 +638272.877|222003.688|110.743 +638263.955|222011.726|110.804 +638259.042|222016.118|108.668 +638254.442|222020.254|108.070 +638250.056|222024.201|107.939 +638245.625|222028.191|107.860 +638236.118|222036.710|104.912 +638231.253|222041.060|102.943 +638226.407|222045.394|101.075 +638221.935|222049.414|100.514 +638217.555|222053.355|100.346 +638213.139|222057.327|100.054 +638208.674|222061.338|99.588 +638204.205|222065.355|99.130 +638199.780|222069.333|98.637 +638195.241|222073.405|97.743 +638190.492|222077.654|95.838 +638186.082|222081.616|95.275 +638181.812|222085.463|95.262 +638177.608|222089.249|95.534 +638169.327|222096.716|96.366 +638165.081|222100.538|96.308 +638161.247|222104.010|97.591 +638157.132|222107.717|97.847 +638152.983|222111.453|97.981 +638148.853|222115.175|98.192 +638233.554|222037.079|104.126 +638243.323|222028.328|107.887 +638247.700|222024.381|107.732 +638252.138|222020.382|107.848 +638256.664|222016.310|108.344 +638266.293|222007.672|111.161 +638270.658|222003.731|110.835 +638283.920|221991.764|109.981 +638288.568|221987.585|110.697 +638293.256|221983.370|111.392 +638306.890|221971.087|111.728 +638311.437|221966.984|111.661 +638353.189|221929.384|113.989 +638357.895|221925.144|114.133 +638395.205|221891.503|114.120 +638399.817|221887.334|113.471 +638409.022|221879.012|112.380 +638413.658|221874.821|111.901 +638427.901|221861.977|111.965 +638441.965|221849.276|110.740 +638447.046|221844.716|112.429 +638456.778|221835.947|113.105 +638461.597|221831.601|113.230 +638466.434|221827.242|113.477 +638471.342|221822.826|114.120 +638486.137|221809.506|115.800 +638495.942|221800.673|116.461 +638500.929|221796.183|117.162 +638505.988|221791.635|118.327 +638510.966|221787.158|119.037 +638545.682|221755.882|121.762 +638550.590|221751.456|121.673 +638555.537|221747.003|122.158 +638580.738|221724.320|125.520 +638585.727|221719.824|125.822 +638595.822|221710.735|126.977 +638605.804|221701.740|127.483 +638615.851|221692.691|128.205 +638620.834|221688.201|128.690 +638625.915|221683.626|129.171 +638630.911|221679.127|129.443 +638635.952|221674.583|129.720 +638640.945|221670.084|130.034 +638650.927|221661.080|129.982 +638665.993|221647.498|130.412 +638676.116|221638.375|130.921 +638691.225|221624.754|131.311 +638701.283|221615.680|131.171 +638706.285|221611.169|131.131 +638711.342|221606.606|131.150 +638716.389|221602.055|131.098 +638721.455|221597.486|131.253 +638726.481|221592.951|131.067 +638731.507|221588.416|130.912 +638736.546|221583.871|130.894 +638746.692|221574.724|131.092 +638751.731|221570.179|131.116 +638756.861|221565.555|131.585 +638761.942|221560.968|131.631 +638766.977|221556.424|131.732 +638777.090|221547.292|131.461 +638782.138|221542.735|131.262 +638787.182|221538.178|131.055 +638792.220|221533.628|130.811 +638797.268|221529.071|130.650 +638807.381|221519.933|130.092 +638822.536|221506.238|128.958 +638832.640|221497.113|128.428 +638858.003|221474.192|126.602 +638863.077|221469.610|126.392 +638883.395|221451.258|125.450 +638888.507|221446.641|125.163 +638893.579|221442.062|125.029 +638898.684|221437.448|124.712 +638908.852|221428.264|124.164 +638913.912|221423.692|123.923 +638949.589|221391.466|121.932 +638959.763|221382.279|121.762 +638990.414|221354.591|120.204 +639036.366|221313.068|116.699 +639057.415|221294.067|116.428 +639067.099|221285.328|116.608 +639082.409|221271.505|116.181 +639087.517|221266.897|116.352 +639092.623|221262.288|116.291 +639097.774|221257.640|116.291 +639102.879|221253.031|116.297 +639107.982|221248.426|116.150 +639113.127|221243.771|115.477 +639118.229|221239.163|115.209 +639123.331|221234.554|114.843 +639143.796|221216.062|113.407 +639184.776|221178.949|105.010 +639189.882|221174.365|106.659 +639194.987|221169.772|107.750 +639205.186|221160.607|110.445 +639225.534|221142.291|113.974 +639235.702|221133.120|114.483 +639240.753|221128.569|115.087 +639250.863|221119.458|115.934 +639261.046|221110.263|115.818 +639286.293|221087.497|117.315 +639291.331|221082.943|116.861 +639296.403|221078.368|116.918 +639301.469|221073.796|117.080 +639311.503|221064.744|117.519 +639316.532|221060.208|117.534 +639321.562|221055.667|117.498 +639326.603|221051.110|117.251 +639331.647|221046.559|117.053 +639336.680|221042.015|117.071 +639341.624|221037.549|116.931 +639346.656|221033.008|117.013 +639351.624|221028.530|117.400 +639356.623|221024.013|117.248 +639361.603|221019.523|117.458 +639371.573|221010.517|116.970 +639381.488|221001.562|116.678 +639406.177|220979.275|116.559 +639411.042|220974.885|116.556 +639415.955|220970.451|116.583 +639420.875|220966.007|116.510 +639425.718|220961.642|116.882 +639435.520|220952.790|116.726 +639440.437|220948.346|116.190 +639445.372|220943.881|115.455 +639450.203|220939.519|115.449 +639455.049|220935.152|115.903 +639459.886|220930.784|115.843 +639469.600|220922.012|115.410 +639474.465|220917.616|115.141 +639479.299|220913.252|115.230 +639484.118|220908.899|114.998 +639488.989|220904.498|114.751 +639512.912|220882.912|114.846 +639522.404|220874.353|115.196 +639527.119|220870.098|115.215 +639541.393|220857.217|114.684 +639546.069|220853.008|115.181 +639550.756|220848.777|115.102 +639560.172|220840.285|115.148 +639569.654|220831.724|114.648 +639574.330|220827.502|114.355 +639578.963|220823.323|114.483 +639583.681|220819.065|114.322 +639602.316|220802.249|113.803 +639606.986|220798.034|113.745 +639611.622|220793.852|113.593 +639616.282|220789.643|113.258 +639625.640|220781.188|112.377 +639639.542|220768.636|111.551 +639644.147|220764.479|111.405 +639648.722|220760.348|111.158 +639653.355|220756.167|110.865 +639657.888|220752.076|110.960 +639662.463|220747.949|110.792 +639667.059|220743.804|110.832 +639676.118|220735.632|110.865 +639680.608|220731.581|111.002 +639685.183|220727.454|110.923 +639689.694|220723.385|110.963 +639712.148|220703.131|111.094 +639729.985|220687.047|111.514 +639734.435|220683.033|111.478 +639738.867|220679.034|111.572 +639743.296|220675.041|111.709 +639747.716|220671.057|111.920 +639800.062|220623.874|114.617 +639808.737|220616.050|114.648 +639813.062|220612.148|114.751 +639817.347|220608.283|114.812 +639821.642|220604.409|114.828 +639825.979|220600.496|114.916 +639830.268|220596.628|115.004 +639834.599|220592.720|114.888 +639838.860|220588.880|115.160 +639843.112|220585.049|115.233 +639855.883|220573.530|115.160 +639860.172|220569.659|115.096 +639864.402|220565.846|115.081 +639868.645|220562.018|115.026 +639872.839|220558.235|114.956 +639877.079|220554.413|114.956 +639881.282|220550.621|114.885 +639885.446|220546.866|115.023 +639889.622|220543.102|115.126 +639893.773|220539.359|115.114 +639897.970|220535.573|115.132 +639902.143|220531.812|115.044 +639906.355|220528.011|114.779 +639918.864|220516.715|113.928 +639927.002|220509.382|114.181 +639931.090|220505.694|114.114 +639947.241|220491.127|113.941 +639951.240|220487.518|113.870 +639867.825|220560.826|115.038 +639863.683|220564.557|115.090 +639859.550|220568.278|115.114 +639855.408|220572.012|115.205 +639851.217|220575.786|115.297 +639842.896|220583.281|115.221 +639838.686|220587.072|115.190 +639834.486|220590.852|115.123 +639830.286|220594.634|115.071 +639826.098|220598.402|114.965 +639821.919|220602.166|114.840 +639817.664|220605.997|114.849 +639813.431|220609.807|114.767 +639809.197|220613.617|114.690 +639804.963|220617.434|114.657 +639800.678|220621.289|114.620 +639796.359|220625.182|114.797 +639792.027|220629.086|115.077 +639770.691|220648.279|113.621 +639749.179|220667.625|111.722 +639744.789|220671.575|111.612 +639740.388|220675.541|111.603 +639735.959|220679.528|111.453 +639731.564|220683.484|111.426 +639727.138|220687.468|111.295 +639722.701|220691.464|111.255 +639718.208|220695.511|111.277 +639709.250|220703.573|111.173 +639704.787|220707.591|111.045 +639700.319|220711.611|110.978 +639695.793|220715.686|110.969 +639682.168|220727.954|111.054 +639677.587|220732.075|110.804 +639673.012|220736.196|110.908 +639668.467|220740.283|110.783 +639663.847|220744.444|110.886 +639659.198|220748.629|110.853 +639635.906|220769.614|111.743 +639631.175|220773.879|112.093 +639616.968|220786.683|113.044 +639612.262|220790.923|113.307 +639607.452|220795.257|113.636 +639597.994|220803.776|113.867 +639583.623|220816.718|114.288 +639578.865|220821.007|114.364 +639574.071|220825.320|114.312 +639569.203|220829.706|114.520 +639564.387|220834.043|114.715 +639559.510|220838.441|115.068 +639549.866|220847.119|114.831 +639535.233|220860.302|115.297 +639530.374|220864.673|115.141 +639525.513|220869.050|115.059 +639520.587|220873.484|115.129 +639510.824|220882.272|114.980 +639505.939|220886.667|114.742 +639500.979|220891.132|114.757 +639486.166|220904.470|114.821 +639481.198|220908.945|115.044 +639476.245|220913.404|115.123 +639471.222|220917.933|115.501 +639466.290|220922.374|115.407 +639461.215|220926.949|115.873 +639456.274|220931.396|115.916 +639451.318|220935.856|115.626 +639446.350|220940.324|115.443 +639441.269|220944.911|116.156 +639436.261|220949.425|116.589 +639421.204|220962.983|116.559 +639416.190|220967.494|116.522 +639411.173|220972.011|116.541 +639406.119|220976.562|116.467 +639396.043|220985.633|116.583 +639390.968|220990.208|116.912 +639380.922|220999.248|116.739 +639370.759|221008.404|117.031 +639365.691|221012.973|117.427 +639355.550|221022.102|117.510 +639350.509|221026.638|117.498 +639345.479|221031.158|117.290 +639340.362|221035.757|116.946 +639335.329|221040.283|116.833 +639330.239|221044.868|116.976 +639325.183|221049.421|117.412 +639320.099|221053.996|117.495 +639315.014|221058.568|117.534 +639309.940|221063.134|117.479 +639304.865|221067.700|117.424 +639299.805|221072.245|117.004 +639294.779|221076.765|116.952 +639289.646|221081.386|117.181 +639279.493|221090.527|117.485 +639249.025|221117.913|115.971 +639228.701|221136.168|114.102 +639223.644|221140.712|113.605 +639172.688|221186.481|108.744 +639167.613|221191.062|109.935 +639162.495|221195.677|110.643 +639147.207|221209.454|112.328 +639137.038|221218.622|113.840 +639131.979|221223.176|113.983 +639126.925|221227.736|114.867 +639121.820|221232.332|115.160 +639116.714|221236.929|115.276 +639111.658|221241.479|115.617 +639096.448|221255.177|116.434 +639091.343|221259.770|116.440 +639076.072|221273.508|116.492 +639071.012|221278.058|116.519 +639060.844|221287.205|116.550 +639055.788|221291.753|116.504 +639050.688|221296.346|116.833 +639030.364|221314.638|117.354 +639025.259|221319.231|117.549 +639015.164|221328.323|118.403 +638999.960|221342.012|119.259 +638954.402|221383.026|122.042 +638949.342|221387.576|122.228 +638929.122|221405.773|123.353 +638924.065|221410.324|123.618 +638913.940|221419.434|124.023 +638908.877|221423.988|124.258 +638903.869|221428.496|124.569 +638888.672|221442.166|125.227 +638883.563|221446.763|125.544 +638878.531|221451.289|125.605 +638873.465|221455.849|125.849 +638863.370|221464.929|126.303 +638858.310|221469.482|126.675 +638853.287|221474.003|126.931 +638848.221|221478.562|127.242 +638843.183|221483.095|127.324 +638833.091|221492.175|127.946 +638828.114|221496.661|128.784 +638823.066|221501.200|128.833 +638813.072|221510.195|129.580 +638808.003|221514.757|129.958 +638803.029|221519.235|130.318 +638797.996|221523.764|130.628 +638792.952|221528.303|130.784 +638787.950|221532.799|130.942 +638782.909|221537.334|131.177 +638777.907|221541.836|131.332 +638762.807|221555.412|131.512 +638752.737|221564.464|131.390 +638747.683|221569.006|131.204 +638742.614|221573.560|130.900 +638732.534|221582.618|130.921 +638727.545|221587.105|130.958 +638722.516|221591.628|131.110 +638717.587|221596.063|131.293 +638712.536|221600.605|131.287 +638707.538|221605.097|131.342 +638702.524|221609.605|131.275 +638697.559|221614.068|131.253 +638687.503|221623.105|131.043 +638682.544|221627.564|131.113 +638677.548|221632.051|130.942 +638672.525|221636.562|130.580 +638662.577|221645.502|130.296 +638647.559|221658.992|129.540 +638617.804|221685.726|128.614 +638612.815|221690.207|128.092 +638607.840|221694.672|127.724 +638568.128|221730.331|124.651 +638553.117|221743.791|122.237 +638548.185|221748.223|121.829 +638543.296|221752.615|121.716 +638533.570|221761.350|121.289 +638528.659|221765.764|121.122 +638518.976|221774.463|120.774 +638504.245|221787.685|119.101 +638494.272|221796.622|117.065 +638484.564|221805.342|116.367 +638465.139|221822.777|114.413 +638460.311|221827.114|114.209 +638435.890|221849.014|110.475 +638431.349|221853.114|111.639 +638421.958|221861.553|111.630 +638417.243|221865.796|111.670 +638394.203|221886.532|113.581 +638348.056|221928.021|113.794 +638315.637|221957.130|111.606 +638306.618|221965.241|111.807 +638297.547|221973.391|111.621 +638288.425|221981.581|110.838 +638279.201|221989.859|109.935 +638266.077|222001.667|110.719 +638257.195|222009.647|110.551 +638252.324|222013.996|108.610 +638247.673|222018.166|107.592 +638243.229|222022.156|107.467 +638238.858|222026.091|107.424 +638229.251|222034.683|103.913 +638224.264|222039.133|101.477 +638219.424|222043.458|99.438 +638214.928|222047.494|98.813 +638210.539|222051.441|98.624 +638206.104|222055.425|98.286 +638192.806|222067.367|96.546 +638188.380|222071.339|95.896 +638183.939|222075.322|95.214 +638171.186|222086.792|95.040 +638167.166|222090.419|95.817 +638151.045|222104.958|98.249 +638147.186|222108.442|99.274 +638142.812|222112.365|98.396 +638238.376|222024.323|107.302 +638242.793|222020.339|107.311 +638247.322|222016.264|107.790 +638252.022|222012.043|109.015 +638261.224|222003.764|110.259 +638270.112|221995.751|110.265 +638278.967|221987.762|109.747 +638283.423|221983.742|109.643 +638288.217|221979.435|110.777 +638292.835|221975.278|111.179 +638297.404|221971.160|111.395 +638301.964|221967.054|111.578 +638315.625|221954.734|111.499 +638343.676|221929.472|113.499 +638348.269|221925.333|113.563 +638352.948|221921.118|113.816 +638366.993|221908.462|114.242 +638390.304|221887.443|113.721 +638413.481|221866.528|111.673 +638418.184|221862.291|111.539 +638422.903|221858.036|111.520 +638432.202|221849.639|110.280 +638437.286|221845.085|111.929 +638447.064|221836.289|113.051 +638452.005|221831.848|113.794 +638456.922|221827.422|114.163 +638466.602|221818.708|114.700 +638476.456|221809.847|116.016 +638481.376|221805.418|116.254 +638486.256|221801.026|116.571 +638491.157|221796.616|117.046 +638496.134|221792.141|117.690 +638511.082|221778.706|119.890 +638521.018|221769.769|121.061 +638525.904|221765.364|121.055 +638535.801|221756.461|121.856 +638540.681|221752.063|121.884 +638545.554|221747.665|121.597 +638550.492|221743.224|122.027 +638565.647|221729.602|124.359 +638570.640|221725.113|124.932 +638575.608|221720.644|125.392 +638600.595|221698.153|127.117 +638605.609|221693.639|127.382 +638610.651|221689.103|127.861 +638615.695|221684.565|128.416 +638620.721|221680.042|128.848 +638625.741|221675.528|129.278 +638630.771|221670.998|129.446 +638635.769|221666.499|129.781 +638640.811|221661.955|129.748 +638645.794|221657.468|130.034 +638650.854|221652.911|130.174 +638665.871|221639.381|130.260 +638670.873|221634.876|130.439 +638675.942|221630.313|130.796 +638680.987|221625.772|130.961 +638686.052|221621.209|130.945 +638696.111|221612.147|131.195 +638701.109|221607.642|131.113 +638706.172|221603.083|131.156 +638711.235|221598.520|131.244 +638716.228|221594.021|131.162 +638721.272|221589.476|131.134 +638726.307|221584.938|131.049 +638731.321|221580.415|130.802 +638736.387|221575.855|131.028 +638741.456|221571.286|130.857 +638746.598|221566.662|131.372 +638751.630|221562.126|131.378 +638756.739|221557.527|131.640 +638766.913|221548.365|131.887 +638776.999|221539.266|131.354 +638782.055|221534.710|131.256 +638787.133|221530.129|130.894 +638792.184|221525.578|130.741 +638797.277|221520.988|130.574 +638807.381|221511.871|129.940 +638812.450|221507.299|129.531 +638817.495|221502.754|129.421 +638822.606|221498.143|128.986 +638827.629|221493.610|128.690 +638832.701|221489.035|128.391 +638837.806|221484.430|127.928 +638842.817|221479.910|127.477 +638847.877|221475.344|127.081 +638852.937|221470.781|126.678 +638858.064|221466.160|126.492 +638863.138|221461.585|126.315 +638868.213|221457.010|126.136 +638873.310|221452.410|125.636 +638878.391|221447.829|125.590 +638883.481|221443.245|125.660 +638888.571|221438.652|125.093 +638893.689|221434.037|124.916 +638903.875|221424.856|124.606 +638908.980|221420.251|124.295 +638924.263|221406.474|123.676 +638929.375|221401.865|123.527 +638980.444|221355.813|120.786 +638985.510|221351.250|120.838 +639000.792|221337.464|119.646 +639016.078|221323.675|118.485 +639036.530|221305.234|117.501 +639046.680|221296.078|116.842 +639051.786|221291.479|116.742 +639056.894|221286.876|116.918 +639067.093|221277.677|116.263 +639087.481|221259.316|116.733 +639092.586|221254.717|116.705 +639097.682|221250.117|116.108 +639107.890|221240.915|115.724 +639112.944|221236.356|115.398 +639118.049|221231.753|115.056 +639123.155|221227.151|114.989 +639128.208|221222.588|114.206 +639133.314|221217.979|113.886 +639138.419|221213.371|113.569 +639143.479|221208.802|112.810 +639148.538|221204.230|112.289 +639158.716|221195.037|110.917 +639163.785|221190.453|109.771 +639189.196|221167.501|106.894 +639209.358|221149.399|112.023 +639214.415|221144.845|112.584 +639219.469|221140.304|113.380 +639229.487|221131.279|114.102 +639244.602|221117.678|115.721 +639259.705|221104.063|115.824 +639274.714|221090.557|117.565 +639279.740|221086.022|117.415 +639284.763|221081.496|117.415 +639294.782|221072.458|116.964 +639299.805|221067.929|117.043 +639304.776|221063.451|117.275 +639309.793|221058.931|117.498 +639314.777|221054.441|117.504 +639319.812|221049.897|117.348 +639324.768|221045.425|116.961 +639329.813|221040.875|116.754 +639334.793|221036.385|116.845 +639344.748|221027.418|117.321 +639349.689|221022.962|117.333 +639354.672|221018.472|117.485 +639359.631|221014.001|117.272 +639364.639|221009.480|117.019 +639379.568|220996.014|116.550 +639384.533|220991.537|116.370 +639389.541|220987.020|116.309 +639394.446|220982.603|116.397 +639404.367|220973.657|116.379 +639409.332|220969.183|116.379 +639414.248|220964.751|116.376 +639419.214|220960.273|116.388 +639424.106|220955.866|116.742 +639429.043|220951.413|116.531 +639433.963|220946.981|116.595 +639438.925|220942.500|116.108 +639443.915|220937.992|115.352 +639448.801|220933.585|115.297 +639453.696|220929.181|115.757 +639463.492|220920.344|115.492 +639468.399|220915.919|115.294 +639473.310|220911.490|115.093 +639478.214|220907.064|114.965 +639483.066|220902.690|114.937 +639487.931|220898.304|114.788 +639502.488|220885.180|114.849 +639507.353|220880.790|114.806 +639512.156|220876.456|114.892 +639521.773|220867.785|115.071 +639526.622|220863.411|115.254 +639541.036|220850.402|114.888 +639560.144|220833.159|114.700 +639564.908|220828.859|114.501 +639569.709|220824.524|114.413 +639574.449|220820.251|114.495 +639579.161|220815.999|114.376 +639583.910|220811.713|114.404 +639588.634|220807.449|114.239 +639593.374|220803.170|113.983 +639598.125|220798.875|113.630 +639602.813|220794.645|113.432 +639607.550|220790.371|113.294 +639612.262|220786.113|112.947 +639616.974|220781.858|112.639 +639626.335|220773.406|112.206 +639630.989|220769.203|112.042 +639640.346|220760.751|111.411 +639644.949|220756.596|111.328 +639649.615|220752.387|111.182 +639654.212|220748.239|111.182 +639658.814|220744.087|111.179 +639663.383|220739.963|111.069 +639667.989|220735.806|111.069 +639672.552|220731.691|111.048 +639677.063|220727.619|111.063 +639690.718|220715.299|111.051 +639704.251|220703.086|111.024 +639708.732|220699.044|111.045 +639717.714|220690.939|110.987 +639730.994|220678.967|111.636 +639752.821|220659.289|112.843 +639757.149|220655.390|113.352 +639787.260|220628.245|115.077 +639791.537|220624.386|115.111 +639795.880|220620.460|114.757 +639800.169|220616.592|114.764 +639804.454|220612.724|114.794 +639808.688|220608.905|114.846 +639812.958|220605.053|114.983 +639817.198|220601.230|115.044 +639821.432|220597.408|115.135 +639825.629|220593.623|115.175 +639829.820|220589.843|115.266 +639834.062|220586.015|115.352 +639838.266|220582.223|115.410 +639842.423|220578.468|115.431 +639846.642|220574.664|115.437 +639850.808|220570.900|115.443 +639854.984|220567.132|115.437 +639859.157|220563.365|115.449 +639863.317|220559.607|115.279 +639867.475|220555.852|115.132 +639871.663|220552.069|115.111 +639875.762|220548.366|115.044 +639879.874|220544.656|115.190 +639883.922|220541.005|115.410 +639888.037|220537.286|115.294 +639892.164|220533.559|115.145 +639896.312|220529.809|114.910 +639900.384|220526.134|114.812 +639904.459|220522.452|114.706 +639916.734|220511.360|114.020 +639924.765|220504.109|114.041 +639932.754|220496.891|113.828 +639936.732|220493.304|113.831 +639940.724|220489.698|113.770 +639944.702|220486.104|113.788 +639952.593|220478.981|113.938 +639866.972|220554.038|115.193 +639862.708|220557.872|115.334 +639858.437|220561.710|115.507 +639854.164|220565.550|115.462 +639849.933|220569.354|115.471 +639845.657|220573.195|115.465 +639841.326|220577.087|115.495 +639837.065|220580.918|115.462 +639832.798|220584.750|115.175 +639828.451|220588.657|115.340 +639824.156|220592.516|115.254 +639819.813|220596.418|115.151 +639815.470|220600.319|115.071 +639811.126|220604.224|115.023 +639806.792|220608.116|114.919 +639802.458|220612.011|114.846 +639798.062|220615.961|114.849 +639793.719|220619.863|114.852 +639789.251|220623.883|115.023 +639784.868|220627.821|114.995 +639776.068|220635.728|114.925 +639767.396|220643.509|114.139 +639762.968|220647.487|113.870 +639758.637|220651.370|113.334 +639754.159|220655.396|113.395 +639749.843|220659.264|112.785 +639736.520|220671.231|112.133 +639705.199|220699.370|111.194 +639700.670|220703.436|110.816 +639696.116|220707.533|110.969 +639691.596|220711.599|110.920 +639687.072|220715.665|110.911 +639682.497|220719.780|110.920 +639677.916|220723.900|111.011 +639673.338|220728.018|111.091 +639668.766|220732.130|111.158 +639664.167|220736.266|111.082 +639659.598|220740.372|111.149 +639655.032|220744.481|111.240 +639650.365|220748.681|111.359 +639645.748|220752.832|111.496 +639641.151|220756.965|111.499 +639636.509|220761.138|111.484 +639631.855|220765.329|111.609 +639627.231|220769.489|111.892 +639622.552|220773.702|112.240 +639617.846|220777.935|112.444 +639613.189|220782.130|112.679 +639608.480|220786.363|112.938 +639594.331|220799.101|113.721 +639589.631|220803.328|114.023 +639584.900|220807.586|114.218 +639580.121|220811.887|114.416 +639575.403|220816.133|114.553 +639570.727|220820.333|114.319 +639565.948|220824.637|114.605 +639561.205|220828.898|114.575 +639556.444|220833.184|114.745 +639537.330|220850.374|114.953 +639532.517|220854.700|114.791 +639527.729|220859.009|114.907 +639522.892|220863.359|115.032 +639518.082|220867.684|114.931 +639513.269|220872.009|114.852 +639508.456|220876.334|114.806 +639503.595|220880.708|114.794 +639498.736|220885.079|114.779 +639489.019|220893.815|114.776 +639479.256|220902.596|114.876 +639474.349|220907.009|114.971 +639469.436|220911.432|115.166 +639464.519|220915.855|115.413 +639459.566|220920.314|115.568 +639454.644|220924.746|115.967 +639449.736|220929.153|115.626 +639444.829|220933.561|115.273 +639439.809|220938.084|115.794 +639434.838|220942.561|116.336 +639429.851|220947.048|116.486 +639424.871|220951.529|116.556 +639419.912|220955.985|116.385 +639414.898|220960.493|116.300 +639409.984|220964.909|116.227 +639404.912|220969.472|116.352 +639389.944|220982.932|116.117 +639384.881|220987.486|116.193 +639379.824|220992.030|116.199 +639374.789|220996.569|116.729 +639364.682|221005.661|116.867 +639359.607|221010.230|117.357 +639354.575|221014.756|117.141 +639349.536|221019.286|117.004 +639344.443|221023.870|117.080 +639339.399|221028.411|117.141 +639329.249|221037.540|116.690 +639324.165|221042.112|116.635 +639319.071|221046.700|116.879 +639303.770|221060.473|117.104 +639298.656|221065.073|116.812 +639293.575|221069.645|116.888 +639288.439|221074.272|117.199 +639273.065|221088.113|117.498 +639257.739|221101.887|116.467 +639252.616|221106.501|116.656 +639226.939|221129.578|114.584 +639201.260|221152.648|112.045 +639185.867|221166.431|107.116 +639175.590|221175.655|105.351 +639165.232|221185.024|108.716 +639160.063|221189.694|109.996 +639144.622|221203.620|112.136 +639134.307|221212.923|113.557 +639129.150|221217.565|113.681 +639123.999|221222.213|114.440 +639118.845|221226.858|114.977 +639108.588|221236.097|115.477 +639093.184|221249.971|116.412 +639077.779|221263.846|117.098 +639062.350|221277.723|116.638 +639057.251|221282.316|117.050 +639052.145|221286.910|116.995 +639026.576|221309.931|117.876 +639016.374|221319.121|118.433 +639006.233|221328.259|119.247 +638985.885|221346.587|120.518 +638955.530|221373.933|122.320 +638940.357|221387.601|122.944 +638930.298|221396.662|123.539 +638925.287|221401.177|123.740 +638915.183|221410.278|124.478 +638910.136|221414.819|124.124 +638905.088|221419.367|124.590 +638900.074|221423.887|124.798 +638895.045|221428.410|124.843 +638890.052|221432.915|125.392 +638885.032|221437.436|125.569 +638879.960|221442.002|125.730 +638874.998|221446.473|126.075 +638869.966|221451.002|126.145 +638864.922|221455.544|126.066 +638859.908|221460.061|126.407 +638854.881|221464.587|126.602 +638849.910|221469.068|126.858 +638844.890|221473.591|127.157 +638839.873|221478.111|127.522 +638834.920|221482.577|128.065 +638829.903|221487.097|128.425 +638824.932|221491.577|128.778 +638819.902|221496.107|129.028 +638814.931|221500.587|129.367 +638809.951|221505.074|129.653 +638804.964|221509.564|129.900 +638799.981|221514.056|130.165 +638794.945|221518.592|130.424 +638790.011|221523.039|130.708 +638785.042|221527.516|131.183 +638780.035|221532.024|131.293 +638775.030|221536.532|131.403 +638760.049|221550.023|131.771 +638755.029|221554.534|131.393 +638749.975|221559.078|131.162 +638744.998|221563.562|131.223 +638740.002|221568.055|131.137 +638734.985|221572.566|130.903 +638730.008|221577.050|131.015 +638725.030|221581.530|131.168 +638720.056|221586.011|131.354 +638715.048|221590.519|131.281 +638705.081|221599.489|131.189 +638700.122|221603.951|131.177 +638695.111|221608.459|131.171 +638690.152|221612.925|131.211 +638680.145|221621.925|130.631 +638670.142|221630.923|130.199 +638635.297|221662.275|129.641 +638625.385|221671.193|129.220 +638620.377|221675.692|128.882 +638615.409|221680.157|128.495 +638610.361|221684.696|127.910 +638605.402|221689.152|127.657 +638585.529|221707.017|126.255 +638570.573|221720.446|124.785 +638560.673|221729.343|124.176 +638545.640|221742.831|121.713 +638540.736|221747.241|121.509 +638535.935|221751.563|121.966 +638526.157|221760.354|121.561 +638521.247|221764.767|121.405 +638516.361|221769.159|121.128 +638511.414|221773.600|120.530 +638501.456|221782.537|119.037 +638491.565|221791.416|117.763 +638486.661|221795.820|117.263 +638481.714|221800.264|116.830 +638476.852|221804.626|116.352 +638467.129|221813.364|115.718 +638452.496|221826.507|114.300 +638437.835|221839.666|112.441 +638427.892|221848.575|110.027 +638418.651|221856.905|111.325 +638404.560|221869.582|111.569 +638386.162|221886.157|113.371 +638362.988|221907.002|113.642 +638358.440|221911.099|114.203 +638344.447|221923.672|113.395 +638321.118|221944.630|111.408 +638316.585|221948.705|111.490 +638312.025|221952.808|111.466 +638284.642|221977.414|109.996 +638280.064|221981.526|109.579 +638275.599|221985.543|109.652 +638257.945|222001.423|109.890 +638253.491|222005.425|109.887 +638249.014|222009.446|109.359 +638244.186|222013.765|107.616 +638239.650|222017.834|107.116 +638235.267|222021.772|107.040 +638230.912|222025.686|107.092 +638221.119|222034.424|102.669 +638215.961|222039.014|99.584 +638211.188|222043.282|97.856 +638206.909|222047.128|97.902 +638197.942|222055.166|96.655 +638193.412|222059.223|95.564 +638189.291|222062.935|96.296 +638185.073|222066.727|96.454 +638172.262|222078.233|96.000 +638163.578|222086.021|95.110 +638147.104|222100.831|95.848 +638143.529|222104.074|97.926 +638229.059|222024.811|106.823 +638233.524|222020.787|106.997 +638237.867|222016.871|106.903 +638242.436|222012.756|107.543 +638247.267|222008.425|109.292 +638251.745|222004.389|109.609 +638265.083|221992.356|109.594 +638269.631|221988.259|109.823 +638278.476|221980.273|109.280 +638283.139|221976.073|109.850 +638287.849|221971.839|110.865 +638292.436|221967.709|111.136 +638319.856|221942.981|111.395 +638348.031|221917.594|113.441 +638361.979|221905.015|113.380 +638376.073|221892.302|113.444 +638403.938|221867.131|111.231 +638408.702|221862.831|111.405 +638413.399|221858.594|111.237 +638422.741|221850.148|110.188 +638447.470|221827.897|114.251 +638452.386|221823.472|114.901 +638457.360|221818.994|115.614 +638471.973|221805.824|116.510 +638476.874|221801.410|116.928 +638481.717|221797.042|117.053 +638486.646|221792.598|117.406 +638506.485|221774.740|120.058 +638511.517|221770.211|120.860 +638516.467|221765.749|121.213 +638536.045|221748.091|121.539 +638540.912|221743.699|121.515 +638545.871|221739.228|121.762 +638551.111|221734.531|123.780 +638566.004|221721.114|124.895 +638580.969|221707.629|126.105 +638585.846|221703.231|126.050 +638590.872|221698.699|126.352 +638600.961|221689.615|127.605 +638605.893|221685.168|127.678 +638615.887|221676.165|128.489 +638625.882|221667.155|129.059 +638635.925|221658.105|129.720 +638665.899|221631.069|130.141 +638670.953|221626.513|130.363 +638680.983|221617.469|130.671 +638691.045|221608.398|130.930 +638696.129|221603.814|131.150 +638701.146|221599.291|131.226 +638706.184|221594.743|131.110 +638711.171|221590.244|130.976 +638716.255|221585.660|131.287 +638721.266|221581.134|131.012 +638726.313|221576.583|131.067 +638731.349|221572.039|131.015 +638736.366|221567.512|130.839 +638741.477|221562.904|131.095 +638746.500|221558.371|131.003 +638751.572|221553.805|131.400 +638756.669|221549.215|131.573 +638776.919|221530.955|131.317 +638781.976|221526.395|131.226 +638787.002|221521.859|130.863 +638792.077|221517.281|130.494 +638797.116|221512.737|130.278 +638807.284|221503.565|129.830 +638812.304|221499.033|129.473 +638817.379|221494.455|129.196 +638822.451|221489.877|128.900 +638827.513|221485.308|128.495 +638832.570|221480.742|128.050 +638837.624|221476.179|127.568 +638842.735|221471.567|127.193 +638847.807|221466.992|126.962 +638852.873|221462.420|126.672 +638857.993|221457.802|126.447 +638863.041|221453.243|125.947 +638868.137|221448.652|126.078 +638873.285|221444.013|126.294 +638878.406|221439.395|126.157 +638883.505|221434.793|125.745 +638888.629|221430.175|125.697 +638893.679|221425.615|125.285 +638909.011|221411.787|124.648 +638914.104|221407.190|124.209 +638919.203|221402.588|123.862 +638924.324|221397.973|123.859 +638929.439|221393.361|123.786 +638934.541|221388.759|123.523 +638949.863|221374.927|122.195 +638960.071|221365.719|121.795 +638965.192|221361.089|120.985 +638985.659|221342.630|120.363 +638995.931|221333.374|120.479 +639001.021|221328.780|120.024 +639011.235|221319.554|118.708 +639016.337|221314.951|118.549 +639021.476|221310.312|118.016 +639026.588|221305.707|118.119 +639031.693|221301.104|118.110 +639041.934|221291.863|117.403 +639057.239|221278.061|117.013 +639072.558|221264.254|117.260 +639077.663|221259.655|117.239 +639082.763|221255.052|117.080 +639103.114|221236.691|115.824 +639108.262|221232.046|115.562 +639113.316|221227.486|115.343 +639128.577|221213.712|113.907 +639143.851|221199.932|112.410 +639159.094|221186.170|110.070 +639184.456|221163.289|107.287 +639199.556|221149.759|112.072 +639214.677|221136.162|113.791 +639229.759|221122.592|114.754 +639244.779|221109.089|116.281 +639259.730|221095.629|116.623 +639269.694|221086.671|117.595 +639279.685|221077.670|117.684 +639289.655|221068.688|117.235 +639294.645|221064.186|116.870 +639299.628|221059.696|116.815 +639304.645|221055.182|117.071 +639314.569|221046.242|116.903 +639319.568|221041.734|116.605 +639324.503|221037.290|116.644 +639334.418|221028.366|116.931 +639339.411|221023.870|116.864 +639344.342|221019.429|117.031 +639354.233|221010.523|117.034 +639374.073|220992.643|116.303 +639378.992|220988.211|116.102 +639383.951|220983.743|116.056 +639388.904|220979.284|116.132 +639393.821|220974.852|116.025 +639398.758|220970.402|115.666 +639403.705|220965.949|115.879 +639408.558|220961.581|116.096 +639413.517|220957.116|116.211 +639428.217|220943.881|116.400 +639433.146|220939.440|116.355 +639438.069|220934.996|115.769 +639443.043|220930.510|115.212 +639447.898|220926.145|115.577 +639457.667|220917.345|115.617 +639462.568|220912.929|115.452 +639467.482|220908.500|115.202 +639472.380|220904.086|115.160 +639477.245|220899.703|114.971 +639487.010|220890.907|114.794 +639491.912|220886.490|114.812 +639496.721|220882.159|114.788 +639501.586|220877.776|114.718 +639506.445|220873.405|114.788 +639511.303|220869.031|114.861 +639516.116|220864.700|114.910 +639520.919|220860.375|115.065 +639535.419|220847.317|114.837 +639540.201|220843.013|114.837 +639545.035|220838.658|114.806 +639554.621|220830.029|114.718 +639559.416|220825.710|114.672 +639564.213|220821.391|114.660 +639568.987|220817.090|114.425 +639573.708|220812.844|114.675 +639578.530|220808.501|114.504 +639583.315|220804.188|114.242 +639588.049|220799.921|114.023 +639602.426|220786.961|112.916 +639607.187|220782.669|112.587 +639611.899|220778.423|112.285 +639616.627|220774.165|112.285 +639621.309|220769.950|112.273 +639626.021|220765.707|112.057 +639630.718|220761.473|111.965 +639635.387|220757.267|111.740 +639640.084|220753.039|111.706 +639644.736|220748.851|111.667 +639649.381|220744.666|111.682 +639654.069|220740.442|111.411 +639658.689|220736.281|111.280 +639663.316|220732.115|111.146 +639667.922|220727.966|111.179 +639672.576|220723.772|110.893 +639677.112|220719.694|111.115 +639681.717|220715.543|110.847 +639686.368|220711.352|110.661 +639704.467|220695.063|111.127 +639709.018|220690.967|111.033 +639731.351|220670.871|111.950 +639735.731|220666.936|112.404 +639744.488|220659.060|113.060 +639757.695|220647.176|113.557 +639761.986|220643.317|114.014 +639766.284|220639.455|114.447 +639770.618|220635.557|114.690 +639774.980|220631.631|114.773 +639779.317|220627.724|114.709 +639783.630|220623.844|114.818 +639787.943|220619.963|114.937 +639792.250|220616.086|115.108 +639796.490|220612.270|115.093 +639800.821|220608.372|115.163 +639805.073|220604.541|115.105 +639809.325|220600.718|115.373 +639813.568|220596.899|115.410 +639817.804|220593.086|115.498 +639822.038|220589.273|115.608 +639830.429|220581.723|115.757 +639834.636|220577.934|115.791 +639838.790|220574.198|115.852 +639842.975|220570.424|115.745 +639847.151|220566.663|115.727 +639851.329|220562.896|115.687 +639855.463|220559.174|115.657 +639859.644|220555.404|115.638 +639863.750|220551.703|115.504 +639867.911|220547.951|115.361 +639872.071|220544.202|115.248 +639876.146|220540.529|115.321 +639880.161|220536.914|115.455 +639884.291|220533.193|115.282 +639888.369|220529.514|115.114 +639892.484|220525.804|115.050 +639896.534|220522.156|115.059 +639900.582|220518.504|114.843 +639904.621|220514.865|114.700 +639912.738|220507.544|114.236 +639920.638|220500.427|114.395 +639924.610|220496.842|114.139 +639928.599|220493.249|114.066 +639932.592|220489.649|114.002 +639944.321|220479.085|114.294 +639948.223|220475.570|114.221 +639862.153|220550.777|115.547 +639857.840|220554.657|115.675 +639853.551|220558.516|115.702 +639849.266|220562.368|115.718 +639844.923|220566.276|115.794 +639840.585|220570.177|115.849 +639836.257|220574.070|115.876 +639831.981|220577.913|115.647 +639827.582|220581.872|115.815 +639814.488|220593.644|115.590 +639810.066|220597.622|115.407 +639796.901|220609.457|115.218 +639792.466|220613.444|115.157 +639787.980|220617.479|115.123 +639783.496|220621.512|115.096 +639779.080|220625.483|114.998 +639774.675|220629.437|114.538 +639770.170|220633.490|114.684 +639765.677|220637.529|114.486 +639752.227|220649.617|113.809 +639743.223|220657.704|113.035 +639734.283|220665.732|112.234 +639729.708|220669.844|112.054 +639706.848|220690.388|111.246 +639693.043|220702.790|110.893 +639683.787|220711.105|110.877 +639674.515|220719.435|110.719 +639669.909|220723.574|110.627 +639665.124|220727.884|111.136 +639660.454|220732.078|111.182 +639655.843|220736.224|111.210 +639651.121|220740.469|111.325 +639646.458|220744.660|111.402 +639641.730|220748.915|111.627 +639637.006|220753.161|111.819 +639632.291|220757.401|111.990 +639627.648|220761.574|112.005 +639622.897|220765.844|112.115 +639618.200|220770.069|112.225 +639613.442|220774.348|112.423 +639608.687|220778.624|112.636 +639603.996|220782.840|112.764 +639599.262|220787.095|112.852 +639589.762|220795.644|113.398 +639584.946|220799.979|113.849 +639580.194|220804.252|114.203 +639575.406|220808.562|114.477 +639570.642|220812.844|114.578 +639565.951|220817.057|114.459 +639556.410|220825.631|114.443 +639551.634|220829.928|114.742 +639542.106|220838.490|114.727 +639537.272|220842.834|114.718 +639532.529|220847.098|114.824 +639527.756|220851.386|114.736 +639522.931|220855.730|115.230 +639518.188|220859.988|114.898 +639513.379|220864.307|114.757 +639508.612|220868.592|114.727 +639503.753|220872.957|114.651 +639498.995|220877.230|114.550 +639494.170|220881.571|114.690 +639489.354|220885.899|114.745 +639484.499|220890.264|114.727 +639469.957|220903.337|115.081 +639465.101|220907.701|115.145 +639460.231|220912.084|115.452 +639455.372|220916.449|115.602 +639450.462|220920.869|115.867 +639445.640|220925.191|115.041 +639440.745|220929.589|115.129 +639435.807|220934.036|115.791 +639430.848|220938.501|116.178 +639425.962|220942.894|116.260 +639421.033|220947.322|116.278 +639416.178|220951.681|115.998 +639411.203|220956.152|116.025 +639406.293|220960.563|115.858 +639396.466|220969.393|115.721 +639391.492|220973.867|115.870 +639386.530|220978.327|115.846 +639381.559|220982.795|115.974 +639376.557|220987.288|115.873 +639371.610|220991.744|116.519 +639361.588|221000.757|116.787 +639351.630|221009.703|116.867 +639341.584|221018.731|116.958 +639336.594|221023.212|116.821 +639331.553|221027.741|116.806 +639321.519|221036.754|116.861 +639316.499|221041.259|116.486 +639311.461|221045.785|116.504 +639306.410|221050.330|116.858 +639301.375|221054.853|116.888 +639296.297|221059.410|116.751 +639291.210|221063.985|116.943 +639286.156|221068.532|117.534 +639276.012|221077.643|117.299 +639260.757|221091.344|116.867 +639255.630|221095.952|117.065 +639245.459|221105.078|116.291 +639225.068|221123.375|114.803 +639219.911|221127.999|114.282 +639209.694|221137.164|113.258 +639199.422|221146.378|112.337 +639184.060|221160.128|108.570 +639153.086|221187.987|110.996 +639137.596|221201.931|112.889 +639127.230|221211.258|113.761 +639116.915|221220.536|114.572 +639111.761|221225.176|115.126 +639106.604|221229.808|115.291 +639101.450|221234.448|115.815 +639085.945|221248.392|116.845 +639080.793|221253.025|117.193 +639075.636|221257.658|117.232 +639070.482|221262.291|117.363 +639060.162|221271.560|117.153 +639049.804|221280.869|117.370 +639044.653|221285.499|117.632 +639039.496|221290.135|117.738 +639034.339|221294.768|117.839 +639024.085|221303.988|118.409 +639018.882|221308.663|118.543 +639013.740|221313.290|119.101 +639008.641|221317.878|119.415 +638998.354|221327.131|120.372 +638982.928|221340.994|120.683 +638936.946|221382.352|123.155 +638931.844|221386.942|123.490 +638926.799|221391.481|124.020 +638921.727|221396.038|124.084 +638916.607|221400.643|124.127 +638886.227|221427.965|125.630 +638881.189|221432.492|125.599 +638876.138|221437.039|126.087 +638860.999|221450.649|126.471 +638855.948|221455.187|126.379 +638850.940|221459.692|126.843 +638845.899|221464.225|126.876 +638840.925|221468.699|127.212 +638835.911|221473.213|127.608 +638830.948|221477.675|128.092 +638825.931|221482.193|128.486 +638820.966|221486.661|128.934 +638815.986|221491.138|129.232 +638810.960|221495.662|129.537 +638806.025|221500.100|129.821 +638801.032|221504.589|130.025 +638796.027|221509.088|130.113 +638791.038|221513.575|130.354 +638781.126|221522.493|131.113 +638776.127|221526.989|131.317 +638771.211|221531.409|131.384 +638761.219|221540.388|131.491 +638756.230|221544.869|131.400 +638746.226|221553.857|131.031 +638741.221|221558.350|130.878 +638736.287|221562.788|130.927 +638731.291|221567.275|130.903 +638726.338|221571.725|130.839 +638721.363|221576.199|131.037 +638711.485|221585.078|131.244 +638706.526|221589.534|131.223 +638701.561|221593.993|131.174 +638696.577|221598.471|130.985 +638691.627|221602.921|131.092 +638686.702|221607.344|131.031 +638671.733|221620.785|130.226 +638632.179|221656.316|129.229 +638622.315|221665.173|128.885 +638617.393|221669.593|128.809 +638612.419|221674.058|128.388 +638602.500|221682.962|127.498 +638597.593|221687.366|127.285 +638543.204|221736.207|122.393 +638538.248|221740.651|121.570 +638533.353|221745.053|121.448 +638528.598|221749.335|121.887 +638523.722|221753.721|121.917 +638518.808|221758.135|121.457 +638514.017|221762.445|121.439 +638509.100|221766.855|121.027 +638504.126|221771.320|120.290 +638499.252|221775.697|119.875 +638494.348|221780.099|119.311 +638484.466|221788.965|117.854 +638474.734|221797.707|117.071 +638469.976|221801.986|117.178 +638465.172|221806.305|117.043 +638455.416|221815.065|116.044 +638440.773|221828.205|114.181 +638416.441|221850.035|110.490 +638397.662|221866.930|111.018 +638393.078|221871.060|111.542 +638379.277|221883.487|112.731 +638374.699|221887.611|113.078 +638370.023|221891.811|112.999 +638365.323|221896.039|112.807 +638337.525|221921.035|112.770 +638332.868|221925.217|112.441 +638318.902|221937.763|111.371 +638291.531|221962.366|110.899 +638286.931|221966.496|110.569 +638273.127|221978.893|109.222 +638264.233|221986.891|109.372 +638259.700|221990.963|108.991 +638246.414|222002.911|109.070 +638241.897|222006.968|108.610 +638237.142|222011.223|107.211 +638232.579|222015.319|106.604 +638228.208|222019.251|106.595 +638223.813|222023.208|106.494 +638214.011|222031.964|102.090 +638208.789|222036.610|98.573 +638204.123|222040.791|97.286 +638199.737|222044.736|97.143 +638195.076|222048.905|95.729 +638186.667|222056.486|96.524 +638182.403|222060.323|96.707 +638169.476|222071.945|96.012 +638165.215|222075.776|95.857 +638161.064|222079.513|96.143 +638156.614|222083.506|95.308 +638148.494|222090.831|96.408 +638144.446|222094.476|96.728 +638140.365|222098.152|96.920 +638136.210|222101.889|96.866 +638229.854|222015.423|106.342 +638234.274|222011.445|106.778 +638238.919|222007.276|107.948 +638243.433|222003.219|108.604 +638252.224|221995.297|108.549 +638261.081|221987.320|108.838 +638265.647|221983.215|109.359 +638274.474|221975.253|108.972 +638279.034|221971.151|109.308 +638320.176|221934.111|111.420 +638334.084|221921.590|112.279 +638338.781|221917.366|112.807 +638361.860|221896.572|112.666 +638366.466|221892.418|112.657 +638371.151|221888.199|112.782 +638375.762|221884.039|112.331 +638412.945|221850.517|110.134 +638417.624|221846.298|109.893 +638437.551|221828.409|114.136 +638462.057|221806.378|117.004 +638466.971|221801.959|117.449 +638471.796|221797.615|117.434 +638476.685|221793.214|117.802 +638481.534|221788.849|117.979 +638486.472|221784.411|118.656 +638496.393|221775.493|119.823 +638506.275|221766.608|120.860 +638525.968|221748.887|121.984 +638530.744|221744.574|121.375 +638535.645|221740.164|121.524 +638540.662|221735.649|121.789 +638545.771|221731.068|123.283 +638560.676|221717.660|124.398 +638570.679|221708.662|125.398 +638580.619|221699.717|125.764 +638585.593|221695.239|126.029 +638590.674|221690.673|126.681 +638595.679|221686.174|127.193 +638600.687|221681.666|127.428 +638610.727|221672.638|128.486 +638615.744|221668.121|128.513 +638630.728|221654.630|128.989 +638665.774|221623.077|129.909 +638670.779|221618.576|130.125 +638675.863|221614.004|130.598 +638685.879|221604.985|130.848 +638690.896|221600.467|130.866 +638695.907|221595.953|130.869 +638700.985|221591.381|131.055 +638706.008|221586.861|131.217 +638711.049|221582.320|131.128 +638716.026|221577.833|130.951 +638721.071|221573.288|130.927 +638726.109|221568.753|130.869 +638731.074|221564.275|130.656 +638736.192|221559.670|130.930 +638741.224|221555.137|130.891 +638746.293|221550.575|131.232 +638751.368|221545.999|131.195 +638761.509|221536.868|131.589 +638771.573|221527.797|131.314 +638776.618|221523.246|131.107 +638781.674|221518.689|131.031 +638791.739|221509.609|130.442 +638796.820|221505.028|130.153 +638801.867|221500.478|130.065 +638806.894|221495.945|129.741 +638811.965|221491.370|129.409 +638817.040|221486.792|129.132 +638822.054|221482.269|128.714 +638827.117|221477.700|128.297 +638832.174|221473.137|127.858 +638837.227|221468.574|127.379 +638842.314|221463.990|127.291 +638847.383|221459.418|127.020 +638852.440|221454.858|126.578 +638862.642|221445.656|126.322 +638872.819|221436.491|126.407 +638877.906|221431.897|125.809 +638883.018|221427.286|125.569 +638908.529|221404.282|124.548 +638913.632|221399.680|124.209 +638918.755|221395.065|124.249 +638934.111|221381.215|123.432 +638939.201|221376.622|122.920 +638944.292|221372.025|122.469 +638949.440|221367.383|122.158 +638954.600|221362.732|122.091 +638964.777|221353.545|121.082 +638975.089|221344.252|120.826 +638990.521|221330.347|120.884 +638995.614|221325.751|120.552 +639016.182|221307.197|118.945 +639021.278|221302.598|118.650 +639062.484|221265.455|117.671 +639072.735|221256.213|117.339 +639083.034|221246.926|116.928 +639098.426|221233.036|115.571 +639108.683|221223.789|115.157 +639113.831|221219.140|114.572 +639124.090|221209.890|113.953 +639154.848|221182.116|110.490 +639159.969|221177.480|109.052 +639165.089|221172.856|108.451 +639170.216|221168.217|107.119 +639180.399|221159.049|107.933 +639185.493|221154.489|110.155 +639195.652|221145.360|112.087 +639205.771|221136.253|112.916 +639220.938|221122.607|114.657 +639241.119|221104.438|116.217 +639251.183|221095.382|117.092 +639261.229|221086.324|116.900 +639266.182|221081.867|117.543 +639281.191|221068.343|117.830 +639286.180|221063.842|117.513 +639291.182|221059.324|116.885 +639296.172|221054.822|116.614 +639301.155|221050.333|116.608 +639306.142|221045.834|116.498 +639311.128|221041.338|116.431 +639315.999|221036.955|116.851 +639320.982|221032.462|116.873 +639325.926|221028.003|116.742 +639335.808|221019.097|116.748 +639350.579|221005.789|117.053 +639360.436|220996.901|116.848 +639370.284|220988.016|116.163 +639375.225|220983.554|115.599 +639404.544|220957.128|115.727 +639409.411|220952.739|115.754 +639414.264|220948.368|116.004 +639419.128|220943.988|116.123 +639424.002|220939.593|116.132 +639428.781|220935.283|116.102 +639433.722|220930.830|115.946 +639438.575|220926.440|115.053 +639443.461|220922.039|115.038 +639448.197|220917.775|115.638 +639453.077|220913.380|115.733 +639457.896|220909.030|115.401 +639462.757|220904.644|115.175 +639467.567|220900.307|115.010 +639472.417|220895.936|115.004 +639477.235|220891.586|114.773 +639482.036|220887.264|114.828 +639491.619|220878.620|114.581 +639496.487|220874.231|114.486 +639501.245|220869.943|114.538 +639506.051|220865.617|114.632 +639510.815|220861.326|114.672 +639515.570|220857.043|114.831 +639529.893|220844.138|114.818 +639534.675|220839.831|114.800 +639539.448|220835.531|114.867 +639548.961|220826.966|114.968 +639553.710|220822.683|114.858 +639563.290|220814.045|114.471 +639568.045|220809.763|114.407 +639572.778|220805.496|114.148 +639577.561|220801.183|113.898 +639582.297|220796.912|113.642 +639587.089|220792.590|113.364 +639591.837|220788.308|113.069 +639596.571|220784.041|112.913 +639605.977|220775.567|112.804 +639610.735|220771.276|112.532 +639615.490|220766.987|112.310 +639620.193|220762.750|112.142 +639624.890|220758.517|112.048 +639629.578|220754.295|112.042 +639634.302|220750.034|111.776 +639639.027|220745.776|111.542 +639643.666|220741.597|111.594 +639648.329|220737.397|111.840 +639653.011|220733.182|111.987 +639657.607|220729.042|112.051 +639662.283|220724.827|111.911 +639667.056|220720.514|111.109 +639671.677|220716.357|111.408 +639676.313|220712.178|111.267 +639690.236|220699.629|110.914 +639694.833|220695.490|111.124 +639699.447|220691.336|111.258 +639704.035|220687.199|111.222 +639722.268|220670.783|111.783 +639726.751|220666.750|112.218 +639735.761|220658.640|112.813 +639740.199|220654.650|113.255 +639744.661|220650.632|113.538 +639749.127|220646.612|113.831 +639758.036|220638.593|114.279 +639762.456|220634.618|114.590 +639766.948|220630.564|114.456 +639771.344|220626.614|114.946 +639775.733|220622.661|115.169 +639780.137|220618.699|115.340 +639793.402|220606.744|115.309 +639797.764|220602.815|115.483 +639810.831|220591.047|115.647 +639815.137|220587.170|115.916 +639819.432|220583.302|115.977 +639832.374|220571.640|115.952 +639836.672|220567.769|116.065 +639840.960|220563.904|115.961 +639845.276|220560.015|115.748 +639849.491|220556.220|115.815 +639853.734|220552.401|115.742 +639857.968|220548.588|115.733 +639862.193|220544.781|115.529 +639870.663|220537.149|115.068 +639874.772|220533.455|115.251 +639878.926|220529.712|115.209 +639883.068|220525.984|115.239 +639887.177|220522.284|115.205 +639891.295|220518.578|115.141 +639895.428|220514.856|115.017 +639899.509|220511.177|114.895 +639903.609|220507.483|114.706 +639907.705|220503.795|114.565 +639911.738|220500.162|114.477 +639915.798|220496.507|114.297 +639919.818|220492.883|114.297 +639923.759|220489.338|114.456 +639927.780|220485.711|113.995 +639935.686|220478.600|114.270 +639939.633|220475.043|114.206 +639943.574|220471.498|114.191 +639947.488|220467.972|114.069 +639843.533|220559.482|115.617 +639839.268|220563.313|115.824 +639835.026|220567.126|115.943 +639830.801|220570.918|115.980 +639826.531|220574.752|115.989 +639822.291|220578.556|115.864 +639818.048|220582.363|115.757 +639813.751|220586.222|115.705 +639809.425|220590.105|115.806 +639805.131|220593.964|115.772 +639800.842|220597.807|115.410 +639796.490|220601.715|115.449 +639792.210|220605.552|115.081 +639787.754|220609.561|115.446 +639783.374|220613.493|115.394 +639779.006|220617.412|115.285 +639770.192|220625.322|114.992 +639765.796|220629.263|114.782 +639761.401|220633.204|114.309 +639756.920|220637.227|114.352 +639752.449|220641.239|114.059 +639747.959|220645.268|113.880 +639743.546|220649.227|113.572 +639739.117|220653.193|113.047 +639725.557|220665.360|112.340 +639721.033|220669.420|112.170 +639716.504|220673.480|111.706 +639711.883|220677.629|111.527 +639707.354|220681.692|111.100 +639702.760|220685.825|111.127 +639698.054|220690.055|111.243 +639693.452|220694.195|111.359 +639688.804|220698.367|111.112 +639660.549|220723.779|111.999 +639655.827|220728.024|112.090 +639651.063|220732.307|112.127 +639646.360|220736.537|112.136 +639641.553|220740.856|112.167 +639636.796|220745.133|112.240 +639632.056|220749.397|112.215 +639627.261|220753.704|112.225 +639622.549|220757.938|112.023 +639617.681|220762.318|112.273 +639612.890|220766.624|112.334 +639608.096|220770.937|112.450 +639603.243|220775.299|112.645 +639598.394|220779.661|112.859 +639593.541|220784.028|113.139 +639588.707|220788.375|113.264 +639583.827|220792.764|113.401 +639578.993|220797.114|113.605 +639574.101|220801.515|113.898 +639569.218|220805.907|114.139 +639564.332|220810.302|114.425 +639559.465|220814.679|114.599 +639554.612|220819.044|114.657 +639549.693|220823.470|114.910 +639544.868|220827.804|114.776 +639530.201|220840.990|114.901 +639515.528|220854.181|114.843 +639510.623|220858.589|114.684 +639505.753|220862.966|114.681 +639500.845|220867.373|114.584 +639495.935|220871.787|114.547 +639490.976|220876.246|114.544 +639486.059|220880.665|114.599 +639481.143|220885.088|114.721 +639476.187|220889.541|114.733 +639466.293|220898.445|115.233 +639461.343|220902.895|115.257 +639456.387|220907.351|115.413 +639446.493|220916.245|115.547 +639441.555|220920.677|114.968 +639436.660|220925.078|115.041 +639431.604|220929.638|116.010 +639426.669|220934.076|116.062 +639421.692|220938.550|116.071 +639416.766|220942.976|116.047 +639411.801|220947.435|115.913 +639406.851|220951.882|115.626 +639401.886|220956.344|115.550 +639372.152|220983.072|115.513 +639357.107|220996.615|116.836 +639347.153|221005.567|116.906 +639337.213|221014.506|116.858 +639327.231|221023.486|116.821 +639322.193|221028.015|116.766 +639317.203|221032.505|116.800 +639312.216|221036.989|116.778 +639307.248|221041.451|116.367 +639302.259|221045.941|116.422 +639297.223|221050.470|116.473 +639292.188|221054.999|116.571 +639287.177|221059.516|117.293 +639272.083|221073.098|117.610 +639262.046|221082.120|117.275 +639257.017|221086.647|117.427 +639241.981|221100.158|116.458 +639236.915|221104.712|116.272 +639221.837|221118.255|114.946 +639181.366|221154.575|109.347 +639176.263|221159.137|107.400 +639171.188|221163.709|107.823 +639166.065|221168.318|107.957 +639135.405|221195.963|112.636 +639130.293|221200.569|113.227 +639114.968|221214.370|114.383 +639109.814|221219.012|114.831 +639099.600|221228.205|115.343 +639084.250|221242.037|116.979 +639079.096|221246.673|117.110 +639073.993|221251.266|117.427 +639068.888|221255.860|117.476 +639038.064|221283.594|118.104 +639027.758|221292.869|118.439 +638996.885|221320.670|120.622 +638976.332|221339.168|121.576 +638971.148|221343.825|121.061 +638955.703|221357.724|122.112 +638950.598|221362.318|122.304 +638945.450|221366.947|122.697 +638930.097|221380.764|123.676 +638924.958|221385.394|124.154 +638919.840|221389.993|124.258 +638899.410|221408.376|125.322 +638889.129|221417.624|125.685 +638884.057|221422.186|125.819 +638878.875|221426.844|125.797 +638858.432|221445.229|126.501 +638853.330|221449.814|126.352 +638848.228|221454.407|126.824 +638843.140|221458.982|126.913 +638838.087|221463.533|127.425 +638832.963|221468.141|127.687 +638827.952|221472.652|128.117 +638822.893|221477.206|128.598 +638817.824|221481.769|128.973 +638812.798|221486.292|129.260 +638807.723|221490.858|129.598 +638802.700|221495.381|129.952 +638797.664|221499.911|130.202 +638792.623|221504.446|130.409 +638787.566|221508.991|130.479 +638782.525|221513.526|130.729 +638777.584|221517.973|130.994 +638772.533|221522.512|131.186 +638767.532|221527.013|131.360 +638762.527|221531.515|131.546 +638757.507|221536.029|131.595 +638747.457|221545.055|131.232 +638742.437|221549.566|130.894 +638737.393|221554.095|130.839 +638732.412|221558.576|130.903 +638727.395|221563.081|130.702 +638717.438|221572.036|131.003 +638712.454|221576.519|131.140 +638707.513|221580.960|131.238 +638702.499|221585.468|131.165 +638697.528|221589.936|131.046 +638692.557|221594.405|130.951 +638687.601|221598.858|131.034 +638682.590|221603.357|130.674 +638677.612|221607.831|130.595 +638672.629|221612.309|130.531 +638667.630|221616.796|129.961 +638647.745|221634.654|128.845 +638608.447|221669.971|128.379 +638583.770|221692.112|126.038 +638573.910|221700.954|125.191 +638564.117|221709.748|124.868 +638559.191|221714.161|124.414 +638554.232|221718.605|123.776 +638549.438|221722.912|123.865 +638534.490|221736.302|121.460 +638529.659|221740.639|121.436 +638524.831|221744.973|121.460 +638520.101|221749.234|122.064 +638515.212|221753.611|121.472 +638510.408|221757.930|121.692 +638500.663|221766.666|120.506 +638495.787|221771.043|120.372 +638490.943|221775.383|119.866 +638481.168|221784.146|118.738 +638476.331|221788.481|118.083 +638461.969|221801.368|117.632 +638457.132|221805.705|117.062 +638452.328|221810.015|116.705 +638447.518|221814.328|116.348 +638442.791|221818.570|116.175 +638433.025|221827.318|114.532 +638394.687|221861.685|110.460 +638371.702|221882.347|112.212 +638367.088|221886.489|112.185 +638362.473|221890.631|112.167 +638357.928|221894.719|112.496 +638325.623|221923.715|111.792 +638284.301|221960.772|108.689 +638279.915|221964.716|109.082 +638275.364|221968.798|108.786 +638270.893|221972.815|108.841 +638257.436|221984.888|108.274 +638252.961|221988.902|108.174 +638239.693|222000.811|107.939 +638235.207|222004.837|107.631 +638230.677|222008.891|106.961 +638226.142|222012.954|106.293 +638221.740|222016.904|106.177 +638217.367|222020.830|106.193 +638202.620|222033.973|99.252 +638197.896|222038.192|97.774 +638193.220|222042.370|96.293 +638172.296|222061.173|97.963 +638167.593|222065.371|96.091 +638163.386|222069.147|96.158 +638159.171|222072.930|96.207 +638150.612|222080.608|95.637 +638230.077|222007.611|107.067 +638243.473|221995.541|107.717 +638247.996|221991.469|108.204 +638256.863|221983.471|108.061 +638265.946|221975.290|108.902 +638274.846|221967.264|108.811 +638283.816|221959.172|108.640 +638288.437|221955.014|109.277 +638320.700|221925.949|111.292 +638325.321|221921.788|111.636 +638357.825|221892.488|112.334 +638367.033|221884.182|112.014 +638380.898|221871.667|111.045 +638390.100|221863.355|110.109 +638423.781|221833.027|112.785 +638428.813|221828.510|113.910 +638443.568|221815.242|116.272 +638453.273|221806.500|116.928 +638458.168|221802.096|117.519 +638463.039|221797.713|118.004 +638477.669|221784.530|118.613 +638482.595|221780.102|119.226 +638492.480|221771.201|120.168 +638497.414|221766.760|120.643 +638512.170|221753.471|121.640 +638517.132|221749.003|121.771 +638521.917|221744.684|121.490 +638526.821|221740.258|121.341 +638531.695|221735.866|121.311 +638536.810|221731.273|122.487 +638546.755|221722.321|123.502 +638566.674|221704.383|124.776 +638571.685|221699.872|125.206 +638581.618|221690.923|125.566 +638591.723|221681.837|127.178 +638601.799|221672.766|128.080 +638611.766|221663.787|128.312 +638616.777|221659.273|128.681 +638621.749|221654.792|128.781 +638626.711|221650.318|128.473 +638656.734|221623.260|128.976 +638661.836|221618.670|129.531 +638666.883|221614.125|130.080 +638671.952|221609.560|130.442 +638676.969|221605.045|130.793 +638682.038|221600.473|130.833 +638692.069|221591.436|130.860 +638697.065|221586.928|130.759 +638702.155|221582.344|131.055 +638707.209|221577.790|131.083 +638712.216|221573.276|131.144 +638717.240|221568.747|130.930 +638722.202|221564.269|130.647 +638727.289|221559.682|130.604 +638732.367|221555.110|130.973 +638737.399|221550.572|130.939 +638742.431|221546.036|130.900 +638747.461|221541.504|130.903 +638757.629|221532.357|131.515 +638762.694|221527.794|131.470 +638767.742|221523.243|131.241 +638772.741|221518.738|131.052 +638777.828|221514.154|130.750 +638782.823|221509.652|130.567 +638787.877|221505.098|130.497 +638792.958|221500.517|130.199 +638797.987|221495.985|129.885 +638803.007|221491.455|129.510 +638808.046|221486.917|129.321 +638813.118|221482.342|129.001 +638818.186|221477.773|128.617 +638823.194|221473.256|128.147 +638828.263|221468.687|127.803 +638833.326|221464.121|127.413 +638838.404|221459.543|127.224 +638843.476|221454.974|126.965 +638848.514|221450.435|126.913 +638853.626|221445.824|126.587 +638858.701|221441.252|126.428 +638868.869|221432.092|126.395 +638873.934|221427.530|126.117 +638878.973|221422.982|125.529 +638899.334|221404.642|125.502 +638904.381|221400.091|125.057 +638919.652|221386.327|124.304 +638924.751|221381.730|123.956 +638929.798|221377.177|123.563 +638945.054|221363.427|122.676 +638950.150|221358.831|122.310 +638955.258|221354.228|122.195 +638960.345|221349.638|121.673 +638965.472|221345.026|121.902 +638970.568|221340.430|121.606 +638990.990|221322.029|121.106 +638996.138|221317.390|120.838 +639006.337|221308.197|120.445 +639036.963|221280.588|118.363 +639047.174|221271.389|118.302 +639072.728|221248.362|117.443 +639077.828|221243.765|117.150 +639093.126|221229.967|115.867 +639108.433|221216.163|114.578 +639118.695|221206.915|114.267 +639123.801|221202.312|113.822 +639128.909|221197.704|113.203 +639134.070|221193.059|113.093 +639144.293|221183.842|112.069 +639159.648|221169.976|109.030 +639164.723|221165.389|107.842 +639169.844|221160.783|108.006 +639235.849|221101.494|116.348 +639261.126|221078.752|117.138 +639266.137|221074.247|117.476 +639281.209|221060.681|117.583 +639291.307|221051.579|116.534 +639296.342|221047.044|116.446 +639301.378|221042.512|116.355 +639306.398|221037.997|116.656 +639311.375|221033.520|116.858 +639316.365|221029.027|116.784 +639321.360|221024.528|116.632 +639336.323|221011.065|116.885 +639346.266|221002.113|116.833 +639356.220|220993.152|116.696 +639371.107|220979.732|115.449 +639400.633|220953.159|115.538 +639405.537|220948.746|115.736 +639410.399|220944.372|115.885 +639415.315|220939.949|115.992 +639420.189|220935.563|116.013 +639425.060|220931.180|116.111 +639429.918|220926.809|116.373 +639434.883|220922.326|115.318 +639439.797|220917.897|114.940 +639444.600|220913.578|115.361 +639449.398|220909.268|115.870 +639454.327|220904.827|115.440 +639459.182|220900.453|115.266 +639473.715|220887.368|114.861 +639478.522|220883.037|114.809 +639483.399|220878.648|114.590 +639488.202|220874.326|114.645 +639493.018|220869.988|114.575 +639497.785|220865.697|114.565 +639502.543|220861.414|114.651 +639507.359|220857.077|114.654 +639512.123|220852.791|114.742 +639531.164|220835.646|114.888 +639535.907|220831.376|114.803 +639540.652|220827.103|114.721 +639545.401|220822.827|114.623 +639550.129|220818.572|114.754 +639554.835|220814.332|114.623 +639559.596|220810.043|114.492 +639564.317|220805.791|114.312 +639569.029|220801.545|114.224 +639573.775|220797.269|113.880 +639578.515|220792.996|113.596 +639583.212|220788.765|113.304 +639587.939|220784.504|113.179 +639592.621|220780.285|113.051 +639597.327|220776.046|112.758 +639602.003|220771.836|112.734 +639606.639|220767.667|113.060 +639611.223|220763.546|113.407 +639615.914|220759.321|113.328 +639620.553|220755.142|113.267 +639625.250|220750.906|112.804 +639629.907|220746.712|112.663 +639634.564|220742.515|112.548 +639639.188|220738.351|112.346 +639643.791|220734.203|112.307 +639648.454|220730.003|112.215 +639653.023|220725.891|112.124 +639657.635|220721.739|112.097 +639676.014|220705.180|111.578 +639685.161|220696.938|111.237 +639689.657|220692.896|111.475 +639694.257|220688.754|111.353 +639698.780|220684.682|111.426 +639703.279|220680.631|111.664 +639707.747|220676.614|111.813 +639712.264|220672.548|111.978 +639716.778|220668.488|112.191 +639721.268|220664.443|112.228 +639725.642|220660.511|112.715 +639734.560|220652.489|113.288 +639738.986|220648.508|113.496 +639743.485|220644.460|113.581 +639747.862|220640.519|113.794 +639752.297|220636.529|113.992 +639756.689|220632.585|114.471 +639761.057|220628.653|114.788 +639765.458|220624.694|114.928 +639769.868|220620.725|115.029 +639774.255|220616.778|115.285 +639778.613|220612.855|115.425 +639783.091|220608.820|115.187 +639796.176|220597.039|115.410 +639804.783|220589.297|115.922 +639809.118|220585.396|116.019 +639813.461|220581.488|116.096 +639817.759|220577.617|116.153 +639822.056|220573.750|116.224 +639826.369|220569.866|116.227 +639839.296|220558.223|115.879 +639843.642|220554.303|115.772 +639847.864|220550.499|115.803 +639856.502|220542.709|115.440 +639869.176|220531.291|115.434 +639873.385|220527.496|115.373 +639877.664|220523.637|115.227 +639881.831|220519.882|115.154 +639886.031|220516.097|115.172 +639890.210|220512.332|115.081 +639894.389|220508.565|114.983 +639898.525|220504.834|114.873 +639902.606|220501.158|115.026 +639906.745|220497.427|114.931 +639910.878|220493.703|114.879 +639923.247|220482.541|113.962 +639927.319|220478.871|113.776 +639931.288|220475.299|114.081 +639935.336|220471.650|114.035 +639939.386|220467.999|113.989 +639943.388|220464.390|113.941 +639855.027|220542.172|115.443 +639829.542|220565.072|116.077 +639825.251|220568.931|116.217 +639820.999|220572.747|116.147 +639816.701|220576.606|116.065 +639812.449|220580.425|116.031 +639808.157|220584.280|115.961 +639803.811|220588.182|115.907 +639799.608|220591.949|115.364 +639790.951|220599.725|115.437 +639786.617|220603.617|115.404 +639777.949|220611.402|115.358 +639773.587|220615.321|115.242 +639769.250|220619.211|114.980 +639764.891|220623.124|114.870 +639760.532|220627.038|114.770 +639756.204|220630.921|114.511 +639751.833|220634.844|114.212 +639747.399|220638.824|114.002 +639743.022|220642.750|113.770 +639738.648|220646.676|113.532 +639734.234|220650.639|113.258 +639729.845|220654.577|113.142 +639725.392|220658.573|112.810 +639720.975|220662.532|112.267 +639716.541|220666.516|112.185 +639712.072|220670.527|112.005 +639707.607|220674.532|111.816 +639703.077|220678.595|111.734 +639698.582|220682.624|111.441 +639694.110|220686.639|111.362 +639689.569|220690.714|111.411 +639684.936|220694.874|111.432 +639680.437|220698.910|111.240 +639662.039|220715.427|111.709 +639657.385|220719.609|112.008 +639652.770|220723.751|112.057 +639648.152|220727.896|112.139 +639643.489|220732.084|112.209 +639638.838|220736.260|112.237 +639634.165|220740.457|112.417 +639629.499|220744.648|112.587 +639624.771|220748.894|112.874 +639620.086|220753.103|113.218 +639615.395|220757.316|113.285 +639610.647|220761.580|113.410 +639605.962|220765.786|113.456 +639601.283|220769.986|113.474 +639596.492|220774.287|113.633 +639591.834|220778.469|113.532 +639587.110|220782.703|113.179 +639582.379|220786.948|113.288 +639577.597|220791.246|113.468 +639572.766|220795.586|113.675 +639568.042|220799.829|113.828 +639563.195|220804.185|114.212 +639558.361|220808.525|114.501 +639553.597|220812.805|114.645 +639548.751|220817.154|114.681 +639543.962|220821.455|114.666 +639539.125|220825.795|114.645 +639534.288|220830.139|114.660 +639529.466|220834.464|114.556 +639524.635|220838.801|114.556 +639510.047|220851.895|114.675 +639505.186|220856.260|114.587 +639500.330|220860.616|114.462 +639485.575|220873.862|114.639 +639480.728|220878.212|114.517 +639475.763|220882.671|114.636 +639470.859|220887.072|114.639 +639465.869|220891.556|115.093 +639460.932|220895.994|115.544 +639451.032|220904.885|115.730 +639446.106|220909.305|115.562 +639441.208|220913.694|115.065 +639436.240|220918.150|114.837 +639431.198|220922.685|115.565 +639421.265|220931.607|115.876 +639416.288|220936.078|115.928 +639411.264|220940.586|115.916 +639406.302|220945.036|115.754 +639401.313|220949.508|115.334 +639391.352|220958.445|114.971 +639366.212|220981.021|115.556 +639356.038|220990.171|116.742 +639340.929|221003.738|117.010 +639335.881|221008.267|117.022 +639320.784|221021.816|116.501 +639315.685|221026.394|116.723 +639310.653|221030.908|116.589 +639305.560|221035.486|116.790 +639300.500|221040.018|116.214 +639295.462|221044.542|116.306 +639290.377|221049.107|116.382 +639285.318|221053.658|117.059 +639280.218|221058.242|117.607 +639275.134|221062.808|117.812 +639259.879|221076.497|117.342 +639244.666|221090.152|117.287 +639239.607|221094.687|116.882 +639234.498|221099.268|116.516 +639183.557|221144.922|111.347 +639178.458|221149.478|109.756 +639163.108|221163.228|107.902 +639137.508|221186.280|112.849 +639117.059|221204.650|113.956 +639111.947|221209.237|113.691 +639106.839|221213.831|114.294 +639101.688|221218.464|115.038 +639096.631|221223.011|115.510 +639091.474|221227.641|115.608 +639086.377|221232.229|116.528 +639081.269|221236.816|116.534 +639071.070|221245.984|117.540 +639065.968|221250.568|117.946 +639035.290|221278.119|118.650 +639025.079|221287.288|118.936 +639019.989|221291.866|119.579 +639014.880|221296.453|119.646 +638999.595|221310.194|120.890 +638984.336|221323.900|121.585 +638979.289|221328.436|121.981 +638974.183|221333.020|122.188 +638969.060|221337.616|121.917 +638958.882|221346.760|122.109 +638953.765|221351.360|122.082 +638948.708|221355.904|122.380 +638943.609|221360.489|122.783 +638928.338|221374.217|123.588 +638923.276|221378.771|123.773 +638918.234|221383.306|124.334 +638913.132|221387.896|124.706 +638908.063|221392.450|124.813 +638903.000|221397.001|125.060 +638897.944|221401.548|125.435 +638882.734|221415.219|125.919 +638877.638|221419.794|125.739 +638872.584|221424.341|126.203 +638867.558|221428.855|126.389 +638862.425|221433.470|126.428 +638857.393|221437.990|126.553 +638852.318|221442.553|126.779 +638847.237|221447.119|126.910 +638842.244|221451.603|126.992 +638837.157|221456.175|127.099 +638832.140|221460.689|127.480 +638827.126|221465.200|127.910 +638822.057|221469.757|128.272 +638817.089|221474.225|128.708 +638812.017|221478.788|129.050 +638806.991|221483.305|129.400 +638801.956|221487.834|129.644 +638796.927|221492.355|129.973 +638791.925|221496.850|130.077 +638786.877|221501.389|130.241 +638781.876|221505.882|130.421 +638776.834|221510.414|130.677 +638771.793|221514.946|130.936 +638766.849|221519.390|131.256 +638761.789|221523.938|131.363 +638756.772|221528.446|131.476 +638751.725|221532.978|131.293 +638746.665|221537.517|131.022 +638741.633|221542.040|131.012 +638736.585|221546.573|130.933 +638731.574|221551.068|130.744 +638726.524|221555.607|130.656 +638721.546|221560.078|130.814 +638716.511|221564.605|130.918 +638711.500|221569.103|130.814 +638706.529|221573.575|131.083 +638696.473|221582.600|130.738 +638691.463|221587.102|130.735 +638686.570|221591.500|130.909 +638681.468|221596.078|130.622 +638661.446|221614.049|129.644 +638656.420|221618.554|128.925 +638651.396|221623.062|128.650 +638646.349|221627.589|128.220 +638601.818|221667.588|128.035 +638596.813|221672.074|127.471 +638586.815|221681.044|126.520 +638581.792|221685.549|125.919 +638571.883|221694.450|125.392 +638566.979|221698.851|125.002 +638557.018|221707.788|123.993 +638552.080|221712.223|123.789 +638547.185|221716.618|123.578 +638537.322|221725.472|122.752 +638527.340|221734.424|121.317 +638522.490|221738.783|121.204 +638517.723|221743.071|121.600 +638512.913|221747.396|121.759 +638508.098|221751.728|121.902 +638503.269|221756.065|121.999 +638493.464|221764.862|120.799 +638473.853|221782.458|118.738 +638469.126|221786.713|118.976 +638454.544|221799.798|117.638 +638449.673|221804.166|117.205 +638444.797|221808.546|116.742 +638440.033|221812.819|116.379 +638420.391|221830.424|112.898 +638400.911|221847.883|109.701 +638386.848|221860.526|109.722 +638359.312|221885.300|111.618 +638354.801|221889.357|111.871 +638350.250|221893.451|112.188 +638345.608|221897.627|112.340 +638327.281|221914.095|112.313 +638317.868|221922.538|111.033 +638313.220|221926.708|110.576 +638290.260|221947.321|109.189 +638285.639|221951.467|108.527 +638281.161|221955.490|108.506 +638276.687|221959.510|108.518 +638272.209|221963.534|108.539 +638267.762|221967.530|108.472 +638254.238|221979.673|107.619 +638249.681|221983.763|107.168 +638245.198|221987.787|106.830 +638236.310|221995.766|106.311 +638231.957|221999.677|106.348 +638227.699|222003.508|106.784 +638218.766|222011.518|105.793 +638214.422|222015.420|105.936 +638210.076|222019.324|105.863 +638205.495|222023.421|104.659 +638200.319|222028.023|101.334 +638195.418|222032.391|98.926 +638190.828|222036.500|97.780 +638186.341|222040.517|97.073 +638169.927|222055.291|99.295 +638164.874|222059.787|96.290 +638160.628|222063.600|95.982 +638156.416|222067.382|96.040 +638152.279|222071.098|96.192 +638139.847|222082.269|96.421 +638135.665|222086.021|96.259 +638131.599|222089.678|96.533 +638225.514|222003.645|106.494 +638234.146|221995.870|105.869 +638238.614|221991.853|106.101 +638243.083|221987.835|106.351 +638247.670|221983.715|106.891 +638252.141|221979.694|107.198 +638256.771|221975.543|107.960 +638265.836|221967.392|108.512 +638274.831|221959.300|108.384 +638279.299|221955.277|108.338 +638283.804|221951.226|108.466 +638288.379|221947.114|108.686 +638311.516|221926.321|110.341 +638316.171|221922.136|110.826 +638344.066|221897.063|112.301 +638348.653|221892.933|112.133 +638353.216|221888.821|111.862 +638371.565|221872.295|110.655 +638376.207|221868.110|110.344 +638380.779|221863.986|109.966 +638385.370|221859.847|109.430 +638390.195|221855.509|110.079 +638394.794|221851.358|109.631 +638399.521|221847.100|109.579 +638433.906|221816.217|115.769 +638438.783|221811.837|116.437 +638443.593|221807.509|116.781 +638448.475|221803.120|117.263 +638453.346|221798.737|117.711 +638477.602|221776.913|119.229 +638492.321|221763.676|120.588 +638502.300|221754.715|122.204 +638507.070|221750.414|122.076 +638511.920|221746.043|121.832 +638521.463|221737.439|121.073 +638526.367|221733.022|121.225 +638531.272|221728.609|121.396 +638541.333|221719.571|123.060 +638551.166|221710.720|123.420 +638556.162|221706.227|123.999 +638561.075|221701.804|124.060 +638566.071|221697.315|124.682 +638571.124|221692.773|125.392 +638576.059|221688.335|125.675 +638581.137|221683.769|126.282 +638586.072|221679.331|126.629 +638596.121|221670.294|127.623 +638601.162|221665.762|128.096 +638606.152|221661.269|128.248 +638621.032|221647.870|128.239 +638625.991|221643.405|128.260 +638651.000|221620.883|128.534 +638671.169|221602.744|130.071 +638681.285|221593.640|130.699 +638686.324|221589.107|130.872 +638696.388|221580.043|130.839 +638706.450|221570.984|130.845 +638716.551|221561.886|130.881 +638721.565|221557.369|130.619 +638726.621|221552.815|130.753 +638731.721|221548.225|130.827 +638736.707|221543.735|130.808 +638746.900|221534.554|131.101 +638752.005|221529.961|131.348 +638762.109|221520.853|131.403 +638767.202|221516.263|131.144 +638772.247|221511.712|130.903 +638777.279|221507.171|130.564 +638782.385|221502.572|130.476 +638787.441|221498.015|130.400 +638792.467|221493.479|130.046 +638797.558|221488.889|129.851 +638802.642|221484.305|129.616 +638807.720|221479.727|129.333 +638812.743|221475.194|129.001 +638817.805|221470.625|128.541 +638822.923|221466.011|128.196 +638827.949|221461.478|127.907 +638833.006|221456.912|127.431 +638838.130|221452.292|127.209 +638843.180|221447.732|126.672 +638848.340|221443.090|126.901 +638853.415|221438.512|126.718 +638858.496|221433.933|126.596 +638863.623|221429.310|126.495 +638868.698|221424.735|126.352 +638873.806|221420.129|125.995 +638878.924|221415.514|125.828 +638894.304|221401.652|125.767 +638899.352|221397.098|125.288 +638909.560|221387.893|124.618 +638914.677|221383.279|124.532 +638919.813|221378.643|123.999 +638924.915|221374.040|123.630 +638930.021|221369.438|123.389 +638935.132|221364.829|123.249 +638940.238|221360.227|123.002 +638945.337|221355.624|122.688 +638950.491|221350.979|122.460 +638955.548|221346.419|122.225 +638960.711|221341.765|122.265 +638965.823|221337.159|122.182 +638970.934|221332.551|122.173 +638991.389|221314.107|121.237 +638996.534|221309.468|120.866 +639042.587|221267.942|118.756 +639047.689|221263.340|118.631 +639068.193|221244.853|117.671 +639073.289|221240.251|117.156 +639078.392|221235.652|116.720 +639088.639|221226.401|115.681 +639093.744|221221.795|115.416 +639114.218|221203.327|114.002 +639119.281|221198.765|113.919 +639124.389|221194.159|113.773 +639129.549|221189.505|113.160 +639144.841|221175.706|111.536 +639155.034|221166.492|109.420 +639165.284|221157.235|107.729 +639170.399|221152.639|108.488 +639185.669|221138.932|112.002 +639221.127|221107.050|115.983 +639236.312|221093.383|116.821 +639246.383|221084.321|117.583 +639251.445|221079.764|117.824 +639261.513|221070.687|117.184 +639271.599|221061.604|117.522 +639276.671|221057.038|117.650 +639281.712|221052.494|117.330 +639286.753|221047.946|117.016 +639291.816|221043.374|116.230 +639296.851|221038.839|116.208 +639301.871|221034.322|116.556 +639306.858|221029.829|116.544 +639311.887|221025.299|116.729 +639316.926|221020.761|116.720 +639321.918|221016.262|116.662 +639331.900|221007.274|116.766 +639341.944|220998.224|116.675 +639356.851|220984.791|116.562 +639366.943|220975.681|115.181 +639371.906|220971.213|115.169 +639396.686|220948.886|115.059 +639411.395|220935.645|115.870 +639416.321|220931.211|115.879 +639421.247|220926.773|115.922 +639431.113|220917.876|115.221 +639436.033|220913.438|114.806 +639440.888|220909.067|115.190 +639445.759|220904.681|115.407 +639450.629|220900.298|115.666 +639455.479|220895.930|115.617 +639460.435|220891.455|114.913 +639465.287|220887.082|114.873 +639470.149|220882.702|114.773 +639475.059|220878.276|114.675 +639479.884|220873.926|114.489 +639484.743|220869.549|114.504 +639489.555|220865.212|114.480 +639494.426|220860.823|114.392 +639499.257|220856.470|114.267 +639504.058|220852.151|114.453 +639508.868|220847.826|114.590 +639513.641|220843.532|114.605 +639518.469|220839.185|114.572 +639523.190|220834.936|114.660 +639528.012|220830.599|114.748 +639532.737|220826.350|114.867 +639542.271|220817.767|114.779 +639547.017|220813.497|114.764 +639551.814|220809.178|114.718 +639556.523|220804.941|114.632 +639561.299|220800.637|114.389 +639570.696|220792.182|114.501 +639575.467|220787.890|114.422 +639580.157|220783.666|114.175 +639584.888|220779.405|114.026 +639589.625|220775.140|113.870 +639594.303|220770.925|113.791 +639598.985|220766.716|113.742 +639608.297|220758.334|113.678 +639612.991|220754.106|113.572 +639617.657|220749.903|113.325 +639622.327|220745.697|113.078 +639627.005|220741.484|112.807 +639631.663|220737.290|112.703 +639636.283|220733.130|112.517 +639640.935|220728.942|112.505 +639645.552|220724.784|112.395 +639650.164|220720.636|112.365 +639654.745|220716.509|112.197 +639659.439|220712.275|111.612 +639677.681|220695.862|111.850 +639682.211|220691.787|111.834 +639686.716|220687.727|111.655 +639695.802|220679.552|111.865 +639700.279|220675.526|111.935 +639704.754|220671.499|112.042 +639709.216|220667.485|112.243 +639713.736|220663.422|112.426 +639718.168|220659.432|112.526 +639722.548|220655.500|112.993 +639726.943|220651.547|113.352 +639731.430|220647.511|113.477 +639735.840|220643.546|113.791 +639740.211|220639.617|114.041 +639748.977|220631.732|114.431 +639753.403|220627.751|114.700 +639757.737|220623.856|114.943 +639766.516|220615.958|115.087 +639770.862|220612.048|115.291 +639779.579|220604.208|115.599 +639801.202|220584.753|116.163 +639814.013|220573.228|116.464 +639818.323|220569.348|116.473 +639826.942|220561.588|116.269 +639852.466|220538.621|115.971 +639860.940|220530.998|115.739 +639865.140|220527.219|115.705 +639869.358|220523.421|115.586 +639873.574|220519.629|115.507 +639877.753|220515.868|115.373 +639881.910|220512.131|115.370 +639886.098|220508.364|115.221 +639890.246|220504.630|115.032 +639894.419|220500.875|114.989 +639898.537|220497.171|114.986 +639902.652|220493.471|115.007 +639906.736|220489.798|114.943 +639919.157|220478.615|114.047 +639923.226|220474.955|114.108 +639927.274|220471.315|114.066 +639931.312|220467.682|114.050 +639935.326|220464.070|113.938 +639939.322|220460.477|113.919 +639861.120|220528.819|115.858 +639856.892|220532.617|115.775 +639852.628|220536.448|115.897 +639848.367|220540.279|116.019 +639835.611|220551.740|116.074 +639822.706|220563.344|116.541 +639818.405|220567.205|116.455 +639814.092|220571.083|116.455 +639805.494|220578.806|116.330 +639801.156|220582.702|116.233 +639788.230|220594.308|115.818 +639783.917|220598.182|115.647 +639770.816|220609.951|115.269 +639766.516|220613.806|114.773 +639762.081|220617.796|115.102 +639753.388|220625.599|114.748 +639749.005|220629.534|114.517 +639744.582|220633.506|114.230 +639740.205|220637.438|113.998 +639735.822|220641.373|113.809 +639731.400|220645.341|113.563 +639727.004|220649.291|113.486 +639722.566|220653.272|113.051 +639713.703|220661.227|112.471 +639709.271|220665.208|112.365 +639704.824|220669.201|112.060 +639700.301|220673.264|111.944 +639695.817|220677.293|111.914 +639691.288|220681.369|111.886 +639686.810|220685.392|111.850 +639682.238|220689.501|111.798 +639654.767|220714.202|112.185 +639650.134|220718.368|112.356 +639645.519|220722.517|112.429 +639640.904|220726.668|112.517 +639636.290|220730.816|112.615 +639631.577|220735.056|112.749 +639626.966|220739.204|112.880 +639622.296|220743.405|113.090 +639617.590|220747.638|113.243 +639612.914|220751.845|113.563 +639608.211|220756.075|113.730 +639603.475|220760.333|113.794 +639598.790|220764.546|113.855 +639594.111|220768.752|113.895 +639589.390|220772.998|113.925 +639584.653|220777.256|114.075 +639579.877|220781.550|114.175 +639575.137|220785.818|114.431 +639570.361|220790.109|114.568 +639565.527|220794.459|114.818 +639560.800|220798.708|114.626 +639555.999|220803.024|114.623 +639551.183|220807.355|114.791 +639546.379|220811.671|114.873 +639541.600|220815.969|114.767 +639536.787|220820.300|115.001 +639531.938|220824.652|114.663 +639527.147|220828.959|114.736 +639522.261|220833.351|114.785 +639517.442|220837.686|114.709 +639512.577|220842.056|114.608 +639507.712|220846.427|114.526 +639502.839|220850.807|114.547 +639497.974|220855.181|114.520 +639493.067|220859.592|114.450 +639488.217|220863.950|114.303 +639483.283|220868.388|114.535 +639473.419|220877.255|114.559 +639468.500|220881.680|114.745 +639463.538|220886.143|114.882 +639458.585|220890.596|114.962 +639453.620|220895.061|115.184 +639448.654|220899.530|115.458 +639443.665|220904.016|115.474 +639438.760|220908.418|115.044 +639428.775|220917.397|115.257 +639423.755|220921.917|115.772 +639418.695|220926.471|116.205 +639413.700|220930.958|115.827 +639408.722|220935.429|115.852 +639403.702|220939.943|115.864 +639398.676|220944.454|115.276 +639393.693|220948.929|114.785 +639388.673|220953.440|114.806 +639383.604|220957.999|114.916 +639378.532|220962.559|115.050 +639373.469|220967.110|115.087 +639368.461|220971.612|115.077 +639363.341|220976.220|115.355 +639353.172|220985.371|116.379 +639343.017|220994.502|116.595 +639332.833|221003.649|116.513 +639322.634|221012.815|116.836 +639317.553|221017.381|116.711 +639312.463|221021.953|116.754 +639307.391|221026.506|116.467 +639297.239|221035.623|116.132 +639292.106|221040.232|116.166 +639287.012|221044.813|116.458 +639281.849|221049.467|117.403 +639276.719|221054.076|117.488 +639271.638|221058.642|117.607 +639266.518|221063.241|117.592 +639261.403|221067.831|117.309 +639256.267|221072.455|117.812 +639251.153|221077.045|117.650 +639235.821|221090.804|116.748 +639225.598|221099.988|116.397 +639200.016|221122.933|114.017 +639179.488|221141.337|111.377 +639169.274|221150.484|109.241 +639164.114|221155.105|108.128 +639158.999|221159.683|107.000 +639138.462|221178.209|112.438 +639112.855|221201.233|113.944 +639107.747|221205.827|114.273 +639102.593|221210.463|114.617 +639097.536|221215.013|115.248 +639092.382|221219.649|115.516 +639087.274|221224.240|115.641 +639082.226|221228.784|116.455 +639077.072|221233.417|116.598 +639071.976|221238.005|117.269 +639051.630|221256.308|119.153 +639046.522|221260.895|118.961 +639005.852|221297.453|120.530 +639000.799|221301.994|120.786 +638995.748|221306.536|121.036 +638990.694|221311.077|121.298 +638975.494|221324.745|122.188 +638970.480|221329.250|122.225 +638965.417|221333.797|122.262 +638960.355|221338.342|122.320 +638955.341|221342.844|122.454 +638940.168|221356.471|123.103 +638935.102|221361.019|123.216 +638930.097|221365.515|123.530 +638925.043|221370.056|123.856 +638920.023|221374.561|123.975 +638915.015|221379.057|124.289 +638909.962|221383.599|124.639 +638904.951|221388.101|124.877 +638894.883|221397.144|125.496 +638879.759|221410.723|125.809 +638874.748|221415.222|126.172 +638869.716|221419.739|126.221 +638864.699|221424.247|126.495 +638859.661|221428.767|126.517 +638854.638|221433.278|126.721 +638844.582|221442.309|127.096 +638839.590|221446.790|127.132 +638834.551|221451.313|127.239 +638829.589|221455.772|127.693 +638824.569|221460.280|128.065 +638819.601|221464.746|128.446 +638814.626|221469.217|128.772 +638809.609|221473.722|129.202 +638804.675|221478.157|129.455 +638799.636|221482.680|129.671 +638794.653|221487.158|129.949 +638789.666|221491.635|130.214 +638784.677|221496.116|130.464 +638779.721|221500.566|130.586 +638774.673|221505.098|130.772 +638769.717|221509.548|130.897 +638764.731|221514.026|131.247 +638759.723|221518.525|131.390 +638749.716|221527.504|131.351 +638744.711|221531.991|131.122 +638734.674|221540.998|130.951 +638729.617|221545.533|130.781 +638724.600|221550.029|130.558 +638719.629|221554.494|130.756 +638714.624|221558.984|130.680 +638709.638|221563.462|130.784 +638704.648|221567.942|130.881 +638699.710|221572.374|131.025 +638694.669|221576.894|130.735 +638684.681|221585.855|130.598 +638679.755|221590.275|130.531 +638664.674|221603.796|129.598 +638654.618|221612.803|128.495 +638649.665|221617.247|128.364 +638644.697|221621.700|128.150 +638639.622|221626.247|127.513 +638624.839|221639.521|127.980 +638619.923|221643.932|127.900 +638614.964|221648.382|127.891 +638605.058|221657.267|127.672 +638590.214|221670.578|127.141 +638580.226|221679.523|125.968 +638575.263|221683.971|125.803 +638570.326|221688.396|125.499 +638565.333|221692.865|124.874 +638560.356|221697.324|124.365 +638550.413|221706.230|123.520 +638540.598|221715.027|122.978 +638535.706|221719.413|122.829 +638525.706|221728.362|121.286 +638520.796|221732.763|121.122 +638511.313|221741.285|122.237 +638501.663|221749.945|122.438 +638491.809|221758.766|121.250 +638472.287|221776.249|119.400 +638467.434|221780.598|119.232 +638452.901|221793.620|118.168 +638448.082|221797.939|117.708 +638443.257|221802.258|117.266 +638438.377|221806.628|116.821 +638409.101|221832.823|112.075 +638394.523|221845.862|109.625 +638389.768|221850.123|109.305 +638357.547|221879.043|111.033 +638352.939|221883.179|111.057 +638348.477|221887.190|111.804 +638311.660|221920.191|110.475 +638302.473|221928.424|110.131 +638297.874|221932.545|109.722 +638293.356|221936.589|109.475 +638288.653|221940.799|108.649 +638284.118|221944.862|108.363 +638279.631|221948.888|108.527 +638275.135|221952.917|108.457 +638270.652|221956.938|108.445 +638266.284|221960.858|108.725 +638261.864|221964.823|108.796 +638248.161|221977.085|106.793 +638243.604|221981.163|106.135 +638239.059|221985.229|105.565 +638234.585|221989.237|105.077 +638230.052|221993.297|104.598 +638225.761|221997.153|104.684 +638212.944|222008.672|105.711 +638208.655|222012.521|105.644 +638204.330|222016.404|105.677 +638164.868|222051.758|100.810 +638160.027|222056.071|98.414 +638155.815|222059.851|98.252 +638151.280|222063.898|96.664 +638147.098|222067.654|96.640 +638142.953|222071.378|96.774 +638138.819|222075.085|96.771 +638134.397|222079.041|95.692 +638225.179|221995.437|104.184 +638229.534|221991.514|104.138 +638234.051|221987.454|104.571 +638243.201|221979.237|105.961 +638247.764|221975.140|106.650 +638266.049|221958.709|108.622 +638279.433|221946.657|108.396 +638283.938|221942.600|108.311 +638288.556|221938.449|108.506 +638297.736|221930.192|109.201 +638302.439|221925.970|109.835 +638307.085|221921.794|110.240 +638311.763|221917.588|110.588 +638339.689|221892.469|111.987 +638353.280|221880.216|110.710 +638367.051|221867.805|109.676 +638371.785|221863.547|109.807 +638381.093|221855.171|109.338 +638385.787|221850.946|109.332 +638390.554|221846.664|109.433 +638395.330|221842.375|109.878 +638424.945|221815.821|115.681 +638429.776|221811.484|116.080 +638434.644|221807.113|116.693 +638439.478|221802.770|116.882 +638444.382|221798.368|117.470 +638449.256|221793.991|117.936 +638463.850|221780.882|119.037 +638468.714|221776.508|119.268 +638473.573|221772.143|119.485 +638478.456|221767.757|119.866 +638483.360|221763.353|120.399 +638488.206|221758.994|120.335 +638498.225|221750.015|122.457 +638507.902|221741.307|122.106 +638517.437|221732.717|120.991 +638522.335|221728.313|121.082 +638527.285|221723.866|121.524 +638537.227|221714.944|122.743 +638547.042|221706.117|122.984 +638552.028|221701.643|123.475 +638557.024|221697.159|124.051 +638562.041|221692.651|124.493 +638576.946|221679.264|125.648 +638587.029|221670.215|127.111 +638601.943|221656.813|127.742 +638606.911|221652.344|127.769 +638611.910|221647.852|128.025 +638621.791|221638.964|127.772 +638636.669|221625.580|127.602 +638646.727|221616.543|128.160 +638651.787|221611.995|128.318 +638656.773|221607.517|128.726 +638661.882|221602.930|129.345 +638666.896|221598.425|129.626 +638677.036|221589.315|130.424 +638692.112|221575.763|130.689 +638697.187|221571.203|130.845 +638702.207|221566.689|130.967 +638707.227|221562.169|130.708 +638712.216|221557.682|130.613 +638717.267|221553.141|130.659 +638727.402|221544.024|130.662 +638732.452|221539.486|130.763 +638737.494|221534.954|130.814 +638742.608|221530.357|131.098 +638747.665|221525.813|131.354 +638752.746|221521.244|131.381 +638757.775|221516.726|131.378 +638762.829|221512.179|131.189 +638767.925|221507.592|130.945 +638772.936|221503.087|130.836 +638778.029|221498.502|130.616 +638783.073|221493.964|130.375 +638788.121|221489.422|130.208 +638793.214|221484.841|130.043 +638798.246|221480.312|129.729 +638803.330|221475.737|129.461 +638808.405|221471.171|129.117 +638813.428|221466.648|128.769 +638818.503|221462.082|128.434 +638823.569|221457.519|128.025 +638828.644|221452.953|127.745 +638833.753|221448.354|127.279 +638838.840|221443.779|127.141 +638843.930|221439.200|127.093 +638849.005|221434.634|126.846 +638854.080|221430.069|126.642 +638859.210|221425.454|126.501 +638864.294|221420.882|126.465 +638869.408|221416.279|126.157 +638874.535|221411.668|126.041 +638889.863|221397.882|125.816 +638894.917|221393.334|125.401 +638905.152|221384.126|125.105 +638915.351|221374.945|124.243 +638920.453|221370.352|123.889 +638925.522|221365.795|123.743 +638930.679|221361.153|123.514 +638935.785|221356.557|123.252 +638945.992|221347.370|122.649 +638951.119|221342.765|122.789 +638956.228|221338.168|122.633 +638961.336|221333.572|122.454 +638971.620|221324.330|122.521 +638997.168|221301.336|120.954 +639002.274|221296.743|120.789 +639007.367|221292.155|120.256 +639012.482|221287.559|120.305 +639022.729|221278.336|119.601 +639048.311|221255.326|119.162 +639068.711|221236.962|117.321 +639089.127|221218.580|115.529 +639119.692|221191.081|114.194 +639150.297|221163.487|109.615 +639155.372|221158.909|108.796 +639160.456|221154.319|107.424 +639180.756|221136.125|111.981 +639185.773|221131.614|112.295 +639200.952|221117.989|114.392 +639236.156|221086.354|116.641 +639246.221|221077.317|117.751 +639261.266|221063.777|117.287 +639266.286|221059.263|117.491 +639271.266|221054.783|117.488 +639276.299|221050.257|117.455 +639286.318|221041.228|116.190 +639291.356|221036.693|116.108 +639296.345|221032.203|116.056 +639306.358|221023.202|116.400 +639311.284|221018.780|116.787 +639316.319|221014.250|116.867 +639321.272|221009.794|116.736 +639326.265|221005.301|116.769 +639331.282|221000.787|116.419 +639336.229|220996.337|116.458 +639341.233|220991.832|116.336 +639346.202|220987.361|116.086 +639351.219|220982.844|115.846 +639356.181|220978.378|115.754 +639361.170|220973.886|115.269 +639366.148|220969.402|114.962 +639371.116|220964.934|114.895 +639376.084|220960.462|114.831 +639381.059|220955.988|114.727 +639386.030|220951.513|114.651 +639390.956|220947.085|114.614 +639395.899|220942.641|114.980 +639400.791|220938.248|115.449 +639410.630|220929.400|115.647 +639415.574|220924.959|116.074 +639420.558|220920.466|115.398 +639425.520|220916.001|115.050 +639430.482|220911.530|114.700 +639435.368|220907.137|114.760 +639440.260|220902.745|115.349 +639445.201|220898.301|115.358 +639450.130|220893.860|114.928 +639455.043|220889.438|114.751 +639460.002|220884.975|114.642 +639464.851|220880.617|114.696 +639469.762|220876.197|114.614 +639474.672|220871.781|114.584 +639479.592|220867.352|114.453 +639484.459|220862.972|114.398 +639489.321|220858.601|114.443 +639494.179|220854.233|114.535 +639499.032|220849.868|114.703 +639503.912|220845.476|114.614 +639508.737|220841.130|114.602 +639518.438|220832.400|114.666 +639523.315|220828.011|114.696 +639528.162|220823.649|114.602 +639532.938|220819.349|114.700 +639537.787|220814.984|114.608 +639542.582|220810.668|114.596 +639547.419|220806.315|114.663 +639552.168|220802.039|114.654 +639557.014|220797.677|114.681 +639561.754|220793.413|114.803 +639566.597|220789.049|114.486 +639571.355|220784.766|114.507 +639576.140|220780.456|114.294 +639580.926|220776.146|114.142 +639585.656|220771.888|114.035 +639590.435|220767.584|113.962 +639595.172|220763.320|113.861 +639599.915|220759.050|113.739 +639604.660|220754.774|113.599 +639609.406|220750.500|113.502 +639614.112|220746.264|113.352 +639618.864|220741.984|113.243 +639623.518|220737.793|113.148 +639628.243|220733.535|112.919 +639632.906|220729.338|112.810 +639637.573|220725.135|112.697 +639642.239|220720.935|112.606 +639646.897|220716.741|112.606 +639651.539|220712.559|112.365 +639656.236|220708.322|111.764 +639660.896|220704.128|111.813 +639665.483|220700.004|112.051 +639670.049|220695.892|112.084 +639674.643|220691.756|111.965 +639679.291|220687.571|111.831 +639683.814|220683.499|111.886 +639688.343|220679.424|111.914 +639692.934|220675.291|111.895 +639697.460|220671.216|111.975 +639701.974|220667.156|112.161 +639706.436|220663.141|112.374 +639710.914|220659.112|112.505 +639715.382|220655.095|112.727 +639719.817|220651.105|113.151 +639724.225|220647.146|113.468 +639728.659|220643.153|113.599 +639733.091|220639.166|113.785 +639737.563|220635.142|113.752 +639746.280|220627.303|114.459 +639750.663|220623.362|114.703 +639755.040|220619.424|114.992 +639759.383|220615.519|115.190 +639772.429|220603.779|115.483 +639789.674|220588.264|116.187 +639793.960|220584.402|116.242 +639798.245|220580.550|116.339 +639802.534|220576.688|116.425 +639811.035|220569.034|116.495 +639815.290|220565.206|116.531 +639819.508|220561.408|116.513 +639823.718|220557.620|116.562 +639827.988|220553.773|116.291 +639832.191|220549.990|116.400 +639836.364|220546.232|116.409 +639840.594|220542.422|116.403 +639844.822|220538.612|116.150 +639849.040|220534.808|115.964 +639853.231|220531.029|115.928 +639857.389|220527.283|115.836 +639861.546|220523.534|115.739 +639865.719|220519.775|115.599 +639869.846|220516.054|115.434 +639873.961|220512.347|115.364 +639878.060|220508.650|115.361 +639882.206|220504.913|115.175 +639886.299|220501.222|114.986 +639890.380|220497.546|114.885 +639894.501|220493.831|114.858 +639902.676|220486.458|114.413 +639906.660|220482.873|114.593 +639910.796|220479.136|114.047 +639914.783|220475.549|114.248 +639918.855|220471.876|114.050 +639922.851|220468.273|113.977 +639926.816|220464.698|113.816 +639930.815|220461.095|113.764 +639934.769|220457.532|113.697 +639938.716|220453.975|113.672 +639861.385|220521.275|115.736 +639857.066|220525.152|115.833 +639852.756|220529.020|115.903 +639848.449|220532.885|115.971 +639844.072|220536.814|116.163 +639839.735|220540.712|116.434 +639835.401|220544.601|116.440 +639831.060|220548.494|116.489 +639826.729|220552.383|116.516 +639822.392|220556.272|116.580 +639818.021|220560.198|116.586 +639813.607|220564.157|116.553 +639809.249|220568.065|116.504 +639804.838|220572.024|116.498 +639800.440|220575.969|116.440 +639796.087|220579.873|116.419 +639791.653|220583.851|116.303 +639787.273|220587.780|116.193 +639774.066|220599.621|115.465 +639769.585|220603.644|115.699 +639760.785|220611.533|115.001 +639756.287|220615.568|115.099 +639751.806|220619.582|114.806 +639747.417|220623.520|114.602 +639742.988|220627.486|114.026 +639733.966|220635.578|113.934 +639729.491|220639.590|113.691 +639725.008|220643.613|113.529 +639720.539|220647.618|113.273 +639716.038|220651.654|112.935 +639711.597|220655.631|112.542 +639707.055|220659.706|112.484 +639702.541|220663.757|112.273 +639698.027|220667.805|112.057 +639693.452|220671.911|111.950 +639688.868|220676.022|111.914 +639684.332|220680.091|111.895 +639679.715|220684.234|111.786 +639675.155|220688.330|111.993 +639670.561|220692.454|112.103 +639652.042|220709.081|112.389 +639647.409|220713.242|112.535 +639642.785|220717.393|112.642 +639638.167|220721.538|112.724 +639633.446|220725.778|112.846 +639628.825|220729.926|112.999 +639624.158|220734.120|113.160 +639619.443|220738.354|113.316 +639614.801|220742.521|113.331 +639610.141|220746.706|113.502 +639605.395|220750.967|113.578 +639600.695|220755.185|113.712 +639596.056|220759.349|113.779 +639591.313|220763.610|113.925 +639586.583|220767.856|113.971 +639581.895|220772.065|114.117 +639577.113|220776.360|114.242 +639572.434|220780.560|114.346 +639567.648|220784.858|114.553 +639558.154|220793.383|114.797 +639553.411|220797.638|114.712 +639548.669|220801.896|114.648 +639543.871|220806.200|114.623 +639539.128|220810.458|114.596 +639534.343|220814.752|114.529 +639529.558|220819.047|114.489 +639524.769|220823.345|114.489 +639519.917|220827.703|114.660 +639515.137|220831.989|114.608 +639510.306|220836.326|114.620 +639505.478|220840.660|114.632 +639500.653|220844.992|114.632 +639495.844|220849.305|114.492 +639490.970|220853.685|114.559 +639486.096|220858.055|114.608 +639481.268|220862.393|114.745 +639476.373|220866.782|114.553 +639471.514|220871.144|114.544 +639466.601|220875.554|114.599 +639461.745|220879.913|114.599 +639456.783|220884.369|114.712 +639451.873|220888.779|114.858 +639446.923|220893.223|114.882 +639442.055|220897.597|115.141 +639437.093|220902.044|114.767 +639432.204|220906.433|114.736 +639427.224|220910.899|114.620 +639422.262|220915.358|114.953 +639417.321|220919.796|115.032 +639412.334|220924.273|115.114 +639407.336|220928.763|115.370 +639402.358|220933.231|115.385 +639397.402|220937.672|115.093 +639392.409|220942.150|114.687 +639382.430|220951.105|114.507 +639377.453|220955.573|114.614 +639372.433|220960.081|114.693 +639367.413|220964.589|114.797 +639362.338|220969.146|115.013 +639347.153|220982.795|116.099 +639342.166|220987.269|115.827 +639337.052|220991.866|116.083 +639331.998|220996.407|116.169 +639326.938|221000.955|116.409 +639321.888|221005.497|116.553 +639316.788|221010.081|116.699 +639311.692|221014.656|116.781 +639306.620|221019.210|116.425 +639301.582|221023.736|116.419 +639296.461|221028.326|116.028 +639291.377|221032.895|116.007 +639286.287|221037.470|116.147 +639281.118|221042.128|117.083 +639276.015|221046.715|117.583 +639270.892|221051.317|117.513 +639265.768|221055.917|117.403 +639260.687|221060.483|117.525 +639245.267|221074.336|117.583 +639240.152|221078.929|117.394 +639235.047|221083.504|116.739 +639229.914|221088.122|117.226 +639224.757|221092.749|116.861 +639204.226|221111.162|114.910 +639199.068|221115.792|114.453 +639178.479|221134.253|112.243 +639173.319|221138.877|111.475 +639157.841|221152.727|107.735 +639106.174|221199.231|114.197 +639095.808|221208.552|115.026 +639090.703|221213.145|115.492 +639080.339|221222.460|115.974 +639075.191|221227.096|116.726 +639070.037|221231.729|117.065 +639059.738|221240.995|118.061 +639039.185|221259.475|119.360 +639018.562|221278.004|119.674 +639013.472|221282.585|120.341 +639008.370|221287.172|120.649 +639003.216|221291.805|120.759 +638998.116|221296.389|121.137 +638982.773|221310.187|122.195 +638972.556|221319.368|122.445 +638967.441|221323.961|122.484 +638962.375|221328.512|122.502 +638957.264|221333.108|122.545 +638952.171|221337.690|123.030 +638936.928|221351.393|123.222 +638931.819|221355.984|123.463 +638926.781|221360.519|124.063 +638916.649|221369.630|124.295 +638896.444|221387.796|125.115 +638891.387|221392.346|125.441 +638876.272|221405.934|125.901 +638871.258|221410.442|126.239 +638866.180|221415.005|126.322 +638861.163|221419.519|126.611 +638856.171|221424.003|126.587 +638851.141|221428.526|126.724 +638846.112|221433.046|126.907 +638841.086|221437.567|127.114 +638836.097|221442.053|127.196 +638831.064|221446.577|127.385 +638826.105|221451.039|127.864 +638821.116|221455.526|128.019 +638816.092|221460.043|128.352 +638811.130|221464.508|128.842 +638806.153|221468.986|129.159 +638801.127|221473.506|129.488 +638796.186|221477.950|129.687 +638791.212|221482.424|130.071 +638786.210|221486.920|130.180 +638781.211|221491.413|130.354 +638776.215|221495.906|130.567 +638771.268|221500.356|130.778 +638766.273|221504.848|131.015 +638761.311|221509.308|131.119 +638756.306|221513.806|131.308 +638751.325|221518.281|131.275 +638746.345|221522.758|131.256 +638741.349|221527.242|131.134 +638736.280|221531.796|130.784 +638726.347|221540.720|130.729 +638721.339|221545.216|130.598 +638716.401|221549.654|130.671 +638706.456|221558.591|130.683 +638696.519|221567.521|130.848 +638691.539|221571.993|130.665 +638686.558|221576.467|130.510 +638676.655|221585.364|130.311 +638666.627|221594.365|129.632 +638661.659|221598.824|129.303 +638651.686|221607.773|128.461 +638646.718|221612.233|128.214 +638641.740|221616.701|127.931 +638636.742|221621.188|127.513 +638631.770|221625.653|127.327 +638626.872|221630.054|127.330 +638607.271|221647.675|127.897 +638597.419|221656.523|127.757 +638592.439|221660.995|127.355 +638572.624|221678.765|125.718 +638567.686|221683.193|125.404 +638552.797|221696.541|123.816 +638547.850|221700.975|123.231 +638542.921|221705.392|122.801 +638533.131|221714.176|122.438 +638528.233|221718.572|122.274 +638523.176|221723.095|120.850 +638518.369|221727.411|120.991 +638513.499|221731.785|121.070 +638504.065|221740.270|122.195 +638499.283|221744.571|122.545 +638494.488|221748.875|122.548 +638479.644|221762.167|120.052 +638469.976|221770.842|119.540 +638465.090|221775.222|119.168 +638460.274|221779.544|118.936 +638445.772|221792.547|117.802 +638440.956|221796.866|117.379 +638436.088|221801.230|116.998 +638431.260|221805.559|116.559 +638416.837|221818.494|115.477 +638397.046|221836.194|110.597 +638387.488|221844.765|109.652 +638382.727|221849.032|109.323 +638377.960|221853.309|108.969 +638373.330|221857.466|109.061 +638350.385|221878.086|110.521 +638345.852|221882.161|110.926 +638332.319|221894.326|112.042 +638327.637|221898.526|111.816 +638299.818|221923.474|109.774 +638295.203|221927.610|109.295 +638290.622|221931.716|108.994 +638286.062|221935.806|108.799 +638281.536|221939.869|108.533 +638276.979|221943.956|108.393 +638272.514|221947.964|108.442 +638268.091|221951.939|108.683 +638263.669|221955.911|108.719 +638236.206|221980.511|104.748 +638222.667|221992.630|103.321 +638205.848|222007.739|105.437 +638201.560|222011.585|105.601 +638197.277|222015.426|105.598 +638187.606|222024.037|101.267 +638182.951|222028.191|99.862 +638178.215|222032.412|97.957 +638174.109|222036.101|98.539 +638145.016|222062.192|99.313 +638140.316|222066.379|97.344 +638136.116|222070.138|97.079 +638127.636|222077.727|96.094 +638123.543|222081.400|96.268 +638225.575|221987.515|103.199 +638230.013|221983.526|103.507 +638234.597|221979.414|104.434 +638239.239|221975.247|105.409 +638243.808|221971.145|106.104 +638266.552|221950.708|108.594 +638270.902|221946.782|108.037 +638275.446|221942.697|108.314 +638279.985|221938.613|108.372 +638284.508|221934.544|108.610 +638289.080|221930.432|108.850 +638293.682|221926.296|109.241 +638298.325|221922.123|109.600 +638302.927|221917.987|110.045 +638326.174|221897.087|111.743 +638330.768|221892.951|111.804 +638344.380|221880.686|110.783 +638372.007|221855.793|109.097 +638376.710|221851.556|109.113 +638381.444|221847.298|109.289 +638386.284|221842.942|109.774 +638391.091|221838.620|110.106 +638410.872|221820.869|114.556 +638420.687|221812.048|115.785 +638425.497|221807.720|116.065 +638430.407|221803.306|116.635 +638445.010|221790.169|117.821 +638479.196|221759.415|120.152 +638484.058|221755.038|120.168 +638494.202|221745.936|122.725 +638499.069|221741.550|122.566 +638503.843|221737.250|122.158 +638513.364|221728.651|120.658 +638518.278|221724.229|120.844 +638523.258|221719.751|121.475 +638533.195|221710.814|122.350 +638538.151|221706.358|122.588 +638548.078|221697.427|123.258 +638573.221|221674.823|125.907 +638578.214|221670.331|126.309 +638593.225|221656.831|127.532 +638623.004|221630.012|127.242 +638627.982|221625.525|127.077 +638637.997|221616.512|127.626 +638648.038|221607.481|128.083 +638653.094|221602.933|128.650 +638663.201|221593.844|129.437 +638678.320|221580.244|130.281 +638683.370|221575.699|130.595 +638693.398|221566.671|130.665 +638698.467|221562.108|130.802 +638703.405|221557.652|130.235 +638708.483|221553.083|130.494 +638713.487|221548.578|130.558 +638718.526|221544.040|130.513 +638723.570|221539.498|130.531 +638728.618|221534.954|130.628 +638733.723|221530.360|130.811 +638738.780|221525.809|131.015 +638743.873|221521.225|131.156 +638748.853|221516.745|131.183 +638753.928|221512.176|131.180 +638764.051|221503.065|130.973 +638769.101|221498.518|130.802 +638774.094|221494.022|130.549 +638779.141|221489.477|130.385 +638784.198|221484.924|130.339 +638789.224|221480.397|129.961 +638794.308|221475.819|129.714 +638799.347|221471.281|129.516 +638804.376|221466.751|129.232 +638809.448|221462.182|128.885 +638814.462|221457.662|128.461 +638819.582|221453.051|128.153 +638824.624|221448.515|128.035 +638829.680|221443.955|127.565 +638834.755|221439.386|127.349 +638839.839|221434.811|127.215 +638844.908|221430.242|126.940 +638850.038|221425.625|126.831 +638855.113|221421.056|126.666 +638860.252|221416.432|126.700 +638865.321|221411.869|126.480 +638885.745|221393.477|125.800 +638890.842|221388.884|125.349 +638895.969|221384.272|125.377 +638911.291|221370.471|124.596 +638931.764|221352.034|123.624 +638941.963|221342.847|122.899 +638947.141|221338.193|123.176 +638957.349|221329.000|122.746 +638977.887|221310.517|122.621 +639003.466|221287.474|120.948 +639013.756|221278.205|120.183 +639034.314|221259.697|119.659 +639039.456|221255.061|119.168 +639049.713|221245.829|119.009 +639070.199|221227.364|116.986 +639080.397|221218.171|115.669 +639090.657|221208.930|115.145 +639100.919|221199.685|114.599 +639151.977|221153.681|108.539 +639157.103|221149.064|107.957 +639187.532|221121.781|113.041 +639192.588|221117.252|114.020 +639197.648|221112.710|114.596 +639202.708|221108.166|115.081 +639207.767|221103.627|115.635 +639212.824|221099.089|116.193 +639227.863|221085.583|117.269 +639247.949|221067.533|117.607 +639252.924|221063.061|117.732 +639257.910|221058.575|117.461 +639262.945|221054.045|117.284 +639267.917|221049.580|117.504 +639272.894|221045.105|117.598 +639282.867|221036.120|116.239 +639287.869|221031.621|115.928 +639292.810|221027.180|115.903 +639297.778|221022.718|116.327 +639302.704|221018.292|116.675 +639307.718|221013.781|116.242 +639312.597|221009.398|116.537 +639317.608|221004.890|116.214 +639327.426|220996.069|116.742 +639332.376|220991.619|116.720 +639352.218|220973.761|115.373 +639357.144|220969.332|115.151 +639362.079|220964.888|114.757 +639366.998|220960.465|114.672 +639371.921|220956.040|114.562 +639376.843|220951.614|114.517 +639381.772|220947.179|114.355 +639386.643|220942.799|114.361 +639391.547|220938.395|114.632 +639396.418|220934.018|114.715 +639401.349|220929.583|114.626 +639406.235|220925.191|114.559 +639411.115|220920.805|114.562 +639415.952|220916.455|114.535 +639420.823|220912.078|114.700 +639425.715|220907.680|114.645 +639430.546|220903.340|114.754 +639435.386|220898.987|114.779 +639440.275|220894.592|114.797 +639445.122|220890.236|114.806 +639449.971|220885.878|114.797 +639454.817|220881.519|114.834 +639459.664|220877.163|114.898 +639464.510|220872.811|114.989 +639469.390|220868.416|114.696 +639474.212|220864.081|114.593 +639479.070|220859.713|114.602 +639483.886|220855.382|114.581 +639488.745|220851.018|114.663 +639493.570|220846.680|114.599 +639498.443|220842.288|114.056 +639503.253|220837.969|114.212 +639508.066|220833.647|114.373 +639512.952|220829.255|114.288 +639517.725|220824.963|114.376 +639522.556|220820.623|114.416 +639527.348|220816.319|114.395 +639532.127|220812.024|114.480 +639541.747|220803.380|114.636 +639546.538|220799.076|114.696 +639551.284|220794.809|114.733 +639556.087|220790.493|114.727 +639565.664|220781.883|114.602 +639570.450|220777.582|114.413 +639575.229|220773.284|114.279 +639580.057|220768.944|114.191 +639584.793|220764.686|114.047 +639589.576|220760.385|113.965 +639594.312|220756.127|113.886 +639599.049|220751.872|113.825 +639603.837|220747.568|113.776 +639608.586|220743.295|113.645 +639613.341|220739.022|113.526 +639618.090|220734.754|113.465 +639622.805|220730.512|113.288 +639627.560|220726.238|113.240 +639632.254|220722.020|113.279 +639637.000|220717.750|112.956 +639641.706|220713.519|112.950 +639646.446|220709.258|112.731 +639651.106|220705.070|112.746 +639660.539|220696.590|112.410 +639674.566|220683.978|112.048 +639679.218|220679.793|111.898 +639683.851|220675.632|111.914 +639688.465|220671.487|112.063 +639693.034|220667.381|112.206 +639697.609|220663.273|112.325 +639702.221|220659.130|112.551 +639706.787|220655.028|112.752 +639711.313|220650.965|112.923 +639729.336|220634.780|113.910 +639733.871|220630.702|113.788 +639742.781|220622.707|114.581 +639747.222|220618.720|114.776 +639751.654|220614.739|115.032 +639760.566|220606.729|115.029 +639765.019|220602.727|115.202 +639773.782|220594.863|115.873 +639778.125|220590.965|116.153 +639782.472|220587.063|116.428 +639786.867|220583.110|116.437 +639791.250|220579.175|116.544 +639795.591|220575.274|116.605 +639799.934|220571.369|116.672 +639804.287|220567.462|116.717 +639808.599|220563.584|116.702 +639812.909|220559.710|116.723 +639817.234|220555.821|116.678 +639821.553|220551.944|116.702 +639825.830|220548.098|116.675 +639830.118|220544.245|116.614 +639834.407|220540.386|116.550 +639842.917|220532.736|116.318 +639847.135|220528.941|116.153 +639851.396|220525.106|116.050 +639855.545|220521.379|116.013 +639859.779|220517.569|115.821 +639863.948|220513.820|115.711 +639868.127|220510.058|115.568 +639872.248|220506.349|115.465 +639876.427|220502.594|115.361 +639880.578|220498.857|115.148 +639884.723|220495.129|114.989 +639888.823|220491.441|114.815 +639892.932|220487.741|114.608 +639905.087|220476.811|114.416 +639909.065|220473.232|114.401 +639917.112|220465.993|113.989 +639921.165|220462.348|113.916 +639925.137|220458.776|113.755 +639929.127|220455.188|113.761 +639933.089|220451.622|113.663 +639861.409|220513.908|115.751 +639857.227|220517.663|115.925 +639852.972|220521.482|115.977 +639848.763|220525.262|116.065 +639844.493|220529.096|116.230 +639840.174|220532.976|116.394 +639835.873|220536.835|116.480 +639831.578|220540.691|116.559 +639827.290|220544.541|116.608 +639822.956|220548.433|116.656 +639818.630|220552.316|116.684 +639814.314|220556.187|116.659 +639809.941|220560.113|116.702 +639805.576|220564.029|116.702 +639801.220|220567.940|116.684 +639796.767|220571.933|116.635 +639792.369|220575.883|116.601 +639787.977|220579.824|116.550 +639783.542|220583.802|116.458 +639779.122|220587.767|116.315 +639774.696|220591.736|116.202 +639770.231|220595.744|116.062 +639756.853|220607.738|115.300 +639752.342|220611.786|115.181 +639747.871|220615.794|114.849 +639743.329|220619.866|114.645 +639729.796|220632.003|113.901 +639725.261|220636.072|113.730 +639716.156|220644.238|113.334 +639711.548|220648.371|113.035 +639706.982|220652.461|112.795 +639697.795|220660.700|112.398 +639693.174|220664.842|112.234 +639688.508|220669.027|112.072 +639683.884|220673.172|111.965 +639679.215|220677.360|111.844 +639674.502|220681.591|112.063 +639665.096|220690.031|112.054 +639660.390|220694.256|112.273 +639650.954|220702.720|112.261 +639646.171|220707.018|112.758 +639641.398|220711.303|112.862 +639636.631|220715.582|112.932 +639631.882|220719.844|113.243 +639627.072|220724.163|113.325 +639622.299|220728.445|113.508 +639617.569|220732.691|113.416 +639612.771|220736.995|113.450 +639608.010|220741.268|113.630 +639603.207|220745.578|113.755 +639598.412|220749.882|113.846 +639593.630|220754.173|113.883 +639588.792|220758.514|113.962 +639584.004|220762.811|114.096 +639579.231|220767.094|114.102 +639574.400|220771.428|114.215 +639569.624|220775.717|114.306 +639564.777|220780.069|114.608 +639559.955|220784.394|114.712 +639555.158|220788.701|114.660 +639550.351|220793.014|114.681 +639545.505|220797.360|114.654 +639540.722|220801.649|114.507 +639531.048|220810.324|114.367 +639526.266|220814.615|114.288 +639521.392|220818.986|114.178 +639516.555|220823.326|114.194 +639511.672|220827.709|114.206 +639506.847|220832.035|114.148 +639501.994|220836.384|113.889 +639487.376|220849.500|113.883 +639482.487|220853.892|114.120 +639462.904|220871.467|114.529 +639457.987|220875.877|114.632 +639453.117|220880.251|114.828 +639448.215|220884.649|114.858 +639443.317|220889.041|114.849 +639438.416|220893.440|114.895 +639433.533|220897.820|114.760 +639428.605|220902.239|114.626 +639423.719|220906.622|114.565 +639418.836|220911.002|114.511 +639413.898|220915.431|114.526 +639408.969|220919.854|114.474 +639404.099|220924.221|114.319 +639399.173|220928.641|114.251 +639394.263|220933.039|113.980 +639389.261|220937.535|114.386 +639384.351|220941.940|114.194 +639379.425|220946.356|114.218 +639374.445|220950.824|114.355 +639369.519|220955.247|114.459 +639364.493|220959.758|114.645 +639359.528|220964.214|114.693 +639354.541|220968.695|115.096 +639314.478|221004.646|116.632 +639309.455|221009.142|116.160 +639294.383|221022.660|116.056 +639284.312|221031.685|115.815 +639269.136|221045.322|117.632 +639264.110|221049.824|117.421 +639259.035|221054.371|117.269 +639253.957|221058.928|117.299 +639248.922|221063.445|117.482 +639243.844|221067.999|117.498 +639238.772|221072.544|117.354 +639233.700|221077.094|117.327 +639228.622|221081.648|117.400 +639223.553|221086.193|117.254 +639208.319|221099.832|115.885 +639203.211|221104.407|115.343 +639198.099|221108.986|114.834 +639192.988|221113.561|114.343 +639172.481|221131.922|112.423 +639167.363|221136.506|112.066 +639162.261|221141.054|109.951 +639157.119|221145.610|106.074 +639146.798|221154.910|109.161 +639126.212|221173.439|114.084 +639110.722|221187.335|114.578 +639100.444|221196.555|114.648 +639095.287|221201.188|115.038 +639090.123|221205.815|114.977 +639069.504|221224.334|117.034 +639064.337|221228.964|116.839 +639048.610|221243.098|118.970 +639043.699|221247.508|119.256 +639023.076|221266.010|119.866 +639017.870|221270.679|120.015 +639012.719|221275.303|120.351 +639007.571|221279.924|120.689 +638986.958|221298.422|121.682 +638976.677|221307.661|122.737 +638971.513|221312.288|122.786 +638961.235|221321.508|122.847 +638956.069|221326.141|122.844 +638950.958|221330.728|123.024 +638930.475|221349.114|123.959 +638894.637|221381.279|125.550 +638889.543|221385.845|125.374 +638884.432|221390.435|125.669 +638869.149|221404.148|126.005 +638864.038|221408.739|126.379 +638858.969|221413.289|126.660 +638853.882|221417.852|126.739 +638848.798|221422.412|126.861 +638843.762|221426.932|126.986 +638838.690|221431.486|127.285 +638833.649|221436.006|127.401 +638828.559|221440.575|127.504 +638823.520|221445.098|127.647 +638818.567|221449.545|128.300 +638813.474|221454.117|128.416 +638808.494|221458.589|128.733 +638803.480|221463.094|129.229 +638798.490|221467.571|129.461 +638793.485|221472.061|129.540 +638788.456|221476.578|129.900 +638783.509|221481.016|130.132 +638778.507|221485.506|130.284 +638773.515|221489.989|130.567 +638768.501|221494.485|130.668 +638763.496|221498.975|130.857 +638758.561|221503.401|130.775 +638753.569|221507.884|131.131 +638748.579|221512.359|131.034 +638743.602|221516.824|131.089 +638738.554|221521.350|130.967 +638733.537|221525.843|130.711 +638728.545|221530.324|130.680 +638723.589|221534.768|130.564 +638718.605|221539.236|130.680 +638713.640|221543.686|130.546 +638708.580|221548.225|130.455 +638703.676|221552.623|130.461 +638688.722|221566.031|130.241 +638683.800|221570.451|130.595 +638678.771|221574.956|130.080 +638673.863|221579.357|130.199 +638668.895|221583.810|129.836 +638663.890|221588.294|129.620 +638658.898|221592.765|129.120 +638653.932|221597.215|128.885 +638648.928|221601.696|128.361 +638634.047|221615.028|127.239 +638624.211|221623.846|127.007 +638619.325|221628.229|127.172 +638594.877|221650.156|127.394 +638589.946|221654.579|127.352 +638585.136|221658.898|127.455 +638580.174|221663.345|126.910 +638575.181|221667.816|126.172 +638570.237|221672.248|125.803 +638560.316|221681.139|124.590 +638555.348|221685.592|124.145 +638550.416|221690.012|123.645 +638545.457|221694.456|122.999 +638540.562|221698.842|122.472 +638516.059|221720.812|120.701 +638511.246|221725.128|120.530 +638506.476|221729.416|120.933 +638482.476|221750.954|120.576 +638477.624|221755.303|120.037 +638472.817|221759.616|119.781 +638467.958|221763.972|119.558 +638463.203|221768.239|119.354 +638458.452|221772.500|119.204 +638453.633|221776.822|118.970 +638443.964|221785.484|117.872 +638439.091|221789.855|117.424 +638434.339|221794.116|117.107 +638429.569|221798.390|116.726 +638424.725|221802.733|116.236 +638415.188|221811.286|115.599 +638390.728|221833.173|110.795 +638385.961|221837.444|110.137 +638381.148|221841.754|109.530 +638376.399|221846.009|109.024 +638371.632|221850.285|108.701 +638367.048|221854.400|108.789 +638362.354|221858.612|108.610 +638339.689|221878.979|110.362 +638335.221|221882.996|110.865 +638321.651|221895.185|111.438 +638298.520|221915.924|109.625 +638293.926|221920.042|109.244 +638289.394|221924.105|108.917 +638284.767|221928.256|108.652 +638280.241|221932.313|108.402 +638275.687|221936.397|108.274 +638271.246|221940.387|108.421 +638266.805|221944.377|108.588 +638239.391|221968.935|105.379 +638234.810|221973.037|104.650 +638216.440|221989.487|101.078 +638212.142|221993.349|101.176 +638200.148|222004.176|105.162 +638195.835|222008.050|105.251 +638191.583|222011.872|105.370 +638182.077|222020.358|101.499 +638177.764|222024.226|101.236 +638173.195|222028.313|99.984 +638130.495|222066.623|97.052 +638126.350|222070.345|97.021 +638122.162|222074.100|96.637 +638236.011|221969.700|104.574 +638244.969|221961.653|105.446 +638272.173|221937.229|108.393 +638276.592|221933.249|108.168 +638281.177|221929.131|108.430 +638285.709|221925.059|108.725 +638290.241|221920.987|109.042 +638294.859|221916.838|109.527 +638304.058|221908.575|110.161 +638308.602|221904.491|110.374 +638322.495|221892.009|111.386 +638327.086|221887.882|111.417 +638349.565|221867.631|109.103 +638363.363|221855.214|108.433 +638368.054|221850.995|108.604 +638372.790|221846.743|108.750 +638377.527|221842.488|109.198 +638387.165|221833.844|110.448 +638411.546|221811.990|114.764 +638416.374|221807.659|115.358 +638421.257|221803.279|115.995 +638426.091|221798.938|116.416 +638430.959|221794.574|117.031 +638435.796|221790.227|117.245 +638440.587|221785.923|117.522 +638460.088|221768.419|119.265 +638464.947|221764.054|119.473 +638469.799|221759.695|119.659 +638474.652|221755.337|119.869 +638479.577|221750.920|120.509 +638504.028|221728.953|121.405 +638508.707|221724.738|120.442 +638513.596|221720.342|120.457 +638518.506|221715.929|120.634 +638533.399|221702.563|121.969 +638543.308|221693.666|122.789 +638568.415|221671.141|125.718 +638573.438|221666.637|126.276 +638583.441|221657.657|127.212 +638593.350|221648.751|127.269 +638598.355|221644.255|127.526 +638603.256|221639.845|127.050 +638633.209|221612.925|127.175 +638648.333|221599.346|128.324 +638653.430|221594.771|128.812 +638658.511|221590.211|129.199 +638668.581|221581.164|129.763 +638683.715|221567.573|130.415 +638688.732|221563.065|130.467 +638693.749|221558.551|130.116 +638703.837|221549.486|130.360 +638708.845|221544.985|130.433 +638713.932|221540.412|130.351 +638718.962|221535.895|130.641 +638723.982|221531.381|130.458 +638729.078|221526.803|130.513 +638734.147|221522.252|130.799 +638739.182|221517.726|130.814 +638744.227|221513.191|130.945 +638759.403|221499.548|130.894 +638764.453|221495.003|130.702 +638769.516|221490.450|130.619 +638774.563|221485.911|130.403 +638779.611|221481.367|130.238 +638784.704|221476.785|130.025 +638789.733|221472.259|129.677 +638794.778|221467.721|129.507 +638799.868|221463.142|129.309 +638804.891|221458.622|128.912 +638809.963|221454.056|128.537 +638815.050|221449.481|128.373 +638820.091|221444.946|128.254 +638825.136|221440.401|127.590 +638830.196|221435.848|127.102 +638835.331|221431.236|127.593 +638845.469|221422.110|126.995 +638855.680|221412.930|126.700 +638860.712|221408.403|126.596 +638870.929|221399.208|125.883 +638881.094|221390.067|125.819 +638886.206|221385.470|125.520 +638891.284|221380.904|125.477 +638911.702|221362.537|124.877 +638927.019|221348.754|123.981 +638937.214|221339.576|123.115 +638952.549|221325.784|122.697 +638967.947|221311.940|122.777 +638973.107|221307.301|122.707 +638978.167|221302.750|122.609 +638983.306|221298.123|122.003 +638988.457|221293.487|121.786 +639003.807|221279.677|120.826 +639008.906|221275.087|120.524 +639024.314|221261.224|119.771 +639029.432|221256.628|120.094 +639044.821|221242.772|118.644 +639049.984|221238.133|118.982 +639065.328|221224.313|116.937 +639075.627|221215.035|115.681 +639080.742|221210.438|115.757 +639085.850|221205.842|115.462 +639091.007|221201.203|115.263 +639096.165|221196.558|114.764 +639142.345|221154.959|109.551 +639147.520|221150.292|108.725 +639152.653|221145.650|106.973 +639162.870|221136.509|110.469 +639183.313|221118.160|113.307 +639193.478|221109.034|114.678 +639198.541|221104.490|115.166 +639203.604|221099.939|115.477 +639218.871|221086.229|117.147 +639223.934|221081.678|117.391 +639228.957|221077.161|117.431 +639234.026|221072.601|117.495 +639239.101|221068.036|117.403 +639244.173|221063.473|117.446 +639249.248|221058.910|117.455 +639254.277|221054.384|117.345 +639259.309|221049.854|117.199 +639264.378|221045.297|117.449 +639279.511|221031.673|116.473 +639284.574|221027.107|115.785 +639289.561|221022.626|115.864 +639294.532|221018.155|116.205 +639324.491|220991.208|116.269 +639334.442|220982.259|116.242 +639339.429|220977.763|115.617 +639344.391|220973.297|115.504 +639349.375|220968.811|115.084 +639354.343|220964.336|114.916 +639359.320|220959.856|114.629 +639364.243|220955.424|114.501 +639369.214|220950.956|114.425 +639374.134|220946.527|114.373 +639379.114|220942.034|113.471 +639383.985|220937.663|114.209 +639388.901|220933.244|114.343 +639393.778|220928.854|114.300 +639398.752|220924.380|114.334 +639403.586|220920.030|114.270 +639408.509|220915.605|114.376 +639413.380|220911.225|114.556 +639418.308|220906.793|114.617 +639423.139|220902.450|114.712 +639428.019|220898.060|114.815 +639432.860|220893.708|114.840 +639442.604|220884.942|114.776 +639447.508|220880.528|114.690 +639452.315|220876.200|114.608 +639462.029|220867.462|114.526 +639466.851|220863.121|114.373 +639471.725|220858.738|114.242 +639476.550|220854.395|114.108 +639481.378|220850.051|113.965 +639486.160|220845.748|113.819 +639495.761|220837.106|113.715 +639500.580|220832.775|113.785 +639510.117|220824.198|113.971 +639514.884|220819.913|114.114 +639519.655|220815.624|114.224 +639524.434|220811.326|114.285 +639529.167|220807.071|114.358 +639538.677|220798.519|114.562 +639543.408|220794.267|114.712 +639548.153|220789.996|114.733 +639552.856|220785.769|114.733 +639557.608|220781.493|114.730 +639562.375|220777.204|114.648 +639567.103|220772.952|114.495 +639571.885|220768.648|114.334 +639576.558|220764.445|114.270 +639581.288|220760.190|114.175 +639586.019|220755.932|114.084 +639590.707|220751.713|113.965 +639595.440|220747.455|113.916 +639600.131|220743.237|113.828 +639604.822|220739.015|113.758 +639609.522|220734.785|113.636 +639614.216|220730.566|113.611 +639618.873|220726.372|113.483 +639623.595|220722.123|113.264 +639628.252|220717.932|113.200 +639632.925|220713.729|113.032 +639637.594|220709.526|112.910 +639642.209|220705.375|112.855 +639646.909|220701.144|112.575 +639651.615|220696.901|111.901 +639656.181|220692.805|112.609 +639660.765|220688.681|112.511 +639665.428|220684.481|112.209 +639674.737|220676.105|111.840 +639679.303|220671.999|111.938 +639683.902|220667.863|112.170 +639688.432|220663.791|112.215 +639693.004|220659.679|112.331 +639697.600|220655.546|112.316 +639706.647|220647.417|112.941 +639711.158|220643.363|113.194 +639715.666|220639.312|113.496 +639720.177|220635.258|113.779 +639724.676|220631.211|113.831 +639729.208|220627.138|114.029 +639733.664|220623.136|114.395 +639738.151|220619.104|114.581 +639742.641|220615.065|114.757 +639747.078|220611.078|114.977 +639751.501|220607.104|115.285 +639755.997|220603.062|115.480 +639760.438|220599.072|115.730 +639769.265|220591.138|116.269 +639773.642|220587.203|116.345 +639778.052|220583.238|116.525 +639782.539|220579.202|116.580 +639786.928|220575.255|116.635 +639791.323|220571.302|116.665 +639795.722|220567.346|116.702 +639800.117|220563.395|116.769 +639804.485|220559.467|116.729 +639808.849|220555.538|116.714 +639813.223|220551.603|116.675 +639817.634|220547.634|116.723 +639821.971|220543.733|116.641 +639826.305|220539.834|116.595 +639830.652|220535.924|116.504 +639834.934|220532.071|116.486 +639839.305|220528.136|116.297 +639843.572|220524.296|116.132 +639847.873|220520.431|116.092 +639856.456|220512.713|115.879 +639860.742|220508.858|115.696 +639865.021|220505.011|115.574 +639869.243|220501.216|115.495 +639873.528|220497.357|115.108 +639877.780|220493.532|114.907 +639890.323|220482.255|114.712 +639894.538|220478.460|114.248 +639898.686|220474.729|114.148 +639902.801|220471.032|114.215 +639906.907|220467.338|114.087 +639911.009|220463.649|113.998 +639915.075|220459.995|113.852 +639919.138|220456.337|113.718 +639923.198|220452.689|113.642 +639927.249|220449.046|113.602 +639931.309|220445.395|113.541 +639862.488|220505.435|115.446 +639858.306|220509.184|115.599 +639854.121|220512.936|115.794 +639849.964|220516.660|115.849 +639845.803|220520.388|115.943 +639841.637|220524.125|116.102 +639837.427|220527.898|116.220 +639833.221|220531.669|116.342 +639828.981|220535.467|116.382 +639824.745|220539.264|116.437 +639820.511|220543.059|116.483 +639816.277|220546.854|116.544 +639812.004|220550.682|116.559 +639807.780|220554.468|116.598 +639803.464|220558.336|116.611 +639799.202|220562.155|116.617 +639794.893|220566.017|116.626 +639790.589|220569.872|116.617 +639786.236|220573.771|116.605 +639781.896|220577.660|116.547 +639777.562|220581.543|116.473 +639773.188|220585.460|116.358 +639768.863|220589.337|116.269 +639764.504|220593.239|116.092 +639760.170|220597.116|115.779 +639755.790|220601.035|115.452 +639751.340|220605.022|115.269 +639746.966|220608.939|114.943 +639742.574|220612.871|114.739 +639738.126|220616.851|114.575 +639733.628|220620.884|114.443 +639729.162|220624.877|114.102 +639724.685|220628.888|113.861 +639720.186|220632.917|113.779 +639715.715|220636.923|113.544 +639711.158|220641.001|113.221 +639706.641|220645.049|112.974 +639702.194|220649.026|112.285 +639693.022|220657.253|112.133 +639679.172|220669.670|111.965 +639674.557|220673.806|111.816 +639669.866|220678.022|112.228 +639665.191|220682.213|112.185 +639660.494|220686.428|112.331 +639651.161|220694.795|111.914 +639646.339|220699.132|112.673 +639641.605|220703.378|112.810 +639636.875|220707.624|112.962 +639632.108|220711.897|113.023 +639627.389|220716.134|113.139 +639622.577|220720.450|113.212 +639617.806|220724.729|113.380 +639612.981|220729.061|113.617 +639608.196|220733.355|113.581 +639603.386|220737.668|113.733 +639598.589|220741.975|113.843 +639593.745|220746.319|113.916 +639588.896|220750.674|114.099 +639584.077|220754.993|114.020 +639579.240|220759.334|114.133 +639574.336|220763.738|114.431 +639569.529|220768.048|114.343 +639564.631|220772.446|114.645 +639559.751|220776.823|114.794 +639554.853|220781.215|114.706 +639550.001|220785.568|114.693 +639545.115|220789.948|114.556 +639540.259|220794.306|114.614 +639535.376|220798.683|114.480 +639530.448|220803.103|114.343 +639525.562|220807.483|114.273 +639520.639|220811.896|114.126 +639515.747|220816.282|114.172 +639510.834|220820.690|113.980 +639505.960|220825.058|113.901 +639500.995|220829.511|113.770 +639496.075|220833.924|113.721 +639491.107|220838.377|113.654 +639486.178|220842.800|113.715 +639481.201|220847.265|113.825 +639476.233|220851.722|113.852 +639471.258|220856.184|113.953 +639466.284|220860.652|114.120 +639461.304|220865.121|114.346 +639456.290|220869.620|114.456 +639451.324|220874.076|114.602 +639446.323|220878.559|114.590 +639441.315|220883.055|114.718 +639436.319|220887.536|114.715 +639431.378|220891.964|114.669 +639426.343|220896.485|114.639 +639421.353|220900.959|114.642 +639416.321|220905.473|114.593 +639411.341|220909.939|114.538 +639406.314|220914.447|114.447 +639401.337|220918.909|114.373 +639396.317|220923.411|114.279 +639391.294|220927.916|114.242 +639386.310|220932.387|114.331 +639381.284|220936.898|114.404 +639376.276|220941.385|114.187 +639371.192|220945.948|114.428 +639366.175|220950.450|114.447 +639361.149|220954.958|114.608 +639356.129|220959.463|114.712 +639351.106|220963.974|114.922 +639346.040|220968.515|115.007 +639341.029|220973.017|115.111 +639335.957|220977.571|115.416 +639330.934|220982.085|115.769 +639325.884|220986.614|115.736 +639320.858|220991.131|116.245 +639290.621|221018.259|115.715 +639280.526|221027.320|116.120 +639275.457|221031.880|116.891 +639260.318|221045.462|116.681 +639250.189|221054.557|117.208 +639245.102|221059.126|117.525 +639240.082|221063.631|117.373 +639235.047|221068.154|117.656 +639229.926|221072.748|117.595 +639224.906|221077.250|117.473 +639219.840|221081.788|117.117 +639199.641|221099.890|115.401 +639194.621|221104.392|115.190 +639189.513|221108.967|114.599 +639159.130|221136.177|110.673 +639154.080|221140.666|107.610 +639148.950|221145.275|108.094 +639143.869|221149.856|109.381 +639123.481|221168.217|114.215 +639087.828|221200.218|115.026 +639067.398|221218.577|116.559 +639016.365|221264.419|120.229 +639006.157|221273.584|120.698 +638990.850|221287.330|121.570 +638980.642|221296.499|122.009 +638975.500|221301.120|122.560 +638970.437|221305.664|122.588 +638965.277|221310.294|122.676 +638949.924|221324.065|122.707 +638934.590|221337.830|123.225 +638924.385|221346.992|124.008 +638909.054|221360.757|124.755 +638888.638|221379.082|125.517 +638883.508|221383.681|125.532 +638878.452|221388.226|125.922 +638863.126|221401.975|126.392 +638858.048|221406.535|126.535 +638847.853|221415.688|126.998 +638842.775|221420.245|127.205 +638837.691|221424.805|127.361 +638832.622|221429.358|127.702 +638827.489|221433.958|127.242 +638822.426|221438.505|127.699 +638817.382|221443.038|128.412 +638812.334|221447.567|128.458 +638807.247|221452.133|128.659 +638802.218|221456.647|128.982 +638797.143|221461.207|129.342 +638792.053|221465.773|129.555 +638787.051|221470.263|129.680 +638782.025|221474.774|130.116 +638776.974|221479.309|130.260 +638771.924|221483.842|130.421 +638766.873|221488.374|130.628 +638761.862|221492.870|130.756 +638756.806|221497.408|130.927 +638751.776|221501.919|130.906 +638746.735|221506.439|130.775 +638741.669|221510.984|130.927 +638736.655|221515.480|130.644 +638731.571|221520.040|130.653 +638726.557|221524.532|130.442 +638721.501|221529.068|130.287 +638716.523|221533.533|130.464 +638706.507|221542.519|130.290 +638701.509|221546.999|130.342 +638696.507|221551.489|130.366 +638691.530|221555.948|130.223 +638676.558|221569.381|130.372 +638671.620|221573.809|130.223 +638656.551|221587.309|129.110 +638646.532|221596.285|128.315 +638631.545|221609.712|127.123 +638616.664|221623.050|126.608 +638611.827|221627.390|126.785 +638606.896|221631.819|126.995 +638577.522|221658.157|126.791 +638572.538|221662.616|126.126 +638562.696|221671.425|125.416 +638547.776|221684.769|123.036 +638533.091|221697.915|121.807 +638528.211|221702.289|121.762 +638523.331|221706.657|121.423 +638518.449|221711.031|121.076 +638513.563|221715.402|120.457 +638508.741|221719.721|120.235 +638503.980|221723.997|120.704 +638499.264|221728.228|121.170 +638479.986|221745.498|120.442 +638475.109|221749.862|119.765 +638470.342|221754.133|119.759 +638465.557|221758.424|119.656 +638460.753|221762.725|119.476 +638446.238|221775.716|117.955 +638441.496|221779.961|117.650 +638436.683|221784.271|117.257 +638431.894|221788.560|117.037 +638427.179|221792.781|116.672 +638422.348|221797.106|116.263 +638412.799|221805.653|115.309 +638407.916|221810.018|114.443 +638403.060|221814.355|113.483 +638393.508|221822.902|112.206 +638369.529|221844.344|108.600 +638364.860|221848.529|108.530 +638360.184|221852.714|108.210 +638351.052|221860.907|108.655 +638324.041|221885.148|110.975 +638319.508|221889.214|111.222 +638314.906|221893.335|110.929 +638310.306|221897.450|110.445 +638305.692|221901.583|110.137 +638287.495|221917.881|109.362 +638282.893|221921.998|108.978 +638242.129|221958.486|105.467 +638237.544|221962.583|104.705 +638223.429|221975.177|100.395 +638218.842|221979.277|99.511 +638214.465|221983.199|99.505 +638210.807|221986.516|102.221 +638194.269|222001.378|105.178 +638190.029|222005.176|105.147 +638185.768|222008.998|105.263 +638172.506|222020.854|103.184 +638151.456|222039.719|103.141 +638147.192|222043.535|102.760 +638142.956|222047.326|102.297 +638138.694|222051.139|101.968 +638125.253|222063.130|97.814 +638116.801|222070.692|96.789 +638222.402|221974.229|100.075 +638286.773|221916.457|109.433 +638305.006|221900.065|109.911 +638309.691|221895.862|110.527 +638314.308|221891.710|110.877 +638336.946|221871.335|109.561 +638341.430|221867.290|108.896 +638345.947|221863.221|108.402 +638359.724|221850.824|107.817 +638364.494|221846.539|108.372 +638369.203|221842.308|108.637 +638374.068|221837.947|109.692 +638393.282|221820.695|111.981 +638427.289|221790.175|116.620 +638432.123|221785.835|117.071 +638436.866|221781.568|117.065 +638441.742|221777.188|117.525 +638446.537|221772.881|117.839 +638451.517|221768.416|118.933 +638466.069|221755.340|119.631 +638470.921|221750.975|119.838 +638475.706|221746.671|119.680 +638495.339|221729.035|121.228 +638500.066|221724.777|120.838 +638504.851|221720.464|120.195 +638509.698|221716.106|120.247 +638514.660|221711.649|120.719 +638519.598|221707.212|121.076 +638529.491|221698.321|121.652 +638534.405|221693.907|121.920 +638539.355|221689.460|122.134 +638544.384|221684.946|122.883 +638549.392|221680.453|123.527 +638554.427|221675.930|124.060 +638559.496|221671.385|125.176 +638564.534|221666.865|125.785 +638569.524|221662.382|126.117 +638594.390|221640.027|126.925 +638599.376|221635.550|127.394 +638609.252|221626.659|126.660 +638629.210|221608.715|126.919 +638654.499|221586.002|129.138 +638679.734|221563.321|130.119 +638684.699|221558.856|130.125 +638689.762|221554.302|130.150 +638699.835|221545.244|130.250 +638704.892|221540.696|130.281 +638709.918|221536.173|130.083 +638720.025|221527.087|130.205 +638725.131|221522.496|130.351 +638730.187|221517.952|130.506 +638735.293|221513.361|130.714 +638740.389|221508.780|130.842 +638745.421|221504.260|130.830 +638750.502|221499.691|130.878 +638755.577|221495.131|130.875 +638760.640|221490.578|130.769 +638765.694|221486.036|130.577 +638770.699|221481.531|130.433 +638775.798|221476.947|130.238 +638780.839|221472.411|129.985 +638785.875|221467.882|129.705 +638790.968|221463.301|129.510 +638796.012|221458.766|129.336 +638801.096|221454.194|129.056 +638806.122|221449.667|128.736 +638811.207|221445.095|128.501 +638816.297|221440.517|128.364 +638821.314|221436.003|127.946 +638826.361|221431.455|127.312 +638831.494|221426.850|127.727 +638836.563|221422.290|127.379 +638841.656|221417.712|127.373 +638856.930|221403.975|126.715 +638861.950|221399.454|126.480 +638877.217|221385.726|125.886 +638882.329|221381.127|125.614 +638887.452|221376.521|125.511 +638902.756|221362.756|124.987 +638923.154|221344.410|124.054 +638933.346|221335.236|123.094 +638943.591|221326.028|123.188 +638948.641|221321.486|122.734 +638963.991|221307.688|122.701 +638969.102|221303.092|122.646 +638974.214|221298.495|122.573 +638989.512|221284.731|121.423 +639004.825|221270.957|120.713 +639015.072|221261.733|119.939 +639025.305|221252.541|120.195 +639061.109|221220.314|117.129 +639066.215|221215.721|116.611 +639071.317|221211.124|115.931 +639076.481|221206.485|116.022 +639091.809|221192.693|114.925 +639117.382|221169.705|114.760 +639122.493|221165.096|113.831 +639142.939|221146.659|108.661 +639148.124|221141.971|106.546 +639188.912|221105.450|115.090 +639193.978|221100.902|115.355 +639199.096|221096.309|115.498 +639214.336|221082.632|116.598 +639224.464|221073.546|117.342 +639229.530|221068.996|117.565 +639234.608|221064.436|117.479 +639244.764|221055.310|117.336 +639249.848|221050.741|117.147 +639259.974|221041.634|116.641 +639275.131|221028.018|116.531 +639280.197|221023.458|115.788 +639290.231|221014.442|115.721 +639305.340|221000.876|116.099 +639310.342|220996.383|116.004 +639315.350|220991.881|115.800 +639320.412|220987.330|115.538 +639325.375|220982.868|115.324 +639330.428|220978.330|115.330 +639335.445|220973.819|115.111 +639340.420|220969.344|114.794 +639345.437|220964.836|114.660 +639350.405|220960.374|114.559 +639355.419|220955.866|114.507 +639360.384|220951.407|114.492 +639365.358|220946.935|114.370 +639370.336|220942.464|114.258 +639375.261|220938.038|114.203 +639380.233|220933.573|114.200 +639385.146|220929.159|114.361 +639390.123|220924.691|114.370 +639395.000|220920.308|114.389 +639399.932|220915.879|114.367 +639404.867|220911.444|114.343 +639414.684|220902.626|114.398 +639419.567|220898.243|114.492 +639424.450|220893.857|114.568 +639429.330|220889.474|114.736 +639439.077|220880.717|114.681 +639448.843|220871.945|114.526 +639453.702|220867.577|114.465 +639458.576|220863.200|114.303 +639463.422|220858.839|113.904 +639468.283|220854.471|113.883 +639473.151|220850.097|113.840 +639477.976|220845.763|113.761 +639482.813|220841.416|113.602 +639497.285|220828.417|113.611 +639502.043|220824.143|113.819 +639516.408|220811.241|114.157 +639521.151|220806.980|114.108 +639525.921|220802.697|114.300 +639530.655|220798.446|114.379 +639535.379|220794.203|114.572 +639549.610|220781.419|114.757 +639554.313|220777.195|114.791 +639563.747|220768.718|114.666 +639568.481|220764.463|114.501 +639573.205|220760.217|114.431 +639577.899|220755.996|114.221 +639582.596|220751.774|114.044 +639587.281|220747.562|113.953 +639591.938|220743.380|114.130 +639596.605|220739.186|113.852 +639601.359|220734.913|113.694 +639606.014|220730.725|113.547 +639610.662|220726.552|113.499 +639615.322|220722.361|113.352 +639619.974|220718.179|113.313 +639624.594|220714.028|113.154 +639629.261|220709.834|113.054 +639633.912|220705.655|113.069 +639647.875|220693.097|112.148 +639652.407|220689.028|112.395 +639661.612|220680.756|112.298 +639670.781|220672.517|112.209 +639675.395|220668.369|111.981 +639679.977|220664.251|112.011 +639693.595|220652.019|112.057 +639702.498|220644.030|112.971 +639706.967|220640.019|113.182 +639711.441|220636.002|113.374 +639720.369|220627.989|113.925 +639724.852|220623.962|114.108 +639729.284|220619.985|114.319 +639733.707|220616.013|114.578 +639738.215|220611.965|114.672 +639742.607|220608.018|114.843 +639747.039|220604.041|115.117 +639751.422|220600.109|115.391 +639755.863|220596.119|115.626 +639760.228|220592.205|116.035 +639764.617|220588.267|116.327 +639769.030|220584.302|116.473 +639773.410|220580.370|116.550 +639777.790|220576.435|116.629 +639782.240|220572.436|116.623 +639786.636|220568.486|116.653 +639791.043|220564.526|116.644 +639795.402|220560.610|116.635 +639799.809|220556.650|116.665 +639804.171|220552.734|116.675 +639808.545|220548.802|116.638 +639812.918|220544.870|116.611 +639817.298|220540.935|116.568 +639821.639|220537.036|116.501 +639825.988|220533.126|116.394 +639830.323|220529.230|116.376 +639839.000|220521.427|116.086 +639843.301|220517.563|116.038 +639847.614|220513.682|115.940 +639864.771|220498.247|115.410 +639873.394|220490.487|114.913 +639877.667|220486.641|114.626 +639881.858|220482.876|114.757 +639886.071|220479.082|114.535 +639890.338|220475.244|114.334 +639894.559|220471.443|114.111 +639898.756|220467.670|114.035 +639902.908|220463.936|113.938 +639907.059|220460.199|113.855 +639919.516|220448.995|113.456 +639923.649|220445.273|113.276 +639927.786|220441.554|113.121 +639859.053|220501.725|115.413 +639846.373|220513.097|115.821 +639842.112|220516.919|115.907 +639837.912|220520.684|115.958 +639833.633|220524.521|116.178 +639829.387|220528.331|116.242 +639825.098|220532.178|116.284 +639820.807|220536.024|116.348 +639816.561|220539.831|116.449 +639812.230|220543.715|116.492 +639807.953|220547.549|116.528 +639803.686|220551.377|116.550 +639799.416|220555.202|116.571 +639795.112|220559.061|116.541 +639790.756|220562.966|116.519 +639786.450|220566.828|116.534 +639782.152|220570.680|116.510 +639777.793|220574.588|116.559 +639773.456|220578.474|116.507 +639769.079|220582.397|116.412 +639764.757|220586.271|116.309 +639760.453|220590.126|116.114 +639756.149|220593.976|115.632 +639751.806|220597.868|115.398 +639747.417|220601.797|115.145 +639743.040|220605.717|114.837 +639738.700|220609.606|114.642 +639734.298|220613.550|114.507 +639729.863|220617.525|114.297 +639725.486|220621.442|114.041 +639721.045|220625.422|113.898 +639716.608|220629.400|113.758 +639712.194|220633.350|113.453 +639707.732|220637.349|113.185 +639703.312|220641.303|112.962 +639689.816|220653.379|112.285 +639676.234|220665.540|112.005 +639671.704|220669.594|111.959 +639667.074|220673.745|112.282 +639662.429|220677.909|112.389 +639648.674|220690.217|111.904 +639639.310|220698.617|112.837 +639634.634|220702.805|112.932 +639629.925|220707.024|112.950 +639625.259|220711.205|113.023 +639620.595|220715.384|113.112 +639615.828|220719.655|113.243 +639611.168|220723.827|113.337 +639606.416|220728.085|113.398 +639601.710|220732.301|113.511 +639596.964|220736.553|113.587 +639592.221|220740.802|113.651 +639587.427|220745.096|113.749 +639582.687|220749.345|113.846 +639577.896|220753.637|113.965 +639573.107|220757.925|114.087 +639568.270|220762.260|114.236 +639563.467|220766.566|114.544 +639558.681|220770.849|114.294 +639553.823|220775.204|114.700 +639549.016|220779.511|114.700 +639544.161|220783.861|114.703 +639529.655|220796.845|114.300 +639524.824|220801.173|114.184 +639519.941|220805.544|114.102 +639515.064|220809.909|113.980 +639500.406|220823.031|113.535 +639495.481|220827.444|113.493 +639490.561|220831.849|113.419 +639485.621|220836.277|113.593 +639480.643|220840.737|113.654 +639475.681|220845.178|113.581 +639470.758|220849.588|113.645 +639465.741|220854.084|113.700 +639460.758|220858.549|113.938 +639455.726|220863.060|114.209 +639450.757|220867.510|114.322 +639445.743|220872.003|114.443 +639440.748|220876.478|114.407 +639435.691|220881.010|114.532 +639430.726|220885.457|114.718 +639425.688|220889.971|114.684 +639420.710|220894.427|114.489 +639415.635|220898.972|114.361 +639410.649|220903.437|114.319 +639405.616|220907.942|114.279 +639400.548|220912.481|114.111 +639395.515|220916.989|114.133 +639390.489|220921.490|114.120 +639385.411|220926.038|114.142 +639380.330|220930.589|114.221 +639375.258|220935.136|114.255 +639370.226|220939.644|114.398 +639365.169|220944.171|114.233 +639360.052|220948.755|114.251 +639354.980|220953.299|114.395 +639349.865|220957.884|114.447 +639344.797|220962.422|114.535 +639339.685|220967.003|114.617 +639334.616|220971.542|114.770 +639329.505|220976.123|114.901 +639324.396|220980.698|115.004 +639319.282|220985.282|115.230 +639314.164|220989.872|115.602 +639309.065|220994.438|115.623 +639303.953|220999.020|115.907 +639298.845|221003.601|116.227 +639293.758|221008.151|116.086 +639288.689|221012.687|115.617 +639278.454|221021.855|115.769 +639273.281|221026.500|116.617 +639263.095|221035.629|117.056 +639257.971|221040.213|116.827 +639252.832|221044.816|117.013 +639247.742|221049.382|117.318 +639242.615|221053.972|117.263 +639237.537|221058.520|117.306 +639232.453|221063.076|117.504 +639212.025|221081.358|116.693 +639201.802|221090.502|115.782 +639196.685|221095.081|115.465 +639191.613|221099.622|115.428 +639186.495|221104.203|115.181 +639171.191|221117.898|114.401 +639155.854|221131.599|111.874 +639150.800|221136.088|109.155 +639140.550|221145.260|108.664 +639120.146|221163.606|113.947 +639104.845|221177.325|115.282 +639094.659|221186.445|114.910 +639084.430|221195.610|115.218 +639079.364|221200.148|115.510 +639059.025|221218.388|117.110 +639043.806|221232.037|118.494 +639033.635|221241.150|118.860 +639018.428|221254.787|120.357 +639013.305|221259.371|119.963 +639008.251|221263.903|120.396 +639003.197|221268.433|120.783 +638972.760|221295.716|122.463 +638967.697|221300.251|122.588 +638962.628|221304.789|122.640 +638947.428|221318.420|122.847 +638942.371|221322.956|123.139 +638932.228|221332.051|123.185 +638917.073|221345.654|124.438 +638901.860|221359.294|124.813 +638886.709|221372.885|125.480 +638881.682|221377.393|125.581 +638876.611|221381.941|125.776 +638861.416|221395.565|126.044 +638856.421|221400.052|126.663 +638836.194|221418.191|127.273 +638831.165|221422.702|127.507 +638826.099|221427.249|127.900 +638821.085|221431.739|127.779 +638815.986|221436.311|127.794 +638810.981|221440.807|128.379 +638805.994|221445.278|128.629 +638800.907|221449.844|128.830 +638795.930|221454.309|129.187 +638790.888|221458.833|129.412 +638785.890|221463.316|129.562 +638780.845|221467.839|129.787 +638775.810|221472.360|130.086 +638770.860|221476.798|130.296 +638765.797|221481.336|130.378 +638760.802|221485.820|130.644 +638755.794|221490.309|130.805 +638750.749|221494.827|130.644 +638745.729|221499.328|130.726 +638740.651|221503.882|130.744 +638735.643|221508.366|130.525 +638730.593|221512.892|130.375 +638725.536|221517.424|130.208 +638720.541|221521.899|130.199 +638715.469|221526.443|129.946 +638705.450|221535.429|130.171 +638700.469|221539.888|129.936 +638690.469|221548.855|130.052 +638675.488|221562.285|130.116 +638670.453|221566.796|129.988 +638665.451|221571.277|129.744 +638660.431|221575.769|129.397 +638655.408|221580.268|129.040 +638630.320|221602.732|127.141 +638625.309|221607.216|126.684 +638615.308|221616.168|126.032 +638610.383|221620.587|126.270 +638575.971|221651.442|126.547 +638566.034|221660.345|125.779 +638556.116|221669.227|124.910 +638551.047|221673.760|123.798 +638546.030|221678.249|123.066 +638540.964|221682.776|121.747 +638536.033|221687.198|121.628 +638531.137|221691.578|121.146 +638526.306|221695.916|121.387 +638511.539|221709.144|120.253 +638501.889|221717.803|120.387 +638497.106|221722.098|120.741 +638477.870|221739.347|120.524 +638468.138|221748.064|119.607 +638463.365|221752.343|119.573 +638443.922|221769.751|117.434 +638439.066|221774.100|117.062 +638434.333|221778.343|116.821 +638424.759|221786.923|116.397 +638410.336|221799.840|115.062 +638405.584|221804.099|114.593 +638395.809|221812.837|112.621 +638391.021|221817.123|112.069 +638386.284|221821.366|111.789 +638352.908|221851.242|107.665 +638330.347|221871.502|109.512 +638316.826|221883.639|110.338 +638307.844|221891.698|110.551 +638303.134|221895.911|109.564 +638271.066|221924.629|106.723 +638212.142|221977.366|99.176 +638204.269|221984.464|102.133 +638195.927|221991.959|103.199 +638187.868|221999.208|105.022 +638183.671|222002.972|105.171 +638179.480|222006.733|105.354 +638145.525|222037.143|103.230 +638141.285|222040.938|102.751 +638136.994|222044.775|102.090 +638132.760|222048.561|101.468 +638115.328|222064.133|97.301 +638222.609|221965.628|101.194 +638272.846|221920.627|106.756 +638314.537|221883.267|110.350 +638332.621|221867.015|108.652 +638337.126|221862.968|108.311 +638346.319|221854.714|107.796 +638350.961|221850.547|107.653 +638355.700|221846.298|108.006 +638365.149|221837.828|108.637 +638384.574|221820.433|111.804 +638389.320|221816.178|112.106 +638394.154|221811.844|112.624 +638399.031|221807.476|113.392 +638403.911|221803.105|114.209 +638423.290|221785.734|116.190 +638428.121|221781.400|116.617 +638432.864|221777.142|116.592 +638437.710|221772.796|116.861 +638442.578|221768.431|117.287 +638447.500|221764.023|118.034 +638462.134|221750.902|119.430 +638466.882|221746.638|119.305 +638486.448|221729.090|120.588 +638496.061|221720.458|120.375 +638500.828|221716.170|119.915 +638515.471|221703.030|120.393 +638520.402|221698.604|120.722 +638525.322|221694.194|120.972 +638530.241|221689.780|121.271 +638535.213|221685.324|121.591 +638540.129|221680.913|121.926 +638545.213|221676.363|123.024 +638555.311|221667.322|124.916 +638560.203|221662.936|125.194 +638565.217|221658.440|125.660 +638570.243|221653.935|126.248 +638575.129|221649.549|126.248 +638609.727|221618.487|126.117 +638614.680|221614.037|126.059 +638624.711|221605.039|126.565 +638634.779|221596.014|127.477 +638654.990|221577.891|129.086 +638660.007|221573.392|129.385 +638675.110|221559.844|130.052 +638680.127|221555.339|130.065 +638690.182|221546.307|129.894 +638695.172|221541.827|129.732 +638705.270|221532.765|130.052 +638720.416|221519.168|130.077 +638725.472|221514.629|130.223 +638730.556|221510.067|130.162 +638735.640|221505.510|130.610 +638740.688|221500.977|130.729 +638745.808|221496.372|130.671 +638755.916|221487.292|130.699 +638761.027|221482.699|130.567 +638766.029|221478.200|130.360 +638771.137|221473.609|130.253 +638776.185|221469.071|130.055 +638781.266|221464.499|129.677 +638786.313|221459.963|129.498 +638791.364|221455.422|129.388 +638796.491|221450.810|129.028 +638801.575|221446.238|128.769 +638806.610|221441.709|128.528 +638811.761|221437.079|128.516 +638816.769|221432.574|127.934 +638821.862|221427.987|127.239 +638827.004|221423.372|127.794 +638832.030|221418.855|127.474 +638837.163|221414.240|127.340 +638857.582|221395.885|126.681 +638872.889|221382.117|125.941 +638878.007|221377.518|125.685 +638883.112|221372.925|125.300 +638898.483|221359.108|124.977 +638903.543|221354.557|124.657 +638918.944|221340.713|124.203 +638929.183|221331.496|123.170 +638939.427|221322.294|123.176 +638944.581|221317.658|122.819 +638959.928|221303.866|122.627 +638965.088|221299.227|122.502 +638970.206|221294.630|122.502 +639006.081|221262.367|120.500 +639016.295|221253.184|120.134 +639021.461|221248.545|120.271 +639031.699|221239.327|118.973 +639052.124|221220.957|117.705 +639057.229|221216.364|117.220 +639072.549|221202.578|115.577 +639087.889|221188.788|115.242 +639118.534|221161.234|113.806 +639123.603|221156.662|112.657 +639138.925|221142.834|108.759 +639144.003|221138.259|108.158 +639164.288|221120.105|114.151 +639169.353|221115.557|114.575 +639179.491|221106.447|114.730 +639184.554|221101.896|115.013 +639189.620|221097.348|115.419 +639194.640|221092.834|115.458 +639199.702|221088.293|115.934 +639204.716|221083.788|116.312 +639209.779|221079.240|116.675 +639214.790|221074.744|117.159 +639219.801|221070.242|117.568 +639229.902|221061.159|117.431 +639234.934|221056.633|117.242 +639240.006|221052.073|117.303 +639244.990|221047.593|117.245 +639250.031|221043.054|116.873 +639255.063|221038.528|116.787 +639260.114|221033.980|116.272 +639275.180|221020.432|115.983 +639280.182|221015.930|115.687 +639285.223|221011.394|115.608 +639290.207|221006.920|115.821 +639295.202|221002.427|115.763 +639300.241|220997.898|115.812 +639305.258|220993.381|115.364 +639310.266|220988.879|115.205 +639315.271|220984.377|115.093 +639320.278|220979.872|114.919 +639325.283|220975.370|114.888 +639330.242|220970.911|114.785 +639335.299|220966.363|114.733 +639340.267|220961.895|114.596 +639345.281|220957.387|114.523 +639350.237|220952.931|114.578 +639355.257|220948.417|114.440 +639360.235|220943.939|114.282 +639370.235|220934.947|114.047 +639375.155|220930.522|114.066 +639380.178|220926.005|114.023 +639385.097|220921.585|114.139 +639390.084|220917.098|113.980 +639395.052|220912.636|114.136 +639419.796|220890.392|114.480 +639424.779|220885.914|114.559 +639429.668|220881.516|114.599 +639434.624|220877.060|114.459 +639439.538|220872.640|114.300 +639444.530|220868.153|114.352 +639449.395|220863.776|114.233 +639454.372|220859.299|113.974 +639459.295|220854.870|113.803 +639464.220|220850.441|113.642 +639469.088|220846.065|113.587 +639474.053|220841.599|113.553 +639478.918|220837.225|113.602 +639483.865|220832.775|113.331 +639488.687|220828.441|113.340 +639493.600|220824.024|113.456 +639498.425|220819.687|113.468 +639503.290|220815.319|113.642 +639508.109|220810.991|113.782 +639512.979|220806.620|113.941 +639517.798|220802.292|114.117 +639522.623|220797.958|114.251 +639527.451|220793.624|114.407 +639532.228|220789.335|114.584 +639537.117|220784.937|114.212 +639541.859|220780.682|114.721 +639546.675|220776.357|114.632 +639561.062|220763.430|114.544 +639565.798|220759.172|114.379 +639570.599|220754.853|114.087 +639575.393|220750.546|113.907 +639580.130|220746.288|113.800 +639584.915|220741.987|113.727 +639589.600|220737.778|113.697 +639594.346|220733.514|113.602 +639599.089|220729.253|113.544 +639603.737|220725.074|113.462 +639608.483|220720.810|113.432 +639613.131|220716.631|113.401 +639617.794|220712.443|113.288 +639622.510|220708.203|113.169 +639627.173|220704.012|113.102 +639631.846|220699.815|112.990 +639636.518|220695.615|112.901 +639645.851|220687.218|112.142 +639659.640|220674.831|112.331 +639664.225|220670.713|112.285 +639668.861|220666.549|112.261 +639673.475|220662.398|112.054 +639678.011|220658.323|112.060 +639687.085|220650.175|112.444 +639691.565|220646.152|112.529 +639696.088|220642.092|112.706 +639700.532|220638.102|113.066 +639705.007|220634.085|113.246 +639709.472|220630.074|113.493 +639713.883|220626.117|113.806 +639718.318|220622.134|113.959 +639722.755|220618.150|114.123 +639727.181|220614.175|114.367 +639731.564|220610.240|114.584 +639735.962|220606.290|114.727 +639740.355|220602.346|114.913 +639744.686|220598.460|115.196 +639749.008|220594.580|115.526 +639753.406|220590.629|115.727 +639762.008|220582.912|116.431 +639766.321|220579.038|116.568 +639770.655|220575.146|116.629 +639774.946|220571.290|116.641 +639779.290|220567.388|116.672 +639783.597|220563.517|116.632 +639787.946|220559.607|116.650 +639792.265|220555.727|116.589 +639796.523|220551.901|116.592 +639800.787|220548.070|116.580 +639805.106|220544.190|116.565 +639809.386|220540.343|116.504 +639813.610|220536.546|116.464 +639817.893|220532.696|116.422 +639822.142|220528.877|116.312 +639839.052|220513.676|115.913 +639851.695|220502.320|115.349 +639855.920|220498.522|114.968 +639868.383|220487.329|114.754 +639880.758|220476.213|114.346 +639884.858|220472.534|114.443 +639897.196|220461.449|113.910 +639901.311|220457.752|113.508 +639913.497|220446.809|113.404 +639917.523|220443.191|113.233 +639921.543|220439.582|113.115 +639925.570|220435.964|112.974 +639854.246|220497.839|114.824 +639849.882|220501.756|115.111 +639845.514|220505.675|115.434 +639841.207|220509.537|115.474 +639836.806|220513.487|115.751 +639832.444|220517.398|115.839 +639828.027|220521.360|115.961 +639823.605|220525.326|116.141 +639819.261|220529.224|116.202 +639814.866|220533.162|116.260 +639810.477|220537.100|116.324 +639806.094|220541.029|116.370 +639801.662|220545.004|116.416 +639797.233|220548.975|116.467 +639792.768|220552.977|116.455 +639788.348|220556.940|116.489 +639783.932|220560.902|116.537 +639779.467|220564.904|116.577 +639775.017|220568.894|116.562 +639770.566|220572.884|116.562 +639766.086|220576.898|116.452 +639761.657|220580.870|116.364 +639752.793|220588.807|115.681 +639748.343|220592.793|115.471 +639743.869|220596.799|115.114 +639739.437|220600.767|114.818 +639734.938|220604.800|114.648 +639730.439|220608.832|114.483 +639725.959|220612.846|114.233 +639721.426|220616.906|114.002 +639716.925|220620.939|113.907 +639712.444|220624.953|113.703 +639707.884|220629.037|113.371 +639703.361|220633.088|113.151 +639698.841|220637.139|112.938 +639694.333|220641.178|112.657 +639689.767|220645.268|112.432 +639685.186|220649.377|112.346 +639680.662|220653.424|111.874 +639676.106|220657.512|111.987 +639671.470|220661.669|111.972 +639666.843|220665.821|112.258 +639662.222|220669.963|112.185 +639657.595|220674.114|112.179 +639643.739|220686.538|112.109 +639638.984|220690.808|112.731 +639634.357|220694.960|112.843 +639629.730|220699.111|112.971 +639625.015|220703.342|113.029 +639620.400|220707.481|113.105 +639615.728|220711.672|113.261 +639611.022|220715.893|113.340 +639606.319|220720.109|113.386 +639601.664|220724.284|113.480 +639596.925|220728.536|113.505 +639592.270|220732.712|113.645 +639587.582|220736.912|113.666 +639582.849|220741.158|113.700 +639578.155|220745.371|113.822 +639573.367|220749.665|113.953 +639568.673|220753.878|114.126 +639563.918|220758.145|114.425 +639559.132|220762.439|114.599 +639540.131|220779.478|114.742 +639535.340|220783.772|114.648 +639530.548|220788.070|114.584 +639525.821|220792.307|114.416 +639521.051|220796.580|114.187 +639516.259|220800.875|114.175 +639511.462|220805.172|113.797 +639506.676|220809.464|113.782 +639501.796|220813.838|113.721 +639497.038|220818.099|113.474 +639492.216|220822.421|113.389 +639487.352|220826.783|113.270 +639482.530|220831.108|113.246 +639472.752|220839.880|113.602 +639467.887|220844.242|113.578 +639463.010|220848.616|113.715 +639458.097|220853.023|113.730 +639453.223|220857.397|113.895 +639448.289|220861.823|114.187 +639443.378|220866.230|114.276 +639438.425|220870.668|114.273 +639433.509|220875.078|114.459 +639428.562|220879.516|114.474 +639423.667|220883.906|114.474 +639418.683|220888.374|114.373 +639383.930|220919.528|113.892 +639378.953|220923.990|113.883 +639373.920|220928.504|114.023 +639368.891|220933.015|114.136 +639363.874|220937.514|114.090 +639358.857|220942.013|114.105 +639353.831|220946.521|114.230 +639348.759|220951.071|114.376 +639343.736|220955.576|114.553 +639338.661|220960.130|114.821 +639333.613|220964.653|114.681 +639328.554|220969.189|114.739 +639323.445|220973.770|114.855 +639318.437|220978.257|114.882 +639313.332|220982.835|115.001 +639308.230|220987.410|115.105 +639303.173|220991.945|115.288 +639298.071|220996.520|115.398 +639292.965|221001.098|115.669 +639287.881|221005.655|115.516 +639282.739|221010.264|115.586 +639277.695|221014.787|115.650 +639272.541|221019.414|116.099 +639262.318|221028.579|116.224 +639257.169|221033.200|116.678 +639252.085|221037.757|116.739 +639246.959|221042.350|116.653 +639241.765|221047.013|117.144 +639236.687|221051.567|117.208 +639231.514|221056.197|117.083 +639226.378|221060.809|117.516 +639221.255|221065.402|117.555 +639210.980|221074.604|116.903 +639205.820|221079.219|116.388 +639195.539|221088.430|115.943 +639190.427|221093.005|115.486 +639185.261|221097.632|115.315 +639180.098|221102.256|115.013 +639174.983|221106.840|114.800 +639164.650|221116.097|114.559 +639149.169|221129.934|111.938 +639138.898|221139.091|108.104 +639133.673|221143.782|108.680 +639107.875|221166.983|114.511 +639092.388|221180.873|115.154 +639082.068|221190.133|115.657 +639076.907|221194.759|115.888 +639061.484|221208.597|116.995 +639051.124|221217.894|117.674 +639040.859|221227.099|118.098 +639035.710|221231.720|118.656 +639030.596|221236.304|118.610 +639020.315|221245.539|120.134 +639015.203|221250.120|120.213 +639010.046|221254.744|120.357 +639004.938|221259.325|120.479 +638999.838|221263.903|120.957 +638984.473|221277.684|121.646 +638969.160|221291.418|122.454 +638964.046|221296.002|122.490 +638958.934|221300.586|122.569 +638943.688|221314.244|122.874 +638938.583|221318.822|123.173 +638928.439|221327.909|123.222 +638918.292|221337.010|124.173 +638913.229|221341.548|124.401 +638898.059|221355.139|124.673 +638877.906|221373.208|125.834 +638872.822|221377.762|125.837 +638862.818|221386.729|126.178 +638857.753|221391.271|126.498 +638852.729|221395.772|126.757 +638837.733|221409.211|127.233 +638832.646|221413.768|127.343 +638827.669|221418.230|127.620 +638822.697|221422.686|128.013 +638817.641|221427.216|127.943 +638812.630|221431.702|127.852 +638807.674|221436.149|128.449 +638802.681|221440.624|128.601 +638797.692|221445.095|128.827 +638792.717|221449.558|129.226 +638787.725|221454.032|129.431 +638782.723|221458.513|129.574 +638777.727|221462.993|129.775 +638772.738|221467.465|130.077 +638767.785|221471.902|130.257 +638762.786|221476.383|130.491 +638757.824|221480.830|130.601 +638742.846|221494.244|130.653 +638737.862|221498.710|130.634 +638732.848|221503.196|130.366 +638727.840|221507.680|130.171 +638722.887|221512.115|130.052 +638717.834|221516.638|129.940 +638712.896|221521.064|130.001 +638688.043|221543.317|129.690 +638683.093|221547.752|129.796 +638678.155|221552.178|130.010 +638673.190|221556.625|130.010 +638663.235|221565.534|129.510 +638658.282|221569.969|129.284 +638623.337|221601.229|126.398 +638618.390|221605.652|126.093 +638613.379|221610.136|125.672 +638598.745|221623.251|126.431 +638564.397|221653.996|125.755 +638559.325|221658.523|124.907 +638554.391|221662.936|124.319 +638544.491|221671.785|123.380 +638539.443|221676.287|122.179 +638534.469|221680.727|121.484 +638529.620|221685.068|121.274 +638519.741|221693.901|120.451 +638509.984|221702.627|119.872 +638505.156|221706.946|119.613 +638500.261|221711.323|119.601 +638495.476|221715.612|119.631 +638485.932|221724.158|120.250 +638476.350|221732.736|120.110 +638457.019|221750.027|119.150 +638452.215|221754.325|119.000 +638442.355|221763.130|117.345 +638437.533|221767.437|116.891 +638432.757|221771.713|116.699 +638427.956|221776.002|116.412 +638423.195|221780.263|116.352 +638418.364|221784.585|115.928 +638403.938|221797.478|114.392 +638399.098|221801.800|113.770 +638394.319|221806.071|113.224 +638379.965|221818.897|111.679 +638360.678|221836.118|108.445 +638356.011|221840.291|108.155 +638351.363|221844.448|107.979 +638346.669|221848.648|107.842 +638342.012|221852.815|107.659 +638337.491|221856.863|107.899 +638328.387|221865.019|108.372 +638323.977|221868.975|109.173 +638315.049|221876.976|110.079 +638292.091|221897.508|108.841 +638228.236|221954.563|101.938 +638223.837|221958.498|101.779 +638210.432|221970.474|100.331 +638206.333|221974.159|101.462 +638198.310|221981.371|103.812 +638194.113|221985.132|104.138 +638189.779|221989.006|103.940 +638185.594|221992.758|104.336 +638181.577|221996.364|105.208 +638177.358|222000.140|105.290 +638173.164|222003.898|105.470 +638164.724|222011.451|105.482 +638160.277|222015.417|104.528 +638147.777|222026.600|104.394 +638143.501|222030.425|103.952 +638139.277|222034.199|103.526 +638126.298|222045.784|101.209 +638122.104|222049.527|100.776 +638113.817|222056.937|100.115 +638109.388|222060.878|98.460 +638223.024|221956.484|101.115 +638227.425|221952.536|101.508 +638232.107|221948.352|102.651 +638291.421|221895.185|108.530 +638332.328|221858.451|107.732 +638341.545|221850.175|107.579 +638346.248|221845.954|107.738 +638350.891|221841.790|107.869 +638355.615|221837.553|108.174 +638360.394|221833.271|108.762 +638374.945|221820.247|111.246 +638379.664|221816.019|111.371 +638389.436|221807.278|113.151 +638394.197|221803.007|113.316 +638399.025|221798.682|113.852 +638403.865|221794.348|114.471 +638418.395|221781.336|116.010 +638423.220|221777.011|116.102 +638428.014|221772.710|116.345 +638432.812|221768.409|116.629 +638437.686|221764.042|116.781 +638442.617|221759.628|117.568 +638447.576|221755.193|118.531 +638452.453|221750.822|118.787 +638462.195|221742.093|119.604 +638467.023|221737.765|119.649 +638481.592|221724.698|119.860 +638491.285|221715.999|119.811 +638496.037|221711.729|119.232 +638500.935|221707.337|119.253 +638510.746|221698.540|119.774 +638515.654|221694.142|119.921 +638520.533|221689.765|119.915 +638525.511|221685.306|120.555 +638530.458|221680.874|121.033 +638535.423|221676.424|121.332 +638540.574|221671.824|122.850 +638550.584|221662.863|124.118 +638555.518|221658.440|124.343 +638570.542|221644.987|125.986 +638575.532|221640.515|126.352 +638595.283|221622.791|125.968 +638600.245|221618.341|125.922 +638620.176|221600.464|126.184 +638630.195|221591.485|126.681 +638650.378|221573.407|128.775 +638655.389|221568.914|129.004 +638660.431|221564.394|129.110 +638665.500|221559.850|129.485 +638675.521|221550.864|129.729 +638685.559|221541.860|129.790 +638690.557|221537.377|129.674 +638715.737|221514.791|129.833 +638720.797|221510.252|129.970 +638725.856|221505.717|130.150 +638730.959|221501.142|130.263 +638736.018|221496.607|130.497 +638741.069|221492.077|130.653 +638746.147|221487.523|130.638 +638751.173|221483.012|130.631 +638756.294|221478.419|130.598 +638761.311|221473.917|130.497 +638766.401|221469.348|130.193 +638771.461|221464.807|130.104 +638776.490|221460.290|129.705 +638781.583|221455.718|129.473 +638786.640|221451.179|129.397 +638791.678|221446.656|129.135 +638796.762|221442.090|128.839 +638801.800|221437.567|128.601 +638806.945|221432.952|128.501 +638811.950|221428.453|127.891 +638817.025|221423.893|127.562 +638822.207|221419.254|127.946 +638827.276|221414.701|127.553 +638832.347|221410.144|127.248 +638847.664|221396.403|127.038 +638852.723|221391.859|126.578 +638862.980|221382.654|126.300 +638868.046|221378.103|125.965 +638873.169|221373.507|125.803 +638893.658|221355.118|125.176 +638914.165|221336.708|124.328 +638919.277|221332.121|124.029 +638924.422|221327.497|123.536 +638939.805|221313.690|122.847 +638960.318|221295.283|122.499 +638965.481|221290.650|122.448 +638970.642|221286.020|122.323 +638991.115|221267.637|121.314 +639006.480|221253.845|120.430 +639011.637|221249.215|120.259 +639016.795|221244.585|120.119 +639037.253|221226.209|118.244 +639047.521|221216.992|117.876 +639068.053|221198.554|116.202 +639073.164|221193.964|115.964 +639078.276|221189.371|115.385 +639129.458|221143.373|109.414 +639139.660|221134.211|109.067 +639144.722|221129.697|111.133 +639149.825|221125.146|113.361 +639159.956|221116.069|114.623 +639165.028|221111.521|114.690 +639170.097|221106.971|114.760 +639175.166|221102.426|115.084 +639180.189|221097.918|115.123 +639185.255|221093.374|115.355 +639190.321|221088.832|115.733 +639195.338|221084.336|116.224 +639205.430|221075.284|116.489 +639210.443|221070.788|116.970 +639220.484|221061.784|117.431 +639225.574|221057.209|116.934 +639230.545|221052.750|117.181 +639240.610|221043.712|117.016 +639245.608|221039.220|116.550 +639250.644|221034.700|116.492 +639260.644|221025.717|115.818 +639270.608|221016.777|116.156 +639275.668|221012.230|115.641 +639280.618|221007.786|115.532 +639285.616|221003.299|115.437 +639290.566|220998.855|115.343 +639295.568|220994.365|115.260 +639300.521|220989.915|115.138 +639305.529|220985.422|115.013 +639310.482|220980.972|114.968 +639315.441|220976.525|114.913 +639320.397|220972.072|114.867 +639325.362|220967.616|114.745 +639330.328|220963.160|114.629 +639335.244|220958.743|114.532 +639340.206|220954.290|114.514 +639345.138|220949.861|114.261 +639360.012|220936.508|113.944 +639364.929|220932.094|114.029 +639369.866|220927.663|113.822 +639414.130|220887.938|114.267 +639419.022|220883.549|114.276 +639423.911|220879.163|114.352 +639428.806|220874.771|114.401 +639433.713|220870.363|114.303 +639438.620|220865.959|114.233 +639443.521|220861.561|114.245 +639448.404|220857.174|113.980 +639453.327|220852.755|113.803 +639458.201|220848.378|113.669 +639463.068|220844.010|113.657 +639467.942|220839.633|113.563 +639477.714|220830.861|113.246 +639482.597|220826.475|113.151 +639487.465|220822.107|113.212 +639492.274|220817.791|113.410 +639497.157|220813.408|113.401 +639501.964|220809.095|113.657 +639506.810|220804.740|113.553 +639511.608|220800.436|113.938 +639516.472|220796.071|114.200 +639521.261|220791.770|114.236 +639526.074|220787.451|114.529 +639530.914|220783.108|114.599 +639535.702|220778.807|114.709 +639545.358|220770.133|114.703 +639554.978|220761.491|114.706 +639559.800|220757.160|114.642 +639569.453|220748.483|114.087 +639574.293|220744.133|113.947 +639579.085|220739.829|113.825 +639583.876|220735.526|113.724 +639588.668|220731.222|113.654 +639593.413|220726.958|113.572 +639598.211|220722.645|113.483 +639602.966|220718.374|113.392 +639607.715|220714.110|113.355 +639612.472|220709.834|113.267 +639617.243|220705.548|113.130 +639626.719|220697.032|112.990 +639631.437|220692.796|112.929 +639636.165|220688.547|112.822 +639655.013|220671.609|112.011 +639659.659|220667.439|112.237 +639664.337|220663.236|112.261 +639668.986|220659.057|112.154 +639673.661|220654.860|112.243 +639678.285|220650.709|112.353 +639682.872|220646.591|112.392 +639687.496|220642.439|112.542 +639692.062|220638.340|112.746 +639696.683|220634.192|112.965 +639701.197|220630.141|113.206 +639705.729|220626.075|113.380 +639710.292|220621.978|113.669 +639714.815|220617.918|113.928 +639719.351|220613.846|114.102 +639723.847|220609.811|114.251 +639728.324|220605.793|114.520 +639732.820|220601.755|114.678 +639737.325|220597.713|114.824 +639741.757|220593.735|115.108 +639746.176|220589.770|115.468 +639750.623|220585.777|115.690 +639755.052|220581.805|116.038 +639759.441|220577.864|116.327 +639763.864|220573.893|116.440 +639768.253|220569.952|116.477 +639772.700|220565.956|116.489 +639777.107|220561.996|116.449 +639781.518|220558.037|116.422 +639785.874|220554.123|116.425 +639790.299|220550.146|116.348 +639794.618|220546.266|116.306 +639798.986|220542.343|116.297 +639803.366|220538.411|116.257 +639807.697|220534.519|116.205 +639812.038|220530.617|116.117 +639816.378|220526.716|116.053 +639820.657|220522.872|116.059 +639825.001|220518.965|115.739 +639829.289|220515.112|115.474 +639833.499|220511.332|115.626 +639837.754|220507.510|115.559 +639854.765|220492.209|114.730 +639858.888|220488.503|114.882 +639863.104|220484.711|114.602 +639867.310|220480.926|114.386 +639871.434|220477.219|114.340 +639879.783|220469.706|113.794 +639883.751|220466.149|114.300 +639892.194|220458.541|112.907 +639896.330|220454.819|112.645 +639900.235|220451.314|113.255 +639908.306|220444.060|113.032 +639912.320|220440.448|112.923 +639916.328|220436.845|112.862 +639920.294|220433.279|112.752 +639859.056|220485.812|114.733 +639854.810|220489.609|114.629 +639846.175|220497.342|115.212 +639837.549|220505.069|115.568 +639833.240|220508.925|115.617 +639828.939|220512.774|115.638 +639824.626|220516.633|115.483 +639820.218|220520.580|115.824 +639815.842|220524.500|116.044 +639811.452|220528.429|116.056 +639807.054|220532.364|116.138 +639802.662|220536.296|116.220 +639798.224|220540.267|116.281 +639793.807|220544.220|116.248 +639789.370|220548.192|116.342 +639784.895|220552.197|116.379 +639780.482|220556.150|116.397 +639775.971|220560.183|116.379 +639771.456|220564.225|116.416 +639767.003|220568.211|116.419 +639762.507|220572.235|116.382 +639753.485|220580.300|115.943 +639748.996|220584.314|115.641 +639744.500|220588.331|115.364 +639740.016|220592.342|115.050 +639735.472|220596.405|114.800 +639730.875|220600.517|114.587 +639726.331|220604.580|114.376 +639721.789|220608.640|114.160 +639717.190|220612.755|114.014 +639712.596|220616.864|113.837 +639708.024|220620.951|113.566 +639703.446|220625.047|113.340 +639698.765|220629.235|113.133 +639694.205|220633.314|112.834 +639689.578|220637.453|112.633 +639684.899|220641.638|112.474 +639680.269|220645.783|112.350 +639675.627|220649.938|112.319 +639670.909|220654.159|112.136 +639666.209|220658.368|112.203 +639661.521|220662.565|112.215 +639656.839|220666.756|112.197 +639637.878|220683.737|112.563 +639633.144|220687.977|112.679 +639628.319|220692.299|112.755 +639623.585|220696.538|112.895 +639618.821|220700.803|112.935 +639613.999|220705.122|113.041 +639609.235|220709.389|113.142 +639604.432|220713.690|113.166 +639599.671|220717.954|113.270 +639594.870|220722.255|113.322 +639590.060|220726.558|113.456 +639585.257|220730.865|113.599 +639580.465|220735.154|113.636 +639575.619|220739.494|113.761 +639570.837|220743.776|113.782 +639565.981|220748.126|114.035 +639556.325|220756.779|114.568 +639551.494|220761.104|114.681 +639546.629|220765.463|114.703 +639541.859|220769.727|114.337 +639532.157|220778.417|114.660 +639527.369|220782.703|114.541 +639522.547|220787.015|114.291 +639517.716|220791.338|114.126 +639512.888|220795.660|113.953 +639508.078|220799.960|113.633 +639503.189|220804.337|113.614 +639498.367|220808.653|113.459 +639493.487|220813.021|113.410 +639488.672|220817.328|113.221 +639483.807|220821.684|113.057 +639478.933|220826.045|113.005 +639474.041|220830.428|113.163 +639469.097|220834.857|113.368 +639464.263|220839.185|113.502 +639459.292|220843.635|113.526 +639454.470|220847.954|113.572 +639439.638|220861.241|114.136 +639429.827|220870.025|114.148 +639424.910|220874.429|114.300 +639419.973|220878.849|114.163 +639415.132|220883.177|114.044 +639405.269|220892.007|113.736 +639395.396|220900.843|113.624 +639365.678|220927.443|113.188 +639355.644|220936.435|113.739 +639345.632|220945.405|114.084 +639340.642|220949.877|114.447 +639335.625|220954.375|114.550 +639325.597|220963.361|114.639 +639320.586|220967.851|114.675 +639315.578|220972.337|114.681 +639310.525|220976.867|114.709 +639305.471|220981.405|115.647 +639300.454|220985.892|114.986 +639295.407|220990.415|114.998 +639290.347|220994.950|115.224 +639285.299|220999.474|115.236 +639280.252|221003.997|115.337 +639275.153|221008.569|115.480 +639270.102|221013.098|115.718 +639264.997|221017.673|116.068 +639259.913|221022.230|116.001 +639254.868|221026.753|116.193 +639249.784|221031.307|116.172 +639244.691|221035.873|116.385 +639239.595|221040.442|116.787 +639224.306|221054.143|116.873 +639214.092|221063.302|117.260 +639208.974|221067.880|116.915 +639188.504|221086.205|115.882 +639183.389|221090.783|115.477 +639173.099|221099.997|115.227 +639162.861|221109.165|114.840 +639157.698|221113.786|114.407 +639142.257|221127.581|111.652 +639131.927|221136.792|108.408 +639126.748|221141.441|109.149 +639121.573|221146.092|110.079 +639116.400|221150.746|111.545 +639100.898|221164.670|114.059 +639064.703|221197.122|115.907 +639059.555|221201.749|116.946 +639033.711|221224.919|118.183 +639028.560|221229.543|118.647 +639023.457|221234.121|119.256 +639018.258|221238.785|119.683 +639013.106|221243.406|120.122 +639007.955|221248.026|120.512 +638966.691|221285.017|121.981 +638961.537|221289.641|122.256 +638956.374|221294.268|122.387 +638951.265|221298.849|122.591 +638935.824|221312.693|122.920 +638915.439|221330.975|124.115 +638910.285|221335.602|124.420 +638895.014|221349.287|124.697 +638874.696|221367.511|125.657 +638869.628|221372.059|125.889 +638864.556|221376.604|126.130 +638859.487|221381.151|126.413 +638854.412|221385.702|126.596 +638849.374|221390.219|126.648 +638844.314|221394.760|127.068 +638834.231|221403.798|127.163 +638829.196|221408.312|127.327 +638824.173|221412.817|127.684 +638819.153|221417.322|128.044 +638814.069|221421.872|127.654 +638809.091|221426.338|127.986 +638804.132|221430.791|128.541 +638799.078|221435.317|128.608 +638794.089|221439.792|128.839 +638789.099|221444.266|129.077 +638784.168|221448.692|129.449 +638779.114|221453.221|129.543 +638774.161|221457.665|129.693 +638769.217|221462.097|129.991 +638764.215|221466.584|130.165 +638759.275|221471.015|130.494 +638754.306|221475.469|130.570 +638749.332|221479.925|130.613 +638744.309|221484.430|130.656 +638739.374|221488.849|130.625 +638734.378|221493.324|130.525 +638729.413|221497.771|130.241 +638724.405|221502.258|130.058 +638719.452|221506.695|129.964 +638714.438|221511.185|129.763 +638709.479|221515.626|129.674 +638699.604|221524.481|129.900 +638694.584|221528.970|129.348 +638659.943|221560.011|129.101 +638650.019|221568.896|128.583 +638645.072|221573.331|128.461 +638635.093|221582.256|127.282 +638625.168|221591.134|126.294 +638620.182|221595.600|126.011 +638615.308|221599.967|125.874 +638561.508|221648.160|125.584 +638556.460|221652.661|124.246 +638551.522|221657.075|123.645 +638546.667|221661.421|123.636 +638531.732|221674.766|121.350 +638526.815|221679.161|120.735 +638521.902|221683.553|120.158 +638517.001|221687.939|120.018 +638507.232|221696.678|119.381 +638502.416|221700.991|119.192 +638497.542|221705.349|119.000 +638492.726|221709.665|119.174 +638488.069|221713.844|119.707 +638468.830|221731.065|119.332 +638463.965|221735.415|118.750 +638459.262|221739.630|119.125 +638449.634|221748.247|118.665 +638439.892|221756.952|117.406 +638435.006|221761.317|116.595 +638425.490|221769.830|116.184 +638420.675|221774.140|115.827 +638415.975|221778.346|115.852 +638411.226|221782.598|115.629 +638406.315|221786.984|114.852 +638401.548|221791.245|114.309 +638396.745|221795.543|113.870 +638358.395|221829.812|108.637 +638348.934|221838.270|107.704 +638344.298|221842.421|107.604 +638339.695|221846.542|107.686 +638334.995|221850.745|107.326 +638330.426|221854.836|107.360 +638325.848|221858.938|107.610 +638307.944|221874.989|109.207 +638303.351|221879.101|108.985 +638298.709|221883.252|108.552 +638294.124|221887.352|108.171 +638221.335|221952.427|101.712 +638217.040|221956.273|101.998 +638212.587|221960.251|101.648 +638208.384|221964.015|102.126 +638195.997|221975.125|104.528 +638183.110|221986.650|104.361 +638174.801|221994.090|105.245 +638170.586|221997.863|105.351 +638166.437|222001.576|105.525 +638162.073|222005.474|105.074 +638157.845|222009.251|104.979 +638153.712|222012.951|105.260 +638149.591|222016.636|105.391 +638141.029|222024.283|104.458 +638136.869|222028.002|104.483 +638119.440|222043.538|100.767 +638115.338|222047.201|100.490 +638111.265|222050.844|100.535 +638219.156|221951.811|102.087 +638223.139|221948.217|100.737 +638227.635|221944.188|101.319 +638232.152|221940.146|101.998 +638305.103|221874.788|108.890 +638314.055|221866.747|108.296 +638323.029|221858.688|107.607 +638327.558|221854.616|107.119 +638332.084|221850.553|106.872 +638341.417|221842.189|107.537 +638346.123|221837.968|107.723 +638350.851|221833.731|108.030 +638355.542|221829.528|108.424 +638360.361|221825.215|109.234 +638374.884|221812.215|111.633 +638379.700|221807.899|112.279 +638398.884|221790.706|114.215 +638403.670|221786.411|114.578 +638408.547|221782.043|115.163 +638413.362|221777.724|115.462 +638418.163|221773.417|115.711 +638422.979|221769.101|116.056 +638427.773|221764.798|116.321 +638432.586|221760.482|116.419 +638437.457|221756.117|117.138 +638442.383|221751.706|117.921 +638447.296|221747.302|118.369 +638452.179|221742.928|118.964 +638456.961|221738.630|118.738 +638461.707|221734.363|118.321 +638466.556|221730.014|118.513 +638476.398|221721.193|119.500 +638481.242|221716.843|119.439 +638486.097|221712.485|119.467 +638490.864|221708.199|118.979 +638495.720|221703.837|118.747 +638500.648|221699.415|118.967 +638510.438|221690.633|119.381 +638520.354|221681.742|120.061 +638525.304|221677.305|120.549 +638530.363|221672.772|121.119 +638535.377|221668.282|122.082 +638545.399|221659.306|123.408 +638550.379|221654.838|123.609 +638555.387|221650.354|124.328 +638560.514|221645.767|125.560 +638565.507|221641.292|125.916 +638570.502|221636.812|126.322 +638575.449|221632.374|126.428 +638595.078|221614.735|125.270 +638610.062|221601.290|125.584 +638615.104|221596.770|125.840 +638620.066|221592.317|125.904 +638625.114|221587.791|126.251 +638630.164|221583.264|126.660 +638640.344|221574.145|128.202 +638655.453|221560.590|128.711 +638660.537|221556.034|129.181 +638665.539|221551.547|129.418 +638670.599|221547.005|129.351 +638685.641|221533.503|129.354 +638690.633|221529.019|129.217 +638710.839|221510.890|129.653 +638715.901|221506.348|129.824 +638720.961|221501.806|129.997 +638726.018|221497.271|130.150 +638736.134|221488.197|130.601 +638746.241|221479.126|130.595 +638751.316|221474.569|130.610 +638766.465|221460.963|129.921 +638776.563|221451.895|129.565 +638781.610|221447.363|129.385 +638786.640|221442.840|129.043 +638791.727|221438.271|128.797 +638796.759|221433.751|128.498 +638801.874|221429.163|128.592 +638806.924|221424.619|127.958 +638811.984|221420.080|128.028 +638817.095|221415.493|128.181 +638827.239|221406.379|127.522 +638832.311|221401.823|127.233 +638837.398|221397.257|127.117 +638842.485|221392.688|127.044 +638847.606|221388.088|126.779 +638852.647|221383.565|126.782 +638857.762|221378.969|126.462 +638862.831|221374.418|126.191 +638867.948|221369.819|125.971 +638873.069|221365.219|125.776 +638888.382|221351.470|125.297 +638893.433|221346.928|124.788 +638903.683|221337.729|124.727 +638908.791|221333.139|124.453 +638913.903|221328.549|124.215 +638919.011|221323.958|123.898 +638934.383|221310.151|123.051 +638949.766|221296.337|122.530 +638954.877|221291.747|122.408 +638960.038|221287.111|122.307 +638965.146|221282.524|122.088 +638980.511|221268.722|121.280 +638985.668|221264.092|121.113 +639001.049|221250.282|120.796 +639006.200|221245.655|120.411 +639011.302|221241.071|120.119 +639021.601|221231.814|119.198 +639026.694|221227.230|118.436 +639031.803|221222.643|118.205 +639062.643|221194.933|116.089 +639113.931|221148.829|110.886 +639124.185|221139.600|108.668 +639134.426|221130.443|110.886 +639139.541|221125.881|112.673 +639144.652|221121.318|114.178 +639159.953|221107.608|115.254 +639165.077|221103.011|115.218 +639170.195|221098.424|115.376 +639175.269|221093.870|115.288 +639185.407|221084.784|115.861 +639190.476|221080.246|116.266 +639195.545|221075.701|116.510 +639205.689|221066.609|116.809 +639210.757|221062.061|117.034 +639215.784|221057.557|117.132 +639220.871|221052.988|116.769 +639236.007|221039.415|116.998 +639246.093|221030.359|116.446 +639251.147|221025.824|116.013 +639256.136|221021.343|115.928 +639261.184|221016.814|115.730 +639266.179|221012.333|115.635 +639271.233|221007.798|115.367 +639276.232|221003.308|115.215 +639281.233|220998.821|115.105 +639286.284|220994.292|115.026 +639291.240|220989.845|114.873 +639296.248|220985.352|114.745 +639301.253|220980.860|114.672 +639306.251|220976.379|114.773 +639311.220|220971.917|114.511 +639316.228|220967.427|114.498 +639321.184|220962.983|114.562 +639331.114|220954.074|114.413 +639336.076|220949.624|114.443 +639350.990|220936.231|113.444 +639355.919|220931.811|113.380 +639360.902|220927.337|113.185 +639375.664|220914.102|113.538 +639380.553|220909.716|113.447 +639385.490|220905.284|113.364 +639390.370|220900.910|113.468 +639395.299|220896.488|113.566 +639414.882|220878.928|114.005 +639424.615|220870.202|114.187 +639429.519|220865.803|114.151 +639439.288|220857.037|114.044 +639453.915|220843.913|113.563 +639463.660|220835.168|113.428 +639468.503|220830.821|113.203 +639473.392|220826.435|113.032 +639478.226|220822.098|112.947 +639483.045|220817.776|113.044 +639492.680|220809.138|113.325 +639497.550|220804.773|113.474 +639502.333|220800.488|113.550 +639507.167|220796.153|113.596 +639511.916|220791.901|114.014 +639516.695|220787.619|114.172 +639521.477|220783.330|114.297 +639526.241|220779.063|114.626 +639545.383|220761.909|114.934 +639550.168|220757.611|114.721 +639554.996|220753.283|114.617 +639564.600|220744.663|114.093 +639569.358|220740.393|113.806 +639574.150|220736.099|113.712 +639578.932|220731.810|113.688 +639583.690|220727.540|113.493 +639588.445|220723.276|113.349 +639593.197|220719.014|113.264 +639597.946|220714.753|113.212 +639602.707|220710.486|113.115 +639607.410|220706.268|113.078 +639616.935|220697.724|112.932 +639621.616|220693.527|112.764 +639626.335|220689.296|112.709 +639631.056|220685.060|112.651 +639635.784|220680.823|112.581 +639654.517|220664.022|112.334 +639659.208|220659.813|112.273 +639663.831|220655.668|112.353 +639668.477|220651.504|112.319 +639673.158|220647.307|112.380 +639677.739|220643.201|112.471 +639682.372|220639.050|112.572 +639686.993|220634.908|112.752 +639691.574|220630.805|112.907 +639696.134|220626.721|113.203 +639700.706|220622.621|113.428 +639705.284|220618.522|113.639 +639709.807|220614.471|113.901 +639714.352|220610.396|114.032 +639718.897|220606.324|114.187 +639723.435|220602.258|114.410 +639727.971|220598.195|114.651 +639732.475|220594.159|114.797 +639736.971|220590.126|114.998 +639741.461|220586.106|115.266 +639745.932|220582.104|115.660 +639750.389|220578.111|115.858 +639754.833|220574.131|116.138 +639759.249|220570.174|116.300 +639763.727|220566.160|116.409 +639768.238|220562.115|116.367 +639777.107|220554.160|116.306 +639781.521|220550.204|116.284 +639785.944|220546.235|116.227 +639790.360|220542.276|116.224 +639794.783|220538.310|116.205 +639799.218|220534.333|116.144 +639803.555|220530.443|116.071 +639812.288|220522.613|115.940 +639816.689|220518.660|115.574 +639821.020|220514.777|115.611 +639859.650|220480.124|114.517 +639868.243|220472.406|113.739 +639872.470|220468.612|113.462 +639876.677|220464.841|113.325 +639889.192|220453.606|112.712 +639901.439|220442.630|113.051 +639905.560|220438.933|112.913 +639909.583|220435.321|112.773 +639913.655|220431.670|112.657 +639917.681|220428.058|112.538 +639856.276|220481.047|114.395 +639852.088|220484.803|114.541 +639830.883|220503.804|115.273 +639822.325|220511.473|115.401 +639813.778|220519.129|115.532 +639809.377|220523.076|115.897 +639805.042|220526.960|115.916 +639800.711|220530.840|115.946 +639796.368|220534.732|116.062 +639791.991|220538.652|116.089 +639787.620|220542.568|116.117 +639778.836|220550.435|116.153 +639774.416|220554.395|116.205 +639770.009|220558.345|116.227 +639765.589|220562.301|116.312 +639761.090|220566.331|116.300 +639756.671|220570.290|116.150 +639752.266|220574.228|115.910 +639747.816|220578.215|115.681 +639743.369|220582.193|115.422 +639738.934|220586.161|115.120 +639734.438|220590.184|114.898 +639729.927|220594.223|114.773 +639725.441|220598.237|114.523 +639720.908|220602.294|114.261 +639716.352|220606.372|114.157 +639711.816|220610.435|113.956 +639707.235|220614.535|113.736 +639702.642|220618.644|113.584 +639698.060|220622.740|113.383 +639693.495|220626.821|113.108 +639688.877|220630.951|112.859 +639684.256|220635.088|112.654 +639679.571|220639.276|112.532 +639674.935|220643.427|112.468 +639670.241|220647.627|112.447 +639665.560|220651.818|112.383 +639660.875|220656.009|112.346 +639656.156|220660.234|112.240 +639651.423|220664.470|112.237 +639637.155|220677.245|112.508 +639632.422|220681.481|112.584 +639627.597|220685.803|112.657 +639622.823|220690.074|112.715 +639618.050|220694.347|112.807 +639613.244|220698.651|112.791 +639608.422|220702.970|112.929 +639603.603|220707.286|113.066 +639598.744|220711.635|113.136 +639593.947|220715.930|113.154 +639589.097|220720.270|113.203 +639584.284|220724.580|113.395 +639579.389|220728.963|113.474 +639574.528|220733.319|113.700 +639569.648|220737.687|113.694 +639554.978|220750.827|114.511 +639550.040|220755.249|114.684 +639545.157|220759.623|114.867 +639540.296|220763.976|114.867 +639530.484|220772.757|114.840 +639525.552|220777.167|114.660 +639515.765|220785.921|114.099 +639510.879|220790.292|114.008 +639505.975|220794.678|113.666 +639501.089|220799.049|113.596 +639496.176|220803.444|113.352 +639491.256|220807.849|113.218 +639486.282|220812.296|113.118 +639481.417|220816.651|112.953 +639476.446|220821.098|112.889 +639471.511|220825.518|112.974 +639466.528|220829.980|113.087 +639461.575|220834.418|113.419 +639456.561|220838.905|113.371 +639451.629|220843.318|113.532 +639436.666|220856.720|113.916 +639431.707|220861.158|113.959 +639426.754|220865.593|113.950 +639421.780|220870.046|114.209 +639411.819|220878.959|113.816 +639406.830|220883.424|113.758 +639401.849|220887.877|113.578 +639396.917|220892.294|113.468 +639391.882|220896.799|113.419 +639386.950|220901.209|113.319 +639381.921|220905.711|113.258 +639376.987|220910.128|113.270 +639371.957|220914.632|113.279 +639367.004|220919.058|112.874 +639361.978|220923.557|112.852 +639356.979|220928.035|113.182 +639351.990|220932.503|113.410 +639346.942|220937.029|113.849 +639336.878|220946.036|114.285 +639331.900|220950.489|114.440 +639321.879|220959.450|114.386 +639316.865|220963.934|114.404 +639311.848|220968.421|114.532 +639306.840|220972.898|114.514 +639301.841|220977.367|114.346 +639296.824|220981.856|114.584 +639291.767|220986.379|114.663 +639286.766|220990.851|114.663 +639281.755|220995.335|114.837 +639276.698|220999.858|115.056 +639271.644|221004.378|115.181 +639266.591|221008.901|115.388 +639261.589|221013.379|115.590 +639256.545|221017.887|115.583 +639251.491|221022.410|115.913 +639246.443|221026.927|116.150 +639236.342|221035.967|116.876 +639216.116|221054.048|116.583 +639211.071|221058.568|117.138 +639206.048|221063.058|116.824 +639200.970|221067.594|116.714 +639190.820|221076.668|116.440 +639185.749|221081.197|116.150 +639180.728|221085.680|115.718 +639175.608|221090.259|115.510 +639170.530|221094.794|115.458 +639165.501|221099.293|115.556 +639150.233|221112.939|115.087 +639119.607|221140.246|109.344 +639109.399|221149.405|111.682 +639094.034|221163.173|113.764 +639088.916|221167.760|114.553 +639063.328|221190.660|115.967 +639058.168|221195.281|116.574 +639047.942|221204.434|117.363 +639032.556|221218.205|118.125 +639027.447|221222.780|118.537 +639022.336|221227.352|118.830 +639017.182|221231.970|119.314 +638986.424|221259.493|121.067 +638981.310|221264.068|121.180 +638960.818|221282.405|122.179 +638955.648|221287.026|122.252 +638950.531|221291.604|122.420 +638935.120|221305.384|122.728 +638930.006|221309.959|123.033 +638914.671|221323.681|124.039 +638909.505|221328.305|124.243 +638904.390|221332.880|124.535 +638899.263|221337.464|124.654 +638894.143|221342.045|124.862 +638889.056|221346.593|124.843 +638873.709|221360.324|125.834 +638868.634|221364.866|126.078 +638863.501|221369.456|126.145 +638858.429|221373.994|126.465 +638853.296|221378.585|126.611 +638848.225|221383.123|126.913 +638843.131|221387.677|126.962 +638837.998|221392.267|127.163 +638832.960|221396.775|127.312 +638827.882|221401.317|127.632 +638812.612|221414.975|128.126 +638807.543|221419.504|128.007 +638802.434|221424.070|128.022 +638797.375|221428.602|128.614 +638792.364|221433.080|128.681 +638787.264|221437.643|128.845 +638782.241|221442.139|129.342 +638777.203|221446.647|129.665 +638772.128|221451.185|129.607 +638742.014|221478.117|130.702 +638731.919|221487.139|130.479 +638726.844|221491.672|130.141 +638721.799|221496.180|130.132 +638716.773|221500.666|129.866 +638711.744|221505.159|129.580 +638706.770|221509.609|129.821 +638701.679|221514.157|129.498 +638686.680|221527.553|128.906 +638671.846|221540.824|129.513 +638666.862|221545.277|129.415 +638661.842|221549.761|129.050 +638656.843|221554.223|128.915 +638631.898|221576.495|126.965 +638626.860|221580.991|126.276 +638621.880|221585.438|126.084 +638616.933|221589.857|125.785 +638607.011|221598.721|125.419 +638597.136|221607.542|125.142 +638592.253|221611.907|125.069 +638587.355|221616.287|125.267 +638563.020|221638.065|125.840 +638548.069|221651.403|123.133 +638538.306|221660.132|122.822 +638533.268|221664.625|121.698 +638528.336|221669.029|120.960 +638523.444|221673.400|120.521 +638518.510|221677.804|119.842 +638513.590|221682.203|119.585 +638508.759|221686.522|119.290 +638503.864|221690.896|118.939 +638494.193|221699.543|118.409 +638489.389|221703.837|118.378 +638484.664|221708.071|118.830 +638475.146|221716.590|119.076 +638470.296|221720.922|118.570 +638465.480|221725.228|118.269 +638460.686|221729.517|118.409 +638451.200|221738.006|118.464 +638446.464|221742.242|118.418 +638436.850|221750.832|117.610 +638431.919|221755.230|116.565 +638427.094|221759.540|116.132 +638422.369|221763.764|115.986 +638417.617|221768.013|115.721 +638412.856|221772.268|115.422 +638408.089|221776.529|115.126 +638403.359|221780.754|114.770 +638398.586|221785.021|114.480 +638384.275|221797.801|112.749 +638370.059|221810.496|111.219 +638365.256|221814.785|110.429 +638355.697|221823.316|108.920 +638351.000|221827.510|108.494 +638341.585|221835.923|107.592 +638332.377|221844.155|107.284 +638327.625|221848.395|106.455 +638323.199|221852.364|107.195 +638309.657|221864.486|107.753 +638295.962|221876.733|107.281 +638291.378|221880.826|106.921 +638277.793|221892.972|106.223 +638259.481|221909.328|104.419 +638246.137|221921.261|104.047 +638237.066|221929.356|102.849 +638228.062|221937.400|101.794 +638223.712|221941.298|102.035 +638219.384|221945.176|102.169 +638215.172|221948.955|102.791 +638211.036|221952.668|103.532 +638206.717|221956.538|103.742 +638194.196|221967.767|105.135 +638172.768|221986.951|104.888 +638168.672|221990.624|105.257 +638164.459|221994.398|105.391 +638160.320|221998.107|105.610 +638156.178|222001.820|105.824 +638151.996|222005.560|105.708 +638139.280|222016.938|104.970 +638135.119|222020.659|104.778 +638130.806|222024.512|104.028 +638109.421|222043.608|100.435 +638105.346|222047.253|100.285 +638101.375|222050.813|100.523 +638219.683|221942.697|102.590 +638223.999|221938.823|102.419 +638228.269|221934.986|101.840 +638232.591|221931.106|101.486 +638237.285|221926.915|102.742 +638246.310|221918.835|103.766 +638255.162|221910.895|103.672 +638259.761|221906.780|104.406 +638278.034|221890.412|105.863 +638282.560|221886.358|106.156 +638301.034|221869.814|107.774 +638314.525|221857.707|107.153 +638319.057|221853.641|107.144 +638351.488|221824.569|108.012 +638370.654|221807.430|111.057 +638385.043|221794.561|113.005 +638399.445|221781.677|114.459 +638404.221|221777.401|114.767 +638408.998|221773.128|115.117 +638413.768|221768.858|115.446 +638418.562|221764.563|115.663 +638423.360|221760.268|115.928 +638428.176|221755.958|116.300 +638433.092|221751.560|116.976 +638447.628|221738.554|118.281 +638452.304|221734.360|118.004 +638466.767|221721.406|118.311 +638471.692|221716.999|118.976 +638476.417|221712.759|118.485 +638481.312|221708.376|118.723 +638486.109|221704.072|118.406 +638490.879|221699.799|118.223 +638495.753|221695.431|118.406 +638500.666|221691.030|118.540 +638505.574|221686.641|118.961 +638515.385|221677.856|119.561 +638520.369|221673.400|120.235 +638525.331|221668.962|120.799 +638530.321|221664.497|121.256 +638535.389|221659.967|122.243 +638540.339|221655.539|122.844 +638545.305|221651.092|122.896 +638550.218|221646.696|123.289 +638570.359|221628.686|126.151 +638584.999|221615.555|125.112 +638589.946|221611.120|124.932 +638594.908|221606.673|124.871 +638604.908|221597.718|125.380 +638609.895|221593.253|125.569 +638614.848|221588.815|125.529 +638624.873|221579.838|126.062 +638629.939|221575.306|126.581 +638650.189|221557.189|128.519 +638655.161|221552.733|128.464 +638660.172|221548.246|128.739 +638665.289|221543.665|129.095 +638685.315|221525.715|128.769 +638700.497|221512.121|129.321 +638710.613|221503.059|129.467 +638715.636|221498.560|129.711 +638720.723|221494.010|130.135 +638730.901|221484.896|130.634 +638741.017|221475.831|130.634 +638751.136|221466.754|130.284 +638761.256|221457.684|129.985 +638766.309|221453.151|129.815 +638781.519|221439.511|129.373 +638786.542|221435.003|128.934 +638791.583|221430.483|128.681 +638796.686|221425.908|128.601 +638801.739|221421.373|127.958 +638806.796|221416.837|127.974 +638811.908|221412.259|128.068 +638832.207|221394.056|127.404 +638837.270|221389.512|126.989 +638857.658|221371.233|126.565 +638862.724|221366.688|126.206 +638867.857|221362.089|126.157 +638872.929|221357.538|125.925 +638878.043|221352.951|125.605 +638883.103|221348.409|125.249 +638888.166|221343.871|124.874 +638893.341|221339.229|124.822 +638898.416|221334.681|124.694 +638903.534|221330.091|124.490 +638908.645|221325.504|124.243 +638913.760|221320.919|123.984 +638918.847|221316.347|123.280 +638923.952|221311.769|122.847 +638929.036|221307.213|122.990 +638944.389|221293.448|122.649 +638949.498|221288.867|122.341 +638954.612|221284.279|122.213 +638959.727|221279.695|122.042 +638980.167|221261.364|121.119 +638985.281|221256.780|121.042 +638990.402|221252.193|121.146 +639000.664|221242.985|120.582 +639010.872|221233.826|119.732 +639015.975|221229.245|119.153 +639021.132|221224.618|118.964 +639026.240|221220.037|118.595 +639031.346|221215.455|118.122 +639108.259|221146.427|110.899 +639123.639|221132.608|108.671 +639149.261|221109.720|115.553 +639169.740|221091.350|115.596 +639174.861|221086.759|115.696 +639179.930|221082.215|115.952 +639185.047|221077.631|116.278 +639195.243|221068.487|116.370 +639200.358|221063.902|116.772 +639205.481|221059.309|116.848 +639210.553|221054.765|117.031 +639215.689|221050.150|116.598 +639236.053|221031.886|116.809 +639241.143|221027.317|116.550 +639246.245|221022.733|116.025 +639251.293|221018.204|115.785 +639256.389|221013.629|115.550 +639261.434|221009.099|115.398 +639266.536|221004.521|115.123 +639271.635|220999.946|114.943 +639276.643|220995.450|114.687 +639281.733|220990.884|114.739 +639286.802|220986.331|114.276 +639291.792|220981.859|114.517 +639296.845|220977.327|114.495 +639301.902|220972.788|114.379 +639306.910|220968.296|114.328 +639311.966|220963.760|114.261 +639316.974|220959.267|114.264 +639321.982|220954.775|114.273 +639337.033|220941.272|114.062 +639342.062|220936.758|113.828 +639352.045|220927.797|113.203 +639357.089|220923.264|112.831 +639362.039|220918.823|112.517 +639367.068|220914.312|112.474 +639376.944|220905.458|112.962 +639381.869|220901.041|113.081 +639386.801|220896.619|113.121 +639396.655|220887.786|113.432 +639401.581|220883.366|113.602 +639406.473|220878.980|113.639 +639411.350|220874.609|113.870 +639416.284|220870.183|113.992 +639426.041|220861.433|113.925 +639430.961|220857.016|113.736 +639435.862|220852.621|113.782 +639450.465|220839.520|113.572 +639465.117|220826.368|113.051 +639469.951|220822.034|112.962 +639474.785|220817.694|112.859 +639479.662|220813.320|112.883 +639484.426|220809.046|113.038 +639489.239|220804.734|113.255 +639494.073|220800.399|113.267 +639503.604|220791.853|113.697 +639508.423|220787.531|113.913 +639513.153|220783.291|114.047 +639522.703|220774.726|114.443 +639527.418|220770.498|114.779 +639536.906|220761.988|114.962 +639541.673|220757.709|114.882 +639546.440|220753.430|114.834 +639551.180|220749.174|114.626 +639555.898|220744.941|114.614 +639565.448|220736.361|113.727 +639570.187|220732.106|113.617 +639574.872|220727.902|113.584 +639579.581|220723.672|113.355 +639584.336|220719.405|113.206 +639588.988|220715.229|113.102 +639593.694|220711.004|112.993 +639598.375|220706.807|113.090 +639603.048|220702.610|112.880 +639607.763|220698.376|112.770 +639612.408|220694.210|112.834 +639617.029|220690.065|112.727 +639621.732|220685.843|112.767 +639626.344|220681.704|112.752 +639630.992|220677.531|112.511 +639635.677|220673.325|112.392 +639645.004|220664.949|111.828 +639649.576|220660.852|112.200 +639654.197|220656.704|112.258 +639663.301|220648.542|112.694 +639667.943|220644.375|112.666 +639672.469|220640.315|112.755 +639677.087|220636.170|112.606 +639681.613|220632.110|112.734 +639686.185|220628.010|112.916 +639690.703|220623.959|113.142 +639695.217|220619.915|113.416 +639699.700|220615.891|113.563 +639704.236|220611.825|113.727 +639708.719|220607.802|113.913 +639713.252|220603.739|114.123 +639717.705|220599.746|114.227 +639722.195|220595.720|114.422 +639726.681|220591.696|114.660 +639731.122|220587.712|114.870 +639735.627|220583.671|115.023 +639740.022|220579.730|115.245 +639744.503|220575.712|115.574 +639748.968|220571.710|115.724 +639753.385|220567.748|115.870 +639757.789|220563.801|116.099 +639762.242|220559.802|116.065 +639766.695|220555.806|116.041 +639771.164|220551.795|115.974 +639775.617|220547.799|115.992 +639780.030|220543.839|115.980 +639784.447|220539.874|115.949 +639788.870|220535.906|115.919 +639797.685|220527.996|115.800 +639802.168|220523.966|115.483 +639806.573|220520.010|115.349 +639810.983|220516.051|115.199 +639828.396|220500.421|114.913 +639837.181|220492.532|114.483 +639841.469|220488.689|114.568 +639854.408|220477.079|114.279 +639867.505|220465.311|112.606 +639871.660|220461.592|113.209 +639875.909|220457.782|113.118 +639880.124|220453.999|112.944 +639888.607|220446.389|112.673 +639892.779|220442.646|112.755 +639901.158|220435.129|112.569 +639905.328|220431.389|112.471 +639909.449|220427.692|112.380 +639913.625|220423.946|112.285 +639852.363|220477.225|113.770 +639848.074|220481.063|114.151 +639843.825|220484.861|114.340 +639839.561|220488.674|114.376 +639835.352|220492.435|114.401 +639831.039|220496.291|114.709 +639826.756|220500.119|114.885 +639800.885|220523.244|115.367 +639796.508|220527.161|115.632 +639792.168|220531.041|115.727 +639787.836|220534.912|115.782 +639783.466|220538.819|115.800 +639779.144|220542.678|115.830 +639774.779|220546.580|115.839 +639770.371|220550.518|115.821 +639766.010|220554.419|115.867 +639761.599|220558.360|115.903 +639752.827|220566.197|115.745 +639748.450|220570.104|115.638 +639744.094|220573.993|115.425 +639739.705|220577.913|115.132 +639735.252|220581.888|114.925 +639730.887|220585.786|114.818 +639726.443|220589.755|114.593 +639722.054|220593.674|114.349 +639717.601|220597.649|114.206 +639713.148|220601.630|114.087 +639708.710|220605.592|113.895 +639704.224|220609.600|113.691 +639699.780|220613.572|113.560 +639695.247|220617.623|113.377 +639690.764|220621.628|113.203 +639686.295|220625.621|112.965 +639681.775|220629.659|112.746 +639677.240|220633.713|112.636 +639672.625|220637.843|112.746 +639668.071|220641.915|112.807 +639663.499|220646.003|112.663 +639658.830|220650.181|112.874 +639654.315|220654.211|112.371 +639649.710|220658.329|112.182 +639640.414|220666.638|112.075 +639635.768|220670.795|112.212 +639631.077|220674.989|112.343 +639626.396|220679.177|112.429 +639621.696|220683.383|112.663 +639616.980|220687.602|112.688 +639612.256|220691.826|112.795 +639607.541|220696.045|112.840 +639602.832|220700.254|112.880 +639598.080|220704.506|112.889 +639593.380|220708.706|112.895 +639588.570|220713.013|113.023 +639583.809|220717.271|113.154 +639579.036|220721.544|113.428 +639574.260|220725.815|113.349 +639569.453|220730.112|113.523 +639564.677|220734.386|113.508 +639554.950|220743.097|114.520 +639550.129|220747.410|114.550 +639545.285|220751.744|114.767 +639540.411|220756.103|114.843 +639535.593|220760.412|114.901 +639525.854|220769.118|114.663 +639521.011|220773.449|114.575 +639516.131|220777.811|114.383 +639511.257|220782.166|114.154 +639506.380|220786.525|113.986 +639501.519|220790.868|113.681 +639496.615|220795.251|113.331 +639491.695|220799.643|113.118 +639486.760|220804.057|113.099 +639481.795|220808.495|112.913 +639476.876|220812.896|112.813 +639471.898|220817.343|112.782 +639466.906|220821.812|112.944 +639461.922|220826.268|113.047 +639446.871|220839.737|113.553 +639441.851|220844.227|113.642 +639431.774|220853.240|113.749 +639426.815|220857.677|113.791 +639421.747|220862.210|113.971 +639416.748|220866.681|113.947 +639411.709|220871.186|113.846 +639406.674|220875.688|113.721 +639401.633|220880.193|113.657 +639396.558|220884.732|113.477 +639386.505|220893.714|113.108 +639381.431|220898.252|112.993 +639376.356|220902.788|112.837 +639371.281|220907.326|112.749 +639366.230|220911.837|112.340 +639361.155|220916.373|112.252 +639355.989|220921.003|112.892 +639350.893|220925.566|113.206 +639340.615|220934.765|113.819 +639335.488|220939.358|114.011 +639330.364|220943.939|114.117 +639325.268|220948.499|113.867 +639314.981|220957.704|114.130 +639309.872|220962.273|114.154 +639304.715|220966.891|114.212 +639299.610|220971.456|114.187 +639294.507|220976.022|114.191 +639289.350|220980.637|114.315 +639284.245|220985.203|114.392 +639279.091|220989.818|114.553 +639273.949|220994.417|114.480 +639268.840|220998.989|114.715 +639263.683|221003.610|115.093 +639258.581|221008.176|115.288 +639253.439|221012.781|115.398 +639248.281|221017.399|115.846 +639243.136|221022.005|116.077 +639237.982|221026.625|116.638 +639232.840|221031.225|116.812 +639227.747|221035.788|117.171 +639212.373|221049.531|116.519 +639202.061|221058.764|116.800 +639196.990|221063.296|116.498 +639191.823|221067.914|116.099 +639186.690|221072.510|116.394 +639181.567|221077.091|116.291 +639176.400|221081.709|115.919 +639171.277|221086.290|115.821 +639166.153|221090.871|115.681 +639155.860|221100.076|115.419 +639130.211|221122.991|113.148 +639099.463|221150.481|111.810 +639094.391|221155.032|112.755 +639084.152|221164.209|114.145 +639028.084|221214.422|118.223 +639023.022|221218.958|118.519 +639017.913|221223.533|118.903 +639012.802|221228.108|119.125 +639007.745|221232.640|119.701 +638992.526|221246.271|120.991 +638982.337|221255.387|121.045 +638977.268|221259.923|121.070 +638957.020|221278.052|122.188 +638951.948|221282.588|122.228 +638946.879|221287.123|122.374 +638941.814|221291.656|122.606 +638936.751|221296.188|122.896 +638926.653|221305.222|123.088 +638921.578|221309.761|123.203 +638911.510|221318.777|124.005 +638906.490|221323.269|124.252 +638901.470|221327.762|124.487 +638896.398|221332.298|124.718 +638891.326|221336.836|124.913 +638886.306|221341.332|125.172 +638876.224|221350.357|125.825 +638871.155|221354.896|126.114 +638861.096|221363.893|126.474 +638850.980|221372.946|126.739 +638840.854|221382.002|126.962 +638835.816|221386.510|127.120 +638830.720|221391.066|127.148 +638825.681|221395.577|127.291 +638820.643|221400.082|127.504 +638815.605|221404.593|127.687 +638810.612|221409.059|127.888 +638805.562|221413.576|127.971 +638800.517|221418.090|128.147 +638795.503|221422.583|128.696 +638790.443|221427.109|128.717 +638785.487|221431.541|128.848 +638780.452|221436.049|129.171 +638775.459|221440.517|129.470 +638765.407|221449.512|129.897 +638760.375|221454.011|129.815 +638755.370|221458.491|130.025 +638745.348|221467.458|130.397 +638740.328|221471.948|130.522 +638720.190|221489.953|130.156 +638710.101|221498.969|129.714 +638705.063|221503.471|129.370 +638684.885|221521.503|128.492 +638660.001|221543.762|129.034 +638649.979|221552.717|128.522 +638639.970|221561.663|128.230 +638629.929|221570.630|127.401 +638624.827|221575.175|126.227 +638619.822|221579.646|125.828 +638614.881|221584.063|125.550 +638609.870|221588.537|125.166 +638604.917|221592.966|125.236 +638599.992|221597.371|125.160 +638595.014|221601.815|124.737 +638580.302|221614.976|125.172 +638575.382|221619.374|125.261 +638565.632|221628.091|125.770 +638555.777|221636.894|125.294 +638545.698|221645.870|123.124 +638540.681|221650.342|122.417 +638530.769|221659.187|121.539 +638515.946|221672.409|119.954 +638511.075|221676.759|119.707 +638501.236|221685.537|118.680 +638496.302|221689.939|118.125 +638491.468|221694.255|117.912 +638486.627|221698.583|117.961 +638481.869|221702.838|118.232 +638477.060|221707.132|118.217 +638462.810|221719.867|118.449 +638448.390|221732.745|117.885 +638424.384|221754.169|116.156 +638419.617|221758.424|115.797 +638414.829|221762.701|115.608 +638410.068|221766.949|115.324 +638405.316|221771.192|115.120 +638391.002|221783.963|113.782 +638352.838|221817.994|108.838 +638348.163|221822.167|108.521 +638334.111|221834.704|107.323 +638324.979|221842.860|107.183 +638320.301|221847.036|106.735 +638315.759|221851.096|106.951 +638311.196|221855.171|106.836 +638306.652|221859.231|106.833 +638293.003|221871.417|106.369 +638283.840|221879.592|105.717 +638279.375|221883.581|105.708 +638274.867|221887.605|105.519 +638270.402|221891.595|105.543 +638265.772|221895.722|104.854 +638261.200|221899.800|104.449 +638229.690|221927.915|102.035 +638221.271|221935.455|103.498 +638217.245|221939.070|104.672 +638200.118|221954.377|105.235 +638195.787|221958.248|105.208 +638170.269|221981.041|105.129 +638161.935|221988.488|105.342 +638157.790|221992.194|105.549 +638153.642|221995.903|105.757 +638149.564|221999.549|106.052 +638145.409|222003.261|106.049 +638141.176|222007.038|105.769 +638136.948|222010.811|105.519 +638132.778|222014.533|105.306 +638128.593|222018.267|105.046 +638124.433|222021.979|104.696 +638120.053|222025.875|103.538 +638098.967|222044.675|100.663 +638223.325|221931.901|103.574 +638227.532|221928.116|102.727 +638232.046|221924.077|103.193 +638236.215|221920.322|102.215 +638245.265|221912.217|103.120 +638249.852|221908.112|103.760 +638258.877|221900.025|104.224 +638263.404|221895.969|104.425 +638277.178|221883.633|105.568 +638295.539|221867.180|106.574 +638300.077|221863.108|106.528 +638304.643|221859.018|106.613 +638309.224|221854.906|106.552 +638318.545|221846.554|106.979 +638332.365|221834.164|107.134 +638337.040|221829.973|107.131 +638351.223|221817.272|108.543 +638375.256|221795.759|111.752 +638389.689|221782.839|113.489 +638404.087|221769.943|115.035 +638408.885|221765.639|115.233 +638413.649|221761.372|115.538 +638418.428|221757.083|115.693 +638423.241|221752.773|116.031 +638447.436|221731.090|117.748 +638476.371|221705.133|117.943 +638481.178|221700.820|117.964 +638485.999|221696.495|117.781 +638490.855|221692.139|117.836 +638495.756|221687.747|118.168 +638510.539|221674.503|119.555 +638530.415|221656.703|121.679 +638535.432|221652.213|122.350 +638540.284|221647.858|122.313 +638545.332|221643.344|123.258 +638555.445|221634.300|125.364 +638565.315|221625.452|125.627 +638594.896|221598.904|124.703 +638599.900|221594.417|124.990 +638604.884|221589.949|125.139 +638609.855|221585.489|125.230 +638614.903|221580.966|125.538 +638619.944|221576.449|125.816 +638624.976|221571.944|126.443 +638635.163|221562.828|127.992 +638645.243|221553.793|128.437 +638665.433|221535.691|129.126 +638670.404|221531.226|128.717 +638736.244|221472.195|130.491 +638741.319|221467.644|130.418 +638756.580|221453.962|130.238 +638761.618|221449.439|129.876 +638776.880|221435.750|129.421 +638781.964|221431.187|129.092 +638787.054|221426.618|128.861 +638792.108|221422.089|128.748 +638797.210|221417.505|128.092 +638802.312|221412.930|128.047 +638807.412|221408.358|127.952 +638812.502|221403.792|127.803 +638817.589|221399.229|127.593 +638822.673|221394.666|127.398 +638827.806|221390.064|127.181 +638832.835|221385.549|126.937 +638837.968|221380.947|126.757 +638843.098|221376.344|126.575 +638848.182|221371.785|126.456 +638853.318|221367.182|126.364 +638858.405|221362.619|126.328 +638863.544|221358.014|126.337 +638894.204|221330.505|124.849 +638899.321|221325.915|124.636 +638909.535|221316.747|123.844 +638919.758|221307.575|123.207 +638935.166|221293.756|122.883 +638940.326|221289.126|122.640 +638945.432|221284.545|122.280 +638950.549|221279.954|122.161 +638955.722|221275.318|122.185 +638960.839|221270.728|122.149 +638965.957|221266.141|122.079 +638976.207|221256.939|121.094 +638981.325|221252.348|121.073 +639006.861|221229.431|119.244 +639011.966|221224.849|118.793 +639017.130|221220.216|118.683 +639027.359|221211.045|118.339 +639042.696|221197.283|117.620 +639058.028|221183.518|116.327 +639073.375|221169.748|115.224 +639109.164|221137.573|108.856 +639114.294|221132.967|108.305 +639119.421|221128.395|109.902 +639129.604|221119.337|114.425 +639134.719|221114.765|115.233 +639139.742|221110.275|115.748 +639144.860|221105.691|115.900 +639155.009|221096.598|115.699 +639160.133|221092.008|115.654 +639165.156|221087.512|115.873 +639170.231|221082.968|115.983 +639175.306|221078.423|116.004 +639180.378|221073.882|116.199 +639200.626|221055.752|116.800 +639210.745|221046.684|116.416 +639225.879|221033.139|116.986 +639230.920|221028.619|116.778 +639236.016|221024.050|116.449 +639241.067|221019.520|116.028 +639246.123|221014.985|115.590 +639251.220|221010.419|115.413 +639256.221|221005.932|115.145 +639261.327|221001.354|114.821 +639266.387|220996.819|114.465 +639271.373|220992.354|114.739 +639276.482|220987.779|114.504 +639281.505|220983.271|114.020 +639286.510|220978.790|113.986 +639291.563|220974.261|113.959 +639296.565|220969.780|113.989 +639301.622|220965.251|113.968 +639306.584|220960.804|113.916 +639331.644|220938.358|113.977 +639336.668|220933.859|113.907 +639351.645|220920.430|112.935 +639356.644|220915.949|112.633 +639361.655|220911.453|112.154 +639366.620|220907.009|112.380 +639371.592|220902.559|112.548 +639396.360|220880.385|113.511 +639401.328|220875.941|113.831 +639411.219|220867.084|113.870 +639416.114|220862.697|113.931 +639421.076|220858.253|113.816 +639430.951|220849.402|113.621 +639455.558|220827.359|113.236 +639460.450|220822.973|113.017 +639465.336|220818.596|112.895 +639470.222|220814.219|112.804 +639475.102|220809.845|112.785 +639479.976|220805.480|112.862 +639484.791|220801.170|113.066 +639489.668|220796.803|113.157 +639494.490|220792.487|113.319 +639499.279|220788.207|113.831 +639508.883|220779.612|114.160 +639523.291|220766.719|114.587 +639532.871|220758.145|114.901 +639537.677|220753.841|114.922 +639542.451|220749.565|114.849 +639547.242|220745.273|114.636 +639552.030|220740.985|114.495 +639566.417|220728.091|113.596 +639571.212|220723.797|113.502 +639575.954|220719.548|113.438 +639580.721|220715.278|113.206 +639585.400|220711.087|113.291 +639590.182|220706.804|113.008 +639594.888|220702.589|112.938 +639599.582|220698.386|112.971 +639604.313|220694.149|112.773 +639609.028|220689.924|112.712 +639613.689|220685.752|112.697 +639618.309|220681.612|112.630 +639623.043|220677.376|112.502 +639627.679|220673.221|112.365 +639632.333|220669.049|112.118 +639646.208|220656.628|112.167 +639650.783|220652.534|112.560 +639664.493|220640.266|112.926 +639669.077|220636.164|113.002 +639673.701|220632.021|112.825 +639678.242|220627.952|112.862 +639682.766|220623.904|113.051 +639687.292|220619.854|113.240 +639691.809|220615.815|113.499 +639696.296|220611.801|113.657 +639700.776|220607.790|113.855 +639705.278|220603.763|113.959 +639709.765|220599.746|114.157 +639714.264|220595.720|114.300 +639718.717|220591.733|114.419 +639723.164|220587.755|114.611 +639727.605|220583.784|114.849 +639732.006|220579.843|115.029 +639736.417|220575.895|115.169 +639740.833|220571.945|115.303 +639745.234|220568.004|115.529 +639749.602|220564.100|115.687 +639754.025|220560.137|115.818 +639758.417|220556.208|115.864 +639762.828|220552.258|115.827 +639767.180|220548.360|115.833 +639771.548|220544.449|115.772 +639775.910|220540.545|115.772 +639784.642|220532.723|115.757 +639789.068|220528.758|115.462 +639810.770|220509.318|114.895 +639823.654|220497.784|114.855 +639827.979|220493.907|114.718 +639832.252|220490.079|114.584 +639840.856|220482.367|114.367 +639862.321|220463.110|112.685 +639866.499|220459.364|112.657 +639870.599|220455.697|113.035 +639874.808|220451.921|112.892 +639879.005|220448.160|112.831 +639887.476|220440.561|112.133 +639895.641|220433.249|112.462 +639899.774|220429.539|112.279 +639903.880|220425.860|112.252 +639908.010|220422.160|112.127 +639850.104|220472.211|113.621 +639841.372|220480.029|114.130 +639837.025|220483.916|114.303 +639832.694|220487.793|114.425 +639828.323|220491.700|114.495 +639823.916|220495.647|114.782 +639819.578|220499.525|114.724 +639815.308|220503.341|114.346 +639810.892|220507.291|114.456 +639802.065|220515.188|114.727 +639797.578|220519.205|115.276 +639793.143|220523.177|115.580 +639788.803|220527.057|115.398 +639784.368|220531.023|115.443 +639779.970|220534.958|115.608 +639775.492|220538.966|115.663 +639771.078|220542.913|115.672 +639766.619|220546.900|115.660 +639762.209|220550.844|115.669 +639757.747|220554.837|115.721 +639753.299|220558.811|115.684 +639748.828|220562.807|115.526 +639744.375|220566.788|115.282 +639739.964|220570.732|115.102 +639735.484|220574.737|115.041 +639731.019|220578.727|114.916 +639726.520|220582.747|114.700 +639722.024|220586.768|114.486 +639717.577|220590.739|114.285 +639713.069|220594.769|114.178 +639708.567|220598.792|114.044 +639704.035|220602.846|113.813 +639699.533|220606.866|113.718 +639695.000|220610.914|113.520 +639690.504|220614.925|113.407 +639685.932|220619.006|113.157 +639681.412|220623.042|112.935 +639676.877|220627.090|112.801 +639672.335|220631.147|112.755 +639667.766|220635.228|112.880 +639663.176|220639.330|112.859 +639649.448|220651.586|112.572 +639644.943|220655.604|112.042 +639631.117|220667.951|111.965 +639626.451|220672.124|112.279 +639621.781|220676.297|112.282 +639617.139|220680.445|112.474 +639612.469|220684.618|112.523 +639607.800|220688.790|112.587 +639603.069|220693.015|112.749 +639598.436|220697.151|112.578 +639593.721|220701.367|112.694 +639589.015|220705.570|112.734 +639584.294|220709.788|112.935 +639579.581|220714.001|113.093 +639574.802|220718.277|113.413 +639570.117|220722.459|113.386 +639565.314|220726.750|113.544 +639550.979|220739.567|114.370 +639546.191|220743.847|114.511 +639541.405|220748.123|114.669 +639536.632|220752.390|114.739 +639531.859|220756.651|114.800 +639527.055|220760.943|114.767 +639522.285|220765.198|114.419 +639517.472|220769.499|114.474 +639512.690|220773.769|114.306 +639507.859|220778.082|114.120 +639493.457|220790.935|113.325 +639488.635|220795.242|113.139 +639483.764|220799.589|112.956 +639478.945|220803.889|112.770 +639474.017|220808.291|112.712 +639469.186|220812.607|112.709 +639464.251|220817.017|112.779 +639459.362|220821.385|112.889 +639454.375|220825.841|113.029 +639439.583|220839.060|113.425 +639434.573|220843.535|113.410 +639429.650|220847.936|113.544 +639424.639|220852.414|113.593 +639419.677|220856.845|113.651 +639414.666|220861.323|113.749 +639409.756|220865.703|113.233 +639389.785|220883.531|112.392 +639374.758|220896.954|112.496 +639369.696|220901.474|112.185 +639364.676|220905.958|112.008 +639359.628|220910.466|112.200 +639354.578|220914.980|112.496 +639349.475|220919.546|112.919 +639334.247|220933.158|113.831 +639329.127|220937.730|113.852 +639324.058|220942.257|113.858 +639318.953|220946.810|113.678 +639313.890|220951.330|113.621 +639308.778|220955.893|113.608 +639303.667|220960.456|113.605 +639298.552|220965.025|113.727 +639293.441|220969.591|113.791 +639288.283|220974.197|113.846 +639283.181|220978.750|113.791 +639278.024|220983.356|113.883 +639267.740|220992.549|114.666 +639262.586|220997.154|114.821 +639257.438|221001.751|114.879 +639247.132|221010.959|115.391 +639241.987|221015.555|115.510 +639236.842|221020.148|115.632 +639231.627|221024.815|116.452 +639221.343|221034.005|116.876 +639216.210|221038.586|116.824 +639211.084|221043.158|116.513 +639205.948|221047.748|116.723 +639200.769|221052.372|116.675 +639195.639|221056.947|116.559 +639185.337|221066.146|116.379 +639180.207|221070.724|116.345 +639175.035|221075.339|116.099 +639169.908|221079.914|116.044 +639164.736|221084.531|115.952 +639159.557|221089.155|116.031 +639149.258|221098.351|115.961 +639144.085|221102.966|115.779 +639118.284|221125.935|110.929 +639113.063|221130.544|107.186 +639107.881|221135.192|108.607 +639087.219|221153.681|111.847 +639082.049|221158.311|112.837 +639030.690|221204.239|118.156 +639025.573|221208.811|118.275 +639015.286|221217.994|118.580 +639010.220|221222.524|118.811 +639005.051|221227.138|118.927 +638979.508|221249.974|121.170 +638974.385|221254.549|121.073 +638969.322|221259.072|121.417 +638964.219|221263.635|122.033 +638959.102|221268.207|122.124 +638948.903|221277.318|122.216 +638943.783|221281.893|122.289 +638933.648|221290.955|122.816 +638923.504|221300.019|123.158 +638913.357|221309.090|123.429 +638893.146|221327.165|124.825 +638888.126|221331.655|125.102 +638883.048|221336.193|125.230 +638878.016|221340.692|125.377 +638872.993|221345.182|125.648 +638867.963|221349.677|125.825 +638862.931|221354.176|125.989 +638857.896|221358.675|126.126 +638852.812|221363.220|126.267 +638847.828|221367.676|126.456 +638842.790|221372.178|126.608 +638837.749|221376.683|126.721 +638832.713|221381.185|126.916 +638827.678|221385.690|127.123 +638822.688|221390.149|127.330 +638817.647|221394.654|127.532 +638812.606|221399.162|127.699 +638807.567|221403.664|127.949 +638802.565|221408.135|128.038 +638797.564|221412.604|128.187 +638792.513|221417.118|128.339 +638787.530|221421.577|128.705 +638782.485|221426.088|128.949 +638777.493|221430.550|129.242 +638772.500|221435.015|129.559 +638752.481|221452.904|129.882 +638742.511|221461.820|130.324 +638737.539|221466.261|130.470 +638732.544|221470.723|130.378 +638722.552|221479.647|130.284 +638707.510|221493.074|129.318 +638687.400|221511.024|128.129 +638682.437|221515.458|128.138 +638677.497|221519.875|128.376 +638667.578|221528.739|128.574 +638662.613|221533.173|128.647 +638652.631|221542.089|128.446 +638647.647|221546.542|128.443 +638642.679|221550.977|128.172 +638632.694|221559.889|127.766 +638627.720|221564.333|127.522 +638622.654|221568.844|126.629 +638617.609|221573.343|125.934 +638612.611|221577.799|125.246 +638607.569|221582.298|125.023 +638602.671|221586.669|124.773 +638578.004|221608.709|124.752 +638573.188|221613.025|125.197 +638558.524|221626.135|125.197 +638548.673|221634.940|124.788 +638538.495|221644.002|122.024 +638533.612|221648.367|121.881 +638528.684|221652.771|121.795 +638508.835|221670.489|119.244 +638494.058|221683.684|117.955 +638489.218|221688.006|117.684 +638484.287|221692.414|117.501 +638479.513|221696.684|117.680 +638474.694|221700.994|117.601 +638460.280|221713.887|117.738 +638426.688|221743.907|116.757 +638421.784|221748.280|115.894 +638416.971|221752.581|115.544 +638412.247|221756.806|115.431 +638407.492|221761.052|115.181 +638354.728|221808.152|109.222 +638317.244|221841.638|106.930 +638312.614|221845.774|106.726 +638303.400|221854.010|106.342 +638298.821|221858.100|106.199 +638294.313|221862.133|106.153 +638289.799|221866.168|106.342 +638285.218|221870.262|106.001 +638276.050|221878.452|105.351 +638271.581|221882.448|105.345 +638262.471|221890.580|104.620 +638257.893|221894.670|104.175 +638248.859|221902.735|103.449 +638239.907|221910.736|103.145 +638231.192|221918.536|103.705 +638226.690|221922.556|103.276 +638196.924|221949.211|106.019 +638179.516|221964.765|104.995 +638175.533|221968.337|105.994 +638171.287|221972.135|105.949 +638166.995|221975.970|105.735 +638162.795|221979.725|105.693 +638158.546|221983.519|105.470 +638154.376|221987.253|105.568 +638150.286|221990.911|105.796 +638146.208|221994.562|106.074 +638142.123|221998.217|106.336 +638137.951|222001.948|106.065 +638133.790|222005.663|105.863 +638129.633|222009.379|105.684 +638121.296|222016.822|104.885 +638117.063|222020.601|104.464 +638112.725|222024.463|103.276 +638100.110|222035.717|101.294 +638096.022|222039.368|100.904 +638222.966|221923.715|105.549 +638226.907|221920.161|103.599 +638231.317|221916.213|103.635 +638235.539|221912.422|102.895 +638239.827|221908.578|102.440 +638244.491|221904.418|103.388 +638258.079|221892.265|104.416 +638262.581|221888.242|104.751 +638271.636|221880.140|105.016 +638276.160|221876.092|105.281 +638280.789|221871.956|105.799 +638289.912|221863.794|106.058 +638294.451|221859.731|105.985 +638298.968|221855.686|106.080 +638308.240|221847.395|106.692 +638326.711|221830.866|107.107 +638331.307|221826.745|106.723 +638336.053|221822.509|107.314 +638340.713|221818.339|107.534 +638374.159|221788.444|110.896 +638388.762|221775.402|112.971 +638408.092|221758.125|115.148 +638412.884|221753.840|115.318 +638417.724|221749.509|115.513 +638422.531|221745.211|115.830 +638427.463|221740.807|116.571 +638441.959|221727.837|117.321 +638461.262|221710.564|117.629 +638470.918|221701.917|117.498 +638475.731|221697.610|117.519 +638480.547|221693.297|117.278 +638485.399|221688.951|117.290 +638490.315|221684.556|117.687 +638495.250|221680.142|117.930 +638510.185|221666.798|119.610 +638525.118|221653.451|121.250 +638530.135|221648.970|121.887 +638535.018|221644.596|121.695 +638550.264|221630.990|124.880 +638555.201|221626.577|125.157 +638560.148|221622.148|125.191 +638570.009|221613.318|125.099 +638594.661|221591.244|124.523 +638599.596|221586.828|124.651 +638604.576|221582.371|124.764 +638609.599|221577.882|125.227 +638614.677|221573.343|125.764 +638619.737|221568.826|126.553 +638624.851|221564.257|127.455 +638629.878|221559.764|127.690 +638634.888|221555.281|127.827 +638639.851|221550.834|127.620 +638644.929|221546.298|128.355 +638649.994|221541.769|128.629 +638659.989|221532.820|128.528 +638664.911|221528.409|128.089 +638670.005|221523.853|128.281 +638680.002|221514.901|127.940 +638685.016|221510.411|127.952 +638715.487|221483.162|129.772 +638725.625|221474.094|130.318 +638730.663|221469.583|130.318 +638735.744|221465.032|130.284 +638740.764|221460.536|130.141 +638745.781|221456.041|129.985 +638750.911|221451.447|130.001 +638776.197|221428.791|129.171 +638781.242|221424.268|128.922 +638786.335|221419.705|128.690 +638791.398|221415.161|128.102 +638796.463|221410.625|128.138 +638801.572|221406.050|128.132 +638806.671|221401.481|128.035 +638816.845|221392.365|127.593 +638821.923|221387.814|127.254 +638827.007|221383.257|127.013 +638832.140|221378.658|126.812 +638837.230|221374.098|126.687 +638842.360|221369.502|126.477 +638847.450|221364.942|126.383 +638852.583|221360.342|126.242 +638857.716|221355.746|126.105 +638862.797|221351.192|125.959 +638867.921|221346.599|125.749 +638873.044|221342.009|125.514 +638878.168|221337.418|125.285 +638883.237|221332.874|124.996 +638888.403|221328.244|124.700 +638893.469|221323.702|124.380 +638898.587|221319.115|124.097 +638903.707|221314.528|123.895 +638908.828|221309.938|123.719 +638913.946|221305.353|123.463 +638919.106|221300.726|123.133 +638924.181|221296.182|123.018 +638929.350|221291.549|122.859 +638934.468|221286.965|122.676 +638944.743|221277.754|122.106 +638949.866|221273.166|122.109 +638954.990|221268.576|122.109 +638960.160|221263.946|122.021 +638970.416|221254.750|121.018 +638975.585|221250.120|120.972 +639001.241|221227.123|119.467 +639006.395|221222.502|118.903 +639011.558|221217.872|118.699 +639016.673|221213.291|118.436 +639021.842|221208.661|118.476 +639026.957|221204.077|118.214 +639037.228|221194.866|117.379 +639042.349|221190.282|117.360 +639062.853|221171.890|115.169 +639068.022|221167.257|114.876 +639083.424|221153.428|112.008 +639088.499|221148.875|111.466 +639093.623|221144.269|110.182 +639109.064|221130.404|107.360 +639114.191|221125.856|110.582 +639139.739|221103.039|115.971 +639144.860|221098.455|116.236 +639149.934|221093.904|116.141 +639155.015|221089.347|115.751 +639160.136|221084.763|116.062 +639165.211|221080.218|116.141 +639170.338|221075.625|116.132 +639175.367|221071.120|116.166 +639180.491|221066.530|116.272 +639185.572|221061.976|116.138 +639190.598|221057.474|116.409 +639195.676|221052.930|116.537 +639200.754|221048.379|116.617 +639205.783|221043.877|116.784 +639210.870|221039.314|116.577 +639215.896|221034.812|116.839 +639220.932|221030.304|116.888 +639225.973|221025.781|116.672 +639231.042|221021.230|115.779 +639236.086|221016.707|115.617 +639241.134|221012.181|115.437 +639246.191|221007.648|115.087 +639251.189|221003.168|115.013 +639256.249|220998.632|114.681 +639261.248|220994.152|114.657 +639266.259|220989.656|114.361 +639271.324|220985.115|114.029 +639276.338|220980.619|113.785 +639281.346|220976.132|113.700 +639286.403|220971.600|113.642 +639291.365|220967.153|113.581 +639296.376|220962.660|113.499 +639311.366|220949.230|113.459 +639316.371|220944.747|113.624 +639326.301|220935.853|113.709 +639331.312|220931.363|113.834 +639336.244|220926.940|113.678 +639346.241|220917.973|112.929 +639356.242|220909.006|112.304 +639361.198|220904.559|111.950 +639366.163|220900.115|112.231 +639371.098|220895.695|112.276 +639381.053|220886.771|111.926 +639385.996|220882.342|111.911 +639410.554|220860.360|113.587 +639420.418|220851.523|113.529 +639425.380|220847.073|113.456 +639430.247|220842.712|113.380 +639435.207|220838.268|113.404 +639445.113|220829.383|112.615 +639454.930|220820.592|112.889 +639459.813|220816.212|112.791 +639464.748|220811.793|112.721 +639469.628|220807.419|112.731 +639474.559|220803.002|112.734 +639479.415|220798.653|113.011 +639484.292|220794.285|113.102 +639489.168|220789.920|113.243 +639503.692|220776.920|114.261 +639508.545|220772.574|114.227 +639513.388|220768.234|114.291 +639523.074|220759.559|114.495 +639527.912|220755.228|114.666 +639532.709|220750.930|114.797 +639537.589|220746.559|114.666 +639542.414|220742.234|114.596 +639547.254|220737.897|114.425 +639561.824|220724.833|113.660 +639566.637|220720.517|113.413 +639571.437|220716.213|113.276 +639576.262|220711.888|112.993 +639581.069|220707.578|112.877 +639585.891|220703.256|112.670 +639590.697|220698.949|112.596 +639595.471|220694.673|112.444 +639600.232|220690.406|112.386 +639604.993|220686.139|112.353 +639609.815|220681.817|112.258 +639614.524|220677.601|112.295 +639619.251|220673.364|112.218 +639624.009|220669.100|112.285 +639628.697|220664.900|112.176 +639633.458|220660.630|111.926 +639638.192|220656.390|111.901 +639642.840|220652.230|112.124 +639656.708|220639.815|113.090 +639661.359|220635.648|113.035 +639666.005|220631.488|113.041 +639670.665|220627.309|112.953 +639675.267|220623.185|112.935 +639679.846|220619.086|113.102 +639684.418|220614.995|113.337 +639689.002|220610.890|113.502 +639693.540|220606.827|113.663 +639698.131|220602.715|113.813 +639702.681|220598.640|113.925 +639707.171|220594.619|114.126 +639711.673|220590.587|114.258 +639716.224|220586.515|114.425 +639720.735|220582.470|114.529 +639725.240|220578.437|114.700 +639729.687|220574.454|114.916 +639734.152|220570.455|115.050 +639738.632|220566.443|115.129 +639743.119|220562.423|115.160 +639747.551|220558.455|115.242 +639765.217|220542.629|115.526 +639769.622|220538.682|115.565 +639774.041|220534.720|115.245 +639778.375|220530.837|115.428 +639782.731|220526.938|115.507 +639787.062|220523.055|115.455 +639791.421|220519.148|115.273 +639800.169|220511.305|114.806 +639804.497|220507.425|114.837 +639813.095|220499.720|114.724 +639825.882|220488.256|114.462 +639838.625|220476.835|114.047 +639859.882|220457.770|112.136 +639863.845|220454.231|112.916 +639867.965|220450.543|112.944 +639872.126|220446.812|112.785 +639884.562|220435.663|111.889 +639888.552|220432.097|112.368 +639892.645|220428.427|112.115 +639896.690|220424.806|112.121 +639900.741|220421.176|112.093 +639904.779|220417.554|111.908 +639850.378|220464.253|113.075 +639824.138|220487.726|114.349 +639815.317|220495.614|114.690 +639810.882|220499.576|114.605 +639806.542|220503.450|114.319 +639802.092|220507.434|114.632 +639797.630|220511.424|114.760 +639793.143|220515.438|115.035 +639788.629|220519.477|115.199 +639784.142|220523.488|115.242 +639779.662|220527.496|115.273 +639775.175|220531.507|115.352 +639770.697|220535.503|115.099 +639766.189|220539.536|115.337 +639761.614|220543.629|115.407 +639748.093|220555.711|115.114 +639743.546|220559.774|115.090 +639738.956|220563.877|115.032 +639734.417|220567.934|114.998 +639729.842|220572.021|114.892 +639725.291|220576.087|114.669 +639720.738|220580.153|114.474 +639716.172|220584.232|114.367 +639711.563|220588.353|114.236 +639706.951|220592.473|114.136 +639702.364|220596.570|113.907 +639697.759|220600.688|113.819 +639693.165|220604.790|113.657 +639688.523|220608.939|113.517 +639683.893|220613.078|113.319 +639679.269|220617.205|113.075 +639674.633|220621.350|112.941 +639669.930|220625.553|112.938 +639665.276|220629.717|112.977 +639660.576|220633.917|112.990 +639655.885|220638.114|112.980 +639646.564|220646.438|112.569 +639641.901|220650.602|112.069 +639637.241|220654.769|111.926 +639632.504|220659.002|111.965 +639627.761|220663.245|112.081 +639623.052|220667.454|111.981 +639618.251|220671.749|112.191 +639613.533|220675.967|112.200 +639608.815|220680.186|112.231 +639604.033|220684.462|112.374 +639599.278|220688.714|112.359 +639594.532|220692.957|112.295 +639589.710|220697.270|112.432 +639584.946|220701.531|112.554 +639580.179|220705.795|112.709 +639575.357|220710.108|112.929 +639570.550|220714.412|113.465 +639565.716|220718.734|113.444 +639560.961|220722.986|113.608 +639556.106|220727.329|113.813 +639541.594|220740.317|114.562 +639536.815|220744.590|114.654 +639531.996|220748.900|114.687 +639527.171|220753.213|114.797 +639522.392|220757.483|114.511 +639517.527|220761.833|114.587 +639512.748|220766.103|114.352 +639503.116|220774.711|114.154 +639488.620|220787.662|113.310 +639483.810|220791.953|112.980 +639478.979|220796.275|112.923 +639474.096|220800.637|112.877 +639469.277|220804.944|112.731 +639464.394|220809.309|112.727 +639459.517|220813.670|112.724 +639454.583|220818.081|112.798 +639449.697|220822.452|112.916 +639439.876|220831.236|113.236 +639425.121|220844.431|113.404 +639420.207|220848.823|113.444 +639415.251|220853.255|113.441 +639410.344|220857.644|113.465 +639375.728|220888.569|112.014 +639365.752|220897.490|112.023 +639360.728|220901.977|111.853 +639355.779|220906.406|112.069 +639350.728|220910.923|112.337 +639345.708|220915.422|112.996 +639335.619|220924.447|113.578 +639330.584|220928.952|113.803 +639325.567|220933.433|113.718 +639310.482|220946.911|113.425 +639290.286|220964.958|113.389 +639285.223|220969.484|113.483 +639280.164|220974.005|113.535 +639275.052|220978.577|113.721 +639269.986|220983.106|113.989 +639264.875|220987.678|114.242 +639259.809|220992.207|114.581 +639254.713|220996.764|114.572 +639249.537|221001.400|115.370 +639244.502|221005.896|115.102 +639239.406|221010.453|115.233 +639234.251|221015.061|115.608 +639229.155|221019.618|115.754 +639224.007|221024.224|116.092 +639218.847|221028.844|116.861 +639213.763|221033.389|116.879 +639208.645|221037.955|116.324 +639203.503|221042.554|116.614 +639198.373|221047.135|116.565 +639193.247|221051.717|116.419 +639188.117|221056.301|116.403 +639182.941|221060.925|116.309 +639177.815|221065.506|116.208 +639172.685|221070.087|116.211 +639167.558|221074.671|116.278 +639162.383|221079.295|116.153 +639157.256|221083.876|116.220 +639131.436|221106.949|116.281 +639121.146|221116.133|115.224 +639110.810|221125.305|110.387 +639105.635|221129.892|107.582 +639095.272|221139.176|109.353 +639090.096|221143.821|110.856 +639084.875|221148.494|111.319 +639038.329|221190.166|117.178 +639033.171|221194.784|117.735 +639028.005|221199.402|117.967 +639022.796|221204.062|118.327 +639012.460|221213.300|118.488 +639007.297|221217.918|118.802 +639002.131|221222.536|118.976 +638971.221|221250.187|121.036 +638966.051|221254.805|121.155 +638955.786|221263.989|121.948 +638950.613|221268.610|121.951 +638945.489|221273.185|122.018 +638940.320|221277.802|122.152 +638930.033|221286.995|122.493 +638924.903|221291.576|122.487 +638919.783|221296.151|122.667 +638914.665|221300.726|122.944 +638909.550|221305.298|123.252 +638904.436|221309.870|123.584 +638899.318|221314.442|123.871 +638894.204|221319.014|124.203 +638889.135|221323.544|124.514 +638884.020|221328.116|124.865 +638878.948|221332.651|125.108 +638873.828|221337.226|125.392 +638868.753|221341.762|125.651 +638863.675|221346.300|125.837 +638858.597|221350.836|126.035 +638853.510|221355.380|126.157 +638848.474|221359.879|126.300 +638843.393|221364.421|126.498 +638838.370|221368.910|126.858 +638798.085|221404.901|128.263 +638793.071|221409.379|128.227 +638788.069|221413.847|128.391 +638783.083|221418.303|128.751 +638778.081|221422.775|128.934 +638773.070|221427.249|129.050 +638768.074|221431.715|129.327 +638748.122|221449.539|129.912 +638743.154|221453.977|130.080 +638738.195|221458.409|130.308 +638733.205|221462.865|130.278 +638728.212|221467.321|130.229 +638723.214|221471.784|130.171 +638718.197|221476.261|129.943 +638713.237|221480.687|129.815 +638703.203|221489.636|129.046 +638698.281|221494.034|129.339 +638683.212|221507.467|127.663 +638678.320|221511.840|127.876 +638673.342|221516.284|127.797 +638668.383|221520.713|127.913 +638663.470|221525.102|128.001 +638658.596|221529.461|128.440 +638653.673|221533.856|128.495 +638643.767|221542.695|128.187 +638638.805|221547.124|127.980 +638599.074|221582.554|124.496 +638594.140|221586.959|124.374 +638574.556|221604.439|124.188 +638569.740|221608.743|124.666 +638564.915|221613.056|125.093 +638560.033|221617.414|125.142 +638555.177|221621.745|125.057 +638530.345|221643.856|121.356 +638520.610|221652.539|121.049 +638505.799|221665.731|118.991 +638500.886|221670.108|118.519 +638496.030|221674.436|118.107 +638491.096|221678.832|117.559 +638486.216|221683.181|117.071 +638481.418|221687.461|117.092 +638476.596|221691.764|116.995 +638471.811|221696.035|117.129 +638467.044|221700.290|117.095 +638462.234|221704.581|117.123 +638452.657|221713.125|116.922 +638447.890|221717.380|116.961 +638443.081|221721.671|116.781 +638438.259|221725.969|116.565 +638428.679|221734.510|115.998 +638423.915|221738.758|115.882 +638419.105|221743.050|115.538 +638414.393|221747.253|115.471 +638409.601|221751.523|115.294 +638404.919|221755.702|115.431 +638395.172|221764.380|113.752 +638385.546|221772.954|112.554 +638380.819|221777.163|112.036 +638324.096|221827.715|107.003 +638305.521|221844.271|105.927 +638301.001|221848.307|106.034 +638296.432|221852.382|105.943 +638291.872|221856.448|105.909 +638287.334|221860.499|105.985 +638269.091|221876.760|104.906 +638255.476|221888.903|104.300 +638251.010|221892.887|104.382 +638237.432|221904.981|103.035 +638233.244|221908.731|103.925 +638229.086|221912.452|104.946 +638212.191|221927.561|107.549 +638203.507|221935.309|107.497 +638199.231|221939.125|107.649 +638190.538|221946.876|107.208 +638181.906|221954.573|106.878 +638173.326|221962.223|106.607 +638168.958|221966.115|106.074 +638164.636|221969.965|105.751 +638160.402|221973.741|105.568 +638156.156|221977.530|105.577 +638152.020|221981.221|105.604 +638147.878|221984.918|105.839 +638143.775|221988.582|106.025 +638139.895|221992.057|107.092 +638135.677|221995.818|106.848 +638127.173|222003.389|105.766 +638123.000|222007.108|105.549 +638114.658|222014.542|104.763 +638110.537|222018.212|104.379 +638101.990|222025.817|102.733 +638227.650|221911.297|105.662 +638231.768|221907.594|104.477 +638235.859|221903.912|103.172 +638240.217|221900.007|103.038 +638253.790|221887.870|104.202 +638258.280|221883.850|104.248 +638276.473|221867.579|105.671 +638290.052|221855.424|105.693 +638317.667|221830.714|106.939 +638326.830|221822.512|106.976 +638331.502|221818.330|107.223 +638340.792|221810.018|107.497 +638345.578|221805.741|108.101 +638350.311|221801.508|108.475 +638364.674|221788.676|110.286 +638369.410|221784.442|110.774 +638374.275|221780.099|111.411 +638393.505|221762.917|113.304 +638408.150|221749.841|115.452 +638412.829|221745.653|115.309 +638417.645|221741.346|115.385 +638422.430|221737.067|115.583 +638427.286|221732.726|115.925 +638432.099|221728.423|116.038 +638436.920|221724.110|116.239 +638441.715|221719.818|116.309 +638446.574|221715.472|116.470 +638451.399|221711.156|116.464 +638456.199|221706.861|116.629 +638461.079|221702.496|116.678 +638465.910|221698.174|116.775 +638470.787|221693.813|116.848 +638475.594|221689.512|116.842 +638480.461|221685.156|116.931 +638485.387|221680.752|117.065 +638490.285|221676.372|117.379 +638495.195|221671.983|117.784 +638500.161|221667.548|118.229 +638505.126|221663.110|118.723 +638510.146|221658.632|119.585 +638515.151|221654.161|120.402 +638520.155|221649.693|120.908 +638530.046|221640.844|121.280 +638555.223|221618.368|124.974 +638560.148|221613.958|124.883 +638569.984|221605.155|124.624 +638574.925|221600.729|124.334 +638579.829|221596.340|124.139 +638584.862|221591.838|124.188 +638589.766|221587.449|124.048 +638594.740|221582.996|124.090 +638599.779|221578.497|124.609 +638604.905|221573.922|125.453 +638609.895|221569.463|126.062 +638625.101|221555.878|127.611 +638630.045|221551.455|127.602 +638650.080|221533.533|127.888 +638660.135|221524.535|127.903 +638670.181|221515.544|127.916 +638675.177|221511.072|127.715 +638700.460|221488.468|128.897 +638710.634|221479.373|129.613 +638715.758|221474.792|129.897 +638720.766|221470.311|130.046 +638725.871|221465.745|130.208 +638730.898|221461.247|130.104 +638735.942|221456.739|130.186 +638741.011|221452.200|130.061 +638746.025|221447.717|129.879 +638751.097|221443.175|129.848 +638756.166|221438.643|129.757 +638766.270|221429.599|129.318 +638771.256|221425.134|128.934 +638776.374|221420.556|128.952 +638781.424|221416.036|128.760 +638791.550|221406.968|128.196 +638801.703|221397.885|127.983 +638806.747|221393.371|127.821 +638811.837|221388.814|127.635 +638816.931|221384.254|127.519 +638847.447|221356.947|126.517 +638862.742|221343.258|126.069 +638867.854|221338.680|125.651 +638872.968|221334.102|125.307 +638878.037|221329.564|124.999 +638883.158|221324.979|124.734 +638888.272|221320.401|124.410 +638893.390|221315.817|124.136 +638898.504|221311.239|123.792 +638903.619|221306.661|123.469 +638908.734|221302.080|123.173 +638913.848|221297.502|122.868 +638918.969|221292.920|122.682 +638924.086|221288.339|122.466 +638929.253|221283.712|122.283 +638934.373|221279.131|122.103 +638939.491|221274.553|121.917 +638944.654|221269.929|121.655 +638949.772|221265.351|121.490 +638954.902|221260.764|121.637 +638965.186|221251.562|121.314 +638970.297|221246.984|121.018 +638975.467|221242.360|120.969 +638980.590|221237.779|121.049 +638985.751|221233.158|120.853 +639001.155|221219.354|118.985 +639006.319|221214.733|118.720 +639011.433|221210.155|118.418 +639021.766|221200.910|118.278 +639026.880|221196.329|117.991 +639032.044|221191.708|117.674 +639037.198|221187.088|116.888 +639042.364|221182.464|116.711 +639073.256|221154.785|113.139 +639078.373|221150.188|111.804 +639083.546|221145.552|110.902 +639093.796|221136.344|108.174 +639119.476|221113.475|115.413 +639124.593|221108.903|116.169 +639155.336|221081.404|116.303 +639160.462|221076.820|116.266 +639165.540|221072.272|116.153 +639170.667|221067.688|116.230 +639175.748|221063.144|116.178 +639180.826|221058.602|116.233 +639185.953|221054.015|116.236 +639191.034|221049.473|116.324 +639196.118|221044.923|116.248 +639201.190|221040.390|116.641 +639206.277|221035.836|116.416 +639211.349|221031.304|116.851 +639216.393|221026.787|116.574 +639221.499|221022.215|115.986 +639226.546|221017.698|115.779 +639231.597|221013.174|115.449 +639236.644|221008.654|115.282 +639241.686|221004.146|115.337 +639246.739|220999.620|115.062 +639251.753|220995.133|114.681 +639256.770|220990.638|114.233 +639261.815|220986.126|114.355 +639266.832|220981.637|114.014 +639271.852|220977.138|113.593 +639276.872|220972.645|113.316 +639281.886|220968.158|113.176 +639286.845|220963.721|113.154 +639306.791|220945.878|113.221 +639311.756|220941.437|113.246 +639321.674|220932.570|113.578 +639326.591|220928.172|113.688 +639331.568|220923.719|113.569 +639336.497|220919.308|113.541 +639341.511|220914.815|112.926 +639346.455|220910.390|112.697 +639356.379|220901.499|111.819 +639361.311|220897.088|111.889 +639371.214|220888.225|111.523 +639376.127|220883.829|111.267 +639381.071|220879.404|111.243 +639385.905|220875.082|111.426 +639405.342|220857.723|113.517 +639410.259|220853.322|113.355 +639424.843|220840.273|113.243 +639434.588|220831.556|113.093 +639439.468|220827.188|112.944 +639444.347|220822.823|112.859 +639449.172|220818.507|112.840 +639454.049|220814.143|112.801 +639458.886|220809.815|112.712 +639463.705|220805.505|112.831 +639473.377|220796.854|112.785 +639478.205|220792.532|112.859 +639483.027|220788.226|113.051 +639502.186|220771.090|114.184 +639511.763|220762.516|114.398 +639516.582|220758.203|114.291 +639521.304|220753.978|114.620 +639526.110|220749.677|114.648 +639530.920|220745.368|114.651 +639535.678|220741.109|114.727 +639545.236|220732.551|114.562 +639554.859|220723.928|113.962 +639559.629|220719.652|113.645 +639564.442|220715.339|113.392 +639569.224|220711.056|113.051 +639574.049|220706.728|112.755 +639578.755|220702.516|112.654 +639583.507|220698.261|112.621 +639588.317|220693.951|112.517 +639593.041|220689.720|112.353 +639597.766|220685.489|112.215 +639602.518|220681.234|112.246 +639607.233|220677.013|112.209 +639611.939|220672.801|112.279 +639616.676|220668.558|112.130 +639621.403|220664.324|112.084 +639626.131|220660.090|112.039 +639630.824|220655.887|111.929 +639640.209|220647.487|112.109 +639644.854|220643.332|112.380 +639649.445|220639.227|112.697 +639658.766|220630.884|113.108 +639663.399|220626.739|113.206 +639668.111|220622.521|113.121 +639672.768|220618.348|113.078 +639677.349|220614.248|113.236 +639681.973|220610.115|113.465 +639686.603|220605.970|113.651 +639691.196|220601.858|113.785 +639695.799|220597.740|113.880 +639700.350|220593.668|114.002 +639704.949|220589.550|114.133 +639709.500|220585.478|114.285 +639714.053|220581.403|114.431 +639718.665|220577.276|114.565 +639723.234|220573.186|114.657 +639727.751|220569.144|114.779 +639732.268|220565.099|114.907 +639736.810|220561.033|114.922 +639741.351|220556.970|114.959 +639750.389|220548.881|115.047 +639754.939|220544.803|114.791 +639759.447|220540.767|114.803 +639777.354|220524.735|114.861 +639790.726|220512.759|114.910 +639795.149|220508.800|114.709 +639799.657|220504.758|114.328 +639804.012|220500.863|114.514 +639808.346|220496.979|114.535 +639812.733|220493.051|114.587 +639821.602|220485.101|113.980 +639830.301|220477.311|113.794 +639847.608|220461.796|113.066 +639856.368|220453.929|112.023 +639860.507|220450.223|112.456 +639864.707|220446.459|112.606 +639868.916|220442.685|112.478 +639877.527|220434.959|111.609 +639881.681|220431.234|111.545 +639885.851|220427.497|111.673 +639890.060|220423.721|111.386 +639898.260|220416.372|111.402 +639902.374|220412.684|111.362 +639906.504|220408.977|111.258 +639856.353|220451.698|111.895 +639851.954|220455.633|112.731 +639847.763|220459.373|112.810 +639843.545|220463.134|112.788 +639839.320|220466.905|112.819 +639826.397|220478.445|113.733 +639822.126|220482.255|113.797 +639817.835|220486.086|114.005 +639809.081|220493.901|114.526 +639804.799|220497.720|114.459 +639800.470|220501.582|114.383 +639796.139|220505.447|114.340 +639791.668|220509.440|114.776 +639787.273|220513.362|114.843 +639769.606|220529.127|115.160 +639765.135|220533.117|115.163 +639756.244|220541.044|114.940 +639751.846|220544.964|114.596 +639738.291|220557.059|114.815 +639733.750|220561.113|114.770 +639729.254|220565.121|114.764 +639724.679|220569.199|114.645 +639720.198|220573.198|114.602 +639715.632|220577.270|114.477 +639711.066|220581.342|114.358 +639706.503|220585.411|114.236 +639701.947|220589.474|114.117 +639697.347|220593.574|113.934 +639692.742|220597.679|113.822 +639688.139|220601.785|113.709 +639683.491|220605.927|113.578 +639678.855|220610.060|113.386 +639674.271|220614.145|113.203 +639669.644|220618.269|112.996 +639660.210|220626.684|113.124 +639655.562|220630.830|113.124 +639650.853|220635.024|112.849 +639646.220|220639.154|112.447 +639641.520|220643.339|112.142 +639636.820|220647.530|111.877 +639632.089|220651.748|111.834 +639627.362|220655.963|111.792 +639622.561|220660.246|111.926 +639617.788|220664.501|111.883 +639613.000|220668.774|111.990 +639608.202|220673.057|112.176 +639603.444|220677.299|112.106 +639598.634|220681.588|112.066 +639593.806|220685.898|112.191 +639588.975|220690.208|112.346 +639584.114|220694.545|112.398 +639579.350|220698.794|112.484 +639574.485|220703.134|112.593 +639569.633|220707.466|112.651 +639564.744|220711.830|112.999 +639559.849|220716.201|113.438 +639554.963|220720.566|113.840 +639550.101|220724.900|113.675 +639545.212|220729.268|114.169 +639540.302|220733.651|114.431 +639535.404|220738.022|114.636 +639530.524|220742.374|114.715 +639525.671|220746.703|114.568 +639520.816|220751.034|114.498 +639515.921|220755.395|114.325 +639511.065|220759.727|114.288 +639506.170|220764.091|114.172 +639501.269|220768.459|114.117 +639481.737|220785.866|113.026 +639476.769|220790.298|112.801 +639471.898|220794.639|112.581 +639466.900|220799.098|112.670 +639457.021|220807.913|112.785 +639452.099|220812.299|112.663 +639447.118|220816.743|112.709 +639442.144|220821.181|112.679 +639437.166|220825.622|112.734 +639427.202|220834.510|112.980 +639422.231|220838.944|113.026 +639417.263|220843.376|113.081 +639407.287|220852.276|113.124 +639382.449|220874.411|111.481 +639377.474|220878.840|111.127 +639372.482|220883.293|111.082 +639367.465|220887.773|111.380 +639357.418|220896.738|111.566 +639352.377|220901.233|111.615 +639347.296|220905.775|112.270 +639342.294|220910.240|112.535 +639337.189|220914.800|112.923 +639332.175|220919.284|113.493 +639327.100|220923.816|113.532 +639306.998|220941.754|112.938 +639301.935|220946.271|112.865 +639296.867|220950.800|112.953 +639291.801|220955.320|112.974 +639286.735|220959.844|113.014 +639281.675|220964.364|113.035 +639276.613|220968.881|113.087 +639271.547|220973.410|113.288 +639266.420|220977.991|113.767 +639256.301|220987.029|114.014 +639251.180|220991.607|114.495 +639246.120|220996.127|114.779 +639241.012|221000.693|115.077 +639235.903|221005.259|115.462 +639230.865|221009.752|115.199 +639225.717|221014.351|115.425 +639220.612|221018.914|115.818 +639210.410|221028.030|116.562 +639205.329|221032.569|116.425 +639200.248|221037.101|116.236 +639195.112|221041.686|116.193 +639190.028|221046.221|116.141 +639184.895|221050.805|116.132 +639179.762|221055.389|116.242 +639174.681|221059.922|116.096 +639164.419|221069.087|116.190 +639159.338|221073.623|116.202 +639154.156|221078.252|116.422 +639138.773|221091.987|116.534 +639133.646|221096.568|116.702 +639123.347|221105.758|116.397 +639118.223|221110.324|115.928 +639113.102|221114.890|115.209 +639107.930|221119.477|113.075 +639102.803|221124.021|110.707 +639092.486|221133.211|109.170 +639087.304|221137.844|109.682 +639082.171|221142.425|109.710 +639076.996|221147.061|110.697 +639071.875|221151.652|112.042 +639025.478|221193.153|117.918 +639020.361|221197.725|118.183 +639015.146|221202.383|118.385 +639010.022|221206.958|118.491 +639004.852|221211.575|118.610 +638999.689|221216.190|118.961 +638979.097|221234.597|120.561 +638968.764|221243.826|120.966 +638963.643|221248.398|121.143 +638958.465|221253.019|121.055 +638953.298|221257.637|121.286 +638948.184|221262.212|121.500 +638943.066|221266.787|121.747 +638937.897|221271.408|121.890 +638932.731|221276.028|122.103 +638927.607|221280.607|122.219 +638922.489|221285.185|122.423 +638917.366|221289.763|122.609 +638912.245|221294.341|122.813 +638907.130|221298.916|123.103 +638902.016|221303.491|123.459 +638896.910|221308.060|123.950 +638891.744|221312.678|124.261 +638886.684|221317.207|124.697 +638881.570|221321.782|125.078 +638876.452|221326.357|125.377 +638850.968|221349.144|126.428 +638845.829|221353.737|126.456 +638840.745|221358.282|126.645 +638835.652|221362.833|126.696 +638830.546|221367.395|126.584 +638825.453|221371.946|126.693 +638815.340|221380.990|127.279 +638810.246|221385.543|127.407 +638805.193|221390.057|127.492 +638800.154|221394.565|127.721 +638790.069|221403.584|128.193 +638779.983|221412.604|128.693 +638774.990|221417.069|128.989 +638769.921|221421.598|128.986 +638764.919|221426.070|129.211 +638759.924|221430.535|129.537 +638754.916|221435.012|129.720 +638749.899|221439.496|129.833 +638744.888|221443.980|130.004 +638739.914|221448.424|130.089 +638734.891|221452.913|130.199 +638729.910|221457.363|130.266 +638724.866|221461.871|130.199 +638719.870|221466.334|130.162 +638714.853|221470.814|129.912 +638709.872|221475.264|130.077 +638669.767|221511.066|127.489 +638664.844|221515.465|127.498 +638635.169|221541.982|127.638 +638630.164|221546.454|127.519 +638625.254|221550.837|127.401 +638610.370|221564.123|126.398 +638595.386|221577.485|124.557 +638590.382|221581.951|123.914 +638585.505|221586.306|123.904 +638580.634|221590.659|123.938 +638575.757|221595.014|123.953 +638556.338|221612.379|124.776 +638531.595|221634.443|121.518 +638526.715|221638.799|121.070 +638521.804|221643.185|120.777 +638516.897|221647.562|120.223 +638511.917|221652.003|119.549 +638507.046|221656.346|118.976 +638502.126|221660.736|118.427 +638497.207|221665.125|117.909 +638492.355|221669.453|117.528 +638487.502|221673.787|117.165 +638482.641|221678.124|116.778 +638477.828|221682.422|116.714 +638473.018|221686.723|116.672 +638468.239|221690.990|116.544 +638463.484|221695.239|116.583 +638458.644|221699.561|116.437 +638453.861|221703.834|116.358 +638449.119|221708.071|116.220 +638444.327|221712.351|116.141 +638439.575|221716.593|116.007 +638434.817|221720.845|115.861 +638430.059|221725.094|115.739 +638425.298|221729.346|115.614 +638420.580|221733.562|115.465 +638415.822|221737.811|115.413 +638411.150|221741.986|115.559 +638406.416|221746.217|115.388 +638391.929|221759.131|113.255 +638363.366|221784.610|109.990 +638358.651|221788.816|109.634 +638353.966|221792.998|109.195 +638349.159|221797.277|108.174 +638344.438|221801.493|107.860 +638335.181|221809.759|107.442 +638330.554|221813.889|107.140 +638325.885|221818.058|106.915 +638316.604|221826.343|106.305 +638293.661|221846.826|105.150 +638289.007|221850.974|104.443 +638262.120|221875.001|104.592 +638253.107|221883.048|104.089 +638248.703|221886.983|104.205 +638244.250|221890.961|104.114 +638235.328|221898.928|103.699 +638210.094|221921.520|107.970 +638201.386|221929.289|107.802 +638197.070|221933.142|107.787 +638192.864|221936.897|108.027 +638188.609|221940.701|108.287 +638184.241|221944.593|107.896 +638179.858|221948.498|107.244 +638171.250|221956.176|106.842 +638166.870|221960.077|106.266 +638162.579|221963.902|106.052 +638158.330|221967.694|105.805 +638154.081|221971.483|105.589 +638150.067|221975.076|106.305 +638145.720|221978.950|105.726 +638141.648|221982.587|106.028 +638137.530|221986.266|106.168 +638133.586|221989.792|106.784 +638129.157|221993.733|105.751 +638116.758|222004.798|105.540 +638108.327|222012.305|104.455 +638104.173|222016.011|104.166 +638100.098|222019.647|103.974 +638223.554|221906.972|107.128 +638231.707|221899.641|104.632 +638235.920|221895.865|103.846 +638240.324|221891.927|103.910 +638249.151|221884.036|103.937 +638253.604|221880.052|104.038 +638258.198|221875.952|104.537 +638262.700|221871.929|104.653 +638267.265|221867.851|105.083 +638276.242|221859.825|105.299 +638294.103|221843.838|104.312 +638298.885|221839.574|105.400 +638303.390|221835.548|105.458 +638312.699|221827.233|106.314 +638317.271|221823.146|106.250 +638321.941|221818.973|106.686 +638326.619|221814.794|106.927 +638340.503|221802.383|107.311 +638345.273|221798.124|107.835 +638359.562|221785.366|109.469 +638364.347|221781.095|110.176 +638369.081|221776.862|110.396 +638373.836|221772.613|111.018 +638378.667|221768.297|111.514 +638388.204|221759.774|112.468 +638417.172|221733.888|115.437 +638421.930|221729.633|115.501 +638426.746|221725.323|115.629 +638431.504|221721.065|115.745 +638436.305|221716.770|115.827 +638441.108|221712.472|115.934 +638445.897|221708.187|115.998 +638450.737|221703.859|116.080 +638455.580|221699.525|116.199 +638460.411|221695.202|116.288 +638465.243|221690.880|116.379 +638470.074|221686.558|116.495 +638474.941|221682.203|116.556 +638479.812|221677.844|116.656 +638484.686|221673.485|116.793 +638489.633|221669.063|117.104 +638494.549|221664.671|117.543 +638499.517|221660.230|118.040 +638504.495|221655.783|118.613 +638509.478|221651.329|119.265 +638514.523|221646.828|119.997 +638519.448|221642.423|120.344 +638524.404|221637.997|120.902 +638529.367|221633.560|121.222 +638554.488|221611.123|124.612 +638574.139|221593.530|123.953 +638579.119|221589.068|123.615 +638584.036|221584.666|123.545 +638589.043|221580.189|123.801 +638594.115|221575.660|124.554 +638624.330|221548.657|127.020 +638639.442|221535.142|127.742 +638644.474|221530.638|127.730 +638649.501|221526.142|127.681 +638659.504|221517.184|127.239 +638664.533|221512.682|127.300 +638669.541|221508.201|127.175 +638674.598|221503.675|127.090 +638679.639|221499.170|127.754 +638689.832|221490.059|128.376 +638694.892|221485.533|128.422 +638705.118|221476.398|129.568 +638710.214|221471.845|130.040 +638715.243|221467.343|129.894 +638720.306|221462.813|130.095 +638725.350|221458.299|130.171 +638730.447|221453.742|130.266 +638740.517|221444.720|129.836 +638745.592|221440.179|129.812 +638750.652|221435.646|129.644 +638755.715|221431.111|129.546 +638760.762|221426.591|129.275 +638765.816|221422.065|129.089 +638770.860|221417.547|128.830 +638775.911|221413.024|128.653 +638780.995|221408.467|128.318 +638786.103|221403.892|128.294 +638791.135|221399.384|127.934 +638796.177|221394.870|127.705 +638801.258|221390.320|127.379 +638806.351|221385.757|127.251 +638811.450|221381.191|127.202 +638821.600|221372.096|126.504 +638826.700|221367.533|126.492 +638831.793|221362.973|126.416 +638841.985|221353.847|126.465 +638847.072|221349.293|126.349 +638852.199|221344.703|126.160 +638857.274|221340.155|125.928 +638862.398|221335.568|125.715 +638867.525|221330.978|125.538 +638872.557|221326.470|125.447 +638877.677|221321.886|125.203 +638882.798|221317.298|124.980 +638887.855|221312.766|124.511 +638918.539|221285.276|122.737 +638923.647|221280.698|122.377 +638928.765|221276.114|122.131 +638933.880|221271.533|121.878 +638939.043|221266.906|121.695 +638944.115|221262.367|121.564 +638949.281|221257.740|121.384 +638954.396|221253.159|121.189 +638959.510|221248.578|120.997 +638964.671|221243.957|120.686 +638969.797|221239.370|120.823 +638974.915|221234.789|120.701 +638980.075|221230.165|120.430 +638990.292|221221.009|119.729 +638995.440|221216.391|119.022 +639000.600|221211.767|118.686 +639005.724|221207.183|118.836 +639010.887|221202.559|118.531 +639016.048|221197.935|118.199 +639021.114|221193.397|118.031 +639041.712|221174.941|116.440 +639077.663|221142.675|110.067 +639082.787|221138.073|108.817 +639087.965|221133.446|109.420 +639093.098|221128.855|109.713 +639098.228|221124.287|111.213 +639103.401|221119.678|113.041 +639113.639|221110.555|116.028 +639118.808|221105.941|116.623 +639129.050|221096.778|116.815 +639134.170|221092.194|116.766 +639139.297|221087.610|116.635 +639149.593|221078.396|116.553 +639154.671|221073.848|116.269 +639159.801|221069.258|116.129 +639164.928|221064.668|115.974 +639170.057|221060.077|115.931 +639175.132|221055.542|116.169 +639180.259|221050.951|116.102 +639185.343|221046.401|116.004 +639190.470|221041.817|116.156 +639195.551|221037.272|116.187 +639205.762|221028.137|116.254 +639210.806|221023.623|116.031 +639215.896|221019.063|115.827 +639220.996|221014.497|115.507 +639226.046|221009.974|115.169 +639231.118|221005.442|115.638 +639236.220|221000.873|115.294 +639241.280|220996.343|114.928 +639246.383|220991.771|114.651 +639251.390|220987.288|114.404 +639256.462|220982.740|113.822 +639261.498|220978.241|114.172 +639266.576|220973.691|113.572 +639271.647|220969.146|113.136 +639276.661|220964.659|112.993 +639281.721|220960.133|112.950 +639286.729|220955.649|112.916 +639291.746|220951.163|112.825 +639296.769|220946.664|112.606 +639301.783|220942.177|112.575 +639321.714|220924.356|113.288 +639326.670|220919.924|113.508 +639336.664|220910.975|112.810 +639351.679|220897.524|111.639 +639356.571|220893.147|111.575 +639361.561|220888.682|111.523 +639366.514|220884.247|111.316 +639371.473|220879.803|111.045 +639376.404|220875.395|111.210 +639400.822|220853.578|113.404 +639405.751|220849.161|113.090 +639420.494|220835.970|112.846 +639425.355|220831.620|112.855 +639435.103|220822.897|112.706 +639440.019|220818.495|112.709 +639444.844|220814.179|112.688 +639459.429|220801.131|112.645 +639464.269|220796.797|112.538 +639469.082|220792.496|112.767 +639473.919|220788.165|112.734 +639478.680|220783.910|113.011 +639483.523|220779.578|113.005 +639502.580|220762.552|114.227 +639507.386|220758.255|114.197 +639516.911|220749.741|114.523 +639521.663|220745.493|114.599 +639526.452|220741.213|114.800 +639545.526|220724.150|114.005 +639550.345|220719.834|113.642 +639555.088|220715.592|113.532 +639559.870|220711.312|113.151 +639564.658|220707.024|112.740 +639569.413|220702.772|112.615 +639574.110|220698.568|112.572 +639578.856|220694.326|112.578 +639583.596|220690.083|112.258 +639588.314|220685.864|112.124 +639593.020|220681.655|112.109 +639597.738|220677.437|112.036 +639602.435|220673.236|112.130 +639607.129|220669.036|111.895 +639621.193|220656.460|111.862 +639625.850|220652.294|111.636 +639630.511|220648.127|111.746 +639639.706|220639.910|112.231 +639644.352|220635.761|112.508 +639662.771|220619.302|113.221 +639667.388|220615.169|113.099 +639671.918|220611.121|113.249 +639676.542|220606.988|113.456 +639681.120|220602.901|113.669 +639685.655|220598.844|113.822 +639690.206|220594.778|113.913 +639694.805|220590.666|114.029 +639699.356|220586.600|114.154 +639703.916|220582.525|114.245 +639708.424|220578.495|114.358 +639712.974|220574.429|114.538 +639717.546|220570.339|114.593 +639735.694|220554.114|114.681 +639740.233|220550.054|114.447 +639744.704|220546.055|114.608 +639749.176|220542.059|114.794 +639753.671|220538.042|114.873 +639758.167|220534.022|114.943 +639767.113|220526.024|114.864 +639780.521|220514.030|114.636 +639793.881|220502.079|114.297 +639798.236|220498.186|114.465 +639802.619|220494.267|114.504 +639833.596|220466.542|112.474 +639837.955|220462.644|112.273 +639842.182|220458.870|112.752 +639846.547|220454.966|112.551 +639855.155|220447.269|112.313 +639859.401|220443.475|112.487 +639867.889|220435.888|112.426 +639876.549|220428.134|111.600 +639885.031|220420.548|111.197 +639893.377|220413.086|111.267 +639897.507|220409.395|111.167 +639901.676|220405.667|111.127 +639851.948|220447.958|112.432 +639847.809|220451.649|112.234 +639839.454|220459.108|112.535 +639835.376|220462.738|111.825 +639831.118|220466.545|112.292 +639801.022|220493.432|114.440 +639796.740|220497.254|114.389 +639792.488|220501.045|114.197 +639788.108|220504.956|114.416 +639783.746|220508.854|114.575 +639779.400|220512.732|114.651 +639766.260|220524.463|115.013 +639761.953|220528.304|114.678 +639753.162|220536.146|114.443 +639748.724|220540.109|114.605 +639744.299|220544.059|114.416 +639739.894|220547.988|114.410 +639735.453|220551.950|114.352 +639730.909|220556.007|114.599 +639717.434|220568.035|114.568 +639712.904|220572.079|114.532 +639708.399|220576.097|114.346 +639703.836|220580.169|114.230 +639699.319|220584.198|114.163 +639694.759|220588.264|114.047 +639690.206|220592.324|113.922 +639685.606|220596.430|113.800 +639681.056|220600.490|113.691 +639676.465|220604.583|113.535 +639671.887|220608.668|113.322 +639667.254|220612.801|113.154 +639662.621|220616.931|112.990 +639657.955|220621.097|113.093 +639639.301|220637.733|112.203 +639629.898|220646.118|111.709 +639620.382|220654.610|111.700 +639615.584|220658.896|111.856 +639610.814|220663.151|111.810 +639606.047|220667.406|111.786 +639601.231|220671.703|111.764 +639586.732|220684.645|111.871 +639581.895|220688.964|112.097 +639576.985|220693.353|112.548 +639572.141|220697.675|112.490 +639567.283|220702.013|112.584 +639562.372|220706.399|112.727 +639557.441|220710.803|113.057 +639552.472|220715.247|113.727 +639547.602|220719.594|113.630 +639542.630|220724.035|113.971 +639537.705|220728.436|114.376 +639532.755|220732.855|114.602 +639517.966|220746.050|114.471 +639513.013|220750.470|114.395 +639508.109|220754.847|114.349 +639498.221|220763.671|114.148 +639488.336|220772.483|113.538 +639478.452|220781.300|113.002 +639473.441|220785.769|112.697 +639468.457|220790.216|112.639 +639463.483|220794.651|112.502 +639458.505|220799.095|112.429 +639453.464|220803.594|112.517 +639448.417|220808.099|112.697 +639438.376|220817.060|112.590 +639433.350|220821.546|112.627 +639428.336|220826.021|112.569 +639423.310|220830.504|112.654 +639418.247|220835.025|112.651 +639413.224|220839.511|112.779 +639403.141|220848.512|112.974 +639398.064|220853.044|113.224 +639393.034|220857.531|112.935 +639377.983|220870.948|111.688 +639372.981|220875.405|111.112 +639367.937|220879.903|111.075 +639357.781|220888.974|111.414 +639352.724|220893.488|111.639 +639347.643|220898.024|111.584 +639342.568|220902.559|112.170 +639337.460|220907.128|112.630 +639332.406|220911.639|112.962 +639312.171|220929.684|112.731 +639302.051|220938.703|112.353 +639296.979|220943.229|112.410 +639291.911|220947.752|112.487 +639286.836|220952.278|112.648 +639281.764|220956.805|112.849 +639276.701|220961.322|112.862 +639271.590|220965.882|112.932 +639266.560|220970.374|113.349 +639261.434|220974.949|113.770 +639256.383|220979.454|113.681 +639251.311|220983.981|114.090 +639246.197|220988.550|114.459 +639241.186|220993.021|114.687 +639236.074|220997.587|115.065 +639231.014|221002.104|115.410 +639225.955|221006.618|115.715 +639220.880|221011.138|115.224 +639215.823|221015.653|115.586 +639210.724|221020.203|115.806 +639205.631|221024.751|115.964 +639200.571|221029.271|116.614 +639195.496|221033.791|116.181 +639190.458|221038.284|116.160 +639185.374|221042.816|115.995 +639180.293|221047.349|115.891 +639175.251|221051.845|116.001 +639170.167|221056.377|116.022 +639165.132|221060.867|115.967 +639160.048|221065.405|116.080 +639154.964|221069.941|116.190 +639149.880|221074.479|116.403 +639144.796|221079.014|116.568 +639139.715|221083.544|116.565 +639134.682|221088.037|116.733 +639129.555|221092.609|116.751 +639119.396|221101.667|116.687 +639109.244|221110.711|115.949 +639073.567|221142.456|110.246 +639058.250|221156.166|113.867 +639053.224|221160.655|114.568 +639048.104|221165.230|115.166 +639042.986|221169.802|115.766 +639032.784|221178.904|116.056 +639022.610|221187.999|117.693 +639017.493|221192.568|117.970 +639012.372|221197.140|118.180 +639007.303|221201.663|118.610 +638997.056|221210.804|118.741 +638991.941|221215.373|119.080 +638971.529|221233.597|120.552 +638966.457|221238.120|120.762 +638961.333|221242.692|120.792 +638956.212|221247.261|121.049 +638951.140|221251.788|121.234 +638946.017|221256.360|121.402 +638935.782|221265.495|121.945 +638910.279|221288.254|123.267 +638905.158|221292.823|123.557 +638900.038|221297.392|123.807 +638894.972|221301.915|124.218 +638889.894|221306.445|124.398 +638884.773|221311.017|124.694 +638879.656|221315.585|125.008 +638874.578|221320.115|125.243 +638869.445|221324.693|125.377 +638864.352|221329.234|125.377 +638859.231|221333.806|125.724 +638854.150|221338.342|125.922 +638849.066|221342.877|126.114 +638843.927|221347.462|126.251 +638838.885|221351.960|126.343 +638833.743|221356.545|126.450 +638818.430|221370.200|126.450 +638813.413|221374.680|126.974 +638808.317|221379.228|127.148 +638798.164|221388.283|127.373 +638793.080|221392.822|127.724 +638782.942|221401.868|128.272 +638777.892|221406.376|128.458 +638772.838|221410.884|128.665 +638767.779|221415.399|128.809 +638762.734|221419.900|129.132 +638757.684|221424.408|129.412 +638747.598|221433.403|129.656 +638727.463|221451.368|130.211 +638722.409|221455.873|130.074 +638717.358|221460.375|130.001 +638712.296|221464.886|129.830 +638702.219|221473.868|129.586 +638692.054|221482.918|128.632 +638687.019|221487.408|128.394 +638676.948|221496.375|127.583 +638661.885|221509.801|127.209 +638656.919|221514.230|127.318 +638651.948|221518.665|127.385 +638646.974|221523.100|127.462 +638642.018|221527.516|127.312 +638627.140|221540.781|127.300 +638617.180|221549.657|126.818 +638582.228|221580.780|123.487 +638577.354|221585.124|123.539 +638572.438|221589.510|123.648 +638552.989|221606.874|124.365 +638538.178|221620.069|122.957 +638533.173|221624.519|121.990 +638528.214|221628.936|121.353 +638523.286|221633.328|120.942 +638518.400|221637.684|120.506 +638513.489|221642.057|119.954 +638508.573|221646.437|119.381 +638503.644|221650.827|118.772 +638498.716|221655.216|118.199 +638493.839|221659.559|117.659 +638488.926|221663.939|117.220 +638484.107|221668.231|116.778 +638479.218|221672.589|116.562 +638474.435|221676.853|116.385 +638469.662|221681.112|116.300 +638464.837|221685.415|116.208 +638460.064|221689.673|116.163 +638455.291|221693.931|116.141 +638450.505|221698.202|116.050 +638445.769|221702.426|115.980 +638440.987|221706.690|115.958 +638436.241|221710.924|115.873 +638431.480|221715.170|115.733 +638426.826|221719.324|115.919 +638422.010|221723.622|115.788 +638412.546|221732.059|115.407 +638407.754|221736.326|114.934 +638402.960|221740.599|114.453 +638393.297|221749.201|112.929 +638374.211|221766.200|110.938 +638350.503|221787.316|108.457 +638336.376|221799.901|106.714 +638331.816|221803.971|107.003 +638327.287|221808.015|107.192 +638313.278|221820.494|105.620 +638308.645|221824.621|105.406 +638304.253|221828.550|106.083 +638295.121|221836.691|105.638 +638281.393|221848.929|104.842 +638277.016|221852.839|105.446 +638272.542|221856.832|105.379 +638268.040|221860.843|105.217 +638258.987|221868.914|104.711 +638254.510|221872.904|104.483 +638249.959|221876.961|104.166 +638245.487|221880.948|103.992 +638236.581|221888.888|103.644 +638232.454|221892.585|104.778 +638228.336|221896.276|105.958 +638215.876|221907.432|108.637 +638211.572|221911.276|108.838 +638207.281|221915.107|108.890 +638202.962|221918.963|108.826 +638198.563|221922.882|108.466 +638194.174|221926.799|108.146 +638189.925|221930.591|108.219 +638181.373|221938.229|108.162 +638176.938|221942.176|107.525 +638172.613|221946.035|107.122 +638168.303|221949.879|106.811 +638164.017|221953.701|106.613 +638151.240|221965.100|105.997 +638147.122|221968.779|106.101 +638142.901|221972.544|106.025 +638138.694|221976.296|105.818 +638134.595|221979.959|106.025 +638130.642|221983.498|106.613 +638126.396|221987.281|106.083 +638105.566|222005.855|104.601 +638101.454|222009.522|104.269 +638097.315|222013.213|104.065 +638093.355|222016.752|104.123 +638223.389|221898.556|107.537 +638227.468|221894.890|106.409 +638231.695|221891.092|105.485 +638235.840|221887.367|104.199 +638240.126|221883.523|103.532 +638244.610|221879.518|103.964 +638253.604|221871.475|104.339 +638276.315|221851.166|105.303 +638312.653|221818.656|105.373 +638322.032|221810.274|106.177 +638336.007|221797.786|107.235 +638345.422|221789.374|107.942 +638354.810|221780.979|108.619 +638364.375|221772.445|109.740 +638373.897|221763.947|110.774 +638393.127|221746.787|113.029 +638402.780|221738.176|114.236 +638407.602|221733.866|114.605 +638412.430|221729.560|115.004 +638417.243|221725.265|115.641 +638422.004|221721.010|115.727 +638426.826|221716.700|115.907 +638431.568|221712.463|115.934 +638436.305|221708.227|115.967 +638441.148|221703.901|116.025 +638455.559|221691.021|116.275 +638460.314|221686.766|116.220 +638465.087|221682.498|115.986 +638469.930|221678.173|116.172 +638474.786|221673.830|116.178 +638479.684|221669.456|116.446 +638484.573|221665.094|116.989 +638489.474|221660.714|117.348 +638494.436|221656.285|117.784 +638499.310|221651.936|118.327 +638504.288|221647.495|118.906 +638509.259|221643.057|119.494 +638514.224|221638.628|120.070 +638519.177|221634.209|120.582 +638524.106|221629.807|120.988 +638529.104|221625.348|121.542 +638534.067|221620.916|121.893 +638539.087|221616.439|122.652 +638544.119|221611.952|123.536 +638549.118|221607.487|123.895 +638568.774|221589.912|123.551 +638573.678|221585.526|123.353 +638578.598|221581.128|123.280 +638583.621|221576.641|123.639 +638593.667|221567.677|124.782 +638608.761|221554.202|125.992 +638618.786|221545.247|126.562 +638623.833|221540.739|126.962 +638633.870|221531.774|127.367 +638638.909|221527.273|127.379 +638643.877|221522.829|127.266 +638648.915|221518.324|127.327 +638653.890|221513.880|127.263 +638679.078|221491.367|127.599 +638699.418|221473.213|129.543 +638709.580|221464.130|129.708 +638714.637|221459.613|129.830 +638724.799|221450.533|130.177 +638729.877|221445.991|130.098 +638739.935|221436.994|129.519 +638744.961|221432.501|129.467 +638750.057|221427.947|129.668 +638755.175|221423.372|129.613 +638760.168|221418.904|129.269 +638765.264|221414.347|129.007 +638770.311|221409.830|128.763 +638775.408|221405.273|128.534 +638780.537|221400.698|129.269 +638795.668|221387.150|127.398 +638810.911|221373.516|127.053 +638815.980|221368.980|126.562 +638831.272|221355.310|126.404 +638836.414|221350.714|126.352 +638841.501|221346.163|126.221 +638846.579|221341.618|125.992 +638851.690|221337.046|125.493 +638866.997|221323.361|125.240 +638872.090|221318.807|125.307 +638882.286|221309.688|124.859 +638887.401|221305.113|124.484 +638892.521|221300.531|124.285 +638897.584|221296.002|123.856 +638907.822|221286.843|123.402 +638912.891|221282.307|123.146 +638918.057|221277.687|122.883 +638933.346|221264.007|121.871 +638943.588|221254.851|121.503 +638948.702|221250.273|121.213 +638953.820|221245.698|121.042 +638958.934|221241.120|120.783 +638964.052|221236.545|120.521 +638969.169|221231.966|120.332 +638974.284|221227.391|120.091 +638984.519|221218.238|119.686 +638989.625|221213.666|119.140 +638994.739|221209.091|118.778 +639010.092|221195.360|118.189 +639015.207|221190.782|117.854 +639020.376|221186.161|117.696 +639025.484|221181.586|117.059 +639030.535|221177.051|115.669 +639035.896|221172.256|115.233 +639056.138|221154.145|113.831 +639061.256|221149.558|112.953 +639066.422|221144.925|111.969 +639071.494|221140.371|110.283 +639076.621|221135.781|109.811 +639081.754|221131.196|110.097 +639086.893|221126.640|112.855 +639092.019|221122.055|112.578 +639117.589|221099.250|116.696 +639127.830|221090.094|116.989 +639132.908|221085.549|116.784 +639138.035|221080.962|116.559 +639143.113|221076.421|116.513 +639148.240|221071.830|116.330 +639153.367|221067.243|116.193 +639158.448|221062.695|116.053 +639163.577|221058.105|115.916 +639168.707|221053.518|115.867 +639173.788|221048.973|115.827 +639178.918|221044.386|115.910 +639183.996|221039.845|116.001 +639189.062|221035.327|116.760 +639194.207|221030.719|116.230 +639199.248|221026.205|115.995 +639204.387|221021.608|115.861 +639209.477|221017.052|115.708 +639214.525|221012.531|115.391 +639219.645|221007.959|115.879 +639224.745|221003.396|115.635 +639229.847|220998.831|115.337 +639234.907|220994.298|114.895 +639239.963|220989.769|114.578 +639245.069|220985.203|114.364 +639250.183|220980.622|113.944 +639255.246|220976.089|113.636 +639260.324|220971.554|114.120 +639265.417|220966.985|113.206 +639270.486|220962.450|112.913 +639275.598|220957.878|112.819 +639280.663|220953.342|112.645 +639285.735|220948.804|112.404 +639290.752|220944.314|112.295 +639295.818|220939.785|112.289 +639300.887|220935.249|112.170 +639305.947|220930.726|112.313 +639311.000|220926.209|112.532 +639316.008|220921.731|112.727 +639336.168|220903.699|112.493 +639341.166|220899.225|112.212 +639346.244|220894.674|111.508 +639351.237|220890.206|111.386 +639356.275|220885.698|111.341 +639361.265|220881.235|111.341 +639366.267|220876.758|111.152 +639376.218|220867.864|111.612 +639386.088|220859.052|112.587 +639391.077|220854.590|112.676 +639395.976|220850.210|112.746 +639400.971|220845.744|112.834 +639405.882|220841.352|112.788 +639415.812|220832.467|112.618 +639420.725|220828.072|112.615 +639425.645|220823.671|112.542 +639430.613|220819.227|112.538 +639440.394|220810.479|112.627 +639445.341|220806.053|112.404 +639450.227|220801.682|112.313 +639455.110|220797.315|112.276 +639464.864|220788.591|112.398 +639469.777|220784.202|112.630 +639474.602|220779.886|112.746 +639479.396|220775.604|113.221 +639484.212|220771.300|113.462 +639489.019|220767.005|113.843 +639493.862|220762.674|113.877 +639498.684|220758.361|114.130 +639503.488|220754.067|114.133 +639517.908|220741.170|114.581 +639527.485|220732.602|114.590 +639532.267|220728.323|114.471 +639537.089|220724.004|114.041 +639541.899|220719.694|113.727 +639546.687|220715.412|113.648 +639551.464|220711.132|113.264 +639556.252|220706.844|112.831 +639561.056|220702.546|112.691 +639565.804|220698.294|112.615 +639575.305|220689.790|112.127 +639580.048|220685.544|111.801 +639589.481|220677.098|111.581 +639594.145|220672.926|111.545 +639598.848|220668.722|111.615 +639603.548|220664.516|111.709 +639608.169|220660.380|111.667 +639612.844|220656.198|111.621 +639626.871|220643.646|111.283 +639631.437|220639.565|111.725 +639640.578|220631.393|112.270 +639654.273|220619.147|112.801 +639658.845|220615.062|112.980 +639663.429|220610.963|113.090 +639667.949|220606.921|113.300 +639672.479|220602.867|113.453 +639676.990|220598.838|113.761 +639681.543|220594.763|113.806 +639686.088|220590.700|113.928 +639690.550|220586.707|113.956 +639695.095|220582.644|114.120 +639699.600|220578.614|114.215 +639704.059|220574.624|114.309 +639708.585|220570.577|114.331 +639713.054|220566.578|114.404 +639717.534|220562.569|114.416 +639722.064|220558.516|114.172 +639726.480|220554.565|114.306 +639731.006|220550.515|114.133 +639735.344|220546.638|114.459 +639753.144|220530.709|114.255 +639770.719|220514.990|114.745 +639783.917|220503.176|114.358 +639788.312|220499.238|114.017 +639792.643|220495.367|114.312 +639796.974|220491.493|114.352 +639818.990|220471.766|112.392 +639823.318|220467.892|112.289 +639827.573|220464.085|112.316 +639831.908|220460.208|112.225 +639844.791|220448.684|111.874 +639865.945|220429.771|111.920 +639870.273|220425.891|111.264 +639874.528|220422.084|110.972 +639878.694|220418.359|111.121 +639882.937|220414.561|110.929 +639887.153|220410.791|110.877 +639891.316|220407.069|110.847 +639895.504|220403.323|110.710 +639899.677|220399.593|110.676 +639845.090|220446.544|111.801 +639832.066|220458.154|112.243 +639827.750|220461.994|112.206 +639823.422|220465.853|112.264 +639819.158|220469.651|112.011 +639814.778|220473.552|112.087 +639810.361|220477.490|112.377 +639796.904|220489.503|114.209 +639792.518|220493.410|114.163 +639788.166|220497.284|113.950 +639783.786|220501.189|113.904 +639779.323|220505.166|114.309 +639774.885|220509.120|114.334 +639770.463|220513.064|114.572 +639766.001|220517.044|114.776 +639757.155|220524.917|114.489 +639752.769|220528.822|114.319 +639726.090|220552.587|113.968 +639721.582|220556.605|114.032 +639717.193|220560.512|113.718 +639712.557|220564.648|114.273 +639708.079|220568.635|114.218 +639703.602|220572.625|114.181 +639699.082|220576.648|114.102 +639694.564|220580.675|114.038 +639690.017|220584.728|113.880 +639685.500|220588.755|113.840 +639680.998|220592.769|113.745 +639676.496|220596.780|113.648 +639671.918|220600.859|113.416 +639667.385|220604.897|113.236 +639662.862|220608.927|113.029 +639658.266|220613.023|112.953 +639653.703|220617.089|112.700 +639649.109|220621.183|112.654 +639639.932|220629.357|112.228 +639635.345|220633.445|111.862 +639630.742|220637.544|111.609 +639626.128|220641.659|111.472 +639612.149|220654.119|111.374 +639607.416|220658.341|111.435 +639602.743|220662.507|111.447 +639598.065|220666.677|111.508 +639593.316|220670.911|111.392 +639588.600|220675.114|111.399 +639583.870|220679.332|111.551 +639579.100|220683.591|111.667 +639574.360|220687.818|111.926 +639569.563|220692.104|112.310 +639559.980|220700.650|112.615 +639555.176|220704.936|112.731 +639550.354|220709.236|112.987 +639545.514|220713.559|113.444 +639540.704|220717.853|113.691 +639535.846|220722.184|113.919 +639530.917|220726.586|114.386 +639521.246|220735.215|114.654 +639516.396|220739.534|114.480 +639511.535|220743.871|114.471 +639506.688|220748.190|114.337 +639501.851|220752.500|114.142 +639496.953|220756.865|114.072 +639492.122|220761.168|113.849 +639487.193|220765.561|113.645 +639482.335|220769.892|113.279 +639472.545|220778.609|112.764 +639462.715|220787.369|112.270 +639457.753|220791.798|112.520 +639452.839|220796.175|112.276 +639447.813|220800.655|112.240 +639442.875|220805.060|112.307 +639437.843|220809.549|112.386 +639422.862|220822.909|112.548 +639417.836|220827.392|112.645 +639412.831|220831.852|112.538 +639402.748|220840.846|112.682 +639397.743|220845.309|112.642 +639392.693|220849.811|112.581 +639387.700|220854.261|112.441 +639382.619|220858.787|112.194 +639377.593|220863.267|111.917 +639372.579|220867.727|111.432 +639357.357|220881.299|111.310 +639352.267|220885.841|111.353 +639347.168|220890.389|111.505 +639342.029|220894.973|111.591 +639336.908|220899.545|112.139 +639331.797|220904.111|112.627 +639326.658|220908.701|112.825 +639311.354|220922.353|112.517 +639306.245|220926.907|112.282 +639301.134|220931.467|112.161 +639296.019|220936.029|112.093 +639290.850|220940.641|112.167 +639285.732|220945.210|112.231 +639280.612|220949.782|112.417 +639275.436|220954.403|112.700 +639270.319|220958.972|112.834 +639265.152|220963.586|113.102 +639259.952|220968.241|114.099 +639254.871|220972.767|113.578 +639249.711|220977.373|113.761 +639244.545|220981.990|114.154 +639239.381|220986.599|114.492 +639234.227|220991.204|114.736 +639229.021|220995.853|115.041 +639223.913|221000.416|115.437 +639218.710|221005.061|115.724 +639213.565|221009.654|115.894 +639208.438|221014.223|115.437 +639203.244|221018.862|115.669 +639198.099|221023.455|115.928 +639192.960|221028.043|116.007 +639187.772|221032.676|116.184 +639182.627|221037.272|116.598 +639177.507|221041.832|115.998 +639172.328|221046.450|115.827 +639167.147|221051.076|115.913 +639162.014|221055.655|115.873 +639156.829|221060.281|116.053 +639151.696|221064.863|116.190 +639146.566|221069.444|116.367 +639141.388|221074.068|116.409 +639136.206|221078.691|116.690 +639131.076|221083.273|116.842 +639125.901|221087.893|116.973 +639115.602|221097.080|116.720 +639110.475|221101.652|116.669 +639105.299|221106.267|116.537 +639100.176|221110.833|115.934 +639095.000|221115.441|115.394 +639089.870|221119.989|113.197 +639084.692|221124.607|112.852 +639079.553|221129.160|110.539 +639074.365|221133.775|109.286 +639069.235|221138.362|110.335 +639064.069|221142.998|112.139 +639048.643|221156.781|113.514 +639043.519|221161.359|113.938 +639028.157|221175.088|115.565 +639023.006|221179.699|116.797 +639007.702|221193.373|118.043 +639002.591|221197.942|118.540 +638992.343|221207.086|118.787 +638987.226|221211.658|119.089 +638971.971|221225.282|119.902 +638966.853|221229.851|120.195 +638961.735|221234.420|120.472 +638946.477|221248.045|121.250 +638941.457|221252.528|121.524 +638936.333|221257.100|121.658 +638931.258|221261.633|121.841 +638926.196|221266.156|122.228 +638921.133|221270.679|122.679 +638916.061|221275.209|122.883 +638910.995|221279.732|123.228 +638905.917|221284.264|123.392 +638900.894|221288.751|123.618 +638895.819|221293.280|123.859 +638890.741|221297.816|123.978 +638885.724|221302.296|124.410 +638880.655|221306.822|124.734 +638875.586|221311.352|125.054 +638860.468|221324.842|125.255 +638845.320|221338.366|125.861 +638835.246|221347.364|126.197 +638830.153|221351.909|126.303 +638815.038|221365.396|126.294 +638810.067|221369.837|126.782 +638794.973|221383.312|127.276 +638789.931|221387.814|127.562 +638779.907|221396.766|128.248 +638774.950|221401.192|128.409 +638764.901|221410.165|128.894 +638759.906|221414.627|129.208 +638749.911|221423.546|129.324 +638744.873|221428.048|129.738 +638739.874|221432.504|129.586 +638734.857|221436.985|129.729 +638724.869|221445.900|130.119 +638719.870|221450.362|130.016 +638714.877|221454.815|130.037 +638709.793|221459.348|129.638 +638699.771|221468.284|129.415 +638684.675|221481.738|128.257 +638664.524|221499.697|126.639 +638659.553|221504.132|126.684 +638649.653|221512.974|127.163 +638634.764|221526.261|127.294 +638629.826|221530.665|127.321 +638624.803|221535.146|127.081 +638614.817|221544.046|126.386 +638609.852|221548.468|125.919 +638604.853|221552.931|125.956 +638599.943|221557.311|125.971 +638594.871|221561.828|125.139 +638589.891|221566.263|124.691 +638579.860|221575.199|123.691 +638574.861|221579.653|123.182 +638569.960|221584.023|123.039 +638565.050|221588.403|123.228 +638560.127|221592.792|123.344 +638555.272|221597.127|123.575 +638550.352|221601.507|123.417 +638545.390|221605.926|122.978 +638540.416|221610.355|122.481 +638535.508|221614.726|122.146 +638530.525|221619.161|121.649 +638525.614|221623.535|121.338 +638520.689|221627.921|120.963 +638515.775|221632.298|120.680 +638510.862|221636.675|120.427 +638505.940|221641.055|119.835 +638501.072|221645.392|119.598 +638496.091|221649.824|119.012 +638491.148|221654.222|118.363 +638486.316|221658.529|118.116 +638481.382|221662.918|117.595 +638476.459|221667.298|116.858 +638471.467|221671.739|116.035 +638466.654|221676.027|116.025 +638461.908|221680.258|116.120 +638457.068|221684.577|116.266 +638447.403|221693.185|115.556 +638437.878|221701.679|115.736 +638433.114|221705.925|115.849 +638418.779|221718.696|115.202 +638389.908|221744.397|112.383 +638375.561|221757.168|110.966 +638342.438|221786.655|107.887 +638337.680|221790.888|107.427 +638332.932|221795.107|106.519 +638323.815|221803.245|107.119 +638314.485|221811.548|106.281 +638300.830|221823.725|106.531 +638282.633|221839.940|106.016 +638278.098|221843.979|105.882 +638241.967|221876.160|104.053 +638237.346|221880.268|103.260 +638233.545|221883.688|105.805 +638216.818|221898.639|108.997 +638212.599|221902.403|109.558 +638203.961|221910.099|109.637 +638195.278|221917.829|109.375 +638190.904|221921.721|109.137 +638186.496|221925.641|108.555 +638182.241|221929.430|108.625 +638177.910|221933.282|108.177 +638173.561|221937.153|107.890 +638169.266|221940.972|107.634 +638164.962|221944.804|107.354 +638160.817|221948.495|107.515 +638156.541|221952.302|107.156 +638152.386|221956.002|107.305 +638144.010|221963.461|107.168 +638139.737|221967.261|106.686 +638135.427|221971.090|106.080 +638131.315|221974.750|106.055 +638127.267|221978.359|106.278 +638123.293|221981.907|106.808 +638119.099|221985.635|106.296 +638094.392|222007.608|104.300 +638090.347|222011.211|104.260 +638086.168|222014.923|103.535 +638217.680|221895.920|109.320 +638234.454|221880.869|105.653 +638242.674|221873.477|102.803 +638247.353|221869.308|103.876 +638251.903|221865.242|104.184 +638270.121|221848.962|105.214 +638274.785|221844.802|105.897 +638279.354|221840.717|105.933 +638288.449|221832.585|106.107 +638297.736|221824.289|106.775 +638302.296|221820.207|106.625 +638320.825|221803.644|107.076 +638330.024|221795.421|107.098 +638334.608|221791.315|106.683 +638339.451|221786.996|107.567 +638358.507|221769.973|109.274 +638368.023|221761.469|109.963 +638372.806|221757.199|110.460 +638421.199|221713.960|115.102 +638430.861|221705.319|115.580 +638435.589|221701.085|115.279 +638440.307|221696.858|114.925 +638445.104|221692.563|114.754 +638449.981|221688.204|115.050 +638454.937|221683.782|115.849 +638459.838|221679.399|116.059 +638464.618|221675.119|115.867 +638469.473|221670.776|115.849 +638474.435|221666.347|116.797 +638479.522|221661.815|118.232 +638484.491|221657.377|118.668 +638489.392|221652.997|119.034 +638494.357|221648.559|119.531 +638504.190|221639.774|120.268 +638509.131|221635.358|120.686 +638514.029|221630.978|120.863 +638518.997|221626.537|121.173 +638523.926|221622.126|121.271 +638528.836|221617.737|121.594 +638533.792|221613.309|121.905 +638538.797|221608.837|122.243 +638543.765|221604.399|122.701 +638548.712|221599.977|123.045 +638553.668|221595.542|123.139 +638558.609|221591.122|123.152 +638563.522|221586.727|122.975 +638568.460|221582.307|123.011 +638573.462|221577.836|123.152 +638578.467|221573.364|123.731 +638593.567|221559.874|125.133 +638598.596|221555.381|125.617 +638603.595|221550.913|125.938 +638628.695|221528.477|127.151 +638633.660|221524.029|126.977 +638638.647|221519.567|126.968 +638653.664|221506.132|126.754 +638658.681|221501.642|126.687 +638683.977|221479.032|128.123 +638714.521|221451.728|130.004 +638719.568|221447.214|130.071 +638724.664|221442.660|130.147 +638734.741|221433.644|129.720 +638739.834|221429.093|129.848 +638755.007|221415.520|129.235 +638760.073|221410.991|129.147 +638765.172|221406.431|128.906 +638770.223|221401.911|128.693 +638775.307|221397.363|128.300 +638780.412|221392.798|128.178 +638785.420|221388.311|127.504 +638790.517|221383.754|127.291 +638810.893|221365.530|126.559 +638816.013|221360.955|126.776 +638826.184|221351.860|126.288 +638831.326|221347.260|126.206 +638836.414|221342.713|126.038 +638841.546|221338.122|125.837 +638856.893|221324.397|125.316 +638872.258|221310.663|125.215 +638877.376|221306.082|124.892 +638882.445|221301.546|124.581 +638887.556|221296.971|124.148 +638902.924|221283.225|123.542 +638923.443|221264.870|122.390 +638928.552|221260.298|121.945 +638933.672|221255.717|121.768 +638938.790|221251.141|121.451 +638943.908|221246.563|121.231 +638954.207|221237.355|121.161 +638964.424|221228.211|120.131 +638969.541|221223.633|119.957 +638974.705|221219.012|119.637 +638979.819|221214.434|119.284 +638984.940|221209.856|119.092 +638990.060|221205.278|118.906 +639000.347|221196.079|118.510 +639005.459|221191.501|118.013 +639010.622|221186.880|117.684 +639031.059|221168.565|114.087 +639056.729|221145.595|112.316 +639066.977|221136.415|110.655 +639102.742|221104.529|116.827 +639112.990|221095.376|116.986 +639118.019|221090.883|116.922 +639123.142|221086.311|117.129 +639128.269|221081.730|116.976 +639133.350|221077.186|116.638 +639138.431|221072.647|116.513 +639143.512|221068.109|116.370 +639148.593|221063.567|116.239 +639153.680|221059.023|116.007 +639158.761|221054.484|115.964 +639163.846|221049.943|115.821 +639168.930|221045.404|115.870 +639173.962|221040.911|116.007 +639179.031|221036.391|116.629 +639184.081|221031.877|116.096 +639189.168|221027.329|115.992 +639194.259|221022.782|115.821 +639199.303|221018.277|115.693 +639204.332|221013.787|116.047 +639209.380|221009.279|115.858 +639214.427|221004.771|115.721 +639219.527|221000.214|115.492 +639224.534|220995.737|115.160 +639229.591|220991.214|114.818 +639234.651|220986.693|114.559 +639239.707|220982.176|114.355 +639244.724|220977.687|113.934 +639249.790|220973.160|113.624 +639254.853|220968.634|113.401 +639264.887|220959.670|113.020 +639269.904|220955.186|112.837 +639274.927|220950.696|112.584 +639280.002|220946.164|112.377 +639284.970|220941.723|112.289 +639289.993|220937.240|112.191 +639295.010|220932.756|112.161 +639300.027|220928.275|112.203 +639305.044|220923.798|112.267 +639310.013|220919.363|112.374 +639315.024|220914.892|112.584 +639319.992|220910.457|112.715 +639340.039|220892.537|111.536 +639345.031|220888.075|111.435 +639350.033|220883.607|111.252 +639355.032|220879.145|111.136 +639360.024|220874.685|111.121 +639364.953|220870.287|111.347 +639369.940|220865.834|111.459 +639374.871|220861.433|111.667 +639379.849|220856.989|111.929 +639384.780|220852.590|112.188 +639389.715|220848.186|112.410 +639394.653|220843.779|112.609 +639409.539|220830.483|112.514 +639414.498|220826.054|112.535 +639434.246|220808.416|112.316 +639439.181|220804.008|112.209 +639444.104|220799.613|112.261 +639449.029|220795.215|112.313 +639458.853|220786.442|112.255 +639463.763|220782.059|112.523 +639468.649|220777.695|112.545 +639473.493|220773.379|113.047 +639478.394|220769.002|112.980 +639483.243|220764.674|113.407 +639488.099|220760.345|113.831 +639492.927|220756.036|114.062 +639497.819|220751.671|114.175 +639502.622|220747.379|114.209 +639507.517|220743.011|114.328 +639512.342|220738.705|114.645 +639517.152|220734.413|114.700 +639526.872|220725.729|114.425 +639536.598|220717.036|113.779 +639541.454|220712.696|113.557 +639546.300|220708.362|113.038 +639551.162|220704.018|112.834 +639555.962|220699.730|112.743 +639570.401|220686.828|111.953 +639575.174|220682.563|111.786 +639580.002|220678.247|111.594 +639584.793|220673.959|110.963 +639589.518|220669.747|111.258 +639594.264|220665.510|111.380 +639598.982|220661.297|111.386 +639603.749|220657.039|111.408 +639608.440|220652.851|111.280 +639622.513|220640.284|111.383 +639627.179|220636.121|111.508 +639631.833|220631.966|111.734 +639636.421|220627.876|112.097 +639641.032|220623.758|112.298 +639645.699|220619.595|112.505 +639650.304|220615.486|112.791 +639654.904|220611.380|112.795 +639659.494|220607.281|112.874 +639668.626|220599.136|113.435 +639673.146|220595.101|113.700 +639677.742|220590.998|113.816 +639686.856|220582.860|113.962 +639691.404|220578.800|113.825 +639695.966|220574.725|113.892 +639700.487|220570.689|113.959 +639704.961|220566.696|114.005 +639722.926|220550.658|114.261 +639740.873|220534.622|113.733 +639749.596|220526.841|114.279 +639753.964|220522.942|114.538 +639775.943|220503.313|114.194 +639780.335|220499.384|113.858 +639784.703|220495.489|113.968 +639788.940|220491.706|114.227 +639806.591|220475.915|112.029 +639810.895|220472.068|111.767 +639815.180|220468.246|111.901 +639819.371|220464.506|112.243 +639823.632|220460.702|112.255 +639827.845|220456.938|112.258 +639840.646|220445.489|111.807 +639857.389|220430.518|111.652 +639861.656|220426.695|111.267 +639865.841|220422.953|111.051 +639870.029|220419.207|110.829 +639874.183|220415.491|110.780 +639878.399|220411.718|110.463 +639890.697|220400.720|110.515 +639894.794|220397.057|110.332 +639898.927|220393.362|110.246 +639843.139|220441.161|111.712 +639834.419|220448.940|111.746 +639825.647|220456.767|112.112 +639821.273|220460.665|112.124 +639816.850|220464.607|112.130 +639812.528|220468.456|111.661 +639808.145|220472.361|111.502 +639803.653|220476.375|111.938 +639789.982|220488.591|114.133 +639785.553|220492.538|114.047 +639781.125|220496.483|113.697 +639776.644|220500.482|113.931 +639772.124|220504.514|114.126 +639767.552|220508.598|114.620 +639763.056|220512.607|114.712 +639758.603|220516.575|114.602 +639754.116|220520.571|114.392 +639749.630|220524.570|114.206 +639745.161|220528.551|113.947 +639740.675|220532.550|113.797 +639736.221|220536.515|113.468 +639722.493|220548.762|113.855 +639704.236|220565.041|114.062 +639699.658|220569.123|114.020 +639695.080|220573.204|114.002 +639690.474|220577.307|113.855 +639685.932|220581.351|113.651 +639681.373|220585.414|113.572 +639676.727|220589.557|113.730 +639672.134|220593.644|113.566 +639667.559|220597.719|113.319 +639663.045|220601.736|113.011 +639658.378|220605.894|113.063 +639649.241|220614.026|112.264 +639644.623|220618.144|112.398 +639640.011|220622.249|112.157 +639635.393|220626.361|111.981 +639630.800|220630.449|111.636 +639626.143|220634.594|111.411 +639621.531|220638.703|111.252 +639616.913|220642.817|111.133 +639602.856|220655.339|110.944 +639598.092|220659.588|111.243 +639593.432|220663.739|111.179 +639588.725|220667.933|111.118 +639584.044|220672.100|110.868 +639574.528|220680.588|111.606 +639569.749|220684.849|111.798 +639564.978|220689.104|111.969 +639560.172|220693.393|112.423 +639550.647|220701.885|112.734 +639545.837|220706.173|112.907 +639541.061|220710.431|113.224 +639536.211|220714.759|113.785 +639526.616|220723.315|114.130 +639516.930|220731.950|114.498 +639512.153|220736.208|114.584 +639507.362|220740.475|114.392 +639502.577|220744.737|114.148 +639497.715|220749.068|114.160 +639492.927|220753.332|113.977 +639478.467|220766.204|113.066 +639473.557|220770.581|113.182 +639468.762|220774.845|112.679 +639459.021|220783.519|112.246 +639454.092|220787.912|112.145 +639444.262|220796.672|112.243 +639439.394|220801.006|112.084 +639434.414|220805.444|112.106 +639429.476|220809.845|112.237 +639424.493|220814.289|112.362 +639419.561|220818.684|112.453 +639414.584|220823.122|112.554 +639409.643|220827.520|112.264 +639404.662|220831.961|112.450 +639399.655|220836.424|112.410 +639384.713|220849.731|112.008 +639374.749|220858.604|111.466 +639369.702|220863.100|111.426 +639354.681|220876.478|111.155 +639349.603|220881.004|110.999 +639344.544|220885.515|111.261 +639339.493|220890.017|111.429 +639329.307|220899.106|112.462 +639324.216|220903.641|112.612 +639314.067|220912.685|112.538 +639309.013|220917.181|112.145 +639303.950|220921.689|111.965 +639298.820|220926.261|112.090 +639293.703|220930.817|112.023 +639288.625|220935.344|112.173 +639283.455|220939.949|112.255 +639278.384|220944.469|112.380 +639273.217|220949.072|112.447 +639268.087|220953.647|112.785 +639262.973|220958.207|112.938 +639257.800|220962.818|113.240 +639252.643|220967.415|113.294 +639247.529|220971.972|113.502 +639242.362|220976.580|113.813 +639237.193|220981.189|114.248 +639232.036|220985.788|114.492 +639226.875|220990.388|114.779 +639221.724|220994.981|114.968 +639216.567|220999.577|115.303 +639211.413|221004.174|115.586 +639206.219|221008.804|115.715 +639201.074|221013.388|115.843 +639195.895|221017.996|115.480 +639190.750|221022.581|115.675 +639185.605|221027.171|115.983 +639180.418|221031.789|115.964 +639175.233|221036.406|115.952 +639170.097|221040.985|116.019 +639164.915|221045.596|115.852 +639159.734|221050.214|115.797 +639154.598|221054.789|115.928 +639149.413|221059.410|116.105 +639144.232|221064.027|116.220 +639139.050|221068.645|116.348 +639133.868|221073.263|116.504 +639128.690|221077.881|116.708 +639123.508|221082.501|117.101 +639118.333|221087.110|116.851 +639113.154|221091.722|116.943 +639107.979|221096.333|116.970 +639102.800|221100.948|117.144 +639092.452|221110.156|116.187 +639076.907|221123.951|112.231 +639071.717|221128.554|110.685 +639061.350|221137.789|110.801 +639056.178|221142.413|112.087 +639045.872|221151.603|112.779 +639020.071|221174.627|115.943 +639014.963|221179.193|116.906 +638999.509|221192.976|118.144 +638994.346|221197.582|118.714 +638984.099|221206.714|119.031 +638978.929|221211.322|119.287 +638973.808|221215.888|119.540 +638968.688|221220.451|119.823 +638963.579|221225.011|120.399 +638958.450|221229.580|120.384 +638953.335|221234.143|120.820 +638948.211|221238.709|120.948 +638943.139|221243.232|121.231 +638938.010|221247.804|121.210 +638932.895|221252.364|121.670 +638902.418|221279.543|123.362 +638897.404|221284.017|123.831 +638882.173|221297.596|124.435 +638877.150|221302.077|124.782 +638836.801|221338.043|125.956 +638831.753|221342.542|126.002 +638826.764|221346.989|126.227 +638811.664|221360.446|126.520 +638806.668|221364.902|126.703 +638791.571|221378.362|127.224 +638786.609|221382.782|127.321 +638776.642|221391.673|128.163 +638771.637|221396.138|128.342 +638766.651|221400.585|128.757 +638761.646|221405.047|128.992 +638756.638|221409.510|129.190 +638751.682|221413.929|129.449 +638736.728|221427.258|129.894 +638731.736|221431.705|129.830 +638721.805|221440.563|130.308 +638716.773|221445.040|129.921 +638706.831|221453.898|129.927 +638681.758|221476.215|128.111 +638676.710|221480.705|127.824 +638666.649|221489.657|126.745 +638656.740|221498.487|126.660 +638651.759|221502.922|126.648 +638622.117|221529.336|127.001 +638617.143|221533.768|126.785 +638602.244|221547.027|125.755 +638597.249|221551.474|125.514 +638577.367|221569.164|123.667 +638567.488|221577.958|123.200 +638562.562|221582.347|122.923 +638557.673|221586.706|122.911 +638552.720|221591.119|122.859 +638547.868|221595.444|122.810 +638542.933|221599.839|122.560 +638537.992|221604.241|122.301 +638533.082|221608.612|121.945 +638528.193|221612.967|121.747 +638523.316|221617.311|121.670 +638518.439|221621.660|121.600 +638508.661|221630.371|121.384 +638503.779|221634.718|121.021 +638484.128|221652.210|119.122 +638479.233|221656.569|118.817 +638469.129|221665.539|116.129 +638464.301|221669.837|115.718 +638459.518|221674.104|115.897 +638454.709|221678.390|115.949 +638449.740|221682.803|114.794 +638435.326|221695.644|114.337 +638406.745|221721.114|113.980 +638392.279|221733.988|112.444 +638368.356|221755.285|110.408 +638363.546|221759.558|109.527 +638358.861|221763.737|109.561 +638349.290|221772.250|108.436 +638344.551|221776.471|108.006 +638335.081|221784.896|107.028 +638316.747|221801.243|107.500 +638307.420|221809.548|106.951 +638302.833|221813.636|106.955 +638293.820|221821.676|107.262 +638279.976|221834.003|106.363 +638275.355|221838.114|105.836 +638270.926|221842.065|106.217 +638261.462|221850.471|104.038 +638257.073|221854.388|104.400 +638252.425|221858.524|103.867 +638247.941|221862.517|103.608 +638239.306|221870.228|104.854 +638222.597|221885.172|108.963 +638218.327|221888.986|109.490 +638209.817|221896.584|110.487 +638205.415|221900.507|110.277 +638201.063|221904.387|110.289 +638192.419|221912.092|110.402 +638187.874|221916.131|109.219 +638183.515|221920.014|109.058 +638179.196|221923.861|108.853 +638174.969|221927.631|109.045 +638166.273|221935.373|108.277 +638161.990|221939.186|108.076 +638136.628|221961.781|107.040 +638132.266|221965.661|106.220 +638128.066|221969.401|106.058 +638123.979|221973.046|106.129 +638120.035|221976.570|106.769 +638115.880|221980.273|106.607 +638111.966|221983.769|107.177 +638099.500|221994.864|106.010 +638095.251|221998.641|105.171 +638091.057|222002.371|104.553 +638087.009|222005.974|104.297 +638234.088|221872.593|107.430 +638238.038|221869.039|105.552 +638242.144|221865.354|104.108 +638246.676|221861.310|104.333 +638259.828|221849.557|103.330 +638269.433|221841.019|106.388 +638278.467|221832.954|106.473 +638283.088|221828.833|106.778 +638287.650|221824.764|107.083 +638296.727|221816.659|107.022 +638301.357|221812.529|107.204 +638305.948|221808.430|107.235 +638315.217|221800.161|107.744 +638319.804|221796.067|107.808 +638324.412|221791.949|107.488 +638329.036|221787.819|107.521 +638333.596|221783.744|107.247 +638338.232|221779.608|107.363 +638343.088|221775.283|108.076 +638347.785|221771.092|108.293 +638352.482|221766.904|108.527 +638362.046|221758.375|109.411 +638390.896|221732.659|112.386 +638424.649|221702.554|114.419 +638434.177|221694.047|114.142 +638439.005|221689.734|114.126 +638448.771|221681.029|115.053 +638453.724|221676.619|115.812 +638458.516|221672.339|115.675 +638463.371|221668.005|115.608 +638468.309|221663.604|116.074 +638478.471|221654.566|118.833 +638488.353|221645.761|119.695 +638508.113|221628.140|121.475 +638513.090|221623.705|121.814 +638518.034|221619.295|121.969 +638522.932|221614.921|121.856 +638527.864|221610.520|121.984 +638532.762|221606.146|121.911 +638537.721|221601.723|122.271 +638542.659|221597.316|122.524 +638547.642|221592.872|122.758 +638552.595|221588.452|122.795 +638557.545|221584.033|122.868 +638562.517|221579.598|123.091 +638572.404|221570.774|123.231 +638577.437|221566.287|123.624 +638597.578|221548.334|125.553 +638602.558|221543.890|125.712 +638612.586|221534.950|126.614 +638617.622|221530.455|126.498 +638637.601|221512.621|126.535 +638647.596|221503.696|126.337 +638652.607|221499.219|126.175 +638718.462|221440.490|130.052 +638723.549|221435.948|130.034 +638728.584|221431.449|130.019 +638733.647|221426.926|129.805 +638748.805|221413.384|129.440 +638753.864|221408.864|129.242 +638758.927|221404.340|129.107 +638763.969|221399.832|128.748 +638769.004|221395.330|128.330 +638774.064|221390.813|128.211 +638784.165|221381.779|127.227 +638789.279|221377.210|127.236 +638809.652|221359.004|126.367 +638824.950|221345.340|126.130 +638830.043|221340.792|126.002 +638835.185|221336.199|125.892 +638855.631|221317.932|125.300 +638870.990|221304.213|124.996 +638876.111|221299.635|124.709 +638881.228|221295.063|124.316 +638896.606|221281.323|123.752 +638927.415|221253.787|121.917 +638932.526|221249.215|121.515 +638937.693|221244.600|121.173 +638947.980|221235.408|120.610 +638968.609|221216.973|119.765 +638973.726|221212.398|119.464 +638978.896|221207.781|119.208 +638984.065|221203.163|119.025 +638994.352|221193.970|118.427 +638999.518|221189.352|118.113 +639020.108|221170.924|114.983 +639025.213|221166.346|113.462 +639045.821|221147.930|112.557 +639066.431|221129.496|110.237 +639076.761|221120.315|113.474 +639087.069|221111.140|115.745 +639102.450|221097.424|117.016 +639107.625|221092.804|117.031 +639112.752|221088.219|116.970 +639117.879|221083.638|116.928 +639128.089|221074.513|116.662 +639133.219|221069.925|116.495 +639138.352|221065.338|116.284 +639143.436|221060.793|116.163 +639148.569|221056.203|115.989 +639153.702|221051.616|115.907 +639158.740|221047.117|115.891 +639163.870|221042.533|116.013 +639168.960|221037.985|115.861 +639174.041|221033.447|116.016 +639179.128|221028.899|116.001 +639184.173|221024.388|115.754 +639189.272|221019.831|115.452 +639194.353|221015.293|115.678 +639199.394|221010.788|115.708 +639204.491|221006.234|115.614 +639209.493|221001.763|115.379 +639214.598|220997.197|115.074 +639219.652|220992.677|114.849 +639224.659|220988.199|114.629 +639229.716|220983.679|114.410 +639234.779|220979.153|114.145 +639239.799|220974.663|113.752 +639244.865|220970.131|113.410 +639249.882|220965.647|113.212 +639254.890|220961.172|113.227 +639259.885|220956.713|113.532 +639264.933|220952.193|112.758 +639269.956|220947.700|112.557 +639274.927|220943.256|112.423 +639279.947|220938.770|112.334 +639284.925|220934.320|112.157 +639289.951|220929.830|112.066 +639294.925|220925.383|111.990 +639299.912|220920.927|111.792 +639309.842|220912.057|112.157 +639314.768|220907.659|112.228 +639324.719|220898.768|112.371 +639329.675|220894.333|111.993 +639334.653|220889.877|111.368 +639339.606|220885.448|111.142 +639344.598|220880.989|111.106 +639349.506|220876.599|110.914 +639354.431|220872.204|111.191 +639359.378|220867.785|111.164 +639364.322|220863.365|111.216 +639374.161|220854.578|111.377 +639379.007|220850.246|111.481 +639383.945|220845.839|111.709 +639388.828|220841.480|112.011 +639398.609|220832.748|112.474 +639403.529|220828.353|112.407 +639413.374|220819.553|112.264 +639418.250|220815.191|112.154 +639423.173|220810.796|112.157 +639428.007|220806.474|112.078 +639432.930|220802.076|112.112 +639437.806|220797.720|112.124 +639447.569|220788.994|112.136 +639452.467|220784.620|112.036 +639457.277|220780.325|112.337 +639462.148|220775.976|112.529 +639466.967|220771.672|112.752 +639471.822|220767.338|113.127 +639476.678|220762.997|113.047 +639486.306|220754.405|113.752 +639491.128|220750.098|114.023 +639495.950|220745.794|114.334 +639505.597|220737.178|114.538 +639510.465|220732.828|114.501 +639515.265|220728.539|114.642 +639520.124|220724.193|114.291 +639524.979|220719.850|113.989 +639529.865|220715.485|113.910 +639534.696|220711.160|113.459 +639539.576|220706.792|113.041 +639544.432|220702.452|112.871 +639549.226|220698.169|112.837 +639554.176|220693.740|112.356 +639558.977|220689.443|111.904 +639563.842|220685.093|111.755 +639568.651|220680.796|111.679 +639573.464|220676.495|111.618 +639578.304|220672.164|111.350 +639583.157|220667.820|110.661 +639587.921|220663.568|111.024 +639592.727|220659.274|111.094 +639607.050|220646.475|111.054 +639611.826|220642.208|111.072 +639616.599|220637.941|111.124 +639621.321|220633.722|111.207 +639626.009|220629.537|111.542 +639630.721|220625.331|111.737 +639635.421|220621.137|112.042 +639640.136|220616.922|112.225 +639644.848|220612.709|112.133 +639658.851|220600.209|112.868 +639663.450|220596.104|113.261 +639668.181|220591.876|113.142 +639672.841|220587.712|113.483 +639677.456|220583.589|113.505 +639682.107|220579.437|113.648 +639686.789|220575.249|113.593 +639691.340|220571.189|114.066 +639695.915|220567.105|114.105 +639700.542|220562.969|114.136 +639709.820|220554.675|113.837 +639728.108|220538.329|113.840 +639732.677|220534.244|113.758 +639737.236|220530.169|113.752 +639741.741|220526.143|113.785 +639746.201|220522.165|114.099 +639750.684|220518.160|114.288 +639755.116|220514.204|114.507 +639759.572|220510.220|114.593 +639773.139|220498.083|113.602 +639777.562|220494.133|113.678 +639781.881|220490.277|114.044 +639786.267|220486.357|114.075 +639799.858|220474.183|111.984 +639804.366|220470.145|111.188 +639808.554|220466.408|111.792 +639812.803|220462.616|112.115 +639817.177|220458.709|112.066 +639821.441|220454.896|112.060 +639825.696|220451.095|112.127 +639830.079|220447.169|111.563 +639838.726|220439.439|111.088 +639851.384|220428.131|111.018 +639855.597|220424.367|110.896 +639859.800|220420.612|110.832 +639863.988|220416.869|110.612 +639868.154|220413.144|110.512 +639872.303|220409.438|110.505 +639884.720|220398.343|110.231 +639888.841|220394.661|110.179 +639892.907|220391.028|110.149 +639838.741|220437.235|110.987 +639830.021|220445.014|111.533 +639821.221|220452.866|112.029 +639816.896|220456.718|112.057 +639812.480|220460.656|112.051 +639808.121|220464.539|112.020 +639803.881|220468.310|111.386 +639799.382|220472.324|111.850 +639776.790|220492.487|113.678 +639772.340|220496.449|113.471 +639758.640|220508.675|114.581 +639754.125|220512.698|114.511 +639749.645|220516.688|114.276 +639745.119|220520.720|114.029 +639740.650|220524.698|113.752 +639736.039|220528.807|113.727 +639731.482|220532.867|113.697 +639722.292|220541.057|113.557 +639703.696|220557.635|113.877 +639698.966|220561.853|114.123 +639694.333|220565.983|114.120 +639689.736|220570.080|113.889 +639680.321|220578.474|113.639 +639670.927|220586.850|113.636 +639666.285|220590.986|113.172 +639661.567|220595.192|113.191 +639656.861|220599.386|112.825 +639647.433|220607.790|112.581 +639637.951|220616.242|112.121 +639633.223|220620.454|111.984 +639628.420|220624.737|111.709 +639623.710|220628.934|111.496 +639618.974|220633.152|111.142 +639614.152|220637.453|111.045 +639609.421|220641.671|111.033 +639604.593|220645.975|111.011 +639590.128|220658.877|110.999 +639585.367|220663.123|110.950 +639580.505|220667.457|110.932 +639575.649|220671.792|111.261 +639565.926|220680.469|111.734 +639561.074|220684.801|111.761 +639556.209|220689.141|111.895 +639551.305|220693.518|112.359 +639546.398|220697.904|112.898 +639541.512|220702.260|112.880 +639536.653|220706.597|113.078 +639531.703|220711.020|113.651 +639526.830|220715.369|114.035 +639521.898|220719.767|114.075 +639517.000|220724.141|114.322 +639512.092|220728.521|114.645 +639507.243|220732.843|114.489 +639502.378|220737.181|114.501 +639497.496|220741.533|114.267 +639492.646|220745.855|114.163 +639487.763|220750.211|113.977 +639473.206|220763.180|113.051 +639468.253|220767.597|113.108 +639463.465|220771.861|112.551 +639453.714|220780.551|112.215 +639448.758|220784.967|111.917 +639443.912|220789.292|112.008 +639434.048|220798.089|112.014 +639429.117|220802.484|112.017 +639424.237|220806.837|112.054 +639419.311|220811.232|112.081 +639414.386|220815.624|112.115 +639409.411|220820.062|112.197 +639399.527|220828.880|112.246 +639394.607|220833.266|112.313 +639379.782|220846.479|111.703 +639374.908|220850.819|111.277 +639364.962|220859.686|111.173 +639360.006|220864.109|111.286 +639355.029|220868.544|110.999 +639350.033|220873.000|111.033 +639345.101|220877.395|110.835 +639340.039|220881.918|111.191 +639335.037|220886.380|111.374 +639325.015|220895.326|112.133 +639320.025|220899.773|112.212 +639314.999|220904.257|112.164 +639310.016|220908.701|112.258 +639305.011|220913.157|111.862 +639299.982|220917.644|111.932 +639294.959|220922.121|111.895 +639289.926|220926.611|112.090 +639284.903|220931.092|112.161 +639279.874|220935.575|112.316 +639274.802|220940.102|112.441 +639269.733|220944.622|112.551 +639264.710|220949.102|112.737 +639259.617|220953.653|113.404 +639254.566|220958.155|113.224 +639249.510|220962.663|113.163 +639244.398|220967.220|113.304 +639239.332|220971.743|113.560 +639234.261|220976.269|113.968 +639229.146|220980.835|114.349 +639224.038|220985.392|114.584 +639218.932|220989.946|114.776 +639213.830|220994.499|114.983 +639208.724|220999.053|115.212 +639203.622|221003.607|115.510 +639198.474|221008.197|115.708 +639193.384|221012.736|115.663 +639188.245|221017.317|115.638 +639183.109|221021.898|115.565 +639178.016|221026.439|115.721 +639172.874|221031.030|115.995 +639167.738|221035.611|116.047 +639157.469|221044.764|115.971 +639152.336|221049.339|115.955 +639147.203|221053.917|115.983 +639142.019|221058.541|116.147 +639136.886|221063.116|116.208 +639131.753|221067.700|116.522 +639126.572|221072.321|116.702 +639121.439|221076.902|117.104 +639116.263|221081.514|116.864 +639111.088|221086.132|116.949 +639105.958|221090.704|117.062 +639100.782|221095.321|117.117 +639090.431|221104.538|116.382 +639085.256|221109.147|115.907 +639080.077|221113.756|115.145 +639074.896|221118.358|113.916 +639064.505|221127.554|108.725 +639059.329|221132.187|110.219 +639043.751|221146.101|112.048 +639038.573|221150.722|112.234 +639033.339|221155.385|112.139 +639028.142|221160.009|111.231 +639022.997|221164.624|113.444 +639012.646|221173.893|116.449 +638991.984|221192.339|118.397 +638986.778|221196.991|119.040 +638976.430|221206.220|119.171 +638971.257|221210.832|119.400 +638960.934|221220.049|120.332 +638945.419|221233.887|120.850 +638935.071|221243.110|121.177 +638924.790|221252.278|121.923 +638899.038|221275.236|123.325 +638893.926|221279.799|123.767 +638878.497|221293.551|124.380 +638873.377|221298.117|124.718 +638868.296|221302.644|124.953 +638852.918|221316.341|125.029 +638832.549|221334.501|126.157 +638807.183|221357.099|126.349 +638802.133|221361.601|126.474 +638787.054|221375.046|127.291 +638777.041|221383.967|127.617 +638772.024|221388.445|128.233 +638766.992|221392.926|128.144 +638762.018|221397.363|128.723 +638757.016|221401.823|128.995 +638752.057|221406.242|129.214 +638747.043|221410.711|129.385 +638737.049|221419.617|129.589 +638727.112|221428.474|129.973 +638722.119|221432.918|129.961 +638717.118|221437.375|129.860 +638662.250|221486.207|126.898 +638647.349|221499.472|126.355 +638627.713|221516.964|126.514 +638612.973|221530.095|126.553 +638608.026|221534.496|126.236 +638598.139|221543.296|125.694 +638593.155|221547.728|125.160 +638573.334|221565.354|123.112 +638568.445|221569.710|123.057 +638563.556|221574.059|123.039 +638548.971|221587.038|122.960 +638544.101|221591.369|122.804 +638539.169|221595.755|122.597 +638534.256|221600.120|122.204 +638529.446|221604.402|122.185 +638524.593|221608.718|122.246 +638519.781|221613.004|122.259 +638514.898|221617.347|122.152 +638500.346|221630.283|121.332 +638485.643|221643.347|119.802 +638480.790|221647.660|119.445 +638465.855|221660.909|116.230 +638460.981|221665.237|115.565 +638456.202|221669.486|115.483 +638441.764|221682.325|114.773 +638436.850|221686.686|114.008 +638432.086|221690.929|114.114 +638422.613|221699.360|114.133 +638417.889|221703.563|114.242 +638374.854|221741.806|110.624 +638370.084|221746.046|110.164 +638346.498|221767.004|108.280 +638341.722|221771.247|107.674 +638318.789|221791.657|108.122 +638314.318|221795.643|108.616 +638309.764|221799.694|108.735 +638305.106|221803.830|108.381 +638300.580|221807.860|108.415 +638296.039|221811.898|108.393 +638250.358|221852.504|105.629 +638245.838|221856.518|105.205 +638241.363|221860.499|105.001 +638233.143|221867.848|107.838 +638229.037|221871.514|109.061 +638194.656|221902.122|111.185 +638190.450|221905.868|111.609 +638185.881|221909.919|110.554 +638181.400|221913.891|109.664 +638172.777|221921.557|109.338 +638164.240|221929.149|109.213 +638159.918|221932.987|108.847 +638134.470|221955.603|107.692 +638130.181|221959.410|107.156 +638125.829|221963.272|106.397 +638121.665|221966.972|106.180 +638117.627|221970.562|106.257 +638113.695|221974.068|106.948 +638109.531|221977.768|106.775 +638088.890|221996.102|104.964 +638084.769|221999.759|104.638 +638080.773|222003.313|104.589 +638212.901|221883.459|111.490 +638225.581|221872.106|109.625 +638233.972|221864.580|107.777 +638238.023|221860.944|106.345 +638242.314|221857.100|105.744 +638246.737|221853.144|105.504 +638255.881|221844.988|106.400 +638288.035|221816.297|109.262 +638297.041|221808.247|108.942 +638301.626|221804.153|109.180 +638306.246|221800.026|109.381 +638310.812|221795.948|109.329 +638315.314|221791.922|108.988 +638319.731|221787.965|108.250 +638324.309|221783.872|108.052 +638338.119|221771.528|107.695 +638342.752|221767.391|107.838 +638371.288|221741.938|110.039 +638376.119|221737.634|110.838 +638385.748|221729.044|111.539 +638390.533|221724.777|111.904 +638400.165|221716.188|112.773 +638419.410|221699.019|113.858 +638433.805|221686.162|113.782 +638438.664|221681.831|114.224 +638443.638|221677.399|115.090 +638453.374|221668.712|115.650 +638458.147|221664.448|115.419 +638463.002|221660.117|115.678 +638468.291|221655.426|117.955 +638478.194|221646.602|119.528 +638483.049|221642.268|119.601 +638497.945|221628.991|121.103 +638502.885|221624.583|121.515 +638522.560|221607.024|122.192 +638527.452|221602.656|122.079 +638532.351|221598.279|122.027 +638537.395|221593.783|122.649 +638547.298|221584.947|123.054 +638552.251|221580.527|123.124 +638557.192|221576.111|122.795 +638562.117|221571.709|122.728 +638567.086|221567.278|122.975 +638572.069|221562.828|123.011 +638592.238|221544.847|125.127 +638607.277|221531.430|126.014 +638612.300|221526.946|126.187 +638627.275|221513.575|126.102 +638637.226|221504.690|125.886 +638642.246|221500.212|126.169 +638647.266|221495.726|126.102 +638657.349|221486.725|126.352 +638662.424|221482.202|126.800 +638667.490|221477.685|127.209 +638672.571|221473.155|127.788 +638697.930|221450.536|129.418 +638702.999|221446.010|129.641 +638713.164|221436.942|129.897 +638718.200|221432.443|129.879 +638723.235|221427.947|129.845 +638733.339|221418.931|129.662 +638738.402|221414.411|129.473 +638743.468|221409.891|129.333 +638748.482|221405.413|129.165 +638753.590|221400.853|129.001 +638758.595|221396.385|128.769 +638763.688|221391.837|128.455 +638768.739|221387.326|128.227 +638773.740|221382.861|128.007 +638788.965|221369.264|127.172 +638794.071|221364.710|127.065 +638799.048|221360.263|126.626 +638804.132|221355.722|126.300 +638819.445|221342.057|126.276 +638834.716|221328.427|125.803 +638849.956|221314.820|124.977 +638865.290|221301.141|125.081 +638870.405|221296.572|124.639 +638875.529|221291.997|124.398 +638880.594|221287.474|123.956 +638895.923|221273.788|123.368 +638901.040|221269.216|123.069 +638906.167|221264.641|122.923 +638911.285|221260.069|122.597 +638916.405|221255.500|122.298 +638926.644|221246.356|121.747 +638931.746|221241.796|121.131 +638936.879|221237.218|121.137 +638942.003|221232.643|120.991 +638947.105|221228.080|120.314 +638952.238|221223.505|120.375 +638962.531|221214.315|120.098 +638967.600|221209.789|119.793 +638983.010|221196.034|119.080 +638988.168|221191.422|118.470 +639024.076|221159.293|111.493 +639029.197|221154.712|110.652 +639034.394|221150.091|111.783 +639039.575|221145.467|111.712 +639044.705|221140.886|111.438 +639055.010|221131.678|110.240 +639060.146|221127.097|110.301 +639075.609|221113.359|114.876 +639080.787|221108.748|115.577 +639085.963|221104.142|116.477 +639101.340|221090.432|117.126 +639106.467|221085.857|117.095 +639111.645|221081.236|116.928 +639116.772|221076.664|116.952 +639121.902|221072.086|116.897 +639127.035|221067.505|116.669 +639132.171|221062.921|116.294 +639137.300|221058.340|116.184 +639142.436|221053.759|116.047 +639147.569|221049.181|116.031 +639152.702|221044.602|116.010 +639162.968|221035.443|116.047 +639168.104|221030.862|116.010 +639173.246|221026.272|115.785 +639178.342|221021.721|115.492 +639183.478|221017.140|115.507 +639188.568|221012.598|115.529 +639193.658|221008.060|115.553 +639198.803|221003.467|115.416 +639203.948|220998.876|115.276 +639209.054|220994.320|115.001 +639214.156|220989.766|114.785 +639219.261|220985.209|114.568 +639224.318|220980.695|114.386 +639229.430|220976.132|114.084 +639234.498|220971.603|113.639 +639239.616|220967.034|113.316 +639244.676|220962.517|113.194 +639249.787|220957.957|113.072 +639254.838|220953.455|113.258 +639259.846|220948.990|113.349 +639264.942|220944.433|112.630 +639270.011|220939.910|112.493 +639275.034|220935.429|112.395 +639280.103|220930.906|112.325 +639285.132|220926.416|112.154 +639290.161|220921.929|112.017 +639295.187|220917.446|111.956 +639300.180|220912.983|111.612 +639305.203|220908.509|111.716 +639310.214|220904.041|111.975 +639320.217|220895.119|112.084 +639325.210|220890.663|111.938 +639330.233|220886.173|111.344 +639335.229|220881.717|111.240 +639340.237|220877.246|110.990 +639345.239|220872.780|110.832 +639350.179|220868.376|110.893 +639365.054|220855.108|111.136 +639374.929|220846.305|111.530 +639379.818|220841.947|111.734 +639394.577|220828.785|111.990 +639399.484|220824.408|112.063 +639404.355|220820.065|112.026 +639409.277|220815.673|111.965 +639414.154|220811.323|111.904 +639419.022|220806.980|111.947 +639423.892|220802.637|112.002 +639438.526|220789.585|112.063 +639443.384|220785.245|111.807 +639448.203|220780.950|111.990 +639453.053|220776.631|112.404 +639457.850|220772.348|112.334 +639462.693|220768.036|112.825 +639467.476|220763.771|112.962 +639472.304|220759.468|113.151 +639486.660|220746.669|114.093 +639496.249|220738.110|114.319 +639505.789|220729.600|114.657 +639510.578|220725.324|114.447 +639515.378|220721.035|114.184 +639520.209|220716.722|114.105 +639524.934|220712.504|114.126 +639529.798|220708.151|113.392 +639534.611|220703.854|113.151 +639544.197|220695.292|112.624 +639548.955|220691.037|112.090 +639553.731|220686.770|111.819 +639558.483|220682.527|111.795 +639567.981|220674.044|111.456 +639572.733|220669.801|111.115 +639577.475|220665.562|110.850 +639582.184|220661.361|110.899 +639586.906|220657.143|110.847 +639596.330|220648.727|110.597 +639600.966|220644.594|110.877 +639605.645|220640.419|110.865 +639610.308|220636.258|110.984 +639614.957|220632.110|111.222 +639619.529|220628.035|111.673 +639624.207|220623.862|111.740 +639628.898|220619.674|111.740 +639647.381|220603.184|112.481 +639652.008|220599.057|112.666 +639661.146|220590.907|113.182 +639665.730|220586.816|113.377 +639670.369|220582.680|113.553 +639674.999|220578.547|113.496 +639688.697|220566.325|113.962 +639693.296|220562.219|113.861 +639697.896|220558.110|113.773 +639702.425|220554.069|113.806 +639707.052|220549.935|113.605 +639711.621|220545.857|113.745 +639716.123|220541.840|113.709 +639720.683|220537.768|113.657 +639725.255|220533.690|113.563 +639729.821|220529.611|113.511 +639734.332|220525.585|113.496 +639738.882|220521.522|113.566 +639743.287|220517.596|113.907 +639747.813|220513.561|114.169 +639752.294|220509.562|114.392 +639756.732|220505.605|114.596 +639765.839|220497.464|113.776 +639770.377|220493.410|113.489 +639774.861|220489.405|113.511 +639783.664|220481.553|113.944 +639792.860|220473.327|112.392 +639797.386|220469.276|111.743 +639810.645|220457.444|111.889 +639815.015|220453.542|111.871 +639819.395|220449.632|111.831 +639823.775|220445.724|111.804 +639828.265|220441.707|111.240 +639836.931|220433.959|110.950 +639845.660|220426.156|110.697 +639849.976|220422.300|110.579 +639854.289|220418.441|110.481 +639858.611|220414.580|110.368 +639862.894|220410.751|110.219 +639867.158|220406.938|110.161 +639871.434|220403.116|110.073 +639875.680|220399.321|109.896 +639879.926|220395.527|109.734 +639884.147|220391.750|109.698 +639888.329|220388.013|109.625 +639892.523|220384.264|109.512 +639846.788|220422.809|110.484 +639842.530|220426.601|110.813 +639834.206|220434.005|110.603 +639825.595|220441.673|111.106 +639821.249|220445.547|111.722 +639817.021|220449.312|111.758 +639812.748|220453.116|111.795 +639808.474|220456.916|111.834 +639795.545|220468.423|111.822 +639773.459|220488.098|113.389 +639769.058|220492.014|113.453 +639764.635|220495.952|113.672 +639751.215|220507.907|114.398 +639746.792|220511.835|114.105 +639742.360|220515.776|113.892 +639737.959|220519.690|113.514 +639733.515|220523.643|113.395 +639729.046|220527.618|113.432 +639724.474|220531.690|113.502 +639719.951|220535.713|113.593 +639715.437|220539.734|113.672 +639710.868|220543.800|113.779 +639706.339|220547.829|113.678 +639701.803|220551.865|113.627 +639697.161|220555.998|113.919 +639692.577|220560.079|113.898 +639688.078|220564.081|113.688 +639678.834|220572.305|113.572 +639669.626|220580.495|113.297 +639664.944|220584.664|113.377 +639660.338|220588.758|113.291 +639627.682|220617.799|111.697 +639622.891|220622.064|111.673 +639618.139|220626.294|111.743 +639608.726|220634.661|110.950 +639603.965|220638.895|110.774 +639599.186|220643.150|110.771 +639594.358|220647.444|110.749 +639589.585|220651.693|110.746 +639584.766|220655.982|110.722 +639575.131|220664.553|110.701 +639570.230|220668.920|111.005 +639565.347|220673.270|111.176 +639560.428|220677.656|111.676 +639555.539|220682.009|111.959 +639550.711|220686.303|111.783 +639545.837|220690.644|112.002 +639540.878|220695.063|112.520 +639531.024|220703.845|113.163 +639526.046|220708.276|113.526 +639521.093|220712.693|114.133 +639516.171|220717.076|114.117 +639511.285|220721.425|114.212 +639506.292|220725.872|114.419 +639501.357|220730.265|114.572 +639496.456|220734.623|114.425 +639481.643|220747.800|113.831 +639476.720|220752.177|113.517 +639471.807|220756.542|113.130 +639466.827|220760.973|112.953 +639456.942|220769.767|112.380 +639446.944|220778.658|111.990 +639442.031|220783.026|111.728 +639436.987|220787.518|111.810 +639431.991|220791.962|111.911 +639421.978|220800.878|111.962 +639416.909|220805.386|111.877 +639411.932|220809.818|111.898 +639406.915|220814.283|111.847 +639401.895|220818.748|111.850 +639396.820|220823.265|111.935 +639391.806|220827.731|111.938 +639386.804|220832.178|111.783 +639381.748|220836.680|111.746 +639376.758|220841.115|111.487 +639371.720|220845.598|111.249 +639366.675|220850.085|111.124 +639361.637|220854.565|110.914 +639356.574|220859.073|111.072 +639351.530|220863.563|111.002 +639346.446|220868.086|110.841 +639341.407|220872.567|110.728 +639336.341|220877.081|111.054 +639331.245|220881.620|111.152 +639326.188|220886.124|111.414 +639321.031|220890.721|111.770 +639315.993|220895.211|111.844 +639310.912|220899.731|111.798 +639305.843|220904.242|111.618 +639300.771|220908.759|111.536 +639285.519|220922.347|112.014 +639280.389|220926.919|112.194 +639275.311|220931.442|112.356 +639270.239|220935.959|112.410 +639265.167|220940.480|112.526 +639254.960|220949.575|113.160 +639249.857|220954.116|112.987 +639244.795|220958.627|113.051 +639239.683|220963.181|113.157 +639234.617|220967.695|113.349 +639229.497|220972.258|113.678 +639224.428|220976.778|114.072 +639219.316|220981.332|114.309 +639214.208|220985.886|114.559 +639209.102|220990.436|114.785 +639203.997|220994.984|114.953 +639198.943|220999.486|115.132 +639193.795|221004.070|115.266 +639188.699|221008.612|115.385 +639183.606|221013.150|115.413 +639178.513|221017.682|115.349 +639173.416|221022.227|115.638 +639168.271|221026.808|115.800 +639163.181|221031.344|115.919 +639158.088|221035.879|116.025 +639152.952|221040.454|116.099 +639147.865|221044.983|116.065 +639142.778|221049.513|116.071 +639137.645|221054.085|116.007 +639132.509|221058.660|116.126 +639127.422|221063.192|116.309 +639122.286|221067.770|116.690 +639117.202|221072.300|116.848 +639112.069|221076.872|116.848 +639106.939|221081.441|116.973 +639101.855|221085.970|117.107 +639096.725|221090.536|117.046 +639091.596|221095.105|117.065 +639086.518|221099.622|116.623 +639076.255|221108.748|115.577 +639060.884|221122.375|111.210 +639050.588|221131.513|108.832 +639035.250|221145.205|111.441 +639030.108|221149.780|110.996 +639024.988|221154.355|112.212 +638999.415|221177.194|117.019 +638989.128|221186.365|118.022 +638984.062|221190.885|118.601 +638978.896|221195.491|119.070 +638968.697|221204.580|119.555 +638963.525|221209.189|119.808 +638958.404|221213.752|120.070 +638953.283|221218.318|120.363 +638932.782|221236.587|121.155 +638927.665|221241.150|121.536 +638917.423|221250.285|122.152 +638912.348|221254.808|122.414 +638907.222|221259.377|122.603 +638902.098|221263.946|122.886 +638897.014|221268.475|122.996 +638891.902|221273.035|123.505 +638876.556|221286.715|123.935 +638871.444|221291.275|124.478 +638866.366|221295.801|124.746 +638861.246|221300.370|125.105 +638851.010|221309.486|125.221 +638845.856|221314.080|125.072 +638830.552|221327.720|125.816 +638815.315|221341.301|126.200 +638800.014|221354.935|126.578 +638794.976|221359.428|126.904 +638789.867|221363.982|126.956 +638779.715|221373.031|127.346 +638774.719|221377.484|127.663 +638769.632|221382.023|128.019 +638764.621|221386.488|128.184 +638759.582|221390.981|128.595 +638754.523|221395.492|128.784 +638749.518|221399.954|129.046 +638744.452|221404.468|129.184 +638739.432|221408.940|129.339 +638729.346|221417.931|129.684 +638719.288|221426.893|129.894 +638714.252|221431.379|129.964 +638709.245|221435.842|129.824 +638704.194|221440.340|129.787 +638699.174|221444.809|129.604 +638694.105|221449.323|129.437 +638689.103|221453.770|129.037 +638663.787|221476.295|126.815 +638658.797|221480.739|126.675 +638643.761|221494.122|125.874 +638599.151|221533.853|125.233 +638594.256|221538.215|125.374 +638589.272|221542.650|124.862 +638584.328|221547.051|124.679 +638579.278|221551.538|123.734 +638574.312|221555.954|123.466 +638564.412|221564.766|122.829 +638554.589|221573.511|122.505 +638549.782|221577.796|122.752 +638544.869|221582.179|122.960 +638530.119|221595.304|121.999 +638525.255|221599.635|121.960 +638520.411|221603.951|122.091 +638515.617|221608.225|122.213 +638500.980|221621.252|121.448 +638496.079|221625.613|120.988 +638491.276|221629.890|120.847 +638481.479|221638.604|119.793 +638476.627|221642.920|119.442 +638461.661|221656.203|115.775 +638456.763|221660.559|115.276 +638452.002|221664.802|115.297 +638447.293|221669.002|115.641 +638432.766|221681.916|113.938 +638423.290|221690.359|113.901 +638394.572|221715.911|111.904 +638389.789|221720.169|111.527 +638375.595|221732.803|110.844 +638356.615|221749.686|109.070 +638328.622|221774.606|108.204 +638324.144|221778.602|108.619 +638319.706|221782.564|109.247 +638315.311|221786.490|110.091 +638310.867|221790.459|110.960 +638242.506|221851.303|107.473 +638233.935|221858.954|108.738 +638217.074|221874.011|111.904 +638212.721|221877.891|112.078 +638204.102|221885.566|112.380 +638182.525|221904.768|112.164 +638177.752|221908.990|110.301 +638173.289|221912.952|109.509 +638169.077|221916.701|109.548 +638164.852|221920.465|109.765 +638156.321|221928.052|109.262 +638134.967|221947.035|107.454 +638130.965|221950.604|108.037 +638126.890|221954.234|108.341 +638118.041|221962.080|106.077 +638113.935|221965.734|106.092 +638109.979|221969.264|106.705 +638105.956|221972.845|106.863 +638101.853|221976.497|106.729 +638085.339|221991.173|105.147 +638081.227|221994.824|104.653 +638077.210|221998.400|104.522 +638072.912|222002.207|103.178 +638211.828|221876.019|112.240 +638216.108|221872.200|111.990 +638233.155|221856.969|109.637 +638246.054|221845.442|107.732 +638318.993|221780.431|109.847 +638323.440|221776.456|109.003 +638327.945|221772.430|108.469 +638337.144|221764.225|108.113 +638341.731|221760.131|107.762 +638355.956|221747.457|108.930 +638360.705|221743.227|109.210 +638375.073|221730.425|110.609 +638389.332|221717.715|111.362 +638394.178|221713.399|111.798 +638413.448|221696.227|113.166 +638427.908|221683.334|113.624 +638437.725|221674.592|114.785 +638442.578|221670.267|115.227 +638447.497|221665.884|115.492 +638452.264|221661.629|115.178 +638457.092|221657.322|115.254 +638462.249|221652.744|117.028 +638477.212|221639.430|119.473 +638482.098|221635.074|119.744 +638492.041|221626.220|120.777 +638496.972|221621.822|121.097 +638501.913|221617.420|121.497 +638511.813|221608.599|122.176 +638516.669|221604.268|122.088 +638521.548|221599.910|121.865 +638526.440|221595.545|121.740 +638531.500|221591.040|122.432 +638536.435|221586.642|122.637 +638541.382|221582.228|122.606 +638546.329|221577.815|122.609 +638551.242|221573.432|122.384 +638556.177|221569.027|122.353 +638571.197|221555.637|123.188 +638576.263|221551.129|123.822 +638581.292|221546.649|124.225 +638586.325|221542.165|124.703 +638596.389|221533.198|125.343 +638606.460|221524.218|125.758 +638611.474|221519.747|125.852 +638616.512|221515.257|126.148 +638621.566|221510.749|126.206 +638626.467|221506.375|125.843 +638636.556|221497.378|125.922 +638651.665|221483.906|126.425 +638656.746|221479.373|126.477 +638661.815|221474.856|126.870 +638671.958|221465.822|127.794 +638687.223|221452.221|129.007 +638692.310|221447.689|129.303 +638697.385|221443.163|129.531 +638702.457|221438.643|129.738 +638707.507|221434.138|129.787 +638712.613|221429.587|129.897 +638717.663|221425.082|129.988 +638722.747|221420.544|129.961 +638727.764|221416.063|129.766 +638732.818|221411.549|129.421 +638742.904|221402.542|129.153 +638748.018|221397.976|129.004 +638753.072|221393.462|128.754 +638758.129|221388.945|128.565 +638763.213|221384.400|128.132 +638768.266|221379.886|127.931 +638773.301|221375.387|127.532 +638778.398|221370.837|127.276 +638783.442|221366.329|126.992 +638788.545|221361.772|126.879 +638793.607|221357.255|126.852 +638798.688|221352.713|126.477 +638813.950|221339.089|126.294 +638829.220|221325.452|125.776 +638844.466|221311.830|124.999 +638859.804|221298.142|125.023 +638864.876|221293.609|124.694 +638870.006|221289.028|124.526 +638875.065|221284.505|123.947 +638885.291|221275.376|123.932 +638890.406|221270.807|123.472 +638895.469|221266.281|123.011 +638900.595|221261.703|122.853 +638905.713|221257.131|122.487 +638910.840|221252.553|122.323 +638915.963|221247.978|122.100 +638921.038|221243.445|121.859 +638926.150|221238.873|121.414 +638931.271|221234.301|121.100 +638956.932|221211.383|120.079 +638962.004|221206.851|119.820 +638967.173|221202.236|119.579 +638977.408|221193.089|118.851 +638982.529|221188.514|118.631 +639013.189|221161.076|113.142 +639018.367|221156.452|112.883 +639028.609|221147.290|111.301 +639033.738|221142.706|110.972 +639038.880|221138.124|111.463 +639044.047|221133.491|109.841 +639049.189|221128.910|110.451 +639059.518|221119.711|112.039 +639074.975|221105.965|115.779 +639085.231|221096.824|116.702 +639090.407|221092.206|116.958 +639095.534|221087.631|117.059 +639100.660|221083.056|117.071 +639105.836|221078.435|116.955 +639110.966|221073.854|116.818 +639116.096|221069.276|116.705 +639121.222|221064.695|116.626 +639126.358|221060.108|116.178 +639131.488|221055.527|116.105 +639136.666|221050.906|116.138 +639141.751|221046.367|116.150 +639146.886|221041.780|115.903 +639152.016|221037.202|116.019 +639157.149|221032.621|115.992 +639162.288|221028.034|115.843 +639167.427|221023.443|115.611 +639172.520|221018.896|115.425 +639177.656|221014.308|115.391 +639182.798|221009.721|115.318 +639187.891|221005.173|115.209 +639193.033|221000.583|115.132 +639198.175|220995.990|115.023 +639203.275|220991.436|114.858 +639208.426|220986.837|114.645 +639213.482|220982.316|114.361 +639218.640|220977.711|114.050 +639223.748|220973.148|113.840 +639228.860|220968.582|113.517 +639233.974|220964.013|113.221 +639239.086|220959.450|113.047 +639244.194|220954.891|112.983 +639249.299|220950.331|112.941 +639254.353|220945.823|113.096 +639259.416|220941.303|113.026 +639264.549|220936.715|112.587 +639269.614|220932.192|112.505 +639274.686|220927.666|112.410 +639279.761|220923.130|112.209 +639284.833|220918.604|112.182 +639289.853|220914.123|112.161 +639300.034|220905.028|111.548 +639305.011|220900.584|111.542 +639310.083|220896.058|111.639 +639315.109|220891.574|111.697 +639325.152|220882.604|111.264 +639330.200|220878.096|111.069 +639335.204|220873.628|110.862 +639340.200|220869.165|110.783 +639345.242|220864.666|110.774 +639350.195|220860.241|110.640 +639355.178|220855.797|110.844 +639360.177|220851.335|110.810 +639365.118|220846.927|110.966 +639370.125|220842.456|110.871 +639375.063|220838.051|111.075 +639379.974|220833.674|111.658 +639389.874|220824.841|111.868 +639399.755|220816.020|111.810 +639404.662|220811.643|111.923 +639409.588|220807.245|111.840 +639414.501|220802.859|111.908 +639429.242|220789.701|111.758 +639434.131|220785.336|111.676 +639439.020|220780.971|111.615 +639443.869|220776.646|112.002 +639453.562|220767.999|112.350 +639463.193|220759.410|112.880 +639468.009|220755.112|113.154 +639472.825|220750.817|113.471 +639492.000|220733.721|114.312 +639501.543|220725.211|114.578 +639506.390|220720.886|114.303 +639511.166|220716.622|114.224 +639515.927|220712.379|114.322 +639520.764|220708.054|113.770 +639525.598|220703.738|113.300 +639544.749|220686.639|111.987 +639554.265|220678.144|111.746 +639559.029|220673.886|111.240 +639563.741|220669.682|111.158 +639573.178|220661.264|110.984 +639582.645|220652.815|110.673 +639587.302|220648.660|110.749 +639591.978|220644.488|110.697 +639596.650|220640.321|110.701 +639601.311|220636.167|110.810 +639615.103|220623.874|111.850 +639619.751|220619.726|111.767 +639624.402|220615.577|111.676 +639629.038|220611.441|111.725 +639656.428|220587.030|113.179 +639670.141|220574.798|113.352 +639674.691|220570.738|113.462 +639692.824|220554.572|113.931 +639697.430|220550.460|113.803 +639715.486|220534.351|113.572 +639724.523|220526.283|113.361 +639729.031|220522.263|113.361 +639733.478|220518.297|113.432 +639737.947|220514.313|113.678 +639764.708|220490.438|113.547 +639769.183|220486.446|113.337 +639773.617|220482.489|113.349 +639791.439|220466.576|112.075 +639826.601|220435.193|110.850 +639843.969|220419.700|110.231 +639848.272|220415.863|110.173 +639852.543|220412.053|110.045 +639856.852|220408.212|110.006 +639861.104|220404.421|110.006 +639865.372|220400.614|109.942 +639869.617|220396.828|109.756 +639882.389|220385.435|109.381 +639886.570|220381.707|109.314 +639846.727|220415.284|110.012 +639842.524|220419.024|110.057 +639833.956|220426.656|110.490 +639825.446|220434.230|110.704 +639816.765|220441.969|111.597 +639812.473|220445.791|111.691 +639803.963|220453.359|111.301 +639799.644|220457.203|111.316 +639790.903|220464.991|111.956 +639768.917|220484.574|113.246 +639764.556|220488.457|113.377 +639760.154|220492.374|113.456 +639746.862|220504.212|114.029 +639738.123|220511.985|113.724 +639733.747|220515.877|113.493 +639729.324|220519.812|113.249 +639724.868|220523.777|113.221 +639720.393|220527.761|113.307 +639715.919|220531.745|113.413 +639711.399|220535.768|113.502 +639706.936|220539.743|113.593 +639688.813|220555.876|113.910 +639670.683|220572.003|113.319 +639666.139|220576.045|113.142 +639661.500|220580.175|113.243 +639656.906|220584.262|113.093 +639647.744|220592.409|112.654 +639643.126|220596.518|112.389 +639633.909|220604.714|112.090 +639629.261|220608.847|111.731 +639624.640|220612.956|111.533 +639619.928|220617.150|111.636 +639615.213|220621.350|111.789 +639601.198|220633.811|110.749 +639596.428|220638.053|110.649 +639591.712|220642.250|110.560 +639586.933|220646.505|110.579 +639582.163|220650.748|110.542 +639572.589|220659.267|110.420 +639567.755|220663.577|110.969 +639562.942|220667.860|110.963 +639558.111|220672.164|111.149 +639553.268|220676.477|111.435 +639543.505|220685.172|111.923 +639538.604|220689.537|111.990 +639533.724|220693.881|112.273 +639523.827|220702.708|113.307 +639518.902|220707.094|113.669 +639513.943|220711.516|114.337 +639509.032|220715.884|114.221 +639504.107|220720.270|114.239 +639499.154|220724.681|114.541 +639494.265|220729.030|114.288 +639489.318|220733.432|114.133 +639484.371|220737.833|114.005 +639479.491|220742.173|113.736 +639474.504|220746.605|113.526 +639469.582|220750.985|113.243 +639464.605|220755.411|113.002 +639459.670|220759.803|112.862 +639454.650|220764.265|112.587 +639449.694|220768.673|112.209 +639439.705|220777.558|111.752 +639434.737|220781.974|111.527 +639429.693|220786.464|111.603 +639424.648|220790.957|111.740 +639419.561|220795.486|111.819 +639409.500|220804.441|111.886 +639404.443|220808.940|111.728 +639399.374|220813.454|111.709 +639394.302|220817.968|111.746 +639389.224|220822.488|111.868 +639384.174|220826.978|111.697 +639379.126|220831.471|111.523 +639374.054|220835.979|111.054 +639369.031|220840.444|110.612 +639363.920|220844.995|110.685 +639358.820|220849.530|110.594 +639353.767|220854.029|110.618 +639348.616|220858.613|110.627 +639343.562|220863.115|110.725 +639338.414|220867.696|110.768 +639333.315|220872.235|110.813 +639328.209|220876.782|111.042 +639323.058|220881.367|111.222 +639317.907|220885.951|111.405 +639312.802|220890.498|111.746 +639307.678|220895.052|111.584 +639302.597|220899.572|111.551 +639297.488|220904.111|111.191 +639292.319|220908.719|111.911 +639287.189|220913.285|111.999 +639276.927|220922.417|112.285 +639271.745|220927.029|112.493 +639266.621|220931.585|112.581 +639256.362|220940.720|113.115 +639251.259|220945.256|112.898 +639246.096|220949.852|112.950 +639240.981|220954.400|112.990 +639235.867|220958.950|113.072 +639230.701|220963.547|113.258 +639225.537|220968.143|113.468 +639220.468|220972.657|113.779 +639215.305|220977.254|114.066 +639210.142|220981.850|114.346 +639205.033|220986.398|114.568 +639199.876|220990.988|114.821 +639194.771|220995.530|114.995 +639189.620|221000.114|115.157 +639184.474|221004.692|115.202 +639179.375|221009.227|115.260 +639174.230|221013.808|115.419 +639169.085|221018.384|115.462 +639163.989|221022.922|115.672 +639158.847|221027.494|115.663 +639153.705|221032.072|115.846 +639148.609|221036.608|116.062 +639143.470|221041.180|116.120 +639138.331|221045.755|116.324 +639133.244|221050.278|116.214 +639128.108|221054.844|116.117 +639122.972|221059.413|116.254 +639117.879|221063.951|116.787 +639112.746|221068.514|116.669 +639107.610|221073.083|116.751 +639102.526|221077.612|117.037 +639097.393|221082.175|117.004 +639092.309|221086.699|117.022 +639087.176|221091.261|116.870 +639082.043|221095.821|116.586 +639076.959|221100.341|116.263 +639071.826|221104.901|115.818 +639066.690|221109.455|114.733 +639061.597|221113.972|113.645 +639056.452|221118.529|112.377 +639051.356|221123.049|111.325 +639046.211|221127.618|110.688 +639035.988|221136.722|111.469 +639025.771|221145.821|112.316 +639015.563|221154.916|113.575 +639010.482|221159.442|114.005 +639000.308|221168.522|116.403 +638995.184|221173.085|116.885 +638990.109|221177.608|117.235 +638974.845|221191.202|118.778 +638964.698|221200.240|119.528 +638959.571|221204.803|119.768 +638929.052|221231.963|121.049 +638923.964|221236.487|121.128 +638918.902|221240.998|121.728 +638913.827|221245.515|122.051 +638908.746|221250.035|122.265 +638903.665|221254.555|122.432 +638898.584|221259.075|122.688 +638893.506|221263.596|122.941 +638888.434|221268.113|123.341 +638873.185|221281.679|123.990 +638868.158|221286.154|124.371 +638863.059|221290.689|124.310 +638842.750|221308.758|124.996 +638827.547|221322.288|125.907 +638812.362|221335.800|126.447 +638797.113|221349.357|126.306 +638792.126|221353.798|126.703 +638787.011|221358.346|126.754 +638781.955|221362.845|126.922 +638776.953|221367.295|127.172 +638771.902|221371.791|127.428 +638766.855|221376.283|127.757 +638761.878|221380.715|128.330 +638756.803|221385.229|128.361 +638751.795|221389.686|128.608 +638746.741|221394.181|128.918 +638741.721|221398.650|129.037 +638736.716|221403.106|129.363 +638721.604|221416.551|129.927 +638716.615|221420.986|129.973 +638711.564|221425.475|129.927 +638706.550|221429.934|129.751 +638701.478|221434.439|129.555 +638696.422|221438.938|129.491 +638691.395|221443.404|129.296 +638686.308|221447.924|129.034 +638681.264|221452.404|128.720 +638655.972|221474.865|126.562 +638650.942|221479.334|126.120 +638645.977|221483.750|126.285 +638635.888|221492.708|125.334 +638630.926|221497.125|125.578 +638625.985|221501.517|125.605 +638621.014|221505.943|125.806 +638616.073|221510.335|125.889 +638611.120|221514.739|125.880 +638606.134|221519.168|125.654 +638601.135|221523.612|125.325 +638596.194|221528.001|125.124 +638581.219|221541.306|124.225 +638576.242|221545.725|123.844 +638571.228|221550.175|123.216 +638551.480|221567.732|122.146 +638531.915|221585.142|122.384 +638526.946|221589.555|121.975 +638517.174|221598.245|121.682 +638512.346|221602.546|121.942 +638492.815|221619.908|120.811 +638478.090|221632.993|119.518 +638473.244|221637.303|119.204 +638458.427|221650.449|116.483 +638453.392|221654.911|115.175 +638448.622|221659.154|115.154 +638443.897|221663.360|115.437 +638439.124|221667.609|115.449 +638424.555|221680.545|113.599 +638419.702|221684.861|113.249 +638414.999|221689.042|113.191 +638410.159|221693.343|112.685 +638395.824|221706.084|111.749 +638376.735|221723.049|110.341 +638362.540|221735.665|109.295 +638343.807|221752.322|108.494 +638339.076|221756.525|108.119 +638334.532|221760.573|108.430 +638330.076|221764.548|109.183 +638325.699|221768.452|110.100 +638262.370|221824.807|111.118 +638248.691|221836.959|109.823 +638244.326|221840.845|110.060 +638239.931|221844.756|110.176 +638231.287|221852.458|111.106 +638209.871|221871.539|113.105 +638201.297|221879.180|113.590 +638188.581|221890.516|114.590 +638175.420|221902.217|113.203 +638170.674|221906.414|111.021 +638166.114|221910.459|109.859 +638161.914|221914.199|109.957 +638157.738|221917.920|110.173 +638148.991|221925.693|108.829 +638136.347|221936.943|108.344 +638115.164|221955.776|106.290 +638111.040|221959.446|106.043 +638106.971|221963.070|106.217 +638103.027|221966.591|106.671 +638099.089|221970.102|107.168 +638082.514|221984.833|105.144 +638078.390|221988.497|104.614 +638070.303|221995.693|104.181 +638207.150|221871.807|113.505 +638211.478|221867.942|113.456 +638250.690|221832.924|111.121 +638273.352|221812.718|112.170 +638277.757|221808.783|111.752 +638300.784|221788.255|112.919 +638305.301|221784.219|112.651 +638327.817|221764.097|110.106 +638332.237|221760.140|109.173 +638336.696|221756.150|108.177 +638350.820|221743.562|109.067 +638355.246|221739.603|107.954 +638364.988|221730.940|109.573 +638374.424|221722.534|109.975 +638379.292|221718.200|110.475 +638412.875|221688.290|112.758 +638422.503|221679.716|113.276 +638427.395|221675.360|113.883 +638437.268|221666.582|115.385 +638442.078|221662.290|115.306 +638446.805|221658.072|115.056 +638451.670|221653.734|115.035 +638456.598|221649.354|115.705 +638466.760|221640.335|118.705 +638471.573|221636.044|118.799 +638476.548|221631.615|119.275 +638481.473|221627.232|119.781 +638486.387|221622.858|120.262 +638491.260|221618.515|120.518 +638496.244|221614.083|121.155 +638501.163|221609.700|121.439 +638506.068|221605.329|121.649 +638510.938|221600.989|121.655 +638515.794|221596.654|121.253 +638520.692|221592.293|121.484 +638550.233|221565.964|122.027 +638555.186|221561.550|122.112 +638570.164|221548.209|123.030 +638575.157|221543.765|123.514 +638580.213|221539.269|124.118 +638585.227|221534.801|124.474 +638590.244|221530.336|124.849 +638595.219|221525.901|124.947 +638600.281|221521.393|125.358 +638610.264|221512.499|125.529 +638615.275|221508.034|125.624 +638620.258|221503.590|125.535 +638625.229|221499.155|125.337 +638635.282|221490.197|125.526 +638645.322|221481.251|125.706 +638680.950|221449.530|128.726 +638685.991|221445.040|129.050 +638691.072|221440.514|129.321 +638696.144|221435.997|129.491 +638701.204|221431.486|129.620 +638706.322|221426.926|129.845 +638711.369|221422.427|129.876 +638716.462|221417.889|129.903 +638736.689|221399.854|129.174 +638741.745|221395.340|128.931 +638746.814|221390.822|128.784 +638751.914|221386.272|128.513 +638757.007|221381.730|128.135 +638762.024|221377.256|128.053 +638767.114|221372.714|127.663 +638772.207|221368.173|127.330 +638777.300|221363.628|127.041 +638782.397|221359.081|126.791 +638787.517|221354.518|126.855 +638792.608|221349.976|126.553 +638807.930|221336.318|126.450 +638823.252|221322.654|125.828 +638838.617|221308.953|125.273 +638859.005|221290.772|124.392 +638869.271|221281.615|124.072 +638889.784|221263.321|123.191 +638894.905|221258.752|122.850 +638900.025|221254.186|122.499 +638905.155|221249.611|122.353 +638910.282|221245.039|122.152 +638915.406|221240.470|121.856 +638920.514|221235.911|121.237 +638925.687|221231.296|121.039 +638930.783|221226.757|121.289 +638935.928|221222.158|120.357 +638951.314|221208.442|120.061 +638956.438|221203.873|119.805 +638961.562|221199.304|119.543 +638966.679|221194.735|119.089 +638971.852|221190.123|118.918 +638992.328|221171.848|117.104 +639002.569|221162.707|116.160 +639007.675|221158.141|114.751 +639012.844|221153.523|113.977 +639023.046|221144.416|112.910 +639028.170|221139.837|112.057 +639033.293|221135.259|111.097 +639043.571|221126.106|111.578 +639048.661|221121.571|111.722 +639064.081|221107.870|114.971 +639069.217|221103.307|115.846 +639074.347|221098.735|115.894 +639079.428|221094.212|116.525 +639084.558|221089.643|116.754 +639089.688|221085.077|116.961 +639094.769|221080.548|116.952 +639099.898|221075.976|116.982 +639104.979|221071.440|116.827 +639110.064|221066.908|116.681 +639115.193|221062.333|116.733 +639120.280|221057.791|116.260 +639125.364|221053.256|116.217 +639130.446|221048.723|116.272 +639135.536|221044.182|115.971 +639140.665|221039.607|116.114 +639145.704|221035.114|116.074 +639150.794|221030.573|115.897 +639155.881|221026.034|115.833 +639160.974|221021.489|115.620 +639166.016|221016.991|115.532 +639171.109|221012.449|115.416 +639176.202|221007.904|115.291 +639181.250|221003.403|115.205 +639186.294|220998.901|115.108 +639191.393|220994.356|115.001 +639196.444|220989.845|114.797 +639201.498|220985.337|114.593 +639206.603|220980.780|114.352 +639211.666|220976.263|114.050 +639216.725|220971.746|113.770 +639221.791|220967.226|113.483 +639226.851|220962.709|113.304 +639231.914|220958.192|113.136 +639236.976|220953.674|112.996 +639242.039|220949.160|112.926 +639247.099|220944.649|112.907 +639252.110|220940.181|112.980 +639257.166|220935.670|113.054 +639262.183|220931.198|113.032 +639267.274|220926.651|112.532 +639272.367|220922.103|112.029 +639277.362|220917.653|112.471 +639282.404|220913.151|112.093 +639287.448|220908.649|111.737 +639292.520|220904.126|111.776 +639302.579|220895.156|111.706 +639307.614|220890.663|111.606 +639312.664|220886.158|111.344 +639317.709|220881.656|111.188 +639322.695|220877.209|111.176 +639327.746|220872.704|110.981 +639332.803|220868.190|110.725 +639337.792|220863.740|110.780 +639342.843|220859.235|110.685 +639347.848|220854.770|110.557 +639352.907|220850.256|110.374 +639357.863|220845.836|110.347 +639362.899|220841.346|110.530 +639367.852|220836.933|110.582 +639372.872|220832.461|111.018 +639377.849|220828.026|111.411 +639382.793|220823.619|111.584 +639387.798|220819.160|111.691 +639392.757|220814.737|111.734 +639397.777|220810.260|111.676 +639402.730|220805.843|111.837 +639412.682|220796.967|111.749 +639417.720|220792.474|111.606 +639422.655|220788.073|111.539 +639427.647|220783.617|111.392 +639432.576|220779.222|111.438 +639437.529|220774.808|111.755 +639447.365|220766.042|112.179 +639457.180|220757.300|112.880 +639462.056|220752.954|113.063 +639466.988|220748.559|113.224 +639471.813|220744.258|113.459 +639476.745|220739.860|113.648 +639481.573|220735.559|113.907 +639486.468|220731.191|114.017 +639491.317|220726.866|114.111 +639501.071|220718.170|114.337 +639505.945|220713.821|114.282 +639510.785|220709.505|114.126 +639515.680|220705.128|113.514 +639520.584|220700.748|113.270 +639530.368|220692.006|112.276 +639535.242|220687.657|111.975 +639544.923|220679.015|111.606 +639549.726|220674.727|111.170 +639554.576|220670.399|111.161 +639578.466|220649.078|110.441 +639583.227|220644.832|110.499 +639587.945|220640.620|110.515 +639592.666|220636.410|110.539 +639597.394|220632.192|110.530 +639602.033|220628.056|110.819 +639611.268|220619.829|111.746 +639615.969|220615.635|111.642 +639620.720|220611.392|111.234 +639625.320|220607.293|111.533 +639629.901|220603.212|111.972 +639634.522|220599.088|112.148 +639639.152|220594.961|112.295 +639643.718|220590.892|112.554 +639652.923|220582.680|112.624 +639657.464|220578.629|112.758 +639662.009|220574.579|112.889 +639689.233|220550.295|113.371 +639702.748|220538.237|113.371 +639707.250|220534.223|113.340 +639711.755|220530.203|113.297 +639720.695|220522.223|113.084 +639725.142|220518.255|113.136 +639729.522|220514.350|113.300 +639733.929|220510.421|113.602 +639738.276|220506.547|113.983 +639742.699|220502.600|113.956 +639747.149|220498.628|113.797 +639755.979|220490.746|113.358 +639760.365|220486.833|113.313 +639764.742|220482.922|113.069 +639773.560|220475.049|112.566 +639782.380|220467.170|111.871 +639786.754|220463.265|111.740 +639799.785|220451.628|110.871 +639808.225|220444.109|111.569 +639812.498|220440.293|111.523 +639821.182|220432.532|110.554 +639829.817|220424.824|109.914 +639838.281|220417.280|109.945 +639842.493|220413.522|109.820 +639846.700|220409.770|109.740 +639850.900|220406.024|109.713 +639855.103|220402.275|109.679 +639859.266|220398.562|109.609 +639863.430|220394.847|109.545 +639867.645|220391.083|109.259 +639880.124|220379.951|108.811 +639884.233|220376.288|108.847 +639845.368|220409.300|109.530 +639841.064|220413.126|109.554 +639836.635|220417.064|109.951 +639828.052|220424.684|109.695 +639819.152|220432.599|110.573 +639810.233|220440.533|111.377 +639805.807|220444.462|111.362 +639801.501|220448.281|111.036 +639797.151|220452.140|110.679 +639788.166|220460.132|111.493 +639783.749|220464.055|111.523 +639779.293|220468.020|111.807 +639774.724|220472.083|112.151 +639770.213|220476.094|112.481 +639765.702|220480.103|112.822 +639761.236|220484.074|112.965 +639756.744|220488.067|113.261 +639752.257|220492.051|113.261 +639747.734|220496.074|113.493 +639743.223|220500.082|113.663 +639738.700|220504.103|113.934 +639734.243|220508.056|113.557 +639729.827|220511.976|113.264 +639725.343|220515.956|113.075 +639720.847|220519.946|112.962 +639716.348|220523.942|112.901 +639711.810|220527.975|113.087 +639707.299|220531.983|113.130 +639702.748|220536.024|113.121 +639698.143|220540.115|113.145 +639693.711|220544.047|112.782 +639670.793|220564.423|113.331 +639661.734|220572.466|112.746 +639657.110|220576.575|112.752 +639652.587|220580.589|112.465 +639647.951|220584.713|112.612 +639643.364|220588.791|112.453 +639638.780|220592.861|112.273 +639634.196|220596.933|112.130 +639629.587|220601.026|111.828 +639624.988|220605.107|111.475 +639620.449|220609.137|111.066 +639615.758|220613.310|111.365 +639601.820|220625.691|110.789 +639597.193|220629.796|110.374 +639592.520|220633.951|110.301 +639587.832|220638.117|110.374 +639583.102|220642.324|110.396 +639578.432|220646.475|110.374 +639573.717|220650.663|110.326 +639559.419|220663.376|110.728 +639549.900|220671.847|111.164 +639545.084|220676.126|111.249 +639540.274|220680.405|111.725 +639535.440|220684.706|112.036 +639530.588|220689.022|112.124 +639520.880|220697.666|113.209 +639516.018|220701.991|113.450 +639511.154|220706.316|113.736 +639506.265|220710.672|114.279 +639501.452|220714.948|114.187 +639496.502|220719.350|114.440 +639491.723|220723.593|114.090 +639486.873|220727.902|113.928 +639481.960|220732.270|113.931 +639477.129|220736.562|113.678 +639472.231|220740.911|113.569 +639467.339|220745.261|113.453 +639462.480|220749.574|113.008 +639457.576|220753.932|113.035 +639447.752|220762.656|112.337 +639442.827|220767.033|112.145 +639437.895|220771.413|112.020 +639432.997|220775.762|111.584 +639428.035|220780.170|111.319 +639423.051|220784.598|111.298 +639418.052|220789.042|111.466 +639413.066|220793.474|111.514 +639408.027|220797.958|111.661 +639397.966|220806.904|111.798 +639393.007|220811.311|111.670 +639387.941|220815.810|111.621 +639382.936|220820.257|111.487 +639377.883|220824.750|111.383 +639372.841|220829.230|111.133 +639367.818|220833.687|110.664 +639362.777|220838.167|110.432 +639357.729|220842.651|110.295 +639352.624|220847.189|110.320 +639347.515|220851.731|110.399 +639342.413|220856.266|110.451 +639327.097|220869.888|110.883 +639321.943|220874.475|111.057 +639316.846|220879.013|111.185 +639311.713|220883.579|111.130 +639306.602|220888.130|111.514 +639296.281|220897.317|111.667 +639291.149|220901.886|111.728 +639286.016|220906.452|111.810 +639280.868|220911.039|112.237 +639275.674|220915.666|112.624 +639270.495|220920.274|112.776 +639260.193|220929.446|113.099 +639255.027|220934.042|113.130 +639249.872|220938.626|112.904 +639244.709|220943.220|112.916 +639239.549|220947.810|112.889 +639234.386|220952.406|112.956 +639229.219|220957.003|113.121 +639224.004|220961.645|113.316 +639218.841|220966.244|113.529 +639213.632|220970.883|113.730 +639208.465|220975.483|114.081 +639203.256|220980.122|114.343 +639198.050|220984.758|114.578 +639192.844|220989.391|114.846 +639187.693|220993.978|114.968 +639182.493|220998.605|115.126 +639177.296|221003.229|115.215 +639172.103|221007.853|115.257 +639166.906|221012.477|115.422 +639161.712|221017.100|115.583 +639156.521|221021.718|115.593 +639151.324|221026.345|115.934 +639146.137|221030.963|115.925 +639140.949|221035.583|116.080 +639135.758|221040.198|116.178 +639130.574|221044.813|116.126 +639125.386|221049.431|116.284 +639120.201|221054.042|116.251 +639115.013|221058.663|116.641 +639109.878|221063.232|116.681 +639104.647|221067.886|116.656 +639099.466|221072.501|116.815 +639094.330|221077.070|116.925 +639089.099|221081.724|116.915 +639083.921|221086.330|116.693 +639078.788|221090.896|116.480 +639073.606|221095.501|116.254 +639068.422|221100.110|115.983 +639063.237|221104.712|115.276 +639058.052|221109.318|114.443 +639047.717|221118.486|112.478 +639042.523|221123.098|111.908 +639037.332|221127.712|111.615 +639032.193|221132.284|111.594 +639027.014|221136.902|112.432 +639021.839|221141.517|113.166 +639016.718|221146.089|114.111 +639011.540|221150.701|114.541 +639006.367|221155.312|115.230 +639001.253|221159.875|116.297 +638985.866|221173.576|117.126 +638970.507|221187.261|118.763 +638960.260|221196.387|119.473 +638955.136|221200.953|119.744 +638950.007|221205.519|119.924 +638939.845|221214.562|120.280 +638934.715|221219.131|120.381 +638924.565|221228.172|121.018 +638919.484|221232.698|121.164 +638914.418|221237.212|121.698 +638909.343|221241.732|122.036 +638904.265|221246.256|122.271 +638899.184|221250.782|122.487 +638894.106|221255.302|122.746 +638889.080|221259.783|123.082 +638883.999|221264.306|123.271 +638868.847|221277.799|123.914 +638863.757|221282.332|123.999 +638858.725|221286.815|124.258 +638838.565|221304.765|124.974 +638808.360|221331.667|126.242 +638798.313|221340.600|126.026 +638793.272|221345.093|126.328 +638788.282|221349.540|126.684 +638783.272|221353.999|126.788 +638778.258|221358.465|126.864 +638773.256|221362.918|127.114 +638763.316|221371.775|127.827 +638758.272|221376.268|128.199 +638753.310|221380.688|128.364 +638748.290|221385.156|128.489 +638743.288|221389.612|128.818 +638738.316|221394.038|128.952 +638733.312|221398.497|129.287 +638718.386|221411.787|129.735 +638713.359|221416.261|129.882 +638708.348|221420.720|129.729 +638703.359|221425.161|129.827 +638698.342|221429.624|129.638 +638693.319|221434.092|129.434 +638688.293|221438.560|129.257 +638683.306|221442.995|128.992 +638678.262|221447.482|128.662 +638663.165|221460.899|127.355 +638658.139|221465.368|126.882 +638653.122|221469.827|126.529 +638643.078|221478.757|125.825 +638638.040|221483.235|125.371 +638628.110|221492.071|125.383 +638623.145|221496.491|125.197 +638618.192|221500.898|125.151 +638613.193|221505.345|125.163 +638603.293|221514.157|125.246 +638598.355|221518.549|125.008 +638593.353|221522.996|124.700 +638588.355|221527.440|124.456 +638578.424|221536.270|123.783 +638573.480|221540.669|123.636 +638568.424|221545.161|123.069 +638563.495|221549.541|122.737 +638553.665|221558.289|123.039 +638548.566|221562.806|121.948 +638524.072|221584.587|121.731 +638519.119|221588.986|121.463 +638514.218|221593.341|121.231 +638509.320|221597.697|121.033 +638494.699|221610.693|120.759 +638489.797|221615.049|120.643 +638484.844|221619.444|119.906 +638479.943|221623.797|119.537 +638475.063|221628.134|119.311 +638470.180|221632.468|118.787 +638455.291|221645.681|116.553 +638450.283|221650.113|115.111 +638445.467|221654.399|115.120 +638440.727|221658.614|115.324 +638435.902|221662.906|115.327 +638421.293|221675.872|113.569 +638406.757|221688.780|112.167 +638401.960|221693.044|111.923 +638397.132|221697.330|111.545 +638387.567|221705.825|110.786 +638345.066|221743.596|109.189 +638340.320|221747.808|108.707 +638335.846|221751.795|109.359 +638331.392|221755.766|110.387 +638299.998|221783.723|113.660 +638272.548|221808.113|112.356 +638250.047|221828.114|112.023 +638245.490|221832.158|111.383 +638241.056|221836.103|111.551 +638236.648|221840.019|111.618 +638228.172|221847.575|113.044 +638223.831|221851.440|113.441 +638210.944|221862.910|114.370 +638193.760|221878.180|114.998 +638189.511|221881.957|115.221 +638185.216|221885.773|115.263 +638167.550|221901.434|112.734 +638162.734|221905.679|110.310 +638158.497|221909.444|110.274 +638154.315|221913.159|110.469 +638145.888|221920.639|110.228 +638141.599|221924.443|109.835 +638120.775|221942.932|109.268 +638116.590|221946.648|109.158 +638111.656|221950.991|105.970 +638107.614|221954.582|106.040 +638103.551|221958.191|106.049 +638099.604|221961.699|106.516 +638095.623|221965.237|106.647 +638091.609|221968.801|106.680 +638087.275|221972.635|105.510 +638079.139|221979.856|105.025 +638075.049|221983.483|104.632 +638071.017|221987.058|104.251 +638066.911|221990.697|103.626 +638201.825|221868.951|114.355 +638223.563|221849.563|113.934 +638245.210|221830.232|111.859 +638249.803|221826.145|112.432 +638272.371|221806.028|112.840 +638340.469|221745.263|109.128 +638345.057|221741.169|108.802 +638378.097|221711.710|109.780 +638402.237|221690.201|111.792 +638407.013|221685.943|111.929 +638416.746|221677.271|112.691 +638421.693|221672.873|113.575 +638436.369|221659.800|115.190 +638441.218|221655.478|115.330 +638445.949|221651.253|115.099 +638450.813|221646.916|115.382 +638475.667|221624.800|119.180 +638485.551|221615.997|120.140 +638490.431|221611.647|120.430 +638495.366|221607.249|120.774 +638500.292|221602.860|121.088 +638505.181|221598.501|121.183 +638510.024|221594.176|121.015 +638514.974|221589.766|121.222 +638519.912|221585.364|121.384 +638549.538|221558.944|121.814 +638554.473|221554.546|122.124 +638559.505|221550.062|122.451 +638564.483|221545.628|122.765 +638569.509|221541.150|123.094 +638574.523|221536.685|123.734 +638579.585|221532.174|124.048 +638589.577|221523.267|124.468 +638594.582|221518.808|124.782 +638604.597|221509.881|125.166 +638614.619|221500.944|125.313 +638619.600|221496.500|125.163 +638639.634|221478.632|125.346 +638644.688|221474.128|125.544 +638649.805|221469.574|126.300 +638664.978|221456.050|127.209 +638675.211|221446.942|128.592 +638680.307|221442.404|128.906 +638685.391|221437.875|129.162 +638690.469|221433.348|129.397 +638695.547|221428.822|129.635 +638700.661|221424.262|129.812 +638710.753|221415.261|129.812 +638715.840|221410.726|129.763 +638720.912|221406.200|129.616 +638731.056|221397.153|129.324 +638736.110|221392.642|128.998 +638741.221|221388.082|128.803 +638746.278|221383.571|128.537 +638751.383|221379.018|128.321 +638756.449|221374.497|128.208 +638761.539|221369.956|127.812 +638766.617|221365.420|127.306 +638771.677|221360.909|127.135 +638776.813|221356.325|126.757 +638781.915|221351.774|126.593 +638787.018|221347.224|126.428 +638792.129|221342.667|126.383 +638797.271|221338.080|126.133 +638807.537|221328.927|126.084 +638812.621|221324.388|125.761 +638817.772|221319.795|125.733 +638822.929|221315.198|125.758 +638838.282|221301.504|124.999 +638843.418|221296.919|124.813 +638863.998|221278.561|123.969 +638884.566|221260.215|123.112 +638889.696|221255.640|122.905 +638894.862|221251.026|122.536 +638899.995|221246.451|122.411 +638905.170|221241.833|122.225 +638910.340|221237.221|121.829 +638915.461|221232.649|121.509 +638920.569|221228.086|120.893 +638930.865|221218.903|120.302 +638936.050|221214.282|120.326 +638941.225|221209.664|120.149 +638946.352|221205.092|119.982 +638951.521|221200.478|119.695 +638956.648|221195.906|119.485 +638961.815|221191.294|119.037 +638966.926|221186.728|118.388 +638982.392|221172.927|117.339 +638997.869|221159.119|116.681 +639003.039|221154.504|116.096 +639008.156|221149.929|115.428 +639013.283|221145.354|114.989 +639023.576|221136.158|113.386 +639028.752|221131.538|112.825 +639033.882|221126.960|112.468 +639039.021|221122.382|112.682 +639054.486|221108.620|114.639 +639059.622|221104.051|115.522 +639064.755|221099.479|115.891 +639069.888|221094.907|116.120 +639075.018|221090.335|116.315 +639080.147|221085.766|116.510 +639085.231|221081.236|116.693 +639090.361|221076.664|116.851 +639095.491|221072.089|116.763 +639100.575|221067.557|116.632 +639105.708|221062.982|116.547 +639110.789|221058.456|116.568 +639115.873|221053.923|116.483 +639121.006|221049.351|116.455 +639126.047|221044.859|116.205 +639131.180|221040.283|116.172 +639136.267|221035.745|115.992 +639141.312|221031.252|115.794 +639146.399|221026.717|115.782 +639151.489|221022.181|115.654 +639156.579|221017.643|115.574 +639161.669|221013.107|115.559 +639166.668|221008.654|115.422 +639171.761|221004.116|115.343 +639176.806|220999.617|115.242 +639181.905|220995.075|115.132 +639186.956|220990.574|114.986 +639192.009|220986.069|114.773 +639197.060|220981.564|114.623 +639202.119|220977.056|114.383 +639207.179|220972.542|114.069 +639212.196|220968.067|113.752 +639217.210|220963.599|113.514 +639222.273|220959.082|113.294 +639227.290|220954.613|113.112 +639232.353|220950.099|112.977 +639237.363|220945.634|112.935 +639242.374|220941.168|112.950 +639247.385|220936.703|113.005 +639252.360|220932.271|112.843 +639257.361|220927.818|113.133 +639267.356|220918.912|112.971 +639272.391|220914.422|112.694 +639277.369|220909.987|112.602 +639282.367|220905.525|112.139 +639287.375|220901.057|111.600 +639292.392|220896.588|111.776 +639307.364|220883.244|111.338 +639312.308|220878.837|111.200 +639317.294|220874.396|111.237 +639327.316|220865.456|110.588 +639342.209|220852.188|110.505 +639347.220|220847.720|110.341 +639352.124|220843.349|110.304 +639357.114|220838.908|110.487 +639362.064|220834.500|110.582 +639367.007|220830.096|110.731 +639376.813|220821.370|111.527 +639381.784|220816.941|111.444 +639386.682|220812.579|111.645 +639406.473|220794.943|111.502 +639411.405|220790.548|111.420 +639416.288|220786.199|111.392 +639421.225|220781.797|111.304 +639426.142|220777.417|111.466 +639431.052|220773.050|111.743 +639440.790|220764.375|112.127 +639445.695|220760.010|112.487 +639455.436|220751.336|112.947 +639460.319|220746.989|113.102 +639465.174|220742.667|113.529 +639470.076|220738.302|113.535 +639474.953|220733.962|113.803 +639479.793|220729.652|113.965 +639484.691|220725.287|114.053 +639489.543|220720.968|114.163 +639499.306|220712.272|114.334 +639504.192|220707.920|114.203 +639509.072|220703.567|113.718 +639513.976|220699.193|113.483 +639523.827|220690.406|112.356 +639528.704|220686.056|112.020 +639533.526|220681.765|112.173 +639538.442|220677.376|111.566 +639543.328|220673.023|111.271 +639548.138|220668.738|111.194 +639553.027|220664.376|110.905 +639562.702|220655.753|110.460 +639567.499|220651.480|110.560 +639572.294|220647.210|110.356 +639577.119|220642.909|110.307 +639581.904|220638.648|110.210 +639586.677|220634.393|110.213 +639591.463|220630.129|110.155 +639596.233|220625.883|110.231 +639600.954|220621.686|110.691 +639615.136|220609.055|110.929 +639619.833|220604.873|111.261 +639624.479|220600.743|111.618 +639629.176|220596.561|111.978 +639633.842|220592.406|112.206 +639643.160|220584.110|112.511 +639647.860|220579.925|112.593 +639657.156|220571.646|112.819 +639671.052|220559.272|112.965 +639675.700|220555.129|112.855 +639684.911|220546.927|112.901 +639689.462|220542.873|113.118 +639694.098|220538.746|113.157 +639698.655|220534.686|113.081 +639703.196|220530.642|113.124 +639707.753|220526.582|113.084 +639712.325|220522.506|112.965 +639716.879|220518.453|112.996 +639721.381|220514.441|113.032 +639725.828|220510.479|113.112 +639730.293|220506.507|113.410 +639739.169|220498.607|113.761 +639743.686|220494.578|113.508 +639748.145|220490.606|113.334 +639757.064|220482.657|113.026 +639761.529|220478.676|112.868 +639766.016|220474.674|112.612 +639774.937|220466.719|111.898 +639779.332|220462.799|111.648 +639783.728|220458.882|111.420 +639796.895|220447.145|110.679 +639827.125|220420.197|109.594 +639839.817|220408.886|109.457 +639844.011|220405.146|109.445 +639848.172|220401.437|109.362 +639852.363|220397.703|109.408 +639856.520|220393.999|109.378 +639860.705|220390.269|109.231 +639864.850|220386.568|109.024 +639869.081|220382.795|108.701 +639881.380|220371.831|108.430 +639839.994|220406.996|109.366 +639835.623|220410.885|109.463 +639826.985|220418.566|109.460 +639822.526|220422.535|109.795 +639800.303|220442.316|111.158 +639795.941|220446.184|110.579 +639786.925|220454.213|111.264 +639782.441|220458.203|111.383 +639777.894|220462.250|111.588 +639773.386|220466.262|111.865 +639764.150|220474.485|112.578 +639759.606|220478.527|112.840 +639755.046|220482.584|112.938 +639750.440|220486.683|113.304 +639741.278|220494.831|113.273 +639727.571|220507.023|113.169 +639722.941|220511.134|112.929 +639718.391|220515.179|112.837 +639713.779|220519.282|112.834 +639709.106|220523.436|112.889 +639704.443|220527.584|112.935 +639699.773|220531.736|113.014 +639695.186|220535.817|112.950 +639690.477|220540.005|113.005 +639685.832|220544.129|112.706 +639681.162|220548.283|112.898 +639671.787|220556.614|112.907 +639657.726|220569.107|112.752 +639643.705|220581.559|112.194 +639638.981|220585.759|112.261 +639634.293|220589.922|112.115 +639629.569|220594.116|111.895 +639624.847|220598.307|111.664 +639620.205|220602.431|111.277 +639615.426|220606.674|111.139 +639610.793|220610.786|110.694 +639601.216|220619.296|110.655 +639596.553|220623.432|110.124 +639591.792|220627.663|109.954 +639587.006|220631.915|109.972 +639582.276|220636.118|109.978 +639577.439|220640.416|110.054 +639572.665|220644.658|110.070 +639567.868|220648.923|110.262 +639563.031|220653.226|110.426 +639548.583|220666.071|110.938 +639543.844|220670.280|110.810 +639538.945|220674.636|111.185 +639534.090|220678.958|111.639 +639529.256|220683.258|111.984 +639514.683|220696.225|113.273 +639509.831|220700.537|113.459 +639504.972|220704.863|113.730 +639500.156|220709.145|114.075 +639495.310|220713.452|114.276 +639490.461|220717.759|114.090 +639485.697|220721.992|114.066 +639480.799|220726.342|113.910 +639476.007|220730.597|113.712 +639471.158|220734.907|113.621 +639466.324|220739.201|113.404 +639461.477|220743.505|113.316 +639456.661|220747.782|112.956 +639451.815|220752.088|112.916 +639442.144|220760.672|112.173 +639437.221|220765.042|111.956 +639432.387|220769.337|111.862 +639427.480|220773.693|111.527 +639422.667|220777.966|111.240 +639417.732|220782.352|111.243 +639412.855|220786.683|111.167 +639407.872|220791.112|111.185 +639402.983|220795.458|111.298 +639398.051|220799.842|111.350 +639383.229|220813.012|111.408 +639378.270|220817.419|111.341 +639363.484|220830.550|110.624 +639358.497|220834.976|110.320 +639353.532|220839.392|110.423 +639348.585|220843.785|110.274 +639343.577|220848.235|110.307 +639318.492|220870.531|110.999 +639298.250|220888.520|111.645 +639293.215|220892.995|111.676 +639288.131|220897.509|111.709 +639283.074|220902.008|112.194 +639272.851|220911.091|112.572 +639267.764|220915.614|112.852 +639257.605|220924.639|113.148 +639252.503|220929.168|112.865 +639247.385|220933.716|112.892 +639242.271|220938.258|112.901 +639237.156|220942.802|112.935 +639232.042|220947.344|112.926 +639226.930|220951.885|112.971 +639221.764|220956.475|113.176 +639216.646|220961.026|113.404 +639211.480|220965.616|113.660 +639206.365|220970.164|113.989 +639201.199|220974.757|114.312 +639196.042|220979.339|114.495 +639190.887|220983.923|114.721 +639185.733|220988.504|114.904 +639180.579|220993.082|115.093 +639175.428|220997.660|115.230 +639170.280|221002.232|115.334 +639165.086|221006.847|115.419 +639159.941|221011.422|115.547 +639154.750|221016.030|115.535 +639149.560|221020.642|115.580 +639144.415|221025.211|115.690 +639139.221|221029.829|115.967 +639134.033|221034.437|116.019 +639128.845|221039.049|116.160 +639123.658|221043.658|116.239 +639118.473|221048.263|116.211 +639113.282|221052.875|116.565 +639108.101|221057.480|116.513 +639102.867|221062.129|116.537 +639097.682|221066.731|116.544 +639092.498|221071.340|116.736 +639082.086|221080.584|116.537 +639076.953|221085.144|116.397 +639071.723|221089.786|116.224 +639066.489|221094.431|116.129 +639061.356|221098.991|115.989 +639050.883|221108.269|114.279 +639035.317|221122.083|113.188 +639024.902|221131.340|113.797 +639019.727|221135.945|114.392 +639009.373|221145.156|115.419 +639004.151|221149.801|115.974 +638993.800|221159.006|116.766 +638983.428|221168.214|116.617 +638978.268|221172.811|117.565 +638967.923|221182.010|118.424 +638957.581|221191.205|119.284 +638952.405|221195.808|119.497 +638947.269|221200.368|119.531 +638942.100|221204.967|119.915 +638931.789|221214.130|120.262 +638921.496|221223.283|121.064 +638916.351|221227.852|120.860 +638906.118|221236.953|121.957 +638900.992|221241.510|122.237 +638895.859|221246.073|122.414 +638890.769|221250.596|122.475 +638885.642|221255.153|122.826 +638880.515|221259.709|123.130 +638860.215|221277.751|123.847 +638855.122|221282.277|123.926 +638834.920|221300.233|124.932 +638829.824|221304.762|125.029 +638819.738|221313.726|125.474 +638814.693|221318.210|125.697 +638804.696|221327.095|126.099 +638799.636|221331.591|126.154 +638794.622|221336.044|126.187 +638789.621|221340.491|126.416 +638769.641|221358.245|127.157 +638759.680|221367.097|127.696 +638754.690|221371.535|128.153 +638749.704|221375.963|128.089 +638744.760|221380.362|128.507 +638739.792|221384.775|128.711 +638734.775|221389.234|128.912 +638729.861|221393.605|129.165 +638724.887|221398.025|129.342 +638710.010|221411.244|129.906 +638705.051|221415.648|129.799 +638700.055|221420.086|129.848 +638690.109|221428.916|129.470 +638685.117|221433.345|129.132 +638680.087|221437.811|128.973 +638675.147|221442.197|128.702 +638625.287|221486.432|125.130 +638615.439|221495.180|125.099 +638600.577|221508.375|124.734 +638561.008|221543.491|122.573 +638556.061|221547.883|122.140 +638551.148|221552.248|121.984 +638546.192|221556.646|121.551 +638536.398|221565.351|121.597 +638531.506|221569.701|121.686 +638526.654|221574.014|121.704 +638521.737|221578.382|121.667 +638516.806|221582.758|121.219 +638511.908|221587.111|121.012 +638507.064|221591.412|120.863 +638502.160|221595.773|121.000 +638497.292|221600.096|120.732 +638492.355|221604.472|120.058 +638472.777|221621.855|118.699 +638467.839|221626.238|118.162 +638448.128|221643.719|115.330 +638443.303|221648.001|115.001 +638438.512|221652.262|115.199 +638433.714|221656.526|115.068 +638399.735|221686.677|111.514 +638390.088|221695.242|110.838 +638385.312|221699.482|110.515 +638380.407|221703.831|109.795 +638361.449|221720.669|109.064 +638352.201|221728.895|109.753 +638347.471|221733.092|109.311 +638342.807|221737.241|109.500 +638338.366|221741.197|110.295 +638333.925|221745.159|111.630 +638311.141|221765.428|113.224 +638283.859|221789.681|113.877 +638279.409|221793.638|114.050 +638270.252|221801.767|113.499 +638265.699|221805.815|113.493 +638261.322|221809.710|114.069 +638256.841|221813.694|114.181 +638252.358|221817.677|114.059 +638247.709|221821.795|113.227 +638243.061|221825.916|112.410 +638234.344|221833.673|113.182 +638225.706|221841.363|114.355 +638208.277|221856.860|115.050 +638182.540|221879.753|116.102 +638178.142|221883.655|115.736 +638173.856|221887.468|115.839 +638169.613|221891.241|115.919 +638160.427|221899.370|113.066 +638155.779|221903.482|111.566 +638151.435|221907.338|111.109 +638147.262|221911.047|111.136 +638125.884|221930.030|109.481 +638121.677|221933.764|109.265 +638117.529|221937.452|109.079 +638108.918|221945.084|107.543 +638104.404|221949.077|106.001 +638100.320|221952.710|105.921 +638096.196|221956.374|105.918 +638092.310|221959.833|106.424 +638088.241|221963.451|106.446 +638084.004|221967.207|105.647 +638079.865|221970.882|105.229 +638075.793|221974.497|104.882 +638071.690|221978.137|104.440 +638067.618|221981.752|104.123 +638063.546|221985.367|103.617 +638209.670|221853.662|115.318 +638214.008|221849.797|115.120 +638218.369|221845.914|115.032 +638222.749|221842.016|115.035 +638235.664|221830.497|113.465 +638240.053|221826.593|113.331 +638244.506|221822.627|113.273 +638249.136|221818.516|114.032 +638253.623|221814.523|114.163 +638258.121|221810.515|114.136 +638262.532|221806.589|113.947 +638266.964|221802.639|113.648 +638271.600|221798.518|114.050 +638280.610|221790.495|113.959 +638285.227|221786.390|114.343 +638299.013|221774.128|114.812 +638339.692|221737.859|110.521 +638344.203|221733.836|109.823 +638348.845|221729.697|109.554 +638353.548|221725.515|109.868 +638367.377|221713.180|108.415 +638377.091|221704.551|109.783 +638386.680|221696.022|110.597 +638391.520|221691.719|110.999 +638396.352|221687.421|111.389 +638401.143|221683.157|111.591 +638415.688|221670.227|112.983 +638420.565|221665.890|113.468 +638430.407|221657.142|114.760 +638435.253|221652.835|115.151 +638440.045|221648.565|114.956 +638444.864|221644.273|114.953 +638449.811|221639.881|115.705 +638454.824|221635.431|116.925 +638469.623|221622.273|118.345 +638479.455|221613.531|119.220 +638489.270|221604.799|119.796 +638494.223|221600.397|120.244 +638499.194|221595.978|120.838 +638504.019|221591.677|120.533 +638508.939|221587.303|120.832 +638513.840|221582.941|121.058 +638518.851|221578.482|121.378 +638523.737|221574.136|121.539 +638528.650|221569.762|121.588 +638533.524|221565.418|121.375 +638538.480|221561.008|121.405 +638543.332|221556.683|121.088 +638553.339|221547.786|121.935 +638558.329|221543.348|122.301 +638563.297|221538.925|122.557 +638568.311|221534.472|123.152 +638578.272|221525.608|123.609 +638583.316|221521.125|124.148 +638608.304|221498.886|124.798 +638613.306|221494.433|124.813 +638628.287|221481.101|125.142 +638638.302|221472.183|125.041 +638653.536|221458.641|126.712 +638658.596|221454.142|127.010 +638673.830|221440.599|128.665 +638678.868|221436.116|128.918 +638683.946|221431.599|129.080 +638688.991|221427.112|129.455 +638699.134|221418.087|129.842 +638704.173|221413.600|129.757 +638709.226|221409.101|129.833 +638714.240|221404.633|129.537 +638719.321|221400.104|129.464 +638724.341|221395.629|129.272 +638734.421|221386.644|128.806 +638739.530|221382.087|128.568 +638744.598|221377.573|128.428 +638749.649|221373.068|128.105 +638754.721|221368.548|128.041 +638769.909|221355.005|127.065 +638785.161|221341.405|126.398 +638790.261|221336.864|126.169 +638795.369|221332.310|126.126 +638800.423|221327.805|125.989 +638810.658|221318.682|125.526 +638820.905|221309.550|125.267 +638826.002|221305.009|125.151 +638836.234|221295.886|124.801 +638877.260|221259.316|123.164 +638882.387|221254.744|122.902 +638887.559|221250.136|122.518 +638913.290|221227.193|121.228 +638918.463|221222.582|120.860 +638928.771|221213.395|120.536 +638944.285|221199.560|119.552 +638949.418|221194.988|119.500 +638954.597|221190.373|119.348 +638970.114|221176.535|118.400 +638975.281|221171.927|117.802 +638990.801|221158.086|116.830 +639037.356|221116.581|114.230 +639047.723|221107.349|114.370 +639058.049|221098.171|116.041 +639063.231|221093.557|116.141 +639068.458|221088.899|116.233 +639073.591|221084.330|116.327 +639078.773|221079.716|116.416 +639089.087|221070.529|116.553 +639094.269|221065.914|116.510 +639099.450|221061.296|116.495 +639104.583|221056.718|116.422 +639109.716|221052.143|116.516 +639114.904|221047.519|116.263 +639120.040|221042.941|116.224 +639125.176|221038.360|116.074 +639130.314|221033.776|115.882 +639135.450|221029.201|115.955 +639140.592|221024.617|115.751 +639145.734|221020.033|115.663 +639150.876|221015.448|115.510 +639156.018|221010.864|115.452 +639161.112|221006.323|115.410 +639166.208|221001.781|115.367 +639171.350|220997.197|115.303 +639176.452|220992.646|115.129 +639181.551|220988.102|115.013 +639186.654|220983.548|114.809 +639191.759|220978.997|114.639 +639196.865|220974.443|114.440 +639201.927|220969.929|114.163 +639207.039|220965.370|113.892 +639212.156|220960.804|113.538 +639217.177|220956.326|113.252 +639222.291|220951.766|113.081 +639227.354|220947.252|112.999 +639232.417|220942.738|112.953 +639237.479|220938.224|112.944 +639242.445|220933.801|112.977 +639247.510|220929.284|112.919 +639252.576|220924.770|112.987 +639257.584|220920.308|113.172 +639262.604|220915.833|113.151 +639267.591|220911.386|112.926 +639272.675|220906.854|112.694 +639282.660|220897.945|112.106 +639287.674|220893.467|111.517 +639292.697|220888.993|111.633 +639297.680|220884.552|111.661 +639317.648|220866.739|110.624 +639352.331|220835.820|110.146 +639357.278|220831.413|110.280 +639362.173|220827.051|110.475 +639367.102|220822.662|110.874 +639371.988|220818.312|111.228 +639376.892|220813.945|111.344 +639381.812|220809.559|111.328 +639386.725|220805.182|111.395 +639391.654|220800.783|111.274 +639396.536|220796.431|111.176 +639401.468|220792.036|111.109 +639406.354|220787.680|111.027 +639411.225|220783.340|111.121 +639416.108|220778.987|111.124 +639420.985|220774.641|111.228 +639425.837|220770.322|111.588 +639440.333|220757.410|112.371 +639445.140|220753.131|112.749 +639449.986|220748.809|112.761 +639454.802|220744.520|113.081 +639459.621|220740.229|113.398 +639464.477|220735.903|113.401 +639469.268|220731.633|113.541 +639474.050|220727.372|113.764 +639478.884|220723.068|114.005 +639483.685|220718.792|114.133 +639488.501|220714.500|114.126 +639498.157|220705.893|113.980 +639503.022|220701.552|113.624 +639507.822|220697.273|113.422 +639512.693|220692.933|113.493 +639517.573|220688.577|112.697 +639522.413|220684.255|112.240 +639527.268|220679.927|112.109 +639532.118|220675.596|111.249 +639536.995|220671.246|111.011 +639551.400|220658.405|110.658 +639556.179|220654.144|110.484 +639561.013|220649.831|110.313 +639565.823|220645.542|109.984 +639570.587|220641.296|110.015 +639575.369|220637.032|109.926 +639580.154|220632.768|109.844 +639584.885|220628.553|109.820 +639589.655|220624.304|109.908 +639594.379|220620.091|109.960 +639599.131|220615.864|110.216 +639603.859|220611.648|110.286 +639608.492|220607.528|110.697 +639613.213|220603.321|110.862 +639631.983|220586.606|111.783 +639636.594|220582.500|112.087 +639641.325|220578.285|112.285 +639646.022|220574.103|112.401 +639650.624|220570.004|112.493 +639655.312|220565.825|112.691 +639669.312|220553.352|112.874 +639673.975|220549.198|113.002 +639678.666|220545.016|112.968 +639683.311|220540.877|112.932 +639687.956|220536.738|112.916 +639692.611|220532.589|112.852 +639697.268|220528.438|112.810 +639701.880|220524.326|112.737 +639706.485|220520.220|112.731 +639711.094|220516.115|112.740 +639715.705|220512.003|112.724 +639720.256|220507.949|112.801 +639724.843|220503.865|112.993 +639729.400|220499.805|113.063 +639733.902|220495.794|113.182 +639738.422|220491.764|113.203 +639742.991|220487.692|112.990 +639747.554|220483.623|113.093 +639752.065|220479.603|112.956 +639756.573|220475.585|112.855 +639761.108|220471.538|112.612 +639765.693|220467.447|112.136 +639774.764|220459.355|111.499 +639783.706|220451.378|111.078 +639788.227|220447.346|110.786 +639797.035|220439.494|110.649 +639819.176|220419.746|109.393 +639849.251|220392.957|109.088 +639853.472|220389.193|108.997 +639857.706|220385.422|108.875 +639866.140|220377.909|108.588 +639870.440|220374.072|107.960 +639837.434|220401.495|109.067 +639833.191|220405.265|109.036 +639828.908|220409.072|109.219 +639824.705|220412.803|109.024 +639816.015|220420.529|109.573 +639789.760|220443.865|110.548 +639785.349|220447.788|110.780 +639780.869|220451.771|111.127 +639776.416|220455.731|111.347 +639758.347|220471.803|112.740 +639753.827|220475.820|112.874 +639749.340|220479.807|112.852 +639744.802|220483.839|113.127 +639740.291|220487.848|112.993 +639735.734|220491.895|113.127 +639731.156|220495.964|113.118 +639722.045|220504.054|112.892 +639717.507|220508.083|112.718 +639712.840|220512.229|112.703 +639708.274|220516.285|112.715 +639703.623|220520.419|112.657 +639698.996|220524.530|112.773 +639694.293|220528.709|112.752 +639689.678|220532.809|112.831 +639680.263|220541.182|112.977 +639675.578|220545.342|112.926 +639670.942|220549.463|112.916 +639666.212|220553.669|112.889 +639652.060|220566.251|112.685 +639647.308|220570.470|112.538 +639642.629|220574.627|112.279 +639637.911|220578.818|111.972 +639633.141|220583.061|112.011 +639623.628|220591.513|111.642 +639618.873|220595.735|111.292 +639614.118|220599.959|110.981 +639609.306|220604.233|110.719 +639604.529|220608.479|110.585 +639599.738|220612.734|110.216 +639594.919|220617.016|110.054 +639590.097|220621.301|109.948 +639585.235|220625.621|109.777 +639580.398|220629.921|109.811 +639575.518|220634.259|109.804 +639570.632|220638.605|109.890 +639565.759|220642.936|109.899 +639560.809|220647.341|110.118 +639555.889|220651.718|110.527 +639550.973|220656.088|110.554 +639536.239|220669.198|111.078 +639531.338|220673.553|111.085 +639526.330|220678.019|111.996 +639521.355|220682.441|112.237 +639516.372|220686.879|112.612 +639506.451|220695.709|113.474 +639501.549|220700.068|113.657 +639496.529|220704.536|114.038 +639491.637|220708.889|114.206 +639486.672|220713.303|114.172 +639476.812|220722.066|113.959 +639471.920|220726.412|113.776 +639466.985|220730.795|113.523 +639462.084|220735.154|113.471 +639452.220|220743.914|113.032 +639447.301|220748.284|112.718 +639442.360|220752.677|112.660 +639437.404|220757.075|112.240 +639432.503|220761.427|111.804 +639422.603|220770.224|111.478 +639417.638|220774.638|111.237 +639412.721|220779.005|111.027 +639407.692|220783.474|110.966 +639402.751|220787.869|111.078 +639397.725|220792.334|111.042 +639392.797|220796.717|111.078 +639387.752|220801.204|111.304 +639382.836|220805.578|111.255 +639377.819|220810.037|111.231 +639367.897|220818.855|111.066 +639362.920|220823.275|110.618 +639357.964|220827.676|110.524 +639352.987|220832.099|110.112 +639348.024|220836.509|110.121 +639302.905|220876.636|111.432 +639297.903|220881.086|111.652 +639292.871|220885.558|111.612 +639287.835|220890.035|111.618 +639282.824|220894.497|112.142 +639272.739|220903.468|112.642 +639267.645|220908.003|112.999 +639262.619|220912.471|113.054 +639257.593|220916.940|113.127 +639252.527|220921.445|113.057 +639247.510|220925.904|112.999 +639242.441|220930.406|112.980 +639237.376|220934.911|113.002 +639232.362|220939.370|112.980 +639227.296|220943.872|113.023 +639222.230|220948.374|113.060 +639217.164|220952.879|113.169 +639212.099|220957.387|113.380 +639207.024|220961.904|113.834 +639201.906|220966.458|114.148 +639196.846|220970.960|114.325 +639191.735|220975.504|114.532 +639186.675|220980.003|114.742 +639181.570|220984.545|114.943 +639176.467|220989.086|115.114 +639171.365|220993.622|115.215 +639166.266|220998.157|115.364 +639161.121|221002.732|115.376 +639156.070|221007.222|115.480 +639150.928|221011.794|115.495 +639145.783|221016.366|115.590 +639140.690|221020.898|115.739 +639135.545|221025.470|115.852 +639130.406|221030.045|115.983 +639125.316|221034.568|115.928 +639120.125|221039.183|116.120 +639114.986|221043.752|116.245 +639109.847|221048.324|116.422 +639104.662|221052.936|116.544 +639099.527|221057.499|116.458 +639094.391|221062.065|116.440 +639089.206|221066.673|116.461 +639084.073|221071.236|116.449 +639078.937|221075.802|116.388 +639073.756|221080.407|116.403 +639063.438|221089.579|116.227 +639058.257|221094.184|116.187 +639042.742|221107.952|114.565 +639001.344|221144.778|116.385 +638990.984|221153.992|116.775 +638985.796|221158.604|116.684 +638970.288|221172.411|118.382 +638949.534|221190.873|119.375 +638944.346|221195.482|119.369 +638939.214|221200.048|119.473 +638913.330|221223.060|120.820 +638903.055|221232.204|122.051 +638877.327|221255.067|122.780 +638872.145|221259.676|122.993 +638867.003|221264.245|123.063 +638861.864|221268.811|123.203 +638826.066|221300.635|125.081 +638820.957|221305.173|125.069 +638815.821|221309.742|125.368 +638810.716|221314.275|125.453 +638805.665|221318.765|125.599 +638800.517|221323.340|125.803 +638790.361|221332.365|126.142 +638785.308|221336.858|126.343 +638780.239|221341.362|126.337 +638775.161|221345.870|126.258 +638770.141|221350.339|126.904 +638765.084|221354.835|127.117 +638755.020|221363.781|127.614 +638749.990|221368.255|128.187 +638745.025|221372.669|128.379 +638739.950|221377.177|128.452 +638734.982|221381.593|128.662 +638729.968|221386.049|128.909 +638724.951|221390.509|129.156 +638720.022|221394.888|129.275 +638714.984|221399.366|129.324 +638710.016|221403.780|129.620 +638705.029|221408.211|129.732 +638700.049|221412.637|129.915 +638695.099|221417.035|129.927 +638655.005|221452.612|126.861 +638649.940|221457.104|126.532 +638629.960|221474.832|124.923 +638620.057|221483.628|124.804 +638615.137|221487.996|124.648 +638610.203|221492.382|124.785 +638605.253|221496.771|124.429 +638590.516|221509.862|124.386 +638585.621|221514.209|124.167 +638580.652|221518.616|123.801 +638565.818|221531.777|122.649 +638560.926|221536.118|122.222 +638556.049|221540.446|122.304 +638551.117|221544.817|121.652 +638546.222|221549.160|121.646 +638541.306|221553.519|121.155 +638531.518|221562.203|120.924 +638521.887|221570.758|121.497 +638517.074|221575.029|121.500 +638512.136|221579.409|121.012 +638507.278|221583.716|120.756 +638502.367|221588.071|120.506 +638497.582|221592.323|120.768 +638492.690|221596.654|120.055 +638487.801|221600.995|120.009 +638482.900|221605.335|119.290 +638463.325|221622.678|117.196 +638458.558|221626.915|117.431 +638448.759|221635.596|116.062 +638443.858|221639.933|115.279 +638439.054|221644.194|115.081 +638434.305|221648.412|115.230 +638429.462|221652.704|114.858 +638424.607|221657.005|114.148 +638410.135|221669.831|112.718 +638400.472|221678.393|111.523 +638395.748|221682.584|111.426 +638386.135|221691.106|110.664 +638376.600|221699.558|109.878 +638371.974|221703.667|110.134 +638298.870|221768.605|115.154 +638294.277|221772.680|115.065 +638289.687|221776.749|114.767 +638285.130|221780.790|114.657 +638280.564|221784.841|114.507 +638276.035|221788.859|114.303 +638271.469|221792.906|114.212 +638266.976|221796.896|114.212 +638262.523|221800.846|114.181 +638258.042|221804.824|114.288 +638253.613|221808.753|114.401 +638201.084|221855.387|116.214 +638192.352|221863.135|116.266 +638175.197|221878.357|116.513 +638166.623|221885.962|116.303 +638162.228|221889.854|115.779 +638140.188|221909.358|111.709 +638131.522|221917.030|110.365 +638127.225|221920.837|109.969 +638123.022|221924.562|109.750 +638118.809|221928.296|109.518 +638114.673|221931.962|109.375 +638110.567|221935.605|109.381 +638097.388|221947.254|105.946 +638093.316|221950.866|105.936 +638089.298|221954.429|105.943 +638085.266|221958.005|105.903 +638081.133|221961.671|105.702 +638072.946|221968.926|105.031 +638068.840|221972.559|104.580 +638064.802|221976.137|104.187 +638200.346|221853.620|116.071 +638204.699|221849.739|115.925 +638239.599|221818.631|114.626 +638244.006|221814.700|114.395 +638248.471|221810.722|114.181 +638252.891|221806.781|114.023 +638257.359|221802.797|113.870 +638261.813|221798.832|113.892 +638266.296|221794.836|113.831 +638270.801|221790.824|113.895 +638275.358|221786.765|113.968 +638279.921|221782.702|114.102 +638284.523|221778.608|114.416 +638289.135|221774.499|114.575 +638293.734|221770.406|114.937 +638298.340|221766.306|115.099 +638302.891|221762.252|115.004 +638316.680|221749.966|114.757 +638344.039|221725.567|112.313 +638348.412|221721.650|110.688 +638357.727|221713.356|110.377 +638362.433|221709.168|110.509 +638367.100|221705.011|110.182 +638371.772|221700.850|110.173 +638376.543|221696.608|110.143 +638386.031|221688.165|110.441 +638390.853|221683.876|110.774 +638395.715|221679.557|111.353 +638405.349|221670.992|112.081 +638410.214|221666.667|112.453 +638414.990|221662.418|112.663 +638419.955|221658.011|113.368 +638424.863|221653.652|114.078 +638429.791|221649.275|114.940 +638434.604|221644.990|114.873 +638439.438|221640.689|114.934 +638444.269|221636.394|115.312 +638454.157|221627.610|116.574 +638468.946|221614.467|117.979 +638493.677|221592.485|120.158 +638498.633|221588.080|120.674 +638503.477|221583.767|120.482 +638508.445|221579.351|120.799 +638513.435|221574.913|121.308 +638518.351|221570.539|121.335 +638523.222|221566.202|121.079 +638533.045|221557.454|120.835 +638537.956|221553.086|120.899 +638542.945|221548.651|121.201 +638547.889|221544.250|121.213 +638552.955|221539.754|122.115 +638557.887|221535.365|122.079 +638562.843|221530.955|122.268 +638567.845|221526.504|122.426 +638577.882|221517.586|123.459 +638592.881|221504.242|123.868 +638597.831|221499.834|123.792 +638602.863|221495.360|123.993 +638617.923|221481.964|124.465 +638627.960|221473.036|124.874 +638633.029|221468.528|125.142 +638637.994|221464.109|124.959 +638693.941|221414.384|130.180 +638704.005|221405.422|129.888 +638709.028|221400.951|129.680 +638714.048|221396.483|129.418 +638719.105|221391.978|129.083 +638724.140|221387.500|129.025 +638729.197|221382.998|128.696 +638734.223|221378.527|128.577 +638739.243|221374.061|128.409 +638744.306|221369.553|128.220 +638749.369|221365.049|128.022 +638754.413|221360.559|127.608 +638759.461|221356.066|127.260 +638764.520|221351.564|127.062 +638769.620|221347.023|126.785 +638774.664|221342.533|126.450 +638779.772|221337.985|126.309 +638795.040|221324.403|125.867 +638800.090|221319.908|125.681 +638805.187|221315.372|125.459 +638810.286|221310.834|125.300 +638815.382|221306.301|125.090 +638830.717|221292.655|124.587 +638835.795|221288.132|124.179 +638840.882|221283.606|123.877 +638845.975|221279.076|123.719 +638856.198|221269.975|123.286 +638861.328|221265.412|122.929 +638912.461|221219.906|120.789 +638927.899|221206.168|120.088 +638933.023|221201.605|119.741 +638943.277|221192.480|119.067 +638948.455|221187.871|118.924 +638953.591|221183.302|118.878 +638984.449|221155.833|116.839 +638989.634|221151.222|116.949 +638994.770|221146.656|116.925 +638999.945|221142.047|116.522 +639005.084|221137.478|116.665 +639030.834|221114.557|115.001 +639036.015|221109.946|114.639 +639056.617|221091.648|116.617 +639061.750|221087.080|116.425 +639066.931|221082.468|116.166 +639072.067|221077.902|116.214 +639077.200|221073.339|116.394 +639082.385|221068.731|116.428 +639087.566|221064.119|116.434 +639092.653|221059.596|116.406 +639097.838|221054.984|116.455 +639103.023|221050.375|116.562 +639108.113|221045.846|116.315 +639113.297|221041.231|116.309 +639118.439|221036.659|116.166 +639123.575|221032.087|116.153 +639128.766|221027.470|115.967 +639133.908|221022.892|115.824 +639139.053|221018.316|115.727 +639144.195|221013.741|115.614 +639149.340|221009.163|115.553 +639154.485|221004.585|115.428 +639159.630|221000.010|115.394 +639164.775|220995.432|115.334 +639169.878|220990.894|115.215 +639175.029|220986.309|115.053 +639180.131|220981.768|114.892 +639185.285|220977.184|114.788 +639190.442|220972.593|114.572 +639195.502|220968.091|114.401 +639200.662|220963.495|114.130 +639205.780|220958.938|113.782 +639210.904|220954.378|113.389 +639216.018|220949.825|113.215 +639221.133|220945.277|113.133 +639226.244|220940.726|113.084 +639231.307|220936.225|113.124 +639236.373|220931.717|113.084 +639241.487|220927.172|113.148 +639246.602|220922.621|113.136 +639251.671|220918.113|113.176 +639256.737|220913.608|113.252 +639261.812|220909.094|113.206 +639266.890|220904.574|113.078 +639271.977|220900.048|112.874 +639277.021|220895.558|112.590 +639287.177|220886.512|111.761 +639292.270|220881.982|111.612 +639297.299|220877.511|111.716 +639302.356|220873.006|111.380 +639307.394|220868.525|111.395 +639312.393|220864.078|111.304 +639317.441|220859.589|111.213 +639322.446|220855.135|111.109 +639327.496|220850.640|111.024 +639347.476|220832.858|110.112 +639352.484|220828.404|110.118 +639357.406|220824.034|110.618 +639362.365|220819.623|110.679 +639367.297|220815.240|111.066 +639372.244|220810.845|111.298 +639377.221|220806.416|111.185 +639382.153|220802.027|111.048 +639387.078|220797.644|111.002 +639396.988|220788.832|110.938 +639401.916|220784.449|110.954 +639406.793|220780.109|110.996 +639411.712|220775.735|111.146 +639416.589|220771.401|111.274 +639421.490|220767.045|111.645 +639431.259|220758.358|111.798 +639440.922|220749.775|112.606 +639445.801|220745.438|112.782 +639450.617|220741.158|113.124 +639460.295|220732.557|113.438 +639465.132|220728.253|113.608 +639469.920|220723.998|113.822 +639474.767|220719.685|113.953 +639479.567|220715.418|114.099 +639484.368|220711.145|114.236 +639489.150|220706.886|114.120 +639493.969|220702.598|114.145 +639498.849|220698.248|113.669 +639503.646|220693.981|113.520 +639508.459|220689.693|113.240 +639513.260|220685.413|112.688 +639518.094|220681.106|112.301 +639522.916|220676.809|112.036 +639542.088|220659.731|110.624 +639546.797|220655.537|110.600 +639551.564|220651.294|110.551 +639556.337|220647.042|110.082 +639561.129|220642.775|109.899 +639565.820|220638.599|109.734 +639570.535|220634.402|109.777 +639575.268|220630.189|109.719 +639579.941|220626.029|109.747 +639584.608|220621.878|109.841 +639589.326|220617.677|109.951 +639594.014|220613.508|109.954 +639598.604|220609.426|110.286 +639603.274|220605.272|110.438 +639607.946|220601.115|110.591 +639612.570|220597.000|110.414 +639617.236|220592.848|110.646 +639630.959|220580.653|111.929 +639635.543|220576.575|112.103 +639640.139|220572.485|112.215 +639644.684|220568.440|112.340 +639649.280|220564.353|112.481 +639663.021|220552.127|112.694 +639667.641|220548.015|112.761 +639672.219|220543.940|112.795 +639676.749|220539.911|112.834 +639681.303|220535.857|112.755 +639685.911|220531.754|112.660 +639690.511|220527.661|112.642 +639695.022|220523.643|112.557 +639699.578|220519.590|112.535 +639704.135|220515.536|112.538 +639708.634|220511.528|112.578 +639713.191|220507.477|112.621 +639717.708|220503.456|112.606 +639735.667|220487.476|113.054 +639740.141|220483.495|113.090 +639744.661|220479.469|112.883 +639749.151|220475.476|112.865 +639753.659|220471.458|112.764 +639758.176|220467.432|112.350 +639762.764|220463.345|111.874 +639767.217|220459.379|111.578 +639771.728|220455.359|111.274 +639776.181|220451.393|111.021 +639780.692|220447.376|110.771 +639785.166|220443.389|110.441 +639789.638|220439.406|110.158 +639794.067|220435.465|110.128 +639811.733|220419.728|109.338 +639816.131|220415.814|109.033 +639820.542|220411.882|108.933 +639829.274|220404.104|108.719 +639833.645|220400.211|108.619 +639837.952|220396.374|108.582 +639842.301|220392.500|108.622 +639846.623|220388.650|108.558 +639850.897|220384.843|108.482 +639855.228|220380.985|108.402 +639859.541|220377.141|108.189 +639863.848|220373.304|108.012 +639868.148|220369.469|107.640 +639876.732|220361.819|107.290 +639840.536|220391.640|108.411 +639836.400|220395.307|108.326 +639832.194|220399.041|108.366 +639827.976|220402.787|108.479 +639823.836|220406.454|108.210 +639815.281|220414.055|108.844 +639810.992|220417.865|109.113 +639806.719|220421.660|109.323 +639802.397|220425.498|109.533 +639793.786|220433.142|109.841 +639789.485|220436.958|109.996 +639785.118|220440.838|110.259 +639780.762|220444.709|110.475 +639776.382|220448.601|110.847 +639771.956|220452.533|111.197 +639767.558|220456.438|111.426 +639763.105|220460.394|111.688 +639758.713|220464.296|111.926 +639749.773|220472.239|112.752 +639745.384|220476.134|112.761 +639740.928|220480.090|112.868 +639736.481|220484.038|112.944 +639718.711|220499.802|112.468 +639714.230|220503.776|112.523 +639709.750|220507.751|112.322 +639705.214|220511.777|112.447 +639700.663|220515.816|112.386 +639696.149|220519.821|112.429 +639691.593|220523.869|112.447 +639687.039|220527.911|112.462 +639682.415|220532.013|112.596 +639677.855|220536.061|112.694 +639673.253|220540.145|112.743 +639668.635|220544.245|112.618 +639663.987|220548.369|112.666 +639654.730|220556.583|112.615 +639650.070|220560.719|112.517 +639645.376|220564.883|112.304 +639640.731|220569.001|112.118 +639636.027|220573.177|112.017 +639631.376|220577.297|111.581 +639626.664|220581.476|111.557 +639617.310|220589.770|110.789 +639607.855|220598.155|110.405 +639603.072|220602.398|110.274 +639598.330|220606.607|110.240 +639593.502|220610.893|110.124 +639588.771|220615.087|109.701 +639583.974|220619.342|109.743 +639579.142|220623.630|109.716 +639574.318|220627.913|109.661 +639569.496|220632.192|109.603 +639564.610|220636.529|109.652 +639559.775|220640.821|109.743 +639554.883|220645.164|109.890 +639549.970|220649.529|110.249 +639545.014|220653.933|110.566 +639540.152|220658.246|110.569 +639535.242|220662.605|110.594 +639520.313|220675.876|112.008 +639515.323|220680.308|112.374 +639510.395|220684.688|112.703 +639505.387|220689.138|113.288 +639500.376|220693.591|113.526 +639495.408|220698.005|113.858 +639490.406|220702.446|114.047 +639485.425|220706.868|114.117 +639475.492|220715.683|114.053 +639470.499|220720.112|113.843 +639465.549|220724.504|113.712 +639460.557|220728.933|113.538 +639455.573|220733.352|113.297 +639445.594|220742.204|112.980 +639440.635|220746.602|112.569 +639435.639|220751.034|112.505 +639430.641|220755.463|112.023 +639425.621|220759.919|111.786 +639415.629|220768.779|111.322 +639410.612|220773.229|111.088 +639405.583|220777.692|111.014 +639400.545|220782.163|111.039 +639395.528|220786.613|110.871 +639390.447|220791.124|110.893 +639385.420|220795.583|110.877 +639380.333|220800.101|111.024 +639375.310|220804.560|111.042 +639370.232|220809.068|111.124 +639365.176|220813.558|111.024 +639360.137|220818.023|110.655 +639355.093|220822.494|110.384 +639350.051|220826.969|110.118 +639344.998|220831.452|110.009 +639339.908|220835.966|109.768 +639329.721|220845.019|110.804 +639324.600|220849.573|111.118 +639319.498|220854.099|111.146 +639314.441|220858.592|111.295 +639309.345|220863.118|111.322 +639304.304|220867.596|111.295 +639299.183|220872.149|111.795 +639294.102|220876.660|111.670 +639289.006|220881.190|111.847 +639283.903|220885.722|112.136 +639273.720|220894.772|112.496 +639268.609|220899.322|113.145 +639263.525|220903.839|113.285 +639258.450|220908.344|113.249 +639253.378|220912.849|113.227 +639248.309|220917.351|113.191 +639243.237|220921.856|113.200 +639238.168|220926.355|113.169 +639233.051|220930.900|113.160 +639227.985|220935.399|113.118 +639222.919|220939.900|113.182 +639217.804|220944.442|113.185 +639212.736|220948.944|113.279 +639207.618|220953.491|113.489 +639202.543|220958.003|113.858 +639197.425|220962.553|114.151 +639192.314|220967.098|114.349 +639187.248|220971.597|114.587 +639182.091|220976.181|114.806 +639176.982|220980.719|114.953 +639171.877|220985.255|115.038 +639166.775|220989.790|115.205 +639161.721|220994.280|115.288 +639156.573|220998.852|115.352 +639151.474|221003.381|115.419 +639146.423|221007.868|115.474 +639141.275|221012.440|115.596 +639136.179|221016.969|115.711 +639131.083|221021.496|115.861 +639125.938|221026.068|115.971 +639120.893|221030.548|116.025 +639115.751|221035.114|115.967 +639110.658|221039.640|116.184 +639105.565|221044.167|116.376 +639100.423|221048.733|116.504 +639095.336|221053.250|116.379 +639090.245|221057.770|116.364 +639085.106|221062.333|116.373 +639080.019|221066.853|116.373 +639074.880|221071.416|116.227 +639069.790|221075.933|116.193 +639064.703|221080.456|116.455 +639059.567|221085.016|116.230 +639054.431|221089.582|116.757 +639049.344|221094.102|116.858 +639018.523|221121.470|116.498 +639013.387|221126.033|116.589 +639008.251|221130.596|116.678 +639003.115|221135.159|116.778 +638992.843|221144.281|116.949 +638987.707|221148.844|117.043 +638982.523|221153.450|117.153 +638920.953|221208.180|120.305 +638910.693|221217.303|120.826 +638905.551|221221.871|120.786 +638874.785|221249.224|121.929 +638844.070|221276.537|123.481 +638838.943|221281.100|123.868 +638833.801|221285.672|124.084 +638818.479|221299.297|124.822 +638813.371|221303.835|124.865 +638808.223|221308.414|125.017 +638798.033|221317.472|125.563 +638792.931|221322.011|125.706 +638782.756|221331.054|125.886 +638777.663|221335.583|126.239 +638772.607|221340.079|126.450 +638762.454|221349.107|126.989 +638757.394|221353.606|127.193 +638752.343|221358.099|127.516 +638747.308|221362.580|128.056 +638742.236|221367.088|128.163 +638737.216|221371.550|128.339 +638732.092|221376.107|128.428 +638727.082|221380.563|128.748 +638722.077|221385.013|129.114 +638656.529|221443.239|127.532 +638651.436|221447.756|126.931 +638646.401|221452.225|126.434 +638641.356|221456.699|125.892 +638631.289|221465.633|125.087 +638626.257|221470.101|124.737 +638621.291|221474.512|124.569 +638611.279|221483.403|124.057 +638606.304|221487.819|123.886 +638601.397|221492.181|123.886 +638591.403|221501.054|123.328 +638566.671|221523.018|122.438 +638561.672|221527.455|121.939 +638556.780|221531.799|121.899 +638551.818|221536.206|121.719 +638546.929|221540.547|121.387 +638541.943|221544.975|121.076 +638537.035|221549.328|120.683 +638532.140|221553.680|120.716 +638507.890|221575.230|121.076 +638503.017|221579.555|120.725 +638493.293|221588.190|120.259 +638488.356|221592.567|119.567 +638463.914|221614.253|117.178 +638459.012|221618.603|116.577 +638454.282|221622.809|116.729 +638444.504|221631.481|115.513 +638439.688|221635.757|115.236 +638434.942|221639.973|115.087 +638430.123|221644.252|115.135 +638425.305|221648.528|114.611 +638420.409|221652.866|113.672 +638415.511|221657.209|113.060 +638410.723|221661.458|112.487 +638405.904|221665.734|112.075 +638401.097|221670.002|111.761 +638386.805|221682.687|110.813 +638381.834|221687.086|109.414 +638377.329|221691.100|110.289 +638372.629|221695.279|110.414 +638367.956|221699.430|110.417 +638363.287|221703.578|110.469 +638349.571|221715.780|111.697 +638345.176|221719.702|112.944 +638313.418|221747.948|115.410 +638304.271|221756.077|115.553 +638299.739|221760.104|115.480 +638295.088|221764.231|115.099 +638290.415|221768.376|114.639 +638285.855|221772.427|114.486 +638281.274|221776.493|114.251 +638276.714|221780.544|114.142 +638272.203|221784.549|114.035 +638267.634|221788.609|113.922 +638263.126|221792.614|113.861 +638258.637|221796.600|113.910 +638254.183|221800.560|113.898 +638249.752|221804.498|114.008 +638245.292|221808.463|114.236 +638240.931|221812.340|114.456 +638236.511|221816.269|114.654 +638232.125|221820.168|114.797 +638227.757|221824.051|115.032 +638223.374|221827.946|115.209 +638218.991|221831.845|115.394 +638214.620|221835.728|115.428 +638210.310|221839.559|115.516 +638205.967|221843.421|115.696 +638201.651|221847.252|115.794 +638197.341|221851.077|115.922 +638192.970|221854.955|115.818 +638188.764|221858.697|116.412 +638184.607|221862.395|117.013 +638176.002|221870.027|116.809 +638158.699|221885.371|115.760 +638154.443|221889.144|115.617 +638145.772|221896.831|114.712 +638132.230|221908.801|110.746 +638127.920|221912.617|110.295 +638123.686|221916.372|109.932 +638119.474|221920.106|109.682 +638115.292|221923.815|109.573 +638111.174|221927.470|109.506 +638107.132|221931.057|109.759 +638102.966|221934.751|109.329 +638093.858|221942.789|105.766 +638089.789|221946.398|105.772 +638085.769|221949.967|105.769 +638081.852|221953.448|106.162 +638077.771|221957.066|105.961 +638073.714|221960.662|105.656 +638065.405|221968.020|104.361 +638061.427|221971.550|104.199 +638194.272|221851.300|115.748 +638198.664|221847.395|115.727 +638202.937|221843.592|115.455 +638207.314|221839.696|115.404 +638211.688|221835.804|115.370 +638216.047|221831.927|115.279 +638220.396|221828.059|115.154 +638224.785|221824.151|115.001 +638229.156|221820.262|114.776 +638233.542|221816.358|114.636 +638237.956|221812.429|114.395 +638242.382|221808.491|114.221 +638246.847|221804.516|114.011 +638251.266|221800.581|113.855 +638255.762|221796.585|113.806 +638260.261|221792.583|113.788 +638264.760|221788.581|113.800 +638269.326|221784.524|113.892 +638273.892|221780.464|114.005 +638278.455|221776.404|114.126 +638283.027|221772.341|114.315 +638287.602|221768.275|114.526 +638292.232|221764.161|114.770 +638296.974|221759.951|115.334 +638301.604|221755.836|115.635 +638306.256|221751.700|115.803 +638310.760|221747.692|115.519 +638329.000|221731.449|114.117 +638361.117|221702.826|110.713 +638365.786|221698.668|110.390 +638370.501|221694.471|110.338 +638375.189|221690.295|110.164 +638379.792|221686.193|109.530 +638389.536|221677.533|110.710 +638399.189|221668.947|111.222 +638404.054|221664.628|111.862 +638413.832|221655.938|112.950 +638418.733|221651.585|113.587 +638423.662|221647.212|114.422 +638428.615|221642.810|115.148 +638433.418|221638.534|115.026 +638438.265|221634.221|115.169 +638443.108|221629.911|115.324 +638457.757|221616.887|116.004 +638472.613|221603.689|117.903 +638477.584|221599.269|118.412 +638482.555|221594.856|118.933 +638487.514|221590.449|119.415 +638492.522|221585.998|120.259 +638497.457|221581.612|120.637 +638512.252|221568.451|120.890 +638526.956|221555.357|120.408 +638531.896|221550.959|120.314 +638536.822|221546.579|120.485 +638541.805|221542.147|120.744 +638546.868|221537.648|121.241 +638551.815|221533.247|121.298 +638556.866|221528.760|121.759 +638561.825|221524.346|121.960 +638566.866|221519.866|122.414 +638571.904|221515.388|122.883 +638622.120|221470.720|124.374 +638627.147|221466.251|124.645 +638632.270|221461.695|124.968 +638637.309|221457.217|125.410 +638647.492|221448.168|126.507 +638652.616|221443.614|126.937 +638667.926|221430.014|128.833 +638673.001|221425.503|128.943 +638683.169|221416.456|129.482 +638693.294|221407.452|129.674 +638698.394|221402.911|129.717 +638708.483|221393.934|129.693 +638713.597|221389.381|129.427 +638718.620|221384.906|129.269 +638723.686|221380.395|129.028 +638728.743|221375.890|128.711 +638738.865|221366.877|128.239 +638743.946|221362.354|128.251 +638748.966|221357.880|127.556 +638754.044|221353.353|126.980 +638759.134|221348.824|127.163 +638779.422|221330.752|125.944 +638784.451|221326.269|125.462 +638789.590|221321.703|125.742 +638794.686|221317.161|125.514 +638799.783|221312.626|125.273 +638804.925|221308.045|125.054 +638809.975|221303.549|124.880 +638815.077|221299.007|124.791 +638825.313|221289.891|124.410 +638840.565|221276.306|123.463 +638861.041|221258.070|122.192 +638866.125|221253.540|121.978 +638871.261|221248.965|121.774 +638876.388|221244.399|121.417 +638881.490|221239.861|121.536 +638901.982|221221.615|120.951 +638907.115|221217.046|120.771 +638917.372|221207.912|120.283 +638922.498|221203.346|119.948 +638927.622|221198.783|119.585 +638984.050|221148.536|117.327 +638989.180|221143.971|117.147 +638994.361|221139.359|117.071 +639004.624|221130.221|116.775 +639009.757|221125.652|116.726 +639014.886|221121.083|116.559 +639025.152|221111.945|116.443 +639035.415|221102.807|115.922 +639045.690|221093.675|116.931 +639050.868|221089.064|116.733 +639055.952|221084.537|116.684 +639061.085|221079.969|116.632 +639066.270|221075.357|116.605 +639076.487|221066.262|116.422 +639081.623|221061.693|116.382 +639086.755|221057.124|116.416 +639091.891|221052.552|116.278 +639097.027|221047.986|116.449 +639102.114|221043.463|116.547 +639107.253|221038.887|116.239 +639112.392|221034.315|116.245 +639117.531|221029.743|116.099 +639122.670|221025.168|116.010 +639127.763|221020.636|115.833 +639132.905|221016.061|115.702 +639138.050|221011.486|115.602 +639143.144|221006.950|115.522 +639148.240|221002.418|115.428 +639153.382|220997.843|115.394 +639158.481|220993.305|115.294 +639163.580|220988.769|115.199 +639168.728|220984.188|115.123 +639173.831|220979.646|114.971 +639178.985|220975.062|114.803 +639184.042|220970.560|114.593 +639189.202|220965.967|114.315 +639194.310|220961.419|114.175 +639199.376|220956.911|113.901 +639204.491|220952.355|113.602 +639209.608|220947.801|113.343 +639214.720|220943.253|113.267 +639219.834|220938.706|113.218 +639224.894|220934.201|113.230 +639230.009|220929.653|113.224 +639235.074|220925.148|113.200 +639240.140|220920.640|113.182 +639245.258|220916.089|113.206 +639250.318|220911.591|113.355 +639255.389|220907.080|113.337 +639260.464|220902.562|113.270 +639265.539|220898.048|113.212 +639270.620|220893.528|113.115 +639275.732|220888.971|112.471 +639280.773|220884.488|112.313 +639285.872|220879.943|111.956 +639290.914|220875.459|111.847 +639296.007|220870.927|111.697 +639301.039|220866.450|111.780 +639306.105|220861.939|111.356 +639311.147|220857.455|111.350 +639316.194|220852.965|111.313 +639321.248|220848.469|111.194 +639326.280|220843.986|110.694 +639331.385|220839.441|110.569 +639341.435|220830.495|109.990 +639346.488|220826.003|110.051 +639351.481|220821.565|110.259 +639361.417|220812.728|110.713 +639366.410|220808.294|110.996 +639371.363|220803.889|111.146 +639376.407|220799.400|110.838 +639381.382|220794.971|110.786 +639386.402|220790.505|110.789 +639391.327|220786.125|110.810 +639396.293|220781.709|110.938 +639401.227|220777.317|110.880 +639406.196|220772.903|111.045 +639411.115|220768.526|111.200 +639416.022|220764.165|111.502 +639420.936|220759.800|111.789 +639425.877|220755.405|111.773 +639435.645|220746.721|112.459 +639440.507|220742.402|112.813 +639445.426|220738.031|113.118 +639450.248|220733.745|113.389 +639455.147|220729.390|113.450 +639459.984|220725.089|113.627 +639464.873|220720.740|113.794 +639469.716|220716.433|113.953 +639474.562|220712.129|114.139 +639479.418|220707.813|114.233 +639484.307|220703.464|114.053 +639489.132|220699.175|114.044 +639493.984|220694.856|113.809 +639508.663|220681.789|112.642 +639513.516|220677.467|112.109 +639518.298|220673.218|112.179 +639528.049|220664.531|110.899 +639532.852|220660.258|110.862 +639537.641|220656.000|110.603 +639542.408|220651.760|110.521 +639547.260|220647.441|110.201 +639552.009|220643.217|109.926 +639556.804|220638.949|109.704 +639561.589|220634.694|109.603 +639566.323|220630.482|109.503 +639571.047|220626.285|109.527 +639575.781|220622.076|109.490 +639580.453|220617.918|109.539 +639585.193|220613.706|109.512 +639589.820|220609.597|109.942 +639594.428|220605.504|110.161 +639599.171|220601.288|110.164 +639603.789|220597.183|110.338 +639608.425|220593.062|110.426 +639613.042|220588.959|110.640 +639617.709|220584.814|110.899 +639622.275|220580.757|111.170 +639626.816|220576.724|111.609 +639636.030|220568.537|112.011 +639640.624|220564.456|112.161 +639645.162|220560.424|112.353 +639663.487|220544.132|112.551 +639668.065|220540.063|112.581 +639672.597|220536.034|112.615 +639681.668|220527.965|112.374 +639686.210|220523.924|112.386 +639690.767|220519.873|112.350 +639699.776|220511.863|112.337 +639704.272|220507.867|112.404 +639708.728|220503.904|112.429 +639713.246|220499.887|112.407 +639717.720|220495.910|112.365 +639730.982|220484.123|112.679 +639735.411|220480.188|112.956 +639739.864|220476.229|112.843 +639744.326|220472.257|112.679 +639757.649|220460.400|111.856 +639762.075|220456.462|111.706 +639775.434|220444.572|110.664 +639779.842|220440.649|110.423 +639797.346|220425.074|109.490 +639801.723|220421.179|109.234 +639810.498|220413.370|108.677 +639827.720|220398.053|108.396 +639831.984|220394.262|108.317 +639836.239|220390.479|108.296 +639844.767|220382.896|108.216 +639848.995|220379.131|108.116 +639853.244|220375.352|107.942 +639857.505|220371.563|107.732 +639861.766|220367.768|107.534 +639874.400|220356.530|107.019 +639837.778|220386.892|108.058 +639833.502|220390.689|108.158 +639829.192|220394.518|108.192 +639811.836|220409.922|108.256 +639807.405|220413.860|108.719 +639803.015|220417.759|108.978 +639798.602|220421.678|109.143 +639794.225|220425.568|109.384 +639785.355|220433.447|109.996 +639780.948|220437.360|110.201 +639776.495|220441.317|110.387 +639772.026|220445.285|110.670 +639767.546|220449.269|111.051 +639758.560|220457.252|111.719 +639754.049|220461.260|112.045 +639745.116|220469.197|112.575 +639740.620|220473.187|112.606 +639736.103|220477.201|112.776 +639731.613|220481.185|112.801 +639718.257|220493.032|112.383 +639713.703|220497.077|112.563 +639704.784|220504.990|112.203 +639700.258|220509.007|112.276 +639695.710|220513.042|112.203 +639691.154|220517.087|112.209 +639686.600|220521.129|112.206 +639682.104|220525.122|112.194 +639677.517|220529.197|112.432 +639668.327|220537.356|112.456 +639659.211|220545.449|112.410 +639654.581|220549.561|112.401 +639649.963|220553.660|112.322 +639645.394|220557.717|112.292 +639640.843|220561.756|112.145 +639636.207|220565.867|111.917 +639631.599|220569.958|111.850 +639626.960|220574.073|111.673 +639613.146|220586.326|110.585 +639608.480|220590.465|110.307 +639603.761|220594.656|110.429 +639599.107|220598.783|110.112 +639594.416|220602.949|110.076 +639589.701|220607.134|109.884 +639585.034|220611.274|109.710 +639580.353|220615.425|109.298 +639575.564|220619.680|109.335 +639570.821|220623.889|109.393 +639566.085|220628.096|109.451 +639561.254|220632.387|109.490 +639556.511|220636.599|109.631 +639551.668|220640.900|109.801 +639546.867|220645.164|110.057 +639542.027|220649.465|110.265 +639537.126|220653.821|110.579 +639532.356|220658.057|110.679 +639527.461|220662.410|111.011 +639517.728|220671.054|111.267 +639507.874|220679.820|112.666 +639502.958|220684.191|112.910 +639497.989|220688.611|113.617 +639493.082|220692.969|113.846 +639488.193|220697.313|113.953 +639483.258|220701.693|114.023 +639478.369|220706.039|114.197 +639473.456|220710.401|114.136 +639468.555|220714.750|113.980 +639463.617|220719.130|113.742 +639458.667|220723.526|113.633 +639453.772|220727.866|113.480 +639448.785|220732.292|113.294 +639443.848|220736.678|113.145 +639438.931|220741.036|112.791 +639433.963|220745.444|112.459 +639428.970|220749.876|112.404 +639424.017|220754.271|111.996 +639419.046|220758.681|111.755 +639414.078|220763.089|111.517 +639409.079|220767.520|111.063 +639404.053|220771.980|110.947 +639399.082|220776.393|110.810 +639394.004|220780.901|110.768 +639389.026|220785.321|110.710 +639383.957|220789.820|110.612 +639378.885|220794.325|110.591 +639373.792|220798.848|110.822 +639368.751|220803.325|111.060 +639363.691|220807.818|110.966 +639358.595|220812.341|110.722 +639348.512|220821.287|110.149 +639343.410|220825.814|110.030 +639333.245|220834.839|110.033 +639328.100|220839.417|110.606 +639317.800|220848.570|111.325 +639312.698|220853.099|111.392 +639307.550|220857.668|111.435 +639297.290|220866.776|111.813 +639292.154|220871.332|111.746 +639287.009|220875.901|111.920 +639276.701|220885.058|112.590 +639271.501|220889.675|112.929 +639266.359|220894.244|113.191 +639261.220|220898.807|113.386 +639256.051|220903.394|113.319 +639250.872|220907.991|113.416 +639245.755|220912.529|113.282 +639240.588|220917.114|113.194 +639235.419|220921.701|113.200 +639230.298|220926.248|113.288 +639225.135|220930.830|113.221 +639219.969|220935.414|113.258 +639214.802|220939.998|113.300 +639209.639|220944.582|113.331 +639204.472|220949.169|113.450 +639199.300|220953.763|113.764 +639194.134|220958.350|114.008 +639188.973|220962.934|114.160 +639183.807|220967.518|114.404 +639178.598|220972.145|114.648 +639173.438|220976.729|114.901 +639168.283|220981.305|115.010 +639163.077|220985.925|115.154 +639157.926|220990.497|115.245 +639152.775|220995.069|115.318 +639147.578|220999.684|115.413 +639142.430|221004.253|115.462 +639137.282|221008.822|115.510 +639132.085|221013.437|115.644 +639126.937|221018.006|115.800 +639121.743|221022.617|115.955 +639116.550|221027.229|116.053 +639111.405|221031.792|116.126 +639106.263|221036.355|116.111 +639101.072|221040.963|116.233 +639095.930|221045.532|116.486 +639090.739|221050.138|116.528 +639085.551|221054.737|116.367 +639080.412|221059.300|116.412 +639075.274|221063.863|116.452 +639064.947|221073.025|116.501 +639059.808|221077.591|116.772 +639049.484|221086.753|116.812 +639044.345|221091.313|116.964 +639039.207|221095.873|116.851 +639034.068|221100.430|116.574 +639018.605|221114.152|116.757 +639013.466|221118.712|116.626 +639003.194|221127.831|117.040 +638998.046|221132.394|116.598 +638987.787|221141.511|117.467 +638941.646|221182.470|118.442 +638921.297|221200.529|119.345 +638916.177|221205.080|119.960 +638900.925|221218.619|120.808 +638885.654|221232.171|121.381 +638880.610|221236.648|121.490 +638870.414|221245.692|121.640 +638865.367|221250.169|121.783 +638860.279|221254.686|122.085 +638855.226|221259.167|122.137 +638850.139|221263.684|122.435 +638840.053|221272.636|123.005 +638829.933|221281.622|123.798 +638814.794|221295.057|124.548 +638809.695|221299.583|124.746 +638804.641|221304.067|124.929 +638799.581|221308.557|125.047 +638794.525|221313.043|125.215 +638789.523|221317.484|125.477 +638784.457|221321.977|125.566 +638779.382|221326.479|125.547 +638774.338|221330.957|125.931 +638754.255|221348.781|126.962 +638749.234|221353.237|127.111 +638744.236|221357.685|128.092 +638739.246|221362.107|128.096 +638734.186|221366.600|128.367 +638729.209|221371.017|128.525 +638724.192|221375.470|128.778 +638719.175|221379.920|129.074 +638689.143|221406.565|129.793 +638684.117|221411.022|129.613 +638674.040|221419.952|129.098 +638663.963|221428.886|128.690 +638633.550|221455.815|125.288 +638628.536|221460.253|124.663 +638618.509|221469.138|123.969 +638613.461|221473.609|123.594 +638608.499|221478.011|123.514 +638588.534|221495.704|122.621 +638583.603|221500.081|122.905 +638578.674|221504.452|122.862 +638573.688|221508.875|122.771 +638568.710|221513.285|122.414 +638563.721|221517.702|121.993 +638558.734|221522.121|121.606 +638553.778|221526.514|121.494 +638548.807|221530.918|120.920 +638543.866|221535.295|120.588 +638538.946|221539.660|120.433 +638533.996|221544.049|120.454 +638524.179|221552.754|120.076 +638509.524|221565.757|120.323 +638504.726|221570.015|120.475 +638499.792|221574.389|120.408 +638490.093|221582.993|120.457 +638485.100|221587.410|119.433 +638480.135|221591.802|118.625 +638470.299|221600.516|117.693 +638465.337|221604.908|116.992 +638460.369|221609.307|116.288 +638455.541|221613.586|115.839 +638445.845|221622.178|115.437 +638436.226|221630.710|115.263 +638431.434|221634.959|115.154 +638426.682|221639.174|115.324 +638421.671|221643.603|113.998 +638416.938|221647.803|113.998 +638402.271|221660.781|111.545 +638397.552|221664.966|111.453 +638392.679|221669.282|110.801 +638383.279|221677.618|110.932 +638364.472|221694.300|110.829 +638355.341|221702.417|112.322 +638350.900|221706.367|113.334 +638323.446|221730.745|115.443 +638309.834|221742.828|116.230 +638305.204|221746.933|116.160 +638300.580|221751.030|115.873 +638295.953|221755.129|115.352 +638291.314|221759.238|115.044 +638286.733|221763.298|114.779 +638282.225|221767.300|114.892 +638277.644|221771.357|114.681 +638273.121|221775.371|114.745 +638268.637|221779.349|114.779 +638264.111|221783.360|114.629 +638259.633|221787.331|114.477 +638255.101|221791.346|114.346 +638250.642|221795.302|114.309 +638246.188|221799.255|114.572 +638241.799|221803.151|114.895 +638237.371|221807.080|114.821 +638228.714|221814.767|115.611 +638224.322|221818.665|115.736 +638219.851|221822.624|115.547 +638215.574|221826.422|115.986 +638211.164|221830.333|115.855 +638206.686|221834.301|115.443 +638202.315|221838.178|115.519 +638197.932|221842.068|115.562 +638193.595|221845.917|115.580 +638189.243|221849.779|115.544 +638184.991|221853.555|115.736 +638180.830|221857.256|116.324 +638176.633|221860.983|116.778 +638172.402|221864.745|117.083 +638155.184|221880.015|116.397 +638150.758|221883.932|115.556 +638146.409|221887.785|115.053 +638142.148|221891.561|114.709 +638137.850|221895.374|114.437 +638124.369|221907.283|110.368 +638120.196|221910.986|110.262 +638115.962|221914.738|109.920 +638111.918|221918.329|110.134 +638107.754|221922.023|110.106 +638103.639|221925.674|110.070 +638099.552|221929.301|109.948 +638090.304|221937.458|105.842 +638086.244|221941.058|105.677 +638082.178|221944.663|105.714 +638078.323|221948.092|106.144 +638074.253|221951.701|105.985 +638070.090|221955.389|105.491 +638065.890|221959.105|104.662 +638061.778|221962.747|104.196 +638194.278|221843.427|115.477 +638198.670|221839.513|115.480 +638203.001|221835.661|115.452 +638207.406|221831.741|115.529 +638211.871|221827.772|116.123 +638216.275|221823.856|116.242 +638220.607|221819.994|115.821 +638225.093|221816.004|116.102 +638229.397|221812.167|115.833 +638238.218|221804.309|115.334 +638246.963|221796.518|114.535 +638251.431|221792.537|114.605 +638255.933|221788.532|114.596 +638260.426|221784.533|114.565 +638264.955|221780.504|114.727 +638269.506|221776.456|115.004 +638273.998|221772.454|114.794 +638278.564|221768.394|114.928 +638283.146|221764.319|115.166 +638287.693|221760.268|115.020 +638292.283|221756.181|115.090 +638296.919|221752.060|115.394 +638301.565|221747.930|115.772 +638306.280|221743.742|116.257 +638310.870|221739.658|116.409 +638315.497|221735.540|116.507 +638333.691|221719.321|114.709 +638365.719|221690.786|111.011 +638370.395|221686.622|110.758 +638375.140|221682.404|110.893 +638389.192|221669.892|109.850 +638394.230|221665.430|111.420 +638398.991|221661.199|111.459 +638418.489|221643.880|113.624 +638423.540|221639.409|115.181 +638428.353|221635.126|115.096 +638433.129|221630.877|115.102 +638437.978|221626.567|115.279 +638442.696|221622.361|114.367 +638447.653|221617.963|115.227 +638452.499|221613.653|115.446 +638457.431|221609.273|115.910 +638462.341|221604.914|116.577 +638467.324|221600.489|117.098 +638472.290|221596.084|117.842 +638477.188|221591.729|118.217 +638482.171|221587.306|118.817 +638496.969|221574.160|119.851 +638501.901|221569.777|120.253 +638506.814|221565.406|120.216 +638511.719|221561.041|120.152 +638526.404|221547.978|119.848 +638531.357|221543.576|120.192 +638536.340|221539.148|120.430 +638541.242|221534.789|120.466 +638546.252|221530.333|120.607 +638551.230|221525.910|120.863 +638556.244|221521.457|121.439 +638561.282|221516.982|121.850 +638576.312|221503.623|122.618 +638581.234|221499.246|122.646 +638586.245|221494.790|122.594 +638591.198|221490.383|122.515 +638596.185|221485.945|122.323 +638601.254|221481.446|122.807 +638606.277|221476.977|122.978 +638631.554|221454.523|125.096 +638636.626|221450.018|125.410 +638646.818|221440.965|126.590 +638662.150|221427.356|128.577 +638672.321|221418.315|128.998 +638682.443|221409.321|129.552 +638687.515|221404.810|129.760 +638717.870|221377.814|129.071 +638722.930|221373.309|128.787 +638727.941|221368.852|128.498 +638733.062|221364.299|128.342 +638738.070|221359.846|128.047 +638743.196|221355.286|128.016 +638748.198|221350.830|127.129 +638768.531|221332.746|126.288 +638773.634|221328.207|126.047 +638783.826|221319.139|125.459 +638788.929|221314.601|125.300 +638793.973|221310.114|125.002 +638799.124|221305.533|124.837 +638804.230|221300.995|124.734 +638809.326|221296.459|124.538 +638814.474|221291.884|124.356 +638824.712|221282.777|123.993 +638829.799|221278.250|123.691 +638834.890|221273.724|123.426 +638840.019|221269.161|123.057 +638845.152|221264.592|122.765 +638850.224|221260.078|122.195 +638855.369|221255.503|122.140 +638860.514|221250.931|122.033 +638865.598|221246.408|121.768 +638870.728|221241.845|121.433 +638875.858|221237.279|121.140 +638881.012|221232.701|121.314 +638886.154|221228.129|121.228 +638891.272|221223.572|120.701 +638896.423|221218.997|120.872 +638922.066|221196.186|119.323 +638927.192|221191.623|119.019 +638932.328|221187.057|118.948 +638963.171|221159.628|117.885 +638973.473|221150.463|117.132 +638978.624|221145.891|117.757 +638983.763|221141.325|117.936 +638988.884|221136.765|117.205 +638994.014|221132.202|116.943 +638999.150|221127.639|117.083 +639004.285|221123.073|117.065 +639009.418|221118.511|117.046 +639014.548|221113.945|116.665 +639019.684|221109.382|116.687 +639024.771|221104.862|116.848 +639029.907|221100.299|116.800 +639035.089|221095.690|116.827 +639045.309|221086.607|116.958 +639055.529|221077.524|116.973 +639060.661|221072.955|116.571 +639070.884|221063.869|116.531 +639076.020|221059.306|116.504 +639081.156|221054.737|116.382 +639086.243|221050.220|116.553 +639091.379|221045.654|116.495 +639096.469|221041.125|116.361 +639101.608|221036.556|116.202 +639106.699|221032.026|116.099 +639111.789|221027.503|116.080 +639116.931|221022.928|115.891 +639122.021|221018.399|115.800 +639127.117|221013.869|115.696 +639132.210|221009.337|115.596 +639137.307|221004.808|115.480 +639142.403|221000.275|115.425 +639147.499|220995.743|115.367 +639152.547|220991.253|115.254 +639157.646|220986.721|115.212 +639162.745|220982.185|115.141 +639167.799|220977.690|114.971 +639172.904|220973.148|114.818 +639177.964|220968.646|114.562 +639183.075|220964.099|114.245 +639188.135|220959.597|114.072 +639193.198|220955.095|113.953 +639198.261|220950.590|113.739 +639203.329|220946.082|113.526 +639208.389|220941.580|113.456 +639213.455|220937.075|113.355 +639218.521|220932.573|113.316 +639223.583|220928.074|113.334 +639228.600|220923.612|113.297 +639233.666|220919.107|113.294 +639238.732|220914.605|113.343 +639243.749|220910.143|113.368 +639248.812|220905.644|113.496 +639253.835|220901.179|113.514 +639258.913|220896.661|113.410 +639263.936|220892.196|113.428 +639268.980|220887.706|113.108 +639274.037|220883.204|112.621 +639284.178|220874.182|112.130 +639289.180|220869.735|111.898 +639294.224|220865.249|111.776 +639299.250|220860.780|111.953 +639304.246|220856.336|111.856 +639309.309|220851.834|111.560 +639314.304|220847.390|111.533 +639319.370|220842.885|111.267 +639329.425|220833.936|110.493 +639339.484|220824.985|109.811 +639344.473|220820.550|110.057 +639349.460|220816.121|110.356 +639359.403|220807.288|110.789 +639364.398|220802.850|111.024 +639369.373|220798.424|110.938 +639374.417|220793.938|110.640 +639379.346|220789.551|110.557 +639384.363|220785.092|110.618 +639389.340|220780.670|110.637 +639394.299|220776.262|110.856 +639399.231|220771.879|110.853 +639404.248|220767.417|111.002 +639409.152|220763.064|111.353 +639419.043|220754.274|111.725 +639428.888|220745.526|112.133 +639433.841|220741.128|112.557 +639438.696|220736.815|112.987 +639448.560|220728.052|113.346 +639453.440|220723.715|113.593 +639458.338|220719.359|113.660 +639463.269|220714.979|113.916 +639468.119|220710.672|114.050 +639473.020|220706.310|114.160 +639477.888|220701.979|114.139 +639482.886|220697.532|113.892 +639487.763|220693.192|113.837 +639492.655|220688.842|113.712 +639497.602|220684.432|113.121 +639502.522|220680.046|112.362 +639517.295|220666.891|111.085 +639522.133|220662.587|111.139 +639527.028|220658.228|110.768 +639531.895|220653.897|110.640 +639536.784|220649.544|110.365 +639541.634|220645.228|110.057 +639546.474|220640.922|109.838 +639551.308|220636.618|109.670 +639556.157|220632.305|109.454 +639560.940|220628.047|109.366 +639565.777|220623.743|109.262 +639570.520|220619.521|109.140 +639575.342|220615.236|109.213 +639580.051|220611.045|109.366 +639584.769|220606.851|109.497 +639589.524|220602.626|109.743 +639594.233|220598.441|109.969 +639598.891|220594.299|110.210 +639603.642|220590.072|110.176 +639608.284|220585.948|110.576 +639612.963|220581.787|110.731 +639617.636|220577.633|110.944 +639626.865|220569.434|111.533 +639631.550|220565.264|111.709 +639636.183|220561.146|111.923 +639640.779|220557.062|112.066 +639645.449|220552.907|112.093 +639650.057|220548.808|112.179 +639654.687|220544.690|112.176 +639659.262|220540.621|112.191 +639663.840|220536.549|112.225 +639673.024|220528.380|112.176 +639677.633|220524.277|112.081 +639682.183|220520.230|112.042 +639686.786|220516.136|112.036 +639691.279|220512.137|112.075 +639695.811|220508.108|112.206 +639709.378|220496.038|112.002 +639722.682|220484.208|112.566 +639727.132|220480.252|112.712 +639731.561|220476.311|112.700 +639735.984|220472.379|112.743 +639740.452|220468.398|112.538 +639744.933|220464.411|112.310 +639753.802|220456.514|111.822 +639762.660|220448.626|111.225 +639767.131|220444.645|110.862 +639771.563|220440.695|110.457 +639775.919|220436.818|110.213 +639780.262|220432.953|110.051 +639789.083|220425.095|109.344 +639793.420|220421.233|109.003 +639797.779|220417.353|108.835 +639802.080|220413.528|108.719 +639806.396|220409.685|108.546 +639823.535|220394.435|108.125 +639827.799|220390.641|108.030 +639832.005|220386.898|107.985 +639836.214|220383.152|107.939 +639840.424|220379.409|107.918 +639844.651|220375.647|107.820 +639848.851|220371.908|107.613 +639853.103|220368.122|107.436 +639857.261|220364.425|107.232 +639861.485|220360.663|106.970 +639865.728|220356.878|106.388 +639869.889|220353.178|106.226 +639836.071|220381.460|107.777 +639831.752|220385.288|107.817 +639827.387|220389.156|107.848 +639823.017|220393.033|107.924 +639805.329|220408.712|108.390 +639800.912|220412.629|108.530 +639796.502|220416.543|108.661 +639791.991|220420.542|108.783 +639787.547|220424.486|109.134 +639782.981|220428.539|109.591 +639773.938|220436.559|110.091 +639769.420|220440.564|110.359 +639764.888|220444.587|110.731 +639760.304|220448.653|111.121 +639755.784|220452.664|111.475 +639751.233|220456.703|111.734 +639746.627|220460.790|112.045 +639742.101|220464.805|112.221 +639737.520|220468.868|112.435 +639733.018|220472.858|112.511 +639728.477|220476.884|112.545 +639723.914|220480.926|112.432 +639710.353|220492.941|112.054 +639691.998|220509.208|112.017 +639687.411|220513.271|111.883 +639682.808|220517.349|111.871 +639678.212|220521.427|111.856 +639673.600|220525.515|111.923 +639668.937|220529.651|112.039 +639664.292|220533.772|112.066 +639659.668|220537.868|111.965 +639655.077|220541.941|112.008 +639650.408|220546.080|111.920 +639645.784|220550.176|111.883 +639641.160|220554.276|111.868 +639636.494|220558.412|111.822 +639631.858|220562.521|111.606 +639627.216|220566.636|111.438 +639622.583|220570.741|111.228 +639617.925|220574.865|110.865 +639613.289|220578.974|110.710 +639608.672|220583.064|110.451 +639603.984|220587.222|110.344 +639599.314|220591.358|110.128 +639594.703|220595.442|109.878 +639589.969|220599.639|109.789 +639585.321|220603.757|109.472 +639580.651|220607.893|109.314 +639575.933|220612.072|108.823 +639571.218|220616.254|109.039 +639566.481|220620.454|109.073 +639561.687|220624.709|109.207 +639556.950|220628.909|109.280 +639552.204|220633.119|109.463 +639547.358|220637.419|109.664 +639542.618|220641.623|109.835 +639537.775|220645.920|110.070 +639532.974|220650.181|110.396 +639528.186|220654.430|110.637 +639523.312|220658.752|110.801 +639518.460|220663.059|111.203 +639513.623|220667.354|111.539 +639499.004|220680.329|112.752 +639494.155|220684.639|113.319 +639489.272|220688.976|113.773 +639484.398|220693.295|113.733 +639479.555|220697.593|113.895 +639474.660|220701.936|114.102 +639469.838|220706.210|114.117 +639464.931|220710.559|114.017 +639460.090|220714.848|113.794 +639455.201|220719.182|113.590 +639445.463|220727.814|113.313 +639435.691|220736.473|112.968 +639430.793|220740.811|112.450 +639425.922|220745.124|112.161 +639416.019|220753.902|111.773 +639411.088|220758.273|111.679 +639406.189|220762.610|111.216 +639401.230|220767.002|110.899 +639396.259|220771.410|110.761 +639391.276|220775.826|110.746 +639386.246|220780.285|110.731 +639381.275|220784.696|110.655 +639376.215|220789.180|110.469 +639371.223|220793.608|110.682 +639366.181|220798.083|110.923 +639361.113|220802.576|110.917 +639356.099|220807.023|110.899 +639351.054|220811.494|110.637 +639346.025|220815.947|110.207 +639340.993|220820.403|109.795 +639335.951|220824.872|109.570 +639330.803|220829.444|110.128 +639325.719|220833.958|110.536 +639315.456|220843.068|111.389 +639310.388|220847.567|111.661 +639305.224|220852.151|111.944 +639300.125|220856.678|112.036 +639295.044|220861.183|111.859 +639289.896|220865.752|111.996 +639284.800|220870.275|112.136 +639279.645|220874.850|112.441 +639274.510|220879.410|112.490 +639269.337|220884.003|113.179 +639264.201|220888.563|113.322 +639259.062|220893.123|113.483 +639253.887|220897.716|113.517 +639248.760|220902.261|113.529 +639243.594|220906.848|113.462 +639238.427|220911.426|113.346 +639233.258|220916.013|113.343 +639228.140|220920.555|113.331 +639222.925|220925.179|113.325 +639217.759|220929.763|113.334 +639212.592|220934.347|113.374 +639207.377|220938.974|113.462 +639202.211|220943.558|113.553 +639197.047|220948.142|113.678 +639191.835|220952.766|113.806 +639186.623|220957.393|113.965 +639181.460|220961.974|114.145 +639176.248|220966.601|114.373 +639171.036|220971.228|114.715 +639165.830|220975.849|114.876 +639160.624|220980.469|115.081 +639155.421|220985.087|115.224 +639150.273|220989.653|115.196 +639145.073|220994.265|115.233 +639139.824|220998.925|115.413 +639134.676|221003.491|115.446 +639129.434|221008.145|115.492 +639124.237|221012.757|115.614 +639119.089|221017.323|115.736 +639113.846|221021.974|115.836 +639108.652|221026.586|115.992 +639103.462|221031.191|116.083 +639098.271|221035.797|116.114 +639093.031|221040.445|116.150 +639087.889|221045.011|116.412 +639082.650|221049.659|116.525 +639077.462|221054.259|116.400 +639072.274|221058.864|116.525 +639051.523|221077.277|117.004 +639046.287|221081.922|116.952 +639041.102|221086.525|117.068 +639035.915|221091.124|116.979 +639030.730|221095.727|117.147 +639025.542|221100.326|117.034 +639009.979|221114.131|116.797 +639004.843|221118.690|117.053 +638999.656|221123.290|117.147 +638994.468|221127.892|117.007 +638989.329|221132.452|117.037 +638984.153|221137.052|117.659 +638973.827|221146.211|117.732 +638968.676|221150.777|117.309 +638958.419|221159.887|118.272 +638932.715|221182.689|118.494 +638927.585|221187.246|118.848 +638922.495|221191.763|119.019 +638917.408|221196.280|119.220 +638912.272|221200.840|119.454 +638907.197|221205.351|119.948 +638896.987|221214.422|120.692 +638886.779|221223.475|120.503 +638881.713|221227.980|121.161 +638871.575|221236.977|121.466 +638866.482|221241.498|121.673 +638861.444|221245.972|121.960 +638856.351|221250.495|122.155 +638851.288|221254.985|122.039 +638846.249|221259.459|122.362 +638841.159|221263.980|122.655 +638836.179|221268.405|123.142 +638831.083|221272.929|123.362 +638826.081|221277.370|123.502 +638821.039|221281.847|123.834 +638815.989|221286.331|124.014 +638810.981|221290.775|124.154 +638805.891|221295.298|124.499 +638800.874|221299.748|124.526 +638795.860|221304.198|124.609 +638790.855|221308.642|124.813 +638785.807|221313.126|125.118 +638780.806|221317.567|125.401 +638775.795|221322.014|125.596 +638770.750|221326.497|125.977 +638765.791|221330.899|126.221 +638750.749|221344.255|126.824 +638745.735|221348.705|127.074 +638740.825|221353.073|127.955 +638735.799|221357.532|128.071 +638730.834|221361.943|128.336 +638715.834|221375.262|129.138 +638700.835|221388.576|129.577 +638695.879|221392.971|129.559 +638685.897|221401.832|129.808 +638680.865|221406.294|129.580 +638675.890|221410.705|129.461 +638670.840|221415.182|129.089 +638660.858|221424.037|128.644 +638655.776|221428.535|128.099 +638650.723|221433.010|127.407 +638645.694|221437.469|126.934 +638640.674|221441.913|126.160 +638615.448|221464.261|123.469 +638605.481|221473.097|122.987 +638600.544|221477.474|122.755 +638595.490|221481.955|122.417 +638590.531|221486.350|122.073 +638580.652|221495.116|122.152 +638565.741|221508.341|121.905 +638560.831|221512.697|121.701 +638555.793|221517.159|120.939 +638545.783|221526.023|119.662 +638540.769|221530.464|119.192 +638535.892|221534.792|119.369 +638531.076|221539.068|120.000 +638526.130|221543.454|119.720 +638521.207|221547.816|119.643 +638516.352|221552.126|119.680 +638511.453|221556.469|119.817 +638506.570|221560.801|119.732 +638496.823|221569.445|119.729 +638477.154|221586.873|118.235 +638472.232|221591.232|117.751 +638467.364|221595.542|117.309 +638462.417|221599.922|116.720 +638457.394|221604.366|115.681 +638452.490|221608.709|115.096 +638442.831|221617.271|114.943 +638433.257|221625.769|115.367 +638428.450|221630.030|115.178 +638423.683|221634.258|115.257 +638418.913|221638.488|115.340 +638413.783|221643.014|113.361 +638394.379|221660.199|111.328 +638380.221|221672.757|111.484 +638375.427|221677.003|111.066 +638370.742|221681.160|111.271 +638361.571|221689.311|112.499 +638334.050|221713.750|115.102 +638315.842|221729.916|116.589 +638311.245|221733.991|116.653 +638306.588|221738.118|116.428 +638301.918|221742.251|115.922 +638297.297|221746.348|115.654 +638292.628|221750.487|115.440 +638288.092|221754.514|115.635 +638283.578|221758.516|115.702 +638278.967|221762.600|115.334 +638269.905|221770.638|115.401 +638260.734|221778.760|114.785 +638256.235|221782.750|114.785 +638242.918|221794.564|115.242 +638225.435|221810.088|116.723 +638221.073|221813.962|116.992 +638216.623|221817.906|116.888 +638212.292|221821.750|117.086 +638207.781|221825.742|116.519 +638203.202|221829.790|115.696 +638198.813|221833.679|115.471 +638194.488|221837.514|115.538 +638190.160|221841.354|115.830 +638185.780|221845.231|115.468 +638181.400|221849.115|115.346 +638177.081|221852.940|115.291 +638172.829|221856.713|115.513 +638168.525|221860.526|115.541 +638164.532|221864.080|116.653 +638160.430|221867.723|117.321 +638156.096|221871.563|117.031 +638143.029|221883.121|115.407 +638138.667|221886.983|114.864 +638125.305|221898.788|111.658 +638120.873|221902.702|110.515 +638116.654|221906.435|110.231 +638108.288|221913.851|109.984 +638104.191|221917.481|110.018 +638100.137|221921.075|110.231 +638095.986|221924.751|109.868 +638091.734|221928.509|109.134 +638082.724|221936.452|105.595 +638078.643|221940.070|105.577 +638074.711|221943.557|105.936 +638070.757|221947.062|106.016 +638066.432|221950.881|104.925 +638062.388|221954.463|104.489 +638058.312|221958.066|103.961 +638192.348|221837.477|115.922 +638196.573|221833.716|115.428 +638200.990|221829.790|115.544 +638205.540|221825.755|116.486 +638210.076|221821.731|117.162 +638214.465|221817.830|117.217 +638223.267|221810.003|117.266 +638244.924|221790.715|114.757 +638253.985|221782.659|114.998 +638258.313|221778.806|114.447 +638276.635|221762.527|115.437 +638281.256|221758.421|115.861 +638285.831|221754.355|115.833 +638290.382|221750.307|115.727 +638294.954|221746.241|115.730 +638299.562|221742.148|115.925 +638304.226|221738.003|116.163 +638308.898|221733.857|116.717 +638313.589|221729.688|116.873 +638318.195|221725.594|116.882 +638331.877|221713.414|115.827 +638345.639|221701.158|114.779 +638373.290|221676.512|111.542 +638378.042|221672.284|111.444 +638392.282|221659.614|111.505 +638397.101|221655.328|111.588 +638401.902|221651.058|111.588 +638406.757|221646.748|112.197 +638411.686|221642.368|112.688 +638416.941|221637.726|115.388 +638421.732|221633.465|115.443 +638426.539|221629.186|115.309 +638431.340|221624.918|115.452 +638436.146|221620.636|115.071 +638445.748|221612.089|114.873 +638455.544|221603.384|115.629 +638465.526|221594.521|117.040 +638470.464|221590.138|117.607 +638475.420|221585.730|118.016 +638505.007|221559.429|119.698 +638514.812|221550.706|119.503 +638529.580|221537.563|119.101 +638534.496|221533.186|118.851 +638539.440|221528.787|118.820 +638549.532|221519.823|119.906 +638554.641|221515.291|120.786 +638559.670|221510.826|121.481 +638574.727|221497.436|122.045 +638589.699|221484.119|122.182 +638594.755|221479.626|122.518 +638599.794|221475.146|122.771 +638604.826|221470.671|122.981 +638614.976|221461.652|123.789 +638620.078|221457.120|124.255 +638635.303|221443.593|125.608 +638640.408|221439.060|126.261 +638645.550|221434.497|127.257 +638671.010|221411.875|129.260 +638676.149|221407.306|129.549 +638681.215|221402.804|129.623 +638686.287|221398.293|129.799 +638691.377|221393.764|129.699 +638701.484|221384.766|129.293 +638726.856|221362.189|128.391 +638731.934|221357.672|128.315 +638737.045|221353.125|128.059 +638742.123|221348.598|127.474 +638747.101|221344.167|126.797 +638752.282|221339.558|126.864 +638762.438|221330.518|126.303 +638767.590|221325.933|126.011 +638772.640|221321.438|125.745 +638777.791|221316.853|125.502 +638782.884|221312.318|125.154 +638787.990|221307.776|124.974 +638793.144|221303.189|124.828 +638798.243|221298.651|124.602 +638803.346|221294.112|124.444 +638808.491|221289.534|124.191 +638813.630|221284.959|123.901 +638818.732|221280.418|123.776 +638823.923|221275.800|123.539 +638829.016|221271.267|123.274 +638834.161|221266.689|123.127 +638839.285|221262.126|122.621 +638844.433|221257.545|122.515 +638859.840|221243.832|121.701 +638865.034|221239.212|121.622 +638870.222|221234.597|121.433 +638875.312|221230.068|121.237 +638880.488|221225.459|120.878 +638885.681|221220.838|120.832 +638890.814|221216.269|120.591 +638895.953|221211.697|120.448 +638901.135|221207.089|120.168 +638911.446|221197.908|119.631 +638916.604|221193.312|118.784 +638921.752|221188.737|118.924 +638926.933|221184.125|118.714 +638937.254|221174.941|118.345 +638957.941|221156.537|117.879 +638983.772|221133.562|117.754 +638988.945|221128.953|117.202 +638994.133|221124.341|117.290 +638999.268|221119.775|117.257 +639004.450|221115.164|117.150 +639019.955|221101.375|117.171 +639025.140|221096.763|117.205 +639030.276|221092.197|117.290 +639035.412|221087.628|117.053 +639040.596|221083.020|117.181 +639045.729|221078.451|117.010 +639050.865|221073.882|117.110 +639056.050|221069.273|117.034 +639061.186|221064.695|116.370 +639066.322|221060.129|116.638 +639071.461|221055.560|116.489 +639081.735|221046.422|116.458 +639086.874|221041.847|116.214 +639092.013|221037.275|116.071 +639097.152|221032.709|116.053 +639102.245|221028.180|115.952 +639107.384|221023.611|115.821 +639112.529|221019.039|115.687 +639117.574|221014.552|115.565 +639122.716|221009.980|115.498 +639127.812|221005.451|115.437 +639132.905|221000.922|115.398 +639138.005|220996.389|115.297 +639143.101|220991.860|115.236 +639148.200|220987.327|115.172 +639153.299|220982.795|115.093 +639158.353|220978.299|114.937 +639163.458|220973.761|114.733 +639168.564|220969.219|114.562 +639173.627|220964.717|114.279 +639178.735|220960.173|114.081 +639183.798|220955.674|113.913 +639188.854|220951.178|113.886 +639193.917|220946.673|113.706 +639198.934|220942.217|113.611 +639204.046|220937.669|113.499 +639209.063|220933.210|113.435 +639214.077|220928.754|113.407 +639219.142|220924.249|113.374 +639224.160|220919.793|113.389 +639229.222|220915.294|113.453 +639234.194|220910.874|113.425 +639239.211|220906.415|113.502 +639244.231|220901.953|113.499 +639249.251|220897.494|113.599 +639254.277|220893.025|113.526 +639259.257|220888.599|113.496 +639264.296|220884.119|113.291 +639269.240|220879.721|113.063 +639274.296|220875.219|112.596 +639284.291|220866.331|112.179 +639289.289|220861.887|112.005 +639299.262|220853.023|112.106 +639309.223|220844.166|111.773 +639314.198|220839.740|111.395 +639329.191|220826.399|110.164 +639339.136|220817.553|109.762 +639344.062|220813.180|110.204 +639348.994|220808.803|110.600 +639353.883|220804.462|110.957 +639358.857|220800.040|110.838 +639363.770|220795.672|110.877 +639368.754|220791.243|110.737 +639373.698|220786.842|110.457 +639383.549|220778.088|110.469 +639393.379|220769.355|110.844 +639398.259|220765.018|110.868 +639403.166|220760.662|111.194 +639408.018|220756.353|111.557 +639412.889|220752.027|111.761 +639422.682|220743.325|112.170 +639427.565|220738.988|112.322 +639432.396|220734.703|112.971 +639437.267|220730.377|113.261 +639442.119|220726.065|113.252 +639446.990|220721.739|113.590 +639451.888|220717.387|113.648 +639456.732|220713.083|113.788 +639466.467|220704.436|114.172 +639471.325|220700.120|114.215 +639476.214|220695.773|114.044 +639481.106|220691.424|113.864 +639485.938|220687.132|113.816 +639490.933|220682.685|113.203 +639500.711|220673.986|112.258 +639505.664|220669.579|111.691 +639515.384|220660.941|111.426 +639520.228|220656.631|111.039 +639525.156|220652.251|110.816 +639529.990|220647.953|110.576 +639534.846|220643.634|110.195 +639539.741|220639.282|109.920 +639544.578|220634.981|109.731 +639549.409|220630.686|109.609 +639554.207|220626.422|109.396 +639559.044|220622.124|109.301 +639563.893|220617.812|109.128 +639568.685|220613.553|109.021 +639573.495|220609.277|108.826 +639578.219|220605.083|109.256 +639582.974|220600.865|109.500 +639587.726|220596.646|109.780 +639592.450|220592.449|109.893 +639597.168|220588.261|110.103 +639606.605|220579.882|110.527 +639611.342|220575.673|110.646 +639616.060|220571.485|110.908 +639625.414|220563.179|111.356 +639630.090|220559.028|111.624 +639634.781|220554.864|111.813 +639658.196|220534.061|111.947 +639662.826|220529.947|111.987 +639672.119|220521.693|111.938 +639676.761|220517.566|111.947 +639681.357|220513.481|111.965 +639685.957|220509.397|111.981 +639690.581|220505.288|111.883 +639699.749|220497.141|111.883 +639704.251|220493.142|111.956 +639708.820|220489.088|112.240 +639717.836|220481.078|112.380 +639722.329|220477.088|112.566 +639726.815|220473.101|112.526 +639731.336|220469.087|112.590 +639740.352|220461.071|112.353 +639744.872|220457.054|112.188 +639749.395|220453.030|111.776 +639758.414|220445.008|111.124 +639762.940|220440.981|110.755 +639767.393|220437.022|110.512 +639780.780|220425.117|109.503 +639785.176|220421.203|109.103 +639789.604|220417.265|108.826 +639794.012|220413.351|108.692 +639798.379|220409.468|108.500 +639815.805|220393.972|107.625 +639832.807|220378.854|107.567 +639837.013|220375.111|107.552 +639841.256|220371.338|107.387 +639845.496|220367.567|107.250 +639849.699|220363.827|107.049 +639853.905|220360.084|106.857 +639858.126|220356.326|106.613 +639862.290|220352.623|106.418 +639866.496|220348.880|106.031 +639834.069|220375.900|107.403 +639829.756|220379.729|107.403 +639825.449|220383.551|107.400 +639821.124|220387.391|107.503 +639816.808|220391.220|107.579 +639812.440|220395.097|107.424 +639807.993|220399.047|107.915 +639794.655|220410.895|108.506 +639790.235|220414.817|108.692 +639785.755|220418.798|108.936 +639781.228|220422.818|109.189 +639776.705|220426.839|109.707 +639772.106|220430.926|110.100 +639767.543|220434.977|110.320 +639763.035|220438.982|110.563 +639758.451|220443.054|110.947 +639749.258|220451.220|111.642 +639744.628|220455.338|112.081 +639739.998|220459.446|112.240 +639735.438|220463.494|112.337 +639730.830|220467.584|112.426 +639726.236|220471.663|112.471 +639721.594|220475.781|112.499 +639716.998|220479.859|112.301 +639707.802|220488.015|111.975 +639703.151|220492.142|111.856 +639689.230|220504.493|111.685 +639684.494|220508.699|111.850 +639679.843|220512.826|111.819 +639675.136|220517.002|111.831 +639670.394|220521.205|111.767 +639665.700|220525.366|111.755 +639660.991|220529.541|111.840 +639656.260|220533.735|111.780 +639651.569|220537.896|111.813 +639646.842|220542.084|111.749 +639642.078|220546.308|111.639 +639637.362|220550.487|111.554 +639632.583|220554.727|111.588 +639618.383|220567.306|110.871 +639613.594|220571.552|110.710 +639608.870|220575.737|110.460 +639604.078|220579.983|110.350 +639599.293|220584.226|110.222 +639594.599|220588.383|109.823 +639589.777|220592.653|109.622 +639580.243|220601.102|109.244 +639575.433|220605.363|109.009 +639570.666|220609.588|108.860 +639565.841|220613.864|108.783 +639560.979|220618.177|109.006 +639556.136|220622.475|109.131 +639551.238|220626.818|109.283 +639546.395|220631.116|109.454 +639541.548|220635.417|109.658 +639536.711|220639.705|109.823 +639531.862|220644.009|110.112 +639526.900|220648.414|110.521 +639522.069|220652.699|110.722 +639517.170|220657.045|111.091 +639512.284|220661.383|111.399 +639507.399|220665.717|111.716 +639502.534|220670.033|111.889 +639497.569|220674.447|112.542 +639487.721|220683.188|113.633 +639482.826|220687.532|113.764 +639477.949|220691.857|113.782 +639473.099|220696.157|113.995 +639468.216|220700.489|114.117 +639463.361|220704.792|113.989 +639458.460|220709.133|113.840 +639453.620|220713.421|113.621 +639448.709|220717.777|113.630 +639443.878|220722.056|113.349 +639439.004|220726.372|113.023 +639434.152|220730.676|113.002 +639429.226|220735.041|112.764 +639424.426|220739.290|112.258 +639419.503|220743.652|111.999 +639409.750|220752.293|111.594 +639404.882|220756.606|111.328 +639399.978|220760.949|110.960 +639395.052|220765.317|110.835 +639390.175|220769.639|110.716 +639385.268|220773.985|110.399 +639380.352|220778.344|110.252 +639375.362|220782.767|110.356 +639370.430|220787.140|110.405 +639365.474|220791.542|110.789 +639360.491|220795.958|110.902 +639355.526|220800.363|110.856 +639350.566|220804.755|110.722 +639345.638|220809.120|110.256 +639340.697|220813.497|109.939 +639330.736|220822.327|109.740 +639325.728|220826.774|110.423 +639315.667|220835.704|111.158 +639310.641|220840.164|111.502 +639305.602|220844.632|112.066 +639300.546|220849.113|112.218 +639295.565|220853.523|112.002 +639290.512|220858.004|112.179 +639285.467|220862.469|112.182 +639280.462|220866.907|112.456 +639275.372|220871.418|112.508 +639270.306|220875.911|113.020 +639265.259|220880.385|113.252 +639260.166|220884.899|113.489 +639255.133|220889.358|113.535 +639250.007|220893.900|113.526 +639244.980|220898.350|113.502 +639239.860|220902.888|113.483 +639234.788|220907.381|113.456 +639229.710|220911.880|113.538 +639224.595|220916.409|113.459 +639219.523|220920.902|113.474 +639214.412|220925.432|113.395 +639209.291|220929.967|113.462 +639204.177|220934.496|113.465 +639199.059|220939.032|113.587 +639193.942|220943.567|113.691 +639188.827|220948.100|113.800 +639183.667|220952.672|113.919 +639178.506|220957.244|113.986 +639173.395|220961.776|114.148 +639168.232|220966.351|114.367 +639163.071|220970.923|114.568 +639157.914|220975.495|114.770 +639152.711|220980.110|114.943 +639147.603|220984.633|115.111 +639142.403|220989.242|115.224 +639137.206|220993.847|115.291 +639132.104|220998.367|115.349 +639126.907|221002.970|115.373 +639121.713|221007.575|115.419 +639116.565|221012.135|115.474 +639111.371|221016.738|115.574 +639106.177|221021.340|115.672 +639101.032|221025.900|115.827 +639095.838|221030.499|115.913 +639090.648|221035.102|116.053 +639085.454|221039.701|116.120 +639080.263|221044.304|116.425 +639075.072|221048.903|116.580 +639069.885|221053.503|116.711 +639064.697|221058.096|116.519 +639059.506|221062.699|116.870 +639054.322|221067.298|117.290 +639049.134|221071.891|117.098 +639043.946|221076.485|116.937 +639038.758|221081.081|117.114 +639033.522|221085.720|117.135 +639023.153|221094.910|117.382 +639017.965|221099.503|117.315 +638997.168|221117.928|117.363 +638986.790|221127.121|117.363 +638971.193|221140.947|118.129 +638965.939|221145.592|117.327 +638955.627|221154.736|118.113 +638934.870|221173.128|118.345 +638898.770|221205.123|120.006 +638893.631|221209.676|120.216 +638888.495|221214.227|120.521 +638883.304|221218.827|120.677 +638878.199|221223.350|120.533 +638873.075|221227.891|121.116 +638867.939|221232.445|121.396 +638862.849|221236.956|121.667 +638842.382|221255.095|122.637 +638837.328|221259.572|122.716 +638832.189|221264.126|123.054 +638827.151|221268.594|123.411 +638822.060|221273.108|123.731 +638816.958|221277.629|123.889 +638811.901|221282.109|124.002 +638806.836|221286.593|124.017 +638796.735|221295.548|124.499 +638781.620|221308.941|125.179 +638776.602|221313.385|125.294 +638766.541|221322.303|125.819 +638761.579|221326.702|126.059 +638746.531|221340.034|126.669 +638741.575|221344.429|127.026 +638736.613|221348.836|127.867 +638731.650|221353.234|128.172 +638726.676|221357.639|128.364 +638706.773|221375.278|129.178 +638701.756|221379.719|128.976 +638691.850|221388.497|129.491 +638686.857|221392.919|129.620 +638681.904|221397.306|129.680 +638676.933|221401.707|129.565 +638671.955|221406.114|129.440 +638666.975|221410.522|129.303 +638656.971|221419.373|128.678 +638652.006|221423.765|128.309 +638646.977|221428.212|127.843 +638641.954|221432.653|126.998 +638636.900|221437.116|125.947 +638611.946|221459.183|123.523 +638606.929|221463.621|122.990 +638601.991|221467.989|122.755 +638596.993|221472.415|122.429 +638592.110|221476.734|122.292 +638587.108|221481.162|121.990 +638582.185|221485.515|121.588 +638577.196|221489.931|121.466 +638572.346|221494.229|121.646 +638567.372|221498.630|121.314 +638562.477|221502.965|121.210 +638557.484|221507.381|120.771 +638552.522|221511.767|120.235 +638542.583|221520.567|119.482 +638508.335|221550.913|119.201 +638503.449|221555.241|119.110 +638474.124|221581.213|117.930 +638469.248|221585.529|117.415 +638464.334|221589.876|117.007 +638459.400|221594.246|116.486 +638454.498|221598.581|115.897 +638444.632|221607.304|114.428 +638435.128|221615.735|114.931 +638425.603|221624.181|115.382 +638420.833|221628.405|115.452 +638416.106|221632.602|115.766 +638411.165|221636.970|114.879 +638405.913|221641.585|111.975 +638401.042|221645.895|111.264 +638396.059|221650.296|110.259 +638391.530|221654.329|111.514 +638382.126|221662.668|112.170 +638368.118|221675.089|112.947 +638354.344|221687.317|114.824 +638345.005|221695.596|114.959 +638322.172|221715.856|117.162 +638317.533|221719.964|117.239 +638312.882|221724.085|116.998 +638308.191|221728.237|116.583 +638303.576|221732.321|116.324 +638298.922|221736.445|116.135 +638294.417|221740.438|116.449 +638289.812|221744.519|116.281 +638285.172|221748.625|115.980 +638280.677|221752.612|116.123 +638271.420|221760.805|115.477 +638253.281|221776.871|114.956 +638222.417|221804.242|117.074 +638209.317|221815.858|117.616 +638204.827|221819.829|117.150 +638200.194|221823.920|116.074 +638195.704|221827.894|115.644 +638191.455|221831.668|116.035 +638187.341|221835.331|117.010 +638183.003|221839.178|117.053 +638178.422|221843.226|116.080 +638173.926|221847.200|115.279 +638169.620|221851.020|115.050 +638165.276|221854.869|114.916 +638161.030|221858.633|114.986 +638156.995|221862.224|115.940 +638152.773|221865.970|116.135 +638131.233|221885.047|114.264 +638126.826|221888.943|113.386 +638122.177|221893.042|111.344 +638117.828|221896.889|110.740 +638113.631|221900.608|110.551 +638109.400|221904.354|110.024 +638105.200|221908.075|109.844 +638101.155|221911.666|110.079 +638092.923|221918.963|110.039 +638088.732|221922.672|109.542 +638079.581|221930.740|105.668 +638075.488|221934.364|105.412 +638071.449|221937.946|105.363 +638067.530|221941.423|105.784 +638063.378|221945.099|105.342 +638059.175|221948.818|104.516 +638055.106|221952.418|104.016 +638050.979|221956.072|103.507 +638046.937|221959.647|102.934 +638042.853|221963.262|102.422 +638187.444|221833.329|117.135 +638191.501|221829.711|115.922 +638195.768|221825.916|115.617 +638200.258|221821.929|116.077 +638204.909|221817.815|117.239 +638209.308|221813.907|117.333 +638222.457|221802.221|117.046 +638239.980|221786.633|115.568 +638253.303|221774.789|114.949 +638271.569|221758.570|115.663 +638280.789|221750.384|116.181 +638285.282|221746.391|116.035 +638289.970|221742.230|116.330 +638294.576|221738.143|116.519 +638299.102|221734.119|116.330 +638303.704|221730.029|116.281 +638308.371|221725.887|116.562 +638313.059|221721.726|116.720 +638317.753|221717.560|117.199 +638322.392|221713.439|117.144 +638326.991|221709.348|116.918 +638373.123|221668.310|112.959 +638382.453|221660.013|112.173 +638391.856|221651.649|111.584 +638401.332|221643.225|111.170 +638406.315|221638.811|112.246 +638411.607|221634.145|115.132 +638416.462|221629.838|115.553 +638421.263|221625.571|115.382 +638426.121|221621.258|115.568 +638430.824|221617.070|115.175 +638435.585|221612.833|114.504 +638445.229|221604.265|114.593 +638455.169|221595.453|115.961 +638460.101|221591.076|116.461 +638465.008|221586.721|116.833 +638469.943|221582.344|117.397 +638474.911|221577.936|117.897 +638484.683|221569.259|118.223 +638504.288|221551.849|118.933 +638509.244|221547.447|118.854 +638514.142|221543.098|119.110 +638538.779|221521.210|119.235 +638543.704|221516.833|119.107 +638548.767|221512.346|119.994 +638553.751|221507.924|120.341 +638558.807|221503.437|120.872 +638563.754|221499.045|120.994 +638568.771|221494.592|121.305 +638573.767|221490.154|121.490 +638578.747|221485.731|121.558 +638593.756|221472.405|122.070 +638598.760|221467.961|122.457 +638603.826|221463.469|122.944 +638608.782|221459.064|122.999 +638613.866|221454.556|123.709 +638624.010|221445.559|124.615 +638629.052|221441.084|125.078 +638634.142|221436.573|125.992 +638644.273|221427.588|127.096 +638654.426|221418.584|128.525 +638659.513|221414.067|128.729 +638664.521|221409.623|129.110 +638669.614|221405.102|129.415 +638674.631|221400.646|129.516 +638679.679|221396.160|129.434 +638684.693|221391.709|129.504 +638689.731|221387.229|129.391 +638699.720|221378.350|128.775 +638704.837|221373.805|129.010 +638709.836|221369.358|128.528 +638724.988|221355.889|128.355 +638730.096|221351.345|128.077 +638740.115|221342.426|126.940 +638745.168|221337.930|126.632 +638760.396|221324.391|125.947 +638765.450|221319.898|125.681 +638770.555|221315.357|125.499 +638775.609|221310.864|125.227 +638780.714|221306.323|125.063 +638801.020|221288.266|124.234 +638806.110|221283.740|123.901 +638811.264|221279.159|123.819 +638826.553|221265.565|123.255 +638831.643|221261.035|122.990 +638862.383|221233.704|121.652 +638867.512|221229.141|121.323 +638872.630|221224.584|120.725 +638877.781|221220.009|120.796 +638882.963|221215.401|120.500 +638893.231|221206.269|120.052 +638898.364|221201.703|119.805 +638903.500|221197.137|119.628 +638908.685|221192.528|119.418 +638918.990|221183.363|118.680 +638924.126|221178.794|118.561 +638929.311|221174.185|118.388 +638934.453|221169.616|118.418 +638939.634|221165.011|118.235 +638944.758|221160.451|117.665 +638986.150|221123.668|117.580 +638991.289|221119.102|117.787 +639017.157|221096.111|117.504 +639032.705|221082.291|117.178 +639037.890|221077.686|117.248 +639043.071|221073.077|117.028 +639048.256|221068.471|117.153 +639053.441|221063.863|117.110 +639058.577|221059.297|116.760 +639063.810|221054.646|116.787 +639068.995|221050.037|116.726 +639074.134|221045.468|116.577 +639079.321|221040.856|116.239 +639084.509|221036.242|115.998 +639089.651|221031.670|115.907 +639094.839|221027.055|115.821 +639100.033|221022.437|115.666 +639105.126|221017.908|115.605 +639110.320|221013.293|115.489 +639115.513|221008.676|115.391 +639120.607|221004.143|115.355 +639125.803|220999.526|115.248 +639130.948|220994.950|115.236 +639136.093|220990.375|115.227 +639141.242|220985.797|115.151 +639146.396|220981.216|114.965 +639151.547|220976.632|114.800 +639156.701|220972.048|114.626 +639161.809|220967.506|114.413 +639166.967|220962.919|114.245 +639172.124|220958.332|114.126 +639177.232|220953.790|114.011 +639182.393|220949.203|113.907 +639187.504|220944.655|113.785 +639192.616|220940.111|113.703 +639197.779|220935.520|113.611 +639202.894|220930.973|113.505 +639207.959|220926.471|113.493 +639213.120|220921.881|113.502 +639218.185|220917.379|113.514 +639223.251|220912.874|113.560 +639228.369|220908.326|113.572 +639233.441|220903.818|113.535 +639238.513|220899.307|113.505 +639243.539|220894.839|113.468 +639248.608|220890.334|113.569 +639253.682|220885.823|113.599 +639258.715|220881.348|113.514 +639263.762|220876.859|113.227 +639268.801|220872.378|113.072 +639273.860|220867.876|112.657 +639283.903|220858.942|112.328 +639288.951|220854.453|112.164 +639293.941|220850.018|112.221 +639298.939|220845.574|112.151 +639308.967|220836.655|111.652 +639313.954|220832.214|111.127 +639329.014|220818.809|109.786 +639338.990|220809.940|109.740 +639343.907|220805.578|110.359 +639348.789|220801.237|110.755 +639353.752|220796.830|110.816 +639358.723|220792.410|110.816 +639363.658|220788.021|110.630 +639368.653|220783.577|110.387 +639373.585|220779.191|110.295 +639378.529|220774.793|110.118 +639383.442|220770.428|110.329 +639388.346|220766.073|110.640 +639393.211|220761.751|110.871 +639398.134|220757.377|111.042 +639407.866|220748.733|111.551 +639417.559|220740.122|112.017 +639422.423|220735.800|112.350 +639427.242|220731.517|112.639 +639432.052|220727.247|113.047 +639436.959|220722.885|113.011 +639441.723|220718.655|113.410 +639446.563|220714.354|113.599 +639451.416|220710.041|113.654 +639456.213|220705.777|113.791 +639461.005|220701.522|114.020 +639465.818|220697.246|114.072 +639470.697|220692.902|113.962 +639475.489|220688.644|113.813 +639494.899|220671.374|112.615 +639499.733|220667.073|112.243 +639504.634|220662.709|111.731 +639509.459|220658.417|111.493 +639514.318|220654.092|110.996 +639519.146|220649.797|110.777 +639523.943|220645.530|110.438 +639528.802|220641.208|110.048 +639533.596|220636.941|109.783 +639538.385|220632.683|109.603 +639543.170|220628.428|109.451 +639547.961|220624.164|109.283 +639552.753|220619.906|109.161 +639557.560|220615.629|108.927 +639562.266|220611.441|108.725 +639567.072|220607.168|108.561 +639571.766|220603.001|108.869 +639576.442|220598.844|108.951 +639581.246|220594.574|108.863 +639590.509|220586.350|109.759 +639595.230|220582.156|109.963 +639599.857|220578.044|110.124 +639604.551|220573.875|110.198 +639609.235|220569.711|110.347 +639613.917|220565.550|110.542 +639618.572|220561.414|110.609 +639627.880|220553.148|111.118 +639632.541|220549.006|111.191 +639637.189|220544.873|111.347 +639641.858|220540.724|111.417 +639646.522|220536.579|111.517 +639651.149|220532.467|111.569 +639655.836|220528.301|111.560 +639660.488|220524.165|111.499 +639665.121|220520.047|111.566 +639669.772|220515.914|111.542 +639674.426|220511.777|111.520 +639679.013|220507.699|111.606 +639683.589|220503.633|111.789 +639706.531|220483.245|112.270 +639711.142|220479.146|112.356 +639715.657|220475.134|112.420 +639720.207|220471.087|112.304 +639724.788|220467.014|112.319 +639729.336|220462.970|112.255 +639733.908|220458.904|112.084 +639738.459|220454.859|112.051 +639743.003|220450.817|111.789 +639747.572|220446.748|111.408 +639752.147|220442.679|111.301 +639756.774|220438.561|110.676 +639761.291|220434.541|110.368 +639765.845|220430.490|110.173 +639770.390|220426.446|109.771 +639774.907|220422.425|109.265 +639779.448|220418.384|108.924 +639783.975|220414.354|108.686 +639788.498|220410.331|108.485 +639792.939|220406.377|108.180 +639797.416|220402.397|107.994 +639801.854|220398.450|107.765 +639806.338|220394.457|107.320 +639815.165|220386.608|107.183 +639823.894|220378.851|107.080 +639828.265|220374.968|107.037 +639832.584|220371.127|106.988 +639836.937|220367.259|106.820 +639841.271|220363.407|106.735 +639845.581|220359.575|106.546 +639849.897|220355.738|106.348 +639854.213|220351.900|106.165 +639858.486|220348.100|105.955 +639862.753|220344.308|105.793 +639829.378|220371.703|106.808 +639825.153|220375.449|106.891 +639820.923|220379.201|107.025 +639816.710|220382.935|107.083 +639803.909|220394.286|107.396 +639799.544|220398.160|107.768 +639795.219|220401.994|107.960 +639790.848|220405.875|108.143 +639786.501|220409.730|108.485 +639782.137|220413.601|108.668 +639777.757|220417.487|108.957 +639773.371|220421.377|109.280 +639768.902|220425.345|109.798 +639760.011|220433.236|110.390 +639755.598|220437.150|110.682 +639751.068|220441.173|111.344 +639746.594|220445.142|111.456 +639742.080|220449.147|111.804 +639737.587|220453.134|112.054 +639733.134|220457.081|112.115 +639728.620|220461.083|112.240 +639724.124|220465.070|112.292 +639719.637|220469.051|112.316 +639715.044|220473.123|112.377 +639710.621|220477.039|112.063 +639706.001|220481.136|112.316 +639701.505|220485.123|112.176 +639687.853|220497.217|111.597 +639683.265|220501.283|111.752 +639678.684|220505.343|111.594 +639674.039|220509.461|111.536 +639669.446|220513.536|111.487 +639664.849|220517.611|111.469 +639660.155|220521.772|111.441 +639655.449|220525.951|111.530 +639650.813|220530.062|111.514 +639646.135|220534.208|111.447 +639641.459|220538.356|111.402 +639636.744|220542.538|111.304 +639632.077|220546.674|111.231 +639627.335|220550.877|111.024 +639622.683|220555.001|110.886 +639613.216|220563.392|110.435 +639608.470|220567.599|110.310 +639603.725|220571.808|110.219 +639598.936|220576.054|110.082 +639594.160|220580.284|109.875 +639589.384|220584.518|109.695 +639579.877|220592.940|108.722 +639570.160|220601.557|108.939 +639565.329|220605.839|108.539 +639560.455|220610.164|108.811 +639555.566|220614.501|108.878 +639550.647|220618.869|109.183 +639545.752|220623.213|109.329 +639540.814|220627.593|109.442 +639535.913|220631.942|109.692 +639530.975|220636.325|109.871 +639526.028|220640.714|110.143 +639521.069|220645.119|110.545 +639516.070|220649.557|110.890 +639511.129|220653.943|111.210 +639506.134|220658.377|111.572 +639501.193|220662.767|111.972 +639496.136|220667.253|112.496 +639491.201|220671.633|112.490 +639486.178|220676.092|112.810 +639481.231|220680.488|113.368 +639476.181|220684.968|113.566 +639471.210|220689.382|113.965 +639466.174|220693.850|114.087 +639461.255|220698.212|114.084 +639456.259|220702.644|113.904 +639451.312|220707.027|113.739 +639446.313|220711.458|113.617 +639441.373|220715.838|113.441 +639436.362|220720.276|112.990 +639426.392|220729.116|112.621 +639421.405|220733.535|112.474 +639416.406|220737.964|111.993 +639411.395|220742.408|112.136 +639406.400|220746.831|111.621 +639401.386|220751.278|111.356 +639396.381|220755.712|110.984 +639391.370|220760.150|110.679 +639386.353|220764.597|110.484 +639381.342|220769.038|110.204 +639371.238|220777.999|110.149 +639366.191|220782.480|110.393 +639361.094|220787.000|110.655 +639356.059|220791.469|110.816 +639350.987|220795.971|110.865 +639340.956|220804.855|110.176 +639335.921|220809.318|109.811 +639325.789|220818.306|109.957 +639320.702|220822.823|110.362 +639310.531|220831.855|111.258 +639300.323|220840.919|112.136 +639295.266|220845.406|112.261 +639290.173|220849.923|112.261 +639285.126|220854.398|112.313 +639280.020|220858.933|112.606 +639274.936|220863.441|112.523 +639269.867|220867.943|113.060 +639264.771|220872.463|113.233 +639259.669|220876.993|113.596 +639254.588|220881.501|113.602 +639249.513|220885.999|113.523 +639244.438|220890.501|113.499 +639239.363|220895.003|113.468 +639234.285|220899.505|113.486 +639229.207|220904.010|113.581 +639224.086|220908.555|113.611 +639219.018|220913.047|113.550 +639213.949|220917.543|113.526 +639208.831|220922.082|113.538 +639203.765|220926.575|113.508 +639198.696|220931.070|113.550 +639193.579|220935.609|113.608 +639188.464|220940.147|113.706 +639183.399|220944.643|113.825 +639178.330|220949.139|113.980 +639173.218|220953.671|114.038 +639168.107|220958.207|114.157 +639162.998|220962.742|114.261 +639157.887|220967.275|114.389 +639152.775|220971.810|114.632 +639147.667|220976.342|114.824 +639142.564|220980.872|114.919 +639137.456|220985.404|115.102 +639132.354|220989.930|115.199 +639127.205|220994.496|115.163 +639122.106|220999.020|115.233 +639117.007|221003.543|115.288 +639111.859|221008.112|115.370 +639106.759|221012.632|115.434 +639101.614|221017.198|115.529 +639096.515|221021.721|115.614 +639091.370|221026.284|115.739 +639086.225|221030.847|115.806 +639081.132|221035.370|115.958 +639075.987|221039.933|116.028 +639070.845|221044.496|116.324 +639060.561|221053.625|116.806 +639055.419|221058.181|116.797 +639050.329|221062.702|117.144 +639045.141|221067.304|117.129 +639040.002|221071.861|117.126 +639034.863|221076.421|117.150 +639029.721|221080.977|117.202 +639024.585|221085.537|117.303 +639019.446|221090.097|117.537 +639014.310|221094.654|117.860 +639009.181|221099.211|118.385 +638993.706|221112.930|117.720 +638988.524|221117.529|118.104 +638983.379|221122.086|117.921 +638978.243|221126.646|118.129 +638973.059|221131.245|118.244 +638952.393|221149.573|118.095 +638936.915|221163.298|118.150 +638931.780|221167.855|118.378 +638926.592|221172.460|118.528 +638921.398|221177.063|118.552 +638916.259|221181.620|118.763 +638900.851|221195.290|119.555 +638895.664|221199.892|119.814 +638875.105|221218.125|120.689 +638869.963|221222.688|120.860 +638864.836|221227.239|121.353 +638859.697|221231.799|121.640 +638854.564|221236.353|122.003 +638834.033|221254.561|122.783 +638828.940|221259.078|123.088 +638808.390|221277.306|123.822 +638803.282|221281.835|123.889 +638798.185|221286.358|124.194 +638777.773|221304.463|125.142 +638772.704|221308.956|125.230 +638762.490|221318.018|125.715 +638757.431|221322.504|125.968 +638752.328|221327.034|126.291 +638747.320|221331.475|126.602 +638742.230|221335.986|126.526 +638737.177|221340.469|126.931 +638732.190|221344.904|128.068 +638727.155|221349.370|128.102 +638722.132|221353.823|128.318 +638712.067|221362.750|128.531 +638696.958|221376.146|128.928 +638691.947|221380.593|129.342 +638686.994|221384.982|129.373 +638681.953|221389.451|129.531 +638676.948|221393.892|129.555 +638671.931|221398.336|129.501 +638666.911|221402.786|129.440 +638661.857|221407.260|129.092 +638656.849|221411.695|128.723 +638651.808|221416.161|128.550 +638641.719|221425.088|127.330 +638626.485|221438.566|125.337 +638611.462|221451.865|123.755 +638601.382|221460.786|122.746 +638596.368|221465.224|122.316 +638591.400|221469.626|121.862 +638586.404|221474.048|121.631 +638581.490|221478.404|121.670 +638576.477|221482.845|121.344 +638571.591|221487.173|121.274 +638566.534|221491.650|120.671 +638561.697|221495.942|121.000 +638556.762|221500.316|120.994 +638551.775|221504.726|120.256 +638546.816|221509.116|119.762 +638541.854|221513.505|119.272 +638507.646|221543.799|118.851 +638502.809|221548.081|118.726 +638497.920|221552.412|118.613 +638483.287|221565.367|117.976 +638463.776|221582.633|116.723 +638458.915|221586.934|116.345 +638454.029|221591.256|115.836 +638439.368|221604.223|114.145 +638434.546|221608.493|114.130 +638425.320|221616.683|115.736 +638420.516|221620.935|115.586 +638415.786|221625.126|115.580 +638411.040|221629.332|115.800 +638406.212|221633.602|115.273 +638391.548|221646.556|112.572 +638382.154|221654.883|112.947 +638377.573|221658.949|113.645 +638372.955|221663.043|114.175 +638354.509|221679.402|115.678 +638326.927|221703.853|117.610 +638322.328|221707.925|117.583 +638317.646|221712.067|117.150 +638313.025|221716.161|117.050 +638308.334|221720.312|116.882 +638303.814|221724.317|117.071 +638299.175|221728.426|116.928 +638294.640|221732.440|116.818 +638290.119|221736.445|117.059 +638285.465|221740.563|116.659 +638280.863|221744.638|116.528 +638262.639|221760.768|115.608 +638258.112|221764.776|115.690 +638253.546|221768.815|115.367 +638249.172|221772.692|115.705 +638235.926|221784.430|116.233 +638222.877|221796.000|117.546 +638218.412|221799.953|117.336 +638205.360|221811.517|117.872 +638200.965|221815.410|117.805 +638196.302|221819.521|116.364 +638191.824|221823.481|115.989 +638187.685|221827.157|116.845 +638183.723|221830.680|118.479 +638179.574|221834.362|119.086 +638175.191|221838.236|118.714 +638170.537|221842.342|117.217 +638165.913|221846.417|115.891 +638161.457|221850.352|115.065 +638157.132|221854.177|114.800 +638152.825|221857.987|114.629 +638148.652|221861.681|114.812 +638144.693|221865.199|115.870 +638140.630|221868.802|116.309 +638136.335|221872.599|116.019 +638123.006|221884.356|112.657 +638118.559|221888.281|111.633 +638114.374|221891.979|111.258 +638110.278|221895.609|111.453 +638105.995|221899.391|110.710 +638101.652|221903.226|109.978 +638097.665|221906.755|110.228 +638081.102|221921.401|108.975 +638072.166|221929.271|105.543 +638068.106|221932.862|105.418 +638064.265|221936.266|105.720 +638060.245|221939.820|105.562 +638056.106|221943.478|104.982 +638052.000|221947.102|104.333 +638040.015|221957.697|103.312 +638185.469|221826.471|117.525 +638189.502|221822.868|116.217 +638193.848|221819.000|116.035 +638198.536|221814.852|117.342 +638207.461|221806.927|118.077 +638211.944|221802.946|118.580 +638216.068|221799.261|117.266 +638233.686|221783.589|116.412 +638251.334|221767.885|115.458 +638255.902|221763.825|115.562 +638260.435|221759.796|115.513 +638265.071|221755.681|115.967 +638278.781|221743.498|116.534 +638283.405|221739.389|116.510 +638292.616|221731.205|116.867 +638297.230|221727.103|116.870 +638301.882|221722.970|117.074 +638306.505|221718.858|116.891 +638311.117|221714.758|116.937 +638315.747|221710.644|117.092 +638320.435|221706.480|117.299 +638325.196|221702.252|117.626 +638329.820|221698.141|117.555 +638334.456|221694.020|117.281 +638362.293|221669.261|115.315 +638366.972|221665.103|115.102 +638385.616|221648.510|112.938 +638395.163|221640.027|112.913 +638400.034|221635.705|113.331 +638405.148|221631.185|115.184 +638410.065|221626.827|115.937 +638414.844|221622.578|115.629 +638419.623|221618.332|115.626 +638424.454|221614.037|115.666 +638438.734|221601.333|114.294 +638453.624|221588.129|116.187 +638458.525|221583.776|116.187 +638478.276|221566.247|117.644 +638483.159|221561.910|117.635 +638488.139|221557.490|117.958 +638493.071|221553.107|118.010 +638498.070|221548.673|118.510 +638502.968|221544.323|118.699 +638508.058|221539.812|119.546 +638537.584|221513.572|118.823 +638542.647|221509.079|119.323 +638547.706|221504.595|120.192 +638552.769|221500.106|120.750 +638557.722|221495.707|120.914 +638562.767|221491.227|121.024 +638567.713|221486.835|121.170 +638572.755|221482.357|121.326 +638577.735|221477.934|121.405 +638582.798|221473.439|121.771 +638587.788|221469.010|121.975 +638592.872|221464.496|122.155 +638597.922|221460.012|122.515 +638602.964|221455.541|122.801 +638638.683|221423.866|127.455 +638643.789|221419.340|128.175 +638648.894|221414.807|128.473 +638653.932|221410.333|128.656 +638658.983|221405.852|128.970 +638664.085|221401.323|129.342 +638669.124|221396.845|129.132 +638674.147|221392.383|129.284 +638679.234|221387.869|129.589 +638684.284|221383.382|129.559 +638694.322|221374.455|128.918 +638714.566|221356.481|128.550 +638719.638|221351.976|128.352 +638724.652|221347.522|128.089 +638729.739|221343.008|128.080 +638734.738|221338.558|127.105 +638739.789|221334.069|126.736 +638744.858|221329.570|126.562 +638749.914|221325.077|126.261 +638755.017|221320.545|125.956 +638760.067|221316.058|125.642 +638770.238|221307.024|125.273 +638775.356|221302.482|125.191 +638780.412|221297.992|125.017 +638790.602|221288.940|124.346 +638800.813|221279.875|124.060 +638805.857|221275.391|123.755 +638826.315|221257.228|123.225 +638831.406|221252.708|122.938 +638836.502|221248.182|122.758 +638841.644|221243.616|122.579 +638846.740|221239.090|122.423 +638862.035|221225.499|121.262 +638867.180|221220.933|121.152 +638872.258|221216.419|120.704 +638877.400|221211.856|120.515 +638892.759|221198.213|119.756 +638897.941|221193.610|119.473 +638913.303|221179.967|118.802 +638918.441|221175.405|118.702 +638923.583|221170.842|118.647 +638928.719|221166.279|118.473 +638933.864|221161.716|118.540 +638939.037|221157.117|117.976 +638949.327|221147.988|118.284 +638975.070|221125.140|118.199 +638980.206|221120.580|118.074 +638985.391|221115.978|118.071 +639005.944|221097.738|118.284 +639011.122|221093.136|117.842 +639016.255|221088.576|117.623 +639021.391|221084.016|117.440 +639026.527|221079.456|117.376 +639031.715|221074.854|117.324 +639036.802|221070.337|117.248 +639041.986|221065.734|117.184 +639047.125|221061.174|117.095 +639052.264|221056.612|117.013 +639057.449|221052.009|117.001 +639062.588|221047.443|116.696 +639067.730|221042.877|116.321 +639072.872|221038.311|116.025 +639078.059|221033.703|115.916 +639083.153|221029.180|115.797 +639088.346|221024.574|115.669 +639093.488|221020.008|115.571 +639098.633|221015.442|115.489 +639103.779|221010.876|115.410 +639108.924|221006.310|115.300 +639114.069|221001.744|115.291 +639119.214|220997.179|115.230 +639124.362|220992.610|115.120 +639129.510|220988.044|115.157 +639134.658|220983.475|115.065 +639139.763|220978.942|114.815 +639144.917|220974.370|114.745 +639150.072|220969.792|114.550 +639155.180|220965.260|114.370 +639160.289|220960.724|114.221 +639165.443|220956.149|114.175 +639170.551|220951.617|114.102 +639175.711|220947.039|114.014 +639180.823|220942.500|113.880 +639185.938|220937.962|113.758 +639191.052|220933.423|113.633 +639196.118|220928.928|113.563 +639201.278|220924.350|113.633 +639206.393|220919.811|113.617 +639211.458|220915.315|113.602 +639216.573|220910.780|113.642 +639221.691|220906.241|113.681 +639226.766|220901.736|113.599 +639231.889|220897.192|113.532 +639236.961|220892.690|113.520 +639242.039|220888.185|113.468 +639247.114|220883.683|113.502 +639252.186|220879.181|113.587 +639257.319|220874.627|113.505 +639262.360|220870.153|113.322 +639267.456|220865.630|113.096 +639272.507|220861.146|112.837 +639282.651|220852.139|112.517 +639287.707|220847.653|112.264 +639292.749|220843.178|112.264 +639297.760|220838.728|112.042 +639307.894|220829.730|111.484 +639323.049|220816.270|110.173 +639338.054|220802.950|109.878 +639342.983|220798.586|110.368 +639352.932|220789.765|110.826 +639357.900|220785.357|110.868 +639362.905|220780.913|110.512 +639367.903|220776.475|110.216 +639372.841|220772.092|110.131 +639382.741|220763.311|110.274 +639387.655|220758.956|110.527 +639392.629|220754.545|110.652 +639402.386|220745.898|111.441 +639412.167|220737.226|112.017 +639417.050|220732.895|112.170 +639426.800|220724.251|112.670 +639431.610|220719.990|113.099 +639436.520|220715.631|113.044 +639441.342|220711.361|113.410 +639446.231|220707.024|113.602 +639451.029|220702.769|113.739 +639455.875|220698.474|113.919 +639460.724|220694.173|114.075 +639465.540|220689.894|114.087 +639470.377|220685.599|113.962 +639475.260|220681.259|113.441 +639499.495|220659.725|112.051 +639504.323|220655.436|111.758 +639509.160|220651.138|111.429 +639513.970|220646.859|110.926 +639518.810|220642.558|110.637 +639523.620|220638.282|110.207 +639528.460|220633.984|109.972 +639533.206|220629.766|109.710 +639537.997|220625.511|109.506 +639542.786|220621.256|109.353 +639547.529|220617.046|109.210 +639552.274|220612.828|109.042 +639557.026|220608.607|108.863 +639561.796|220604.370|108.576 +639566.484|220600.212|108.924 +639571.227|220595.997|108.518 +639580.551|220587.725|108.939 +639585.178|220583.622|109.402 +639589.835|220579.492|109.695 +639594.459|220575.386|109.871 +639599.128|220571.244|110.100 +639603.719|220567.172|110.207 +639622.189|220550.780|110.728 +639626.829|220546.662|110.923 +639631.413|220542.596|111.182 +639635.973|220538.548|111.271 +639640.545|220534.491|111.310 +639645.171|220530.383|111.331 +639658.933|220518.163|111.328 +639663.527|220514.085|111.335 +639668.102|220510.025|111.450 +639672.646|220505.989|111.484 +639677.133|220502.006|111.560 +639681.717|220497.940|111.709 +639686.316|220493.852|111.459 +639690.788|220489.887|111.694 +639695.238|220485.940|112.054 +639699.783|220481.907|112.200 +639704.281|220477.914|112.313 +639708.814|220473.888|112.255 +639713.279|220469.925|112.316 +639717.827|220465.887|112.212 +639722.256|220461.955|112.221 +639726.785|220457.934|112.267 +639731.305|220453.920|112.100 +639735.761|220449.961|112.008 +639740.248|220445.977|111.783 +639744.738|220441.987|111.554 +639753.802|220433.928|110.704 +639758.271|220429.957|110.390 +639762.779|220425.952|110.152 +639767.296|220421.934|109.622 +639771.755|220417.969|109.146 +639776.224|220414.001|108.920 +639780.661|220410.056|108.588 +639785.096|220406.115|108.305 +639789.531|220402.174|108.046 +639793.960|220398.239|107.826 +639798.386|220394.307|107.656 +639811.626|220382.536|106.647 +639815.863|220378.778|107.214 +639820.234|220374.888|106.884 +639824.580|220371.024|106.692 +639828.911|220367.171|106.598 +639833.197|220363.364|106.491 +639837.534|220359.505|106.388 +639841.835|220355.680|106.238 +639846.151|220351.843|106.040 +639850.418|220348.048|105.842 +639854.731|220344.213|105.696 +639858.983|220340.431|105.598 +639828.948|220364.623|106.363 +639824.699|220368.387|106.537 +639820.401|220372.197|106.720 +639811.879|220379.747|106.778 +639803.232|220387.413|107.272 +639798.898|220391.253|107.467 +639794.563|220395.100|107.695 +639790.235|220398.934|107.896 +639785.867|220402.805|108.055 +639781.481|220406.694|108.329 +639777.098|220410.581|108.613 +639772.712|220414.470|108.924 +639768.332|220418.356|109.237 +639763.867|220422.315|109.725 +639759.411|220426.269|110.210 +639755.009|220430.173|110.426 +639750.547|220434.130|110.701 +639746.027|220438.138|111.301 +639741.647|220442.021|111.472 +639737.145|220446.014|111.752 +639732.713|220449.943|111.956 +639728.245|220453.902|112.093 +639723.807|220457.834|112.081 +639719.369|220461.766|112.093 +639714.888|220465.731|112.066 +639710.426|220469.688|112.252 +639706.004|220473.604|111.953 +639701.480|220477.612|112.221 +639696.988|220481.593|112.060 +639692.477|220485.586|112.005 +639687.984|220489.564|111.868 +639683.528|220493.508|111.548 +639678.977|220497.540|111.481 +639674.441|220501.554|111.347 +639669.903|220505.572|111.246 +639665.304|220509.647|111.225 +639660.762|220513.667|111.173 +639656.156|220517.745|111.228 +639651.517|220521.854|111.188 +639646.930|220525.914|111.164 +639642.297|220530.017|111.130 +639637.667|220534.116|111.103 +639632.995|220538.256|111.045 +639628.395|220542.325|110.841 +639623.765|220546.424|110.554 +639619.108|220550.545|110.445 +639614.417|220554.696|110.231 +639609.763|220558.817|110.146 +639605.020|220563.014|109.990 +639600.363|220567.138|109.963 +639595.623|220571.336|109.835 +639590.893|220575.523|109.649 +639586.177|220579.693|109.375 +639581.462|220583.866|109.113 +639576.710|220588.072|108.786 +639571.998|220592.239|108.539 +639562.339|220600.798|108.735 +639557.587|220605.004|108.479 +639552.658|220609.372|108.796 +639547.858|220613.624|108.936 +639542.954|220617.973|109.152 +639538.104|220622.268|109.329 +639533.249|220626.572|109.594 +639528.308|220630.951|109.774 +639523.413|220635.289|109.999 +639518.457|220639.684|110.362 +639513.537|220644.046|110.847 +639508.590|220648.432|111.197 +639503.616|220652.845|111.792 +639498.687|220657.213|112.042 +639493.698|220661.636|112.423 +639488.696|220666.071|112.926 +639473.782|220679.287|113.447 +639468.805|220683.703|113.898 +639463.815|220688.120|114.005 +639458.893|220692.482|114.011 +639453.894|220696.907|113.837 +639448.953|220701.278|113.578 +639443.939|220705.719|113.575 +639439.010|220710.081|113.236 +639434.042|220714.476|112.837 +639424.020|220723.349|112.447 +639419.015|220727.781|112.450 +639414.020|220732.197|111.892 +639409.021|220736.626|111.898 +639398.947|220745.538|111.191 +639388.932|220754.399|110.454 +639383.915|220758.840|110.228 +639378.834|220763.339|110.167 +639373.768|220767.825|109.975 +639368.678|220772.330|110.051 +639363.581|220776.850|110.268 +639358.476|220781.377|110.624 +639353.392|220785.879|110.731 +639338.198|220799.326|109.917 +639328.002|220808.352|109.457 +639322.903|220812.872|109.917 +639317.730|220817.456|110.134 +639307.434|220826.591|111.335 +639297.190|220835.677|111.975 +639292.072|220840.212|112.237 +639286.973|220844.733|112.298 +639281.816|220849.308|112.554 +639271.565|220858.394|112.862 +639266.417|220862.957|113.063 +639261.315|220867.483|113.361 +639256.173|220872.040|113.526 +639251.040|220876.590|113.560 +639245.916|220881.129|113.432 +639240.786|220885.673|113.441 +639235.657|220890.218|113.480 +639230.579|220894.720|113.535 +639225.400|220899.307|113.602 +639220.276|220903.849|113.675 +639215.153|220908.387|113.691 +639210.035|220912.923|113.663 +639204.914|220917.461|113.697 +639199.751|220922.033|113.584 +639194.585|220926.611|113.590 +639189.516|220931.104|113.648 +639184.353|220935.682|113.736 +639179.186|220940.257|113.813 +639174.069|220944.796|113.974 +639168.905|220949.371|114.081 +639163.794|220953.903|114.184 +639158.685|220958.429|114.215 +639153.525|220963.004|114.361 +639148.365|220967.576|114.480 +639143.256|220972.106|114.587 +639138.099|220976.675|114.733 +639132.991|220981.204|114.956 +639127.836|220985.773|115.053 +639122.685|220990.339|115.169 +639117.583|220994.859|115.205 +639112.432|220999.425|115.266 +639107.284|221003.988|115.269 +639102.184|221008.508|115.364 +639096.988|221013.114|115.458 +639091.888|221017.634|115.577 +639086.740|221022.194|115.614 +639081.595|221026.756|115.727 +639076.499|221031.274|115.827 +639071.305|221035.876|116.013 +639066.160|221040.439|116.187 +639061.064|221044.956|116.461 +639055.919|221049.519|116.781 +639050.777|221054.079|117.120 +639045.684|221058.593|117.168 +639040.545|221063.150|117.257 +639035.403|221067.703|117.245 +639030.261|221072.260|117.421 +639025.122|221076.817|117.659 +639019.983|221081.371|117.635 +639014.890|221085.885|117.751 +639009.702|221090.481|117.802 +638999.479|221099.549|118.430 +638984.056|221113.213|118.339 +638978.914|221117.770|118.409 +638973.815|221122.284|118.092 +638958.447|221135.906|118.464 +638953.250|221140.508|118.305 +638948.160|221145.022|118.452 +638932.770|221158.656|118.339 +638927.631|221163.213|118.531 +638922.492|221167.769|118.735 +638917.344|221172.332|118.705 +638912.257|221176.846|118.964 +638907.115|221181.406|119.061 +638891.735|221195.046|119.482 +638876.376|221208.680|120.375 +638871.289|221213.191|120.732 +638866.156|221217.748|121.076 +638861.069|221222.262|121.430 +638855.973|221226.782|121.591 +638850.852|221231.332|122.192 +638845.750|221235.856|122.283 +638840.669|221240.367|122.722 +638835.520|221244.933|122.856 +638830.458|221249.419|122.844 +638825.328|221253.976|123.277 +638815.184|221262.974|123.798 +638810.036|221267.543|123.981 +638804.967|221272.036|123.920 +638799.859|221276.568|124.029 +638794.732|221281.113|123.886 +638789.685|221285.590|124.221 +638784.600|221290.104|124.743 +638774.435|221299.120|125.121 +638769.367|221303.616|125.215 +638759.238|221312.601|125.523 +638754.184|221317.088|125.852 +638749.125|221321.575|126.145 +638744.068|221326.061|126.450 +638739.057|221330.509|126.733 +638733.991|221335.004|126.949 +638728.974|221339.461|127.775 +638723.979|221343.898|128.251 +638718.888|221348.409|128.245 +638713.862|221352.869|128.422 +638683.721|221379.609|129.498 +638678.719|221384.044|129.559 +638673.650|221388.533|129.458 +638663.628|221397.421|129.488 +638658.587|221401.887|129.260 +638653.512|221406.379|128.726 +638648.525|221410.802|128.592 +638638.427|221419.742|127.736 +638633.377|221424.213|127.126 +638603.092|221451.018|123.517 +638598.014|221455.513|122.920 +638593.033|221459.924|122.338 +638587.986|221464.395|122.054 +638583.008|221468.800|121.576 +638578.037|221473.210|121.539 +638573.087|221477.596|121.329 +638568.085|221482.025|121.137 +638563.154|221486.399|121.097 +638553.315|221495.122|120.927 +638548.264|221499.588|120.101 +638543.247|221504.028|119.546 +638538.261|221508.442|118.869 +638499.072|221543.183|118.397 +638489.227|221551.903|117.781 +638474.630|221564.839|117.144 +638469.799|221569.122|117.208 +638464.862|221573.496|116.601 +638460.027|221577.778|116.373 +638455.132|221582.115|116.096 +638435.613|221599.394|114.096 +638430.779|221603.677|113.697 +638416.801|221616.098|115.760 +638412.021|221620.334|115.775 +638407.297|221624.528|116.111 +638402.457|221628.811|115.532 +638397.373|221633.297|113.566 +638392.624|221637.507|113.557 +638387.985|221641.625|113.895 +638383.303|221645.779|114.291 +638337.065|221686.814|117.498 +638332.462|221690.899|117.656 +638327.838|221694.998|117.738 +638323.163|221699.137|117.303 +638318.502|221703.267|117.229 +638313.885|221707.361|117.129 +638309.331|221711.403|117.363 +638304.695|221715.511|117.214 +638300.123|221719.568|117.391 +638295.539|221723.631|117.269 +638290.921|221727.719|117.022 +638277.156|221739.920|116.525 +638263.544|221751.987|116.455 +638258.893|221756.105|115.934 +638254.382|221760.101|115.849 +638245.323|221768.132|115.547 +638240.873|221772.079|115.794 +638232.107|221779.858|116.467 +638227.803|221783.683|117.165 +638219.183|221791.337|118.104 +638201.642|221806.894|118.546 +638192.358|221815.096|116.300 +638188.005|221818.951|116.239 +638183.982|221822.533|117.604 +638180.035|221826.047|119.064 +638175.840|221829.769|119.717 +638171.448|221833.658|119.305 +638167.026|221837.569|118.790 +638162.472|221841.586|117.531 +638157.781|221845.722|115.949 +638153.288|221849.691|115.001 +638148.902|221853.568|114.291 +638144.583|221857.390|114.096 +638140.392|221861.105|114.221 +638136.442|221864.620|115.337 +638132.330|221868.262|115.599 +638118.904|221880.116|112.084 +638114.633|221883.895|111.776 +638106.425|221891.165|111.892 +638102.100|221894.987|110.996 +638097.863|221898.730|110.472 +638093.660|221902.452|110.091 +638089.570|221906.073|109.951 +638081.377|221913.327|109.679 +638077.122|221917.082|108.762 +638068.179|221924.964|105.327 +638064.152|221928.527|105.132 +638060.166|221932.060|105.086 +638056.252|221935.526|105.345 +638052.116|221939.183|104.568 +638048.062|221942.768|104.120 +638044.048|221946.315|103.641 +638040.085|221949.827|103.559 +638183.927|221819.741|117.324 +638188.036|221816.080|116.324 +638192.425|221812.185|116.568 +638197.155|221808.003|118.077 +638201.715|221803.964|118.863 +638206.122|221800.051|119.012 +638227.803|221780.772|117.239 +638232.024|221777.011|116.156 +638236.404|221773.119|115.809 +638240.882|221769.141|115.684 +638245.420|221765.112|115.861 +638249.944|221761.097|115.983 +638254.464|221757.083|116.108 +638259.033|221753.026|116.242 +638263.663|221748.920|116.684 +638268.204|221744.888|116.717 +638272.779|221740.825|116.690 +638300.467|221716.246|117.562 +638305.137|221712.104|117.607 +638309.733|221708.019|117.583 +638314.305|221703.953|117.196 +638318.969|221699.814|117.281 +638323.623|221695.684|117.336 +638328.338|221691.499|117.732 +638333.044|221687.320|117.836 +638337.680|221683.199|117.592 +638360.888|221662.564|115.949 +638370.291|221654.207|115.559 +638384.425|221641.643|114.824 +638389.137|221637.455|114.611 +638393.916|221633.206|114.221 +638403.773|221624.473|116.096 +638408.614|221620.176|116.135 +638413.399|221615.921|115.861 +638432.419|221599.004|113.913 +638451.999|221581.628|115.050 +638457.056|221577.147|116.019 +638461.966|221572.791|116.409 +638466.898|221568.415|116.644 +638471.896|221563.983|117.354 +638476.712|221559.706|117.208 +638481.665|221555.305|117.342 +638486.618|221550.910|117.501 +638491.574|221546.515|118.022 +638496.509|221542.132|118.110 +638501.621|221537.608|119.409 +638541.138|221502.507|119.329 +638546.228|221497.999|120.055 +638551.269|221493.531|120.835 +638556.335|221489.032|121.106 +638561.243|221484.674|120.927 +638566.278|221480.202|121.012 +638571.280|221475.764|121.234 +638576.345|221471.268|121.609 +638581.381|221466.797|121.759 +638586.447|221462.304|122.182 +638591.436|221457.876|122.408 +638596.578|221453.319|123.121 +638601.680|221448.799|123.935 +638606.768|221444.284|124.252 +638622.011|221430.764|125.681 +638637.345|221417.169|127.815 +638647.535|221408.132|128.650 +638662.759|221394.620|129.400 +638667.807|221390.137|129.281 +638672.909|221385.610|129.714 +638677.948|221381.133|129.552 +638683.001|221376.646|129.559 +638688.085|221372.129|129.406 +638698.165|221363.168|128.733 +638708.284|221354.179|128.559 +638713.405|221349.629|128.358 +638718.468|221345.130|128.074 +638723.552|221340.616|128.035 +638728.578|221336.144|127.361 +638733.626|221331.658|126.943 +638738.752|221327.104|126.873 +638743.791|221322.623|126.392 +638754.002|221313.549|125.858 +638764.167|221304.518|125.392 +638769.272|221299.983|125.185 +638774.335|221295.487|125.041 +638784.512|221286.437|124.240 +638794.796|221277.306|124.295 +638799.850|221272.816|124.124 +638804.952|221268.287|123.941 +638810.097|221263.715|123.719 +638815.202|221259.179|123.673 +638820.293|221254.656|123.362 +638825.447|221250.078|123.331 +638830.519|221245.567|122.746 +638835.685|221240.982|122.947 +638840.769|221236.462|122.627 +638845.917|221231.890|122.560 +638851.026|221227.346|121.734 +638856.128|221222.813|121.792 +638861.261|221218.253|121.451 +638866.397|221213.691|121.167 +638871.472|221209.177|120.649 +638891.997|221190.934|119.262 +638902.287|221181.796|119.278 +638907.414|221177.240|118.796 +638912.553|221172.674|118.656 +638917.698|221168.105|118.787 +638922.885|221163.499|118.616 +638927.973|221158.979|118.473 +638938.299|221149.807|118.321 +638948.583|221140.679|118.455 +638964.000|221126.990|118.510 +638974.266|221117.867|118.193 +638984.547|221108.745|118.491 +638994.821|221099.622|118.665 +638999.951|221095.062|118.375 +639005.084|221090.502|117.936 +639010.266|221085.900|117.958 +639015.402|221081.337|117.842 +639020.537|221076.777|117.726 +639025.673|221072.214|117.613 +639030.806|221067.652|117.354 +639035.942|221063.089|117.214 +639041.081|221058.529|117.269 +639046.217|221053.966|117.162 +639051.356|221049.403|116.979 +639056.541|221044.795|116.662 +639061.634|221040.268|116.342 +639066.773|221035.702|116.129 +639071.912|221031.133|115.916 +639077.005|221026.610|115.815 +639082.147|221022.044|115.678 +639087.289|221017.478|115.580 +639092.382|221012.958|115.492 +639097.527|221008.389|115.349 +639102.672|221003.823|115.260 +639107.768|220999.300|115.199 +639112.910|220994.734|115.169 +639118.055|220990.168|115.181 +639123.158|220985.639|115.007 +639128.306|220981.067|114.922 +639133.356|220976.580|114.782 +639138.511|220972.005|114.565 +639143.613|220967.476|114.495 +639148.715|220962.946|114.428 +639153.821|220958.414|114.322 +639158.926|220953.879|114.239 +639164.035|220949.346|114.154 +639169.143|220944.811|114.029 +639174.255|220940.272|113.910 +639179.363|220935.737|113.834 +639184.426|220931.244|113.800 +639189.540|220926.703|113.681 +639194.649|220922.167|113.718 +639199.715|220917.671|113.691 +639204.777|220913.179|113.718 +639209.889|220908.643|113.776 +639214.955|220904.144|113.776 +639220.026|220899.645|113.730 +639225.101|220895.140|113.627 +639230.170|220890.639|113.608 +639235.251|220886.131|113.493 +639240.280|220881.662|113.395 +639245.355|220877.160|113.398 +639250.427|220872.658|113.468 +639255.459|220868.190|113.413 +639260.547|220863.673|113.297 +639265.588|220859.198|113.148 +639270.632|220854.718|112.983 +639275.689|220850.225|112.636 +639280.721|220845.760|112.718 +639285.784|220841.261|112.359 +639290.832|220836.783|112.298 +639295.879|220832.303|112.237 +639300.893|220827.847|111.950 +639305.980|220823.326|111.414 +639311.031|220818.834|110.682 +639316.130|220814.301|110.054 +639321.141|220809.851|109.972 +639331.178|220800.939|109.740 +639336.183|220796.498|109.856 +639341.160|220792.087|110.356 +639346.098|220787.710|110.719 +639351.115|220783.257|110.728 +639361.143|220774.351|110.286 +639366.133|220769.919|110.100 +639371.131|220765.478|109.871 +639376.090|220761.083|110.118 +639381.071|220756.660|110.131 +639385.987|220752.302|110.344 +639390.904|220747.946|111.097 +639395.838|220743.566|111.115 +639400.727|220739.232|111.655 +639410.640|220730.438|111.911 +639415.519|220726.107|112.072 +639425.325|220717.411|112.523 +639435.133|220708.709|112.987 +639440.047|220704.357|113.419 +639444.896|220700.053|113.526 +639449.779|220695.722|113.779 +639454.665|220691.390|114.053 +639459.572|220687.035|114.120 +639464.455|220682.701|114.020 +639469.347|220678.360|113.852 +639474.224|220674.032|113.834 +639484.002|220665.348|113.249 +639488.934|220660.971|112.868 +639493.878|220656.576|112.398 +639498.712|220652.284|112.045 +639503.592|220647.950|111.764 +639508.508|220643.582|111.197 +639513.357|220639.276|110.819 +639518.268|220634.911|110.362 +639523.126|220630.595|109.969 +639527.957|220626.309|109.838 +639532.810|220621.999|109.533 +639537.613|220617.732|109.253 +639542.448|220613.444|109.155 +639547.202|220609.222|108.930 +639552.079|220604.891|108.576 +639556.788|220600.715|108.728 +639561.592|220596.451|108.588 +639566.396|220592.187|108.454 +639571.084|220588.029|108.479 +639575.793|220583.854|108.704 +639580.490|220579.690|109.036 +639585.199|220575.517|109.326 +639589.844|220571.396|109.686 +639594.526|220567.245|109.835 +639599.229|220563.075|109.865 +639603.883|220558.945|109.875 +639608.626|220554.739|110.015 +639622.506|220542.428|110.469 +639627.136|220538.326|110.758 +639631.730|220534.253|110.963 +639636.347|220530.157|111.030 +639641.020|220526.009|111.082 +639645.601|220521.949|111.109 +639650.185|220517.880|111.112 +639654.773|220513.807|111.130 +639659.403|220509.702|111.225 +639663.947|220505.669|111.228 +639668.486|220501.643|111.283 +639673.125|220497.528|111.082 +639677.590|220493.572|111.609 +639682.061|220489.609|111.825 +639686.542|220485.632|111.984 +639695.607|220477.594|112.084 +639709.058|220465.661|112.164 +639713.493|220461.726|112.118 +639717.973|220457.749|112.115 +639722.454|220453.774|112.133 +639731.342|220445.886|112.066 +639735.850|220441.884|111.728 +639749.218|220430.009|110.801 +639753.680|220426.046|110.502 +639762.623|220418.103|109.622 +639767.049|220414.171|109.311 +639771.490|220410.227|108.942 +639775.867|220406.341|108.664 +639780.253|220402.442|108.344 +639784.621|220398.565|108.149 +639788.982|220394.694|108.012 +639793.308|220390.854|107.799 +639797.639|220387.010|107.585 +639801.952|220383.179|107.473 +639806.377|220379.247|106.830 +639814.823|220371.755|107.086 +639819.112|220367.948|106.909 +639823.407|220364.135|106.723 +639827.662|220360.359|106.506 +639831.904|220356.588|106.351 +639836.129|220352.842|106.308 +639840.332|220349.112|106.138 +639844.581|220345.338|106.004 +639848.775|220341.613|105.903 +639852.930|220337.928|105.766 +639826.836|220358.441|106.436 +639822.422|220362.355|106.650 +639818.012|220366.263|106.851 +639813.668|220370.109|107.003 +639800.452|220381.814|107.220 +639796.048|220385.718|107.500 +639791.598|220389.662|107.762 +639787.169|220393.585|107.936 +639782.685|220397.560|108.152 +639778.211|220401.522|108.332 +639773.730|220405.494|108.573 +639769.177|220409.532|108.936 +639764.684|220413.513|109.277 +639760.130|220417.551|109.692 +639755.564|220421.602|110.204 +639751.038|220425.613|110.509 +639746.527|220429.612|110.774 +639737.386|220437.714|111.435 +639732.835|220441.750|111.706 +639728.269|220445.794|112.063 +639723.780|220449.769|112.033 +639719.195|220453.829|111.975 +639714.651|220457.855|112.011 +639710.106|220461.879|112.045 +639705.568|220465.899|112.087 +639701.047|220469.901|112.036 +639696.433|220473.985|111.944 +639691.867|220478.030|111.911 +639687.295|220482.078|111.911 +639682.744|220486.104|111.810 +639678.157|220490.167|111.652 +639669.046|220498.226|110.990 +639664.417|220502.332|111.133 +639659.774|220506.443|111.060 +639655.129|220510.564|111.048 +639650.542|220514.627|110.984 +639645.906|220518.736|110.947 +639641.267|220522.848|110.944 +639636.585|220526.996|110.908 +639627.359|220535.168|110.652 +639622.668|220539.322|110.399 +639608.736|220551.664|109.853 +639604.036|220555.827|109.731 +639599.378|220559.954|109.698 +639589.917|220568.339|109.637 +639585.266|220572.457|109.268 +639580.563|220576.621|108.911 +639575.851|220580.793|108.649 +639571.218|220584.896|108.201 +639566.411|220589.157|108.277 +639561.662|220593.367|108.335 +639556.840|220597.640|108.555 +639552.030|220601.907|108.750 +639547.269|220606.122|108.576 +639542.432|220610.417|109.021 +639537.629|220614.675|109.219 +639532.837|220618.927|109.372 +639527.924|220623.286|109.704 +639523.123|220627.544|109.972 +639518.277|220631.842|110.234 +639513.363|220636.200|110.637 +639508.499|220640.516|111.106 +639503.543|220644.914|111.539 +639493.811|220653.549|112.258 +639488.906|220657.902|112.755 +639483.972|220662.282|113.151 +639479.043|220666.653|113.493 +639474.175|220670.972|113.785 +639469.228|220675.358|113.938 +639464.352|220679.680|113.922 +639459.414|220684.057|114.047 +639454.537|220688.379|114.093 +639449.654|220692.701|113.742 +639444.759|220697.038|113.532 +639439.858|220701.382|113.416 +639434.938|220705.734|112.990 +639425.118|220714.433|112.526 +639415.209|220723.212|112.045 +639410.271|220727.582|111.883 +639395.357|220740.792|111.094 +639385.423|220749.589|110.533 +639380.416|220754.021|110.182 +639375.441|220758.431|110.057 +639370.427|220762.872|109.823 +639365.386|220767.341|109.926 +639360.329|220771.824|110.225 +639355.224|220776.357|110.594 +639350.185|220780.822|110.755 +639345.117|220785.315|110.701 +639340.124|220789.734|110.353 +639335.043|220794.233|109.887 +639330.044|220798.659|109.622 +639324.948|220803.173|109.378 +639319.849|220807.699|109.893 +639304.511|220821.312|111.490 +639299.329|220825.908|111.956 +639294.224|220830.437|112.087 +639289.119|220834.964|112.215 +639284.007|220839.493|112.435 +639273.769|220848.570|112.542 +639268.602|220853.151|112.983 +639263.457|220857.711|113.127 +639258.315|220862.271|113.273 +639253.173|220866.831|113.435 +639248.047|220871.372|113.395 +639242.871|220875.959|113.322 +639237.741|220880.504|113.361 +639232.609|220885.055|113.483 +639227.433|220889.642|113.535 +639222.303|220894.189|113.675 +639217.128|220898.774|113.730 +639211.955|220903.358|113.785 +639206.789|220907.939|113.767 +639201.623|220912.514|113.739 +639196.459|220917.089|113.703 +639191.296|220921.667|113.685 +639186.130|220926.245|113.749 +639180.966|220930.820|113.785 +639175.803|220935.395|113.825 +639170.594|220940.016|113.898 +639165.431|220944.591|114.023 +639160.267|220949.169|114.181 +639155.061|220953.781|114.227 +639149.904|220958.356|114.334 +639144.747|220962.925|114.407 +639139.541|220967.540|114.520 +639134.387|220972.109|114.581 +639129.184|220976.720|114.733 +639123.981|220981.332|114.849 +639118.878|220985.855|114.937 +639113.678|220990.467|115.096 +639108.482|220995.072|115.105 +639103.330|220999.635|115.187 +639098.134|221004.241|115.266 +639092.937|221008.846|115.388 +639087.792|221013.409|115.483 +639082.595|221018.015|115.583 +639077.401|221022.620|115.727 +639072.207|221027.223|115.821 +639067.013|221031.825|115.986 +639061.823|221036.431|116.230 +639056.678|221040.991|116.458 +639051.487|221045.596|116.736 +639046.296|221050.199|117.101 +639041.157|221054.755|117.211 +639035.970|221059.355|117.351 +639030.779|221063.951|117.235 +639025.640|221068.511|117.571 +639020.452|221073.107|117.702 +639015.264|221077.707|117.839 +639010.129|221082.261|118.019 +639004.700|221087.073|118.125 +638999.802|221091.414|118.110 +638994.666|221095.967|118.467 +638984.342|221105.121|118.650 +638979.252|221109.632|118.793 +638974.065|221114.228|118.808 +638968.926|221118.782|118.878 +638963.793|221123.336|119.204 +638958.645|221127.892|118.894 +638948.358|221137.006|118.720 +638932.910|221150.688|118.183 +638912.440|221168.830|118.692 +638902.199|221177.901|118.872 +638892.015|221186.923|119.290 +638881.780|221195.991|119.759 +638876.693|221200.502|120.046 +638871.612|221205.007|120.567 +638866.577|221209.472|120.963 +638861.502|221213.974|121.542 +638841.229|221231.939|122.576 +638826.044|221245.393|123.353 +638820.948|221249.910|123.618 +638815.888|221254.391|123.670 +638810.826|221258.874|123.685 +638805.732|221263.388|124.026 +638800.731|221267.820|124.292 +638795.668|221272.304|124.368 +638780.489|221285.752|124.859 +638760.351|221303.595|125.755 +638750.246|221312.544|125.837 +638745.187|221317.027|126.111 +638740.240|221321.413|126.602 +638735.186|221325.894|126.983 +638730.175|221330.335|127.282 +638725.180|221334.767|127.772 +638720.175|221339.201|128.181 +638715.179|221343.624|128.178 +638710.159|221348.074|128.419 +638705.182|221352.485|128.647 +638700.143|221356.947|128.739 +638695.166|221361.357|129.001 +638690.134|221365.817|129.178 +638685.153|221370.227|129.434 +638680.161|221374.650|129.580 +638660.144|221392.371|129.400 +638645.075|221405.712|128.848 +638635.026|221414.600|128.004 +638619.859|221428.005|126.181 +638614.799|221432.480|125.587 +638594.667|221450.283|123.700 +638589.613|221454.748|122.938 +638584.606|221459.177|122.576 +638574.636|221467.998|121.926 +638569.603|221472.448|121.454 +638564.647|221476.834|121.231 +638559.697|221481.214|121.073 +638554.756|221485.588|121.033 +638549.785|221489.986|120.762 +638544.802|221494.391|120.055 +638539.791|221498.822|119.555 +638534.810|221503.224|118.958 +638490.617|221542.336|117.793 +638485.743|221546.646|117.504 +638480.833|221550.992|117.324 +638475.962|221555.302|117.092 +638471.128|221559.584|117.138 +638466.184|221563.952|116.489 +638446.485|221581.362|114.084 +638436.847|221589.897|114.026 +638432.092|221594.106|114.108 +638422.442|221602.647|113.803 +638413.274|221610.791|116.111 +638408.547|221614.979|116.141 +638403.871|221619.121|116.495 +638399.080|221623.364|116.477 +638394.361|221627.540|116.324 +638389.500|221631.834|115.681 +638370.690|221648.489|116.010 +638356.782|221660.812|116.763 +638342.929|221673.086|117.665 +638338.281|221677.204|117.842 +638333.660|221681.294|117.903 +638324.342|221689.539|117.421 +638319.691|221693.657|117.391 +638315.144|221697.687|117.638 +638305.987|221705.794|117.872 +638301.339|221709.906|117.668 +638296.755|221713.966|117.802 +638282.941|221726.188|117.251 +638273.797|221734.281|117.043 +638269.311|221738.256|117.257 +638264.778|221742.267|117.257 +638260.292|221746.238|117.260 +638255.674|221750.323|116.900 +638251.212|221754.276|117.037 +638246.713|221758.257|117.034 +638237.776|221766.169|117.098 +638233.347|221770.089|117.232 +638211.557|221789.401|118.936 +638198.445|221801.011|119.220 +638193.805|221805.104|118.104 +638189.093|221809.259|116.696 +638184.735|221813.118|116.623 +638180.699|221816.708|117.927 +638176.676|221820.287|119.299 +638159.208|221835.743|118.406 +638154.687|221839.739|117.528 +638150.237|221843.668|116.751 +638145.574|221847.780|115.114 +638141.014|221851.803|113.938 +638136.713|221855.607|113.627 +638132.510|221859.328|113.724 +638128.435|221862.946|114.361 +638124.314|221866.598|114.602 +638119.602|221870.749|112.700 +638115.350|221874.511|112.453 +638098.577|221889.351|111.722 +638094.169|221893.244|110.737 +638089.884|221897.029|110.051 +638077.372|221908.097|108.988 +638073.028|221911.928|107.939 +638068.670|221915.774|106.863 +638064.235|221919.682|105.309 +638060.156|221923.291|105.120 +638056.084|221926.897|104.976 +638052.165|221930.368|105.211 +638048.318|221933.779|105.531 +638043.981|221937.604|104.230 +638039.930|221941.189|104.022 +638035.879|221944.770|103.629 +638183.406|221812.069|116.906 +638187.694|221808.259|116.684 +638192.391|221804.105|118.034 +638197.052|221799.984|119.241 +638214.547|221784.445|118.823 +638227.605|221772.841|118.019 +638231.985|221768.949|117.662 +638236.423|221765.008|117.595 +638249.861|221753.075|117.565 +638254.305|221749.128|117.351 +638263.425|221741.035|117.799 +638272.410|221733.053|117.193 +638276.989|221728.987|117.199 +638281.500|221724.981|117.141 +638299.980|221708.583|117.735 +638304.625|221704.462|117.930 +638313.833|221696.284|117.717 +638318.472|221692.167|117.674 +638323.010|221688.134|117.400 +638327.659|221684.007|117.461 +638332.371|221679.828|117.583 +638337.114|221675.619|117.909 +638341.777|221671.480|117.836 +638355.758|221659.062|117.101 +638383.964|221634.014|116.053 +638388.722|221629.792|116.108 +638393.639|221625.440|116.800 +638398.357|221621.249|116.693 +638403.109|221617.030|116.492 +638407.839|221612.827|116.190 +638426.527|221596.200|112.788 +638431.568|221591.741|114.123 +638436.369|221587.474|113.727 +638441.255|221583.142|114.175 +638446.156|221578.799|114.416 +638451.094|221574.422|114.928 +638455.967|221570.097|115.059 +638461.073|221565.583|116.367 +638470.900|221556.872|116.949 +638475.773|221552.544|116.882 +638480.742|221548.139|117.434 +638485.625|221543.808|117.455 +638540.187|221495.412|119.570 +638545.234|221490.943|120.351 +638550.276|221486.472|120.768 +638560.264|221477.611|120.966 +638565.220|221473.216|121.204 +638570.304|221468.708|121.682 +638575.346|221464.243|122.243 +638580.390|221459.768|122.469 +638585.407|221455.321|122.923 +638600.620|221441.840|124.517 +638605.673|221437.362|124.983 +638610.760|221432.851|125.343 +638615.860|221428.334|125.822 +638620.950|221423.826|126.709 +638626.071|221419.291|127.465 +638646.346|221401.311|128.547 +638656.505|221392.304|129.232 +638686.808|221365.405|128.821 +638697.004|221356.359|128.824 +638701.987|221351.933|128.687 +638707.111|221347.382|128.513 +638712.137|221342.920|128.330 +638717.203|221338.421|128.077 +638722.314|221333.880|127.824 +638732.419|221324.903|127.047 +638752.758|221306.841|126.123 +638778.230|221284.218|124.929 +638783.323|221279.692|124.621 +638793.604|221270.569|124.612 +638798.707|221266.037|124.447 +638803.855|221261.468|124.240 +638814.096|221252.370|123.837 +638839.702|221229.632|122.594 +638844.860|221225.054|122.676 +638849.938|221220.543|122.234 +638860.249|221211.380|121.497 +638870.457|221202.309|120.680 +638880.704|221193.202|119.607 +638906.454|221170.342|118.830 +638911.596|221165.776|118.778 +638916.728|221161.216|118.482 +638927.012|221152.090|118.403 +638942.499|221138.350|118.994 +638947.635|221133.790|118.857 +638952.826|221129.185|119.019 +638957.983|221124.619|119.717 +638963.116|221120.062|119.543 +638968.234|221115.508|118.683 +638973.427|221110.903|119.076 +638983.693|221101.786|118.668 +638988.832|221097.229|118.775 +638994.011|221092.627|118.375 +638999.098|221088.110|118.360 +639004.234|221083.553|118.220 +639009.415|221078.950|118.022 +639014.502|221074.433|117.876 +639019.687|221069.831|117.711 +639024.823|221065.271|117.513 +639029.910|221060.754|117.510 +639035.049|221056.191|117.351 +639040.234|221051.589|117.199 +639045.324|221047.068|116.891 +639050.512|221042.460|116.678 +639055.602|221037.940|116.400 +639060.741|221033.374|116.199 +639065.883|221028.808|115.974 +639070.976|221024.288|115.922 +639076.118|221019.722|115.696 +639081.260|221015.153|115.519 +639086.356|221010.629|115.474 +639091.498|221006.064|115.379 +639096.643|221001.491|115.269 +639101.739|220996.965|115.160 +639106.836|220992.439|115.053 +639111.981|220987.870|115.023 +639117.080|220983.341|114.876 +639122.228|220978.766|114.779 +639127.282|220974.279|114.642 +639132.433|220969.704|114.556 +639137.535|220965.171|114.462 +639142.589|220960.685|114.419 +639147.691|220956.152|114.325 +639152.797|220951.617|114.230 +639157.905|220947.082|114.130 +639163.010|220942.546|114.084 +639168.073|220938.047|113.919 +639173.133|220933.554|113.846 +639178.244|220929.016|113.831 +639183.301|220924.526|113.877 +639188.364|220920.030|113.846 +639193.426|220915.535|113.837 +639198.492|220911.036|113.788 +639203.555|220906.540|113.870 +639208.624|220902.041|113.828 +639213.693|220897.539|113.809 +639218.716|220893.077|113.706 +639223.791|220888.572|113.642 +639228.863|220884.064|113.575 +639233.895|220879.596|113.465 +639238.973|220875.085|113.352 +639244.005|220870.616|113.261 +639249.031|220866.154|113.310 +639254.064|220861.686|113.285 +639259.151|220857.168|113.191 +639264.189|220852.691|113.105 +639269.191|220848.247|112.831 +639274.247|220843.751|112.502 +639284.330|220834.799|112.462 +639289.338|220830.349|112.231 +639294.389|220825.865|112.179 +639299.406|220821.406|111.892 +639304.453|220816.916|111.191 +639314.545|220807.937|109.981 +639319.571|220803.472|109.731 +639329.547|220794.611|109.679 +639334.546|220790.176|109.887 +639339.472|220785.812|110.420 +639344.464|220781.380|110.688 +639349.433|220776.969|110.707 +639354.419|220772.537|110.524 +639364.435|220763.634|109.747 +639369.421|220759.205|109.649 +639379.291|220750.449|110.179 +639394.125|220737.287|111.021 +639408.875|220724.202|111.853 +639413.816|220719.816|111.923 +639423.670|220711.068|112.383 +639433.478|220702.366|112.874 +639438.343|220698.050|113.300 +639443.235|220693.710|113.480 +639448.115|220689.379|113.764 +639452.998|220685.047|114.078 +639457.920|220680.674|114.020 +639462.791|220676.348|114.020 +639467.671|220672.017|113.974 +639472.624|220667.616|113.730 +639477.534|220663.248|113.438 +639482.405|220658.920|113.115 +639487.382|220654.494|112.764 +639492.287|220650.133|112.218 +639497.209|220645.759|111.959 +639502.104|220641.406|111.551 +639507.014|220637.041|111.060 +639511.922|220632.677|110.603 +639516.777|220628.358|110.201 +639521.724|220623.962|109.914 +639526.583|220619.643|109.548 +639531.423|220615.343|109.366 +639536.275|220611.030|109.106 +639541.161|220606.683|108.610 +639545.968|220602.419|108.768 +639550.830|220598.094|108.506 +639555.636|220593.827|108.332 +639560.443|220589.553|108.162 +639565.234|220585.298|108.134 +639570.059|220581.013|108.244 +639574.766|220576.840|108.524 +639579.478|220572.655|108.753 +639584.233|220568.437|109.052 +639593.700|220560.034|109.341 +639598.397|220555.861|109.399 +639603.097|220551.691|109.475 +639617.148|220539.216|110.106 +639621.790|220535.095|110.292 +639626.472|220530.943|110.582 +639631.071|220526.859|110.755 +639635.741|220522.714|110.816 +639640.426|220518.550|110.804 +639645.059|220514.438|110.835 +639649.631|220510.378|110.926 +639654.261|220506.267|110.999 +639658.891|220502.155|111.100 +639663.514|220498.046|110.935 +639668.105|220493.971|111.005 +639677.151|220485.946|111.679 +639681.702|220481.904|111.734 +639686.256|220477.859|111.783 +639695.369|220469.764|111.615 +639699.819|220465.814|112.005 +639704.358|220461.784|111.935 +639708.823|220457.819|111.996 +639713.313|220453.829|111.941 +639717.860|220449.790|111.865 +639722.323|220445.828|112.002 +639744.725|220425.915|110.774 +639749.169|220421.962|110.551 +639758.152|220413.973|109.707 +639762.593|220410.026|109.317 +639767.019|220406.088|109.006 +639771.441|220402.159|108.756 +639775.794|220398.291|108.604 +639780.171|220394.399|108.354 +639784.496|220390.555|108.116 +639788.876|220386.663|107.896 +639793.183|220382.835|107.781 +639814.634|220363.779|107.174 +639818.871|220360.014|107.003 +639823.166|220356.201|106.839 +639827.412|220352.428|106.656 +639831.624|220348.688|106.412 +639835.843|220344.942|106.168 +639840.043|220341.208|106.007 +639844.255|220337.465|105.815 +639848.446|220333.747|105.744 +639852.600|220330.055|105.607 +639824.269|220353.565|106.763 +639819.926|220357.405|106.872 +639815.564|220361.264|107.101 +639811.166|220365.156|107.272 +639793.618|220380.683|107.665 +639789.141|220384.645|107.802 +639784.715|220388.562|107.954 +639780.283|220392.485|108.165 +639775.754|220396.493|108.363 +639771.274|220400.458|108.607 +639766.744|220404.469|108.838 +639762.212|220408.481|109.122 +639757.664|220412.507|109.497 +639753.092|220416.561|110.030 +639748.557|220420.575|110.390 +639743.957|220424.644|110.560 +639739.373|220428.704|110.947 +639734.850|220432.706|111.033 +639730.235|220436.790|111.356 +639725.596|220440.902|111.834 +639721.049|220444.926|111.844 +639716.473|220448.967|111.725 +639711.920|220453.000|111.810 +639707.320|220457.066|111.865 +639702.751|220461.107|111.783 +639698.115|220465.207|111.798 +639693.552|220469.240|111.417 +639688.950|220473.315|111.588 +639684.326|220477.405|111.591 +639679.663|220481.526|111.548 +639675.057|220485.601|111.487 +639665.898|220493.694|110.819 +639661.192|220497.854|110.789 +639656.516|220501.993|110.917 +639651.883|220506.093|110.826 +639647.201|220510.229|110.704 +639642.520|220514.371|110.630 +639637.829|220518.520|110.624 +639633.138|220522.671|110.643 +639628.420|220526.841|110.521 +639623.768|220530.953|110.310 +639619.120|220535.064|110.124 +639614.390|220539.243|109.811 +639609.732|220543.364|109.713 +639605.051|220547.497|109.436 +639600.302|220551.697|109.298 +639595.562|220555.891|109.140 +639590.856|220560.052|109.094 +639586.116|220564.243|108.948 +639581.395|220568.419|108.716 +639576.664|220572.600|108.549 +639571.910|220576.801|108.207 +639567.194|220580.967|107.976 +639562.394|220585.213|108.000 +639557.602|220589.453|108.000 +639552.777|220593.723|108.247 +639547.955|220597.993|108.521 +639543.155|220602.242|108.649 +639538.339|220606.500|108.533 +639533.450|220610.832|109.018 +639528.640|220615.090|109.292 +639523.794|220619.381|109.497 +639518.923|220623.694|109.911 +639514.074|220627.986|110.188 +639509.157|220632.344|110.643 +639504.293|220636.651|111.103 +639499.373|220641.007|111.618 +639494.484|220645.338|111.956 +639489.604|220649.660|112.221 +639484.700|220654.004|112.743 +639479.814|220658.329|113.108 +639474.888|220662.693|113.459 +639470.027|220666.994|113.681 +639465.117|220671.344|113.947 +639460.292|220675.611|113.919 +639455.412|220679.930|113.953 +639450.538|220684.240|113.962 +639445.704|220688.513|113.617 +639440.818|220692.829|113.307 +639435.972|220697.115|113.133 +639431.046|220701.467|112.767 +639421.286|220710.096|112.176 +639416.434|220714.385|112.103 +639411.466|220718.774|111.731 +639406.564|220723.111|111.722 +639401.611|220727.494|111.764 +639396.716|220731.819|111.200 +639391.800|220736.163|110.871 +639381.903|220744.910|110.429 +639377.005|220749.239|109.963 +639371.979|220753.686|109.841 +639367.059|220758.032|109.615 +639362.009|220762.503|109.811 +639356.992|220766.947|110.256 +639351.947|220771.413|110.426 +639346.948|220775.838|110.716 +639336.890|220784.733|110.246 +639331.900|220789.140|109.838 +639326.908|220793.553|109.500 +639316.801|220802.496|109.829 +639301.506|220816.051|111.487 +639296.376|220820.598|111.874 +639291.307|220825.088|112.127 +639286.247|220829.569|112.258 +639276.037|220838.609|112.535 +639270.925|220843.135|112.788 +639265.780|220847.692|112.871 +639260.720|220852.173|113.182 +639255.584|220856.720|113.200 +639250.442|220861.274|113.307 +639245.361|220865.770|113.218 +639240.226|220870.314|113.267 +639235.090|220874.865|113.392 +639229.951|220879.413|113.550 +639224.818|220883.957|113.663 +639219.688|220888.499|113.745 +639214.513|220893.083|113.837 +639209.386|220897.622|113.874 +639204.213|220902.203|113.965 +639199.044|220906.775|113.938 +639193.875|220911.353|113.974 +639188.708|220915.925|113.934 +639183.545|220920.497|113.934 +639178.378|220925.069|113.941 +639173.218|220929.635|113.852 +639168.055|220934.207|113.907 +639162.888|220938.782|114.032 +639157.676|220943.393|114.105 +639152.464|220948.008|114.215 +639147.304|220952.577|114.337 +639142.098|220957.189|114.379 +639136.889|220961.797|114.483 +639131.732|220966.363|114.562 +639126.526|220970.972|114.657 +639121.323|220975.580|114.700 +639116.169|220980.143|114.815 +639110.966|220984.752|114.962 +639105.714|220989.400|115.062 +639100.563|220993.963|115.190 +639095.363|220998.568|115.343 +639090.117|221003.211|115.382 +639084.966|221007.770|115.477 +639079.721|221012.416|115.593 +639074.524|221017.018|115.742 +639069.327|221021.621|115.922 +639064.130|221026.220|116.089 +639058.887|221030.865|116.248 +639053.742|221035.422|116.409 +639048.500|221040.064|116.650 +639043.306|221044.663|116.900 +639038.115|221049.260|116.979 +639032.925|221053.859|117.324 +639027.685|221058.501|117.647 +639022.494|221063.095|117.696 +639017.304|221067.691|117.799 +639012.067|221072.330|117.940 +639006.876|221076.924|118.135 +639001.689|221081.517|118.284 +638996.501|221086.113|118.439 +638991.310|221090.707|118.464 +638986.125|221095.303|118.723 +638980.935|221099.896|118.799 +638970.559|221109.083|119.070 +638944.618|221132.053|119.689 +638903.262|221168.650|118.610 +638898.084|221173.244|119.168 +638892.985|221177.761|119.195 +638862.203|221205.043|121.073 +638857.119|221209.551|121.530 +638846.905|221218.607|122.466 +638841.812|221223.121|122.725 +638826.562|221236.630|123.280 +638821.460|221241.153|123.417 +638816.358|221245.673|123.569 +638811.301|221250.154|123.706 +638806.232|221254.641|123.691 +638801.185|221259.115|123.990 +638796.155|221263.574|124.606 +638791.029|221268.113|124.478 +638786.027|221272.548|124.788 +638780.970|221277.028|124.987 +638775.911|221281.512|125.191 +638765.840|221290.433|125.642 +638755.806|221299.324|125.944 +638750.752|221303.805|126.282 +638745.723|221308.258|126.367 +638740.703|221312.705|126.538 +638735.738|221317.106|126.809 +638730.672|221321.596|127.056 +638725.707|221325.997|127.349 +638720.702|221330.432|127.788 +638715.746|221334.828|128.190 +638710.708|221339.290|128.269 +638705.685|221343.740|128.510 +638700.741|221348.120|128.586 +638695.702|221352.582|128.690 +638675.808|221370.209|129.498 +638655.783|221387.942|129.306 +638640.826|221401.183|128.958 +638620.767|221418.922|127.382 +638605.658|221432.278|125.447 +638600.665|221436.695|125.093 +638595.658|221441.124|124.648 +638585.666|221449.966|124.057 +638575.644|221458.823|122.944 +638570.615|221463.274|122.484 +638565.668|221467.647|121.917 +638560.618|221472.113|121.366 +638555.631|221476.520|120.948 +638550.687|221480.900|120.878 +638545.740|221485.280|120.808 +638540.705|221489.727|120.125 +638535.709|221494.141|119.381 +638530.683|221498.582|118.442 +638486.765|221537.474|119.174 +638481.571|221542.046|117.095 +638476.727|221546.335|117.034 +638471.796|221550.696|116.751 +638466.946|221554.988|116.705 +638452.142|221568.076|115.059 +638447.281|221572.380|115.029 +638437.576|221580.966|114.511 +638404.334|221610.419|116.504 +638399.634|221614.583|116.717 +638394.907|221618.771|117.080 +638390.176|221622.962|117.138 +638385.434|221627.159|116.867 +638380.590|221631.444|116.626 +638343.341|221664.442|118.296 +638338.628|221668.612|118.113 +638329.219|221676.933|117.626 +638324.562|221681.057|117.531 +638320.054|221685.053|117.952 +638315.433|221689.143|118.077 +638310.828|221693.224|118.284 +638296.926|221705.523|117.845 +638287.675|221713.710|117.464 +638283.100|221717.758|117.440 +638278.577|221721.763|117.418 +638274.117|221725.716|117.982 +638238.218|221757.507|118.695 +638229.287|221765.410|118.570 +638216.187|221777.017|119.384 +638211.725|221780.964|119.189 +638189.456|221800.660|117.714 +638184.969|221804.620|117.062 +638180.684|221808.415|117.296 +638176.587|221812.051|118.357 +638172.543|221815.641|119.418 +638168.224|221819.464|119.540 +638163.911|221823.280|119.482 +638159.543|221827.135|118.988 +638155.035|221831.113|118.150 +638146.430|221838.721|117.808 +638141.849|221842.753|116.306 +638137.518|221846.579|115.846 +638132.763|221850.760|113.678 +638128.414|221854.601|113.188 +638124.091|221858.420|112.837 +638119.821|221862.191|112.493 +638115.670|221865.866|112.633 +638094.849|221884.276|112.054 +638082.017|221895.600|109.865 +638077.494|221899.577|108.098 +638073.065|221903.479|106.708 +638068.852|221907.197|106.180 +638064.738|221910.828|105.632 +638060.644|221914.449|105.376 +638056.609|221918.015|105.153 +638052.515|221921.633|104.925 +638048.467|221925.208|104.687 +638044.569|221928.655|104.824 +638040.402|221932.334|103.961 +638036.367|221935.897|103.620 +638032.481|221939.336|103.830 +638177.133|221809.625|117.876 +638181.324|221805.894|117.001 +638185.716|221801.998|117.235 +638208.216|221782.049|119.473 +638212.587|221778.163|119.272 +638216.982|221774.262|119.186 +638221.442|221770.302|119.177 +638225.855|221766.383|118.961 +638239.266|221754.477|118.985 +638257.411|221738.371|119.360 +638275.391|221722.400|118.744 +638279.872|221718.416|118.311 +638284.325|221714.454|117.495 +638288.940|221710.360|117.741 +638293.515|221706.300|117.808 +638312.056|221689.844|118.214 +638321.276|221681.657|117.869 +638325.955|221677.500|117.821 +638330.554|221673.412|117.632 +638335.254|221669.240|117.720 +638339.982|221665.045|117.985 +638344.779|221660.790|118.357 +638372.754|221635.922|116.403 +638377.503|221631.709|116.647 +638382.331|221627.427|117.092 +638387.153|221623.148|117.232 +638391.880|221618.947|117.153 +638396.605|221614.750|117.065 +638401.369|221610.517|116.638 +638406.078|221606.332|116.507 +638419.980|221593.948|113.654 +638434.598|221580.981|114.593 +638439.517|221576.617|114.943 +638444.412|221572.273|115.166 +638449.231|221567.997|115.242 +638454.108|221563.666|115.401 +638459.086|221559.255|116.220 +638464.026|221554.872|116.510 +638468.915|221550.532|116.501 +638473.862|221546.143|116.876 +638483.823|221537.316|118.168 +638489.038|221532.707|120.113 +638528.205|221497.911|118.580 +638538.319|221488.953|120.201 +638543.378|221484.466|120.722 +638548.340|221480.062|120.917 +638553.357|221475.612|121.161 +638558.384|221471.153|121.530 +638568.469|221462.213|122.582 +638588.653|221444.312|124.429 +638593.719|221439.822|124.926 +638624.199|221412.799|128.105 +638654.576|221385.842|129.351 +638659.672|221381.322|129.662 +638664.783|221376.786|129.659 +638674.887|221367.810|129.568 +638684.928|221358.888|128.882 +638695.062|221349.888|128.745 +638700.149|221345.371|128.656 +638705.227|221340.863|128.470 +638710.311|221336.345|128.406 +638715.371|221331.853|128.059 +638720.425|221327.360|127.666 +638725.524|221322.828|127.248 +638730.590|221318.329|127.020 +638735.649|221313.830|126.751 +638740.764|221309.288|126.526 +638745.830|221304.789|126.340 +638750.941|221300.248|126.172 +638756.053|221295.709|125.977 +638761.161|221291.171|125.742 +638766.270|221286.636|125.557 +638771.323|221282.143|125.313 +638776.487|221277.559|125.227 +638781.601|221273.020|125.151 +638786.697|221268.491|124.846 +638802.114|221254.799|124.493 +638807.259|221250.227|124.270 +638812.417|221245.649|124.231 +638832.933|221227.425|123.179 +638838.120|221222.813|122.935 +638843.214|221218.290|122.734 +638848.398|221213.685|122.423 +638858.658|221204.565|121.554 +638874.084|221190.852|120.012 +638879.220|221186.289|119.720 +638884.404|221181.680|119.430 +638889.555|221177.112|119.433 +638899.925|221167.897|118.912 +638936.150|221135.750|119.665 +638941.347|221131.138|119.887 +638946.529|221126.536|119.680 +638951.717|221121.930|119.707 +638967.207|221108.166|118.631 +638977.640|221098.912|119.092 +638982.773|221094.349|118.811 +638987.957|221089.747|118.619 +638993.145|221085.141|118.683 +638998.330|221080.535|118.473 +639003.511|221075.933|118.287 +639008.699|221071.327|118.147 +639013.832|221066.765|117.662 +639019.020|221062.159|117.735 +639024.207|221057.553|117.540 +639029.392|221052.945|117.150 +639034.531|221048.379|117.037 +639039.722|221043.773|116.873 +639044.861|221039.208|116.702 +639050.051|221034.599|116.510 +639055.239|221029.990|116.428 +639060.335|221025.464|116.208 +639065.526|221020.852|116.010 +639070.717|221016.244|115.879 +639075.813|221011.718|115.736 +639081.007|221007.106|115.577 +639086.152|221002.537|115.410 +639091.297|220997.974|115.385 +639096.445|220993.405|115.260 +639101.593|220988.836|115.120 +639106.741|220984.264|114.959 +639111.889|220979.695|114.901 +639117.040|220975.123|114.803 +639122.143|220970.597|114.703 +639127.294|220966.022|114.575 +639132.396|220961.493|114.520 +639137.550|220956.920|114.453 +639142.656|220952.388|114.386 +639147.761|220947.856|114.288 +639152.873|220943.320|114.151 +639157.981|220938.785|114.041 +639163.041|220934.295|114.014 +639168.204|220929.714|113.898 +639173.261|220925.227|114.020 +639178.321|220920.738|114.050 +639183.426|220916.208|114.175 +639188.446|220911.755|114.093 +639193.561|220907.217|114.072 +639198.578|220902.764|114.056 +639203.646|220898.265|114.023 +639208.721|220893.763|113.925 +639213.744|220889.304|113.861 +639218.819|220884.799|113.791 +639223.797|220880.379|113.721 +639228.832|220875.911|113.557 +639233.913|220871.400|113.416 +639238.903|220866.974|113.276 +639243.938|220862.502|113.172 +639248.970|220858.037|113.176 +639254.006|220853.566|113.102 +639258.943|220849.186|113.118 +639263.988|220844.708|112.953 +639268.993|220840.264|112.697 +639274.001|220835.814|112.420 +639278.981|220831.398|112.627 +639283.995|220826.947|112.328 +639289.006|220822.497|112.127 +639294.026|220818.041|111.810 +639304.017|220809.159|110.588 +639314.027|220800.268|109.975 +639323.973|220791.441|109.695 +639328.923|220787.052|109.908 +639333.824|220782.703|110.100 +639338.752|220778.335|110.603 +639348.600|220769.596|110.569 +639353.602|220765.152|110.219 +639358.503|220760.803|109.960 +639363.469|220756.389|109.545 +639378.169|220743.356|110.176 +639387.926|220734.706|110.941 +639392.821|220730.362|110.929 +639407.421|220717.417|111.856 +639412.276|220713.110|111.819 +639421.987|220704.497|112.270 +639426.852|220700.187|112.685 +639431.695|220695.892|112.855 +639451.026|220678.753|114.047 +639455.851|220674.471|113.989 +639460.712|220670.158|114.084 +639465.552|220665.866|113.965 +639470.414|220661.550|113.669 +639475.279|220657.231|113.380 +639480.152|220652.903|113.041 +639485.041|220648.563|112.621 +639489.882|220644.268|112.218 +639499.614|220635.624|111.456 +639504.466|220631.314|111.039 +639509.337|220626.989|110.515 +639514.186|220622.682|110.170 +639519.048|220618.366|109.777 +639523.891|220614.069|109.558 +639528.698|220609.801|109.253 +639533.499|220605.540|109.015 +639538.296|220601.282|108.850 +639543.161|220596.963|108.555 +639547.958|220592.708|108.436 +639552.725|220588.478|108.186 +639557.535|220584.207|108.018 +639562.336|220579.949|107.930 +639567.060|220575.758|108.058 +639571.815|220571.546|108.357 +639576.479|220567.413|108.591 +639581.212|220563.216|108.719 +639585.936|220559.028|108.914 +639590.679|220554.821|109.003 +639595.404|220550.633|109.244 +639600.104|220546.470|109.341 +639604.791|220542.312|109.521 +639609.488|220538.149|109.658 +639614.176|220533.991|109.865 +639618.797|220529.901|110.216 +639623.494|220525.734|110.396 +639628.200|220521.565|110.563 +639632.806|220517.480|110.713 +639637.487|220513.326|110.737 +639642.172|220509.171|110.765 +639646.808|220505.060|110.795 +639651.432|220500.963|110.926 +639656.138|220496.787|110.877 +639665.404|220488.570|111.112 +639669.970|220484.525|111.359 +639674.557|220480.456|111.481 +639679.205|220476.335|111.566 +639683.808|220472.254|111.655 +639688.417|220468.167|111.429 +639692.918|220464.174|111.810 +639697.536|220460.080|111.862 +639702.081|220456.054|112.060 +639706.619|220452.027|112.014 +639711.216|220447.949|111.947 +639715.812|220443.871|111.904 +639729.586|220431.642|110.853 +639734.079|220427.656|110.883 +639743.180|220419.581|110.682 +639747.694|220415.573|110.396 +639752.211|220411.562|110.112 +639756.744|220407.539|109.780 +639761.273|220403.518|109.472 +639765.769|220399.526|109.094 +639770.256|220395.542|108.789 +639774.730|220391.570|108.570 +639783.612|220383.688|108.265 +639788.028|220379.768|108.131 +639792.396|220375.894|108.003 +639801.187|220368.091|107.525 +639805.509|220364.260|107.677 +639809.809|220360.447|107.698 +639814.135|220356.607|107.607 +639818.472|220352.760|107.479 +639822.800|220348.916|107.165 +639827.140|220345.064|106.827 +639831.450|220341.239|106.631 +639835.775|220337.398|106.388 +639840.049|220333.606|106.165 +639844.289|220329.842|105.863 +639848.568|220326.044|105.656 +639819.551|220350.145|107.448 +639806.752|220361.477|107.771 +639802.528|220365.217|107.628 +639798.175|220369.073|107.866 +639793.899|220372.855|107.753 +639789.479|220376.772|108.107 +639785.166|220380.594|108.213 +639780.799|220384.462|108.357 +639776.431|220388.330|108.503 +639772.020|220392.238|108.631 +639767.585|220396.167|108.899 +639763.145|220400.102|109.216 +639758.713|220404.027|109.515 +639749.691|220412.022|110.176 +639745.213|220415.991|110.509 +639740.720|220419.969|110.661 +639731.817|220427.851|110.591 +639727.266|220431.883|110.844 +639718.040|220440.064|111.825 +639713.553|220444.036|111.786 +639708.981|220448.083|111.953 +639704.495|220452.058|111.965 +639695.366|220460.135|111.743 +639690.794|220464.183|111.703 +639686.286|220468.170|111.322 +639681.629|220472.294|111.508 +639677.020|220476.375|111.447 +639672.418|220480.447|111.359 +639667.818|220484.516|111.271 +639663.194|220488.607|111.054 +639658.613|220492.651|110.594 +639653.892|220496.833|110.984 +639649.271|220500.920|110.810 +639644.586|220505.060|110.707 +639639.892|220509.214|110.701 +639635.201|220513.362|110.685 +639630.483|220517.538|110.557 +639625.777|220521.696|110.347 +639621.071|220525.856|110.164 +639616.374|220530.008|109.945 +639611.643|220534.189|109.637 +639606.931|220538.356|109.548 +639602.188|220542.550|109.353 +639597.394|220546.790|109.180 +639592.691|220550.950|109.094 +639587.863|220555.218|108.844 +639583.123|220559.409|108.698 +639578.335|220563.642|108.567 +639573.501|220567.919|108.418 +639568.740|220572.125|108.116 +639563.927|220576.380|107.851 +639559.148|220580.608|107.735 +639554.268|220584.927|107.991 +639549.351|220589.279|108.186 +639544.496|220593.577|108.323 +639539.680|220597.835|108.192 +639529.804|220606.580|109.058 +639524.900|220610.923|109.311 +639519.993|220615.266|109.579 +639515.031|220619.662|109.942 +639510.123|220624.008|110.277 +639505.143|220628.422|110.835 +639500.193|220632.805|111.194 +639495.222|220637.209|111.731 +639490.275|220641.592|112.133 +639485.343|220645.957|112.410 +639480.351|220650.379|112.837 +639475.413|220654.750|113.233 +639470.399|220659.191|113.486 +639465.482|220663.544|113.770 +639460.478|220667.973|113.980 +639455.555|220672.328|113.934 +639450.629|220676.687|113.941 +639445.728|220681.018|113.739 +639440.809|220685.368|113.285 +639435.850|220689.751|113.185 +639430.927|220694.100|112.788 +639421.073|220702.811|112.121 +639416.123|220707.185|112.005 +639411.152|220711.583|111.679 +639401.212|220720.371|111.481 +639396.302|220724.708|111.057 +639391.327|220729.109|110.838 +639386.323|220733.538|110.926 +639381.363|220737.921|110.551 +639376.423|220742.283|109.987 +639371.442|220746.690|109.890 +639366.486|220751.067|109.518 +639361.448|220755.523|109.527 +639356.385|220760.007|109.878 +639351.377|220764.442|110.204 +639346.327|220768.913|110.475 +639341.300|220773.363|110.509 +639336.277|220777.804|110.475 +639331.300|220782.200|109.899 +639326.249|220786.668|109.689 +639321.251|220791.085|109.423 +639311.125|220800.049|110.027 +639301.009|220809.007|110.637 +639295.885|220813.548|111.612 +639290.804|220818.047|112.042 +639285.751|220822.516|112.078 +639280.682|220826.999|112.359 +639275.637|220831.462|112.337 +639270.523|220835.988|112.660 +639265.472|220840.453|112.761 +639260.373|220844.964|112.889 +639255.274|220849.475|113.075 +639250.235|220853.928|113.087 +639245.154|220858.421|113.017 +639240.067|220862.920|113.060 +639235.020|220867.385|113.288 +639229.881|220871.930|113.456 +639224.842|220876.386|113.611 +639219.712|220880.925|113.697 +639214.631|220885.417|113.809 +639209.553|220889.907|113.877 +639204.427|220894.442|113.959 +639199.349|220898.932|114.069 +639194.228|220903.462|114.133 +639189.107|220907.991|114.200 +639184.039|220912.471|114.212 +639178.875|220917.034|114.145 +639173.761|220921.558|114.108 +639168.649|220926.078|114.093 +639163.538|220930.595|114.017 +639158.423|220935.115|114.062 +639153.315|220939.635|114.044 +639148.151|220944.201|114.194 +639143.040|220948.721|114.282 +639137.880|220953.284|114.379 +639132.771|220957.804|114.456 +639127.614|220962.364|114.562 +639122.457|220966.924|114.617 +639117.351|220971.441|114.745 +639112.194|220976.001|114.861 +639107.043|220980.558|114.998 +639101.889|220985.115|115.050 +639096.738|220989.671|115.212 +639091.586|220994.228|115.352 +639086.435|220998.782|115.440 +639081.287|221003.339|115.565 +639076.139|221007.889|115.617 +639070.988|221012.446|115.873 +639065.794|221017.039|116.007 +639060.646|221021.593|116.208 +639055.501|221026.147|116.391 +639050.356|221030.694|116.449 +639045.162|221035.288|116.571 +639040.017|221039.838|116.806 +639034.827|221044.432|116.882 +639029.685|221048.982|117.110 +639019.352|221058.123|117.620 +639014.164|221062.714|117.918 +639009.022|221067.261|117.967 +639003.834|221071.852|118.314 +638998.695|221076.396|118.470 +638993.557|221080.941|118.680 +638988.320|221085.574|118.869 +638983.178|221090.118|118.763 +638978.042|221094.666|119.037 +638972.851|221099.253|119.089 +638962.534|221108.385|119.729 +638952.207|221117.517|119.951 +638947.017|221122.107|119.933 +638936.665|221131.251|119.451 +638931.523|221135.799|119.518 +638895.368|221167.760|118.778 +638890.241|221172.302|119.363 +638885.090|221176.855|119.348 +638879.945|221181.409|119.534 +638874.800|221185.960|119.677 +638869.661|221190.511|119.970 +638859.472|221199.539|121.417 +638854.339|221204.083|121.829 +638849.203|221208.631|122.210 +638844.110|221213.136|122.493 +638838.983|221217.677|122.993 +638833.884|221222.188|123.188 +638828.790|221226.700|123.423 +638823.648|221231.247|123.746 +638818.558|221235.755|124.081 +638798.182|221253.781|124.529 +638793.074|221258.298|124.663 +638788.008|221262.779|124.731 +638782.900|221267.299|124.877 +638777.843|221271.773|125.099 +638772.783|221276.248|125.304 +638767.721|221280.732|125.438 +638762.658|221285.209|125.645 +638757.601|221289.684|125.910 +638752.584|221294.121|126.084 +638747.521|221298.602|126.303 +638737.439|221307.523|126.715 +638732.370|221312.010|126.922 +638727.392|221316.415|127.044 +638722.330|221320.892|127.358 +638717.325|221325.324|127.763 +638712.363|221329.716|128.135 +638707.346|221334.157|128.409 +638702.316|221338.607|128.611 +638697.275|221343.066|128.687 +638692.331|221347.437|128.754 +638687.287|221351.899|128.821 +638672.333|221365.131|129.491 +638662.330|221373.979|129.687 +638657.371|221378.368|129.729 +638627.439|221404.825|128.928 +638617.405|221413.686|127.925 +638612.406|221418.105|127.827 +638587.291|221440.273|124.776 +638582.274|221444.705|124.304 +638577.360|221449.052|124.310 +638557.344|221466.724|122.109 +638552.333|221471.147|121.506 +638547.377|221475.520|120.975 +638542.400|221479.922|120.661 +638537.493|221484.256|120.552 +638532.460|221488.697|119.552 +638527.385|221493.178|118.628 +638483.610|221531.924|119.695 +638478.355|221536.538|116.891 +638473.503|221540.836|117.101 +638468.544|221545.213|116.327 +638463.664|221549.529|116.089 +638458.827|221553.808|116.147 +638453.910|221558.155|115.721 +638448.997|221562.498|115.343 +638444.190|221566.750|115.352 +638439.328|221571.048|115.032 +638434.510|221575.312|114.998 +638424.814|221583.886|114.645 +638415.133|221592.445|114.166 +638410.491|221596.563|114.998 +638401.228|221604.780|116.772 +638396.458|221609.002|116.873 +638391.776|221613.147|117.211 +638387.019|221617.356|117.126 +638382.248|221621.581|117.281 +638377.451|221625.821|117.022 +638372.733|221629.996|116.928 +638358.715|221642.411|117.818 +638354.085|221646.511|118.290 +638349.409|221650.650|118.528 +638344.706|221654.810|118.354 +638339.957|221659.007|117.967 +638335.245|221663.174|117.796 +638330.539|221667.335|117.671 +638326.016|221671.346|118.250 +638321.368|221675.457|118.205 +638312.129|221683.635|118.452 +638307.438|221687.781|118.235 +638302.869|221691.828|118.397 +638288.925|221704.157|117.805 +638284.444|221708.126|118.229 +638280.073|221712.003|119.189 +638275.675|221715.908|120.012 +638257.487|221731.998|119.884 +638252.943|221736.015|119.851 +638239.474|221747.933|119.875 +638226.005|221759.845|119.585 +638203.852|221779.446|119.674 +638199.459|221783.329|119.589 +638195.083|221787.200|119.582 +638190.678|221791.096|119.476 +638186.030|221795.192|118.098 +638181.464|221799.225|117.330 +638177.166|221803.026|117.528 +638173.006|221806.720|118.308 +638168.937|221810.332|119.275 +638164.663|221814.114|119.378 +638160.347|221817.933|119.308 +638155.971|221821.801|119.006 +638151.466|221825.776|117.961 +638138.499|221837.236|117.037 +638133.967|221841.232|115.974 +638129.474|221845.192|114.660 +638124.878|221849.240|113.179 +638120.550|221853.062|112.587 +638116.273|221856.841|112.218 +638112.317|221860.356|113.148 +638108.315|221863.903|113.697 +638104.203|221867.543|114.032 +638099.936|221871.313|113.550 +638095.644|221875.102|112.773 +638091.258|221878.973|111.865 +638086.903|221882.813|110.890 +638082.376|221886.797|109.055 +638077.795|221890.827|107.253 +638073.638|221894.499|106.692 +638069.441|221898.206|106.214 +638065.314|221901.851|105.812 +638061.156|221905.527|105.507 +638057.115|221909.099|105.254 +638053.012|221912.726|104.982 +638048.979|221916.290|104.800 +638044.968|221919.837|104.486 +638032.721|221930.655|103.090 +638175.551|221802.288|117.693 +638179.821|221798.499|117.397 +638184.274|221794.558|117.900 +638189.026|221790.367|119.497 +638193.452|221786.445|119.701 +638202.355|221778.556|119.933 +638233.481|221750.963|119.960 +638247.066|221738.923|120.198 +638260.648|221726.883|120.082 +638283.243|221706.840|119.052 +638287.617|221702.947|117.860 +638301.559|221690.597|118.452 +638306.195|221686.488|118.378 +638320.084|221674.174|118.427 +638324.784|221670.008|118.494 +638329.405|221665.905|118.162 +638334.020|221661.808|117.818 +638338.726|221657.639|117.970 +638343.478|221653.423|118.129 +638348.239|221649.208|118.619 +638352.936|221645.041|118.513 +638357.563|221640.933|118.034 +638371.635|221628.439|117.223 +638376.405|221624.211|117.321 +638381.145|221620.008|117.278 +638385.936|221615.759|117.254 +638390.743|221611.495|117.342 +638395.422|221607.344|117.007 +638400.223|221603.083|116.797 +638409.482|221594.850|115.026 +638419.041|221586.364|114.468 +638433.635|221573.435|115.318 +638438.481|221569.137|115.221 +638443.337|221564.830|115.218 +638448.131|221560.578|115.151 +638453.136|221556.146|115.800 +638458.025|221551.812|116.080 +638462.850|221547.533|115.961 +638472.698|221538.809|116.751 +638477.681|221534.396|117.071 +638482.921|221529.781|119.457 +638527.047|221490.642|118.936 +638532.152|221486.124|119.747 +638537.255|221481.613|120.924 +638542.177|221477.249|120.792 +638547.261|221472.750|121.539 +638557.335|221463.831|122.810 +638562.370|221459.372|123.298 +638567.427|221454.898|123.978 +638592.622|221432.583|125.968 +638602.741|221423.622|127.017 +638638.068|221392.325|129.150 +638653.234|221378.883|129.729 +638658.297|221374.394|129.729 +638663.308|221369.950|129.744 +638668.301|221365.515|129.092 +638673.382|221361.013|129.333 +638688.488|221347.611|128.815 +638693.621|221343.057|128.662 +638698.653|221338.592|128.519 +638703.731|221334.084|128.355 +638708.812|221329.576|128.242 +638713.835|221325.120|128.047 +638718.931|221320.593|127.580 +638723.933|221316.149|127.193 +638729.038|221311.617|126.855 +638734.104|221307.121|126.626 +638739.170|221302.625|126.447 +638744.288|221298.084|126.300 +638749.362|221293.582|126.255 +638754.477|221289.043|126.133 +638759.582|221284.514|125.870 +638764.639|221280.024|125.645 +638769.738|221275.498|125.325 +638774.844|221270.969|125.124 +638779.949|221266.436|124.956 +638785.106|221261.861|124.813 +638790.163|221257.375|124.660 +638795.317|221252.800|124.554 +638800.426|221248.267|124.487 +638805.534|221243.735|124.441 +638810.688|221239.163|124.337 +638815.833|221234.597|124.145 +638836.295|221216.434|123.063 +638841.467|221211.840|122.475 +638851.736|221202.724|121.783 +638872.289|221184.469|119.756 +638887.766|221170.735|119.281 +638903.256|221156.998|119.308 +638908.401|221152.435|119.302 +638923.894|221138.697|119.753 +638944.560|221120.370|119.918 +638949.751|221115.767|120.101 +638960.077|221106.611|120.061 +638970.383|221097.458|119.192 +638975.570|221092.855|119.113 +638980.801|221088.213|118.884 +638985.940|221083.657|118.973 +638991.124|221079.057|118.802 +638996.309|221074.455|118.638 +639001.442|221069.898|118.193 +639006.629|221065.295|118.116 +639011.814|221060.696|118.043 +639016.953|221056.136|117.723 +639022.138|221051.531|117.306 +639027.325|221046.928|117.120 +639032.464|221042.368|116.989 +639037.655|221037.766|116.903 +639042.843|221033.160|116.729 +639047.985|221028.597|116.550 +639053.176|221023.995|116.528 +639058.366|221019.389|116.400 +639063.459|221014.869|116.248 +639068.653|221010.261|116.031 +639073.798|221005.692|115.818 +639078.943|221001.126|115.684 +639084.091|220996.560|115.550 +639089.288|220991.948|115.367 +639094.388|220987.419|115.215 +639099.536|220982.853|115.169 +639104.687|220978.284|115.044 +639109.838|220973.712|114.922 +639114.989|220969.140|114.785 +639120.143|220964.568|114.672 +639125.249|220960.036|114.532 +639130.403|220955.464|114.456 +639135.557|220950.888|114.407 +639140.662|220946.359|114.373 +639145.820|220941.784|114.325 +639150.931|220937.249|114.166 +639156.040|220932.716|114.175 +639161.148|220928.184|114.160 +639166.257|220923.655|114.239 +639171.411|220919.083|114.349 +639176.473|220914.593|114.373 +639181.585|220910.060|114.447 +639186.700|220905.522|114.459 +639191.771|220901.023|114.328 +639196.840|220896.524|114.261 +639201.915|220892.019|114.123 +639206.990|220887.517|114.035 +639212.114|220882.973|113.983 +639217.143|220878.507|113.867 +639222.221|220874.003|113.806 +639227.259|220869.531|113.581 +639232.343|220865.017|113.444 +639237.388|220860.543|113.203 +639242.374|220856.117|113.124 +639247.462|220851.603|113.041 +639252.451|220847.177|113.017 +639257.486|220842.709|113.041 +639262.540|220838.222|112.773 +639267.536|220833.790|112.724 +639272.592|220829.304|112.499 +639282.605|220820.416|112.185 +639287.616|220815.969|111.996 +639307.730|220798.101|109.939 +639312.759|220793.636|109.679 +639317.715|220789.237|109.774 +639322.702|220784.812|109.518 +639327.691|220780.389|109.862 +639337.573|220771.632|110.600 +639342.492|220767.267|110.646 +639352.441|220758.437|110.100 +639357.446|220753.993|109.811 +639362.420|220749.574|109.317 +639367.343|220745.212|109.484 +639377.163|220736.507|110.100 +639386.923|220727.857|110.899 +639391.821|220723.510|110.856 +639396.753|220719.139|111.042 +639401.566|220714.875|111.408 +639411.335|220706.213|111.761 +639416.217|220701.882|111.987 +639430.759|220688.995|112.843 +639445.225|220676.172|113.630 +639450.114|220671.837|113.919 +639454.927|220667.567|114.005 +639459.813|220663.233|113.925 +639464.662|220658.929|113.764 +639469.530|220654.610|113.462 +639474.404|220650.279|113.124 +639479.275|220645.957|112.859 +639484.161|220641.616|112.487 +639489.043|220637.279|112.151 +639493.914|220632.951|111.563 +639498.754|220628.656|111.258 +639503.625|220624.328|110.725 +639508.545|220619.957|110.231 +639513.342|220615.696|109.951 +639518.210|220611.374|109.554 +639523.020|220607.104|109.231 +639527.814|220602.849|109.058 +639537.488|220594.260|108.524 +639542.280|220590.008|108.442 +639547.111|220585.719|108.098 +639551.881|220581.482|107.854 +639556.691|220577.215|107.732 +639561.440|220573.003|107.695 +639566.158|220568.818|107.896 +639570.867|220564.645|108.180 +639575.582|220560.466|108.439 +639580.267|220556.309|108.567 +639585.013|220552.100|108.652 +639589.695|220547.951|108.847 +639594.383|220543.794|109.021 +639599.122|220539.591|109.210 +639603.767|220535.473|109.359 +639608.467|220531.306|109.512 +639613.161|220527.142|109.713 +639617.782|220523.049|110.076 +639622.436|220518.919|110.243 +639627.097|220514.789|110.387 +639631.745|220510.668|110.637 +639636.457|220506.486|110.490 +639641.093|220502.374|110.536 +639645.763|220498.229|110.380 +639650.341|220494.175|110.826 +639654.971|220490.070|110.957 +639659.619|220485.946|110.996 +639664.255|220481.831|111.118 +639668.858|220477.750|111.167 +639673.402|220473.720|111.274 +639678.014|220469.630|111.307 +639682.619|220465.545|111.395 +639687.155|220461.522|111.603 +639700.819|220449.406|112.023 +639705.418|220445.322|111.932 +639709.996|220441.259|111.712 +639714.538|220437.229|111.709 +639723.883|220428.924|110.335 +639728.455|220424.861|109.954 +639737.340|220416.988|110.646 +639741.876|220412.961|110.524 +639746.417|220408.929|110.115 +639750.971|220404.887|109.939 +639755.494|220400.870|109.676 +639759.984|220396.883|109.335 +639764.507|220392.869|109.106 +639768.972|220388.903|108.930 +639773.380|220384.990|108.802 +639777.851|220381.021|108.631 +639782.262|220377.110|108.543 +639786.724|220373.148|108.451 +639791.140|220369.228|108.357 +639799.900|220361.453|108.070 +639804.177|220357.661|108.195 +639808.554|220353.778|108.119 +639812.876|220349.947|108.064 +639817.213|220346.097|107.951 +639830.195|220334.573|107.119 +639834.559|220330.695|106.705 +639838.839|220326.898|106.461 +639843.152|220323.066|106.083 +639847.480|220319.223|105.659 +639819.898|220341.562|107.842 +639802.903|220356.604|108.323 +639798.642|220360.374|108.360 +639794.307|220364.208|108.503 +639785.694|220371.834|108.600 +639781.387|220375.641|108.661 +639777.031|220379.497|108.725 +639772.666|220383.359|108.860 +639768.299|220387.227|109.033 +639763.885|220391.131|109.186 +639759.463|220395.051|109.417 +639755.022|220398.983|109.753 +639750.544|220402.945|110.024 +639746.143|220406.844|110.204 +639741.677|220410.797|110.457 +639737.182|220414.775|110.621 +639728.330|220422.602|110.259 +639723.865|220426.549|110.036 +639719.214|220430.679|111.133 +639710.100|220438.750|111.792 +639705.546|220442.777|111.844 +639700.980|220446.821|112.005 +639687.362|220458.867|111.840 +639682.796|220462.903|111.487 +639678.285|220466.886|111.115 +639673.682|220470.962|111.295 +639669.089|220475.025|111.152 +639664.435|220479.142|111.085 +639659.838|220483.209|110.993 +639655.239|220487.281|110.954 +639650.594|220491.392|110.899 +639641.294|220499.619|110.573 +639636.649|220503.734|110.573 +639631.913|220507.925|110.524 +639627.237|220512.064|110.445 +639622.577|220516.185|110.268 +639617.867|220520.355|110.121 +639613.146|220524.527|109.716 +639608.437|220528.697|109.597 +639603.743|220532.851|109.399 +639598.997|220537.049|109.216 +639594.258|220541.240|109.000 +639589.521|220545.431|108.796 +639584.729|220549.670|108.640 +639579.981|220553.874|108.555 +639575.147|220558.153|108.393 +639565.567|220566.626|107.835 +639560.751|220570.887|107.595 +639555.889|220575.191|107.698 +639551.022|220579.501|107.863 +639546.151|220583.820|108.091 +639541.213|220588.191|108.445 +639536.312|220592.534|108.582 +639526.455|220601.264|108.951 +639521.535|220605.626|109.308 +639516.610|220609.984|109.329 +639511.657|220614.379|109.996 +639506.704|220618.769|110.323 +639501.729|220623.176|110.816 +639496.709|220627.626|111.325 +639491.759|220632.012|111.703 +639486.751|220636.456|112.197 +639481.756|220640.882|112.609 +639476.818|220645.259|112.996 +639471.798|220649.706|113.252 +639466.827|220654.110|113.535 +639461.813|220658.551|113.809 +639456.866|220662.931|113.950 +639451.843|220667.381|113.934 +639446.923|220671.734|113.864 +639441.961|220676.120|113.325 +639436.999|220680.512|113.267 +639432.006|220684.929|113.029 +639427.138|220689.232|112.578 +639422.106|220693.686|112.279 +639412.148|220702.491|111.661 +639407.192|220706.877|111.658 +639402.169|220711.321|111.350 +639397.198|220715.717|111.027 +639392.220|220720.124|110.816 +639377.209|220733.401|109.996 +639367.178|220742.274|109.433 +639362.155|220746.718|109.271 +639357.037|220751.253|109.649 +639352.014|220755.706|110.128 +639341.867|220764.695|110.615 +639336.796|220769.185|110.594 +639331.736|220773.662|110.429 +639326.752|220778.067|109.945 +639321.714|220782.523|109.533 +639311.576|220791.496|109.600 +639306.498|220795.995|109.795 +639296.288|220805.054|111.127 +639291.152|220809.601|111.557 +639286.071|220814.103|111.972 +639281.011|220818.587|112.136 +639275.909|220823.101|112.188 +639270.788|220827.639|112.578 +639265.743|220832.105|112.599 +639260.635|220836.628|112.843 +639255.578|220841.105|113.084 +639250.446|220845.647|113.023 +639245.404|220850.109|113.081 +639240.317|220854.614|113.121 +639235.175|220859.168|113.300 +639230.131|220863.633|113.496 +639224.995|220868.181|113.642 +639219.904|220872.689|113.861 +639214.823|220877.188|113.965 +639209.739|220881.687|114.117 +639204.664|220886.179|114.139 +639199.538|220890.718|114.261 +639194.460|220895.214|114.431 +639189.336|220899.752|114.547 +639184.215|220904.284|114.626 +639179.147|220908.771|114.678 +639174.035|220913.294|114.602 +639168.975|220917.772|114.450 +639163.864|220922.292|114.386 +639158.752|220926.815|114.340 +639153.641|220931.339|114.300 +639148.532|220935.859|114.255 +639143.418|220940.388|114.392 +639138.309|220944.908|114.407 +639133.201|220949.432|114.443 +639128.044|220953.997|114.541 +639122.935|220958.518|114.568 +639117.830|220963.038|114.693 +639112.673|220967.604|114.828 +639107.567|220972.124|114.989 +639102.413|220976.684|115.017 +639097.311|220981.204|115.154 +639092.160|220985.764|115.257 +639087.008|220990.327|115.410 +639081.903|220994.844|115.629 +639076.755|220999.404|115.751 +639071.607|221003.963|115.961 +639066.507|221008.478|116.205 +639061.359|221013.037|116.409 +639056.214|221017.594|116.559 +639051.069|221022.148|116.653 +639045.924|221026.702|116.739 +639040.779|221031.255|116.858 +639035.634|221035.809|116.976 +639030.492|221040.363|117.001 +639025.350|221044.913|117.126 +639020.208|221049.467|117.312 +639015.066|221054.021|117.446 +639009.927|221058.575|117.958 +639004.788|221063.125|118.260 +638999.598|221067.719|118.360 +638994.511|221072.227|118.668 +638989.323|221076.820|118.857 +638979.039|221085.921|118.884 +638973.854|221090.512|119.183 +638958.401|221104.200|120.146 +638953.216|221108.793|120.290 +638942.923|221117.895|120.009 +638937.741|221122.485|120.360 +638932.596|221127.039|120.250 +638922.312|221136.140|120.399 +638917.149|221140.703|119.811 +638870.737|221181.744|119.528 +638850.270|221199.871|121.695 +638845.167|221204.385|121.817 +638840.028|221208.933|122.176 +638834.899|221213.477|122.658 +638829.808|221217.979|123.063 +638809.344|221236.093|124.401 +638804.236|221240.614|124.496 +638799.082|221245.173|124.642 +638793.967|221249.697|124.666 +638788.907|221254.171|124.816 +638783.799|221258.691|124.965 +638778.684|221263.215|125.090 +638773.564|221267.741|125.121 +638768.455|221272.264|125.310 +638763.447|221276.693|125.590 +638758.348|221281.207|125.944 +638753.270|221285.697|125.959 +638748.201|221290.183|126.102 +638743.141|221294.658|126.401 +638738.118|221299.102|126.544 +638733.050|221303.589|126.742 +638727.981|221308.072|126.965 +638722.961|221312.513|127.202 +638717.907|221316.988|127.629 +638712.942|221321.383|127.946 +638707.876|221325.866|128.239 +638702.899|221330.268|128.470 +638697.860|221334.724|128.568 +638692.822|221339.180|128.690 +638687.835|221343.594|128.830 +638667.813|221361.306|129.397 +638662.817|221365.725|129.568 +638657.816|221370.148|129.696 +638652.850|221374.537|129.708 +638647.803|221378.999|129.427 +638642.844|221383.385|129.562 +638637.802|221387.838|129.400 +638632.804|221392.258|129.193 +638627.796|221396.681|128.943 +638622.824|221401.073|128.608 +638617.768|221405.541|128.406 +638612.787|221409.940|128.059 +638607.764|221414.380|127.775 +638602.830|221418.739|127.434 +638597.797|221423.183|127.145 +638592.765|221427.627|126.462 +638587.779|221432.031|126.209 +638572.816|221445.242|124.755 +638567.799|221449.673|124.371 +638562.885|221454.014|124.036 +638542.872|221471.677|121.430 +638537.855|221476.106|120.844 +638532.933|221480.452|120.634 +638527.913|221484.878|119.738 +638473.881|221532.585|117.074 +638468.967|221536.919|116.580 +638459.250|221545.500|116.053 +638454.343|221549.834|116.010 +638449.515|221554.098|115.827 +638439.822|221562.660|115.647 +638435.012|221566.903|115.367 +638420.565|221579.665|115.111 +638415.719|221583.947|114.980 +638410.976|221588.138|115.202 +638397.016|221600.495|117.196 +638392.307|221604.658|117.370 +638387.646|221608.782|117.827 +638382.876|221612.995|117.680 +638368.688|221625.531|117.772 +638359.370|221633.773|118.607 +638354.710|221637.891|118.909 +638350.055|221642.006|118.964 +638345.246|221646.248|118.488 +638340.543|221650.403|118.321 +638335.907|221654.499|118.549 +638331.267|221658.599|118.772 +638326.592|221662.732|118.802 +638312.669|221675.034|118.781 +638298.706|221687.363|118.473 +638285.029|221699.454|119.244 +638253.437|221727.377|120.594 +638248.892|221731.394|120.558 +638217.495|221759.125|120.332 +638204.181|221770.884|120.259 +638199.740|221774.804|120.177 +638181.848|221790.590|118.558 +638177.364|221794.540|117.933 +638173.021|221798.377|118.156 +638168.909|221802.023|118.918 +638164.712|221805.735|119.564 +638160.445|221809.506|119.701 +638156.117|221813.328|119.592 +638151.776|221817.156|119.220 +638147.308|221821.094|118.339 +638142.885|221824.993|117.671 +638134.345|221832.533|117.427 +638130.038|221836.331|117.077 +638125.634|221840.211|116.352 +638120.803|221844.448|113.910 +638116.322|221848.392|112.706 +638112.061|221852.150|112.182 +638107.815|221855.896|111.972 +638103.758|221859.484|112.301 +638099.811|221862.980|113.087 +638095.608|221866.686|112.871 +638091.304|221870.481|112.051 +638086.711|221874.514|110.131 +638082.230|221878.449|108.472 +638078.003|221882.176|107.811 +638073.760|221885.916|107.329 +638069.624|221889.565|106.860 +638065.439|221893.256|106.421 +638061.321|221896.886|106.049 +638057.331|221900.409|105.982 +638045.154|221911.151|105.062 +638041.067|221914.756|104.690 +638037.050|221918.298|104.379 +638033.154|221921.736|104.342 +638024.928|221928.985|102.687 +638173.442|221795.518|117.866 +638177.831|221791.629|118.095 +638182.385|221787.603|119.052 +638195.817|221775.703|120.140 +638200.179|221771.835|120.101 +638231.354|221744.193|120.415 +638244.908|221732.172|120.539 +638254.001|221724.113|120.637 +638258.533|221720.096|120.652 +638285.742|221695.946|119.174 +638290.449|221691.780|119.656 +638294.804|221687.899|118.421 +638299.504|221683.739|118.647 +638313.464|221671.358|118.775 +638327.531|221658.888|118.814 +638332.231|221654.725|118.927 +638336.803|221650.662|118.391 +638341.518|221646.483|118.342 +638346.267|221642.274|118.510 +638351.073|221638.019|119.003 +638355.813|221633.816|118.881 +638360.470|221629.686|118.592 +638369.809|221621.395|117.662 +638379.380|221612.912|117.793 +638384.181|221608.657|117.836 +638388.899|221604.469|117.418 +638393.666|221600.242|117.309 +638398.519|221595.941|117.418 +638417.380|221579.192|115.071 +638422.269|221574.858|115.196 +638431.995|221566.238|115.160 +638436.911|221561.883|115.519 +638441.782|221557.567|115.599 +638451.566|221548.895|115.800 +638456.498|221544.527|116.022 +638461.490|221540.111|116.662 +638466.282|221535.853|116.038 +638471.363|221531.366|117.321 +638476.554|221526.791|119.357 +638525.931|221483.028|119.811 +638530.994|221478.550|120.674 +638536.014|221474.103|120.914 +638541.010|221469.680|121.347 +638546.176|221465.121|122.728 +638551.251|221460.631|123.463 +638556.247|221456.202|123.636 +638561.279|221451.749|124.100 +638566.348|221447.262|124.508 +638571.380|221442.806|125.051 +638581.512|221433.839|125.968 +638586.593|221429.343|126.599 +638591.643|221424.872|127.026 +638596.679|221420.412|127.349 +638601.760|221415.914|127.657 +638606.780|221411.467|127.916 +638611.855|221406.971|128.248 +638621.995|221397.991|128.922 +638626.994|221393.563|129.089 +638647.193|221375.668|129.677 +638652.253|221371.181|129.635 +638657.255|221366.746|129.543 +638662.318|221362.260|129.555 +638667.356|221357.791|129.376 +638672.355|221353.359|129.296 +638677.430|221348.858|129.022 +638682.465|221344.392|128.854 +638687.509|221339.921|128.797 +638692.551|221335.452|128.702 +638697.580|221330.996|128.516 +638702.655|221326.497|128.288 +638707.736|221321.992|128.175 +638717.867|221313.013|127.593 +638722.878|221308.569|127.279 +638733.013|221299.583|126.834 +638738.134|221295.045|126.700 +638743.196|221290.558|126.456 +638748.265|221286.066|126.334 +638753.377|221281.533|126.133 +638758.494|221277.001|126.011 +638763.545|221272.520|125.691 +638778.818|221258.984|125.099 +638783.909|221254.467|124.694 +638789.017|221249.941|124.563 +638794.135|221245.408|124.554 +638799.252|221240.873|124.602 +638804.355|221236.353|124.447 +638814.559|221227.309|124.121 +638819.689|221222.755|123.652 +638829.854|221213.739|122.722 +638834.990|221209.186|122.338 +638850.373|221195.549|121.698 +638865.690|221181.955|119.689 +638870.850|221177.386|119.835 +638886.239|221163.749|119.506 +638896.578|221154.587|119.253 +638901.696|221150.060|119.729 +638906.896|221145.455|119.915 +638912.047|221140.895|120.012 +638917.192|221136.335|120.055 +638927.485|221127.219|120.253 +638937.824|221118.062|120.427 +638942.966|221113.509|120.427 +638948.105|221108.955|120.418 +638953.301|221104.356|120.671 +638958.425|221099.805|119.973 +638963.552|221095.257|119.201 +638973.833|221086.147|119.247 +638979.018|221081.550|118.906 +638984.160|221076.997|119.064 +638989.298|221072.443|118.796 +638994.434|221067.889|118.494 +638999.622|221063.293|118.433 +639004.761|221058.736|118.138 +639009.900|221054.179|117.824 +639015.088|221049.580|117.531 +639020.181|221045.066|117.287 +639025.369|221040.466|117.123 +639030.511|221035.910|117.034 +639035.656|221031.353|116.989 +639040.798|221026.796|116.842 +639045.988|221022.197|116.891 +639051.085|221017.682|116.809 +639056.278|221013.080|116.748 +639061.423|221008.520|116.583 +639066.572|221003.957|116.303 +639071.720|220999.394|116.035 +639076.868|220994.829|115.791 +639082.016|220990.266|115.635 +639087.167|220985.703|115.486 +639092.318|220981.137|115.300 +639097.420|220976.617|115.187 +639102.623|220972.008|115.047 +639107.726|220967.485|114.965 +639112.880|220962.919|114.806 +639118.034|220958.350|114.703 +639123.142|220953.827|114.584 +639128.251|220949.300|114.520 +639133.405|220944.735|114.504 +639138.517|220940.205|114.404 +639143.674|220935.639|114.419 +639148.782|220931.113|114.422 +639153.888|220926.593|114.553 +639158.996|220922.070|114.642 +639164.105|220917.543|114.715 +639169.213|220913.023|114.840 +639174.373|220908.454|114.919 +639179.436|220903.967|114.968 +639184.554|220899.435|114.937 +639189.677|220894.897|114.788 +639194.752|220890.398|114.605 +639199.882|220885.853|114.437 +639204.957|220881.357|114.364 +639210.084|220876.813|114.236 +639215.168|220872.308|114.056 +639220.252|220867.803|113.928 +639225.391|220863.246|113.669 +639230.481|220858.735|113.480 +639235.571|220854.227|113.358 +639240.668|220849.710|113.099 +639245.703|220845.251|113.115 +639250.796|220840.737|113.011 +639255.880|220836.235|113.096 +639260.937|220831.751|112.813 +639266.051|220827.219|112.471 +639271.096|220822.750|112.468 +639276.174|220818.248|112.005 +639281.221|220813.774|111.999 +639291.374|220804.773|111.295 +639296.425|220800.293|110.682 +639306.550|220791.313|109.868 +639316.648|220782.367|109.637 +639321.668|220777.920|109.600 +639326.612|220773.546|109.963 +639346.644|220755.807|110.170 +639351.636|220751.381|109.996 +639356.672|220746.913|109.387 +639361.679|220742.475|109.134 +639366.654|220738.071|109.308 +639376.535|220729.323|109.853 +639381.495|220724.937|110.222 +639396.283|220711.846|110.838 +639401.215|220707.481|111.054 +639411.018|220698.803|111.624 +639420.786|220690.159|112.136 +639425.660|220685.846|112.517 +639440.266|220672.919|113.404 +639445.094|220668.649|113.816 +639449.953|220664.345|113.950 +639454.817|220660.042|114.078 +639459.719|220655.695|113.867 +639464.577|220651.388|113.657 +639469.445|220647.072|113.368 +639474.364|220642.714|113.127 +639479.250|220638.379|112.746 +639493.899|220625.386|111.478 +639498.760|220621.076|111.030 +639503.634|220616.751|110.496 +639508.484|220612.453|110.216 +639513.306|220608.174|109.750 +639518.243|220603.794|109.216 +639527.869|220595.259|108.622 +639532.651|220591.023|108.607 +639537.440|220586.780|108.546 +639542.216|220582.546|108.244 +639547.041|220578.267|107.960 +639551.823|220574.027|107.662 +639556.584|220569.808|107.552 +639561.309|220565.624|107.704 +639565.984|220561.484|107.869 +639575.372|220553.176|108.369 +639580.069|220549.015|108.439 +639584.754|220544.867|108.622 +639589.393|220540.761|108.786 +639594.020|220536.664|109.055 +639598.708|220532.516|109.259 +639603.350|220528.404|109.451 +639607.955|220524.326|109.582 +639621.793|220512.076|110.234 +639626.368|220508.022|110.289 +639631.026|220503.901|110.493 +639635.604|220499.848|110.579 +639640.194|220495.779|110.591 +639644.772|220491.728|110.716 +639653.928|220483.620|111.002 +639658.488|220479.578|110.972 +639663.036|220475.549|111.033 +639667.580|220471.529|111.149 +639672.174|220467.459|111.274 +639676.666|220463.482|111.426 +639681.144|220459.519|111.667 +639699.130|220443.591|112.084 +639708.155|220435.590|111.792 +639712.694|220431.566|111.539 +639717.312|220427.467|110.865 +639721.911|220423.385|110.051 +639735.109|220411.699|110.673 +639739.547|220407.767|110.524 +639744.015|220403.805|110.231 +639748.465|220399.861|110.067 +639752.922|220395.911|109.890 +639757.390|220391.951|109.661 +639761.809|220388.031|109.439 +639766.223|220384.121|109.268 +639770.588|220380.250|109.094 +639774.998|220376.345|108.991 +639783.661|220368.664|108.808 +639788.016|220364.809|108.768 +639792.378|220360.944|108.707 +639796.697|220357.116|108.616 +639805.314|220349.480|108.597 +639809.608|220345.673|108.674 +639818.219|220338.038|108.287 +639822.565|220334.179|107.915 +639826.897|220330.339|107.646 +639831.203|220326.520|107.268 +639835.498|220322.707|106.951 +639839.842|220318.851|106.433 +639844.124|220315.050|105.982 +639807.712|220344.780|108.802 +639803.415|220348.575|108.716 +639799.163|220352.330|108.427 +639794.731|220356.253|108.780 +639790.418|220360.063|108.570 +639785.998|220363.974|108.905 +639781.631|220367.835|108.994 +639777.220|220371.734|109.058 +639772.798|220375.647|109.204 +639768.332|220379.595|109.317 +639763.928|220383.490|109.402 +639759.453|220387.446|109.600 +639754.994|220391.390|109.743 +639750.520|220395.347|109.984 +639746.070|220399.282|110.121 +639741.610|220403.229|110.332 +639737.081|220407.237|110.652 +639719.220|220423.017|110.204 +639714.629|220427.086|110.972 +639709.993|220431.188|111.438 +639705.461|220435.199|111.645 +639700.877|220439.253|111.871 +639682.671|220455.347|111.978 +639678.181|220459.309|111.466 +639673.646|220463.314|111.243 +639669.141|220467.295|111.152 +639664.542|220471.361|111.036 +639659.957|220475.409|110.853 +639655.352|220479.481|110.813 +639650.749|220483.550|110.777 +639646.119|220487.640|110.621 +639641.532|220491.694|110.521 +639636.893|220495.794|110.448 +639632.266|220499.881|110.329 +639627.648|220503.962|110.170 +639622.967|220508.102|110.106 +639608.986|220520.452|109.612 +639604.350|220524.549|109.326 +639599.701|220528.657|109.155 +639594.946|220532.858|109.012 +639590.313|220536.951|108.768 +639585.626|220541.090|108.555 +639580.898|220545.266|108.283 +639576.186|220549.433|108.287 +639571.465|220553.602|108.009 +639566.731|220557.784|107.851 +639562.004|220561.960|107.653 +639557.240|220566.172|107.396 +639552.418|220570.433|107.543 +639547.647|220574.655|107.732 +639542.768|220578.971|107.988 +639537.930|220583.253|108.354 +639533.063|220587.560|108.594 +639528.210|220591.849|108.722 +639523.361|220596.137|108.878 +639513.574|220604.800|109.564 +639508.679|220609.128|109.743 +639493.832|220622.277|111.417 +639488.934|220626.611|111.758 +639483.969|220631.003|112.258 +639479.025|220635.380|112.639 +639474.078|220639.760|113.069 +639469.158|220644.113|113.313 +639464.187|220648.511|113.584 +639459.222|220652.903|113.825 +639454.272|220657.280|113.983 +639449.352|220661.630|113.895 +639444.439|220665.973|113.761 +639439.465|220670.368|113.755 +639434.618|220674.645|113.051 +639424.743|220683.365|112.420 +639419.814|220687.721|112.075 +639409.896|220696.478|111.487 +639399.935|220705.277|110.923 +639384.966|220718.509|110.515 +639379.955|220722.931|110.094 +639374.932|220727.369|109.838 +639364.907|220736.220|109.140 +639359.872|220740.671|109.070 +639354.760|220745.197|109.362 +639349.673|220749.702|109.960 +639344.574|220754.213|110.173 +639339.517|220758.684|110.475 +639334.436|220763.180|110.539 +639329.377|220767.648|110.341 +639324.335|220772.102|109.932 +639319.245|220776.594|109.512 +639314.161|220781.090|109.695 +639309.062|220785.598|109.457 +639293.675|220799.217|110.822 +639288.588|220803.719|111.222 +639278.332|220812.799|111.969 +639273.232|220817.307|111.953 +639268.063|220821.882|112.276 +639263.000|220826.362|112.548 +639257.837|220830.931|112.877 +639252.695|220835.479|112.898 +639247.590|220839.999|113.157 +639242.457|220844.537|113.084 +639237.360|220849.042|113.209 +639232.167|220853.639|113.432 +639227.025|220858.186|113.596 +639221.928|220862.697|113.880 +639216.783|220867.248|114.163 +639211.605|220871.832|114.261 +639206.469|220876.374|114.428 +639201.342|220880.909|114.520 +639196.164|220885.487|114.639 +639191.034|220890.029|114.867 +639185.858|220894.604|114.980 +639180.735|220899.139|115.138 +639175.565|220903.708|115.196 +639170.451|220908.232|115.172 +639165.287|220912.795|115.117 +639160.133|220917.351|114.931 +639154.976|220921.911|114.776 +639149.864|220926.428|114.709 +639144.707|220930.985|114.553 +639139.547|220935.548|114.556 +639134.390|220940.108|114.492 +639129.232|220944.671|114.489 +639124.121|220949.188|114.544 +639118.964|220953.751|114.636 +639113.758|220958.356|114.739 +639108.649|220962.873|114.824 +639103.492|220967.436|115.044 +639098.338|220971.996|115.099 +639093.181|220976.556|115.245 +639088.029|220981.116|115.394 +639082.875|220985.675|115.644 +639077.721|220990.232|115.806 +639072.570|220994.792|116.102 +639067.370|220999.394|116.406 +639062.268|221003.909|116.733 +639057.071|221008.505|116.925 +639051.926|221013.056|116.906 +639046.778|221017.609|117.010 +639041.584|221022.203|117.034 +639036.439|221026.750|117.016 +639031.294|221031.301|117.001 +639026.100|221035.894|117.089 +639020.955|221040.445|117.205 +639015.810|221044.996|117.394 +639010.668|221049.546|117.665 +639005.526|221054.097|118.037 +638995.193|221063.238|118.409 +638990.054|221067.786|118.592 +638984.906|221072.333|118.336 +638979.770|221076.881|118.970 +638969.493|221085.976|119.317 +638964.351|221090.524|119.384 +638948.949|221104.157|120.698 +638943.853|221108.662|120.652 +638928.411|221122.311|120.308 +638918.121|221131.410|120.402 +638912.973|221135.960|120.329 +638902.717|221145.028|120.046 +638887.297|221158.659|119.555 +638882.152|221163.213|119.750 +638871.950|221172.238|119.887 +638866.775|221176.807|119.470 +638861.630|221181.360|119.686 +638846.353|221194.897|121.652 +638831.095|221208.393|122.067 +638825.965|221212.938|122.594 +638820.914|221217.406|122.838 +638815.861|221221.890|123.847 +638810.761|221226.404|124.033 +638805.708|221230.875|124.228 +638800.606|221235.389|124.447 +638795.552|221239.861|124.666 +638780.312|221253.342|124.953 +638775.252|221257.820|125.121 +638755.020|221275.724|126.120 +638749.960|221280.201|126.389 +638744.879|221284.697|126.355 +638739.868|221289.129|126.654 +638734.802|221293.612|126.867 +638729.727|221298.102|127.010 +638724.710|221302.543|127.263 +638719.693|221306.984|127.516 +638714.618|221311.474|127.711 +638709.601|221315.915|127.995 +638704.630|221320.313|128.278 +638699.549|221324.809|128.434 +638694.559|221329.222|128.553 +638689.530|221333.672|128.775 +638684.495|221338.129|128.952 +638674.522|221346.953|129.348 +638659.571|221360.178|129.647 +638649.537|221369.051|129.623 +638644.569|221373.443|129.662 +638639.546|221377.887|129.626 +638634.559|221382.297|129.522 +638629.576|221386.702|129.482 +638624.580|221391.118|129.330 +638619.575|221395.541|129.138 +638614.601|221399.936|128.803 +638604.588|221408.781|128.077 +638599.565|221413.222|127.830 +638594.579|221417.627|127.498 +638584.602|221426.441|126.910 +638579.506|221430.940|126.178 +638574.553|221435.314|125.843 +638569.533|221439.749|125.392 +638564.550|221444.147|124.889 +638559.508|221448.600|124.319 +638554.519|221453.005|123.834 +638549.532|221457.412|123.365 +638539.507|221466.255|121.820 +638534.469|221470.702|121.079 +638529.577|221475.030|121.073 +638524.511|221479.492|119.866 +638519.467|221483.939|118.830 +638475.798|221522.573|120.418 +638470.638|221527.114|118.586 +638465.483|221531.643|116.513 +638450.914|221544.518|115.989 +638446.013|221548.849|115.675 +638441.227|221553.083|115.812 +638431.489|221561.688|115.404 +638426.676|221565.943|115.416 +638421.882|221570.179|115.260 +638417.084|221574.425|115.416 +638393.590|221595.228|117.827 +638388.829|221599.434|117.708 +638384.153|221603.573|118.083 +638379.441|221607.740|118.272 +638374.680|221611.952|118.193 +638365.247|221620.295|118.314 +638360.632|221624.379|118.836 +638355.993|221628.485|119.229 +638351.272|221632.657|119.192 +638346.520|221636.854|118.726 +638341.829|221641.000|118.616 +638337.214|221645.084|118.930 +638332.572|221649.193|119.113 +638323.273|221657.416|119.183 +638309.267|221669.794|119.009 +638304.677|221673.854|119.031 +638300.047|221677.948|118.872 +638295.484|221681.986|119.336 +638290.839|221686.092|119.409 +638286.389|221690.036|119.942 +638282.073|221693.870|121.402 +638263.815|221710.013|121.484 +638259.158|221714.124|121.119 +638240.955|221730.212|120.841 +638227.471|221742.133|120.634 +638214.020|221754.023|120.503 +638209.545|221757.979|120.454 +638205.114|221761.896|120.384 +638200.685|221765.809|120.341 +638196.238|221769.741|120.232 +638191.843|221773.628|120.134 +638183.009|221781.434|120.046 +638178.355|221785.533|118.894 +638173.868|221789.489|118.253 +638169.522|221793.333|118.464 +638165.325|221797.049|119.104 +638161.085|221800.801|119.570 +638148.149|221812.225|119.479 +638143.681|221816.166|118.830 +638139.225|221820.094|118.019 +638134.805|221823.990|117.394 +638121.927|221835.362|116.979 +638117.172|221839.538|114.855 +638112.728|221843.451|113.794 +638108.187|221847.444|112.377 +638103.786|221851.321|111.551 +638099.598|221855.019|111.377 +638095.465|221858.676|111.636 +638091.283|221862.364|111.310 +638086.811|221866.299|109.853 +638082.407|221870.176|108.902 +638078.143|221873.938|108.305 +638073.952|221877.632|107.808 +638069.770|221881.323|107.354 +638065.570|221885.026|106.854 +638061.549|221888.577|106.851 +638057.505|221892.149|106.772 +638053.518|221895.670|106.714 +638049.409|221899.297|106.418 +638045.294|221902.927|105.903 +638037.007|221910.227|104.525 +638032.971|221913.790|104.156 +638028.975|221917.317|103.955 +638172.357|221788.282|118.260 +638176.831|221784.326|118.854 +638181.394|221780.300|119.857 +638190.169|221772.533|120.165 +638194.540|221768.659|120.171 +638198.914|221764.788|120.186 +638203.337|221760.872|120.216 +638207.802|221756.922|120.448 +638212.270|221752.965|120.469 +638216.717|221749.027|120.415 +638221.192|221745.065|120.509 +638225.639|221741.130|120.732 +638230.214|221737.082|121.088 +638239.178|221729.145|120.981 +638257.268|221713.131|121.250 +638261.837|221709.089|121.466 +638266.391|221705.054|121.384 +638293.551|221680.983|119.878 +638298.011|221677.027|119.165 +638302.638|221672.928|119.061 +638307.264|221668.834|119.220 +638321.252|221656.447|119.339 +638335.318|221643.981|119.235 +638339.957|221639.866|119.064 +638344.676|221635.684|118.775 +638354.219|221627.235|119.412 +638358.943|221623.047|119.217 +638363.579|221618.929|118.558 +638377.856|221606.280|118.418 +638382.550|221602.116|118.144 +638387.290|221597.913|117.857 +638392.103|221593.652|118.004 +638411.019|221576.864|115.919 +638415.801|221572.627|115.666 +638420.580|221568.387|115.437 +638425.484|221564.044|115.657 +638430.319|221559.761|115.458 +638444.943|221546.804|115.806 +638449.798|221542.503|115.839 +638459.701|221533.740|116.550 +638464.602|221529.394|116.303 +638469.915|221524.727|119.427 +638519.360|221480.925|119.695 +638524.410|221476.459|120.448 +638529.470|221471.982|120.930 +638534.484|221467.547|121.475 +638539.641|221462.990|122.362 +638544.701|221458.519|123.328 +638549.773|221454.029|123.667 +638554.851|221449.539|124.462 +638559.868|221445.098|124.831 +638570.015|221436.122|125.724 +638575.056|221431.666|126.376 +638580.122|221427.182|126.864 +638585.166|221422.717|127.196 +638590.232|221418.230|127.327 +638595.283|221413.762|127.772 +638600.306|221409.315|128.031 +638610.480|221400.311|128.848 +638615.552|221395.824|129.165 +638620.612|221391.344|129.440 +638625.662|221386.872|129.638 +638630.688|221382.419|129.635 +638635.766|221377.920|129.674 +638640.835|221373.431|129.674 +638645.849|221368.987|129.626 +638650.912|221364.503|129.598 +638655.972|221360.019|129.571 +638661.077|221355.496|129.516 +638666.091|221351.055|129.562 +638671.193|221346.535|129.531 +638676.277|221342.027|129.336 +638686.357|221333.087|128.580 +638691.389|221328.625|128.403 +638696.525|221324.071|128.306 +638701.622|221319.557|128.327 +638706.715|221315.043|128.321 +638711.750|221310.572|127.705 +638732.086|221292.543|127.013 +638737.201|221288.004|126.840 +638742.261|221283.517|126.572 +638747.360|221278.994|126.212 +638752.481|221274.456|126.117 +638772.887|221256.357|124.935 +638778.005|221251.821|124.901 +638783.104|221247.298|124.627 +638788.218|221242.766|124.593 +638793.379|221238.191|124.554 +638808.777|221224.538|123.904 +638819.025|221215.440|122.722 +638829.254|221206.366|121.993 +638839.522|221197.256|121.149 +638844.683|221192.684|121.268 +638860.124|221178.980|119.832 +638865.272|221174.417|119.710 +638870.435|221169.845|119.939 +638880.786|221160.671|119.988 +638896.243|221146.979|120.277 +638901.391|221142.416|120.357 +638911.757|221133.242|121.140 +638922.081|221124.088|120.814 +638927.217|221119.535|120.585 +638932.371|221114.972|121.049 +638942.737|221105.779|120.579 +638947.882|221101.222|120.768 +638953.070|221096.626|120.680 +638968.514|221082.922|119.400 +638973.699|221078.326|119.278 +638978.883|221073.726|118.875 +638984.022|221069.169|118.808 +638989.210|221064.570|118.638 +638994.346|221060.016|118.388 +638999.534|221055.417|118.272 +639004.673|221050.860|117.964 +639009.860|221046.258|117.650 +639015.002|221041.698|117.406 +639020.193|221037.098|117.242 +639025.335|221032.538|117.156 +639030.477|221027.982|117.062 +639035.619|221023.425|117.248 +639040.810|221018.826|117.239 +639045.955|221014.269|117.208 +639051.097|221009.709|117.138 +639056.242|221005.149|117.089 +639061.387|221000.589|116.955 +639066.535|220996.023|116.638 +639071.683|220991.457|116.321 +639076.834|220986.888|115.928 +639081.936|220982.368|115.742 +639087.136|220977.760|115.465 +639092.291|220973.194|115.300 +639097.393|220968.671|115.169 +639102.547|220964.108|115.084 +639107.701|220959.539|114.919 +639112.807|220955.015|114.858 +639117.964|220950.447|114.693 +639123.069|220945.923|114.675 +639128.227|220941.354|114.611 +639133.332|220936.831|114.626 +639138.437|220932.311|114.745 +639143.546|220927.791|114.818 +639148.697|220923.231|115.065 +639153.754|220918.753|115.227 +639158.908|220914.191|115.382 +639163.967|220909.710|115.431 +639169.079|220905.184|115.471 +639174.194|220900.651|115.434 +639179.265|220896.162|115.352 +639184.340|220891.660|115.123 +639189.464|220887.124|115.026 +639194.539|220882.625|114.895 +639199.617|220878.130|114.785 +639204.698|220873.625|114.596 +639209.776|220869.126|114.532 +639214.860|220864.618|114.325 +639219.895|220860.158|114.212 +639224.989|220855.644|113.947 +639230.030|220851.176|113.745 +639235.129|220846.656|113.462 +639240.177|220842.184|113.249 +639245.212|220837.722|113.270 +639250.314|220833.205|113.063 +639255.304|220828.785|113.099 +639260.422|220824.247|112.651 +639265.433|220819.806|112.420 +639270.453|220815.362|112.795 +639275.570|220810.817|111.764 +639280.615|220806.349|111.831 +639285.665|220801.868|111.142 +639300.780|220788.466|109.896 +639305.843|220783.983|109.893 +639310.863|220779.536|109.826 +639315.859|220775.104|109.426 +639320.858|220770.678|109.707 +639325.841|220766.274|110.210 +639330.791|220761.894|110.505 +639335.756|220757.496|110.594 +639345.763|220748.626|109.999 +639350.774|220744.182|109.652 +639355.806|220739.720|109.109 +639360.802|220735.291|109.012 +639365.727|220730.932|109.195 +639375.560|220722.230|109.768 +639380.531|220717.832|110.033 +639385.399|220713.522|110.359 +639390.358|220709.136|110.789 +639405.101|220696.081|110.981 +639410.015|220691.732|111.414 +639419.781|220683.091|111.996 +639424.645|220678.787|112.459 +639434.323|220670.228|113.474 +639439.221|220665.894|113.694 +639444.076|220661.593|113.840 +639448.929|220657.301|114.059 +639453.860|220652.937|114.038 +639458.697|220648.654|113.998 +639463.672|220644.247|113.651 +639468.536|220639.937|113.401 +639473.407|220635.624|113.160 +639478.354|220631.241|112.724 +639483.243|220626.907|112.353 +639488.105|220622.600|111.865 +639493.009|220618.250|111.447 +639497.934|220613.886|110.914 +639502.827|220609.545|110.249 +639507.716|220605.214|109.673 +639512.534|220600.950|109.676 +639522.261|220592.333|109.058 +639527.064|220588.078|108.850 +639531.871|220583.820|108.655 +639536.705|220579.538|108.280 +639541.530|220575.261|107.997 +639546.355|220570.988|107.750 +639551.125|220566.764|107.549 +639555.871|220562.563|107.567 +639560.662|220558.324|107.628 +639565.387|220554.145|107.826 +639570.072|220549.999|107.957 +639574.851|220545.769|108.162 +639579.557|220541.605|108.195 +639584.224|220537.481|108.524 +639588.917|220533.327|108.677 +639593.587|220529.197|108.994 +639598.232|220525.088|109.173 +639626.167|220500.375|110.176 +639635.403|220492.206|110.502 +639639.990|220488.146|110.557 +639644.623|220484.047|110.667 +639649.207|220479.987|110.771 +639653.800|220475.924|110.850 +639658.403|220471.852|110.902 +639662.935|220467.840|111.066 +639667.519|220463.781|110.950 +639672.061|220459.769|111.417 +639676.526|220455.819|111.722 +639699.234|220435.721|111.673 +639703.736|220431.734|111.600 +639708.247|220427.741|111.490 +639712.807|220423.699|111.133 +639717.391|220419.633|110.396 +639726.215|220411.830|111.109 +639730.735|220407.825|110.777 +639735.139|220403.927|110.798 +639739.660|220399.922|110.509 +639744.110|220395.981|110.332 +639748.554|220392.046|110.219 +639757.426|220384.188|109.838 +639761.837|220380.283|109.679 +639766.235|220376.388|109.600 +639779.305|220364.815|109.317 +639783.667|220360.956|109.237 +639788.083|220357.039|108.896 +639796.703|220349.410|108.817 +639800.906|220345.695|109.073 +639809.468|220338.117|109.106 +639813.772|220334.307|108.930 +639818.051|220330.519|108.625 +639826.705|220322.850|107.869 +639830.981|220319.058|107.396 +639835.276|220315.254|107.104 +639839.528|220311.487|106.775 +639813.973|220331.976|108.826 +639809.590|220335.850|109.119 +639805.195|220339.736|109.237 +639800.891|220343.537|109.186 +639796.660|220347.264|108.536 +639792.171|220351.239|109.164 +639787.864|220355.040|108.917 +639783.399|220358.987|109.216 +639778.979|220362.892|109.295 +639774.556|220366.799|109.411 +639770.106|220370.731|109.439 +639765.690|220374.632|109.561 +639761.230|220378.574|109.661 +639756.759|220382.527|109.847 +639752.291|220386.474|110.030 +639747.783|220390.458|110.170 +639743.281|220394.435|110.301 +639738.770|220398.425|110.515 +639734.237|220402.433|110.847 +639716.263|220418.304|110.435 +639707.022|220426.482|111.466 +639702.456|220430.515|111.569 +639697.923|220434.520|111.508 +639693.287|220438.619|112.036 +639675.030|220454.743|111.630 +639670.452|220458.785|111.350 +639665.962|220462.744|110.865 +639661.329|220466.835|110.938 +639656.739|220470.892|110.792 +639652.078|220475.009|110.749 +639647.485|220479.069|110.661 +639642.892|220483.126|110.576 +639638.246|220487.229|110.502 +639628.953|220495.437|110.143 +639624.326|220499.525|110.030 +639619.657|220503.648|109.868 +639615.039|220507.727|109.411 +639610.442|220511.784|109.149 +639605.672|220516.002|109.375 +639600.963|220520.163|109.216 +639596.306|220524.274|109.076 +639591.627|220528.407|108.774 +639586.924|220532.562|108.628 +639582.245|220536.695|108.354 +639577.500|220540.883|108.186 +639572.763|220545.068|108.000 +639568.075|220549.210|107.835 +639563.287|220553.438|107.683 +639558.556|220557.616|107.497 +639553.798|220561.823|107.525 +639548.943|220566.114|107.555 +639544.121|220570.378|107.744 +639539.287|220574.655|108.027 +639534.404|220578.974|108.332 +639529.576|220583.244|108.628 +639524.708|220587.548|108.881 +639519.847|220591.849|109.122 +639514.976|220596.155|109.436 +639505.265|220604.745|109.942 +639500.336|220609.106|110.420 +639490.467|220617.845|111.588 +639485.502|220622.237|112.057 +639480.594|220626.578|112.481 +639475.650|220630.951|112.852 +639470.755|220635.283|113.252 +639465.833|220639.638|113.502 +639460.862|220644.034|113.755 +639455.939|220648.386|114.056 +639451.050|220652.708|114.084 +639446.131|220657.055|113.974 +639441.223|220661.389|113.782 +639436.264|220665.772|113.621 +639431.375|220670.088|113.294 +639426.507|220674.383|112.770 +639421.594|220678.717|112.209 +639416.669|220683.063|111.792 +639411.734|220687.422|111.502 +639406.763|220691.811|111.060 +639396.832|220700.580|110.624 +639386.844|220709.404|110.362 +639381.869|220713.796|110.054 +639376.843|220718.234|109.801 +639366.843|220727.067|109.286 +639361.881|220731.447|108.927 +639356.781|220735.952|108.985 +639351.755|220740.402|109.411 +639346.625|220744.944|109.914 +639341.566|220749.418|110.198 +639336.460|220753.932|110.478 +639321.275|220767.344|109.875 +639316.298|220771.736|109.280 +639300.988|220785.272|109.917 +639295.843|220789.829|110.359 +639290.746|220794.334|110.801 +639285.552|220798.933|111.338 +639280.459|220803.435|111.810 +639270.090|220812.619|113.550 +639265.049|220817.063|112.660 +639259.931|220821.586|112.923 +639254.777|220826.143|113.081 +639249.629|220830.690|113.133 +639244.478|220835.244|113.285 +639239.381|220839.749|113.368 +639234.230|220844.303|113.608 +639229.082|220848.853|113.828 +639223.934|220853.404|114.050 +639218.740|220857.997|114.291 +639213.601|220862.539|114.413 +639208.465|220867.081|114.578 +639203.278|220871.665|114.785 +639198.145|220876.200|114.876 +639192.969|220880.775|114.956 +639187.788|220885.353|115.126 +639177.482|220894.464|115.437 +639172.307|220899.039|115.614 +639167.137|220903.605|115.678 +639161.974|220908.168|115.629 +639156.808|220912.731|115.602 +639151.647|220917.287|115.462 +639146.445|220921.884|115.254 +639141.336|220926.395|115.026 +639136.130|220930.991|114.849 +639130.970|220935.548|114.779 +639125.761|220940.150|114.736 +639120.600|220944.710|114.791 +639115.391|220949.313|114.837 +639110.231|220953.872|114.919 +639105.071|220958.432|114.992 +639099.865|220963.035|115.114 +639094.705|220967.595|115.239 +639089.499|220972.194|115.407 +639084.293|220976.797|115.632 +639079.135|220981.359|115.952 +639073.932|220985.959|116.214 +639068.726|220990.561|116.583 +639063.572|220995.121|116.922 +639058.372|220999.718|117.193 +639053.176|221004.311|117.269 +639048.024|221008.862|117.370 +639042.828|221013.455|117.385 +639037.631|221018.048|117.607 +639032.483|221022.593|117.400 +639027.237|221027.226|117.202 +639022.089|221031.773|117.193 +639016.892|221036.367|117.287 +639011.698|221040.957|117.491 +639006.550|221045.508|117.766 +639001.408|221050.055|118.071 +638996.214|221054.649|118.369 +638991.014|221059.236|117.879 +638985.876|221063.784|118.628 +638980.685|221068.374|118.942 +638975.491|221072.964|119.012 +638970.352|221077.509|119.464 +638965.207|221082.056|119.381 +638949.744|221095.730|120.671 +638939.412|221104.865|120.884 +638934.267|221109.409|120.954 +638908.545|221132.138|121.503 +638903.384|221136.692|121.149 +638893.103|221145.763|120.320 +638877.677|221159.381|119.957 +638867.409|221168.446|119.848 +638862.303|221172.957|119.918 +638857.128|221177.523|119.549 +638841.866|221191.017|121.049 +638831.668|221200.029|121.536 +638826.611|221204.498|121.670 +638811.466|221217.894|123.484 +638806.366|221222.399|123.767 +638801.316|221226.864|124.045 +638796.201|221231.378|124.124 +638791.151|221235.844|124.407 +638786.085|221240.318|124.517 +638781.010|221244.799|124.502 +638775.959|221249.264|124.834 +638770.884|221253.748|124.852 +638760.847|221262.620|125.849 +638755.791|221267.089|126.145 +638750.713|221271.575|126.160 +638745.690|221276.010|126.312 +638740.627|221280.488|126.562 +638735.610|221284.919|126.806 +638730.538|221289.400|126.995 +638725.570|221293.789|127.285 +638710.482|221307.118|127.742 +638705.432|221311.583|128.254 +638700.442|221315.991|128.358 +638695.404|221320.444|128.452 +638690.402|221324.858|128.483 +638685.367|221329.308|128.644 +638680.377|221333.715|128.833 +638675.403|221338.113|129.174 +638670.419|221342.518|129.431 +638665.420|221346.931|129.577 +638660.425|221351.345|129.754 +638655.399|221355.783|129.626 +638650.385|221360.211|129.674 +638645.410|221364.600|129.641 +638640.387|221369.038|129.638 +638635.428|221373.418|129.778 +638630.448|221377.817|129.754 +638625.461|221382.218|129.702 +638620.471|221386.622|129.632 +638615.473|221391.036|129.522 +638610.453|221395.465|129.229 +638605.399|221399.918|128.699 +638595.417|221408.729|128.336 +638590.412|221413.143|127.870 +638585.428|221417.541|127.620 +638580.436|221421.946|127.327 +638560.417|221439.603|125.636 +638555.415|221444.010|125.014 +638545.369|221452.865|123.569 +638535.331|221461.710|122.329 +638530.336|221466.111|121.561 +638525.395|221470.473|121.216 +638520.341|221474.923|120.460 +638515.407|221479.273|119.881 +638461.445|221526.892|117.418 +638456.580|221531.180|116.955 +638446.781|221539.827|116.303 +638441.919|221544.116|115.928 +638437.125|221548.350|116.010 +638432.330|221552.583|116.105 +638427.466|221556.875|115.794 +638422.720|221561.066|115.928 +638417.928|221565.296|115.791 +638394.349|221586.139|117.665 +638389.698|221590.253|118.153 +638384.961|221594.435|118.180 +638380.261|221598.590|118.415 +638375.659|221602.656|118.948 +638370.895|221606.865|118.857 +638366.210|221611.001|118.955 +638361.498|221615.162|118.918 +638356.971|221619.167|119.631 +638352.213|221623.364|119.381 +638347.465|221627.555|119.201 +638342.844|221631.636|119.168 +638338.253|221635.693|119.607 +638333.599|221639.805|119.707 +638314.994|221656.228|119.573 +638310.346|221660.330|119.534 +638305.740|221664.396|119.467 +638301.098|221668.496|119.497 +638296.538|221672.525|119.701 +638287.675|221680.365|120.920 +638265.083|221700.323|122.045 +638260.529|221704.343|121.890 +638251.361|221712.433|121.609 +638242.305|221720.425|121.195 +638237.834|221724.372|121.289 +638233.396|221728.292|121.301 +638228.879|221732.278|121.210 +638219.872|221740.228|120.963 +638215.443|221744.138|120.853 +638210.932|221748.116|120.637 +638206.503|221752.023|120.561 +638202.059|221755.946|120.430 +638193.171|221763.792|120.229 +638188.782|221767.666|120.174 +638184.369|221771.558|120.024 +638179.949|221775.459|119.860 +638175.487|221779.398|119.525 +638170.976|221783.372|118.787 +638166.587|221787.246|118.583 +638162.371|221790.977|119.144 +638158.165|221794.699|119.753 +638140.910|221809.935|119.384 +638136.530|221813.800|118.894 +638132.065|221817.732|118.071 +638127.588|221821.679|117.217 +638114.777|221832.991|116.669 +638110.403|221836.843|115.891 +638105.962|221840.751|114.864 +638101.097|221845.015|112.170 +638096.653|221848.929|111.176 +638092.374|221852.702|110.655 +638088.146|221856.436|110.347 +638083.864|221860.206|109.643 +638079.581|221863.983|109.164 +638075.406|221867.668|108.692 +638067.014|221875.068|108.088 +638063.019|221878.604|108.357 +638058.962|221882.188|108.408 +638054.908|221885.770|108.491 +638050.583|221889.577|107.348 +638046.440|221893.225|106.717 +638042.289|221896.886|106.275 +638038.171|221900.519|105.760 +638033.928|221904.253|104.809 +638029.811|221907.886|104.333 +638025.784|221911.437|104.016 +638021.803|221914.948|103.681 +638168.086|221783.726|118.738 +638172.539|221779.788|119.226 +638176.980|221775.859|119.692 +638181.400|221771.945|119.845 +638185.811|221768.041|119.982 +638190.215|221764.139|120.104 +638194.622|221760.235|120.268 +638199.027|221756.333|120.192 +638203.510|221752.365|120.485 +638207.930|221748.448|120.524 +638212.438|221744.458|120.728 +638216.876|221740.529|120.881 +638221.366|221736.552|121.052 +638225.904|221732.534|121.213 +638230.372|221728.578|121.311 +638234.893|221724.573|121.442 +638239.370|221720.608|121.375 +638248.414|221712.594|121.487 +638262.123|221700.457|122.097 +638266.729|221696.379|122.271 +638271.350|221692.292|122.524 +638275.907|221688.253|122.493 +638293.783|221672.388|120.268 +638298.303|221668.377|119.592 +638302.887|221664.314|119.543 +638307.545|221660.187|119.610 +638312.184|221656.081|119.589 +638330.893|221639.521|120.021 +638335.498|221635.440|119.662 +638340.183|221631.289|119.470 +638344.855|221627.153|119.214 +638349.574|221622.974|119.244 +638354.301|221618.795|119.613 +638359.093|221614.555|119.790 +638363.619|221610.535|118.811 +638368.380|221606.323|118.860 +638373.181|221602.077|119.150 +638377.823|221597.959|118.577 +638382.568|221593.753|118.302 +638396.733|221581.204|117.464 +638406.181|221572.828|116.513 +638410.945|221568.607|116.147 +638415.737|221564.364|115.955 +638425.396|221555.811|115.791 +638430.236|221551.526|115.971 +638435.101|221547.222|115.992 +638439.917|221542.955|115.736 +638444.851|221538.593|116.248 +638459.610|221525.544|117.345 +638464.788|221520.978|118.921 +638519.168|221472.869|120.972 +638524.139|221468.470|121.146 +638529.181|221464.011|121.509 +638534.225|221459.555|122.292 +638539.346|221455.038|123.289 +638544.323|221450.637|123.639 +638559.566|221437.167|125.749 +638564.632|221432.696|126.520 +638574.672|221423.814|127.062 +638579.735|221419.340|127.532 +638584.752|221414.899|127.644 +638594.841|221405.977|128.416 +638599.907|221401.497|128.598 +638604.981|221397.010|128.903 +638610.023|221392.554|129.354 +638615.086|221388.073|129.623 +638620.124|221383.614|129.687 +638625.162|221379.158|129.748 +638630.188|221374.708|129.757 +638635.254|221370.224|129.693 +638640.277|221365.777|129.702 +638645.337|221361.296|129.626 +638650.406|221356.813|129.638 +638655.469|221352.329|129.629 +638660.537|221347.843|129.708 +638665.582|221343.377|129.559 +638670.617|221338.918|129.339 +638675.649|221334.459|129.089 +638680.712|221329.975|128.662 +638685.754|221325.513|128.550 +638690.838|221321.008|128.409 +638695.952|221316.488|128.580 +638700.972|221312.041|128.300 +638706.093|221307.505|128.083 +638711.159|221303.022|127.785 +638726.374|221289.549|127.202 +638731.492|221285.017|127.026 +638736.600|221280.494|126.724 +638746.772|221271.487|126.209 +638757.022|221262.416|126.154 +638767.151|221253.443|125.166 +638772.296|221248.886|124.810 +638777.410|221244.357|124.718 +638782.516|221239.836|124.511 +638797.881|221226.233|123.941 +638802.983|221221.716|123.722 +638808.082|221217.202|123.511 +638813.215|221212.654|123.011 +638818.321|221208.122|122.051 +638823.420|221203.611|121.777 +638828.553|221199.060|121.323 +638833.695|221194.506|120.969 +638838.831|221189.956|120.521 +638854.278|221176.282|120.012 +638864.589|221167.157|120.049 +638869.747|221162.594|120.152 +638911.035|221126.079|121.457 +638921.371|221116.932|121.475 +638926.513|221112.381|121.362 +638931.697|221107.791|121.149 +638936.836|221103.243|120.951 +638941.978|221098.692|120.969 +638947.163|221094.102|120.713 +638952.302|221089.551|120.652 +638967.752|221075.866|119.241 +638972.940|221071.273|119.144 +638978.082|221066.722|118.982 +638983.269|221062.129|118.747 +638988.415|221057.578|118.839 +638993.550|221053.027|118.485 +638998.741|221048.431|118.147 +639003.880|221043.880|117.940 +639009.022|221039.326|117.610 +639014.216|221034.730|117.449 +639019.358|221030.176|117.321 +639024.503|221025.626|117.339 +639029.648|221021.078|117.577 +639034.790|221016.530|117.882 +639039.984|221011.934|117.839 +639045.129|221007.380|117.644 +639050.274|221002.827|117.656 +639055.419|220998.270|117.488 +639060.567|220993.716|117.345 +639065.718|220989.153|116.946 +639070.869|220984.590|116.598 +639075.975|220980.067|116.190 +639081.174|220975.458|115.894 +639086.280|220970.935|115.620 +639091.434|220966.372|115.434 +639096.588|220961.806|115.291 +639101.694|220957.286|115.230 +639106.851|220952.723|115.108 +639111.959|220948.200|115.038 +639117.065|220943.680|114.971 +639122.225|220939.114|114.907 +639127.330|220934.591|114.901 +639132.439|220930.074|115.007 +639137.538|220925.563|115.282 +639142.641|220921.049|115.550 +639147.746|220916.534|115.769 +639152.854|220912.011|115.821 +639157.966|220907.491|115.885 +639163.032|220903.007|115.864 +639168.146|220898.478|115.852 +639173.218|220893.988|115.724 +639178.342|220889.450|115.550 +639183.420|220884.954|115.309 +639188.495|220880.461|115.221 +639193.573|220875.965|115.099 +639198.651|220871.467|114.956 +639203.729|220866.971|114.879 +639208.816|220862.466|114.700 +639213.903|220857.961|114.492 +639218.941|220853.499|114.340 +639223.986|220849.033|114.117 +639229.079|220844.522|113.928 +639234.123|220840.054|113.749 +639239.174|220835.582|113.535 +639244.225|220831.108|113.343 +639249.275|220826.637|113.160 +639254.320|220822.171|113.157 +639259.318|220817.745|113.102 +639264.399|220813.241|112.526 +639279.502|220799.866|111.807 +639299.726|220781.941|109.856 +639304.691|220777.548|109.884 +639319.657|220764.299|109.786 +639329.596|220755.511|110.560 +639349.576|220737.812|109.301 +639354.596|220733.361|108.911 +639359.537|220728.991|108.927 +639364.468|220724.629|109.061 +639379.239|220711.562|109.807 +639384.177|220707.194|109.942 +639389.051|220702.884|110.237 +639393.988|220698.517|110.414 +639398.874|220694.195|110.630 +639403.775|220689.854|110.701 +639408.680|220685.523|111.264 +639413.511|220681.253|111.600 +639418.403|220676.922|111.813 +639423.249|220672.642|112.496 +639428.102|220668.354|113.102 +639432.936|220664.080|113.471 +639437.825|220659.755|113.767 +639442.683|220655.457|113.928 +639447.548|220651.154|114.053 +639452.422|220646.838|114.096 +639457.323|220642.497|113.941 +639462.248|220638.133|113.599 +639467.119|220633.817|113.325 +639472.051|220629.446|112.974 +639476.885|220625.160|112.660 +639481.820|220620.786|112.346 +639486.727|220616.437|111.901 +639491.646|220612.075|111.368 +639496.554|220607.723|110.972 +639506.405|220598.984|109.603 +639511.154|220594.784|109.771 +639516.079|220590.419|109.369 +639520.938|220586.112|109.103 +639525.763|220581.836|108.759 +639530.633|220577.517|108.457 +639535.455|220573.247|108.192 +639540.290|220568.961|107.857 +639545.118|220564.685|107.601 +639549.946|220560.405|107.360 +639554.740|220556.160|107.384 +639559.529|220551.923|107.494 +639564.268|220547.726|107.585 +639568.999|220543.541|107.771 +639573.720|220539.362|108.027 +639578.463|220535.165|108.165 +639583.193|220530.980|108.405 +639587.872|220526.841|108.680 +639592.566|220522.686|108.850 +639597.318|220518.480|109.000 +639606.693|220510.183|109.201 +639616.036|220501.914|109.679 +639620.690|220497.799|109.911 +639625.372|220493.654|109.963 +639630.038|220489.524|110.134 +639634.650|220485.443|110.344 +639639.331|220481.297|110.463 +639643.974|220477.189|110.542 +639648.607|220473.089|110.673 +639653.200|220469.020|110.758 +639657.891|220464.866|110.600 +639662.423|220460.858|111.082 +639666.995|220456.813|111.347 +639671.531|220452.802|111.560 +639676.029|220448.821|111.975 +639694.351|220432.596|111.697 +639698.950|220428.524|111.645 +639703.507|220424.486|111.560 +639708.015|220420.496|111.490 +639717.150|220412.394|110.743 +639726.154|220404.427|111.078 +639730.577|220400.510|110.993 +639735.106|220396.499|110.923 +639739.590|220392.524|110.569 +639744.085|220388.544|110.438 +639748.538|220384.596|110.280 +639753.031|220380.616|110.195 +639757.494|220376.662|110.030 +639761.898|220372.761|109.920 +639766.299|220368.863|109.829 +639770.697|220364.970|109.795 +639775.059|220361.105|109.679 +639783.773|220353.385|109.561 +639788.147|220349.511|109.448 +639796.871|220341.784|109.143 +639809.694|220330.439|109.451 +639814.022|220326.605|109.158 +639818.374|220322.746|108.765 +639822.684|220318.927|108.360 +639826.979|220315.120|108.034 +639835.638|220307.448|107.131 +639811.434|220327.160|109.231 +639807.112|220330.973|109.469 +639802.817|220334.765|109.609 +639798.514|220338.562|109.564 +639794.304|220342.269|109.061 +639789.933|220346.124|109.356 +639785.602|220349.944|109.231 +639781.183|220353.848|109.564 +639776.760|220357.750|109.655 +639772.410|220361.587|109.673 +639768.000|220365.479|109.753 +639763.590|220369.372|109.847 +639759.188|220373.258|109.920 +639754.775|220377.150|110.067 +639750.315|220381.088|110.201 +639745.820|220385.054|110.280 +639741.312|220389.031|110.426 +639736.807|220393.009|110.597 +639732.341|220396.950|110.838 +639727.791|220400.967|111.008 +639723.295|220404.936|111.194 +639714.343|220412.824|110.548 +639709.658|220416.966|111.240 +639705.117|220420.977|111.481 +639700.572|220424.986|111.453 +639695.985|220429.033|111.685 +639691.385|220433.093|111.734 +639673.052|220449.266|111.716 +639668.449|220453.320|111.264 +639663.901|220457.331|111.121 +639659.326|220461.367|110.865 +639654.718|220465.426|110.502 +639650.030|220469.566|110.630 +639645.437|220473.616|110.527 +639640.791|220477.716|110.451 +639636.110|220481.846|110.289 +639631.440|220485.964|110.082 +639626.816|220490.042|109.920 +639612.753|220502.445|109.152 +639608.065|220506.581|109.152 +639603.356|220510.729|108.643 +639598.580|220514.947|108.927 +639593.870|220519.105|108.796 +639589.119|220523.296|108.622 +639584.376|220527.481|108.427 +639579.652|220531.644|108.110 +639574.860|220535.869|107.909 +639570.123|220540.048|107.710 +639565.323|220544.284|107.625 +639560.537|220548.506|107.451 +639555.795|220552.688|107.354 +639550.967|220556.949|107.171 +639546.136|220561.213|107.375 +639541.247|220565.532|107.671 +639536.394|220569.818|107.744 +639531.520|220574.124|108.338 +639526.598|220578.471|108.591 +639521.721|220582.781|108.914 +639516.808|220587.121|109.173 +639511.885|220591.471|109.515 +639506.996|220595.790|110.012 +639497.112|220604.525|110.774 +639492.192|220608.872|111.213 +639487.209|220613.276|111.792 +639482.246|220617.662|112.249 +639477.303|220622.030|112.590 +639472.362|220626.395|112.926 +639467.439|220630.741|113.148 +639462.507|220635.100|113.471 +639457.481|220639.538|113.764 +639452.571|220643.875|113.971 +639447.581|220648.279|114.023 +639442.711|220652.574|113.904 +639437.749|220656.954|113.764 +639432.850|220661.273|113.489 +639427.922|220665.620|113.087 +639418.092|220674.279|111.996 +639413.224|220678.570|111.508 +639408.247|220682.957|111.118 +639403.318|220687.303|110.783 +639398.341|220691.692|110.417 +639393.397|220696.051|110.243 +639388.414|220700.449|110.012 +639383.479|220704.799|109.765 +639378.480|220709.212|109.731 +639368.528|220717.987|109.186 +639363.551|220722.376|108.945 +639358.519|220726.817|108.796 +639353.523|220731.228|108.832 +639348.442|220735.718|109.301 +639343.352|220740.216|109.920 +639338.298|220744.679|110.137 +639318.206|220762.409|109.804 +639313.149|220766.862|108.960 +639303.005|220775.823|109.603 +639287.726|220789.314|110.042 +639282.629|220793.819|110.518 +639277.521|220798.339|111.234 +639267.191|220807.483|113.063 +639262.101|220811.973|112.898 +639257.041|220816.444|113.047 +639251.893|220820.989|113.060 +639246.785|220825.503|113.285 +639241.682|220830.008|113.438 +639236.531|220834.558|113.633 +639231.475|220839.027|113.874 +639226.330|220843.568|114.014 +639221.182|220848.119|114.279 +639216.082|220852.624|114.565 +639210.940|220857.168|114.782 +639205.801|220861.707|114.934 +639200.669|220866.239|115.004 +639195.536|220870.772|115.138 +639190.403|220875.307|115.324 +639185.273|220879.836|115.419 +639180.094|220884.411|115.568 +639174.959|220888.950|115.934 +639169.786|220893.516|116.022 +639164.620|220898.079|116.010 +639159.499|220902.599|116.035 +639154.287|220907.201|116.044 +639149.172|220911.719|116.004 +639144.009|220916.272|115.931 +639138.806|220920.866|115.693 +639128.495|220929.961|115.199 +639123.338|220934.512|115.038 +639118.177|220939.068|115.065 +639112.968|220943.671|115.166 +639107.808|220948.228|115.221 +639102.648|220952.784|115.312 +639097.442|220957.381|115.315 +639092.233|220961.980|115.443 +639087.075|220966.537|115.678 +639081.869|220971.136|115.894 +639076.660|220975.739|116.217 +639071.503|220980.296|116.553 +639066.300|220984.895|116.952 +639061.097|220989.495|117.376 +639055.943|220994.045|117.656 +639050.746|220998.639|117.738 +639045.546|221003.229|117.894 +639040.398|221007.776|118.077 +639035.153|221012.406|118.065 +639029.956|221016.994|117.924 +639024.808|221021.535|117.601 +639019.611|221026.119|117.360 +639014.414|221030.710|117.412 +639009.217|221035.300|117.580 +639004.023|221039.887|117.802 +638998.827|221044.478|118.055 +638993.685|221049.022|118.372 +638988.442|221053.652|118.659 +638983.251|221058.239|118.945 +638978.054|221062.827|118.827 +638972.864|221067.414|119.131 +638967.670|221072.001|119.302 +638962.525|221076.546|119.366 +638957.300|221081.169|120.466 +638952.110|221085.754|120.619 +638946.965|221090.298|120.652 +638941.777|221094.882|120.930 +638936.583|221099.467|121.000 +638931.441|221104.008|121.170 +638926.250|221108.592|121.338 +638921.057|221113.180|121.442 +638895.255|221135.957|121.268 +638890.046|221140.557|121.006 +638884.923|221145.074|120.539 +638879.762|221149.628|120.351 +638874.550|221154.230|120.146 +638864.284|221163.295|120.171 +638854.019|221172.360|120.256 +638838.553|221186.021|120.655 +638833.442|221190.535|120.735 +638823.207|221199.584|121.518 +638807.948|221213.078|123.161 +638802.861|221217.577|123.670 +638792.641|221226.605|124.002 +638782.522|221235.545|124.417 +638767.266|221249.020|124.776 +638742.032|221271.322|126.450 +638731.998|221280.189|126.965 +638726.975|221284.627|127.157 +638706.861|221302.397|127.864 +638701.890|221306.789|128.193 +638696.858|221311.236|128.370 +638691.816|221315.689|128.489 +638686.823|221320.100|128.595 +638681.828|221324.510|128.723 +638676.841|221328.917|128.928 +638671.809|221333.364|129.208 +638666.874|221337.726|129.485 +638661.827|221342.182|129.641 +638656.859|221346.572|129.610 +638651.848|221350.997|129.671 +638646.834|221355.423|129.735 +638641.859|221359.815|129.708 +638636.839|221364.250|129.748 +638631.874|221368.636|129.857 +638626.891|221373.034|129.839 +638621.910|221377.433|129.845 +638616.927|221381.831|129.848 +638611.910|221386.260|129.583 +638606.908|221390.673|129.467 +638601.921|221395.071|129.092 +638596.932|221399.473|128.708 +638591.970|221403.853|128.601 +638586.986|221408.248|128.348 +638577.004|221417.057|127.769 +638572.048|221421.427|127.394 +638552.022|221439.085|125.425 +638546.972|221443.532|124.493 +638541.973|221447.939|123.978 +638536.965|221452.356|123.432 +638532.018|221456.720|122.984 +638526.971|221461.164|122.216 +638521.939|221465.596|121.219 +638516.998|221469.955|120.920 +638511.929|221474.417|120.113 +638462.947|221517.644|119.351 +638457.787|221522.176|117.260 +638452.916|221526.471|117.104 +638438.292|221539.370|116.355 +638433.434|221543.662|116.348 +638423.832|221552.135|116.202 +638418.989|221556.411|116.376 +638414.192|221560.645|116.211 +638409.461|221564.824|116.477 +638404.685|221569.042|116.793 +638399.997|221573.188|117.342 +638381.206|221589.790|118.848 +638376.457|221593.984|118.817 +638371.791|221598.108|119.287 +638367.051|221602.293|119.345 +638362.296|221606.490|119.348 +638357.706|221610.547|119.994 +638352.908|221614.778|119.509 +638348.199|221618.935|119.531 +638343.594|221623.004|119.857 +638338.903|221627.147|120.018 +638334.261|221631.243|120.189 +638329.542|221635.407|119.963 +638315.555|221647.754|120.018 +638306.289|221655.929|119.832 +638301.696|221659.986|119.838 +638297.081|221664.058|120.027 +638292.573|221668.045|120.497 +638288.102|221672.001|121.161 +638261.060|221695.882|122.356 +638247.399|221707.934|121.999 +638238.392|221715.883|121.835 +638229.388|221723.823|121.524 +638224.840|221727.834|121.301 +638220.335|221731.809|121.052 +638215.791|221735.814|120.637 +638211.289|221739.786|120.457 +638206.845|221743.705|120.302 +638202.392|221747.631|120.140 +638197.954|221751.548|120.052 +638193.562|221755.425|119.948 +638189.154|221759.311|119.808 +638184.747|221763.200|119.674 +638180.336|221767.090|119.552 +638175.935|221770.976|119.479 +638171.555|221774.835|119.296 +638167.163|221778.706|119.076 +638162.847|221782.513|118.970 +638158.653|221786.219|119.637 +638154.389|221789.983|119.781 +638150.109|221793.757|119.649 +638145.860|221797.506|119.887 +638141.596|221801.267|119.857 +638137.274|221805.077|119.601 +638132.952|221808.881|119.144 +638124.195|221816.589|117.812 +638119.806|221820.451|117.141 +638098.168|221839.498|114.011 +638093.401|221843.674|111.536 +638089.085|221847.472|110.877 +638084.821|221851.227|110.435 +638080.606|221854.939|109.996 +638076.399|221858.643|109.622 +638072.318|221862.245|109.737 +638068.356|221865.744|110.115 +638064.131|221869.460|109.503 +638060.114|221873.008|109.695 +638056.142|221876.510|109.878 +638052.003|221880.158|109.634 +638047.888|221883.780|109.088 +638043.365|221887.748|107.214 +638039.229|221891.390|106.625 +638035.108|221895.018|106.113 +638030.893|221898.721|105.065 +638026.784|221902.336|104.431 +638022.770|221905.875|104.163 +638018.786|221909.386|104.028 +638014.769|221912.922|103.577 +638010.919|221916.317|103.550 +638166.416|221777.368|119.119 +638170.787|221773.503|119.250 +638175.210|221769.592|119.409 +638179.620|221765.691|119.521 +638184.024|221761.795|119.640 +638188.429|221757.900|119.759 +638192.885|221753.959|119.899 +638197.277|221750.073|120.015 +638201.736|221746.132|120.198 +638206.220|221742.163|120.287 +638210.667|221738.231|120.454 +638215.108|221734.305|120.625 +638219.649|221730.288|120.783 +638224.151|221726.307|121.033 +638228.760|221722.238|121.539 +638237.794|221714.246|121.777 +638242.324|221710.244|121.981 +638246.899|221706.197|122.182 +638260.660|221694.029|122.819 +638283.304|221673.982|121.716 +638287.754|221670.038|121.198 +638292.283|221666.027|120.841 +638296.807|221662.016|120.195 +638301.434|221657.922|120.091 +638306.015|221653.868|120.037 +638310.687|221649.735|120.207 +638329.341|221633.224|120.073 +638343.417|221620.767|120.146 +638348.047|221616.664|119.677 +638352.759|221612.492|119.698 +638357.535|221608.273|120.064 +638362.275|221604.076|119.982 +638367.008|221599.885|119.887 +638371.632|221595.786|119.186 +638376.341|221591.616|118.964 +638404.712|221566.482|116.973 +638409.485|221562.255|116.659 +638414.201|221558.076|116.321 +638433.650|221540.870|116.541 +638458.074|221519.265|117.345 +638463.228|221514.730|119.424 +638507.406|221475.630|118.945 +638512.581|221471.067|120.543 +638517.629|221466.611|121.228 +638522.643|221462.182|121.707 +638527.791|221457.638|122.862 +638532.789|221453.221|123.316 +638537.822|221448.774|123.645 +638542.894|221444.294|124.346 +638547.981|221439.801|125.176 +638578.290|221413.018|128.089 +638583.368|221408.525|128.312 +638588.327|221404.139|128.364 +638593.439|221399.622|128.912 +638598.450|221395.190|129.065 +638603.515|221390.710|129.275 +638608.593|221386.223|129.607 +638613.659|221381.742|129.900 +638618.688|221377.292|129.872 +638623.779|221372.787|129.976 +638628.796|221368.346|129.876 +638633.874|221363.857|129.891 +638638.927|221359.382|129.726 +638643.953|221354.935|129.769 +638649.010|221350.461|129.671 +638654.070|221345.980|129.626 +638659.145|221341.494|129.732 +638664.229|221336.992|129.485 +638669.264|221332.532|129.251 +638674.345|221328.034|128.967 +638679.383|221323.571|128.806 +638684.473|221319.066|128.665 +638689.564|221314.561|128.559 +638694.654|221310.056|128.443 +638704.804|221301.068|127.980 +638720.080|221287.544|127.410 +638725.198|221283.011|127.175 +638730.322|221278.476|127.032 +638740.548|221269.420|126.498 +638760.981|221251.327|125.374 +638786.609|221228.632|124.093 +638812.319|221205.857|122.039 +638817.418|221201.343|121.719 +638822.542|221196.799|121.027 +638827.708|221192.230|121.064 +638838.041|221183.076|120.287 +638853.559|221169.345|120.058 +638869.088|221155.605|120.320 +638874.255|221151.036|120.597 +638879.473|221146.427|120.948 +638884.673|221141.825|120.930 +638889.839|221137.259|121.317 +638900.245|221128.054|121.640 +638905.402|221123.494|121.890 +638910.590|221118.901|121.667 +638920.926|221109.754|121.460 +638931.304|221100.564|121.119 +638936.492|221095.971|120.881 +638941.631|221091.420|120.640 +638946.824|221086.827|120.652 +638952.015|221082.233|120.396 +638957.200|221077.640|119.982 +638962.385|221073.046|119.439 +638967.523|221068.493|119.223 +638972.714|221063.896|118.906 +638977.911|221059.300|119.098 +638983.102|221054.704|118.775 +638988.247|221050.153|118.644 +638993.435|221045.557|118.330 +638998.628|221040.957|118.040 +639003.773|221036.403|117.808 +639008.967|221031.804|117.626 +639014.112|221027.250|117.531 +639019.260|221022.696|117.598 +639024.457|221018.103|117.824 +639029.602|221013.552|118.180 +639034.796|221008.959|118.400 +639039.944|221004.405|118.378 +639045.092|220999.849|118.177 +639050.289|220995.249|118.043 +639055.437|220990.689|117.863 +639060.588|220986.130|117.540 +639065.742|220981.564|117.098 +639070.945|220976.955|116.665 +639076.051|220972.432|116.361 +639081.205|220967.869|116.083 +639086.411|220963.260|115.858 +639091.516|220958.740|115.663 +639096.674|220954.177|115.544 +639101.831|220949.614|115.452 +639106.887|220945.137|115.422 +639112.048|220940.574|115.324 +639117.205|220936.008|115.260 +639122.313|220931.488|115.288 +639127.419|220926.974|115.471 +639132.518|220922.466|115.797 +639137.624|220917.952|115.983 +639142.732|220913.435|116.160 +639147.795|220908.957|116.175 +639152.903|220904.437|116.254 +639158.018|220899.914|116.312 +639163.084|220895.430|116.284 +639168.198|220890.904|116.288 +639173.224|220886.457|116.169 +639178.305|220881.961|115.919 +639183.383|220877.465|115.742 +639188.464|220872.963|115.501 +639193.545|220868.467|115.394 +639198.578|220864.011|115.224 +639203.662|220859.515|115.129 +639208.700|220855.056|114.953 +639213.787|220850.551|114.794 +639218.835|220846.083|114.532 +639223.882|220841.611|114.242 +639228.930|220837.146|114.059 +639233.983|220832.672|113.791 +639239.031|220828.203|113.645 +639244.087|220823.726|113.374 +639249.080|220819.309|113.401 +639259.138|220810.406|113.157 +639264.174|220805.947|112.639 +639279.264|220792.581|111.456 +639284.315|220788.104|110.841 +639294.392|220779.170|109.436 +639314.316|220761.543|109.530 +639334.119|220744.033|110.265 +639339.121|220739.604|110.036 +639349.125|220730.743|109.109 +639354.035|220726.394|108.896 +639359.034|220721.971|108.838 +639378.703|220704.579|109.646 +639383.598|220700.248|109.743 +639388.535|220695.883|109.926 +639393.360|220691.619|110.277 +639403.187|220682.926|110.716 +639408.055|220678.625|111.176 +639412.868|220674.376|111.709 +639417.732|220670.076|112.206 +639422.548|220665.824|112.718 +639427.367|220661.566|113.227 +639432.198|220657.295|113.614 +639437.060|220652.998|113.758 +639441.961|220648.663|113.977 +639446.786|220644.393|114.023 +639451.672|220640.074|114.014 +639456.536|220635.767|113.761 +639461.453|220631.415|113.523 +639466.314|220627.111|113.346 +639471.191|220622.792|113.060 +639476.074|220618.470|112.776 +639480.966|220614.139|112.432 +639485.913|220609.753|111.676 +639490.808|220605.415|110.990 +639495.661|220601.124|111.051 +639500.531|220596.811|110.621 +639505.408|220592.492|110.164 +639510.334|220588.130|109.747 +639515.150|220583.866|109.426 +639520.029|220579.544|109.027 +639524.906|220575.225|108.701 +639529.725|220570.958|108.433 +639534.626|220566.617|107.970 +639539.445|220562.350|107.768 +639544.289|220558.061|107.418 +639549.129|220553.779|107.128 +639553.859|220549.594|107.265 +639558.642|220545.367|107.439 +639563.381|220541.176|107.546 +639568.112|220536.991|107.747 +639572.906|220532.754|107.884 +639577.579|220528.624|108.168 +639582.315|220524.436|108.387 +639587.049|220520.251|108.637 +639591.776|220516.072|108.628 +639596.473|220511.915|108.488 +639605.861|220503.615|108.972 +639624.533|220487.107|109.844 +639633.860|220478.862|110.298 +639643.059|220470.730|110.646 +639647.756|220466.573|110.429 +639661.518|220454.405|111.200 +639666.154|220450.308|111.414 +639670.714|220446.279|111.786 +639698.179|220421.980|111.716 +639711.914|220409.822|110.950 +639716.388|220405.865|111.112 +639725.337|220397.950|111.219 +639729.879|220393.932|111.075 +639734.377|220389.949|110.896 +639738.867|220385.974|110.792 +639743.378|220381.981|110.603 +639752.266|220374.117|110.426 +639756.680|220370.210|110.259 +639761.130|220366.275|110.204 +639774.319|220354.604|110.118 +639778.680|220350.745|110.039 +639783.048|220346.880|109.954 +639791.747|220339.181|109.759 +639808.898|220324.008|109.750 +639813.260|220320.143|109.301 +639817.603|220316.297|108.975 +639821.910|220312.484|108.594 +639830.557|220304.821|107.720 +639834.861|220301.008|107.171 +639812.092|220319.595|109.341 +639803.500|220327.190|109.838 +639799.227|220330.961|109.868 +639790.671|220338.514|109.771 +639782.057|220346.121|110.042 +639777.696|220349.971|110.073 +639773.331|220353.827|110.146 +639764.635|220361.505|110.192 +639760.234|220365.391|110.231 +639755.832|220369.277|110.298 +639751.422|220373.172|110.429 +639746.972|220377.101|110.515 +639742.528|220381.027|110.594 +639738.066|220384.968|110.783 +639733.615|220388.900|110.935 +639729.123|220392.866|111.054 +639724.581|220396.877|111.167 +639720.098|220400.836|111.280 +639715.672|220404.741|111.088 +639711.207|220408.682|110.868 +639702.026|220416.796|111.539 +639697.454|220420.831|111.661 +639665.453|220449.080|111.356 +639660.866|220453.128|111.133 +639647.028|220465.332|110.719 +639642.383|220469.432|110.618 +639628.447|220481.715|109.771 +639623.777|220485.836|109.576 +639586.019|220519.141|108.610 +639581.240|220523.354|108.299 +639576.497|220527.536|108.091 +639571.715|220531.751|107.826 +639566.923|220535.979|107.656 +639562.150|220540.185|107.363 +639557.334|220544.434|107.393 +639552.506|220548.692|107.171 +639547.718|220552.916|107.067 +639542.768|220557.290|107.400 +639537.906|220561.585|107.854 +639532.965|220565.947|108.174 +639528.094|220570.250|108.402 +639523.154|220574.615|108.786 +639518.222|220578.968|109.119 +639513.336|220583.287|109.545 +639508.362|220587.679|109.893 +639503.387|220592.074|110.277 +639498.462|220596.427|110.707 +639488.568|220605.159|111.170 +639478.577|220613.992|112.575 +639473.587|220618.403|112.889 +639468.652|220622.758|113.163 +639463.623|220627.196|113.416 +639458.710|220631.537|113.605 +639453.699|220635.959|113.764 +639448.743|220640.336|113.928 +639443.802|220644.698|113.974 +639438.831|220649.081|113.867 +639433.884|220653.443|113.557 +639428.928|220657.814|113.374 +639423.993|220662.163|112.980 +639409.201|220675.193|111.328 +639404.220|220679.582|110.966 +639399.331|220683.889|110.213 +639384.351|220697.099|109.664 +639379.355|220701.507|109.536 +639364.353|220714.738|108.945 +639359.323|220719.173|108.741 +639354.270|220723.632|108.808 +639349.216|220728.094|108.927 +639344.123|220732.596|109.530 +639333.994|220741.539|110.167 +639308.793|220763.762|108.957 +639303.719|220768.243|108.994 +639298.638|220772.726|109.100 +639283.239|220786.336|111.203 +639272.982|220795.394|112.478 +639267.837|220799.939|113.112 +639257.669|220808.909|113.316 +639247.465|220817.907|113.432 +639242.368|220822.403|113.468 +639237.263|220826.908|113.669 +639232.157|220831.410|113.861 +639227.058|220835.912|114.078 +639221.904|220840.459|114.376 +639216.799|220844.961|114.700 +639211.699|220849.463|114.986 +639206.563|220853.992|115.087 +639201.427|220858.525|115.242 +639196.337|220863.014|115.410 +639191.204|220867.544|115.586 +639186.072|220872.073|115.742 +639180.939|220876.599|115.925 +639175.806|220881.129|116.144 +639170.725|220885.612|116.382 +639165.552|220890.172|116.440 +639160.435|220894.683|116.419 +639155.317|220899.197|116.425 +639150.157|220903.748|116.288 +639145.039|220908.259|116.327 +639139.876|220912.810|116.288 +639134.719|220917.357|116.117 +639129.613|220921.856|115.821 +639124.459|220926.398|115.583 +639119.302|220930.942|115.394 +639114.191|220935.450|115.398 +639109.030|220940.001|115.462 +639103.867|220944.555|115.553 +639098.710|220949.105|115.611 +639093.549|220953.653|115.681 +639088.389|220958.207|115.864 +639083.232|220962.757|116.071 +639078.072|220967.308|116.291 +639072.914|220971.859|116.528 +639067.757|220976.409|116.864 +639062.551|220981.009|117.376 +639057.446|220985.517|117.824 +639052.246|220990.104|118.031 +639047.095|220994.649|118.235 +639041.944|220999.190|118.357 +639036.796|221003.735|118.586 +639031.599|221008.316|118.494 +639026.499|221012.809|118.241 +639021.303|221017.387|117.952 +639016.151|221021.925|117.680 +639011.003|221026.464|117.586 +639005.806|221031.048|117.708 +639000.658|221035.590|117.915 +638995.510|221040.131|118.107 +638990.316|221044.712|118.363 +638985.126|221049.296|118.638 +638980.026|221053.792|118.817 +638974.836|221058.373|119.162 +638969.633|221062.958|118.695 +638964.497|221067.496|119.445 +638959.303|221072.077|119.558 +638954.158|221076.613|119.771 +638949.025|221081.148|120.424 +638943.834|221085.729|120.600 +638938.689|221090.265|120.771 +638933.544|221094.803|120.856 +638928.360|221099.381|121.289 +638923.215|221103.920|121.335 +638912.876|221113.036|121.649 +638907.728|221117.578|121.634 +638897.441|221126.652|122.021 +638892.323|221131.160|121.524 +638887.172|221135.701|121.515 +638882.006|221140.252|121.183 +638876.839|221144.806|120.850 +638871.679|221149.353|120.692 +638846.024|221171.973|120.460 +638840.870|221176.520|120.640 +638835.743|221181.037|120.335 +638825.499|221190.078|121.012 +638815.279|221199.094|121.237 +638805.126|221208.064|122.713 +638784.774|221226.026|123.972 +638779.718|221230.488|124.255 +638754.440|221252.797|125.819 +638729.212|221275.056|127.029 +638724.189|221279.488|127.224 +638719.151|221283.929|127.269 +638704.072|221297.233|127.888 +638699.058|221301.659|128.275 +638694.078|221306.054|128.467 +638689.052|221310.489|128.754 +638684.041|221314.909|128.653 +638679.054|221319.307|128.864 +638659.093|221336.918|129.671 +638654.030|221341.381|129.677 +638649.068|221345.758|129.726 +638644.051|221350.180|129.772 +638639.086|221354.557|129.839 +638634.111|221358.943|129.839 +638629.149|221363.323|129.973 +638624.175|221367.709|129.997 +638619.188|221372.108|129.946 +638614.211|221376.497|129.997 +638609.194|221380.916|129.735 +638604.241|221385.281|129.616 +638599.242|221389.689|129.559 +638594.252|221394.084|129.165 +638589.299|221398.449|129.126 +638584.343|221402.813|128.669 +638579.296|221407.260|128.300 +638574.361|221411.607|128.074 +638569.369|221416.005|127.812 +638549.413|221433.574|125.569 +638544.427|221437.963|125.121 +638539.398|221442.389|124.365 +638534.457|221446.741|123.941 +638529.510|221451.100|123.478 +638524.478|221455.529|122.813 +638519.515|221459.899|122.326 +638514.498|221464.316|121.469 +638509.503|221468.714|120.792 +638504.358|221473.231|119.104 +638460.652|221511.795|119.500 +638455.458|221516.348|117.184 +638450.630|221520.613|117.281 +638445.808|221524.862|117.129 +638441.011|221529.095|117.153 +638431.349|221537.614|116.833 +638426.530|221541.866|116.790 +638421.793|221546.048|116.943 +638416.926|221550.343|116.949 +638412.143|221554.555|116.571 +638407.425|221558.722|116.903 +638402.713|221562.885|117.281 +638374.543|221587.760|119.314 +638369.877|221591.878|119.488 +638365.219|221595.990|119.707 +638360.589|221600.080|120.116 +638355.847|221604.262|119.899 +638351.189|221608.368|119.912 +638346.526|221612.486|120.168 +638341.911|221616.561|120.442 +638337.193|221620.721|120.451 +638323.254|221633.017|120.341 +638309.361|221645.270|120.125 +638304.777|221649.318|120.418 +638300.214|221653.344|120.576 +638291.208|221661.299|121.271 +638286.663|221665.314|121.558 +638282.259|221669.206|122.307 +638277.885|221673.071|122.960 +638255.162|221693.112|122.502 +638246.192|221701.024|122.423 +638241.647|221705.032|122.374 +638237.115|221709.025|122.161 +638232.622|221712.985|121.902 +638228.068|221716.996|121.381 +638223.588|221720.946|121.213 +638219.089|221724.914|120.985 +638214.645|221728.831|120.796 +638210.207|221732.745|120.637 +638205.763|221736.661|120.485 +638201.322|221740.578|120.360 +638196.917|221744.461|120.183 +638192.525|221748.335|120.067 +638188.380|221752.002|121.073 +638183.784|221756.041|119.872 +638179.385|221759.921|119.787 +638175.069|221763.725|119.616 +638170.714|221767.568|119.521 +638166.401|221771.369|119.418 +638162.079|221775.182|119.278 +638157.775|221778.980|119.226 +638153.575|221782.692|119.646 +638149.390|221786.387|119.909 +638145.132|221790.142|119.884 +638140.953|221793.833|119.973 +638136.677|221797.603|119.896 +638128.084|221805.174|118.967 +638123.717|221809.021|118.339 +638119.370|221812.846|117.607 +638115.069|221816.635|117.083 +638110.976|221820.253|117.418 +638093.392|221835.712|113.206 +638088.875|221839.681|111.505 +638084.684|221843.369|110.923 +638080.493|221847.066|110.563 +638076.290|221850.767|110.182 +638072.300|221854.290|110.438 +638068.221|221857.887|110.365 +638064.296|221861.355|110.673 +638060.132|221865.022|110.085 +638043.767|221879.439|108.393 +638039.631|221883.078|107.573 +638035.489|221886.724|106.763 +638031.408|221890.318|106.202 +638027.287|221893.945|105.498 +638019.188|221901.074|104.294 +638015.232|221904.558|103.852 +638011.315|221908.011|103.568 +638007.405|221911.458|103.324 +638163.606|221771.537|119.387 +638168.047|221767.617|119.832 +638172.466|221763.712|119.963 +638176.828|221759.857|119.875 +638181.278|221755.928|120.174 +638185.686|221752.033|120.320 +638190.258|221748.000|120.969 +638194.595|221744.163|120.354 +638199.088|221740.197|120.695 +638203.568|221736.235|120.768 +638208.052|221732.275|120.863 +638212.481|221728.362|120.969 +638216.992|221724.378|120.981 +638221.494|221720.403|121.219 +638226.026|221716.398|121.384 +638230.607|221712.351|121.539 +638235.200|221708.300|122.018 +638239.827|221704.212|122.441 +638244.375|221700.195|122.505 +638248.904|221696.193|122.496 +638253.446|221692.179|122.569 +638258.173|221688.012|123.310 +638294.563|221655.828|121.106 +638299.135|221651.781|120.728 +638303.753|221647.696|120.607 +638308.346|221643.636|120.366 +638322.334|221631.274|120.280 +638336.440|221618.810|120.469 +638341.173|221614.628|120.558 +638345.831|221610.507|120.256 +638350.491|221606.387|119.976 +638355.234|221602.193|119.899 +638359.940|221598.035|119.906 +638364.698|221593.826|119.659 +638369.422|221589.650|119.515 +638374.174|221585.453|119.555 +638402.542|221560.353|117.263 +638407.306|221556.137|116.903 +638412.079|221551.916|116.611 +638417.060|221547.523|117.272 +638421.815|221543.317|116.897 +638426.560|221539.117|116.489 +638431.526|221534.734|116.830 +638436.369|221530.458|117.077 +638446.165|221521.804|117.351 +638450.996|221517.534|117.257 +638455.888|221513.209|117.257 +638461.085|221508.640|119.284 +638505.351|221469.534|120.149 +638510.441|221465.051|121.116 +638515.498|221460.588|121.902 +638520.506|221456.175|122.716 +638525.566|221451.709|123.210 +638530.589|221447.278|123.850 +638535.563|221442.885|124.130 +638540.626|221438.420|124.755 +638545.689|221433.955|125.407 +638550.760|221429.480|126.178 +638565.885|221416.133|127.559 +638570.877|221411.726|127.806 +638575.931|221407.263|128.199 +638580.978|221402.810|128.553 +638586.029|221398.351|128.979 +638591.040|221393.922|129.101 +638596.075|221389.478|129.446 +638601.086|221385.053|129.607 +638606.076|221380.642|129.629 +638611.145|221376.168|129.927 +638616.177|221371.721|129.912 +638621.212|221367.271|129.967 +638626.196|221362.869|129.997 +638631.255|221358.395|129.876 +638636.272|221353.960|129.815 +638641.289|221349.528|129.766 +638646.346|221345.060|129.653 +638651.354|221340.631|129.577 +638656.426|221336.150|129.656 +638661.461|221331.700|129.391 +638671.547|221322.782|129.077 +638681.666|221313.830|128.678 +638686.720|221309.364|128.693 +638691.801|221304.872|128.495 +638696.836|221300.419|128.348 +638701.896|221295.941|127.934 +638717.124|221282.475|127.361 +638722.205|221277.985|127.263 +638727.277|221273.499|127.093 +638737.451|221264.498|126.535 +638747.622|221255.500|125.986 +638783.299|221223.941|123.822 +638813.956|221196.811|121.308 +638819.064|221192.297|121.155 +638824.206|221187.746|120.762 +638829.360|221183.189|120.573 +638834.478|221178.666|120.677 +638839.629|221174.109|120.521 +638844.774|221169.559|120.192 +638855.110|221160.427|120.610 +638865.424|221151.313|120.652 +638875.760|221142.184|121.329 +638880.911|221137.631|121.332 +638886.117|221133.034|121.481 +638891.232|221128.517|121.844 +638896.426|221123.924|121.750 +638901.626|221119.330|121.820 +638911.913|221110.235|121.597 +638922.200|221101.140|121.426 +638927.390|221096.550|121.274 +638932.529|221092.005|120.954 +638937.671|221087.461|120.838 +638942.859|221082.870|120.576 +638947.989|221078.329|119.939 +638953.131|221073.781|119.707 +638958.322|221069.191|119.494 +638963.506|221064.600|118.866 +638968.657|221060.053|119.323 +638973.799|221055.505|119.070 +638978.993|221050.915|118.851 +638984.135|221046.364|118.622 +638989.326|221041.774|118.354 +638994.471|221037.223|118.144 +638999.665|221032.633|117.970 +639004.859|221028.040|117.760 +639010.004|221023.489|117.781 +639015.152|221018.941|117.872 +639020.348|221014.354|118.132 +639025.494|221009.809|118.455 +639030.687|221005.222|118.705 +639035.835|221000.672|118.726 +639040.980|220996.121|118.461 +639046.129|220991.570|118.336 +639051.325|220986.974|118.211 +639056.477|220982.420|118.022 +639061.631|220977.857|117.546 +639066.834|220973.249|117.071 +639071.942|220968.732|116.775 +639077.096|220964.172|116.553 +639082.302|220959.563|116.284 +639087.411|220955.046|116.083 +639092.571|220950.480|115.879 +639097.728|220945.920|115.772 +639102.837|220941.403|115.721 +639107.997|220936.840|115.623 +639113.154|220932.277|115.614 +639118.263|220927.763|115.675 +639123.417|220923.207|115.876 +639128.522|220918.699|116.163 +639133.673|220914.145|116.397 +639138.834|220909.585|116.480 +639143.899|220905.104|116.446 +639149.060|220900.542|116.486 +639154.171|220896.024|116.592 +639159.286|220891.504|116.684 +639164.403|220886.981|116.659 +639169.527|220882.449|116.516 +639174.654|220877.913|116.348 +639179.781|220873.378|116.193 +639184.865|220868.882|115.971 +639189.949|220864.383|115.779 +639195.082|220859.845|115.617 +639200.169|220855.343|115.416 +639205.256|220850.844|115.248 +639210.346|220846.342|115.108 +639215.439|220841.834|114.879 +639220.542|220837.320|114.562 +639225.638|220832.812|114.352 +639230.697|220828.334|114.008 +639235.751|220823.866|113.816 +639240.853|220819.349|113.602 +639256.023|220805.931|113.127 +639271.157|220792.548|112.758 +639291.499|220774.528|109.920 +639301.622|220765.564|108.777 +639306.599|220761.162|108.738 +639331.529|220739.137|110.158 +639341.563|220730.259|109.442 +639346.595|220725.802|108.954 +639351.615|220721.361|108.643 +639356.550|220717.000|108.753 +639361.539|220712.589|108.856 +639366.477|220708.225|108.972 +639371.412|220703.866|109.170 +639381.339|220695.085|108.975 +639386.243|220690.753|109.533 +639391.141|220686.425|109.664 +639396.000|220682.137|110.207 +639400.862|220677.845|110.731 +639405.732|220673.544|111.197 +639410.603|220669.244|111.639 +639420.326|220660.660|112.767 +639425.160|220656.393|113.154 +639430.004|220652.114|113.456 +639434.853|220647.825|113.706 +639439.760|220643.491|113.928 +639444.594|220639.215|113.931 +639449.489|220634.886|113.858 +639454.342|220630.592|113.727 +639459.255|220626.245|113.560 +639464.117|220621.945|113.410 +639468.951|220617.665|113.108 +639473.913|220613.270|112.606 +639483.673|220604.629|111.816 +639498.303|220591.675|110.722 +639503.128|220587.405|110.301 +639508.002|220583.092|109.942 +639512.879|220578.773|109.564 +639517.710|220574.493|109.177 +639522.593|220570.171|108.826 +639527.403|220565.913|108.293 +639537.034|220557.391|107.966 +639541.868|220553.105|107.336 +639546.669|220548.856|106.994 +639551.412|220544.665|107.083 +639556.145|220540.478|107.241 +639560.900|220536.274|107.290 +639565.585|220532.132|107.479 +639570.264|220527.999|107.741 +639574.976|220523.832|107.781 +639584.339|220515.557|108.323 +639589.027|220511.412|108.271 +639598.372|220503.149|108.698 +639607.620|220494.980|109.515 +639612.253|220490.886|109.573 +639621.555|220482.660|109.811 +639626.182|220478.569|109.957 +639640.023|220466.335|110.408 +639658.324|220450.159|111.374 +639662.917|220446.096|111.258 +639681.138|220429.984|111.542 +639685.606|220426.037|111.932 +639690.151|220422.017|111.901 +639694.732|220417.963|111.694 +639699.325|220413.894|111.438 +639703.903|220409.843|111.292 +639708.488|220405.786|110.862 +639712.935|220401.857|111.191 +639721.911|220393.917|111.164 +639726.456|220389.891|110.743 +639730.872|220385.989|111.024 +639735.368|220382.012|110.899 +639739.821|220378.071|110.758 +639744.305|220374.105|110.740 +639748.709|220370.207|110.606 +639753.208|220366.229|110.551 +639757.612|220362.331|110.460 +639762.050|220358.408|110.490 +639766.452|220354.513|110.448 +639770.850|220350.623|110.438 +639775.273|220346.710|110.335 +639784.011|220338.980|110.188 +639788.443|220335.054|109.823 +639792.750|220331.244|109.835 +639797.148|220327.355|109.689 +639801.434|220323.566|109.844 +639805.783|220319.717|109.701 +639814.470|220312.029|109.292 +639818.841|220308.158|108.866 +639823.212|220304.284|108.448 +639827.592|220300.404|108.018 +639831.978|220296.518|107.342 +639810.172|220313.523|109.548 +639805.923|220317.272|109.676 +639801.623|220321.067|109.804 +639797.267|220324.910|109.972 +639780.061|220340.092|110.280 +639775.681|220343.957|110.399 +639771.319|220347.804|110.438 +639766.961|220351.650|110.496 +639762.617|220355.485|110.493 +639758.210|220359.371|110.554 +639753.818|220363.248|110.569 +639749.407|220367.137|110.682 +639745.012|220371.014|110.740 +639740.614|220374.898|110.844 +639736.170|220378.817|110.929 +639731.720|220382.746|111.066 +639727.291|220386.648|110.826 +639722.804|220390.607|110.908 +639718.257|220394.624|111.347 +639709.402|220402.427|110.716 +639704.830|220406.466|111.335 +639700.316|220410.450|111.395 +639695.710|220414.519|111.697 +639691.141|220418.548|111.810 +639686.579|220422.578|111.923 +639682.080|220426.543|111.685 +639677.532|220430.554|111.728 +639663.831|220442.637|111.466 +639659.290|220446.642|111.274 +639627.039|220475.092|110.070 +639622.409|220479.176|109.932 +639617.715|220483.321|109.905 +639603.731|220495.654|109.280 +639599.009|220499.820|109.167 +639594.395|220503.886|108.713 +639584.961|220512.207|108.180 +639570.773|220524.722|107.598 +639561.178|220533.190|107.326 +639556.435|220537.372|107.168 +639551.634|220541.608|107.101 +639546.797|220545.876|106.958 +639541.963|220550.146|107.177 +639537.040|220554.498|107.695 +639527.278|220563.124|108.579 +639522.349|220567.477|108.847 +639517.466|220571.793|109.204 +639512.528|220576.154|109.600 +639507.588|220580.519|110.057 +639502.674|220584.860|110.344 +639497.697|220589.258|110.755 +639492.768|220593.616|111.231 +639487.791|220598.012|111.706 +639482.908|220602.325|111.877 +639472.999|220611.082|112.645 +639467.982|220615.513|113.154 +639463.050|220619.872|113.435 +639458.088|220624.255|113.581 +639453.126|220628.635|113.739 +639448.170|220633.009|113.867 +639443.174|220637.422|113.944 +639438.245|220641.772|113.892 +639433.286|220646.143|113.672 +639428.388|220650.465|113.395 +639423.395|220654.866|113.078 +639418.458|220659.219|112.715 +639408.585|220667.921|111.581 +639403.608|220672.307|111.164 +639393.702|220681.036|109.899 +639368.586|220703.186|108.555 +639363.578|220707.606|108.604 +639358.479|220712.108|108.607 +639353.483|220716.515|108.555 +639348.378|220721.023|108.686 +639338.170|220730.045|109.551 +639307.788|220756.849|108.780 +639271.779|220788.680|112.852 +639261.531|220797.729|113.401 +639251.278|220806.779|113.459 +639241.018|220815.834|113.685 +639235.861|220820.391|113.934 +639230.758|220824.896|114.096 +639225.601|220829.453|114.422 +639220.447|220834.004|114.712 +639215.296|220838.551|114.989 +639210.148|220843.096|115.221 +639205.009|220847.634|115.349 +639199.919|220852.130|115.538 +639194.731|220856.711|115.748 +639189.592|220861.247|115.967 +639184.459|220865.779|116.111 +639179.278|220870.354|116.321 +639174.197|220874.841|116.492 +639169.018|220879.413|116.665 +639163.891|220883.939|116.827 +639158.771|220888.456|116.824 +639153.607|220893.013|116.736 +639148.447|220897.567|116.601 +639143.326|220902.084|116.653 +639138.166|220906.641|116.592 +639133.003|220911.197|116.595 +639127.891|220915.705|116.483 +639122.737|220920.250|116.178 +639117.583|220924.795|115.937 +639112.423|220929.348|115.864 +639107.265|220933.899|115.836 +639102.102|220938.456|115.928 +639096.945|220943.009|115.974 +639091.785|220947.566|116.083 +639086.624|220952.120|116.217 +639081.464|220956.677|116.455 +639076.258|220961.273|116.669 +639071.098|220965.830|116.979 +639065.941|220970.384|117.254 +639060.735|220974.983|117.671 +639055.629|220979.494|118.046 +639050.429|220984.087|118.238 +639045.278|220988.635|118.375 +639040.127|220993.180|118.494 +639034.976|220997.730|118.763 +639029.779|221002.314|118.799 +639024.631|221006.856|118.650 +639019.483|221011.398|118.333 +639014.332|221015.939|118.058 +639009.184|221020.481|117.894 +639003.984|221025.068|117.775 +638998.836|221029.612|118.028 +638993.688|221034.157|118.193 +638988.543|221038.702|118.345 +638983.398|221043.243|118.558 +638978.201|221047.830|118.750 +638973.056|221052.375|119.015 +638967.911|221056.919|119.256 +638962.717|221061.504|119.436 +638957.563|221066.048|119.171 +638952.424|221070.590|119.649 +638947.282|221075.131|119.893 +638942.085|221079.716|119.954 +638936.952|221084.254|120.698 +638931.810|221088.796|120.920 +638926.619|221093.380|121.109 +638921.523|221097.879|121.274 +638916.335|221102.460|121.612 +638911.184|221107.004|121.558 +638906.036|221111.546|121.649 +638900.894|221116.084|121.926 +638895.737|221120.629|121.743 +638890.586|221125.173|121.747 +638885.428|221129.721|121.652 +638875.105|221138.819|121.274 +638869.945|221143.370|121.183 +638864.824|221147.881|120.863 +638859.719|221152.383|121.018 +638854.549|221156.940|120.753 +638849.428|221161.454|120.576 +638839.138|221170.525|120.305 +638834.042|221175.024|120.695 +638813.486|221193.153|120.933 +638803.364|221202.093|122.164 +638798.274|221206.589|122.667 +638777.898|221224.572|123.773 +638772.792|221229.077|124.084 +638767.733|221233.542|124.377 +638762.624|221238.050|124.657 +638757.562|221242.519|124.941 +638747.461|221251.437|125.794 +638737.329|221260.377|126.325 +638732.254|221264.854|126.462 +638717.151|221278.183|127.340 +638712.125|221282.618|127.544 +638702.060|221291.494|127.903 +638692.011|221300.367|128.449 +638686.976|221304.808|128.650 +638681.974|221309.218|128.705 +638676.933|221313.665|128.845 +638656.944|221331.298|129.449 +638651.951|221335.705|129.699 +638646.931|221340.131|129.687 +638641.917|221344.554|129.751 +638636.952|221348.931|129.845 +638631.926|221353.362|129.833 +638626.961|221357.745|129.943 +638621.941|221362.171|130.046 +638616.957|221366.566|130.031 +638611.971|221370.962|130.031 +638606.969|221375.369|129.915 +638602.016|221379.737|129.796 +638596.996|221384.160|129.574 +638592.043|221388.527|129.504 +638587.062|221392.916|129.235 +638582.030|221397.351|128.979 +638577.040|221401.747|128.687 +638572.087|221406.108|128.342 +638567.095|221410.506|128.083 +638562.093|221414.914|127.782 +638552.129|221423.689|126.791 +638547.149|221428.075|126.349 +638542.104|221432.513|125.453 +638537.118|221436.902|124.636 +638527.218|221445.620|124.084 +638522.192|221450.039|123.466 +638517.232|221454.404|123.002 +638507.259|221463.176|121.762 +638502.218|221467.605|120.814 +638458.153|221506.412|119.467 +638423.866|221536.584|116.766 +638404.727|221553.449|117.333 +638400.015|221557.606|117.717 +638376.500|221578.345|119.570 +638371.830|221582.463|120.000 +638367.112|221586.617|119.881 +638362.415|221590.759|120.183 +638357.678|221594.932|120.280 +638352.997|221599.059|120.418 +638343.673|221607.277|120.972 +638334.251|221615.576|120.762 +638320.221|221627.936|121.027 +638315.482|221632.106|120.741 +638310.794|221636.239|120.725 +638306.164|221640.314|120.777 +638301.693|221644.261|121.393 +638288.053|221656.295|122.947 +638265.260|221676.378|123.716 +638251.522|221688.475|123.365 +638242.391|221696.513|123.027 +638237.782|221700.567|122.435 +638233.231|221704.572|122.140 +638228.644|221708.611|121.942 +638224.133|221712.582|121.875 +638219.680|221716.505|121.847 +638215.205|221720.443|121.747 +638210.789|221724.335|121.923 +638206.324|221728.267|121.902 +638201.974|221732.102|122.176 +638197.460|221736.076|121.960 +638192.961|221740.036|121.594 +638188.511|221743.949|121.475 +638184.058|221747.872|121.356 +638179.590|221751.804|120.948 +638175.191|221755.675|120.869 +638170.872|221759.476|120.930 +638166.398|221763.411|120.558 +638161.978|221767.300|120.207 +638157.534|221771.208|119.771 +638153.224|221774.999|119.713 +638149.021|221778.706|120.116 +638131.922|221793.757|119.994 +638118.764|221805.318|118.095 +638114.350|221809.192|117.321 +638088.128|221832.216|112.215 +638083.882|221835.944|111.621 +638079.706|221839.617|111.313 +638075.610|221843.220|111.124 +638063.360|221854.001|111.018 +638059.291|221857.582|110.990 +638055.176|221861.200|110.597 +638051.067|221864.812|110.237 +638042.905|221871.984|109.384 +638038.744|221875.641|108.875 +638030.652|221882.755|108.171 +638026.247|221886.611|106.400 +638022.072|221890.272|105.309 +638018.054|221893.807|105.013 +638014.055|221897.322|104.614 +638010.142|221900.763|104.336 +638006.137|221904.277|103.745 +638162.064|221764.609|120.381 +638166.532|221760.668|120.948 +638170.951|221756.766|121.323 +638175.292|221752.926|121.149 +638179.754|221748.981|121.286 +638193.153|221737.149|122.097 +638197.612|221733.208|122.304 +638202.160|221729.194|122.688 +638206.534|221725.320|122.307 +638210.947|221721.418|122.115 +638215.388|221717.493|122.057 +638219.875|221713.524|121.999 +638224.368|221709.552|121.972 +638228.851|221705.587|121.932 +638233.402|221701.570|122.222 +638237.992|221697.516|122.463 +638242.656|221693.401|123.085 +638247.237|221689.353|123.344 +638256.466|221681.203|123.719 +638261.051|221677.149|123.792 +638293.076|221648.821|122.176 +638297.672|221644.755|121.929 +638306.768|221636.702|120.704 +638311.452|221632.560|120.701 +638316.119|221628.436|120.610 +638349.208|221599.199|120.866 +638353.902|221595.045|120.512 +638358.626|221590.869|120.347 +638377.561|221574.126|119.497 +638387.119|221565.674|119.107 +638391.831|221561.505|118.695 +638401.283|221553.138|117.470 +638406.090|221548.889|117.360 +638410.951|221544.594|117.296 +638415.804|221540.309|117.501 +638420.592|221536.072|117.031 +638425.490|221531.744|117.263 +638450.039|221510.060|117.815 +638454.962|221505.711|118.031 +638499.682|221466.230|120.777 +638504.760|221461.756|122.009 +638509.804|221457.309|122.667 +638514.818|221452.886|123.142 +638519.842|221448.451|123.728 +638524.907|221443.983|124.301 +638529.891|221439.584|124.633 +638534.914|221435.150|124.935 +638539.928|221430.724|125.587 +638545.052|221426.207|126.337 +638550.044|221421.802|126.888 +638560.133|221412.899|127.718 +638565.202|221408.425|128.163 +638570.201|221404.011|128.507 +638575.300|221399.509|128.873 +638580.338|221395.062|129.153 +638585.380|221390.612|129.528 +638590.394|221386.183|129.659 +638595.438|221381.727|129.674 +638600.449|221377.301|129.845 +638605.490|221372.845|129.879 +638610.550|221368.380|130.098 +638615.579|221363.933|130.092 +638620.612|221359.486|130.107 +638625.629|221355.054|130.004 +638630.643|221350.622|129.891 +638635.657|221346.191|129.812 +638640.719|221341.716|129.729 +638645.742|221337.278|129.787 +638650.790|221332.816|129.610 +638655.840|221328.351|129.491 +638676.012|221310.523|128.812 +638681.011|221306.106|128.748 +638686.104|221301.607|128.669 +638691.185|221297.118|128.455 +638696.166|221292.716|128.230 +638701.234|221288.233|127.916 +638706.315|221283.743|127.766 +638711.393|221279.256|127.596 +638716.462|221274.776|127.312 +638721.491|221270.332|127.172 +638736.774|221256.823|126.212 +638741.846|221252.339|126.072 +638746.903|221247.871|125.694 +638752.005|221243.360|125.310 +638757.092|221238.858|124.734 +638762.207|221234.341|124.529 +638767.312|221229.824|124.246 +638777.462|221220.850|123.459 +638792.833|221207.265|122.728 +638797.917|221202.770|122.097 +638803.026|221198.252|121.939 +638808.177|221193.702|121.618 +638813.279|221189.191|121.369 +638823.514|221180.141|120.503 +638828.659|221175.603|121.064 +638833.753|221171.101|120.643 +638838.913|221166.541|120.588 +638844.027|221162.024|120.652 +638849.203|221157.458|120.991 +638854.354|221152.907|120.805 +638859.466|221148.393|120.872 +638874.962|221134.714|121.597 +638880.125|221130.157|121.881 +638885.270|221125.612|121.640 +638900.778|221111.918|121.954 +638905.914|221107.376|121.494 +638911.111|221102.786|121.433 +638916.256|221098.241|121.308 +638921.401|221093.694|121.274 +638926.592|221089.106|121.076 +638931.731|221084.565|120.677 +638936.915|221079.981|120.162 +638942.057|221075.433|119.985 +638947.202|221070.888|119.781 +638952.387|221066.301|119.192 +638957.590|221061.711|119.582 +638962.683|221057.209|119.305 +638967.880|221052.619|119.168 +638973.071|221048.031|118.942 +638978.216|221043.484|118.711 +638983.364|221038.936|118.537 +638988.558|221034.346|118.333 +638993.703|221029.798|118.211 +638998.851|221025.251|117.949 +639004.048|221020.660|118.004 +639009.196|221016.116|118.110 +639014.344|221011.571|118.363 +639019.541|221006.984|118.638 +639024.689|221002.439|118.820 +639029.886|220997.852|118.820 +639035.034|220993.301|118.674 +639040.182|220988.754|118.522 +639045.382|220984.161|118.427 +639050.533|220979.610|118.290 +639055.684|220975.056|118.101 +639060.884|220970.460|117.775 +639066.038|220965.900|117.431 +639071.195|220961.343|117.086 +639076.401|220956.741|116.851 +639081.510|220952.227|116.608 +639086.716|220947.624|116.409 +639091.873|220943.067|116.333 +639096.981|220938.553|116.214 +639102.191|220933.954|116.150 +639107.348|220929.397|116.156 +639112.456|220924.886|116.175 +639117.610|220920.332|116.303 +639122.765|220915.785|116.583 +639127.870|220911.277|116.760 +639133.033|220906.717|116.729 +639138.145|220902.203|116.778 +639143.256|220897.686|116.803 +639148.417|220893.129|116.888 +639153.479|220888.657|116.992 +639158.597|220884.137|117.004 +639163.763|220879.574|116.989 +639168.838|220875.091|116.891 +639173.968|220870.555|116.653 +639179.098|220866.023|116.455 +639184.179|220861.533|116.352 +639189.303|220857.007|116.312 +639194.393|220852.508|116.077 +639199.486|220848.006|115.763 +639204.625|220843.462|115.538 +639209.718|220838.963|115.361 +639214.808|220834.464|115.205 +639219.908|220829.956|114.946 +639225.007|220825.451|114.760 +639230.067|220820.976|114.410 +639235.172|220816.465|114.175 +639240.274|220811.954|113.983 +639245.279|220807.532|113.874 +639250.385|220803.021|113.712 +639255.444|220798.549|113.560 +639260.495|220794.087|113.553 +639265.561|220789.612|113.389 +639270.578|220785.178|113.215 +639280.737|220776.186|111.886 +639290.954|220767.139|109.972 +639306.056|220753.783|108.820 +639335.957|220727.378|109.356 +639340.983|220722.934|108.930 +639345.958|220718.539|108.582 +639350.972|220714.104|108.344 +639355.919|220709.736|108.375 +639360.939|220705.298|108.143 +639370.787|220696.606|108.756 +639375.703|220692.262|108.646 +639385.506|220683.615|109.350 +639390.428|220679.268|109.737 +639414.739|220657.829|112.468 +639419.576|220653.559|112.795 +639424.456|220649.255|113.227 +639429.296|220644.985|113.572 +639434.137|220640.708|113.901 +639438.962|220636.447|113.971 +639443.857|220632.119|113.870 +639448.709|220627.830|113.742 +639453.607|220623.502|113.672 +639458.451|220619.217|113.642 +639463.334|220614.898|113.325 +639468.168|220610.624|113.051 +639482.737|220597.737|112.170 +639487.654|220593.388|111.737 +639492.518|220589.084|111.356 +639497.346|220584.808|110.862 +639507.033|220576.240|110.170 +639511.922|220571.915|109.710 +639516.698|220567.690|109.372 +639521.532|220563.414|109.009 +639526.366|220559.137|108.668 +639536.047|220550.569|107.613 +639540.902|220546.272|107.201 +639545.657|220542.066|106.839 +639550.391|220537.884|106.982 +639555.139|220533.690|107.055 +639564.515|220525.408|107.390 +639583.169|220508.934|108.570 +639624.823|220472.138|110.085 +639629.459|220468.042|110.173 +639661.469|220439.765|111.295 +639665.959|220435.803|111.786 +639679.626|220423.721|111.645 +639684.107|220419.764|111.965 +639688.657|220415.741|111.908 +639693.248|220411.681|111.648 +639697.783|220407.673|111.438 +639706.887|220399.620|110.893 +639715.739|220391.802|111.502 +639724.852|220383.737|110.783 +639729.211|220379.890|111.103 +639733.640|220375.977|111.063 +639738.078|220372.054|110.981 +639742.519|220368.128|110.917 +639746.954|220364.205|110.893 +639751.401|220360.276|110.835 +639755.857|220356.335|110.740 +639760.258|220352.446|110.682 +639764.605|220348.602|110.661 +639769.006|220344.713|110.633 +639773.368|220340.858|110.576 +639777.729|220336.999|110.512 +639782.134|220333.106|110.286 +639790.869|220325.377|109.966 +639799.544|220317.711|110.021 +639803.857|220313.895|109.811 +639808.218|220310.036|109.643 +639812.531|220306.220|109.472 +639821.233|220298.518|108.826 +639830.021|220290.736|107.622 +639806.597|220309.280|109.658 +639802.278|220313.087|109.853 +639797.901|220316.949|110.103 +639793.551|220320.783|110.234 +639780.536|220332.256|110.326 +639776.123|220336.145|110.579 +639771.749|220340.001|110.664 +639767.332|220343.893|110.719 +639762.940|220347.767|110.679 +639758.533|220351.650|110.722 +639754.080|220355.573|110.743 +639749.675|220359.456|110.822 +639745.225|220363.379|110.877 +639740.784|220367.293|110.902 +639736.340|220371.210|110.950 +639731.902|220375.120|111.002 +639727.416|220379.076|111.045 +639722.999|220382.966|110.746 +639718.467|220386.962|111.069 +639713.925|220390.973|111.481 +639705.068|220398.770|110.850 +639700.465|220402.833|111.356 +639695.948|220406.813|111.420 +639691.367|220410.852|111.588 +639686.816|220414.866|111.883 +639682.311|220418.838|111.938 +639677.806|220422.803|111.728 +639664.136|220434.849|111.511 +639659.613|220438.836|111.475 +639641.328|220454.938|110.850 +639627.575|220467.042|110.006 +639622.955|220471.111|110.085 +639580.956|220508.092|108.527 +639576.335|220512.162|108.149 +639562.278|220524.530|107.019 +639552.744|220532.925|106.665 +639548.007|220537.100|106.833 +639543.130|220541.401|106.948 +639538.342|220545.623|107.174 +639533.462|220549.926|107.710 +639528.549|220554.261|108.174 +639523.678|220558.558|108.722 +639518.771|220562.890|109.195 +639513.933|220567.154|109.539 +639484.417|220593.187|111.871 +639464.662|220610.606|113.188 +639459.697|220614.983|113.297 +639454.753|220619.345|113.666 +639449.803|220623.706|113.706 +639444.853|220628.068|113.758 +639439.903|220632.430|113.831 +639434.963|220636.785|113.867 +639429.997|220641.156|113.688 +639425.105|220645.460|113.300 +639420.165|220649.809|112.938 +639415.181|220654.196|112.514 +639410.271|220658.515|111.892 +639395.390|220671.609|110.557 +639390.465|220675.943|110.140 +639385.509|220680.302|109.506 +639370.452|220693.558|108.671 +639355.361|220706.847|108.351 +639350.326|220711.285|108.186 +639340.115|220720.289|108.927 +639335.022|220724.775|108.914 +639324.756|220733.834|109.939 +639304.465|220751.698|108.799 +639283.888|220769.858|111.267 +639268.392|220783.541|113.520 +639263.235|220788.082|113.502 +639258.117|220792.593|113.651 +639253.021|220797.083|113.526 +639247.849|220801.643|113.858 +639242.734|220806.154|114.078 +639237.580|220810.695|114.172 +639232.423|220815.243|114.379 +639227.308|220819.754|114.730 +639222.102|220824.344|115.007 +639217.003|220828.837|115.145 +639211.855|220833.376|115.303 +639206.664|220837.951|115.394 +639201.565|220842.447|115.660 +639196.365|220847.034|116.038 +639191.220|220851.569|116.291 +639186.081|220856.099|116.513 +639180.905|220860.658|116.470 +639175.772|220865.185|116.611 +639170.591|220869.751|116.778 +639165.409|220874.320|116.961 +639160.279|220878.843|117.153 +639155.110|220883.396|117.110 +639149.941|220887.950|117.080 +639144.777|220892.498|116.995 +639139.611|220897.052|116.964 +639134.445|220901.599|116.885 +639129.330|220906.107|116.854 +639124.118|220910.701|116.809 +639118.955|220915.245|116.714 +639113.846|220919.747|116.513 +639108.634|220924.337|116.470 +639103.474|220928.885|116.437 +639098.310|220933.433|116.504 +639093.150|220937.980|116.513 +639087.987|220942.531|116.662 +639082.827|220947.082|116.784 +639077.666|220951.629|116.922 +639072.506|220956.180|117.141 +639067.343|220960.731|117.446 +639062.185|220965.278|117.738 +639057.028|220969.829|118.037 +639051.871|220974.373|118.263 +639046.668|220978.961|118.388 +639041.563|220983.459|118.476 +639036.360|220988.044|118.595 +639031.209|220992.585|118.714 +639026.057|220997.124|118.759 +639020.858|221001.705|118.805 +639015.706|221006.243|118.668 +639010.552|221010.779|118.427 +639005.401|221015.317|118.275 +639000.201|221019.898|118.162 +638995.050|221024.437|118.122 +638989.899|221028.975|118.269 +638984.748|221033.517|118.427 +638979.600|221038.055|118.613 +638974.403|221042.637|118.830 +638969.252|221047.175|118.945 +638964.104|221051.713|119.144 +638958.956|221056.252|119.305 +638953.807|221060.790|119.622 +638948.656|221065.329|119.564 +638943.514|221069.864|119.954 +638938.366|221074.403|120.122 +638933.218|221078.941|120.311 +638928.076|221083.477|120.716 +638922.983|221087.970|121.052 +638917.841|221092.502|121.362 +638912.687|221097.043|121.344 +638907.588|221101.539|121.411 +638902.439|221106.075|121.622 +638897.291|221110.616|121.747 +638892.192|221115.112|121.838 +638881.884|221124.198|121.817 +638876.781|221128.697|121.975 +638871.609|221133.251|121.515 +638861.377|221142.267|121.164 +638856.213|221146.814|121.076 +638851.102|221151.322|121.064 +638845.987|221155.830|121.030 +638835.682|221164.904|120.466 +638820.357|221178.419|120.988 +638815.233|221182.936|120.899 +638810.137|221187.432|121.353 +638805.028|221191.937|121.558 +638799.959|221196.405|121.640 +638789.752|221205.412|122.326 +638774.533|221218.839|123.292 +638769.534|221223.249|123.786 +638764.435|221227.748|124.197 +638759.375|221232.213|124.490 +638754.303|221236.685|124.676 +638749.262|221241.135|125.224 +638744.260|221245.551|125.685 +638739.207|221250.008|126.139 +638734.132|221254.485|126.282 +638719.032|221267.805|127.163 +638708.925|221276.717|127.547 +638703.892|221281.155|127.727 +638698.860|221285.593|127.903 +638693.794|221290.061|128.294 +638688.756|221294.502|128.446 +638683.769|221298.901|128.644 +638678.731|221303.345|128.833 +638673.726|221307.755|128.861 +638663.698|221316.600|129.293 +638653.646|221325.464|129.562 +638648.635|221329.881|129.638 +638643.636|221334.291|129.836 +638638.656|221338.677|129.766 +638633.639|221343.103|129.827 +638628.677|221347.477|129.973 +638623.708|221351.857|130.080 +638618.734|221356.240|130.150 +638613.754|221360.632|130.162 +638608.767|221365.027|130.171 +638603.765|221369.432|130.058 +638598.809|221373.799|129.921 +638593.789|221378.222|129.693 +638588.839|221382.584|129.668 +638583.880|221386.955|129.601 +638573.907|221395.739|129.040 +638568.927|221400.125|128.858 +638558.954|221408.906|128.074 +638553.927|221413.332|127.608 +638543.951|221422.110|126.602 +638533.923|221430.931|125.319 +638519.064|221444.016|124.264 +638514.017|221448.460|123.511 +638509.070|221452.819|123.158 +638504.071|221457.217|122.481 +638499.082|221461.603|121.524 +638494.025|221466.050|120.500 +638488.926|221470.531|119.217 +638449.899|221504.925|118.049 +638435.284|221517.799|117.303 +638430.468|221522.051|117.555 +638416.075|221534.740|117.516 +638411.278|221538.971|117.662 +638401.716|221547.399|117.577 +638396.958|221551.596|117.690 +638392.319|221555.695|118.540 +638387.634|221559.831|119.122 +638382.943|221563.974|119.369 +638378.234|221568.128|119.845 +638364.140|221580.564|120.646 +638359.419|221584.724|120.524 +638354.771|221588.827|120.826 +638350.055|221592.988|121.073 +638345.392|221597.102|121.320 +638326.607|221613.659|120.966 +638312.598|221626.007|120.872 +638307.993|221630.070|121.027 +638303.476|221634.059|121.667 +638298.968|221638.040|122.359 +638294.329|221642.134|122.380 +638285.346|221650.065|123.466 +638271.697|221662.107|124.313 +638262.529|221670.187|124.109 +638253.333|221678.295|124.090 +638248.746|221682.337|123.783 +638244.088|221686.433|123.173 +638239.489|221690.484|122.853 +638234.893|221694.532|122.576 +638230.351|221698.540|122.560 +638221.359|221706.465|122.554 +638217.025|221710.293|123.325 +638212.499|221714.283|123.207 +638207.988|221718.258|122.957 +638203.608|221722.122|123.313 +638176.654|221745.863|121.597 +638163.499|221757.455|121.366 +638158.891|221761.509|120.424 +638154.425|221765.435|119.912 +638150.036|221769.303|119.741 +638145.796|221773.049|120.210 +638141.502|221776.831|120.253 +638137.173|221780.647|120.152 +638132.848|221784.457|120.101 +638124.076|221792.181|119.293 +638119.626|221796.094|118.546 +638115.149|221800.026|117.491 +638110.759|221803.891|117.034 +638102.329|221811.322|116.949 +638088.732|221823.255|112.813 +638084.345|221827.114|112.069 +638080.112|221830.842|111.737 +638075.887|221834.563|111.450 +638071.833|221838.136|111.658 +638067.636|221841.833|111.514 +638063.488|221845.487|111.158 +638059.330|221849.148|110.993 +638055.264|221852.733|110.990 +638046.980|221860.023|110.018 +638042.743|221863.751|109.408 +638038.714|221867.299|109.192 +638034.514|221870.993|108.549 +638030.356|221874.651|107.875 +638022.230|221881.798|106.900 +638009.523|221892.960|103.629 +638005.750|221896.292|104.077 +638001.851|221899.724|103.885 +638174.301|221745.488|121.701 +638209.771|221714.170|122.883 +638218.769|221706.227|123.374 +638223.127|221702.368|122.746 +638227.599|221698.421|122.652 +638232.134|221694.416|122.877 +638236.654|221690.423|122.816 +638241.245|221686.372|123.094 +638245.783|221682.364|123.405 +638250.486|221678.219|124.017 +638255.064|221674.180|124.304 +638259.545|221670.221|124.145 +638264.208|221666.103|124.383 +638282.509|221649.940|124.295 +638295.950|221638.043|122.304 +638305.113|221629.935|121.716 +638309.624|221625.943|121.082 +638314.260|221621.840|120.841 +638318.957|221617.692|120.942 +638323.708|221613.495|121.073 +638342.594|221596.807|121.481 +638347.294|221592.652|121.426 +638352.027|221588.464|121.024 +638356.731|221584.304|120.759 +638361.488|221580.101|120.814 +638380.471|221563.309|119.768 +638394.651|221550.760|118.214 +638399.369|221546.585|117.879 +638404.218|221542.299|117.726 +638409.065|221538.017|117.900 +638413.832|221533.798|117.604 +638428.426|221520.899|117.370 +638452.950|221499.237|118.269 +638458.040|221494.756|119.619 +638487.679|221468.568|119.927 +638492.763|221464.087|121.137 +638497.841|221459.607|121.631 +638502.998|221455.068|123.088 +638507.985|221450.664|123.368 +638513.054|221446.193|123.892 +638528.163|221432.861|125.340 +638533.213|221428.404|125.861 +638538.267|221423.942|126.459 +638543.329|221419.474|126.748 +638553.421|221410.567|127.571 +638568.579|221397.190|128.998 +638573.596|221392.758|129.114 +638578.674|221388.271|129.351 +638583.719|221383.818|129.751 +638588.763|221379.362|129.738 +638593.771|221374.939|129.879 +638598.824|221370.474|130.016 +638603.872|221366.015|130.119 +638608.913|221361.562|130.180 +638613.952|221357.112|130.238 +638619.018|221352.631|130.153 +638624.089|221348.150|130.101 +638629.088|221343.731|129.860 +638634.142|221339.262|129.708 +638639.211|221334.782|129.717 +638644.279|221330.304|129.726 +638649.333|221325.839|129.610 +638654.362|221321.389|129.278 +638659.465|221316.878|129.217 +638669.605|221307.914|128.967 +638674.692|221303.415|128.800 +638679.801|221298.901|128.870 +638695.041|221285.422|128.251 +638700.113|221280.939|127.986 +638705.185|221276.449|127.757 +638710.299|221271.926|127.422 +638715.371|221267.439|127.221 +638720.495|221262.910|127.047 +638730.623|221253.952|126.501 +638735.735|221249.428|126.212 +638740.843|221244.911|125.919 +638745.894|221240.440|125.517 +638756.083|221231.421|124.581 +638761.189|221226.907|124.249 +638766.282|221222.399|123.770 +638771.381|221217.888|123.392 +638776.529|221213.331|123.002 +638781.638|221208.814|122.777 +638786.734|221204.306|122.374 +638791.876|221199.755|121.905 +638802.148|221190.672|121.658 +638807.253|221186.158|121.417 +638817.571|221177.035|121.204 +638822.685|221172.512|121.195 +638833.036|221163.359|120.786 +638843.323|221154.273|121.091 +638848.532|221149.667|121.140 +638853.644|221145.150|121.207 +638858.804|221140.590|121.301 +638864.016|221135.985|121.576 +638869.128|221131.471|121.725 +638874.337|221126.868|121.945 +638879.494|221122.314|122.060 +638884.593|221117.803|122.015 +638889.790|221113.210|121.948 +638894.935|221108.662|121.814 +638900.083|221104.112|121.807 +638905.219|221099.567|121.405 +638910.364|221095.020|121.311 +638915.512|221090.469|121.402 +638920.700|221085.879|121.088 +638925.833|221081.337|120.543 +638930.978|221076.789|120.360 +638936.120|221072.242|120.128 +638941.298|221067.652|119.439 +638946.450|221063.104|119.616 +638951.598|221058.553|119.689 +638956.788|221053.963|119.396 +638961.933|221049.412|119.204 +638967.127|221044.822|119.098 +638972.269|221040.271|118.887 +638977.414|221035.724|118.677 +638982.754|221030.999|118.446 +638987.753|221026.580|118.305 +638992.901|221022.032|118.269 +638998.095|221017.439|118.308 +639003.243|221012.891|118.442 +639008.440|221008.301|118.592 +639013.585|221003.753|118.781 +639018.733|220999.205|118.811 +639023.881|220994.658|118.857 +639029.075|220990.061|118.726 +639034.174|220985.553|118.628 +639039.371|220980.960|118.580 +639044.522|220976.406|118.446 +639049.622|220971.898|118.345 +639054.773|220967.345|118.174 +639059.976|220962.748|117.918 +639065.081|220958.234|117.717 +639070.235|220953.677|117.449 +639075.392|220949.121|117.223 +639080.547|220944.564|117.080 +639085.704|220940.007|116.961 +639090.812|220935.493|116.839 +639095.970|220930.936|116.803 +639101.127|220926.383|116.793 +639106.235|220921.868|116.754 +639111.344|220917.357|116.803 +639116.501|220912.801|116.836 +639121.609|220908.290|116.946 +639126.770|220903.733|117.004 +639131.878|220899.222|117.092 +639136.990|220894.705|117.120 +639142.150|220890.148|117.187 +639147.264|220885.631|117.266 +639152.379|220881.114|117.315 +639157.497|220876.593|117.284 +639162.568|220872.113|117.199 +639167.695|220867.580|117.010 +639172.828|220863.045|116.748 +639177.906|220858.555|116.620 +639183.030|220854.032|116.662 +639188.108|220849.542|116.583 +639193.195|220845.050|116.409 +639198.343|220840.496|115.986 +639203.390|220836.030|115.660 +639208.535|220831.486|115.434 +639213.574|220827.033|115.355 +639218.667|220822.534|115.251 +639223.708|220818.078|115.212 +639228.814|220813.564|114.901 +639233.874|220809.092|114.632 +639238.924|220804.627|114.492 +639249.089|220795.644|114.151 +639254.161|220791.161|113.816 +639259.212|220786.699|113.837 +639264.280|220782.218|113.593 +639269.334|220777.756|113.627 +639279.517|220768.740|111.996 +639284.623|220764.213|110.704 +639289.780|220759.641|109.478 +639294.815|220755.191|109.283 +639299.869|220750.723|108.899 +639319.864|220733.069|109.759 +639324.911|220728.610|109.606 +639329.922|220724.181|109.317 +639334.982|220719.703|109.027 +639340.011|220715.256|108.588 +639345.037|220710.812|108.223 +639349.996|220706.429|108.085 +639354.989|220702.022|108.171 +639359.997|220697.596|108.094 +639364.913|220693.259|108.482 +639369.900|220688.848|108.155 +639399.292|220662.919|111.021 +639409.030|220654.330|112.020 +639413.892|220650.041|112.572 +639418.772|220645.737|113.008 +639423.664|220641.418|113.331 +639428.510|220637.139|113.617 +639433.426|220632.802|113.749 +639438.300|220628.504|113.861 +639443.238|220624.145|113.858 +639448.090|220619.863|113.767 +639453.019|220615.507|113.453 +639462.757|220606.915|113.535 +639467.671|220602.572|113.014 +639472.551|220598.265|112.825 +639477.495|220593.897|112.535 +639482.353|220589.602|112.142 +639487.212|220585.314|111.816 +639492.082|220581.013|111.786 +639506.755|220568.044|110.265 +639511.602|220563.761|109.786 +639531.057|220546.564|107.631 +639535.934|220542.255|107.076 +639540.759|220537.993|106.924 +639569.154|220512.945|107.863 +639573.763|220508.882|108.283 +639578.481|220504.721|108.671 +639601.679|220484.272|110.423 +639606.346|220480.154|110.582 +639620.400|220467.746|110.192 +639625.070|220463.625|110.103 +639629.712|220459.529|110.201 +639661.625|220431.380|111.466 +639666.160|220427.381|111.722 +639679.705|220415.430|112.048 +639684.244|220411.422|112.060 +639688.852|220407.353|111.719 +639697.939|220399.330|111.240 +639702.465|220395.331|111.112 +639711.368|220387.480|111.463 +639715.867|220383.505|111.277 +639720.354|220379.546|111.170 +639724.831|220375.593|111.121 +639729.251|220371.691|111.133 +639733.686|220367.777|111.082 +639738.059|220363.919|111.100 +639742.494|220360.002|111.085 +639746.929|220356.088|111.085 +639751.330|220352.205|111.021 +639755.726|220348.322|110.987 +639760.075|220344.485|110.954 +639764.419|220340.650|110.957 +639773.142|220332.951|110.847 +639777.473|220329.129|110.719 +639794.658|220313.962|110.268 +639798.959|220310.164|110.118 +639803.259|220306.369|109.987 +639807.530|220302.602|109.777 +639811.797|220298.835|109.591 +639816.073|220295.058|109.372 +639820.331|220291.297|109.015 +639824.690|220287.444|108.460 +639805.850|220302.136|109.856 +639801.482|220305.985|110.027 +639797.127|220309.823|110.152 +639792.774|220313.654|110.286 +639788.422|220317.488|110.188 +639779.637|220325.227|110.435 +639775.160|220329.174|110.743 +639770.731|220333.073|110.819 +639766.354|220336.929|110.932 +639761.892|220340.861|110.972 +639757.500|220344.728|110.938 +639753.040|220348.657|110.987 +639748.590|220352.574|111.008 +639744.098|220356.533|111.008 +639739.605|220360.490|111.021 +639735.115|220364.443|111.042 +639730.577|220368.439|111.060 +639726.096|220372.386|111.075 +639721.570|220376.373|111.060 +639716.976|220380.418|111.152 +639712.389|220384.459|111.240 +639707.811|220388.498|111.575 +639698.771|220396.453|111.115 +639694.077|220400.589|111.289 +639689.422|220404.692|111.566 +639680.120|220412.888|112.121 +639675.520|220416.942|112.154 +639666.322|220425.037|111.697 +639661.728|220429.079|111.447 +639638.472|220449.546|110.344 +639629.121|220457.782|110.137 +639624.436|220461.906|109.963 +639619.663|220466.112|110.048 +639605.389|220478.685|110.420 +639600.655|220482.855|110.338 +639577.018|220503.655|108.664 +639572.284|220507.818|108.347 +639567.530|220512.000|107.845 +639562.772|220516.185|107.381 +639558.056|220520.333|106.997 +639553.237|220524.573|106.641 +639528.899|220546.022|107.592 +639518.999|220554.757|109.061 +639514.034|220559.140|109.606 +639489.382|220580.882|111.837 +639484.502|220585.180|111.892 +639474.620|220593.891|112.685 +639469.658|220598.265|112.688 +639459.767|220606.982|113.316 +639454.872|220611.292|113.236 +639449.895|220615.681|113.480 +639444.966|220620.024|113.758 +639440.022|220624.380|113.767 +639435.085|220628.729|113.736 +639430.162|220633.061|113.581 +639425.252|220637.383|113.364 +639420.347|220641.699|113.072 +639415.401|220646.054|112.773 +639410.521|220650.343|112.289 +639405.616|220654.656|111.597 +639400.691|220658.987|111.118 +639395.759|220663.327|110.725 +639390.828|220667.665|110.320 +639385.871|220672.023|109.679 +639380.998|220676.312|109.244 +639366.096|220689.424|108.299 +639361.085|220693.838|108.320 +639356.099|220698.227|108.098 +639351.103|220702.625|107.982 +639346.101|220707.033|107.963 +639341.075|220711.462|108.256 +639330.916|220720.420|109.015 +639315.840|220733.697|109.055 +639295.708|220751.421|108.405 +639290.618|220755.917|109.234 +639285.455|220760.477|110.423 +639280.298|220765.033|111.618 +639270.029|220774.101|113.605 +639264.957|220778.566|113.718 +639259.882|220783.038|113.950 +639254.774|220787.540|113.986 +639249.671|220792.029|113.931 +639244.587|220796.513|114.419 +639239.485|220801.006|114.419 +639234.419|220805.468|114.651 +639229.250|220810.025|115.032 +639224.144|220814.524|115.239 +639219.045|220819.017|115.340 +639213.949|220823.503|115.391 +639208.855|220827.990|115.468 +639203.713|220832.519|115.507 +639198.605|220837.021|115.919 +639193.497|220841.526|116.388 +639188.355|220846.058|116.614 +639183.222|220850.579|116.665 +639178.089|220855.096|116.693 +639172.956|220859.616|116.778 +639167.820|220864.145|117.031 +639162.684|220868.669|117.266 +639157.558|220873.186|117.363 +639152.434|220877.697|117.397 +639147.261|220882.253|117.440 +639142.144|220886.758|117.357 +639136.977|220891.306|117.299 +639131.811|220895.857|117.257 +639126.693|220900.362|117.217 +639121.530|220904.906|117.089 +639116.318|220909.494|116.998 +639111.207|220913.995|116.940 +639106.040|220918.546|116.992 +639100.828|220923.133|117.004 +639095.713|220927.638|117.028 +639090.504|220932.226|117.068 +639085.341|220936.776|117.202 +639080.181|220941.321|117.254 +639074.972|220945.908|117.336 +639069.808|220950.456|117.528 +639064.648|220955.003|117.781 +639059.439|220959.594|118.034 +639054.233|220964.181|118.232 +639049.076|220968.722|118.388 +639043.873|220973.307|118.503 +639038.670|220977.891|118.601 +639033.516|220982.429|118.702 +639028.313|220987.010|118.763 +639023.159|220991.549|118.875 +639017.959|220996.130|118.927 +639012.756|221000.711|118.881 +639007.605|221005.247|118.747 +639002.402|221009.825|118.659 +638997.202|221014.403|118.491 +638991.999|221018.981|118.375 +638986.845|221023.519|118.354 +638981.355|221028.357|118.446 +638976.448|221032.679|118.641 +638971.297|221037.217|118.851 +638966.097|221041.798|119.073 +638960.851|221046.422|119.272 +638955.700|221050.958|119.326 +638950.503|221055.536|119.567 +638945.304|221060.117|119.710 +638934.943|221069.236|119.424 +638929.762|221073.808|120.287 +638924.614|221078.344|120.497 +638919.417|221082.922|120.680 +638914.229|221087.497|121.207 +638909.081|221092.033|121.384 +638903.878|221096.614|121.366 +638898.690|221101.189|121.856 +638893.533|221105.727|121.759 +638888.385|221110.266|121.905 +638883.182|221114.847|121.984 +638878.080|221119.340|122.112 +638867.704|221128.471|121.817 +638862.538|221133.019|121.661 +638847.097|221146.613|121.494 +638841.921|221151.170|121.210 +638836.761|221155.715|121.277 +638831.582|221160.271|121.015 +638811.066|221178.340|121.234 +638805.949|221182.845|121.359 +638800.788|221187.392|121.533 +638785.448|221200.907|122.170 +638780.397|221205.360|122.603 +638775.283|221209.865|122.829 +638770.183|221214.364|123.286 +638755.010|221227.736|124.420 +638749.896|221232.244|124.660 +638744.854|221236.688|125.310 +638719.699|221258.862|127.193 +638714.673|221263.291|127.407 +638709.589|221267.768|127.538 +638704.612|221272.154|127.775 +638694.547|221281.021|128.187 +638689.509|221285.459|128.361 +638679.487|221294.289|128.769 +638674.491|221298.690|128.909 +638669.480|221303.101|128.912 +638664.418|221307.557|128.906 +638659.471|221311.916|129.086 +638654.417|221316.369|129.211 +638649.467|221320.727|129.409 +638644.462|221325.138|129.562 +638639.461|221329.542|129.760 +638634.477|221333.931|129.680 +638624.504|221342.713|130.007 +638619.539|221347.087|130.165 +638614.567|221351.467|130.263 +638609.578|221355.862|130.229 +638604.631|221360.214|130.159 +638599.593|221364.652|130.183 +638594.685|221368.971|130.068 +638589.668|221373.385|129.891 +638584.709|221377.750|129.815 +638579.698|221382.163|129.720 +638574.770|221386.500|129.528 +638569.780|221390.890|129.266 +638564.803|221395.263|128.726 +638559.822|221399.646|128.595 +638554.851|221404.020|128.153 +638549.800|221408.458|127.532 +638539.843|221417.215|126.696 +638534.932|221421.534|126.468 +638524.962|221430.306|125.697 +638505.107|221447.774|123.679 +638500.200|221452.097|123.645 +638495.122|221456.556|122.429 +638490.145|221460.930|121.609 +638485.119|221465.349|120.841 +638480.059|221469.790|119.521 +638455.794|221491.172|119.750 +638445.821|221499.935|117.842 +638431.279|221512.746|117.586 +638426.515|221516.946|117.854 +638416.907|221525.413|117.952 +638393.133|221546.368|118.781 +638388.402|221550.538|119.089 +638360.303|221575.318|121.070 +638355.600|221579.467|121.341 +638350.897|221583.609|121.344 +638346.306|221587.657|121.716 +638341.713|221591.713|122.350 +638336.909|221595.938|121.862 +638318.106|221612.495|121.222 +638313.440|221616.607|121.295 +638308.980|221620.548|122.201 +638299.821|221628.625|122.789 +638295.249|221632.654|123.161 +638281.804|221644.523|124.892 +638268.085|221656.609|124.871 +638258.966|221664.640|124.907 +638254.363|221668.694|124.740 +638249.764|221672.739|124.103 +638245.122|221676.826|123.786 +638240.537|221680.862|123.517 +638236.066|221684.800|123.575 +638231.491|221688.829|123.386 +638226.998|221692.785|123.365 +638222.597|221696.665|123.551 +638218.083|221700.640|123.466 +638186.822|221728.170|122.758 +638151.301|221759.451|120.512 +638146.903|221763.322|120.067 +638142.703|221767.032|120.482 +638138.445|221770.787|120.674 +638125.439|221782.244|119.906 +638112.174|221793.912|117.793 +638107.791|221797.771|117.141 +638085.772|221817.129|112.944 +638081.502|221820.887|112.447 +638077.277|221824.609|112.139 +638073.299|221828.123|112.615 +638064.838|221835.569|111.840 +638060.617|221839.288|111.402 +638056.487|221842.924|111.130 +638052.405|221846.524|111.063 +638048.333|221850.111|111.054 +638031.584|221864.845|108.555 +638027.488|221868.451|108.116 +638023.218|221872.203|107.037 +638018.960|221875.946|106.025 +638014.699|221879.686|104.617 +638006.204|221887.145|102.383 +638002.311|221890.577|102.401 +638165.243|221745.074|121.795 +638169.668|221741.166|121.981 +638182.945|221729.441|122.670 +638200.758|221713.713|123.630 +638227.568|221690.024|123.773 +638232.046|221686.068|123.731 +638236.624|221682.023|123.953 +638241.110|221678.054|123.749 +638245.695|221674.010|124.023 +638250.279|221669.965|124.316 +638254.933|221665.859|124.983 +638259.554|221661.778|125.267 +638291.531|221633.514|124.307 +638305.244|221621.386|123.005 +638309.742|221617.402|122.326 +638314.223|221613.437|121.533 +638318.963|221609.249|121.600 +638333.102|221596.767|122.048 +638337.918|221592.521|122.606 +638342.505|221588.461|121.929 +638347.154|221584.350|121.622 +638356.609|221575.998|121.332 +638361.330|221571.825|121.186 +638389.667|221546.774|119.238 +638404.081|221534.039|118.881 +638413.591|221525.633|118.122 +638418.352|221521.417|117.178 +638423.256|221517.092|117.775 +638437.884|221504.175|117.882 +638442.809|221499.828|118.065 +638452.740|221491.068|119.052 +638457.687|221486.707|119.448 +638472.302|221473.789|118.607 +638477.392|221469.303|119.427 +638482.540|221464.776|121.009 +638487.536|221460.372|121.591 +638492.605|221455.903|122.362 +638502.703|221447.003|123.709 +638512.734|221438.158|124.718 +638517.839|221433.665|125.950 +638522.771|221429.307|125.520 +638532.875|221420.394|126.590 +638537.910|221415.953|127.041 +638542.936|221411.521|127.452 +638548.008|221407.047|127.873 +638558.091|221398.153|128.684 +638563.117|221393.715|128.821 +638573.200|221384.818|129.412 +638578.238|221380.374|129.720 +638583.295|221375.909|129.808 +638588.355|221371.443|129.933 +638593.359|221367.024|130.043 +638598.413|221362.564|130.168 +638603.451|221358.114|130.180 +638608.493|221353.661|130.269 +638613.525|221349.217|130.275 +638628.607|221335.894|129.808 +638633.666|221331.426|129.684 +638638.747|221326.942|129.799 +638643.792|221322.483|129.592 +638648.815|221318.042|129.168 +638653.865|221313.580|129.034 +638658.925|221309.112|129.019 +638663.982|221304.646|128.973 +638669.075|221300.150|128.845 +638674.138|221295.682|128.922 +638679.228|221291.186|128.800 +638689.384|221282.216|128.306 +638694.471|221277.726|128.202 +638704.618|221268.762|127.724 +638709.699|221264.275|127.590 +638714.768|221259.798|127.309 +638740.221|221237.313|125.727 +638745.363|221232.765|125.215 +638755.559|221223.755|124.319 +638760.640|221219.262|123.655 +638770.854|221210.240|123.051 +638775.953|221205.735|122.624 +638781.065|221201.221|122.426 +638786.210|221196.674|122.015 +638796.439|221187.642|121.747 +638801.587|221183.092|121.411 +638806.753|221178.532|121.378 +638811.877|221174.012|121.487 +638832.475|221155.827|121.378 +638837.624|221151.280|121.067 +638842.796|221146.717|121.387 +638847.962|221142.160|121.524 +638853.126|221137.606|121.640 +638858.283|221133.053|121.698 +638868.610|221123.942|122.109 +638873.767|221119.391|122.243 +638878.964|221114.804|122.140 +638884.112|221110.260|121.987 +638894.408|221101.170|121.820 +638899.596|221096.586|121.500 +638904.744|221092.042|121.509 +638909.895|221087.497|121.497 +638915.025|221082.959|120.783 +638920.218|221078.374|120.655 +638925.360|221073.830|120.399 +638930.493|221069.291|119.726 +638935.699|221064.701|120.079 +638945.986|221055.618|119.561 +638951.180|221051.031|119.549 +638956.325|221046.486|119.326 +638961.473|221041.942|119.220 +638966.667|221037.354|119.122 +638971.763|221032.852|118.750 +638976.960|221028.265|118.613 +638982.105|221023.721|118.522 +638992.401|221014.634|118.540 +638997.601|221010.047|118.699 +639002.701|221005.548|118.790 +639007.897|221000.961|118.900 +639013.045|220996.420|118.997 +639018.145|220991.918|118.976 +639023.342|220987.330|118.906 +639028.493|220982.783|118.802 +639033.641|220978.238|118.744 +639038.792|220973.691|118.662 +639043.940|220969.143|118.555 +639049.094|220964.595|118.409 +639054.245|220960.045|118.232 +639059.351|220955.537|118.074 +639064.508|220950.983|117.818 +639069.662|220946.432|117.650 +639074.771|220941.921|117.498 +639079.928|220937.371|117.427 +639085.085|220932.817|117.336 +639090.145|220928.348|117.269 +639095.305|220923.795|117.214 +639100.414|220919.287|117.199 +639105.574|220914.733|117.150 +639110.685|220910.219|117.104 +639115.797|220905.711|117.147 +639120.905|220901.203|117.263 +639126.017|220896.692|117.373 +639131.080|220892.224|117.424 +639136.194|220887.712|117.473 +639141.309|220883.198|117.504 +639146.371|220878.730|117.616 +639151.492|220874.210|117.522 +639156.567|220869.729|117.403 +639161.642|220865.249|117.306 +639166.772|220860.719|117.092 +639171.856|220856.230|116.842 +639176.937|220851.743|116.720 +639181.966|220847.305|116.714 +639187.096|220842.776|116.644 +639192.134|220838.329|116.498 +639197.240|220833.818|116.035 +639202.342|220829.310|115.617 +639207.380|220824.863|115.577 +639212.470|220820.367|115.507 +639217.515|220815.917|115.428 +639222.602|220811.427|115.465 +639227.653|220806.968|115.315 +639232.682|220802.521|114.742 +639237.778|220798.022|114.724 +639242.819|220793.578|114.852 +639247.846|220789.134|114.422 +639252.914|220784.659|114.160 +639257.971|220780.194|114.123 +639262.994|220775.759|113.886 +639268.014|220771.324|113.697 +639273.104|220766.829|113.258 +639293.428|220748.839|109.106 +639313.472|220731.149|108.811 +639318.428|220726.778|109.158 +639323.412|220722.379|109.183 +639328.426|220717.948|108.869 +639333.440|220713.522|108.607 +639338.472|220709.075|108.165 +639343.440|220704.686|107.927 +639353.395|220695.901|107.912 +639358.382|220691.503|108.085 +639363.335|220687.132|108.110 +639368.339|220682.713|108.131 +639378.184|220674.035|108.948 +639383.046|220669.753|109.481 +639387.953|220665.427|110.064 +639392.818|220661.142|110.594 +639397.747|220656.796|110.990 +639402.629|220652.492|111.371 +639407.525|220648.179|112.106 +639412.353|220643.924|112.554 +639417.242|220639.614|112.898 +639422.137|220635.298|113.218 +639426.989|220631.019|113.480 +639431.906|220626.681|113.636 +639436.779|220622.377|113.733 +639441.665|220618.068|113.764 +639446.548|220613.758|113.846 +639471.060|220592.111|112.919 +639475.958|220587.783|112.612 +639480.899|220583.412|111.981 +639485.776|220579.108|111.911 +639490.589|220574.859|111.944 +639500.434|220566.157|110.826 +639505.347|220561.811|110.176 +639525.007|220544.428|107.924 +639529.905|220540.097|107.201 +639534.828|220535.747|106.705 +639539.582|220531.550|106.705 +639544.444|220527.252|106.333 +639549.245|220523.015|106.403 +639553.975|220518.846|106.656 +639558.724|220514.658|107.116 +639563.412|220510.525|107.677 +639568.042|220506.447|108.290 +639572.848|220502.204|108.415 +639577.512|220498.092|108.832 +639596.169|220481.642|110.316 +639600.899|220477.469|110.390 +639605.581|220473.336|110.457 +639610.223|220469.236|110.475 +639615.024|220464.997|110.179 +639619.711|220460.858|109.963 +639624.354|220456.761|110.048 +639628.983|220452.677|110.225 +639661.143|220424.303|111.603 +639665.715|220420.267|111.664 +639684.012|220404.119|111.746 +639688.670|220399.998|111.133 +639693.226|220395.975|111.106 +639706.711|220384.075|111.298 +639711.194|220380.116|111.191 +639720.223|220372.142|110.969 +639724.685|220368.204|111.024 +639729.156|220364.257|111.042 +639733.585|220360.346|111.039 +639737.959|220356.488|111.063 +639742.388|220352.577|111.091 +639746.829|220348.657|111.072 +639751.224|220344.774|111.039 +639755.613|220340.903|111.066 +639759.959|220337.066|111.057 +639764.370|220333.170|110.993 +639768.692|220329.354|110.883 +639773.054|220325.502|110.844 +639777.443|220321.622|110.438 +639786.197|220313.892|110.057 +639790.391|220310.192|110.390 +639794.694|220306.394|110.225 +639798.995|220302.593|110.073 +639803.293|220298.798|109.969 +639807.548|220295.043|109.835 +639811.797|220291.291|109.737 +639816.119|220287.472|109.323 +639801.961|220298.030|109.814 +639797.651|220301.822|109.954 +639793.350|220305.607|110.076 +639788.992|220309.445|110.231 +639775.992|220320.887|110.469 +639771.581|220324.770|110.707 +639767.204|220328.620|110.786 +639762.828|220332.472|110.899 +639758.408|220336.362|110.969 +639753.961|220340.275|110.938 +639749.569|220344.140|110.914 +639745.173|220348.008|110.935 +639740.729|220351.916|110.932 +639736.289|220355.826|110.950 +639731.863|220359.719|110.896 +639727.382|220363.660|110.886 +639722.896|220367.610|110.920 +639709.347|220379.534|111.051 +639704.800|220383.536|111.213 +639691.157|220395.539|110.972 +639686.594|220399.553|111.008 +639672.591|220411.888|112.148 +639668.083|220415.848|111.670 +639663.514|220419.868|111.557 +639658.881|220423.943|111.527 +639640.444|220440.158|110.478 +639631.096|220448.385|110.219 +639626.454|220452.469|110.079 +639621.763|220456.599|109.945 +639617.054|220460.742|109.935 +639612.311|220464.924|110.170 +639607.529|220469.133|110.350 +639602.771|220473.324|110.390 +639598.083|220477.448|110.335 +639593.300|220481.657|110.265 +639588.588|220485.802|110.076 +639583.931|220489.893|109.222 +639579.191|220494.062|108.920 +639574.494|220498.189|108.366 +639569.697|220502.414|108.463 +639555.505|220514.890|106.891 +639550.674|220519.138|106.613 +639545.874|220523.363|106.500 +639541.045|220527.609|106.232 +639536.153|220531.919|106.455 +639531.267|220536.226|107.000 +639526.278|220540.624|107.607 +639516.366|220549.366|108.820 +639501.568|220562.411|110.164 +639496.596|220566.797|110.868 +639486.657|220575.560|111.926 +639481.734|220579.891|111.917 +639476.769|220584.268|112.304 +639466.854|220593.007|113.014 +639456.942|220601.736|113.425 +639447.051|220610.451|113.776 +639442.150|220614.764|113.813 +639437.166|220619.150|113.727 +639432.244|220623.481|113.563 +639427.321|220627.812|113.419 +639422.362|220632.177|113.197 +639417.403|220636.538|112.959 +639412.511|220640.842|112.615 +639407.579|220645.177|112.164 +639402.614|220649.541|111.584 +639397.698|220653.863|111.018 +639392.772|220658.192|110.551 +639387.795|220662.568|110.124 +639382.845|220666.921|109.442 +639377.874|220671.289|108.969 +639372.899|220675.663|108.543 +639367.910|220680.055|108.311 +639362.923|220684.441|108.046 +639357.879|220688.879|107.887 +639352.880|220693.280|107.784 +639347.832|220697.721|107.710 +639342.818|220702.138|107.829 +639337.759|220706.591|107.927 +639317.502|220724.437|108.908 +639312.439|220728.890|108.588 +639287.076|220751.232|109.362 +639271.571|220764.936|113.459 +639266.451|220769.447|113.581 +639261.373|220773.918|113.813 +639256.252|220778.432|114.026 +639251.131|220782.943|114.236 +639246.081|220787.390|114.163 +639240.878|220791.981|114.968 +639235.833|220796.422|114.858 +639230.682|220800.960|114.940 +639225.559|220805.480|115.404 +639220.465|220809.964|115.394 +639215.317|220814.496|115.455 +639210.218|220818.989|115.608 +639205.082|220823.515|115.593 +639199.934|220828.048|115.769 +639194.829|220832.550|116.166 +639189.674|220837.094|116.580 +639184.535|220841.621|116.714 +639179.409|220846.135|116.678 +639174.227|220850.701|116.757 +639169.140|220855.181|116.955 +639163.955|220859.747|117.147 +639158.826|220864.270|117.345 +639153.693|220868.790|117.525 +639148.520|220873.347|117.565 +639143.351|220877.898|117.574 +639138.230|220882.412|117.641 +639133.061|220886.963|117.680 +639127.946|220891.465|117.537 +639122.783|220896.012|117.488 +639117.623|220900.554|117.324 +639112.462|220905.098|117.202 +639107.348|220909.600|117.184 +639102.136|220914.191|117.229 +639096.972|220918.738|117.245 +639091.812|220923.283|117.287 +639086.649|220927.830|117.336 +639081.488|220932.375|117.434 +639076.279|220936.965|117.568 +639071.119|220941.510|117.610 +639065.959|220946.054|117.790 +639060.753|220950.645|117.964 +639055.593|220955.189|118.113 +639050.435|220959.734|118.345 +639045.232|220964.318|118.494 +639040.029|220968.902|118.601 +639034.875|220973.441|118.671 +639029.672|220978.025|118.833 +639024.469|220982.606|118.897 +639019.318|220987.145|118.948 +639014.118|220991.726|119.073 +639008.967|220996.261|118.997 +639003.813|221000.797|118.881 +638998.613|221005.375|118.827 +638993.413|221009.953|118.622 +638988.259|221014.488|118.564 +638983.059|221019.069|118.537 +638977.862|221023.647|118.574 +638972.708|221028.186|118.665 +638967.511|221032.764|118.820 +638962.314|221037.345|119.113 +638957.163|221041.884|119.293 +638951.966|221046.462|119.406 +638946.767|221051.040|119.525 +638941.618|221055.578|119.738 +638936.422|221060.156|119.957 +638926.119|221069.230|120.034 +638920.932|221073.805|120.515 +638915.735|221078.384|120.750 +638910.584|221082.919|120.850 +638905.448|221087.451|121.420 +638900.251|221092.029|121.588 +638895.100|221096.568|121.628 +638889.952|221101.103|121.835 +638884.798|221105.642|121.926 +638879.646|221110.177|122.048 +638874.443|221114.761|122.073 +638864.132|221123.845|122.137 +638858.963|221128.392|121.853 +638853.799|221132.940|121.801 +638848.679|221137.445|121.628 +638843.515|221141.992|121.570 +638838.346|221146.543|121.469 +638833.219|221151.054|121.207 +638828.071|221155.593|121.564 +638802.422|221178.181|121.558 +638797.301|221182.689|121.631 +638792.187|221187.194|121.814 +638787.069|221191.702|121.939 +638782.007|221196.165|122.195 +638776.901|221200.663|122.557 +638771.848|221205.120|122.947 +638766.733|221209.628|123.194 +638756.611|221218.549|123.810 +638751.527|221223.033|124.529 +638746.455|221227.501|124.715 +638736.366|221236.401|125.864 +638721.202|221249.764|126.578 +638716.200|221254.174|127.084 +638711.119|221258.649|127.266 +638706.142|221263.038|127.480 +638701.058|221267.515|127.626 +638696.019|221271.953|127.775 +638691.011|221276.370|128.275 +638675.948|221289.641|128.824 +638670.956|221294.039|129.001 +638665.893|221298.498|128.952 +638660.882|221302.909|128.989 +638655.886|221307.310|129.171 +638625.936|221333.691|130.001 +638620.919|221338.110|130.107 +638610.986|221346.861|130.406 +638600.986|221355.667|130.156 +638596.011|221360.047|130.327 +638591.055|221364.411|130.214 +638586.041|221368.825|130.049 +638581.073|221373.196|129.912 +638576.044|221377.625|129.659 +638566.107|221386.369|129.482 +638561.105|221390.771|129.135 +638556.101|221395.172|128.803 +638551.154|221399.528|128.559 +638541.144|221408.330|127.650 +638536.176|221412.701|127.327 +638531.204|221417.072|127.026 +638521.207|221425.865|126.059 +638516.278|221430.200|125.779 +638511.255|221434.613|125.200 +638506.290|221438.981|124.700 +638496.360|221447.710|123.801 +638486.362|221456.492|122.210 +638481.339|221460.905|121.469 +638476.261|221465.355|120.040 +638471.320|221469.702|119.589 +638466.443|221473.999|119.945 +638461.682|221478.197|120.411 +638451.682|221486.978|118.564 +638441.837|221495.637|117.872 +638437.058|221499.844|118.010 +638427.386|221508.360|118.263 +638422.516|221512.642|117.857 +638389.213|221541.982|119.960 +638370.343|221558.606|120.988 +638356.225|221571.039|121.396 +638351.506|221575.193|121.597 +638342.185|221583.405|122.112 +638337.580|221587.462|122.417 +638332.983|221591.515|123.069 +638328.165|221595.746|122.240 +638323.504|221599.852|122.289 +638318.801|221603.988|122.137 +638309.715|221612.001|123.322 +638305.152|221616.021|123.688 +638291.464|221628.079|124.599 +638264.205|221652.085|125.611 +638259.615|221656.124|125.480 +638254.951|221660.220|125.002 +638250.379|221664.241|124.749 +638245.783|221668.285|124.389 +638241.327|221672.208|124.481 +638236.782|221676.207|124.401 +638227.690|221684.208|124.060 +638209.850|221699.909|123.996 +638200.886|221707.794|123.746 +638196.552|221711.610|124.084 +638183.177|221723.375|123.255 +638178.672|221727.335|122.905 +638174.283|221731.193|122.609 +638169.863|221735.083|122.417 +638165.474|221738.944|122.393 +638161.091|221742.797|122.176 +638156.717|221746.644|121.789 +638147.805|221754.471|120.600 +638143.428|221758.318|120.265 +638139.231|221762.015|120.710 +638134.951|221765.785|120.811 +638113.094|221784.985|118.129 +638108.598|221788.926|117.013 +638104.465|221792.565|117.184 +638091.712|221803.779|116.345 +638086.958|221807.936|114.072 +638082.575|221811.780|113.118 +638078.384|221815.462|112.727 +638074.180|221819.159|112.523 +638057.657|221833.692|111.929 +638053.426|221837.404|111.283 +638049.318|221841.019|111.118 +638028.750|221859.091|108.991 +638003.235|221881.460|102.157 +637999.300|221884.919|102.026 +638154.672|221746.311|121.622 +638159.073|221742.428|121.905 +638172.354|221730.715|122.752 +638176.840|221726.758|123.014 +638181.333|221722.796|123.341 +638190.276|221714.908|123.847 +638194.717|221710.988|123.990 +638199.139|221707.081|123.840 +638203.641|221703.112|124.054 +638208.076|221699.195|123.984 +638226.017|221683.358|124.087 +638239.693|221671.297|124.715 +638244.232|221667.289|124.791 +638248.779|221663.275|124.679 +638253.412|221659.190|124.987 +638257.969|221655.167|125.212 +638262.642|221651.052|125.764 +638267.256|221646.977|125.800 +638271.822|221642.944|125.614 +638317.576|221602.516|122.353 +638322.248|221598.392|122.344 +638326.985|221594.210|122.445 +638331.798|221589.973|123.243 +638336.385|221585.913|122.557 +638341.079|221581.765|122.192 +638345.776|221577.616|122.146 +638350.397|221573.532|121.686 +638355.103|221569.378|121.426 +638359.827|221565.202|121.308 +638364.543|221561.038|121.137 +638369.325|221556.814|121.088 +638378.749|221548.490|120.500 +638383.477|221544.314|120.174 +638388.201|221540.138|119.851 +638397.781|221531.680|119.729 +638402.566|221527.452|119.518 +638416.804|221514.870|118.223 +638431.279|221502.084|117.613 +638436.180|221497.762|117.936 +638441.023|221493.482|117.583 +638446.043|221489.060|118.409 +638455.949|221480.330|119.604 +638460.997|221475.886|120.378 +638465.745|221471.683|119.491 +638470.753|221467.266|120.061 +638475.767|221462.853|121.039 +638480.842|221458.385|121.768 +638485.856|221453.968|122.484 +638495.921|221445.101|123.895 +638500.901|221440.712|124.465 +638505.879|221436.320|124.670 +638510.944|221431.861|125.560 +638515.919|221427.472|125.800 +638520.945|221423.040|126.093 +638531.012|221414.167|127.257 +638546.088|221400.875|128.470 +638551.087|221396.467|128.699 +638566.147|221383.181|129.336 +638571.203|221378.725|129.769 +638576.208|221374.305|129.808 +638581.241|221369.867|130.083 +638586.300|221365.402|130.217 +638591.360|221360.940|130.345 +638596.350|221356.532|130.357 +638601.412|221352.064|130.135 +638606.432|221347.635|130.446 +638611.519|221343.146|130.482 +638616.521|221338.726|130.238 +638621.587|221334.258|130.101 +638626.598|221329.832|129.961 +638631.645|221325.373|129.738 +638636.717|221320.895|129.744 +638641.759|221316.442|129.479 +638646.864|221311.934|129.367 +638651.869|221307.517|129.263 +638656.962|221303.019|129.062 +638662.055|221298.520|128.897 +638667.121|221294.051|128.943 +638672.263|221289.510|128.821 +638677.305|221285.060|128.653 +638702.752|221262.584|127.526 +638707.864|221258.067|127.157 +638712.954|221253.577|127.108 +638718.072|221249.054|126.824 +638728.292|221240.022|126.139 +638733.412|221235.502|125.916 +638748.713|221221.981|124.551 +638753.819|221217.470|124.194 +638774.323|221199.353|122.542 +638779.483|221194.793|122.307 +638784.591|221190.282|122.027 +638789.758|221185.719|121.911 +638794.924|221181.159|121.789 +638805.196|221172.088|121.463 +638851.791|221130.971|121.951 +638856.960|221126.411|122.158 +638862.166|221121.815|122.213 +638867.320|221117.267|122.170 +638872.523|221112.674|122.124 +638877.677|221108.123|122.158 +638882.880|221103.533|122.152 +638888.019|221098.991|121.704 +638893.222|221094.401|121.737 +638898.419|221089.814|121.582 +638903.555|221085.272|121.103 +638908.703|221080.727|120.927 +638913.897|221076.140|120.680 +638919.078|221071.556|119.927 +638924.239|221067.005|120.317 +638929.484|221062.375|120.152 +638934.632|221057.831|119.976 +638939.826|221053.244|119.799 +638945.020|221048.653|119.528 +638955.368|221039.521|119.320 +638960.565|221034.931|119.040 +638965.713|221030.384|118.830 +638970.913|221025.796|118.836 +638976.110|221021.206|118.729 +638981.258|221016.661|118.662 +638986.412|221012.114|118.729 +638991.609|221007.527|118.811 +638996.809|221002.939|118.894 +639001.960|220998.395|118.979 +639007.160|220993.804|119.076 +639012.311|220989.260|119.116 +639017.511|220984.673|119.122 +639022.662|220980.125|119.006 +639027.862|220975.532|118.900 +639033.013|220970.984|118.784 +639038.216|220966.391|118.634 +639043.367|220961.843|118.570 +639048.521|220957.292|118.415 +639053.678|220952.739|118.202 +639058.836|220948.188|118.061 +639063.990|220943.637|117.930 +639069.199|220939.041|117.744 +639074.307|220934.533|117.699 +639079.468|220929.979|117.562 +639084.674|220925.383|117.479 +639089.785|220920.872|117.421 +639094.945|220916.318|117.421 +639100.106|220911.764|117.360 +639105.220|220907.253|117.324 +639110.380|220902.696|117.324 +639115.492|220898.192|117.473 +639120.649|220893.644|117.671 +639125.764|220889.133|117.714 +639130.878|220884.616|117.699 +639135.996|220880.102|117.711 +639141.114|220875.588|117.711 +639146.188|220871.107|117.607 +639151.309|220866.587|117.559 +639156.439|220862.060|117.357 +639161.572|220857.531|117.150 +639166.656|220853.041|116.949 +639171.737|220848.558|116.836 +639176.867|220844.028|116.751 +639181.948|220839.545|116.720 +639187.035|220835.058|116.641 +639192.134|220830.553|116.275 +639197.185|220826.091|115.940 +639202.284|220821.589|115.681 +639207.380|220817.090|115.547 +639212.425|220812.637|115.462 +639217.518|220808.144|115.437 +639222.517|220803.734|115.388 +639227.613|220799.238|115.352 +639232.697|220794.745|114.733 +639237.741|220790.295|114.815 +639247.839|220781.377|114.126 +639252.899|220776.908|114.032 +639257.907|220772.492|114.026 +639262.985|220768.008|113.758 +639267.956|220763.619|113.633 +639273.016|220759.148|112.974 +639283.254|220750.080|110.207 +639288.305|220745.617|109.820 +639293.361|220741.146|108.796 +639313.338|220723.516|108.838 +639318.343|220719.100|108.634 +639323.302|220714.723|108.448 +639338.289|220701.491|107.854 +639343.260|220697.099|107.616 +639348.259|220692.689|107.659 +639358.153|220683.965|107.884 +639363.048|220679.646|108.030 +639367.980|220675.300|108.351 +639372.866|220670.990|108.625 +639377.785|220666.656|109.106 +639382.604|220662.410|109.597 +639387.511|220658.088|110.213 +639397.271|220649.486|111.011 +639402.075|220645.256|111.697 +639406.942|220640.967|112.249 +639411.773|220636.709|112.691 +639416.620|220632.439|113.017 +639421.478|220628.153|113.227 +639426.343|220623.865|113.413 +639431.201|220619.579|113.645 +639436.051|220615.300|113.553 +639440.906|220611.024|113.877 +639445.753|220606.750|113.867 +639455.467|220598.179|113.712 +639460.325|220593.888|113.258 +639465.205|220589.581|113.060 +639479.808|220576.688|112.121 +639489.562|220568.074|111.243 +639494.347|220563.853|111.146 +639499.248|220559.525|110.612 +639513.860|220546.613|109.061 +639518.667|220542.370|108.600 +639523.535|220538.070|108.067 +639528.411|220533.760|107.518 +639533.246|220529.489|106.939 +639538.058|220525.241|106.549 +639542.871|220520.995|106.543 +639547.577|220516.843|106.580 +639552.311|220512.671|106.811 +639566.320|220500.338|108.549 +639571.038|220496.175|108.588 +639575.747|220492.020|108.399 +639580.386|220487.933|108.997 +639585.053|220483.824|109.454 +639589.634|220479.792|110.137 +639594.294|220475.680|110.304 +639598.967|220471.562|110.429 +639603.670|220467.411|110.384 +639608.336|220463.296|110.268 +639613.076|220459.111|110.039 +639617.742|220454.993|109.966 +639622.391|220450.897|110.030 +639627.011|220446.824|110.283 +639631.684|220442.701|110.228 +639636.229|220438.695|110.655 +639640.865|220434.608|110.563 +639654.568|220422.532|111.575 +639659.131|220418.509|111.679 +639663.758|220414.427|111.722 +639668.348|220410.376|111.703 +639682.019|220398.319|111.755 +639704.873|220378.153|111.109 +639709.423|220374.136|110.911 +639713.913|220370.176|111.075 +639718.516|220366.113|110.664 +639722.935|220362.218|110.950 +639727.410|220358.271|110.978 +639731.838|220354.366|110.981 +639736.322|220350.413|110.996 +639740.757|220346.499|111.008 +639745.231|220342.552|111.088 +639749.621|220338.681|111.100 +639754.071|220334.758|111.100 +639758.481|220330.863|111.027 +639762.898|220326.968|110.960 +639767.278|220323.103|110.835 +639771.703|220319.195|110.749 +639776.144|220315.276|110.374 +639784.898|220307.552|110.259 +639793.612|220299.862|110.164 +639797.919|220296.061|110.012 +639802.257|220292.233|109.978 +639806.530|220288.465|110.021 +639810.864|220284.637|109.783 +639819.563|220276.956|108.997 +639801.580|220290.885|109.887 +639797.279|220294.671|109.969 +639792.978|220298.463|110.085 +639788.678|220302.251|110.204 +639784.362|220306.052|110.167 +639775.705|220313.675|110.262 +639771.313|220317.549|110.655 +639766.927|220321.414|110.783 +639762.550|220325.270|110.874 +639758.124|220329.168|110.966 +639753.760|220333.012|111.036 +639749.307|220336.935|111.048 +639744.969|220340.757|111.021 +639740.534|220344.658|110.963 +639736.151|220348.520|110.935 +639731.717|220352.425|110.920 +639727.294|220356.320|110.868 +639722.816|220360.264|110.838 +639713.834|220368.177|110.981 +639709.356|220372.121|111.011 +639704.842|220376.096|110.981 +639700.350|220380.055|111.130 +639695.726|220384.130|111.441 +639668.327|220408.261|111.630 +639663.792|220412.257|111.615 +639659.183|220416.317|111.728 +639654.581|220420.368|111.530 +639649.939|220424.455|111.584 +639640.840|220432.453|110.664 +639626.941|220444.685|110.271 +639622.360|220448.714|110.064 +639617.675|220452.835|109.884 +639612.954|220456.993|109.954 +639608.211|220461.168|110.179 +639603.542|220465.280|110.292 +639598.790|220469.465|110.292 +639594.105|220473.586|110.222 +639589.375|220477.750|110.137 +639584.745|220481.816|109.405 +639580.081|220485.915|108.911 +639575.430|220490.003|108.366 +639570.581|220494.273|108.460 +639565.841|220498.442|108.512 +639546.940|220515.060|106.503 +639542.085|220519.330|106.412 +639537.318|220523.525|106.409 +639532.398|220527.862|106.817 +639527.512|220532.169|107.384 +639522.572|220536.524|108.000 +639517.628|220540.886|108.680 +639512.693|220545.239|109.323 +639507.758|220549.588|109.649 +639497.901|220558.275|110.630 +639492.957|220562.630|111.094 +639488.050|220566.956|111.338 +639483.054|220571.360|111.862 +639478.159|220575.673|112.063 +639458.310|220593.162|113.617 +639453.391|220597.494|113.724 +639448.429|220601.864|113.816 +639443.482|220606.217|113.794 +639438.572|220610.536|113.471 +639433.609|220614.907|113.633 +639428.638|220619.281|113.462 +639423.722|220623.606|113.255 +639418.714|220628.010|112.980 +639413.800|220632.332|112.788 +639408.811|220636.721|112.417 +639403.928|220641.013|111.969 +639398.960|220645.381|111.395 +639394.055|220649.691|110.716 +639379.145|220662.794|109.146 +639374.173|220667.165|108.677 +639369.184|220671.554|108.390 +639359.162|220680.369|107.811 +639354.163|220684.767|107.686 +639349.116|220689.211|107.582 +639344.062|220693.655|107.540 +639339.008|220698.105|107.549 +639333.927|220702.583|107.884 +639328.874|220707.033|107.942 +639323.811|220711.492|108.152 +639313.646|220720.441|108.488 +639308.571|220724.906|108.320 +639283.023|220747.416|110.158 +639272.632|220756.590|112.904 +639267.475|220761.138|113.529 +639262.348|220765.652|113.727 +639257.224|220770.160|113.895 +639252.101|220774.671|114.145 +639247.010|220779.146|113.849 +639236.681|220788.244|114.995 +639231.594|220792.718|114.776 +639226.412|220797.284|115.355 +639221.310|220801.774|115.428 +639216.165|220806.300|115.455 +639211.023|220810.823|115.443 +639205.926|220815.310|115.535 +639200.778|220819.839|115.672 +639195.627|220824.372|115.925 +639190.522|220828.871|116.303 +639185.322|220833.449|116.644 +639180.186|220837.966|116.699 +639175.053|220842.486|116.803 +639169.920|220847.000|116.854 +639164.784|220851.520|117.037 +639159.603|220856.080|117.153 +639154.470|220860.597|117.330 +639149.337|220865.115|117.549 +639144.162|220869.671|117.680 +639138.986|220874.225|117.784 +639133.868|220878.727|117.763 +639128.699|220883.278|117.812 +639123.527|220887.825|117.888 +639118.412|220892.324|117.833 +639113.203|220896.905|117.626 +639108.043|220901.441|117.464 +639102.879|220905.985|117.488 +639097.716|220910.527|117.458 +639092.553|220915.068|117.467 +639087.389|220919.613|117.531 +639082.226|220924.154|117.620 +639077.066|220928.696|117.684 +639071.906|220933.237|117.805 +639066.696|220937.822|117.888 +639061.585|220942.321|117.991 +639056.376|220946.902|118.132 +639051.219|220951.443|118.308 +639046.058|220955.982|118.494 +639040.855|220960.563|118.607 +639035.698|220965.101|118.726 +639030.544|220969.637|118.884 +639025.390|220974.172|118.951 +639020.187|220978.750|119.095 +639015.082|220983.243|119.137 +639009.882|220987.818|119.134 +639004.727|220992.351|119.104 +638999.576|220996.883|119.076 +638994.373|221001.458|118.958 +638989.219|221005.990|118.869 +638984.068|221010.523|118.833 +638978.865|221015.098|118.720 +638973.714|221019.630|118.866 +638968.563|221024.163|118.930 +638963.360|221028.741|118.936 +638958.209|221033.273|119.006 +638953.058|221037.808|119.290 +638947.861|221042.384|119.610 +638942.710|221046.916|119.662 +638937.559|221051.448|119.790 +638932.362|221056.023|119.963 +638927.211|221060.556|120.116 +638922.059|221065.088|120.262 +638916.908|221069.621|120.372 +638911.760|221074.153|120.524 +638906.612|221078.685|120.741 +638901.464|221083.215|121.000 +638896.313|221087.750|121.085 +638891.174|221092.273|121.676 +638886.023|221096.806|121.768 +638880.920|221101.295|121.926 +638875.775|221105.825|122.237 +638870.618|221110.363|122.192 +638865.513|221114.853|122.313 +638860.359|221119.388|122.411 +638855.241|221123.887|122.207 +638850.078|221128.429|122.100 +638844.972|221132.922|122.265 +638834.734|221141.922|122.039 +638829.610|221146.427|121.856 +638824.484|221150.935|121.658 +638819.381|221155.428|121.978 +638788.697|221182.415|121.935 +638783.619|221186.883|121.911 +638778.504|221191.382|122.137 +638773.442|221195.838|122.423 +638768.327|221200.340|122.655 +638753.172|221213.688|124.026 +638748.110|221218.144|124.340 +638743.053|221222.597|124.755 +638737.999|221227.047|125.191 +638732.998|221231.451|125.703 +638722.903|221240.336|126.151 +638717.883|221244.756|126.453 +638712.875|221249.166|126.910 +638697.793|221262.440|127.605 +638672.681|221284.542|128.803 +638667.700|221288.928|129.086 +638662.674|221293.347|128.918 +638657.630|221297.782|129.129 +638652.664|221302.153|129.114 +638647.660|221306.554|129.254 +638642.643|221310.968|129.269 +638632.694|221319.725|129.711 +638627.680|221324.135|129.839 +638622.721|221328.500|129.997 +638617.756|221332.868|130.147 +638612.736|221337.284|130.247 +638602.784|221346.032|129.985 +638597.809|221350.412|130.107 +638592.844|221354.780|130.363 +638587.900|221359.129|130.363 +638582.890|221363.534|130.235 +638577.976|221367.856|130.110 +638572.941|221372.278|129.845 +638568.012|221376.613|129.629 +638562.956|221381.054|129.239 +638558.042|221385.376|129.220 +638553.077|221389.743|129.208 +638548.093|221394.117|128.687 +638538.139|221402.868|128.196 +638533.155|221407.245|127.748 +638528.193|221411.607|127.495 +638523.246|221415.953|127.010 +638518.253|221420.339|126.590 +638513.261|221424.725|126.218 +638508.320|221429.069|125.874 +638503.349|221433.434|125.331 +638493.415|221442.163|124.404 +638488.365|221446.598|123.755 +638483.323|221451.018|122.484 +638478.315|221455.416|121.847 +638473.405|221459.732|121.567 +638468.458|221464.078|121.064 +638463.447|221468.477|120.155 +638458.522|221472.805|119.875 +638433.976|221494.375|118.007 +638424.268|221502.916|118.025 +638400.524|221523.828|120.064 +638395.779|221528.004|120.235 +638381.447|221540.617|120.552 +638376.728|221544.771|120.945 +638372.038|221548.898|121.225 +638362.528|221557.268|121.369 +638357.788|221561.438|121.399 +638343.740|221573.806|122.304 +638339.052|221577.936|122.701 +638334.361|221582.060|122.829 +638329.713|221586.157|123.182 +638325.181|221590.150|123.914 +638320.389|221594.362|123.530 +638315.805|221598.398|124.014 +638288.199|221622.703|125.557 +638269.902|221638.799|126.050 +638265.327|221642.826|126.215 +638260.673|221646.913|125.739 +638256.073|221650.961|125.550 +638251.437|221655.033|125.218 +638246.923|221659.004|125.240 +638242.433|221662.958|125.654 +638237.816|221667.014|125.212 +638224.282|221678.917|125.038 +638206.132|221694.870|124.252 +638201.654|221698.808|124.142 +638197.271|221702.664|124.237 +638192.812|221706.587|124.246 +638183.890|221714.429|123.816 +638170.543|221726.161|123.240 +638161.652|221733.976|122.679 +638152.852|221741.712|122.134 +638148.479|221745.555|121.768 +638143.907|221749.564|120.811 +638139.517|221753.422|120.421 +638135.314|221757.126|120.844 +638131.068|221760.860|120.884 +638126.765|221764.642|120.680 +638113.576|221776.221|118.823 +638109.013|221780.224|117.632 +638104.712|221784.000|117.104 +638096.269|221791.425|116.964 +638087.534|221799.094|115.495 +638082.953|221803.102|113.724 +638078.676|221806.854|113.200 +638074.479|221810.545|113.005 +638070.468|221814.081|113.343 +638062.296|221821.268|113.493 +638058.142|221824.923|113.307 +638049.522|221832.482|111.374 +638045.398|221836.106|111.158 +638041.350|221839.663|111.045 +638033.249|221846.786|110.621 +638020.581|221857.899|108.058 +638016.369|221861.590|107.015 +638012.156|221865.281|105.775 +638007.655|221869.213|103.699 +638003.314|221873.011|102.038 +637999.355|221876.495|102.014 +637995.487|221879.896|101.928 +637991.631|221883.289|101.910 +638157.171|221735.723|122.295 +638161.655|221731.779|122.719 +638166.081|221727.877|122.929 +638174.999|221720.022|123.441 +638179.501|221716.057|123.807 +638183.948|221712.137|123.947 +638188.459|221708.166|124.145 +638192.906|221704.249|124.316 +638197.359|221700.320|124.301 +638201.819|221696.391|124.328 +638206.308|221692.432|124.276 +638210.661|221688.585|123.594 +638219.823|221680.517|124.423 +638242.772|221660.306|125.816 +638247.246|221656.356|125.349 +638251.843|221652.308|125.486 +638256.475|221648.224|125.581 +638261.127|221644.127|125.764 +638265.821|221639.991|126.206 +638270.356|221635.992|126.123 +638288.833|221619.703|125.828 +638293.466|221615.613|125.541 +638298.157|221611.480|125.572 +638312.019|221599.248|124.941 +638316.607|221595.194|124.221 +638321.264|221591.086|124.173 +638325.857|221587.026|123.505 +638330.545|221582.886|123.088 +638335.129|221578.842|122.667 +638339.869|221574.660|122.569 +638344.569|221570.512|122.256 +638358.666|221558.073|121.417 +638373.028|221545.408|121.375 +638377.728|221541.257|120.881 +638382.474|221537.072|120.683 +638387.287|221532.826|120.591 +638401.594|221520.201|119.951 +638411.192|221511.731|119.134 +638415.947|221507.534|118.796 +638420.769|221503.279|118.577 +638430.312|221494.854|117.525 +638435.278|221490.480|117.952 +638440.197|221486.146|118.101 +638450.112|221477.413|118.997 +638455.084|221473.036|119.576 +638460.140|221468.592|120.774 +638470.083|221459.835|121.405 +638475.042|221455.468|122.039 +638479.995|221451.106|122.295 +638485.100|221446.616|123.319 +638490.050|221442.255|123.624 +638495.092|221437.820|124.246 +638505.190|221428.935|125.712 +638510.134|221424.579|126.099 +638515.169|221420.144|126.443 +638525.194|221411.314|127.260 +638530.168|221406.934|127.614 +638540.224|221398.077|128.473 +638545.253|221393.645|128.559 +638550.285|221389.213|129.089 +638555.323|221384.775|129.303 +638565.306|221375.976|129.443 +638570.356|221371.529|129.827 +638575.385|221367.097|130.077 +638580.396|221362.680|130.202 +638585.410|221358.261|130.363 +638590.449|221353.817|130.354 +638615.491|221331.734|130.083 +638620.554|221327.272|129.936 +638625.574|221322.846|129.894 +638630.621|221318.390|129.665 +638635.608|221313.991|129.312 +638640.671|221309.526|129.269 +638645.745|221305.052|129.379 +638650.729|221300.653|129.059 +638655.828|221296.157|128.937 +638660.845|221291.735|128.982 +638665.951|221287.233|128.961 +638670.992|221282.783|128.809 +638696.333|221260.417|127.577 +638711.552|221246.987|126.794 +638716.612|221242.522|126.404 +638721.723|221238.008|126.066 +638726.804|221233.524|125.995 +638731.913|221229.016|125.630 +638742.059|221220.055|124.642 +638747.113|221215.596|124.209 +638752.228|221211.082|123.984 +638767.519|221197.576|122.563 +638772.637|221193.062|122.374 +638782.860|221184.040|121.932 +638788.039|221179.474|122.033 +638793.159|221174.960|121.987 +638813.755|221156.800|122.393 +638818.891|221152.264|121.859 +638824.066|221147.701|122.079 +638839.507|221134.086|122.228 +638844.674|221129.532|122.329 +638849.831|221124.981|122.365 +638854.994|221120.434|122.448 +638870.496|221106.757|122.134 +638875.644|221102.213|121.999 +638880.799|221097.668|121.963 +638885.989|221093.087|121.664 +638891.122|221088.555|121.009 +638896.276|221084.007|121.052 +638901.473|221079.423|120.917 +638906.618|221074.884|120.649 +638911.763|221070.343|120.451 +638922.111|221061.214|120.274 +638927.256|221056.676|120.018 +638932.453|221052.091|119.933 +638937.601|221047.550|119.720 +638942.798|221042.966|119.683 +638947.946|221038.424|119.424 +638953.094|221033.880|119.268 +638958.291|221029.295|119.086 +638963.488|221024.711|119.019 +638968.639|221020.167|118.958 +638973.787|221015.625|118.881 +638978.987|221011.041|118.897 +638984.135|221006.499|118.970 +638989.335|221001.918|119.067 +638994.535|220997.334|119.134 +638999.686|220992.792|119.171 +639004.834|220988.251|119.180 +639010.034|220983.667|119.198 +639015.185|220979.125|119.211 +639020.336|220974.581|119.049 +639025.536|220969.993|118.936 +639030.687|220965.449|118.912 +639035.838|220960.904|118.775 +639041.041|220956.314|118.680 +639046.196|220951.766|118.537 +639051.353|220947.216|118.308 +639056.556|220942.622|118.168 +639061.664|220938.114|118.068 +639066.821|220933.564|117.994 +639071.979|220929.013|117.903 +639077.139|220924.459|117.787 +639082.299|220919.906|117.650 +639087.459|220915.355|117.635 +639092.617|220910.801|117.644 +639097.777|220906.250|117.610 +639102.892|220901.739|117.598 +639108.052|220897.189|117.665 +639113.160|220892.681|117.821 +639118.269|220888.176|117.973 +639123.435|220883.619|117.952 +639128.553|220879.102|117.879 +639133.670|220874.588|117.879 +639138.843|220870.025|117.726 +639143.963|220865.505|117.674 +639149.093|220860.978|117.443 +639154.220|220856.452|117.284 +639159.301|220851.969|117.181 +639164.431|220847.442|117.040 +639169.564|220842.913|116.897 +639174.642|220838.429|116.858 +639179.777|220833.900|116.766 +639184.865|220829.407|116.589 +639189.967|220824.905|116.233 +639195.115|220820.358|115.946 +639200.166|220815.898|115.660 +639205.262|220811.403|115.562 +639210.355|220806.907|115.455 +639215.448|220802.414|115.422 +639220.542|220797.921|115.437 +639225.595|220793.462|115.321 +639230.661|220788.991|115.023 +639235.711|220784.531|114.989 +639240.829|220780.014|114.693 +639245.901|220775.537|114.404 +639250.936|220771.090|113.983 +639256.054|220766.573|113.819 +639261.065|220762.150|113.782 +639266.143|220757.669|113.563 +639271.209|220753.192|112.855 +639281.422|220744.151|110.414 +639311.720|220717.396|108.308 +639316.746|220712.958|107.890 +639321.781|220708.517|107.951 +639326.743|220704.137|107.771 +639331.733|220699.736|107.832 +639336.762|220695.295|107.491 +639341.764|220690.881|107.488 +639346.723|220686.507|107.445 +639351.719|220682.100|107.546 +639356.669|220677.735|107.649 +639361.609|220673.377|107.851 +639366.535|220669.039|108.250 +639371.470|220664.687|108.536 +639376.398|220660.343|108.936 +639381.257|220656.064|109.527 +639386.173|220651.733|110.057 +639391.047|220647.441|110.548 +639395.902|220643.165|111.207 +639400.764|220638.882|111.801 +639405.589|220634.633|112.310 +639410.481|220630.321|112.636 +639415.330|220626.047|112.938 +639420.241|220621.716|113.139 +639425.139|220617.394|113.051 +639429.982|220613.124|113.462 +639439.736|220604.519|113.736 +639444.579|220600.249|113.776 +639449.419|220595.979|113.852 +639454.324|220591.647|113.822 +639459.210|220587.335|113.575 +639464.138|220582.979|112.999 +639478.759|220570.061|111.987 +639483.621|220565.770|111.688 +639498.258|220552.840|110.524 +639503.153|220548.515|110.079 +639507.999|220544.233|109.637 +639517.753|220535.610|108.418 +639522.654|220531.276|107.680 +639527.531|220526.966|107.159 +639532.368|220522.692|106.583 +639537.174|220518.447|106.260 +639541.978|220514.207|106.342 +639546.684|220510.055|106.400 +639565.323|220493.633|108.457 +639570.062|220489.448|108.384 +639574.820|220485.248|108.232 +639579.414|220481.200|108.823 +639583.977|220477.183|109.625 +639588.616|220473.095|109.954 +639593.246|220469.008|110.015 +639607.309|220456.596|109.914 +639611.991|220452.463|109.756 +639616.633|220448.367|109.841 +639621.202|220444.340|110.100 +639625.777|220440.305|110.326 +639630.358|220436.263|110.539 +639635.043|220432.127|110.451 +639639.572|220428.134|110.707 +639648.655|220420.127|111.405 +639653.206|220416.113|111.575 +639657.778|220412.077|111.633 +639662.365|220408.029|111.630 +639666.913|220404.015|111.584 +639671.457|220400.004|111.569 +639689.660|220383.935|111.289 +639694.205|220379.924|111.097 +639698.752|220375.907|110.899 +639703.273|220371.917|110.877 +639707.756|220367.963|110.801 +639725.624|220352.190|110.710 +639730.104|220348.237|110.734 +639734.521|220344.338|110.838 +639738.898|220340.477|110.890 +639743.326|220336.569|110.963 +639747.725|220332.686|110.941 +639752.132|220328.797|110.902 +639756.546|220324.901|110.835 +639760.974|220320.991|110.716 +639765.351|220317.129|110.624 +639769.786|220313.212|110.518 +639778.577|220305.452|110.225 +639791.601|220293.949|109.929 +639795.950|220290.108|109.829 +639800.248|220286.316|109.753 +639804.527|220282.540|109.765 +639808.852|220278.718|109.582 +639813.199|220274.880|109.329 +639797.377|220286.472|109.664 +639793.073|220290.258|109.756 +639784.563|220297.743|109.548 +639780.189|220301.596|109.777 +639775.882|220305.388|109.963 +639771.484|220309.262|110.350 +639767.089|220313.133|110.505 +639762.709|220316.989|110.591 +639758.326|220320.844|110.707 +639753.952|220324.697|110.804 +639749.578|220328.544|110.905 +639745.167|220332.427|110.954 +639740.781|220336.285|110.905 +639736.356|220340.178|110.801 +639731.976|220344.034|110.758 +639727.550|220347.926|110.688 +639723.228|220351.724|110.368 +639714.267|220359.615|110.621 +639705.306|220367.500|110.679 +639700.767|220371.496|110.780 +639696.277|220375.449|110.905 +639691.788|220379.400|111.039 +639687.231|220383.414|111.301 +639673.603|220395.405|111.359 +639669.028|220399.434|111.511 +639664.468|220403.445|111.594 +639659.912|220407.456|111.685 +639655.334|220411.486|111.633 +639650.713|220415.552|111.530 +639646.162|220419.554|111.344 +639641.608|220423.562|111.194 +639637.030|220427.589|110.911 +639627.813|220435.696|110.435 +639623.226|220439.732|110.249 +639618.599|220443.801|109.996 +639613.972|220447.873|109.789 +639609.275|220452.006|109.695 +639604.523|220456.194|109.969 +639599.811|220460.342|110.018 +639595.114|220464.475|109.993 +639590.432|220468.596|109.890 +639576.402|220480.932|108.613 +639571.650|220485.110|108.372 +639566.911|220489.283|108.402 +639562.177|220493.450|108.418 +639548.035|220505.877|106.458 +639543.228|220510.107|106.366 +639538.476|220514.289|106.244 +639533.599|220518.584|106.324 +639528.701|220522.903|106.927 +639523.812|220527.213|107.488 +639518.816|220531.620|108.146 +639513.918|220535.939|108.847 +639489.208|220557.720|111.167 +639484.228|220562.109|111.563 +639464.382|220579.596|112.849 +639459.374|220584.015|113.624 +639454.385|220588.407|113.864 +639449.425|220592.775|113.901 +639444.530|220597.082|113.819 +639439.535|220601.480|113.794 +639429.641|220610.185|113.358 +639419.710|220618.921|112.904 +639414.767|220623.277|112.968 +639409.765|220627.675|112.657 +639404.812|220632.030|112.377 +639399.840|220636.401|111.825 +639394.921|220640.723|111.258 +639389.913|220645.125|110.597 +639384.948|220649.486|109.993 +639379.980|220653.857|109.475 +639375.018|220658.216|108.866 +639369.985|220662.642|108.488 +639364.990|220667.037|108.259 +639359.966|220671.453|107.835 +639354.922|220675.891|107.619 +639349.868|220680.338|107.537 +639344.775|220684.822|107.387 +639339.755|220689.242|107.506 +639334.656|220693.728|107.457 +639329.578|220698.206|107.777 +639324.430|220702.735|107.759 +639319.370|220707.191|107.918 +639314.259|220711.696|108.137 +639309.107|220716.232|108.256 +639293.828|220729.682|108.457 +639283.507|220738.790|109.926 +639267.941|220752.530|113.319 +639262.732|220757.124|113.947 +639257.627|220761.616|113.858 +639252.564|220766.076|113.864 +639247.391|220770.629|114.059 +639237.120|220779.682|114.962 +639231.978|220784.205|114.776 +639226.903|220788.677|115.184 +639221.742|220793.221|115.379 +639216.597|220797.751|115.358 +639211.498|220802.240|115.398 +639206.350|220806.773|115.465 +639201.202|220811.305|115.580 +639196.054|220815.837|115.733 +639190.951|220820.330|115.940 +639185.794|220824.878|116.388 +639180.597|220829.456|116.662 +639175.455|220833.982|116.848 +639170.326|220838.499|116.809 +639165.187|220843.023|116.958 +639160.054|220847.543|117.068 +639154.872|220852.106|117.181 +639149.739|220856.623|117.330 +639144.610|220861.143|117.485 +639139.431|220865.703|117.650 +639134.256|220870.260|117.744 +639129.129|220874.771|117.857 +639123.959|220879.324|117.930 +639118.790|220883.875|117.958 +639113.672|220888.380|117.940 +639108.509|220892.922|117.824 +639103.346|220897.466|117.714 +639098.182|220902.011|117.708 +639093.016|220906.558|117.699 +639087.901|220911.060|117.751 +639082.738|220915.605|117.748 +639077.575|220920.149|117.815 +639072.415|220924.694|117.845 +639067.251|220929.239|117.964 +639062.091|220933.783|118.077 +639056.931|220938.328|118.202 +639051.770|220942.872|118.293 +639046.610|220947.414|118.500 +639041.450|220951.958|118.668 +639036.293|220956.500|118.820 +639031.138|220961.038|118.866 +639025.981|220965.577|118.933 +639020.778|220970.158|118.973 +639015.621|220974.700|119.137 +639010.467|220979.238|119.250 +639005.264|220983.816|119.171 +639000.113|220988.352|119.192 +638994.959|220992.890|119.226 +638989.756|220997.468|119.153 +638984.601|221002.004|119.058 +638979.447|221006.539|119.025 +638974.244|221011.117|118.976 +638969.093|221015.653|119.019 +638963.936|221020.191|118.979 +638958.736|221024.769|119.083 +638953.582|221029.308|119.177 +638948.431|221033.843|119.430 +638932.926|221047.495|119.817 +638927.726|221052.073|119.997 +638922.623|221056.569|120.104 +638917.423|221061.147|120.256 +638912.272|221065.682|120.479 +638907.112|221070.221|120.293 +638901.961|221074.759|120.393 +638896.822|221079.289|120.988 +638891.671|221083.821|121.247 +638886.517|221088.357|121.301 +638881.375|221092.886|121.798 +638876.227|221097.418|122.006 +638871.069|221101.954|122.051 +638865.961|221106.447|122.134 +638860.807|221110.985|122.246 +638855.649|221115.520|122.304 +638850.492|221120.059|122.371 +638845.338|221124.594|122.582 +638819.643|221147.192|122.176 +638814.465|221151.743|121.999 +638788.798|221174.320|121.990 +638783.677|221178.824|122.067 +638778.596|221183.296|122.027 +638773.420|221187.847|122.082 +638768.355|221192.306|122.365 +638763.243|221196.805|122.685 +638753.130|221205.711|123.517 +638748.073|221210.164|123.938 +638743.010|221214.620|124.270 +638722.759|221232.451|125.724 +638717.745|221236.868|126.111 +638712.680|221241.327|126.486 +638707.660|221245.743|126.828 +638697.601|221254.598|127.297 +638692.578|221259.021|127.626 +638687.540|221263.452|127.782 +638682.504|221267.887|127.989 +638677.484|221272.307|128.385 +638667.453|221281.134|128.775 +638662.455|221285.532|128.934 +638657.468|221289.921|129.217 +638652.384|221294.390|128.998 +638647.373|221298.800|129.074 +638642.411|221303.162|129.174 +638637.406|221307.569|129.333 +638632.392|221311.980|129.434 +638627.406|221316.372|129.799 +638617.414|221325.159|129.967 +638612.501|221329.481|130.174 +638587.620|221351.366|130.333 +638582.691|221355.703|130.485 +638577.674|221360.117|130.324 +638572.761|221364.436|130.250 +638557.783|221377.597|129.379 +638552.879|221381.913|129.443 +638547.868|221386.314|129.104 +638542.921|221390.664|128.870 +638537.938|221395.047|128.784 +638533.018|221399.369|128.458 +638527.974|221403.801|127.940 +638523.027|221408.144|127.458 +638518.055|221412.512|127.181 +638513.093|221416.868|126.639 +638508.055|221421.287|125.913 +638498.182|221429.959|125.361 +638493.245|221434.293|125.118 +638488.289|221438.643|124.401 +638483.268|221443.047|123.615 +638478.315|221447.390|122.993 +638468.382|221456.111|121.993 +638463.432|221460.454|121.494 +638458.467|221464.810|120.914 +638453.557|221469.120|120.384 +638428.965|221490.703|117.946 +638419.294|221499.207|118.223 +638395.650|221520.012|120.625 +638390.941|221524.154|121.015 +638367.185|221545.045|121.929 +638352.890|221557.606|121.887 +638338.851|221569.954|122.579 +638334.282|221573.977|123.347 +638329.582|221578.110|123.420 +638324.925|221582.207|123.746 +638320.325|221586.251|124.109 +638315.790|221590.247|124.840 +638311.233|221594.262|125.742 +638265.168|221634.751|126.706 +638260.462|221638.881|126.218 +638255.820|221642.960|126.066 +638251.257|221646.971|126.072 +638246.749|221650.930|126.123 +638242.232|221654.902|126.392 +638228.464|221666.993|125.749 +638214.776|221679.008|124.673 +638210.289|221682.949|124.718 +638196.884|221694.733|124.947 +638192.367|221698.695|124.441 +638187.914|221702.606|124.240 +638183.454|221706.526|124.276 +638179.068|221710.375|124.185 +638174.542|221714.347|123.719 +638170.101|221718.248|123.405 +638156.736|221729.977|122.432 +638143.724|221741.407|122.228 +638139.094|221745.458|121.021 +638134.738|221749.283|120.771 +638121.808|221760.637|120.290 +638108.669|221772.155|118.436 +638104.145|221776.115|117.190 +638100.021|221779.739|117.391 +638082.767|221794.869|115.047 +638078.374|221798.713|114.041 +638074.183|221802.392|113.639 +638069.992|221806.071|113.468 +638065.963|221809.612|113.736 +638041.186|221831.354|111.834 +638037.114|221834.926|111.627 +638032.944|221838.581|111.054 +638020.523|221849.465|108.963 +638016.475|221853.013|108.308 +638003.396|221864.443|103.364 +637999.361|221867.979|102.636 +637995.277|221871.557|101.947 +637991.418|221874.943|101.898 +637987.565|221878.327|101.889 +638154.989|221728.801|122.225 +638159.400|221724.914|122.582 +638163.844|221721.004|122.856 +638172.732|221713.173|123.490 +638177.218|221709.217|123.804 +638190.690|221697.348|124.636 +638195.211|221693.364|124.938 +638199.719|221689.393|125.194 +638204.147|221685.488|125.099 +638208.646|221681.520|125.115 +638213.084|221677.603|124.868 +638226.812|221665.509|125.660 +638245.113|221649.376|126.163 +638249.730|221645.300|126.178 +638254.318|221641.262|126.291 +638258.859|221637.254|126.215 +638263.532|221633.139|126.544 +638272.764|221624.995|126.456 +638277.482|221620.840|126.812 +638305.372|221596.249|126.468 +638309.913|221592.238|125.758 +638314.406|221588.266|124.816 +638319.005|221584.206|124.164 +638323.641|221580.113|123.725 +638328.393|221575.925|123.661 +638333.063|221571.807|123.438 +638337.665|221567.741|122.569 +638351.860|221555.220|121.935 +638356.734|221550.934|122.664 +638361.562|221546.676|122.594 +638380.578|221529.906|121.591 +638385.382|221525.672|121.442 +638394.971|221517.211|120.802 +638399.774|221512.977|120.707 +638409.208|221504.644|119.195 +638414.015|221500.398|118.546 +638423.689|221491.870|118.311 +638443.449|221474.469|119.430 +638448.451|221470.071|120.198 +638453.380|221465.727|120.155 +638458.333|221461.366|120.658 +638463.380|221456.928|121.478 +638468.406|221452.508|122.204 +638473.390|221448.122|122.643 +638478.434|221443.687|123.563 +638483.415|221439.298|123.700 +638488.484|221434.842|124.502 +638493.479|221430.443|124.801 +638513.581|221412.753|126.821 +638518.607|221408.327|127.151 +638523.652|221403.886|127.626 +638528.684|221399.457|128.047 +638533.698|221395.044|128.339 +638538.715|221390.624|128.702 +638543.741|221386.202|129.165 +638553.766|221377.372|129.537 +638568.878|221364.064|130.339 +638573.877|221359.657|130.321 +638578.887|221355.243|130.452 +638583.935|221350.796|130.461 +638598.953|221337.562|130.455 +638619.072|221319.822|129.976 +638624.083|221315.406|129.833 +638629.119|221310.962|129.467 +638634.108|221306.560|129.156 +638639.180|221302.092|129.181 +638644.237|221297.636|129.080 +638649.293|221293.177|128.998 +638654.356|221288.714|129.007 +638659.407|221284.264|128.900 +638664.497|221279.777|128.696 +638674.616|221270.853|128.220 +638679.697|221266.372|127.974 +638684.720|221261.944|127.623 +638689.804|221257.463|127.449 +638694.901|221252.973|127.410 +638699.966|221248.505|127.044 +638705.038|221244.030|126.767 +638710.116|221239.556|126.572 +638715.213|221235.057|126.002 +638720.272|221230.595|125.557 +638725.344|221226.123|125.346 +638740.630|221212.642|124.316 +638745.717|221208.162|124.356 +638750.798|221203.675|123.597 +638760.997|221194.677|122.624 +638766.108|221190.169|122.356 +638771.226|221185.658|122.176 +638776.350|221181.144|122.131 +638781.525|221176.584|122.137 +638786.637|221172.079|121.865 +638802.062|221158.488|122.036 +638807.253|221153.919|122.448 +638833.039|221131.202|122.713 +638838.209|221126.652|122.896 +638843.357|221122.110|122.637 +638848.508|221117.572|122.408 +638853.671|221113.024|122.521 +638858.822|221108.483|122.368 +638864.028|221103.895|122.326 +638869.180|221099.357|122.185 +638874.325|221094.818|121.926 +638879.461|221090.286|121.308 +638884.663|221085.702|121.271 +638889.766|221081.206|121.122 +638894.957|221076.625|120.786 +638900.114|221072.083|120.799 +638905.262|221067.545|120.585 +638910.456|221062.964|120.320 +638915.607|221058.425|120.232 +638920.758|221053.887|120.140 +638941.454|221035.644|119.564 +638946.654|221031.063|119.457 +638951.756|221026.564|119.296 +638956.956|221021.983|119.198 +638962.156|221017.399|119.107 +638967.310|221012.861|119.107 +638972.507|221008.279|119.104 +638977.710|221003.698|119.107 +638982.812|220999.202|119.189 +638988.012|220994.621|119.208 +638993.215|220990.037|119.272 +638998.366|220985.499|119.296 +639003.566|220980.917|119.250 +639008.717|220976.379|119.229 +639013.871|220971.837|119.165 +639019.071|220967.253|119.064 +639024.226|220962.712|119.025 +639029.380|220958.170|118.942 +639034.534|220953.629|118.900 +639039.688|220949.084|118.766 +639044.845|220944.539|118.616 +639050.051|220939.949|118.424 +639055.160|220935.444|118.260 +639060.317|220930.897|118.147 +639065.526|220926.306|118.007 +639070.634|220921.804|117.988 +639075.795|220917.257|117.900 +639080.906|220912.749|117.836 +639086.067|220908.204|117.857 +639091.178|220903.696|117.839 +639096.338|220899.149|117.827 +639101.450|220894.644|117.882 +639106.613|220890.096|117.933 +639111.725|220885.591|117.991 +639116.839|220881.086|118.040 +639122.009|220876.526|117.888 +639127.129|220872.012|117.769 +639132.250|220867.501|117.772 +639137.374|220862.981|117.610 +639142.452|220858.506|117.495 +639147.581|220853.980|117.251 +639152.708|220849.463|117.178 +639157.838|220844.943|117.095 +639162.922|220840.459|116.931 +639168.003|220835.982|116.876 +639173.136|220831.458|116.812 +639178.223|220826.972|116.659 +639183.319|220822.476|116.361 +639188.425|220817.971|115.958 +639193.475|220813.518|115.730 +639198.572|220809.025|115.571 +639203.668|220804.532|115.462 +639208.718|220800.082|115.330 +639213.812|220795.590|115.282 +639218.807|220791.188|115.318 +639223.913|220786.686|115.175 +639228.972|220782.227|114.995 +639234.035|220777.762|114.791 +639239.089|220773.309|114.806 +639249.254|220764.338|113.953 +639254.274|220759.913|113.819 +639259.340|220755.450|113.761 +639264.369|220751.015|113.544 +639269.413|220746.562|113.133 +639284.742|220733.020|110.234 +639289.783|220728.564|109.405 +639294.885|220724.059|108.521 +639304.926|220715.208|108.262 +639309.933|220710.791|108.034 +639314.987|220706.335|107.893 +639319.986|220701.930|107.826 +639330.014|220693.088|107.464 +639335.019|220688.678|107.412 +639340.026|220684.261|107.363 +639344.989|220679.890|107.311 +639349.939|220675.526|107.381 +639354.892|220671.164|107.476 +639359.872|220666.778|107.808 +639364.804|220662.437|108.140 +639369.738|220658.091|108.469 +639374.612|220653.802|108.930 +639384.372|220645.216|110.228 +639389.288|220640.891|110.774 +639394.153|220636.612|111.371 +639399.024|220632.326|111.901 +639403.907|220628.028|112.343 +639408.796|220623.722|112.715 +639413.733|220619.372|112.673 +639418.577|220615.108|113.054 +639423.490|220610.777|113.276 +639428.355|220606.491|113.493 +639433.262|220602.169|113.785 +639442.997|220593.586|113.858 +639447.886|220589.276|113.950 +639452.784|220584.957|113.968 +639457.655|220580.662|113.843 +639462.568|220576.325|113.401 +639477.312|220563.313|112.237 +639482.252|220558.948|111.688 +639487.138|220554.636|111.231 +639501.769|220541.724|110.219 +639506.679|220537.390|109.689 +639516.512|220528.703|108.268 +639521.349|220524.430|107.640 +639531.127|220515.795|106.458 +639535.919|220511.567|106.263 +639540.677|220507.373|106.296 +639545.441|220503.173|106.318 +639564.128|220486.723|108.408 +639568.916|220482.498|108.347 +639573.613|220478.362|108.597 +639582.870|220470.212|109.679 +639587.555|220466.082|109.707 +639592.228|220461.964|109.841 +639606.297|220449.559|109.719 +639610.945|220445.459|109.759 +639615.569|220441.384|109.975 +639620.190|220437.312|110.219 +639624.756|220433.291|110.512 +639629.343|220429.247|110.682 +639643.038|220417.183|111.408 +639647.592|220413.168|111.554 +639652.154|220409.148|111.661 +639656.723|220405.119|111.737 +639661.274|220401.104|111.655 +639665.825|220397.093|111.606 +639670.388|220393.070|111.487 +639674.972|220389.025|111.283 +639679.544|220384.993|111.167 +639684.021|220381.042|111.008 +639688.538|220377.059|110.957 +639693.007|220373.118|110.899 +639697.561|220369.100|110.676 +639702.044|220365.147|110.576 +639706.531|220361.188|110.475 +639724.197|220345.612|110.646 +639728.623|220341.711|110.691 +639733.042|220337.816|110.780 +639737.413|220333.963|110.865 +639741.793|220330.101|110.929 +639746.176|220326.236|110.978 +639750.550|220322.377|110.850 +639754.918|220318.525|110.755 +639759.292|220314.669|110.655 +639763.620|220310.850|110.530 +639768.003|220306.982|110.420 +639772.319|220303.175|110.155 +639776.742|220299.264|109.625 +639785.337|220291.684|109.597 +639789.577|220287.947|109.759 +639793.823|220284.201|109.658 +639798.066|220280.455|109.579 +639802.357|220276.673|109.545 +639806.560|220272.963|109.445 +639810.840|220269.187|109.253 +639794.798|220280.864|109.524 +639790.439|220284.698|109.625 +639786.139|220288.474|109.457 +639781.759|220292.330|109.689 +639772.938|220300.090|110.006 +639768.463|220304.025|110.234 +639764.056|220307.906|110.432 +639759.615|220311.810|110.542 +639755.125|220315.760|110.658 +639750.651|220319.698|110.728 +639746.167|220323.642|110.853 +639741.708|220327.562|110.868 +639737.267|220331.467|110.826 +639732.786|220335.405|110.722 +639728.358|220339.300|110.649 +639723.822|220343.284|110.588 +639719.296|220347.264|110.515 +639705.784|220359.146|110.316 +639701.230|220363.151|110.454 +639696.634|220367.192|110.563 +639691.986|220371.283|110.694 +639687.402|220375.312|110.780 +639682.817|220379.348|110.896 +639678.230|220383.383|111.042 +639673.594|220387.458|111.185 +639668.955|220391.543|111.380 +639664.334|220395.609|111.499 +639659.671|220399.708|111.572 +639655.053|220403.771|111.706 +639650.429|220407.834|111.600 +639645.815|220411.891|111.463 +639641.221|220415.927|111.231 +639631.955|220424.065|110.640 +639627.344|220428.119|110.554 +639622.705|220432.197|110.350 +639618.026|220436.309|110.097 +639613.396|220440.375|109.859 +639608.711|220444.493|109.673 +639604.072|220448.568|109.524 +639599.320|220452.747|109.466 +639594.596|220456.901|109.576 +639589.893|220461.037|109.588 +639571.093|220477.548|108.064 +639566.280|220481.782|108.201 +639561.528|220485.961|108.314 +639556.752|220490.158|108.259 +639547.465|220498.305|106.433 +639542.685|220502.502|106.101 +639537.915|220506.696|106.083 +639533.078|220510.951|106.193 +639528.213|220515.231|106.522 +639523.321|220519.541|107.076 +639518.423|220523.857|107.717 +639513.537|220528.157|108.287 +639503.616|220536.902|109.911 +639488.986|220549.780|111.103 +639484.130|220554.053|111.277 +639479.134|220558.452|111.770 +639464.419|220571.406|112.913 +639459.459|220575.776|113.669 +639454.513|220580.129|113.931 +639449.624|220584.430|114.160 +639444.686|220588.770|113.995 +639439.836|220593.034|113.965 +639434.871|220597.399|114.050 +639430.004|220601.672|113.355 +639425.060|220606.019|113.331 +639420.192|220610.295|113.069 +639415.279|220614.614|112.819 +639410.326|220618.964|112.481 +639405.388|220623.307|112.490 +639400.487|220627.611|112.145 +639395.558|220631.939|111.630 +639390.636|220636.261|111.085 +639385.725|220640.571|110.426 +639380.793|220644.902|109.969 +639375.892|220649.200|109.216 +639370.988|220653.504|108.512 +639366.002|220657.884|108.143 +639361.006|220662.273|107.881 +639356.080|220666.601|107.439 +639351.030|220671.039|107.272 +639346.022|220675.443|107.198 +639341.008|220679.851|107.211 +639335.942|220684.304|107.253 +639330.925|220688.717|107.372 +639325.850|220693.183|107.607 +639320.827|220697.605|107.860 +639315.734|220702.080|107.762 +639310.674|220706.533|107.927 +639305.621|220710.977|108.024 +639300.549|220715.442|108.393 +639269.657|220742.664|113.032 +639264.543|220747.169|113.627 +639259.419|220751.677|113.745 +639254.295|220756.185|113.864 +639249.229|220760.638|113.855 +639244.087|220765.167|114.331 +639238.955|220769.685|114.675 +639233.840|220774.183|114.788 +639228.680|220778.725|114.910 +639223.568|220783.224|115.059 +639218.405|220787.762|115.224 +639213.306|220792.249|115.227 +639208.209|220796.729|115.193 +639203.006|220801.308|115.327 +639197.904|220805.797|115.468 +639192.756|220810.327|115.614 +639187.602|220814.862|115.861 +639182.445|220819.401|116.227 +639177.293|220823.936|116.516 +639172.100|220828.505|116.714 +639166.958|220833.028|116.894 +639161.776|220837.588|116.928 +639156.637|220842.105|117.056 +639151.455|220846.665|117.144 +639146.274|220851.225|117.254 +639141.141|220855.739|117.412 +639135.914|220860.341|117.555 +639130.732|220864.898|117.738 +639125.605|220869.406|117.845 +639120.384|220874.003|117.933 +639115.212|220878.550|117.997 +639110.042|220883.098|118.040 +639104.827|220887.685|117.985 +639099.661|220892.227|117.946 +639094.494|220896.768|117.918 +639089.279|220901.358|117.976 +639084.064|220905.943|117.991 +639078.949|220910.441|117.994 +639073.737|220915.026|118.040 +639068.522|220919.613|118.138 +639063.359|220924.154|118.220 +639058.150|220928.739|118.281 +639052.938|220933.320|118.388 +639047.777|220937.864|118.567 +639042.565|220942.446|118.732 +639037.359|220947.030|118.869 +639032.199|220951.568|119.009 +639026.993|220956.146|119.073 +639021.787|220960.724|119.073 +639016.630|220965.263|119.165 +639011.424|220969.841|119.198 +639006.172|220974.462|119.275 +639001.015|220978.994|119.342 +638995.812|220983.572|119.384 +638990.609|220988.150|119.369 +638985.452|220992.683|119.336 +638980.200|220997.300|119.348 +638974.997|221001.879|119.278 +638969.840|221006.411|119.189 +638964.637|221010.986|119.229 +638959.385|221015.607|119.253 +638954.228|221020.142|119.281 +638943.822|221029.295|119.534 +638938.622|221033.874|119.698 +638933.465|221038.406|119.744 +638928.216|221043.027|119.936 +638923.062|221047.559|120.000 +638907.548|221061.205|120.235 +638902.354|221065.780|120.692 +638897.197|221070.315|120.707 +638892.043|221074.848|120.847 +638886.846|221079.423|121.143 +638881.695|221083.958|121.320 +638876.541|221088.494|121.451 +638871.386|221093.029|121.600 +638866.247|221097.555|122.155 +638861.090|221102.094|122.185 +638855.933|221106.629|122.259 +638850.776|221111.168|122.326 +638845.622|221115.703|122.521 +638840.467|221120.239|122.688 +638835.362|221124.732|122.893 +638825.087|221133.772|123.002 +638809.618|221147.375|122.633 +638799.359|221156.394|122.344 +638778.901|221174.390|122.225 +638773.765|221178.904|122.149 +638768.690|221183.369|122.234 +638763.615|221187.837|122.347 +638758.549|221192.297|122.618 +638753.493|221196.750|123.024 +638748.439|221201.200|123.533 +638728.255|221218.973|125.191 +638723.226|221223.399|125.358 +638718.139|221227.876|125.444 +638708.114|221236.703|126.279 +638703.155|221241.071|126.748 +638693.099|221249.922|127.285 +638688.058|221254.357|127.413 +638683.023|221258.789|127.626 +638678.024|221263.187|127.702 +638672.995|221267.616|128.007 +638663.034|221276.385|128.641 +638658.041|221280.780|128.873 +638653.033|221285.185|128.922 +638648.022|221289.595|128.976 +638643.011|221294.003|129.068 +638638.001|221298.410|129.165 +638633.032|221302.781|129.205 +638628.030|221307.182|129.440 +638623.077|221311.544|129.674 +638613.144|221320.285|129.912 +638608.173|221324.656|130.046 +638598.258|221333.386|130.570 +638593.372|221337.684|130.619 +638588.382|221342.073|130.644 +638583.432|221346.425|130.586 +638578.482|221350.778|130.580 +638573.535|221355.130|130.598 +638563.632|221363.835|130.220 +638548.724|221376.942|129.607 +638543.845|221381.233|129.513 +638533.868|221389.999|128.858 +638528.891|221394.370|128.458 +638523.965|221398.702|128.096 +638518.961|221403.097|127.535 +638514.029|221407.428|127.205 +638509.088|221411.771|126.818 +638494.226|221424.826|125.553 +638489.267|221429.179|124.776 +638484.216|221433.613|124.121 +638479.355|221437.890|124.112 +638474.399|221442.239|123.469 +638469.388|221446.634|122.475 +638464.414|221451.002|121.768 +638459.555|221455.276|121.899 +638454.556|221459.659|120.738 +638434.891|221476.935|119.028 +638406.099|221502.264|119.595 +638396.690|221510.551|120.680 +638373.120|221531.302|122.234 +638344.685|221556.311|122.371 +638340.024|221560.417|122.600 +638326.153|221572.633|124.029 +638321.459|221576.760|124.154 +638316.887|221580.783|124.395 +638312.236|221584.880|124.770 +638307.706|221588.873|125.550 +638303.244|221592.808|126.416 +638298.623|221596.877|126.715 +638293.996|221600.946|126.745 +638275.623|221617.113|127.434 +638271.008|221621.169|127.340 +638266.351|221625.263|127.053 +638261.697|221629.350|126.538 +638257.076|221633.413|126.486 +638252.513|221637.427|126.730 +638248.017|221641.384|126.803 +638243.424|221645.419|126.690 +638238.870|221649.424|126.517 +638225.108|221661.519|125.913 +638211.664|221673.348|126.218 +638193.476|221689.329|125.121 +638188.974|221693.285|124.916 +638184.451|221697.260|124.639 +638179.946|221701.216|124.231 +638175.456|221705.160|123.898 +638170.961|221709.110|123.578 +638166.440|221713.082|123.152 +638161.984|221716.996|122.807 +638157.498|221720.937|122.579 +638153.087|221724.808|122.259 +638139.883|221736.408|121.713 +638135.418|221740.322|120.997 +638131.013|221744.193|120.780 +638126.768|221747.927|121.033 +638122.403|221751.761|120.802 +638109.229|221763.319|119.220 +638104.581|221767.388|117.656 +638100.091|221771.320|116.568 +638078.557|221790.221|114.526 +638074.193|221794.049|113.846 +638070.017|221797.716|113.739 +638061.769|221804.970|113.965 +638049.196|221816.004|112.785 +638044.962|221819.720|112.328 +638036.672|221826.998|111.517 +638032.511|221830.647|111.194 +638028.354|221834.292|110.475 +638024.089|221838.029|109.576 +638019.944|221841.665|108.945 +638011.660|221848.932|107.759 +637998.565|221860.377|102.605 +637994.387|221864.038|101.776 +637986.575|221870.902|101.547 +638149.052|221725.917|122.100 +638153.435|221722.055|122.320 +638157.839|221718.175|122.423 +638162.286|221714.262|122.954 +638166.712|221710.366|123.176 +638171.131|221706.477|123.630 +638180.041|221698.628|124.215 +638184.543|221694.666|124.630 +638189.029|221690.719|124.990 +638193.482|221686.793|125.230 +638198.012|221682.806|125.590 +638202.550|221678.813|126.014 +638211.539|221670.895|126.264 +638216.059|221666.911|126.434 +638220.411|221663.070|125.803 +638225.032|221659.004|126.224 +638238.690|221646.971|126.632 +638243.317|221642.896|126.931 +638247.871|221638.884|127.126 +638252.419|221634.873|126.809 +638256.981|221630.850|126.584 +638261.563|221626.814|126.721 +638266.250|221622.687|127.148 +638270.908|221618.588|127.458 +638275.550|221614.494|127.440 +638293.942|221598.273|126.654 +638298.620|221594.152|126.642 +638303.144|221590.153|125.843 +638307.685|221586.139|125.148 +638312.333|221582.036|124.758 +638316.920|221577.988|124.325 +638321.627|221573.837|124.276 +638326.372|221569.655|124.170 +638340.344|221557.320|122.804 +638345.069|221553.153|122.661 +638354.722|221544.652|123.298 +638359.483|221540.452|123.127 +638364.223|221536.270|122.859 +638392.791|221511.060|120.808 +638397.613|221506.808|120.527 +638416.761|221489.904|118.695 +638421.647|221485.597|118.567 +638446.378|221463.819|120.302 +638451.362|221459.427|120.661 +638456.391|221455.004|121.332 +638461.344|221450.646|121.862 +638466.319|221446.263|121.881 +638481.388|221433.001|123.850 +638491.513|221424.098|125.404 +638501.520|221415.280|125.886 +638511.615|221406.401|127.114 +638516.656|221401.960|127.550 +638521.658|221397.552|127.727 +638536.840|221384.193|129.370 +638541.851|221379.776|129.321 +638546.835|221375.384|129.485 +638567.037|221357.590|130.555 +638592.107|221335.492|130.574 +638597.139|221331.054|130.555 +638602.168|221326.622|130.516 +638607.210|221322.175|130.153 +638612.214|221317.762|129.903 +638617.237|221313.333|129.885 +638622.270|221308.892|129.470 +638627.278|221304.479|129.315 +638637.394|221295.557|129.107 +638642.454|221291.095|129.053 +638647.507|221286.642|128.937 +638652.543|221282.198|128.672 +638657.669|221277.680|128.858 +638662.699|221273.246|128.556 +638667.761|221268.774|128.089 +638672.797|221264.333|127.907 +638677.875|221259.853|127.620 +638682.962|221255.366|127.501 +638687.988|221250.931|127.218 +638703.264|221237.453|126.544 +638718.492|221224.014|125.389 +638723.616|221219.497|125.188 +638754.142|221192.553|122.789 +638759.299|221188.002|122.466 +638764.420|221183.485|122.347 +638769.534|221178.974|122.161 +638774.670|221174.451|122.313 +638795.268|221156.294|122.566 +638800.444|221151.731|122.752 +638805.607|221147.177|122.719 +638810.728|221142.666|122.777 +638815.900|221138.109|122.969 +638821.058|221133.559|122.896 +638826.175|221129.051|123.002 +638831.372|221124.466|122.731 +638836.526|221119.919|122.676 +638841.677|221115.377|122.487 +638846.832|221110.833|122.396 +638851.986|221106.288|122.332 +638857.140|221101.743|122.295 +638862.337|221097.159|122.100 +638867.470|221092.627|121.567 +638872.624|221088.082|121.494 +638877.818|221083.501|121.274 +638882.966|221078.960|121.064 +638893.311|221069.834|120.805 +638898.459|221065.295|120.664 +638903.656|221060.711|120.555 +638908.801|221056.173|120.256 +638913.952|221051.631|120.223 +638919.152|221047.047|120.171 +638924.348|221042.466|120.067 +638929.494|221037.924|119.872 +638934.645|221033.386|119.820 +638939.842|221028.802|119.744 +638944.990|221024.260|119.680 +638950.186|221019.679|119.473 +638955.383|221015.095|119.427 +638960.534|221010.553|119.403 +638970.882|221001.434|119.521 +638976.030|220996.892|119.400 +638981.230|220992.311|119.430 +638986.427|220987.727|119.457 +638991.530|220983.231|119.457 +638996.726|220978.647|119.448 +639001.926|220974.066|119.400 +639007.074|220969.521|119.259 +639012.226|220964.982|119.275 +639017.425|220960.398|119.183 +639022.577|220955.854|119.125 +639027.728|220951.312|119.134 +639032.931|220946.728|119.028 +639038.033|220942.226|118.930 +639043.190|220937.678|118.784 +639048.396|220933.088|118.558 +639053.505|220928.586|118.455 +639058.708|220923.996|118.406 +639063.819|220919.491|118.296 +639068.976|220914.943|118.226 +639074.137|220910.396|118.144 +639079.294|220905.848|118.132 +639084.408|220901.343|118.077 +639089.569|220896.792|118.022 +639094.683|220892.284|117.955 +639099.844|220887.737|118.013 +639104.955|220883.229|118.040 +639110.073|220878.721|118.013 +639115.187|220874.210|117.985 +639120.311|220869.696|117.815 +639125.432|220865.179|117.720 +639130.552|220860.664|117.610 +639135.682|220856.141|117.409 +639140.757|220851.667|117.309 +639145.887|220847.144|117.171 +639150.965|220842.666|117.053 +639156.091|220838.146|116.995 +639161.179|220833.662|116.839 +639166.263|220829.179|116.714 +639171.399|220824.649|116.544 +639176.443|220820.199|116.281 +639181.545|220815.697|115.946 +639186.642|220811.201|115.690 +639191.741|220806.706|115.452 +639196.788|220802.252|115.309 +639201.839|220797.799|115.154 +639206.938|220793.307|115.047 +639211.983|220788.860|115.071 +639217.027|220784.412|115.084 +639222.087|220779.950|114.892 +639227.144|220775.494|114.785 +639232.209|220771.026|114.565 +639237.205|220766.624|114.675 +639242.289|220762.138|114.239 +639247.321|220757.697|113.889 +639252.384|220753.234|113.843 +639257.398|220748.815|113.803 +639262.430|220744.374|113.526 +639267.475|220739.927|113.163 +639272.550|220735.440|112.371 +639292.810|220717.542|109.045 +639297.894|220713.056|108.433 +639302.853|220708.679|108.137 +639307.913|220704.216|107.902 +639312.911|220699.812|107.832 +639317.913|220695.399|107.726 +639322.872|220691.028|107.604 +639327.892|220686.599|107.360 +639332.903|220682.182|107.244 +639337.862|220677.808|107.183 +639342.824|220673.435|107.128 +639347.774|220669.073|107.238 +639352.737|220664.699|107.232 +639357.662|220660.362|107.607 +639362.594|220656.018|107.951 +639367.532|220651.672|108.262 +639377.215|220643.156|109.823 +639382.141|220638.818|110.277 +639386.993|220634.548|110.954 +639391.870|220630.260|111.435 +639396.741|220625.971|111.956 +639406.537|220617.342|112.554 +639411.392|220613.066|112.807 +639416.318|220608.728|112.926 +639421.177|220604.449|113.197 +639426.044|220600.164|113.410 +639430.939|220595.851|113.398 +639440.608|220587.341|114.056 +639445.500|220583.031|114.136 +639450.407|220578.706|114.093 +639455.217|220574.466|114.075 +639460.215|220570.055|113.355 +639465.168|220565.685|112.657 +639479.893|220552.691|111.365 +639484.798|220548.369|111.167 +639494.533|220539.786|110.637 +639509.328|220526.722|108.625 +639514.214|220522.409|107.985 +639519.103|220518.096|107.378 +639523.983|220513.789|106.842 +639528.878|220509.470|106.263 +639533.730|220505.191|105.991 +639538.555|220500.939|105.943 +639543.280|220496.781|106.253 +639548.028|220492.602|106.756 +639562.119|220480.200|108.037 +639566.856|220476.027|108.018 +639590.356|220455.341|109.362 +639595.047|220451.204|109.402 +639599.756|220447.056|109.375 +639604.441|220442.929|109.500 +639609.117|220438.811|109.707 +639613.725|220434.757|110.036 +639618.352|220430.682|110.265 +639623.025|220426.567|110.524 +639627.621|220422.520|110.667 +639636.820|220414.421|111.261 +639641.422|220410.367|111.411 +639646.019|220406.323|111.618 +639650.597|220402.287|111.645 +639655.230|220398.206|111.679 +639659.838|220394.143|111.578 +639664.398|220390.125|111.481 +639669.022|220386.050|111.335 +639673.615|220381.996|111.078 +639678.191|220377.964|110.960 +639682.778|220373.919|110.798 +639687.298|220369.935|110.737 +639691.891|220365.888|110.591 +639696.369|220361.941|110.515 +639700.898|220357.948|110.454 +639705.455|220353.933|110.280 +639718.863|220342.119|110.420 +639723.280|220338.227|110.505 +639727.687|220334.347|110.661 +639732.116|220330.446|110.716 +639736.548|220326.541|110.777 +639740.982|220322.633|110.832 +639745.338|220318.796|110.789 +639749.761|220314.898|110.691 +639754.199|220310.984|110.524 +639758.582|220307.122|110.399 +639762.971|220303.251|110.249 +639767.320|220299.417|110.073 +639771.691|220295.564|109.807 +639776.053|220291.721|109.606 +639780.421|220287.871|109.390 +639784.791|220284.018|109.189 +639789.025|220280.294|109.402 +639793.332|220276.499|109.286 +639797.566|220272.768|109.271 +639801.815|220269.028|109.210 +639806.070|220265.279|109.134 +639810.352|220261.506|108.954 +639791.637|220275.828|109.149 +639787.385|220279.556|108.975 +639774.267|220291.087|109.564 +639769.896|220294.927|109.792 +639765.479|220298.807|109.990 +639761.063|220302.687|110.219 +639756.616|220306.598|110.365 +639752.175|220310.496|110.490 +639747.734|220314.401|110.649 +639743.259|220318.330|110.713 +639738.797|220322.249|110.746 +639734.399|220326.111|110.740 +639729.918|220330.046|110.633 +639725.489|220333.935|110.557 +639721.015|220337.864|110.454 +639716.486|220341.839|110.384 +639712.014|220345.762|110.027 +639707.509|220349.721|110.140 +639702.892|220353.775|110.307 +639698.359|220357.756|110.332 +639693.748|220361.809|110.524 +639689.160|220365.839|110.600 +639684.558|220369.884|110.783 +639679.983|220373.904|110.829 +639675.347|220377.976|110.947 +639670.695|220382.064|111.182 +639665.998|220386.194|111.408 +639661.372|220390.257|111.536 +639656.702|220394.362|111.655 +639652.048|220398.450|111.694 +639647.357|220402.570|111.679 +639633.458|220414.772|111.002 +639624.104|220422.983|110.643 +639619.468|220427.055|110.411 +639614.725|220431.219|110.207 +639610.052|220435.321|109.917 +639605.389|220439.415|109.579 +639600.655|220443.572|109.378 +639595.916|220447.736|109.241 +639567.380|220472.793|108.082 +639562.619|220476.972|107.878 +639557.782|220481.224|107.875 +639548.318|220489.527|106.814 +639543.514|220493.742|106.284 +639538.790|220497.888|105.909 +639533.913|220502.176|105.927 +639529.009|220506.486|106.147 +639524.071|220510.833|106.631 +639519.118|220515.191|107.247 +639509.230|220523.896|108.469 +639494.301|220537.039|110.539 +639489.348|220541.395|110.981 +639484.395|220545.751|111.091 +639479.476|220550.079|111.365 +639474.532|220554.425|111.825 +639469.573|220558.787|112.060 +639464.605|220563.158|112.414 +639459.566|220567.596|113.340 +639449.645|220576.325|114.081 +639444.722|220580.647|114.154 +639439.772|220584.997|114.087 +639434.883|220589.294|113.956 +639429.906|220593.665|113.727 +639425.057|220597.920|113.273 +639420.067|220602.300|113.176 +639415.163|220606.607|112.825 +639410.240|220610.929|112.612 +639405.272|220615.294|112.407 +639400.380|220619.585|111.969 +639395.400|220623.962|111.911 +639390.465|220628.291|111.435 +639385.533|220632.619|110.954 +639380.608|220636.941|110.417 +639375.728|220641.217|109.436 +639365.867|220649.861|107.982 +639360.853|220654.266|107.866 +639355.867|220658.643|107.506 +639350.890|220663.013|107.067 +639345.909|220667.390|107.180 +639340.859|220671.825|107.031 +639335.884|220676.199|107.131 +639330.818|220680.652|107.201 +639325.789|220685.072|107.406 +639320.714|220689.534|107.637 +639315.658|220693.978|107.683 +639310.595|220698.428|107.802 +639305.526|220702.884|108.040 +639300.442|220707.359|108.512 +639295.370|220711.818|108.863 +639285.138|220720.828|110.210 +639269.758|220734.376|112.715 +639264.643|220738.878|113.285 +639259.547|220743.359|113.596 +639254.469|220747.827|113.752 +639249.351|220752.323|113.745 +639244.273|220756.791|113.944 +639239.168|220761.284|114.553 +639234.056|220765.777|114.590 +639228.945|220770.273|114.657 +639223.830|220774.769|114.745 +639218.771|220779.216|114.837 +639213.656|220783.711|114.992 +639208.560|220788.192|114.910 +639203.457|220792.676|114.946 +639198.300|220797.211|115.111 +639193.195|220801.701|115.269 +639188.086|220806.194|115.538 +639182.935|220810.726|115.745 +639177.784|220815.252|115.931 +639172.633|220819.785|116.208 +639167.534|220824.271|116.449 +639162.389|220828.795|116.638 +639157.247|220833.315|116.821 +639152.111|220837.832|116.946 +639146.975|220842.349|117.050 +639141.790|220846.906|117.165 +639136.657|220851.417|117.242 +639131.476|220855.974|117.397 +639126.343|220860.488|117.635 +639121.213|220864.999|117.726 +639116.038|220869.546|117.812 +639110.862|220874.097|117.936 +639105.738|220878.602|118.034 +639100.520|220883.189|118.037 +639095.400|220887.688|118.028 +639090.233|220892.233|118.046 +639085.064|220896.774|118.095 +639079.897|220901.319|118.153 +639074.731|220905.857|118.174 +639069.565|220910.399|118.226 +639064.398|220914.940|118.327 +639059.186|220919.525|118.439 +639054.023|220924.063|118.497 +639048.860|220928.605|118.601 +639043.647|220933.186|118.778 +639038.484|220937.727|118.955 +639033.324|220942.263|119.034 +639028.115|220946.844|119.180 +639022.955|220951.376|119.147 +639017.749|220955.954|119.180 +639012.539|220960.532|119.229 +639007.382|220965.065|119.302 +639002.176|220969.643|119.339 +638996.970|220974.218|119.381 +638991.813|220978.753|119.491 +638986.607|220983.328|119.485 +638981.404|220987.903|119.555 +638976.247|220992.436|119.485 +638971.041|220997.011|119.518 +638965.838|221001.583|119.494 +638960.632|221006.161|119.515 +638955.472|221010.693|119.442 +638950.220|221015.311|119.543 +638945.063|221019.844|119.564 +638939.857|221024.422|119.692 +638934.654|221028.997|119.854 +638929.497|221033.529|119.918 +638924.294|221038.104|119.985 +638919.088|221042.679|120.021 +638913.885|221047.254|120.183 +638908.731|221051.787|120.393 +638903.521|221056.365|120.344 +638898.367|221060.897|120.518 +638893.164|221065.472|120.713 +638888.010|221070.005|120.887 +638877.650|221079.115|121.207 +638872.450|221083.687|121.445 +638867.296|221088.219|121.689 +638862.142|221092.755|121.823 +638856.994|221097.284|122.198 +638851.836|221101.817|122.374 +638846.624|221106.398|122.295 +638841.467|221110.933|122.490 +638836.353|221115.429|122.527 +638825.992|221124.539|122.978 +638820.881|221129.035|123.091 +638815.705|221133.580|122.935 +638810.539|221138.121|123.027 +638805.418|221142.623|123.027 +638800.243|221147.171|122.941 +638795.061|221151.725|122.758 +638779.650|221165.261|122.256 +638774.484|221169.805|122.466 +638764.261|221178.791|122.307 +638759.131|221183.296|122.408 +638754.014|221187.801|122.658 +638748.927|221192.269|122.664 +638733.699|221205.671|123.947 +638713.430|221223.502|125.377 +638698.269|221236.843|126.413 +638688.210|221245.689|126.986 +638683.175|221250.117|127.202 +638678.140|221254.546|127.471 +638673.083|221258.990|127.471 +638668.057|221263.413|127.855 +638663.073|221267.796|128.175 +638658.056|221272.212|128.672 +638653.049|221276.614|128.766 +638648.004|221281.052|128.976 +638642.987|221285.459|129.004 +638637.982|221289.860|129.162 +638632.971|221294.268|129.281 +638622.989|221303.043|129.495 +638617.990|221307.441|129.787 +638613.028|221311.800|130.001 +638608.063|221316.168|130.171 +638603.083|221320.545|130.226 +638598.139|221324.897|130.619 +638593.158|221329.274|130.714 +638568.357|221351.070|130.619 +638543.482|221372.922|129.635 +638533.506|221381.681|128.967 +638528.601|221385.988|128.754 +638518.604|221394.760|127.711 +638508.692|221403.466|127.068 +638503.751|221407.803|126.709 +638493.818|221416.523|125.685 +638488.916|221420.833|125.685 +638483.924|221425.213|124.697 +638478.882|221429.636|124.121 +638473.945|221433.970|123.606 +638469.056|221438.268|123.447 +638464.029|221442.672|122.371 +638459.165|221446.945|122.088 +638454.200|221451.304|121.503 +638434.464|221468.623|118.927 +638396.257|221502.233|120.524 +638391.514|221506.403|120.695 +638377.481|221518.763|122.448 +638372.778|221522.899|122.615 +638363.412|221531.140|123.207 +638358.709|221535.277|123.420 +638354.009|221539.413|123.664 +638349.257|221543.592|123.618 +638344.538|221547.737|123.505 +638339.829|221551.876|123.459 +638321.288|221568.189|124.542 +638316.716|221572.218|125.319 +638312.074|221576.297|125.191 +638307.405|221580.402|125.203 +638302.842|221584.420|125.526 +638298.334|221588.388|126.169 +638293.780|221592.396|126.565 +638289.360|221596.295|127.690 +638284.782|221600.324|127.986 +638271.033|221612.409|127.830 +638266.342|221616.527|127.361 +638261.672|221620.627|127.032 +638257.097|221624.650|126.931 +638252.574|221628.628|127.105 +638248.145|221632.526|127.498 +638234.441|221644.566|127.020 +638229.863|221648.589|126.748 +638225.300|221652.597|126.593 +638220.823|221656.535|126.602 +638202.837|221672.342|126.230 +638198.295|221676.329|126.041 +638189.307|221684.224|125.428 +638184.786|221688.195|125.142 +638175.636|221696.224|123.914 +638162.265|221707.967|122.999 +638157.757|221711.924|122.438 +638153.383|221715.770|122.481 +638148.917|221719.690|122.146 +638144.544|221723.537|121.990 +638140.157|221727.392|121.795 +638135.777|221731.239|121.423 +638131.340|221735.134|120.820 +638126.981|221738.963|120.814 +638122.680|221742.745|120.835 +638118.370|221746.534|120.604 +638100.457|221762.243|117.086 +638095.961|221766.181|115.980 +638091.728|221769.903|115.967 +638087.518|221773.606|116.059 +638083.215|221777.386|115.803 +638074.479|221785.052|114.370 +638070.203|221788.807|114.047 +638066.033|221792.470|113.965 +638061.952|221796.064|114.233 +638057.697|221799.801|113.843 +638053.475|221803.510|113.590 +638049.235|221807.232|113.078 +638045.032|221810.920|112.511 +638036.589|221818.333|111.502 +638032.420|221821.993|111.124 +638028.287|221825.621|110.697 +638019.932|221832.957|109.756 +638015.732|221836.639|108.911 +638011.571|221840.291|108.241 +638007.472|221843.884|107.619 +638003.265|221847.572|106.811 +637998.794|221851.483|105.043 +637990.162|221859.039|102.108 +637986.136|221862.572|101.648 +637982.213|221866.019|101.587 +638142.995|221722.574|122.042 +638156.202|221710.939|122.710 +638173.954|221695.297|123.405 +638187.648|221683.251|125.496 +638201.203|221671.315|126.437 +638205.726|221667.328|126.578 +638219.250|221655.411|126.876 +638223.703|221651.485|126.748 +638228.324|221647.413|126.953 +638232.856|221643.417|126.992 +638251.126|221627.317|127.273 +638255.741|221623.251|127.291 +638260.255|221619.267|127.105 +638264.934|221615.147|127.495 +638269.603|221611.038|127.858 +638283.508|221598.779|127.766 +638288.050|221594.777|127.553 +638292.546|221590.802|126.572 +638297.112|221586.773|125.980 +638301.684|221582.740|125.703 +638306.271|221578.692|125.249 +638311.047|221574.489|125.538 +638320.270|221566.351|124.688 +638338.976|221549.858|123.728 +638343.764|221545.643|123.953 +638348.525|221541.449|124.045 +638367.438|221524.773|122.929 +638372.153|221520.613|122.551 +638381.624|221512.258|121.743 +638386.400|221508.046|121.469 +638391.069|221503.925|120.869 +638395.903|221499.658|120.344 +638410.077|221487.146|118.382 +638429.697|221469.869|119.083 +638434.595|221465.557|119.104 +638444.601|221456.754|120.290 +638449.585|221452.374|120.960 +638454.657|221447.918|121.942 +638459.509|221443.641|121.774 +638464.551|221439.210|122.603 +638469.632|221434.741|123.408 +638474.591|221430.376|123.731 +638479.599|221425.969|124.072 +638484.591|221421.580|124.673 +638489.639|221417.142|125.380 +638494.644|221412.738|125.782 +638499.697|221408.291|126.203 +638504.705|221403.886|126.706 +638524.810|221386.196|128.397 +638529.912|221381.709|129.010 +638534.893|221377.320|129.092 +638544.939|221368.478|129.601 +638565.126|221350.705|130.522 +638575.199|221341.832|130.750 +638610.340|221310.867|130.147 +638615.384|221306.417|129.824 +638620.356|221302.034|129.287 +638625.424|221297.566|129.239 +638635.513|221288.678|129.232 +638640.613|221284.182|129.068 +638645.648|221279.744|128.751 +638650.705|221275.291|128.672 +638655.798|221270.804|128.495 +638660.827|221266.369|128.190 +638665.911|221261.889|127.946 +638670.928|221257.466|127.535 +638676.070|221252.937|127.410 +638681.105|221248.502|127.227 +638686.180|221244.027|126.953 +638691.310|221239.510|126.724 +638696.370|221235.048|126.288 +638706.550|221226.072|125.599 +638711.619|221221.606|125.282 +638716.740|221217.092|125.060 +638767.855|221172.055|122.734 +638772.969|221167.547|122.545 +638778.084|221163.042|122.365 +638788.417|221153.953|123.057 +638793.522|221149.451|122.807 +638798.713|221144.888|123.191 +638803.870|221140.343|123.048 +638808.988|221135.838|123.039 +638814.160|221131.285|123.246 +638819.314|221126.743|123.075 +638824.468|221122.202|122.905 +638829.620|221117.663|122.694 +638839.925|221108.586|122.368 +638845.082|221104.045|122.323 +638855.372|221094.974|121.658 +638860.532|221090.432|121.689 +638865.684|221085.894|121.542 +638870.877|221081.316|121.259 +638881.180|221072.242|121.052 +638886.331|221067.703|120.860 +638891.525|221063.125|120.622 +638896.679|221058.590|120.533 +638901.830|221054.051|120.472 +638907.027|221049.473|120.259 +638917.375|221040.357|120.082 +638922.526|221035.821|120.015 +638927.680|221031.283|120.030 +638938.028|221022.169|119.753 +638943.176|221017.634|119.604 +638948.385|221013.053|120.128 +638953.481|221008.560|119.625 +638958.681|221003.979|119.616 +638963.881|220999.401|119.607 +638974.180|220990.330|119.589 +638979.331|220985.797|119.683 +638984.483|220981.259|119.573 +638989.682|220976.681|119.531 +638994.834|220972.142|119.418 +638999.985|220967.607|119.317 +639005.136|220963.068|119.314 +639010.336|220958.490|119.348 +639015.441|220953.994|119.241 +639020.644|220949.413|119.217 +639025.795|220944.875|119.217 +639030.949|220940.336|119.150 +639036.104|220935.798|119.086 +639041.261|220931.253|118.900 +639046.418|220926.709|118.744 +639051.575|220922.164|118.622 +639056.736|220917.620|118.491 +639061.847|220913.121|118.412 +639067.007|220908.573|118.302 +639072.119|220904.071|118.250 +639077.279|220899.527|118.229 +639082.439|220894.982|118.174 +639087.505|220890.520|118.104 +639092.669|220885.972|118.077 +639097.829|220881.427|118.110 +639102.898|220876.962|118.034 +639108.067|220872.408|117.918 +639113.136|220867.943|117.860 +639118.260|220863.432|117.754 +639123.432|220858.875|117.620 +639128.513|220854.398|117.348 +639133.637|220849.884|117.226 +639138.715|220845.409|117.141 +639143.796|220840.935|117.037 +639148.929|220836.411|116.815 +639154.013|220831.934|116.693 +639159.103|220827.450|116.483 +639164.239|220822.924|116.321 +639169.283|220818.480|116.102 +639174.425|220813.945|115.867 +639179.476|220809.498|115.632 +639184.569|220805.011|115.498 +639189.620|220800.558|115.285 +639194.716|220796.068|115.148 +639199.821|220791.569|114.922 +639204.826|220787.162|114.794 +639209.919|220782.675|114.806 +639214.973|220778.228|114.748 +639219.972|220773.824|114.745 +639225.028|220769.371|114.696 +639230.103|220764.896|114.349 +639235.145|220760.458|114.538 +639240.122|220756.072|114.270 +639250.229|220747.166|113.718 +639255.243|220742.749|113.706 +639260.275|220738.314|113.468 +639265.298|220733.889|113.380 +639270.349|220729.439|112.993 +639295.620|220707.133|108.774 +639300.689|220702.662|108.360 +639305.654|220698.288|108.094 +639310.729|220693.814|107.704 +639315.682|220689.449|107.631 +639325.658|220680.661|107.342 +639330.629|220676.281|107.128 +639335.634|220671.874|107.134 +639340.599|220667.500|107.073 +639345.565|220663.126|107.019 +639350.469|220658.807|107.098 +639355.388|220654.482|107.567 +639360.329|220650.136|107.851 +639374.883|220637.343|109.920 +639379.800|220633.018|110.460 +639384.622|220628.781|110.999 +639389.550|220624.447|111.456 +639394.391|220620.186|111.807 +639404.141|220611.609|112.404 +639409.003|220607.329|112.621 +639413.916|220603.004|112.837 +639418.723|220598.774|113.142 +639423.600|220594.476|113.252 +639428.440|220590.218|113.736 +639433.314|220585.923|113.913 +639438.151|220581.665|114.026 +639443.052|220577.346|114.029 +639447.911|220573.067|113.998 +639472.417|220551.444|111.709 +639477.327|220547.113|111.429 +639482.176|220542.840|111.264 +639487.059|220538.533|110.871 +639491.933|220534.235|110.582 +639496.743|220529.995|110.405 +639521.343|220508.275|106.741 +639526.232|220503.959|106.174 +639531.103|220499.665|105.793 +639535.870|220495.462|105.781 +639540.637|220491.264|106.150 +639545.349|220487.119|106.574 +639564.290|220470.440|107.439 +639573.744|220462.116|107.902 +639578.362|220458.053|108.381 +639583.096|220453.890|108.789 +639592.453|220445.648|109.042 +639597.178|220441.484|109.225 +639601.841|220437.379|109.487 +639606.440|220433.331|109.856 +639611.107|220429.222|110.128 +639615.786|220425.104|110.362 +639620.416|220421.026|110.585 +639625.003|220416.985|110.771 +639629.697|220412.851|110.950 +639638.999|220404.655|110.984 +639643.477|220400.717|111.578 +639648.143|220396.609|111.697 +639652.737|220392.558|111.648 +639657.385|220388.464|111.627 +639662.027|220384.368|111.353 +639666.648|220380.296|111.225 +639671.293|220376.199|110.996 +639675.889|220372.145|110.758 +639680.449|220368.128|110.743 +639685.030|220364.089|110.627 +639689.575|220360.081|110.460 +639694.168|220356.037|110.341 +639698.704|220352.035|110.252 +639703.279|220348.002|109.990 +639716.690|220336.185|110.128 +639721.119|220332.287|110.414 +639725.541|220328.391|110.499 +639729.970|220324.490|110.557 +639734.396|220320.588|110.643 +639738.849|220316.662|110.618 +639743.256|220312.779|110.579 +639747.685|220308.878|110.457 +639752.114|220304.970|110.338 +639756.509|220301.096|110.152 +639760.913|220297.213|109.951 +639765.315|220293.333|109.768 +639769.786|220289.386|109.274 +639787.087|220274.140|109.055 +639791.464|220270.275|108.604 +639795.639|220266.599|108.878 +639799.897|220262.847|109.021 +639785.877|220273.164|108.738 +639772.983|220284.491|109.237 +639768.741|220288.215|109.094 +639764.321|220292.102|109.561 +639759.969|220295.927|109.737 +639755.598|220299.767|110.012 +639751.254|220303.580|110.161 +639746.868|220307.433|110.292 +639742.439|220311.325|110.402 +639738.078|220315.157|110.448 +639733.670|220319.025|110.472 +639729.287|220322.871|110.399 +639724.892|220326.730|110.399 +639720.527|220330.564|110.271 +639716.172|220334.384|109.838 +639702.757|220346.161|109.890 +639698.246|220350.123|110.051 +639693.744|220354.077|110.195 +639689.258|220358.018|110.283 +639684.716|220362.008|110.396 +639680.175|220365.997|110.539 +639675.600|220370.015|110.600 +639671.009|220374.050|110.771 +639666.468|220378.040|110.978 +639661.878|220382.073|111.179 +639657.239|220386.151|111.399 +639652.624|220390.202|111.490 +639648.015|220394.252|111.584 +639643.443|220398.267|111.481 +639629.672|220410.346|110.694 +639625.039|220414.415|110.716 +639620.446|220418.445|110.521 +639615.752|220422.565|110.341 +639611.125|220426.622|110.073 +639606.495|220430.685|109.850 +639601.838|220434.770|109.484 +639597.171|220438.863|109.201 +639592.505|220442.960|108.945 +639587.802|220447.087|108.914 +639583.023|220451.284|108.750 +639578.408|220455.328|108.207 +639559.443|220471.971|107.476 +639554.627|220476.198|107.314 +639545.121|220484.537|106.589 +639540.369|220488.704|106.058 +639535.599|220492.886|105.653 +639530.780|220497.117|105.616 +639525.866|220501.436|105.924 +639520.959|220505.752|106.549 +639515.979|220510.135|107.040 +639511.044|220514.472|107.564 +639501.007|220523.311|109.612 +639496.078|220527.648|110.225 +639491.104|220532.019|110.445 +639486.172|220536.351|110.740 +639481.189|220540.734|111.109 +639476.281|220545.046|111.298 +639471.331|220549.393|111.438 +639466.351|220553.776|112.243 +639461.313|220558.208|112.764 +639456.320|220562.600|113.371 +639446.380|220571.336|113.855 +639441.418|220575.691|113.870 +639436.414|220580.086|113.840 +639431.521|220584.381|113.755 +639426.553|220588.743|113.465 +639421.628|220593.062|113.243 +639416.669|220597.414|112.916 +639411.706|220601.767|112.627 +639406.729|220606.138|112.499 +639401.773|220610.484|112.194 +639391.806|220619.232|111.682 +639386.850|220623.572|110.954 +639381.891|220627.928|110.752 +639376.865|220632.335|110.240 +639362.036|220645.326|107.771 +639356.979|220649.764|107.613 +639352.039|220654.092|106.793 +639341.889|220663.007|106.961 +639336.823|220667.457|106.985 +639331.754|220671.911|107.064 +639326.694|220676.355|107.089 +639321.565|220680.863|107.354 +639316.551|220685.264|107.457 +639311.442|220689.754|107.549 +639306.282|220694.292|108.277 +639301.146|220698.809|108.783 +639296.080|220703.262|109.070 +639280.703|220716.786|110.563 +639270.319|220725.933|112.886 +639265.216|220730.420|113.252 +639260.083|220734.931|113.416 +639255.002|220739.396|113.535 +639249.876|220743.904|113.694 +639244.813|220748.352|113.636 +639239.683|220752.856|113.825 +639234.547|220757.374|114.197 +639229.484|220761.824|114.242 +639224.312|220766.368|114.450 +639219.197|220770.864|114.584 +639214.092|220775.348|114.593 +639208.987|220779.834|114.632 +639203.887|220784.315|114.611 +639198.733|220788.844|114.703 +639193.622|220793.337|114.974 +639188.467|220797.869|115.138 +639183.316|220802.396|115.288 +639178.211|220806.882|115.501 +639173.060|220811.409|115.705 +639167.960|220815.892|115.946 +639162.815|220820.416|116.138 +639157.670|220824.936|116.318 +639152.528|220829.456|116.522 +639147.386|220833.976|116.702 +639142.247|220838.493|116.940 +639137.112|220843.004|117.050 +639131.930|220847.558|117.165 +639126.800|220852.066|117.232 +639121.664|220856.580|117.531 +639116.486|220861.131|117.671 +639111.359|220865.639|117.815 +639106.183|220870.186|117.936 +639101.011|220874.731|118.040 +639095.890|220879.233|118.095 +639090.718|220883.774|118.156 +639085.600|220888.270|118.132 +639080.434|220892.812|118.174 +639075.264|220897.353|118.272 +639070.101|220901.892|118.308 +639064.983|220906.388|118.391 +639059.768|220910.966|118.430 +639054.605|220915.504|118.543 +639049.490|220920.000|118.705 +639044.278|220924.581|118.842 +639039.164|220929.077|119.003 +639033.955|220933.655|119.122 +639028.795|220938.187|119.198 +639023.634|220942.723|119.253 +639018.474|220947.255|119.299 +639013.268|220951.830|119.342 +639008.160|220956.317|119.332 +639002.954|220960.892|119.332 +638997.796|220965.421|119.403 +638992.639|220969.954|119.506 +638987.433|220974.529|119.552 +638982.276|220979.058|119.610 +638977.122|220983.588|119.726 +638966.758|220992.692|119.698 +638961.604|220997.218|119.665 +638956.398|221001.793|119.756 +638951.244|221006.323|119.747 +638946.087|221010.852|119.765 +638940.878|221015.427|119.683 +638935.678|221019.999|119.933 +638925.367|221029.061|120.098 +638920.157|221033.633|120.073 +638915.003|221038.165|120.134 +638909.849|221042.694|120.372 +638904.637|221047.269|120.192 +638899.535|221051.756|120.408 +638894.329|221056.331|120.536 +638889.174|221060.861|120.680 +638884.020|221065.393|120.899 +638878.814|221069.968|120.997 +638873.657|221074.503|121.106 +638868.506|221079.033|121.481 +638863.346|221083.568|121.509 +638858.192|221088.101|121.734 +638853.031|221092.636|121.826 +638847.874|221097.171|121.984 +638842.726|221101.701|122.423 +638837.560|221106.239|122.371 +638832.402|221110.775|122.618 +638827.288|221115.271|122.661 +638822.118|221119.812|122.640 +638816.961|221124.347|122.874 +638806.732|221133.342|123.109 +638801.569|221137.881|123.280 +638791.266|221146.933|123.158 +638786.124|221151.447|122.902 +638780.982|221155.961|122.673 +638775.795|221160.518|122.512 +638770.720|221164.980|122.612 +638765.593|221169.485|122.710 +638760.463|221173.996|122.740 +638734.930|221196.445|123.575 +638724.783|221205.370|124.093 +638714.606|221214.322|124.932 +638709.571|221218.750|125.078 +638704.490|221223.216|125.319 +638699.424|221227.675|125.730 +638694.404|221232.091|126.130 +638684.297|221240.979|126.751 +638679.261|221245.408|127.001 +638674.177|221249.880|127.257 +638669.139|221254.308|127.507 +638664.101|221258.740|127.769 +638659.068|221263.166|128.099 +638654.094|221267.543|128.553 +638648.989|221272.029|128.647 +638644.017|221276.400|128.620 +638638.933|221280.872|128.998 +638573.916|221338.022|130.400 +638568.975|221342.365|130.494 +638559.005|221351.125|130.427 +638554.004|221355.520|130.510 +638548.996|221359.919|130.129 +638534.021|221373.071|129.571 +638523.996|221381.870|128.595 +638518.991|221386.257|128.050 +638514.050|221390.600|127.989 +638508.981|221395.041|127.010 +638504.007|221399.409|126.760 +638499.021|221403.789|126.453 +638494.043|221408.153|125.870 +638489.023|221412.561|125.364 +638484.088|221416.892|125.160 +638479.090|221421.275|124.514 +638469.184|221429.968|123.621 +638464.133|221434.397|122.710 +638439.350|221456.138|120.165 +638429.471|221464.804|118.918 +638419.681|221473.402|118.692 +638409.976|221481.927|118.449 +638405.243|221486.094|118.945 +638372.269|221515.111|122.841 +638367.508|221519.296|122.981 +638353.436|221531.674|124.109 +638348.733|221535.807|124.343 +638343.996|221539.971|124.401 +638339.262|221544.128|124.215 +638329.853|221552.394|124.225 +638325.181|221556.503|124.429 +638320.520|221560.596|124.447 +638306.749|221572.715|125.995 +638302.068|221576.827|125.971 +638297.392|221580.936|125.983 +638292.820|221584.959|126.279 +638288.297|221588.937|126.870 +638283.804|221592.893|127.340 +638279.287|221596.865|127.986 +638270.067|221604.969|128.065 +638265.446|221609.023|127.678 +638260.773|221613.126|127.324 +638256.201|221617.143|127.501 +638251.635|221621.154|127.455 +638247.100|221625.141|127.580 +638242.638|221629.064|127.830 +638228.885|221641.140|127.151 +638215.465|221652.933|127.495 +638210.947|221656.898|127.346 +638206.388|221660.900|127.029 +638201.846|221664.890|126.800 +638170.220|221692.633|123.725 +638156.882|221704.343|123.011 +638143.742|221715.874|122.405 +638139.328|221719.745|122.091 +638134.860|221723.662|121.564 +638130.440|221727.536|121.039 +638126.118|221731.330|120.948 +638117.511|221738.890|120.738 +638113.189|221742.681|120.475 +638108.830|221746.503|120.076 +638104.459|221750.332|119.424 +638099.814|221754.392|117.888 +638095.166|221758.452|116.132 +638090.920|221762.176|115.843 +638086.808|221765.788|116.129 +638069.624|221780.858|114.404 +638065.521|221784.460|114.349 +638061.379|221788.100|114.379 +638057.294|221791.684|114.447 +638031.953|221813.895|111.014 +638027.787|221817.546|110.661 +638023.715|221821.119|110.262 +638015.503|221828.318|109.472 +638011.370|221831.939|108.908 +637998.934|221842.833|106.735 +637994.670|221846.560|105.537 +637986.059|221854.086|102.709 +637981.951|221857.686|101.950 +637978.004|221861.145|101.602 +638139.972|221717.051|122.161 +638157.757|221701.396|123.264 +638189.410|221673.546|125.983 +638203.065|221661.531|126.989 +638207.604|221657.538|127.215 +638221.390|221645.404|128.105 +638239.541|221629.414|127.952 +638244.094|221625.397|127.663 +638248.630|221621.401|127.544 +638253.202|221617.375|127.623 +638257.750|221613.367|127.346 +638262.361|221609.304|127.404 +638267.113|221605.125|127.934 +638271.737|221601.056|128.092 +638276.321|221597.017|128.080 +638280.887|221592.988|127.443 +638285.413|221588.995|126.870 +638289.970|221584.974|126.474 +638294.594|221580.896|126.178 +638299.276|221576.772|126.218 +638303.942|221572.660|126.184 +638322.474|221556.317|124.651 +638327.150|221552.196|124.465 +638360.278|221523.002|123.639 +638369.706|221514.687|122.838 +638388.661|221497.966|121.073 +638393.428|221493.766|120.750 +638398.028|221489.697|119.409 +638417.374|221472.646|118.845 +638422.250|221468.352|119.015 +638427.142|221464.045|118.964 +638437.100|221455.285|120.107 +638442.020|221450.960|120.649 +638452.014|221442.166|121.548 +638456.986|221437.792|121.844 +638461.996|221433.391|122.822 +638467.001|221428.990|123.432 +638472.015|221424.576|123.783 +638477.002|221420.193|124.316 +638482.052|221415.752|124.977 +638492.071|221406.937|125.825 +638497.085|221402.527|126.340 +638502.102|221398.113|126.504 +638507.101|221393.715|126.965 +638527.312|221375.939|129.223 +638532.329|221371.526|129.577 +638547.395|221358.261|130.156 +638577.586|221331.679|130.817 +638582.597|221327.259|130.540 +638622.843|221291.793|129.019 +638643.127|221273.919|128.592 +638648.254|221269.408|128.717 +638653.350|221264.915|128.550 +638658.413|221260.450|128.031 +638663.445|221256.015|127.705 +638668.532|221251.532|127.468 +638673.610|221247.054|127.181 +638678.691|221242.577|126.888 +638683.830|221238.050|126.727 +638688.905|221233.576|126.440 +638693.971|221229.110|126.029 +638699.080|221224.606|125.544 +638704.154|221220.131|125.270 +638709.278|221215.614|125.002 +638714.362|221211.136|124.846 +638719.465|221206.638|124.325 +638724.579|221202.126|123.969 +638729.685|221197.625|123.490 +638734.811|221193.107|123.350 +638739.944|221188.587|123.280 +638755.315|221175.042|122.829 +638760.491|221170.485|122.707 +638765.624|221165.962|122.789 +638770.738|221161.457|122.512 +638775.923|221156.891|122.670 +638781.117|221152.322|122.972 +638791.480|221143.199|123.344 +638801.761|221134.144|123.152 +638812.090|221125.045|122.999 +638817.251|221120.498|122.890 +638822.402|221115.956|122.606 +638827.571|221111.406|122.694 +638832.725|221106.864|122.515 +638837.938|221102.274|122.524 +638843.025|221097.787|121.868 +638848.237|221093.197|121.911 +638853.391|221088.655|121.768 +638858.542|221084.114|121.503 +638863.751|221079.527|121.527 +638868.902|221074.988|121.292 +638874.056|221070.447|121.170 +638879.211|221065.905|121.018 +638884.414|221061.324|120.844 +638889.565|221056.782|120.652 +638894.719|221052.244|120.552 +638899.922|221047.660|120.424 +638905.073|221043.121|120.259 +638915.433|221033.995|120.210 +638920.590|221029.454|120.302 +638936.147|221015.750|120.037 +638941.347|221011.169|119.750 +638946.553|221006.585|119.963 +638951.707|221002.046|119.899 +638962.065|220992.924|119.802 +638967.264|220988.342|119.823 +638972.467|220983.761|119.768 +638977.622|220979.223|119.720 +638982.776|220974.681|119.616 +638987.979|220970.100|119.607 +638993.182|220965.516|119.479 +638998.336|220960.974|119.421 +639003.539|220956.390|119.400 +639008.696|220951.852|119.390 +639013.850|220947.310|119.363 +639019.056|220942.726|119.296 +639024.213|220938.184|119.287 +639029.371|220933.640|119.174 +639034.577|220929.056|119.137 +639039.734|220924.511|119.009 +639044.891|220919.966|118.891 +639050.100|220915.376|118.686 +639055.212|220910.871|118.580 +639060.424|220906.284|118.476 +639065.584|220901.736|118.388 +639070.744|220897.192|118.363 +639075.911|220892.641|118.232 +639081.074|220888.093|118.171 +639086.188|220883.585|118.129 +639091.401|220878.995|118.132 +639096.518|220874.487|118.068 +639101.688|220869.933|117.940 +639106.860|220865.377|117.769 +639111.981|220860.866|117.723 +639117.156|220856.306|117.546 +639122.335|220851.746|117.336 +639127.465|220847.223|117.120 +639132.594|220842.706|116.982 +639137.727|220838.182|116.793 +639142.866|220833.653|116.495 +639147.999|220829.130|116.370 +639153.132|220824.610|116.297 +639158.271|220820.077|116.080 +639163.413|220815.548|115.907 +639168.509|220811.058|115.678 +639173.605|220806.568|115.486 +639178.750|220802.033|115.276 +639183.804|220797.577|115.032 +639188.961|220793.035|114.745 +639194.067|220788.533|114.504 +639199.120|220784.080|114.364 +639204.210|220779.600|114.511 +639209.264|220775.150|114.459 +639214.366|220770.654|114.398 +639219.417|220766.207|114.437 +639224.483|220761.744|114.273 +639229.539|220757.291|114.242 +639234.608|220752.823|114.056 +639244.703|220743.929|113.736 +639249.772|220739.467|113.681 +639254.801|220735.032|113.465 +639259.836|220730.594|113.249 +639264.866|220726.165|113.124 +639280.078|220712.736|110.685 +639310.318|220686.066|107.552 +639315.331|220681.646|107.384 +639320.294|220677.275|107.259 +639325.311|220672.855|107.119 +639330.227|220668.524|107.022 +639335.247|220664.099|106.872 +639340.170|220659.761|106.753 +639345.141|220655.384|106.683 +639350.039|220651.071|106.866 +639354.962|220646.743|107.345 +639364.654|220638.224|108.853 +639369.507|220633.960|109.579 +639374.362|220629.693|110.234 +639379.199|220625.438|110.633 +639384.076|220621.149|111.115 +639388.910|220616.894|111.530 +639398.609|220608.360|112.154 +639403.474|220604.077|112.356 +639408.335|220599.801|112.612 +639413.157|220595.555|112.770 +639418.010|220591.282|113.084 +639422.826|220587.045|113.337 +639427.586|220582.857|113.633 +639432.418|220578.602|113.767 +639437.258|220574.341|113.867 +639442.107|220570.071|113.889 +639446.923|220565.825|113.797 +639456.625|220557.275|113.163 +639461.489|220552.980|112.362 +639471.219|220544.400|111.655 +639480.844|220535.918|111.115 +639485.627|220531.699|110.728 +639490.488|220527.414|110.524 +639495.267|220523.201|110.219 +639514.741|220506.014|107.073 +639519.572|220501.750|106.543 +639524.409|220497.482|105.997 +639529.173|220493.282|105.653 +639533.928|220489.097|105.757 +639538.598|220484.986|106.089 +639543.249|220480.898|106.592 +639547.922|220476.783|106.939 +639552.604|220472.665|107.247 +639557.261|220468.566|107.400 +639562.013|220464.378|107.284 +639585.165|220444.005|108.927 +639589.789|220439.936|109.094 +639594.459|220435.824|109.305 +639599.012|220431.816|109.612 +639603.606|220427.777|110.012 +639608.233|220423.702|110.219 +639617.383|220415.649|110.691 +639621.979|220411.605|110.832 +639626.566|220407.563|111.030 +639631.193|220403.491|111.030 +639640.301|220395.469|111.316 +639644.870|220391.448|111.694 +639649.469|220387.398|111.627 +639654.069|220383.347|111.572 +639658.638|220379.320|111.429 +639663.283|220375.227|111.164 +639667.861|220371.191|111.008 +639672.503|220367.098|110.798 +639677.035|220363.105|110.655 +639681.616|220359.069|110.548 +639686.152|220355.073|110.426 +639690.742|220351.029|110.313 +639695.268|220347.039|110.271 +639699.795|220343.052|110.259 +639704.388|220339.001|109.908 +639713.349|220331.110|109.920 +639717.760|220327.230|110.310 +639722.277|220323.252|110.435 +639726.703|220319.354|110.512 +639731.134|220315.449|110.566 +639735.584|220311.533|110.563 +639740.050|220307.598|110.493 +639744.527|220303.654|110.377 +639748.962|220299.743|110.234 +639753.406|220295.829|110.073 +639757.917|220291.852|109.853 +639762.337|220287.953|109.582 +639766.778|220284.040|109.490 +639771.228|220280.114|109.119 +639779.979|220272.405|108.905 +639784.337|220268.562|108.768 +639793.061|220260.875|108.543 +639797.380|220257.068|108.405 +639780.701|220269.906|108.783 +639767.698|220281.342|109.317 +639763.404|220285.116|109.170 +639758.990|220288.999|109.609 +639754.616|220292.845|109.878 +639750.218|220296.713|110.042 +639745.820|220300.581|110.216 +639741.440|220304.431|110.320 +639737.014|220308.323|110.408 +639732.643|220312.164|110.487 +639728.205|220316.062|110.420 +639723.874|220319.866|110.335 +639719.433|220323.770|110.316 +639715.020|220327.647|110.158 +639701.755|220339.303|109.939 +639697.222|220343.290|110.210 +639692.757|220347.213|110.140 +639688.264|220351.163|110.237 +639683.720|220355.156|110.350 +639679.224|220359.109|110.509 +639674.633|220363.145|110.630 +639670.098|220367.134|110.771 +639665.511|220371.167|110.911 +639660.957|220375.172|111.191 +639656.358|220379.217|111.456 +639651.807|220383.219|111.472 +639647.198|220387.269|111.542 +639642.590|220391.320|111.615 +639628.859|220403.378|111.155 +639624.262|220407.411|110.941 +639619.669|220411.440|110.722 +639615.057|220415.488|110.630 +639610.433|220419.548|110.335 +639605.794|220423.620|110.146 +639601.186|220427.662|109.780 +639596.574|220431.709|109.451 +639591.908|220435.803|109.152 +639587.232|220439.906|108.939 +639582.596|220443.975|108.805 +639577.908|220448.089|108.381 +639573.266|220452.155|107.665 +639563.896|220460.379|107.177 +639535.373|220485.415|105.821 +639530.615|220489.591|105.674 +639525.778|220493.840|105.754 +639520.898|220498.132|106.171 +639515.942|220502.493|106.799 +639491.214|220524.253|110.417 +639486.297|220528.575|110.588 +639481.359|220532.915|110.935 +639476.470|220537.216|111.325 +639471.511|220541.575|111.517 +639466.625|220545.863|111.539 +639456.594|220554.693|112.974 +639446.652|220563.435|113.797 +639441.693|220567.791|113.761 +639436.727|220572.152|113.791 +639431.790|220576.490|113.636 +639426.843|220580.830|113.532 +639421.923|220585.149|113.252 +639417.001|220589.468|113.008 +639412.033|220593.827|112.731 +639407.064|220598.188|112.487 +639402.090|220602.556|112.310 +639397.125|220606.915|112.084 +639392.175|220611.255|111.703 +639382.183|220620.024|110.957 +639377.246|220624.356|110.530 +639372.213|220628.769|110.057 +639367.260|220633.109|109.305 +639362.310|220637.447|108.527 +639352.334|220646.195|107.262 +639337.213|220659.469|106.857 +639332.102|220663.958|106.839 +639327.075|220668.375|106.967 +639321.961|220672.871|107.043 +639316.883|220677.333|107.268 +639311.771|220681.823|107.351 +639306.590|220686.383|108.262 +639296.275|220695.463|109.719 +639291.207|220699.919|110.042 +639286.077|220704.424|109.932 +639275.793|220713.464|110.704 +639270.547|220718.091|112.231 +639260.263|220727.131|113.304 +639255.136|220731.633|113.355 +639250.016|220736.129|113.380 +639244.892|220740.628|113.425 +639239.741|220745.157|113.962 +639234.584|220749.680|113.846 +639229.466|220754.176|113.928 +639224.288|220758.724|114.218 +639219.173|220763.214|114.300 +639214.065|220767.700|114.340 +639208.913|220772.220|114.248 +639203.759|220776.747|114.288 +639198.617|220781.258|114.142 +639193.469|220785.778|114.096 +639188.303|220790.316|114.416 +639183.136|220794.855|114.782 +639177.979|220799.384|115.041 +639172.825|220803.914|115.294 +639167.674|220808.440|115.510 +639162.474|220813.006|115.745 +639157.326|220817.529|115.986 +639152.135|220822.086|116.062 +639146.996|220826.597|116.160 +639141.808|220831.154|116.269 +639136.618|220835.717|116.574 +639131.479|220840.228|116.787 +639126.291|220844.784|116.995 +639121.109|220849.335|117.165 +639115.974|220853.846|117.415 +639110.795|220858.397|117.598 +639105.616|220862.941|117.732 +639100.441|220867.489|117.854 +639095.265|220872.034|118.007 +639090.044|220876.618|118.101 +639084.927|220881.110|118.077 +639079.705|220885.695|118.168 +639074.539|220890.230|118.205 +639069.370|220894.772|118.372 +639064.203|220899.307|118.409 +639059.037|220903.843|118.482 +639053.870|220908.378|118.601 +639048.655|220912.959|118.753 +639043.489|220917.495|118.961 +639038.326|220922.030|119.080 +639033.117|220926.605|119.180 +639028.002|220931.095|119.204 +639022.793|220935.667|119.211 +639017.584|220940.239|119.287 +639012.475|220944.728|119.354 +639007.266|220949.300|119.442 +639002.109|220953.827|119.393 +638996.949|220958.356|119.470 +638991.792|220962.885|119.467 +638986.586|220967.457|119.564 +638981.474|220971.941|119.592 +638976.268|220976.513|119.732 +638971.065|220981.085|119.777 +638965.957|220985.569|119.857 +638960.461|220990.394|119.945 +638955.594|220994.664|119.902 +638950.436|220999.193|119.915 +638945.279|221003.720|120.012 +638940.119|221008.249|119.842 +638934.965|221012.775|120.052 +638914.287|221030.929|120.283 +638903.970|221039.988|120.274 +638898.815|221044.514|120.475 +638893.704|221049.001|120.518 +638888.550|221053.530|120.668 +638883.392|221058.056|120.850 +638878.287|221062.543|121.000 +638873.130|221067.069|121.088 +638867.973|221071.596|121.277 +638862.867|221076.082|121.439 +638857.713|221080.609|121.622 +638852.580|221085.107|121.146 +638847.493|221089.579|121.881 +638842.336|221094.108|122.039 +638837.215|221098.601|121.902 +638832.125|221103.078|122.487 +638826.962|221107.611|122.539 +638821.902|221112.055|122.752 +638816.787|221116.542|122.859 +638811.670|221121.034|122.908 +638806.564|221125.521|123.155 +638796.347|221134.494|123.679 +638791.205|221139.002|123.328 +638786.137|221143.452|123.453 +638781.046|221147.918|123.225 +638775.904|221152.426|122.963 +638770.756|221156.943|122.606 +638760.558|221165.898|122.844 +638755.513|221170.321|122.722 +638750.384|221174.826|122.783 +638745.312|221179.282|122.984 +638740.228|221183.744|123.060 +638735.153|221188.200|123.271 +638730.120|221192.617|123.423 +638725.042|221197.079|123.591 +638719.971|221201.532|123.889 +638714.960|221205.936|124.368 +638709.900|221210.384|124.852 +638704.907|221214.767|124.904 +638699.835|221219.223|125.258 +638694.809|221223.639|125.553 +638689.786|221228.050|125.907 +638684.726|221232.497|126.440 +638679.752|221236.868|126.812 +638674.668|221241.333|127.053 +638669.678|221245.716|127.266 +638664.631|221250.148|127.407 +638659.650|221254.522|127.757 +638654.615|221258.944|128.053 +638649.650|221263.309|128.601 +638644.633|221267.713|128.583 +638639.564|221272.161|128.580 +638634.587|221276.528|128.522 +638629.600|221280.911|128.882 +638624.635|221285.270|128.967 +638619.569|221289.717|129.086 +638614.610|221294.073|129.287 +638609.636|221298.437|129.357 +638604.628|221302.839|129.580 +638599.663|221307.200|129.766 +638594.697|221311.559|129.979 +638589.732|221315.921|130.208 +638569.884|221333.349|130.958 +638564.864|221337.754|130.781 +638559.911|221342.100|130.781 +638549.959|221350.830|130.503 +638525.072|221372.656|129.315 +638515.023|221381.462|128.224 +638510.112|221385.769|128.025 +638505.080|221390.179|127.300 +638500.048|221394.590|126.617 +638490.114|221403.301|125.950 +638485.137|221407.669|125.386 +638480.150|221412.037|124.819 +638475.142|221416.426|124.093 +638465.252|221425.100|123.319 +638460.287|221429.456|123.008 +638455.291|221433.833|122.155 +638450.387|221438.137|121.984 +638440.535|221446.775|121.049 +638435.482|221451.203|120.290 +638411.003|221472.677|118.772 +638377.999|221501.706|122.883 +638368.462|221510.082|123.298 +638363.777|221514.200|123.575 +638359.041|221518.363|123.847 +638354.323|221522.512|124.264 +638349.641|221526.626|124.593 +638321.407|221551.422|125.304 +638293.582|221575.873|126.870 +638288.900|221579.979|126.602 +638284.334|221583.993|126.943 +638279.680|221588.080|127.117 +638275.209|221592.015|127.724 +638270.667|221596.008|128.242 +638266.052|221600.059|128.126 +638261.319|221604.207|127.708 +638256.713|221608.252|127.693 +638252.190|221612.224|127.843 +638247.648|221616.213|127.922 +638243.058|221620.246|128.022 +638238.514|221624.236|128.129 +638233.999|221628.198|128.129 +638229.537|221632.124|128.659 +638220.408|221640.134|128.272 +638215.879|221644.109|128.275 +638211.353|221648.080|128.074 +638206.781|221652.088|127.663 +638197.664|221660.083|127.050 +638193.138|221664.055|126.669 +638188.648|221667.993|126.486 +638184.064|221672.010|125.892 +638165.910|221687.924|123.844 +638161.551|221691.752|123.895 +638157.107|221695.647|123.588 +638152.578|221699.616|122.932 +638139.277|221711.287|122.094 +638134.872|221715.152|121.829 +638130.422|221719.053|121.155 +638126.094|221722.851|121.033 +638121.833|221726.597|121.207 +638117.444|221730.450|120.847 +638095.352|221749.807|117.437 +638090.813|221753.779|116.147 +638086.491|221757.568|115.775 +638069.602|221772.390|114.992 +638065.326|221776.139|114.459 +638061.168|221779.791|114.410 +638057.191|221783.290|114.888 +638052.966|221786.993|114.392 +638048.772|221790.672|114.041 +638035.925|221801.925|111.627 +638031.734|221805.595|110.938 +638027.528|221809.283|110.420 +638023.398|221812.904|109.999 +638019.319|221816.486|109.795 +638015.268|221820.040|109.509 +638011.205|221823.603|109.189 +638003.089|221830.720|108.427 +637998.898|221834.390|107.461 +637994.761|221838.011|106.732 +637990.570|221841.684|105.805 +637982.033|221849.145|103.053 +637977.943|221852.723|102.172 +637973.959|221856.216|101.691 +638137.097|221711.110|121.777 +638146.019|221703.271|122.643 +638150.423|221699.396|122.731 +638154.983|221695.391|123.304 +638159.464|221691.456|123.773 +638163.944|221687.512|123.798 +638182.220|221671.458|125.938 +638186.783|221667.450|126.434 +638191.288|221663.491|126.693 +638195.848|221659.483|126.980 +638200.471|221655.417|127.349 +638205.004|221651.433|127.553 +638209.628|221647.370|127.955 +638214.236|221643.319|128.318 +638218.769|221639.329|128.339 +638223.441|221635.227|128.790 +638227.967|221631.240|128.571 +638232.415|221627.320|127.977 +638237.005|221623.285|128.083 +638241.562|221619.274|128.056 +638246.149|221615.235|127.940 +638250.742|221611.190|127.879 +638255.342|221607.146|127.858 +638259.969|221603.073|127.721 +638264.635|221598.971|128.080 +638269.356|221594.819|128.208 +638273.892|221590.820|127.672 +638278.418|221586.831|127.099 +638283.075|221582.731|126.959 +638287.690|221578.668|126.596 +638292.436|221574.492|126.962 +638301.830|221566.226|126.937 +638320.499|221549.782|125.648 +638329.914|221541.488|125.112 +638334.681|221537.297|125.194 +638344.209|221528.909|125.118 +638348.946|221524.740|124.801 +638353.564|221520.664|124.112 +638358.309|221516.486|123.892 +638367.828|221508.104|123.325 +638405.834|221474.606|119.098 +638410.695|221470.324|118.814 +638415.542|221466.059|118.759 +638420.513|221461.689|119.217 +638425.362|221457.421|119.232 +638435.354|221448.643|120.271 +638445.400|221439.819|121.832 +638460.308|221426.719|123.094 +638465.282|221422.348|123.499 +638480.361|221409.101|125.285 +638485.305|221404.755|125.608 +638490.306|221400.354|125.630 +638505.354|221387.134|127.291 +638510.426|221382.678|127.971 +638515.458|221378.256|128.370 +638520.546|221373.787|129.239 +638525.526|221369.407|129.290 +638530.546|221364.994|129.680 +638535.569|221360.580|130.138 +638540.605|221356.151|130.299 +638550.672|221347.297|130.717 +638560.694|221338.479|130.839 +638565.647|221334.123|130.866 +638575.678|221325.293|130.778 +638585.691|221316.475|130.156 +638590.711|221312.056|130.010 +638595.679|221307.682|129.836 +638600.736|221303.229|129.610 +638605.747|221298.818|129.397 +638610.764|221294.402|129.306 +638615.826|221289.946|129.165 +638620.828|221285.541|128.925 +638625.882|221281.091|128.739 +638630.932|221276.644|128.550 +638635.989|221272.194|128.437 +638641.061|221267.732|128.498 +638646.117|221263.279|128.406 +638651.211|221258.792|128.242 +638656.237|221254.363|127.867 +638661.269|221249.931|127.553 +638666.359|221245.448|127.364 +638676.466|221236.542|126.797 +638681.532|221232.076|126.364 +638686.601|221227.611|126.002 +638696.736|221218.680|125.215 +638701.853|221214.169|124.895 +638706.892|221209.734|124.779 +638717.112|221200.727|123.938 +638722.186|221196.256|123.722 +638727.307|221191.745|123.475 +638737.500|221182.766|123.051 +638742.675|221178.209|122.935 +638747.756|221173.737|122.856 +638752.874|221169.226|122.661 +638758.046|221164.673|122.566 +638763.176|221160.158|122.563 +638768.309|221155.638|122.649 +638773.454|221151.115|122.969 +638788.904|221137.521|123.557 +638809.494|221119.388|122.911 +638814.651|221114.847|122.755 +638819.759|221110.348|122.576 +638824.926|221105.800|122.682 +638830.080|221101.262|122.466 +638835.228|221096.726|122.188 +638840.437|221092.139|122.149 +638845.536|221087.646|121.862 +638855.893|221078.527|121.542 +638861.047|221073.988|121.396 +638866.199|221069.450|121.192 +638871.353|221064.911|121.122 +638876.507|221060.373|121.009 +638881.710|221055.792|120.881 +638886.861|221051.256|120.716 +638892.012|221046.718|120.558 +638897.166|221042.182|120.445 +638902.363|221037.604|120.213 +638912.681|221028.524|120.524 +638933.386|221010.294|120.213 +638938.537|221005.759|119.927 +638943.740|221001.178|120.076 +638948.891|220996.642|119.912 +638954.045|220992.107|120.000 +638969.550|220978.455|119.838 +638974.750|220973.877|119.729 +638979.904|220969.338|119.671 +638985.059|220964.803|119.622 +638990.262|220960.221|119.558 +638995.413|220955.683|119.488 +639000.567|220951.148|119.485 +639005.770|220946.566|119.454 +639010.927|220942.028|119.390 +639016.081|220937.489|119.345 +639021.239|220932.951|119.281 +639026.393|220928.409|119.241 +639031.550|220923.868|119.217 +639036.707|220919.326|119.171 +639041.864|220914.782|119.009 +639047.025|220910.234|118.866 +639052.234|220905.644|118.656 +639057.348|220901.139|118.543 +639062.509|220896.591|118.461 +639067.669|220892.047|118.470 +639072.786|220887.539|118.275 +639077.950|220882.988|118.183 +639083.113|220878.440|118.135 +639088.231|220873.932|118.095 +639093.397|220869.382|118.016 +639098.518|220864.871|117.879 +639103.690|220860.311|117.705 +639108.814|220855.797|117.568 +639113.941|220851.280|117.382 +639119.073|220846.756|117.074 +639124.252|220842.191|116.861 +639129.336|220837.713|116.687 +639134.472|220833.184|116.358 +639139.608|220828.660|116.166 +639144.744|220824.134|116.028 +639149.874|220819.614|115.989 +639154.961|220815.136|115.919 +639160.051|220810.650|115.745 +639165.199|220806.111|115.434 +639170.298|220801.615|115.193 +639175.401|220797.120|114.940 +639180.506|220792.621|114.657 +639185.621|220788.110|114.215 +639190.729|220783.605|113.919 +639195.831|220779.112|113.846 +639200.922|220774.631|113.986 +639205.963|220770.194|114.139 +639211.053|220765.710|114.270 +639216.116|220761.251|114.136 +639221.212|220756.764|114.248 +639226.290|220752.283|113.883 +639231.338|220747.843|114.072 +639246.578|220734.410|113.255 +639261.741|220721.054|113.133 +639266.810|220716.579|112.487 +639272.013|220711.977|110.789 +639307.437|220680.738|107.613 +639312.408|220676.355|107.348 +639317.474|220671.892|107.183 +639322.452|220667.506|106.939 +639327.536|220663.023|106.628 +639332.516|220658.630|106.372 +639347.403|220645.530|106.985 +639357.205|220636.913|108.381 +639367.023|220628.281|109.625 +639371.893|220623.996|110.158 +639376.828|220619.656|110.566 +639381.711|220615.361|111.005 +639386.655|220611.011|111.347 +639391.489|220606.756|111.783 +639396.399|220602.434|111.996 +639401.310|220598.115|112.252 +639406.174|220593.830|112.465 +639411.033|220589.553|112.767 +639415.903|220585.265|112.977 +639420.832|220580.928|113.145 +639430.537|220572.381|113.529 +639435.389|220568.108|113.557 +639440.306|220563.773|113.480 +639445.164|220559.494|113.496 +639449.998|220555.233|113.316 +639454.927|220550.886|112.825 +639464.766|220542.206|111.679 +639469.628|220537.917|111.389 +639474.489|220533.632|111.152 +639479.369|220529.328|110.798 +639484.249|220525.024|110.469 +639498.986|220512.015|108.213 +639503.842|220507.733|107.814 +639508.721|220503.426|107.281 +639513.620|220499.104|106.634 +639518.463|220494.828|106.058 +639523.279|220490.582|105.711 +639528.128|220486.308|105.513 +639532.837|220482.157|105.592 +639537.568|220477.996|105.918 +639546.971|220469.715|106.278 +639551.616|220465.631|106.872 +639561.074|220457.300|106.991 +639565.762|220453.170|107.012 +639575.067|220444.983|107.887 +639584.266|220436.888|108.847 +639588.890|220432.816|109.033 +639593.499|220428.759|109.332 +639598.107|220424.705|109.655 +639602.713|220420.651|109.999 +639607.291|220416.619|110.219 +639611.869|220412.589|110.472 +639616.456|220408.551|110.661 +639621.101|220404.460|110.844 +639625.649|220400.455|111.002 +639630.212|220396.438|111.109 +639634.769|220392.424|111.249 +639643.967|220384.319|111.395 +639648.530|220380.299|111.277 +639653.069|220376.300|111.310 +639657.635|220372.276|111.210 +639662.295|220368.168|110.890 +639666.843|220364.156|110.643 +639671.372|220360.164|110.512 +639675.959|220356.122|110.387 +639680.443|220352.169|110.274 +639684.969|220348.182|110.225 +639689.520|220344.168|110.064 +639694.004|220340.217|110.012 +639698.490|220336.264|109.957 +639702.986|220332.302|109.875 +639707.400|220328.412|109.966 +639711.825|220324.514|110.012 +639716.300|220320.573|110.103 +639720.728|220316.672|110.167 +639725.102|220312.819|110.268 +639729.540|220308.911|110.323 +639733.902|220305.065|110.252 +639738.315|220301.179|110.204 +639742.750|220297.268|110.064 +639747.136|220293.400|109.920 +639751.565|220289.493|109.597 +639755.906|220285.667|109.460 +639760.319|220281.775|109.247 +639764.717|220277.901|109.128 +639769.076|220274.054|108.945 +639773.377|220270.266|108.829 +639777.748|220266.410|108.634 +639786.392|220258.790|108.521 +639790.781|220254.916|108.046 +639794.941|220251.252|108.411 +639799.282|220247.424|107.963 +639776.519|220265.084|108.491 +639772.145|220268.928|108.664 +639767.701|220272.835|108.951 +639763.297|220276.703|109.058 +639758.886|220280.580|109.219 +639754.424|220284.500|109.384 +639750.011|220288.380|109.603 +639745.536|220292.315|109.884 +639741.095|220296.213|110.006 +639736.657|220300.115|110.140 +639732.195|220304.035|110.155 +639727.772|220307.918|110.249 +639723.319|220311.828|110.240 +639718.842|220315.760|110.128 +639714.367|220319.686|110.003 +639709.932|220323.581|109.969 +639705.449|220327.519|109.929 +639700.968|220331.454|109.896 +639696.485|220335.392|109.896 +639691.946|220339.376|109.923 +639687.411|220343.360|109.963 +639682.845|220347.371|110.173 +639678.309|220351.358|110.256 +639673.725|220355.384|110.338 +639669.181|220359.377|110.493 +639664.538|220363.455|110.652 +639659.918|220367.518|110.999 +639655.327|220371.554|111.194 +639650.758|220375.565|111.295 +639646.165|220379.601|111.258 +639641.505|220383.694|111.341 +639632.358|220391.726|111.139 +639627.783|220395.743|111.082 +639623.128|220399.830|110.896 +639618.529|220403.869|110.722 +639613.923|220407.914|110.597 +639609.333|220411.943|110.393 +639604.703|220416.006|110.143 +639600.079|220420.066|109.868 +639595.468|220424.111|109.527 +639590.859|220428.155|109.198 +639586.189|220432.255|108.936 +639581.575|220436.306|108.668 +639567.667|220448.507|107.390 +639563.006|220452.600|107.156 +639558.291|220456.740|106.973 +639553.612|220460.842|106.537 +639534.754|220477.399|105.647 +639530.015|220481.560|105.379 +639525.254|220485.741|105.269 +639520.395|220490.018|105.876 +639515.515|220494.309|106.305 +639510.626|220498.613|106.836 +639505.768|220502.890|107.525 +639500.858|220507.209|107.902 +639486.056|220520.245|110.505 +639481.207|220524.506|110.551 +639476.278|220528.837|110.841 +639471.399|220533.132|111.191 +639466.537|220537.405|111.417 +639461.608|220541.739|111.804 +639451.724|220550.438|112.886 +639446.801|220554.767|113.300 +639441.891|220559.080|113.261 +639436.962|220563.411|113.398 +639432.018|220567.760|113.681 +639427.145|220572.040|113.404 +639422.271|220576.316|113.124 +639417.339|220580.644|112.941 +639412.456|220584.933|112.795 +639407.531|220589.258|112.609 +639402.623|220593.568|112.279 +639397.655|220597.926|112.048 +639392.742|220602.242|111.816 +639387.792|220606.586|111.450 +639382.884|220610.893|111.179 +639377.892|220615.276|110.789 +639368.025|220623.932|109.884 +639363.100|220628.254|109.369 +639353.200|220636.932|107.854 +639348.256|220641.266|107.025 +639343.285|220645.625|106.482 +639338.222|220650.072|106.412 +639333.184|220654.503|106.662 +639323.058|220663.401|106.665 +639317.965|220667.878|107.022 +639312.887|220672.343|107.275 +639307.815|220676.800|107.476 +639276.997|220703.918|110.637 +639271.907|220708.389|110.713 +639266.688|220712.992|111.889 +639261.534|220717.530|112.892 +639256.389|220722.056|113.197 +639251.268|220726.555|113.151 +639241.003|220735.580|113.535 +639225.583|220749.135|113.971 +639220.407|220753.686|114.197 +639215.244|220758.224|114.276 +639210.142|220762.708|114.239 +639204.997|220767.225|114.038 +639199.855|220771.742|113.855 +639194.713|220776.256|113.666 +639189.516|220780.822|113.639 +639184.353|220785.363|113.925 +639179.183|220789.911|114.340 +639173.974|220794.492|114.651 +639168.814|220799.031|114.986 +639163.611|220803.606|115.254 +639158.408|220808.181|115.562 +639153.263|220812.704|115.766 +639148.072|220817.267|115.882 +639142.881|220821.830|116.013 +639137.697|220826.387|116.080 +639132.512|220830.946|116.227 +639127.273|220835.552|116.492 +639122.134|220840.069|116.711 +639116.900|220844.672|116.961 +639111.716|220849.231|117.248 +639106.534|220853.788|117.488 +639101.355|220858.342|117.714 +639096.128|220862.935|117.897 +639090.953|220867.483|118.052 +639085.734|220872.073|118.135 +639080.565|220876.615|118.156 +639075.395|220881.159|118.229 +639070.177|220885.743|118.308 +639064.962|220890.328|118.415 +639059.796|220894.869|118.436 +639054.581|220899.453|118.604 +639049.366|220904.038|118.790 +639044.199|220908.579|119.000 +639038.984|220913.163|119.156 +639033.726|220917.787|119.287 +639028.566|220922.323|119.305 +639023.357|220926.898|119.293 +639018.148|220931.476|119.366 +639012.988|220936.008|119.339 +639007.779|220940.586|119.418 +639002.524|220945.204|119.482 +638997.367|220949.739|119.482 +638992.157|220954.314|119.555 +638986.951|220958.890|119.622 +638981.794|220963.422|119.662 +638976.588|220967.997|119.710 +638971.382|220972.572|119.787 +638966.228|220977.104|119.863 +638955.819|220986.251|120.052 +638950.662|220990.784|120.030 +638945.456|220995.359|120.070 +638940.250|220999.931|120.015 +638935.090|221004.463|119.930 +638924.736|221013.571|120.500 +638904.052|221031.743|120.360 +638898.849|221036.315|120.567 +638893.689|221040.850|120.485 +638888.531|221045.383|120.600 +638883.377|221049.915|120.768 +638878.171|221054.490|120.902 +638873.066|221058.980|121.103 +638867.906|221063.512|121.146 +638862.745|221068.045|121.259 +638857.588|221072.577|121.436 +638852.431|221077.113|121.573 +638842.156|221086.141|121.695 +638837.002|221090.670|121.984 +638831.896|221095.160|122.231 +638826.782|221099.656|122.274 +638821.631|221104.185|122.655 +638816.513|221108.681|122.679 +638811.399|221113.177|122.771 +638806.281|221117.672|122.874 +638801.179|221122.159|123.258 +638796.052|221126.664|123.158 +638790.953|221131.148|123.600 +638785.875|221135.610|123.557 +638780.745|221140.112|123.523 +638775.655|221144.583|123.313 +638770.510|221149.100|123.018 +638765.410|221153.575|122.713 +638760.311|221158.052|122.438 +638755.184|221162.557|122.554 +638750.149|221166.980|122.594 +638745.028|221171.482|122.841 +638739.947|221175.947|122.923 +638734.869|221180.412|123.091 +638729.828|221184.838|123.133 +638724.753|221189.300|123.389 +638719.675|221193.766|123.581 +638714.652|221198.182|123.892 +638709.629|221202.599|124.228 +638704.572|221207.049|124.749 +638699.528|221211.481|124.834 +638694.450|221215.943|125.127 +638684.446|221224.743|125.770 +638679.429|221229.153|126.251 +638674.412|221233.570|126.696 +638669.389|221237.986|127.117 +638664.390|221242.378|127.254 +638659.349|221246.810|127.465 +638654.359|221251.196|127.721 +638649.376|221255.579|128.086 +638644.386|221259.969|128.361 +638639.372|221264.373|128.409 +638634.346|221268.786|128.373 +638629.329|221273.194|128.422 +638624.327|221277.592|128.656 +638619.368|221281.951|128.845 +638614.363|221286.349|129.092 +638609.398|221290.714|129.251 +638604.384|221295.121|129.421 +638599.462|221299.446|129.549 +638594.451|221303.851|129.796 +638589.537|221308.170|130.046 +638584.523|221312.580|130.290 +638579.592|221316.911|130.421 +638574.626|221321.276|130.699 +638569.692|221325.613|130.805 +638554.787|221338.708|130.869 +638549.782|221343.106|130.897 +638524.907|221364.945|129.757 +638519.912|221369.325|129.220 +638504.934|221382.465|127.833 +638494.924|221391.240|126.511 +638489.995|221395.568|126.267 +638484.948|221399.988|125.572 +638475.045|221408.678|124.895 +638470.095|221413.018|124.252 +638465.054|221417.432|123.371 +638460.140|221421.748|123.402 +638455.242|221426.042|122.874 +638445.281|221434.778|121.811 +638440.319|221439.127|121.271 +638425.436|221452.179|119.521 +638410.750|221465.063|118.677 +638405.944|221469.284|118.699 +638396.394|221477.678|119.497 +638377.597|221494.223|122.460 +638372.976|221498.289|123.399 +638363.470|221506.647|123.990 +638358.709|221510.829|124.130 +638354.021|221514.949|124.410 +638349.306|221519.095|124.843 +638330.472|221535.642|125.724 +638325.741|221539.794|125.572 +638321.105|221543.869|125.965 +638311.870|221551.989|126.715 +638297.922|221564.248|127.574 +638288.559|221572.468|127.513 +638283.886|221576.568|127.297 +638279.180|221580.701|127.193 +638274.599|221584.727|127.477 +638270.006|221588.763|127.727 +638265.440|221592.777|128.138 +638260.825|221596.828|128.044 +638256.241|221600.854|128.114 +638251.705|221604.841|128.467 +638247.100|221608.886|128.467 +638242.506|221612.922|128.547 +638237.983|221616.893|128.742 +638228.836|221624.925|128.684 +638219.781|221632.880|128.882 +638215.212|221636.888|128.693 +638206.119|221644.868|128.330 +638201.459|221648.952|127.775 +638196.896|221652.954|127.434 +638192.373|221656.919|127.074 +638183.299|221664.881|126.514 +638178.721|221668.895|125.956 +638174.164|221672.891|125.520 +638160.466|221684.894|123.511 +638156.031|221688.786|123.475 +638151.600|221692.673|123.237 +638147.116|221696.605|122.780 +638142.657|221700.515|122.451 +638138.259|221704.371|122.185 +638133.851|221708.236|121.887 +638129.392|221712.143|121.393 +638125.012|221715.984|121.256 +638120.696|221719.775|121.396 +638116.285|221723.640|120.939 +638094.194|221742.992|117.891 +638089.682|221746.939|116.690 +638085.324|221750.758|116.144 +638081.151|221754.419|116.394 +638076.811|221758.223|115.733 +638064.030|221769.427|114.885 +638059.861|221773.088|114.770 +638055.780|221776.670|115.035 +638051.643|221780.297|114.882 +638047.519|221783.915|114.788 +638038.842|221791.510|112.962 +638025.982|221802.760|110.158 +638021.813|221806.415|109.567 +638017.737|221809.987|109.366 +638013.744|221813.489|109.289 +638009.782|221816.967|109.335 +637997.560|221827.678|108.091 +637993.484|221831.247|107.573 +637985.252|221838.450|105.866 +637972.642|221849.474|102.294 +637968.792|221852.848|102.105 +638130.447|221708.568|121.369 +638134.903|221704.651|121.878 +638139.283|221700.796|122.079 +638143.766|221696.854|122.502 +638148.226|221692.932|122.853 +638152.700|221688.997|123.292 +638157.165|221685.068|123.475 +638161.637|221681.136|123.941 +638175.365|221669.072|125.697 +638179.897|221665.085|126.053 +638184.454|221661.077|126.541 +638189.026|221657.054|126.885 +638198.188|221648.998|127.705 +638202.739|221644.996|128.007 +638211.892|221636.940|128.428 +638216.489|221632.898|128.760 +638221.070|221628.866|129.050 +638230.135|221620.880|128.699 +638234.694|221616.866|128.678 +638239.294|221612.815|128.614 +638248.426|221604.771|128.486 +638253.034|221600.711|128.260 +638257.649|221596.645|128.089 +638262.218|221592.619|127.971 +638266.823|221588.562|127.785 +638271.432|221584.502|127.626 +638276.068|221580.421|127.346 +638285.386|221572.218|127.373 +638299.526|221559.776|127.458 +638308.892|221551.526|126.821 +638318.320|221543.226|126.590 +638322.998|221539.105|126.157 +638327.723|221534.944|125.992 +638332.481|221530.759|126.053 +638337.214|221526.590|125.681 +638351.406|221514.087|124.648 +638356.136|221509.920|124.325 +638360.861|221505.760|123.984 +638365.676|221501.517|123.920 +638375.162|221493.159|122.926 +638379.789|221489.072|121.743 +638389.228|221480.745|119.912 +638398.894|221472.232|119.537 +638408.486|221463.780|118.759 +638413.420|221459.442|118.948 +638423.311|221450.746|119.558 +638428.279|221446.378|120.070 +638443.303|221433.184|121.856 +638448.308|221428.782|122.402 +638458.260|221420.038|123.142 +638468.288|221411.223|124.209 +638473.338|221406.788|124.868 +638478.346|221402.387|125.246 +638483.302|221398.025|125.276 +638488.334|221393.605|125.904 +638498.478|221384.696|127.468 +638508.515|221375.878|128.352 +638513.605|221371.410|129.211 +638518.595|221367.021|129.309 +638548.761|221340.491|130.759 +638553.763|221336.089|130.735 +638563.806|221327.250|130.653 +638568.847|221322.812|130.622 +638573.840|221318.420|130.589 +638578.863|221313.997|130.430 +638583.831|221309.624|130.235 +638588.882|221305.173|129.915 +638598.907|221296.350|129.501 +638603.942|221291.918|129.549 +638608.990|221287.471|129.272 +638614.034|221283.030|128.946 +638619.045|221278.619|128.803 +638624.141|221274.130|128.556 +638634.218|221265.260|128.449 +638639.336|221260.758|128.489 +638644.401|221256.302|128.498 +638649.467|221251.839|127.995 +638654.496|221247.411|127.647 +638659.526|221242.982|127.321 +638664.619|221238.498|127.166 +638669.700|221234.027|126.901 +638674.763|221229.565|126.440 +638679.834|221225.099|126.056 +638689.960|221216.181|125.182 +638695.044|221211.706|124.968 +638700.174|221207.189|124.810 +638705.243|221202.727|124.441 +638710.354|221198.225|124.039 +638715.466|221193.723|123.633 +638720.553|221189.246|123.584 +638730.797|221180.230|123.127 +638741.051|221171.204|122.886 +638746.174|221166.696|122.737 +638751.298|221162.185|122.621 +638756.470|221157.635|122.487 +638761.625|221153.105|122.883 +638766.818|221148.543|123.167 +638771.957|221144.022|123.402 +638777.130|221139.475|123.380 +638782.260|221134.961|123.514 +638787.420|221130.419|123.356 +638792.592|221125.868|123.399 +638797.743|221121.336|123.054 +638802.858|221116.834|122.972 +638808.012|221112.296|122.777 +638813.182|221107.748|122.829 +638818.339|221103.213|122.649 +638823.490|221098.674|122.393 +638828.650|221094.136|122.344 +638833.801|221089.600|122.100 +638838.959|221085.062|121.942 +638844.104|221080.532|121.518 +638849.267|221075.988|121.655 +638854.470|221071.410|121.469 +638859.624|221066.874|121.353 +638864.781|221062.336|121.256 +638869.935|221057.800|121.207 +638875.138|221053.222|121.073 +638880.290|221048.687|120.914 +638885.493|221044.109|120.808 +638890.644|221039.573|120.631 +638895.798|221035.041|120.524 +638900.998|221030.463|120.302 +638906.161|221025.924|120.668 +638921.669|221012.281|120.503 +638932.066|221003.128|119.976 +638937.220|220998.593|119.951 +638942.377|220994.057|120.149 +638947.577|220989.482|120.012 +638952.732|220984.947|120.040 +638968.237|220971.304|119.881 +638973.440|220966.726|119.784 +638978.594|220962.191|119.698 +638983.748|220957.658|119.637 +638988.902|220953.123|119.646 +638994.105|220948.545|119.607 +638999.211|220944.052|119.482 +639004.414|220939.474|119.467 +639009.571|220934.938|119.415 +639014.676|220930.442|119.363 +639019.882|220925.864|119.384 +639025.036|220921.329|119.409 +639030.145|220916.833|119.348 +639035.351|220912.252|119.299 +639040.462|220907.753|119.137 +639045.623|220903.209|118.958 +639050.786|220898.664|118.705 +639055.897|220894.162|118.564 +639061.061|220889.617|118.427 +639066.224|220885.070|118.327 +639071.339|220880.571|118.287 +639076.505|220876.023|118.135 +639081.668|220871.476|118.110 +639086.737|220867.017|118.074 +639091.907|220862.466|117.930 +639097.030|220857.955|117.699 +639102.154|220853.441|117.507 +639107.284|220848.924|117.211 +639112.417|220844.403|116.931 +639117.549|220839.883|116.647 +639122.682|220835.363|116.394 +639127.769|220830.885|116.126 +639132.899|220826.368|116.031 +639137.983|220821.894|115.913 +639143.070|220817.413|115.769 +639148.161|220812.933|115.596 +639153.248|220808.452|115.465 +639158.344|220803.965|115.239 +639163.449|220799.470|114.873 +639168.552|220794.977|114.590 +639173.605|220790.524|114.319 +639178.662|220786.071|114.014 +639183.780|220781.563|113.590 +639188.842|220777.103|113.310 +639193.929|220772.629|113.489 +639198.959|220768.206|113.813 +639203.997|220763.777|114.069 +639214.055|220754.923|114.011 +639219.164|220750.427|113.947 +639224.169|220746.023|113.983 +639244.359|220728.247|113.364 +639249.348|220723.855|113.069 +639254.429|220719.380|112.883 +639259.431|220714.973|112.481 +639264.491|220710.514|111.999 +639269.599|220706.006|110.920 +639274.595|220701.607|110.758 +639279.648|220697.157|110.475 +639284.656|220692.744|110.170 +639289.664|220688.336|109.945 +639304.843|220674.949|107.561 +639309.866|220670.524|107.262 +639314.856|220666.129|106.872 +639319.861|220661.724|106.857 +639334.766|220648.602|106.577 +639339.716|220644.250|106.729 +639344.650|220639.910|107.055 +639359.302|220627.044|109.180 +639364.206|220622.737|109.875 +639373.984|220614.139|110.573 +639378.919|220609.804|111.008 +639383.811|220605.501|111.350 +639388.715|220601.188|111.618 +639393.580|220596.911|111.813 +639398.484|220592.598|112.118 +639403.391|220588.282|112.392 +639408.256|220584.000|112.633 +639413.179|220579.666|112.801 +639418.004|220575.420|112.990 +639437.584|220558.177|113.236 +639442.461|220553.880|113.081 +639447.341|220549.579|112.926 +639462.096|220536.570|111.734 +639467.022|220532.227|111.353 +639471.901|220527.926|110.966 +639476.775|220523.628|110.646 +639481.643|220519.337|110.377 +639491.406|220510.732|109.789 +639496.471|220506.248|108.158 +639506.256|220497.623|107.238 +639511.141|220493.310|106.671 +639520.910|220484.693|105.665 +639525.735|220480.441|105.275 +639530.530|220476.219|105.458 +639535.288|220472.028|105.577 +639554.179|220455.405|106.808 +639558.928|220451.226|107.061 +639568.298|220442.978|107.479 +639573.007|220438.833|107.726 +639577.585|220434.812|108.500 +639586.878|220426.631|109.183 +639596.132|220418.490|109.871 +639600.811|220414.372|110.088 +639605.435|220410.303|110.341 +639610.007|220406.277|110.597 +639614.646|220402.196|110.789 +639619.239|220398.151|110.969 +639623.887|220394.057|111.133 +639628.450|220390.040|111.219 +639633.068|220385.971|111.008 +639642.227|220377.909|111.389 +639646.839|220373.846|111.274 +639651.377|220369.847|111.301 +639660.567|220361.745|110.780 +639665.154|220357.704|110.594 +639669.668|220353.726|110.548 +639674.256|220349.685|110.420 +639678.742|220345.731|110.274 +639683.287|220341.726|110.124 +639687.828|220337.724|110.021 +639692.309|220333.777|109.969 +639696.811|220329.812|109.844 +639701.215|220325.931|109.960 +639710.088|220318.116|109.920 +639714.486|220314.242|110.118 +639718.909|220310.347|110.204 +639723.292|220306.488|110.262 +639727.736|220302.575|110.277 +639732.107|220298.722|110.155 +639736.465|220294.881|110.109 +639740.858|220291.010|109.920 +639745.247|220287.142|109.768 +639749.648|220283.265|109.573 +639754.013|220279.413|109.311 +639758.301|220275.633|109.189 +639762.651|220271.796|109.042 +639771.374|220264.097|108.195 +639779.829|220256.650|108.686 +639784.154|220252.831|108.250 +639792.561|220245.421|108.311 +639796.828|220241.657|108.201 +639776.882|220256.650|108.488 +639772.517|220260.488|108.600 +639768.195|220264.282|108.527 +639759.328|220272.076|109.009 +639754.945|220275.929|109.033 +639750.440|220279.891|109.411 +639745.984|220283.808|109.573 +639741.531|220287.719|109.728 +639737.075|220291.638|109.942 +639732.579|220295.585|110.091 +639728.117|220299.508|110.112 +639723.645|220303.437|110.185 +639719.147|220307.387|110.143 +639714.666|220311.322|110.048 +639705.781|220319.119|109.481 +639701.291|220323.063|109.469 +639696.637|220327.157|109.801 +639692.096|220331.147|109.829 +639687.554|220335.133|109.871 +639682.958|220339.175|109.963 +639678.392|220343.186|110.176 +639673.743|220347.274|110.304 +639669.141|220351.318|110.487 +639664.532|220355.366|110.441 +639659.921|220359.420|110.704 +639655.245|220363.532|111.075 +639650.573|220367.637|111.149 +639645.973|220371.679|111.139 +639641.349|220375.736|110.987 +639636.686|220379.838|111.380 +639632.071|220383.886|110.914 +639627.389|220388.001|111.149 +639622.726|220392.094|111.008 +639618.111|220396.145|110.899 +639613.463|220400.227|110.701 +639608.821|220404.302|110.499 +639604.188|220408.365|110.234 +639599.503|220412.477|110.009 +639594.828|220416.579|109.731 +639590.152|220420.685|109.490 +639585.498|220424.766|109.113 +639580.788|220428.896|108.783 +639562.058|220445.328|107.272 +639557.368|220449.440|106.887 +639552.628|220453.600|106.522 +639533.691|220470.218|105.415 +639528.920|220474.406|105.333 +639524.074|220478.658|105.104 +639519.231|220482.919|105.571 +639514.336|220487.226|106.095 +639509.441|220491.530|106.631 +639504.555|220495.827|107.137 +639494.746|220504.456|108.168 +639484.819|220513.198|110.192 +639479.976|220517.453|110.182 +639475.087|220521.748|110.527 +639470.201|220526.045|110.890 +639465.345|220530.312|111.051 +639460.392|220534.668|111.603 +639455.464|220539.002|112.002 +639450.544|220543.327|112.350 +639445.634|220547.643|112.660 +639435.850|220556.242|113.060 +639426.050|220564.846|112.865 +639416.248|220573.454|112.776 +639411.365|220577.739|112.615 +639406.436|220582.068|112.429 +639401.511|220586.390|112.228 +639396.594|220590.706|111.972 +639391.736|220594.970|111.664 +639386.771|220599.325|111.417 +639381.851|220603.644|111.249 +639376.898|220607.991|110.938 +639372.018|220612.270|110.426 +639362.124|220620.951|109.774 +639357.214|220625.255|109.091 +639352.276|220629.580|108.192 +639347.363|220633.887|107.567 +639337.463|220642.570|106.589 +639332.400|220647.014|106.500 +639322.394|220655.802|106.238 +639317.352|220660.231|106.543 +639312.302|220664.675|107.006 +639302.143|220673.605|107.585 +639286.753|220687.151|109.945 +639281.694|220691.598|110.158 +639276.582|220696.090|110.457 +639271.468|220700.589|110.838 +639261.168|220709.657|112.630 +639256.154|220714.058|112.438 +639251.015|220718.576|112.639 +639225.400|220741.085|113.681 +639220.276|220745.587|113.864 +639215.168|220750.074|113.834 +639210.008|220754.606|113.846 +639189.519|220772.595|113.313 +639184.377|220777.113|113.191 +639179.204|220781.657|113.584 +639174.038|220786.202|114.011 +639168.829|220790.783|114.315 +639163.721|220795.269|114.553 +639158.518|220799.842|114.806 +639153.318|220804.414|115.087 +639148.221|220808.894|115.269 +639142.979|220813.497|115.398 +639137.834|220818.020|115.626 +639132.646|220822.580|115.800 +639127.458|220827.136|115.946 +639122.271|220831.696|116.108 +639117.083|220836.256|116.379 +639111.901|220840.810|116.556 +639106.711|220845.373|116.961 +639101.474|220849.978|117.360 +639096.296|220854.529|117.531 +639091.117|220859.080|117.799 +639085.893|220863.673|117.991 +639080.672|220868.260|118.144 +639075.502|220872.799|118.129 +639070.333|220877.343|118.266 +639065.115|220881.924|118.324 +639059.899|220886.509|118.375 +639054.730|220891.050|118.619 +639049.515|220895.634|118.793 +639044.345|220900.176|119.009 +639039.085|220904.800|119.201 +639033.872|220909.381|119.287 +639028.709|220913.913|119.326 +639023.500|220918.491|119.427 +639018.291|220923.066|119.451 +639013.131|220927.599|119.473 +639007.925|220932.174|119.412 +639002.716|220936.749|119.470 +638997.507|220941.321|119.457 +638992.301|220945.896|119.567 +638987.095|220950.471|119.689 +638981.938|220955.003|119.717 +638976.728|220959.575|119.726 +638971.526|220964.147|119.811 +638966.320|220968.722|119.860 +638950.750|220982.396|119.957 +638945.547|220986.968|120.101 +638940.341|220991.543|120.110 +638935.132|220996.115|120.021 +638929.926|221000.687|120.073 +638919.569|221009.791|120.509 +638914.363|221014.363|120.509 +638903.997|221023.468|120.485 +638893.634|221032.572|120.539 +638888.477|221037.101|120.680 +638878.116|221046.206|120.981 +638872.959|221050.738|121.100 +638867.802|221055.271|121.234 +638862.596|221059.843|121.353 +638857.484|221064.335|121.347 +638852.327|221068.868|121.503 +638847.170|221073.400|121.634 +638842.061|221077.890|121.817 +638836.898|221082.425|121.853 +638831.744|221086.955|122.112 +638826.632|221091.447|122.198 +638821.478|221095.980|122.466 +638816.361|221100.475|122.512 +638811.249|221104.968|122.676 +638806.089|221109.501|122.850 +638800.971|221113.999|122.911 +638795.863|221118.489|123.130 +638790.745|221122.985|123.258 +638785.670|221127.444|123.234 +638775.447|221136.430|123.749 +638770.308|221140.941|123.542 +638765.227|221145.406|123.496 +638749.890|221158.869|122.822 +638744.793|221163.344|122.661 +638739.709|221167.812|122.713 +638734.686|221172.226|122.969 +638724.536|221181.150|123.395 +638719.440|221185.625|123.368 +638714.414|221190.044|123.591 +638709.391|221194.461|123.911 +638704.310|221198.926|124.139 +638699.296|221203.337|124.584 +638694.264|221207.759|124.810 +638689.228|221212.185|124.987 +638679.185|221221.018|125.770 +638674.220|221225.386|126.282 +638669.194|221229.802|126.657 +638664.171|221234.222|127.029 +638659.178|221238.611|127.236 +638649.159|221247.420|127.870 +638644.173|221251.803|128.172 +638639.165|221256.204|128.269 +638634.154|221260.606|128.373 +638629.177|221264.979|128.297 +638624.160|221269.390|128.891 +638619.200|221273.752|129.040 +638614.189|221278.156|129.187 +638609.221|221282.521|129.306 +638604.210|221286.925|129.491 +638599.224|221291.305|129.467 +638594.286|221295.645|129.930 +638589.306|221300.025|129.973 +638584.371|221304.357|130.043 +638574.440|221313.086|130.549 +638569.503|221317.426|130.613 +638564.559|221321.770|130.674 +638559.566|221326.156|130.735 +638554.692|221330.441|131.009 +638549.678|221334.846|130.936 +638544.762|221339.162|130.884 +638539.788|221343.530|130.781 +638524.886|221356.612|129.955 +638510.039|221369.642|129.053 +638505.043|221374.025|128.559 +638480.117|221395.882|125.544 +638470.217|221404.572|124.923 +638465.352|221408.848|124.889 +638460.317|221413.262|124.048 +638455.413|221417.566|123.804 +638425.609|221443.699|119.671 +638420.800|221447.924|119.573 +638406.187|221460.753|118.894 +638401.347|221465.005|119.025 +638396.626|221469.156|119.272 +638391.825|221473.378|119.683 +638377.817|221485.716|122.137 +638368.538|221493.882|123.472 +638359.138|221502.154|124.404 +638354.396|221506.321|124.353 +638349.720|221510.435|125.005 +638335.666|221522.795|125.995 +638326.330|221531.000|126.346 +638321.617|221535.142|126.578 +638316.991|221539.212|126.739 +638312.385|221543.262|127.321 +638307.694|221547.386|127.428 +638302.936|221551.559|126.934 +638298.346|221555.598|127.352 +638284.526|221567.750|128.455 +638279.845|221571.859|127.916 +638275.166|221575.971|127.946 +638270.469|221580.091|127.647 +638265.918|221584.090|127.855 +638261.316|221588.138|128.068 +638256.744|221592.155|128.193 +638252.214|221596.139|128.550 +638247.633|221600.166|128.672 +638233.954|221612.187|128.909 +638229.388|221616.195|128.925 +638224.852|221620.182|129.089 +638215.797|221628.137|129.050 +638211.225|221632.151|128.839 +638206.625|221636.187|128.525 +638202.038|221640.213|128.288 +638197.466|221644.228|127.891 +638192.882|221648.248|127.474 +638183.744|221656.264|126.587 +638179.163|221660.284|126.233 +638160.847|221676.341|123.691 +638156.257|221680.368|123.179 +638151.819|221684.263|122.896 +638142.928|221692.069|122.560 +638138.393|221696.044|121.911 +638133.940|221699.954|121.637 +638129.566|221703.795|121.509 +638125.237|221707.596|121.591 +638120.861|221711.439|121.475 +638116.389|221715.362|120.975 +638111.988|221719.221|120.564 +638107.620|221723.055|120.323 +638103.252|221726.890|120.091 +638089.585|221738.853|116.736 +638085.248|221742.657|116.281 +638080.965|221746.418|116.284 +638072.412|221753.922|115.736 +638063.884|221761.405|115.148 +638059.599|221765.166|114.779 +638055.392|221768.861|114.754 +638051.308|221772.451|115.023 +638047.163|221776.090|114.837 +638029.759|221791.330|111.289 +638021.105|221798.908|109.295 +638016.924|221802.575|108.896 +638012.833|221806.162|108.652 +638008.785|221809.719|108.585 +638000.659|221816.851|108.171 +637992.475|221824.026|107.192 +637988.483|221827.529|106.997 +637975.922|221838.526|104.141 +637971.719|221842.202|102.840 +637967.573|221845.832|101.959 +638128.548|221702.353|121.405 +638132.934|221698.491|121.618 +638137.323|221694.632|121.853 +638141.715|221690.768|122.131 +638146.196|221686.827|122.582 +638150.615|221682.940|122.780 +638155.053|221679.033|123.088 +638159.573|221675.061|123.539 +638164.185|221671.013|124.423 +638168.739|221667.014|125.316 +638173.332|221662.976|125.941 +638182.247|221655.130|126.236 +638186.874|221651.067|127.077 +638191.410|221647.074|127.279 +638195.970|221643.066|127.858 +638200.545|221639.043|128.284 +638205.153|221634.992|128.644 +638209.676|221631.011|128.861 +638214.251|221626.985|129.110 +638218.839|221622.953|129.421 +638223.356|221618.972|129.181 +638227.836|221615.025|129.019 +638246.131|221598.916|128.848 +638250.642|221594.941|128.669 +638255.147|221590.970|128.211 +638259.773|221586.895|128.126 +638264.370|221582.844|127.900 +638268.930|221578.827|127.769 +638273.694|221574.636|128.184 +638278.345|221570.539|128.303 +638296.880|221554.205|127.480 +638301.516|221550.117|127.053 +638306.359|221545.859|127.769 +638311.020|221541.754|127.510 +638320.319|221533.551|126.639 +638329.777|221525.221|126.419 +638334.477|221521.076|126.184 +638339.201|221516.915|126.090 +638343.987|221512.694|125.800 +638348.601|221508.622|125.105 +638353.338|221504.443|124.542 +638376.991|221483.579|122.051 +638386.372|221475.295|120.210 +638405.660|221458.293|118.988 +638415.463|221449.661|119.009 +638420.473|221445.257|119.777 +638435.430|221432.108|121.420 +638440.474|221427.676|122.204 +638445.485|221423.268|122.804 +638455.510|221414.457|124.115 +638460.555|221410.022|124.682 +638465.553|221405.624|124.956 +638470.525|221401.253|125.438 +638475.545|221396.830|125.575 +638480.577|221392.407|126.175 +638485.545|221388.034|126.355 +638495.698|221379.109|127.669 +638500.734|221374.686|128.422 +638510.853|221365.783|129.312 +638541.034|221339.226|130.845 +638546.054|221334.806|130.967 +638561.112|221321.541|130.628 +638566.101|221317.149|130.570 +638571.225|221312.638|130.869 +638581.216|221303.829|130.110 +638586.181|221299.455|129.936 +638591.244|221294.993|129.754 +638596.252|221290.583|129.534 +638601.315|221286.120|129.400 +638606.384|221281.658|129.318 +638611.404|221277.235|129.293 +638616.494|221272.749|128.995 +638621.499|221268.338|128.839 +638626.564|221263.870|128.333 +638631.630|221259.411|128.312 +638636.687|221254.955|128.254 +638641.795|221250.456|128.233 +638646.815|221246.027|127.806 +638651.884|221241.559|127.373 +638656.968|221237.075|127.141 +638662.058|221232.588|127.001 +638667.130|221228.117|126.654 +638672.190|221223.652|126.184 +638677.247|221219.189|125.678 +638682.309|221214.724|125.252 +638687.433|221210.210|124.962 +638692.508|221205.732|124.721 +638697.580|221201.264|124.432 +638702.701|221196.747|124.161 +638707.815|221192.239|123.837 +638712.945|221187.719|123.697 +638728.252|221174.225|122.972 +638733.373|221169.711|122.795 +638738.499|221165.191|122.731 +638743.684|221160.625|122.810 +638748.817|221156.105|122.844 +638759.144|221147.012|123.261 +638764.279|221142.492|123.463 +638774.585|221133.415|123.676 +638779.696|221128.910|123.548 +638784.844|221124.372|123.176 +638790.005|221119.824|123.051 +638795.162|221115.277|122.929 +638800.328|221110.726|122.987 +638805.488|221106.181|122.871 +638810.637|221101.643|122.591 +638815.800|221097.095|122.594 +638820.945|221092.557|122.286 +638826.105|221088.012|122.243 +638831.299|221083.431|121.939 +638836.456|221078.886|121.893 +638841.610|221074.345|121.777 +638846.813|221069.761|121.661 +638851.961|221065.222|121.478 +638857.116|221060.681|121.420 +638862.319|221056.097|121.329 +638867.470|221051.558|121.204 +638872.624|221047.017|121.253 +638877.821|221042.435|121.064 +638882.972|221037.897|120.939 +638888.169|221033.316|120.792 +638893.369|221028.735|120.643 +638898.523|221024.196|120.686 +638903.671|221019.658|120.619 +638908.871|221015.076|120.576 +638914.071|221010.495|120.564 +638919.222|221005.957|120.497 +638924.416|221001.379|120.168 +638929.567|220996.840|120.101 +638934.767|220992.259|120.158 +638945.118|220983.139|120.128 +638950.318|220978.558|120.024 +638965.862|220964.861|119.924 +638971.013|220960.322|119.796 +638976.165|220955.784|119.820 +638981.364|220951.202|119.750 +638986.564|220946.621|119.671 +638991.716|220942.083|119.564 +638996.867|220937.541|119.500 +639002.070|220932.960|119.451 +639007.221|220928.422|119.494 +639012.372|220923.883|119.534 +639017.575|220919.299|119.515 +639022.729|220914.757|119.418 +639027.886|220910.216|119.342 +639033.043|220905.674|119.281 +639038.201|220901.130|119.214 +639043.358|220896.585|119.080 +639048.521|220892.035|118.799 +639053.685|220887.484|118.570 +639058.845|220882.936|118.449 +639064.008|220878.389|118.363 +639069.126|220873.881|118.165 +639074.286|220869.333|118.138 +639079.452|220864.782|118.086 +639084.570|220860.271|117.909 +639089.742|220855.711|117.629 +639094.817|220851.240|117.452 +639099.993|220846.680|117.181 +639105.126|220842.154|116.787 +639110.259|220837.628|116.397 +639115.391|220833.104|116.160 +639120.524|220828.581|115.913 +639125.654|220824.058|115.769 +639130.790|220819.535|115.547 +639135.880|220815.048|115.321 +639141.016|220810.522|115.148 +639146.106|220806.035|114.977 +639151.245|220801.509|114.861 +639156.341|220797.016|114.596 +639161.438|220792.526|114.407 +639166.537|220788.030|114.163 +639176.708|220779.060|113.404 +639202.034|220756.761|113.642 +639207.130|220752.268|113.688 +639212.132|220747.867|113.770 +639217.189|220743.411|113.724 +639222.261|220738.942|113.489 +639237.385|220725.610|112.886 +639247.455|220716.735|112.350 +639272.665|220694.505|110.545 +639287.756|220681.204|109.509 +639292.837|220676.714|108.415 +639297.900|220672.243|107.567 +639302.923|220667.814|107.259 +639332.833|220641.458|106.452 +639342.657|220632.820|107.558 +639347.585|220628.483|107.948 +639352.496|220624.164|108.558 +639357.339|220619.909|109.338 +639362.225|220615.608|109.704 +639367.099|220611.322|110.207 +639371.976|220607.031|110.676 +639376.868|220602.727|111.014 +639381.778|220598.405|111.219 +639386.637|220594.129|111.438 +639391.544|220589.809|111.700 +639396.405|220585.530|111.935 +639401.316|220581.208|112.182 +639406.183|220576.926|112.398 +639411.057|220572.637|112.584 +639415.876|220568.400|112.846 +639420.802|220564.060|112.602 +639425.697|220559.750|112.670 +639435.386|220551.222|112.855 +639440.294|220546.900|112.484 +639445.213|220542.568|112.441 +639450.047|220538.310|112.289 +639454.970|220533.970|111.868 +639459.825|220529.694|111.609 +639464.711|220525.387|111.155 +639469.643|220521.040|110.761 +639474.474|220516.782|110.396 +639479.354|220512.485|110.073 +639484.191|220508.227|110.091 +639498.937|220495.215|107.845 +639503.863|220490.868|106.982 +639508.737|220486.570|106.516 +639513.574|220482.306|105.982 +639518.466|220477.993|105.449 +639523.327|220473.708|105.159 +639528.027|220469.575|105.318 +639532.831|220465.344|105.461 +639537.534|220461.208|105.635 +639542.301|220457.014|105.744 +639547.017|220452.869|106.199 +639551.701|220448.748|106.528 +639570.352|220432.346|107.963 +639575.073|220428.192|108.137 +639579.648|220424.175|108.948 +639584.306|220420.075|109.234 +639588.966|220415.979|109.539 +639593.621|220411.885|109.875 +639598.253|220407.807|110.054 +639602.832|220403.784|110.289 +639607.501|220399.675|110.582 +639612.085|220395.639|110.792 +639616.734|220391.549|110.950 +639621.330|220387.507|111.133 +639625.954|220383.438|111.182 +639630.529|220379.409|111.213 +639635.180|220375.312|111.133 +639639.807|220371.237|110.917 +639644.388|220367.204|110.990 +639648.978|220363.163|111.018 +639653.557|220359.130|110.853 +639658.138|220355.095|110.691 +639662.719|220351.059|110.545 +639667.294|220347.033|110.463 +639671.890|220342.982|110.268 +639676.432|220338.983|110.137 +639680.979|220334.978|109.978 +639685.481|220331.012|109.811 +639690.023|220327.010|109.719 +639694.540|220323.036|109.789 +639699.033|220319.076|109.710 +639712.267|220307.433|110.088 +639721.146|220299.615|110.131 +639725.547|220295.738|110.103 +639730.022|220291.800|110.003 +639734.445|220287.904|109.917 +639738.834|220284.040|109.753 +639743.226|220280.169|109.582 +639747.621|220276.295|109.417 +639752.065|220272.381|109.042 +639756.372|220268.592|109.113 +639760.727|220264.758|108.954 +639773.691|220253.346|108.564 +639782.329|220245.744|108.262 +639786.575|220242.005|108.216 +639790.823|220238.268|108.195 +639773.413|220251.527|108.311 +639764.751|220259.131|108.494 +639760.398|220262.957|108.844 +639756.043|220266.782|108.972 +639751.727|220270.574|108.942 +639747.313|220274.454|109.387 +639742.927|220278.303|109.460 +639738.526|220282.171|109.640 +639734.149|220286.015|109.710 +639729.744|220289.886|109.948 +639725.328|220293.763|109.987 +639720.911|220297.643|110.060 +639716.461|220301.550|110.045 +639712.014|220305.452|110.033 +639707.653|220309.277|109.600 +639703.190|220313.194|109.433 +639698.701|220317.135|109.420 +639694.214|220321.079|109.701 +639689.685|220325.054|109.655 +639685.189|220329.004|109.750 +639680.626|220333.012|109.920 +639676.026|220337.054|110.054 +639671.470|220341.056|110.234 +639666.876|220345.088|110.365 +639662.295|220349.115|110.463 +639657.705|220353.147|110.609 +639653.081|220357.207|110.691 +639648.454|220361.270|110.798 +639643.827|220365.336|110.938 +639639.246|220369.356|110.829 +639629.898|220377.571|111.173 +639625.311|220381.597|111.152 +639620.678|220385.666|111.133 +639616.029|220389.748|110.908 +639611.375|220393.832|110.749 +639606.724|220397.916|110.582 +639602.094|220401.979|110.313 +639597.409|220406.088|110.067 +639592.724|220410.200|109.847 +639588.116|220414.244|109.490 +639583.398|220418.387|109.210 +639578.673|220422.532|108.966 +639569.334|220430.719|107.845 +639550.449|220447.288|106.427 +639545.712|220451.442|106.055 +639536.108|220459.873|105.543 +639531.301|220464.088|105.336 +639526.482|220468.322|105.251 +639521.675|220472.541|105.083 +639516.786|220476.841|105.531 +639511.839|220481.194|106.037 +639506.899|220485.537|106.540 +639501.961|220489.884|107.067 +639486.980|220503.075|109.689 +639482.039|220507.416|109.972 +639477.129|220511.732|110.085 +639472.197|220516.069|110.393 +639467.214|220520.449|110.728 +639457.271|220529.194|111.673 +639447.392|220537.881|112.279 +639442.461|220542.212|112.343 +639432.466|220550.993|112.813 +639427.513|220555.352|113.160 +639422.627|220559.631|112.520 +639417.662|220563.996|112.596 +639412.660|220568.391|112.575 +639407.729|220572.719|112.383 +639402.748|220577.090|112.212 +639397.838|220581.400|111.892 +639392.858|220585.771|111.749 +639387.898|220590.126|111.459 +639382.884|220594.525|111.210 +639377.968|220598.841|111.014 +639372.908|220603.282|110.765 +639367.998|220607.592|110.542 +639362.984|220611.990|109.902 +639358.058|220616.309|109.353 +639353.081|220620.674|108.872 +639343.102|220629.421|107.616 +639338.124|220633.789|107.168 +639333.171|220638.133|106.452 +639302.798|220664.818|107.003 +639297.711|220669.289|107.387 +639292.612|220673.779|107.976 +639287.439|220678.333|108.884 +639277.198|220687.343|110.167 +639272.089|220691.832|110.432 +639246.572|220714.266|111.938 +639241.402|220718.816|112.624 +639231.243|220727.741|112.901 +639226.132|220732.228|112.804 +639220.977|220736.760|113.392 +639215.845|220741.274|113.752 +639195.487|220759.148|113.297 +639169.862|220781.657|113.654 +639154.491|220795.166|114.465 +639149.337|220799.695|114.712 +639144.195|220804.212|114.824 +639139.053|220808.729|114.910 +639133.911|220813.250|115.071 +639128.815|220817.727|115.318 +639123.624|220822.290|115.556 +639118.485|220826.804|115.739 +639113.346|220831.321|115.977 +639108.207|220835.835|116.236 +639103.017|220840.401|116.678 +639097.878|220844.918|117.101 +639092.696|220849.472|117.354 +639087.569|220853.980|117.531 +639082.391|220858.534|117.845 +639077.264|220863.036|118.046 +639072.091|220867.580|118.113 +639066.925|220872.119|118.132 +639061.753|220876.663|118.360 +639056.632|220881.162|118.470 +639051.463|220885.704|118.686 +639046.296|220890.245|118.860 +639041.130|220894.784|119.080 +639035.963|220899.322|119.247 +639030.803|220903.858|119.284 +639025.640|220908.390|119.311 +639020.480|220912.926|119.442 +639015.316|220917.461|119.518 +639010.159|220921.990|119.500 +639004.999|220926.526|119.595 +638999.838|220931.055|119.515 +638994.632|220935.627|119.485 +638989.472|220940.160|119.589 +638984.315|220944.692|119.683 +638979.158|220949.221|119.805 +638973.952|220953.796|119.814 +638968.840|220958.283|119.796 +638963.637|220962.855|119.851 +638953.323|220971.914|119.982 +638927.442|220994.649|120.293 +638922.285|220999.178|120.229 +638911.925|221008.279|120.570 +638906.765|221012.809|120.475 +638901.559|221017.384|120.497 +638896.407|221021.910|120.878 +638891.247|221026.442|120.823 +638886.044|221031.014|120.924 +638880.884|221035.547|120.988 +638875.730|221040.076|121.164 +638870.569|221044.609|121.189 +638865.412|221049.138|121.277 +638860.252|221053.670|121.347 +638855.046|221058.242|121.497 +638849.934|221062.732|121.545 +638844.777|221067.264|121.692 +638839.568|221071.839|121.811 +638834.457|221076.329|121.899 +638829.290|221080.865|121.920 +638824.136|221085.397|122.155 +638819.015|221089.893|122.091 +638813.861|221094.422|122.408 +638808.707|221098.951|122.697 +638803.586|221103.447|122.719 +638798.435|221107.977|123.072 +638793.263|221112.518|123.075 +638788.142|221117.017|123.078 +638782.976|221121.552|123.234 +638777.864|221126.045|123.472 +638767.580|221135.080|123.783 +638752.148|221148.622|123.103 +638736.783|221162.115|122.929 +638731.638|221166.632|122.826 +638726.496|221171.147|122.816 +638721.482|221175.554|123.231 +638716.359|221180.059|123.453 +638706.200|221188.983|123.889 +638701.097|221193.464|123.828 +638696.083|221197.875|124.279 +638691.002|221202.337|124.545 +638685.912|221206.808|124.697 +638680.886|221211.228|125.029 +638675.826|221215.678|125.547 +638670.803|221220.091|125.971 +638665.783|221224.508|126.395 +638660.763|221228.922|126.840 +638655.719|221233.353|127.050 +638650.680|221237.779|127.306 +638645.651|221242.202|127.687 +638640.628|221246.618|128.132 +638635.614|221251.023|128.169 +638630.557|221255.464|128.318 +638625.528|221259.880|128.224 +638620.563|221264.248|128.842 +638615.555|221268.646|129.007 +638610.541|221273.051|129.147 +638605.530|221277.455|129.330 +638600.510|221281.862|129.446 +638595.487|221286.276|129.540 +638590.510|221290.647|129.632 +638585.493|221295.057|129.815 +638580.579|221299.373|130.089 +638575.565|221303.777|130.345 +638560.706|221316.832|130.638 +638555.713|221321.215|130.723 +638550.760|221325.565|130.732 +638535.908|221338.613|130.948 +638506.001|221364.853|129.196 +638501.124|221369.133|129.266 +638496.082|221373.549|128.473 +638491.056|221377.954|127.437 +638486.088|221382.319|127.248 +638481.107|221386.686|126.639 +638466.242|221399.732|125.538 +638446.375|221417.160|123.447 +638431.465|221430.236|121.600 +638411.735|221447.543|119.244 +638406.861|221451.822|119.122 +638402.060|221456.041|119.147 +638397.263|221460.256|119.226 +638387.686|221468.675|119.531 +638383.044|221472.765|120.616 +638364.411|221489.176|123.706 +638345.718|221505.623|125.678 +638336.416|221513.803|126.410 +638331.728|221517.927|126.733 +638322.370|221526.154|127.233 +638317.689|221530.269|127.361 +638299.184|221546.542|128.647 +638294.423|221550.715|127.870 +638285.172|221558.847|128.382 +638266.662|221575.111|128.483 +638262.002|221579.201|128.120 +638257.451|221583.203|128.333 +638252.876|221587.221|128.452 +638248.389|221591.174|129.010 +638243.863|221595.152|129.138 +638225.654|221611.148|129.312 +638221.155|221615.104|129.391 +638212.173|221622.995|129.458 +638207.579|221627.025|129.147 +638202.974|221631.069|128.797 +638198.377|221635.099|128.269 +638189.279|221643.082|127.486 +638180.086|221651.147|126.334 +638161.908|221667.088|124.328 +638157.336|221671.099|123.633 +638152.822|221675.058|123.228 +638148.372|221678.963|122.899 +638143.922|221682.867|122.585 +638139.469|221686.778|122.268 +638135.022|221690.688|121.990 +638130.703|221694.486|122.067 +638126.295|221698.357|121.783 +638117.459|221706.117|121.170 +638113.049|221709.991|120.692 +638099.963|221721.482|119.790 +638091.014|221729.334|118.031 +638086.452|221733.327|116.833 +638082.142|221737.116|116.473 +638060.775|221755.885|115.273 +638056.551|221759.595|114.940 +638052.351|221763.289|114.928 +638044.011|221770.622|114.764 +638031.103|221781.943|112.663 +638026.653|221785.841|111.350 +638022.404|221789.566|110.643 +638018.103|221793.339|109.753 +638009.709|221800.703|108.616 +638005.558|221804.348|108.155 +637993.183|221815.212|106.729 +637989.101|221818.796|106.394 +637968.719|221836.682|103.590 +637964.394|221840.467|102.041 +638125.960|221696.614|121.905 +638130.373|221692.727|122.231 +638134.772|221688.850|122.289 +638139.094|221685.040|122.249 +638143.544|221681.121|122.566 +638148.000|221677.198|122.929 +638152.441|221673.287|123.243 +638156.961|221669.310|123.688 +638161.509|221665.311|124.523 +638179.742|221649.266|126.629 +638184.314|221645.243|127.224 +638188.837|221641.262|127.602 +638220.829|221613.086|129.470 +638225.334|221609.115|129.431 +638243.564|221593.042|129.208 +638248.054|221589.080|128.659 +638252.617|221585.054|128.495 +638257.222|221580.991|128.306 +638261.867|221576.900|128.586 +638284.980|221556.533|128.132 +638289.629|221552.437|128.016 +638308.429|221535.877|128.297 +638317.707|221527.693|127.593 +638322.419|221523.539|127.382 +638327.153|221519.369|127.315 +638350.607|221498.676|125.130 +638355.368|221494.479|125.026 +638364.850|221486.115|124.014 +638393.102|221461.167|119.464 +638397.994|221456.854|119.378 +638412.552|221444.028|119.083 +638432.531|221426.460|121.561 +638457.598|221404.417|124.761 +638467.638|221395.590|126.008 +638477.636|221386.790|126.721 +638487.709|221377.929|127.736 +638497.777|221369.075|128.848 +638517.994|221351.287|130.558 +638527.980|221342.490|130.586 +638533.015|221338.058|130.784 +638543.000|221329.259|130.558 +638548.066|221324.800|130.656 +638553.059|221320.398|130.613 +638568.192|221307.066|130.604 +638573.151|221302.695|130.318 +638578.165|221298.273|130.116 +638588.236|221289.397|129.671 +638593.247|221284.980|129.476 +638598.325|221280.506|129.476 +638603.390|221276.044|129.376 +638608.389|221271.636|129.110 +638613.437|221267.186|128.885 +638618.505|221262.721|128.867 +638623.529|221258.289|128.419 +638628.634|221253.793|128.297 +638633.636|221249.386|128.172 +638638.784|221244.850|128.050 +638648.891|221235.941|127.401 +638653.923|221231.506|127.114 +638659.007|221227.029|126.885 +638664.113|221222.524|126.367 +638669.127|221218.104|125.916 +638674.241|221213.596|125.471 +638679.286|221209.146|124.828 +638684.376|221204.662|124.727 +638689.506|221200.142|124.538 +638694.575|221195.674|124.243 +638699.689|221191.166|123.883 +638704.779|221186.682|123.862 +638709.854|221182.214|123.636 +638714.987|221177.691|123.591 +638720.089|221173.192|123.097 +638725.210|221168.681|122.914 +638730.343|221164.161|122.905 +638745.696|221150.643|123.054 +638750.838|221146.116|123.301 +638755.977|221141.596|123.493 +638766.282|221132.525|123.636 +638776.511|221123.512|123.466 +638781.665|221118.971|123.200 +638786.835|221114.420|123.255 +638791.940|221109.921|122.999 +638797.088|221105.383|122.697 +638802.255|221100.835|122.719 +638812.514|221091.795|122.390 +638822.826|221082.712|122.128 +638828.028|221078.131|121.990 +638833.186|221073.586|121.951 +638838.343|221069.044|121.923 +638843.500|221064.506|121.865 +638848.651|221059.967|121.716 +638853.802|221055.429|121.558 +638859.002|221050.848|121.436 +638864.108|221046.352|121.381 +638869.308|221041.771|121.271 +638874.459|221037.235|121.177 +638879.613|221032.697|121.134 +638884.767|221028.158|121.152 +638889.964|221023.580|121.009 +638895.066|221019.085|120.991 +638900.260|221014.506|120.640 +638905.411|221009.971|120.634 +638910.562|221005.436|120.442 +638915.759|221000.854|120.381 +638920.916|220996.319|120.570 +638926.068|220991.784|120.573 +638946.764|220973.553|120.107 +638951.912|220969.018|120.003 +638962.263|220959.901|119.924 +638967.463|220955.323|119.945 +638972.614|220950.788|119.887 +638977.765|220946.249|119.854 +638982.965|220941.668|119.741 +638988.116|220937.133|119.671 +638993.319|220932.552|119.570 +638998.470|220928.013|119.595 +639003.624|220923.478|119.595 +639008.775|220918.939|119.567 +639013.929|220914.401|119.573 +639019.084|220909.859|119.470 +639024.290|220905.278|119.403 +639029.398|220900.779|119.308 +639034.552|220896.238|119.256 +639039.761|220891.650|119.086 +639044.873|220887.149|118.948 +639050.036|220882.601|118.656 +639055.148|220878.096|118.516 +639060.265|220873.588|118.290 +639065.432|220869.040|118.101 +639070.592|220864.496|118.107 +639075.709|220859.988|117.976 +639080.879|220855.431|117.729 +639086.006|220850.917|117.412 +639091.126|220846.406|117.275 +639096.253|220841.886|116.979 +639101.389|220837.359|116.495 +639106.525|220832.833|116.102 +639111.658|220828.310|115.815 +639116.742|220823.829|115.562 +639121.878|220819.306|115.300 +639127.013|220814.780|115.050 +639132.149|220810.257|114.876 +639137.240|220805.773|114.724 +639142.321|220801.298|114.706 +639147.459|220796.775|114.602 +639162.757|220783.294|113.803 +639183.121|220765.356|113.035 +639188.166|220760.912|113.063 +639193.213|220756.471|113.121 +639198.264|220752.024|113.124 +639203.293|220747.602|113.520 +639218.441|220734.258|113.026 +639223.516|220729.789|112.798 +639228.546|220725.354|112.523 +639233.541|220720.962|112.804 +639238.570|220716.530|112.590 +639243.600|220712.099|112.410 +639248.696|220707.600|111.377 +639278.844|220681.036|109.768 +639283.907|220676.565|108.838 +639288.942|220672.127|108.299 +639293.965|220667.698|107.933 +639314.054|220649.980|105.781 +639319.099|220645.536|105.379 +639323.921|220641.303|106.357 +639328.907|220636.916|106.628 +639333.872|220632.546|106.634 +639338.786|220628.224|107.174 +639353.377|220615.398|108.869 +639358.266|220611.106|109.710 +639368.007|220602.541|110.752 +639372.875|220598.256|110.853 +639377.791|220593.930|110.990 +639382.656|220589.648|111.155 +639387.511|220585.375|111.417 +639392.367|220581.104|111.703 +639397.237|220576.819|111.889 +639402.105|220572.533|112.087 +639406.927|220568.291|112.285 +639411.853|220563.956|112.465 +639416.705|220559.680|112.420 +639421.548|220555.419|112.511 +639431.256|220546.869|112.520 +639436.161|220542.550|112.569 +639441.040|220538.246|112.020 +639445.881|220533.988|112.231 +639450.696|220529.745|112.246 +639455.546|220525.472|112.014 +639460.514|220521.089|111.298 +639470.301|220512.460|110.335 +639475.129|220508.202|109.993 +639479.994|220503.917|109.814 +639484.846|220499.637|109.369 +639489.729|220495.330|108.719 +639494.630|220491.005|107.979 +639504.442|220482.346|106.522 +639518.978|220469.529|105.187 +639523.754|220465.320|105.144 +639528.466|220461.174|105.232 +639533.215|220456.993|105.418 +639537.961|220452.820|105.665 +639542.658|220448.684|105.897 +639547.321|220444.584|106.375 +639552.009|220440.460|106.702 +639566.027|220428.128|107.750 +639575.265|220420.002|108.747 +639579.956|220415.878|109.158 +639584.580|220411.809|109.350 +639589.231|220407.719|109.713 +639593.852|220403.653|109.963 +639598.528|220399.538|110.201 +639603.146|220395.475|110.493 +639607.733|220391.439|110.697 +639612.421|220387.309|110.905 +639617.017|220383.264|111.078 +639621.641|220379.195|111.112 +639626.265|220375.123|111.164 +639635.531|220366.961|110.917 +639640.225|220362.821|110.633 +639644.745|220358.844|110.765 +639649.359|220354.778|110.667 +639653.971|220350.715|110.615 +639658.592|220346.646|110.533 +639663.130|220342.647|110.365 +639667.718|220338.605|110.213 +639672.314|220334.557|110.060 +639676.913|220330.500|109.884 +639681.464|220326.492|109.728 +639685.999|220322.499|109.676 +639690.489|220318.543|109.600 +639703.974|220306.668|109.689 +639708.479|220302.700|109.609 +639712.862|220298.844|109.914 +639717.306|220294.930|109.923 +639721.762|220291.007|109.887 +639726.215|220287.082|109.875 +639735.130|220279.230|109.622 +639739.574|220275.310|109.445 +639744.009|220271.406|109.350 +639752.766|220263.691|109.003 +639757.164|220259.814|108.881 +639761.584|220255.922|108.686 +639770.335|220248.207|108.012 +639774.568|220244.483|108.256 +639778.939|220240.627|107.860 +639787.455|220233.135|108.192 +639767.698|220248.597|108.226 +639759.014|220256.227|108.558 +639754.699|220260.018|108.753 +639750.398|220263.792|108.637 +639745.929|220267.718|109.082 +639741.601|220271.521|109.143 +639737.258|220275.335|109.283 +639732.869|220279.190|109.414 +639728.480|220283.046|109.570 +639724.103|220286.890|109.676 +639719.692|220290.760|109.704 +639715.337|220294.589|109.750 +639710.999|220298.390|109.439 +639706.531|220302.315|109.561 +639702.099|220306.208|109.503 +639697.664|220310.100|109.478 +639693.272|220313.959|109.530 +639688.852|220317.836|109.463 +639684.363|220321.780|109.512 +639679.864|220325.730|109.622 +639675.365|220329.684|109.762 +639670.820|220333.673|109.881 +639666.322|220337.627|110.057 +639661.786|220341.610|110.173 +639657.242|220345.600|110.347 +639652.712|220349.581|110.481 +639648.134|220353.604|110.612 +639643.526|220357.652|110.637 +639638.999|220361.621|110.499 +639634.363|220365.702|111.030 +639629.825|220369.679|110.707 +639625.183|220373.761|111.024 +639620.556|220377.824|110.954 +639615.975|220381.844|110.950 +639611.427|220385.837|110.771 +639606.785|220389.909|110.560 +639602.201|220393.929|110.316 +639597.623|220397.950|110.073 +639592.993|220402.010|109.820 +639588.369|220406.070|109.576 +639583.766|220410.105|109.204 +639579.088|220414.211|109.003 +639574.485|220418.246|108.655 +639569.855|220422.306|108.177 +639565.250|220426.345|107.573 +639551.211|220438.656|106.561 +639546.614|220442.685|105.940 +639541.838|220446.876|105.842 +639537.126|220451.012|105.351 +639532.404|220455.155|105.266 +639527.604|220459.367|105.043 +639522.834|220463.555|104.970 +639518.042|220467.764|105.089 +639513.162|220472.056|105.479 +639508.279|220476.351|105.930 +639503.403|220480.636|106.360 +639498.447|220484.998|107.037 +639488.580|220493.681|108.509 +639483.627|220498.040|109.262 +639478.726|220502.350|109.679 +639473.803|220506.675|109.884 +639468.917|220510.970|110.237 +639458.954|220519.733|111.347 +639453.985|220524.107|112.054 +639449.099|220528.398|112.130 +639444.183|220532.714|112.075 +639439.282|220537.018|111.938 +639434.356|220541.346|112.401 +639429.385|220545.717|112.481 +639419.531|220554.367|112.362 +639414.575|220558.720|112.362 +639409.646|220563.045|112.161 +639404.736|220567.352|111.804 +639399.801|220571.686|111.697 +639394.863|220576.023|111.642 +639389.889|220580.385|111.456 +639384.930|220584.741|111.197 +639379.971|220589.090|110.920 +639374.993|220593.461|110.850 +639369.979|220597.862|110.667 +639364.999|220602.236|110.664 +639359.976|220606.647|110.633 +639355.038|220610.972|109.762 +639350.097|220615.297|108.439 +639325.091|220637.230|106.430 +639315.033|220646.045|105.141 +639309.888|220650.578|106.113 +639304.755|220655.089|106.415 +639294.511|220664.102|107.485 +639289.399|220668.597|108.226 +639284.227|220673.145|108.570 +639279.082|220677.674|109.244 +639273.946|220682.192|109.838 +639268.840|220686.678|110.079 +639253.448|220700.205|110.749 +639232.819|220718.350|112.676 +639227.756|220722.794|112.572 +639222.599|220727.323|112.478 +639217.457|220731.847|112.929 +639186.645|220758.907|112.432 +639181.439|220763.479|112.526 +639176.284|220768.008|112.630 +639155.592|220786.205|113.944 +639150.389|220790.777|114.200 +639140.096|220799.823|114.578 +639134.908|220804.380|114.663 +639129.772|220808.891|114.675 +639124.584|220813.451|114.843 +639119.390|220818.017|115.166 +639114.251|220822.534|115.391 +639109.067|220827.094|115.647 +639103.879|220831.654|115.958 +639098.688|220836.219|116.458 +639093.501|220840.782|116.925 +639088.368|220845.293|117.254 +639083.195|220849.841|117.397 +639077.968|220854.434|117.650 +639072.841|220858.942|117.955 +639067.623|220863.527|118.077 +639062.457|220868.068|118.147 +639057.336|220872.567|118.339 +639052.121|220877.151|118.522 +639046.906|220881.735|118.702 +639041.785|220886.234|118.964 +639036.573|220890.815|119.113 +639031.364|220895.393|119.241 +639026.249|220899.886|119.351 +639021.040|220904.464|119.442 +639015.834|220909.039|119.549 +639010.674|220913.572|119.610 +639005.468|220918.147|119.619 +639000.311|220922.676|119.656 +638995.154|220927.209|119.668 +638989.948|220931.781|119.653 +638984.790|220936.310|119.707 +638979.636|220940.839|119.777 +638974.430|220945.411|119.820 +638969.276|220949.944|119.909 +638964.073|220954.516|120.015 +638948.559|220968.143|120.027 +638943.405|220972.673|120.192 +638922.739|220990.830|120.552 +638917.585|220995.359|120.573 +638912.379|220999.931|120.500 +638907.222|221004.460|120.539 +638902.068|221008.990|120.637 +638896.871|221013.559|121.006 +638891.765|221018.045|121.137 +638886.562|221022.617|121.125 +638881.408|221027.147|121.253 +638876.297|221031.633|121.237 +638871.091|221036.208|121.268 +638865.933|221040.741|121.347 +638860.825|221045.230|121.439 +638855.619|221049.805|121.539 +638850.462|221054.341|121.646 +638845.353|221058.831|121.804 +638840.196|221063.363|121.978 +638835.033|221067.901|121.966 +638829.869|221072.437|121.972 +638824.706|221076.975|122.021 +638819.592|221081.468|122.118 +638814.434|221086.004|122.307 +638809.332|221090.493|122.624 +638804.211|221094.992|122.633 +638799.100|221099.485|122.804 +638793.933|221104.026|122.883 +638788.871|221108.477|123.094 +638783.707|221113.015|123.252 +638778.581|221117.520|123.194 +638773.466|221122.016|123.359 +638768.352|221126.515|123.569 +638763.271|221130.977|123.545 +638758.150|221135.476|123.682 +638753.017|221139.987|123.624 +638742.773|221148.985|123.121 +638737.679|221153.459|123.005 +638727.456|221162.441|123.045 +638722.369|221166.910|123.115 +638717.276|221171.384|123.075 +638712.207|221175.844|123.405 +638707.135|221180.303|123.728 +638696.964|221189.246|124.002 +638691.877|221193.717|124.148 +638686.805|221198.179|124.523 +638681.767|221202.608|124.676 +638676.661|221207.092|124.676 +638671.666|221211.490|125.395 +638666.597|221215.952|125.831 +638661.629|221220.323|126.300 +638656.563|221224.779|126.788 +638636.525|221242.403|128.068 +638631.408|221246.899|128.047 +638626.455|221251.254|128.251 +638621.371|221255.720|128.117 +638616.408|221260.087|128.751 +638611.394|221264.495|128.861 +638606.390|221268.896|129.080 +638601.382|221273.297|129.290 +638596.359|221277.711|129.382 +638591.387|221282.082|129.501 +638586.367|221286.495|129.662 +638581.396|221290.866|129.818 +638576.388|221295.271|130.113 +638571.420|221299.635|130.348 +638546.496|221321.541|130.564 +638541.482|221325.943|130.522 +638536.517|221330.307|130.467 +638526.629|221338.997|130.823 +638521.625|221343.392|130.525 +638506.638|221356.551|129.607 +638501.663|221360.915|129.293 +638496.643|221365.323|129.010 +638486.691|221374.058|128.071 +638481.680|221378.454|127.574 +638476.660|221382.861|127.023 +638471.777|221387.150|126.791 +638466.776|221391.542|126.450 +638461.756|221395.946|125.633 +638456.775|221400.317|125.151 +638451.776|221404.703|124.557 +638446.839|221409.034|124.090 +638436.878|221417.773|122.637 +638407.169|221443.846|119.515 +638402.240|221448.174|119.022 +638392.609|221456.641|119.250 +638383.111|221465.002|120.372 +638369.002|221477.432|122.524 +638359.775|221485.567|124.456 +638350.412|221493.812|125.608 +638345.703|221497.954|126.047 +638331.682|221510.289|127.175 +638327.015|221514.398|127.614 +638322.343|221518.506|127.748 +638317.661|221522.624|128.132 +638303.729|221534.880|128.870 +638299.096|221538.959|129.296 +638289.805|221547.127|129.513 +638285.029|221551.315|128.955 +638280.427|221555.366|129.053 +638261.858|221571.685|129.120 +638257.234|221575.748|128.943 +638252.565|221579.848|128.553 +638248.002|221583.859|128.736 +638243.424|221587.885|128.842 +638238.913|221591.854|129.324 +638234.408|221595.816|129.577 +638229.894|221599.785|129.799 +638225.297|221603.826|129.623 +638220.738|221607.831|129.665 +638202.599|221623.769|129.199 +638188.871|221635.818|127.931 +638184.302|221639.829|127.580 +638175.146|221647.864|126.370 +638161.527|221659.815|125.041 +638156.925|221663.851|124.188 +638152.395|221667.822|123.459 +638147.899|221671.766|123.149 +638143.449|221675.674|122.822 +638138.981|221679.597|122.429 +638134.705|221683.358|122.661 +638125.893|221691.094|122.048 +638121.504|221694.949|121.844 +638112.643|221702.722|120.911 +638090.701|221721.979|118.790 +638086.199|221725.920|117.604 +638077.500|221733.555|116.775 +638073.324|221737.225|116.775 +638060.489|221748.494|115.821 +638056.176|221752.273|115.114 +638051.982|221755.958|115.120 +638047.891|221759.555|115.340 +638043.755|221763.188|115.178 +638039.540|221766.888|114.928 +638026.598|221778.227|112.279 +638022.270|221782.019|111.243 +638018.124|221785.658|110.719 +638013.693|221789.532|109.338 +638005.362|221796.844|108.451 +638001.275|221800.429|108.024 +637992.963|221807.717|106.699 +637988.693|221811.456|105.638 +637984.670|221814.986|105.318 +637980.433|221818.699|104.419 +637976.608|221822.064|104.653 +637972.688|221825.505|104.562 +637964.516|221832.674|103.382 +637960.417|221836.261|102.480 +638123.107|221691.679|121.917 +638127.527|221687.787|122.286 +638131.974|221683.873|122.548 +638136.393|221679.981|122.728 +638140.746|221676.146|122.606 +638145.245|221672.184|122.929 +638149.753|221668.215|123.325 +638154.325|221664.198|124.011 +638158.860|221660.208|124.566 +638163.520|221656.115|125.459 +638177.200|221644.075|126.706 +638181.845|221639.994|127.385 +638186.365|221636.010|127.529 +638191.013|221631.926|128.275 +638195.604|221627.884|128.541 +638200.237|221623.809|129.022 +638223.069|221603.701|129.662 +638227.681|221599.635|129.668 +638232.207|221595.645|129.525 +638236.727|221591.662|129.357 +638241.229|221587.687|128.867 +638245.807|221583.655|128.766 +638250.434|221579.576|128.669 +638255.110|221575.462|129.110 +638264.419|221567.262|129.290 +638283.109|221550.794|129.446 +638301.860|221534.268|129.141 +638320.572|221517.763|128.053 +638325.251|221513.636|127.684 +638334.602|221505.385|126.953 +638344.093|221497.018|126.492 +638348.769|221492.888|125.886 +638395.907|221451.267|119.265 +638400.756|221446.994|119.229 +638405.697|221442.645|119.491 +638420.544|221429.578|120.927 +638430.514|221420.806|121.948 +638435.479|221416.441|122.539 +638450.530|221403.203|124.548 +638455.590|221398.756|125.224 +638460.573|221394.370|125.758 +638465.596|221389.951|126.255 +638470.589|221385.559|126.934 +638475.566|221381.176|127.141 +638480.620|221376.728|127.590 +638485.652|221372.303|128.278 +638500.700|221359.059|129.403 +638505.729|221354.630|129.821 +638515.739|221345.822|130.333 +638520.747|221341.411|130.680 +638525.767|221336.989|130.720 +638530.702|221332.636|130.516 +638535.712|221328.223|130.534 +638540.729|221323.803|130.616 +638545.792|221319.344|130.720 +638565.854|221301.662|130.522 +638570.868|221297.243|130.290 +638575.843|221292.860|130.150 +638580.896|221288.400|129.872 +638585.913|221283.978|129.726 +638596.042|221275.050|129.443 +638601.101|221270.591|129.275 +638606.164|221266.129|129.171 +638611.163|221261.721|128.928 +638616.244|221257.241|128.528 +638621.276|221252.803|128.163 +638626.406|221248.282|128.303 +638631.463|221243.826|128.211 +638636.562|221239.334|128.065 +638661.882|221217.004|126.084 +638666.999|221212.493|125.648 +638672.050|221208.034|125.032 +638677.134|221203.553|124.807 +638682.273|221199.024|124.685 +638687.339|221194.558|124.243 +638692.478|221190.029|124.142 +638702.697|221181.025|123.892 +638707.812|221176.514|123.517 +638712.933|221172.000|123.255 +638718.069|221167.474|123.197 +638723.208|221162.947|123.203 +638728.346|221158.421|123.280 +638743.855|221144.763|123.456 +638749.045|221140.191|123.658 +638754.181|221135.671|123.780 +638759.354|221131.114|123.712 +638764.514|221126.566|123.459 +638769.638|221122.049|123.487 +638774.853|221117.456|123.368 +638780.016|221112.905|123.203 +638785.122|221108.403|122.950 +638790.337|221103.810|122.877 +638795.500|221099.259|122.801 +638800.660|221094.715|122.640 +638805.824|221090.164|122.563 +638810.981|221085.620|122.432 +638816.141|221081.072|122.289 +638821.344|221076.488|122.073 +638826.507|221071.940|122.076 +638831.668|221067.392|122.057 +638836.877|221062.802|122.036 +638842.034|221058.261|121.908 +638847.188|221053.719|121.747 +638852.391|221049.132|121.673 +638857.545|221044.590|121.530 +638862.703|221040.049|121.436 +638867.906|221035.462|121.353 +638873.063|221030.920|121.314 +638878.266|221026.336|121.277 +638883.423|221021.794|121.265 +638888.626|221017.210|121.241 +638898.980|221008.084|120.969 +638904.180|221003.503|120.890 +638909.383|220998.919|120.789 +638914.589|220994.335|121.027 +638919.740|220989.796|120.863 +638924.943|220985.212|120.774 +638930.140|220980.628|120.399 +638945.892|220966.750|120.076 +638950.848|220962.383|120.024 +638961.254|220953.217|120.055 +638966.408|220948.676|119.957 +638971.611|220944.088|119.771 +638976.814|220939.504|119.744 +638981.968|220934.966|119.741 +638987.125|220930.424|119.738 +638992.328|220925.837|119.656 +638997.485|220921.295|119.668 +639002.640|220916.754|119.640 +639007.846|220912.167|119.604 +639012.954|220907.668|119.589 +639018.160|220903.084|119.595 +639023.320|220898.536|119.375 +639028.478|220893.991|119.232 +639033.641|220889.444|119.049 +639038.850|220884.853|118.951 +639043.964|220880.345|118.702 +639049.128|220875.798|118.570 +639054.294|220871.244|118.351 +639059.461|220866.690|118.147 +639064.627|220862.140|118.037 +639069.796|220857.586|117.857 +639074.969|220853.026|117.616 +639080.144|220848.466|117.324 +639085.265|220843.952|117.211 +639090.443|220839.389|116.934 +639095.628|220834.817|116.449 +639100.767|220830.285|115.980 +639105.903|220825.756|115.620 +639111.042|220821.229|115.324 +639116.181|220816.700|115.026 +639121.320|220812.168|114.745 +639126.459|220807.638|114.535 +639131.595|220803.115|114.450 +639141.821|220794.108|114.328 +639146.914|220789.622|114.187 +639167.400|220771.559|112.694 +639172.496|220767.069|112.709 +639182.643|220758.133|112.709 +639197.901|220744.694|112.697 +639207.999|220735.803|112.941 +639223.266|220722.352|112.410 +639238.418|220708.999|111.700 +639243.517|220704.500|111.277 +639273.778|220677.827|109.609 +639278.810|220673.389|109.085 +639293.962|220660.026|107.637 +639298.973|220655.604|106.942 +639314.097|220642.263|105.208 +639323.924|220633.618|106.281 +639338.655|220620.661|107.573 +639353.179|220607.906|110.493 +639358.125|220603.553|110.771 +639363.051|220599.216|110.789 +639367.934|220594.912|110.734 +639372.856|220590.578|110.838 +639382.638|220581.967|111.213 +639387.560|220577.633|111.344 +639392.449|220573.329|111.374 +639397.295|220569.065|111.776 +639402.157|220564.785|112.048 +639406.985|220560.536|112.206 +639411.904|220556.202|112.033 +639416.714|220551.972|112.407 +639421.594|220547.668|112.173 +639426.422|220543.419|112.417 +639431.281|220539.142|112.426 +639436.115|220534.881|112.255 +639440.973|220530.599|111.895 +639445.804|220526.350|112.206 +639450.572|220522.150|112.221 +639460.346|220513.527|111.261 +639465.211|220509.235|110.624 +639470.094|220504.932|110.262 +639474.882|220500.710|109.884 +639479.781|220496.391|109.457 +639489.522|220487.796|108.009 +639504.094|220474.939|106.193 +639508.919|220470.681|105.757 +639513.723|220466.448|105.495 +639518.505|220462.232|105.071 +639523.291|220458.014|104.979 +639528.003|220453.865|105.074 +639532.770|220449.671|105.181 +639537.452|220445.550|105.513 +639542.051|220441.506|106.077 +639569.959|220416.951|108.043 +639574.531|220412.931|108.552 +639579.094|220408.919|109.128 +639583.705|220404.863|109.405 +639588.314|220400.809|109.734 +639592.889|220396.782|109.960 +639602.088|220388.684|110.466 +639606.614|220384.700|110.728 +639611.162|220380.698|110.880 +639615.758|220376.653|111.072 +639620.397|220372.566|111.027 +639624.924|220368.579|111.048 +639629.526|220364.525|110.963 +639638.722|220356.421|110.606 +639647.860|220348.371|110.649 +639652.386|220344.387|110.521 +639656.967|220340.348|110.374 +639661.503|220336.353|110.231 +639666.078|220332.320|110.161 +639670.634|220328.303|109.939 +639675.124|220324.350|109.817 +639679.678|220320.338|109.664 +639684.168|220316.379|109.570 +639688.657|220312.426|109.521 +639693.190|220308.433|109.521 +639702.050|220300.630|109.564 +639706.467|220296.741|109.682 +639710.917|220292.821|109.649 +639715.337|220288.926|109.527 +639719.747|220285.045|109.731 +639724.173|220281.147|109.615 +639737.404|220269.488|109.332 +639750.547|220257.906|108.869 +639754.927|220254.044|108.841 +639759.295|220250.192|108.387 +639772.331|220238.704|107.957 +639776.531|220235.006|108.363 +639780.771|220231.273|108.588 +639785.026|220227.523|108.521 +639759.243|220248.174|108.536 +639754.881|220252.014|108.692 +639750.587|220255.791|108.786 +639746.204|220259.649|109.076 +639741.857|220263.475|109.204 +639737.514|220267.294|109.082 +639733.173|220271.110|109.219 +639728.793|220274.966|109.314 +639724.414|220278.818|109.423 +639720.043|220282.665|109.515 +639715.663|220286.518|109.402 +639711.225|220290.422|109.588 +639706.836|220294.281|109.558 +639702.468|220298.121|109.436 +639698.033|220302.023|109.402 +639693.616|220305.906|109.289 +639689.160|220309.826|109.402 +639684.680|220313.767|109.393 +639680.233|220317.677|109.497 +639675.728|220321.643|109.646 +639671.229|220325.602|109.798 +639666.684|220329.601|109.926 +639662.140|220333.600|110.082 +639657.604|220337.590|110.192 +639653.066|220341.583|110.356 +639648.536|220345.570|110.484 +639644.001|220349.560|110.667 +639639.447|220353.562|110.399 +639630.312|220361.599|110.646 +639625.664|220365.693|110.972 +639621.120|220369.689|111.024 +639616.490|220373.761|110.993 +639611.878|220377.815|110.877 +639607.321|220381.820|110.768 +639602.743|220385.840|110.484 +639598.113|220389.909|110.231 +639593.538|220393.929|109.966 +639588.905|220397.998|109.750 +639584.342|220402.007|109.445 +639579.679|220406.100|109.131 +639575.009|220410.203|108.884 +639570.465|220414.193|108.192 +639556.423|220426.528|107.479 +639551.732|220430.652|107.134 +639547.004|220434.800|106.689 +639542.368|220438.869|106.004 +639537.735|220442.932|105.299 +639532.968|220447.123|105.174 +639528.195|220451.320|105.107 +639523.394|220455.536|104.891 +639518.612|220459.742|104.931 +639513.784|220463.994|105.315 +639508.859|220468.328|105.690 +639503.979|220472.626|106.132 +639499.099|220476.920|106.583 +639494.143|220481.288|107.287 +639489.248|220485.598|107.921 +639479.305|220494.358|109.329 +639474.395|220498.680|109.811 +639469.454|220503.033|110.195 +639464.556|220507.343|110.649 +639459.533|220511.768|111.328 +639444.698|220524.826|112.151 +639439.879|220529.057|111.734 +639434.856|220533.479|112.173 +639429.924|220537.814|112.301 +639424.962|220542.178|112.304 +639420.085|220546.464|112.054 +639415.081|220550.865|112.026 +639410.115|220555.230|112.124 +639400.197|220563.950|111.868 +639395.223|220568.318|111.658 +639390.255|220572.686|111.453 +639385.326|220577.014|110.896 +639380.315|220581.421|111.097 +639375.292|220585.835|110.960 +639370.336|220590.191|110.716 +639365.258|220594.656|110.691 +639360.271|220599.042|110.768 +639355.248|220603.458|110.752 +639350.252|220607.848|110.472 +639340.423|220616.458|107.826 +639335.406|220620.863|107.296 +639330.401|220625.252|106.607 +639315.304|220638.517|105.586 +639299.991|220651.995|106.641 +639294.888|220656.485|107.201 +639289.686|220661.069|107.860 +639284.550|220665.592|108.360 +639279.414|220670.115|108.884 +639274.269|220674.648|109.600 +639269.176|220679.128|109.676 +639264.015|220683.670|110.015 +639258.913|220688.156|110.271 +639248.638|220697.191|110.551 +639222.907|220719.822|112.453 +639207.493|220733.371|112.956 +639171.569|220764.927|112.304 +639156.116|220778.524|113.739 +639140.635|220792.127|114.111 +639135.490|220796.650|114.291 +639130.302|220801.213|114.474 +639125.169|220805.718|114.443 +639120.037|220810.232|114.538 +639114.843|220814.798|114.864 +639109.704|220819.318|115.196 +639104.519|220823.878|115.492 +639099.331|220828.438|115.830 +639094.147|220833.001|116.266 +639088.959|220837.564|116.815 +639083.781|220842.117|117.117 +639078.660|220846.619|117.168 +639073.484|220851.167|117.391 +639068.312|220855.718|117.760 +639063.142|220860.259|117.885 +639057.976|220864.801|118.052 +639052.807|220869.345|118.290 +639047.640|220873.887|118.506 +639042.477|220878.428|118.714 +639037.314|220882.964|118.857 +639032.153|220887.502|118.970 +639026.993|220892.038|119.159 +639021.882|220896.530|119.329 +639016.721|220901.066|119.531 +639011.515|220905.641|119.625 +639006.407|220910.128|119.628 +639001.253|220914.657|119.579 +638996.096|220919.189|119.665 +638990.941|220923.719|119.622 +638985.787|220928.248|119.738 +638980.633|220932.777|119.753 +638975.479|220937.307|119.781 +638970.276|220941.879|119.851 +638965.170|220946.362|119.912 +638959.967|220950.934|119.963 +638954.816|220955.461|119.906 +638949.662|220959.990|119.945 +638944.511|220964.516|120.043 +638939.311|220969.088|120.186 +638929.006|220978.144|120.488 +638923.852|220982.673|120.427 +638918.752|220987.157|120.716 +638913.552|220991.726|120.954 +638903.293|221000.742|120.820 +638898.142|221005.268|120.988 +638892.945|221009.837|121.259 +638887.843|221014.321|121.338 +638882.688|221018.850|121.326 +638877.531|221023.382|121.259 +638872.426|221027.866|121.344 +638867.272|221032.395|121.414 +638862.166|221036.879|121.518 +638857.012|221041.408|121.582 +638851.858|221045.934|121.670 +638846.755|221050.418|121.887 +638841.647|221054.905|121.966 +638836.493|221059.434|122.112 +638831.384|221063.921|122.143 +638826.270|221068.410|122.079 +638821.155|221072.903|122.057 +638816.047|221077.390|122.170 +638810.896|221081.919|122.408 +638805.787|221086.406|122.576 +638800.676|221090.896|122.664 +638795.558|221095.391|122.630 +638790.447|221099.881|122.798 +638780.230|221108.858|123.213 +638775.164|221113.311|123.295 +638770.046|221117.803|123.383 +638764.947|221122.287|123.767 +638759.854|221126.755|123.463 +638754.739|221131.251|123.636 +638749.667|221135.707|123.725 +638744.586|221140.167|123.712 +638739.438|221144.684|123.426 +638729.258|221153.621|123.188 +638714.060|221166.971|123.371 +638708.973|221171.439|123.414 +638703.941|221175.862|123.527 +638698.924|221180.272|123.880 +638693.825|221184.747|123.831 +638688.802|221189.160|124.136 +638683.769|221193.586|124.316 +638678.749|221197.996|124.682 +638673.714|221202.422|124.852 +638663.671|221211.252|125.614 +638658.654|221215.663|126.066 +638633.627|221237.663|127.952 +638628.680|221242.010|128.163 +638623.623|221246.451|128.251 +638618.591|221250.870|128.089 +638608.627|221259.630|128.909 +638603.677|221263.980|129.141 +638598.666|221268.384|129.275 +638593.695|221272.749|129.363 +638583.716|221281.518|129.684 +638573.791|221290.238|130.119 +638568.826|221294.603|130.333 +638563.903|221298.928|130.503 +638544.030|221316.381|130.659 +638534.091|221325.104|130.415 +638529.141|221329.454|130.500 +638524.221|221333.773|130.446 +638519.311|221338.089|130.884 +638504.355|221351.211|129.729 +638499.435|221355.530|129.781 +638494.476|221359.885|129.540 +638489.560|221364.198|129.303 +638484.518|221368.615|128.510 +638474.566|221377.347|127.641 +638464.606|221386.083|126.840 +638459.631|221390.441|125.977 +638444.696|221403.542|124.587 +638434.671|221412.320|122.670 +638419.766|221425.390|120.924 +638390.463|221451.106|119.223 +638385.671|221455.318|119.649 +638348.330|221488.188|125.874 +638320.225|221512.901|128.281 +638301.519|221529.342|129.391 +638296.895|221533.405|129.586 +638287.635|221541.543|130.217 +638278.229|221549.800|129.860 +638264.239|221562.084|129.562 +638250.346|221574.282|129.415 +638245.652|221578.400|129.174 +638241.071|221582.420|128.998 +638236.484|221586.450|129.071 +638231.979|221590.409|129.315 +638227.446|221594.396|129.693 +638222.908|221598.383|129.802 +638200.148|221618.362|129.281 +638195.570|221622.373|128.818 +638190.910|221626.461|128.227 +638172.634|221642.484|126.355 +638168.111|221646.453|126.029 +638163.584|221650.424|125.709 +638149.923|221662.397|123.813 +638145.424|221666.341|123.222 +638140.968|221670.248|122.865 +638136.597|221674.086|122.893 +638132.220|221677.932|122.920 +638127.807|221681.809|122.801 +638119.001|221689.536|122.015 +638114.606|221693.398|121.798 +638105.700|221701.204|120.479 +638092.676|221712.634|119.400 +638088.253|221716.511|118.741 +638079.426|221724.250|117.333 +638075.208|221727.953|117.138 +638066.707|221735.418|116.745 +638062.421|221739.179|116.327 +638053.817|221746.723|115.202 +638049.671|221750.365|115.175 +638045.648|221753.901|115.455 +638041.469|221757.574|115.324 +638028.591|221768.861|113.078 +638024.352|221772.576|112.362 +638020.100|221776.301|111.624 +638015.948|221779.943|111.075 +638011.818|221783.564|110.637 +637999.123|221794.686|108.055 +637995.066|221798.246|107.753 +637986.876|221805.427|106.500 +637982.701|221809.085|105.805 +637974.532|221816.248|104.541 +637970.582|221819.713|104.126 +637966.528|221823.267|103.547 +637962.614|221826.703|103.297 +637958.588|221830.232|102.864 +637954.714|221833.634|102.578 +638127.356|221680.084|122.926 +638131.681|221676.274|122.905 +638136.134|221672.355|122.990 +638140.487|221668.523|122.877 +638144.998|221664.555|123.255 +638149.558|221660.547|123.886 +638163.237|221648.525|125.651 +638167.760|221644.545|125.953 +638172.381|221640.485|126.489 +638181.507|221632.459|127.343 +638186.228|221628.311|128.178 +638190.693|221624.376|128.086 +638195.409|221620.237|128.937 +638199.950|221616.241|129.229 +638204.653|221612.108|129.836 +638218.360|221600.041|130.083 +638222.859|221596.075|129.763 +638227.413|221592.061|129.485 +638231.939|221588.071|129.074 +638236.535|221584.023|129.043 +638241.107|221579.994|128.906 +638245.792|221575.876|129.345 +638250.504|221571.731|129.684 +638259.837|221563.516|129.976 +638264.397|221559.496|129.607 +638273.779|221551.236|129.717 +638278.586|221547.011|130.436 +638287.940|221538.773|130.269 +638292.555|221534.707|130.010 +638297.209|221530.604|129.705 +638301.903|221526.465|129.357 +638306.624|221522.310|129.449 +638320.624|221509.966|128.071 +638329.999|221501.700|127.181 +638344.237|221489.154|126.507 +638348.873|221485.061|125.672 +638362.881|221472.695|123.194 +638376.985|221460.247|120.741 +638381.697|221456.083|119.802 +638386.412|221451.923|119.201 +638396.199|221443.309|119.351 +638401.055|221439.033|119.372 +638420.790|221421.671|120.786 +638425.814|221417.261|121.725 +638430.858|221412.829|122.484 +638435.799|221408.486|122.935 +638445.882|221399.628|124.618 +638450.850|221395.257|125.020 +638455.855|221390.853|125.328 +638460.902|221386.424|126.331 +638465.919|221382.011|126.806 +638475.969|221373.174|127.958 +638480.958|221368.788|128.315 +638485.963|221364.387|128.809 +638490.962|221359.992|129.293 +638495.982|221355.575|129.607 +638500.980|221351.177|129.766 +638525.956|221329.192|130.427 +638530.912|221324.827|130.397 +638540.937|221316.000|130.519 +638565.991|221293.939|130.260 +638571.008|221289.516|130.074 +638575.983|221285.136|129.946 +638581.049|221280.674|129.775 +638586.008|221276.303|129.565 +638591.073|221271.840|129.437 +638596.087|221267.427|129.281 +638601.095|221263.013|129.098 +638606.149|221258.560|128.922 +638611.187|221254.119|128.598 +638616.195|221249.703|127.967 +638621.236|221245.268|128.196 +638626.333|221240.778|127.983 +638631.399|221236.313|128.016 +638656.612|221214.078|126.023 +638661.723|221209.570|125.514 +638671.858|221200.630|124.715 +638676.948|221196.143|124.596 +638682.026|221191.669|124.343 +638687.119|221187.179|124.304 +638697.324|221178.184|123.874 +638702.438|221173.676|123.520 +638707.526|221169.193|123.475 +638728.057|221151.106|123.316 +638733.193|221146.580|123.383 +638738.332|221142.056|123.511 +638748.600|221133.013|123.712 +638753.773|221128.456|123.679 +638758.894|221123.942|123.642 +638764.014|221119.431|123.594 +638769.181|221114.880|123.517 +638774.332|221110.339|123.185 +638779.449|221105.828|123.142 +638789.767|221096.736|122.822 +638800.093|221087.637|122.713 +638805.251|221083.093|122.615 +638810.405|221078.551|122.396 +638815.562|221074.007|122.283 +638820.716|221069.462|122.164 +638825.880|221064.914|122.198 +638831.089|221060.327|122.195 +638836.197|221055.825|122.131 +638841.403|221051.238|122.121 +638846.560|221046.696|122.112 +638851.705|221042.158|121.814 +638856.908|221037.574|121.701 +638862.059|221033.035|121.597 +638867.214|221028.494|121.521 +638872.414|221023.913|121.439 +638877.568|221019.371|121.381 +638882.722|221014.830|121.396 +638898.221|221001.171|120.963 +638908.624|220992.006|120.997 +638918.972|220982.886|120.631 +638924.172|220978.305|120.594 +638929.323|220973.767|120.445 +638934.474|220969.228|120.308 +638939.674|220964.644|120.189 +638944.822|220960.106|120.058 +638950.022|220955.525|119.927 +638955.225|220950.943|119.933 +638965.579|220941.821|119.875 +638970.730|220937.282|119.820 +638975.884|220932.741|119.817 +638981.087|220928.160|119.738 +638986.238|220923.618|119.793 +638991.392|220919.076|119.607 +638996.595|220914.492|119.573 +639001.750|220909.954|119.659 +639006.904|220905.412|119.649 +639012.110|220900.825|119.625 +639017.267|220896.277|119.396 +639022.427|220891.727|119.189 +639027.584|220887.179|119.083 +639032.745|220882.631|118.933 +639037.905|220878.078|118.756 +639043.068|220873.527|118.604 +639048.186|220869.013|118.314 +639053.352|220864.459|118.098 +639058.516|220859.902|117.967 +639063.685|220855.346|117.766 +639068.806|220850.829|117.476 +639073.981|220846.266|117.184 +639079.099|220841.752|117.138 +639084.274|220837.189|116.867 +639089.456|220832.614|116.431 +639094.592|220828.081|115.980 +639099.728|220823.552|115.605 +639104.864|220819.023|115.303 +639110.003|220814.484|114.904 +639115.145|220809.952|114.590 +639120.280|220805.422|114.422 +639125.410|220800.899|114.389 +639135.639|220791.883|114.123 +639150.977|220778.356|113.526 +639166.351|220764.792|112.526 +639181.606|220751.342|112.295 +639191.787|220742.365|111.874 +639196.822|220737.933|112.212 +639206.923|220729.033|112.426 +639227.226|220711.126|111.615 +639232.231|220706.716|111.776 +639237.336|220702.211|111.261 +639247.437|220693.298|110.533 +639257.581|220684.353|110.045 +639267.630|220675.489|109.588 +639282.815|220662.087|108.155 +639287.838|220657.655|107.811 +639292.950|220653.141|107.083 +639297.943|220648.734|106.580 +639302.972|220644.296|106.293 +639313.085|220635.371|105.220 +639322.964|220626.675|106.250 +639332.797|220618.022|107.308 +639337.661|220613.749|108.393 +639352.298|220600.874|110.643 +639362.219|220592.126|110.454 +639367.154|220587.776|110.423 +639372.091|220583.424|110.377 +639386.761|220570.503|111.203 +639391.681|220566.169|111.408 +639396.555|220561.875|111.591 +639401.422|220557.589|111.856 +639406.311|220553.279|111.950 +639416.114|220544.638|111.996 +639420.963|220540.365|112.063 +639425.870|220536.037|112.087 +639430.744|220531.739|111.996 +639435.627|220527.435|111.865 +639440.547|220523.092|111.459 +639445.366|220518.852|111.898 +639460.039|220505.901|110.807 +639464.928|220501.588|110.411 +639469.823|220497.266|109.987 +639474.733|220492.929|109.469 +639479.665|220488.570|108.466 +639484.602|220484.208|107.817 +639489.379|220479.996|107.656 +639499.212|220471.309|106.110 +639513.760|220458.474|105.123 +639518.530|220454.262|104.793 +639523.355|220450.010|104.833 +639528.076|220445.849|104.900 +639532.843|220441.643|104.678 +639546.757|220429.399|106.674 +639551.503|220425.220|106.997 +639556.139|220421.139|107.387 +639565.469|220412.915|107.820 +639574.720|220404.774|108.835 +639579.328|220400.714|109.152 +639583.995|220396.606|109.439 +639588.570|220392.576|109.682 +639593.197|220388.498|109.929 +639597.815|220384.429|110.243 +639602.408|220380.384|110.426 +639606.995|220376.342|110.658 +639611.552|220372.325|110.771 +639616.182|220368.244|110.792 +639620.809|220364.166|110.850 +639625.399|220360.118|110.844 +639639.225|220347.923|110.313 +639643.751|220343.933|110.457 +639648.332|220339.891|110.304 +639652.865|220335.895|110.161 +639657.452|220331.848|110.018 +639661.975|220327.858|109.957 +639666.575|220323.801|109.798 +639671.083|220319.826|109.594 +639675.581|220315.855|109.448 +639680.083|220311.886|109.308 +639684.591|220307.909|109.158 +639689.066|220303.964|109.207 +639693.620|220299.944|108.863 +639698.064|220296.024|108.826 +639702.453|220292.160|109.113 +639706.851|220288.282|109.341 +639711.240|220284.415|109.384 +639715.657|220280.519|109.289 +639720.052|220276.645|109.341 +639724.505|220272.716|109.113 +639728.867|220268.870|109.091 +639733.301|220264.959|108.997 +639737.654|220261.119|109.049 +639746.396|220253.410|108.786 +639750.764|220249.558|108.576 +639767.997|220234.357|108.259 +639772.188|220230.669|108.716 +639761.983|220237.295|108.088 +639757.643|220241.115|108.125 +639748.773|220248.920|108.631 +639735.609|220260.500|108.866 +639731.168|220264.407|108.981 +639726.767|220268.275|108.917 +639722.298|220272.210|109.207 +639717.830|220276.142|109.271 +639713.368|220280.065|109.295 +639708.863|220284.027|109.308 +639695.540|220295.738|108.719 +639690.983|220299.749|109.070 +639686.432|220303.754|109.143 +639681.888|220307.750|109.201 +639677.328|220311.761|109.347 +639672.829|220315.721|109.484 +639668.224|220319.771|109.637 +639663.673|220323.780|109.820 +639659.083|220327.818|109.948 +639654.492|220331.854|110.082 +639649.908|220335.889|110.222 +639645.324|220339.922|110.374 +639640.752|220343.945|110.484 +639636.131|220348.011|110.603 +639626.929|220356.107|110.670 +639622.318|220360.161|110.789 +639617.678|220364.242|110.792 +639613.042|220368.323|110.816 +639608.483|220372.328|110.691 +639603.883|220376.373|110.530 +639599.247|220380.451|110.310 +639594.608|220384.526|110.106 +639590.045|220388.537|109.786 +639585.418|220392.607|109.548 +639580.801|220396.663|109.274 +639576.128|220400.772|109.042 +639571.574|220404.768|108.396 +639562.281|220412.937|107.680 +639557.602|220417.052|107.549 +639552.969|220421.121|107.131 +639548.275|220425.245|106.805 +639529.606|220441.646|104.940 +639524.885|220445.797|104.867 +639520.130|220449.976|104.702 +639515.326|220454.207|104.906 +639510.489|220458.465|105.339 +639486.117|220479.941|107.939 +639476.358|220488.539|109.131 +639471.487|220492.831|109.701 +639466.513|220497.214|110.332 +639461.636|220501.509|110.649 +639456.768|220505.797|110.923 +639446.941|220514.454|111.883 +639442.077|220518.727|111.417 +639432.280|220527.350|111.895 +639427.404|220531.641|111.996 +639422.490|220535.966|112.023 +639417.604|220540.261|111.831 +639412.688|220544.586|111.911 +639407.744|220548.936|111.840 +639402.843|220553.246|111.853 +639397.868|220557.623|111.673 +639393.001|220561.902|111.429 +639388.033|220566.267|111.203 +639383.137|220570.570|110.795 +639373.277|220579.236|110.219 +639368.303|220583.610|110.118 +639363.316|220587.999|110.198 +639348.296|220601.218|110.621 +639333.586|220614.120|107.616 +639328.566|220618.531|107.134 +639313.631|220631.649|105.470 +639303.450|220640.614|106.196 +639298.378|220645.082|106.424 +639283.004|220658.624|107.960 +639267.609|220672.188|109.539 +639262.540|220676.647|109.375 +639257.371|220681.201|109.862 +639247.132|220690.208|110.262 +639231.676|220703.814|111.523 +639226.528|220708.346|111.932 +639221.331|220712.922|112.423 +639216.244|220717.390|112.029 +639190.555|220739.979|112.017 +639169.871|220758.172|112.657 +639164.736|220762.686|112.465 +639133.670|220790.024|114.148 +639123.295|220799.150|114.419 +639112.932|220808.266|114.602 +639107.695|220812.875|114.849 +639102.504|220817.444|115.303 +639097.317|220822.010|115.647 +639092.086|220826.612|115.937 +639086.902|220831.178|116.412 +639081.671|220835.784|116.797 +639076.493|220840.337|117.080 +639071.323|220844.885|117.190 +639066.102|220849.478|117.437 +639060.881|220854.075|117.751 +639055.715|220858.622|117.946 +639050.499|220863.210|118.129 +639045.284|220867.797|118.324 +639040.118|220872.341|118.558 +639034.906|220876.929|118.817 +639029.745|220881.467|118.915 +639024.582|220886.009|119.131 +639019.376|220890.590|119.265 +639014.167|220895.171|119.451 +639009.010|220899.709|119.601 +639003.804|220904.288|119.720 +638998.601|220908.863|119.637 +638993.447|220913.395|119.625 +638988.244|220917.970|119.741 +638983.041|220922.548|119.805 +638977.887|220927.081|119.838 +638972.684|220931.656|119.899 +638967.481|220936.228|119.890 +638962.330|220940.760|119.909 +638957.127|220945.335|119.912 +638951.927|220949.910|120.034 +638946.773|220954.439|119.893 +638941.573|220959.011|119.951 +638936.373|220963.586|120.219 +638931.222|220968.119|120.378 +638926.025|220972.694|120.677 +638920.871|220977.223|120.719 +638915.665|220981.798|120.472 +638910.517|220986.331|120.765 +638905.320|220990.903|121.003 +638884.715|221009.026|121.387 +638879.512|221013.601|121.445 +638874.361|221018.131|121.539 +638869.259|221022.620|121.618 +638864.105|221027.153|121.679 +638858.950|221031.682|121.820 +638853.799|221036.211|121.951 +638848.642|221040.744|122.033 +638843.540|221045.230|122.176 +638838.383|221049.763|122.246 +638833.265|221054.259|122.100 +638828.156|221058.751|122.161 +638822.999|221063.284|122.237 +638817.888|221067.776|122.313 +638812.773|221072.269|122.316 +638807.665|221076.762|122.441 +638802.556|221081.255|122.615 +638797.445|221085.748|122.694 +638792.281|221090.286|122.786 +638787.228|221094.730|123.094 +638782.104|221099.232|123.030 +638776.993|221103.728|123.197 +638771.927|221108.181|123.322 +638766.812|221112.677|123.447 +638761.698|221117.176|123.584 +638756.574|221121.674|123.633 +638751.493|221126.140|123.554 +638741.346|221135.061|123.697 +638736.256|221139.533|123.569 +638731.172|221144.001|123.545 +638726.027|221148.521|123.344 +638720.995|221152.944|123.426 +638700.701|221170.781|123.639 +638695.708|221175.167|123.676 +638690.640|221179.626|124.023 +638685.607|221184.052|124.206 +638680.578|221188.474|124.441 +638675.540|221192.903|124.587 +638670.492|221197.338|124.642 +638660.541|221206.095|125.328 +638655.466|221210.557|125.681 +638650.506|221214.925|126.239 +638640.506|221223.722|127.007 +638635.516|221228.111|127.276 +638630.530|221232.497|127.562 +638625.565|221236.865|128.123 +638620.557|221241.269|128.202 +638615.567|221245.649|128.016 +638610.541|221250.072|128.458 +638605.649|221254.375|128.775 +638600.644|221258.777|128.998 +638595.688|221263.135|129.187 +638590.671|221267.546|129.309 +638580.735|221276.281|129.583 +638575.775|221280.640|129.842 +638565.897|221289.327|130.296 +638560.923|221293.701|130.446 +638536.179|221315.448|130.488 +638531.217|221319.807|130.442 +638526.248|221324.172|130.385 +638521.329|221328.494|130.336 +638516.464|221332.776|130.741 +638506.540|221341.494|130.455 +638501.566|221345.858|130.065 +638496.671|221350.159|129.933 +638486.734|221358.885|129.354 +638481.781|221363.232|128.851 +638476.831|221367.575|128.400 +638466.834|221376.344|127.242 +638461.914|221380.663|127.105 +638456.909|221385.050|126.020 +638446.991|221393.749|124.968 +638442.047|221398.089|124.414 +638437.021|221402.493|123.682 +638432.120|221406.794|123.142 +638407.462|221428.429|120.539 +638402.460|221432.815|119.854 +638397.601|221437.079|119.470 +638392.761|221441.331|119.561 +638383.166|221449.762|119.674 +638359.736|221470.394|123.374 +638336.513|221490.843|126.995 +638331.798|221494.985|127.111 +638327.055|221499.158|127.364 +638322.416|221503.239|127.946 +638317.838|221507.268|128.592 +638303.842|221519.579|129.696 +638289.918|221531.823|130.510 +638285.322|221535.865|130.857 +638266.549|221552.348|130.125 +638261.877|221556.451|129.900 +638243.403|221572.685|130.046 +638238.696|221576.812|129.495 +638234.039|221580.899|129.205 +638229.467|221584.916|129.376 +638224.904|221588.925|129.342 +638220.427|221592.866|129.744 +638215.940|221596.810|130.116 +638197.615|221612.900|129.443 +638183.848|221624.979|128.172 +638179.245|221629.018|127.647 +638165.483|221641.091|126.184 +638160.945|221645.072|125.813 +638142.794|221660.995|123.810 +638138.414|221664.841|123.776 +638134.010|221668.709|123.636 +638129.563|221672.614|123.331 +638116.295|221684.260|122.606 +638098.543|221699.826|120.378 +638094.084|221703.737|119.726 +638085.357|221711.393|118.833 +638076.558|221719.108|117.507 +638059.532|221734.058|116.772 +638050.897|221741.627|115.477 +638046.760|221745.263|115.477 +638038.510|221752.511|115.391 +638025.659|221763.770|113.203 +638008.910|221778.456|110.996 +638004.637|221782.199|109.993 +638000.516|221785.814|109.609 +637992.274|221793.040|108.469 +637984.218|221800.106|107.686 +637971.883|221810.914|105.290 +637967.869|221814.431|104.824 +637959.914|221821.408|103.797 +637955.863|221824.959|103.035 +638132.300|221667.810|123.682 +638141.011|221660.138|123.743 +638163.581|221640.277|126.032 +638172.719|221632.240|127.126 +638191.053|221616.107|128.888 +638195.689|221612.031|129.379 +638209.497|221599.876|130.287 +638214.014|221595.892|130.040 +638218.452|221591.976|129.693 +638222.993|221587.971|129.333 +638227.605|221583.908|129.357 +638232.155|221579.896|129.351 +638236.825|221575.788|129.687 +638246.131|221567.592|130.016 +638260.048|221555.329|130.040 +638264.745|221551.193|130.119 +638269.618|221546.914|131.140 +638283.633|221534.563|130.900 +638288.245|221530.494|130.625 +638306.935|221514.017|129.610 +638320.880|221501.709|127.654 +638325.674|221497.478|127.379 +638330.417|221493.303|127.410 +638335.145|221489.133|127.081 +638349.272|221476.663|125.230 +638353.999|221472.488|124.343 +638358.605|221468.419|123.328 +638372.693|221455.971|120.454 +638387.140|221443.227|119.262 +638392.039|221438.914|119.528 +638401.884|221430.248|120.131 +638411.784|221421.531|120.530 +638421.760|221412.759|121.893 +638431.791|221403.938|123.066 +638441.840|221395.102|124.505 +638461.926|221377.439|126.998 +638466.959|221373.010|127.227 +638477.078|221364.113|128.559 +638482.092|221359.702|129.132 +638487.109|221355.283|129.388 +638492.123|221350.869|129.632 +638497.137|221346.459|129.903 +638502.130|221342.060|130.046 +638512.209|221333.188|130.753 +638517.162|221328.820|130.232 +638522.140|221324.437|130.351 +638527.148|221320.023|130.318 +638532.122|221315.643|130.455 +638537.188|221311.181|130.546 +638557.231|221293.524|130.552 +638562.242|221289.104|130.272 +638567.220|221284.718|130.156 +638572.240|221280.296|129.976 +638577.251|221275.879|129.763 +638587.294|221267.028|129.571 +638592.335|221262.584|129.199 +638597.349|221258.164|129.074 +638602.397|221253.714|128.800 +638607.399|221249.304|128.605 +638612.406|221244.884|127.952 +638617.490|221240.406|128.132 +638622.553|221235.947|128.077 +638627.634|221231.467|127.730 +638632.654|221227.038|127.263 +638637.693|221222.597|127.007 +638647.843|221213.645|126.273 +638652.890|221209.189|125.605 +638657.922|221204.754|125.337 +638662.988|221200.285|124.889 +638668.072|221195.802|124.682 +638673.168|221191.312|124.642 +638683.343|221182.345|124.389 +638688.451|221177.840|123.911 +638693.544|221173.353|123.895 +638698.677|221168.827|123.801 +638708.842|221159.872|123.588 +638713.972|221155.349|123.493 +638719.108|221150.826|123.502 +638724.238|221146.305|123.459 +638734.464|221137.298|123.664 +638739.600|221132.775|123.767 +638744.772|221128.218|123.716 +638749.853|221123.744|123.737 +638755.020|221119.187|123.664 +638760.143|221114.676|123.633 +638765.258|221110.168|123.517 +638770.421|221105.617|123.380 +638775.575|221101.073|123.115 +638780.699|221096.559|123.216 +638785.859|221092.014|123.051 +638791.010|221087.470|122.807 +638796.174|221082.922|122.761 +638801.334|221078.374|122.633 +638806.446|221073.872|122.585 +638811.652|221069.282|122.505 +638816.812|221064.738|122.423 +638821.920|221060.236|122.332 +638827.123|221055.652|122.198 +638832.287|221051.104|122.310 +638837.444|221046.559|122.292 +638842.598|221042.018|122.210 +638847.755|221037.473|122.192 +638852.909|221032.932|122.155 +638858.106|221028.351|121.960 +638863.260|221023.809|121.856 +638868.415|221019.267|121.838 +638873.566|221014.729|121.722 +638878.714|221010.191|121.548 +638883.868|221005.649|121.481 +638889.068|221001.068|121.420 +638894.219|220996.529|121.305 +638899.367|220991.991|121.088 +638904.567|220987.407|121.103 +638909.715|220982.868|120.881 +638914.866|220978.330|120.722 +638920.069|220973.749|120.850 +638925.217|220969.207|120.536 +638930.417|220964.626|120.216 +638935.568|220960.084|120.110 +638940.768|220955.500|119.970 +638945.919|220950.962|119.906 +638951.119|220946.380|119.912 +638956.273|220941.842|119.899 +638961.473|220937.258|119.973 +638966.676|220932.677|119.963 +638971.830|220928.135|119.906 +638976.981|220923.597|119.851 +638982.184|220919.012|119.790 +638987.290|220914.514|119.735 +638992.493|220909.929|119.710 +638997.647|220905.388|119.677 +639002.801|220900.846|119.695 +639007.958|220896.302|119.555 +639013.116|220891.754|119.357 +639018.273|220887.210|119.235 +639023.433|220882.662|119.076 +639028.593|220878.111|118.860 +639033.705|220873.606|118.699 +639038.868|220869.053|118.458 +639044.035|220864.502|118.263 +639049.152|220859.988|117.994 +639054.315|220855.434|117.812 +639059.436|220850.923|117.607 +639064.606|220846.363|117.324 +639069.775|220841.806|117.187 +639074.850|220837.332|116.931 +639080.028|220832.766|116.605 +639085.161|220828.237|116.132 +639090.294|220823.710|115.779 +639095.473|220819.145|115.586 +639105.751|220810.080|114.785 +639110.893|220805.544|114.428 +639136.481|220782.992|113.767 +639141.574|220778.502|113.624 +639146.664|220774.016|113.566 +639151.775|220769.511|113.160 +639161.983|220760.510|112.709 +639172.167|220751.528|111.923 +639177.284|220747.013|111.566 +639182.341|220742.557|111.517 +639187.394|220738.107|111.527 +639192.393|220733.712|112.441 +639207.584|220720.322|112.139 +639212.608|220715.893|111.950 +639293.361|220644.677|106.613 +639298.385|220640.248|106.394 +639303.411|220635.816|106.156 +639308.452|220631.369|105.793 +639313.430|220626.983|105.613 +639318.334|220622.670|106.244 +639323.265|220618.330|106.607 +639328.212|220613.977|107.308 +639333.062|220609.713|108.015 +639337.917|220605.449|109.173 +639357.674|220588.048|109.573 +639362.560|220583.747|109.993 +639367.468|220579.425|110.225 +639382.150|220566.498|110.935 +639387.069|220562.164|111.112 +639391.931|220557.882|111.389 +639396.850|220553.550|111.624 +639401.733|220549.250|111.752 +639406.638|220544.928|111.716 +639411.530|220540.615|111.804 +639421.314|220531.992|111.652 +639426.145|220527.737|111.898 +639431.064|220523.400|111.847 +639435.947|220519.093|111.703 +639440.824|220514.795|111.670 +639445.737|220510.458|111.335 +639450.614|220506.160|111.328 +639455.531|220501.826|111.054 +639460.392|220497.537|110.819 +639465.293|220493.212|110.341 +639470.201|220488.878|109.823 +639480.043|220480.191|108.698 +639484.938|220475.869|108.012 +639489.821|220471.559|107.448 +639494.752|220467.203|106.918 +639504.585|220458.520|105.467 +639509.374|220454.298|105.339 +639514.223|220450.016|104.797 +639519.075|220445.736|104.623 +639523.824|220441.554|104.842 +639528.597|220437.345|104.888 +639533.386|220433.121|104.537 +639542.740|220424.891|105.696 +639547.358|220420.831|106.510 +639552.003|220416.744|107.137 +639556.679|220412.629|107.613 +639561.376|220408.493|107.945 +639566.057|220404.369|108.082 +639575.314|220396.221|109.049 +639579.932|220392.152|109.308 +639584.562|220388.077|109.527 +639589.237|220383.959|109.774 +639593.843|220379.902|110.149 +639598.485|220375.812|110.332 +639603.075|220371.770|110.530 +639607.724|220367.674|110.710 +639612.341|220363.605|110.780 +639616.968|220359.530|110.832 +639621.559|220355.482|110.804 +639626.149|220351.434|110.792 +639635.427|220343.250|110.304 +639639.990|220339.227|110.222 +639644.559|220335.203|110.408 +639649.146|220331.156|110.237 +639653.739|220327.105|110.045 +639658.266|220323.115|109.975 +639662.810|220319.110|109.817 +639667.361|220315.093|109.634 +639671.924|220311.069|109.423 +639676.471|220307.058|109.301 +639680.976|220303.087|109.164 +639685.417|220299.170|109.094 +639703.260|220283.439|108.908 +639712.057|220275.688|109.149 +639725.258|220264.051|108.963 +639729.653|220260.174|108.789 +639733.993|220256.345|108.652 +639742.680|220248.686|108.634 +639747.011|220244.864|108.344 +639753.306|220236.872|108.226 +639748.877|220240.767|108.442 +639744.494|220244.620|108.460 +639740.117|220248.466|108.472 +639735.734|220252.319|108.530 +639731.287|220256.230|108.661 +639726.858|220260.125|108.728 +639722.374|220264.066|108.820 +639713.432|220271.927|108.939 +639708.924|220275.886|108.936 +639699.987|220283.741|108.610 +639690.974|220291.660|108.728 +639686.344|220295.732|108.917 +639681.805|220299.725|108.936 +639677.191|220303.779|109.082 +639672.628|220307.793|109.262 +639668.019|220311.847|109.436 +639663.356|220315.946|109.634 +639658.705|220320.037|109.786 +639654.117|220324.072|109.908 +639649.478|220328.150|110.039 +639644.827|220332.241|110.259 +639640.182|220336.322|110.188 +639626.164|220348.648|110.557 +639621.501|220352.748|110.667 +639616.801|220356.881|110.722 +639612.162|220360.953|110.725 +639607.492|220365.053|110.630 +639602.789|220369.183|110.457 +639598.138|220373.267|110.307 +639593.493|220377.345|110.115 +639588.792|220381.466|109.667 +639584.114|220385.575|109.414 +639579.429|220389.687|109.222 +639574.753|220393.789|108.978 +639560.717|220406.106|107.802 +639551.284|220414.385|107.031 +639546.596|220418.490|106.296 +639532.462|220430.886|104.678 +639527.662|220435.102|104.431 +639522.873|220439.308|104.446 +639518.027|220443.563|104.534 +639513.193|220447.815|104.909 +639508.307|220452.113|105.330 +639503.396|220456.432|105.604 +639493.615|220465.036|106.653 +639488.644|220469.416|107.445 +639483.761|220473.711|107.997 +639478.766|220478.106|108.646 +639473.846|220482.437|109.186 +639468.927|220486.763|109.716 +639464.007|220491.094|110.316 +639459.121|220495.391|110.667 +639454.196|220499.723|110.990 +639449.310|220504.014|111.021 +639444.430|220508.306|111.423 +639439.541|220512.604|111.520 +639434.661|220516.892|111.594 +639429.723|220521.232|111.743 +639424.855|220525.506|111.752 +639419.939|220529.828|111.776 +639410.131|220538.441|111.694 +639405.235|220542.742|111.618 +639400.340|220547.040|111.530 +639395.461|220551.325|111.368 +639390.523|220555.663|111.280 +639385.618|220559.966|110.932 +639380.745|220564.246|110.758 +639375.798|220568.586|110.350 +639370.884|220572.899|110.131 +639365.910|220577.270|110.027 +639361.049|220581.534|109.804 +639356.035|220585.939|109.655 +639351.142|220590.233|109.298 +639346.083|220594.683|109.637 +639336.216|220603.340|108.832 +639331.346|220607.607|107.817 +639326.405|220611.938|107.012 +639321.473|220616.263|106.619 +639316.505|220620.622|106.119 +639311.525|220624.993|105.760 +639306.504|220629.403|105.839 +639301.481|220633.820|106.007 +639296.406|220638.282|106.220 +639291.380|220642.702|106.485 +639286.324|220647.142|106.543 +639260.876|220669.530|108.780 +639250.720|220678.458|109.271 +639204.750|220718.890|111.908 +639179.192|220741.344|111.523 +639163.693|220754.975|112.523 +639158.548|220759.498|112.548 +639148.221|220768.581|113.361 +639127.602|220786.708|113.837 +639122.466|220791.225|113.931 +639117.272|220795.791|114.200 +639106.955|220804.862|114.462 +639101.715|220809.470|114.824 +639091.388|220818.556|115.590 +639081.028|220827.667|116.083 +639075.798|220832.269|116.537 +639070.619|220836.826|116.931 +639065.447|220841.374|117.126 +639060.226|220845.964|117.342 +639055.056|220850.509|117.540 +639049.890|220855.053|117.748 +639044.672|220859.640|117.955 +639039.456|220864.225|118.205 +639034.293|220868.769|118.464 +639029.081|220873.350|118.641 +639023.869|220877.931|118.854 +639018.709|220882.470|119.052 +639013.500|220887.051|119.238 +639008.294|220891.629|119.415 +639003.136|220896.162|119.558 +638997.930|220900.737|119.662 +638992.727|220905.312|119.729 +638987.525|220909.884|119.677 +638982.322|220914.456|119.689 +638977.119|220919.031|119.726 +638971.964|220923.560|119.808 +638966.761|220928.132|119.890 +638961.559|220932.704|119.930 +638956.407|220937.233|119.954 +638951.156|220941.845|119.851 +638945.953|220946.417|119.790 +638940.802|220950.943|119.835 +638935.602|220955.518|120.070 +638925.202|220964.662|120.402 +638920.005|220969.234|120.683 +638914.805|220973.803|120.774 +638909.654|220978.333|120.841 +638904.405|220982.947|120.902 +638899.205|220987.516|120.991 +638894.054|220992.046|121.177 +638883.661|221001.187|121.558 +638878.506|221005.713|121.594 +638873.310|221010.285|121.859 +638868.113|221014.854|122.006 +638862.962|221019.383|122.131 +638857.807|221023.919|122.155 +638852.605|221028.494|122.210 +638847.453|221033.026|122.298 +638842.299|221037.559|122.316 +638837.139|221042.094|122.283 +638831.985|221046.629|122.323 +638826.824|221051.165|122.286 +638821.667|221055.700|122.362 +638816.510|221060.239|122.429 +638811.356|221064.771|122.594 +638806.247|221069.267|122.661 +638801.087|221073.805|122.710 +638795.927|221078.344|122.789 +638790.815|221082.840|122.856 +638785.655|221087.378|122.947 +638780.544|221091.877|123.054 +638775.441|221096.367|123.374 +638770.314|221100.872|123.231 +638765.203|221105.371|123.405 +638760.088|221109.869|123.481 +638754.919|221114.414|123.554 +638749.859|221118.867|123.807 +638744.739|221123.372|123.850 +638739.606|221127.883|123.770 +638734.540|221132.342|123.947 +638724.317|221141.331|123.758 +638719.230|221145.802|123.703 +638714.137|221150.280|123.569 +638693.870|221168.111|124.087 +638688.826|221172.546|124.075 +638683.788|221176.977|124.145 +638678.716|221181.440|124.459 +638673.671|221185.868|123.898 +638663.653|221194.692|124.901 +638658.608|221199.130|124.996 +638653.597|221203.544|125.493 +638648.611|221207.933|125.727 +638643.618|221212.331|126.453 +638633.648|221221.106|126.995 +638628.610|221225.541|127.248 +638618.646|221234.310|127.943 +638613.690|221238.672|128.074 +638608.612|221243.134|127.977 +638603.698|221247.466|128.562 +638598.700|221251.861|128.827 +638593.743|221256.223|128.995 +638588.739|221260.627|129.205 +638583.834|221264.943|129.473 +638578.814|221269.356|129.577 +638573.855|221273.721|129.790 +638563.971|221282.417|130.162 +638559.008|221286.788|130.394 +638554.101|221291.104|130.723 +638534.277|221308.535|130.442 +638529.321|221312.894|130.449 +638524.398|221317.222|130.314 +638519.482|221321.544|130.284 +638514.520|221325.909|130.278 +638509.664|221330.182|130.766 +638499.764|221338.884|130.287 +638489.901|221347.550|129.818 +638484.991|221351.866|129.586 +638475.136|221360.531|128.922 +638465.203|221369.258|127.797 +638450.316|221382.331|125.742 +638445.351|221386.695|125.331 +638440.404|221391.039|124.743 +638430.486|221399.750|123.466 +638420.647|221408.397|122.512 +638410.738|221417.096|120.872 +638405.877|221421.373|120.719 +638401.045|221425.618|120.457 +638391.197|221434.269|119.137 +638381.715|221442.620|119.939 +638376.939|221446.820|119.820 +638367.645|221455.023|121.548 +638362.973|221459.137|122.121 +638353.722|221467.303|123.837 +638349.150|221471.336|124.727 +638344.529|221475.414|125.633 +638330.646|221487.652|127.385 +638316.622|221499.999|127.855 +638312.089|221503.995|128.757 +638289.095|221524.255|130.695 +638284.432|221528.361|130.948 +638279.896|221532.357|131.348 +638270.752|221540.406|131.805 +638261.273|221548.731|130.567 +638256.607|221552.836|130.363 +638233.737|221572.956|130.183 +638229.031|221577.089|129.653 +638224.429|221581.137|129.397 +638219.936|221585.090|129.452 +638215.373|221589.104|129.434 +638210.923|221593.024|129.720 +638206.488|221596.932|130.101 +638201.953|221600.922|130.016 +638188.221|221612.989|128.772 +638183.695|221616.963|128.318 +638179.096|221621.008|127.775 +638174.530|221625.019|127.428 +638169.973|221629.021|126.895 +638160.841|221637.043|125.813 +638142.910|221652.805|124.459 +638138.478|221656.703|124.407 +638134.144|221660.519|124.560 +638129.749|221664.384|124.459 +638125.155|221668.414|123.514 +638107.425|221683.992|121.820 +638103.014|221687.866|121.311 +638098.598|221691.746|120.796 +638094.172|221695.632|120.268 +638089.777|221699.491|119.671 +638085.327|221703.399|119.086 +638076.573|221711.086|117.909 +638072.245|221714.886|117.455 +638067.962|221718.651|117.196 +638050.802|221733.732|115.782 +638046.611|221737.414|115.556 +638042.451|221741.075|115.449 +638038.388|221744.650|115.769 +638034.105|221748.411|115.218 +638025.510|221755.955|113.630 +638021.304|221759.653|113.221 +638017.128|221763.319|112.959 +638008.746|221770.683|111.929 +638004.594|221774.329|111.395 +637992.046|221785.344|109.308 +637987.888|221788.990|108.619 +637983.783|221792.595|108.131 +637971.213|221803.620|105.226 +637967.275|221807.080|105.031 +637963.355|221810.530|104.912 +637959.368|221814.029|104.364 +637955.296|221817.601|103.727 +638126.237|221665.244|123.703 +638135.110|221657.432|124.468 +638139.420|221653.631|124.444 +638143.839|221649.735|124.685 +638161.704|221634.005|126.209 +638170.702|221626.083|127.169 +638175.176|221622.139|127.321 +638179.751|221618.115|127.952 +638184.293|221614.119|128.458 +638198.045|221602.010|130.004 +638202.523|221598.066|130.037 +638206.997|221594.115|129.836 +638211.432|221590.202|129.452 +638215.949|221586.221|129.473 +638220.454|221582.246|129.476 +638225.066|221578.186|129.751 +638229.644|221574.151|129.894 +638243.488|221561.953|130.446 +638257.274|221549.794|130.372 +638266.851|221541.373|132.067 +638271.423|221537.337|131.820 +638276.053|221533.253|131.619 +638285.230|221525.154|131.089 +638289.879|221521.052|130.750 +638317.554|221496.610|127.873 +638322.364|221492.370|127.986 +638327.019|221488.264|127.809 +638369.057|221451.109|121.030 +638373.705|221446.994|119.680 +638393.160|221429.843|119.857 +638407.955|221416.810|120.920 +638422.964|221403.603|122.978 +638447.970|221381.593|125.864 +638458.037|221372.729|127.010 +638463.075|221368.298|127.654 +638473.143|221359.437|129.001 +638478.105|221355.060|128.806 +638498.185|221337.376|130.442 +638508.253|221328.506|130.653 +638513.157|221324.172|130.165 +638518.183|221319.743|130.287 +638523.194|221315.326|130.275 +638528.220|221310.895|130.430 +638553.382|221288.711|130.589 +638558.347|221284.331|130.348 +638568.436|221275.431|130.022 +638573.444|221271.014|129.760 +638583.511|221262.133|129.357 +638588.568|221257.670|129.147 +638593.628|221253.208|128.998 +638598.681|221248.752|128.793 +638603.656|221244.360|128.318 +638608.740|221239.873|127.949 +638613.824|221235.392|128.111 +638618.926|221230.891|127.989 +638623.937|221226.468|127.425 +638628.969|221222.027|127.087 +638634.117|221217.485|126.992 +638644.188|221208.594|125.895 +638649.321|221204.065|125.660 +638654.350|221199.627|125.337 +638659.465|221195.113|124.910 +638669.584|221186.179|123.892 +638679.856|221177.127|124.261 +638684.995|221172.597|124.191 +638695.230|221163.575|124.212 +638700.363|221159.049|124.124 +638726.006|221136.439|123.716 +638731.154|221131.903|124.008 +638736.268|221127.389|123.816 +638741.404|221122.866|123.965 +638746.531|221118.346|124.002 +638751.691|221113.792|123.786 +638756.848|221109.245|123.551 +638761.914|221104.776|123.389 +638767.065|221100.232|123.042 +638772.250|221095.666|123.368 +638777.358|221091.158|123.197 +638782.567|221086.564|123.051 +638787.679|221082.056|122.966 +638792.842|221077.506|122.908 +638798.054|221072.909|122.923 +638803.166|221068.404|122.856 +638808.317|221063.860|122.649 +638813.523|221059.269|122.576 +638818.680|221054.722|122.518 +638823.834|221050.177|122.399 +638828.995|221045.627|122.405 +638834.152|221041.082|122.387 +638839.309|221036.534|122.374 +638844.515|221031.947|122.423 +638849.666|221027.403|122.332 +638854.820|221022.858|122.313 +638860.023|221018.271|122.320 +638865.174|221013.729|122.240 +638870.326|221009.188|122.082 +638875.519|221004.607|121.826 +638880.668|221000.065|121.673 +638885.864|220995.481|121.436 +638891.061|220990.897|121.231 +638896.164|220986.398|121.073 +638901.360|220981.814|120.866 +638906.560|220977.229|120.817 +638911.708|220972.688|120.722 +638916.911|220968.101|120.683 +638922.108|220963.516|120.488 +638927.208|220959.018|120.192 +638932.407|220954.430|120.049 +638937.607|220949.843|119.872 +638942.761|220945.301|119.805 +638947.958|220940.717|119.747 +638953.161|220936.133|119.854 +638958.312|220931.592|119.906 +638963.467|220927.050|119.857 +638968.666|220922.463|119.784 +638973.821|220917.918|119.717 +638979.024|220913.334|119.732 +638984.175|220908.789|119.683 +638989.329|220904.245|119.704 +638994.532|220899.658|119.637 +638999.686|220895.113|119.592 +639004.843|220890.565|119.439 +639010.049|220885.972|119.250 +639015.210|220881.424|119.046 +639020.370|220876.874|118.851 +639025.582|220872.283|118.708 +639030.693|220867.772|118.510 +639035.860|220863.219|118.189 +639041.078|220858.619|117.903 +639046.196|220854.105|117.714 +639051.362|220849.551|117.525 +639056.534|220844.992|117.275 +639061.655|220840.478|117.095 +639066.828|220835.918|116.909 +639072.006|220831.346|116.416 +639077.145|220826.813|115.858 +639082.330|220822.241|115.434 +639118.278|220790.545|113.861 +639123.423|220786.010|113.605 +639154.107|220758.962|112.590 +639159.213|220754.460|112.380 +639169.417|220745.453|111.267 +639174.523|220740.954|111.219 +639194.740|220723.151|112.130 +639199.824|220718.667|111.737 +639204.866|220714.226|112.011 +639225.174|220696.316|110.618 +639230.176|220691.902|110.207 +639235.282|220687.401|109.765 +639240.299|220682.972|109.234 +639250.382|220674.084|108.917 +639260.455|220665.196|108.235 +639265.487|220660.764|108.326 +639285.626|220642.994|106.427 +639295.617|220634.188|106.046 +639300.637|220629.763|105.909 +639305.614|220625.377|105.726 +639310.616|220620.969|105.824 +639315.499|220616.669|106.156 +639320.455|220612.310|106.796 +639325.335|220608.015|107.189 +639330.288|220603.663|107.896 +639335.140|220599.392|108.585 +639340.063|220595.061|109.073 +639345.004|220590.706|108.911 +639349.914|220586.384|109.103 +639354.779|220582.101|109.707 +639359.704|220577.764|109.777 +639364.572|220573.475|109.926 +639369.476|220569.159|110.216 +639374.329|220564.886|110.548 +639379.227|220560.570|110.475 +639384.149|220556.236|110.661 +639388.947|220552.011|111.082 +639398.749|220543.379|111.042 +639403.596|220539.115|111.508 +639418.144|220526.307|111.728 +639423.005|220522.025|111.728 +639427.870|220517.739|111.728 +639432.753|220513.439|111.633 +639437.636|220509.135|111.520 +639447.310|220500.613|111.350 +639452.202|220496.300|110.883 +639457.042|220492.036|110.835 +639461.913|220487.744|110.582 +639466.842|220483.394|109.914 +639471.706|220479.103|109.384 +639476.617|220474.775|108.933 +639481.539|220470.425|108.037 +639486.398|220466.143|107.659 +639491.275|220461.842|107.183 +639496.109|220457.578|106.662 +639501.004|220453.259|106.113 +639505.844|220448.989|105.616 +639510.700|220444.709|105.065 +639515.582|220440.402|104.681 +639520.319|220436.230|104.632 +639525.095|220432.023|104.690 +639529.920|220427.768|104.428 +639534.605|220423.650|104.800 +639548.522|220411.419|106.860 +639553.149|220407.350|107.308 +639557.834|220403.226|107.732 +639571.836|220390.909|108.796 +639581.118|220382.743|109.393 +639585.754|220378.662|109.579 +639590.420|220374.556|109.908 +639595.026|220370.505|110.316 +639599.631|220366.449|110.429 +639604.334|220362.309|110.594 +639608.943|220358.252|110.737 +639618.212|220350.090|110.771 +639622.869|220345.987|110.691 +639627.557|220341.854|110.451 +639636.829|220333.682|110.036 +639641.428|220329.638|110.368 +639646.074|220325.541|110.158 +639650.658|220321.503|110.039 +639655.251|220317.455|109.884 +639659.848|220313.407|109.731 +639664.459|220309.344|109.530 +639669.065|220305.281|109.359 +639673.628|220301.264|109.186 +639678.187|220297.244|109.024 +639682.714|220293.257|108.811 +639687.255|220289.255|108.789 +639691.839|220285.213|108.317 +639696.314|220281.272|108.415 +639709.689|220269.498|108.814 +639714.133|220265.581|108.619 +639718.555|220261.689|108.808 +639723.054|220257.723|108.631 +639727.535|220253.776|108.567 +639731.954|220249.884|108.564 +639736.395|220245.970|108.475 +639740.751|220242.136|108.555 +639745.207|220238.207|108.183 +639749.529|220234.406|108.475 +639762.803|220222.702|107.470 +639767.015|220218.998|107.842 +639766.717|220216.993|107.845 +639762.556|220220.635|106.994 +639758.109|220224.552|107.744 +639745.052|220236.030|108.052 +639740.595|220239.950|108.421 +639736.228|220243.791|108.405 +639731.848|220247.637|108.451 +639727.440|220251.511|108.402 +639723.024|220255.391|108.408 +639718.622|220259.256|108.354 +639714.215|220263.130|108.354 +639709.753|220267.053|108.643 +639700.901|220274.829|108.387 +639687.377|220286.716|108.604 +639682.881|220290.666|108.640 +639678.358|220294.644|108.847 +639673.777|220298.673|109.116 +639669.223|220302.675|109.253 +639664.612|220306.729|109.433 +639660.000|220310.786|109.655 +639655.462|220314.773|109.768 +639650.868|220318.814|109.935 +639646.220|220322.902|110.128 +639641.584|220326.977|110.268 +639627.737|220339.148|110.515 +639623.015|220343.296|110.640 +639618.355|220347.395|110.731 +639613.713|220351.474|110.740 +639609.086|220355.540|110.682 +639604.420|220359.642|110.576 +639599.720|220363.772|110.390 +639595.062|220367.863|110.256 +639590.448|220371.914|109.893 +639585.781|220376.010|109.558 +639581.090|220380.131|109.378 +639576.424|220384.231|109.073 +639571.742|220388.339|108.567 +639562.403|220396.535|107.735 +639557.657|220400.708|107.671 +639552.917|220404.869|107.262 +639548.245|220408.968|106.766 +639534.184|220421.300|104.629 +639529.378|220425.522|104.382 +639524.562|220429.759|104.565 +639519.731|220434.005|104.534 +639514.842|220438.302|104.571 +639509.941|220442.615|105.062 +639505.036|220446.934|105.613 +639500.086|220451.293|106.168 +639495.142|220455.645|106.692 +639490.159|220460.031|107.183 +639485.215|220464.387|107.787 +639480.241|220468.764|108.271 +639475.273|220473.138|108.750 +639470.316|220477.500|109.164 +639465.315|220481.907|109.954 +639460.359|220486.269|110.445 +639455.357|220490.667|110.539 +639450.395|220495.038|111.152 +639445.439|220499.393|111.325 +639440.498|220503.740|111.435 +639435.575|220508.068|111.426 +639430.586|220512.454|111.566 +639425.663|220516.782|111.597 +639420.695|220521.150|111.615 +639415.730|220525.512|111.627 +639410.731|220529.907|111.533 +639405.876|220534.168|111.100 +639400.855|220538.582|111.222 +639395.915|220542.925|111.124 +639390.879|220547.351|111.002 +639385.939|220551.694|110.960 +639380.912|220556.108|110.798 +639375.999|220560.424|110.533 +639370.982|220564.831|110.338 +639366.044|220569.165|109.878 +639360.988|220573.609|109.618 +639356.010|220577.983|109.570 +639351.018|220582.369|109.219 +639346.034|220586.743|108.777 +639340.980|220591.181|108.564 +639335.973|220595.582|108.424 +639330.953|220599.990|107.896 +639325.954|220604.373|107.165 +639315.901|220613.200|106.299 +639310.891|220617.598|105.744 +639305.864|220622.012|105.351 +639300.774|220626.489|105.677 +639295.650|220630.994|105.851 +639290.566|220635.472|106.214 +639285.452|220639.967|106.357 +639280.319|220644.485|106.753 +639275.232|220648.962|107.217 +639244.584|220675.925|108.780 +639239.430|220680.463|109.152 +639229.219|220689.452|109.981 +639224.074|220693.978|110.304 +639198.392|220716.582|112.029 +639193.271|220721.090|112.279 +639177.970|220734.529|111.185 +639172.804|220739.076|111.481 +639167.649|220743.609|111.545 +639157.350|220752.677|112.593 +639136.761|220770.788|113.127 +639131.619|220775.314|113.261 +639126.468|220779.847|113.599 +639121.341|220784.352|113.447 +639085.277|220816.087|115.288 +639074.963|220825.164|115.931 +639069.787|220829.718|116.211 +639064.654|220834.238|116.705 +639059.479|220838.795|117.074 +639054.309|220843.340|117.214 +639049.143|220847.887|117.385 +639043.974|220852.435|117.613 +639038.856|220856.937|117.842 +639033.641|220861.527|118.132 +639028.478|220866.072|118.449 +639023.363|220870.570|118.689 +639018.154|220875.155|118.887 +639012.994|220879.693|119.070 +639007.833|220884.235|119.268 +639002.676|220888.773|119.537 +638997.470|220893.351|119.653 +638992.365|220897.841|119.628 +638987.162|220902.416|119.701 +638982.008|220906.948|119.707 +638976.853|220911.481|119.799 +638971.650|220916.056|119.774 +638966.499|220920.585|119.768 +638961.345|220925.118|119.799 +638956.145|220929.693|119.899 +638945.837|220938.751|119.707 +638940.640|220943.323|119.735 +638935.486|220947.856|119.829 +638930.335|220952.388|119.976 +638925.135|220956.963|120.235 +638919.987|220961.493|120.472 +638914.836|220966.025|120.564 +638909.636|220970.597|120.686 +638904.485|220975.129|120.802 +638899.334|220979.659|120.847 +638894.185|220984.188|121.033 +638889.037|220988.717|121.262 +638878.692|220997.819|121.701 +638873.547|221002.348|121.981 +638868.351|221006.920|122.198 +638863.199|221011.449|122.280 +638858.051|221015.979|122.390 +638852.897|221020.511|122.438 +638847.694|221025.086|122.460 +638842.589|221029.576|122.417 +638837.383|221034.154|122.426 +638832.229|221038.686|122.475 +638827.120|221043.179|122.475 +638821.914|221047.757|122.490 +638816.760|221052.290|122.563 +638811.652|221056.782|122.618 +638806.497|221061.318|122.749 +638801.340|221065.853|122.865 +638796.186|221070.389|123.008 +638791.068|221074.887|122.926 +638785.905|221079.429|122.947 +638780.748|221083.964|123.106 +638775.636|221088.460|123.179 +638770.525|221092.956|123.307 +638765.364|221097.498|123.466 +638760.232|221102.009|123.210 +638755.126|221106.498|123.520 +638750.015|221110.997|123.688 +638744.897|221115.499|123.761 +638739.783|221119.998|123.965 +638734.610|221124.549|123.969 +638729.523|221129.020|123.853 +638703.972|221151.490|123.996 +638698.897|221155.955|124.133 +638688.719|221164.904|124.194 +638678.505|221173.890|124.432 +638673.409|221178.370|124.426 +638653.228|221196.128|125.264 +638638.144|221209.405|126.200 +638628.104|221218.244|127.077 +638623.062|221222.679|127.300 +638618.088|221227.059|127.711 +638613.092|221231.451|127.949 +638608.078|221235.862|127.989 +638603.076|221240.263|128.163 +638598.099|221244.646|128.586 +638593.103|221249.044|128.858 +638588.092|221253.449|129.019 +638583.136|221257.811|129.229 +638578.138|221262.209|129.519 +638573.209|221266.546|129.549 +638568.219|221270.935|129.970 +638563.297|221275.266|130.098 +638558.329|221279.637|130.281 +638553.367|221284.005|130.522 +638528.592|221305.792|130.659 +638523.618|221310.163|130.485 +638518.695|221314.491|130.372 +638513.721|221318.862|130.272 +638508.789|221323.196|130.138 +638489.118|221340.497|130.238 +638484.186|221344.828|129.815 +638479.199|221349.211|129.382 +638469.339|221357.877|128.696 +638464.459|221362.165|128.379 +638459.467|221366.548|127.666 +638434.781|221388.226|124.709 +638424.917|221396.885|123.472 +638420.004|221401.201|122.853 +638415.115|221405.496|122.423 +638405.282|221414.128|120.981 +638395.541|221422.689|120.582 +638381.090|221435.393|119.881 +638376.393|221439.530|120.241 +638357.694|221456.010|122.670 +638339.311|221472.219|125.922 +638311.562|221496.658|128.160 +638306.929|221500.737|128.492 +638284.289|221520.686|131.247 +638279.717|221524.712|131.704 +638270.630|221532.710|132.158 +638266.061|221536.734|132.390 +638252.096|221549.002|131.086 +638242.891|221557.091|130.595 +638238.355|221561.084|130.863 +638224.691|221573.099|130.406 +638220.046|221577.178|129.940 +638215.486|221581.186|129.653 +638211.039|221585.099|129.693 +638206.513|221589.077|129.620 +638202.123|221592.945|129.955 +638197.664|221596.868|129.985 +638183.979|221608.886|128.467 +638179.550|221612.778|128.470 +638175.014|221616.762|127.989 +638161.521|221628.619|126.703 +638157.001|221632.584|126.145 +638152.569|221636.483|126.002 +638143.663|221644.307|125.108 +638139.277|221648.163|124.999 +638134.848|221652.055|124.709 +638117.328|221667.450|123.456 +638112.917|221671.327|123.106 +638108.541|221675.171|122.697 +638104.115|221679.057|122.100 +638090.966|221690.603|120.533 +638086.592|221694.443|120.012 +638077.780|221702.176|118.549 +638073.415|221706.008|117.918 +638060.632|221717.243|116.949 +638052.119|221724.719|116.300 +638047.873|221728.450|115.815 +638043.719|221732.105|115.724 +638039.649|221735.686|115.995 +638035.522|221739.313|115.821 +638031.386|221742.949|115.635 +638022.779|221750.499|113.773 +638014.522|221757.754|113.157 +638010.401|221761.375|112.904 +638006.310|221764.968|112.569 +637985.380|221783.329|108.728 +637981.247|221786.960|108.134 +637972.871|221794.299|105.970 +637968.759|221797.908|105.306 +637964.775|221801.407|104.940 +637952.937|221811.807|103.931 +637945.039|221818.744|103.172 +638134.104|221650.299|124.630 +638143.053|221642.417|125.346 +638147.442|221638.549|125.456 +638151.959|221634.572|125.938 +638156.416|221630.646|126.157 +638165.532|221622.623|127.358 +638170.046|221618.646|127.678 +638179.120|221610.657|128.571 +638183.707|221606.618|129.043 +638197.335|221594.612|129.958 +638201.782|221590.686|129.601 +638206.272|221586.730|129.699 +638210.822|221582.716|129.620 +638215.489|221578.607|130.125 +638220.034|221574.602|130.302 +638224.657|221570.530|130.647 +638238.352|221558.454|130.644 +638242.912|221554.433|130.738 +638247.499|221550.389|130.729 +638257.055|221541.988|132.479 +638261.663|221537.922|132.381 +638266.281|221533.853|132.363 +638270.865|221529.808|132.171 +638307.505|221497.469|128.501 +638349.449|221460.445|123.978 +638358.687|221452.279|122.137 +638363.372|221448.140|121.305 +638377.631|221435.558|120.162 +638382.404|221431.343|119.628 +638392.215|221422.711|120.610 +638397.098|221418.410|120.829 +638401.978|221414.109|120.732 +638431.782|221387.890|124.523 +638446.744|221374.726|126.431 +638451.752|221370.319|126.803 +638456.748|221365.923|127.474 +638461.804|221361.479|128.245 +638471.774|221352.704|129.223 +638476.746|221348.327|129.476 +638486.743|221339.521|130.098 +638491.766|221335.099|130.442 +638496.750|221330.710|130.503 +638501.730|221326.321|130.558 +638506.641|221321.986|130.089 +638511.612|221317.606|130.122 +638516.595|221313.214|130.275 +638521.622|221308.788|130.394 +638526.651|221304.357|130.570 +638551.696|221282.283|130.503 +638556.710|221277.860|130.250 +638561.697|221273.468|130.205 +638571.709|221264.635|129.635 +638576.778|221260.167|129.510 +638581.728|221255.799|129.193 +638586.788|221251.340|128.979 +638591.842|221246.880|128.760 +638596.840|221242.473|128.492 +638601.882|221238.026|128.172 +638606.929|221233.573|127.925 +638611.995|221229.110|127.879 +638622.111|221220.186|127.175 +638627.153|221215.739|126.946 +638637.309|221206.784|126.203 +638652.503|221193.385|125.361 +638657.614|221188.886|125.432 +638662.686|221184.408|125.112 +638667.758|221179.937|124.770 +638672.839|221175.456|124.554 +638683.068|221166.443|124.398 +638688.201|221161.920|124.264 +638693.291|221157.437|124.252 +638698.427|221152.910|124.206 +638703.560|221148.390|124.127 +638708.638|221143.913|123.996 +638713.765|221139.395|123.874 +638718.895|221134.875|123.837 +638724.027|221130.355|123.847 +638729.166|221125.826|124.011 +638734.287|221121.315|123.883 +638739.417|221116.798|123.898 +638749.652|221107.775|123.630 +638754.815|221103.225|123.481 +638759.954|221098.702|123.764 +638765.057|221094.203|123.426 +638770.220|221089.652|123.344 +638775.335|221085.144|123.228 +638780.495|221080.596|123.100 +638785.655|221076.049|122.999 +638790.776|221071.538|123.085 +638795.936|221066.990|123.042 +638801.096|221062.446|122.923 +638806.250|221057.901|122.795 +638811.411|221053.356|122.728 +638816.568|221048.812|122.655 +638821.728|221044.264|122.664 +638826.885|221039.720|122.603 +638832.040|221035.178|122.545 +638837.197|221030.633|122.490 +638842.354|221026.089|122.563 +638847.511|221021.547|122.530 +638852.665|221017.006|122.539 +638857.817|221012.467|122.399 +638862.968|221007.926|122.310 +638868.119|221003.387|122.213 +638873.322|220998.803|122.137 +638888.763|220985.191|121.347 +638893.911|220980.652|121.064 +638899.059|220976.114|120.783 +638904.259|220971.530|120.750 +638909.361|220967.034|120.625 +638914.564|220962.450|120.500 +638919.716|220957.908|120.445 +638924.867|220953.370|120.171 +638930.018|220948.828|119.902 +638940.323|220939.745|119.674 +638945.526|220935.161|119.796 +638950.677|220930.625|119.842 +638955.831|220926.084|119.811 +638961.034|220921.500|119.790 +638966.185|220916.961|119.762 +638971.340|220912.420|119.784 +638976.494|220907.878|119.774 +638981.651|220903.334|119.628 +638986.805|220898.792|119.613 +638992.008|220894.208|119.604 +638997.165|220889.666|119.646 +639002.323|220885.122|119.427 +639007.483|220880.571|119.174 +639012.591|220876.066|118.997 +639017.800|220871.476|118.830 +639022.964|220866.922|118.552 +639028.078|220862.411|118.299 +639033.245|220857.854|117.894 +639038.411|220853.297|117.613 +639043.577|220848.744|117.418 +639048.698|220844.230|117.223 +639053.864|220839.673|117.080 +639059.037|220835.113|116.800 +639069.345|220826.018|115.977 +639074.475|220821.498|115.705 +639089.938|220807.855|114.334 +639115.626|220785.202|113.151 +639146.313|220758.157|112.862 +639166.769|220740.116|111.472 +639242.917|220672.977|108.704 +639273.235|220646.240|106.924 +639278.252|220641.815|106.665 +639283.282|220637.380|106.333 +639288.369|220632.890|105.906 +639293.328|220628.519|105.863 +639298.409|220624.042|105.598 +639303.319|220619.713|105.595 +639308.370|220615.263|105.696 +639313.241|220610.978|106.193 +639318.230|220606.583|106.458 +639323.140|220602.264|107.046 +639328.057|220597.939|107.610 +639332.940|220593.641|107.979 +639337.935|220589.240|108.247 +639342.824|220584.936|108.610 +639347.771|220580.583|108.920 +639352.627|220576.307|109.152 +639357.574|220571.951|109.472 +639362.429|220567.681|110.213 +639372.213|220559.064|110.566 +639377.121|220554.742|110.853 +639382.010|220550.435|110.886 +639386.963|220546.071|110.819 +639391.846|220541.767|110.944 +639396.738|220537.457|111.027 +639401.617|220533.153|111.194 +639406.497|220528.849|110.978 +639411.350|220524.579|111.444 +639416.254|220520.254|111.496 +639421.113|220515.972|111.520 +639425.983|220511.677|111.493 +639430.854|220507.382|111.463 +639435.728|220503.085|111.438 +639440.565|220498.820|111.347 +639445.451|220494.511|111.274 +639450.297|220490.234|111.136 +639455.183|220485.921|110.734 +639460.072|220481.608|110.341 +639464.970|220477.283|109.908 +639469.890|220472.937|109.338 +639474.757|220468.639|108.820 +639479.631|220464.335|108.290 +639484.566|220459.980|107.735 +639489.403|220455.706|107.156 +639494.280|220451.403|106.711 +639499.169|220447.087|106.202 +639504.018|220442.801|105.629 +639508.916|220438.476|105.120 +639513.778|220434.184|104.553 +639518.542|220429.981|104.318 +639523.355|220425.738|104.473 +639528.079|220421.575|104.544 +639532.782|220417.430|104.775 +639546.712|220405.173|106.744 +639560.739|220392.814|107.549 +639570.123|220384.548|108.079 +639574.650|220380.567|108.908 +639579.310|220376.461|109.250 +639583.989|220372.340|109.494 +639588.555|220368.317|109.814 +639593.166|220364.257|110.182 +639597.815|220360.161|110.350 +639602.460|220356.067|110.551 +639607.071|220352.001|110.661 +639611.698|220347.923|110.716 +639616.331|220343.835|110.743 +639620.973|220339.742|110.740 +639625.640|220335.627|110.630 +639630.282|220331.531|110.380 +639634.897|220327.462|110.307 +639639.554|220323.350|110.012 +639644.141|220319.305|110.128 +639648.732|220315.257|109.978 +639653.334|220311.197|109.774 +639657.921|220307.150|109.661 +639662.533|220303.081|109.451 +639667.145|220299.011|109.262 +639671.717|220294.979|109.027 +639676.289|220290.946|108.823 +639680.891|220286.883|108.472 +639685.439|220282.872|108.427 +639699.014|220270.900|108.235 +639703.477|220266.962|108.168 +639707.921|220263.051|108.485 +639721.359|220251.194|108.195 +639725.764|220247.311|108.256 +639730.153|220243.443|108.396 +639734.542|220239.575|108.564 +639743.473|220231.690|107.942 +639756.716|220220.007|107.534 +639761.078|220216.161|107.442 +639770.237|220206.306|107.686 +639765.936|220210.086|107.710 +639761.657|220213.844|107.421 +639757.402|220217.581|107.259 +639752.952|220221.498|107.796 +639744.299|220229.102|107.753 +639739.775|220233.086|108.454 +639735.386|220236.945|108.530 +639731.058|220240.743|108.314 +639726.754|220244.525|108.015 +639722.387|220248.363|108.040 +639704.714|220263.895|108.244 +639700.328|220267.748|107.927 +639686.896|220279.553|108.171 +639682.446|220283.464|108.235 +639677.922|220287.441|108.433 +639673.372|220291.446|108.802 +639668.861|220295.412|108.975 +639664.298|220299.429|109.186 +639659.726|220303.449|109.451 +639655.178|220307.448|109.609 +639650.633|220311.444|109.774 +639646.040|220315.480|109.932 +639641.462|220319.506|110.048 +639636.887|220323.530|110.161 +639632.312|220327.553|110.289 +639627.728|220331.579|110.201 +639623.086|220335.664|110.466 +639618.474|220339.718|110.585 +639613.832|220343.796|110.594 +639609.248|220347.822|110.594 +639604.682|220351.833|110.505 +639600.027|220355.921|110.350 +639595.385|220359.996|110.143 +639590.798|220364.025|109.929 +639586.241|220368.021|109.542 +639581.560|220372.133|109.320 +639576.957|220376.172|108.945 +639572.336|220380.229|108.686 +639558.355|220392.500|107.497 +639553.625|220396.651|107.348 +639544.301|220404.832|106.253 +639539.677|220408.883|105.461 +639530.332|220417.079|104.239 +639525.525|220421.304|104.358 +639520.706|220425.537|104.248 +639515.912|220429.753|104.339 +639511.026|220434.050|104.736 +639506.121|220438.366|105.278 +639501.275|220442.630|105.793 +639496.328|220446.986|106.351 +639491.403|220451.320|106.793 +639486.517|220455.621|107.339 +639481.533|220460.004|107.869 +639476.656|220464.296|108.418 +639471.633|220468.718|108.954 +639466.720|220473.043|109.469 +639461.752|220477.414|110.030 +639456.814|220481.758|110.402 +639451.870|220486.107|110.862 +639446.905|220490.475|111.118 +639442.019|220494.767|111.185 +639437.035|220499.150|111.267 +639432.113|220503.475|111.283 +639427.187|220507.806|111.341 +639422.222|220512.168|111.322 +639417.312|220516.481|111.298 +639412.353|220520.839|111.310 +639407.448|220525.143|110.862 +639402.425|220529.560|111.030 +639397.487|220533.897|110.905 +639392.498|220538.280|110.804 +639387.520|220542.654|110.664 +639382.525|220547.043|110.673 +639377.544|220551.417|110.588 +639372.503|220555.846|110.594 +639367.513|220560.232|110.633 +639357.568|220568.961|109.551 +639352.575|220573.341|109.186 +639347.534|220577.767|108.853 +639342.535|220582.159|108.610 +639337.515|220586.560|108.076 +639332.528|220590.937|107.729 +639327.456|220595.390|107.281 +639322.470|220599.770|106.967 +639317.398|220604.217|106.500 +639312.384|220608.619|105.985 +639307.309|220613.075|105.616 +639302.283|220617.488|105.260 +639297.162|220621.990|105.412 +639292.033|220626.501|105.714 +639286.927|220630.988|105.741 +639281.791|220635.505|106.177 +639276.674|220640.007|106.421 +639271.522|220644.533|106.525 +639266.380|220649.063|107.153 +639256.045|220658.155|107.945 +639250.945|220662.639|108.146 +639245.800|220667.165|108.354 +639235.507|220676.217|108.856 +639209.691|220698.931|110.624 +639189.083|220717.049|111.011 +639178.811|220726.071|110.423 +639168.448|220735.190|111.514 +639158.091|220744.301|111.850 +639132.262|220767.011|112.508 +639111.618|220785.159|112.776 +639106.418|220789.734|113.285 +639101.230|220794.297|113.569 +639085.728|220807.934|114.389 +639065.008|220826.164|115.849 +639059.835|220830.718|116.178 +639049.487|220839.822|116.940 +639044.324|220844.364|117.098 +639039.207|220848.863|117.245 +639033.991|220853.450|117.555 +639028.828|220857.994|117.936 +639023.662|220862.539|118.333 +639018.501|220867.077|118.616 +639013.344|220871.613|118.787 +639008.184|220876.151|119.006 +639002.981|220880.729|119.189 +638997.824|220885.262|119.430 +638992.670|220889.794|119.540 +638987.518|220894.324|119.537 +638982.364|220898.850|119.515 +638977.213|220903.382|119.585 +638972.013|220907.954|119.729 +638966.862|220912.481|119.750 +638961.711|220917.010|119.741 +638956.511|220921.579|119.701 +638951.409|220926.062|119.695 +638946.117|220930.717|119.768 +638941.061|220935.158|119.656 +638935.958|220939.641|119.622 +638930.761|220944.213|119.747 +638925.610|220948.743|119.872 +638920.511|220953.226|120.201 +638915.314|220957.798|120.338 +638910.166|220962.325|120.488 +638905.067|220966.808|120.613 +638899.870|220971.377|120.725 +638894.771|220975.861|120.920 +638889.626|220980.387|121.125 +638874.191|220993.963|121.835 +638869.049|220998.489|122.185 +638863.946|221002.973|122.280 +638853.650|221012.031|122.493 +638848.548|221016.518|122.569 +638843.445|221021.008|122.618 +638838.288|221025.537|122.585 +638833.183|221030.030|122.545 +638828.031|221034.559|122.679 +638822.929|221039.049|122.774 +638817.772|221043.581|122.765 +638812.615|221048.117|122.798 +638807.558|221052.564|122.908 +638802.404|221057.099|122.972 +638797.295|221061.592|123.042 +638792.184|221066.085|123.085 +638787.075|221070.578|123.149 +638781.958|221075.076|123.097 +638776.849|221079.572|123.185 +638771.741|221084.065|123.365 +638766.678|221088.518|123.469 +638761.567|221093.014|123.581 +638756.455|221097.510|123.700 +638751.392|221101.963|123.853 +638746.263|221106.471|123.697 +638741.206|221110.921|124.002 +638736.140|221115.377|124.130 +638731.004|221119.891|123.950 +638725.984|221124.308|124.087 +638715.770|221133.287|123.996 +638695.471|221151.142|124.499 +638690.420|221155.580|124.340 +638680.261|221164.517|124.590 +638675.278|221168.900|124.764 +638670.181|221173.384|124.697 +638665.143|221177.813|124.819 +638660.065|221182.281|125.044 +638655.036|221186.707|125.297 +638644.968|221195.564|125.721 +638624.882|221213.240|126.745 +638619.895|221217.629|127.020 +638614.924|221222.003|127.483 +638609.895|221226.431|127.846 +638604.948|221230.784|128.062 +638599.882|221235.237|128.065 +638594.941|221239.586|128.391 +638589.952|221243.979|128.708 +638584.947|221248.380|128.900 +638579.997|221252.736|129.165 +638575.007|221257.128|129.531 +638570.021|221261.511|129.476 +638565.068|221265.869|129.775 +638560.103|221270.240|129.933 +638555.147|221274.599|130.241 +638550.181|221278.967|130.455 +638520.405|221305.152|130.549 +638515.422|221309.529|130.345 +638505.504|221318.246|129.982 +638500.590|221322.565|130.007 +638495.677|221326.894|130.430 +638485.820|221335.559|130.339 +638480.876|221339.906|130.196 +638475.950|221344.234|129.860 +638461.036|221357.331|128.333 +638451.075|221366.076|127.105 +638446.186|221370.370|126.828 +638441.151|221374.790|125.892 +638436.189|221379.149|125.505 +638416.407|221396.516|123.024 +638396.751|221413.777|120.863 +638387.003|221422.345|120.482 +638377.301|221430.867|119.842 +638367.810|221439.225|120.610 +638353.859|221451.520|122.688 +638349.235|221455.599|123.545 +638344.633|221459.653|124.252 +638317.027|221483.982|128.382 +638298.379|221500.389|129.022 +638293.856|221504.376|129.714 +638284.901|221512.273|131.320 +638275.705|221520.366|131.960 +638271.155|221524.368|132.003 +638266.607|221528.373|132.344 +638257.445|221536.432|132.457 +638252.897|221540.434|132.582 +638243.564|221548.627|131.396 +638238.904|221552.720|131.006 +638234.313|221556.753|130.744 +638225.249|221564.720|130.574 +638216.181|221572.700|130.717 +638211.639|221576.687|130.269 +638207.025|221580.738|129.741 +638202.556|221584.666|129.708 +638198.073|221588.608|129.604 +638193.632|221592.518|129.967 +638189.236|221596.386|130.077 +638184.686|221600.382|129.714 +638171.137|221612.278|128.239 +638166.629|221616.238|127.663 +638162.167|221620.154|127.334 +638157.735|221624.050|127.154 +638153.197|221628.034|126.504 +638148.735|221631.950|125.992 +638144.263|221635.882|125.691 +638139.935|221639.686|125.590 +638135.506|221643.575|125.294 +638131.062|221647.474|124.709 +638122.354|221655.124|124.161 +638113.689|221662.741|123.636 +638109.330|221666.569|123.289 +638096.214|221678.082|121.750 +638091.834|221681.922|120.939 +638083.099|221689.591|119.717 +638078.691|221693.456|118.857 +638074.439|221697.190|118.446 +638070.166|221700.939|117.973 +638057.572|221712.006|117.351 +638053.305|221715.752|116.742 +638049.110|221719.437|116.461 +638044.926|221723.110|116.016 +638040.826|221726.716|115.922 +638032.691|221733.866|115.846 +638011.846|221752.157|112.935 +638003.765|221759.256|112.438 +637999.711|221762.816|112.051 +637983.283|221777.227|109.247 +637978.942|221781.022|107.454 +637966.756|221791.708|105.141 +637962.757|221795.220|104.714 +637958.792|221798.701|104.211 +637943.412|221812.209|103.358 +638128.584|221647.785|124.633 +638133.022|221643.877|125.160 +638137.606|221639.845|125.898 +638141.931|221636.031|125.721 +638146.351|221632.139|125.986 +638150.871|221628.162|126.495 +638155.318|221624.242|126.703 +638159.811|221620.285|127.120 +638164.334|221616.302|127.468 +638168.897|221612.291|128.260 +638177.922|221604.341|128.717 +638187.133|221596.234|129.894 +638191.605|221592.293|129.876 +638196.018|221588.397|129.595 +638200.548|221584.404|129.647 +638205.114|221580.384|129.876 +638209.716|221576.333|130.314 +638214.312|221572.285|130.753 +638227.937|221560.270|130.589 +638232.533|221556.223|130.845 +638237.172|221552.138|131.073 +638251.227|221539.766|132.625 +638255.863|221535.679|132.671 +638265.037|221527.590|132.552 +638269.597|221523.566|132.244 +638278.863|221515.388|131.902 +638292.366|221503.449|129.333 +638301.723|221495.195|129.065 +638311.047|221486.969|128.687 +638338.830|221462.423|125.041 +638348.105|221454.224|123.377 +638352.753|221450.115|122.633 +638366.801|221437.701|120.759 +638376.332|221429.291|120.177 +638395.769|221412.162|121.015 +638400.695|221407.821|121.222 +638420.531|221390.362|123.914 +638425.500|221385.991|124.554 +638440.383|221372.888|126.181 +638445.427|221368.447|126.803 +638460.363|221355.298|128.483 +638470.339|221346.517|129.513 +638475.325|221342.124|129.897 +638480.272|221337.763|130.001 +638485.277|221333.358|130.561 +638500.066|221320.307|129.897 +638510.048|221311.510|130.250 +638515.023|221307.124|130.345 +638520.009|221302.732|130.549 +638544.972|221280.719|130.546 +638549.953|221276.327|130.430 +638554.927|221271.938|130.263 +638564.958|221263.090|129.824 +638574.986|221254.241|129.431 +638579.939|221249.870|129.150 +638584.990|221245.414|128.885 +638589.997|221240.995|128.687 +638595.036|221236.548|128.321 +638600.065|221232.110|127.867 +638605.100|221227.672|128.010 +638610.194|221223.179|127.730 +638615.168|221218.784|127.276 +638620.258|221214.294|127.013 +638625.287|221209.853|126.639 +638630.387|221205.354|126.504 +638635.474|221200.868|126.218 +638640.518|221196.418|126.053 +638645.599|221191.931|125.758 +638650.689|221187.441|125.575 +638655.764|221182.961|125.236 +638660.845|221178.477|124.980 +638665.939|221173.987|124.871 +638671.035|221169.491|124.855 +638676.168|221164.965|124.660 +638696.620|221146.924|124.435 +638701.740|221142.407|124.191 +638706.876|221137.878|124.164 +638722.281|221124.296|124.221 +638727.402|221119.779|124.054 +638732.537|221115.249|124.179 +638737.658|221110.735|124.014 +638742.818|221106.178|123.786 +638747.960|221101.649|124.078 +638753.118|221097.098|123.767 +638758.284|221092.538|123.709 +638763.453|221087.982|123.636 +638768.617|221083.428|123.520 +638773.728|221078.920|123.347 +638778.892|221074.363|123.277 +638784.104|221069.767|123.213 +638789.215|221065.259|123.103 +638794.378|221060.705|123.069 +638799.591|221056.109|123.085 +638804.751|221051.558|123.002 +638809.911|221047.007|122.944 +638815.071|221042.457|122.908 +638820.229|221037.906|122.850 +638825.432|221033.316|122.722 +638830.592|221028.768|122.685 +638835.749|221024.220|122.673 +638840.906|221019.670|122.664 +638846.109|221015.083|122.600 +638851.263|221010.538|122.469 +638856.466|221005.948|122.426 +638861.617|221001.403|122.298 +638866.772|220996.859|122.231 +638871.969|220992.271|121.951 +638877.117|220987.730|121.634 +638887.465|220978.598|121.164 +638892.661|220974.011|120.945 +638897.816|220969.466|120.780 +638903.015|220964.879|120.628 +638908.215|220960.289|120.494 +638913.370|220955.744|120.329 +638918.569|220951.157|120.146 +638923.772|220946.566|119.872 +638928.924|220942.019|119.665 +638934.130|220937.428|119.607 +638939.284|220932.884|119.589 +638944.487|220928.294|119.683 +638949.690|220923.709|119.668 +638954.844|220919.162|119.643 +638959.998|220914.617|119.665 +638965.204|220910.030|119.698 +638970.358|220905.482|119.692 +638975.564|220900.892|119.598 +638980.718|220896.344|119.543 +638985.924|220891.754|119.521 +638991.082|220887.207|119.488 +638996.239|220882.656|119.360 +639001.399|220878.102|119.125 +639006.611|220873.506|118.912 +639011.771|220868.952|118.717 +639016.935|220864.398|118.567 +639022.101|220859.838|118.147 +639027.267|220855.276|117.772 +639032.440|220850.713|117.321 +639037.606|220846.156|117.144 +639078.910|220809.714|115.029 +639099.569|220791.478|113.511 +639104.711|220786.942|113.249 +639109.871|220782.386|112.593 +639115.010|220777.850|112.435 +639125.267|220768.816|112.846 +639130.415|220764.274|112.654 +639135.560|220759.736|112.548 +639156.018|220741.689|111.871 +639161.133|220737.178|111.618 +639196.898|220705.628|110.356 +639207.088|220696.645|110.225 +639237.632|220669.686|108.079 +639273.101|220638.392|106.299 +639283.135|220629.537|105.915 +639288.180|220625.087|105.470 +639293.188|220620.671|105.479 +639298.205|220616.245|105.382 +639303.252|220611.789|104.989 +639308.150|220607.482|105.729 +639318.053|220598.758|106.577 +639322.973|220594.427|107.107 +639327.920|220590.072|107.381 +639332.851|220585.728|107.790 +639342.672|220577.078|108.607 +639347.622|220572.716|108.902 +639352.526|220568.397|109.158 +639357.382|220564.124|109.899 +639367.184|220555.492|110.585 +639372.128|220551.130|110.533 +639377.035|220546.802|110.423 +639381.967|220542.456|110.530 +639386.853|220538.149|110.640 +639391.785|220533.802|110.810 +639396.631|220529.529|110.856 +639401.523|220525.219|110.981 +639406.415|220520.906|111.094 +639411.267|220516.630|111.161 +639416.175|220512.308|111.222 +639420.985|220508.068|111.264 +639425.843|220503.783|111.331 +639430.723|220499.482|111.277 +639435.542|220495.236|111.316 +639440.379|220490.972|111.240 +639445.222|220486.702|111.136 +639450.078|220482.416|110.950 +639454.955|220478.115|110.652 +639459.807|220473.830|110.164 +639464.717|220469.496|109.664 +639469.582|220465.201|109.167 +639474.465|220460.888|108.561 +639479.339|220456.584|108.064 +639484.161|220452.329|107.601 +639489.043|220448.016|107.083 +639493.884|220443.743|106.555 +639498.721|220439.473|106.071 +639503.558|220435.205|105.629 +639508.414|220430.917|105.089 +639513.217|220426.674|104.568 +639518.051|220422.410|104.239 +639522.770|220418.252|104.361 +639527.470|220414.113|104.620 +639532.167|220409.977|104.909 +639536.772|220405.926|105.812 +639541.430|220401.824|106.052 +639564.671|220381.359|108.140 +639569.273|220377.309|108.506 +639573.891|220373.243|108.792 +639578.548|220369.140|109.158 +639583.114|220365.117|109.472 +639587.680|220361.096|109.817 +639596.937|220352.943|110.399 +639601.539|220348.889|110.573 +639606.108|220344.863|110.649 +639610.732|220340.787|110.734 +639615.380|220336.688|110.701 +639619.971|220332.643|110.716 +639624.585|220328.574|110.615 +639633.869|220320.384|110.173 +639638.478|220316.315|109.881 +639643.035|220312.301|110.182 +639647.631|220308.247|109.993 +639652.231|220304.190|109.829 +639656.845|220300.121|109.597 +639661.448|220296.061|109.451 +639666.029|220292.019|109.164 +639670.607|220287.978|108.908 +639675.173|220283.951|108.744 +639679.797|220279.867|108.296 +639684.363|220275.840|108.174 +639688.871|220271.866|108.107 +639693.470|220267.809|107.857 +639697.914|220263.892|107.884 +639702.431|220259.909|107.820 +639720.287|220244.169|108.049 +639724.761|220240.225|108.030 +639742.543|220224.543|107.689 +639755.756|220212.893|107.710 +639760.148|220209.022|107.732 +639764.473|220205.209|107.823 +639768.823|220201.375|107.823 +639762.989|220204.651|107.765 +639758.664|220208.455|107.677 +639754.308|220212.290|107.756 +639745.521|220220.019|107.808 +639741.104|220223.906|107.973 +639723.432|220239.447|107.832 +639719.006|220243.340|107.875 +639705.714|220255.032|107.686 +639701.215|220258.988|107.634 +639696.750|220262.917|107.710 +639692.254|220266.870|107.686 +639687.691|220270.891|108.043 +639683.198|220274.841|108.046 +639678.672|220278.828|108.244 +639674.064|220282.884|108.613 +639669.491|220286.908|108.820 +639664.910|220290.940|109.094 +639660.280|220295.019|109.390 +639655.730|220299.024|109.542 +639651.167|220303.041|109.792 +639646.558|220307.095|110.021 +639641.928|220311.170|110.124 +639637.399|220315.151|109.954 +639632.745|220319.250|110.222 +639628.145|220323.301|110.509 +639623.491|220327.391|110.521 +639618.821|220331.500|110.658 +639614.234|220335.533|110.627 +639609.638|220339.577|110.691 +639604.962|220343.686|110.612 +639600.357|220347.731|110.451 +639595.754|220351.779|110.304 +639591.124|220355.845|110.018 +639586.510|220359.898|109.664 +639581.886|220363.958|109.381 +639577.277|220368.006|109.015 +639572.617|220372.103|108.683 +639567.965|220376.184|108.296 +639563.305|220380.280|108.000 +639558.636|220384.383|107.750 +639553.920|220388.525|107.497 +639549.293|220392.588|107.028 +639530.646|220408.959|104.864 +639525.863|220413.159|104.486 +639521.118|220417.329|104.208 +639516.372|220421.502|104.281 +639511.492|220425.796|104.605 +639506.585|220430.118|105.150 +639501.729|220434.395|105.702 +639496.801|220438.732|106.098 +639491.909|220443.042|106.628 +639487.020|220447.346|107.165 +639482.091|220451.686|107.668 +639477.223|220455.975|108.116 +639472.240|220460.361|108.698 +639467.317|220464.698|109.253 +639462.358|220469.063|109.716 +639457.430|220473.406|110.371 +639452.495|220477.750|110.734 +639447.530|220482.117|110.975 +639442.638|220486.421|111.069 +639437.706|220490.758|111.100 +639427.846|220499.430|111.207 +639422.932|220503.752|111.173 +639418.022|220508.068|111.139 +639413.060|220512.433|111.130 +639408.168|220516.731|110.984 +639403.218|220521.083|110.917 +639398.280|220525.423|110.783 +639393.287|220529.813|110.701 +639388.356|220534.147|110.551 +639383.323|220538.569|110.420 +639378.389|220542.907|110.326 +639373.341|220547.348|110.390 +639368.348|220551.737|110.423 +639363.307|220556.172|110.466 +639358.339|220560.539|110.350 +639353.407|220564.865|109.417 +639348.433|220569.229|108.875 +639343.434|220573.625|108.622 +639338.396|220578.050|108.247 +639333.418|220582.418|107.781 +639328.392|220586.835|107.339 +639323.348|220591.266|107.092 +639318.322|220595.683|106.686 +639313.320|220600.072|106.007 +639308.224|220604.553|105.845 +639303.191|220608.972|105.510 +639298.104|220613.444|105.293 +639293.044|220617.894|105.330 +639287.890|220622.423|105.309 +639282.751|220626.949|105.748 +639277.628|220631.457|106.019 +639272.510|220635.959|106.275 +639257.051|220649.569|107.360 +639226.150|220676.745|108.351 +639179.649|220717.643|109.682 +639174.468|220722.203|110.176 +639132.917|220758.754|112.167 +639117.403|220772.397|112.444 +639112.234|220776.939|112.148 +639106.979|220781.566|112.807 +639091.422|220795.251|113.493 +639070.641|220813.539|114.946 +639060.241|220822.689|115.580 +639039.508|220840.932|116.858 +639034.293|220845.519|117.016 +639029.081|220850.103|117.275 +639023.915|220854.651|117.732 +639018.703|220859.241|118.180 +639013.539|220863.783|118.549 +639008.382|220868.318|118.680 +639003.176|220872.896|118.866 +638997.973|220877.474|119.052 +638992.816|220882.010|119.354 +638987.616|220886.585|119.436 +638982.462|220891.114|119.525 +638977.311|220895.643|119.509 +638972.111|220900.215|119.579 +638966.911|220904.787|119.637 +638961.760|220909.317|119.659 +638956.609|220913.843|119.643 +638951.412|220918.415|119.646 +638946.264|220922.938|119.607 +638941.064|220927.510|119.576 +638935.913|220932.037|119.494 +638930.761|220936.566|119.567 +638925.613|220941.095|119.640 +638920.465|220945.622|119.970 +638915.317|220950.151|120.107 +638910.120|220954.723|120.347 +638904.972|220959.249|120.460 +638899.824|220963.775|120.640 +638894.679|220968.302|120.802 +638889.531|220972.828|120.981 +638884.386|220977.354|121.131 +638874.145|220986.364|121.673 +638869.006|220990.887|122.079 +638863.861|220995.414|122.231 +638858.765|220999.894|122.341 +638853.620|221004.421|122.548 +638848.465|221008.950|122.393 +638843.372|221013.431|122.652 +638838.273|221017.914|122.694 +638833.122|221022.443|122.771 +638828.019|221026.930|122.801 +638822.917|221031.417|122.838 +638817.815|221035.903|122.896 +638812.663|221040.433|122.954 +638807.561|221044.919|123.014 +638802.501|221049.367|123.036 +638797.396|221053.856|123.042 +638792.291|221058.346|123.115 +638787.231|221062.793|123.176 +638782.125|221067.286|123.249 +638777.066|221071.733|123.344 +638771.957|221076.226|123.399 +638766.901|221080.673|123.588 +638761.844|221085.120|123.737 +638756.736|221089.612|123.853 +638751.709|221094.029|123.749 +638746.598|221098.525|123.853 +638741.544|221102.969|124.145 +638736.506|221107.398|123.880 +638731.404|221111.887|124.151 +638726.390|221116.298|124.319 +638721.348|221120.726|124.109 +638716.276|221125.186|124.164 +638711.253|221129.602|124.279 +638706.163|221134.077|124.097 +638701.143|221138.490|124.282 +638696.117|221142.910|124.395 +638691.100|221147.323|124.636 +638686.013|221151.795|124.602 +638680.987|221156.217|124.743 +638665.975|221169.415|124.907 +638660.934|221173.847|124.965 +638655.904|221178.273|125.136 +638650.918|221182.659|125.279 +638645.947|221187.033|125.624 +638640.939|221191.434|125.547 +638635.928|221195.848|126.014 +638631.002|221200.182|126.355 +638625.973|221204.608|126.642 +638621.026|221208.954|126.800 +638616.040|221213.340|127.047 +638611.117|221217.677|127.440 +638606.198|221222.006|127.925 +638601.190|221226.410|127.983 +638596.206|221230.787|127.824 +638586.346|221239.468|128.617 +638581.402|221243.817|128.906 +638576.464|221248.164|129.245 +638571.569|221252.470|129.549 +638566.607|221256.832|129.714 +638561.633|221261.209|129.760 +638551.818|221269.841|130.272 +638546.908|221274.160|130.510 +638522.231|221295.856|130.473 +638517.272|221300.214|130.409 +638512.346|221304.539|130.257 +638497.567|221317.530|129.866 +638492.672|221321.834|130.052 +638477.995|221334.739|129.967 +638463.207|221347.730|128.876 +638458.287|221352.049|128.662 +638448.405|221360.726|127.590 +638428.715|221378.009|125.307 +638418.803|221386.708|124.051 +638413.887|221391.024|123.395 +638399.086|221404.011|121.292 +638394.282|221408.233|121.183 +638389.414|221412.509|121.003 +638384.605|221416.737|120.887 +638379.789|221420.970|120.762 +638360.736|221437.731|121.454 +638356.063|221441.846|121.996 +638346.791|221450.012|123.255 +638309.962|221482.458|128.373 +638296.054|221494.692|128.998 +638291.461|221498.734|129.281 +638286.809|221502.824|129.546 +638282.387|221506.726|130.510 +638277.918|221510.667|131.515 +638268.863|221518.641|132.351 +638255.223|221530.641|133.152 +638250.550|221534.746|132.872 +638246.039|221538.709|132.933 +638232.055|221550.989|131.409 +638227.468|221555.019|131.153 +638222.908|221559.024|131.070 +638209.350|221570.938|130.723 +638204.836|221574.907|130.677 +638200.264|221578.921|130.107 +638195.729|221582.905|129.735 +638191.251|221586.837|129.684 +638186.807|221590.744|129.543 +638177.858|221598.608|129.278 +638155.483|221618.256|127.367 +638150.944|221622.236|126.709 +638137.804|221633.782|126.075 +638133.397|221637.653|125.867 +638124.570|221645.404|124.962 +638120.266|221649.184|124.804 +638115.834|221653.073|124.325 +638111.512|221656.874|124.106 +638107.068|221660.769|123.395 +638094.035|221672.211|121.960 +638089.655|221676.052|121.137 +638080.871|221683.754|119.476 +638063.848|221698.699|117.793 +638055.615|221705.934|117.766 +638047.090|221713.414|116.382 +638042.969|221717.035|116.187 +638038.866|221720.638|116.086 +638034.873|221724.152|116.214 +638030.746|221727.773|115.833 +638026.610|221731.404|115.209 +638022.273|221735.201|114.020 +638014.007|221742.456|112.898 +638009.977|221745.991|112.557 +638005.893|221749.576|112.020 +638001.906|221753.078|111.877 +637993.893|221760.113|111.280 +637989.851|221763.661|110.548 +637981.835|221770.695|109.612 +637977.665|221774.344|108.460 +637973.377|221778.093|106.659 +637969.390|221781.592|106.238 +637961.425|221788.575|104.858 +637957.481|221792.035|104.230 +637953.610|221795.436|104.092 +637946.027|221802.096|103.638 +637942.208|221805.452|103.321 +637938.456|221808.747|103.071 +638128.612|221639.802|125.474 +638133.092|221635.864|125.965 +638137.466|221632.014|126.230 +638141.886|221628.125|126.492 +638146.293|221624.245|126.724 +638150.771|221620.304|127.047 +638155.215|221616.396|127.480 +638159.741|221612.412|127.824 +638173.274|221600.507|129.034 +638177.791|221596.532|129.427 +638182.339|221592.533|129.735 +638186.725|221588.665|129.543 +638191.227|221584.703|129.677 +638195.774|221580.698|129.796 +638200.398|221576.632|130.305 +638209.399|221568.707|130.430 +638223.252|221556.518|131.625 +638227.782|221552.525|131.278 +638241.760|221540.230|132.863 +638246.435|221536.115|133.073 +638250.995|221532.098|132.966 +638255.616|221528.031|133.207 +638260.148|221524.033|132.732 +638264.781|221519.948|132.530 +638278.345|221507.976|130.756 +638282.929|221503.931|130.058 +638306.112|221483.485|128.830 +638338.519|221454.876|124.215 +638343.176|221450.765|123.505 +638352.539|221442.501|122.402 +638371.419|221425.841|120.347 +638376.274|221421.568|120.640 +638381.166|221417.261|120.878 +638385.991|221413.006|120.716 +638390.862|221408.717|120.853 +638395.708|221404.450|121.192 +638405.611|221395.739|122.356 +638410.598|221391.356|123.042 +638420.537|221382.614|124.285 +638435.403|221369.538|126.117 +638440.353|221365.183|126.383 +638445.357|221360.778|127.090 +638455.327|221352.012|128.291 +638460.360|221347.586|128.943 +638465.319|221343.222|129.434 +638470.293|221338.842|129.711 +638475.234|221334.495|130.132 +638494.958|221317.116|129.805 +638499.877|221312.781|129.781 +638514.843|221299.602|130.363 +638539.775|221277.641|130.869 +638544.674|221273.322|130.442 +638549.651|221268.933|130.305 +638554.674|221264.507|130.125 +638559.645|221260.124|129.964 +638564.595|221255.756|129.623 +638589.632|221233.686|128.452 +638594.588|221229.312|127.760 +638599.632|221224.871|127.964 +638604.683|221220.415|127.779 +638609.669|221216.019|127.425 +638614.695|221211.584|127.004 +638624.781|221202.693|126.535 +638634.843|221193.818|125.837 +638639.890|221189.368|125.715 +638644.983|221184.875|125.602 +638650.013|221180.437|125.282 +638655.054|221175.990|125.142 +638660.141|221171.503|124.996 +638665.241|221167.007|125.005 +638675.457|221158.004|125.349 +638680.511|221153.541|124.822 +638695.754|221140.100|124.423 +638700.875|221135.582|124.203 +638705.971|221131.090|124.374 +638711.104|221126.566|124.340 +638716.228|221122.046|124.246 +638721.373|221117.514|124.481 +638726.490|221113.000|124.316 +638741.855|221099.454|124.057 +638746.967|221094.943|123.892 +638752.090|221090.426|123.880 +638757.263|221085.866|123.938 +638762.374|221081.358|123.798 +638767.535|221076.808|123.645 +638772.646|221072.300|123.502 +638777.803|221067.749|123.347 +638782.964|221063.198|123.249 +638788.078|221058.690|123.219 +638793.239|221054.143|123.115 +638798.399|221049.592|123.094 +638803.510|221045.084|123.057 +638808.671|221040.533|123.072 +638813.831|221035.986|123.091 +638818.985|221031.441|122.981 +638824.142|221026.894|122.987 +638829.299|221022.346|122.960 +638834.454|221017.801|122.896 +638839.608|221013.257|122.853 +638844.762|221008.712|122.752 +638849.962|221004.128|122.685 +638855.110|220999.586|122.387 +638860.261|220995.042|122.374 +638865.461|220990.458|122.173 +638870.606|220985.919|121.823 +638875.751|220981.378|121.487 +638886.145|220972.209|121.042 +638891.296|220967.665|120.878 +638896.496|220963.081|120.646 +638901.647|220958.536|120.506 +638906.798|220953.994|120.390 +638911.998|220949.407|120.216 +638917.198|220944.820|120.000 +638922.352|220940.275|119.936 +638927.552|220935.688|119.576 +638932.703|220931.144|119.525 +638937.857|220926.599|119.479 +638943.063|220922.012|119.552 +638948.266|220917.427|119.671 +638953.417|220912.886|119.692 +638958.568|220908.341|119.585 +638963.771|220903.754|119.573 +638968.880|220899.252|119.521 +638974.083|220894.665|119.506 +638979.237|220890.120|119.442 +638984.394|220885.573|119.412 +638989.600|220880.982|119.320 +638994.757|220876.435|119.134 +638999.918|220871.881|118.878 +639005.078|220867.330|118.656 +639010.238|220862.780|118.513 +639015.402|220858.223|118.247 +639020.571|220853.657|117.662 +639030.907|220844.534|116.998 +639036.073|220839.975|116.797 +639046.421|220830.837|115.943 +639087.722|220794.383|113.471 +639092.854|220789.853|113.297 +639118.567|220767.161|112.118 +639123.697|220762.641|112.295 +639154.333|220735.611|111.685 +639180.003|220712.940|108.978 +639225.772|220672.560|108.104 +639251.122|220650.191|106.988 +639271.367|220632.323|106.129 +639276.436|220627.849|105.891 +639281.514|220623.368|105.589 +639286.537|220618.933|105.391 +639291.557|220614.504|105.254 +639296.574|220610.079|105.153 +639301.600|220605.650|105.565 +639306.535|220601.300|105.863 +639311.552|220596.878|105.879 +639316.456|220592.562|106.549 +639321.491|220588.124|106.897 +639326.380|220583.814|107.220 +639331.364|220579.425|107.643 +639336.299|220575.075|108.040 +639341.288|220570.683|108.430 +639346.174|220566.376|108.832 +639351.127|220562.018|109.591 +639356.007|220557.720|110.109 +639360.969|220553.346|110.310 +639365.904|220548.994|110.338 +639370.897|220544.589|110.320 +639375.859|220540.209|110.149 +639380.854|220535.805|110.161 +639385.731|220531.507|110.353 +639390.715|220527.112|110.512 +639395.610|220522.796|110.594 +639400.548|220518.443|110.771 +639405.446|220514.124|110.871 +639410.380|220509.772|110.704 +639415.260|220505.471|111.002 +639420.180|220501.131|110.984 +639425.087|220496.806|111.115 +639429.918|220492.542|111.057 +639434.844|220488.198|111.075 +639439.733|220483.885|111.005 +639444.637|220479.560|110.862 +639449.553|220475.220|110.633 +639454.446|220470.898|110.234 +639459.399|220466.524|109.795 +639464.309|220462.189|109.338 +639469.237|220457.834|108.756 +639474.169|220453.475|108.201 +639479.052|220449.165|107.677 +639483.978|220444.816|107.229 +639488.867|220440.497|106.708 +639493.759|220436.175|106.202 +639498.696|220431.813|105.757 +639503.546|220427.531|105.251 +639508.444|220423.202|104.790 +639513.330|220418.893|104.452 +639518.185|220414.604|104.004 +639522.968|220410.389|104.391 +639527.677|220406.240|104.629 +639532.404|220402.074|105.074 +639541.743|220393.853|106.430 +639546.437|220389.717|106.805 +639551.186|220385.535|107.189 +639560.541|220377.287|107.592 +639569.874|220369.067|108.515 +639574.491|220364.998|108.823 +639579.152|220360.892|109.210 +639583.766|220356.826|109.573 +639588.363|220352.778|110.057 +639593.014|220348.679|110.228 +639597.680|220344.561|110.332 +639602.286|220340.501|110.509 +639606.901|220336.432|110.652 +639611.549|220332.332|110.624 +639616.191|220328.236|110.637 +639620.812|220324.161|110.515 +639625.433|220320.082|110.417 +639630.087|220315.974|110.149 +639634.723|220311.883|109.990 +639639.362|220307.790|109.856 +639643.900|220303.788|109.993 +639648.503|220299.725|109.811 +639653.124|220295.646|109.561 +639657.677|220291.626|109.399 +639662.313|220287.533|109.103 +639666.904|220283.482|108.805 +639671.482|220279.437|108.573 +639676.033|220275.420|108.250 +639680.635|220271.360|107.957 +639685.155|220267.367|107.823 +639689.718|220263.338|107.500 +639694.223|220259.366|107.500 +639698.694|220255.419|107.415 +639707.613|220247.549|107.165 +639716.470|220239.740|107.552 +639742.820|220216.493|107.375 +639747.112|220212.713|107.848 +639755.802|220205.044|107.808 +639760.191|220201.173|107.616 +639764.550|220197.327|107.342 +639762.867|220196.528|107.241 +639758.396|220200.466|107.582 +639745.134|220212.131|107.744 +639740.733|220215.999|107.576 +639722.804|220231.775|107.887 +639718.442|220235.604|107.357 +639713.910|220239.591|107.421 +639695.820|220255.501|107.403 +639691.276|220259.497|107.357 +639686.667|220263.557|107.668 +639682.095|220267.577|107.799 +639677.489|220271.631|108.128 +639672.783|220275.773|108.457 +639668.156|220279.849|108.680 +639663.520|220283.930|108.969 +639658.894|220288.002|109.225 +639654.224|220292.111|109.463 +639649.561|220296.216|109.698 +639644.851|220300.362|109.914 +639640.221|220304.437|110.003 +639630.864|220312.670|110.210 +639626.170|220316.800|110.438 +639621.507|220320.902|110.505 +639616.785|220325.057|110.643 +639612.052|220329.220|110.566 +639607.391|220333.320|110.679 +639602.728|220337.419|110.551 +639598.037|220341.543|110.301 +639593.313|220345.698|110.256 +639588.613|220349.831|110.088 +639583.958|220353.918|109.661 +639579.255|220358.051|109.250 +639574.607|220362.133|108.808 +639569.898|220366.272|108.463 +639551.022|220382.859|107.144 +639546.273|220387.029|106.796 +639541.573|220391.159|106.473 +639536.824|220395.328|105.836 +639532.112|220399.468|105.306 +639527.421|220403.585|104.641 +639522.611|220407.813|104.440 +639517.853|220411.989|103.903 +639512.986|220416.280|104.477 +639508.118|220420.563|104.723 +639503.174|220424.918|105.174 +639498.236|220429.268|105.610 +639493.347|220433.572|106.092 +639488.412|220437.921|106.580 +639483.478|220442.268|107.095 +639478.546|220446.611|107.613 +639473.581|220450.985|108.055 +639468.646|220455.331|108.655 +639463.675|220459.715|109.213 +639458.713|220464.085|109.713 +639453.738|220468.468|110.344 +639448.773|220472.839|110.560 +639443.866|220477.155|110.749 +639438.913|220481.514|110.929 +639434.024|220485.818|111.033 +639429.101|220490.149|111.039 +639424.188|220494.468|110.969 +639419.229|220498.830|110.902 +639414.312|220503.155|110.917 +639409.402|220507.474|110.902 +639404.461|220511.820|110.771 +639399.514|220516.170|110.682 +639394.583|220520.504|110.493 +639389.648|220524.844|110.371 +639384.661|220529.227|110.249 +639379.785|220533.516|110.082 +639374.795|220537.905|110.060 +639369.833|220542.273|110.262 +639364.795|220546.705|110.265 +639359.857|220551.048|110.292 +639354.849|220555.449|110.079 +639349.884|220559.817|109.948 +639344.940|220564.154|109.134 +639340.036|220568.458|108.433 +639335.003|220572.881|108.040 +639330.078|220577.206|107.561 +639325.049|220581.626|107.156 +639320.062|220586.009|106.833 +639315.078|220590.389|106.494 +639310.046|220594.811|106.162 +639305.005|220599.243|105.940 +639299.991|220603.644|105.434 +639294.968|220608.061|105.074 +639289.859|220612.554|105.080 +639284.790|220617.016|105.272 +639279.670|220621.524|105.488 +639274.607|220625.977|105.650 +639269.486|220630.485|105.940 +639249.056|220648.468|106.814 +639233.727|220661.959|107.272 +639223.443|220671.014|107.726 +639213.214|220680.015|108.213 +639182.338|220707.188|109.003 +639151.242|220734.575|111.642 +639146.036|220739.159|111.938 +639130.531|220752.799|111.743 +639125.346|220757.358|111.703 +639120.091|220761.988|112.188 +639114.983|220766.475|111.612 +639094.153|220784.818|113.209 +639088.980|220789.366|113.102 +639068.208|220807.657|114.251 +639062.987|220812.247|114.312 +639052.581|220821.412|115.148 +639047.363|220826.006|115.391 +639042.145|220830.602|115.654 +639031.748|220839.764|116.845 +639026.536|220844.348|117.010 +639010.897|220858.122|118.272 +639005.739|220862.661|118.433 +639000.485|220867.288|118.656 +638995.279|220871.869|118.891 +638990.124|220876.407|119.128 +638984.873|220881.028|119.293 +638979.673|220885.603|119.332 +638974.473|220890.181|119.387 +638969.273|220894.756|119.488 +638964.024|220899.371|119.451 +638958.873|220903.903|119.491 +638953.625|220908.521|119.491 +638948.431|220913.090|119.537 +638943.231|220917.665|119.470 +638938.031|220922.237|119.424 +638932.831|220926.809|119.378 +638927.683|220931.342|119.537 +638922.437|220935.959|119.793 +638917.241|220940.534|119.808 +638912.092|220945.064|120.015 +638906.896|220949.639|120.283 +638901.699|220954.211|120.421 +638896.551|220958.740|120.524 +638891.357|220963.312|120.695 +638886.163|220967.884|120.945 +638870.679|220981.515|121.591 +638865.540|220986.041|122.021 +638860.346|220990.610|122.286 +638855.192|220995.142|122.134 +638850.056|220999.666|122.658 +638844.863|221004.238|122.792 +638839.705|221008.770|122.688 +638834.563|221013.296|122.954 +638829.415|221017.829|123.042 +638824.264|221022.358|123.094 +638819.159|221026.848|123.121 +638813.956|221031.426|123.152 +638808.802|221035.958|123.142 +638803.693|221040.451|123.149 +638798.536|221044.990|123.109 +638793.427|221049.482|123.133 +638788.316|221053.975|123.152 +638783.165|221058.507|123.338 +638778.056|221063.003|123.395 +638772.951|221067.496|123.508 +638767.846|221071.989|123.712 +638762.789|221076.439|123.886 +638757.680|221080.932|124.023 +638752.612|221085.391|124.014 +638747.491|221089.893|123.965 +638742.425|221094.352|124.029 +638737.362|221098.805|124.194 +638722.150|221112.186|124.337 +638717.084|221116.645|124.505 +638712.046|221121.077|124.322 +638706.962|221125.545|124.261 +638696.903|221134.394|124.395 +638691.837|221138.853|124.621 +638686.802|221143.282|124.639 +638681.788|221147.695|124.971 +638676.765|221152.118|125.157 +638666.676|221160.988|125.108 +638661.684|221165.380|125.139 +638656.648|221169.808|125.249 +638651.656|221174.201|125.328 +638646.626|221178.629|125.538 +638641.637|221183.019|125.706 +638636.620|221187.429|125.535 +638621.694|221200.572|126.587 +638611.766|221209.308|127.077 +638606.786|221213.691|127.431 +638601.854|221218.034|127.772 +638596.904|221222.390|127.961 +638591.918|221226.773|127.794 +638587.020|221231.083|128.035 +638582.027|221235.478|128.330 +638577.141|221239.782|128.714 +638572.200|221244.131|129.053 +638567.342|221248.407|129.257 +638562.404|221252.754|129.671 +638552.586|221261.395|130.122 +638547.716|221265.680|130.296 +638542.756|221270.045|130.552 +638493.623|221313.245|129.751 +638488.712|221317.564|129.802 +638459.479|221343.258|129.321 +638444.672|221356.255|127.266 +638439.786|221360.547|127.001 +638429.925|221369.197|125.587 +638425.088|221373.449|125.389 +638386.104|221407.672|121.225 +638381.276|221411.912|121.006 +638376.460|221416.139|120.564 +638366.844|221424.591|120.152 +638343.621|221445.043|123.112 +638338.979|221449.131|123.569 +638325.287|221461.198|126.087 +638320.685|221465.249|126.520 +638306.990|221477.313|128.534 +638293.143|221489.493|128.922 +638288.568|221493.519|129.327 +638283.990|221497.548|129.711 +638279.448|221501.544|130.034 +638274.971|221505.491|130.702 +638257.088|221521.241|133.128 +638252.525|221525.252|133.149 +638243.390|221533.283|133.177 +638238.828|221537.291|132.975 +638234.298|221541.272|132.969 +638225.051|221549.392|132.058 +638220.387|221553.482|131.436 +638206.827|221565.400|131.073 +638197.881|221573.264|131.137 +638193.284|221577.296|130.467 +638188.776|221581.253|130.010 +638184.256|221585.224|129.744 +638179.800|221589.138|129.577 +638175.411|221593.000|129.738 +638139.892|221624.187|127.071 +638135.619|221627.942|127.193 +638122.290|221639.634|125.374 +638109.269|221651.064|124.407 +638096.211|221662.519|122.758 +638091.816|221666.374|122.067 +638087.476|221670.178|121.408 +638074.385|221681.657|119.259 +638053.366|221700.107|117.626 +638049.159|221703.798|117.257 +638044.962|221707.480|116.723 +638040.869|221711.073|116.629 +638036.848|221714.606|116.629 +638028.759|221721.708|116.254 +638015.915|221732.955|112.886 +638011.870|221736.506|112.670 +637999.843|221747.064|111.682 +637995.780|221750.624|111.048 +637987.873|221757.562|110.445 +637983.877|221761.067|109.893 +637967.735|221775.210|106.665 +637955.909|221785.576|104.714 +637952.050|221788.962|104.403 +637948.240|221792.306|104.086 +637944.451|221795.631|103.864 +637940.699|221798.926|103.580 +637936.953|221802.212|103.337 +638137.942|221623.382|126.965 +638155.568|221607.850|127.989 +638160.006|221603.939|128.446 +638164.535|221599.952|129.107 +638168.970|221596.045|129.342 +638173.436|221592.107|129.501 +638177.797|221588.260|129.427 +638182.263|221584.322|129.623 +638186.777|221580.347|130.058 +638191.297|221576.364|130.308 +638195.912|221572.304|131.031 +638209.356|221560.447|131.131 +638218.439|221552.437|131.552 +638232.314|221540.224|133.064 +638236.877|221536.197|133.225 +638241.421|221532.192|133.295 +638246.015|221528.141|133.378 +638250.553|221524.133|133.198 +638268.543|221508.244|131.168 +638273.017|221504.288|130.430 +638277.598|221500.243|129.991 +638282.277|221496.116|129.833 +638286.788|221492.129|129.327 +638291.412|221488.045|128.897 +638305.350|221475.749|128.345 +638319.234|221463.478|126.462 +638328.503|221455.291|125.313 +638333.099|221451.225|124.240 +638337.769|221447.098|123.606 +638342.469|221442.946|123.158 +638347.050|221438.896|122.326 +638356.459|221430.584|121.244 +638370.818|221417.916|120.774 +638375.640|221413.664|120.890 +638380.514|221409.370|121.021 +638390.219|221400.817|121.426 +638400.027|221392.179|122.301 +638414.859|221379.118|123.932 +638419.870|221374.714|124.868 +638424.814|221370.361|125.407 +638429.767|221365.996|125.678 +638434.744|221361.616|126.492 +638439.725|221357.233|127.017 +638444.665|221352.884|127.650 +638449.710|221348.443|128.342 +638454.672|221344.072|128.836 +638459.646|221339.689|129.068 +638464.615|221335.315|129.665 +638479.596|221322.120|130.692 +638489.313|221313.537|129.632 +638494.284|221309.154|129.635 +638539.084|221269.664|130.759 +638544.037|221265.293|130.391 +638548.996|221260.913|130.110 +638553.964|221256.530|129.918 +638558.978|221252.108|129.711 +638563.922|221247.743|129.330 +638568.936|221243.317|129.147 +638573.886|221238.953|128.830 +638578.866|221234.551|128.382 +638583.816|221230.183|128.102 +638588.864|221225.730|127.827 +638593.890|221221.298|127.867 +638598.907|221216.873|127.812 +638603.948|221212.426|127.529 +638608.926|221208.030|127.108 +638619.014|221199.127|126.696 +638629.067|221190.255|125.931 +638634.130|221185.789|125.992 +638639.214|221181.306|125.736 +638644.258|221176.859|125.596 +638649.354|221172.366|125.557 +638664.543|221158.976|125.410 +638674.753|221149.972|125.087 +638684.861|221141.060|124.715 +638689.929|221136.585|124.465 +638695.023|221132.096|124.538 +638700.149|221127.575|124.410 +638705.236|221123.092|124.447 +638710.385|221118.559|124.663 +638715.463|221114.082|124.606 +638720.571|221109.574|124.298 +638725.713|221105.044|124.535 +638735.945|221096.022|124.209 +638741.060|221091.511|124.066 +638746.135|221087.040|124.057 +638751.304|221082.480|124.081 +638756.477|221077.923|124.109 +638761.588|221073.415|123.990 +638766.700|221068.910|123.840 +638771.854|221064.363|123.624 +638777.011|221059.815|123.484 +638782.171|221055.267|123.362 +638787.277|221050.763|123.219 +638792.440|221046.212|123.203 +638797.649|221041.622|123.167 +638802.760|221037.114|123.152 +638807.924|221032.566|123.231 +638813.084|221028.015|123.271 +638818.238|221023.471|123.240 +638823.395|221018.926|123.252 +638828.547|221014.382|123.094 +638833.695|221009.843|122.844 +638849.151|220996.215|122.512 +638854.351|220991.631|122.387 +638859.499|220987.090|122.176 +638864.644|220982.548|121.920 +638869.789|220978.010|121.484 +638885.334|220964.300|120.805 +638890.482|220959.758|120.564 +638895.633|220955.217|120.430 +638905.984|220946.088|120.152 +638911.184|220941.501|119.887 +638916.384|220936.916|119.604 +638921.538|220932.372|119.451 +638926.738|220927.785|119.366 +638931.941|220923.197|119.278 +638937.095|220918.656|119.363 +638942.252|220914.111|119.406 +638947.455|220909.524|119.445 +638952.658|220904.940|119.418 +638957.806|220900.398|119.393 +638963.012|220895.811|119.363 +638968.167|220891.269|119.369 +638973.370|220886.682|119.348 +638978.527|220882.135|119.259 +638983.730|220877.547|119.198 +638988.887|220873.000|119.040 +638994.047|220868.449|118.784 +638999.208|220863.895|118.519 +639004.368|220859.345|118.363 +639014.701|220850.228|117.571 +639019.867|220845.668|117.141 +639045.738|220822.845|115.111 +639061.225|220809.187|114.227 +639071.525|220800.110|114.172 +639087.048|220786.415|112.935 +639092.181|220781.892|112.874 +639102.486|220772.797|111.834 +639107.686|220768.206|111.429 +639112.758|220763.744|111.834 +639123.039|220754.682|111.770 +639128.129|220750.196|111.776 +639143.509|220736.644|111.798 +639148.612|220732.148|111.734 +639230.152|220660.231|106.872 +639240.274|220651.309|106.805 +639270.642|220624.532|105.534 +639280.718|220615.650|105.315 +639285.732|220611.228|105.214 +639290.801|220606.763|105.126 +639295.748|220602.404|105.287 +639300.777|220597.975|105.662 +639305.703|220593.644|106.122 +639310.689|220589.252|106.449 +639315.636|220584.893|106.671 +639320.635|220580.492|106.897 +639330.498|220571.811|107.768 +639335.384|220567.510|108.189 +639340.295|220563.191|108.863 +639355.007|220550.240|110.167 +639360.034|220545.815|110.271 +639364.929|220541.502|110.237 +639369.940|220537.082|110.070 +639374.896|220532.711|109.966 +639379.843|220528.353|109.993 +639384.765|220524.018|110.234 +639389.663|220519.702|110.295 +639399.490|220511.046|110.621 +639404.434|220506.690|110.749 +639409.326|220502.380|110.929 +639414.279|220498.013|110.640 +639419.165|220493.709|110.899 +639428.970|220485.065|110.841 +639433.881|220480.740|110.975 +639438.764|220476.436|110.957 +639443.674|220472.105|110.761 +639448.602|220467.758|110.451 +639453.543|220463.396|110.073 +639458.505|220459.020|109.573 +639463.425|220454.676|109.045 +639468.354|220450.324|108.475 +639473.331|220445.931|107.966 +639478.208|220441.625|107.464 +639483.188|220437.229|106.997 +639488.077|220432.913|106.485 +639493.021|220428.552|105.973 +639497.907|220424.239|105.546 +639502.802|220419.920|105.092 +639507.734|220415.567|104.745 +639512.562|220411.309|104.461 +639517.466|220406.978|104.010 +639522.230|220402.787|104.534 +639526.979|220398.605|104.833 +639531.703|220394.448|105.296 +639536.391|220390.324|106.025 +639541.116|220386.166|106.522 +639545.880|220381.972|106.784 +639569.410|220361.252|108.536 +639574.113|220357.113|108.954 +639578.761|220353.019|109.405 +639583.410|220348.929|109.871 +639588.073|220344.823|110.259 +639592.795|220340.662|110.323 +639597.467|220336.545|110.408 +639602.064|220332.497|110.633 +639606.742|220328.373|110.707 +639611.448|220324.225|110.646 +639616.090|220320.131|110.673 +639620.763|220316.013|110.554 +639625.439|220311.889|110.441 +639639.426|220299.554|109.868 +639644.022|220295.503|109.987 +639648.677|220291.401|109.814 +639653.297|220287.322|109.554 +639657.967|220283.204|109.341 +639662.557|220279.154|109.030 +639667.187|220275.069|108.789 +639671.826|220270.979|108.536 +639676.423|220266.922|108.250 +639681.031|220262.859|107.939 +639685.612|220258.814|107.762 +639690.163|220254.803|107.518 +639694.747|220250.758|107.375 +639703.836|220242.742|107.040 +639708.235|220238.871|107.378 +639712.743|220234.894|107.168 +639717.214|220230.953|107.168 +639743.646|220207.660|107.674 +639756.728|220196.126|107.421 +639761.136|220192.234|107.147 +639761.246|220189.682|107.040 +639756.796|220193.593|107.247 +639752.284|220197.562|107.528 +639716.419|220229.078|106.863 +639711.877|220233.071|106.939 +639707.265|220237.128|107.150 +639693.464|220249.262|107.424 +639688.849|220253.319|107.461 +639684.201|220257.406|107.683 +639679.556|220261.494|107.912 +639674.844|220265.639|108.232 +639670.150|220269.769|108.500 +639665.462|220273.893|108.747 +639660.768|220278.020|109.039 +639656.086|220282.141|109.314 +639651.359|220286.298|109.558 +639646.638|220290.453|109.804 +639641.922|220294.598|110.033 +639632.565|220302.824|110.173 +639627.822|220306.997|110.350 +639623.101|220311.149|110.423 +639618.379|220315.300|110.512 +639613.612|220319.488|110.588 +639608.876|220323.652|110.518 +639604.170|220327.788|110.588 +639599.406|220331.976|110.426 +639594.703|220336.106|110.213 +639589.923|220340.306|110.176 +639585.211|220344.445|110.064 +639580.453|220348.624|109.643 +639575.759|220352.742|109.140 +639571.068|220356.860|108.658 +639566.316|220361.029|108.226 +639561.565|220365.202|107.826 +639556.874|220369.317|107.363 +639552.052|220373.550|107.098 +639547.300|220377.723|106.741 +639542.548|220381.896|106.394 +639537.748|220386.111|106.061 +639533.011|220390.272|105.653 +639528.305|220394.396|104.726 +639523.489|220398.626|104.531 +639518.771|220402.766|104.047 +639513.869|220407.075|104.117 +639508.990|220411.367|104.403 +639504.107|220415.665|104.742 +639499.163|220420.014|105.165 +639494.277|220424.315|105.601 +639489.281|220428.713|106.101 +639484.380|220433.026|106.674 +639479.451|220437.367|107.144 +639474.483|220441.740|107.552 +639469.554|220446.078|108.067 +639464.571|220450.467|108.646 +639459.600|220454.841|109.173 +639454.644|220459.205|109.628 +639449.672|220463.579|110.210 +639444.747|220467.914|110.496 +639439.782|220472.281|110.725 +639434.890|220476.582|110.807 +639415.227|220493.864|110.533 +639410.231|220498.257|110.755 +639405.327|220502.566|110.673 +639400.383|220506.910|110.518 +639395.439|220511.253|110.405 +639390.507|220515.584|110.179 +639385.564|220519.931|110.115 +639380.638|220524.259|109.896 +639375.652|220528.639|109.786 +639370.699|220532.992|109.838 +639365.688|220537.402|110.018 +639360.735|220541.755|110.124 +639355.705|220546.174|110.042 +639350.777|220550.505|109.990 +639335.906|220563.560|108.375 +639331.035|220567.833|107.814 +639326.018|220572.235|107.241 +639321.083|220576.569|106.842 +639316.039|220580.998|106.574 +639311.040|220585.390|106.369 +639306.038|220589.785|106.214 +639301.021|220594.186|105.696 +639295.995|220598.600|105.306 +639290.957|220603.029|105.068 +639285.903|220607.470|105.007 +639280.788|220611.965|105.098 +639275.735|220616.409|105.104 +639270.611|220620.917|105.385 +639224.556|220661.438|106.814 +639219.399|220665.979|107.268 +639193.731|220688.568|108.338 +639173.136|220706.691|109.237 +639167.982|220711.227|109.244 +639142.061|220734.053|111.679 +639131.744|220743.124|111.429 +639126.544|220747.702|111.688 +639095.320|220775.174|112.398 +639090.181|220779.697|112.645 +639084.954|220784.297|112.712 +639079.724|220788.896|112.822 +639058.945|220807.187|114.154 +639053.730|220811.774|114.123 +639048.497|220816.386|114.742 +639043.370|220820.897|115.123 +639017.325|220843.830|117.010 +639012.158|220848.381|117.516 +638996.580|220862.094|118.436 +638991.374|220866.675|118.586 +638986.119|220871.299|118.897 +638980.965|220875.837|119.122 +638975.765|220880.412|119.198 +638970.562|220884.988|119.238 +638965.362|220889.563|119.302 +638960.163|220894.138|119.326 +638954.914|220898.752|119.253 +638949.766|220903.279|119.281 +638944.517|220907.896|119.323 +638939.317|220912.471|119.250 +638934.163|220917.001|119.198 +638913.367|220935.298|119.461 +638908.170|220939.870|119.851 +638897.828|220948.974|120.329 +638892.680|220953.504|120.454 +638887.532|220958.033|120.588 +638882.335|220962.605|120.744 +638877.190|220967.134|120.933 +638872.042|220971.667|121.021 +638866.900|220976.196|121.460 +638856.619|220985.252|122.112 +638851.477|220989.781|122.368 +638830.887|221007.904|122.829 +638825.794|221012.391|123.127 +638820.649|221016.920|123.292 +638815.495|221021.456|123.307 +638810.393|221025.946|123.347 +638805.239|221030.481|123.344 +638800.127|221034.980|123.219 +638794.970|221039.518|123.164 +638789.864|221044.011|123.252 +638784.759|221048.504|123.322 +638779.654|221052.997|123.441 +638774.548|221057.493|123.578 +638769.449|221061.982|123.804 +638764.343|221066.478|123.923 +638759.284|221070.931|124.045 +638754.172|221075.430|124.115 +638749.106|221079.889|124.112 +638744.041|221084.345|124.157 +638738.975|221088.805|124.221 +638733.906|221093.264|124.261 +638718.767|221106.596|124.727 +638713.682|221111.067|124.581 +638708.669|221115.484|124.788 +638703.645|221119.903|124.895 +638698.592|221124.344|124.569 +638693.563|221128.773|124.581 +638688.506|221133.226|124.974 +638683.495|221137.634|124.602 +638678.481|221142.047|124.938 +638673.455|221146.473|125.093 +638668.426|221150.902|125.212 +638658.413|221159.717|125.502 +638653.381|221164.145|125.651 +638648.431|221168.501|125.630 +638643.383|221172.945|125.614 +638638.394|221177.337|125.742 +638633.407|221181.726|125.931 +638628.372|221186.161|126.126 +638608.462|221203.690|126.934 +638603.528|221208.037|127.236 +638598.544|221212.426|127.559 +638593.664|221216.723|127.958 +638588.638|221221.146|127.858 +638583.712|221225.480|127.803 +638578.772|221229.833|128.126 +638573.895|221234.131|128.601 +638568.954|221238.480|128.943 +638564.062|221242.790|129.296 +638559.182|221247.091|129.763 +638554.272|221251.416|129.952 +638539.583|221264.348|130.607 +638490.480|221307.548|129.540 +638485.622|221311.824|129.604 +638456.422|221337.525|129.299 +638451.517|221341.835|128.821 +638441.724|221350.439|127.669 +638436.820|221354.749|126.895 +638422.168|221367.624|125.224 +638417.297|221371.907|124.819 +638392.983|221393.270|121.801 +638378.621|221405.904|121.155 +638373.799|221410.141|120.668 +638355.002|221426.697|121.350 +638350.305|221430.837|121.731 +638345.742|221434.860|122.329 +638341.149|221438.911|123.066 +638336.492|221443.017|123.417 +638327.378|221451.054|124.761 +638322.834|221455.068|125.806 +638318.271|221459.089|126.169 +638304.680|221471.080|128.160 +638290.884|221483.226|128.528 +638277.449|221495.076|130.467 +638272.852|221499.118|130.211 +638263.931|221506.982|131.223 +638259.545|221510.856|132.134 +638237.142|221530.589|133.329 +638232.637|221534.554|133.161 +638214.477|221550.523|132.009 +638205.281|221558.606|130.988 +638187.423|221574.319|130.537 +638182.930|221578.269|130.150 +638178.401|221582.249|129.604 +638173.942|221586.169|129.431 +638169.470|221590.104|129.193 +638165.136|221593.923|129.388 +638160.634|221597.877|128.821 +638138.682|221617.173|127.404 +638134.284|221621.038|126.953 +638129.907|221624.888|126.608 +638125.451|221628.799|125.944 +638121.123|221632.606|125.627 +638112.424|221640.247|124.877 +638108.007|221644.127|124.234 +638103.752|221647.867|124.087 +638099.351|221651.732|123.316 +638086.382|221663.122|121.713 +638081.886|221667.063|120.640 +638069.041|221678.344|119.125 +638052.180|221693.160|117.741 +638047.955|221696.873|117.284 +638043.807|221700.518|116.949 +638039.646|221704.179|116.793 +638031.600|221711.256|116.769 +638027.445|221714.905|116.254 +638006.432|221733.339|111.938 +637998.264|221740.511|110.640 +637994.365|221743.937|110.637 +637990.278|221747.525|109.920 +637986.279|221751.039|109.548 +637982.377|221754.468|109.158 +637978.403|221757.958|108.719 +637974.477|221761.408|108.469 +637966.388|221768.504|106.711 +637962.450|221771.960|106.049 +637958.533|221775.399|105.498 +637954.665|221778.797|105.135 +637950.712|221782.263|104.272 +637946.850|221785.658|103.964 +637943.080|221788.971|103.806 +637939.321|221792.275|103.501 +637935.612|221795.537|103.385 +637931.848|221798.844|103.096 +638139.115|221614.089|127.419 +638161.039|221594.783|129.095 +638165.438|221590.912|129.397 +638169.735|221587.120|129.251 +638174.152|221583.228|129.452 +638178.626|221579.290|129.933 +638183.122|221575.337|130.531 +638187.609|221571.383|130.875 +638192.050|221567.473|131.006 +638205.360|221555.738|130.958 +638209.963|221551.693|131.966 +638214.575|221547.636|132.527 +638219.046|221543.695|132.674 +638223.591|221539.693|132.954 +638228.117|221535.706|133.158 +638232.622|221531.738|133.268 +638237.136|221527.757|133.463 +638241.653|221523.776|133.408 +638259.405|221508.104|131.415 +638263.818|221504.199|130.622 +638272.910|221496.183|130.479 +638290.958|221480.248|128.483 +638327.576|221447.915|124.606 +638332.203|221443.827|124.011 +638336.815|221439.752|123.353 +638350.778|221427.417|121.573 +638384.199|221397.955|121.503 +638393.864|221389.436|121.725 +638408.653|221376.427|124.048 +638413.625|221372.053|124.715 +638418.501|221367.758|125.118 +638438.246|221350.378|127.239 +638443.239|221345.986|127.903 +638448.168|221341.649|128.486 +638482.741|221311.181|129.476 +638487.661|221306.844|129.440 +638537.517|221262.907|130.549 +638542.543|221258.475|130.415 +638552.464|221249.721|129.909 +638562.407|221240.949|129.178 +638567.403|221236.538|128.845 +638572.392|221232.137|128.440 +638577.385|221227.730|128.099 +638582.374|221223.325|127.754 +638587.410|221218.887|127.861 +638592.445|221214.453|127.998 +638597.459|221210.027|127.413 +638602.500|221205.577|127.145 +638607.459|221201.197|126.535 +638617.606|221192.248|126.239 +638622.651|221187.798|126.062 +638627.720|221183.332|126.178 +638632.798|221178.852|125.846 +638653.134|221160.917|125.660 +638668.438|221147.418|125.288 +638673.568|221142.892|125.142 +638678.646|221138.411|124.990 +638683.748|221133.915|125.194 +638688.856|221129.407|124.810 +638693.947|221124.917|124.883 +638699.089|221120.385|125.035 +638704.206|221115.871|124.846 +638709.275|221111.396|124.700 +638719.532|221102.353|124.737 +638734.891|221088.808|124.499 +638740.002|221084.297|124.350 +638745.117|221079.786|124.231 +638750.231|221075.275|124.148 +638755.394|221070.721|124.106 +638760.466|221066.246|124.197 +638765.627|221061.699|124.060 +638770.775|221057.151|123.801 +638775.883|221052.649|123.630 +638781.037|221048.102|123.484 +638786.192|221043.551|123.374 +638791.300|221039.046|123.292 +638796.509|221034.453|123.313 +638801.624|221029.945|123.411 +638806.833|221025.354|123.469 +638811.987|221020.807|123.399 +638817.141|221016.262|123.402 +638842.927|220993.509|122.408 +638853.226|220984.423|122.176 +638858.374|220979.881|121.999 +638868.658|220970.801|121.146 +638873.855|220966.217|120.920 +638878.958|220961.718|120.811 +638884.154|220957.134|120.579 +638889.303|220952.589|120.494 +638894.454|220948.048|120.344 +638904.799|220938.916|119.741 +638909.947|220934.371|119.494 +638915.101|220929.827|119.415 +638925.455|220920.695|119.326 +638930.655|220916.108|119.076 +638935.809|220911.563|119.186 +638940.960|220907.019|119.177 +638946.163|220902.434|119.174 +638951.317|220897.887|119.156 +638956.514|220893.306|119.290 +638961.714|220888.721|119.317 +638966.868|220884.174|119.265 +638972.022|220879.629|119.171 +638977.225|220875.039|119.009 +638982.383|220870.488|118.842 +638987.540|220865.938|118.540 +638992.746|220861.344|118.388 +638997.906|220856.793|118.257 +639003.066|220852.237|117.882 +639008.281|220847.631|117.391 +639044.440|220815.716|114.447 +639075.435|220788.363|112.471 +639080.611|220783.803|112.575 +639090.876|220774.750|112.423 +639101.200|220765.631|110.963 +639126.913|220742.969|111.551 +639132.073|220738.415|111.179 +639157.777|220715.738|109.932 +639168.043|220706.673|108.924 +639188.486|220688.641|108.137 +639203.790|220675.138|107.409 +639224.175|220657.152|106.260 +639264.671|220621.439|105.312 +639269.739|220616.967|105.089 +639274.756|220612.542|104.937 +639284.879|220603.614|104.815 +639289.896|220599.191|104.748 +639294.858|220594.823|105.306 +639299.823|220590.453|105.836 +639304.804|220586.064|106.180 +639309.815|220581.650|106.272 +639314.810|220577.246|106.503 +639319.751|220572.896|106.839 +639324.728|220568.513|107.305 +639329.660|220564.170|107.750 +639334.561|220559.860|108.506 +639339.429|220555.580|109.570 +639344.391|220551.207|109.737 +639349.317|220546.866|109.817 +639354.285|220542.489|109.993 +639359.211|220538.143|110.082 +639364.173|220533.769|109.899 +639369.138|220529.389|109.716 +639374.088|220525.024|109.679 +639379.029|220520.669|109.762 +639383.954|220516.328|109.972 +639388.892|220511.976|110.112 +639393.781|220507.666|110.262 +639398.722|220503.313|110.426 +639403.562|220499.049|110.606 +639408.518|220494.681|110.682 +639413.438|220490.347|110.679 +639418.302|220486.061|110.737 +639423.252|220481.697|110.530 +639433.030|220473.083|110.752 +639437.919|220468.773|110.704 +639442.887|220464.393|110.463 +639447.819|220460.038|109.771 +639452.742|220455.697|109.542 +639457.701|220451.320|109.091 +639462.617|220446.983|108.600 +639467.537|220442.643|108.128 +639472.471|220438.284|107.564 +639477.391|220433.947|107.153 +639482.313|220429.603|106.747 +639487.212|220425.278|106.193 +639492.168|220420.904|105.626 +639497.047|220416.597|105.242 +639501.946|220412.278|104.787 +639506.832|220407.969|104.437 +639511.663|220403.704|104.129 +639516.524|220399.422|103.998 +639521.297|220395.219|104.464 +639525.985|220391.095|104.845 +639530.755|220386.895|105.345 +639549.705|220370.213|106.763 +639554.384|220366.098|107.293 +639559.068|220361.977|107.787 +639563.768|220357.841|108.204 +639568.410|220353.754|108.668 +639573.162|220349.572|109.109 +639577.807|220345.487|109.597 +639582.453|220341.397|110.079 +639587.162|220337.252|110.225 +639591.895|220333.079|110.222 +639596.550|220328.979|110.414 +639601.262|220324.828|110.585 +639606.002|220320.652|110.615 +639610.662|220316.544|110.536 +639615.356|220312.410|110.585 +639620.065|220308.259|110.557 +639624.744|220304.135|110.438 +639629.401|220300.029|110.451 +639638.810|220291.730|109.753 +639643.431|220287.661|110.033 +639648.104|220283.537|109.768 +639652.734|220279.455|109.487 +639657.421|220275.319|109.189 +639662.051|220271.238|108.954 +639666.703|220267.135|108.631 +639671.354|220263.033|108.329 +639675.953|220258.976|108.043 +639680.592|220254.882|107.838 +639685.231|220250.795|107.668 +639689.889|220246.680|107.150 +639694.464|220242.645|106.814 +639699.014|220238.637|106.891 +639703.492|220234.689|106.817 +639708.058|220230.666|106.842 +639712.557|220226.701|106.717 +639717.056|220222.738|106.851 +639739.370|220203.072|106.903 +639752.626|220191.392|107.064 +639757.024|220187.515|107.083 +639758.719|220183.593|106.793 +639754.327|220187.454|106.976 +639749.956|220191.295|106.848 +639714.447|220222.506|106.479 +639709.887|220226.518|106.656 +639705.327|220230.526|106.842 +639696.207|220238.548|107.046 +639691.641|220242.559|107.064 +639686.950|220246.689|107.479 +639682.351|220250.734|107.710 +639677.718|220254.809|107.887 +639673.079|220258.891|108.104 +639668.422|220262.990|108.436 +639663.725|220267.123|108.735 +639659.031|220271.253|109.036 +639654.340|220275.377|109.332 +639649.609|220279.541|109.600 +639644.888|220283.695|109.844 +639640.258|220287.767|109.905 +639626.076|220300.246|110.365 +639621.351|220304.400|110.438 +639616.636|220308.549|110.499 +639611.884|220312.727|110.487 +639607.184|220316.861|110.496 +639602.438|220321.036|110.505 +639597.653|220325.246|110.454 +639592.944|220329.385|110.286 +639588.171|220333.582|110.213 +639583.394|220337.782|110.167 +639578.637|220341.961|109.743 +639573.946|220346.079|109.216 +639569.240|220350.215|108.823 +639564.433|220354.436|108.424 +639559.754|220358.542|107.869 +639554.987|220362.730|107.265 +639540.610|220375.358|105.979 +639535.779|220379.601|105.491 +639526.119|220388.089|104.900 +639521.349|220392.277|104.397 +639516.466|220396.569|103.995 +639511.599|220400.845|103.830 +639506.597|220405.250|104.248 +639501.641|220409.614|104.739 +639496.663|220414.001|105.071 +639491.668|220418.396|105.528 +639486.666|220422.803|106.080 +639481.628|220427.244|106.580 +639476.647|220431.627|107.028 +639471.673|220436.010|107.494 +639466.644|220440.439|107.997 +639461.630|220444.855|108.448 +639456.610|220449.278|108.951 +639451.602|220453.689|109.417 +639441.565|220462.525|110.204 +639431.537|220471.355|110.691 +639426.581|220475.710|110.502 +639421.582|220480.109|110.688 +639416.605|220484.483|110.335 +639411.597|220488.890|110.624 +639406.592|220493.291|110.539 +639401.593|220497.687|110.417 +639396.597|220502.079|110.295 +639391.611|220506.465|110.118 +639386.624|220510.848|109.951 +639381.589|220515.274|109.804 +639376.606|220519.654|109.649 +639371.567|220524.085|109.564 +639366.523|220528.523|109.576 +639361.451|220532.986|109.829 +639356.400|220537.430|109.942 +639351.417|220541.813|109.914 +639346.372|220546.247|109.558 +639341.352|220550.661|109.451 +639336.421|220554.986|108.530 +639331.446|220559.354|107.997 +639326.429|220563.758|107.409 +639321.452|220568.132|106.961 +639316.420|220572.555|106.564 +639311.378|220576.983|106.275 +639306.322|220581.431|106.156 +639301.274|220585.868|105.982 +639296.257|220590.273|105.470 +639291.243|220594.680|104.967 +639286.196|220599.118|104.836 +639281.099|220603.596|104.690 +639270.922|220612.551|104.925 +639260.748|220621.506|105.239 +639255.655|220625.986|105.226 +639235.187|220644.000|105.994 +639230.073|220648.499|105.760 +639219.798|220657.539|105.943 +639209.535|220666.580|106.833 +639199.260|220675.623|107.290 +639183.825|220689.208|107.902 +639178.729|220693.689|107.643 +639132.274|220734.602|111.240 +639127.129|220739.128|111.328 +639101.368|220761.787|110.835 +639096.219|220766.320|111.222 +639091.023|220770.898|111.673 +639070.281|220789.158|112.642 +639044.388|220811.954|113.965 +639028.813|220825.673|115.297 +639008.086|220843.925|116.973 +639002.923|220848.479|117.525 +638997.711|220853.069|117.930 +638992.551|220857.610|118.244 +638987.393|220862.149|118.348 +638982.187|220866.730|118.574 +638977.033|220871.268|118.808 +638971.879|220875.807|119.055 +638966.676|220880.385|119.232 +638961.476|220884.963|119.265 +638956.328|220889.489|119.220 +638951.128|220894.065|119.150 +638945.925|220898.640|119.064 +638940.774|220903.172|119.064 +638935.574|220907.747|119.073 +638930.371|220912.319|118.942 +638925.220|220916.854|119.128 +638920.023|220921.430|119.384 +638914.823|220926.005|119.354 +638904.472|220935.112|119.561 +638899.276|220939.687|119.720 +638888.934|220948.795|120.366 +638883.786|220953.324|120.515 +638878.638|220957.853|120.649 +638873.438|220962.428|120.716 +638868.290|220966.958|120.930 +638863.148|220971.484|121.320 +638857.960|220976.056|121.829 +638852.815|220980.582|122.064 +638847.661|220985.115|122.003 +638837.374|220994.170|122.661 +638832.277|220998.654|122.868 +638827.071|221003.232|122.768 +638821.966|221007.722|122.795 +638816.833|221012.245|123.341 +638806.574|221021.267|123.383 +638801.465|221025.760|123.411 +638796.308|221030.295|123.399 +638791.193|221034.791|123.292 +638786.039|221039.326|123.380 +638780.931|221043.819|123.481 +638775.831|221048.309|123.700 +638770.674|221052.844|123.801 +638765.621|221057.291|124.011 +638760.515|221061.784|124.212 +638755.398|221066.283|124.185 +638750.283|221070.782|124.237 +638745.171|221075.278|124.343 +638740.112|221079.731|124.499 +638735.006|221084.224|124.731 +638724.866|221093.142|124.831 +638719.803|221097.598|125.005 +638714.728|221102.060|125.020 +638709.665|221106.517|125.233 +638704.557|221111.003|124.795 +638699.534|221115.423|124.910 +638694.465|221119.882|125.096 +638689.430|221124.311|125.087 +638684.394|221128.740|125.057 +638674.327|221137.594|125.169 +638669.294|221142.020|125.294 +638664.317|221146.403|125.477 +638659.288|221150.826|125.654 +638654.259|221155.251|125.874 +638649.254|221159.653|125.761 +638644.212|221164.084|125.861 +638624.199|221181.693|126.431 +638619.258|221186.042|126.626 +638604.283|221199.213|126.715 +638599.318|221203.583|127.257 +638594.399|221207.918|127.748 +638589.449|221212.276|127.922 +638584.465|221216.653|127.815 +638579.503|221221.018|127.925 +638574.614|221225.331|128.754 +638559.828|221238.340|129.235 +638550.014|221246.978|129.723 +638545.109|221251.294|130.034 +638535.344|221259.889|130.619 +638486.283|221303.019|129.306 +638481.431|221307.289|129.446 +638447.363|221337.239|128.733 +638442.434|221341.567|128.114 +638422.811|221358.791|125.541 +638417.934|221363.073|125.090 +638413.122|221367.301|124.770 +638408.190|221371.629|123.993 +638403.383|221375.854|123.764 +638388.823|221388.637|121.966 +638384.044|221392.837|121.682 +638379.286|221397.025|121.887 +638369.602|221405.523|120.661 +638360.181|221413.814|120.856 +638350.857|221422.019|121.436 +638337.037|221434.193|123.091 +638332.444|221438.237|123.536 +638327.866|221442.270|124.100 +638305.161|221462.280|127.504 +638286.968|221478.294|128.693 +638277.985|221486.204|129.586 +638273.678|221490.011|131.186 +638259.935|221502.093|130.769 +638255.543|221505.961|131.403 +638251.123|221509.856|131.887 +638233.454|221525.413|133.503 +638228.888|221529.427|133.308 +638224.404|221533.369|133.295 +638219.945|221537.288|133.146 +638215.471|221541.220|132.960 +638201.782|221553.235|131.177 +638188.465|221564.943|130.909 +638179.690|221572.660|130.887 +638175.191|221576.608|130.260 +638170.677|221580.567|129.577 +638166.248|221584.459|129.312 +638161.853|221588.321|128.989 +638157.519|221592.134|129.214 +638153.069|221596.042|128.662 +638139.953|221607.563|127.766 +638135.622|221611.373|127.605 +638131.291|221615.177|127.224 +638126.944|221618.996|126.797 +638122.595|221622.818|126.370 +638118.279|221626.610|126.123 +638113.960|221630.405|125.633 +638109.647|221634.191|125.200 +638105.249|221638.049|124.410 +638096.696|221645.563|123.737 +638079.359|221660.775|120.707 +638062.497|221675.585|119.110 +638058.358|221679.225|118.967 +638054.179|221682.895|118.442 +638049.997|221686.564|117.936 +638045.825|221690.228|117.485 +638041.707|221693.849|117.266 +638037.659|221697.409|117.138 +638029.484|221704.590|116.611 +638021.035|221712.000|114.821 +638016.823|221715.691|113.691 +638012.653|221719.349|112.965 +638008.590|221722.918|112.459 +638004.536|221726.478|112.228 +638000.489|221730.032|111.609 +637996.398|221733.620|110.844 +637992.390|221737.140|110.414 +637988.428|221740.618|109.966 +637984.423|221744.135|109.588 +637972.609|221754.507|108.256 +637964.754|221761.405|107.177 +637960.737|221764.926|106.226 +637956.820|221768.364|105.668 +637953.010|221771.710|105.315 +637949.011|221775.213|104.284 +637945.170|221778.587|103.852 +637941.418|221781.885|103.763 +637937.685|221785.167|103.550 +637930.257|221791.693|103.108 +638141.944|221603.692|127.922 +638150.679|221595.993|128.626 +638155.120|221592.082|129.101 +638159.433|221588.275|128.998 +638163.813|221584.414|129.239 +638168.233|221580.515|129.427 +638172.756|221576.534|130.125 +638177.291|221572.545|130.918 +638190.492|221560.898|130.945 +638199.359|221553.080|131.211 +638203.998|221548.999|132.137 +638217.565|221537.041|133.055 +638226.523|221529.138|133.247 +638231.046|221525.151|133.457 +638235.584|221521.149|133.512 +638248.825|221509.448|131.781 +638253.251|221505.534|131.308 +638257.679|221501.624|130.839 +638266.894|221493.498|131.067 +638280.287|221481.656|129.056 +638289.318|221473.682|128.132 +638293.850|221469.677|127.803 +638312.217|221453.465|126.477 +638321.313|221445.427|125.230 +638330.435|221437.359|123.588 +638339.671|221429.203|122.655 +638344.258|221425.146|121.862 +638358.364|221412.698|121.058 +638367.719|221404.438|120.390 +638391.929|221383.111|122.304 +638421.287|221357.261|125.474 +638431.117|221348.605|126.629 +638436.107|221344.218|127.593 +638440.993|221339.915|127.864 +638445.967|221335.538|128.800 +638450.880|221331.207|128.961 +638480.224|221305.335|129.345 +638534.649|221257.353|130.516 +638544.521|221248.639|129.982 +638549.477|221244.265|129.699 +638554.449|221239.882|129.555 +638559.429|221235.484|129.068 +638579.287|221217.958|128.050 +638584.289|221213.544|127.833 +638589.315|221209.113|127.910 +638599.297|221200.295|126.828 +638614.382|221186.993|126.770 +638619.399|221182.570|126.843 +638624.419|221178.136|126.456 +638629.436|221173.707|126.002 +638644.593|221160.341|126.059 +638654.719|221151.411|125.867 +638664.881|221142.450|125.557 +638669.950|221137.975|125.310 +638675.046|221133.482|125.432 +638680.072|221129.051|125.246 +638685.196|221124.530|125.099 +638690.286|221120.041|125.221 +638695.355|221115.569|125.029 +638700.485|221111.046|125.038 +638705.569|221106.565|125.108 +638710.695|221102.045|125.121 +638720.894|221093.054|125.099 +638736.287|221079.478|124.782 +638741.392|221074.973|124.581 +638746.452|221070.511|124.404 +638751.609|221065.960|124.243 +638756.720|221061.452|124.185 +638761.832|221056.944|124.157 +638766.989|221052.396|124.039 +638772.091|221047.894|123.850 +638777.246|221043.347|123.682 +638782.397|221038.805|123.490 +638787.502|221034.300|123.383 +638792.659|221029.753|123.405 +638797.771|221025.248|123.423 +638802.925|221020.703|123.405 +638808.076|221016.158|123.277 +638823.481|221002.574|123.008 +638828.672|220997.992|122.722 +638833.774|220993.490|122.679 +638838.956|220988.915|122.079 +638859.594|220970.710|121.347 +638864.736|220966.171|120.991 +638869.881|220961.630|120.707 +638875.081|220957.045|120.613 +638880.229|220952.504|120.488 +638885.425|220947.920|120.347 +638890.570|220943.378|119.942 +638895.719|220938.837|119.680 +638900.915|220934.252|119.506 +638906.064|220929.708|119.339 +638911.215|220925.166|119.214 +638916.418|220920.582|119.308 +638921.569|220916.038|119.247 +638926.766|220911.450|118.942 +638931.920|220906.906|118.860 +638937.120|220902.322|118.918 +638942.271|220897.780|119.064 +638947.474|220893.196|119.067 +638952.625|220888.651|119.110 +638957.773|220884.116|119.192 +638962.973|220879.529|119.180 +638968.127|220874.984|119.009 +638973.281|220870.433|118.689 +638978.487|220865.843|118.430 +638983.641|220861.292|118.281 +638988.799|220856.745|118.153 +638994.005|220852.151|117.872 +639004.334|220843.032|116.861 +639040.584|220811.028|113.761 +639076.740|220779.127|112.069 +639087.057|220770.029|111.819 +639107.704|220751.802|110.188 +639112.810|220747.309|110.926 +639128.120|220733.809|111.066 +639158.963|220706.588|108.960 +639184.526|220684.033|107.802 +639204.920|220666.034|106.668 +639215.165|220656.994|106.037 +639220.225|220652.528|105.623 +639225.330|220648.020|105.284 +639230.377|220643.576|105.735 +639235.416|220639.135|105.717 +639250.570|220625.764|105.251 +639260.699|220616.827|104.769 +639265.750|220612.374|104.745 +639270.803|220607.918|104.720 +639275.802|220603.510|104.793 +639280.877|220599.030|104.547 +639285.879|220594.622|104.635 +639290.856|220590.236|104.973 +639295.815|220585.871|105.559 +639300.844|220581.443|105.936 +639305.794|220577.078|106.083 +639310.799|220572.671|106.241 +639315.746|220568.309|106.467 +639320.729|220563.920|106.857 +639325.664|220559.570|107.238 +639330.651|220555.181|107.646 +639340.478|220546.531|108.890 +639345.330|220542.264|109.661 +639355.282|220533.488|109.820 +639360.235|220529.121|109.692 +639365.200|220524.741|109.481 +639370.202|220520.327|109.411 +639375.088|220516.017|109.494 +639380.062|220511.637|109.737 +639384.948|220507.330|109.865 +639389.883|220502.981|110.042 +639394.772|220498.671|110.179 +639399.667|220494.355|110.320 +639404.562|220490.039|110.457 +639409.472|220485.711|110.509 +639414.386|220481.377|110.545 +639419.256|220477.079|110.533 +639424.179|220472.739|110.545 +639429.083|220468.410|110.347 +639438.888|220459.757|110.018 +639448.697|220451.101|109.405 +639453.656|220446.721|108.927 +639458.615|220442.341|108.472 +639463.522|220438.004|108.049 +639468.448|220433.654|107.540 +639473.383|220429.295|107.009 +639478.296|220424.955|106.631 +639483.222|220420.609|106.217 +639488.132|220416.268|105.586 +639493.027|220411.946|105.095 +639497.950|220407.600|104.781 +639502.845|220403.275|104.339 +639507.734|220398.959|103.974 +639512.611|220394.655|103.718 +639517.350|220390.476|104.053 +639522.133|220386.267|104.470 +639526.857|220382.103|104.925 +639531.578|220377.940|105.086 +639536.367|220373.721|105.510 +639541.067|220369.582|105.854 +639569.136|220344.863|109.006 +639573.790|220340.760|109.402 +639578.490|220336.621|109.865 +639583.166|220332.500|110.173 +639587.842|220328.376|110.207 +639592.566|220324.209|110.265 +639597.278|220320.055|110.414 +639601.969|220315.919|110.426 +639606.666|220311.773|110.405 +639611.372|220307.622|110.365 +639616.069|220303.480|110.384 +639620.769|220299.335|110.426 +639625.430|220295.223|110.396 +639630.175|220291.035|110.222 +639639.511|220282.796|109.935 +639644.193|220278.663|109.881 +639648.924|220274.490|109.606 +639653.599|220270.360|109.347 +639658.284|220266.227|109.082 +639662.920|220262.134|108.817 +639667.611|220257.991|108.561 +639672.308|220253.843|108.287 +639676.983|220249.716|107.893 +639681.577|220245.662|107.671 +639686.222|220241.563|107.467 +639690.831|220237.494|107.211 +639695.491|220233.376|106.967 +639700.069|220229.337|106.653 +639704.656|220225.286|106.558 +639713.767|220217.249|106.253 +639736.228|220197.434|106.546 +639740.720|220193.468|106.311 +639753.949|220181.806|106.881 +639741.309|220191.054|106.193 +639736.971|220194.861|105.930 +639732.369|220198.918|106.702 +639714.724|220214.420|106.296 +639710.289|220218.319|106.104 +639705.772|220222.293|106.333 +639701.310|220226.213|106.293 +639696.741|220230.233|106.564 +639692.129|220234.293|107.049 +639687.584|220238.289|107.238 +639682.970|220242.349|107.521 +639678.440|220246.333|107.680 +639673.777|220250.435|107.997 +639669.117|220254.538|108.326 +639664.514|220258.589|108.646 +639659.881|220262.664|108.878 +639655.251|220266.736|109.113 +639650.566|220270.857|109.384 +639645.897|220274.966|109.609 +639641.249|220279.053|109.734 +639631.934|220287.240|109.871 +639627.200|220291.404|110.240 +639622.528|220295.512|110.307 +639617.819|220299.655|110.323 +639613.180|220303.730|110.243 +639608.425|220307.909|110.256 +639603.764|220312.005|110.326 +639599.025|220316.172|110.304 +639594.297|220320.323|110.210 +639589.570|220324.478|110.152 +639584.845|220328.632|110.097 +639580.130|220332.771|109.993 +639575.424|220336.904|109.573 +639570.721|220341.034|109.140 +639566.009|220345.167|108.765 +639561.309|220349.291|108.024 +639556.627|220353.400|107.515 +639551.899|220357.548|106.967 +639547.205|220361.660|105.912 +639537.601|220370.094|105.491 +639532.813|220374.300|105.077 +639528.006|220378.519|104.778 +639523.148|220382.789|104.519 +639518.359|220386.989|104.126 +639513.531|220391.229|103.696 +639508.645|220395.523|103.654 +639503.707|220399.870|103.998 +639498.712|220404.265|104.416 +639493.731|220408.648|104.751 +639488.729|220413.050|105.254 +639483.719|220417.463|105.869 +639478.729|220421.855|106.366 +639473.709|220426.272|106.753 +639468.732|220430.652|107.220 +639463.650|220435.126|107.747 +639458.682|220439.500|108.219 +639453.629|220443.947|108.604 +639448.618|220448.358|109.094 +639438.556|220457.209|109.692 +639428.528|220466.030|110.146 +639423.514|220470.443|110.432 +639418.497|220474.851|110.353 +639413.523|220479.225|110.387 +639408.512|220483.629|110.313 +639403.504|220488.030|110.243 +639398.502|220492.426|110.140 +639393.501|220496.818|110.054 +639388.465|220501.247|109.884 +639383.430|220505.669|109.707 +639378.443|220510.049|109.558 +639373.372|220514.505|109.314 +639368.388|220518.885|109.195 +639363.274|220523.384|109.378 +639358.220|220527.825|109.472 +639353.099|220532.330|109.765 +639343.013|220541.194|109.460 +639328.039|220554.331|107.415 +639322.970|220558.778|106.845 +639317.922|220563.213|106.583 +639312.841|220567.675|106.177 +639307.791|220572.113|105.988 +639302.685|220576.596|105.860 +639297.592|220581.074|105.650 +639292.575|220585.475|105.147 +639287.521|220589.910|104.510 +639282.428|220594.388|104.345 +639277.320|220598.877|104.358 +639272.193|220603.385|104.608 +639267.091|220607.872|104.601 +639261.936|220612.407|104.665 +639246.565|220625.928|105.080 +639241.445|220630.427|104.824 +639226.028|220643.985|104.928 +639220.868|220648.523|105.278 +639210.581|220657.576|105.677 +639200.230|220666.686|106.464 +639195.088|220671.213|106.772 +639179.601|220684.840|107.403 +639174.437|220689.379|107.409 +639112.471|220743.911|110.789 +639102.172|220752.960|110.246 +639060.765|220789.393|112.048 +639055.632|220793.913|112.395 +639045.269|220803.033|113.121 +639024.509|220821.312|114.861 +639019.346|220825.853|114.870 +638988.287|220853.203|118.040 +638977.926|220862.316|118.269 +638972.769|220866.852|118.397 +638967.566|220871.433|118.702 +638962.409|220875.969|118.997 +638957.115|220880.626|119.125 +638952.061|220885.073|119.144 +638946.956|220889.560|119.034 +638941.756|220894.135|119.171 +638936.553|220898.704|118.808 +638931.447|220903.193|118.766 +638926.247|220907.765|118.793 +638921.096|220912.298|119.025 +638910.742|220921.405|119.208 +638905.591|220925.934|119.217 +638900.440|220930.467|119.238 +638895.289|220934.996|119.415 +638890.141|220939.529|119.656 +638884.993|220944.058|119.982 +638879.796|220948.630|120.232 +638874.651|220953.162|120.491 +638869.500|220957.695|120.549 +638864.352|220962.224|120.817 +638859.203|220966.756|121.012 +638854.061|220971.286|121.411 +638848.923|220975.812|121.966 +638833.527|220989.360|122.402 +638828.428|220993.850|122.560 +638813.029|221007.402|123.030 +638797.670|221020.916|123.383 +638792.562|221025.409|123.356 +638787.456|221029.902|123.490 +638782.351|221034.395|123.630 +638777.194|221038.933|123.661 +638772.140|221043.380|123.859 +638767.038|221047.870|124.087 +638761.926|221052.369|124.139 +638756.864|221056.822|124.164 +638751.752|221061.321|124.249 +638746.702|221065.768|124.566 +638741.590|221070.264|124.706 +638736.524|221074.720|124.779 +638731.416|221079.219|124.956 +638726.323|221083.693|124.587 +638721.287|221088.131|125.227 +638711.131|221097.065|125.124 +638706.148|221101.454|125.846 +638700.981|221105.992|125.249 +638690.865|221114.890|125.182 +638685.845|221119.309|125.361 +638680.822|221123.732|125.550 +638675.723|221128.215|125.355 +638670.736|221132.601|125.410 +638665.655|221137.073|125.499 +638660.632|221141.493|125.776 +638655.655|221145.876|125.959 +638645.633|221154.693|126.212 +638635.635|221163.487|126.242 +638625.577|221172.335|126.218 +638620.624|221176.700|126.809 +638615.646|221181.083|127.148 +638610.684|221185.448|127.126 +638600.632|221194.287|126.818 +638595.645|221198.670|126.617 +638590.787|221202.959|127.754 +638585.788|221207.357|127.952 +638580.853|221211.697|127.815 +638575.934|221216.038|128.851 +638566.025|221224.752|128.790 +638561.112|221229.077|128.934 +638556.165|221233.433|129.248 +638551.263|221237.745|129.559 +638546.301|221242.113|129.775 +638541.449|221246.387|130.077 +638536.493|221250.751|130.372 +638531.622|221255.037|130.558 +638477.523|221302.610|129.184 +638458.244|221319.581|130.223 +638448.408|221328.226|129.376 +638438.582|221336.858|128.333 +638428.657|221345.569|126.736 +638423.854|221349.790|126.398 +638414.027|221358.422|125.307 +638389.588|221379.883|122.131 +638365.500|221401.055|120.664 +638342.079|221421.671|121.692 +638337.507|221425.704|122.582 +638328.271|221433.839|123.493 +638323.779|221437.804|124.563 +638287.318|221469.927|128.333 +638278.284|221477.886|129.202 +638265.046|221489.563|131.747 +638260.410|221493.635|131.308 +638251.245|221501.694|131.086 +638246.807|221505.601|131.500 +638242.363|221509.518|131.881 +638224.633|221525.130|133.280 +638215.727|221532.966|133.317 +638193.199|221552.757|131.305 +638188.764|221556.658|131.147 +638171.144|221572.148|130.570 +638166.675|221576.071|129.869 +638162.182|221580.015|129.315 +638157.808|221583.862|129.089 +638153.544|221587.614|129.150 +638149.204|221591.430|129.126 +638144.787|221595.304|128.528 +638140.420|221599.145|128.166 +638136.128|221602.915|127.937 +638131.788|221606.731|127.736 +638127.459|221610.532|127.373 +638118.785|221618.149|126.401 +638105.895|221629.472|125.273 +638088.701|221644.569|123.072 +638075.875|221655.825|121.253 +638059.123|221670.538|119.457 +638054.957|221674.193|118.982 +638050.784|221677.856|118.269 +638046.672|221681.468|118.058 +638042.603|221685.043|117.802 +638038.549|221688.607|117.638 +638030.329|221695.824|116.675 +638026.336|221699.332|116.364 +638009.892|221713.759|113.627 +638005.762|221717.380|112.648 +637993.871|221727.822|111.569 +637989.812|221731.385|110.935 +637985.828|221734.881|110.195 +637977.940|221741.806|109.280 +637970.118|221748.671|108.277 +637962.288|221755.541|107.092 +637958.350|221758.997|106.433 +637954.482|221762.390|105.851 +637950.663|221765.745|105.464 +637942.948|221772.509|104.056 +637939.245|221775.764|103.943 +637935.432|221779.114|103.434 +637931.805|221782.299|103.227 +638137.237|221600.096|128.071 +638141.584|221596.264|128.315 +638146.034|221592.347|128.824 +638150.435|221588.467|129.129 +638154.715|221584.691|128.870 +638159.150|221580.783|129.117 +638163.563|221576.897|129.531 +638168.083|221572.919|130.229 +638185.844|221557.265|130.945 +638190.364|221553.281|131.244 +638199.432|221545.298|132.305 +638203.949|221541.321|132.646 +638208.491|221537.319|132.887 +638213.002|221533.344|133.253 +638221.999|221525.407|133.125 +638226.486|221521.454|133.426 +638239.751|221509.734|131.826 +638244.268|221505.751|131.534 +638248.666|221501.861|130.918 +638253.232|221497.835|130.924 +638257.835|221493.781|131.421 +638262.523|221489.654|131.845 +638267.183|221485.548|132.155 +638271.517|221481.711|130.967 +638275.888|221477.840|129.708 +638289.418|221465.877|127.727 +638326.125|221433.440|123.673 +638340.015|221421.165|122.076 +638344.654|221417.066|121.612 +638349.421|221412.863|121.643 +638354.109|221408.720|121.207 +638363.448|221400.472|120.460 +638368.301|221396.196|120.805 +638378.012|221387.643|121.917 +638387.589|221379.194|121.926 +638397.446|221370.520|123.584 +638402.252|221366.283|123.792 +638407.196|221361.930|124.642 +638412.082|221357.627|125.118 +638417.020|221353.277|125.636 +638426.844|221344.624|126.754 +638441.654|221331.584|128.659 +638446.583|221327.241|128.928 +638475.953|221301.333|129.190 +638530.394|221253.327|130.540 +638535.307|221248.987|130.308 +638540.266|221244.610|130.034 +638545.177|221240.275|129.793 +638550.130|221235.901|129.531 +638555.083|221231.528|129.254 +638560.033|221227.160|128.958 +638565.034|221222.743|128.711 +638569.990|221218.369|128.534 +638574.977|221213.965|128.147 +638579.924|221209.600|127.894 +638585.002|221205.120|127.995 +638589.918|221200.776|127.468 +638599.964|221191.910|127.114 +638605.052|221187.426|127.382 +638610.108|221182.967|127.352 +638615.107|221178.553|127.276 +638620.121|221174.124|126.803 +638630.185|221165.243|126.322 +638635.227|221160.792|126.227 +638650.409|221147.393|126.130 +638655.490|221142.910|125.956 +638660.568|221138.429|125.773 +638665.649|221133.943|125.681 +638670.727|221129.462|125.517 +638675.774|221125.009|125.666 +638680.898|221120.489|125.517 +638685.970|221116.008|125.368 +638691.054|221111.525|125.398 +638696.187|221106.995|125.453 +638706.383|221098.001|125.279 +638711.461|221093.520|125.285 +638721.705|221084.480|125.307 +638731.928|221075.457|124.983 +638737.045|221070.940|124.959 +638742.151|221066.435|124.731 +638747.256|221061.927|124.526 +638752.407|221057.377|124.285 +638757.519|221052.869|124.206 +638762.679|221048.315|124.185 +638767.791|221043.804|124.130 +638772.942|221039.256|123.941 +638778.096|221034.706|123.834 +638783.201|221030.201|123.688 +638788.350|221025.656|123.469 +638793.507|221021.105|123.447 +638798.664|221016.558|123.459 +638803.806|221012.016|123.124 +638808.963|221007.466|123.203 +638824.398|220993.835|122.408 +638829.552|220989.290|122.402 +638834.691|220984.749|121.917 +638850.184|220971.072|121.521 +638855.326|220966.531|121.097 +638860.471|220961.989|120.808 +638865.665|220957.402|120.533 +638870.816|220952.858|120.411 +638875.964|220948.313|120.265 +638881.158|220943.726|119.954 +638886.303|220939.181|119.558 +638891.503|220934.591|119.381 +638896.654|220930.046|119.204 +638901.851|220925.456|119.089 +638907.005|220920.911|119.162 +638912.205|220916.321|119.125 +638917.356|220911.776|119.006 +638922.556|220907.186|118.805 +638927.759|220902.596|118.634 +638932.910|220898.048|118.692 +638943.313|220888.874|118.933 +638948.467|220884.326|119.022 +638953.667|220879.739|119.034 +638958.815|220875.194|118.863 +638964.018|220870.601|118.653 +638969.176|220866.047|118.354 +638974.378|220861.454|118.147 +639000.283|220838.576|116.248 +639021.010|220820.263|114.514 +639026.185|220815.694|114.072 +639031.413|220811.080|113.575 +639041.767|220801.939|112.868 +639046.945|220797.363|112.484 +639052.170|220792.752|112.331 +639062.545|220783.593|111.441 +639067.711|220779.039|111.725 +639083.262|220765.314|111.185 +639098.813|220751.579|109.807 +639140.141|220715.116|108.860 +639176.199|220683.280|106.711 +639181.286|220678.799|107.131 +639186.425|220674.261|106.756 +639191.552|220669.737|106.610 +639201.845|220660.648|105.836 +639206.929|220656.162|105.723 +639222.346|220642.549|104.617 +639237.592|220629.101|104.742 +639242.688|220624.606|104.678 +639252.847|220615.641|104.391 +639262.988|220606.699|104.467 +639273.046|220597.823|104.431 +639278.140|220593.327|104.022 +639283.117|220588.941|104.376 +639288.165|220584.488|104.507 +639293.105|220580.141|105.278 +639298.074|220575.764|105.766 +639303.085|220571.345|105.818 +639308.089|220566.931|105.952 +639313.039|220562.566|106.162 +639318.029|220558.171|106.510 +639322.973|220553.813|106.811 +639327.901|220549.469|107.281 +639337.743|220540.804|108.430 +639347.518|220532.196|109.747 +639352.548|220527.755|109.362 +639357.491|220523.393|109.311 +639367.401|220514.649|109.116 +639372.335|220510.299|109.247 +639377.203|220506.008|109.512 +639382.135|220501.661|109.704 +639387.024|220497.348|109.844 +639391.958|220492.996|110.027 +639396.856|220488.680|110.143 +639401.761|220484.355|110.219 +639406.671|220480.023|110.246 +639411.527|220475.741|110.341 +639416.422|220471.425|110.158 +639421.265|220467.158|110.393 +639426.227|220462.778|110.128 +639435.996|220454.158|109.682 +639440.931|220449.802|109.323 +639450.690|220441.189|108.750 +639455.540|220436.906|108.351 +639460.499|220432.529|107.939 +639465.382|220428.216|107.366 +639470.262|220423.910|106.848 +639475.175|220419.572|106.482 +639480.003|220415.308|106.031 +639484.904|220410.980|105.461 +639489.805|220406.652|104.915 +639494.630|220402.391|104.568 +639499.516|220398.078|104.193 +639504.341|220393.820|103.900 +639509.166|220389.562|103.660 +639513.927|220385.368|103.843 +639518.658|220381.201|104.248 +639523.346|220377.071|104.614 +639528.085|220372.895|104.982 +639532.788|220368.753|105.296 +639537.507|220364.595|105.516 +639542.225|220360.438|105.748 +639546.925|220356.296|106.107 +639551.467|220352.306|107.156 +639556.127|220348.203|107.790 +639560.763|220344.119|108.268 +639565.277|220340.153|109.198 +639570.008|220335.984|109.454 +639574.668|220331.878|109.823 +639579.289|220327.809|110.158 +639583.955|220323.694|110.222 +639588.619|220319.585|110.344 +639593.300|220315.455|110.356 +639597.933|220311.371|110.387 +639602.627|220307.229|110.374 +639607.276|220303.132|110.371 +639611.927|220299.030|110.353 +639616.517|220294.982|110.405 +639621.220|220290.837|110.429 +639625.835|220286.765|110.384 +639630.483|220282.662|110.185 +639635.137|220278.556|109.978 +639639.749|220274.490|110.012 +639644.409|220270.378|109.820 +639649.091|220266.245|109.530 +639653.712|220262.170|109.311 +639658.342|220258.083|109.067 +639663.018|220253.959|108.875 +639667.660|220249.859|108.600 +639672.317|220245.751|108.283 +639676.929|220241.678|107.948 +639686.134|220233.555|107.457 +639690.779|220229.456|107.284 +639704.626|220217.230|106.049 +639709.143|220213.247|106.077 +639727.172|220197.348|106.311 +639751.199|220174.092|105.815 +639738.002|220185.702|105.534 +639733.567|220189.609|105.732 +639729.080|220193.563|105.952 +639724.645|220197.464|105.927 +639711.344|220209.171|105.714 +639706.805|220213.164|105.751 +639702.248|220217.182|106.171 +639688.487|220229.307|107.223 +639683.906|220233.342|107.579 +639679.340|220237.366|107.890 +639674.771|220241.389|107.979 +639660.920|220253.590|108.820 +639656.327|220257.638|109.109 +639651.709|220261.704|109.292 +639647.019|220265.834|109.585 +639642.401|220269.903|109.804 +639633.147|220278.050|110.124 +639628.508|220282.135|110.249 +639623.835|220286.243|110.283 +639619.224|220290.303|110.295 +639614.569|220294.397|110.277 +639609.912|220298.496|110.298 +639605.212|220302.629|110.271 +639600.570|220306.714|110.252 +639595.864|220310.856|110.313 +639591.179|220314.977|110.265 +639586.446|220319.140|110.234 +639581.782|220323.243|110.109 +639577.070|220327.388|110.003 +639572.348|220331.537|109.637 +639567.676|220335.645|109.332 +639563.003|220339.751|109.030 +639558.322|220343.860|108.171 +639544.395|220356.085|105.885 +639539.634|220360.267|105.552 +639534.873|220364.455|105.263 +639530.091|220368.655|104.784 +639525.360|220372.816|104.641 +639520.560|220377.034|104.306 +639515.753|220381.262|104.044 +639510.962|220385.471|103.690 +639506.082|220389.766|103.614 +639501.196|220394.067|103.913 +639496.270|220398.407|104.196 +639491.336|220402.753|104.553 +639486.392|220407.106|104.989 +639481.384|220411.522|105.580 +639476.431|220415.884|106.144 +639471.463|220420.261|106.510 +639466.485|220424.647|106.979 +639461.489|220429.049|107.582 +639456.472|220433.471|108.040 +639451.519|220437.833|108.415 +639426.477|220459.891|110.195 +639421.484|220464.283|110.280 +639416.528|220468.645|110.131 +639411.533|220473.040|110.289 +639406.528|220477.442|110.146 +639401.514|220481.855|110.118 +639396.555|220486.220|110.073 +639391.556|220490.612|109.932 +639386.518|220495.044|109.759 +639381.528|220499.433|109.615 +639376.496|220503.859|109.414 +639371.525|220508.230|109.158 +639366.498|220512.649|108.951 +639361.430|220517.112|109.134 +639356.342|220521.586|109.070 +639351.310|220526.015|109.000 +639346.205|220530.507|109.140 +639326.100|220548.171|106.994 +639321.107|220552.560|106.650 +639316.011|220557.040|106.336 +639310.973|220561.469|106.007 +639305.870|220565.956|105.796 +639300.759|220570.455|105.729 +639295.650|220574.944|105.626 +639290.545|220579.434|105.022 +639285.543|220583.823|104.345 +639280.398|220588.350|104.175 +639275.311|220592.821|103.916 +639270.117|220597.399|104.355 +639259.864|220606.415|104.327 +639254.664|220610.990|104.318 +639244.343|220620.070|104.678 +639239.204|220624.590|104.629 +639228.927|220633.631|104.626 +639218.560|220642.747|104.589 +639208.200|220651.870|105.269 +639202.994|220656.451|105.690 +639197.861|220660.968|105.815 +639192.658|220665.549|106.241 +639171.917|220683.798|106.659 +639140.775|220711.212|108.475 +639130.333|220720.407|109.362 +639104.400|220743.225|109.865 +639088.779|220756.968|110.198 +639083.573|220761.552|110.734 +639078.373|220766.134|111.295 +639057.604|220784.403|111.478 +639026.423|220811.851|113.386 +639016.066|220820.976|114.517 +638969.383|220862.082|118.138 +638964.226|220866.620|118.321 +638959.068|220871.159|118.525 +638953.871|220875.734|118.750 +638948.714|220880.269|118.863 +638943.560|220884.802|118.851 +638933.203|220893.909|118.479 +638928.049|220898.441|118.461 +638922.846|220903.020|118.613 +638917.695|220907.552|118.738 +638907.386|220916.620|118.912 +638902.186|220921.195|118.961 +638897.081|220925.688|119.006 +638891.881|220930.263|119.134 +638886.727|220934.795|119.250 +638881.628|220939.285|119.470 +638876.434|220943.857|119.912 +638871.335|220948.343|120.122 +638866.186|220952.873|120.408 +638861.035|220957.402|120.518 +638855.890|220961.931|120.808 +638850.794|220966.415|121.155 +638845.652|220970.944|121.490 +638830.250|220984.490|121.878 +638825.154|220988.976|122.082 +638820.058|220993.460|122.408 +638814.913|220997.986|122.694 +638809.868|221002.427|123.045 +638804.705|221006.966|122.838 +638799.615|221011.449|123.249 +638789.407|221020.426|123.502 +638779.202|221029.405|123.795 +638774.152|221033.849|124.045 +638769.043|221038.342|124.118 +638763.932|221042.835|124.151 +638758.869|221047.288|124.157 +638753.806|221051.741|124.231 +638748.701|221056.231|124.426 +638743.693|221060.638|124.639 +638738.585|221065.131|124.804 +638733.525|221069.581|124.962 +638728.462|221074.034|125.105 +638723.409|221078.484|125.401 +638718.389|221082.898|125.432 +638713.289|221087.378|125.011 +638708.288|221091.780|125.404 +638703.252|221096.205|125.319 +638698.177|221100.668|125.361 +638693.148|221105.090|125.383 +638683.138|221113.893|125.489 +638678.070|221118.355|125.672 +638673.089|221122.735|125.770 +638668.045|221127.167|125.697 +638663.012|221131.596|125.785 +638658.035|221135.973|125.980 +638653.000|221140.401|126.075 +638643.033|221149.170|126.361 +638638.092|221153.517|126.465 +638628.101|221162.304|126.581 +638618.131|221171.076|127.023 +638608.209|221179.806|127.513 +638598.303|221188.517|127.693 +638593.378|221192.848|127.580 +638583.466|221201.566|127.839 +638578.503|221205.930|127.919 +638573.599|221210.246|128.099 +638568.671|221214.587|128.550 +638563.757|221218.906|128.690 +638558.850|221223.225|128.894 +638553.943|221227.544|129.110 +638549.041|221231.854|129.418 +638544.192|221236.124|129.748 +638539.236|221240.483|130.037 +638534.426|221244.716|130.284 +638529.516|221249.038|130.570 +638524.642|221253.327|130.729 +638470.863|221300.601|129.251 +638436.963|221330.408|128.806 +638412.503|221351.881|125.660 +638388.113|221373.290|122.396 +638383.373|221377.460|122.338 +638364.158|221394.340|121.055 +638359.474|221398.464|121.140 +638354.701|221402.658|121.012 +638350.037|221406.764|121.274 +638336.059|221419.068|122.234 +638331.414|221423.159|122.661 +638317.823|221435.144|125.172 +638313.226|221439.191|125.636 +638294.944|221455.291|127.315 +638290.330|221459.351|127.449 +638281.347|221467.263|128.577 +638272.465|221475.100|130.580 +638259.130|221486.850|132.579 +638254.467|221490.946|131.994 +638245.231|221499.054|131.140 +638236.328|221506.894|131.835 +638231.872|221510.816|132.183 +638218.625|221522.481|133.387 +638209.637|221530.385|133.289 +638200.651|221538.279|132.774 +638196.162|221542.226|132.549 +638182.653|221554.089|131.323 +638178.181|221558.018|131.028 +638173.756|221561.910|130.961 +638164.868|221569.713|129.979 +638160.479|221573.572|129.903 +638156.031|221577.476|129.330 +638151.627|221581.344|128.992 +638147.284|221585.166|128.940 +638142.980|221588.949|128.858 +638138.573|221592.826|128.547 +638134.287|221596.596|128.574 +638125.551|221604.271|127.699 +638121.199|221608.093|127.236 +638116.849|221611.916|126.812 +638086.711|221638.388|123.438 +638082.447|221642.134|122.853 +638069.657|221653.359|121.012 +638065.448|221657.057|120.512 +638061.260|221660.736|120.131 +638052.850|221668.121|119.040 +638048.726|221671.745|118.753 +638044.630|221675.345|118.369 +638040.549|221678.932|118.065 +638036.519|221682.477|117.991 +638032.426|221686.068|117.461 +638028.338|221689.661|116.958 +638024.220|221693.273|116.367 +638003.960|221711.064|113.654 +637999.971|221714.566|113.240 +637995.969|221718.081|112.795 +637984.087|221728.517|111.185 +637964.345|221745.839|107.762 +637960.554|221749.170|107.433 +637956.610|221752.630|106.753 +637952.733|221756.028|105.930 +637948.990|221759.317|105.623 +637945.210|221762.640|105.187 +637937.602|221769.315|103.989 +637933.871|221772.591|103.577 +637926.410|221779.145|102.599 +637922.865|221782.263|102.715 +638136.658|221592.433|128.394 +638141.017|221588.592|128.720 +638145.348|221584.776|128.937 +638149.658|221580.975|128.824 +638154.035|221577.117|129.046 +638158.516|221573.179|129.766 +638163.014|221569.219|130.357 +638171.918|221561.374|130.915 +638176.301|221557.512|131.009 +638180.766|221553.580|131.268 +638198.734|221537.755|132.543 +638203.254|221533.771|132.939 +638207.774|221529.790|133.085 +638212.295|221525.806|133.253 +638216.778|221521.856|133.506 +638230.040|221510.146|132.101 +638234.484|221506.223|131.695 +638243.448|221498.310|131.040 +638252.745|221490.126|131.951 +638257.414|221486.015|132.567 +638262.056|221481.927|132.774 +638284.316|221462.246|128.214 +638288.824|221458.263|127.471 +638293.384|221454.236|127.023 +638311.867|221437.926|125.614 +638330.262|221421.674|122.682 +638334.901|221417.578|122.213 +638339.616|221413.420|121.905 +638344.322|221409.266|121.573 +638349.050|221405.099|121.372 +638353.786|221400.920|121.256 +638363.281|221392.545|120.902 +638377.832|221379.740|122.347 +638382.715|221375.439|122.658 +638387.415|221371.288|122.106 +638402.176|221358.300|124.033 +638407.224|221353.871|125.630 +638421.927|221340.927|126.840 +638431.931|221332.130|128.672 +638436.820|221327.826|128.979 +638441.669|221323.553|129.034 +638471.073|221297.633|129.178 +638525.462|221249.709|130.528 +638540.297|221236.624|129.808 +638550.151|221227.928|129.248 +638555.125|221223.545|129.178 +638560.054|221219.192|128.723 +638565.062|221214.779|128.531 +638570.042|221210.390|128.605 +638579.966|221201.633|127.949 +638585.017|221197.180|127.775 +638589.979|221192.806|127.727 +638594.999|221188.380|127.812 +638599.998|221183.973|127.681 +638605.052|221179.516|127.617 +638610.041|221175.115|127.443 +638615.076|221170.674|127.209 +638620.084|221166.251|126.721 +638625.071|221161.856|126.538 +638630.176|221157.357|126.602 +638635.166|221152.959|126.474 +638640.247|221148.472|126.340 +638650.321|221139.591|126.151 +638655.395|221135.110|125.971 +638660.431|221130.672|125.904 +638665.466|221126.228|125.913 +638670.538|221121.757|125.700 +638675.616|221117.276|125.639 +638680.694|221112.796|125.602 +638685.732|221108.358|125.666 +638706.069|221090.417|125.413 +638711.128|221085.955|125.166 +638716.209|221081.474|125.334 +638721.333|221076.957|125.404 +638731.544|221067.950|124.977 +638736.604|221063.485|124.852 +638741.706|221058.983|124.648 +638746.811|221054.478|124.490 +638751.911|221049.979|124.209 +638757.019|221045.471|124.151 +638762.128|221040.966|124.072 +638767.285|221036.419|124.020 +638772.390|221031.914|123.978 +638777.493|221027.415|123.795 +638787.780|221018.335|123.249 +638792.836|221013.879|123.173 +638797.987|221009.334|123.085 +638813.374|220995.758|122.390 +638823.664|220986.678|121.972 +638828.812|220982.137|121.875 +638839.056|220973.099|121.527 +638844.198|220968.561|121.305 +638849.343|220964.022|120.994 +638854.485|220959.481|120.671 +638859.630|220954.942|120.466 +638864.726|220950.447|120.232 +638869.920|220945.862|119.991 +638875.062|220941.321|119.631 +638880.162|220936.825|119.342 +638885.355|220932.241|119.162 +638890.503|220927.696|119.015 +638895.655|220923.155|118.918 +638900.803|220918.613|118.808 +638906.003|220914.029|118.656 +638911.151|220909.484|118.598 +638916.302|220904.943|118.546 +638921.502|220900.359|118.476 +638926.653|220895.814|118.299 +638931.853|220891.230|118.400 +638942.155|220882.147|118.674 +638947.355|220877.563|118.680 +638952.506|220873.018|118.531 +638957.654|220868.477|118.360 +638962.854|220863.889|118.232 +638968.008|220859.342|118.055 +639014.478|220818.312|114.014 +639024.823|220809.178|113.209 +639045.467|220790.947|112.161 +639061.006|220777.225|111.341 +639071.284|220768.164|111.962 +639081.680|220758.977|110.740 +639097.228|220745.240|109.369 +639112.654|220731.624|109.045 +639164.163|220686.145|106.616 +639199.989|220654.516|105.455 +639210.248|220645.454|104.605 +639215.329|220640.967|104.562 +639225.568|220631.933|104.242 +639256.075|220605.007|104.022 +639261.153|220600.529|104.245 +639266.210|220596.067|104.163 +639276.415|220587.057|103.647 +639286.418|220578.242|104.864 +639291.377|220573.875|105.431 +639296.437|220569.412|105.476 +639301.445|220564.993|105.546 +639306.501|220560.533|105.659 +639311.442|220556.175|105.955 +639316.435|220551.773|106.238 +639321.367|220547.427|106.647 +639326.365|220543.020|106.918 +639331.318|220538.649|107.147 +639336.314|220534.247|107.479 +639346.193|220525.539|108.299 +639351.155|220521.162|108.527 +639356.120|220516.785|108.747 +639361.055|220512.430|108.802 +639366.102|220507.977|108.783 +639371.022|220503.639|109.024 +639375.932|220499.311|109.375 +639380.861|220494.962|109.561 +639385.847|220490.566|109.728 +639390.739|220486.250|109.838 +639395.741|220481.837|109.917 +639400.654|220477.500|109.908 +639405.607|220473.129|110.018 +639410.509|220468.804|110.143 +639415.422|220464.466|110.210 +639420.372|220460.092|110.024 +639425.252|220455.786|109.999 +639450.032|220433.883|108.189 +639454.933|220429.551|107.808 +639459.850|220425.205|107.342 +639464.833|220420.798|106.784 +639469.762|220416.439|106.302 +639474.696|220412.074|105.793 +639479.589|220407.749|105.272 +639484.535|220403.375|104.742 +639489.427|220399.050|104.281 +639494.304|220394.740|103.952 +639499.175|220390.436|103.693 +639504.034|220386.145|103.532 +639508.813|220381.926|103.599 +639513.607|220377.696|103.897 +639518.432|220373.438|104.031 +639523.132|220369.289|104.327 +639527.912|220365.077|104.787 +639532.688|220360.862|104.958 +639537.415|220356.686|105.120 +639542.143|220352.519|105.632 +639546.818|220348.398|106.174 +639551.366|220344.396|107.482 +639556.075|220340.248|108.140 +639570.011|220327.961|109.789 +639574.714|220323.813|109.929 +639579.377|220319.695|110.015 +639584.096|220315.532|110.100 +639588.811|220311.368|110.210 +639593.508|220307.220|110.158 +639598.162|220303.108|110.088 +639602.850|220298.969|110.128 +639607.550|220294.817|110.118 +639612.198|220290.715|110.134 +639616.791|220286.658|110.188 +639621.452|220282.543|110.173 +639626.124|220278.416|110.118 +639630.779|220274.301|109.893 +639635.396|220270.226|109.899 +639640.057|220266.108|109.695 +639644.699|220262.009|109.600 +639649.329|220257.915|109.320 +639653.950|220253.834|109.122 +639658.580|220249.740|108.887 +639663.216|220245.644|108.643 +639667.861|220241.538|108.378 +639672.439|220237.494|108.204 +639677.041|220233.427|107.942 +639681.641|220229.361|107.701 +639686.271|220225.268|107.342 +639695.525|220217.084|106.449 +639700.103|220213.039|106.153 +639704.705|220208.967|105.748 +639709.241|220204.959|105.455 +639713.688|220201.033|105.598 +639718.211|220197.037|105.403 +639722.682|220193.090|105.467 +639727.148|220189.146|105.574 +639731.607|220185.208|105.482 +639736.093|220181.243|105.284 +639739.599|220175.595|105.385 +639735.170|220179.493|105.281 +639730.638|220183.480|105.415 +639726.151|220187.430|105.373 +639721.655|220191.386|105.382 +639717.178|220195.324|105.315 +639712.578|220199.372|105.348 +639708.021|220203.386|105.464 +639703.437|220207.422|105.717 +639698.801|220211.509|106.253 +639694.171|220215.588|106.531 +639689.526|220219.684|107.156 +639684.835|220223.817|107.515 +639680.230|220227.874|107.741 +639675.554|220231.992|108.064 +639670.955|220236.043|108.308 +639666.315|220240.130|108.503 +639661.667|220244.224|108.762 +639656.979|220248.351|108.972 +639652.346|220252.432|109.204 +639647.668|220256.553|109.423 +639642.980|220260.680|109.701 +639638.344|220264.761|109.734 +639633.620|220268.925|109.990 +639628.980|220273.009|110.082 +639624.302|220277.127|110.131 +639619.626|220281.245|110.188 +639614.917|220285.390|110.167 +639610.266|220289.483|110.128 +639605.569|220293.623|110.091 +639600.811|220297.811|110.103 +639596.114|220301.944|110.097 +639591.408|220306.089|110.158 +639586.668|220310.262|110.143 +639581.886|220314.471|110.088 +639577.216|220318.583|110.012 +639572.446|220322.780|109.923 +639567.709|220326.946|109.667 +639562.982|220331.107|109.381 +639558.407|220335.121|108.479 +639553.670|220339.285|107.960 +639549.019|220343.372|107.247 +639544.435|220347.392|106.125 +639539.674|220351.577|105.476 +639534.968|220355.713|105.123 +639530.158|220359.950|105.129 +639525.376|220364.156|104.665 +639520.648|220368.311|104.184 +639515.829|220372.551|103.974 +639511.059|220376.751|103.803 +639506.256|220380.972|103.516 +639501.409|220385.243|103.556 +639496.499|220389.568|103.702 +639491.625|220393.862|103.964 +639486.684|220398.218|104.367 +639481.740|220402.577|104.827 +639476.797|220406.935|105.306 +639471.847|220411.300|105.872 +639466.863|220415.692|106.339 +639461.877|220420.090|106.857 +639456.933|220424.452|107.476 +639451.925|220428.866|107.866 +639447.005|220433.197|107.988 +639436.993|220442.024|108.881 +639427.004|220450.833|109.734 +639422.039|220455.207|109.966 +639417.043|220459.608|110.103 +639412.063|220463.991|110.109 +639407.104|220468.356|109.993 +639402.148|220472.717|109.862 +639397.140|220477.125|109.774 +639392.178|220481.496|109.750 +639387.167|220485.909|109.747 +639382.220|220490.262|109.628 +639377.182|220494.696|109.472 +639372.277|220499.009|109.049 +639367.254|220503.429|108.777 +639362.320|220507.769|108.643 +639357.229|220512.253|108.591 +639352.295|220516.596|108.506 +639347.268|220521.016|107.906 +639342.264|220525.423|108.043 +639337.256|220529.822|107.284 +639327.222|220538.652|106.955 +639322.226|220543.047|106.634 +639317.185|220547.482|106.269 +639312.134|220551.926|106.019 +639307.090|220556.361|105.696 +639301.987|220560.853|105.519 +639296.931|220565.304|105.388 +639291.822|220569.799|105.284 +639286.787|220574.231|104.970 +639276.658|220583.137|103.940 +639266.402|220592.166|103.821 +639261.281|220596.677|104.016 +639256.148|220601.194|103.794 +639250.982|220605.748|104.010 +639245.825|220610.292|104.160 +639240.668|220614.834|104.315 +639235.544|220619.342|104.062 +639225.245|220628.416|104.370 +639214.921|220637.508|104.452 +639209.767|220642.049|104.751 +639194.243|220655.729|105.397 +639183.871|220664.870|105.869 +639168.351|220678.540|106.272 +639163.169|220683.109|106.601 +639152.803|220692.238|106.634 +639142.382|220701.431|107.774 +639137.154|220706.039|108.287 +639121.542|220719.792|108.689 +639116.336|220724.382|108.991 +639100.712|220738.141|109.064 +639074.630|220761.132|110.740 +639064.264|220770.261|110.972 +639059.043|220774.857|110.835 +639053.861|220779.423|110.978 +639033.046|220797.766|111.929 +639017.456|220811.515|113.547 +639012.232|220816.121|114.075 +639007.013|220820.720|114.291 +638965.454|220857.363|117.784 +638960.248|220861.951|118.049 +638955.045|220866.535|118.211 +638949.848|220871.113|118.318 +638944.694|220875.652|118.403 +638939.491|220880.233|118.318 +638934.291|220884.814|118.324 +638929.137|220889.352|118.266 +638923.983|220893.888|118.144 +638918.780|220898.472|118.266 +638913.580|220903.053|118.351 +638908.426|220907.592|118.324 +638903.226|220912.173|118.436 +638898.072|220916.711|118.510 +638892.920|220921.250|118.738 +638887.772|220925.788|118.894 +638882.621|220930.324|119.012 +638877.470|220934.862|119.134 +638872.319|220939.398|119.403 +638867.171|220943.933|119.598 +638862.026|220948.465|120.015 +638856.881|220953.001|120.372 +638851.779|220957.490|120.564 +638846.630|220962.026|120.771 +638841.485|220966.558|121.076 +638836.389|220971.048|121.408 +638826.139|220980.076|121.731 +638805.641|220998.126|122.505 +638800.554|221002.610|123.054 +638795.451|221007.103|123.191 +638790.334|221011.605|122.984 +638785.234|221016.098|123.203 +638775.039|221025.080|123.795 +638769.930|221029.576|123.850 +638764.822|221034.072|123.972 +638759.762|221038.528|124.048 +638754.696|221042.987|124.063 +638749.591|221047.483|124.249 +638744.537|221051.933|124.493 +638739.478|221056.389|124.657 +638734.363|221060.891|124.731 +638729.352|221065.305|124.913 +638719.227|221074.223|125.176 +638714.210|221078.637|125.340 +638709.129|221083.111|125.197 +638689.003|221100.832|125.803 +638683.977|221105.258|125.895 +638673.894|221114.128|125.703 +638668.871|221118.550|125.913 +638663.842|221122.982|126.005 +638658.858|221127.368|126.108 +638653.820|221131.803|126.151 +638648.784|221136.235|126.267 +638643.795|221140.627|126.349 +638623.785|221158.247|126.800 +638618.789|221162.646|126.876 +638613.821|221167.023|127.312 +638608.831|221171.418|127.498 +638603.884|221175.773|127.644 +638598.882|221180.178|127.739 +638593.926|221184.539|127.843 +638588.982|221188.895|128.056 +638583.978|221193.296|127.654 +638579.080|221197.609|127.891 +638574.059|221202.029|127.900 +638569.155|221206.348|128.096 +638564.230|221210.688|128.605 +638559.359|221214.977|128.669 +638549.553|221223.612|129.223 +638544.591|221227.983|129.415 +638534.838|221236.578|130.049 +638529.979|221240.858|130.336 +638525.051|221245.195|130.470 +638520.195|221249.474|130.799 +638466.331|221296.843|129.205 +638442.187|221318.082|129.388 +638427.551|221330.941|128.284 +638408.065|221348.050|125.764 +638359.827|221390.423|121.356 +638355.042|221394.626|120.814 +638350.378|221398.732|121.082 +638341.021|221406.968|121.466 +638327.125|221419.205|122.688 +638322.568|221423.220|123.383 +638308.977|221435.204|125.648 +638290.741|221451.261|127.068 +638286.230|221455.239|127.797 +638277.217|221463.176|128.778 +638272.776|221467.093|129.647 +638259.685|221478.648|132.981 +638250.581|221486.655|132.744 +638245.939|221490.730|132.311 +638241.330|221494.778|131.814 +638236.679|221498.859|131.128 +638232.177|221502.821|131.226 +638227.788|221506.686|131.665 +638223.331|221510.609|132.046 +638210.131|221522.234|133.305 +638201.154|221530.129|133.064 +638196.634|221534.097|132.692 +638187.722|221541.933|132.372 +638156.577|221569.295|130.241 +638152.066|221573.255|129.620 +638147.598|221577.178|128.973 +638143.266|221580.985|128.748 +638138.966|221584.767|128.928 +638134.601|221588.598|128.580 +638112.860|221607.697|126.797 +638108.528|221611.501|126.492 +638099.933|221619.048|125.742 +638095.532|221622.910|124.944 +638091.271|221626.650|124.557 +638082.584|221634.273|123.341 +638078.289|221638.043|122.859 +638069.767|221645.526|121.786 +638065.451|221649.312|121.045 +638061.223|221653.024|120.475 +638056.987|221656.743|120.122 +638052.799|221660.419|119.762 +638048.641|221664.070|119.311 +638044.508|221667.700|118.994 +638036.214|221674.979|118.068 +638032.075|221678.615|117.546 +638015.744|221692.953|116.150 +638007.712|221700.006|115.215 +638003.698|221703.530|114.892 +637995.487|221710.729|113.355 +637963.873|221738.469|109.128 +637959.914|221741.944|108.347 +637952.022|221748.860|106.759 +637948.060|221752.331|105.830 +637944.329|221755.608|105.574 +637932.957|221765.587|104.022 +637929.199|221768.885|103.519 +637925.444|221772.177|103.047 +637921.893|221775.301|103.129 +637918.104|221778.620|102.358 +638135.497|221585.529|128.909 +638139.719|221581.795|128.632 +638144.031|221577.991|128.781 +638148.393|221574.142|129.184 +638152.852|221570.213|129.821 +638166.084|221558.542|130.909 +638170.464|221554.677|131.256 +638179.309|221546.871|131.656 +638188.258|221538.974|132.408 +638192.690|221535.063|132.594 +638206.052|221523.271|133.097 +638219.348|221511.520|132.369 +638223.703|221507.665|131.768 +638237.200|221495.744|131.747 +638241.772|221491.711|132.067 +638255.537|221479.565|132.869 +638273.179|221463.944|129.367 +638277.693|221459.948|128.662 +638282.155|221456.001|127.961 +638291.165|221448.034|126.767 +638295.850|221443.900|126.782 +638304.994|221435.814|125.864 +638318.682|221423.704|123.648 +638323.279|221419.638|122.923 +638341.914|221403.170|121.350 +638351.445|221394.754|121.204 +638360.952|221386.366|121.280 +638370.669|221377.801|122.164 +638399.915|221352.024|124.791 +638424.625|221330.259|128.193 +638429.572|221325.900|128.955 +638449.323|221308.493|130.900 +638454.242|221304.149|130.854 +638463.822|221295.673|129.190 +638468.751|221291.323|129.266 +638518.330|221247.584|130.854 +638523.271|221243.220|130.439 +638528.184|221238.879|130.238 +638547.993|221221.384|129.174 +638557.929|221212.606|128.592 +638562.904|221208.216|128.623 +638567.872|221203.824|128.120 +638572.865|221199.414|127.882 +638577.879|221194.988|127.849 +638582.886|221190.568|127.791 +638587.922|221186.128|128.050 +638592.957|221181.680|127.833 +638597.953|221177.270|127.699 +638603.000|221172.814|127.644 +638607.993|221168.406|127.510 +638613.080|221163.914|127.373 +638618.045|221159.528|126.977 +638628.168|221150.588|126.779 +638633.252|221146.101|126.666 +638638.305|221141.645|126.779 +638643.322|221137.216|126.474 +638648.391|221132.742|126.230 +638653.484|221128.249|126.315 +638658.559|221123.771|126.172 +638663.634|221119.291|126.072 +638668.709|221114.813|125.971 +638678.871|221105.852|125.962 +638683.989|221101.335|125.846 +638689.061|221096.861|125.800 +638709.415|221078.896|125.249 +638714.551|221074.369|125.560 +638719.599|221069.913|125.203 +638729.806|221060.903|124.791 +638734.918|221056.392|124.737 +638740.023|221051.887|124.599 +638745.126|221047.385|124.395 +638750.222|221042.886|124.133 +638755.373|221038.339|123.975 +638760.482|221033.834|123.950 +638765.581|221029.332|123.776 +638770.741|221024.781|123.828 +638775.828|221020.289|123.447 +638780.982|221015.741|123.377 +638786.073|221011.248|123.036 +638791.221|221006.704|122.954 +638796.381|221002.153|123.094 +638801.465|220997.663|122.609 +638816.897|220984.042|122.006 +638822.039|220979.500|121.774 +638827.175|220974.965|121.317 +638832.326|220970.423|121.274 +638837.468|220965.882|121.024 +638842.610|220961.343|120.786 +638847.706|220956.844|120.570 +638852.900|220952.260|120.466 +638858.039|220947.722|120.049 +638863.129|220943.226|119.528 +638868.320|220938.642|119.238 +638873.468|220934.100|119.110 +638878.567|220929.601|118.988 +638883.761|220925.017|118.869 +638888.909|220920.472|118.726 +638894.057|220915.931|118.485 +638899.205|220911.386|118.345 +638904.354|220906.845|118.202 +638909.502|220902.300|118.125 +638914.699|220897.713|118.077 +638919.850|220893.171|118.162 +638924.998|220888.630|118.113 +638930.198|220884.043|118.186 +638935.300|220879.544|118.086 +638940.497|220874.957|118.183 +638945.648|220870.415|118.275 +638950.799|220865.870|118.098 +638955.944|220861.329|118.028 +638961.141|220856.745|118.040 +638966.246|220852.237|117.763 +639002.423|220820.278|114.273 +639017.944|220806.562|112.453 +639054.014|220774.729|111.057 +639059.198|220770.154|110.707 +639074.697|220756.471|110.073 +639084.997|220747.379|109.146 +639090.191|220742.792|108.856 +639095.326|220738.260|108.786 +639100.462|220733.730|108.774 +639105.613|220729.183|108.509 +639131.281|220706.539|108.305 +639141.528|220697.489|107.354 +639146.716|220692.902|106.677 +639151.836|220688.385|106.415 +639156.942|220683.880|106.412 +639177.388|220665.833|105.501 +639182.509|220661.316|105.431 +639187.599|220656.820|105.089 +639202.948|220643.278|104.623 +639208.036|220638.788|104.458 +639213.120|220634.301|104.364 +639218.222|220629.796|104.096 +639223.315|220625.304|103.961 +639233.453|220616.358|103.757 +639243.594|220607.418|104.242 +639248.672|220602.931|103.815 +639258.788|220594.007|103.559 +639263.823|220589.569|103.769 +639268.919|220585.067|103.276 +639278.963|220576.218|104.050 +639283.925|220571.848|104.568 +639288.951|220567.419|104.940 +639293.944|220563.018|105.147 +639299.000|220558.558|105.242 +639303.953|220554.191|105.394 +639308.992|220549.750|105.696 +639313.939|220545.388|105.949 +639318.928|220540.993|106.302 +639323.869|220536.637|106.641 +639328.874|220532.224|106.851 +639333.869|220527.816|106.705 +639338.807|220523.470|107.601 +639343.733|220519.126|107.692 +639348.756|220514.697|107.820 +639353.651|220510.388|108.241 +639358.677|220505.953|108.375 +639363.609|220501.606|108.500 +639368.577|220497.226|108.744 +639373.487|220492.898|109.085 +639378.450|220488.524|109.426 +639383.336|220484.217|109.582 +639388.340|220479.801|109.597 +639393.248|220475.473|109.625 +639398.210|220471.096|109.628 +639403.157|220466.731|109.771 +639408.058|220462.409|109.911 +639413.026|220458.026|109.917 +639417.967|220453.664|109.789 +639422.911|220449.299|109.661 +639427.830|220444.956|109.353 +639432.875|220440.497|108.884 +639447.734|220427.372|107.866 +639452.690|220422.995|107.445 +639457.606|220418.649|106.970 +639462.593|220414.241|106.382 +639467.589|220409.828|105.787 +639472.523|220405.466|105.278 +639477.452|220401.114|104.848 +639482.387|220396.752|104.400 +639487.321|220392.390|103.980 +639492.241|220388.047|103.699 +639497.096|220383.758|103.529 +639501.940|220379.488|103.486 +639506.740|220375.254|103.724 +639511.559|220371.002|103.867 +639516.387|220366.744|103.974 +639521.185|220362.514|104.284 +639525.891|220358.368|104.876 +639530.682|220354.141|104.934 +639540.155|220345.792|105.805 +639558.706|220329.464|109.186 +639563.406|220325.322|109.606 +639568.093|220321.189|109.811 +639572.839|220317.001|109.972 +639577.551|220312.843|110.064 +639582.224|220308.722|110.109 +639586.955|220304.550|110.149 +639591.652|220300.404|110.091 +639596.348|220296.256|110.045 +639601.088|220292.074|110.088 +639605.794|220287.920|110.039 +639610.433|220283.829|110.112 +639615.030|220279.772|110.137 +639619.684|220275.664|110.149 +639624.399|220271.503|110.137 +639629.026|220267.422|110.070 +639633.659|220263.328|109.972 +639638.335|220259.201|109.676 +639642.904|220255.169|109.698 +639647.573|220251.045|109.478 +639652.194|220246.967|109.277 +639656.772|220242.922|109.033 +639661.399|220238.838|108.838 +639666.035|220234.741|108.600 +639675.225|220226.624|108.110 +639679.785|220222.598|107.814 +639684.347|220218.565|107.509 +639688.977|220214.478|107.171 +639693.592|220210.397|106.650 +639698.179|220206.343|106.302 +639702.736|220202.316|105.869 +639707.265|220198.318|105.601 +639711.773|220194.334|105.193 +639716.227|220190.405|105.318 +639720.689|220186.467|105.174 +639725.127|220182.550|105.162 +639729.592|220178.606|105.037 +639738.495|220170.745|104.733 +639744.363|220162.759|104.696 +639739.891|220166.697|104.754 +639735.411|220170.645|104.867 +639730.875|220174.638|105.004 +639726.386|220178.588|104.940 +639721.811|220182.617|105.059 +639717.248|220186.631|105.135 +639712.715|220190.624|105.095 +639708.116|220194.675|105.388 +639703.455|220198.781|105.748 +639698.859|220202.832|106.068 +639694.132|220206.998|106.534 +639689.471|220211.107|106.970 +639684.780|220215.240|107.317 +639680.096|220219.367|107.646 +639675.417|220223.491|107.976 +639670.756|220227.594|108.232 +639666.056|220231.736|108.460 +639661.353|220235.878|108.713 +639656.705|220239.975|108.981 +639652.020|220244.099|109.183 +639647.293|220248.262|109.366 +639642.568|220252.423|109.558 +639637.951|220256.486|109.475 +639633.190|220260.683|109.908 +639628.508|220264.804|109.939 +639623.777|220268.970|109.975 +639619.096|220273.088|110.033 +639614.429|220277.197|110.045 +639609.674|220281.382|109.993 +639604.980|220285.512|109.905 +639600.271|220289.657|109.926 +639595.568|220293.796|109.923 +639590.765|220298.024|109.942 +639586.055|220302.169|110.015 +639581.319|220306.339|109.987 +639576.549|220310.536|109.878 +639571.815|220314.703|109.865 +639567.057|220318.887|109.719 +639562.302|220323.069|109.558 +639557.557|220327.242|109.073 +639543.603|220339.489|106.564 +639538.976|220343.552|105.708 +639529.396|220351.977|105.098 +639524.641|220356.155|104.760 +639519.862|220360.356|104.251 +639515.061|220364.577|103.907 +639510.300|220368.762|103.657 +639505.405|220373.072|103.632 +639500.608|220377.290|103.327 +639495.770|220381.548|103.303 +639490.851|220385.880|103.507 +639485.977|220390.174|103.782 +639481.045|220394.521|104.120 +639476.099|220398.882|104.611 +639471.164|220403.232|105.034 +639466.229|220407.578|105.488 +639461.273|220411.952|106.132 +639456.223|220416.405|106.759 +639451.294|220420.749|107.259 +639446.329|220425.123|107.698 +639431.430|220438.257|108.881 +639426.447|220442.646|109.195 +639421.518|220446.983|109.128 +639416.534|220451.372|109.506 +639411.533|220455.776|109.670 +639406.610|220460.111|109.652 +639401.645|220464.482|109.582 +639396.686|220468.846|109.472 +639391.727|220473.211|109.402 +639386.761|220477.579|109.387 +639381.748|220481.992|109.390 +639376.822|220486.327|109.113 +639371.848|220490.701|108.814 +639366.870|220495.081|108.582 +639361.905|220499.445|108.256 +639356.925|220503.828|108.082 +639351.944|220508.208|107.912 +639341.919|220517.026|107.332 +639336.945|220521.403|107.186 +639331.937|220525.807|106.903 +639326.929|220530.212|106.631 +639321.872|220534.662|106.388 +639316.877|220539.054|106.040 +639311.832|220543.492|105.702 +639306.828|220547.893|105.479 +639301.783|220552.328|105.153 +639296.778|220556.733|104.973 +639291.667|220561.228|104.879 +639286.625|220565.666|104.608 +639281.557|220570.119|104.105 +639276.518|220574.551|103.809 +639266.335|220583.512|103.407 +639256.054|220592.565|103.620 +639245.770|220601.627|104.001 +639240.649|220606.135|104.254 +639235.532|220610.637|103.931 +639225.229|220619.713|104.181 +639220.093|220624.231|104.120 +639209.749|220633.344|104.452 +639204.613|220637.867|104.507 +639194.243|220646.999|104.690 +639183.917|220656.098|105.107 +639147.588|220688.102|106.394 +639085.155|220743.103|108.966 +639079.949|220747.693|109.478 +639017.361|220802.832|111.825 +638996.498|220821.235|114.459 +638991.280|220825.841|115.010 +638986.101|220830.410|116.068 +638970.517|220844.144|116.903 +638949.306|220862.835|117.921 +638944.538|220867.032|117.946 +638928.975|220880.736|117.876 +638918.615|220889.858|118.116 +638913.461|220894.397|117.818 +638908.255|220898.978|117.751 +638903.101|220903.519|117.985 +638897.898|220908.101|118.080 +638892.744|220912.639|118.119 +638882.393|220921.762|118.589 +638877.242|220926.300|118.744 +638872.090|220930.839|118.939 +638866.939|220935.377|119.031 +638856.643|220944.457|119.665 +638851.501|220948.993|120.125 +638846.402|220953.488|120.360 +638841.257|220958.027|120.658 +638836.157|220962.523|120.905 +638831.003|220967.061|120.866 +638820.756|220976.096|121.305 +638810.566|220985.081|122.070 +638805.464|220989.580|122.192 +638800.316|220994.118|122.371 +638795.265|220998.568|122.633 +638790.172|221003.061|122.963 +638774.850|221016.564|123.103 +638769.796|221021.020|123.307 +638764.746|221025.470|123.603 +638759.640|221029.972|123.731 +638754.578|221034.431|123.780 +638749.521|221038.891|123.941 +638744.419|221043.389|124.206 +638739.365|221047.846|124.429 +638734.311|221052.299|124.727 +638729.294|221056.721|124.764 +638714.112|221070.102|125.316 +638693.944|221087.878|125.831 +638688.924|221092.304|125.947 +638678.862|221101.170|125.962 +638673.839|221105.596|126.114 +638663.790|221114.454|126.407 +638658.785|221118.861|126.215 +638653.759|221123.290|126.373 +638648.793|221127.670|126.724 +638643.786|221132.080|126.544 +638638.744|221136.521|126.565 +638633.764|221140.913|126.757 +638628.783|221145.306|126.977 +638618.780|221154.117|126.962 +638613.812|221158.497|127.388 +638608.825|221162.896|127.599 +638603.820|221167.306|127.602 +638598.867|221171.671|127.693 +638593.871|221176.072|127.858 +638588.918|221180.440|127.946 +638583.962|221184.808|128.044 +638578.958|221189.212|127.672 +638574.020|221193.565|128.007 +638569.036|221197.954|127.882 +638564.083|221202.322|128.086 +638559.219|221206.613|128.702 +638554.244|221210.999|128.717 +638544.436|221219.646|129.226 +638534.633|221228.291|129.848 +638529.729|221232.616|130.156 +638524.804|221236.956|130.287 +638519.988|221241.202|130.531 +638470.939|221284.414|129.391 +638466.053|221288.720|129.284 +638461.180|221293.015|129.293 +638446.884|221305.640|131.107 +638441.953|221309.977|130.366 +638432.214|221318.551|129.559 +638417.502|221331.499|127.955 +638412.637|221335.785|127.516 +638397.964|221348.687|125.160 +638393.145|221352.930|124.840 +638388.229|221357.252|123.859 +638373.744|221370.002|122.576 +638354.606|221386.857|121.146 +638345.236|221395.120|121.686 +638340.512|221399.284|121.582 +638331.097|221407.580|121.311 +638317.405|221419.675|123.493 +638303.793|221431.702|125.608 +638290.107|221443.782|126.803 +638276.577|221455.730|128.419 +638250.029|221479.190|133.036 +638240.973|221487.170|132.829 +638236.340|221491.245|132.198 +638231.747|221495.290|131.787 +638227.105|221499.374|131.156 +638218.275|221507.165|131.781 +638213.965|221510.972|132.378 +638200.691|221522.682|133.039 +638196.198|221526.632|132.524 +638187.377|221534.411|132.613 +638182.936|221538.322|132.415 +638165.054|221554.068|130.973 +638151.780|221565.757|129.955 +638147.351|221569.652|129.473 +638142.925|221573.544|128.784 +638138.545|221577.403|128.574 +638134.290|221581.155|128.717 +638129.904|221585.014|128.519 +638125.637|221588.775|128.644 +638108.190|221604.125|126.629 +638103.895|221607.904|126.242 +638099.604|221611.684|125.889 +638095.242|221615.518|125.252 +638090.893|221619.341|124.688 +638086.595|221623.120|124.139 +638077.987|221630.691|122.807 +638073.693|221634.468|122.332 +638069.447|221638.205|121.859 +638065.247|221641.899|121.366 +638060.989|221645.645|120.884 +638056.782|221649.342|120.411 +638052.591|221653.033|120.009 +638048.486|221656.651|119.988 +638040.107|221664.018|118.860 +638035.897|221667.722|118.238 +638031.688|221671.422|117.638 +638027.634|221674.988|117.260 +638011.309|221689.356|115.885 +638007.203|221692.968|115.379 +638003.208|221696.486|115.105 +637999.169|221700.037|114.474 +637995.149|221703.575|114.145 +637991.089|221707.145|113.456 +637975.330|221721.013|112.136 +637971.417|221724.457|111.889 +637967.491|221727.908|111.411 +637963.398|221731.498|110.094 +637955.363|221738.557|108.302 +637943.454|221749.015|105.580 +637939.626|221752.383|105.171 +637935.926|221755.641|105.046 +637932.168|221758.948|104.717 +637928.294|221762.353|103.977 +637924.593|221765.611|103.690 +637920.759|221768.979|102.925 +637917.482|221771.881|104.217 +638132.717|221579.979|128.629 +638136.960|221576.227|128.455 +638141.288|221572.407|128.690 +638145.751|221568.475|129.318 +638163.362|221552.940|130.714 +638167.708|221549.105|130.906 +638176.648|221541.220|131.777 +638181.080|221537.313|132.198 +638194.391|221525.563|132.613 +638198.871|221521.609|132.832 +638203.327|221517.674|132.951 +638212.069|221509.945|132.113 +638216.409|221506.101|131.424 +638225.368|221498.188|131.238 +638229.943|221494.156|131.817 +638234.576|221490.072|132.451 +638239.160|221486.030|132.847 +638243.765|221481.967|133.106 +638248.258|221477.998|133.067 +638279.342|221450.484|128.041 +638283.889|221446.461|127.559 +638292.887|221438.499|126.355 +638306.624|221426.350|124.990 +638324.827|221410.235|121.628 +638329.460|221406.139|121.155 +638338.951|221397.763|121.646 +638353.161|221385.214|121.417 +638367.670|221372.416|122.670 +638382.136|221359.657|123.536 +638387.040|221355.331|124.087 +638391.892|221351.055|124.657 +638396.848|221346.690|125.279 +638406.648|221338.052|126.562 +638431.309|221316.317|129.690 +638441.191|221307.603|130.543 +638446.159|221303.223|131.241 +638460.579|221290.470|129.345 +638514.959|221242.467|130.570 +638519.875|221238.123|130.382 +638524.831|221233.743|130.138 +638529.787|221229.363|129.909 +638534.743|221224.987|129.684 +638539.693|221220.610|129.437 +638544.637|221216.245|129.120 +638549.630|221211.831|128.827 +638554.589|221207.451|128.723 +638559.618|221203.013|128.809 +638564.537|221198.655|127.867 +638569.579|221194.208|128.111 +638574.514|221189.846|127.839 +638579.595|221185.362|128.028 +638584.602|221180.940|128.044 +638589.647|221176.484|127.928 +638594.640|221172.076|127.782 +638599.684|221167.620|127.715 +638604.732|221163.164|127.666 +638609.773|221158.711|127.605 +638614.793|221154.273|127.318 +638619.813|221149.838|127.017 +638624.903|221145.342|127.023 +638629.923|221140.907|126.754 +638635.001|221136.418|126.642 +638640.098|221131.919|126.754 +638645.136|221127.472|126.791 +638650.202|221122.994|126.541 +638655.264|221118.520|126.303 +638660.367|221114.018|126.596 +638670.501|221105.066|126.309 +638675.616|221100.546|126.178 +638680.673|221096.077|125.934 +638685.793|221091.554|125.904 +638690.862|221087.076|125.904 +638711.253|221069.066|125.435 +638716.359|221064.555|125.322 +638731.708|221050.988|124.761 +638736.802|221046.486|124.462 +638741.895|221041.987|124.130 +638747.037|221037.443|123.859 +638752.133|221032.938|123.673 +638757.290|221028.384|123.670 +638762.387|221023.879|123.530 +638772.686|221014.784|123.350 +638782.936|221005.731|123.289 +638788.066|221001.193|122.819 +638793.199|220996.654|122.423 +638798.332|220992.116|121.984 +638803.532|220987.526|122.045 +638818.945|220973.901|121.134 +638829.229|220964.815|120.802 +638834.423|220960.228|120.732 +638839.565|220955.683|120.533 +638844.704|220951.141|120.271 +638849.889|220946.557|119.890 +638855.025|220942.016|119.357 +638860.164|220937.471|118.988 +638865.354|220932.884|118.909 +638880.832|220919.208|118.284 +638885.977|220914.663|118.043 +638891.171|220910.076|117.955 +638896.365|220905.485|117.894 +638901.510|220900.941|117.818 +638906.655|220896.393|117.559 +638911.852|220891.806|117.674 +638927.390|220878.084|117.766 +638932.538|220873.539|117.741 +638937.732|220868.949|117.760 +638942.880|220864.404|117.766 +638948.022|220859.863|117.760 +638953.216|220855.276|117.818 +638958.410|220850.694|118.205 +638968.718|220841.575|116.851 +638973.924|220836.966|116.099 +638999.784|220814.094|113.270 +639004.993|220809.485|112.987 +639035.979|220782.093|110.505 +639041.151|220777.527|110.411 +639051.487|220768.401|110.505 +639087.645|220736.443|108.253 +639092.775|220731.917|108.369 +639164.537|220668.518|105.714 +639174.791|220659.459|105.199 +639184.932|220650.501|105.013 +639205.286|220632.521|104.632 +639210.425|220627.971|103.751 +639220.514|220619.067|104.035 +639225.595|220614.581|104.047 +639240.753|220601.197|104.065 +639245.797|220596.744|104.019 +639276.021|220570.049|103.641 +639280.987|220565.669|104.105 +639286.013|220561.237|104.452 +639291.014|220556.818|104.525 +639296.001|220552.420|104.821 +639301.000|220548.009|104.979 +639305.931|220543.660|105.351 +639310.921|220539.258|105.653 +639315.865|220534.894|105.912 +639320.797|220530.544|106.318 +639325.795|220526.134|106.574 +639330.700|220521.805|106.802 +639335.659|220517.428|107.015 +639350.481|220504.346|107.744 +639355.401|220500.009|107.945 +639360.366|220495.626|108.180 +639365.276|220491.292|108.469 +639370.196|220486.951|108.698 +639375.075|220482.648|108.887 +639379.998|220478.301|109.113 +639384.896|220473.976|109.186 +639389.840|220469.611|109.295 +639394.729|220465.298|109.466 +639399.688|220460.922|109.494 +639404.559|220456.618|109.448 +639409.478|220452.274|109.436 +639414.422|220447.910|109.277 +639419.354|220443.554|109.216 +639424.252|220439.229|109.064 +639429.178|220434.876|108.732 +639434.176|220430.457|108.250 +639439.081|220426.122|107.768 +639444.040|220421.742|107.643 +639448.947|220417.405|107.204 +639453.866|220413.056|106.689 +639458.871|220408.627|105.961 +639463.824|220404.247|105.281 +639468.753|220399.888|104.803 +639473.678|220395.536|104.388 +639478.567|220391.214|103.900 +639483.481|220386.870|103.611 +639488.342|220382.576|103.361 +639493.247|220378.244|103.209 +639498.017|220374.035|103.285 +639502.827|220369.789|103.446 +639507.630|220365.552|103.669 +639512.391|220361.352|103.876 +639517.192|220357.116|104.147 +639521.922|220352.946|104.583 +639526.638|220348.791|105.117 +639531.389|220344.597|105.427 +639536.035|220340.507|106.113 +639554.710|220324.051|108.661 +639559.343|220319.970|109.466 +639564.030|220315.836|109.664 +639568.734|220311.685|109.780 +639573.443|220307.528|109.871 +639578.210|220303.318|109.945 +639582.898|220299.179|109.908 +639587.579|220295.046|109.929 +639592.322|220290.861|109.914 +639597.016|220286.713|109.896 +639601.719|220282.561|109.865 +639606.422|220278.410|109.850 +639611.113|220274.271|109.917 +639615.767|220270.162|109.923 +639620.376|220266.093|109.914 +639625.033|220261.978|109.935 +639629.718|220257.842|109.847 +639638.996|220249.649|109.637 +639643.638|220245.549|109.554 +639648.299|220241.432|109.390 +639652.910|220237.359|109.241 +639657.559|220233.251|108.917 +639662.210|220229.139|108.600 +639666.779|220225.103|108.463 +639671.427|220220.995|108.204 +639676.036|220216.923|107.912 +639685.210|220208.818|107.342 +639689.867|220204.700|106.869 +639694.442|220200.655|106.564 +639699.063|220196.568|106.058 +639703.666|220192.499|105.671 +639708.192|220188.500|105.418 +639712.712|220184.507|105.223 +639717.242|220180.502|104.992 +639721.804|220176.469|104.632 +639726.251|220172.544|104.586 +639730.702|220168.615|104.550 +639739.647|220160.711|104.318 +639725.602|220170.654|104.662 +639721.109|220174.613|104.638 +639716.568|220178.615|104.867 +639712.026|220182.620|105.114 +639707.418|220186.683|105.449 +639698.268|220194.748|106.116 +639693.641|220198.830|106.604 +639689.054|220202.874|106.930 +639684.393|220206.983|107.378 +639679.724|220211.101|107.634 +639675.118|220215.161|107.854 +639670.500|220219.230|108.155 +639665.846|220223.336|108.415 +639661.207|220227.423|108.613 +639656.513|220231.559|108.832 +639651.847|220235.674|109.210 +639647.171|220239.795|109.396 +639642.507|220243.907|109.539 +639637.844|220248.012|109.426 +639628.465|220256.275|109.801 +639623.771|220260.415|109.911 +639619.062|220264.563|109.841 +639614.396|220268.675|109.835 +639609.687|220272.823|109.811 +639604.990|220276.962|109.737 +639600.223|220281.162|109.777 +639595.510|220285.317|109.838 +639590.807|220289.462|109.850 +639586.004|220293.696|109.878 +639581.252|220297.884|109.926 +639576.521|220302.053|109.881 +639571.739|220306.266|109.844 +639566.975|220310.463|109.725 +639562.211|220314.660|109.625 +639557.435|220318.863|109.308 +639552.783|220322.954|108.570 +639548.035|220327.132|108.125 +639533.883|220339.577|105.979 +639529.100|220343.787|105.473 +639524.330|220347.981|104.900 +639519.554|220352.184|104.391 +639514.705|220356.454|104.031 +639509.895|220360.691|103.769 +639505.033|220364.970|103.519 +639500.172|220369.253|103.297 +639495.301|220373.541|103.148 +639490.357|220377.897|103.160 +639485.459|220382.219|103.260 +639480.536|220386.559|103.526 +639475.559|220390.948|103.849 +639470.557|220395.362|104.382 +639465.577|220399.760|104.809 +639460.590|220404.162|105.296 +639455.515|220408.642|106.077 +639450.504|220413.071|106.823 +639445.512|220417.469|107.070 +639440.480|220421.916|107.674 +639435.469|220426.336|108.137 +639430.485|220430.734|108.433 +639425.486|220435.145|108.869 +639420.491|220439.546|108.930 +639415.532|220443.920|109.125 +639410.493|220448.361|109.186 +639405.546|220452.722|109.326 +639400.523|220457.151|109.332 +639395.546|220461.537|109.366 +639390.495|220465.987|109.231 +639385.554|220470.337|109.012 +639380.556|220474.744|108.905 +639375.554|220479.149|108.823 +639370.519|220483.583|108.628 +639365.547|220487.960|108.341 +639360.527|220492.383|108.070 +639355.550|220496.766|107.860 +639350.484|220501.228|107.582 +639345.559|220505.563|106.967 +639340.538|220509.985|106.766 +639335.464|220514.457|106.622 +639330.425|220518.895|106.607 +639325.411|220523.311|106.412 +639320.355|220527.764|106.168 +639315.362|220532.160|105.787 +639310.308|220536.613|105.562 +639305.261|220541.054|105.257 +639300.232|220545.482|104.797 +639295.178|220549.932|104.623 +639290.188|220554.328|104.300 +639285.080|220558.830|104.214 +639274.973|220567.727|103.443 +639269.889|220572.204|103.148 +639264.805|220576.688|103.410 +639239.192|220599.267|104.047 +639213.604|220621.807|103.221 +639187.724|220644.637|105.059 +639151.724|220676.361|104.723 +639146.493|220680.985|105.952 +639130.964|220694.676|106.250 +639115.440|220708.362|106.695 +639105.110|220717.475|107.497 +639099.908|220722.066|107.747 +639084.360|220735.775|108.482 +639079.181|220740.338|108.308 +639073.978|220744.929|108.762 +639063.597|220754.085|109.274 +639053.218|220763.238|109.820 +638996.013|220813.695|113.057 +638990.883|220818.230|114.023 +638980.493|220827.402|115.346 +638964.908|220841.154|116.516 +638954.588|220850.265|117.787 +638949.385|220854.849|117.635 +638944.237|220859.384|117.559 +638939.034|220863.972|117.589 +638933.880|220868.513|117.559 +638928.725|220873.058|117.501 +638923.522|220877.642|117.537 +638918.320|220882.229|117.595 +638902.759|220895.942|117.546 +638897.654|220900.441|117.711 +638892.454|220905.025|117.763 +638887.248|220909.612|117.711 +638882.097|220914.154|117.869 +638876.946|220918.699|118.016 +638861.447|220932.363|118.738 +638856.296|220936.901|118.878 +638851.151|220941.440|119.268 +638845.957|220946.018|119.726 +638840.812|220950.556|120.104 +638835.712|220955.049|120.381 +638820.256|220968.671|120.640 +638815.114|220973.206|121.030 +638810.015|220977.699|121.295 +638804.925|220982.192|121.768 +638799.773|220986.730|121.911 +638794.674|220991.226|122.146 +638779.343|221004.744|123.252 +638774.234|221009.246|123.274 +638758.860|221022.791|123.459 +638753.800|221027.247|123.578 +638748.686|221031.752|123.581 +638743.577|221036.257|123.679 +638738.530|221040.707|124.060 +638733.434|221045.200|124.468 +638728.386|221049.653|124.855 +638718.215|221058.614|125.169 +638713.161|221063.070|125.435 +638708.089|221067.539|125.447 +638703.030|221071.998|125.700 +638692.935|221080.892|125.803 +638687.866|221085.360|125.934 +638677.823|221094.209|126.200 +638672.757|221098.674|126.413 +638667.731|221103.103|126.550 +638662.717|221107.526|126.821 +638657.694|221111.951|126.986 +638652.661|221116.377|126.450 +638647.635|221120.806|126.632 +638642.652|221125.198|126.739 +638637.638|221129.621|127.111 +638632.636|221134.025|127.017 +638627.625|221138.438|126.870 +638622.636|221142.834|126.995 +638617.655|221147.223|127.239 +638612.620|221151.664|127.413 +638607.685|221156.013|127.666 +638602.683|221160.421|127.702 +638597.736|221164.779|127.830 +638592.725|221169.193|127.843 +638587.775|221173.551|127.986 +638582.765|221177.968|128.001 +638577.796|221182.345|127.992 +638572.813|221186.731|127.836 +638567.881|221191.081|128.236 +638562.882|221195.482|127.961 +638553.056|221204.147|128.733 +638548.142|221208.475|128.888 +638543.232|221212.807|129.071 +638538.282|221217.168|129.388 +638533.423|221221.451|129.647 +638528.516|221225.779|129.924 +638523.621|221230.098|130.299 +638518.738|221234.399|130.406 +638513.870|221238.690|130.622 +638464.831|221281.871|129.373 +638460.012|221286.117|129.415 +638445.687|221298.764|131.393 +638440.813|221303.055|131.086 +638435.924|221307.356|130.692 +638401.692|221337.464|126.882 +638372.489|221363.140|123.094 +638358.032|221375.860|121.905 +638343.895|221388.314|121.987 +638339.092|221392.542|121.698 +638324.995|221404.962|121.637 +638320.377|221409.031|121.942 +638306.850|221420.982|124.560 +638288.547|221437.128|126.440 +638279.579|221445.046|127.910 +638239.449|221480.464|133.253 +638225.724|221492.544|132.046 +638221.198|221496.527|131.768 +638207.753|221508.369|131.750 +638199.115|221515.992|132.936 +638194.677|221519.902|132.948 +638176.798|221535.639|132.034 +638172.354|221539.550|131.607 +638163.478|221547.362|131.113 +638159.031|221551.273|130.738 +638145.802|221562.916|130.004 +638141.310|221566.866|129.226 +638136.866|221570.780|128.711 +638132.531|221574.596|128.495 +638128.282|221578.342|128.681 +638123.942|221582.167|128.452 +638119.629|221585.965|128.135 +638115.261|221589.812|127.830 +638110.903|221593.646|127.346 +638102.219|221601.287|126.361 +638097.882|221605.106|125.797 +638093.529|221608.932|125.197 +638089.256|221612.693|124.727 +638084.928|221616.503|124.264 +638080.636|221620.279|123.758 +638076.399|221624.010|123.274 +638072.105|221627.790|122.783 +638067.844|221631.539|122.240 +638063.582|221635.288|121.713 +638059.449|221638.930|121.512 +638055.231|221642.643|121.204 +638051.052|221646.325|120.847 +638042.618|221653.740|119.448 +638038.336|221657.505|118.717 +638034.325|221661.040|118.692 +638021.736|221672.111|116.659 +638017.728|221675.646|116.931 +638001.455|221689.969|115.230 +637997.398|221693.541|114.730 +637981.308|221707.699|112.804 +637977.418|221711.128|112.837 +637965.644|221721.491|111.539 +637961.630|221725.021|110.932 +637945.545|221739.149|106.942 +637937.715|221746.034|105.437 +637933.896|221749.393|105.080 +637930.074|221752.758|104.711 +637926.395|221755.998|104.483 +637918.308|221763.091|101.803 +638124.469|221579.613|128.559 +638128.724|221575.849|128.416 +638133.092|221571.990|128.562 +638137.533|221568.067|129.074 +638141.971|221564.150|129.598 +638146.415|221560.228|130.168 +638155.376|221552.318|131.226 +638168.626|221540.601|131.570 +638173.058|221536.685|131.701 +638195.433|221516.912|132.997 +638204.163|221509.180|131.793 +638212.996|221501.358|131.177 +638217.626|221497.271|131.723 +638222.201|221493.229|132.015 +638240.568|221477.002|133.204 +638285.386|221437.292|126.873 +638289.888|221433.303|126.154 +638308.249|221417.044|124.252 +638312.848|221412.969|123.554 +638317.341|221408.986|122.530 +638322.020|221404.846|122.326 +638331.432|221396.525|122.316 +638336.144|221392.356|122.073 +638340.887|221388.165|122.015 +638355.054|221375.634|121.622 +638364.732|221367.094|122.618 +638374.394|221358.562|123.304 +638389.064|221345.617|125.054 +638423.640|221315.119|130.144 +638438.289|221302.177|130.918 +638443.184|221297.855|131.052 +638457.577|221285.108|129.363 +638462.499|221280.756|129.427 +638511.798|221237.194|130.604 +638516.736|221232.829|130.631 +638521.716|221228.428|130.592 +638526.623|221224.078|129.952 +638531.564|221219.707|129.589 +638536.468|221215.370|129.385 +638541.458|221210.954|129.071 +638546.417|221206.567|128.943 +638551.422|221202.145|128.787 +638561.322|221193.382|127.949 +638571.341|221184.524|127.891 +638576.364|221180.086|128.019 +638581.372|221175.661|128.016 +638586.425|221171.192|128.016 +638591.369|221166.821|127.897 +638596.414|221162.359|127.849 +638601.458|221157.900|127.794 +638606.490|221153.450|127.632 +638611.519|221149.000|127.462 +638616.488|221144.605|127.151 +638621.569|221140.112|127.044 +638626.543|221135.713|126.858 +638631.661|221131.196|127.239 +638636.681|221126.758|127.056 +638641.704|221122.318|126.925 +638646.815|221117.800|126.672 +638651.826|221113.378|127.062 +638656.947|221108.851|126.992 +638661.973|221104.410|126.992 +638667.072|221099.899|126.663 +638672.132|221095.428|126.450 +638677.195|221090.954|126.349 +638682.251|221086.482|126.160 +638687.351|221081.971|125.874 +638692.410|221077.500|125.730 +638702.637|221068.465|125.691 +638707.733|221063.957|125.447 +638712.844|221059.440|125.416 +638717.889|221054.981|125.124 +638728.124|221045.928|124.551 +638738.347|221036.885|123.831 +638748.539|221027.875|123.432 +638753.691|221023.321|123.417 +638758.790|221018.816|123.338 +638789.544|220991.628|122.201 +638810.085|220973.459|120.945 +638830.650|220955.284|120.274 +638835.789|220950.739|120.107 +638840.973|220946.152|119.726 +638851.242|220937.066|118.909 +638871.901|220918.802|117.900 +638877.043|220914.255|117.781 +638882.185|220909.707|117.647 +638887.379|220905.120|117.604 +638892.524|220900.572|117.513 +638902.912|220891.394|117.400 +638918.396|220877.712|117.351 +638923.541|220873.164|117.367 +638928.735|220868.577|117.498 +638933.880|220864.026|117.284 +638944.212|220854.898|117.431 +638949.409|220850.301|117.007 +638959.705|220841.200|116.669 +638964.905|220836.594|116.089 +638975.265|220827.426|114.992 +638995.958|220809.117|112.895 +639001.119|220804.554|112.663 +639006.346|220799.918|111.484 +639016.673|220790.792|111.228 +639032.242|220777.021|109.972 +639047.750|220763.320|109.780 +639052.932|220758.739|109.417 +639058.065|220754.201|109.070 +639068.419|220745.051|108.832 +639073.551|220740.512|108.607 +639078.739|220735.925|108.332 +639089.002|220726.857|108.213 +639094.202|220722.261|107.790 +639130.144|220690.488|106.232 +639135.310|220685.916|105.799 +639140.434|220681.387|105.351 +639150.611|220672.398|105.751 +639160.840|220663.361|105.412 +639165.973|220658.819|104.982 +639176.233|220649.749|104.373 +639181.265|220645.308|104.815 +639191.378|220636.377|105.086 +639196.496|220631.857|105.098 +639201.589|220627.352|104.775 +639206.630|220622.896|104.504 +639216.820|220613.889|104.019 +639231.999|220600.474|103.614 +639242.064|220591.583|103.745 +639247.068|220587.158|103.571 +639252.098|220582.720|103.733 +639267.203|220569.363|103.029 +639272.187|220564.962|103.236 +639277.186|220560.546|103.291 +639282.151|220556.169|103.772 +639287.134|220551.767|104.010 +639292.078|220547.403|104.214 +639297.062|220543.004|104.528 +639301.990|220538.655|104.891 +639306.965|220534.266|105.315 +639311.869|220529.938|105.482 +639316.859|220525.533|105.784 +639321.738|220521.223|106.186 +639326.752|220516.798|106.314 +639331.614|220512.506|106.482 +639336.640|220508.065|106.513 +639341.465|220503.807|107.049 +639346.424|220499.430|107.290 +639351.328|220495.102|107.585 +639356.245|220490.761|107.796 +639361.113|220486.464|108.006 +639366.026|220482.126|108.277 +639370.891|220477.829|108.536 +639375.780|220473.513|108.646 +639380.675|220469.188|108.692 +639385.567|220464.869|108.820 +639390.437|220460.565|109.097 +639395.287|220456.282|109.189 +639400.209|220451.930|109.122 +639405.089|220447.617|109.009 +639409.975|220443.298|108.887 +639414.852|220438.988|108.863 +639419.747|220434.660|108.698 +639424.639|220430.335|108.591 +639429.516|220426.022|108.268 +639434.448|220421.657|107.909 +639449.169|220408.630|106.488 +639454.092|220404.271|105.616 +639459.021|220399.907|105.071 +639463.964|220395.530|104.467 +639468.850|220391.204|103.946 +639473.736|220386.879|103.465 +639478.583|220382.594|103.273 +639483.435|220378.305|103.081 +639488.278|220374.023|102.953 +639493.049|220369.807|103.004 +639497.852|220365.565|103.205 +639502.595|220361.377|103.465 +639507.347|220357.180|103.705 +639512.099|220352.986|103.958 +639516.841|220348.798|104.288 +639521.526|220344.661|104.659 +639526.211|220340.531|105.385 +639530.862|220336.426|106.004 +639535.501|220332.338|106.729 +639554.048|220315.977|109.094 +639558.760|220311.816|109.420 +639563.390|220307.729|109.652 +639568.148|220303.522|109.740 +639572.824|220299.389|109.731 +639577.542|220295.220|109.789 +639582.221|220291.087|109.814 +639586.912|220286.938|109.774 +639591.615|220282.781|109.686 +639596.318|220278.626|109.637 +639601.018|220274.469|109.603 +639605.724|220270.311|109.579 +639610.321|220266.248|109.594 +639614.972|220262.140|109.628 +639619.663|220257.994|109.728 +639624.323|220253.874|109.737 +639628.944|220249.789|109.704 +639633.601|220245.671|109.503 +639638.304|220241.514|109.350 +639642.892|220237.463|109.558 +639647.579|220233.315|109.253 +639652.218|220229.212|108.966 +639656.854|220225.109|108.692 +639661.494|220221.007|108.454 +639666.175|220216.868|108.274 +639670.778|220212.792|107.979 +639679.974|220204.660|107.528 +639684.619|220200.549|107.095 +639689.255|220196.446|106.732 +639693.903|220192.334|106.330 +639698.463|220188.302|106.144 +639703.062|220184.230|105.763 +639707.589|220180.231|105.522 +639716.742|220172.129|104.851 +639725.880|220164.043|104.099 +639730.391|220160.053|103.788 +639734.832|220156.127|103.809 +639734.676|220154.179|103.577 +639730.266|220158.066|103.608 +639725.813|220161.994|103.858 +639721.286|220165.990|104.236 +639716.787|220169.962|104.751 +639712.264|220173.952|105.144 +639707.765|220177.926|105.461 +639703.297|220181.864|105.638 +639698.728|220185.897|106.068 +639694.183|220189.908|106.403 +639689.706|220193.858|106.692 +639685.164|220197.863|106.802 +639680.586|220201.902|107.113 +639676.017|220205.934|107.400 +639671.433|220209.982|107.790 +639666.879|220213.999|108.043 +639662.316|220218.026|108.366 +639657.738|220222.061|108.521 +639653.102|220226.152|108.735 +639648.518|220230.200|108.972 +639643.873|220234.296|109.262 +639639.261|220238.362|109.414 +639625.396|220250.591|109.597 +639620.778|220254.660|109.579 +639616.167|220258.726|109.561 +639611.521|220262.816|109.451 +639606.867|220266.919|109.417 +639602.207|220271.025|109.430 +639597.540|220275.139|109.503 +639592.843|220279.279|109.478 +639588.079|220283.479|109.564 +639583.425|220287.584|109.643 +639578.728|220291.727|109.682 +639574.001|220295.890|109.625 +639569.273|220300.057|109.582 +639564.558|220304.214|109.497 +639559.803|220308.402|109.350 +639555.066|220312.575|109.119 +639550.421|220316.662|108.671 +639545.758|220320.765|108.027 +639541.091|220324.871|107.418 +639536.345|220329.046|106.988 +639531.703|220333.131|106.260 +639527.019|220337.249|105.479 +639522.325|220341.379|104.772 +639517.545|220345.585|104.297 +639512.797|220349.764|103.943 +639507.990|220354.001|103.675 +639503.186|220358.231|103.398 +639498.334|220362.504|103.123 +639493.530|220366.735|102.879 +639488.672|220371.018|102.696 +639483.770|220375.337|102.797 +639478.808|220379.717|103.017 +639473.907|220384.036|103.172 +639468.951|220388.409|103.394 +639463.937|220392.838|104.044 +639458.978|220397.218|104.696 +639453.891|220401.708|105.220 +639448.901|220406.115|105.808 +639443.854|220410.575|106.482 +639433.844|220419.414|107.668 +639428.812|220423.852|107.948 +639423.831|220428.247|108.265 +639418.820|220432.666|108.457 +639413.870|220437.031|108.582 +639408.884|220441.426|108.640 +639403.888|220445.834|108.802 +639398.850|220450.278|108.908 +639393.869|220454.670|109.000 +639388.874|220459.071|108.835 +639383.936|220463.421|108.607 +639378.892|220467.865|108.466 +639373.942|220472.227|108.384 +639368.906|220476.664|108.213 +639363.926|220481.054|108.021 +639358.906|220485.476|107.750 +639353.931|220489.856|107.543 +639348.917|220494.276|107.272 +639343.894|220498.702|107.080 +639338.844|220503.149|106.723 +639333.851|220507.547|106.308 +639328.773|220512.021|106.235 +639323.750|220516.447|106.129 +639318.700|220520.897|105.833 +639313.664|220525.332|105.427 +639308.601|220529.791|105.278 +639303.505|220534.281|105.004 +639298.482|220538.701|104.504 +639293.392|220543.187|104.208 +639288.354|220547.622|103.894 +639283.266|220552.106|103.596 +639278.195|220556.568|103.138 +639273.071|220561.088|103.285 +639267.923|220565.627|103.157 +639262.884|220570.068|102.965 +639242.338|220588.185|103.416 +639237.199|220592.723|103.961 +639201.229|220624.447|104.836 +639185.806|220638.047|104.836 +639180.631|220642.610|104.912 +639160.045|220660.764|105.239 +639154.808|220665.388|105.665 +639149.660|220669.923|105.491 +639128.970|220688.172|105.900 +639103.135|220710.962|106.897 +639097.939|220715.546|107.006 +639092.742|220720.130|107.211 +639087.584|220724.681|107.601 +639072.046|220738.394|108.506 +639046.220|220761.174|109.314 +639041.029|220765.759|109.847 +639025.460|220779.490|109.969 +639020.272|220784.071|110.627 +639009.927|220793.197|110.950 +639004.755|220797.760|111.213 +638994.349|220806.959|112.849 +638978.789|220820.702|114.736 +638973.626|220825.256|115.004 +638963.204|220834.458|115.995 +638942.533|220852.700|117.208 +638937.385|220857.242|117.321 +638927.031|220866.370|117.306 +638901.220|220889.127|117.187 +638896.069|220893.671|117.373 +638885.718|220902.800|117.491 +638880.567|220907.342|117.485 +638875.416|220911.886|117.613 +638870.265|220916.428|117.644 +638865.114|220920.969|117.723 +638859.965|220925.514|117.967 +638854.772|220930.101|118.439 +638849.669|220934.600|118.625 +638829.037|220952.812|119.851 +638823.886|220957.353|119.988 +638808.491|220970.938|120.588 +638782.881|220993.548|122.496 +638772.625|221002.598|122.716 +638767.522|221007.097|122.908 +638752.246|221020.572|123.072 +638747.140|221025.074|123.258 +638736.975|221034.044|123.502 +638731.876|221038.543|123.813 +638711.640|221056.407|125.361 +638706.532|221060.915|125.535 +638701.466|221065.384|125.630 +638691.338|221074.321|125.919 +638686.318|221078.749|126.008 +638676.192|221087.683|126.443 +638671.166|221092.115|126.532 +638666.106|221096.583|126.785 +638661.092|221101.009|127.047 +638656.005|221105.493|127.004 +638651.019|221109.891|127.029 +638645.965|221114.344|126.828 +638640.927|221118.785|126.840 +638635.910|221123.217|127.117 +638630.877|221127.655|127.260 +638625.882|221132.059|127.257 +638620.822|221136.518|127.099 +638610.852|221145.315|127.449 +638605.871|221149.710|127.699 +638600.876|221154.117|127.782 +638595.923|221158.488|127.821 +638590.930|221162.893|127.983 +638585.959|221167.276|127.870 +638580.957|221171.686|127.977 +638575.995|221176.063|128.004 +638571.011|221180.455|127.849 +638566.068|221184.820|128.086 +638556.134|221193.580|128.193 +638551.254|221197.887|128.662 +638546.301|221202.261|128.867 +638541.412|221206.574|129.269 +638536.432|221210.966|129.269 +638526.620|221219.628|129.781 +638511.978|221232.549|130.491 +638507.028|221236.916|130.869 +638453.148|221284.417|129.491 +638443.657|221292.808|131.131 +638433.964|221301.351|130.933 +638429.093|221305.646|130.671 +638424.213|221309.944|130.385 +638404.551|221327.244|127.422 +638394.764|221335.864|126.251 +638389.926|221340.125|125.764 +638351.055|221374.348|121.405 +638346.349|221378.499|121.692 +638341.673|221382.629|122.161 +638336.979|221386.769|122.234 +638332.243|221390.950|122.350 +638327.552|221395.087|122.475 +638318.179|221403.356|122.826 +638290.723|221427.609|126.008 +638286.069|221431.715|126.181 +638241.373|221471.220|133.167 +638236.871|221475.191|133.189 +638223.197|221487.246|133.052 +638218.561|221491.327|132.451 +638213.956|221495.381|131.777 +638209.280|221499.493|131.034 +638204.818|221503.428|131.137 +638200.429|221507.308|131.622 +638196.149|221511.094|132.677 +638169.342|221534.719|131.607 +638164.877|221538.654|131.342 +638151.597|221550.355|130.458 +638147.140|221554.278|130.068 +638142.800|221558.103|129.997 +638138.338|221562.032|129.373 +638133.921|221565.918|128.986 +638129.499|221569.814|128.589 +638125.158|221573.636|128.358 +638120.861|221577.424|128.327 +638116.511|221581.256|128.080 +638112.146|221585.096|127.550 +638107.803|221588.922|127.132 +638103.463|221592.741|126.754 +638099.110|221596.572|126.334 +638094.806|221600.364|125.913 +638086.159|221607.972|124.977 +638081.867|221611.748|124.441 +638077.588|221615.515|123.981 +638068.977|221623.093|122.896 +638060.583|221630.484|122.356 +638056.377|221634.191|122.076 +638035.209|221652.805|118.595 +638031.027|221656.487|118.074 +638014.671|221670.888|116.854 +638010.614|221674.458|116.504 +638006.594|221677.996|116.108 +637998.450|221685.165|115.138 +637974.245|221706.459|111.874 +637970.515|221709.748|112.118 +637966.558|221713.231|111.694 +637962.736|221716.599|111.606 +637958.810|221720.053|111.127 +637942.784|221734.135|107.543 +637934.865|221741.087|105.510 +637931.052|221744.443|105.162 +637927.230|221747.805|104.589 +637923.411|221751.164|104.053 +637919.336|221754.736|102.373 +637915.538|221758.074|101.749 +638119.571|221576.955|128.294 +638123.854|221573.166|128.288 +638128.194|221569.329|128.559 +638132.571|221565.464|128.769 +638137.042|221561.514|129.205 +638141.508|221557.573|129.885 +638150.414|221549.706|130.442 +638163.731|221537.941|131.348 +638168.178|221534.012|131.567 +638195.119|221510.201|132.503 +638199.341|221506.452|131.457 +638208.329|221498.499|131.110 +638212.941|221494.430|131.835 +638217.620|221490.306|132.661 +638222.216|221486.246|133.100 +638231.323|221478.194|133.311 +638235.856|221474.185|133.189 +638240.376|221470.186|133.027 +638244.966|221466.130|133.262 +638263.050|221450.106|131.457 +638280.719|221434.403|126.626 +638285.279|221430.355|125.953 +638289.891|221426.274|125.880 +638294.502|221422.186|125.535 +638317.625|221401.689|123.146 +638331.725|221389.198|122.484 +638336.443|221385.019|122.283 +638341.152|221380.846|121.737 +638345.913|221376.631|121.859 +638365.201|221359.574|123.170 +638379.722|221346.736|124.191 +638384.696|221342.347|125.279 +638404.325|221325.007|127.772 +638414.259|221316.238|129.531 +638424.064|221307.572|130.503 +638428.977|221303.223|130.759 +638433.839|221298.925|131.015 +638438.804|221294.533|131.323 +638443.684|221290.214|131.403 +638453.224|221281.747|129.519 +638458.092|221277.437|129.555 +638507.448|221233.765|130.528 +638512.371|221229.406|130.449 +638522.222|221220.680|129.915 +638527.175|221216.294|129.677 +638532.119|221211.914|129.394 +638537.078|221207.525|129.275 +638542.019|221203.148|128.989 +638546.978|221198.755|128.900 +638556.869|221189.989|128.025 +638561.898|221185.539|128.217 +638566.884|221181.123|127.977 +638571.892|221176.691|127.971 +638576.912|221172.253|128.105 +638581.911|221167.824|128.086 +638586.959|221163.359|128.047 +638592.003|221158.894|128.001 +638596.990|221154.477|127.870 +638602.071|221149.978|127.730 +638607.042|221145.574|127.504 +638617.164|221136.616|127.398 +638622.221|221132.141|127.629 +638627.284|221127.655|127.364 +638632.316|221123.201|127.349 +638637.370|221118.721|127.023 +638642.448|221114.225|127.004 +638647.535|221109.723|127.132 +638652.604|221105.233|127.041 +638657.639|221100.777|127.141 +638667.801|221091.776|126.739 +638672.858|221087.296|126.562 +638677.963|221082.773|126.364 +638698.281|221064.777|125.712 +638708.443|221055.780|125.541 +638713.564|221051.238|124.929 +638744.202|221024.086|123.170 +638749.301|221019.572|123.078 +638769.894|221001.342|122.880 +638790.422|220983.146|121.387 +638805.879|220969.451|120.543 +638811.014|220964.900|120.265 +638816.160|220960.346|120.305 +638826.425|220951.245|119.543 +638831.613|220946.652|119.351 +638836.746|220942.101|118.930 +638841.885|220937.550|118.641 +638847.072|220932.954|118.476 +638852.211|220928.400|118.174 +638857.347|220923.850|117.772 +638862.535|220919.253|117.559 +638867.677|220914.696|117.488 +638872.871|220910.100|117.488 +638878.061|220905.504|117.299 +638888.394|220896.354|117.199 +638898.727|220887.197|116.800 +638903.921|220882.601|116.708 +638919.453|220868.858|117.293 +638940.171|220850.512|116.928 +638976.421|220818.376|113.959 +639002.384|220795.352|111.054 +639017.883|220781.630|110.246 +639023.055|220777.049|109.856 +639033.431|220767.868|109.844 +639048.957|220754.121|109.000 +639095.457|220712.955|107.110 +639100.602|220708.398|106.851 +639116.108|220694.670|105.912 +639131.488|220681.061|105.872 +639136.590|220676.544|105.748 +639141.680|220672.042|105.885 +639151.937|220662.965|105.705 +639162.105|220653.964|105.534 +639167.226|220649.432|105.312 +639177.455|220640.382|105.171 +639202.869|220617.888|104.711 +639212.986|220608.933|104.458 +639243.441|220581.967|103.117 +639258.632|220568.516|102.459 +639263.634|220564.097|102.995 +639268.578|220559.723|103.071 +639273.620|220555.263|103.209 +639278.640|220550.822|103.056 +639283.608|220546.430|103.483 +639288.539|220542.072|103.788 +639293.514|220537.673|104.160 +639298.442|220533.318|104.531 +639303.414|220528.923|104.973 +639308.364|220524.549|105.168 +639313.317|220520.166|105.333 +639318.248|220515.807|105.732 +639323.192|220511.436|106.013 +639328.106|220507.090|106.135 +639333.059|220502.710|106.382 +639337.920|220498.412|106.586 +639342.858|220494.047|106.997 +639347.781|220489.692|107.122 +639352.697|220485.345|107.326 +639357.562|220481.044|107.552 +639362.518|220476.661|107.875 +639367.401|220472.342|107.994 +639372.283|220468.023|108.116 +639377.163|220463.707|108.305 +639382.046|220459.388|108.482 +639386.932|220455.072|108.655 +639391.821|220450.750|108.817 +639396.732|220446.410|108.829 +639401.614|220442.091|108.689 +639406.549|220437.726|108.552 +639411.389|220433.444|108.411 +639416.284|220429.113|108.250 +639421.170|220424.790|108.180 +639426.035|220420.490|107.930 +639430.964|220416.125|107.598 +639435.789|220411.855|107.305 +639440.745|220407.463|106.476 +639450.547|220398.782|105.336 +639455.473|220394.420|104.818 +639460.374|220390.077|104.138 +639465.281|220385.730|103.465 +639470.097|220381.466|103.090 +639474.946|220377.174|102.879 +639479.790|220372.892|102.730 +639484.584|220368.649|102.590 +639489.284|220364.495|102.760 +639494.082|220360.258|102.980 +639498.770|220356.116|103.282 +639503.512|220351.928|103.565 +639508.249|220347.743|103.888 +639512.934|220343.607|104.257 +639517.618|220339.468|104.626 +639522.267|220335.365|105.248 +639526.912|220331.265|105.885 +639531.478|220327.239|106.732 +639536.111|220323.152|107.464 +639540.725|220319.080|108.027 +639549.988|220310.902|108.972 +639554.661|220306.772|109.219 +639559.285|220302.687|109.466 +639563.933|220298.579|109.597 +639568.602|220294.449|109.603 +639573.251|220290.340|109.762 +639577.875|220286.252|109.798 +639582.572|220282.098|109.707 +639587.229|220277.977|109.576 +639591.877|220273.865|109.521 +639596.467|220269.808|109.530 +639601.125|220265.688|109.460 +639605.773|220261.579|109.472 +639610.366|220257.519|109.521 +639614.905|220253.505|109.594 +639619.492|220249.451|109.719 +639624.113|220245.363|109.658 +639628.694|220241.313|109.576 +639637.878|220233.187|109.332 +639642.495|220229.102|109.122 +639647.067|220225.055|108.884 +639651.685|220220.970|108.707 +639656.275|220216.907|108.424 +639660.850|220212.860|108.247 +639665.374|220208.858|108.079 +639669.961|220204.798|107.869 +639674.542|220200.744|107.723 +639679.084|220196.723|107.518 +639683.668|220192.666|107.147 +639692.736|220184.641|106.674 +639697.250|220180.648|106.452 +639715.398|220164.582|105.037 +639719.915|220160.580|104.641 +639728.946|220152.582|103.696 +639733.314|220148.723|103.824 +639731.031|220148.708|103.550 +639726.590|220152.631|103.730 +639708.591|220168.551|105.549 +639704.123|220172.501|105.729 +639699.621|220176.482|106.074 +639695.049|220180.526|106.540 +639690.556|220184.492|106.628 +639686.048|220188.479|106.833 +639681.510|220192.490|107.183 +639677.002|220196.477|107.427 +639672.442|220200.506|107.671 +639667.916|220204.505|107.784 +639663.350|220208.541|108.107 +639658.750|220212.607|108.360 +639654.218|220216.612|108.555 +639649.649|220220.650|108.704 +639645.083|220224.683|108.847 +639640.468|220228.761|108.994 +639635.835|220232.858|109.262 +639631.236|220236.920|109.375 +639626.627|220240.993|109.558 +639622.055|220245.031|109.567 +639617.447|220249.100|109.518 +639612.847|220253.160|109.417 +639608.254|220257.214|109.323 +639603.642|220261.283|109.335 +639598.988|220265.389|109.323 +639594.282|220269.543|109.338 +639589.625|220273.658|109.393 +639584.967|220277.770|109.463 +639580.252|220281.930|109.579 +639575.503|220286.121|109.618 +639570.834|220290.245|109.536 +639566.158|220294.369|109.484 +639561.431|220298.542|109.478 +639556.743|220302.675|109.244 +639552.055|220306.811|109.030 +639547.321|220310.984|108.796 +639537.933|220319.262|107.921 +639533.340|220323.304|106.887 +639528.610|220327.471|106.388 +639523.977|220331.552|105.607 +639519.267|220335.697|104.982 +639514.546|220339.858|104.467 +639509.816|220344.027|104.025 +639505.021|220348.255|103.681 +639500.220|220352.489|103.373 +639495.426|220356.716|103.068 +639490.577|220360.993|102.797 +639485.776|220365.226|102.553 +639480.902|220369.530|102.492 +639476.053|220373.809|102.614 +639471.136|220378.153|102.876 +639466.171|220382.539|103.166 +639461.240|220386.901|103.605 +639456.210|220391.348|104.394 +639451.205|220395.773|105.053 +639436.200|220409.041|106.811 +639431.125|220413.528|107.372 +639426.203|220417.878|107.598 +639421.173|220422.319|107.899 +639416.211|220426.702|108.091 +639411.210|220431.118|108.232 +639406.217|220435.529|108.347 +639401.221|220439.939|108.503 +639396.229|220444.346|108.649 +639391.212|220448.778|108.640 +639386.256|220453.149|108.533 +639381.266|220457.550|108.347 +639376.276|220461.955|108.168 +639371.284|220466.359|108.024 +639366.303|220470.751|107.817 +639361.311|220475.156|107.707 +639356.294|220479.581|107.430 +639346.290|220488.408|107.076 +639341.279|220492.825|106.778 +639336.277|220497.239|106.436 +639331.215|220501.704|106.196 +639326.204|220506.123|105.976 +639321.135|220510.595|105.827 +639316.145|220514.993|105.427 +639311.101|220519.443|105.104 +639306.084|220523.872|105.019 +639300.985|220528.368|104.772 +639295.958|220532.800|104.318 +639290.932|220537.231|103.876 +639285.854|220541.709|103.452 +639280.810|220546.159|103.233 +639275.701|220550.667|103.184 +639270.663|220555.111|102.928 +639255.304|220568.669|102.824 +639234.733|220586.832|103.733 +639224.446|220595.906|103.785 +639203.851|220614.084|104.568 +639198.700|220618.631|104.879 +639193.567|220623.161|104.973 +639188.397|220627.721|104.928 +639178.092|220636.813|105.138 +639167.805|220645.887|105.187 +639157.509|220654.976|105.534 +639152.342|220659.536|105.650 +639147.173|220664.096|105.808 +639142.019|220668.643|105.827 +639131.704|220677.744|105.943 +639111.039|220695.965|105.385 +639105.863|220700.537|105.970 +639100.688|220705.116|106.720 +639095.491|220709.700|106.820 +639090.303|220714.278|106.842 +639079.946|220723.425|107.607 +639074.737|220728.027|108.232 +639064.350|220737.199|108.920 +639059.226|220741.716|108.728 +639054.044|220746.291|108.866 +639048.866|220750.860|108.933 +639033.281|220764.610|109.292 +639022.970|220773.717|109.939 +639017.749|220778.323|110.073 +639012.625|220782.846|110.204 +639002.228|220792.026|110.865 +638997.059|220796.589|111.124 +638991.880|220801.167|111.932 +638940.113|220846.900|116.729 +638934.959|220851.444|116.784 +638929.765|220856.028|116.754 +638924.611|220860.576|116.998 +638914.260|220869.705|116.848 +638909.108|220874.252|116.973 +638903.957|220878.797|116.961 +638898.757|220883.384|117.007 +638888.452|220892.470|116.803 +638883.301|220897.015|116.812 +638878.150|220901.563|116.845 +638873.002|220906.107|117.135 +638867.805|220910.694|117.333 +638862.703|220915.196|117.309 +638857.503|220919.784|117.427 +638852.406|220924.282|117.702 +638847.261|220928.824|118.055 +638842.116|220933.366|118.342 +638836.965|220937.907|118.488 +638831.869|220942.406|118.753 +638821.582|220951.489|119.369 +638816.434|220956.030|119.604 +638811.301|220960.566|120.158 +638801.054|220969.606|120.521 +638790.803|220978.650|120.768 +638785.719|220983.142|121.384 +638780.589|220987.675|121.963 +638775.560|220992.119|122.667 +638770.412|220996.660|122.838 +638765.276|221001.184|122.176 +638749.975|221014.683|122.792 +638744.879|221019.182|123.075 +638739.764|221023.693|123.005 +638734.708|221028.155|123.133 +638729.581|221032.673|122.890 +638714.441|221046.050|124.834 +638699.278|221059.434|125.553 +638694.215|221063.899|125.675 +638684.163|221072.775|126.340 +638679.094|221077.247|126.410 +638674.083|221081.666|126.632 +638669.066|221086.092|126.800 +638659.041|221094.940|127.254 +638653.960|221099.421|127.257 +638648.970|221103.822|127.178 +638643.889|221108.303|127.221 +638638.909|221112.698|127.297 +638633.816|221117.182|126.602 +638628.826|221121.589|127.263 +638623.861|221125.972|127.574 +638618.880|221130.367|127.730 +638613.876|221134.778|127.644 +638608.865|221139.194|127.489 +638603.884|221143.593|127.693 +638598.888|221148.000|127.754 +638593.905|221152.395|128.001 +638588.961|221156.757|128.123 +638583.956|221161.173|128.138 +638578.997|221165.544|128.160 +638574.038|221169.921|128.160 +638569.091|221174.286|128.333 +638564.089|221178.690|127.980 +638559.194|221183.009|128.233 +638554.211|221187.405|128.096 +638549.392|221191.669|129.107 +638544.402|221196.064|128.964 +638539.535|221200.362|129.031 +638534.588|221204.726|129.330 +638529.714|221209.024|129.409 +638524.758|221213.398|129.650 +638519.906|221217.680|129.955 +638505.223|221230.641|130.702 +638461.198|221269.469|129.964 +638456.336|221273.755|129.632 +638451.420|221278.092|129.671 +638446.668|221282.292|130.220 +638417.663|221307.883|130.150 +638412.811|221312.160|129.717 +638407.949|221316.445|129.251 +638403.051|221320.758|128.553 +638373.760|221346.547|124.368 +638340.146|221376.180|122.064 +638335.440|221380.334|122.347 +638330.761|221384.467|122.481 +638326.052|221388.622|122.789 +638289.059|221421.299|125.453 +638279.835|221429.444|125.983 +638262.123|221445.129|130.430 +638257.698|221449.045|131.336 +638248.691|221457.007|132.347 +638244.162|221461.003|132.466 +638239.654|221464.983|132.695 +638235.133|221468.973|132.899 +638230.625|221472.954|133.161 +638226.072|221476.974|133.207 +638221.542|221480.970|133.116 +638203.099|221497.219|131.323 +638198.545|221501.233|130.955 +638194.122|221505.138|131.281 +638167.425|221528.699|131.674 +638162.911|221532.677|131.153 +638158.464|221536.599|130.976 +638153.986|221540.544|130.677 +638149.561|221544.445|130.400 +638145.080|221548.395|130.113 +638136.235|221556.189|129.437 +638131.827|221560.075|129.065 +638127.444|221563.943|128.842 +638123.061|221567.808|128.632 +638118.663|221571.691|128.367 +638114.307|221575.532|128.074 +638109.991|221579.339|127.754 +638105.602|221583.210|127.346 +638101.259|221587.038|126.943 +638096.912|221590.872|126.541 +638092.563|221594.707|126.136 +638075.226|221609.989|124.081 +638070.898|221613.805|123.648 +638066.594|221617.594|122.886 +638062.360|221621.331|122.667 +638058.175|221625.025|122.673 +638053.945|221628.756|122.271 +638032.502|221647.641|118.473 +638028.347|221651.305|118.065 +638024.184|221654.975|117.647 +638011.916|221665.795|116.711 +638003.723|221673.019|115.907 +637999.663|221676.597|115.571 +637971.231|221701.646|111.277 +637967.393|221705.038|111.295 +637963.544|221708.434|111.295 +637959.719|221711.814|111.386 +637955.918|221715.167|111.173 +637947.865|221722.257|109.487 +637943.784|221725.844|108.256 +637935.853|221732.824|106.534 +637931.866|221736.329|105.519 +637928.019|221739.722|105.034 +637924.228|221743.062|104.577 +637920.171|221746.625|103.145 +637916.632|221749.756|103.654 +637913.023|221752.944|103.699 +637906.165|221759.015|105.147 +638114.676|221573.304|128.169 +638119.068|221569.420|128.419 +638123.412|221565.580|128.711 +638127.783|221561.715|128.912 +638132.144|221557.856|129.080 +638136.555|221553.961|129.491 +638140.999|221550.032|129.845 +638145.452|221546.100|130.244 +638149.878|221542.186|130.558 +638154.309|221538.267|130.653 +638158.763|221534.329|130.881 +638163.219|221530.388|131.147 +638167.775|221526.364|131.668 +638190.062|221506.647|131.851 +638194.324|221502.861|130.744 +638198.810|221498.893|130.796 +638203.468|221494.781|131.461 +638208.119|221490.678|132.393 +638212.779|221486.560|133.143 +638217.342|221482.525|133.131 +638221.838|221478.547|133.058 +638226.407|221474.505|133.122 +638230.936|221470.497|132.988 +638235.496|221466.459|132.768 +638239.983|221462.484|132.445 +638244.558|221458.433|132.332 +638249.102|221454.410|132.073 +638262.623|221442.425|130.177 +638285.105|221422.479|125.578 +638289.748|221418.373|125.389 +638294.393|221414.262|125.252 +638317.658|221393.654|123.210 +638327.055|221385.333|122.545 +638331.828|221381.108|122.390 +638336.544|221376.936|122.198 +638350.903|221364.235|122.137 +638365.512|221351.332|123.581 +638375.253|221342.728|124.596 +638380.164|221338.388|124.913 +638390.070|221329.655|126.873 +638399.930|221320.944|128.004 +638409.769|221312.257|129.074 +638414.761|221307.853|129.830 +638419.638|221303.540|130.150 +638424.579|221299.178|130.580 +638429.505|221294.826|130.958 +638434.406|221290.491|131.165 +638448.893|221277.656|129.495 +638453.819|221273.300|129.577 +638458.756|221268.936|129.781 +638463.731|221264.544|130.305 +638468.745|221260.112|130.802 +638503.269|221229.571|130.558 +638508.229|221225.185|130.330 +638513.133|221220.841|130.110 +638518.113|221216.437|130.113 +638523.039|221212.072|129.659 +638527.983|221207.698|129.367 +638532.948|221203.303|129.309 +638537.898|221198.923|129.120 +638542.903|221194.494|129.013 +638552.784|221185.743|128.041 +638557.817|221181.293|128.239 +638562.800|221176.880|128.001 +638567.842|221172.427|128.361 +638572.828|221168.016|128.141 +638577.824|221163.594|128.089 +638582.877|221159.125|128.111 +638587.870|221154.706|128.068 +638592.911|221150.249|127.998 +638597.934|221145.799|127.788 +638602.973|221141.346|127.721 +638608.008|221136.890|127.684 +638613.074|221132.412|128.019 +638618.082|221127.978|127.666 +638623.163|221123.482|127.641 +638628.177|221119.044|127.388 +638638.287|221110.098|127.385 +638643.356|221105.611|127.294 +638648.428|221101.125|127.218 +638653.509|221096.632|127.330 +638658.578|221092.145|127.285 +638668.688|221083.196|126.861 +638673.738|221078.725|126.629 +638678.844|221074.208|126.456 +638688.951|221065.262|126.099 +638694.032|221060.757|125.645 +638699.086|221056.285|125.480 +638729.553|221029.301|123.191 +638734.699|221024.748|122.981 +638744.882|221015.732|122.490 +638750.024|221011.181|122.280 +638755.059|221006.722|121.905 +638765.371|220997.602|122.173 +638775.624|220988.534|122.329 +638780.690|220984.042|121.512 +638785.817|220979.497|121.033 +638790.946|220974.956|120.558 +638796.085|220970.405|120.302 +638801.182|220965.897|120.332 +638806.318|220961.349|120.006 +638811.456|220956.802|119.814 +638821.719|220947.709|118.887 +638831.997|220938.611|118.461 +638842.226|220929.555|118.058 +638847.365|220925.008|117.784 +638852.550|220920.415|117.458 +638862.834|220911.313|117.242 +638873.115|220902.212|116.726 +638878.260|220897.661|116.726 +638883.408|220893.110|117.141 +638888.544|220888.560|116.544 +638893.737|220883.966|116.733 +638898.882|220879.416|116.711 +638904.027|220874.865|116.793 +638909.218|220870.269|116.653 +638914.363|220865.718|116.720 +638919.508|220861.170|116.760 +638924.699|220856.577|116.946 +638929.844|220852.026|116.925 +638934.983|220847.476|116.705 +638940.177|220842.882|116.635 +638950.473|220833.757|115.495 +638955.670|220829.151|115.041 +638965.929|220820.059|113.889 +638971.132|220815.459|113.758 +638981.450|220806.312|112.554 +638996.943|220792.584|110.987 +639007.218|220783.486|110.576 +639012.384|220778.908|110.265 +639017.557|220774.327|109.868 +639048.475|220746.946|108.866 +639053.642|220742.374|108.905 +639063.941|220733.258|108.713 +639074.271|220724.105|107.921 +639089.749|220710.392|106.900 +639094.872|220705.859|107.070 +639115.446|220687.641|106.378 +639120.585|220683.094|106.406 +639130.836|220674.017|106.098 +639141.098|220664.928|105.732 +639146.192|220660.420|105.799 +639156.405|220651.376|105.613 +639166.680|220642.278|105.351 +639176.851|220633.277|105.312 +639181.963|220628.754|105.315 +639187.047|220624.252|105.053 +639192.174|220619.707|104.864 +639197.191|220615.266|104.888 +639202.321|220610.725|104.751 +639212.516|220601.694|104.126 +639222.696|220592.681|103.836 +639237.946|220579.175|103.263 +639258.251|220561.189|102.306 +639273.296|220547.881|102.971 +639278.301|220543.452|103.010 +639283.355|220538.981|103.062 +639288.262|220534.641|103.602 +639293.282|220530.203|104.035 +639298.214|220525.844|104.376 +639303.194|220521.440|104.717 +639308.138|220517.069|104.982 +639313.143|220512.640|105.132 +639318.078|220508.275|105.501 +639323.073|220503.856|105.766 +639327.990|220499.506|105.882 +639332.943|220495.123|106.125 +639337.844|220490.789|106.406 +639342.800|220486.406|106.680 +639352.682|220477.664|107.076 +639357.546|220473.360|107.308 +639362.524|220468.959|107.473 +639367.404|220464.640|107.622 +639372.326|220460.284|107.835 +639377.200|220455.975|108.082 +639382.086|220451.649|108.241 +639386.981|220447.315|108.351 +639391.891|220442.972|108.378 +639396.802|220438.619|108.387 +639401.691|220434.291|108.235 +639406.680|220429.868|108.076 +639411.536|220425.565|107.820 +639416.486|220421.182|107.659 +639421.347|220416.875|107.415 +639426.276|220412.507|107.080 +639431.204|220408.139|106.778 +639436.033|220403.857|106.485 +639441.050|220399.404|105.592 +639450.855|220390.705|104.470 +639455.811|220386.309|103.772 +639460.700|220381.975|103.218 +639465.607|220377.623|102.910 +639470.438|220373.340|102.462 +639475.297|220369.033|102.200 +639480.098|220364.787|102.367 +639484.819|220360.609|102.724 +639489.583|220356.390|102.812 +639494.338|220352.181|102.989 +639499.059|220348.005|103.410 +639503.753|220343.851|103.681 +639508.478|220339.675|104.114 +639513.138|220335.554|104.644 +639517.777|220331.454|105.312 +639522.447|220327.327|105.808 +639527.019|220323.286|106.586 +639531.694|220319.153|107.073 +639540.850|220311.063|108.619 +639545.526|220306.924|108.829 +639550.214|220302.776|108.975 +639554.859|220298.664|109.106 +639559.477|220294.577|109.393 +639564.152|220290.437|109.375 +639568.822|220286.301|109.408 +639573.431|220282.220|109.509 +639578.064|220278.120|109.506 +639582.785|220273.935|109.292 +639587.448|220269.802|109.152 +639592.042|220265.736|109.137 +639596.644|220261.658|109.088 +639601.295|220257.537|109.061 +639605.880|220253.477|109.152 +639610.418|220249.463|109.241 +639615.014|220245.391|109.298 +639619.556|220241.371|109.399 +639624.131|220237.317|109.332 +639628.731|220233.245|109.430 +639637.890|220225.128|109.073 +639642.386|220221.144|108.963 +639646.994|220217.063|108.829 +639651.572|220213.006|108.604 +639656.135|220208.961|108.469 +639660.698|220204.916|108.101 +639665.246|220200.887|107.829 +639669.723|220196.915|107.656 +639674.268|220192.889|107.445 +639678.824|220188.850|107.189 +639683.342|220184.845|106.887 +639687.837|220180.865|106.726 +639692.336|220176.878|106.558 +639696.789|220172.928|106.372 +639701.346|220168.886|105.967 +639705.760|220164.975|105.763 +639714.794|220156.965|104.943 +639723.758|220149.013|104.047 +639728.227|220145.051|103.693 +639727.894|220142.768|103.800 +639723.447|220146.696|104.022 +639714.477|220154.627|104.623 +639700.941|220166.597|105.943 +639696.433|220170.584|106.336 +639691.958|220174.537|106.574 +639687.472|220178.499|106.641 +639682.967|220182.483|106.827 +639678.440|220186.482|107.119 +639673.875|220190.518|107.384 +639669.327|220194.538|107.579 +639664.837|220198.503|107.762 +639660.287|220202.524|108.003 +639655.711|220206.572|108.408 +639651.142|220210.607|108.518 +639646.549|220214.667|108.783 +639641.986|220218.700|108.924 +639637.445|220222.708|108.957 +639623.649|220234.900|109.545 +639619.096|220238.917|109.183 +639614.527|220242.953|109.192 +639609.970|220246.976|109.158 +639605.380|220251.030|109.036 +639600.792|220255.081|108.920 +639596.129|220259.201|108.960 +639591.527|220263.267|108.966 +639586.866|220267.388|109.045 +639582.200|220271.512|109.167 +639577.515|220275.652|109.399 +639572.818|220279.806|109.460 +639568.197|220283.884|109.369 +639563.476|220288.057|109.311 +639558.806|220292.181|109.250 +639554.164|220296.277|109.052 +639549.461|220300.435|108.945 +639544.761|220304.586|108.826 +639540.046|220308.747|108.509 +639535.407|220312.840|108.052 +639530.795|220316.900|107.125 +639526.104|220321.039|106.705 +639521.465|220325.130|105.973 +639516.747|220329.290|105.424 +639512.105|220333.384|104.742 +639507.399|220337.535|104.141 +639502.668|220341.711|103.715 +639497.916|220345.905|103.434 +639493.146|220350.114|102.968 +639488.345|220354.351|102.709 +639483.539|220358.597|102.514 +639478.744|220362.828|102.258 +639473.892|220367.113|102.069 +639469.033|220371.408|102.279 +639464.035|220375.833|102.791 +639459.161|220380.146|103.184 +639454.180|220384.551|103.620 +639439.276|220397.742|105.257 +639434.222|220402.220|106.366 +639429.229|220406.640|106.714 +639424.255|220411.035|106.939 +639419.262|220415.454|107.354 +639414.306|220419.834|107.497 +639409.344|220424.224|107.732 +639404.333|220428.652|107.960 +639399.341|220433.066|108.091 +639394.348|220437.479|108.238 +639389.374|220441.875|108.283 +639384.415|220446.258|108.226 +639379.422|220450.665|108.049 +639374.432|220455.072|107.863 +639369.498|220459.428|107.659 +639364.471|220463.866|107.406 +639359.491|220468.267|107.232 +639354.514|220472.662|107.022 +639349.500|220477.091|106.738 +639339.456|220485.958|106.330 +639334.436|220490.393|106.150 +639329.425|220494.815|105.888 +639324.408|220499.247|105.708 +639319.346|220503.719|105.516 +639314.307|220508.166|105.123 +639309.248|220512.634|104.949 +639304.243|220517.057|104.751 +639299.153|220521.549|104.419 +639294.114|220525.996|104.092 +639289.082|220530.437|103.708 +639284.016|220534.906|103.160 +639278.932|220539.395|102.855 +639273.815|220543.919|102.895 +639263.640|220552.901|102.401 +639258.642|220557.303|101.194 +639237.921|220575.639|103.132 +639227.582|220584.786|103.815 +639222.422|220589.349|104.086 +639217.241|220593.930|104.056 +639206.950|220603.029|104.376 +639196.545|220612.234|105.086 +639191.430|220616.754|104.964 +639186.239|220621.347|105.263 +639170.743|220635.039|105.147 +639165.571|220639.614|105.327 +639155.223|220648.767|105.763 +639150.066|220653.324|105.751 +639139.687|220662.501|106.086 +639134.478|220667.107|106.229 +639129.333|220671.652|106.132 +639124.179|220676.208|106.223 +639077.468|220717.506|107.354 +639072.268|220722.111|107.835 +639041.069|220749.702|109.018 +639020.355|220768.020|110.115 +639015.146|220772.623|109.887 +638978.905|220804.688|112.535 +638973.790|220809.214|112.865 +638937.586|220841.264|116.775 +638932.435|220845.818|116.830 +638927.290|220850.362|116.720 +638922.142|220854.913|116.681 +638916.991|220859.467|116.760 +638911.843|220864.017|116.547 +638906.691|220868.568|116.589 +638901.543|220873.119|116.589 +638896.392|220877.669|116.544 +638891.195|220882.266|116.702 +638886.096|220886.774|116.745 +638880.948|220891.327|116.888 +638875.797|220895.878|116.775 +638870.694|220900.386|116.687 +638865.495|220904.982|116.650 +638834.713|220932.201|117.851 +638829.620|220936.706|118.226 +638824.520|220941.211|118.458 +638819.375|220945.762|118.641 +638814.279|220950.267|118.921 +638788.764|220972.834|120.494 +638773.539|220986.300|121.573 +638753.118|221004.347|121.786 +638737.878|221017.823|122.603 +638722.622|221031.313|123.219 +638717.599|221035.760|123.981 +638702.432|221049.178|125.389 +638687.272|221062.583|126.099 +638677.155|221071.529|126.495 +638672.096|221076.000|126.690 +638667.088|221080.429|126.940 +638662.034|221084.897|127.263 +638657.008|221089.341|127.273 +638651.979|221093.782|127.312 +638646.901|221098.272|127.306 +638641.875|221102.713|127.413 +638636.845|221107.157|127.462 +638631.865|221111.558|127.556 +638621.791|221120.461|127.586 +638616.771|221124.899|127.833 +638611.739|221129.349|127.964 +638606.716|221133.790|128.211 +638601.687|221138.228|127.849 +638596.688|221142.645|127.870 +638591.646|221147.101|127.967 +638586.696|221151.475|128.019 +638581.643|221155.940|128.010 +638576.705|221160.308|128.217 +638571.694|221164.734|128.211 +638566.677|221169.168|128.132 +638561.709|221173.554|128.114 +638556.759|221177.938|128.778 +638551.733|221182.372|128.181 +638546.807|221186.728|128.638 +638541.872|221191.096|128.995 +638536.916|221195.476|129.171 +638532.003|221199.819|129.309 +638527.035|221204.208|129.403 +638522.121|221208.555|129.549 +638517.214|221212.892|129.802 +638512.307|221217.232|130.052 +638507.396|221221.573|130.284 +638502.486|221225.916|130.552 +638463.271|221260.563|130.482 +638458.360|221264.891|130.125 +638453.450|221269.225|129.760 +638448.573|221273.532|129.702 +638429.288|221290.580|130.982 +638424.427|221294.871|130.772 +638419.529|221299.190|130.296 +638414.640|221303.503|129.946 +638409.729|221307.834|129.437 +638390.259|221325.004|127.571 +638375.491|221338.016|124.993 +638351.329|221359.330|122.902 +638332.340|221376.094|122.496 +638327.686|221380.206|122.810 +638295.219|221408.909|125.038 +638290.589|221413.000|125.297 +638285.919|221417.127|125.331 +638281.335|221421.178|125.590 +638276.800|221425.192|126.136 +638254.662|221444.809|131.473 +638241.071|221456.821|132.277 +638236.572|221460.796|132.576 +638232.067|221464.779|132.841 +638227.580|221468.742|132.948 +638223.039|221472.756|133.045 +638218.537|221476.734|133.100 +638214.059|221480.690|133.301 +638200.264|221492.854|131.893 +638195.613|221496.951|131.025 +638191.044|221500.977|130.613 +638186.774|221504.760|131.445 +638177.968|221512.545|132.088 +638173.451|221516.531|131.729 +638168.955|221520.497|131.509 +638164.493|221524.435|131.220 +638160.003|221528.394|130.805 +638155.513|221532.354|130.430 +638151.085|221536.264|130.354 +638146.668|221540.160|130.116 +638142.187|221544.110|129.589 +638137.786|221547.996|129.458 +638133.370|221551.894|129.269 +638129.044|221555.713|129.290 +638124.625|221559.615|129.114 +638120.227|221563.492|128.824 +638115.883|221567.323|128.565 +638111.473|221571.213|128.254 +638080.785|221598.258|124.420 +638076.539|221602.004|124.307 +638072.269|221605.765|123.868 +638063.674|221613.342|123.033 +638059.413|221617.103|122.676 +638051.067|221624.467|122.569 +638025.324|221647.132|117.915 +638021.206|221650.763|117.452 +638017.116|221654.371|117.327 +638012.900|221658.084|116.723 +638008.880|221661.635|116.693 +638004.750|221665.274|116.245 +637996.478|221672.559|115.148 +637992.479|221676.088|114.843 +637988.431|221679.655|114.358 +637976.153|221690.469|112.499 +637971.984|221694.136|111.402 +637968.076|221697.580|111.133 +637960.353|221704.398|111.210 +637956.488|221707.809|111.139 +637932.732|221728.721|106.869 +637928.672|221732.294|105.766 +637924.767|221735.726|104.867 +637920.722|221739.283|103.657 +637917.260|221742.346|104.428 +637913.688|221745.504|104.793 +637910.207|221748.585|105.299 +637906.589|221751.776|105.525 +637902.946|221754.989|105.260 +638110.394|221569.939|128.431 +638114.704|221566.122|128.550 +638119.074|221562.251|128.720 +638123.464|221558.368|129.001 +638127.847|221554.485|129.275 +638132.163|221550.663|129.242 +638136.561|221546.768|129.382 +638140.965|221542.866|129.568 +638145.348|221538.986|129.653 +638149.798|221535.048|130.095 +638154.255|221531.104|130.333 +638158.680|221527.184|130.442 +638163.124|221523.246|130.668 +638167.681|221519.217|131.201 +638172.177|221515.236|131.461 +638176.666|221511.261|131.720 +638185.469|221503.452|131.137 +638189.819|221499.597|130.729 +638194.430|221495.515|131.147 +638199.142|221491.352|132.104 +638203.782|221487.252|132.978 +638212.874|221479.202|133.308 +638217.388|221475.197|133.076 +638221.932|221471.171|133.009 +638226.465|221467.157|132.887 +638230.991|221463.142|132.777 +638235.545|221459.104|132.527 +638240.096|221455.068|132.302 +638244.671|221451.018|132.198 +638262.678|221435.034|129.808 +638267.159|221431.053|128.976 +638280.585|221419.117|125.535 +638285.233|221415.002|125.697 +638289.918|221410.848|125.499 +638294.551|221406.739|124.996 +638299.175|221402.643|124.770 +638303.878|221398.470|124.426 +638332.042|221373.504|122.640 +638336.726|221369.349|122.283 +638375.598|221334.953|125.002 +638395.388|221317.463|127.928 +638405.328|221308.676|129.394 +638410.186|221304.375|129.543 +638415.170|221299.967|129.909 +638420.099|221295.606|130.278 +638425.045|221291.232|130.784 +638444.537|221273.959|130.153 +638449.387|221269.655|129.674 +638454.328|221265.281|129.918 +638459.336|221260.852|130.318 +638464.285|221256.472|130.689 +638498.914|221225.797|130.564 +638503.867|221221.408|130.302 +638508.817|221217.022|130.049 +638513.770|221212.630|129.830 +638518.772|221208.198|129.623 +638523.725|221203.809|129.452 +638528.684|221199.414|129.351 +638533.692|221194.976|129.257 +638538.696|221190.544|129.132 +638543.744|221186.076|129.488 +638548.572|221181.781|128.178 +638553.662|221177.279|128.464 +638558.633|221172.869|128.117 +638563.699|221168.385|128.236 +638568.698|221163.956|128.193 +638573.758|221159.476|128.269 +638578.796|221155.013|128.175 +638583.786|221150.594|128.089 +638588.873|221146.086|128.031 +638593.865|221141.663|128.038 +638598.949|221137.158|127.961 +638604.024|221132.669|128.394 +638609.017|221128.243|127.885 +638614.107|221123.735|127.961 +638619.121|221119.294|127.724 +638629.274|221110.305|127.644 +638634.352|221105.809|127.617 +638644.487|221096.836|127.452 +638649.604|221092.304|127.382 +638654.667|221087.820|127.306 +638659.791|221083.285|127.358 +638664.835|221078.816|127.050 +638669.889|221074.339|126.867 +638674.985|221069.825|126.581 +638685.190|221060.787|126.291 +638695.367|221051.768|125.590 +638700.457|221047.257|125.288 +638715.700|221033.745|123.984 +638720.760|221029.256|123.158 +638741.148|221011.187|121.609 +638746.293|221006.630|121.494 +638751.395|221002.113|121.472 +638776.999|220979.433|120.536 +638792.403|220965.784|119.634 +638802.681|220956.680|119.287 +638807.765|220952.172|118.918 +638812.901|220947.624|118.616 +638818.040|220943.070|118.427 +638833.497|220929.376|117.540 +638838.590|220924.865|117.412 +638843.729|220920.314|117.165 +638848.913|220915.718|116.928 +638854.010|220911.207|116.992 +638859.146|220906.656|116.516 +638864.339|220902.059|116.684 +638869.433|220897.548|116.711 +638874.623|220892.952|116.568 +638879.768|220888.401|116.736 +638895.194|220874.740|116.589 +638900.336|220870.186|116.510 +638905.478|220865.636|116.669 +638910.620|220861.082|116.541 +638915.765|220856.531|116.699 +638920.907|220851.975|116.550 +638926.043|220847.430|116.690 +638931.188|220842.879|116.836 +638936.330|220838.329|116.940 +638962.083|220815.481|113.374 +638977.506|220801.804|111.792 +638992.990|220788.082|110.515 +639023.860|220760.751|109.923 +639028.938|220756.249|109.420 +639034.113|220751.665|109.027 +639039.289|220747.077|108.661 +639044.355|220742.597|108.826 +639064.923|220724.379|107.781 +639069.991|220719.895|107.951 +639075.118|220715.354|107.887 +639090.529|220701.705|107.250 +639100.761|220692.646|106.921 +639110.947|220683.624|106.586 +639116.089|220679.073|106.513 +639131.427|220665.495|106.272 +639151.839|220647.423|105.860 +639156.948|220642.897|105.729 +639162.017|220638.410|105.525 +639172.194|220629.400|105.330 +639177.266|220624.907|105.162 +639182.362|220620.399|105.382 +639192.533|220611.389|104.818 +639202.634|220602.447|104.638 +639212.824|220593.421|104.099 +639217.847|220588.977|104.184 +639233.047|220575.514|103.522 +639263.482|220548.543|101.020 +639273.431|220539.758|102.742 +639278.432|220535.329|102.773 +639283.440|220530.901|102.815 +639288.381|220526.533|103.513 +639293.395|220522.101|104.004 +639298.336|220517.733|104.248 +639303.322|220513.323|104.544 +639308.315|220508.906|104.812 +639313.326|220504.474|104.922 +639318.264|220500.107|105.248 +639323.204|220495.736|105.586 +639328.176|220491.338|105.665 +639333.174|220486.918|105.961 +639338.085|220482.572|106.153 +639343.065|220478.167|106.217 +639357.842|220465.094|107.028 +639362.813|220460.696|107.238 +639367.681|220456.392|107.500 +639372.655|220451.994|107.726 +639377.529|220447.678|107.957 +639382.421|220443.350|108.067 +639387.328|220439.006|108.085 +639392.294|220434.608|108.040 +639397.213|220430.252|107.997 +639402.111|220425.912|107.765 +639407.046|220421.541|107.659 +639411.959|220417.186|107.342 +639416.915|220412.797|107.128 +639421.871|220408.398|106.552 +639426.764|220404.070|106.503 +639431.689|220399.702|106.214 +639436.648|220395.301|105.354 +639441.638|220390.875|104.672 +639451.553|220382.082|103.519 +639456.418|220377.769|103.102 +639461.340|220373.404|102.669 +639466.272|220369.033|102.209 +639471.124|220364.733|101.968 +639475.931|220360.478|102.069 +639480.710|220356.250|102.358 +639485.447|220352.059|102.632 +639490.287|220347.780|102.904 +639495.008|220343.601|103.285 +639499.724|220339.434|103.745 +639504.433|220335.267|104.239 +639509.084|220331.159|104.809 +639513.775|220327.013|105.446 +639518.429|220322.899|106.019 +639523.062|220318.805|106.714 +639527.707|220314.696|107.061 +639536.931|220306.546|108.469 +639541.585|220302.431|108.789 +639546.261|220298.292|109.000 +639550.912|220294.174|109.055 +639555.557|220290.062|109.167 +639560.251|220285.911|109.332 +639564.924|220281.772|109.329 +639569.526|220277.700|109.451 +639574.177|220273.579|109.317 +639578.886|220269.406|109.161 +639583.544|220265.282|109.036 +639588.140|220261.207|108.972 +639592.740|220257.135|108.924 +639597.394|220253.017|108.890 +639602.036|220248.902|108.917 +639606.578|220244.882|108.960 +639611.128|220240.855|108.985 +639615.688|220236.820|109.237 +639620.193|220232.833|109.536 +639624.750|220228.801|109.576 +639629.319|220224.750|109.280 +639633.894|220220.696|108.988 +639638.441|220216.666|108.853 +639647.509|220208.638|108.811 +639652.023|220204.639|108.643 +639656.528|220200.643|108.277 +639661.070|220196.620|108.015 +639665.550|220192.648|107.814 +639670.037|220188.674|107.607 +639674.533|220184.690|107.378 +639679.038|220180.697|107.122 +639683.473|220176.768|106.973 +639687.920|220172.830|106.793 +639701.243|220161.022|106.168 +639719.003|220145.273|104.489 +639727.821|220137.452|103.818 +639721.414|220140.582|104.236 +639707.878|220152.558|105.424 +639703.291|220156.621|105.897 +639698.807|220160.583|106.138 +639694.272|220164.594|106.400 +639689.752|220168.593|106.619 +639685.207|220172.611|106.714 +639680.665|220176.625|106.805 +639676.151|220180.618|107.052 +639671.589|220184.650|107.293 +639666.968|220188.738|107.589 +639662.426|220192.755|107.774 +639657.824|220196.827|108.027 +639653.160|220200.951|108.335 +639648.576|220205.005|108.539 +639644.013|220209.040|108.652 +639639.435|220213.082|108.588 +639634.805|220217.179|108.817 +639630.126|220221.315|109.049 +639625.484|220225.423|109.393 +639620.854|220229.514|109.420 +639616.234|220233.598|109.414 +639611.656|220237.640|109.189 +639607.068|220241.688|108.756 +639602.460|220245.763|108.750 +639597.812|220249.865|108.677 +639593.148|220253.986|108.710 +639588.436|220258.150|108.756 +639583.766|220262.274|108.860 +639579.109|220266.389|108.927 +639574.336|220270.607|109.079 +639569.608|220274.786|109.301 +639564.933|220278.913|109.237 +639560.263|220283.037|109.158 +639555.551|220287.197|109.052 +639550.906|220291.300|108.884 +639546.230|220295.430|108.905 +639541.487|220299.618|108.728 +639536.861|220303.696|108.177 +639527.549|220311.911|107.171 +639522.831|220316.071|106.903 +639518.188|220320.165|106.196 +639513.516|220324.285|105.687 +639508.828|220328.419|104.970 +639504.171|220332.521|104.373 +639499.462|220336.676|103.806 +639494.743|220340.836|103.306 +639490.016|220345.006|102.898 +639485.233|220349.227|102.514 +639480.533|220353.370|101.934 +639475.693|220357.646|101.974 +639470.877|220361.898|101.874 +639466.040|220366.171|101.941 +639461.124|220370.521|102.230 +639456.216|220374.864|102.840 +639451.324|220379.189|103.017 +639446.435|220383.505|103.175 +639436.395|220392.402|105.153 +639431.445|220396.785|105.882 +639426.501|220401.156|106.211 +639421.597|220405.490|106.287 +639416.635|220409.880|106.811 +639411.716|220414.229|107.061 +639406.735|220418.633|107.418 +639401.840|220422.959|107.528 +639396.881|220427.345|107.787 +639391.949|220431.700|107.845 +639386.975|220436.096|107.869 +639382.101|220440.399|107.909 +639377.099|220444.819|107.808 +639372.213|220449.132|107.595 +639367.285|220453.484|107.329 +639362.356|220457.834|107.080 +639357.382|220462.223|106.811 +639342.501|220475.360|106.214 +639337.533|220479.749|105.997 +639332.510|220484.184|105.808 +639327.560|220488.552|105.458 +639322.531|220492.993|105.379 +639317.538|220497.397|104.979 +639312.539|220501.814|104.678 +639307.474|220506.285|104.525 +639302.512|220510.668|104.379 +639297.473|220515.112|103.995 +639292.420|220519.574|103.806 +639287.396|220524.006|103.324 +639282.398|220528.414|102.602 +639277.320|220532.900|102.696 +639272.263|220537.369|102.632 +639262.122|220546.314|101.733 +639241.658|220564.407|102.831 +639236.516|220568.958|103.370 +639231.371|220573.506|103.382 +639226.196|220578.084|103.797 +639221.087|220582.604|104.044 +639215.930|220587.164|104.297 +639205.646|220596.256|104.544 +639195.298|220605.406|105.089 +639190.174|220609.935|105.095 +639184.990|220614.517|105.251 +639179.811|220619.095|105.382 +639174.639|220623.667|105.452 +639164.306|220632.802|105.516 +639159.127|220637.380|105.784 +639148.764|220646.539|105.726 +639138.422|220655.686|106.272 +639128.025|220664.873|106.196 +639117.662|220674.035|106.522 +639112.456|220678.641|106.750 +639107.253|220683.240|106.936 +639102.066|220687.824|106.839 +639096.930|220692.363|106.744 +639091.675|220697.011|107.134 +639065.727|220719.950|107.814 +639060.500|220724.571|107.768 +639050.128|220733.745|108.290 +639044.897|220738.366|108.415 +639013.689|220765.966|109.643 +638992.859|220784.388|110.655 +638987.643|220789.000|110.826 +638961.616|220812.034|113.258 +638956.456|220816.599|113.639 +638951.250|220821.208|114.123 +638935.681|220835.003|116.733 +638930.530|220839.554|116.748 +638925.382|220844.105|116.699 +638920.188|220848.695|116.647 +638914.988|220853.285|116.531 +638909.840|220857.839|116.696 +638904.640|220862.432|116.592 +638899.492|220866.986|116.751 +638894.344|220871.537|116.608 +638889.147|220876.130|116.763 +638883.996|220880.681|116.702 +638878.845|220885.231|116.495 +638873.645|220889.828|116.534 +638868.494|220894.378|116.489 +638863.349|220898.929|116.681 +638858.149|220903.526|116.638 +638853.001|220908.076|116.672 +638847.856|220912.627|116.952 +638842.702|220917.184|116.763 +638837.557|220921.734|117.001 +638806.796|220948.962|118.516 +638786.384|220967.031|119.902 +638781.293|220971.536|120.253 +638776.197|220976.047|120.427 +638740.642|221007.505|121.329 +638735.543|221012.016|121.564 +638715.347|221029.905|123.453 +638700.247|221043.280|124.999 +638685.171|221056.630|126.197 +638675.113|221065.530|126.636 +638670.047|221070.014|126.690 +638660.004|221078.902|127.468 +638654.972|221083.355|127.334 +638649.946|221087.799|127.364 +638644.926|221092.240|127.462 +638639.957|221096.638|127.617 +638634.885|221101.125|127.718 +638629.911|221105.523|127.846 +638624.934|221109.927|127.937 +638614.875|221118.818|127.519 +638609.925|221123.204|128.016 +638604.954|221127.603|128.254 +638599.925|221132.053|128.425 +638594.972|221136.433|128.348 +638589.964|221140.862|128.236 +638585.017|221145.239|128.260 +638580.012|221149.664|128.242 +638575.013|221154.084|128.303 +638570.064|221158.464|128.342 +638565.056|221162.896|128.339 +638560.093|221167.282|128.348 +638555.116|221171.683|128.199 +638550.218|221176.029|129.339 +638545.152|221180.498|128.364 +638540.306|221184.796|129.071 +638535.295|221189.224|129.178 +638530.385|221193.571|129.290 +638525.425|221197.960|129.431 +638520.503|221202.315|129.482 +638515.596|221206.656|129.693 +638510.694|221210.996|129.979 +638505.729|221215.388|130.153 +638500.874|221219.686|130.415 +638456.772|221258.697|130.318 +638446.985|221267.351|129.851 +638442.151|221271.633|130.092 +638417.944|221293.055|130.260 +638413.076|221297.358|130.004 +638408.193|221301.674|129.671 +638403.374|221305.935|129.473 +638393.581|221314.589|128.388 +638373.876|221331.984|125.108 +638369.054|221336.245|124.758 +638364.183|221340.546|124.087 +638359.346|221344.822|123.661 +638354.518|221349.089|123.331 +638349.696|221353.347|122.755 +638335.425|221365.975|122.713 +638330.743|221370.120|122.774 +638302.778|221394.885|124.353 +638293.527|221403.078|124.825 +638288.982|221407.108|125.566 +638284.441|221411.131|126.026 +638279.872|221415.179|126.331 +638266.403|221427.127|128.711 +638261.938|221431.093|129.656 +638257.448|221435.076|130.461 +638244.009|221446.985|132.006 +638234.893|221455.059|132.411 +638230.375|221459.058|132.594 +638225.913|221463.008|132.805 +638221.372|221467.029|132.887 +638212.380|221474.990|133.311 +638198.780|221487.018|132.829 +638194.061|221491.178|131.585 +638189.374|221495.314|130.525 +638184.890|221499.277|130.284 +638176.228|221506.961|131.595 +638171.668|221510.987|131.019 +638167.084|221515.035|130.342 +638162.685|221518.927|130.345 +638158.235|221522.862|130.116 +638153.764|221526.815|129.793 +638149.417|221530.662|129.854 +638144.992|221534.576|129.799 +638140.587|221538.471|129.607 +638136.189|221542.363|129.467 +638131.782|221546.259|129.306 +638127.383|221550.151|129.199 +638123.037|221553.994|129.117 +638118.690|221557.841|129.050 +638114.338|221561.688|128.726 +638109.933|221565.580|128.419 +638105.529|221569.472|127.907 +638101.143|221573.346|127.495 +638096.763|221577.217|127.132 +638092.383|221581.085|126.547 +638083.565|221588.870|125.200 +638079.091|221592.817|124.258 +638070.511|221600.400|123.621 +638066.262|221604.158|123.508 +638061.961|221607.956|122.957 +638057.694|221611.727|122.573 +638053.463|221615.467|122.365 +638049.299|221619.152|122.451 +638045.154|221622.818|122.414 +638040.948|221626.537|122.121 +638036.733|221630.262|121.823 +638032.563|221633.947|121.509 +638019.606|221645.374|118.589 +637998.541|221663.970|115.166 +637994.420|221667.612|114.773 +637990.290|221671.257|114.154 +637982.006|221678.569|112.883 +637978.004|221682.105|112.612 +637973.977|221685.665|112.252 +637965.717|221692.953|110.792 +637961.843|221696.382|110.871 +637957.945|221699.832|110.871 +637954.086|221703.246|110.813 +637925.950|221728.072|105.415 +637921.771|221731.748|103.894 +637918.119|221734.985|104.348 +637914.599|221738.109|105.083 +637911.033|221741.270|105.473 +637907.336|221744.541|105.376 +637903.556|221747.881|105.193 +637899.929|221751.088|105.190 +638102.384|221570.121|127.644 +638106.715|221566.284|127.843 +638111.098|221562.404|128.297 +638115.505|221558.502|128.644 +638119.903|221554.610|128.964 +638124.277|221550.736|129.187 +638128.602|221546.902|129.208 +638132.976|221543.025|129.232 +638137.384|221539.123|129.427 +638141.834|221535.182|129.586 +638146.232|221531.287|129.781 +638150.655|221527.367|129.857 +638155.065|221523.459|129.891 +638159.448|221519.573|129.821 +638163.901|221515.629|130.098 +638168.370|221511.673|130.217 +638181.732|221499.828|130.217 +638186.249|221495.829|130.382 +638190.821|221491.785|131.137 +638218.235|221467.513|132.789 +638222.777|221463.487|132.728 +638227.300|221459.476|132.591 +638231.817|221455.471|132.433 +638236.340|221451.456|132.052 +638250.017|221439.331|131.558 +638267.985|221423.372|128.455 +638290.827|221403.091|125.243 +638304.732|221390.755|124.200 +638323.547|221374.080|123.682 +638328.186|221369.959|123.045 +638332.932|221365.750|122.758 +638337.656|221361.565|122.673 +638347.242|221353.073|122.798 +638356.932|221344.499|123.703 +638361.775|221340.207|123.856 +638366.624|221335.919|124.395 +638391.304|221314.095|127.836 +638396.388|221309.611|129.528 +638401.231|221305.320|129.571 +638406.123|221300.986|129.601 +638410.997|221296.670|129.900 +638415.965|221292.271|130.186 +638420.830|221287.964|130.479 +638430.751|221279.186|131.451 +638440.310|221270.694|129.741 +638445.226|221266.339|129.778 +638455.111|221257.585|130.327 +638494.647|221222.560|130.634 +638499.594|221218.174|130.321 +638504.498|221213.825|130.104 +638509.451|221209.433|129.897 +638514.395|221205.050|129.610 +638519.406|221200.609|129.501 +638524.368|221196.210|129.440 +638529.400|221191.751|129.583 +638534.323|221187.386|129.159 +638539.346|221182.936|129.257 +638544.253|221178.575|128.251 +638549.377|221174.048|129.391 +638554.321|221169.653|128.272 +638559.347|221165.203|128.492 +638564.394|221160.732|128.452 +638569.399|221156.294|128.510 +638574.428|221151.837|128.321 +638579.470|221147.369|128.260 +638584.520|221142.895|128.355 +638589.607|221138.387|128.306 +638594.676|221133.900|128.656 +638599.684|221129.459|128.303 +638604.765|221124.954|128.284 +638609.767|221120.513|127.925 +638619.892|221111.543|128.108 +638625.010|221107.004|128.013 +638630.076|221102.515|127.870 +638635.135|221098.025|127.708 +638640.198|221093.535|127.611 +638645.261|221089.045|127.498 +638650.321|221084.559|127.361 +638655.435|221080.026|127.361 +638660.507|221075.531|127.443 +638665.582|221071.026|126.888 +638670.681|221066.502|126.721 +638675.784|221061.979|126.587 +638691.045|221048.437|125.593 +638696.120|221043.932|125.057 +638711.409|221030.362|123.804 +638731.843|221012.217|121.454 +638736.994|221007.652|121.478 +638747.268|220998.538|120.994 +638752.398|220993.987|120.536 +638762.670|220984.874|120.061 +638772.960|220975.751|120.024 +638778.102|220971.191|119.912 +638783.229|220966.641|119.488 +638788.362|220962.087|119.159 +638819.272|220934.667|117.732 +638824.447|220930.074|117.153 +638834.722|220920.960|116.803 +638839.913|220916.358|116.754 +638845.049|220911.801|116.495 +638850.239|220907.201|116.467 +638855.381|220902.645|116.650 +638860.569|220898.045|116.568 +638865.711|220893.485|116.592 +638870.899|220888.886|116.531 +638876.041|220884.329|116.519 +638881.228|220879.730|116.586 +638886.419|220875.130|116.742 +638891.558|220870.577|116.729 +638896.697|220866.017|116.574 +638901.885|220861.417|116.437 +638907.027|220856.861|116.492 +638912.214|220852.264|116.656 +638917.402|220847.662|116.644 +638922.489|220843.154|116.751 +638927.677|220838.554|116.693 +638932.868|220833.958|116.888 +638937.961|220829.438|116.483 +638958.611|220811.089|113.026 +638963.759|220806.517|112.731 +638968.913|220801.945|112.328 +638979.228|220792.788|111.356 +638994.703|220779.054|110.320 +639030.745|220747.084|108.914 +639051.280|220728.866|108.079 +639056.397|220724.330|108.107 +639066.657|220715.229|107.628 +639071.768|220710.700|107.866 +639076.901|220706.146|107.619 +639081.985|220701.635|107.451 +639087.121|220697.081|107.244 +639092.208|220692.567|107.064 +639097.344|220688.010|106.891 +639102.437|220683.493|106.665 +639112.602|220674.480|106.717 +639117.699|220669.960|106.525 +639138.047|220651.913|105.933 +639148.148|220642.955|105.784 +639158.295|220633.960|105.848 +639173.544|220620.433|105.306 +639178.552|220615.989|105.312 +639183.615|220611.502|105.275 +639188.699|220606.988|104.961 +639193.707|220602.550|105.065 +639198.809|220598.021|104.611 +639208.926|220589.047|104.278 +639224.035|220575.645|103.891 +639229.091|220571.159|103.602 +639239.140|220562.243|103.251 +639264.402|220539.816|101.108 +639289.100|220517.950|103.547 +639294.090|220513.527|103.766 +639299.022|220509.159|104.092 +639303.959|220504.782|104.364 +639308.915|220500.390|104.489 +639313.871|220496.001|104.641 +639318.800|220491.633|105.031 +639323.753|220487.244|105.257 +639328.654|220482.901|105.482 +639333.598|220478.524|105.830 +639338.521|220474.156|105.903 +639353.319|220461.043|106.461 +639358.177|220456.740|106.763 +639363.133|220452.347|107.073 +639367.998|220448.041|107.363 +639372.930|220443.673|107.525 +639377.809|220439.351|107.713 +639382.708|220435.010|107.765 +639387.621|220430.655|107.738 +639392.541|220426.293|107.659 +639397.472|220421.922|107.543 +639402.370|220417.579|107.302 +639407.317|220413.193|107.110 +639412.243|220408.822|106.711 +639417.144|220404.475|106.549 +639422.109|220400.068|105.918 +639426.986|220395.746|105.964 +639431.899|220391.384|105.424 +639436.831|220387.004|104.763 +639441.921|220382.478|103.398 +639451.684|220373.822|102.983 +639456.628|220369.433|102.379 +639461.496|220365.110|101.977 +639466.372|220360.788|101.895 +639471.231|220356.485|101.974 +639476.053|220352.208|101.968 +639480.829|220347.981|102.288 +639485.517|220343.835|102.876 +639490.308|220339.590|103.129 +639495.005|220335.435|103.672 +639499.699|220331.281|104.254 +639504.442|220327.084|104.861 +639509.084|220322.978|105.476 +639513.781|220318.823|106.074 +639518.481|220314.666|106.680 +639523.163|220310.521|107.076 +639527.796|220306.418|107.473 +639532.465|220302.291|108.290 +639537.117|220298.173|108.616 +639541.780|220294.043|108.875 +639546.489|220289.870|108.881 +639551.198|220285.698|108.914 +639555.831|220281.595|109.109 +639560.492|220277.465|109.164 +639565.195|220273.298|109.286 +639569.834|220269.184|109.192 +639574.561|220264.990|108.930 +639579.219|220260.863|108.792 +639583.916|220256.696|108.741 +639588.512|220252.621|108.677 +639593.163|220248.500|108.649 +639597.757|220244.428|108.649 +639602.405|220240.310|108.671 +639606.928|220236.305|109.103 +639611.454|220232.294|109.253 +639615.990|220228.276|109.359 +639620.641|220224.149|109.158 +639625.195|220220.114|109.213 +639629.794|220216.036|109.045 +639634.354|220211.991|108.844 +639638.935|220207.928|108.552 +639643.468|220203.908|108.521 +639647.988|220199.902|108.579 +639652.517|220195.888|108.354 +639657.068|220191.850|108.027 +639661.597|220187.832|107.838 +639666.096|220183.843|107.564 +639670.604|220179.840|107.253 +639675.152|220175.805|107.028 +639679.590|220171.870|106.854 +639684.067|220167.901|106.763 +639692.949|220160.022|106.479 +639697.369|220156.106|106.226 +639710.716|220144.261|105.144 +639715.145|220140.326|104.665 +639719.534|220136.434|104.403 +639723.901|220132.566|104.272 +639720.439|220133.166|104.208 +639715.922|220137.165|104.531 +639711.353|220141.216|105.117 +639706.778|220145.267|105.501 +639702.255|220149.272|105.921 +639697.722|220153.283|106.138 +639693.211|220157.276|106.293 +639688.700|220161.269|106.464 +639684.134|220165.311|106.662 +639679.593|220169.325|106.756 +639674.993|220173.397|106.909 +639670.436|220177.430|107.131 +639665.819|220181.517|107.406 +639661.195|220185.610|107.738 +639656.598|220189.679|107.960 +639651.941|220193.803|108.247 +639647.299|220197.915|108.491 +639642.700|220201.981|108.515 +639633.455|220210.159|108.613 +639628.697|220214.371|108.997 +639619.468|220222.534|108.866 +639614.725|220226.734|109.237 +639610.065|220230.855|109.192 +639605.374|220235.003|109.049 +639600.762|220239.082|108.783 +639596.163|220243.145|108.454 +639591.386|220247.372|108.549 +639586.677|220251.542|108.585 +639581.971|220255.708|108.640 +639577.210|220259.924|108.725 +639572.437|220264.151|108.887 +639567.648|220268.391|109.170 +639562.918|220272.582|109.152 +639558.145|220276.804|109.094 +639553.399|220281.004|108.902 +639548.684|220285.177|108.844 +639543.874|220289.435|108.780 +639539.113|220293.650|108.738 +639534.404|220297.811|108.393 +639529.615|220302.047|107.942 +639524.940|220306.177|107.424 +639520.191|220310.377|107.073 +639515.436|220314.578|106.452 +639510.718|220318.750|105.930 +639505.960|220322.954|105.348 +639501.269|220327.096|104.665 +639496.532|220331.281|103.983 +639491.765|220335.493|103.498 +639486.995|220339.711|103.050 +639482.188|220343.957|102.517 +639477.382|220348.206|102.005 +639472.560|220352.477|101.956 +639467.701|220356.774|101.831 +639462.828|220361.087|101.816 +639457.932|220365.424|101.989 +639452.940|220369.850|102.498 +639438.130|220382.978|103.797 +639433.076|220387.465|104.873 +639428.025|220391.945|105.620 +639423.142|220396.270|105.906 +639418.156|220400.690|106.260 +639413.243|220405.042|106.458 +639408.268|220409.450|106.772 +639403.297|220413.854|107.080 +639398.350|220418.234|107.226 +639393.397|220422.623|107.461 +639388.468|220426.985|107.521 +639383.543|220431.350|107.598 +639378.632|220435.696|107.570 +639373.692|220440.067|107.403 +639368.803|220444.395|107.244 +639363.822|220448.797|107.009 +639358.955|220453.103|106.714 +639349.073|220461.845|106.132 +639344.156|220466.195|105.885 +639339.222|220470.562|105.802 +639334.238|220474.973|105.735 +639329.328|220479.316|105.476 +639324.372|220483.699|105.196 +639319.416|220488.085|104.961 +639314.475|220492.453|104.577 +639309.473|220496.876|104.300 +639304.514|220501.268|104.156 +639299.555|220505.654|103.998 +639294.568|220510.065|103.657 +639289.622|220514.441|103.413 +639284.690|220518.794|102.538 +639279.691|220523.217|102.337 +639264.732|220536.445|101.020 +639254.478|220545.540|102.553 +639249.449|220549.996|102.846 +639239.326|220558.961|103.157 +639234.206|220563.499|103.483 +639229.149|220567.980|103.693 +639224.111|220572.439|103.663 +639213.952|220581.437|104.156 +639203.768|220590.456|104.492 +639198.681|220594.964|104.653 +639188.443|220604.031|105.208 +639178.299|220613.011|105.309 +639173.179|220617.546|105.415 +639168.046|220622.094|105.714 +639142.446|220644.759|105.988 +639132.134|220653.891|106.202 +639111.578|220672.093|106.705 +639106.375|220676.705|107.028 +639101.243|220681.244|106.884 +639090.928|220690.375|106.744 +639085.780|220694.935|107.070 +639080.583|220699.541|107.427 +639075.395|220704.134|107.561 +639070.202|220708.737|107.945 +639065.026|220713.321|107.970 +639059.854|220717.896|107.872 +639054.736|220722.422|107.601 +639044.315|220731.658|108.387 +639028.788|220745.410|109.000 +639018.395|220754.618|109.436 +639002.786|220768.450|110.435 +638987.204|220782.242|110.566 +638971.614|220796.062|111.959 +638945.627|220819.111|115.257 +638935.178|220828.380|116.818 +638930.033|220832.931|116.675 +638924.839|220837.530|116.656 +638919.597|220842.169|116.626 +638909.264|220851.319|116.632 +638904.070|220855.916|116.565 +638898.876|220860.515|116.608 +638893.682|220865.112|116.547 +638883.341|220874.265|116.531 +638878.150|220878.861|116.562 +638872.907|220883.503|116.605 +638867.759|220888.057|116.565 +638862.565|220892.656|116.480 +638857.372|220897.256|116.592 +638852.227|220901.809|116.498 +638847.082|220906.366|116.647 +638841.885|220910.966|116.486 +638836.740|220915.516|116.669 +638831.543|220920.116|116.647 +638826.355|220924.709|117.031 +638821.250|220929.220|116.876 +638816.056|220933.817|117.071 +638795.500|220952.016|118.455 +638780.080|220965.668|119.348 +638759.592|220983.798|119.918 +638749.387|220992.826|120.116 +638739.222|221001.833|121.122 +638729.011|221010.864|121.280 +638723.991|221015.314|122.064 +638708.845|221028.732|123.652 +638703.770|221033.227|124.282 +638698.775|221037.650|124.602 +638693.691|221042.155|125.041 +638688.704|221046.572|125.514 +638683.718|221050.988|125.995 +638678.676|221055.450|126.404 +638673.629|221059.919|126.703 +638668.612|221064.357|126.712 +638663.576|221068.816|127.205 +638653.551|221077.686|127.501 +638648.577|221082.087|127.510 +638643.551|221086.531|127.529 +638638.534|221090.972|127.666 +638633.514|221095.413|127.785 +638628.543|221099.814|127.903 +638623.529|221104.252|128.108 +638618.551|221108.653|128.233 +638613.577|221113.055|128.367 +638603.585|221121.891|128.208 +638598.623|221126.286|128.534 +638593.634|221130.700|128.583 +638588.711|221135.058|128.851 +638583.673|221139.505|128.412 +638578.729|221143.882|128.455 +638573.730|221148.305|128.483 +638568.783|221152.679|128.574 +638563.836|221157.056|128.678 +638558.880|221161.439|128.702 +638553.888|221165.852|128.376 +638548.990|221170.186|128.534 +638544.021|221174.582|128.486 +638534.210|221183.268|129.208 +638529.306|221187.609|129.367 +638519.479|221196.305|129.580 +638514.514|221200.697|129.690 +638509.646|221205.004|129.805 +638504.742|221209.344|130.055 +638494.973|221217.991|130.528 +638455.885|221252.562|130.519 +638450.954|221256.920|130.354 +638446.055|221261.249|130.086 +638441.160|221265.577|129.869 +638417.002|221286.946|130.388 +638412.158|221291.229|130.305 +638407.276|221295.542|129.988 +638397.507|221304.171|129.373 +638387.680|221312.842|127.751 +638368.048|221330.167|124.752 +638363.183|221334.462|124.115 +638358.303|221338.772|123.758 +638353.561|221342.966|123.639 +638348.659|221347.291|123.200 +638339.125|221355.719|122.786 +638325.007|221368.212|123.499 +638315.613|221376.527|124.164 +638310.983|221380.630|124.612 +638306.268|221384.797|124.569 +638301.519|221388.994|124.340 +638292.146|221397.284|124.694 +638287.599|221401.317|125.407 +638283.060|221405.337|125.883 +638278.464|221409.406|126.340 +638273.910|221413.442|127.053 +638255.963|221429.352|130.336 +638251.513|221433.296|131.098 +638246.999|221437.298|131.787 +638224.276|221457.403|132.692 +638219.732|221461.420|132.765 +638215.221|221465.410|132.747 +638192.601|221485.411|132.637 +638187.825|221489.614|131.128 +638183.183|221493.708|130.342 +638178.645|221497.719|130.089 +638174.246|221501.614|130.561 +638169.775|221505.568|130.415 +638165.203|221509.600|129.805 +638160.832|221513.468|129.940 +638156.370|221517.412|129.906 +638151.978|221521.298|129.982 +638147.500|221525.258|129.894 +638143.105|221529.141|129.748 +638138.761|221532.985|129.842 +638134.385|221536.852|129.808 +638129.980|221540.745|129.653 +638125.554|221544.655|129.427 +638112.390|221556.290|128.632 +638107.876|221560.273|127.843 +638094.861|221571.783|127.248 +638081.605|221583.487|125.285 +638077.167|221587.404|124.276 +638064.283|221598.794|123.514 +638059.955|221602.616|122.838 +638055.636|221606.432|122.463 +638051.421|221610.163|122.307 +638047.248|221613.851|122.137 +638043.103|221617.521|122.323 +638038.921|221621.218|122.143 +638034.757|221624.900|121.835 +638030.569|221628.604|121.661 +638026.394|221632.295|121.338 +638008.813|221647.788|116.169 +638004.616|221651.491|115.431 +638000.422|221655.197|114.925 +637996.218|221658.907|114.191 +637991.966|221662.659|113.288 +637979.799|221673.412|112.380 +637975.907|221676.860|112.548 +637963.687|221687.653|110.990 +637959.673|221691.197|110.527 +637955.796|221694.629|110.603 +637951.867|221698.104|110.499 +637944.000|221705.057|109.667 +637927.836|221719.318|106.375 +637923.822|221722.857|105.443 +637919.558|221726.609|103.803 +637916.269|221729.538|105.406 +637912.593|221732.793|105.577 +637908.820|221736.128|105.394 +637905.059|221739.456|105.269 +637901.407|221742.684|105.153 +637897.823|221745.860|105.501 +638107.452|221558.835|127.998 +638111.909|221554.887|128.565 +638116.279|221551.010|128.757 +638120.672|221547.115|128.815 +638125.103|221543.186|129.333 +638147.168|221523.612|129.787 +638151.648|221519.637|129.906 +638156.041|221515.736|129.882 +638160.494|221511.786|129.897 +638164.926|221507.851|129.836 +638169.382|221503.897|129.909 +638173.899|221499.892|130.046 +638178.395|221495.899|130.107 +638183.049|221491.779|130.717 +638192.358|221483.540|132.539 +638215.065|221463.392|132.753 +638219.656|221459.317|132.680 +638224.237|221455.248|132.573 +638233.305|221447.201|132.457 +638246.984|221435.055|131.433 +638251.477|221431.065|130.939 +638260.468|221423.064|129.168 +638274.072|221410.970|126.767 +638278.595|221406.949|126.224 +638283.188|221402.868|125.800 +638287.843|221398.732|125.151 +638292.421|221394.666|124.648 +638301.824|221386.321|124.282 +638306.597|221382.093|124.709 +638311.288|221377.932|124.651 +638316.027|221373.723|124.301 +638320.724|221369.550|124.014 +638339.579|221352.811|122.792 +638354.079|221339.960|123.575 +638363.814|221331.338|124.575 +638388.558|221309.444|128.861 +638403.267|221296.410|129.894 +638408.132|221292.098|130.138 +638413.045|221287.742|130.400 +638417.916|221283.423|130.351 +638427.801|221274.669|131.451 +638437.372|221266.159|129.863 +638442.236|221261.843|129.885 +638452.112|221253.092|130.372 +638491.568|221218.095|130.500 +638496.479|221213.736|130.339 +638501.380|221209.387|130.080 +638511.280|221200.599|129.653 +638521.213|221191.788|129.583 +638526.157|221187.402|129.363 +638531.159|221182.961|129.263 +638541.046|221174.179|128.443 +638546.070|221169.726|128.589 +638551.053|221165.307|128.345 +638556.091|221160.841|128.708 +638561.099|221156.400|128.772 +638566.092|221151.969|128.726 +638571.121|221147.506|128.553 +638576.114|221143.077|128.510 +638581.152|221138.609|128.480 +638586.233|221134.104|128.958 +638591.232|221129.669|128.492 +638596.276|221125.195|128.611 +638601.281|221120.754|128.257 +638611.410|221111.774|128.473 +638616.466|221107.285|128.254 +638621.493|221102.829|128.254 +638626.540|221098.351|127.910 +638631.609|221093.855|127.852 +638636.669|221089.366|127.721 +638641.725|221084.879|127.571 +638646.794|221080.386|127.568 +638651.851|221075.899|127.474 +638662.007|221066.890|127.184 +638667.045|221062.421|126.821 +638672.147|221057.895|126.703 +638682.312|221048.870|125.934 +638692.426|221039.893|125.148 +638697.549|221035.343|124.639 +638702.573|221030.883|124.093 +638707.684|221026.339|123.408 +638717.846|221017.320|122.603 +638722.945|221012.784|121.631 +638728.033|221008.270|121.320 +638733.156|221003.720|120.853 +638743.370|220994.655|120.113 +638763.938|220976.412|119.604 +638784.460|220958.195|118.208 +638799.920|220944.479|117.604 +638810.182|220935.368|116.809 +638815.373|220930.766|116.800 +638820.463|220926.251|116.739 +638825.648|220921.649|116.525 +638830.839|220917.050|116.531 +638835.978|220912.490|116.464 +638841.165|220907.887|116.452 +638846.307|220903.330|116.534 +638851.495|220898.731|116.498 +638856.637|220894.171|116.592 +638861.822|220889.572|116.562 +638867.012|220884.972|116.656 +638872.200|220880.373|116.635 +638877.336|220875.816|116.544 +638882.524|220871.217|116.623 +638887.715|220866.617|116.821 +638892.850|220862.060|116.705 +638898.038|220857.458|116.623 +638903.226|220852.859|116.644 +638908.414|220848.259|116.669 +638913.549|220843.702|116.617 +638923.922|220834.506|116.650 +638929.058|220829.953|116.754 +638934.245|220825.353|116.793 +638944.584|220816.170|115.465 +638949.793|220811.518|113.066 +638954.941|220806.953|112.849 +638960.096|220802.374|112.234 +638965.295|220797.757|111.844 +638975.656|220788.561|110.987 +639006.645|220761.059|109.798 +639027.310|220742.719|108.664 +639032.419|220738.189|108.805 +639042.770|220728.997|108.030 +639047.890|220724.455|107.890 +639078.678|220697.145|107.546 +639088.901|220688.071|107.101 +639094.028|220683.523|107.101 +639124.624|220656.378|106.400 +639129.665|220651.903|106.366 +639139.812|220642.903|106.205 +639144.939|220638.352|105.702 +639149.989|220633.871|105.680 +639160.069|220624.932|105.985 +639165.135|220620.436|105.802 +639170.213|220615.928|105.467 +639175.236|220611.472|105.284 +639190.345|220598.070|104.986 +639195.420|220593.565|104.854 +639205.518|220584.597|104.089 +639210.474|220580.202|104.303 +639225.562|220566.812|103.647 +639230.554|220562.384|103.541 +639235.623|220557.882|103.132 +639240.646|220553.422|102.742 +639265.692|220531.187|100.953 +639275.518|220522.488|102.361 +639285.409|220513.716|102.636 +639290.262|220509.421|103.230 +639295.193|220505.051|103.541 +639300.131|220500.671|103.803 +639305.041|220496.321|103.907 +639309.933|220491.981|104.156 +639314.829|220487.643|104.425 +639319.711|220483.318|104.830 +639324.613|220478.972|105.059 +639329.471|220474.668|105.257 +639334.375|220470.319|105.504 +639339.252|220465.993|105.568 +639344.184|220461.620|105.620 +639353.931|220452.978|105.906 +639358.738|220448.720|106.638 +639363.615|220444.395|106.805 +639368.428|220440.125|107.073 +639373.308|220435.797|107.238 +639378.191|220431.469|107.424 +639382.994|220427.204|107.436 +639387.923|220422.828|107.268 +639392.784|220418.512|107.259 +639397.631|220414.208|107.009 +639402.523|220409.861|106.827 +639407.387|220405.542|106.503 +639412.304|220401.174|106.189 +639417.162|220396.859|105.955 +639422.094|220392.479|105.586 +639426.919|220388.190|105.281 +639431.872|220383.786|104.455 +639446.679|220370.615|102.191 +639451.483|220366.354|102.200 +639456.332|220362.044|101.904 +639461.166|220357.750|101.733 +639465.961|220353.498|101.877 +639470.728|220349.267|101.874 +639475.501|220345.033|102.178 +639480.204|220340.867|102.654 +639484.907|220336.697|103.123 +639489.656|220332.488|103.638 +639494.298|220328.376|104.214 +639498.986|220324.221|104.827 +639503.665|220320.076|105.501 +639508.313|220315.958|106.068 +639512.979|220311.822|106.531 +639517.682|220307.656|107.095 +639531.676|220295.250|108.320 +639536.345|220291.105|108.518 +639541.027|220286.954|108.680 +639545.764|220282.750|108.823 +639550.421|220278.617|108.841 +639555.127|220274.438|108.899 +639559.827|220270.272|109.030 +639564.488|220266.133|109.094 +639569.194|220261.954|108.917 +639573.909|220257.769|108.728 +639578.621|220253.581|108.564 +639583.266|220249.457|108.506 +639587.921|220245.324|108.424 +639592.624|220241.151|108.393 +639601.795|220233.016|108.789 +639606.425|220228.907|108.927 +639610.997|220224.850|109.103 +639615.645|220220.723|108.902 +639624.856|220212.549|108.997 +639629.474|220208.446|108.738 +639634.080|220204.356|108.573 +639638.713|220200.238|108.274 +639643.257|220196.208|108.460 +639647.808|220192.164|108.357 +639652.404|220188.082|108.064 +639656.989|220184.010|107.835 +639666.163|220175.860|107.168 +639670.708|220171.821|106.939 +639675.240|220167.795|106.805 +639679.724|220163.814|106.674 +639684.223|220159.818|106.482 +639688.773|220155.776|106.305 +639693.269|220151.784|106.177 +639697.692|220147.858|106.150 +639711.191|220135.858|104.867 +639715.745|220131.807|104.318 +639713.364|220131.859|104.739 +639708.978|220135.742|104.964 +639700.051|220143.655|105.961 +639695.604|220147.590|106.040 +639691.157|220151.525|106.129 +639686.731|220155.441|106.147 +639682.257|220159.404|106.412 +639677.806|220163.345|106.589 +639673.305|220167.331|106.769 +639668.827|220171.294|106.860 +639664.304|220175.302|107.192 +639659.741|220179.341|107.473 +639655.129|220183.425|107.771 +639650.533|220187.497|108.012 +639645.997|220191.511|108.235 +639641.480|220195.510|108.122 +639636.917|220199.549|108.253 +639632.288|220203.648|108.488 +639627.609|220207.791|108.713 +639622.994|220211.875|108.908 +639613.811|220220.001|108.847 +639609.181|220224.101|108.924 +639604.542|220228.203|108.780 +639599.912|220232.300|108.610 +639595.334|220236.347|108.436 +639590.627|220240.511|108.433 +639585.964|220244.635|108.223 +639581.288|220248.774|108.387 +639576.573|220252.947|108.494 +639571.855|220257.126|108.655 +639567.075|220261.356|108.881 +639562.327|220265.560|108.963 +639557.611|220269.732|108.878 +639552.850|220273.942|108.765 +639548.135|220278.114|108.710 +639543.368|220282.330|108.680 +639538.625|220286.524|108.527 +639533.883|220290.721|108.399 +639529.192|220294.866|107.966 +639519.624|220303.324|107.357 +639514.897|220307.500|106.884 +639510.145|220311.700|106.272 +639505.408|220315.885|105.882 +639500.656|220320.079|105.281 +639495.923|220324.264|104.595 +639491.168|220328.461|104.035 +639486.325|220332.741|103.407 +639481.554|220336.953|102.977 +639476.800|220341.153|102.133 +639471.975|220345.417|101.761 +639467.098|220349.733|101.758 +639462.187|220354.077|101.663 +639457.317|220358.384|101.648 +639452.376|220362.760|101.816 +639447.408|220367.162|102.197 +639437.435|220375.995|102.934 +639432.408|220380.454|103.821 +639427.334|220384.956|104.723 +639422.365|220389.360|105.272 +639417.339|220393.811|105.528 +639412.359|220398.224|105.857 +639407.378|220402.634|106.199 +639402.407|220407.039|106.522 +639397.396|220411.474|106.769 +639392.443|220415.860|107.009 +639387.472|220420.261|107.019 +639382.482|220424.678|107.198 +639377.514|220429.073|107.223 +639372.567|220433.453|107.125 +639367.635|220437.812|106.903 +639362.618|220442.249|106.589 +639357.684|220446.611|106.415 +639342.831|220459.742|105.214 +639337.878|220464.125|105.290 +639332.845|220468.578|105.229 +639327.880|220472.967|105.010 +639322.872|220477.399|104.787 +639317.913|220481.782|104.541 +639312.927|220486.189|104.132 +639307.928|220490.612|103.864 +639302.935|220495.026|103.553 +639297.921|220499.461|103.455 +639292.926|220503.880|103.205 +639287.945|220508.281|102.824 +639277.984|220517.087|102.099 +639272.922|220521.568|102.084 +639267.892|220526.021|102.288 +639252.747|220539.429|102.614 +639247.690|220543.903|102.666 +639242.682|220548.335|102.785 +639237.565|220552.871|103.065 +639232.487|220557.367|103.465 +639217.289|220570.823|103.925 +639212.196|220575.335|104.077 +639207.139|220579.812|104.382 +639191.902|220593.312|105.232 +639181.747|220602.306|105.495 +639176.644|220606.820|105.327 +639171.572|220611.310|105.421 +639166.497|220615.803|105.626 +639161.368|220620.347|105.930 +639156.308|220624.828|105.982 +639151.199|220629.351|106.031 +639146.170|220633.795|105.607 +639141.007|220638.370|105.845 +639105.226|220670.060|107.119 +639079.641|220692.710|107.421 +639074.509|220697.255|107.521 +639069.370|220701.808|107.756 +639059.058|220710.937|108.012 +639053.934|220715.476|108.049 +639048.759|220720.057|108.174 +639043.632|220724.595|108.274 +639038.463|220729.173|108.357 +639022.991|220742.877|109.006 +638997.104|220765.804|110.106 +638991.944|220770.379|110.295 +638966.042|220793.328|111.923 +638950.528|220807.071|112.849 +638929.719|220825.542|116.845 +638924.577|220830.090|116.629 +638919.435|220834.644|116.629 +638914.196|220839.283|116.592 +638909.008|220843.876|116.800 +638903.863|220848.427|116.565 +638893.481|220857.620|116.614 +638888.339|220862.173|116.717 +638883.097|220866.809|116.583 +638877.906|220871.406|116.669 +638872.764|220875.959|116.589 +638867.570|220880.556|116.452 +638862.379|220885.152|116.589 +638857.234|220889.706|116.492 +638852.041|220894.302|116.425 +638846.853|220898.896|116.675 +638841.659|220903.495|116.608 +638836.465|220908.091|116.559 +638831.272|220912.691|116.541 +638826.123|220917.251|116.449 +638820.985|220921.804|116.836 +638815.785|220926.407|116.589 +638810.637|220930.964|116.623 +638805.434|220935.572|116.318 +638795.171|220944.674|117.455 +638764.279|220972.048|118.900 +638754.005|220981.155|119.589 +638733.519|220999.306|120.238 +638728.383|221003.860|120.607 +638718.227|221012.867|121.737 +638713.164|221017.359|122.582 +638708.120|221021.831|122.835 +638697.985|221030.822|124.285 +638692.913|221035.324|124.898 +638682.837|221044.255|125.657 +638677.759|221048.760|126.203 +638667.682|221057.694|126.962 +638652.616|221071.041|127.532 +638647.559|221075.521|127.681 +638642.539|221079.969|127.739 +638637.519|221084.416|127.779 +638632.502|221088.860|127.894 +638627.488|221093.304|128.031 +638622.511|221097.708|128.083 +638617.500|221102.149|128.327 +638612.528|221106.553|128.464 +638607.508|221111.003|128.601 +638597.517|221119.849|128.400 +638592.546|221124.253|128.635 +638587.574|221128.657|128.854 +638582.588|221133.077|128.909 +638577.623|221137.469|128.726 +638572.612|221141.904|128.568 +638567.671|221146.281|128.669 +638562.687|221150.697|128.854 +638557.737|221155.081|128.906 +638552.745|221159.497|128.553 +638547.780|221163.895|128.489 +638537.858|221172.683|128.504 +638533.055|221176.950|129.601 +638528.059|221181.370|129.333 +638523.170|221185.704|129.604 +638508.408|221198.777|129.699 +638503.544|221203.087|129.854 +638498.646|221207.427|130.150 +638493.787|221211.731|130.369 +638488.929|221216.041|130.592 +638454.757|221246.298|130.598 +638449.871|221250.623|130.363 +638445.010|221254.930|130.351 +638440.103|221259.271|130.010 +638435.250|221263.571|130.098 +638425.737|221272.011|131.433 +638401.387|221293.558|129.927 +638391.697|221302.135|129.501 +638376.896|221315.214|127.053 +638357.294|221332.535|124.026 +638342.862|221345.304|123.042 +638338.046|221349.568|122.822 +638314.607|221370.343|124.538 +638309.861|221374.549|124.554 +638300.394|221382.928|124.215 +638291.037|221391.219|124.609 +638286.468|221395.276|125.166 +638281.838|221399.378|125.697 +638277.242|221403.456|126.120 +638272.752|221407.443|126.888 +638268.204|221411.479|127.620 +638259.115|221419.544|128.858 +638254.659|221423.500|129.851 +638250.102|221427.545|130.574 +638232.015|221443.586|132.357 +638227.468|221447.616|132.625 +638222.899|221451.661|132.521 +638218.342|221455.696|132.506 +638213.745|221459.768|132.564 +638209.222|221463.773|132.494 +638195.686|221475.764|132.805 +638181.723|221488.103|130.607 +638177.176|221492.123|130.028 +638172.652|221496.128|129.857 +638168.138|221500.124|129.754 +638163.703|221504.050|129.802 +638159.241|221508.000|129.732 +638154.809|221511.929|129.818 +638150.518|221515.736|130.354 +638123.832|221539.349|128.949 +638119.428|221543.247|128.821 +638115.066|221547.109|128.665 +638106.264|221554.897|128.047 +638101.832|221558.810|127.644 +638079.883|221578.211|125.404 +638075.418|221582.155|124.499 +638058.187|221597.386|122.929 +638053.884|221601.190|122.371 +638049.620|221604.963|122.234 +638045.444|221608.657|122.042 +638041.277|221612.342|121.902 +638037.208|221615.948|122.192 +638033.008|221619.661|121.942 +638015.939|221634.739|119.332 +638006.771|221642.804|115.236 +637998.489|221650.125|114.416 +637994.152|221653.948|113.139 +637990.189|221657.453|113.179 +637986.096|221661.074|112.910 +637982.082|221664.625|112.767 +637977.997|221668.234|112.362 +637957.795|221686.092|110.365 +637953.918|221689.524|110.441 +637945.932|221696.580|109.527 +637941.805|221700.223|108.475 +637937.843|221703.719|107.872 +637933.783|221707.306|107.110 +637929.909|221710.729|106.668 +637926.017|221714.170|106.372 +637922.164|221717.575|106.034 +637917.869|221721.351|104.062 +637914.599|221724.265|105.729 +637910.813|221727.618|105.677 +637907.000|221730.986|105.345 +637903.291|221734.269|105.196 +637899.645|221737.497|105.507 +637896.024|221740.706|105.708 +638103.347|221555.695|127.699 +638107.772|221551.772|128.120 +638112.134|221547.904|128.266 +638116.572|221543.973|128.544 +638120.918|221540.114|128.669 +638129.797|221532.241|129.089 +638134.302|221528.251|129.513 +638152.130|221512.441|130.272 +638156.419|221508.628|129.760 +638165.374|221500.679|129.595 +638169.836|221496.719|129.720 +638174.353|221492.714|129.879 +638178.885|221488.694|130.147 +638183.528|221484.585|130.705 +638188.331|221480.339|132.128 +638192.876|221476.307|132.259 +638206.552|221464.173|132.457 +638211.097|221460.140|132.399 +638215.718|221456.041|132.475 +638220.253|221452.014|132.408 +638224.859|221447.930|132.457 +638229.455|221443.849|132.472 +638238.584|221435.738|131.930 +638252.169|221423.659|130.196 +638256.625|221419.690|129.242 +638261.154|221415.658|128.412 +638265.729|221411.589|127.864 +638279.424|221399.406|125.773 +638284.026|221395.315|125.422 +638288.608|221391.240|124.660 +638293.317|221387.055|124.365 +638298.005|221382.892|124.258 +638307.533|221374.439|124.724 +638312.306|221370.203|124.898 +638321.685|221361.866|123.947 +638340.607|221345.057|122.923 +638345.502|221340.716|123.380 +638350.278|221336.473|123.078 +638360.096|221327.771|124.295 +638364.963|221323.455|124.676 +638369.925|221319.063|125.724 +638374.988|221314.589|127.145 +638389.856|221301.418|129.495 +638399.555|221292.811|129.690 +638414.298|221279.732|130.513 +638419.257|221275.340|131.171 +638424.137|221271.008|131.256 +638433.741|221262.465|129.958 +638438.658|221258.103|129.994 +638443.541|221253.772|130.199 +638448.518|221249.352|130.409 +638453.438|221244.991|130.546 +638483.006|221218.744|130.732 +638487.965|221214.340|130.543 +638492.864|221209.987|130.266 +638497.817|221205.589|130.055 +638502.721|221201.233|129.863 +638507.726|221196.786|129.729 +638512.645|221192.419|129.714 +638517.656|221187.972|129.650 +638522.603|221183.576|129.495 +638527.553|221179.181|129.363 +638537.496|221170.348|128.620 +638542.467|221165.934|128.754 +638547.447|221161.512|128.531 +638552.541|221156.995|128.946 +638557.497|221152.596|129.010 +638562.535|221148.122|128.934 +638567.512|221143.702|128.729 +638572.545|221139.231|128.647 +638577.589|221134.763|129.220 +638582.594|221130.315|128.870 +638587.641|221125.838|128.973 +638592.594|221121.434|128.629 +638602.668|221112.491|128.711 +638607.740|221107.986|128.653 +638612.754|221103.530|128.501 +638617.780|221099.067|128.477 +638622.837|221094.575|128.275 +638632.953|221085.586|127.967 +638637.970|221081.133|127.922 +638643.036|221076.631|127.928 +638648.086|221072.144|127.721 +638653.134|221067.661|127.498 +638658.242|221063.122|127.449 +638668.371|221054.121|126.828 +638673.406|221049.647|126.480 +638678.423|221045.185|125.819 +638683.550|221040.625|125.389 +638688.585|221036.147|125.066 +638693.666|221031.630|124.676 +638698.723|221027.131|123.850 +638703.783|221022.629|123.085 +638708.858|221018.115|122.591 +638713.975|221013.565|121.972 +638734.269|220995.514|119.750 +638739.411|220990.948|119.543 +638744.507|220986.422|119.497 +638759.854|220972.779|118.403 +638770.129|220963.650|117.961 +638790.636|220945.433|117.385 +638800.941|220936.267|116.467 +638811.225|220927.135|116.443 +638816.419|220922.527|116.531 +638821.561|220917.961|116.559 +638826.748|220913.352|116.419 +638831.890|220908.786|116.553 +638837.026|220904.224|116.434 +638842.217|220899.615|116.486 +638847.408|220895.009|116.672 +638852.547|220890.447|116.632 +638862.870|220881.275|116.620 +638868.058|220876.670|116.562 +638873.243|220872.064|116.461 +638878.385|220867.501|116.638 +638883.569|220862.896|116.431 +638888.757|220858.290|116.556 +638893.893|220853.727|116.626 +638899.081|220849.122|116.534 +638904.268|220844.516|116.675 +638909.404|220839.953|116.553 +638914.540|220835.393|116.528 +638919.725|220830.788|116.589 +638924.912|220826.185|116.742 +638930.051|220821.623|116.714 +638955.987|220798.540|112.679 +638981.950|220775.457|110.774 +638987.156|220770.837|110.615 +639013.113|220747.766|109.073 +639038.984|220724.787|108.543 +639044.160|220720.188|108.216 +639049.323|220715.601|108.253 +639070.028|220697.206|107.521 +639075.188|220692.625|107.756 +639080.321|220688.065|107.582 +639085.512|220683.453|107.229 +639090.642|220678.897|107.208 +639095.762|220674.352|107.393 +639106.095|220665.171|106.982 +639121.518|220651.471|106.650 +639131.808|220642.330|106.449 +639142.077|220633.207|105.955 +639152.260|220624.164|106.156 +639157.384|220619.613|105.827 +639172.679|220606.025|105.379 +639177.711|220601.557|105.735 +639182.786|220597.049|105.568 +639198.038|220583.494|104.815 +639208.179|220574.481|104.205 +639228.287|220556.617|103.708 +639253.405|220534.296|102.407 +639258.407|220529.852|102.346 +639273.339|220516.587|102.114 +639283.279|220507.757|101.913 +639288.241|220503.359|102.447 +639293.099|220499.049|103.001 +639298.043|220494.663|103.236 +639302.941|220490.313|103.434 +639307.876|220485.933|103.766 +639312.719|220481.636|104.053 +639317.657|220477.256|104.425 +639322.510|220472.949|104.647 +639327.417|220468.593|104.867 +639332.278|220464.277|105.050 +639337.201|220459.907|105.162 +639342.096|220455.560|105.117 +639346.967|220451.235|105.284 +639356.589|220442.704|106.269 +639361.405|220438.427|106.510 +639366.224|220434.154|106.759 +639371.098|220429.829|106.979 +639375.886|220425.580|107.119 +639380.745|220421.264|107.095 +639385.576|220416.972|106.930 +639390.398|220412.690|106.851 +639395.290|220408.343|106.653 +639400.139|220404.037|106.424 +639404.998|220399.718|106.132 +639409.826|220395.426|105.748 +639414.648|220391.140|105.431 +639419.567|220386.764|104.772 +639424.377|220382.490|104.601 +639429.278|220378.129|103.800 +639434.158|220373.788|103.172 +639439.017|220369.469|102.739 +639443.890|220365.135|102.230 +639448.697|220360.862|101.843 +639453.479|220356.613|101.675 +639458.246|220352.379|101.630 +639463.007|220348.151|101.654 +639467.814|220343.881|101.398 +639472.490|220339.739|102.038 +639477.074|220335.679|102.946 +639481.743|220331.537|103.306 +639486.425|220327.385|103.928 +639491.061|220323.277|104.537 +639495.652|220319.208|105.129 +639500.281|220315.105|105.787 +639504.963|220310.954|106.144 +639509.566|220306.872|106.686 +639514.214|220302.745|106.939 +639518.810|220298.670|107.546 +639523.443|220294.564|107.954 +639528.049|220290.477|108.219 +639532.721|220286.329|108.399 +639537.363|220282.211|108.488 +639541.996|220278.096|108.637 +639546.642|220273.972|108.735 +639551.299|220269.836|108.783 +639555.911|220265.742|108.826 +639560.522|220261.646|108.872 +639565.204|220257.488|108.841 +639569.852|220253.358|108.719 +639574.531|220249.204|108.463 +639579.152|220245.098|108.262 +639583.766|220241.002|108.396 +639588.411|220236.875|108.378 +639593.008|220232.793|108.378 +639597.589|220228.727|108.472 +639611.296|220216.557|108.777 +639615.825|220212.539|108.957 +639620.425|220208.452|108.768 +639625.045|220204.343|108.497 +639634.232|220196.181|108.287 +639643.309|220188.119|108.198 +639647.826|220184.108|108.030 +639657.010|220175.945|107.518 +639661.579|220171.885|107.156 +639666.136|220167.834|106.872 +639670.668|220163.808|106.729 +639675.167|220159.806|106.506 +639679.663|220155.813|106.327 +639684.210|220151.771|106.171 +639688.691|220147.794|106.110 +639693.132|220143.847|105.997 +639697.625|220139.857|105.918 +639702.145|220135.836|105.464 +639706.683|220131.798|104.952 +639715.544|220123.928|104.519 +639714.837|220122.623|104.412 +639710.457|220126.516|104.867 +639706.159|220130.326|104.931 +639701.779|220134.215|105.418 +639697.359|220138.138|105.848 +639693.022|220141.984|105.921 +639688.633|220145.877|106.004 +639684.308|220149.714|106.052 +639679.916|220153.609|106.193 +639675.472|220157.550|106.339 +639671.080|220161.449|106.522 +639666.629|220165.396|106.732 +639662.240|220169.294|106.942 +639657.717|220173.306|107.299 +639653.258|220177.265|107.634 +639648.765|220181.255|107.896 +639639.792|220189.210|108.134 +639635.299|220193.197|108.186 +639630.821|220197.165|108.177 +639626.231|220201.241|108.515 +639621.723|220205.243|108.707 +639617.191|220209.260|108.768 +639612.631|220213.305|108.735 +639608.077|220217.340|108.671 +639603.594|220221.315|108.533 +639599.000|220225.387|108.454 +639594.471|220229.401|108.329 +639589.875|220233.476|108.287 +639585.229|220237.594|108.265 +639580.618|220241.681|108.351 +639576.040|220245.738|108.274 +639571.306|220249.935|108.503 +639566.627|220254.087|108.744 +639561.940|220258.244|108.774 +639557.261|220262.390|108.756 +639552.539|220266.575|108.725 +639547.864|220270.717|108.732 +639543.222|220274.832|108.579 +639538.470|220279.041|108.469 +639533.718|220283.253|108.393 +639529.024|220287.411|108.287 +639524.306|220291.586|107.729 +639519.642|220295.710|107.162 +639514.875|220299.941|107.262 +639510.136|220304.135|106.878 +639505.433|220308.299|106.290 +639500.684|220312.505|106.007 +639495.889|220316.745|105.376 +639491.192|220320.902|104.781 +639486.453|220325.093|104.144 +639481.670|220329.324|103.471 +639476.915|220333.530|102.953 +639472.161|220337.736|102.133 +639467.311|220342.028|101.596 +639462.437|220346.350|101.596 +639457.524|220350.706|101.541 +639452.635|220355.037|101.666 +639447.658|220359.450|101.749 +639442.689|220363.861|102.160 +639437.669|220368.317|102.599 +639432.698|220372.731|103.081 +639427.657|220377.202|103.715 +639422.551|220381.737|104.507 +639417.549|220386.181|104.964 +639412.502|220390.659|105.397 +639407.528|220395.072|105.693 +639402.447|220399.580|106.061 +639397.426|220404.034|106.397 +639392.373|220408.514|106.607 +639387.386|220412.937|106.735 +639382.351|220417.402|106.891 +639377.325|220421.858|106.964 +639372.317|220426.299|106.958 +639367.337|220430.710|106.723 +639362.304|220435.166|106.528 +639357.336|220439.567|106.232 +639347.329|220448.428|105.467 +639342.303|220452.881|105.287 +639337.286|220457.325|105.074 +639332.208|220461.827|104.976 +639327.191|220466.271|104.797 +639322.132|220470.751|104.562 +639317.127|220475.186|104.321 +639312.079|220479.658|104.019 +639307.038|220484.120|103.663 +639301.999|220488.582|103.324 +639296.955|220493.051|103.053 +639291.904|220497.525|102.849 +639281.840|220506.431|101.654 +639276.753|220510.942|101.877 +639271.614|220515.502|102.148 +639246.090|220538.134|102.779 +639235.882|220547.186|102.980 +639230.749|220551.740|103.468 +639215.329|220565.416|104.254 +639205.140|220574.448|104.650 +639200.004|220578.998|104.778 +639189.772|220588.069|105.266 +639179.552|220597.125|105.711 +639174.437|220601.654|105.705 +639169.341|220606.168|105.504 +639164.196|220610.731|106.007 +639159.139|220615.209|105.967 +639148.877|220624.298|105.991 +639143.768|220628.824|106.065 +639133.533|220637.898|106.671 +639128.446|220642.403|106.510 +639123.344|220646.923|106.641 +639113.090|220656.006|106.924 +639102.901|220665.034|107.128 +639097.753|220669.600|107.384 +639087.533|220678.653|107.436 +639082.442|220683.161|107.552 +639077.304|220687.718|107.759 +639072.174|220692.259|107.756 +639067.087|220696.770|108.009 +639051.700|220710.401|108.326 +639041.508|220719.429|108.253 +639036.381|220723.974|108.491 +639031.257|220728.515|108.649 +639026.140|220733.047|108.622 +639020.979|220737.613|108.427 +639015.853|220742.161|108.835 +639000.494|220755.773|109.573 +638990.207|220764.896|110.368 +638985.095|220769.425|110.472 +638969.660|220783.108|111.432 +638954.240|220796.775|112.234 +638943.959|220805.925|115.620 +638928.567|220819.571|116.736 +638923.376|220824.168|116.601 +638918.234|220828.724|116.647 +638913.138|220833.235|116.492 +638907.612|220838.131|116.547 +638902.808|220842.386|116.486 +638897.715|220846.900|116.635 +638892.524|220851.496|116.644 +638887.382|220856.053|116.824 +638882.240|220860.607|116.729 +638877.046|220865.206|116.449 +638871.950|220869.717|116.541 +638866.759|220874.316|116.434 +638861.614|220878.873|116.452 +638856.475|220883.427|116.659 +638851.327|220887.984|116.434 +638846.188|220892.541|116.592 +638841.043|220897.094|116.605 +638835.901|220901.651|116.693 +638830.705|220906.250|116.510 +638825.608|220910.761|116.504 +638820.460|220915.318|116.449 +638815.269|220919.915|116.583 +638810.170|220924.429|116.440 +638805.022|220928.982|116.473 +638799.880|220933.539|116.614 +638794.726|220938.099|116.473 +638789.590|220942.650|116.800 +638779.315|220951.754|117.488 +638774.176|220956.305|117.760 +638763.917|220965.385|117.610 +638758.778|220969.939|117.946 +638753.633|220974.495|118.104 +638748.567|220978.988|118.961 +638743.410|220983.554|118.866 +638733.178|220992.619|119.454 +638728.026|220997.179|119.521 +638712.808|221010.675|121.554 +638702.664|221019.670|122.868 +638697.601|221024.163|123.621 +638692.545|221028.646|124.551 +638687.461|221033.154|124.932 +638682.413|221037.623|125.179 +638672.309|221046.581|126.251 +638667.280|221051.040|126.788 +638657.185|221059.983|127.288 +638652.125|221064.460|127.401 +638647.077|221068.932|127.696 +638642.070|221073.370|127.861 +638637.016|221077.844|128.108 +638631.993|221082.291|128.123 +638626.927|221086.778|128.205 +638621.910|221091.219|128.342 +638616.893|221095.663|128.470 +638611.873|221100.107|128.589 +638606.850|221104.554|128.702 +638601.821|221109.007|128.757 +638596.834|221113.420|128.745 +638586.858|221122.250|128.769 +638581.844|221126.691|129.068 +638576.836|221131.126|128.885 +638571.868|221135.525|129.193 +638566.836|221139.975|128.818 +638561.895|221144.352|128.928 +638556.908|221148.768|129.071 +638551.952|221153.151|129.080 +638546.969|221157.562|128.806 +638542.013|221161.948|128.845 +638537.057|221166.334|128.900 +638532.152|221170.680|128.976 +638527.184|221175.082|129.434 +638522.326|221179.382|129.540 +638517.370|221183.771|129.653 +638512.462|221188.118|129.796 +638507.540|221192.473|129.815 +638502.614|221196.835|129.830 +638497.704|221201.182|130.004 +638492.845|221205.485|130.208 +638487.932|221209.835|130.400 +638483.080|221214.136|130.677 +638478.169|221218.485|130.915 +638448.884|221244.402|130.519 +638444.022|221248.706|130.488 +638439.136|221253.031|130.272 +638434.266|221257.341|130.214 +638429.419|221261.636|130.345 +638414.987|221274.419|130.958 +638410.147|221278.702|130.851 +638390.740|221295.871|129.601 +638351.531|221330.505|123.045 +638342.064|221338.887|123.277 +638337.357|221343.057|123.414 +638327.912|221351.424|123.889 +638323.318|221355.499|124.481 +638304.536|221372.132|125.090 +638295.085|221380.496|124.828 +638290.397|221384.647|124.642 +638281.204|221392.798|125.736 +638262.971|221408.964|128.053 +638240.534|221428.874|131.793 +638226.910|221440.944|132.607 +638213.169|221453.105|132.390 +638208.655|221457.104|132.329 +638194.967|221469.217|132.094 +638190.413|221473.247|131.912 +638181.129|221481.446|130.211 +638176.523|221485.518|129.833 +638172.034|221489.493|129.812 +638167.510|221493.495|129.638 +638163.024|221497.463|129.415 +638158.665|221501.325|129.842 +638154.288|221505.205|130.189 +638140.822|221517.117|129.434 +638136.369|221521.058|129.226 +638131.928|221524.990|129.095 +638127.523|221528.885|128.912 +638109.927|221544.451|128.230 +638105.581|221548.301|128.166 +638101.216|221552.166|128.041 +638096.800|221556.073|127.455 +638092.371|221559.993|127.059 +638087.988|221563.870|126.672 +638083.638|221567.720|126.209 +638079.237|221571.615|125.779 +638070.465|221579.372|124.645 +638066.094|221583.237|123.938 +638061.735|221587.093|123.307 +638057.459|221590.875|123.072 +638053.143|221594.694|122.670 +638048.867|221598.480|122.222 +638044.663|221602.205|122.118 +638040.430|221605.954|121.896 +638036.388|221609.535|122.292 +638032.228|221613.223|122.179 +637997.547|221643.850|114.056 +637993.384|221647.532|113.453 +637989.309|221651.140|113.227 +637985.294|221654.697|113.270 +637981.289|221658.245|113.136 +637957.003|221679.734|110.621 +637953.001|221683.273|110.198 +637949.197|221686.647|110.548 +637945.079|221690.283|109.497 +637937.252|221697.208|108.805 +637933.073|221700.896|107.576 +637929.153|221704.362|107.144 +637925.282|221707.791|106.912 +637921.445|221711.186|106.604 +637917.571|221714.615|106.186 +637913.718|221718.026|106.065 +637909.932|221721.376|105.799 +637906.129|221724.741|105.485 +637902.370|221728.069|105.339 +637898.746|221731.282|105.513 +637895.095|221734.519|105.583 +637891.477|221737.725|105.799 +638091.274|221559.176|126.916 +638095.654|221555.290|127.337 +638100.091|221551.355|127.794 +638104.465|221547.475|127.992 +638108.891|221543.549|128.187 +638117.721|221535.716|128.803 +638122.177|221531.762|129.214 +638130.922|221523.996|128.803 +638135.339|221520.076|129.083 +638139.819|221516.099|129.187 +638144.284|221512.139|129.482 +638157.763|221500.176|129.909 +638162.076|221496.338|129.281 +638171.134|221488.304|129.696 +638175.682|221484.265|129.772 +638180.278|221480.187|130.122 +638184.963|221476.039|130.927 +638189.648|221471.887|131.787 +638194.186|221467.861|131.902 +638203.398|221459.689|132.357 +638207.927|221455.666|132.219 +638212.484|221451.621|132.244 +638221.774|221443.376|132.466 +638226.398|221439.271|132.640 +638235.514|221431.172|132.034 +638240.059|221427.130|131.543 +638262.678|221407.007|127.779 +638271.920|221398.793|126.934 +638276.522|221394.700|126.273 +638281.131|221390.600|125.672 +638290.409|221382.355|124.834 +638299.952|221373.885|125.057 +638304.713|221369.660|125.142 +638318.932|221357.029|124.474 +638323.635|221352.850|124.279 +638328.347|221348.662|123.825 +638337.879|221340.198|123.325 +638342.697|221335.919|123.286 +638347.526|221331.633|123.322 +638352.323|221327.372|123.179 +638357.364|221322.916|124.691 +638367.234|221314.171|126.062 +638411.707|221274.751|130.936 +638421.559|221266.013|131.424 +638431.202|221257.436|130.037 +638436.128|221253.065|130.165 +638441.047|221248.697|130.287 +638446.016|221244.290|130.400 +638450.954|221239.910|130.711 +638485.533|221209.210|130.345 +638490.450|221204.845|130.238 +638495.396|221200.450|129.964 +638500.350|221196.052|129.781 +638505.373|221191.593|129.799 +638510.283|221187.231|129.729 +638515.297|221182.781|129.696 +638520.247|221178.386|129.555 +638525.255|221173.942|129.522 +638530.217|221169.528|129.086 +638535.219|221165.087|129.016 +638540.205|221160.658|128.839 +638545.195|221156.230|128.681 +638550.273|221151.725|128.992 +638555.278|221147.281|129.050 +638560.319|221142.806|128.989 +638565.309|221138.377|128.940 +638570.368|221133.888|129.159 +638575.407|221129.413|129.159 +638580.424|221124.957|128.925 +638585.428|221120.513|128.568 +638595.563|221111.512|128.833 +638600.531|221107.099|128.690 +638605.609|221102.591|128.720 +638610.681|221098.086|128.675 +638615.695|221093.630|128.562 +638620.755|221089.137|128.419 +638625.769|221084.684|128.303 +638630.829|221080.188|128.196 +638635.888|221075.692|128.126 +638640.942|221071.202|127.986 +638646.035|221066.679|127.699 +638651.025|221062.241|127.379 +638656.078|221057.752|127.263 +638681.383|221035.257|125.255 +638686.458|221030.740|124.825 +638696.586|221021.730|123.499 +638701.597|221017.271|122.768 +638711.784|221008.209|121.551 +638747.372|220976.565|118.250 +638752.502|220972.005|117.866 +638757.601|220967.476|117.903 +638762.734|220962.913|117.647 +638778.105|220949.258|117.260 +638788.313|220940.184|116.388 +638793.458|220935.615|116.416 +638798.603|220931.046|116.553 +638803.693|220926.523|116.495 +638808.835|220921.957|116.562 +638813.977|220917.394|116.605 +638819.116|220912.828|116.516 +638824.255|220908.265|116.571 +638829.391|220903.702|116.461 +638834.530|220899.139|116.419 +638839.721|220894.531|116.611 +638844.808|220890.011|116.592 +638849.995|220885.405|116.589 +638855.128|220880.845|116.480 +638860.267|220876.282|116.510 +638865.406|220871.720|116.562 +638870.591|220867.114|116.592 +638880.866|220857.991|116.662 +638886.002|220853.428|116.614 +638891.137|220848.869|116.842 +638896.273|220844.306|116.513 +638901.458|220839.700|116.644 +638906.542|220835.186|116.565 +638911.727|220830.581|116.537 +638916.863|220826.021|116.717 +638922.002|220821.458|116.699 +638927.137|220816.898|116.711 +638947.779|220798.513|112.328 +638952.920|220793.950|112.712 +638968.374|220780.209|111.447 +638973.528|220775.628|111.118 +638978.682|220771.044|110.768 +639009.644|220743.505|108.692 +639014.795|220738.927|108.838 +639019.949|220734.349|108.939 +639025.070|220729.795|108.613 +639040.554|220716.034|108.491 +639061.125|220697.752|108.219 +639076.505|220684.081|107.781 +639091.888|220670.408|107.573 +639097.027|220665.839|107.329 +639102.169|220661.267|107.107 +639112.380|220652.196|107.171 +639132.811|220634.033|106.598 +639143.061|220624.919|106.342 +639148.164|220620.384|106.238 +639153.269|220615.846|106.113 +639163.425|220606.820|106.040 +639173.642|220597.740|105.909 +639178.763|220593.190|105.744 +639194.042|220579.602|105.129 +639199.090|220575.112|104.760 +639204.226|220570.543|104.522 +639214.351|220561.542|104.184 +639219.402|220557.053|103.894 +639224.498|220552.520|103.699 +639249.723|220530.090|102.672 +639254.722|220525.649|102.626 +639259.809|220521.123|102.218 +639269.843|220512.201|101.883 +639274.848|220507.757|101.919 +639279.871|220503.289|101.739 +639284.839|220498.872|101.678 +639289.774|220494.495|102.447 +639294.718|220490.106|102.654 +639299.707|220485.677|102.940 +639304.602|220481.331|103.175 +639309.577|220476.914|103.608 +639314.472|220472.568|103.882 +639319.419|220468.173|104.138 +639324.314|220463.826|104.437 +639329.273|220459.422|104.641 +639334.138|220455.100|104.812 +639339.097|220450.695|105.025 +639344.004|220446.334|104.867 +639353.788|220437.647|105.735 +639358.641|220433.337|106.086 +639363.508|220429.012|106.336 +639368.330|220424.726|106.570 +639373.219|220420.386|106.702 +639378.075|220416.064|106.686 +639383.000|220411.684|106.558 +639387.831|220407.386|106.406 +639392.760|220403.006|106.321 +639397.612|220398.687|106.043 +639402.550|220394.292|105.549 +639407.415|220389.964|105.248 +639412.267|220385.645|104.711 +639417.202|220381.250|104.318 +639422.057|220376.928|103.806 +639426.986|220372.538|103.160 +639431.848|220368.210|102.687 +639436.709|220363.882|102.224 +639441.543|220359.581|101.977 +639446.402|220355.259|101.611 +639451.184|220351.001|101.428 +639455.997|220346.725|101.422 +639460.822|220342.427|100.996 +639465.488|220338.285|101.666 +639470.121|220334.176|102.578 +639474.797|220330.028|102.892 +639479.457|220325.892|103.635 +639484.112|220321.762|104.434 +639488.705|220317.687|104.979 +639493.338|220313.572|105.598 +639497.983|220309.448|106.156 +639502.638|220305.312|106.342 +639507.191|220301.270|106.866 +639525.714|220284.817|108.146 +639530.329|220280.714|108.360 +639534.968|220276.590|108.451 +639539.570|220272.500|108.491 +639544.164|220268.416|108.588 +639548.763|220264.325|108.664 +639553.393|220260.207|108.591 +639557.950|220256.160|108.674 +639562.586|220252.036|108.607 +639567.261|220247.872|108.323 +639571.797|220243.839|108.290 +639576.393|220239.752|108.210 +639580.941|220235.707|108.140 +639585.543|220231.614|108.085 +639590.100|220227.560|107.997 +639594.632|220223.534|108.082 +639599.217|220219.455|107.899 +639603.618|220215.548|108.433 +639608.160|220211.509|108.518 +639612.655|220207.510|108.570 +639617.160|220203.505|108.610 +639621.696|220199.473|108.506 +639630.715|220191.447|108.088 +639635.259|220187.403|107.985 +639639.758|220183.404|107.884 +639648.689|220175.457|107.546 +639653.218|220171.425|107.339 +639657.687|220167.447|106.945 +639662.182|220163.445|106.695 +639666.669|220159.452|106.510 +639671.128|220155.487|106.235 +639675.560|220151.543|106.104 +639679.989|220147.602|106.001 +639684.378|220143.697|105.851 +639688.752|220139.805|105.802 +639693.138|220135.907|105.726 +639697.561|220131.969|105.473 +639701.998|220128.021|105.181 +639713.243|220115.750|104.498 +639708.887|220119.612|104.568 +639704.437|220123.556|104.848 +639699.926|220127.558|105.187 +639695.476|220131.502|105.504 +639691.056|220135.422|105.711 +639686.618|220139.354|105.760 +639682.186|220143.283|105.812 +639677.700|220147.257|105.885 +639673.192|220151.253|106.074 +639668.745|220155.197|106.250 +639664.234|220159.196|106.500 +639659.744|220163.177|106.677 +639655.227|220167.182|106.997 +639650.664|220171.230|107.320 +639646.116|220175.265|107.585 +639641.645|220179.225|107.482 +639637.039|220183.309|107.805 +639632.556|220187.281|107.799 +639627.993|220191.328|107.966 +639623.451|220195.352|108.290 +639618.876|220199.412|108.561 +639614.292|220203.472|108.616 +639609.799|220207.452|108.497 +639605.255|220211.476|108.369 +639591.606|220223.567|107.954 +639587.055|220227.597|107.939 +639582.440|220231.690|108.027 +639577.807|220235.799|108.226 +639573.220|220239.865|108.201 +639568.554|220244.004|108.344 +639563.970|220248.067|108.347 +639559.291|220252.218|108.610 +639554.612|220256.367|108.594 +639549.982|220260.469|108.613 +639545.304|220264.621|108.655 +639540.701|220268.699|108.546 +639536.004|220272.863|108.436 +639531.335|220277.002|108.472 +639526.726|220281.083|108.152 +639522.056|220285.219|107.924 +639512.775|220293.440|107.156 +639508.124|220297.561|106.857 +639503.409|220301.739|106.671 +639498.776|220305.842|106.290 +639494.091|220309.990|105.930 +639489.397|220314.145|105.324 +639484.743|220318.266|104.800 +639480.119|220322.356|104.099 +639475.425|220326.507|103.190 +639470.704|220330.686|102.800 +639466.065|220334.789|101.892 +639461.322|220338.986|101.322 +639456.527|220343.238|101.483 +639451.718|220347.502|101.425 +639446.835|220351.833|101.553 +639441.979|220356.143|101.846 +639437.087|220360.484|102.084 +639432.183|220364.836|102.431 +639427.257|220369.210|102.962 +639422.341|220373.572|103.443 +639417.455|220377.909|103.757 +639412.414|220382.390|104.504 +639407.479|220386.770|104.861 +639402.523|220391.168|105.400 +639397.588|220395.551|105.830 +639392.620|220399.958|106.153 +639387.682|220404.338|106.266 +639382.747|220408.715|106.391 +639377.773|220413.126|106.452 +639372.853|220417.490|106.500 +639367.894|220421.886|106.473 +639362.969|220426.250|106.226 +639358.040|220430.615|106.001 +639353.121|220434.974|105.717 +639348.180|220439.348|105.217 +639343.224|220443.740|104.867 +639338.225|220448.172|104.903 +639333.257|220452.576|104.699 +639328.289|220456.977|104.507 +639323.278|220461.418|104.266 +639318.322|220465.811|104.022 +639313.320|220470.239|103.727 +639308.324|220474.668|103.425 +639303.328|220479.091|103.108 +639298.287|220483.556|102.782 +639293.288|220487.985|102.541 +639288.250|220492.453|102.245 +639278.185|220501.366|101.535 +639273.104|220505.874|101.697 +639267.972|220510.427|101.944 +639262.964|220514.856|100.877 +639242.420|220533.098|102.901 +639226.991|220546.784|103.519 +639216.753|220555.867|103.724 +639211.559|220560.482|104.492 +639206.402|220565.063|104.867 +639201.242|220569.641|104.705 +639185.785|220583.360|105.296 +639180.625|220587.944|105.894 +639175.455|220592.531|105.991 +639165.101|220601.727|106.528 +639160.017|220606.235|106.211 +639149.654|220615.428|106.305 +639134.143|220629.196|106.598 +639129.001|220633.756|106.543 +639113.480|220647.536|107.387 +639108.314|220652.117|107.043 +639103.135|220656.710|106.894 +639097.926|220661.337|107.415 +639087.566|220670.530|107.360 +639082.394|220675.117|107.247 +639077.194|220679.735|107.698 +639061.618|220693.558|107.811 +639056.434|220698.160|108.125 +639051.261|220702.750|108.149 +639046.086|220707.347|108.369 +638989.070|220757.950|109.765 +638963.226|220780.895|111.203 +638952.817|220790.143|112.087 +638942.496|220799.332|114.821 +638927.006|220813.100|116.729 +638921.819|220817.703|116.653 +638916.725|220822.220|116.534 +638911.538|220826.822|116.650 +638906.399|220831.382|116.589 +638901.263|220835.942|116.608 +638896.121|220840.502|116.547 +638890.933|220845.104|116.571 +638885.840|220849.622|116.541 +638880.652|220854.227|116.617 +638875.562|220858.744|116.650 +638870.420|220863.304|116.583 +638865.232|220867.910|116.534 +638860.139|220872.427|116.455 +638849.858|220881.549|116.486 +638844.768|220886.067|116.550 +638839.626|220890.626|116.629 +638834.484|220895.189|116.568 +638829.391|220899.709|116.470 +638824.249|220904.269|116.562 +638819.156|220908.789|116.507 +638814.011|220913.352|116.486 +638808.920|220917.872|116.580 +638803.772|220922.435|116.449 +638798.682|220926.953|116.687 +638793.531|220931.521|116.516 +638788.487|220935.996|116.641 +638783.342|220940.562|116.635 +638752.779|220967.686|117.543 +638747.738|220972.164|117.824 +638737.564|220981.195|118.552 +638722.336|220994.716|119.253 +638707.218|221008.151|121.201 +638697.150|221017.103|122.914 +638692.145|221021.553|123.810 +638687.131|221026.010|124.545 +638682.148|221030.435|124.977 +638677.067|221034.949|125.422 +638656.990|221052.783|127.212 +638651.936|221057.267|127.337 +638646.934|221061.708|127.529 +638641.890|221066.185|127.849 +638636.842|221070.666|128.117 +638631.831|221075.116|128.205 +638621.803|221084.013|128.440 +638616.796|221088.457|128.635 +638611.779|221092.910|128.742 +638606.740|221097.379|128.629 +638601.732|221101.823|128.879 +638596.752|221106.242|128.897 +638591.680|221110.744|129.022 +638576.714|221124.018|128.986 +638571.697|221128.474|129.242 +638566.711|221132.900|129.293 +638561.761|221137.289|129.278 +638556.753|221141.730|129.168 +638551.794|221146.132|129.053 +638546.725|221150.624|128.894 +638541.805|221154.986|128.757 +638536.822|221159.412|128.979 +638531.851|221163.819|128.867 +638526.965|221168.163|129.598 +638521.999|221172.567|129.583 +638517.083|221176.929|129.574 +638512.136|221181.321|129.769 +638507.226|221185.676|129.860 +638502.251|221190.090|129.842 +638497.329|221194.458|129.872 +638492.419|221198.816|130.019 +638482.604|221207.528|130.439 +638477.736|221211.847|130.607 +638448.320|221237.941|130.561 +638443.458|221242.250|130.494 +638438.499|221246.646|130.476 +638433.659|221250.934|130.220 +638428.804|221255.238|130.287 +638414.390|221268.027|131.332 +638394.831|221285.349|129.860 +638389.990|221289.635|129.467 +638370.401|221306.972|126.943 +638341.201|221332.813|123.496 +638336.446|221337.025|123.310 +638331.679|221341.253|123.389 +638298.913|221370.325|125.383 +638294.176|221374.519|125.185 +638289.482|221378.682|125.246 +638284.804|221382.831|125.435 +638271.051|221395.038|126.837 +638266.534|221399.049|127.422 +638261.931|221403.136|127.812 +638257.378|221407.178|128.513 +638248.432|221415.127|129.958 +638243.921|221419.132|130.634 +638235.008|221427.048|132.049 +638230.461|221431.084|132.265 +638225.886|221435.140|132.351 +638221.314|221439.194|132.479 +638212.139|221447.320|132.064 +638207.598|221451.350|132.122 +638203.017|221455.407|132.006 +638193.943|221463.447|131.750 +638189.389|221467.483|131.552 +638184.674|221471.649|130.564 +638180.050|221475.743|130.065 +638175.508|221479.763|129.748 +638170.985|221483.771|129.537 +638166.450|221487.789|129.293 +638161.951|221491.775|129.242 +638157.452|221495.762|129.223 +638144.129|221507.570|129.080 +638139.734|221511.466|129.132 +638135.244|221515.443|128.729 +638130.754|221519.421|128.611 +638126.341|221523.328|128.373 +638113.244|221534.938|128.452 +638100.067|221546.609|127.818 +638095.715|221550.462|127.754 +638091.280|221554.385|127.081 +638086.836|221558.313|126.642 +638082.492|221562.160|126.428 +638073.653|221569.975|125.151 +638069.282|221573.840|124.645 +638064.847|221577.760|123.880 +638060.537|221581.576|123.688 +638047.626|221592.997|122.603 +638043.374|221596.764|122.493 +638030.844|221607.862|122.344 +638026.598|221611.617|122.109 +637999.891|221635.175|113.599 +637995.709|221638.872|113.127 +637991.732|221642.402|113.483 +637979.622|221653.122|113.304 +637955.256|221674.674|110.829 +637951.172|221678.283|110.073 +637947.228|221681.776|110.079 +637943.299|221685.251|109.750 +637927.388|221699.320|107.826 +637915.718|221709.644|106.711 +637911.850|221713.064|106.314 +637908.006|221716.462|105.827 +637904.275|221719.766|105.766 +637900.569|221723.049|105.812 +637896.500|221726.637|104.531 +637892.998|221729.745|105.150 +638084.452|221558.039|126.437 +638088.823|221554.156|126.797 +638093.258|221550.221|127.468 +638097.616|221546.347|127.586 +638102.039|221542.418|128.013 +638106.361|221538.575|127.992 +638110.738|221534.685|128.233 +638123.875|221523.002|128.147 +638128.310|221519.061|128.257 +638132.757|221515.108|128.431 +638137.201|221511.158|128.620 +638146.138|221503.218|129.034 +638155.007|221495.329|128.946 +638163.996|221487.338|129.004 +638168.544|221483.299|129.324 +638173.079|221479.266|129.616 +638177.633|221475.222|129.744 +638182.241|221471.128|130.186 +638186.853|221467.032|130.668 +638191.538|221462.877|131.537 +638196.134|221458.796|131.982 +638200.660|221454.767|131.829 +638205.232|221450.704|131.924 +638209.792|221446.653|131.960 +638237.316|221422.174|131.607 +638246.371|221414.103|130.223 +638250.846|221410.113|129.373 +638255.393|221406.062|128.669 +638259.941|221402.009|127.974 +638264.519|221397.930|127.465 +638287.745|221377.253|125.273 +638301.988|221364.594|125.566 +638311.513|221356.124|125.535 +638316.180|221351.970|125.108 +638320.746|221347.894|124.063 +638325.543|221343.627|123.859 +638330.277|221339.415|123.572 +638335.004|221335.209|123.255 +638339.896|221330.862|123.716 +638354.469|221317.914|124.572 +638359.474|221313.482|125.901 +638364.427|221309.087|126.572 +638369.264|221304.789|126.831 +638374.321|221300.306|127.955 +638389.085|221287.196|129.363 +638394.026|221282.807|129.805 +638408.818|221269.673|131.061 +638413.734|221265.306|131.424 +638428.346|221252.297|130.135 +638433.263|221247.926|130.220 +638438.179|221243.558|130.318 +638443.157|221239.135|130.540 +638477.761|221208.366|130.397 +638482.726|221203.949|130.296 +638487.700|221199.523|130.287 +638492.583|221195.180|129.918 +638497.603|221190.718|129.912 +638502.562|221186.304|129.839 +638517.534|221172.991|129.674 +638522.536|221168.544|129.598 +638527.513|221164.115|129.330 +638532.488|221159.686|129.043 +638537.560|221155.181|129.226 +638542.589|221150.707|129.043 +638547.600|221146.253|129.159 +638552.650|221141.764|129.235 +638557.670|221137.301|129.531 +638562.745|221132.790|129.376 +638567.777|221128.313|129.327 +638572.791|221123.854|129.086 +638587.934|221110.391|129.059 +638593.018|221105.874|129.126 +638598.081|221101.375|128.961 +638603.131|221096.882|128.687 +638623.349|221078.914|128.531 +638628.448|221074.382|128.352 +638633.499|221069.889|128.178 +638638.543|221065.405|127.937 +638643.630|221060.879|127.632 +638648.675|221056.395|127.388 +638653.771|221051.866|127.221 +638674.034|221033.837|125.590 +638679.100|221029.329|125.020 +638684.172|221024.815|124.538 +638689.225|221020.313|123.731 +638694.276|221015.814|122.871 +638709.516|221002.247|120.863 +638714.554|220997.758|119.659 +638719.684|220993.195|119.275 +638729.889|220984.115|118.446 +638735.012|220979.555|117.894 +638740.145|220974.992|117.580 +638745.245|220970.460|117.638 +638750.387|220965.888|117.555 +638755.507|220961.331|116.961 +638760.646|220956.762|116.824 +638765.794|220952.190|116.934 +638770.866|220947.673|116.406 +638776.008|220943.104|116.367 +638781.153|220938.532|116.467 +638786.249|220934.006|116.565 +638791.388|220929.440|116.519 +638796.576|220924.828|116.531 +638801.669|220920.305|116.565 +638806.808|220915.736|116.562 +638811.947|220911.170|116.623 +638817.080|220906.607|116.419 +638822.216|220902.041|116.434 +638827.355|220897.478|116.498 +638832.491|220892.912|116.525 +638837.675|220888.307|116.483 +638842.763|220883.784|116.568 +638847.944|220879.178|116.440 +638853.083|220874.615|116.623 +638858.219|220870.052|116.544 +638863.352|220865.489|116.492 +638868.488|220860.924|116.464 +638873.621|220856.361|116.400 +638878.756|220851.801|116.659 +638883.941|220847.192|116.635 +638889.025|220842.675|116.681 +638894.210|220838.070|116.736 +638899.343|220833.504|116.562 +638904.472|220828.944|116.467 +638909.608|220824.381|116.510 +638914.744|220819.818|116.541 +638919.877|220815.258|116.708 +638925.013|220810.695|116.739 +638940.427|220796.986|115.742 +638950.689|220787.826|112.618 +638961.004|220778.640|110.765 +638971.294|220769.496|110.844 +638976.402|220764.954|110.457 +638986.668|220755.828|109.759 +638996.937|220746.703|109.207 +639012.357|220733.002|109.033 +639032.851|220714.799|108.805 +639068.693|220682.957|108.067 +639073.780|220678.433|107.723 +639078.916|220673.867|107.421 +639099.295|220655.762|107.037 +639114.593|220642.174|107.034 +639124.785|220633.119|106.732 +639134.926|220624.112|106.616 +639150.111|220610.624|106.634 +639155.204|220606.101|106.717 +639160.301|220601.575|106.741 +639190.680|220574.579|105.653 +639195.776|220570.046|105.257 +639200.809|220565.575|105.092 +639205.920|220561.027|104.565 +639210.949|220556.559|104.486 +639226.141|220543.059|103.827 +639231.146|220538.612|103.602 +639236.187|220534.135|103.541 +639246.297|220525.143|102.651 +639266.408|220507.273|101.953 +639271.434|220502.804|101.733 +639276.393|220498.400|101.712 +639281.428|220493.925|101.477 +639286.339|220489.570|101.989 +639291.310|220485.156|102.398 +639296.257|220480.767|102.605 +639301.247|220476.338|102.901 +639306.145|220471.992|103.123 +639311.080|220467.612|103.483 +639316.020|220463.226|103.785 +639320.973|220458.831|104.019 +639325.881|220454.475|104.236 +639330.837|220450.074|104.470 +639335.750|220445.715|104.687 +639340.700|220441.314|104.574 +639345.613|220436.955|104.821 +639350.472|220432.642|105.110 +639355.349|220428.317|105.680 +639360.207|220424.004|106.010 +639365.093|220419.667|106.150 +639369.985|220415.323|106.238 +639374.947|220410.916|106.202 +639379.806|220406.600|106.199 +639384.728|220402.226|106.116 +639389.605|220397.892|106.031 +639394.522|220393.524|105.674 +639399.435|220389.153|105.357 +639404.394|220384.743|104.742 +639409.329|220380.354|104.327 +639414.212|220376.013|103.961 +639419.119|220371.648|103.440 +639424.023|220367.284|102.968 +639428.928|220362.925|102.544 +639433.832|220358.563|102.139 +639438.663|220354.272|101.931 +639443.555|220349.922|101.666 +639448.401|220345.615|101.410 +639453.159|220341.388|101.419 +639458.070|220337.023|101.115 +639462.754|220332.869|101.672 +639467.363|220328.787|102.739 +639472.130|220324.557|103.096 +639476.699|220320.512|104.117 +639481.369|220316.370|104.806 +639486.053|220312.218|105.421 +639490.702|220308.094|105.946 +639495.362|220303.961|106.403 +639500.062|220299.789|106.625 +639504.771|220295.610|106.830 +639509.392|220291.510|107.253 +639514.107|220287.322|107.436 +639518.688|220283.259|107.832 +639523.346|220279.123|108.091 +639528.006|220274.990|108.360 +639532.633|220270.881|108.524 +639537.217|220266.812|108.668 +639541.868|220262.679|108.719 +639546.535|220258.534|108.722 +639551.171|220254.416|108.622 +639555.792|220250.310|108.616 +639560.458|220246.162|108.372 +639565.094|220242.044|108.329 +639569.700|220237.954|108.198 +639574.299|220233.866|108.116 +639578.899|220229.779|108.049 +639583.526|220225.667|107.854 +639588.113|220221.589|107.613 +639606.126|220205.599|108.393 +639610.653|220201.582|108.579 +639615.103|220197.626|108.622 +639619.663|220193.575|108.393 +639624.186|220189.551|108.107 +639628.752|220185.495|107.893 +639633.281|220181.468|107.616 +639637.737|220177.512|107.735 +639642.245|220173.504|107.345 +639651.161|220165.579|107.131 +639655.614|220161.620|106.820 +639660.052|220157.675|106.595 +639664.505|220153.719|106.333 +639668.946|220149.769|106.138 +639673.381|220145.828|105.997 +639677.767|220141.929|105.851 +639682.138|220138.046|105.799 +639686.472|220134.197|105.702 +639690.864|220130.292|105.577 +639695.226|220126.418|105.385 +639699.545|220122.575|105.144 +639703.894|220118.707|105.046 +639708.241|220114.842|104.729 +639709.433|220111.108|104.577 +639704.992|220115.046|104.803 +639700.618|220118.929|104.989 +639696.140|220122.904|105.184 +639691.684|220126.860|105.306 +639687.203|220130.835|105.543 +639682.805|220134.736|105.671 +639678.328|220138.711|105.699 +639673.844|220142.685|105.766 +639669.293|220146.724|105.921 +639664.798|220150.714|106.092 +639660.235|220154.765|106.354 +639655.742|220158.751|106.540 +639651.185|220162.796|106.811 +639646.574|220166.890|107.131 +639642.053|220170.898|107.000 +639632.870|220179.048|107.515 +639628.328|220183.077|107.555 +639619.068|220191.298|108.067 +639614.371|220195.468|108.436 +639609.796|220199.525|108.460 +639605.224|220203.578|108.213 +639600.674|220207.614|108.152 +639591.493|220215.752|107.668 +639586.875|220219.843|107.442 +639582.236|220223.963|107.665 +639577.500|220228.164|107.857 +639572.818|220232.312|107.765 +639568.139|220236.463|107.982 +639563.451|220240.624|108.268 +639558.687|220244.845|108.415 +639554.021|220248.981|108.326 +639549.312|220253.157|108.512 +639544.569|220257.363|108.613 +639539.796|220261.594|108.604 +639535.093|220265.761|108.518 +639530.405|220269.915|108.354 +639525.687|220274.097|108.098 +639521.011|220278.236|107.887 +639516.347|220282.366|107.637 +639506.890|220290.745|107.058 +639502.208|220294.887|106.638 +639497.438|220299.115|106.479 +639492.677|220303.334|106.296 +639488.016|220307.461|105.808 +639483.264|220311.664|105.263 +639478.567|220315.818|104.690 +639473.925|220319.924|103.785 +639469.231|220324.075|102.904 +639464.480|220328.278|102.392 +639459.776|220332.439|101.578 +639455.058|220336.612|100.886 +639450.200|220340.922|101.142 +639445.305|220345.262|101.340 +639440.458|220349.566|101.596 +639435.575|220353.894|101.755 +639430.677|220358.240|102.050 +639425.767|220362.599|102.477 +639420.811|220366.997|102.882 +639415.897|220371.353|103.007 +639410.960|220375.739|103.721 +639406.022|220380.119|104.092 +639401.069|220384.520|104.629 +639396.058|220388.967|105.226 +639391.196|220393.283|105.501 +639386.192|220397.721|105.741 +639381.309|220402.052|105.845 +639376.389|220406.411|105.848 +639371.479|220410.764|105.833 +639366.559|220415.125|105.891 +639361.670|220419.459|105.738 +639356.736|220423.830|105.571 +639337.122|220441.204|104.443 +639332.156|220445.602|104.205 +639327.231|220449.970|104.086 +639322.269|220454.365|103.852 +639317.355|220458.718|103.650 +639312.363|220463.140|103.288 +639307.462|220467.481|102.998 +639302.518|220471.861|102.687 +639297.565|220476.247|102.456 +639292.563|220480.679|102.264 +639287.634|220485.043|101.840 +639282.617|220489.484|101.310 +639277.640|220493.898|101.416 +639272.562|220498.403|101.572 +639267.527|220502.868|101.797 +639262.522|220507.306|101.758 +639257.435|220511.820|102.087 +639252.338|220516.343|102.544 +639247.279|220520.827|102.620 +639237.114|220529.852|103.440 +639226.930|220538.886|104.019 +639221.898|220543.346|103.958 +639206.548|220556.961|104.620 +639196.334|220566.029|105.437 +639191.186|220570.598|105.781 +639186.099|220575.112|106.028 +639181.012|220579.626|106.293 +639170.734|220588.746|107.009 +639150.306|220606.860|107.070 +639140.022|220615.974|106.817 +639129.787|220625.047|106.686 +639124.648|220629.604|106.586 +639119.525|220634.152|107.113 +639109.192|220643.314|107.195 +639104.050|220647.874|107.281 +639088.526|220661.648|107.796 +639083.354|220666.232|107.649 +639078.233|220670.768|107.409 +639062.679|220684.569|108.094 +639057.495|220689.165|108.347 +639041.974|220702.933|108.677 +639036.747|220707.572|109.039 +639000.497|220739.723|109.679 +638990.146|220748.894|109.116 +638979.764|220758.111|110.033 +638969.401|220767.301|110.326 +638959.041|220776.494|110.822 +638953.838|220781.108|110.950 +638938.244|220795.001|116.303 +638927.912|220804.164|116.342 +638922.721|220808.769|116.699 +638917.533|220813.369|116.586 +638912.394|220817.925|116.583 +638907.203|220822.528|116.623 +638902.016|220827.127|116.605 +638896.880|220831.681|116.428 +638891.692|220836.280|116.486 +638886.504|220840.883|116.672 +638881.362|220845.440|116.531 +638876.175|220850.039|116.510 +638870.987|220854.642|116.617 +638865.845|220859.198|116.470 +638860.657|220863.801|116.589 +638855.515|220868.358|116.473 +638850.328|220872.960|116.501 +638845.186|220877.517|116.492 +638840.047|220882.074|116.525 +638834.905|220886.633|116.550 +638829.717|220891.236|116.574 +638824.572|220895.796|116.501 +638819.430|220900.359|116.434 +638814.291|220904.918|116.492 +638809.100|220909.524|116.562 +638804.004|220914.047|116.480 +638798.862|220918.610|116.531 +638793.717|220923.176|116.458 +638788.572|220927.739|116.498 +638783.433|220932.302|116.632 +638778.279|220936.871|116.425 +638773.183|220941.397|116.431 +638768.044|220945.957|116.702 +638762.932|220950.489|116.358 +638752.697|220959.575|116.763 +638747.616|220964.089|117.275 +638742.471|220968.658|117.385 +638737.375|220973.182|117.485 +638727.197|220982.222|118.119 +638722.098|220986.745|118.238 +638676.811|221027.012|124.987 +638651.741|221049.281|127.059 +638636.656|221062.680|127.876 +638631.709|221067.069|128.214 +638626.650|221071.562|128.318 +638621.648|221076.006|128.544 +638616.631|221080.456|128.617 +638611.635|221084.894|128.998 +638606.667|221089.301|129.101 +638601.586|221093.813|129.007 +638596.596|221098.238|128.912 +638591.631|221102.646|129.104 +638586.602|221107.108|129.144 +638581.622|221111.528|129.223 +638571.621|221120.400|128.931 +638566.659|221124.808|129.254 +638561.733|221129.179|129.479 +638556.695|221133.653|129.513 +638551.757|221138.036|129.623 +638546.789|221142.440|129.455 +638541.827|221146.842|129.336 +638536.795|221151.304|129.074 +638531.851|221155.690|129.208 +638526.873|221160.107|129.019 +638522.012|221164.432|129.988 +638517.065|221168.818|129.659 +638512.109|221173.216|129.748 +638507.201|221177.572|129.869 +638502.230|221181.982|129.857 +638497.317|221186.344|129.930 +638492.397|221190.709|129.994 +638487.472|221195.080|130.019 +638477.657|221203.797|130.424 +638472.741|221208.158|130.583 +638453.130|221225.563|130.604 +638443.327|221234.262|130.561 +638438.420|221238.617|130.546 +638428.621|221247.313|130.272 +638423.835|221251.562|130.473 +638418.989|221255.872|130.979 +638414.152|221260.170|131.201 +638389.777|221281.792|129.732 +638384.940|221286.087|129.723 +638370.197|221299.148|127.507 +638350.531|221316.570|124.526 +638336.022|221329.439|123.530 +638331.280|221333.645|123.435 +638321.840|221342.036|124.212 +638298.447|221362.823|125.800 +638289.034|221371.178|125.736 +638284.295|221375.384|125.529 +638279.686|221379.481|126.120 +638275.087|221383.568|126.480 +638265.943|221391.700|127.550 +638261.325|221395.803|127.836 +638252.230|221403.892|128.970 +638234.246|221419.888|131.674 +638229.720|221423.909|132.003 +638215.983|221436.104|131.930 +638211.438|221440.139|131.936 +638206.869|221444.196|131.835 +638202.349|221448.207|131.747 +638197.768|221452.273|131.631 +638193.248|221456.284|131.589 +638188.599|221460.402|130.894 +638183.951|221464.520|130.223 +638179.388|221468.565|129.757 +638174.838|221472.607|129.626 +638170.330|221476.606|129.488 +638165.925|221480.519|129.869 +638161.359|221484.564|129.229 +638156.754|221488.645|128.656 +638152.298|221492.601|128.583 +638143.410|221500.493|128.623 +638138.984|221504.422|128.501 +638134.549|221508.357|128.352 +638121.254|221520.152|127.843 +638112.561|221527.873|128.053 +638108.208|221531.735|127.919 +638103.801|221535.645|127.788 +638090.673|221547.286|126.974 +638086.318|221551.148|126.681 +638077.573|221558.899|125.755 +638073.150|221562.815|125.218 +638068.721|221566.738|124.432 +638064.372|221570.594|124.029 +638047.141|221585.867|122.417 +638042.905|221589.626|122.377 +638038.705|221593.353|122.268 +638034.517|221597.069|122.228 +638021.986|221608.185|121.917 +638008.724|221619.908|118.043 +638003.896|221624.156|115.056 +637999.462|221628.076|113.489 +637995.267|221631.792|113.172 +637991.296|221635.318|113.331 +637987.242|221638.918|113.392 +637970.990|221653.332|112.755 +637966.955|221656.910|112.535 +637962.879|221660.522|111.944 +637954.708|221667.761|110.978 +637950.584|221671.410|110.262 +637946.512|221675.019|109.765 +637942.616|221678.475|109.548 +637926.690|221692.590|107.927 +637911.033|221706.465|106.345 +637907.165|221709.891|105.961 +637903.364|221713.265|105.830 +637899.612|221716.593|105.903 +637895.631|221720.114|104.940 +637891.462|221723.796|103.294 +637887.944|221726.926|104.068 +638082.227|221552.361|126.081 +638086.638|221548.447|126.620 +638091.085|221544.497|127.126 +638099.802|221536.752|127.614 +638104.161|221532.878|127.763 +638108.550|221528.976|127.839 +638112.896|221525.112|127.971 +638117.194|221521.286|127.641 +638121.565|221517.400|127.678 +638130.468|221509.487|128.071 +638134.887|221505.559|128.147 +638139.368|221501.575|128.281 +638143.763|221497.667|128.269 +638148.238|221493.690|128.416 +638152.642|221489.773|128.233 +638157.141|221485.777|128.522 +638166.392|221477.569|129.940 +638170.799|221473.643|129.598 +638175.322|221469.623|129.577 +638179.833|221465.614|129.781 +638184.439|221461.524|130.235 +638189.075|221457.406|130.604 +638193.775|221453.236|131.592 +638198.310|221449.204|131.479 +638202.843|221445.178|131.625 +638207.457|221441.072|131.710 +638212.045|221437.000|131.918 +638216.638|221432.912|131.918 +638230.397|221420.678|131.915 +638234.896|221416.673|131.470 +638239.431|221412.631|130.964 +638257.530|221396.504|128.199 +638262.133|221392.407|127.839 +638271.335|221384.217|127.123 +638275.952|221380.106|126.599 +638285.221|221371.852|125.776 +638318.225|221342.493|124.654 +638332.337|221329.926|123.264 +638337.168|221325.635|123.652 +638342.018|221321.325|123.871 +638356.840|221308.179|126.486 +638361.610|221303.936|126.267 +638366.560|221299.544|126.962 +638376.549|221290.686|129.095 +638386.272|221282.045|129.473 +638391.210|221277.659|129.897 +638396.096|221273.322|130.324 +638401.076|221268.896|130.753 +638405.947|221264.571|131.131 +638410.915|221260.157|131.534 +638415.706|221255.890|130.997 +638420.553|221251.577|130.513 +638425.426|221247.240|130.247 +638430.343|221242.869|130.333 +638435.256|221238.501|130.406 +638440.173|221234.134|130.540 +638445.135|221229.723|130.668 +638450.018|221225.380|130.580 +638474.725|221203.407|130.427 +638479.681|221198.999|130.247 +638484.637|221194.589|130.080 +638489.605|221190.172|130.028 +638494.561|221185.765|129.912 +638499.533|221181.345|129.946 +638504.492|221176.935|129.894 +638509.530|221172.457|130.135 +638514.450|221168.077|129.748 +638519.515|221163.575|129.830 +638524.407|221159.220|129.193 +638534.423|221150.313|129.306 +638539.465|221145.830|129.254 +638544.488|221141.368|129.513 +638549.553|221136.866|129.751 +638554.574|221132.400|129.534 +638559.594|221127.941|129.836 +638564.629|221123.454|129.315 +638569.615|221119.023|129.290 +638574.706|221114.499|129.391 +638579.726|221110.031|129.281 +638584.798|221105.523|129.193 +638589.869|221101.009|129.168 +638594.880|221096.550|129.007 +638599.964|221092.029|129.144 +638605.033|221087.521|129.126 +638615.140|221078.530|128.772 +638620.191|221074.034|128.605 +638625.293|221069.496|128.455 +638630.338|221065.006|128.224 +638635.425|221060.480|127.907 +638650.625|221046.946|126.882 +638686.116|221015.339|123.261 +638701.329|221001.781|120.853 +638711.537|220992.683|119.162 +638721.787|220983.554|118.290 +638726.917|220978.985|117.940 +638737.186|220969.847|117.400 +638742.322|220965.278|117.242 +638747.464|220960.703|117.165 +638757.769|220951.532|116.376 +638762.917|220946.954|116.580 +638768.111|220942.336|116.617 +638773.244|220937.767|116.443 +638778.437|220933.149|116.571 +638783.573|220928.580|116.455 +638788.761|220923.969|116.446 +638793.900|220919.396|116.449 +638799.085|220914.785|116.425 +638804.230|220910.213|116.733 +638809.405|220905.604|116.416 +638814.593|220900.993|116.443 +638819.729|220896.427|116.489 +638824.913|220891.815|116.534 +638830.095|220887.207|116.507 +638835.234|220882.641|116.647 +638840.364|220878.075|116.470 +638845.548|220873.466|116.632 +638850.727|220868.858|116.480 +638855.863|220864.292|116.480 +638861.093|220859.637|116.477 +638866.226|220855.074|116.577 +638871.359|220850.509|116.534 +638876.592|220845.857|116.751 +638881.722|220841.291|116.641 +638886.855|220836.725|116.565 +638892.085|220832.074|116.641 +638902.397|220822.906|116.641 +638907.578|220818.294|116.409 +638912.711|220813.731|116.626 +638917.844|220809.165|116.534 +638923.026|220804.560|116.662 +638928.162|220799.988|116.409 +638933.337|220795.398|117.464 +638938.534|220790.755|115.763 +638959.154|220772.358|110.902 +639000.357|220735.702|109.914 +639010.628|220726.561|109.414 +639015.737|220722.017|109.308 +639025.990|220712.900|109.545 +639036.223|220703.799|109.201 +639041.346|220699.236|108.844 +639056.659|220685.611|108.351 +639061.789|220681.045|108.012 +639087.207|220658.438|107.832 +639092.339|220653.872|107.701 +639122.710|220626.855|107.192 +639127.754|220622.365|107.070 +639132.805|220617.876|106.933 +639137.843|220613.392|106.967 +639142.884|220608.908|107.009 +639198.233|220559.665|105.229 +639233.307|220528.447|103.617 +639243.362|220519.495|102.748 +639248.336|220515.066|102.422 +639253.326|220510.628|102.468 +639258.328|220506.175|101.931 +639263.448|220501.606|100.679 +639268.304|220497.299|101.700 +639273.269|220492.883|101.611 +639278.259|220488.442|101.300 +639283.224|220484.022|101.258 +639288.119|220479.679|101.934 +639293.060|220475.287|102.175 +639297.961|220470.931|102.352 +639302.905|220466.536|102.608 +639307.791|220462.196|102.940 +639312.686|220457.843|103.209 +639317.578|220453.497|103.544 +639322.436|220449.178|103.727 +639327.395|220444.770|103.937 +639332.260|220440.445|104.099 +639337.164|220436.086|104.394 +639342.026|220431.764|104.617 +639346.912|220427.424|104.684 +639356.614|220418.807|105.443 +639361.500|220414.464|105.559 +639366.386|220410.120|105.690 +639371.290|220405.759|105.684 +639376.154|220401.434|105.650 +639381.068|220397.066|105.638 +639385.893|220392.774|105.537 +639390.852|220388.361|105.223 +639395.774|220383.981|104.839 +639400.676|220379.613|104.260 +639405.613|220375.221|103.827 +639410.548|220370.826|103.422 +639415.486|220366.430|103.050 +639420.378|220362.078|102.663 +639425.276|220357.716|102.264 +639430.162|220353.370|101.992 +639435.008|220349.057|101.645 +639439.882|220344.722|101.517 +639444.771|220340.373|101.288 +639449.657|220336.023|100.773 +639454.363|220331.845|101.480 +639459.060|220327.678|102.279 +639463.772|220323.496|102.986 +639468.451|220319.345|103.602 +639473.124|220315.196|104.248 +639477.805|220311.048|105.187 +639482.512|220306.866|105.635 +639487.205|220302.700|106.183 +639491.927|220298.509|106.577 +639496.630|220294.327|106.763 +639501.318|220290.163|107.076 +639506.109|220285.902|107.076 +639515.427|220277.627|107.832 +639520.145|220273.433|108.015 +639524.809|220269.290|108.259 +639529.472|220265.145|108.503 +639534.148|220260.991|108.701 +639538.839|220256.818|108.811 +639543.533|220252.645|108.646 +639548.233|220248.463|108.457 +639552.972|220244.248|108.366 +639557.624|220240.109|108.207 +639566.996|220231.769|107.851 +639571.629|220227.652|107.872 +639576.280|220223.515|107.805 +639580.935|220219.373|107.457 +639590.213|220211.119|107.275 +639594.767|220207.074|107.537 +639599.253|220203.091|107.906 +639603.749|220199.095|108.229 +639608.336|220195.017|108.351 +639612.905|220190.954|108.332 +639617.532|220186.833|107.744 +639622.071|220182.797|107.656 +639626.649|220178.722|107.375 +639631.181|220174.692|107.357 +639635.659|220170.709|107.351 +639640.279|220166.594|106.924 +639644.708|220162.659|106.964 +639649.237|220158.629|106.772 +639653.739|220154.621|106.467 +639658.183|220150.665|106.217 +639662.728|220146.623|106.025 +639667.169|220142.670|105.836 +639671.607|220138.723|105.671 +639676.020|220134.797|105.659 +639680.449|220130.859|105.586 +639684.853|220126.939|105.391 +639689.230|220123.047|105.357 +639693.638|220119.124|105.181 +639698.012|220115.232|104.946 +639702.367|220111.358|104.812 +639706.778|220107.435|104.452 +639705.726|220105.963|104.272 +639701.227|220109.959|104.787 +639696.866|220113.827|104.915 +639692.397|220117.792|105.083 +639687.984|220121.709|105.254 +639683.534|220125.653|105.360 +639679.090|220129.594|105.464 +639674.591|220133.587|105.595 +639670.110|220137.559|105.653 +639665.578|220141.579|105.741 +639661.067|220145.584|105.991 +639656.510|220149.623|106.223 +639651.962|220153.661|106.446 +639647.412|220157.700|106.708 +639642.834|220161.760|106.845 +639638.271|220165.807|106.948 +639629.081|220173.961|107.259 +639619.821|220182.175|107.744 +639615.179|220186.296|108.082 +639605.910|220194.517|108.210 +639601.329|220198.577|108.024 +639596.772|220202.615|107.729 +639592.215|220206.648|107.165 +639587.540|220210.796|107.256 +639582.916|220214.893|107.083 +639578.134|220219.138|107.515 +639573.431|220223.308|107.540 +639568.752|220227.463|107.732 +639559.294|220235.857|107.890 +639554.527|220240.087|108.064 +639549.784|220244.300|108.421 +639545.054|220248.500|108.439 +639540.232|220252.782|108.713 +639535.513|220256.967|108.698 +639530.761|220261.183|108.607 +639526.043|220265.364|108.335 +639521.322|220269.549|108.088 +639516.594|220273.743|107.915 +639511.815|220277.983|107.759 +639502.336|220286.384|107.003 +639497.599|220290.584|106.631 +639492.823|220294.817|106.519 +639487.998|220299.097|106.415 +639483.240|220303.312|105.909 +639478.531|220307.485|105.434 +639473.776|220311.697|104.922 +639469.131|220315.806|103.733 +639459.554|220324.289|102.556 +639454.836|220328.467|101.855 +639450.081|220332.677|101.075 +639445.216|220336.993|101.051 +639440.348|220341.315|101.419 +639435.420|220345.692|101.553 +639430.531|220350.032|101.776 +639425.584|220354.424|102.069 +639420.637|220358.819|102.416 +639415.690|220363.215|102.779 +639410.740|220367.610|103.190 +639405.805|220371.993|103.522 +639400.813|220376.428|103.934 +639395.851|220380.835|104.534 +639390.873|220385.261|104.928 +639385.905|220389.671|105.239 +639380.958|220394.064|105.440 +639376.045|220398.422|105.400 +639371.122|220402.793|105.470 +639366.163|220407.191|105.449 +639361.256|220411.544|105.418 +639356.318|220415.924|105.272 +639336.643|220433.371|104.211 +639331.727|220437.729|103.986 +639326.761|220442.134|103.757 +639321.842|220446.495|103.568 +639316.880|220450.897|103.358 +639311.936|220455.277|102.992 +639306.986|220459.666|102.693 +639302.042|220464.049|102.379 +639297.083|220468.447|102.203 +639292.136|220472.836|101.947 +639287.131|220477.274|101.770 +639282.218|220481.627|101.221 +639277.195|220486.086|101.279 +639272.163|220490.551|101.450 +639267.118|220495.032|101.755 +639262.147|220499.439|101.374 +639247.013|220512.875|102.102 +639241.896|220517.425|102.858 +639231.770|220526.420|103.800 +639226.686|220530.934|103.757 +639216.570|220539.914|104.245 +639211.486|220544.434|104.870 +639206.469|220548.884|104.726 +639201.367|220553.419|105.050 +639191.150|220562.496|105.949 +639186.035|220567.041|106.525 +639165.620|220585.180|108.107 +639150.398|220598.679|107.479 +639145.347|220603.163|107.467 +639135.127|220612.231|107.073 +639130.043|220616.739|106.839 +639109.533|220634.950|107.616 +639099.255|220644.073|107.686 +639094.119|220648.630|107.747 +639088.980|220653.193|107.869 +639037.347|220699.035|109.161 +639021.839|220712.803|109.670 +639016.657|220717.393|108.829 +639011.491|220721.977|108.908 +638970.011|220758.812|110.414 +638954.405|220772.669|110.777 +638933.557|220791.252|117.470 +638923.184|220800.445|116.672 +638917.996|220805.051|116.626 +638912.858|220809.610|116.525 +638907.621|220814.259|116.580 +638902.433|220818.864|116.717 +638897.249|220823.467|116.592 +638892.064|220828.066|116.492 +638886.876|220832.669|116.574 +638881.689|220837.274|116.550 +638876.501|220841.877|116.647 +638871.316|220846.482|116.687 +638866.125|220851.085|116.595 +638860.938|220855.690|116.541 +638855.750|220860.293|116.470 +638850.562|220864.898|116.544 +638845.375|220869.504|116.534 +638840.187|220874.106|116.483 +638835.048|220878.669|116.568 +638829.857|220883.275|116.507 +638824.670|220887.880|116.519 +638819.528|220892.440|116.473 +638814.340|220897.045|116.544 +638809.195|220901.605|116.486 +638804.004|220906.211|116.489 +638798.865|220910.774|116.608 +638793.668|220915.379|116.422 +638788.529|220919.942|116.605 +638783.381|220924.508|116.486 +638778.236|220929.071|116.458 +638773.088|220933.637|116.440 +638767.943|220938.203|116.434 +638762.746|220942.811|116.458 +638757.647|220947.335|116.495 +638752.496|220951.907|116.391 +638742.276|220960.980|117.162 +638737.125|220965.549|117.184 +638732.022|220970.076|117.196 +638726.935|220974.593|117.565 +638721.787|220979.162|117.644 +638716.712|220983.673|118.250 +638711.680|220988.141|118.766 +638706.556|220992.695|119.348 +638701.558|220997.142|120.430 +638696.486|221001.650|121.049 +638676.454|221019.459|124.502 +638671.382|221023.967|125.038 +638666.408|221028.387|125.627 +638651.348|221041.759|126.724 +638646.300|221046.242|126.937 +638636.330|221055.094|127.821 +638631.325|221059.538|127.977 +638626.336|221063.970|128.370 +638621.328|221068.410|128.562 +638616.378|221072.809|128.821 +638596.362|221090.566|129.281 +638591.415|221094.953|129.092 +638586.398|221099.409|129.239 +638581.457|221103.789|129.202 +638576.440|221108.242|129.379 +638571.508|221112.619|129.467 +638566.516|221117.044|129.449 +638561.572|221121.431|129.421 +638556.607|221125.838|129.744 +638551.666|221130.224|129.799 +638546.713|221134.616|129.760 +638541.751|221139.018|129.632 +638536.779|221143.425|129.449 +638531.829|221147.817|129.495 +638526.913|221152.179|129.400 +638521.951|221156.577|129.394 +638517.095|221160.893|129.940 +638512.170|221165.261|129.818 +638507.262|221169.613|129.933 +638502.346|221173.975|129.955 +638497.433|221178.334|130.022 +638492.516|221182.699|130.080 +638487.639|221187.024|130.083 +638482.753|221191.361|130.458 +638477.852|221195.707|130.281 +638472.991|221200.023|130.461 +638448.570|221221.689|130.735 +638443.711|221225.998|130.653 +638438.807|221230.348|130.628 +638433.985|221234.621|130.491 +638429.072|221238.977|130.461 +638424.210|221243.290|130.436 +638419.401|221247.560|130.842 +638404.983|221260.356|131.491 +638400.104|221264.675|131.080 +638390.320|221273.343|130.135 +638385.437|221277.671|129.778 +638380.517|221282.027|129.193 +638375.741|221286.264|129.290 +638360.973|221299.327|126.696 +638336.656|221320.862|124.014 +638331.831|221325.135|123.353 +638327.104|221329.329|123.685 +638294.338|221358.416|126.215 +638271.033|221379.097|127.224 +638234.569|221411.485|131.296 +638220.893|221423.622|132.034 +638216.303|221427.691|132.055 +638211.731|221431.745|131.912 +638207.153|221435.802|131.762 +638202.559|221439.874|131.549 +638197.996|221443.919|131.509 +638193.327|221448.055|130.933 +638188.721|221452.130|130.461 +638184.131|221456.199|130.080 +638179.571|221460.238|129.882 +638170.619|221468.181|130.132 +638166.139|221472.155|130.116 +638152.362|221484.351|128.306 +638147.781|221488.407|127.897 +638138.914|221496.271|127.797 +638134.476|221500.206|127.888 +638130.047|221504.132|127.785 +638116.761|221515.907|127.349 +638112.390|221519.784|127.343 +638103.728|221527.468|127.513 +638094.971|221535.231|127.300 +638090.637|221539.077|127.309 +638086.293|221542.927|127.044 +638073.162|221554.564|125.694 +638068.743|221558.478|125.169 +638064.335|221562.379|124.502 +638059.925|221566.287|123.828 +638046.895|221577.830|122.368 +638042.640|221581.600|122.003 +638030.103|221592.725|122.204 +638003.695|221616.076|115.486 +637999.321|221619.944|114.383 +637995.255|221623.553|114.340 +637983.036|221634.392|114.239 +637979.000|221637.973|114.163 +637966.683|221648.888|112.980 +637958.417|221656.206|111.773 +637950.276|221663.415|110.499 +637946.204|221667.021|109.993 +637942.199|221670.568|109.558 +637938.206|221674.110|109.381 +637934.316|221677.561|109.204 +637922.481|221688.046|108.137 +637910.734|221698.455|106.909 +637906.763|221701.969|106.330 +637902.946|221705.352|106.135 +637899.319|221708.577|106.449 +637895.491|221711.970|106.238 +637891.385|221715.594|104.812 +637887.304|221719.199|103.291 +637883.704|221722.397|103.766 +638079.853|221546.603|126.224 +638084.297|221542.656|126.922 +638088.597|221538.828|127.001 +638101.756|221527.120|127.538 +638110.409|221519.412|127.108 +638123.604|221507.668|127.343 +638128.069|221503.696|127.614 +638132.477|221499.770|127.626 +638136.914|221495.820|127.556 +638141.447|221491.791|127.952 +638150.432|221483.793|128.184 +638154.998|221479.736|128.821 +638168.763|221467.498|130.177 +638173.204|221463.539|129.751 +638182.220|221455.516|129.891 +638186.880|221451.374|130.375 +638191.489|221447.272|130.634 +638196.177|221443.111|131.305 +638200.779|221439.014|131.573 +638205.345|221434.951|131.668 +638209.972|221430.837|131.811 +638214.587|221426.728|131.936 +638223.761|221418.568|131.918 +638228.400|221414.441|131.936 +638251.172|221394.148|129.080 +638260.322|221385.991|128.031 +638264.958|221381.861|127.586 +638274.236|221373.604|127.041 +638283.581|221365.280|126.389 +638288.339|221361.050|126.428 +638293.079|221356.831|126.398 +638311.882|221340.088|125.148 +638321.300|221331.700|124.231 +638326.052|221327.467|123.752 +638330.798|221323.242|123.575 +638335.623|221318.954|123.917 +638355.310|221301.467|126.194 +638379.926|221279.607|129.287 +638384.824|221275.257|129.751 +638389.774|221270.859|130.250 +638394.709|221266.476|130.689 +638399.701|221262.041|131.211 +638424.009|221240.406|130.378 +638428.923|221236.036|130.455 +638433.836|221231.665|130.531 +638443.705|221222.890|130.729 +638473.323|221196.533|130.287 +638478.233|221192.166|130.125 +638483.208|221187.740|130.129 +638488.176|221183.317|130.086 +638493.141|221178.904|130.019 +638498.106|221174.484|130.007 +638503.065|221170.074|129.946 +638508.070|221165.617|129.882 +638513.029|221161.207|129.857 +638518.019|221156.769|129.668 +638522.972|221152.362|129.635 +638528.016|221147.872|129.574 +638532.969|221143.465|129.580 +638538.026|221138.969|129.653 +638543.034|221134.516|129.784 +638548.084|221130.023|129.842 +638553.059|221125.594|129.674 +638558.036|221121.165|129.528 +638563.114|221116.648|129.418 +638568.098|221112.213|129.400 +638573.133|221107.736|129.418 +638578.156|221103.267|129.336 +638583.222|221098.759|129.205 +638588.245|221094.294|129.147 +638593.277|221089.820|129.239 +638613.485|221071.849|128.982 +638618.524|221067.365|128.626 +638623.580|221062.869|128.531 +638628.610|221058.389|128.105 +638633.654|221053.902|127.852 +638638.744|221049.373|127.614 +638643.755|221044.907|126.946 +638648.848|221040.378|126.721 +638669.051|221022.392|124.947 +638674.177|221017.829|124.560 +638679.243|221013.318|123.965 +638684.278|221008.828|122.862 +638694.343|220999.849|120.402 +638704.529|220990.775|119.214 +638709.610|220986.255|118.833 +638714.713|220981.704|117.918 +638719.849|220977.138|117.607 +638724.948|220972.602|117.629 +638735.171|220963.507|117.114 +638745.431|220954.375|116.419 +638750.576|220949.800|116.394 +638755.724|220945.225|116.461 +638760.869|220940.650|116.544 +638766.011|220936.075|116.586 +638776.340|220926.892|116.541 +638781.479|220922.323|116.489 +638786.618|220917.754|116.486 +638791.803|220913.142|116.419 +638796.942|220908.573|116.431 +638802.133|220903.958|116.547 +638807.268|220899.392|116.583 +638812.456|220894.781|116.632 +638817.586|220890.215|116.431 +638822.771|220885.606|116.461 +638827.910|220881.040|116.644 +638833.091|220876.432|116.483 +638838.276|220871.823|116.513 +638843.409|220867.257|116.470 +638848.590|220862.649|116.495 +638858.908|220853.474|116.556 +638864.092|220848.869|116.595 +638869.274|220844.260|116.467 +638874.407|220839.694|116.513 +638879.589|220835.089|116.586 +638884.773|220830.480|116.541 +638889.906|220825.914|116.455 +638895.085|220821.312|116.611 +638900.266|220816.703|116.586 +638905.399|220812.140|116.678 +638910.581|220807.532|116.626 +638915.765|220802.923|116.653 +638920.898|220798.360|116.733 +638926.080|220793.752|116.809 +638931.258|220789.158|117.559 +638936.409|220784.550|115.474 +638962.278|220761.488|110.603 +638977.783|220747.699|109.957 +638982.882|220743.164|109.939 +638993.236|220733.959|109.838 +638998.342|220729.420|109.759 +639008.669|220720.231|109.049 +639024.082|220706.530|109.228 +639034.351|220697.401|109.231 +639070.095|220665.610|108.369 +639085.387|220652.013|107.963 +639090.465|220647.496|107.887 +639095.561|220642.964|107.567 +639100.636|220638.453|107.674 +639136.014|220606.997|107.351 +639166.071|220580.288|108.546 +639206.344|220544.443|105.077 +639216.329|220535.561|104.699 +639221.355|220531.084|104.138 +639231.350|220522.199|103.855 +639246.364|220508.830|102.315 +639251.320|220504.423|102.215 +639271.215|220486.726|101.392 +639276.177|220482.312|101.346 +639281.118|220477.917|101.096 +639286.022|220473.565|101.685 +639290.923|220469.209|101.828 +639295.824|220464.853|102.011 +639300.716|220460.510|102.300 +639305.605|220456.164|102.617 +639310.461|220451.848|102.797 +639315.365|220447.492|103.029 +639320.220|220443.179|103.263 +639325.067|220438.872|103.583 +639329.986|220434.504|103.742 +639334.793|220430.234|104.016 +639339.731|220425.842|104.025 +639349.417|220417.228|104.446 +639354.255|220412.934|104.952 +639359.073|220408.648|105.193 +639363.978|220404.287|105.178 +639368.775|220400.019|105.239 +639373.679|220395.658|105.263 +639378.498|220391.369|105.205 +639383.390|220387.017|104.986 +639388.282|220382.664|104.800 +639393.217|220378.266|104.309 +639398.106|220373.916|103.839 +639402.986|220369.570|103.446 +639407.909|220365.187|103.148 +639412.810|220360.822|102.663 +639417.687|220356.479|102.383 +639422.576|220352.126|102.035 +639427.425|220347.810|101.663 +639432.299|220343.473|101.493 +639437.130|220339.169|101.273 +639441.970|220334.862|101.041 +639446.771|220330.592|101.087 +639451.416|220326.474|102.230 +639465.464|220314.002|104.205 +639470.207|220309.789|104.723 +639479.525|220301.514|105.894 +639484.279|220297.292|106.366 +639488.964|220293.129|106.656 +639493.695|220288.919|106.674 +639503.153|220280.510|107.101 +639507.816|220276.368|107.585 +639512.504|220272.204|107.945 +639517.183|220268.044|108.064 +639521.843|220263.898|108.293 +639526.564|220259.701|108.503 +639531.237|220255.550|108.719 +639545.377|220242.965|108.427 +639550.040|220238.819|108.485 +639554.810|220234.570|107.936 +639559.547|220230.352|107.601 +639568.913|220222.016|107.326 +639573.531|220217.910|107.436 +639578.204|220213.750|107.272 +639582.898|220209.577|107.293 +639587.482|220205.499|107.363 +639596.675|220197.324|107.448 +639601.219|220193.285|107.790 +639605.749|220189.256|107.948 +639614.905|220181.108|107.814 +639619.541|220176.981|107.479 +639628.724|220168.807|107.058 +639633.303|220164.732|106.823 +639637.804|220160.723|106.723 +639642.401|220156.633|106.446 +639646.875|220152.652|106.519 +639651.411|220148.617|106.327 +639655.967|220144.557|106.031 +639660.463|220140.558|105.815 +639664.959|220136.556|105.610 +639669.385|220132.615|105.510 +639673.801|220128.686|105.473 +639678.288|220124.696|105.382 +639682.729|220120.743|105.266 +639687.124|220116.829|105.138 +639691.574|220112.867|105.013 +639695.936|220108.983|104.836 +639700.337|220105.067|104.733 +639700.368|220103.052|104.534 +639696.012|220106.917|104.629 +639691.638|220110.800|104.839 +639687.240|220114.702|104.922 +639682.830|220118.615|105.089 +639678.489|220122.468|105.196 +639674.051|220126.403|105.269 +639669.620|220130.338|105.351 +639665.194|220134.264|105.412 +639660.747|220138.211|105.583 +639656.248|220142.207|105.796 +639651.734|220146.215|106.095 +639647.192|220150.244|106.293 +639642.678|220154.249|106.363 +639638.152|220158.267|106.519 +639633.601|220162.305|106.564 +639629.075|220166.323|106.763 +639619.852|220174.513|107.311 +639615.234|220178.612|107.515 +639610.634|220182.693|107.643 +639606.059|220186.750|107.662 +639601.484|220190.807|107.427 +639596.903|220194.867|107.241 +639592.310|220198.942|107.134 +639587.692|220203.039|107.180 +639583.056|220207.151|107.064 +639578.396|220211.287|107.113 +639573.729|220215.426|107.201 +639564.287|220223.805|107.500 +639559.544|220228.011|107.509 +639554.838|220232.184|107.625 +639550.037|220236.448|108.293 +639545.304|220240.648|108.329 +639540.494|220244.915|108.518 +639535.779|220249.094|108.479 +639530.978|220253.355|108.677 +639526.260|220257.537|108.399 +639521.523|220261.731|108.232 +639516.753|220265.959|107.997 +639511.977|220270.196|107.823 +639507.246|220274.387|107.692 +639492.951|220287.051|106.470 +639488.047|220291.398|106.531 +639483.292|220295.613|106.342 +639478.482|220299.871|105.836 +639473.700|220304.108|105.522 +639468.975|220308.293|104.851 +639464.175|220312.538|104.007 +639449.822|220325.240|101.892 +639445.119|220329.400|101.127 +639440.193|220333.765|100.843 +639435.249|220338.154|101.069 +639430.305|220342.540|101.307 +639425.374|220346.917|101.493 +639420.427|220351.306|101.819 +639415.428|220355.744|102.178 +639410.515|220360.103|102.319 +639405.482|220364.574|102.983 +639400.502|220368.997|103.315 +639395.512|220373.422|103.721 +639390.526|220377.851|104.150 +639385.497|220382.320|104.565 +639380.547|220386.709|104.772 +639375.554|220391.140|104.949 +639370.638|220395.499|104.940 +639365.669|220399.907|104.992 +639360.719|220404.296|104.922 +639355.772|220408.682|104.830 +639350.801|220413.086|104.544 +639345.927|220417.399|103.891 +639335.979|220426.223|103.919 +639331.013|220430.624|103.672 +639326.103|220434.974|103.394 +639321.095|220439.412|103.111 +639316.182|220443.767|102.916 +639311.177|220448.205|102.660 +639306.267|220452.558|102.465 +639301.259|220456.993|102.248 +639296.315|220461.376|101.947 +639291.322|220465.798|101.645 +639286.366|220470.191|101.468 +639281.401|220474.589|100.947 +639276.418|220479.011|101.090 +639271.367|220483.495|101.447 +639256.353|220496.815|101.813 +639231.109|220519.227|103.974 +639226.104|220523.662|103.586 +639205.878|220541.621|105.260 +639200.885|220546.052|105.464 +639185.648|220559.585|107.025 +639170.463|220573.073|108.314 +639160.346|220582.046|108.369 +639155.320|220586.509|108.655 +639145.237|220595.451|108.387 +639140.220|220599.895|107.933 +639119.985|220617.845|108.021 +639104.778|220631.336|107.887 +639084.390|220649.422|108.034 +639079.288|220653.955|108.521 +639043.504|220685.709|109.256 +639038.387|220690.247|109.265 +639028.109|220699.364|109.231 +639017.834|220708.484|109.338 +639012.671|220713.065|109.439 +639007.501|220717.652|109.753 +639002.350|220722.224|109.628 +638976.570|220745.096|109.856 +638955.908|220763.433|110.371 +638935.169|220781.892|115.334 +638929.960|220786.540|117.626 +638924.827|220791.082|116.769 +638919.642|220795.678|116.611 +638914.458|220800.277|116.516 +638909.270|220804.880|116.547 +638904.085|220809.479|116.498 +638898.901|220814.079|116.504 +638888.580|220823.235|116.486 +638883.347|220827.880|116.693 +638878.162|220832.480|116.635 +638873.023|220837.036|116.687 +638867.790|220841.678|116.489 +638862.602|220846.281|116.480 +638857.469|220850.838|116.665 +638852.230|220855.480|116.431 +638847.045|220860.082|116.412 +638841.857|220864.682|116.443 +638836.673|220869.284|116.480 +638831.488|220873.884|116.559 +638826.303|220878.486|116.617 +638821.116|220883.089|116.574 +638815.925|220887.694|116.437 +638810.734|220892.297|116.452 +638805.546|220896.902|116.486 +638800.359|220901.508|116.586 +638795.220|220906.071|116.690 +638790.023|220910.679|116.437 +638784.832|220915.288|116.498 +638779.687|220919.854|116.431 +638774.496|220924.462|116.467 +638769.351|220929.028|116.513 +638764.203|220933.594|116.440 +638759.009|220938.206|116.434 +638753.861|220942.775|116.431 +638748.713|220947.344|116.449 +638743.565|220951.913|116.452 +638738.365|220956.527|116.391 +638733.293|220961.038|117.098 +638728.151|220965.604|117.303 +638717.864|220974.739|117.632 +638697.388|220992.933|119.400 +638692.356|220997.404|119.854 +638687.262|221001.940|120.945 +638667.118|221019.865|124.862 +638657.014|221028.844|125.806 +638652.003|221033.300|126.559 +638646.940|221037.793|126.544 +638641.902|221042.271|126.852 +638636.918|221046.696|127.327 +638626.894|221055.603|128.086 +638621.846|221060.086|128.321 +638616.847|221064.524|128.614 +638611.852|221068.965|128.915 +638586.824|221091.176|128.946 +638581.856|221095.586|129.095 +638576.882|221100.003|129.193 +638571.908|221104.420|129.336 +638566.927|221108.839|129.421 +638561.944|221113.265|129.482 +638557.003|221117.648|129.498 +638552.022|221122.071|129.616 +638547.100|221126.445|129.854 +638542.110|221130.873|129.924 +638537.206|221135.223|129.918 +638532.201|221139.667|129.857 +638527.300|221144.016|129.900 +638522.326|221148.430|129.723 +638517.367|221152.831|129.729 +638507.515|221161.576|129.943 +638502.602|221165.938|129.961 +638497.689|221170.299|130.010 +638492.775|221174.658|130.095 +638487.859|221179.023|130.150 +638482.982|221183.351|130.150 +638473.183|221192.050|130.232 +638468.330|221196.360|130.485 +638434.189|221226.660|130.595 +638429.319|221230.982|130.458 +638424.457|221235.298|130.418 +638419.678|221239.544|130.665 +638405.276|221252.339|131.726 +638400.378|221256.686|131.515 +638395.544|221260.968|131.067 +638390.658|221265.303|130.622 +638385.754|221269.649|130.092 +638380.849|221273.995|129.586 +638375.988|221278.308|129.403 +638371.129|221282.615|128.918 +638351.491|221300.010|125.895 +638346.675|221304.280|125.517 +638341.777|221308.615|124.618 +638336.937|221312.906|124.127 +638332.109|221317.186|123.767 +638327.305|221321.453|123.889 +638299.230|221346.401|126.258 +638289.845|221354.734|126.587 +638285.191|221358.870|126.855 +638280.454|221363.070|126.642 +638271.118|221371.361|127.114 +638266.522|221375.448|127.477 +638261.968|221379.496|128.117 +638239.145|221399.784|130.574 +638220.920|221415.975|131.994 +638216.297|221420.077|131.811 +638211.685|221424.168|131.717 +638207.058|221428.273|131.543 +638202.504|221432.315|131.531 +638197.844|221436.448|131.235 +638193.193|221440.566|130.473 +638188.590|221444.647|130.260 +638183.945|221448.768|129.839 +638174.902|221456.793|129.818 +638170.452|221460.747|130.199 +638161.222|221468.928|129.083 +638156.644|221472.985|128.617 +638152.127|221476.990|128.486 +638138.609|221488.977|127.583 +638134.119|221492.961|127.404 +638120.669|221504.888|126.578 +638116.237|221508.817|126.258 +638111.915|221512.657|126.468 +638107.550|221516.534|126.748 +638103.219|221520.381|126.949 +638094.535|221528.089|127.068 +638090.164|221531.963|126.898 +638085.842|221535.798|126.971 +638072.678|221547.463|125.675 +638068.301|221551.340|125.340 +638063.899|221555.235|124.679 +638059.544|221559.094|124.240 +638055.118|221563.010|123.517 +638046.447|221570.688|122.469 +638042.027|221574.599|121.606 +638025.379|221589.370|121.871 +638021.230|221593.049|121.814 +638007.908|221604.820|118.052 +638003.232|221608.941|115.657 +637999.026|221612.665|115.239 +637994.996|221616.241|115.346 +637970.387|221638.049|113.874 +637966.214|221641.743|113.291 +637962.136|221645.355|112.889 +637957.993|221649.019|112.042 +637953.927|221652.619|111.508 +637949.794|221656.279|110.947 +637945.716|221659.891|110.402 +637941.674|221663.467|109.814 +637937.660|221667.021|109.350 +637933.661|221670.565|108.948 +637929.711|221674.061|108.555 +637917.943|221684.489|107.768 +637906.278|221694.821|106.674 +637902.453|221698.211|106.439 +637898.746|221701.500|106.671 +637894.997|221704.825|106.741 +637891.175|221708.211|106.351 +637887.018|221711.878|104.544 +637883.009|221715.417|103.513 +637879.483|221718.550|104.059 +638077.149|221541.449|126.178 +638081.541|221537.547|126.648 +638085.909|221533.664|126.788 +638090.256|221529.799|126.849 +638094.654|221525.889|126.925 +638107.596|221514.370|126.322 +638111.966|221510.484|126.334 +638116.362|221506.574|126.227 +638120.827|221502.605|126.489 +638129.764|221494.665|127.077 +638134.324|221490.611|127.340 +638143.163|221482.750|127.321 +638152.310|221474.627|128.388 +638156.864|221470.580|128.480 +638161.573|221466.401|129.363 +638166.184|221462.307|130.040 +638175.194|221454.294|129.857 +638184.308|221446.186|129.766 +638188.904|221442.105|130.205 +638193.513|221438.012|130.470 +638198.262|221433.796|131.232 +638202.898|221429.675|131.424 +638207.509|221425.573|131.515 +638212.127|221421.467|131.646 +638216.745|221417.361|131.790 +638221.405|221413.213|131.933 +638239.690|221396.925|130.366 +638244.317|221392.804|130.119 +638253.403|221384.702|128.690 +638258.021|221380.587|128.135 +638262.639|221376.475|127.870 +638276.577|221364.058|126.821 +638309.575|221334.678|125.313 +638314.263|221330.502|124.724 +638318.963|221326.314|124.228 +638323.772|221322.032|124.136 +638328.564|221317.771|124.261 +638333.364|221313.501|124.124 +638338.223|221309.179|124.426 +638343.146|221304.805|124.816 +638357.974|221291.634|126.959 +638362.900|221287.263|127.843 +638367.877|221282.844|128.428 +638377.692|221274.123|129.427 +638382.663|221269.707|130.086 +638387.585|221265.333|130.397 +638397.415|221256.597|131.393 +638402.371|221252.190|131.692 +638421.790|221234.899|130.382 +638426.701|221230.531|130.430 +638431.644|221226.133|130.787 +638461.253|221199.795|130.887 +638466.126|221195.448|130.415 +638471.037|221191.077|130.244 +638480.986|221182.226|130.229 +638485.954|221177.806|130.189 +638490.916|221173.393|130.138 +638495.875|221168.979|130.065 +638500.883|221164.526|130.476 +638505.793|221160.152|129.991 +638510.819|221155.684|130.156 +638515.745|221151.295|129.879 +638520.796|221146.802|129.845 +638530.763|221137.935|129.985 +638540.803|221129.002|129.985 +638545.774|221124.579|129.748 +638550.806|221120.102|129.650 +638555.826|221115.630|129.464 +638560.764|221111.238|129.461 +638565.842|221106.721|129.400 +638570.819|221102.289|129.339 +638575.827|221097.830|129.083 +638580.914|221093.304|129.190 +638616.152|221061.930|128.464 +638621.206|221057.432|128.315 +638626.238|221052.948|127.940 +638636.300|221043.984|127.084 +638641.390|221039.448|126.846 +638646.416|221034.971|126.386 +638651.445|221030.487|125.977 +638676.725|221007.950|122.966 +638686.775|220998.974|120.271 +638696.967|220989.891|119.125 +638712.177|220976.330|117.327 +638717.337|220971.740|117.504 +638722.436|220967.201|117.485 +638727.514|220962.675|117.098 +638732.635|220958.112|116.452 +638737.783|220953.531|116.486 +638742.879|220948.996|116.486 +638748.018|220944.418|116.370 +638753.169|220939.836|116.531 +638758.263|220935.304|116.519 +638763.402|220930.729|116.425 +638768.544|220926.154|116.403 +638773.686|220921.576|116.458 +638778.828|220917.001|116.519 +638783.966|220912.426|116.531 +638789.154|220907.808|116.592 +638794.293|220903.236|116.583 +638799.429|220898.664|116.534 +638804.617|220894.049|116.647 +638809.756|220889.477|116.708 +638814.885|220884.908|116.446 +638820.070|220880.294|116.492 +638825.206|220875.722|116.605 +638830.345|220871.153|116.699 +638835.523|220866.541|116.428 +638840.708|220861.926|116.583 +638845.841|220857.357|116.544 +638851.026|220852.746|116.595 +638856.204|220848.131|116.492 +638861.340|220843.562|116.620 +638866.473|220838.993|116.537 +638871.703|220834.339|116.565 +638876.839|220829.770|116.620 +638881.972|220825.201|116.611 +638887.154|220820.589|116.729 +638892.283|220816.023|116.665 +638897.465|220811.412|116.595 +638902.647|220806.800|116.571 +638907.783|220802.228|116.528 +638912.964|220797.616|116.559 +638918.146|220793.005|116.650 +638923.279|220788.439|116.836 +638928.457|220783.839|117.571 +638933.654|220779.197|115.992 +638944.039|220769.895|111.100 +638949.232|220765.271|110.960 +638959.577|220756.060|110.618 +638969.931|220746.837|109.978 +638990.624|220728.424|110.158 +638995.779|220723.836|110.045 +639031.943|220691.643|109.274 +639037.140|220687.023|109.561 +639047.415|220677.879|109.561 +639052.590|220673.270|109.301 +639057.760|220668.671|109.213 +639068.068|220659.490|108.704 +639098.883|220632.058|108.290 +639104.016|220627.492|108.280 +639109.146|220622.926|108.299 +639114.233|220618.400|108.247 +639124.444|220609.314|108.418 +639129.549|220604.769|108.177 +639144.765|220591.239|109.106 +639185.310|220555.135|107.488 +639210.575|220532.623|105.409 +639230.710|220514.688|104.169 +639235.708|220510.235|103.529 +639250.769|220496.815|102.181 +639255.734|220492.395|102.038 +639270.678|220479.085|101.270 +639275.665|220474.644|101.023 +639280.590|220470.258|100.913 +639285.510|220465.884|101.371 +639290.426|220461.510|101.419 +639295.294|220457.185|101.922 +639300.192|220452.829|102.163 +639305.044|220448.513|102.383 +639309.958|220444.139|102.514 +639314.810|220439.823|102.770 +639319.666|220435.507|103.023 +639324.579|220431.136|103.224 +639329.392|220426.854|103.440 +639334.247|220422.538|103.736 +639339.072|220418.246|103.882 +639343.977|220413.882|103.797 +639353.532|220405.390|104.559 +639358.412|220401.053|104.742 +639363.207|220396.785|104.809 +639368.068|220392.460|104.778 +639372.872|220388.190|104.848 +639377.709|220383.883|104.659 +639382.561|220379.564|104.379 +639387.408|220375.251|104.181 +639392.242|220370.944|103.715 +639397.116|220366.604|103.370 +639401.931|220362.315|103.090 +639406.820|220357.963|102.687 +639411.618|220353.690|102.251 +639416.458|220349.380|101.883 +639421.298|220345.067|101.550 +639426.081|220340.812|101.304 +639430.909|220336.511|101.102 +639435.676|220332.271|101.011 +639440.391|220328.077|100.956 +639445.033|220323.959|102.105 +639449.605|220319.902|103.029 +639458.932|220311.618|104.056 +639463.574|220307.494|104.559 +639468.137|220303.449|105.586 +639482.082|220291.056|106.744 +639486.770|220286.883|106.686 +639505.341|220270.378|107.823 +639509.953|220266.276|108.012 +639514.570|220262.170|108.195 +639519.237|220258.019|108.399 +639523.864|220253.907|108.570 +639528.436|220249.841|108.771 +639533.099|220245.693|108.759 +639537.781|220241.526|108.643 +639542.414|220237.402|108.546 +639547.084|220233.245|108.271 +639556.478|220224.878|107.454 +639561.053|220220.809|107.497 +639565.655|220216.712|107.387 +639570.267|220212.607|107.253 +639574.936|220208.452|107.107 +639579.539|220204.356|107.070 +639588.664|220196.239|107.198 +639593.209|220192.197|107.241 +639597.781|220188.128|107.162 +639602.329|220184.083|107.235 +639611.369|220176.043|107.454 +639615.969|220171.946|107.305 +639620.559|220167.859|106.961 +639629.654|220159.763|106.525 +639634.183|220155.734|106.561 +639638.691|220151.723|106.455 +639652.285|220139.619|105.903 +639656.775|220135.623|105.717 +639661.265|220131.627|105.540 +639665.745|220127.637|105.434 +639670.177|220123.693|105.330 +639674.621|220119.737|105.184 +639679.099|220115.753|105.147 +639683.537|220111.803|105.068 +639687.996|220107.837|104.912 +639692.403|220103.915|104.766 +639696.872|220099.937|104.598 +639698.155|220096.602|104.467 +639693.805|220100.464|104.528 +639689.416|220104.366|104.803 +639685.119|220108.182|104.900 +639680.766|220112.047|105.031 +639676.380|220115.942|105.098 +639672.055|220119.780|105.132 +639667.647|220123.693|105.324 +639663.280|220127.573|105.357 +639658.845|220131.511|105.473 +639654.395|220135.465|105.680 +639649.951|220139.412|105.872 +639641.127|220147.245|106.013 +639636.619|220151.253|106.336 +639632.224|220155.152|106.363 +639627.755|220159.120|106.519 +639623.192|220163.177|106.915 +639618.666|220167.197|107.147 +639614.155|220171.205|107.320 +639609.668|220175.186|107.384 +639605.151|220179.197|107.354 +639600.747|220183.105|107.037 +639591.655|220191.176|107.110 +639582.562|220199.244|106.973 +639578.006|220203.292|106.997 +639573.443|220207.343|107.070 +639568.816|220211.454|107.238 +639564.229|220215.523|107.192 +639559.574|220219.660|107.281 +639554.920|220223.796|107.668 +639550.205|220227.987|108.122 +639545.581|220232.092|108.094 +639540.872|220236.277|108.280 +639536.187|220240.441|108.646 +639531.496|220244.608|108.768 +639526.863|220248.719|108.579 +639522.154|220252.901|108.546 +639517.457|220257.071|108.469 +639512.797|220261.204|108.189 +639508.130|220265.346|107.963 +639503.461|220269.488|107.765 +639489.339|220282.016|106.735 +639484.551|220286.265|106.717 +639479.823|220290.465|106.677 +639475.108|220294.644|106.226 +639470.335|220298.880|105.854 +639465.616|220303.062|105.461 +639460.926|220307.220|104.580 +639456.155|220311.450|104.217 +639446.646|220319.875|102.660 +639441.949|220324.036|101.852 +639437.258|220328.187|100.663 +639432.317|220332.576|100.855 +639427.419|220336.929|101.121 +639422.484|220341.312|101.325 +639417.549|220345.695|101.553 +639412.596|220350.102|101.965 +639407.628|220354.513|102.117 +639402.593|220358.993|102.809 +639397.600|220363.431|103.205 +639392.681|220367.802|103.474 +639387.642|220372.282|103.913 +639382.680|220376.693|104.187 +639377.627|220381.183|104.419 +639372.674|220385.584|104.665 +639367.660|220390.037|104.650 +639362.697|220394.441|104.632 +639357.684|220398.895|104.653 +639352.749|220403.275|104.470 +639337.777|220416.558|103.736 +639332.803|220420.974|103.556 +639327.792|220425.421|103.269 +639322.823|220429.829|103.053 +639317.749|220434.334|102.925 +639312.799|220438.723|102.581 +639307.742|220443.210|102.337 +639302.728|220447.660|102.169 +639297.671|220452.149|101.974 +639292.676|220456.581|101.672 +639287.649|220461.037|101.203 +639277.497|220470.047|100.810 +639272.388|220474.592|101.240 +639262.272|220483.565|100.609 +639251.973|220492.727|101.998 +639246.861|220497.272|102.602 +639241.731|220501.826|102.407 +639221.148|220520.132|104.790 +639215.954|220524.753|105.464 +639210.855|220529.282|105.665 +639205.722|220533.842|105.744 +639195.456|220542.968|106.564 +639190.287|220547.561|107.174 +639144.073|220588.612|109.253 +639118.497|220611.310|108.704 +639113.361|220615.867|108.652 +639108.232|220620.421|108.546 +639103.114|220624.962|108.280 +639097.975|220629.525|108.360 +639092.842|220634.079|108.369 +639082.555|220643.217|108.927 +639077.435|220647.764|108.844 +639067.129|220656.914|109.006 +639062.039|220661.438|109.372 +639056.870|220666.028|109.411 +639051.752|220670.569|109.353 +639046.580|220675.163|109.506 +639041.459|220679.710|109.615 +639031.184|220688.830|109.506 +638995.248|220720.737|110.121 +638990.128|220725.293|110.771 +638984.964|220729.881|111.152 +638979.828|220734.431|110.475 +638969.575|220743.530|110.390 +638964.475|220748.056|110.283 +638959.321|220752.634|110.502 +638933.636|220775.488|114.712 +638928.421|220780.154|117.687 +638923.340|220784.653|116.833 +638918.201|220789.210|116.647 +638913.065|220793.767|116.425 +638907.978|220798.287|116.565 +638902.839|220802.847|116.580 +638897.654|220807.449|116.464 +638892.567|220811.966|116.611 +638887.434|220816.523|116.458 +638882.298|220821.083|116.534 +638877.211|220825.600|116.583 +638872.072|220830.160|116.504 +638866.936|220834.720|116.595 +638861.846|220839.237|116.455 +638856.713|220843.797|116.629 +638851.574|220848.357|116.437 +638846.438|220852.916|116.544 +638841.299|220857.476|116.553 +638836.212|220861.993|116.614 +638831.073|220866.553|116.556 +638825.938|220871.113|116.580 +638820.847|220875.633|116.589 +638815.708|220880.193|116.446 +638810.573|220884.753|116.550 +638805.485|220889.267|116.647 +638800.343|220893.827|116.480 +638795.204|220898.387|116.522 +638790.114|220902.904|116.534 +638784.975|220907.464|116.571 +638779.879|220911.984|116.519 +638774.737|220916.547|116.419 +638769.595|220921.106|116.495 +638764.548|220925.584|116.467 +638759.406|220930.150|116.449 +638754.264|220934.713|116.495 +638749.161|220939.236|116.419 +638744.068|220943.756|116.504 +638738.920|220948.325|116.480 +638733.869|220952.806|116.470 +638728.718|220957.375|116.434 +638723.646|220961.883|117.056 +638713.451|220970.929|117.217 +638708.367|220975.446|117.601 +638703.292|220979.957|118.132 +638698.202|220984.474|118.406 +638693.185|220988.934|119.128 +638688.101|220993.451|119.515 +638683.035|220997.953|120.207 +638678.051|221002.391|121.478 +638652.936|221024.726|125.770 +638647.885|221029.207|125.886 +638642.905|221033.630|126.346 +638637.885|221038.092|126.907 +638632.837|221042.573|127.099 +638622.770|221051.515|127.937 +638617.835|221055.898|128.352 +638612.784|221060.382|128.568 +638607.792|221064.814|128.894 +638602.744|221069.297|129.147 +638577.696|221091.523|129.473 +638572.682|221095.967|129.114 +638567.659|221100.427|129.202 +638562.687|221104.840|129.360 +638557.707|221109.260|129.427 +638552.678|221113.722|129.540 +638547.746|221118.099|129.638 +638542.769|221122.516|129.812 +638537.846|221126.886|130.068 +638532.872|221131.303|130.278 +638527.919|221135.698|130.250 +638522.914|221140.136|130.211 +638517.988|221144.504|130.022 +638512.983|221148.945|130.019 +638508.098|221153.282|130.241 +638503.120|221157.696|130.110 +638498.262|221162.012|130.619 +638493.254|221166.453|130.211 +638488.350|221170.802|130.360 +638483.433|221175.167|130.391 +638478.517|221179.529|130.470 +638468.711|221188.228|130.449 +638463.786|221192.598|130.488 +638424.744|221227.233|130.537 +638419.897|221231.534|130.586 +638405.505|221244.317|132.027 +638381.157|221265.894|130.275 +638376.287|221270.207|129.641 +638351.826|221291.860|126.224 +638332.371|221309.090|123.783 +638327.695|221313.239|124.072 +638313.583|221325.766|124.798 +638308.932|221329.896|125.300 +638304.314|221333.998|126.035 +638295.024|221342.249|126.855 +638267.070|221367.051|127.669 +638248.749|221383.324|129.260 +638244.201|221387.363|129.665 +638239.705|221391.356|130.375 +638226.117|221403.426|131.720 +638221.579|221407.452|131.957 +638217.007|221411.503|131.759 +638212.404|221415.588|131.677 +638207.787|221419.678|131.549 +638203.263|221423.692|131.646 +638198.594|221427.825|131.015 +638193.894|221431.986|130.229 +638189.282|221436.073|129.940 +638184.747|221440.093|129.808 +638180.227|221444.102|129.766 +638175.868|221447.976|130.302 +638143.946|221476.255|127.727 +638139.426|221480.257|127.352 +638130.495|221488.173|126.953 +638125.972|221492.181|126.623 +638121.537|221496.116|126.480 +638117.038|221500.100|126.066 +638112.518|221504.102|125.569 +638108.156|221507.970|125.593 +638103.862|221511.783|125.956 +638099.598|221515.571|126.465 +638095.263|221519.418|126.654 +638077.862|221534.847|126.148 +638073.559|221538.663|126.096 +638069.172|221542.552|125.685 +638064.768|221546.451|124.996 +638060.461|221550.270|124.980 +638051.625|221558.094|123.569 +638047.269|221561.950|122.944 +638042.908|221565.815|122.298 +638038.513|221569.701|121.548 +638034.251|221573.480|121.393 +638025.912|221580.881|121.448 +638008.633|221596.179|118.793 +638004.125|221600.160|117.293 +637999.864|221603.930|116.623 +637995.676|221607.642|116.269 +637991.582|221611.276|116.315 +637983.319|221618.600|115.940 +637979.235|221622.221|115.632 +637962.568|221636.976|113.285 +637958.499|221640.582|112.919 +637954.372|221644.234|112.346 +637950.328|221647.818|111.892 +637946.292|221651.393|111.493 +637934.128|221662.165|109.762 +637930.043|221665.780|109.033 +637926.005|221669.352|108.293 +637922.064|221672.842|107.948 +637918.110|221676.344|107.570 +637914.181|221679.828|107.287 +637910.445|221683.141|107.354 +637906.494|221686.641|106.820 +637902.675|221690.030|106.790 +637898.932|221693.349|106.863 +637895.235|221696.629|106.915 +637891.449|221699.985|106.854 +637887.639|221703.362|106.500 +637883.464|221707.041|104.629 +637879.477|221710.567|103.663 +637875.981|221713.676|104.315 +638071.428|221538.261|125.654 +638075.796|221534.377|126.005 +638080.151|221530.510|126.306 +638084.513|221526.629|126.434 +638088.908|221522.725|126.721 +638097.540|221515.044|126.376 +638101.807|221511.246|125.867 +638123.869|221491.635|126.526 +638128.319|221487.682|126.748 +638137.259|221479.733|126.937 +638141.773|221475.722|127.285 +638178.245|221443.321|129.717 +638182.799|221439.271|129.668 +638187.359|221435.217|129.662 +638191.983|221431.111|130.007 +638196.600|221427.008|130.354 +638201.355|221422.787|131.180 +638205.991|221418.669|131.396 +638210.606|221414.569|131.509 +638215.212|221410.476|131.607 +638219.887|221406.325|131.820 +638224.484|221402.237|131.622 +638233.576|221394.142|130.726 +638238.191|221390.039|130.391 +638242.702|221386.022|129.766 +638247.280|221381.947|129.248 +638251.855|221377.868|128.440 +638256.518|221373.726|128.437 +638261.105|221369.639|127.721 +638265.775|221365.484|127.492 +638275.077|221357.209|126.870 +638284.615|221348.736|127.123 +638289.248|221344.612|126.764 +638298.751|221336.166|126.605 +638303.427|221332.002|125.928 +638308.100|221327.842|125.240 +638312.824|221323.635|124.901 +638331.786|221306.765|123.408 +638336.784|221302.339|124.612 +638341.673|221297.998|125.136 +638346.684|221293.558|126.169 +638361.443|221280.457|127.626 +638366.432|221276.038|128.650 +638371.404|221271.630|129.595 +638381.252|221262.885|130.199 +638386.138|221258.545|130.644 +638391.146|221254.104|131.256 +638396.059|221249.739|131.604 +638400.963|221245.384|131.881 +638420.412|221228.083|130.439 +638425.314|221223.725|130.430 +638430.303|221219.293|130.756 +638464.874|221188.563|130.339 +638494.763|221162.006|130.866 +638499.694|221157.613|130.101 +638504.690|221153.176|130.458 +638509.679|221148.741|130.269 +638514.684|221144.294|130.253 +638519.680|221139.850|130.189 +638524.688|221135.400|130.269 +638529.735|221130.913|130.272 +638539.687|221122.065|129.848 +638544.704|221117.602|129.620 +638549.685|221113.177|129.485 +638554.756|221108.665|129.342 +638559.737|221104.240|129.251 +638564.800|221099.735|129.043 +638569.826|221095.266|128.958 +638574.852|221090.798|128.946 +638579.933|221086.281|128.989 +638584.926|221081.843|129.181 +638600.105|221068.343|128.793 +638610.154|221059.401|128.367 +638615.208|221054.908|128.217 +638620.246|221050.424|127.867 +638630.356|221041.423|127.068 +638640.424|221032.465|126.322 +638645.438|221028.000|125.691 +638670.651|221005.542|122.368 +638680.755|220996.538|120.640 +638685.723|220992.101|119.153 +638690.871|220987.522|119.076 +638695.931|220983.014|118.296 +638706.050|220974.011|117.598 +638711.192|220969.436|117.476 +638716.270|220964.915|117.019 +638721.363|220960.386|116.842 +638726.438|220955.869|116.355 +638731.596|220951.285|116.565 +638736.686|220946.758|116.455 +638741.785|220942.223|116.544 +638746.930|220937.651|116.547 +638752.020|220933.125|116.428 +638757.114|220928.595|116.452 +638762.252|220924.023|116.409 +638767.398|220919.454|116.489 +638772.488|220914.928|116.443 +638777.627|220910.359|116.422 +638782.763|220905.790|116.403 +638787.853|220901.264|116.446 +638792.995|220896.695|116.550 +638798.131|220892.129|116.586 +638803.266|220887.563|116.577 +638808.402|220882.997|116.495 +638813.489|220878.474|116.528 +638818.625|220873.908|116.559 +638823.758|220869.342|116.556 +638828.842|220864.822|116.531 +638834.024|220860.213|116.501 +638839.160|220855.650|116.486 +638844.244|220851.127|116.470 +638849.428|220846.522|116.626 +638854.513|220842.002|116.675 +638859.645|220837.436|116.644 +638864.778|220832.873|116.477 +638869.911|220828.310|116.446 +638875.044|220823.744|116.510 +638880.177|220819.181|116.656 +638885.310|220814.621|116.751 +638890.439|220810.058|116.729 +638895.572|220805.493|116.455 +638900.656|220800.975|116.620 +638905.789|220796.409|116.617 +638910.974|220791.801|116.537 +638916.058|220787.284|116.696 +638921.191|220782.718|116.705 +638926.318|220778.173|117.644 +638931.469|220773.571|115.824 +638952.091|220755.176|110.941 +638957.191|220750.634|110.713 +638967.484|220741.478|110.743 +638972.583|220736.940|110.676 +638977.728|220732.365|110.847 +638988.024|220723.202|110.847 +638993.133|220718.655|110.594 +638998.290|220714.068|110.463 +639003.377|220709.544|110.941 +639008.547|220704.942|110.448 +639013.704|220700.352|110.320 +639054.721|220663.846|109.423 +639080.388|220641.007|109.015 +639116.092|220609.237|108.957 +639141.504|220586.633|109.487 +639182.225|220550.387|108.015 +639217.759|220518.742|105.659 +639222.824|220514.225|104.720 +639227.936|220509.674|104.419 +639232.944|220505.215|104.184 +639263.366|220478.103|100.212 +639273.284|220469.288|101.221 +639278.280|220464.841|100.923 +639288.198|220456.017|101.093 +639293.124|220451.640|101.529 +639298.019|220447.291|101.809 +639302.981|220442.874|101.934 +639307.885|220438.513|102.142 +639312.786|220434.157|102.419 +639317.678|220429.807|102.779 +639322.595|220425.437|102.959 +639327.523|220421.054|103.050 +639332.388|220416.725|103.254 +639337.311|220412.345|103.449 +639342.206|220407.987|103.480 +639351.920|220399.346|104.190 +639356.766|220395.033|104.266 +639361.612|220390.717|104.336 +639366.517|220386.355|104.406 +639371.393|220382.009|104.297 +639376.237|220377.696|104.083 +639381.184|220373.285|103.867 +639386.039|220368.960|103.617 +639390.916|220364.617|103.248 +639395.790|220360.270|102.907 +639400.676|220355.915|102.507 +639405.601|220351.522|101.870 +639410.420|220347.231|101.663 +639415.254|220342.921|101.368 +639420.146|220338.562|101.054 +639424.916|220334.313|100.901 +639429.748|220330.010|100.712 +639434.527|220325.758|100.907 +639439.102|220321.695|101.825 +639443.756|220317.562|102.892 +639448.295|220313.538|104.400 +639452.906|220309.442|105.089 +639466.973|220296.924|105.994 +639471.712|220292.708|106.244 +639476.342|220288.590|106.537 +639481.000|220284.442|106.677 +639485.764|220280.199|106.497 +639490.339|220276.133|107.177 +639495.030|220271.957|107.168 +639499.663|220267.836|107.543 +639504.299|220263.712|107.899 +639508.907|220259.610|108.128 +639513.531|220255.498|108.302 +639518.149|220251.386|108.506 +639522.809|220247.235|108.482 +639527.393|220243.157|108.631 +639532.090|220238.972|108.433 +639536.717|220234.851|108.372 +639541.381|220230.693|108.110 +639545.986|220226.591|107.918 +639550.641|220222.442|107.759 +639555.246|220218.340|107.616 +639559.934|220214.161|107.028 +639564.570|220210.028|106.759 +639569.139|220205.959|106.601 +639573.751|220201.850|106.500 +639578.268|220197.830|106.662 +639582.855|220193.745|106.473 +639587.339|220189.756|106.845 +639600.896|220177.686|106.961 +639605.441|220173.635|106.805 +639609.927|220169.636|106.699 +639618.931|220161.620|106.677 +639623.464|220157.581|106.409 +639632.504|220149.525|106.049 +639637.009|220145.514|105.973 +639641.514|220141.497|105.647 +639645.943|220137.555|105.741 +639650.380|220133.599|105.537 +639654.879|220129.591|105.321 +639659.360|220125.601|105.208 +639663.786|220121.657|105.117 +639668.230|220117.695|104.964 +639672.658|220113.754|104.915 +639677.044|220109.843|104.818 +639681.446|220105.923|104.672 +639685.835|220102.016|104.617 +639690.248|220098.081|104.455 +639694.613|220094.192|104.288 +639693.702|220092.463|104.278 +639689.340|220096.331|104.391 +639684.985|220100.199|104.510 +639680.580|220104.107|104.623 +639676.231|220107.965|104.739 +639671.829|220111.867|104.867 +639667.398|220115.799|104.915 +639663.002|220119.700|105.056 +639658.619|220123.590|105.165 +639654.181|220127.525|105.290 +639649.728|220131.478|105.513 +639645.245|220135.455|105.656 +639640.822|220139.378|105.519 +639636.296|220143.399|105.909 +639631.894|220147.300|105.955 +639618.328|220159.343|106.726 +639613.817|220163.348|106.894 +639609.339|220167.316|106.884 +639600.372|220175.268|106.747 +639591.371|220183.248|106.567 +639586.869|220187.241|106.510 +639582.273|220191.322|106.714 +639577.740|220195.340|106.589 +639573.178|220199.387|106.641 +639568.642|220203.411|106.570 +639564.055|220207.480|106.525 +639559.379|220211.634|106.973 +639554.746|220215.755|107.515 +639550.083|220219.897|107.677 +639545.462|220224.000|107.902 +639540.817|220228.127|108.000 +639536.156|220232.266|108.213 +639531.487|220236.415|108.491 +639526.799|220240.578|108.604 +639522.117|220244.736|108.710 +639517.487|220248.847|108.527 +639512.854|220252.956|108.381 +639508.182|220257.104|108.180 +639503.521|220261.237|107.924 +639498.901|220265.337|107.741 +639494.204|220269.501|107.430 +639489.501|220273.676|107.177 +639484.868|220277.785|106.820 +639480.152|220281.970|106.674 +639475.379|220286.207|106.601 +639470.630|220290.419|106.388 +639465.936|220294.583|106.153 +639461.176|220298.807|105.729 +639456.433|220303.013|105.525 +639446.999|220311.374|104.467 +639442.385|220315.455|103.102 +639433.012|220323.752|101.017 +639428.248|220327.980|100.700 +639423.316|220332.357|100.837 +639418.494|220336.639|100.965 +639413.550|220341.031|101.261 +639408.604|220345.430|101.617 +639403.650|220349.834|102.050 +639398.701|220354.232|102.486 +639393.769|220358.612|102.800 +639388.779|220363.050|103.215 +639383.854|220367.427|103.565 +639378.843|220371.880|103.839 +639373.896|220376.275|104.013 +639368.964|220380.652|104.105 +639363.978|220385.081|104.254 +639359.012|220389.491|104.269 +639354.069|220393.878|104.123 +639349.173|220398.218|103.620 +639339.228|220407.048|103.501 +639334.260|220411.455|103.242 +639329.285|220415.869|103.029 +639324.305|220420.292|102.922 +639319.273|220424.757|102.834 +639314.316|220429.152|102.535 +639309.324|220433.581|102.136 +639304.313|220438.028|101.928 +639299.296|220442.478|101.773 +639294.239|220446.968|101.572 +639289.253|220451.390|101.191 +639284.230|220455.844|100.685 +639279.179|220460.324|100.478 +639274.119|220464.820|100.849 +639268.968|220469.401|101.203 +639264.003|220473.796|100.209 +639243.368|220492.148|102.855 +639233.057|220501.317|104.108 +639227.918|220505.886|104.623 +639212.449|220519.638|105.906 +639202.168|220528.776|106.756 +639196.923|220533.446|107.643 +639186.629|220542.599|108.360 +639165.940|220561.003|110.304 +639160.840|220565.532|110.243 +639155.704|220570.092|110.018 +639140.257|220583.814|110.094 +639124.883|220597.463|109.271 +639119.750|220602.023|109.143 +639109.436|220611.185|109.030 +639062.999|220652.449|109.725 +639037.198|220675.376|110.091 +639011.323|220698.367|110.694 +639006.218|220702.906|110.655 +639001.058|220707.487|110.734 +638975.290|220730.384|110.844 +638970.084|220735.010|111.124 +638964.936|220739.582|110.996 +638959.843|220744.103|110.594 +638949.491|220753.301|110.798 +638944.343|220757.877|110.908 +638939.189|220762.458|111.331 +638928.850|220771.705|116.251 +638923.702|220776.290|117.199 +638918.569|220780.843|116.659 +638913.434|220785.403|116.516 +638908.298|220789.966|116.510 +638903.159|220794.529|116.470 +638898.023|220799.095|116.489 +638892.887|220803.661|116.702 +638887.800|220808.178|116.665 +638882.667|220812.738|116.504 +638877.528|220817.300|116.547 +638872.392|220821.863|116.437 +638867.256|220826.426|116.598 +638862.169|220830.946|116.544 +638857.030|220835.509|116.470 +638851.897|220840.075|116.629 +638846.758|220844.638|116.486 +638841.668|220849.158|116.467 +638836.532|220853.721|116.495 +638831.445|220858.241|116.571 +638826.306|220862.807|116.449 +638821.167|220867.370|116.464 +638816.077|220871.893|116.440 +638810.990|220876.414|116.498 +638805.851|220880.976|116.553 +638800.764|220885.497|116.647 +638795.619|220890.062|116.458 +638790.529|220894.583|116.547 +638785.436|220899.106|116.492 +638780.294|220903.675|116.446 +638775.246|220908.155|116.434 +638770.104|220912.721|116.443 +638765.008|220917.248|116.446 +638759.915|220921.771|116.440 +638754.815|220926.297|116.431 +638749.719|220930.827|116.406 +638744.623|220935.353|116.452 +638739.523|220939.882|116.431 +638734.473|220944.366|116.443 +638729.371|220948.895|116.437 +638724.216|220953.473|116.336 +638719.196|220957.939|117.065 +638714.100|220962.468|117.211 +638709.010|220966.991|117.495 +638683.721|220989.470|119.189 +638678.646|220993.984|119.808 +638668.676|221002.869|122.259 +638653.606|221016.280|124.761 +638638.513|221029.701|126.084 +638633.486|221034.172|126.584 +638628.451|221038.647|126.989 +638623.407|221043.130|127.260 +638613.391|221052.034|128.184 +638608.383|221056.487|128.291 +638603.336|221060.970|128.598 +638598.279|221065.463|128.766 +638593.323|221069.867|128.986 +638578.241|221083.257|129.001 +638573.200|221087.735|128.851 +638568.165|221092.206|128.845 +638563.138|221096.672|128.931 +638558.167|221101.088|129.089 +638553.144|221105.550|129.257 +638548.212|221109.933|129.385 +638543.189|221114.396|129.592 +638538.209|221118.821|129.726 +638533.247|221123.229|130.101 +638528.266|221127.655|130.278 +638523.322|221132.047|130.357 +638518.327|221136.482|130.439 +638513.358|221140.895|130.314 +638508.363|221145.333|130.415 +638503.471|221149.679|130.598 +638498.411|221154.166|130.144 +638493.580|221158.467|130.927 +638463.883|221184.832|130.452 +638458.948|221189.212|130.442 +638429.532|221215.334|130.744 +638424.652|221219.659|130.531 +638419.785|221223.981|130.820 +638410.253|221232.451|132.274 +638395.657|221245.396|131.872 +638390.731|221249.758|131.473 +638385.830|221254.098|130.912 +638380.938|221258.432|130.458 +638376.070|221262.748|130.186 +638366.271|221271.423|128.961 +638351.509|221284.490|126.727 +638346.642|221288.803|126.303 +638341.786|221293.100|125.639 +638336.851|221297.468|124.810 +638331.959|221301.796|123.987 +638303.762|221326.830|125.989 +638299.090|221330.978|126.392 +638294.463|221335.087|126.754 +638280.402|221347.562|127.205 +638275.751|221351.689|127.181 +638271.069|221355.840|127.321 +638266.382|221360.001|127.425 +638257.170|221368.176|128.071 +638238.977|221384.336|130.247 +638234.417|221388.387|130.607 +638229.909|221392.386|130.997 +638220.817|221400.460|131.649 +638216.251|221404.511|131.759 +638211.600|221408.632|131.424 +638207.003|221412.707|131.403 +638202.422|221416.767|131.211 +638197.719|221420.931|130.382 +638193.080|221425.036|129.936 +638188.481|221429.115|129.702 +638179.458|221437.119|129.979 +638165.803|221449.219|129.229 +638138.487|221473.414|126.721 +638134.092|221477.316|126.986 +638129.471|221481.403|126.157 +638116.161|221493.202|125.758 +638107.245|221501.099|125.133 +638098.503|221508.856|125.389 +638089.948|221516.449|126.102 +638085.635|221520.274|126.194 +638072.623|221531.802|125.974 +638068.237|221535.682|125.569 +638063.884|221539.535|125.331 +638055.097|221547.310|124.304 +638050.790|221551.123|124.087 +638046.416|221554.991|123.368 +638042.048|221558.859|122.914 +638033.255|221566.631|121.384 +638028.911|221570.472|120.884 +638024.641|221574.251|120.485 +638020.359|221578.040|120.061 +638016.012|221581.884|119.384 +638011.711|221585.685|118.692 +638007.505|221589.409|118.412 +638003.253|221593.170|117.976 +637999.065|221596.880|117.802 +637994.819|221600.635|117.202 +637990.659|221604.317|116.970 +637961.621|221630.009|113.974 +637916.986|221669.480|108.290 +637913.002|221673.001|107.592 +637909.097|221676.454|107.214 +637905.272|221679.844|107.144 +637901.453|221683.227|107.110 +637897.722|221686.531|107.226 +637894.001|221689.829|107.375 +637890.258|221693.142|107.259 +637886.487|221696.477|107.052 +637882.644|221699.878|106.583 +637878.486|221703.539|104.784 +637874.630|221706.946|104.105 +638069.023|221532.436|125.614 +638073.388|221528.556|125.956 +638077.756|221524.673|126.093 +638082.072|221520.832|126.002 +638086.418|221516.964|126.075 +638094.986|221509.335|125.691 +638112.430|221493.808|125.069 +638125.847|221481.879|125.749 +638130.434|221477.806|126.404 +638134.933|221473.804|126.666 +638139.368|221469.857|126.623 +638143.882|221465.843|126.727 +638148.546|221461.707|127.599 +638162.161|221449.600|128.233 +638166.861|221445.431|129.135 +638180.571|221433.242|129.714 +638189.660|221425.152|129.589 +638194.318|221421.013|129.866 +638198.966|221416.883|130.400 +638203.739|221412.649|131.360 +638208.372|221408.525|131.311 +638212.996|221404.414|131.521 +638217.650|221400.274|131.622 +638231.366|221388.058|130.699 +638235.984|221383.943|130.394 +638240.595|221379.840|130.049 +638272.956|221351.009|127.145 +638277.714|221346.782|127.510 +638282.432|221342.582|127.349 +638287.187|221338.348|127.123 +638291.875|221334.172|126.824 +638301.309|221325.772|126.294 +638334.693|221296.054|124.916 +638339.601|221291.695|125.572 +638364.338|221269.728|129.025 +638374.202|221260.965|130.061 +638379.136|221256.582|130.467 +638423.211|221217.370|130.513 +638428.121|221213.002|130.604 +638433.056|221208.610|130.525 +638447.912|221195.396|130.817 +638457.821|221186.582|130.763 +638462.719|221182.220|130.488 +638467.733|221177.764|130.811 +638487.655|221160.040|130.763 +638492.623|221155.614|130.357 +638497.570|221151.213|130.202 +638502.648|221146.702|130.851 +638507.585|221142.300|130.223 +638512.618|221137.829|130.476 +638517.620|221133.379|130.479 +638522.664|221128.889|130.452 +638527.632|221124.466|130.153 +638532.661|221119.992|129.997 +638537.672|221115.527|129.687 +638542.644|221111.101|129.473 +638547.661|221106.636|129.254 +638552.687|221102.164|129.107 +638557.701|221097.699|128.906 +638562.773|221093.188|128.760 +638593.082|221066.234|128.778 +638598.191|221061.690|128.687 +638603.171|221057.255|128.166 +638623.440|221039.217|127.017 +638628.475|221034.733|126.678 +638633.557|221030.213|126.270 +638638.634|221025.693|125.819 +638653.859|221012.135|124.392 +638663.948|221003.140|122.463 +638668.977|220998.654|121.204 +638674.025|220994.155|120.241 +638679.118|220989.613|119.192 +638694.410|220976.001|117.900 +638709.787|220962.319|117.424 +638714.862|220957.801|116.879 +638725.097|220948.697|116.608 +638730.245|220944.119|116.641 +638735.381|220939.550|116.397 +638740.529|220934.972|116.437 +638745.671|220930.400|116.419 +638750.816|220925.825|116.428 +638755.913|220921.292|116.525 +638761.100|220916.681|116.425 +638766.242|220912.109|116.440 +638771.384|220907.537|116.544 +638776.523|220902.968|116.486 +638781.662|220898.399|116.431 +638786.801|220893.827|116.534 +638791.943|220889.258|116.595 +638797.079|220884.689|116.617 +638802.212|220880.123|116.473 +638807.400|220875.511|116.589 +638812.535|220870.945|116.586 +638817.668|220866.379|116.486 +638822.853|220861.771|116.403 +638827.989|220857.205|116.513 +638833.122|220852.639|116.501 +638838.258|220848.073|116.583 +638843.393|220843.507|116.650 +638848.526|220838.941|116.483 +638853.711|220834.333|116.577 +638858.844|220829.770|116.601 +638863.980|220825.204|116.617 +638869.161|220820.595|116.650 +638874.245|220816.075|116.675 +638879.381|220811.509|116.601 +638885.096|220806.425|116.409 +638889.644|220802.380|116.519 +638894.826|220797.772|116.559 +638899.913|220793.252|116.550 +638905.045|220788.686|116.544 +638910.181|220784.117|116.449 +638915.314|220779.554|116.562 +638920.450|220774.991|116.711 +638925.583|220770.431|117.059 +638930.752|220765.792|113.651 +638941.018|220756.633|111.216 +638946.114|220752.101|111.149 +638956.417|220742.938|110.615 +638992.252|220711.093|111.240 +639007.580|220697.465|110.789 +639027.953|220679.354|110.999 +639038.210|220670.231|110.173 +639063.652|220647.612|109.987 +639109.274|220607.055|109.515 +639114.294|220602.596|109.774 +639119.348|220598.103|109.518 +639129.449|220589.130|109.960 +639134.472|220584.668|110.249 +639139.516|220580.184|110.231 +639169.728|220553.337|110.771 +639230.499|220499.238|104.129 +639240.652|220490.201|102.895 +639250.738|220481.227|101.998 +639285.845|220450.007|100.834 +639290.774|220445.633|101.252 +639295.711|220441.247|101.593 +639300.728|220436.787|101.700 +639305.636|220432.429|101.901 +639310.589|220428.030|102.187 +639315.481|220423.684|102.553 +639320.443|220419.280|102.788 +639325.369|220414.900|102.901 +639330.352|220410.471|102.983 +639335.226|220406.143|103.187 +639340.237|220401.690|103.087 +639345.129|220397.343|103.163 +639349.993|220393.024|103.870 +639354.882|220388.681|104.016 +639359.777|220384.331|104.123 +639364.700|220379.954|104.041 +639369.580|220375.617|103.922 +639374.512|220371.231|103.821 +639379.449|220366.839|103.687 +639384.424|220362.413|103.312 +639389.316|220358.060|102.828 +639394.235|220353.687|102.556 +639399.167|220349.294|102.200 +639404.123|220344.884|101.712 +639409.018|220340.528|101.322 +639413.913|220336.176|100.987 +639418.820|220331.811|100.916 +639423.682|220327.489|100.862 +639428.501|220323.207|100.770 +639433.207|220319.034|101.816 +639437.883|220314.892|102.742 +639442.516|220310.789|103.955 +639451.846|220302.514|105.613 +639456.604|220298.289|106.010 +639470.758|220285.716|106.759 +639475.458|220281.540|106.948 +639480.226|220277.300|106.726 +639484.889|220273.161|107.180 +639489.552|220269.016|107.320 +639494.179|220264.910|107.726 +639498.882|220260.732|107.973 +639503.537|220256.598|108.229 +639508.157|220252.493|108.402 +639512.784|220248.381|108.543 +639531.405|220231.830|108.375 +639536.120|220227.633|108.104 +639540.710|220223.552|107.988 +639545.310|220219.462|107.842 +639549.979|220215.310|107.616 +639554.661|220211.144|107.336 +639559.254|220207.056|107.009 +639563.887|220202.935|106.491 +639568.499|220198.836|106.391 +639573.025|220194.812|106.488 +639577.551|220190.789|106.613 +639582.020|220186.817|106.775 +639591.097|220178.746|106.424 +639595.608|220174.738|106.430 +639600.107|220170.739|106.516 +639609.010|220162.827|106.686 +639613.503|220158.831|106.577 +639617.895|220154.926|106.479 +639626.868|220146.946|106.177 +639631.300|220143.005|105.940 +639635.726|220139.073|106.010 +639640.148|220135.138|105.851 +639644.541|220131.231|105.598 +639648.960|220127.302|105.504 +639653.343|220123.404|105.336 +639657.720|220119.514|105.232 +639662.060|220115.653|105.056 +639666.392|220111.803|104.952 +639670.714|220107.956|104.891 +639675.066|220104.088|104.726 +639679.391|220100.239|104.690 +639683.677|220096.429|104.620 +639687.993|220092.588|104.428 +639692.288|220088.766|104.352 +639690.386|220087.785|104.275 +639685.969|220091.704|104.406 +639681.507|220095.670|104.537 +639677.066|220099.611|104.568 +639672.619|220103.564|104.665 +639668.111|220107.566|104.806 +639663.578|220111.593|104.836 +639659.073|220115.592|105.001 +639654.529|220119.630|105.135 +639650.042|220123.614|105.254 +639645.510|220127.640|105.367 +639641.029|220131.618|105.245 +639636.466|220135.675|105.549 +639631.913|220139.717|105.552 +639622.720|220147.885|106.086 +639613.579|220156.005|106.424 +639608.946|220160.123|106.689 +639604.365|220164.189|106.699 +639599.860|220168.188|106.336 +639595.263|220172.266|106.455 +639590.691|220176.329|106.485 +639586.065|220180.438|106.537 +639576.863|220188.604|106.424 +639572.300|220192.654|106.202 +639567.664|220196.769|106.098 +639562.982|220200.927|106.275 +639558.239|220205.145|106.811 +639553.551|220209.309|107.083 +639548.851|220213.481|107.436 +639544.127|220217.675|107.649 +639539.421|220221.854|107.796 +639534.760|220225.990|107.997 +639529.990|220230.227|108.265 +639525.260|220234.427|108.619 +639520.569|220238.591|108.469 +639515.866|220242.764|108.704 +639511.172|220246.924|108.308 +639506.521|220251.051|108.290 +639501.851|220255.193|108.079 +639497.145|220259.363|107.802 +639492.472|220263.508|107.656 +639487.821|220267.629|107.076 +639483.085|220271.832|107.046 +639478.400|220275.984|106.702 +639473.685|220280.169|106.884 +639468.927|220284.390|106.738 +639464.184|220288.593|106.491 +639459.502|220292.745|106.202 +639454.763|220296.948|105.985 +639450.050|220301.124|105.592 +639440.748|220309.359|104.041 +639436.170|220313.407|102.773 +639431.503|220317.534|101.767 +639426.809|220321.689|100.944 +639422.048|220325.910|100.615 +639417.223|220330.189|100.746 +639412.365|220334.505|100.798 +639407.521|220338.803|101.102 +639402.636|220343.144|101.407 +639397.719|220347.511|101.938 +639392.836|220351.849|102.258 +639387.904|220356.232|102.620 +639383.015|220360.572|103.032 +639378.087|220364.949|103.419 +639373.198|220369.289|103.526 +639368.312|220373.627|103.629 +639363.432|220377.958|103.736 +639358.549|220382.292|103.861 +639353.654|220386.632|103.721 +639348.756|220390.979|103.623 +639334.068|220404.003|102.992 +639329.197|220408.322|102.748 +639324.256|220412.705|102.687 +639319.382|220417.027|102.517 +639314.466|220421.389|102.297 +639309.565|220425.732|101.959 +639304.606|220430.131|101.721 +639299.689|220434.492|101.557 +639294.727|220438.891|101.349 +639289.804|220443.252|100.825 +639284.861|220447.635|100.505 +639279.978|220451.957|99.630 +639274.830|220456.538|100.819 +639269.788|220461.016|101.038 +639264.808|220465.439|101.176 +639249.656|220478.890|101.870 +639244.532|220483.446|102.596 +639162.629|220556.199|110.704 +639121.737|220592.452|109.990 +639111.463|220601.563|109.920 +639106.324|220606.119|109.917 +639101.160|220610.691|109.539 +639064.910|220642.848|110.481 +639023.488|220679.592|111.365 +639018.282|220684.206|111.255 +639013.125|220688.778|111.167 +638987.180|220711.794|111.645 +638966.475|220730.149|111.383 +638961.278|220734.757|111.267 +638956.075|220739.375|111.481 +638945.730|220748.544|111.237 +638924.888|220767.091|116.559 +638919.749|220771.650|116.665 +638914.513|220776.293|116.565 +638909.325|220780.889|116.458 +638904.186|220785.449|116.571 +638898.998|220790.048|116.492 +638893.811|220794.651|116.629 +638888.672|220799.208|116.601 +638883.246|220804.017|116.495 +638878.302|220808.400|116.443 +638873.163|220812.957|116.480 +638867.976|220817.557|116.562 +638862.788|220822.156|116.510 +638857.649|220826.713|116.446 +638852.464|220831.312|116.525 +638847.322|220835.869|116.443 +638842.183|220840.429|116.470 +638837.047|220844.986|116.525 +638831.906|220849.542|116.425 +638826.770|220854.099|116.592 +638821.628|220858.656|116.550 +638816.486|220863.216|116.379 +638811.347|220867.772|116.473 +638806.208|220872.329|116.498 +638801.066|220876.892|116.473 +638795.927|220881.449|116.629 +638790.785|220886.009|116.650 +638785.686|220890.529|116.467 +638780.544|220895.092|116.501 +638775.402|220899.652|116.583 +638770.302|220904.172|116.489 +638765.203|220908.692|116.489 +638760.058|220913.258|116.452 +638754.959|220917.778|116.440 +638749.859|220922.301|116.437 +638744.760|220926.824|116.467 +638739.658|220931.348|116.449 +638734.513|220935.911|116.595 +638729.453|220940.397|116.425 +638724.354|220944.920|116.510 +638719.242|220949.450|116.409 +638714.219|220953.915|117.086 +638699.006|220967.409|117.309 +638693.934|220971.904|117.068 +638688.911|220976.367|117.781 +638673.821|220989.769|119.461 +638668.810|220994.222|120.366 +638658.901|221003.043|123.106 +638648.909|221011.919|124.407 +638643.944|221016.332|125.157 +638638.955|221020.761|125.523 +638633.916|221025.235|125.889 +638628.966|221029.625|126.169 +638623.928|221034.099|126.572 +638618.935|221038.531|126.946 +638598.937|221056.279|128.099 +638593.987|221060.672|128.452 +638588.989|221065.109|128.790 +638584.011|221069.523|128.806 +638579.003|221073.961|128.495 +638573.971|221078.423|128.486 +638568.978|221082.849|128.406 +638564.004|221087.262|128.562 +638559.033|221091.673|128.748 +638554.046|221096.096|128.790 +638544.140|221104.883|129.159 +638539.212|221109.257|129.348 +638534.234|221113.673|129.559 +638524.340|221122.455|130.165 +638519.415|221126.826|130.458 +638514.477|221131.205|130.644 +638509.515|221135.607|130.586 +638504.583|221139.978|130.403 +638499.667|221144.342|130.842 +638494.680|221148.762|130.622 +638489.739|221153.142|130.421 +638484.826|221157.504|130.951 +638465.093|221174.999|130.711 +638460.155|221179.376|130.665 +638455.263|221183.713|130.601 +638450.323|221188.097|130.567 +638445.391|221192.470|130.656 +638430.712|221205.488|130.723 +638425.811|221209.838|130.714 +638420.906|221214.191|130.714 +638406.483|221227.007|132.293 +638382.078|221248.651|131.107 +638362.464|221266.031|129.135 +638357.514|221270.411|128.038 +638352.543|221274.812|127.181 +638342.777|221283.466|126.111 +638337.915|221287.775|125.749 +638333.148|221292.006|125.718 +638295.152|221325.735|126.764 +638290.439|221329.920|126.922 +638271.627|221346.617|127.382 +638262.331|221354.871|127.769 +638257.725|221358.965|128.385 +638243.945|221371.209|129.620 +638234.826|221379.307|130.330 +638230.229|221383.391|130.778 +638216.580|221395.510|131.585 +638211.987|221399.589|131.549 +638207.372|221403.682|131.412 +638202.696|221407.827|130.964 +638197.945|221412.027|129.876 +638193.248|221416.191|129.373 +638188.715|221420.214|129.498 +638184.140|221424.271|129.412 +638165.852|221440.487|128.547 +638161.338|221444.492|128.339 +638156.757|221448.555|128.083 +638152.188|221452.602|127.647 +638147.537|221456.720|126.824 +638142.968|221460.768|126.443 +638138.518|221464.715|126.416 +638134.019|221468.705|126.166 +638115.996|221484.683|124.956 +638111.540|221488.633|124.761 +638107.148|221492.528|124.645 +638098.446|221500.252|124.843 +638094.166|221504.056|125.288 +638085.589|221511.670|125.675 +638072.614|221523.191|125.837 +638068.255|221527.056|125.535 +638063.848|221530.961|125.038 +638059.556|221534.771|124.831 +638055.158|221538.669|124.420 +638050.854|221542.485|124.200 +638046.440|221546.396|123.517 +638042.124|221550.224|123.286 +638029.070|221561.794|121.554 +638024.705|221565.656|120.741 +638011.785|221577.107|119.156 +638007.527|221580.881|118.656 +638003.372|221584.569|118.601 +637999.181|221588.288|118.409 +637994.972|221592.018|117.940 +637990.808|221595.709|117.680 +637986.642|221599.407|117.415 +637961.630|221621.572|114.440 +637957.539|221625.199|114.181 +637941.254|221639.637|112.520 +637921.222|221657.392|110.469 +637905.053|221671.708|107.375 +637901.112|221675.201|107.083 +637897.314|221678.573|106.927 +637889.840|221685.211|107.323 +637886.039|221688.582|107.189 +637882.284|221691.911|106.848 +637878.328|221695.416|106.168 +637874.198|221699.064|104.672 +637870.482|221702.359|104.315 +638067.368|221525.581|125.264 +638071.715|221521.719|125.520 +638076.027|221517.888|125.639 +638080.337|221514.053|125.538 +638084.662|221510.207|125.505 +638088.939|221506.403|125.264 +638110.650|221487.094|124.630 +638115.103|221483.134|124.837 +638119.617|221479.129|125.349 +638124.155|221475.100|125.745 +638128.673|221471.089|126.072 +638133.135|221467.123|126.145 +638142.126|221459.128|126.437 +638146.595|221455.163|126.587 +638155.870|221446.930|127.910 +638164.868|221438.929|127.907 +638183.332|221422.537|129.498 +638187.856|221418.511|129.339 +638192.416|221414.457|129.382 +638197.039|221410.354|129.778 +638201.834|221406.099|130.583 +638206.500|221401.960|131.262 +638211.106|221397.866|131.366 +638215.800|221393.697|131.707 +638229.537|221381.471|130.903 +638243.278|221369.240|129.671 +638252.483|221361.046|128.690 +638261.709|221352.829|127.583 +638271.115|221344.462|127.303 +638275.836|221340.265|127.452 +638285.316|221331.837|127.422 +638289.991|221327.674|127.047 +638327.915|221293.932|124.965 +638337.674|221285.270|125.880 +638342.588|221280.905|126.285 +638357.361|221267.796|128.227 +638362.354|221263.370|129.306 +638372.227|221254.604|130.421 +638382.102|221245.838|131.320 +638401.762|221228.367|132.058 +638406.672|221224.002|132.064 +638426.152|221206.665|130.695 +638431.105|221202.264|130.750 +638445.900|221189.108|130.543 +638450.841|221184.716|130.583 +638455.824|221180.284|130.619 +638460.762|221175.895|130.689 +638465.767|221171.448|130.945 +638470.766|221167.007|131.159 +638485.603|221153.809|130.549 +638490.599|221149.369|130.382 +638495.631|221144.903|131.040 +638500.532|221140.538|130.500 +638505.601|221136.034|130.641 +638510.557|221131.626|130.641 +638515.605|221127.139|130.628 +638520.567|221122.723|130.266 +638530.552|221113.838|129.684 +638545.564|221100.485|128.998 +638550.626|221095.983|128.748 +638555.656|221091.511|128.669 +638560.679|221087.043|128.556 +638565.732|221082.544|128.269 +638570.758|221078.073|128.208 +638575.830|221073.562|128.163 +638580.933|221069.026|128.480 +638586.017|221064.503|128.650 +638591.061|221060.013|128.321 +638601.187|221051.006|128.163 +638621.358|221033.038|126.392 +638626.449|221028.509|126.081 +638631.536|221023.980|125.782 +638636.577|221019.493|125.523 +638641.655|221014.970|125.075 +638646.715|221010.462|124.395 +638666.920|220992.436|120.094 +638671.977|220987.928|119.235 +638677.055|220983.405|118.775 +638682.169|220978.848|118.095 +638687.253|220974.322|117.690 +638692.380|220969.756|117.223 +638697.522|220965.178|117.022 +638702.615|220960.645|116.839 +638707.782|220956.055|117.174 +638712.924|220951.480|117.071 +638718.041|220946.920|116.370 +638723.198|220942.333|116.641 +638728.383|220937.718|116.400 +638733.531|220933.143|116.416 +638738.676|220928.565|116.434 +638743.818|220923.990|116.388 +638748.963|220919.415|116.425 +638754.151|220914.800|116.397 +638759.296|220910.225|116.458 +638764.438|220905.653|116.492 +638769.623|220901.038|116.425 +638774.761|220896.466|116.452 +638779.900|220891.897|116.403 +638785.088|220887.283|116.422 +638790.184|220882.753|116.711 +638795.366|220878.142|116.653 +638800.548|220873.530|116.519 +638805.687|220868.961|116.632 +638810.819|220864.395|116.516 +638816.004|220859.784|116.480 +638821.140|220855.215|116.653 +638826.322|220850.606|116.629 +638831.503|220845.997|116.440 +638836.639|220841.428|116.519 +638841.772|220836.863|116.492 +638846.957|220832.254|116.556 +638852.138|220827.642|116.525 +638857.271|220823.076|116.480 +638862.453|220818.468|116.534 +638867.585|220813.902|116.452 +638872.770|220809.293|116.678 +638877.952|220804.682|116.528 +638883.082|220800.119|116.477 +638888.263|220795.510|116.467 +638893.445|220790.899|116.443 +638898.578|220786.336|116.537 +638903.713|220781.770|116.571 +638908.895|220777.155|116.440 +638914.028|220772.595|116.848 +638919.161|220768.036|117.208 +638934.629|220754.210|111.892 +638939.823|220749.592|111.877 +638944.919|220745.060|111.819 +638975.747|220717.640|111.828 +638985.979|220708.545|112.386 +639077.840|220626.818|110.688 +639082.912|220622.310|110.768 +639087.993|220617.790|110.670 +639093.046|220613.291|110.225 +639118.290|220590.840|110.585 +639163.477|220550.652|110.911 +639173.550|220541.691|110.746 +639214.028|220505.636|106.232 +639229.109|220492.206|104.876 +639249.293|220474.220|102.239 +639259.306|220465.308|101.733 +639269.310|220456.401|100.944 +639274.385|220451.875|99.908 +639279.325|220447.483|100.194 +639284.239|220443.115|100.273 +639289.140|220438.763|100.956 +639294.081|220434.373|101.297 +639298.985|220430.012|101.517 +639303.901|220425.641|101.654 +639308.861|220421.233|101.870 +639313.759|220416.881|102.206 +639318.684|220412.501|102.322 +639323.595|220408.136|102.599 +639328.481|220403.793|102.663 +639333.455|220399.376|102.867 +639348.146|220386.322|103.398 +639353.087|220381.935|103.559 +639357.988|220377.580|103.629 +639362.868|220373.240|103.507 +639367.794|220368.860|103.428 +639372.722|220364.480|103.379 +639377.627|220360.118|103.126 +639382.549|220355.738|102.794 +639387.530|220351.306|102.410 +639392.461|220346.920|102.056 +639397.362|220342.558|101.587 +639402.315|220338.148|101.124 +639407.208|220333.798|100.791 +639412.069|220329.476|100.694 +639416.937|220325.148|100.584 +639421.838|220320.786|100.246 +639426.541|220316.620|101.319 +639431.204|220312.487|102.325 +639435.895|220308.329|103.477 +639440.452|220304.300|104.876 +639449.916|220295.899|105.979 +639454.638|220291.708|106.296 +639459.426|220287.453|106.516 +639464.163|220283.247|106.763 +639468.863|220279.071|106.945 +639473.724|220274.749|106.756 +639478.458|220270.540|106.744 +639483.124|220266.398|107.198 +639497.212|220253.886|108.067 +639501.921|220249.701|108.308 +639506.627|220245.519|108.283 +639511.269|220241.401|108.668 +639515.982|220237.210|108.643 +639520.703|220233.013|108.585 +639525.339|220228.889|108.442 +639530.073|220224.680|108.070 +639534.773|220220.501|107.906 +639539.479|220216.313|107.726 +639544.139|220212.171|107.543 +639548.812|220208.013|107.311 +639553.518|220203.825|106.909 +639558.197|220199.665|106.705 +639562.866|220195.507|106.269 +639567.469|220191.414|105.958 +639572.074|220187.320|105.924 +639585.702|220175.211|106.400 +639590.219|220171.196|106.369 +639594.794|220167.127|106.308 +639599.287|220163.134|106.436 +639603.789|220159.135|106.540 +639608.242|220155.179|106.641 +639612.796|220151.131|106.506 +639621.879|220143.051|105.900 +639626.380|220139.046|105.821 +639630.840|220135.081|105.726 +639635.323|220131.094|105.516 +639639.789|220127.125|105.434 +639644.214|220123.187|105.290 +639648.628|220119.264|105.235 +639653.057|220115.326|105.123 +639657.504|220111.370|104.946 +639661.899|220107.463|104.778 +639666.276|220103.570|104.723 +639670.671|220099.663|104.586 +639675.057|220095.764|104.525 +639679.385|220091.915|104.495 +639683.689|220088.089|104.361 +639688.039|220084.225|104.272 +639688.846|220081.527|104.068 +639684.482|220085.398|104.205 +639680.022|220089.354|104.306 +639675.621|220093.256|104.403 +639671.186|220097.188|104.425 +639666.739|220101.132|104.522 +639662.292|220105.073|104.635 +639657.796|220109.063|104.757 +639653.294|220113.056|104.922 +639648.792|220117.049|105.117 +639644.242|220121.084|105.059 +639639.694|220125.120|105.254 +639635.180|220129.122|105.303 +639630.578|220133.203|105.543 +639626.012|220137.254|105.644 +639621.440|220141.308|105.781 +639616.761|220145.462|106.217 +639612.146|220149.552|106.345 +639602.935|220157.718|106.311 +639598.375|220161.760|106.226 +639593.761|220165.853|106.174 +639589.061|220170.020|106.308 +639584.452|220174.107|106.266 +639579.792|220178.240|106.244 +639575.183|220182.319|105.946 +639570.504|220186.467|105.784 +639565.826|220190.618|105.909 +639561.056|220194.849|106.281 +639556.282|220199.086|106.677 +639551.561|220203.280|106.836 +639546.742|220207.556|107.253 +639541.969|220211.796|107.454 +639537.202|220216.023|107.631 +639532.426|220220.263|107.884 +639527.677|220224.475|108.009 +639522.831|220228.782|108.442 +639518.036|220233.034|108.573 +639513.269|220237.265|108.576 +639508.502|220241.493|108.594 +639503.756|220245.696|108.201 +639499.001|220249.914|108.195 +639494.195|220254.175|107.899 +639489.467|220258.366|107.774 +639484.666|220262.621|107.467 +639479.924|220266.818|106.820 +639475.151|220271.052|106.714 +639470.295|220275.362|106.820 +639465.452|220279.657|106.869 +639460.657|220283.906|106.622 +639455.808|220288.206|106.427 +639451.023|220292.446|106.153 +639446.195|220296.725|105.863 +639441.370|220301.002|105.552 +639436.776|220305.059|104.053 +639432.030|220309.253|102.876 +639427.334|220313.404|101.724 +639422.576|220317.616|100.993 +639417.751|220321.890|100.407 +639412.880|220326.212|100.496 +639407.915|220330.616|100.563 +639403.020|220334.963|100.889 +639398.060|220339.361|100.962 +639393.098|220343.774|101.828 +639388.118|220348.197|102.133 +639383.177|220352.583|102.526 +639378.242|220356.963|102.922 +639373.225|220361.416|103.199 +639368.333|220365.760|103.324 +639363.365|220370.164|103.291 +639358.427|220374.547|103.428 +639353.514|220378.906|103.404 +639348.619|220383.246|103.248 +639333.879|220396.313|102.562 +639328.919|220400.711|102.602 +639323.966|220405.103|102.611 +639319.053|220409.462|102.331 +639314.131|220413.824|102.130 +639309.168|220418.222|101.849 +639304.255|220422.578|101.602 +639299.284|220426.988|101.477 +639294.367|220431.347|101.297 +639289.381|220435.763|100.862 +639284.507|220440.079|100.328 +639279.481|220444.538|100.307 +639264.454|220457.880|101.349 +639259.410|220462.357|101.611 +639249.391|220471.251|102.062 +639244.392|220475.689|102.468 +639239.302|220480.209|102.837 +639229.131|220489.253|104.665 +639224.044|220493.776|105.668 +639208.819|220507.303|107.467 +639203.732|220511.823|108.122 +639168.152|220543.431|111.694 +639107.278|220597.426|110.816 +639102.215|220601.916|110.408 +639050.871|220647.481|111.661 +639045.693|220652.080|111.920 +639025.082|220670.362|111.898 +638994.008|220697.941|112.590 +638988.829|220702.543|113.413 +638983.687|220707.100|112.990 +638973.333|220716.290|113.057 +638968.093|220720.935|112.737 +638947.349|220739.336|112.557 +638936.958|220748.550|112.295 +638931.755|220753.173|112.849 +638926.601|220757.755|113.587 +638921.328|220762.473|116.879 +638911.001|220771.632|116.644 +638905.765|220776.274|116.477 +638900.577|220780.880|116.559 +638895.389|220785.482|116.461 +638890.202|220790.085|116.580 +638884.965|220794.730|116.553 +638879.829|220799.284|116.437 +638874.593|220803.932|116.568 +638869.405|220808.531|116.446 +638864.217|220813.134|116.477 +638859.030|220817.739|116.556 +638853.793|220822.385|116.537 +638848.606|220826.987|116.544 +638843.418|220831.590|116.489 +638838.230|220836.192|116.559 +638833.042|220840.795|116.541 +638827.855|220845.397|116.449 +638822.667|220849.999|116.495 +638817.479|220854.602|116.562 +638812.289|220859.204|116.464 +638807.101|220863.810|116.568 +638801.910|220868.412|116.516 +638796.768|220872.972|116.519 +638791.574|220877.575|116.480 +638786.384|220882.180|116.516 +638781.242|220886.740|116.547 +638776.048|220891.346|116.565 +638770.854|220895.951|116.528 +638765.755|220900.471|116.470 +638760.558|220905.077|116.446 +638755.361|220909.686|116.428 +638750.265|220914.206|116.452 +638745.065|220918.814|116.428 +638739.914|220923.383|116.409 +638734.817|220927.903|116.501 +638729.614|220932.518|116.419 +638724.509|220937.041|116.409 +638719.358|220941.610|116.437 +638709.171|220950.648|117.031 +638693.800|220964.278|117.004 +638688.710|220968.796|117.427 +638678.554|220977.805|117.714 +638673.476|220982.313|118.360 +638668.462|220986.773|119.201 +638658.413|220995.706|121.344 +638648.443|221004.576|123.844 +638643.463|221008.999|124.356 +638638.442|221013.458|125.008 +638633.456|221017.884|125.486 +638628.402|221022.367|125.642 +638623.404|221026.802|125.925 +638618.445|221031.200|126.105 +638613.400|221035.678|126.459 +638583.572|221062.147|128.126 +638578.537|221066.609|128.071 +638573.599|221070.989|128.022 +638568.564|221075.451|128.019 +638563.626|221079.828|128.038 +638558.658|221084.239|128.266 +638548.761|221093.017|128.687 +638543.774|221097.440|128.766 +638538.849|221101.811|129.016 +638533.926|221106.175|129.296 +638529.001|221110.549|129.534 +638519.150|221119.291|130.101 +638514.233|221123.653|130.503 +638509.347|221127.990|130.717 +638504.391|221132.382|130.753 +638499.472|221136.741|130.711 +638494.592|221141.075|131.028 +638489.657|221145.446|130.878 +638484.701|221149.835|130.543 +638479.864|221154.130|130.863 +638470.101|221162.789|131.214 +638465.139|221167.184|130.912 +638460.244|221171.525|130.799 +638455.358|221175.856|130.799 +638445.571|221184.533|130.699 +638440.679|221188.871|130.702 +638430.962|221197.487|130.927 +638426.106|221201.788|130.891 +638421.251|221206.092|130.872 +638406.837|221218.884|132.113 +638401.972|221223.197|132.091 +638397.114|221227.501|132.155 +638392.316|221231.759|132.293 +638382.581|221240.379|131.640 +638377.631|221244.762|131.095 +638367.868|221253.400|130.052 +638358.087|221262.056|128.979 +638348.269|221270.740|127.437 +638343.344|221275.096|126.614 +638338.552|221279.339|126.386 +638333.733|221283.612|126.322 +638329.039|221287.775|126.800 +638310.248|221304.451|128.345 +638305.521|221308.639|128.358 +638300.781|221312.842|128.275 +638286.459|221325.525|127.583 +638267.741|221342.118|128.022 +638262.986|221346.331|127.724 +638258.277|221350.503|127.727 +638239.986|221366.740|129.866 +638235.438|221370.776|130.290 +638203.263|221399.299|130.903 +638198.423|221403.578|129.866 +638193.781|221407.684|129.382 +638184.689|221415.743|129.488 +638170.799|221428.036|127.937 +638166.306|221432.016|128.089 +638161.661|221436.128|127.474 +638157.071|221440.194|127.157 +638152.514|221444.224|126.791 +638148.000|221448.226|126.642 +638143.480|221452.228|126.489 +638139.011|221456.187|126.355 +638134.449|221460.226|126.035 +638129.925|221464.231|125.666 +638125.463|221468.187|125.621 +638120.943|221472.186|125.325 +638116.459|221476.157|124.956 +638103.103|221487.984|124.206 +638098.775|221491.824|124.657 +638090.070|221499.542|124.886 +638085.671|221503.437|124.810 +638081.346|221507.268|124.859 +638077.088|221511.051|125.212 +638072.803|221514.852|125.465 +638068.490|221518.677|125.361 +638059.736|221526.434|124.852 +638055.386|221530.287|124.407 +638051.043|221534.137|124.243 +638046.712|221537.974|123.908 +638042.399|221541.790|123.456 +638038.016|221545.673|122.929 +638033.703|221549.493|122.509 +638029.362|221553.336|121.990 +638025.053|221557.152|121.618 +638020.734|221560.974|121.009 +638016.408|221564.803|120.384 +638012.141|221568.585|120.027 +638007.895|221572.343|119.567 +638003.729|221576.038|119.674 +637995.246|221583.548|118.638 +637991.000|221587.309|118.238 +637978.613|221598.288|117.714 +637974.498|221601.933|117.485 +637970.262|221605.682|116.778 +637966.065|221609.395|116.044 +637957.664|221616.826|114.593 +637953.629|221620.404|114.547 +637929.434|221641.835|112.569 +637925.337|221645.462|111.984 +637921.265|221649.062|111.085 +637901.160|221666.847|107.656 +637897.262|221670.300|107.317 +637893.504|221673.635|107.525 +637889.773|221676.942|107.643 +637882.238|221683.623|107.424 +637878.370|221687.046|107.067 +637874.542|221690.432|106.467 +637870.391|221694.093|104.699 +637866.657|221697.403|104.672 +638061.799|221522.582|124.755 +638070.535|221514.812|125.218 +638083.382|221503.370|124.743 +638087.692|221499.533|124.663 +638118.511|221472.104|124.935 +638123.015|221468.099|125.438 +638127.472|221464.133|125.471 +638132.025|221460.082|125.739 +638136.533|221456.077|126.062 +638141.127|221451.993|126.575 +638145.616|221447.997|126.596 +638150.079|221444.025|126.757 +638154.639|221439.969|126.907 +638159.217|221435.899|127.166 +638163.813|221431.812|127.550 +638168.315|221427.804|127.458 +638173.018|221423.631|128.437 +638177.880|221419.318|129.738 +638182.470|221415.237|129.906 +638186.902|221411.284|129.275 +638191.489|221407.202|129.470 +638196.073|221403.121|129.397 +638200.859|221398.875|130.150 +638205.653|221394.626|131.244 +638224.191|221378.149|131.579 +638251.718|221353.640|128.839 +638256.277|221349.574|127.964 +638265.662|221341.228|127.818 +638270.420|221337.004|128.178 +638275.154|221332.795|128.099 +638279.912|221328.564|128.184 +638284.584|221324.403|127.788 +638298.922|221311.663|128.324 +638303.753|221307.368|128.355 +638308.471|221303.174|128.309 +638322.727|221290.485|127.355 +638332.225|221282.030|126.526 +638337.086|221277.711|126.541 +638341.893|221273.438|126.565 +638351.811|221264.638|128.077 +638366.673|221251.449|130.162 +638371.586|221247.088|130.763 +638376.485|221242.735|130.918 +638381.471|221238.312|131.738 +638391.264|221229.610|132.152 +638396.181|221225.240|132.168 +638401.058|221220.905|132.296 +638405.944|221216.559|132.122 +638420.528|221203.580|131.144 +638425.387|221199.255|130.830 +638430.343|221194.851|130.909 +638440.194|221186.088|130.656 +638445.150|221181.687|130.802 +638450.070|221177.310|130.674 +638455.023|221172.908|130.860 +638460.000|221168.483|130.833 +638464.935|221164.097|130.887 +638469.927|221159.659|131.076 +638474.893|221155.245|131.019 +638479.882|221150.807|130.744 +638484.878|221146.366|131.025 +638489.843|221141.953|131.034 +638494.823|221137.521|130.747 +638499.783|221133.114|130.753 +638509.731|221124.268|130.613 +638514.751|221119.800|130.299 +638519.631|221115.453|129.571 +638529.653|221106.541|129.333 +638534.667|221102.079|129.028 +638539.638|221097.656|128.806 +638544.625|221093.221|128.754 +638549.685|221088.719|128.440 +638554.656|221084.297|128.248 +638559.679|221079.828|128.123 +638564.696|221075.372|127.919 +638569.756|221070.873|127.675 +638574.797|221066.396|127.821 +638579.851|221061.912|128.108 +638600.059|221043.953|127.739 +638610.093|221035.026|126.346 +638615.128|221030.545|125.928 +638620.234|221026.010|125.800 +638625.284|221021.520|125.605 +638635.416|221012.513|125.017 +638640.485|221008.002|124.386 +638650.577|220999.013|122.445 +638655.575|220994.560|121.469 +638665.667|220985.572|119.360 +638670.730|220981.064|118.580 +638675.811|220976.544|118.122 +638691.127|220962.928|117.089 +638696.224|220958.399|116.909 +638701.378|220953.821|116.940 +638716.764|220940.147|116.556 +638721.909|220935.572|116.489 +638727.008|220931.046|116.434 +638732.156|220926.471|116.498 +638737.301|220921.899|116.452 +638742.450|220917.327|116.449 +638747.592|220912.758|116.428 +638752.737|220908.189|116.437 +638757.882|220903.620|116.434 +638763.072|220899.008|116.455 +638768.214|220894.439|116.449 +638773.359|220889.870|116.583 +638778.501|220885.305|116.541 +638783.689|220880.693|116.611 +638788.831|220876.127|116.650 +638794.016|220871.521|116.583 +638799.155|220866.956|116.547 +638804.339|220862.350|116.422 +638809.527|220857.741|116.571 +638814.666|220853.179|116.601 +638819.851|220848.570|116.510 +638825.035|220843.964|116.522 +638830.171|220839.402|116.495 +638835.356|220834.796|116.501 +638840.544|220830.191|116.534 +638845.679|220825.628|116.501 +638850.864|220821.022|116.534 +638856.049|220816.417|116.537 +638861.185|220811.854|116.623 +638866.369|220807.248|116.458 +638871.554|220802.643|116.492 +638876.690|220798.080|116.577 +638881.871|220793.477|116.522 +638887.056|220788.872|116.534 +638892.192|220784.309|116.608 +638897.377|220779.703|116.464 +638902.561|220775.098|116.507 +638907.697|220770.535|116.608 +638928.427|220752.085|113.742 +638933.633|220747.449|112.639 +638938.775|220742.883|112.840 +638943.923|220738.308|112.712 +638954.252|220729.143|113.419 +638964.597|220719.950|113.264 +638969.694|220715.427|113.471 +638980.039|220706.240|113.547 +638995.519|220692.479|112.618 +639005.846|220683.298|112.054 +639036.607|220655.976|112.130 +639153.083|220552.517|112.295 +639213.409|220498.866|106.659 +639233.416|220481.069|104.556 +639238.503|220476.530|103.081 +639243.481|220472.111|102.852 +639248.449|220467.688|102.221 +639253.469|220463.226|102.081 +639258.465|220458.782|101.258 +639263.491|220454.310|100.666 +639273.354|220445.547|100.450 +639283.233|220436.766|100.173 +639288.088|220432.462|100.849 +639292.935|220428.162|101.179 +639297.845|220423.803|101.398 +639302.719|220419.475|101.486 +639307.583|220415.156|101.697 +639312.445|220410.843|101.962 +639317.325|220406.509|102.075 +639322.138|220402.235|102.352 +639327.060|220397.864|102.556 +639331.903|220393.558|102.599 +639336.747|220389.251|102.657 +639351.258|220376.358|103.141 +639356.120|220372.033|103.129 +639360.997|220367.695|103.035 +639365.813|220363.416|103.050 +639370.683|220359.085|103.053 +639375.545|220354.759|102.773 +639380.425|220350.416|102.367 +639385.298|220346.079|102.041 +639390.178|220341.738|101.715 +639395.125|220337.331|100.913 +639399.990|220333.003|100.746 +639404.830|220328.696|100.417 +639409.686|220324.377|100.356 +639414.492|220320.104|100.331 +639419.229|220315.900|100.807 +639423.914|220311.746|101.651 +639428.528|220307.653|102.632 +639433.183|220303.526|103.684 +639447.203|220291.090|106.177 +639451.934|220286.886|106.427 +639456.631|220282.717|106.601 +639461.425|220278.456|106.799 +639466.129|220274.274|106.945 +639470.914|220270.016|106.601 +639480.369|220261.615|107.028 +639485.002|220257.504|107.692 +639489.723|220253.310|107.823 +639494.432|220249.122|108.040 +639499.123|220244.952|108.085 +639503.820|220240.782|108.433 +639508.496|220236.628|108.604 +639513.147|220232.492|108.631 +639517.948|220228.221|108.411 +639522.718|220223.976|108.101 +639527.412|220219.800|107.939 +639532.121|220215.612|107.741 +639536.885|220211.372|107.521 +639541.545|220207.227|107.336 +639546.255|220203.039|107.198 +639551.040|220198.781|106.656 +639555.755|220194.584|106.510 +639560.419|220190.435|106.132 +639565.097|220186.272|105.961 +639569.813|220182.075|105.607 +639574.452|220177.954|105.711 +639579.008|220173.903|105.973 +639583.614|220169.809|106.016 +639588.207|220165.728|106.129 +639592.825|220161.623|106.132 +639597.467|220157.493|106.028 +639606.526|220149.443|106.241 +639611.110|220145.364|106.220 +639615.740|220141.247|106.001 +639620.306|220137.187|105.854 +639629.465|220129.033|105.214 +639633.940|220125.056|105.327 +639638.524|220120.977|105.171 +639643.096|220116.908|104.839 +639652.075|220108.926|104.800 +639656.571|220104.927|104.647 +639661.009|220100.979|104.525 +639665.511|220096.974|104.391 +639669.927|220093.049|104.416 +639674.368|220089.098|104.348 +639678.812|220085.145|104.284 +639683.223|220081.219|104.144 +639687.630|220077.296|104.031 +639683.159|220079.625|104.056 +639678.846|220083.447|104.196 +639674.566|220087.245|104.214 +639670.226|220091.092|104.275 +639665.895|220094.932|104.318 +639661.558|220098.776|104.391 +639657.217|220102.625|104.516 +639652.828|220106.515|104.632 +639648.439|220110.410|104.775 +639644.056|220114.293|104.635 +639639.575|220118.268|105.001 +639635.156|220122.187|105.089 +639630.767|220126.077|105.037 +639626.252|220130.082|105.379 +639621.775|220134.053|105.546 +639617.294|220138.028|105.760 +639612.811|220142.003|105.997 +639608.309|220145.995|106.098 +639603.776|220150.016|106.101 +639599.332|220153.951|105.921 +639594.821|220157.950|105.857 +639590.283|220161.970|105.933 +639585.775|220165.966|105.885 +639581.221|220170.002|105.812 +639576.695|220174.013|105.626 +639572.111|220178.073|105.470 +639567.533|220182.133|105.589 +639562.906|220186.241|106.004 +639558.236|220190.384|106.110 +639553.512|220194.572|106.525 +639548.879|220198.680|106.747 +639544.188|220202.841|107.031 +639539.470|220207.020|107.195 +639534.748|220211.208|107.418 +639530.076|220215.350|107.668 +639525.360|220219.532|107.887 +639520.609|220223.744|108.052 +639515.842|220227.972|108.326 +639511.090|220232.184|108.533 +639506.326|220236.405|108.546 +639501.607|220240.581|108.290 +639496.956|220244.699|107.954 +639492.162|220248.945|107.887 +639487.431|220253.136|107.759 +639482.676|220257.345|107.503 +639477.976|220261.503|106.906 +639468.457|220269.933|106.510 +639463.571|220274.268|106.836 +639458.768|220278.517|106.628 +639453.961|220282.778|106.488 +639449.112|220287.072|106.311 +639444.347|220291.288|105.918 +639430.095|220303.882|103.169 +639425.325|220308.098|102.175 +639420.610|220312.264|101.160 +639415.852|220316.461|99.728 +639410.941|220320.817|100.103 +639405.985|220325.209|100.097 +639401.047|220329.589|100.353 +639396.034|220334.033|100.804 +639391.010|220338.492|101.374 +639386.012|220342.927|101.788 +639380.995|220347.374|102.011 +639376.002|220351.803|102.450 +639370.924|220356.308|102.803 +639365.989|220360.682|102.867 +639360.972|220365.129|102.815 +639355.992|220369.542|102.882 +639350.972|220373.989|102.885 +639346.046|220378.351|102.578 +639336.030|220387.224|102.517 +639330.986|220391.692|102.401 +639325.987|220396.121|102.376 +639321.013|220400.525|102.148 +639315.999|220404.966|101.846 +639310.973|220409.416|101.675 +639306.008|220413.815|101.432 +639300.933|220418.307|101.273 +639295.955|220422.718|101.185 +639290.893|220427.201|100.971 +639285.900|220431.621|100.612 +639270.739|220445.051|100.368 +639265.661|220449.559|100.916 +639255.447|220458.617|101.688 +639250.339|220463.150|102.136 +639245.233|220467.682|102.617 +639224.656|220485.949|105.482 +639178.433|220526.978|111.365 +639158.076|220545.031|112.185 +639147.883|220554.072|112.688 +639137.703|220563.094|112.420 +639086.859|220608.146|111.554 +639035.811|220653.406|112.804 +639020.470|220667.000|112.743 +639015.356|220671.533|112.776 +639010.257|220676.053|112.496 +639000.021|220685.127|112.907 +638994.861|220689.705|113.081 +638989.747|220694.240|113.383 +638974.372|220707.871|113.831 +638969.227|220712.428|113.523 +638943.621|220735.129|113.959 +638938.436|220739.713|113.121 +638933.343|220744.225|112.740 +638928.186|220748.806|113.566 +638923.023|220753.402|115.321 +638917.859|220758.002|117.312 +638907.581|220767.106|116.979 +638902.446|220771.654|116.458 +638897.307|220776.210|116.449 +638892.119|220780.810|116.470 +638887.026|220785.321|116.455 +638881.838|220789.920|116.565 +638876.702|220794.471|116.550 +638871.563|220799.028|116.580 +638866.375|220803.624|116.534 +638861.236|220808.181|116.428 +638856.098|220812.735|116.525 +638850.910|220817.334|116.449 +638845.722|220821.930|116.495 +638840.632|220826.445|116.550 +638835.441|220831.044|116.483 +638830.253|220835.640|116.571 +638825.118|220840.197|116.644 +638819.976|220844.751|116.541 +638814.788|220849.350|116.617 +638809.646|220853.907|116.605 +638804.458|220858.506|116.638 +638799.313|220863.066|116.534 +638794.174|220867.626|116.617 +638788.983|220872.229|116.678 +638783.838|220876.788|116.580 +638778.693|220881.351|116.559 +638773.545|220885.914|116.412 +638768.403|220890.477|116.464 +638763.258|220895.037|116.507 +638758.065|220899.645|116.495 +638752.913|220904.211|116.409 +638747.768|220908.774|116.440 +638742.620|220913.337|116.519 +638737.472|220917.903|116.495 +638732.324|220922.469|116.537 +638727.167|220927.041|116.419 +638722.016|220931.607|116.449 +638716.865|220936.176|116.467 +638711.713|220940.745|116.492 +638706.626|220945.262|116.912 +638696.309|220954.409|116.815 +638691.216|220958.929|117.117 +638686.110|220963.455|117.190 +638680.959|220968.027|117.336 +638675.851|220972.557|117.400 +638670.721|220977.110|117.964 +638665.737|220981.548|119.336 +638650.534|220995.054|121.573 +638640.518|221003.966|124.106 +638635.434|221008.478|124.545 +638630.411|221012.940|125.166 +638625.367|221017.417|125.483 +638615.244|221026.394|125.678 +638610.191|221030.880|125.883 +638605.149|221035.355|126.285 +638600.175|221039.771|126.956 +638595.146|221044.240|127.519 +638580.034|221057.642|127.754 +638575.035|221062.071|127.562 +638549.950|221084.321|128.114 +638544.985|221088.728|128.419 +638540.010|221093.142|128.644 +638535.027|221097.562|128.790 +638530.095|221101.935|128.982 +638525.136|221106.340|129.397 +638515.233|221115.124|129.949 +638510.326|221119.483|130.439 +638505.382|221123.869|130.558 +638500.447|221128.246|130.808 +638495.488|221132.644|130.845 +638490.572|221137.003|130.836 +638485.640|221141.380|131.162 +638480.714|221145.748|131.095 +638475.758|221150.140|130.769 +638465.922|221158.860|130.912 +638461.058|221163.176|131.049 +638456.114|221167.559|130.936 +638446.333|221176.228|130.881 +638441.444|221180.565|130.869 +638436.549|221184.905|130.854 +638431.669|221189.233|130.988 +638426.765|221193.580|130.927 +638402.615|221215.013|132.299 +638397.751|221219.326|132.293 +638392.926|221223.603|132.223 +638388.058|221227.919|132.207 +638383.215|221232.210|132.064 +638378.341|221236.529|131.698 +638363.704|221249.493|130.296 +638358.821|221253.812|129.626 +638344.106|221266.836|127.340 +638339.235|221271.149|126.885 +638334.483|221275.364|126.922 +638329.701|221279.601|126.770 +638310.913|221296.279|128.278 +638306.195|221300.464|128.318 +638301.470|221304.652|128.339 +638296.749|221308.840|128.382 +638291.985|221313.062|128.193 +638287.294|221317.219|128.166 +638282.548|221321.428|128.126 +638277.891|221325.562|128.327 +638273.200|221329.719|128.355 +638254.360|221346.419|127.894 +638249.837|221350.439|128.708 +638245.301|221354.466|129.156 +638240.696|221358.556|129.805 +638217.924|221378.771|131.768 +638203.812|221391.264|130.104 +638199.112|221395.428|129.519 +638194.552|221399.470|129.452 +638185.463|221407.532|129.812 +638176.380|221415.584|129.723 +638171.784|221419.654|129.284 +638166.849|221424.009|127.385 +638162.313|221428.029|127.321 +638157.793|221432.035|127.090 +638153.221|221436.085|126.873 +638148.686|221440.103|126.611 +638144.196|221444.083|126.593 +638139.688|221448.079|126.501 +638135.055|221452.179|125.800 +638130.572|221456.150|125.621 +638126.076|221460.137|125.389 +638121.589|221464.112|125.230 +638108.077|221476.081|124.374 +638090.484|221491.681|124.328 +638086.065|221495.595|124.148 +638081.773|221499.402|124.322 +638077.426|221503.257|124.517 +638064.549|221514.675|124.941 +638060.208|221518.519|124.743 +638047.114|221530.110|123.691 +638042.819|221533.914|123.530 +638038.516|221537.721|123.130 +638034.175|221541.568|122.801 +638029.914|221545.341|122.618 +638025.568|221549.185|122.079 +638017.015|221556.756|121.207 +638012.736|221560.542|120.792 +638008.429|221564.352|120.280 +638004.149|221568.137|119.899 +637999.955|221571.853|119.671 +637995.743|221575.580|119.162 +637991.488|221579.345|118.717 +637987.340|221583.018|118.506 +637970.789|221597.675|117.580 +637966.549|221601.418|116.653 +637962.322|221605.158|116.016 +637958.030|221608.947|114.922 +637954.004|221612.516|114.901 +637946.146|221619.481|115.279 +637917.751|221644.596|111.399 +637913.651|221648.217|110.630 +637909.756|221651.671|110.445 +637905.812|221655.158|109.896 +637897.594|221662.412|107.585 +637893.748|221665.817|107.461 +637890.044|221669.099|107.668 +637874.975|221682.443|107.061 +637871.064|221685.903|106.567 +637866.968|221689.512|105.007 +637863.240|221692.810|104.608 +638059.532|221517.379|124.414 +638063.902|221513.499|124.758 +638068.267|221509.625|124.862 +638072.507|221505.854|124.648 +638081.121|221498.198|124.151 +638085.470|221494.336|123.996 +638089.859|221490.437|124.048 +638094.273|221486.518|124.240 +638107.462|221474.804|124.157 +638120.955|221462.829|124.947 +638125.487|221458.805|125.355 +638129.950|221454.846|125.419 +638134.442|221450.856|125.663 +638139.085|221446.744|126.401 +638143.611|221442.727|126.587 +638148.143|221438.701|126.575 +638152.718|221434.641|126.788 +638157.296|221430.575|127.053 +638161.865|221426.521|127.282 +638166.398|221422.494|127.337 +638175.950|221414.039|129.528 +638180.556|221409.952|129.775 +638185.113|221405.901|129.796 +638189.654|221401.862|129.181 +638194.244|221397.787|129.415 +638198.844|221393.700|129.431 +638203.602|221389.478|130.049 +638222.350|221372.827|131.531 +638240.702|221356.493|129.647 +638245.274|221352.424|129.110 +638249.861|221348.342|128.672 +638254.513|221344.200|128.035 +638268.783|221331.523|128.711 +638273.435|221327.384|128.443 +638278.174|221323.172|128.428 +638282.917|221318.950|128.144 +638287.675|221314.723|128.272 +638292.454|221310.474|128.251 +638297.258|221306.207|128.394 +638302.025|221301.970|128.336 +638306.801|221297.727|128.336 +638311.553|221293.500|128.224 +638316.369|221289.220|128.208 +638330.609|221276.544|126.910 +638340.320|221267.921|127.230 +638350.186|221259.164|128.412 +638355.182|221254.732|129.135 +638360.077|221250.386|129.540 +638374.915|221237.224|131.649 +638379.898|221232.799|132.098 +638384.818|221228.431|132.451 +638389.710|221224.081|132.265 +638394.575|221219.756|132.268 +638399.491|221215.388|132.320 +638404.386|221211.036|132.223 +638423.878|221193.693|130.912 +638428.828|221189.294|130.939 +638433.760|221184.911|130.839 +638438.725|221180.501|131.055 +638443.641|221176.127|130.881 +638458.561|221162.871|131.086 +638463.469|221158.506|130.909 +638468.480|221154.050|130.796 +638473.408|221149.670|130.848 +638478.474|221145.174|131.275 +638483.433|221140.767|131.214 +638488.414|221136.338|130.894 +638493.388|221131.916|131.012 +638498.377|221127.481|130.830 +638503.367|221123.043|130.650 +638508.332|221118.626|130.266 +638518.272|221109.787|129.595 +638523.252|221105.355|129.421 +638528.266|221100.896|129.065 +638533.289|221096.428|128.845 +638538.215|221092.048|128.635 +638558.316|221074.168|127.489 +638568.372|221065.225|127.373 +638573.398|221060.754|127.327 +638583.551|221051.726|127.321 +638603.689|221033.797|126.066 +638608.743|221029.301|125.846 +638613.836|221024.766|125.581 +638618.893|221020.267|125.456 +638629.033|221011.242|124.910 +638634.056|221006.768|124.346 +638639.122|221002.253|123.706 +638644.173|220997.752|122.771 +638669.364|220975.288|117.699 +638674.461|220970.752|117.464 +638679.572|220966.205|117.577 +638689.768|220957.134|117.211 +638705.112|220943.482|116.903 +638710.199|220938.956|116.550 +638715.350|220934.374|116.598 +638720.443|220929.842|116.452 +638725.591|220925.264|116.425 +638730.739|220920.686|116.437 +638735.838|220916.150|116.470 +638740.987|220911.572|116.534 +638746.125|220907.000|116.409 +638751.271|220902.425|116.437 +638756.416|220897.850|116.455 +638761.558|220893.275|116.449 +638766.703|220888.700|116.577 +638776.983|220879.559|116.531 +638782.122|220874.987|116.525 +638787.264|220870.415|116.611 +638792.400|220865.846|116.513 +638797.539|220861.277|116.504 +638802.727|220856.662|116.467 +638807.866|220852.093|116.647 +638813.002|220847.525|116.583 +638818.141|220842.956|116.617 +638828.461|220833.775|116.525 +638833.597|220829.209|116.623 +638838.733|220824.640|116.553 +638843.918|220820.028|116.583 +638849.054|220815.459|116.547 +638854.238|220810.848|116.416 +638859.374|220806.282|116.525 +638864.559|220801.670|116.620 +638869.698|220797.104|116.620 +638874.879|220792.493|116.598 +638880.012|220787.930|116.574 +638885.148|220783.361|116.495 +638890.333|220778.749|116.541 +638895.469|220774.180|116.541 +638905.838|220764.966|116.973 +638916.107|220755.834|117.296 +638921.313|220751.183|115.458 +638926.473|220746.575|113.794 +638931.673|220741.945|113.188 +638936.815|220737.373|113.361 +638941.945|220732.822|114.221 +638952.290|220723.617|113.733 +638957.438|220719.036|113.514 +638962.616|220714.439|114.242 +638972.922|220705.268|113.730 +638993.535|220686.928|113.139 +639009.010|220673.163|112.727 +639121.853|220572.814|112.770 +639126.934|220568.297|112.865 +639132.024|220563.770|112.889 +639142.144|220554.773|113.142 +639162.504|220536.655|112.292 +639243.676|220464.360|102.953 +639248.745|220459.846|102.319 +639253.743|220455.395|101.922 +639258.748|220450.939|101.496 +639263.723|220446.514|101.413 +639268.749|220442.036|100.837 +639278.701|220433.185|100.764 +639283.654|220428.777|100.517 +639288.567|220424.409|100.663 +639293.447|220420.075|101.127 +639298.372|220415.695|101.203 +639303.298|220411.318|101.319 +639308.166|220406.987|101.483 +639313.088|220402.613|101.663 +639317.950|220398.291|101.928 +639322.814|220393.969|102.203 +639327.652|220389.674|102.303 +639332.547|220385.325|102.337 +639347.137|220372.362|102.572 +639351.981|220368.061|102.718 +639356.797|220363.782|102.700 +639361.661|220359.459|102.724 +639366.489|220355.171|102.675 +639371.336|220350.861|102.495 +639376.218|220346.518|102.066 +639381.065|220342.208|101.931 +639385.835|220337.971|102.038 +639390.840|220333.512|100.813 +639395.668|220329.217|100.523 +639400.517|220324.904|100.130 +639414.791|220312.228|100.676 +639419.445|220308.098|101.358 +639424.078|220303.992|102.215 +639428.653|220299.941|103.477 +639433.228|220295.890|104.733 +639437.797|220291.843|105.696 +639442.525|220287.645|105.943 +639447.115|220283.570|106.430 +639451.806|220279.407|106.628 +639456.518|220275.219|106.692 +639465.897|220266.885|106.534 +639470.591|220262.716|106.763 +639475.251|220258.577|106.927 +639484.444|220250.417|107.756 +639489.110|220246.272|107.921 +639493.747|220242.154|107.979 +639502.939|220233.994|108.634 +639507.597|220229.855|108.619 +639512.236|220225.728|108.421 +639521.550|220217.447|107.909 +639526.193|220213.320|107.765 +639530.807|220209.214|107.503 +639535.428|220205.108|107.244 +639544.727|220196.836|106.744 +639549.351|220192.724|106.531 +639558.565|220184.531|106.071 +639563.183|220180.429|105.967 +639567.761|220176.360|105.805 +639572.355|220172.275|105.589 +639576.853|220168.276|105.620 +639585.897|220160.242|105.766 +639590.448|220156.200|105.863 +639594.928|220152.219|105.793 +639603.877|220144.270|106.040 +639608.397|220140.253|106.083 +639612.917|220136.233|105.879 +639617.480|220132.179|105.757 +639626.484|220124.172|105.370 +639631.017|220120.139|104.940 +639639.932|220112.214|104.861 +639644.416|220108.231|104.729 +639648.881|220104.262|104.702 +639657.757|220096.371|104.464 +639662.188|220092.430|104.388 +639666.611|220088.504|104.400 +639670.994|220084.606|104.348 +639675.399|220080.695|104.220 +639679.797|220076.790|104.150 +639684.201|220072.877|104.068 +639682.217|220073.197|103.946 +639677.864|220077.059|104.022 +639673.570|220080.869|104.089 +639669.208|220084.740|104.242 +639664.874|220088.583|104.272 +639660.494|220092.466|104.297 +639656.117|220096.350|104.327 +639651.722|220100.251|104.455 +639647.393|220104.088|104.294 +639642.901|220108.075|104.675 +639634.025|220115.951|104.979 +639629.621|220119.859|105.004 +639625.177|220123.806|105.242 +639620.684|220127.793|105.467 +639616.267|220131.709|105.598 +639611.747|220135.721|105.757 +639607.282|220139.686|105.918 +639602.801|220143.658|105.903 +639598.345|220147.608|105.772 +639593.892|220151.558|105.656 +639589.417|220155.527|105.677 +639584.967|220159.474|105.574 +639580.462|220163.470|105.513 +639575.927|220167.490|105.345 +639571.379|220171.526|105.543 +639566.835|220175.558|105.754 +639562.263|220179.615|105.842 +639557.694|220183.669|105.940 +639553.061|220187.781|106.129 +639548.431|220191.886|106.314 +639543.837|220195.961|106.607 +639534.523|220204.225|107.119 +639529.835|220208.385|107.439 +639525.159|220212.533|107.704 +639520.514|220216.654|107.832 +639515.787|220220.848|108.146 +639511.093|220225.012|108.299 +639506.390|220229.182|108.518 +639501.677|220233.363|108.533 +639492.378|220241.599|107.842 +639487.727|220245.720|107.820 +639483.002|220249.908|107.674 +639478.293|220254.081|107.433 +639473.630|220258.208|106.933 +639464.178|220266.584|106.439 +639454.586|220275.091|106.595 +639449.813|220279.321|106.549 +639445.009|220283.576|106.391 +639440.281|220287.761|105.763 +639426.166|220300.246|103.129 +639421.509|220304.361|102.047 +639416.739|220308.579|101.044 +639412.069|220312.703|99.706 +639397.335|220325.773|100.179 +639392.318|220330.226|100.657 +639387.310|220334.673|101.465 +639382.241|220339.175|102.047 +639377.377|220343.485|101.867 +639372.341|220347.953|102.242 +639367.370|220352.367|102.553 +639362.371|220356.799|102.696 +639357.409|220361.197|102.602 +639352.435|220365.607|102.623 +639347.421|220370.054|102.584 +639332.473|220383.304|102.248 +639327.475|220387.733|102.172 +639322.476|220392.165|102.117 +639317.456|220396.612|101.855 +639312.485|220401.016|101.590 +639307.465|220405.466|101.371 +639302.435|220409.922|101.243 +639297.363|220414.418|101.060 +639292.331|220418.880|101.011 +639287.345|220423.294|100.557 +639282.276|220427.787|100.410 +639267.018|220441.320|101.087 +639256.770|220450.412|101.636 +639251.601|220455.002|102.181 +639215.424|220487.137|107.067 +639174.026|220523.893|112.157 +639163.730|220533.022|112.468 +639158.597|220537.570|112.764 +639127.870|220564.804|113.069 +639122.731|220569.357|112.993 +639117.589|220573.911|112.968 +639112.502|220578.416|112.880 +639081.732|220605.674|112.203 +639071.451|220614.791|112.630 +639004.648|220673.986|112.987 +638994.331|220683.130|113.029 +638963.564|220710.407|114.392 +638953.262|220719.536|114.514 +638937.921|220733.124|114.026 +638932.828|220737.632|113.617 +638927.680|220742.192|113.538 +638922.520|220746.773|114.495 +638917.405|220751.326|116.300 +638912.251|220755.911|117.598 +638901.973|220765.009|116.986 +638896.834|220769.557|116.464 +638891.744|220774.068|116.406 +638886.602|220778.624|116.455 +638881.460|220783.178|116.440 +638876.367|220787.692|116.644 +638871.231|220792.243|116.437 +638866.089|220796.797|116.422 +638860.999|220801.311|116.504 +638855.857|220805.864|116.534 +638850.715|220810.421|116.507 +638845.625|220814.932|116.467 +638840.483|220819.489|116.513 +638835.341|220824.043|116.473 +638830.247|220828.557|116.455 +638825.108|220833.110|116.592 +638820.015|220837.625|116.486 +638814.873|220842.178|116.571 +638809.731|220846.735|116.510 +638804.641|220851.249|116.617 +638799.545|220855.763|116.504 +638794.400|220860.317|116.467 +638789.307|220864.831|116.504 +638784.162|220869.388|116.473 +638779.068|220873.902|116.498 +638773.923|220878.459|116.568 +638768.824|220882.976|116.431 +638763.728|220887.490|116.422 +638758.580|220892.050|116.419 +638753.432|220896.610|116.416 +638748.335|220901.127|116.428 +638743.233|220905.644|116.434 +638738.088|220910.207|116.504 +638732.989|220914.721|116.605 +638727.880|220919.247|116.449 +638722.778|220923.767|116.461 +638717.627|220928.333|116.452 +638712.530|220932.847|116.690 +638707.431|220937.368|116.845 +638702.326|220941.888|116.876 +638697.208|220946.420|116.653 +638692.097|220950.949|116.580 +638676.786|220964.516|117.016 +638671.718|220969.018|117.805 +638666.658|220973.499|117.900 +638656.612|220982.426|120.174 +638651.628|220986.855|121.515 +638646.523|220991.378|121.634 +638636.519|221000.263|123.606 +638631.496|221004.722|124.231 +638626.458|221009.191|124.679 +638621.404|221013.668|124.892 +638616.366|221018.140|125.285 +638611.352|221022.581|125.410 +638596.200|221036.013|126.282 +638591.211|221040.439|126.794 +638586.203|221044.877|127.035 +638581.146|221049.360|127.279 +638566.095|221062.692|127.263 +638556.012|221071.623|127.178 +638526.142|221098.116|129.842 +638521.140|221102.539|129.333 +638516.187|221106.934|129.836 +638511.237|221111.317|129.897 +638506.327|221115.673|130.360 +638501.389|221120.050|130.574 +638496.451|221124.427|130.775 +638491.504|221128.813|130.930 +638486.539|221133.211|130.939 +638481.632|221137.558|131.049 +638471.753|221146.308|131.183 +638466.791|221150.701|130.845 +638461.868|221155.062|130.884 +638456.955|221159.415|131.046 +638437.311|221176.816|131.070 +638432.416|221181.153|131.052 +638427.520|221185.490|131.052 +638403.319|221206.951|132.335 +638393.599|221215.565|132.369 +638388.725|221219.884|132.296 +638374.159|221232.786|131.912 +638369.328|221237.066|131.518 +638359.455|221245.798|130.040 +638349.699|221254.427|128.821 +638344.831|221258.734|127.967 +638316.238|221284.075|128.315 +638311.468|221288.303|128.300 +638306.740|221292.491|128.269 +638302.034|221296.663|128.373 +638297.300|221300.858|128.342 +638292.567|221305.052|128.315 +638287.821|221309.255|128.242 +638283.164|221313.385|128.419 +638278.525|221317.503|128.717 +638273.785|221321.700|128.745 +638269.079|221325.869|128.672 +638245.829|221346.477|129.101 +638241.251|221350.540|129.592 +638232.125|221358.639|130.497 +638209.265|221378.905|131.491 +638204.437|221383.169|130.162 +638199.792|221387.278|129.583 +638195.186|221391.362|129.516 +638190.602|221395.419|129.330 +638186.155|221399.366|129.888 +638181.571|221403.429|129.714 +638177.054|221407.428|129.659 +638172.433|221411.518|129.348 +638163.011|221419.846|127.324 +638158.491|221423.848|127.084 +638153.919|221427.895|126.852 +638149.353|221431.940|126.660 +638144.824|221435.951|126.437 +638135.777|221443.961|125.822 +638122.196|221455.983|124.886 +638113.362|221463.810|125.023 +638104.289|221471.838|123.819 +638099.857|221475.761|123.502 +638095.465|221479.657|123.639 +638091.115|221483.509|123.752 +638086.702|221487.420|123.584 +638082.312|221491.309|123.533 +638078.036|221495.101|123.786 +638073.720|221498.929|124.115 +638069.489|221502.684|124.368 +638060.864|221510.335|124.407 +638047.818|221521.893|123.520 +638043.517|221525.706|123.316 +638039.262|221529.476|123.335 +638034.946|221533.301|123.100 +638030.633|221537.121|122.673 +638026.345|221540.922|122.353 +638022.099|221544.686|122.252 +638017.722|221548.560|121.600 +638013.516|221552.288|121.478 +638009.221|221556.091|120.988 +638004.933|221559.886|120.549 +638000.687|221563.650|120.296 +637996.447|221567.406|119.884 +637992.177|221571.185|119.348 +637988.019|221574.870|119.086 +637983.795|221578.613|118.778 +637979.692|221582.249|118.778 +637975.635|221585.849|118.753 +637971.511|221589.501|118.473 +637967.241|221593.280|117.607 +637962.907|221597.112|116.507 +637958.618|221600.897|115.413 +637954.537|221604.518|115.151 +637950.504|221608.090|115.120 +637946.609|221611.550|115.422 +637942.665|221615.049|115.550 +637938.715|221618.551|115.663 +637926.639|221629.247|114.346 +637922.557|221632.859|113.797 +637910.106|221643.862|110.633 +637902.248|221650.823|110.024 +637894.049|221658.069|107.787 +637890.203|221661.476|107.649 +637886.557|221664.716|108.073 +637882.708|221668.124|107.744 +637867.428|221681.657|106.409 +637863.414|221685.205|105.345 +637859.592|221688.588|104.797 +638057.121|221511.295|124.039 +638061.452|221507.448|124.218 +638070.062|221499.795|124.154 +638082.913|221488.368|123.255 +638087.311|221484.460|123.365 +638096.129|221476.624|123.493 +638105.102|221468.656|124.179 +638114.146|221460.634|125.023 +638132.056|221444.720|125.115 +638136.683|221440.618|126.053 +638141.291|221436.527|126.413 +638145.775|221432.544|126.437 +638150.353|221428.478|126.678 +638154.901|221424.439|126.797 +638159.506|221420.352|127.227 +638164.203|221416.185|127.894 +638173.594|221407.861|129.552 +638178.203|221403.767|129.549 +638182.790|221399.692|129.751 +638187.353|221395.638|129.818 +638191.903|221391.591|129.290 +638196.546|221387.473|129.546 +638201.139|221383.394|129.559 +638205.882|221379.191|130.135 +638224.673|221362.525|131.390 +638243.003|221346.224|129.174 +638266.421|221325.427|128.568 +638271.194|221321.194|128.748 +638285.368|221308.606|128.166 +638290.098|221304.405|128.147 +638294.890|221300.153|128.227 +638299.660|221295.917|128.187 +638304.430|221291.683|128.166 +638309.249|221287.404|128.169 +638314.025|221283.164|128.230 +638323.699|221274.578|128.230 +638328.500|221270.320|128.516 +638342.926|221257.506|127.995 +638347.940|221253.065|128.818 +638357.755|221244.363|129.784 +638362.732|221239.955|130.808 +638372.629|221231.183|131.823 +638392.237|221213.779|132.110 +638402.051|221205.068|132.064 +638421.638|221187.667|131.144 +638426.509|221183.342|130.955 +638431.458|221178.949|131.000 +638436.402|221174.560|131.034 +638441.361|221170.153|130.827 +638456.214|221156.970|130.887 +638461.228|221152.517|130.784 +638466.148|221148.149|130.738 +638471.238|221143.638|131.375 +638476.200|221139.231|131.332 +638481.135|221134.848|131.037 +638486.149|221130.398|131.061 +638491.138|221125.966|130.842 +638496.070|221121.586|130.589 +638501.099|221117.118|130.342 +638506.092|221112.686|130.208 +638511.048|221108.278|129.744 +638516.035|221103.850|129.610 +638556.076|221068.273|126.946 +638571.301|221054.761|127.279 +638576.422|221050.214|127.187 +638581.436|221045.761|127.044 +638586.498|221041.265|126.892 +638591.534|221036.787|126.416 +638596.569|221032.313|125.904 +638601.641|221027.805|125.267 +638606.676|221023.337|125.450 +638611.766|221018.813|125.081 +638616.811|221014.330|124.791 +638621.901|221009.806|124.429 +638627.003|221005.274|124.273 +638632.039|221000.800|123.853 +638642.152|220991.802|122.161 +638652.290|220982.786|120.817 +638662.363|220973.816|118.327 +638672.519|220964.787|117.184 +638682.757|220955.692|116.669 +638687.881|220951.145|116.973 +638693.032|220946.573|116.912 +638698.135|220942.043|116.830 +638703.267|220937.480|116.409 +638708.440|220932.893|116.842 +638713.533|220928.370|116.647 +638718.684|220923.798|116.669 +638723.829|220919.229|116.577 +638728.923|220914.706|116.403 +638734.071|220910.137|116.467 +638739.216|220905.568|116.416 +638744.315|220901.041|116.434 +638749.460|220896.475|116.425 +638754.605|220891.907|116.455 +638759.747|220887.341|116.422 +638764.892|220882.775|116.455 +638770.037|220878.209|116.550 +638775.176|220873.646|116.516 +638780.318|220869.080|116.486 +638785.460|220864.517|116.565 +638790.599|220859.954|116.477 +638795.738|220855.391|116.519 +638800.880|220850.829|116.559 +638806.019|220846.266|116.644 +638811.155|220841.706|116.489 +638816.294|220837.146|116.477 +638821.430|220832.583|116.480 +638826.617|220827.981|116.565 +638831.756|220823.418|116.586 +638836.895|220818.858|116.595 +638842.031|220814.298|116.608 +638847.170|220809.735|116.586 +638852.306|220805.176|116.525 +638857.445|220800.616|116.690 +638862.581|220796.053|116.480 +638867.717|220791.493|116.571 +638873.389|220786.461|116.534 +638877.988|220782.376|116.614 +638883.124|220777.814|116.467 +638888.263|220773.257|116.547 +638893.402|220768.694|116.477 +638898.538|220764.137|116.784 +638908.810|220755.024|117.193 +638913.949|220750.458|116.967 +638919.060|220745.901|115.184 +638924.214|220741.311|114.090 +638929.362|220736.736|113.733 +638934.453|220732.221|114.142 +638939.585|220727.674|114.849 +638949.818|220718.591|115.288 +638954.975|220713.997|114.532 +638965.216|220704.899|114.626 +638970.376|220700.312|114.145 +638980.627|220691.201|114.056 +638996.013|220677.525|113.169 +639006.224|220668.454|113.212 +639047.095|220632.149|113.657 +639057.269|220623.109|113.819 +639077.712|220604.937|112.788 +639082.805|220600.410|112.490 +639087.871|220595.912|112.721 +639113.191|220573.426|113.477 +639118.327|220568.864|113.477 +639123.316|220564.432|113.499 +639148.682|220541.898|113.608 +639153.757|220537.384|113.273 +639158.822|220532.882|113.112 +639163.910|220528.359|112.688 +639168.997|220523.832|112.310 +639174.062|220519.334|112.243 +639179.168|220514.792|111.722 +639199.495|220496.705|109.408 +639204.622|220492.145|108.844 +639250.363|220451.436|102.593 +639260.449|220442.466|101.532 +639265.466|220438.010|101.557 +639275.531|220429.058|100.880 +639280.590|220424.556|100.127 +639285.534|220420.167|100.444 +639290.472|220415.784|100.846 +639295.404|220411.404|100.898 +639300.363|220407.002|101.145 +639305.300|220402.613|101.154 +639310.220|220398.245|101.352 +639315.194|220393.829|101.535 +639320.059|220389.510|101.819 +639324.991|220385.124|101.959 +639329.886|220380.774|102.014 +639334.863|220376.345|101.840 +639344.626|220367.671|102.297 +639349.527|220363.315|102.379 +639354.392|220358.990|102.407 +639359.302|220354.625|102.471 +639364.133|220350.328|102.392 +639369.101|220345.908|102.066 +639373.981|220341.565|101.678 +639378.879|220337.206|101.541 +639383.744|220332.878|101.328 +639388.697|220328.464|100.484 +639393.656|220324.051|100.008 +639408.113|220311.197|99.947 +639412.764|220307.070|101.005 +639422.131|220298.765|102.727 +639436.042|220286.426|105.589 +639450.169|220273.871|106.436 +639454.869|220269.696|106.592 +639459.688|220265.410|106.348 +639464.321|220261.292|106.634 +639469.027|220257.107|106.814 +639473.761|220252.901|106.848 +639478.299|220248.872|107.451 +639482.966|220244.723|107.610 +639487.663|220240.548|107.607 +639492.162|220236.555|108.503 +639501.519|220228.237|108.500 +639506.195|220224.076|108.372 +639510.855|220219.931|108.082 +639515.540|220215.761|107.668 +639520.191|220211.619|107.451 +639524.830|220207.495|107.351 +639529.512|220203.328|107.031 +639543.469|220190.908|106.107 +639548.031|220186.848|105.958 +639552.600|220182.782|105.790 +639557.172|220178.713|105.644 +639561.723|220174.668|105.635 +639566.249|220170.645|105.763 +639570.846|220166.554|105.534 +639575.415|220162.485|105.199 +639579.914|220158.489|105.275 +639584.419|220154.481|105.309 +639588.917|220150.482|105.421 +639593.358|220146.532|105.555 +639597.821|220142.566|105.607 +639602.298|220138.586|105.610 +639606.764|220134.614|105.677 +639611.214|220130.658|105.589 +639615.728|220126.641|105.440 +639620.202|220122.660|105.269 +639624.704|220118.652|104.970 +639629.124|220114.720|104.839 +639633.592|220110.745|104.498 +639646.805|220098.989|104.242 +639651.237|220095.048|104.156 +639655.596|220091.171|104.181 +639659.963|220087.288|104.187 +639664.285|220083.444|104.169 +639668.675|220079.537|104.092 +639673.024|220075.669|103.986 +639677.358|220071.813|103.958 +639677.325|220069.183|103.925 +639672.920|220073.084|103.983 +639668.534|220076.973|103.992 +639664.078|220080.920|104.080 +639659.692|220084.810|104.120 +639655.254|220088.739|104.153 +639650.883|220092.610|103.897 +639646.391|220096.593|104.242 +639637.518|220104.457|104.202 +639632.973|220108.487|104.605 +639628.493|220112.461|104.720 +639623.997|220116.445|104.918 +639619.443|220120.484|105.178 +639614.905|220124.507|105.373 +639610.436|220128.466|105.510 +639605.922|220132.465|105.620 +639601.402|220136.473|105.528 +639596.879|220140.479|105.458 +639592.371|220144.474|105.345 +639587.909|220148.425|105.260 +639583.398|220152.421|105.190 +639578.835|220156.465|105.135 +639574.269|220160.510|105.110 +639569.627|220164.625|105.513 +639565.088|220168.651|105.671 +639560.559|220172.659|105.507 +639555.990|220176.710|105.583 +639551.378|220180.798|105.635 +639546.751|220184.900|105.790 +639542.176|220188.960|105.970 +639537.528|220193.084|106.287 +639532.837|220197.248|106.595 +639528.177|220201.381|106.729 +639518.865|220209.644|107.339 +639514.199|220213.783|107.582 +639509.453|220217.998|108.037 +639504.786|220222.138|108.326 +639500.150|220226.249|108.469 +639495.395|220230.471|108.750 +639486.203|220238.609|107.732 +639481.521|220242.757|107.607 +639476.864|220246.884|107.363 +639472.255|220250.963|106.811 +639467.561|220255.126|106.827 +639462.849|220259.302|106.644 +639458.158|220263.459|106.366 +639453.403|220267.675|106.491 +639448.636|220271.899|106.400 +639443.936|220276.066|106.226 +639434.445|220284.475|105.525 +639420.503|220296.802|102.739 +639415.846|220300.919|101.660 +639411.115|220305.107|101.084 +639406.424|220309.256|100.252 +639386.993|220326.486|100.386 +639382.019|220330.906|100.987 +639377.133|220335.243|101.322 +639372.152|220339.660|101.630 +639367.282|220343.985|101.913 +639362.304|220348.401|102.261 +639357.412|220352.742|102.376 +639352.496|220357.097|102.294 +639347.582|220361.456|102.245 +639342.675|220365.802|102.145 +639332.781|220374.572|101.852 +639327.825|220378.967|101.825 +639322.863|220383.365|101.840 +639317.889|220387.775|101.596 +639312.963|220392.137|101.352 +639307.983|220396.554|101.194 +639303.008|220400.961|100.987 +639297.970|220405.430|100.941 +639293.035|220409.803|100.886 +639287.960|220414.302|100.749 +639283.001|220418.697|100.511 +639278.036|220423.093|99.871 +639242.259|220454.859|103.501 +639221.645|220473.178|106.689 +639216.509|220477.734|107.128 +639195.807|220496.126|110.067 +639175.172|220514.454|112.423 +639169.990|220519.050|112.648 +639164.870|220523.595|112.767 +639154.503|220532.797|113.413 +639149.383|220537.341|113.642 +639144.210|220541.931|113.922 +639108.107|220573.957|113.910 +639097.765|220583.125|113.477 +639087.453|220592.269|113.364 +639082.287|220596.850|113.176 +639077.154|220601.404|113.209 +639071.921|220606.049|113.383 +639066.785|220610.606|113.566 +639061.591|220615.215|113.944 +639056.358|220619.863|114.251 +639051.228|220624.414|114.392 +639040.846|220633.622|114.358 +639035.698|220638.184|113.995 +639004.648|220665.717|113.453 +638994.233|220674.956|113.459 +638989.070|220679.540|113.715 +638983.861|220684.164|113.922 +638978.685|220688.760|114.669 +638952.765|220711.766|115.754 +638947.568|220716.375|115.815 +638942.429|220720.929|115.355 +638937.239|220725.528|115.059 +638932.100|220730.079|114.568 +638926.961|220734.636|114.108 +638921.761|220739.247|114.386 +638916.607|220743.831|115.306 +638911.446|220748.428|117.013 +638906.256|220753.033|117.059 +638895.975|220762.150|116.961 +638890.787|220766.746|116.477 +638885.648|220771.303|116.449 +638880.506|220775.866|116.492 +638875.318|220780.468|116.504 +638870.182|220785.022|116.528 +638865.040|220789.582|116.452 +638859.901|220794.142|116.589 +638854.759|220798.702|116.437 +638849.621|220803.261|116.656 +638844.433|220807.864|116.595 +638839.340|220812.378|116.470 +638834.201|220816.938|116.595 +638829.013|220821.540|116.690 +638823.920|220826.057|116.559 +638818.778|220830.617|116.629 +638813.639|220835.177|116.605 +638808.546|220839.694|116.537 +638798.262|220848.814|116.571 +638793.168|220853.331|116.577 +638788.075|220857.848|116.598 +638782.930|220862.411|116.495 +638777.840|220866.928|116.632 +638772.744|220871.448|116.519 +638767.647|220875.965|116.522 +638762.551|220880.489|116.452 +638757.452|220885.009|116.373 +638752.356|220889.529|116.419 +638747.256|220894.052|116.355 +638742.209|220898.530|116.434 +638737.109|220903.053|116.443 +638732.010|220907.576|116.437 +638726.957|220912.057|116.428 +638721.854|220916.580|116.461 +638716.810|220921.058|116.662 +638711.707|220925.584|116.672 +638691.438|220943.564|116.836 +638686.375|220948.054|116.784 +638681.331|220952.531|117.104 +638676.280|220957.012|117.299 +638671.221|220961.502|117.309 +638666.176|220965.979|117.656 +638661.120|220970.466|117.775 +638641.143|220988.230|121.640 +638636.199|220992.625|122.783 +638631.185|220997.084|123.539 +638621.139|221005.999|124.124 +638616.122|221010.450|124.145 +638611.126|221014.884|124.511 +638606.124|221019.322|124.773 +638581.201|221041.451|126.797 +638576.236|221045.858|126.956 +638571.203|221050.321|126.946 +638566.220|221054.740|126.962 +638511.584|221103.228|129.647 +638501.718|221111.985|130.098 +638496.741|221116.401|130.406 +638491.879|221120.720|130.894 +638481.973|221129.508|131.083 +638477.011|221133.909|131.131 +638472.128|221138.243|131.461 +638467.224|221142.596|131.616 +638462.201|221147.043|130.732 +638437.625|221168.839|131.073 +638432.757|221173.161|131.259 +638427.798|221177.557|131.131 +638422.955|221181.854|131.144 +638408.385|221194.781|132.198 +638398.634|221203.422|132.305 +638393.776|221207.726|132.335 +638388.942|221212.014|132.555 +638359.565|221238.029|130.497 +638354.621|221242.400|129.748 +638344.855|221251.044|128.824 +638325.555|221268.146|128.541 +638315.963|221276.647|128.416 +638311.181|221280.884|128.312 +638306.405|221285.115|128.278 +638301.641|221289.339|128.333 +638296.907|221293.533|128.272 +638292.128|221297.770|128.275 +638287.385|221301.970|128.202 +638282.722|221306.109|128.650 +638273.364|221314.406|129.092 +638268.664|221318.569|129.056 +638259.191|221326.964|128.894 +638254.607|221331.033|129.303 +638249.855|221335.245|129.330 +638245.170|221339.393|129.181 +638240.568|221343.475|129.528 +638208.213|221372.160|130.461 +638203.471|221376.357|129.869 +638198.853|221380.447|129.720 +638194.214|221384.556|129.476 +638189.745|221388.521|129.894 +638185.149|221392.593|129.921 +638180.525|221396.690|129.799 +638175.950|221400.744|129.699 +638166.696|221408.931|128.760 +638161.948|221413.128|127.550 +638157.321|221417.224|127.273 +638152.782|221421.242|126.940 +638148.262|221425.247|126.721 +638143.681|221429.304|126.480 +638139.179|221433.290|126.410 +638134.598|221437.344|125.934 +638103.112|221465.227|124.139 +638094.069|221473.228|123.164 +638089.743|221477.063|123.392 +638085.315|221480.986|123.136 +638080.916|221484.881|123.051 +638076.604|221488.706|123.380 +638072.251|221492.565|123.539 +638067.938|221496.387|123.655 +638059.334|221504.010|124.017 +638042.021|221519.332|123.298 +638037.720|221523.136|123.115 +638033.462|221526.904|122.893 +638029.146|221530.726|122.670 +638024.842|221534.530|122.295 +638020.593|221538.291|122.173 +638016.317|221542.077|121.942 +638007.798|221549.608|121.244 +638003.625|221553.299|121.067 +637999.334|221557.097|120.613 +637995.127|221560.819|120.326 +637986.687|221568.280|119.467 +637978.388|221575.623|119.037 +637974.187|221579.339|118.644 +637961.837|221590.266|117.912 +637957.451|221594.131|116.403 +637953.190|221597.892|115.425 +637949.166|221601.455|115.410 +637945.134|221605.024|115.382 +637941.248|221608.468|115.730 +637933.311|221615.491|115.611 +637929.306|221619.036|115.306 +637925.215|221622.651|114.696 +637912.721|221633.672|111.487 +637892.745|221651.323|108.527 +637888.895|221654.728|108.165 +637881.440|221661.330|108.402 +637877.587|221664.735|108.070 +637862.152|221678.371|105.781 +638054.606|221505.933|123.697 +638058.913|221502.108|123.758 +638063.211|221498.283|123.557 +638071.858|221490.593|123.197 +638076.168|221486.761|123.097 +638080.493|221482.915|122.841 +638084.946|221478.959|122.941 +638089.350|221475.045|123.091 +638093.706|221471.174|123.018 +638098.263|221467.132|123.679 +638102.774|221463.127|124.145 +638111.878|221455.047|125.035 +638125.253|221443.160|124.901 +638129.825|221439.100|125.288 +638134.482|221434.970|126.126 +638139.063|221430.901|126.343 +638143.571|221426.896|126.477 +638148.146|221422.833|126.700 +638152.715|221418.776|126.922 +638157.303|221414.704|127.251 +638161.987|221410.543|127.574 +638166.791|221406.288|128.830 +638171.518|221402.097|129.702 +638176.075|221398.049|129.699 +638180.687|221393.950|129.735 +638185.305|221389.847|129.836 +638189.870|221385.787|129.674 +638194.491|221381.675|129.552 +638199.173|221377.518|129.763 +638203.812|221373.394|129.778 +638208.546|221369.191|130.351 +638241.126|221340.223|129.726 +638245.753|221336.105|129.239 +638250.532|221331.859|129.382 +638255.232|221327.677|129.385 +638259.895|221323.532|129.168 +638264.641|221319.313|129.171 +638269.384|221315.095|129.181 +638274.184|221310.831|129.251 +638278.878|221306.655|128.995 +638283.563|221302.485|128.693 +638288.272|221298.294|128.254 +638293.055|221294.042|128.281 +638297.831|221289.796|128.300 +638302.659|221285.508|128.336 +638307.426|221281.268|128.345 +638312.242|221276.986|128.355 +638321.907|221268.399|128.644 +638326.763|221264.083|128.662 +638331.584|221259.798|128.797 +638341.308|221251.160|128.992 +638346.145|221246.856|128.970 +638351.052|221242.500|129.449 +638356.042|221238.075|130.189 +638365.929|221229.303|131.467 +638375.787|221220.549|132.308 +638390.484|221207.485|132.341 +638395.388|221203.126|132.314 +638400.229|221198.822|132.210 +638414.914|221185.762|131.683 +638424.750|221177.014|131.284 +638429.627|221172.677|131.174 +638434.616|221168.245|131.177 +638439.527|221163.877|130.979 +638459.314|221146.284|130.775 +638464.420|221141.758|131.512 +638469.370|221137.353|131.345 +638474.350|221132.928|131.500 +638479.269|221128.551|131.076 +638484.259|221124.113|130.878 +638489.282|221119.650|131.022 +638494.208|221115.267|130.723 +638499.191|221110.830|130.025 +638504.135|221106.434|129.915 +638509.158|221101.969|129.647 +638514.126|221097.549|129.330 +638529.089|221084.233|128.062 +638534.057|221079.807|127.263 +638539.090|221075.332|127.187 +638544.128|221070.855|127.169 +638549.200|221066.344|127.029 +638554.214|221061.885|126.782 +638559.231|221057.425|126.593 +638564.275|221052.948|126.724 +638569.350|221048.437|126.700 +638574.437|221043.920|126.824 +638584.532|221034.946|126.133 +638589.519|221030.509|125.660 +638594.621|221025.976|125.416 +638604.674|221017.030|124.273 +638609.776|221012.498|124.045 +638619.944|221003.461|123.898 +638624.989|220998.974|123.624 +638635.135|220989.949|122.451 +638640.177|220985.456|121.387 +638645.246|220980.945|120.732 +638660.403|220967.448|117.821 +638665.512|220962.910|117.815 +638670.663|220958.332|117.714 +638675.756|220953.805|117.467 +638680.859|220949.273|117.388 +638685.976|220944.716|116.687 +638691.085|220940.181|116.757 +638696.239|220935.603|116.806 +638701.405|220931.015|117.117 +638706.477|220926.504|116.470 +638711.625|220921.929|116.489 +638716.776|220917.354|116.501 +638721.869|220912.828|116.428 +638727.018|220908.256|116.434 +638732.163|220903.684|116.416 +638737.311|220899.112|116.449 +638742.453|220894.543|116.425 +638747.595|220889.974|116.419 +638752.740|220885.405|116.416 +638757.882|220880.836|116.440 +638763.024|220876.270|116.480 +638768.169|220871.701|116.601 +638773.308|220867.135|116.605 +638778.450|220862.569|116.705 +638783.585|220858.004|116.611 +638788.773|220853.395|116.662 +638793.912|220848.832|116.608 +638799.051|220844.266|116.723 +638804.187|220839.703|116.708 +638809.372|220835.098|116.614 +638814.459|220830.578|116.531 +638819.643|220825.972|116.647 +638824.779|220821.409|116.589 +638829.915|220816.846|116.550 +638835.100|220812.241|116.605 +638840.236|220807.678|116.498 +638845.372|220803.115|116.510 +638850.556|220798.510|116.574 +638855.692|220793.947|116.437 +638860.828|220789.387|116.598 +638865.964|220784.821|116.455 +638871.097|220780.264|116.537 +638876.233|220775.701|116.556 +638881.417|220771.096|116.522 +638886.504|220766.576|116.541 +638891.640|220762.016|116.669 +638896.822|220757.413|116.833 +638907.042|220748.342|117.549 +638912.239|220743.712|116.327 +638917.341|220739.165|115.166 +638922.492|220734.584|114.477 +638927.631|220730.021|114.636 +638932.715|220725.510|115.236 +638937.848|220720.956|115.660 +638942.984|220716.402|116.074 +638948.123|220711.843|116.266 +638953.286|220707.246|115.327 +638958.386|220702.717|115.172 +638963.531|220698.151|115.257 +638984.016|220679.945|113.816 +638999.336|220666.342|113.636 +639004.438|220661.813|113.733 +639009.531|220657.295|114.123 +639050.201|220621.198|114.779 +639055.282|220616.684|114.507 +639060.415|220612.121|114.200 +639065.450|220607.649|113.938 +639070.531|220603.132|113.761 +639090.788|220585.152|113.828 +639131.116|220549.350|114.108 +639136.151|220544.879|114.221 +639141.156|220540.435|114.117 +639151.236|220531.483|113.730 +639176.388|220509.135|112.331 +639181.506|220504.584|111.703 +639196.633|220491.130|109.807 +639201.684|220486.647|109.576 +639206.765|220482.120|108.439 +639232.066|220459.617|104.757 +639237.156|220455.085|103.830 +639242.195|220450.607|103.501 +639247.199|220446.157|103.010 +639252.256|220441.661|102.559 +639262.266|220432.767|101.813 +639267.249|220428.341|101.697 +639277.369|220419.338|100.112 +639287.208|220410.611|100.804 +639292.194|220406.185|100.791 +639297.117|220401.815|100.923 +639302.054|220397.432|100.935 +639306.980|220393.061|101.096 +639311.966|220388.635|101.188 +639316.828|220384.322|101.489 +639321.757|220379.951|101.694 +639326.664|220375.593|101.660 +639331.623|220371.191|101.645 +639336.515|220366.854|101.809 +639341.453|220362.471|102.008 +639346.293|220358.176|102.191 +639351.210|220353.812|102.206 +639356.126|220349.450|102.255 +639361.021|220345.103|102.096 +639365.983|220340.693|101.825 +639370.915|220336.313|101.456 +639375.886|220331.896|101.169 +639380.790|220327.538|100.682 +639385.759|220323.121|100.121 +639390.791|220318.644|99.130 +639400.560|220309.969|99.008 +639405.138|220305.927|100.615 +639409.948|220301.663|101.288 +639414.660|220297.490|101.971 +639419.400|220293.293|102.803 +639433.454|220280.845|105.424 +639438.178|220276.660|106.061 +639442.948|220272.427|106.068 +639447.786|220268.135|106.318 +639452.522|220263.932|106.263 +639457.268|220259.720|106.485 +639462.081|220255.452|106.638 +639466.781|220251.283|106.860 +639471.523|220247.070|106.842 +639476.233|220242.901|107.381 +639480.924|220238.737|107.406 +639494.886|220226.353|108.561 +639499.583|220222.186|108.622 +639504.351|220217.950|108.280 +639509.112|220213.722|108.018 +639513.866|220209.495|107.506 +639523.303|220201.113|106.994 +639528.024|220196.915|106.464 +639532.703|220192.758|106.193 +639537.376|220188.610|105.985 +639542.106|220184.406|105.763 +639546.727|220180.304|105.610 +639551.357|220176.192|105.424 +639555.959|220172.108|105.400 +639560.550|220168.033|105.476 +639569.697|220159.916|105.574 +639574.278|220155.847|105.199 +639578.862|220151.774|105.092 +639583.379|220147.763|105.095 +639587.948|220143.709|105.120 +639592.407|220139.750|105.193 +639596.906|220135.760|105.345 +639610.327|220123.849|105.495 +639614.807|220119.871|105.293 +639619.303|220115.878|105.025 +639623.793|220111.888|104.803 +639628.221|220107.953|104.650 +639632.665|220104.009|104.446 +639650.256|220088.391|104.193 +639663.331|220076.781|104.117 +639667.669|220072.932|104.065 +639672.012|220069.073|104.001 +639676.304|220065.260|103.940 +639675.676|220063.492|103.794 +639671.250|220067.415|103.958 +639666.824|220071.335|103.891 +639662.323|220075.324|103.952 +639657.997|220079.153|103.449 +639648.866|220087.248|104.016 +639639.959|220095.139|103.849 +639635.369|220099.209|104.190 +639630.818|220103.244|104.373 +639626.234|220107.310|104.486 +639621.638|220111.382|104.665 +639617.026|220115.473|104.958 +639612.424|220119.554|105.217 +639607.855|220123.605|105.330 +639603.261|220127.674|105.333 +639598.650|220131.758|105.171 +639594.084|220135.803|105.062 +639589.530|220139.835|104.906 +639584.922|220143.917|104.775 +639580.264|220148.047|104.931 +639575.625|220152.158|105.007 +639570.940|220156.316|105.360 +639556.929|220168.727|105.168 +639552.259|220172.864|105.232 +639547.599|220176.997|105.281 +639542.877|220181.179|105.391 +639538.135|220185.382|105.629 +639533.392|220189.585|105.918 +639528.671|220193.767|106.089 +639523.867|220198.025|106.464 +639519.088|220202.262|106.735 +639514.284|220206.520|107.162 +639504.631|220215.078|108.070 +639499.852|220219.318|108.445 +639495.109|220223.518|108.616 +639480.997|220236.006|107.656 +639476.339|220240.121|107.070 +639471.624|220244.297|106.866 +639466.836|220248.536|106.823 +639462.075|220252.752|106.622 +639457.405|220256.882|106.180 +639452.598|220261.137|106.293 +639447.792|220265.392|106.129 +639443.086|220269.559|105.976 +639438.288|220273.804|105.772 +639428.854|220282.147|104.699 +639419.464|220290.443|103.020 +639414.773|220294.586|102.163 +639409.999|220298.804|101.526 +639405.303|220302.956|100.737 +639400.633|220307.080|99.764 +639386.079|220319.966|99.694 +639381.150|220324.340|100.304 +639376.234|220328.699|100.837 +639371.354|220333.027|101.142 +639366.419|220337.401|101.508 +639361.487|220341.772|101.858 +639356.629|220346.076|102.075 +639351.755|220350.395|102.069 +639346.836|220354.750|102.032 +639341.980|220359.048|101.898 +639337.158|220363.315|101.544 +639332.257|220367.656|101.425 +639327.341|220372.008|101.447 +639322.485|220376.309|101.410 +639317.523|220380.701|101.432 +639312.664|220385.002|101.057 +639307.785|220389.318|100.852 +639302.844|220393.695|100.773 +639297.900|220398.072|100.749 +639293.008|220402.406|100.734 +639288.064|220406.783|100.740 +639283.120|220411.157|100.331 +639278.286|220415.427|99.383 +639273.144|220419.999|100.859 +639258.139|220433.300|102.026 +639253.073|220437.790|102.440 +639248.044|220442.252|103.044 +639243.008|220446.715|103.266 +639232.862|220455.716|104.547 +639217.564|220469.294|107.131 +639207.362|220478.347|108.433 +639197.160|220487.400|109.908 +639192.128|220491.862|110.475 +639181.887|220500.945|111.533 +639171.712|220509.967|112.542 +639166.616|220514.487|112.926 +639151.315|220528.051|113.834 +639146.192|220532.589|114.044 +639141.138|220537.067|114.072 +639136.020|220541.602|114.288 +639130.912|220546.129|114.413 +639100.215|220573.317|114.297 +639084.796|220586.969|113.745 +639079.657|220591.522|113.867 +639074.530|220596.061|113.806 +639069.345|220600.654|113.934 +639064.164|220605.248|114.099 +639058.973|220609.847|114.395 +639053.788|220614.447|114.693 +639048.655|220618.994|114.898 +639043.425|220623.627|115.154 +639027.880|220637.398|115.184 +638996.824|220664.891|113.630 +638986.439|220674.093|114.206 +638955.197|220701.781|115.455 +638949.952|220706.426|115.419 +638944.743|220711.047|115.952 +638939.543|220715.659|116.278 +638934.306|220720.292|115.861 +638929.119|220724.882|115.373 +638923.928|220729.472|114.895 +638918.731|220734.075|115.026 +638913.482|220738.735|115.718 +638908.276|220743.359|116.918 +638903.083|220747.967|117.479 +638892.655|220757.197|116.982 +638887.468|220761.784|116.443 +638882.231|220766.426|116.446 +638877.040|220771.023|116.513 +638871.850|220775.622|116.507 +638866.616|220780.255|116.449 +638861.425|220784.854|116.449 +638856.235|220789.451|116.467 +638851.044|220794.050|116.562 +638845.807|220798.689|116.608 +638840.665|220803.243|116.483 +638835.475|220807.839|116.580 +638830.238|220812.482|116.595 +638825.096|220817.035|116.754 +638819.902|220821.632|116.544 +638814.715|220826.231|116.656 +638809.573|220830.785|116.641 +638804.382|220835.381|116.681 +638799.191|220839.981|116.705 +638794.046|220844.537|116.568 +638788.852|220849.137|116.473 +638783.713|220853.694|116.571 +638778.568|220858.253|116.519 +638773.378|220862.856|116.528 +638768.236|220867.416|116.589 +638763.088|220871.976|116.464 +638757.940|220876.538|116.452 +638752.795|220881.098|116.440 +638747.695|220885.618|116.412 +638742.547|220890.181|116.425 +638737.402|220894.744|116.437 +638732.303|220899.264|116.461 +638727.152|220903.827|116.455 +638722.052|220908.347|116.534 +638716.947|220912.871|116.486 +638711.851|220917.391|116.638 +638706.739|220921.920|116.437 +638691.499|220935.438|117.080 +638681.398|220944.393|117.467 +638676.332|220948.883|117.388 +638671.245|220953.397|117.830 +638666.222|220957.847|117.668 +638661.171|220962.325|117.888 +638656.173|220966.759|118.196 +638651.110|220971.249|118.250 +638641.180|220980.079|120.725 +638636.156|220984.538|121.442 +638631.258|220988.894|122.533 +638626.247|220993.344|123.353 +638621.288|220997.742|123.533 +638606.240|221011.084|123.752 +638601.217|221015.534|123.780 +638591.305|221024.336|124.962 +638586.361|221028.722|125.425 +638571.459|221041.942|126.575 +638566.473|221046.361|126.526 +638561.480|221050.787|126.428 +638556.475|221055.219|126.227 +638551.547|221059.590|126.383 +638541.668|221068.353|127.023 +638536.670|221072.784|126.953 +638521.942|221085.857|128.748 +638516.995|221090.240|128.803 +638507.223|221098.915|129.674 +638502.276|221103.298|129.784 +638497.341|221107.678|129.994 +638492.510|221111.966|130.799 +638487.627|221116.298|131.073 +638482.683|221120.684|131.247 +638477.770|221125.039|131.272 +638472.850|221129.398|131.278 +638467.986|221133.708|131.351 +638463.100|221138.045|131.671 +638458.183|221142.404|131.759 +638453.148|221146.854|130.802 +638438.484|221159.857|131.128 +638428.727|221168.507|131.329 +638423.866|221172.817|131.601 +638399.598|221194.342|132.283 +638394.751|221198.640|132.378 +638370.550|221220.098|132.256 +638355.831|221233.128|130.574 +638346.047|221241.790|129.470 +638341.222|221246.067|129.248 +638336.403|221250.337|129.104 +638331.581|221254.610|128.955 +638326.772|221258.877|128.897 +638322.002|221263.105|128.812 +638307.606|221275.864|128.428 +638302.839|221280.091|128.443 +638298.075|221284.316|128.507 +638293.280|221288.568|128.373 +638288.544|221292.765|128.327 +638283.859|221296.923|128.617 +638279.195|221301.062|129.065 +638269.777|221309.419|129.427 +638265.071|221313.589|129.345 +638260.337|221317.786|129.431 +638255.665|221321.931|129.589 +638250.946|221326.113|129.491 +638246.277|221330.256|129.400 +638241.626|221334.379|129.446 +638227.925|221346.547|131.140 +638209.247|221363.098|130.406 +638204.528|221367.277|129.936 +638199.898|221371.382|129.976 +638195.354|221375.412|129.943 +638190.617|221379.606|129.449 +638186.082|221383.629|129.778 +638181.519|221387.674|129.705 +638176.910|221391.761|129.671 +638172.351|221395.803|129.662 +638158.241|221408.284|127.215 +638153.657|221412.347|126.892 +638149.067|221416.414|126.565 +638144.537|221420.428|126.565 +638139.965|221424.482|126.367 +638135.439|221428.490|126.169 +638126.249|221436.628|125.133 +638112.832|221448.521|125.057 +638094.779|221464.508|123.335 +638072.729|221484.052|122.786 +638068.429|221487.865|122.954 +638064.140|221491.672|123.176 +638059.830|221495.494|123.322 +638055.560|221499.280|123.423 +638046.943|221506.921|123.325 +638038.260|221514.614|122.752 +638033.928|221518.455|122.667 +638025.397|221526.017|122.417 +638012.556|221537.395|121.634 +638008.343|221541.126|121.478 +638004.091|221544.896|121.381 +637999.824|221548.673|120.799 +637995.594|221552.422|120.616 +637991.351|221556.180|120.177 +637982.960|221563.614|119.506 +637953.796|221589.443|116.952 +637949.547|221593.195|115.806 +637945.439|221596.834|115.443 +637941.449|221600.373|115.364 +637937.578|221603.811|115.772 +637925.602|221614.421|115.218 +637917.437|221621.645|113.864 +637913.364|221625.248|113.157 +637909.378|221628.777|112.785 +637889.054|221646.751|108.472 +637885.262|221650.110|108.335 +637881.510|221653.439|108.552 +637877.712|221656.804|108.415 +637858.485|221673.821|105.812 +638049.199|221502.404|122.996 +638062.077|221490.965|123.002 +638070.608|221483.381|122.588 +638074.906|221479.562|122.429 +638079.283|221475.676|122.411 +638088.043|221467.894|122.460 +638092.535|221463.911|123.045 +638097.074|221459.887|123.627 +638101.585|221455.885|124.097 +638106.111|221451.871|124.676 +638110.613|221447.875|124.895 +638123.960|221436.018|124.892 +638128.615|221431.894|125.685 +638133.181|221427.844|126.075 +638137.692|221423.838|126.203 +638142.221|221419.818|126.437 +638146.787|221415.764|126.636 +638151.338|221411.726|126.757 +638155.964|221407.620|127.303 +638160.710|221403.420|128.492 +638169.988|221395.193|129.568 +638174.603|221391.094|129.613 +638179.151|221387.055|129.589 +638183.692|221383.020|129.546 +638188.340|221378.893|129.540 +638192.979|221374.778|129.790 +638197.591|221370.684|129.918 +638202.236|221366.563|129.949 +638206.866|221362.452|129.933 +638211.652|221358.209|130.519 +638234.984|221337.498|130.711 +638239.553|221333.428|129.574 +638244.235|221329.274|129.714 +638248.916|221325.117|129.583 +638253.699|221320.871|129.760 +638258.417|221316.680|129.580 +638263.096|221312.525|129.482 +638267.896|221308.264|129.519 +638272.627|221304.064|129.464 +638277.324|221299.891|129.223 +638282.036|221295.703|128.766 +638286.764|221291.503|128.431 +638291.537|221287.263|128.412 +638296.322|221283.018|128.473 +638301.101|221278.778|128.513 +638305.935|221274.486|128.623 +638310.690|221270.265|128.553 +638320.346|221261.694|128.787 +638325.178|221257.408|128.958 +638330.030|221253.098|128.967 +638334.892|221248.785|129.034 +638339.765|221244.460|129.232 +638344.627|221240.144|129.367 +638349.534|221235.795|129.839 +638364.408|221222.609|131.476 +638369.310|221218.266|132.027 +638398.769|221192.117|132.232 +638423.299|221170.330|131.332 +638428.231|221165.950|131.250 +638438.094|221157.193|131.153 +638447.979|221148.415|130.906 +638452.990|221143.977|131.619 +638457.973|221139.551|131.717 +638462.908|221135.168|131.366 +638467.867|221130.764|131.284 +638472.826|221126.362|131.192 +638477.803|221121.946|131.299 +638482.753|221117.550|131.177 +638487.697|221113.158|131.025 +638492.669|221108.742|130.671 +638497.594|221104.359|129.894 +638502.587|221099.927|129.754 +638507.521|221095.544|129.555 +638517.498|221086.677|128.821 +638532.433|221073.400|127.209 +638552.537|221055.539|126.035 +638562.669|221046.544|126.206 +638567.717|221042.064|126.410 +638572.743|221037.592|125.782 +638577.748|221033.145|125.486 +638582.807|221028.646|125.313 +638587.827|221024.181|124.593 +638592.860|221019.706|124.057 +638597.904|221015.223|123.676 +638602.964|221010.727|123.542 +638608.033|221006.225|123.530 +638618.210|220997.185|123.475 +638623.312|220992.652|123.280 +638628.323|220988.193|122.487 +638653.573|220965.720|118.324 +638658.660|220961.200|117.909 +638668.859|220952.138|117.571 +638679.152|220942.994|117.174 +638684.260|220938.459|117.211 +638689.405|220933.887|117.074 +638694.514|220929.351|117.181 +638704.779|220920.226|116.400 +638709.940|220915.644|116.626 +638715.082|220911.075|116.467 +638720.230|220906.506|116.434 +638725.378|220901.934|116.437 +638730.523|220897.366|116.403 +638735.720|220892.751|116.467 +638740.865|220888.182|116.467 +638746.007|220883.613|116.409 +638751.152|220879.047|116.434 +638756.294|220874.478|116.428 +638761.487|220869.866|116.562 +638766.632|220865.300|116.711 +638771.774|220860.735|116.711 +638776.959|220856.129|116.611 +638782.150|220851.520|116.623 +638787.237|220847.000|116.574 +638792.428|220842.395|116.693 +638797.612|220837.789|116.592 +638802.754|220833.223|116.726 +638807.939|220828.621|116.650 +638813.124|220824.015|116.577 +638818.260|220819.452|116.544 +638823.447|220814.847|116.772 +638828.632|220810.241|116.629 +638833.768|220805.681|116.595 +638838.956|220801.076|116.611 +638844.140|220796.470|116.553 +638849.276|220791.908|116.489 +638854.461|220787.305|116.537 +638859.645|220782.700|116.531 +638864.833|220778.094|116.455 +638869.966|220773.534|116.455 +638875.199|220768.889|116.486 +638880.335|220764.326|116.473 +638885.520|220759.721|116.525 +638890.705|220755.127|117.077 +638900.976|220746.008|117.427 +638906.164|220741.399|117.211 +638911.312|220736.815|116.132 +638916.460|220732.237|115.510 +638921.651|220727.625|115.370 +638926.787|220723.068|115.766 +638931.923|220718.515|116.211 +638937.110|220713.906|116.284 +638942.216|220709.361|115.605 +638947.364|220704.789|115.504 +638952.546|220700.190|115.952 +638983.425|220672.737|114.361 +638998.790|220659.085|114.194 +639003.935|220654.519|114.504 +639019.279|220640.897|115.254 +639024.375|220636.371|115.544 +639029.483|220631.832|115.568 +639034.595|220627.291|115.541 +639039.661|220622.789|115.483 +639044.781|220618.241|115.385 +639049.859|220613.727|115.148 +639054.937|220609.210|114.892 +639060.073|220604.647|114.584 +639065.160|220600.121|114.267 +639070.238|220595.610|114.184 +639075.313|220591.102|114.215 +639080.339|220586.637|114.221 +639105.522|220564.270|114.645 +639120.597|220550.874|114.520 +639125.633|220546.403|114.611 +639140.699|220533.013|114.224 +639145.713|220528.557|114.044 +639150.709|220524.119|114.145 +639160.782|220515.161|113.328 +639165.818|220510.683|113.008 +639170.795|220506.258|112.819 +639180.927|220497.245|111.609 +639236.266|220447.992|104.089 +639241.277|220443.536|103.559 +639246.273|220439.092|103.181 +639251.275|220434.645|102.812 +639256.261|220430.207|102.120 +639276.247|220412.425|99.883 +639286.028|220403.744|100.642 +639290.960|220399.364|100.706 +639295.849|220395.021|100.703 +639300.789|220390.631|100.715 +639305.730|220386.239|100.737 +639310.598|220381.917|100.990 +639315.520|220377.549|101.230 +639320.373|220373.240|101.243 +639325.335|220368.832|101.200 +639330.233|220364.483|101.273 +639335.156|220360.109|101.200 +639339.999|220355.814|101.755 +639344.851|220351.504|101.867 +639349.750|220347.155|102.035 +639354.632|220342.820|101.974 +639359.582|220338.419|101.767 +639364.450|220334.094|101.489 +639369.391|220329.696|101.032 +639374.323|220325.316|100.709 +639379.279|220320.905|100.209 +639384.226|220316.504|99.447 +639398.697|220303.660|100.368 +639403.465|220299.432|100.971 +639408.216|220295.220|101.709 +639412.941|220291.032|102.297 +639417.711|220286.801|102.931 +639422.414|220282.631|103.675 +639427.126|220278.456|104.376 +639436.621|220270.031|105.336 +639446.124|220261.597|105.967 +639450.888|220257.367|106.077 +639455.634|220253.157|106.619 +639460.353|220248.966|106.726 +639465.120|220244.733|106.857 +639469.923|220240.465|106.784 +639474.639|220236.283|107.284 +639488.723|220223.784|108.290 +639502.948|220211.147|108.024 +639512.534|220202.621|107.153 +639517.359|220198.330|106.580 +639522.096|220194.117|106.235 +639531.554|220185.711|105.717 +639536.239|220181.544|105.455 +639540.920|220177.384|105.232 +639545.596|220173.229|105.071 +639554.914|220164.951|104.989 +639559.477|220160.900|105.217 +639564.049|220156.843|105.424 +639573.287|220148.638|105.370 +639577.911|220144.523|105.062 +639582.480|220140.463|104.800 +639587.067|220136.388|104.745 +639591.636|220132.328|104.797 +639596.184|220128.293|104.976 +639600.628|220124.345|105.171 +639605.136|220120.343|105.324 +639609.647|220116.335|105.223 +639618.776|220108.221|104.784 +639623.329|220104.174|104.525 +639627.822|220100.181|104.330 +639632.327|220096.173|104.086 +639636.750|220092.244|104.019 +639641.243|220088.254|103.882 +639645.644|220084.343|103.955 +639658.872|220072.587|103.647 +639663.207|220068.741|103.852 +639667.580|220064.858|103.894 +639671.982|220060.950|103.824 +639673.783|220057.131|103.638 +639669.412|220061.002|103.785 +639665.084|220064.836|103.766 +639660.738|220068.683|103.593 +639656.318|220072.599|103.775 +639643.084|220084.319|103.590 +639638.548|220088.339|103.913 +639634.095|220092.283|103.849 +639629.581|220096.285|104.108 +639625.070|220100.284|104.370 +639620.528|220104.305|104.531 +639615.923|220108.389|104.790 +639611.302|220112.486|105.135 +639606.800|220116.472|105.178 +639597.732|220124.501|104.848 +639593.160|220128.549|104.763 +639588.591|220132.593|104.678 +639583.955|220136.702|104.705 +639579.341|220140.789|104.891 +639574.644|220144.956|105.284 +639569.922|220149.138|105.537 +639556.100|220161.373|104.885 +639551.406|220165.530|104.806 +639546.684|220169.712|104.885 +639542.012|220173.857|105.010 +639537.281|220178.051|105.181 +639532.474|220182.312|105.516 +639527.683|220186.564|105.802 +639522.916|220190.792|105.970 +639518.124|220195.041|106.290 +639513.248|220199.369|106.848 +639508.359|220203.709|107.491 +639503.570|220207.958|107.878 +639498.715|220212.265|108.104 +639489.104|220220.784|108.302 +639484.295|220225.045|108.302 +639474.806|220233.443|107.262 +639470.079|220237.628|106.814 +639465.235|220241.919|106.796 +639460.404|220246.202|106.723 +639455.576|220250.475|106.628 +639445.917|220259.028|105.897 +639441.126|220263.274|105.656 +639436.289|220267.556|105.379 +639426.690|220276.051|104.388 +639421.826|220280.352|103.654 +639417.071|220284.558|102.901 +639412.243|220288.828|102.279 +639407.412|220293.104|101.721 +639402.605|220297.356|100.993 +639397.783|220301.621|100.377 +639378.069|220319.089|100.075 +639373.067|220323.530|100.520 +639368.077|220327.955|100.883 +639363.075|220332.393|101.371 +639358.110|220336.798|101.633 +639353.108|220341.232|101.813 +639348.177|220345.603|101.858 +639343.221|220349.992|101.706 +639338.286|220354.363|101.425 +639328.398|220363.123|101.087 +639323.393|220367.555|101.008 +639318.434|220371.953|101.026 +639313.436|220376.382|100.965 +639308.501|220380.753|100.807 +639303.475|220385.203|100.575 +639298.525|220389.592|100.609 +639293.480|220394.060|100.590 +639288.539|220398.440|100.587 +639283.541|220402.866|100.215 +639273.482|220411.785|100.532 +639258.343|220425.220|102.014 +639248.245|220434.181|103.065 +639243.136|220438.714|103.489 +639238.113|220443.173|104.114 +639233.005|220447.705|104.611 +639227.973|220452.168|104.879 +639222.843|220456.731|106.220 +639217.743|220461.260|107.296 +639192.338|220483.809|110.240 +639146.719|220524.287|114.075 +639121.369|220546.759|114.733 +639085.923|220578.166|114.279 +639075.703|220587.228|114.428 +639070.622|220591.730|114.462 +639065.499|220596.271|114.404 +639060.405|220600.788|114.751 +639055.312|220605.306|115.084 +639050.179|220609.856|115.343 +639045.050|220614.407|115.577 +639034.808|220623.484|115.705 +639029.694|220628.016|115.684 +639024.579|220632.549|115.702 +639019.471|220637.078|115.626 +639014.326|220641.632|115.230 +638947.398|220700.958|116.306 +638942.213|220705.545|115.641 +638937.068|220710.105|115.647 +638931.911|220714.683|116.303 +638926.717|220719.286|116.269 +638921.529|220723.882|115.955 +638916.433|220728.396|115.888 +638911.187|220733.047|116.236 +638905.990|220737.662|116.955 +638900.842|220742.234|117.650 +638890.470|220751.415|116.699 +638885.328|220755.972|116.714 +638880.140|220760.568|116.504 +638874.953|220765.164|116.461 +638869.762|220769.764|116.495 +638864.577|220774.360|116.467 +638859.386|220778.960|116.559 +638854.199|220783.559|116.583 +638849.008|220788.155|116.504 +638843.820|220792.755|116.605 +638838.629|220797.354|116.504 +638833.442|220801.954|116.595 +638828.254|220806.553|116.620 +638823.066|220811.150|116.690 +638817.876|220815.749|116.647 +638812.688|220820.348|116.842 +638807.497|220824.948|116.662 +638802.306|220829.547|116.720 +638797.116|220834.147|116.580 +638791.925|220838.746|116.684 +638786.734|220843.346|116.705 +638781.540|220847.945|116.565 +638776.395|220852.502|116.580 +638771.208|220857.098|116.778 +638766.011|220861.701|116.684 +638760.814|220866.300|116.623 +638755.660|220870.863|116.400 +638750.463|220875.466|116.422 +638745.318|220880.022|116.489 +638740.118|220884.628|116.452 +638734.967|220889.188|116.406 +638729.816|220893.751|116.400 +638724.619|220898.353|116.477 +638719.468|220902.919|116.452 +638714.316|220907.479|116.534 +638709.162|220912.045|116.516 +638704.017|220916.605|116.742 +638693.730|220925.721|117.263 +638688.564|220930.293|117.077 +638683.471|220934.807|117.394 +638662.976|220952.970|118.318 +638652.759|220962.023|118.479 +638647.635|220966.558|118.378 +638637.598|220975.474|120.765 +638632.566|220979.939|121.338 +638627.540|220984.398|121.984 +638622.459|220988.903|122.582 +638607.350|221002.293|123.377 +638597.246|221011.239|123.341 +638592.232|221015.683|123.545 +638587.233|221020.115|123.929 +638582.252|221024.534|124.575 +638577.269|221028.954|125.215 +638572.255|221033.395|125.447 +638567.293|221037.793|125.712 +638562.297|221042.222|126.215 +638547.350|221055.456|125.910 +638527.544|221073.013|127.334 +638522.646|221077.359|127.900 +638517.723|221081.727|128.739 +638507.899|221090.435|129.604 +638503.001|221094.773|129.717 +638498.054|221099.156|129.818 +638493.205|221103.456|130.433 +638483.396|221112.152|131.095 +638478.447|221116.538|131.229 +638473.567|221120.858|131.134 +638463.761|221129.544|131.512 +638458.836|221133.906|131.491 +638454.032|221138.161|131.732 +638444.123|221146.927|130.894 +638439.267|221151.231|131.165 +638429.566|221159.823|131.412 +638424.680|221164.151|131.451 +638419.900|221168.391|132.003 +638410.205|221176.974|132.058 +638395.675|221189.837|132.372 +638390.874|221194.086|132.475 +638381.227|221202.620|132.366 +638366.716|221215.458|132.082 +638347.212|221232.698|130.165 +638342.371|221236.974|129.498 +638337.504|221241.278|129.363 +638332.737|221245.497|129.242 +638327.966|221249.718|129.129 +638323.154|221253.976|129.089 +638318.426|221258.158|128.986 +638313.662|221262.373|128.982 +638308.889|221266.598|128.925 +638304.189|221270.755|129.059 +638285.172|221287.580|128.672 +638280.497|221291.723|129.056 +638266.564|221304.061|129.906 +638261.855|221308.228|129.821 +638257.192|221312.355|130.040 +638247.877|221320.599|129.976 +638215.480|221349.275|130.988 +638210.765|221353.445|130.491 +638206.107|221357.560|130.074 +638201.450|221361.680|129.967 +638196.878|221365.725|130.065 +638192.294|221369.782|130.110 +638183.037|221377.966|129.513 +638178.425|221382.047|129.461 +638173.896|221386.055|129.610 +638169.345|221390.085|129.653 +638160.229|221398.147|129.467 +638141.630|221414.573|126.639 +638137.049|221418.620|126.145 +638132.559|221422.592|126.139 +638128.011|221426.612|125.874 +638118.977|221434.601|125.435 +638114.487|221438.573|125.240 +638105.553|221446.473|124.895 +638100.957|221450.533|124.252 +638096.425|221454.535|123.700 +638091.908|221458.525|123.240 +638087.436|221462.478|122.768 +638069.758|221478.108|122.064 +638065.433|221481.940|122.368 +638052.469|221493.418|122.697 +638048.068|221497.308|122.481 +638039.521|221504.876|122.765 +638035.138|221508.750|122.210 +638000.979|221538.968|121.012 +637996.779|221542.683|120.957 +637992.533|221546.435|120.503 +637988.257|221550.218|120.149 +637979.872|221557.631|119.543 +637971.566|221564.976|119.110 +637959.258|221575.867|118.988 +637946.551|221587.087|116.736 +637942.388|221590.763|116.178 +637938.218|221594.445|115.391 +637934.213|221597.986|115.285 +637930.308|221601.446|115.583 +637926.395|221604.911|115.858 +637909.939|221619.444|113.139 +637885.658|221640.881|108.866 +637881.815|221644.279|108.744 +637874.195|221651.015|108.390 +637870.357|221654.408|108.125 +637866.532|221657.788|107.921 +637854.892|221668.069|105.970 +638056.718|221487.572|122.475 +638069.596|221476.115|121.847 +638074.004|221472.198|121.957 +638078.347|221468.336|121.789 +638087.296|221460.390|122.743 +638091.822|221456.373|123.249 +638096.336|221452.365|123.725 +638100.869|221448.344|124.304 +638105.459|221444.272|124.941 +638114.405|221436.323|125.389 +638127.929|221424.308|125.837 +638132.434|221420.303|125.922 +638136.969|221416.276|126.184 +638141.633|221412.140|127.114 +638146.235|221408.056|127.492 +638169.376|221387.512|129.644 +638173.951|221383.443|129.476 +638178.486|221379.411|129.394 +638183.101|221375.308|129.485 +638187.746|221371.184|129.748 +638192.467|221366.996|130.177 +638197.097|221362.881|130.129 +638201.639|221358.843|129.888 +638206.302|221354.697|130.071 +638211.054|221350.479|130.488 +638215.760|221346.303|130.945 +638229.772|221333.852|130.985 +638234.429|221329.710|130.671 +638238.980|221325.656|130.043 +638243.759|221321.413|130.174 +638257.902|221308.843|130.135 +638262.572|221304.692|129.997 +638267.302|221300.486|129.943 +638272.029|221296.285|129.882 +638276.675|221292.152|129.324 +638281.423|221287.925|128.803 +638286.172|221283.706|128.922 +638305.359|221266.656|128.955 +638310.166|221262.383|128.912 +638314.988|221258.100|128.986 +638319.856|221253.778|129.046 +638324.672|221249.496|129.141 +638329.533|221245.177|129.217 +638334.386|221240.867|129.251 +638339.265|221236.535|129.485 +638344.197|221232.155|129.781 +638364.012|221214.575|132.229 +638368.913|221210.222|132.436 +638373.799|221205.885|132.555 +638393.401|221188.465|132.594 +638398.324|221184.088|132.351 +638403.222|221179.736|132.323 +638422.836|221162.298|131.771 +638427.783|221157.900|131.427 +638432.672|221153.557|131.415 +638437.634|221149.146|131.247 +638442.553|221144.772|131.140 +638447.622|221140.276|131.930 +638452.554|221135.890|131.540 +638462.487|221127.063|131.439 +638467.434|221122.665|131.244 +638472.445|221118.212|131.201 +638477.395|221113.811|131.086 +638482.397|221109.367|130.994 +638487.383|221104.935|130.759 +638492.348|221100.518|130.363 +638497.237|221096.166|129.705 +638502.297|221091.673|129.760 +638507.259|221087.256|129.373 +638512.231|221082.837|129.074 +638517.251|221078.371|128.809 +638522.140|221074.016|127.638 +638527.132|221069.572|127.084 +638532.162|221065.100|126.946 +638542.107|221056.252|125.956 +638562.264|221038.348|125.557 +638567.284|221033.889|125.419 +638577.379|221024.925|125.258 +638582.365|221020.484|124.124 +638587.379|221016.021|123.335 +638592.408|221011.556|123.371 +638597.520|221007.014|123.258 +638602.543|221002.558|123.258 +638607.633|220998.032|122.890 +638622.818|220984.538|121.917 +638627.860|220980.058|121.536 +638642.947|220966.631|119.107 +638648.071|220962.075|118.510 +638653.146|220957.573|118.702 +638658.233|220953.050|118.330 +638663.339|220948.517|118.266 +638668.438|220943.988|118.098 +638673.534|220939.462|117.872 +638678.612|220934.944|117.351 +638683.721|220930.412|117.370 +638688.805|220925.889|117.001 +638704.151|220912.261|116.739 +638709.251|220907.735|116.696 +638714.396|220903.166|116.568 +638719.489|220898.643|116.406 +638724.588|220894.113|116.452 +638729.733|220889.544|116.394 +638734.881|220884.975|116.440 +638739.978|220880.449|116.480 +638745.126|220875.880|116.553 +638750.271|220871.314|116.583 +638755.410|220866.748|116.534 +638760.561|220862.179|116.778 +638765.700|220857.613|116.757 +638770.845|220853.047|116.833 +638775.981|220848.485|116.745 +638781.120|220843.922|116.742 +638786.259|220839.359|116.723 +638791.401|220834.796|116.766 +638796.536|220830.233|116.733 +638801.724|220825.631|116.662 +638806.860|220821.068|116.641 +638812.002|220816.505|116.772 +638817.138|220811.945|116.806 +638822.326|220807.340|116.809 +638827.462|220802.777|116.693 +638832.597|220798.217|116.608 +638837.782|220793.611|116.635 +638842.921|220789.052|116.672 +638848.057|220784.489|116.650 +638853.245|220779.886|116.562 +638863.565|220770.718|116.513 +638868.701|220766.161|116.501 +638873.837|220761.601|116.522 +638879.022|220756.996|116.605 +638884.157|220752.442|117.098 +638889.299|220747.867|116.260 +638899.663|220738.683|117.580 +638904.808|220734.111|117.074 +638909.950|220729.536|116.608 +638915.140|220724.925|116.373 +638920.279|220720.365|116.486 +638925.470|220715.756|116.470 +638930.621|220711.178|115.903 +638935.769|220706.606|115.705 +638940.954|220702.010|116.160 +638961.571|220683.725|116.882 +638971.946|220674.501|115.681 +638977.058|220669.963|115.321 +638992.532|220656.226|114.904 +639013.131|220637.956|115.608 +639018.279|220633.390|115.897 +639023.390|220628.854|115.843 +639028.545|220624.279|115.971 +639033.656|220619.744|116.022 +639054.197|220601.511|115.501 +639059.339|220596.945|115.074 +639064.426|220592.425|114.794 +639095.034|220565.270|115.068 +639100.115|220560.762|115.117 +639110.301|220551.719|114.922 +639115.343|220547.244|114.904 +639120.390|220542.764|114.840 +639145.722|220520.278|114.276 +639155.835|220511.296|113.605 +639160.883|220506.812|113.136 +639165.915|220502.344|112.916 +639170.938|220497.885|112.819 +639181.082|220488.866|111.533 +639191.165|220479.911|110.600 +639196.197|220475.436|109.996 +639201.235|220470.959|109.384 +639206.256|220466.499|108.997 +639231.566|220443.984|104.461 +639241.512|220435.151|103.681 +639246.523|220430.697|103.209 +639251.512|220426.269|102.998 +639261.549|220417.347|101.611 +639266.560|220412.891|100.816 +639276.533|220404.021|99.347 +639286.266|220395.402|100.636 +639291.210|220391.012|100.596 +639296.108|220386.663|100.538 +639301.003|220382.320|100.548 +639305.883|220377.991|100.718 +639310.723|220373.700|100.813 +639315.615|220369.356|100.919 +639320.486|220365.031|100.779 +639325.390|220360.676|100.822 +639339.880|220347.822|101.267 +639344.659|220343.582|101.584 +639349.524|220339.263|101.636 +639354.315|220335.008|101.508 +639359.211|220330.662|101.386 +639364.033|220326.379|101.087 +639368.949|220322.009|100.490 +639373.841|220317.659|100.093 +639378.684|220313.355|99.716 +639393.031|220300.624|100.051 +639397.731|220296.457|100.779 +639402.434|220292.294|101.508 +639407.131|220288.130|101.938 +639411.868|220283.930|102.443 +639416.470|220279.855|103.193 +639421.134|220275.719|103.867 +639435.173|220263.277|105.339 +639444.530|220254.980|106.284 +639453.933|220246.638|106.671 +639458.658|220242.443|106.735 +639463.340|220238.289|106.787 +639468.101|220234.058|106.671 +639472.700|220229.983|107.256 +639477.278|220225.923|107.677 +639482.015|220221.720|107.777 +639486.593|220217.663|108.229 +639491.256|220213.521|108.177 +639495.990|220209.318|108.043 +639500.690|220205.142|107.820 +639514.970|220192.447|106.281 +639519.682|220188.259|105.802 +639524.355|220184.108|105.568 +639533.770|220175.744|105.077 +639538.394|220171.638|104.903 +639543.091|220167.463|104.620 +639547.675|220163.396|104.708 +639556.929|220155.182|104.760 +639561.473|220151.153|105.107 +639575.214|220138.958|105.434 +639579.853|220134.834|105.074 +639584.492|220130.713|104.754 +639589.049|220126.665|104.601 +639593.630|220122.602|104.635 +639598.174|220118.566|104.845 +639602.685|220114.564|104.989 +639607.212|220110.547|105.074 +639611.802|220106.469|104.864 +639616.368|220102.412|104.531 +639620.979|220098.315|104.245 +639625.524|220094.280|104.068 +639630.066|220090.247|103.916 +639634.555|220086.258|103.785 +639639.078|220082.243|103.760 +639643.565|220078.257|103.678 +639648.018|220074.303|103.526 +639656.937|220066.388|103.718 +639661.353|220062.468|103.803 +639665.852|220058.466|103.498 +639670.247|220054.567|103.711 +639667.818|220055.031|103.379 +639663.520|220058.841|103.699 +639659.256|220062.614|103.623 +639654.992|220066.388|103.559 +639650.728|220070.164|103.522 +639646.470|220073.931|103.224 +639642.081|220077.821|103.565 +639637.743|220081.661|103.663 +639633.385|220085.523|103.647 +639628.996|220089.409|103.788 +639624.604|220093.298|103.955 +639620.172|220097.224|104.096 +639615.719|220101.171|104.352 +639611.214|220105.161|104.620 +639606.788|220109.084|104.787 +639602.335|220113.028|104.842 +639597.933|220116.920|104.650 +639593.523|220120.825|104.528 +639589.033|220124.800|104.547 +639584.522|220128.799|104.714 +639579.935|220132.862|105.013 +639575.354|220136.922|105.312 +639570.794|220140.960|105.522 +639561.805|220148.912|105.019 +639557.291|220152.908|104.763 +639552.735|220156.941|104.473 +639543.575|220165.049|104.467 +639538.936|220169.154|104.675 +639534.267|220173.290|104.800 +639529.579|220177.439|105.034 +639524.891|220181.590|105.309 +639520.182|220185.760|105.427 +639515.406|220189.990|105.946 +639501.037|220202.722|107.625 +639496.279|220206.934|107.851 +639491.546|220211.122|107.957 +639486.767|220215.353|108.058 +639482.042|220219.532|107.854 +639477.333|220223.695|107.570 +639472.630|220227.853|107.253 +639467.902|220232.031|106.805 +639463.166|220236.216|106.427 +639458.313|220240.511|106.461 +639453.504|220244.766|106.577 +639448.676|220249.039|106.516 +639439.123|220257.476|105.427 +639434.335|220261.713|105.162 +639429.464|220266.020|104.790 +639415.056|220278.745|103.044 +639410.246|220282.994|102.312 +639405.397|220287.277|101.843 +639400.557|220291.553|101.343 +639395.692|220295.851|100.673 +639390.888|220300.090|99.588 +639375.959|220313.300|99.734 +639370.973|220317.717|100.023 +639365.916|220322.198|100.517 +639360.856|220326.678|101.035 +639355.791|220331.165|101.273 +639350.798|220335.584|101.371 +639345.772|220340.031|101.337 +639340.862|220344.369|100.828 +639335.793|220348.855|100.810 +639325.786|220357.707|100.554 +639320.763|220362.151|100.627 +639315.694|220366.638|100.697 +639310.638|220371.115|100.691 +639305.599|220375.571|100.545 +639300.561|220380.027|100.429 +639295.510|220384.496|100.423 +639290.460|220388.964|100.450 +639275.360|220402.314|99.344 +639182.627|220484.513|111.347 +639177.461|220489.091|111.850 +639167.238|220498.147|112.822 +639151.940|220511.692|113.550 +639146.795|220516.249|114.011 +639141.659|220520.797|114.398 +639121.314|220538.807|115.004 +639116.227|220543.309|114.892 +639111.130|220547.817|114.895 +639106.028|220552.334|115.059 +639100.929|220556.848|115.224 +639095.845|220561.347|115.187 +639090.757|220565.846|115.172 +639080.595|220574.838|115.056 +639075.520|220579.327|114.965 +639070.439|220583.823|114.974 +639065.313|220588.359|114.949 +639060.226|220592.864|115.151 +639055.132|220597.375|115.471 +639050.045|220601.880|115.754 +639044.915|220606.418|115.919 +639039.840|220610.911|116.038 +639029.648|220619.933|116.181 +639024.588|220624.407|116.019 +639019.477|220628.928|115.919 +639014.362|220633.454|115.952 +639009.306|220637.928|115.827 +639004.206|220642.436|115.513 +638983.864|220660.438|115.608 +638978.765|220664.946|115.370 +638973.656|220669.469|115.522 +638963.412|220678.546|116.809 +638948.105|220692.098|117.138 +638943.002|220696.612|117.205 +638937.918|220701.104|116.605 +638932.782|220705.640|115.974 +638927.735|220710.105|115.873 +638922.584|220714.665|116.120 +638917.481|220719.188|116.559 +638912.333|220723.742|116.687 +638907.237|220728.256|116.973 +638902.092|220732.810|117.117 +638896.996|220737.324|117.421 +638881.622|220750.924|117.050 +638876.480|220755.469|116.836 +638871.389|220759.971|116.553 +638866.199|220764.564|116.544 +638861.108|220769.069|116.608 +638855.966|220773.616|116.620 +638850.828|220778.167|116.742 +638845.686|220782.718|116.797 +638840.544|220787.265|116.583 +638835.402|220791.816|116.656 +638830.260|220796.367|116.766 +638825.121|220800.914|116.909 +638819.979|220805.465|116.827 +638814.840|220810.013|116.918 +638809.695|220814.563|116.781 +638804.553|220819.114|116.793 +638799.456|220823.622|116.644 +638789.127|220832.766|116.793 +638784.030|220837.277|116.876 +638778.888|220841.831|116.943 +638773.695|220846.427|116.885 +638768.598|220850.941|116.934 +638763.450|220855.498|116.833 +638758.308|220860.052|116.961 +638753.151|220864.612|116.669 +638748.003|220869.171|116.577 +638742.858|220873.728|116.675 +638737.704|220878.288|116.565 +638732.550|220882.851|116.455 +638727.399|220887.411|116.419 +638722.250|220891.971|116.504 +638717.099|220896.530|116.601 +638706.846|220905.610|116.705 +638701.692|220910.173|116.699 +638691.472|220919.232|117.641 +638686.293|220923.810|117.214 +638681.200|220928.324|117.510 +638676.049|220932.887|117.677 +638665.832|220941.933|117.818 +638645.371|220960.057|118.628 +638625.120|220978.019|121.381 +638620.029|220982.530|121.798 +638614.979|220987.004|122.128 +638609.880|220991.521|122.460 +638604.808|220996.014|122.451 +638599.751|221000.495|122.716 +638594.658|221005.006|123.185 +638589.629|221009.459|123.155 +638584.566|221013.946|123.365 +638579.558|221018.390|124.307 +638559.405|221036.242|125.355 +638549.322|221045.169|125.294 +638539.334|221054.018|125.861 +638529.345|221062.875|126.986 +638524.359|221067.292|127.123 +638519.360|221071.721|127.693 +638514.529|221076.018|129.473 +638509.475|221080.487|128.949 +638504.641|221084.781|130.186 +638499.578|221089.256|129.616 +638494.647|221093.627|129.866 +638489.666|221098.037|130.177 +638484.783|221102.365|130.467 +638479.818|221106.764|130.939 +638474.914|221111.107|131.052 +638469.961|221115.493|131.204 +638464.993|221119.891|131.232 +638455.190|221128.575|131.653 +638450.225|221132.973|131.765 +638445.360|221137.283|131.890 +638440.423|221141.657|132.287 +638435.433|221146.065|131.390 +638430.504|221150.426|131.485 +638425.622|221154.751|131.540 +638420.775|221159.046|131.933 +638415.889|221163.371|132.034 +638406.123|221172.024|132.296 +638401.228|221176.359|132.351 +638396.397|221180.641|132.555 +638376.963|221197.850|132.326 +638372.123|221202.139|132.543 +638367.295|221206.415|132.509 +638362.461|221210.694|132.445 +638357.553|221215.035|131.884 +638352.622|221219.393|131.177 +638347.775|221223.679|130.747 +638342.829|221228.053|129.982 +638333.145|221236.621|129.351 +638328.335|221240.879|129.284 +638323.522|221245.140|129.220 +638318.755|221249.364|129.138 +638313.982|221253.589|129.050 +638309.209|221257.814|128.992 +638304.460|221262.023|129.104 +638299.772|221266.174|129.315 +638294.987|221270.414|129.220 +638290.287|221274.578|129.382 +638280.707|221283.054|128.940 +638276.065|221287.169|129.193 +638266.802|221295.386|130.208 +638262.126|221299.529|130.302 +638257.448|221303.671|130.412 +638243.400|221316.113|130.439 +638238.767|221320.218|130.580 +638234.094|221324.355|130.513 +638215.559|221340.771|130.750 +638210.890|221344.901|130.205 +638206.260|221349.001|130.208 +638201.633|221353.094|129.964 +638197.064|221357.145|130.348 +638192.583|221361.120|130.945 +638187.978|221365.198|130.860 +638183.183|221369.428|129.516 +638178.602|221373.485|129.333 +638174.036|221377.524|129.275 +638169.498|221381.547|129.367 +638146.616|221401.792|128.068 +638128.225|221418.053|125.715 +638123.710|221422.049|125.617 +638119.215|221426.030|125.614 +638105.794|221437.908|125.051 +638101.265|221441.910|124.465 +638096.754|221445.903|123.978 +638092.212|221449.917|123.383 +638083.227|221457.863|122.460 +638078.789|221461.789|122.173 +638074.247|221465.803|121.417 +638069.843|221469.699|121.091 +638061.272|221477.294|121.573 +638056.990|221481.089|121.850 +638048.397|221488.700|121.832 +638026.967|221507.671|121.625 +638018.368|221515.279|120.881 +637984.752|221545.036|119.927 +637980.555|221548.749|119.717 +637976.498|221552.342|119.875 +637972.313|221556.046|119.506 +637968.146|221559.731|119.241 +637959.874|221567.049|118.790 +637955.863|221570.603|118.994 +637939.416|221585.148|117.214 +637934.947|221589.083|115.449 +637930.924|221592.643|115.266 +637926.913|221596.197|115.135 +637923.091|221599.583|115.562 +637906.845|221613.943|113.230 +637882.756|221635.224|109.250 +637878.892|221638.644|109.042 +637875.045|221642.048|108.924 +637871.116|221645.520|108.299 +637867.330|221648.867|108.021 +637863.441|221652.308|107.567 +637855.818|221659.047|106.891 +637851.975|221662.442|106.257 +638046.434|221488.779|121.554 +638059.385|221477.285|121.402 +638068.002|221469.638|121.128 +638072.388|221465.745|121.140 +638076.936|221461.719|121.932 +638081.374|221457.784|122.231 +638085.897|221453.776|122.694 +638090.411|221449.774|123.149 +638094.959|221445.748|123.783 +638099.454|221441.761|124.191 +638108.501|221433.744|125.084 +638113.042|221429.715|125.288 +638117.508|221425.756|125.368 +638122.025|221421.748|125.474 +638126.539|221417.742|125.599 +638140.386|221405.477|127.340 +638145.013|221401.378|127.852 +638149.801|221397.144|129.226 +638168.071|221380.932|129.312 +638172.604|221376.908|129.190 +638177.179|221372.851|129.324 +638181.802|221368.749|129.455 +638195.811|221356.322|130.464 +638200.359|221352.277|129.979 +638205.007|221348.153|130.068 +638209.667|221344.017|130.257 +638214.422|221339.802|130.689 +638219.180|221335.583|131.192 +638233.122|221323.199|130.903 +638237.752|221319.085|130.436 +638242.424|221314.936|130.537 +638251.882|221306.539|130.580 +638256.579|221302.372|130.577 +638261.364|221298.123|130.522 +638266.019|221293.987|130.308 +638275.404|221285.645|129.464 +638280.128|221281.448|129.095 +638289.738|221272.919|129.455 +638294.432|221268.750|129.266 +638299.254|221264.470|129.287 +638304.046|221260.215|129.120 +638308.788|221256.000|129.004 +638313.662|221251.675|129.092 +638318.478|221247.402|129.138 +638323.300|221243.122|129.257 +638328.152|221238.812|129.269 +638342.819|221225.803|130.223 +638347.794|221221.396|130.830 +638352.680|221217.062|131.214 +638362.604|221208.262|132.454 +638367.487|221203.931|132.524 +638396.854|221177.861|132.457 +638401.789|221173.478|132.323 +638406.687|221169.126|132.326 +638421.531|221155.946|132.000 +638426.411|221151.609|131.500 +638431.398|221147.183|131.500 +638436.393|221142.754|132.027 +638441.371|221138.335|132.006 +638446.257|221133.991|131.631 +638451.283|221129.529|131.631 +638456.199|221125.164|131.561 +638461.201|221120.723|131.381 +638466.166|221116.316|131.351 +638471.174|221111.869|131.259 +638476.115|221107.480|131.031 +638481.104|221103.048|130.842 +638486.070|221098.638|130.388 +638491.029|221094.227|129.915 +638496.067|221089.753|129.748 +638501.011|221085.363|129.635 +638506.037|221080.898|129.376 +638511.091|221076.411|129.421 +638515.983|221072.056|128.306 +638520.939|221067.645|127.324 +638525.974|221063.174|127.199 +638540.970|221049.845|125.727 +638576.388|221018.380|124.907 +638581.372|221013.943|123.667 +638586.410|221009.462|123.149 +638591.525|221004.920|123.021 +638596.560|221000.440|122.502 +638601.616|220995.947|122.265 +638606.734|220991.403|122.201 +638611.791|220986.910|121.999 +638616.884|220982.380|121.637 +638621.934|220977.894|121.384 +638642.204|220959.868|119.058 +638652.411|220950.797|118.802 +638662.659|220941.693|118.360 +638667.749|220937.166|118.028 +638672.836|220932.646|117.571 +638677.945|220928.111|117.583 +638683.087|220923.539|117.354 +638688.180|220919.015|117.043 +638693.307|220914.465|117.549 +638698.412|220909.920|116.458 +638703.569|220905.342|116.611 +638708.662|220900.816|116.367 +638713.820|220896.238|116.510 +638718.977|220891.660|116.693 +638724.122|220887.091|116.574 +638729.267|220882.519|116.483 +638734.372|220877.989|116.659 +638739.566|220873.375|116.675 +638744.714|220868.806|116.687 +638749.811|220864.279|116.723 +638754.956|220859.710|116.729 +638760.155|220855.096|116.952 +638765.249|220850.573|116.928 +638770.391|220846.007|116.873 +638775.581|220841.395|116.964 +638780.675|220836.872|116.967 +638791.001|220827.700|116.787 +638796.140|220823.137|116.720 +638801.282|220818.572|116.745 +638806.424|220814.006|116.867 +638811.563|220809.443|116.943 +638816.702|220804.880|116.952 +638827.029|220795.708|116.925 +638832.168|220791.142|116.879 +638837.307|220786.580|116.781 +638842.446|220782.017|116.842 +638847.636|220777.411|116.928 +638852.772|220772.845|116.894 +638857.914|220768.282|116.861 +638863.294|220763.506|116.967 +638868.235|220759.117|116.906 +638873.374|220754.554|117.013 +638878.564|220749.940|116.562 +638893.978|220736.260|117.223 +638899.120|220731.691|117.037 +638904.262|220727.125|117.019 +638909.453|220722.511|116.739 +638914.552|220717.981|116.406 +638919.749|220713.363|116.105 +638924.891|220708.795|116.050 +638930.030|220704.235|116.406 +638935.163|220699.687|117.083 +638940.299|220695.133|117.528 +638945.441|220690.567|117.638 +638981.544|220658.490|115.413 +638996.946|220644.823|115.843 +639002.048|220640.291|115.931 +639007.205|220635.716|115.977 +639012.311|220631.183|116.102 +639017.416|220626.651|116.178 +639022.574|220622.073|116.266 +639027.734|220617.495|116.336 +639032.842|220612.959|116.452 +639038.012|220608.369|116.309 +639043.135|220603.818|116.156 +639063.667|220585.579|115.254 +639068.793|220581.025|115.202 +639073.920|220576.478|115.248 +639089.249|220562.868|115.419 +639099.417|220553.840|115.443 +639104.562|220549.274|115.324 +639114.809|220540.173|115.074 +639119.893|220535.659|115.178 +639135.170|220522.095|114.736 +639140.306|220517.526|114.245 +639145.369|220513.033|114.157 +639160.666|220499.439|113.243 +639165.757|220494.916|112.929 +639170.856|220490.387|112.538 +639175.952|220485.857|112.215 +639181.030|220481.340|111.572 +639206.478|220458.715|108.875 +639211.522|220454.231|108.305 +639221.819|220445.060|105.638 +639231.871|220436.135|105.717 +639247.059|220422.626|103.690 +639262.159|220409.200|101.925 +639277.280|220395.752|99.880 +639282.184|220391.403|100.191 +639287.144|220387.004|100.487 +639292.042|220382.655|100.444 +639296.986|220378.263|100.450 +639301.942|220373.864|100.420 +639306.831|220369.524|100.526 +639311.732|220365.174|100.554 +639316.645|220360.813|100.493 +639321.565|220356.448|100.423 +639326.524|220352.047|100.072 +639331.440|220347.682|100.057 +639336.216|220343.454|100.798 +639341.093|220339.126|100.758 +639345.943|220334.829|100.965 +639350.740|220330.577|101.194 +639355.629|220326.236|101.124 +639360.506|220321.908|100.801 +639365.395|220317.565|100.392 +639370.305|220313.200|99.868 +639375.146|220308.905|99.542 +639380.038|220304.562|99.216 +639389.493|220296.186|100.267 +639394.217|220292.001|100.828 +639398.871|220287.880|101.550 +639403.620|220283.671|101.965 +639408.320|220279.507|102.392 +639412.941|220275.414|103.017 +639417.671|220271.223|103.586 +639422.307|220267.117|104.138 +639426.949|220263.005|104.672 +639436.243|220254.770|105.680 +639450.242|220242.361|106.607 +639454.982|220238.152|106.260 +639459.676|220233.988|106.235 +639464.281|220229.907|106.784 +639468.850|220225.859|107.253 +639473.483|220221.754|107.649 +639478.174|220217.593|107.726 +639487.385|220209.424|108.015 +639492.064|220205.273|107.896 +639496.734|220201.128|107.860 +639524.812|220176.189|105.138 +639529.454|220172.065|104.833 +639534.081|220167.959|104.644 +639538.695|220163.863|104.537 +639543.213|220159.855|104.708 +639547.800|220155.783|104.513 +639552.341|220151.756|104.589 +639556.886|220147.727|104.669 +639561.318|220143.798|105.092 +639574.793|220131.847|105.485 +639579.368|220127.784|105.214 +639583.958|220123.711|104.900 +639588.475|220119.700|104.708 +639592.990|220115.692|104.547 +639597.470|220111.718|104.583 +639601.926|220107.764|104.751 +639606.440|220103.759|104.656 +639610.912|220099.791|104.522 +639615.469|220095.746|104.254 +639619.958|220091.759|104.074 +639624.405|220087.812|103.867 +639628.901|220083.822|103.705 +639633.315|220079.906|103.696 +639637.762|220075.955|103.544 +639642.200|220072.017|103.458 +639646.622|220068.094|103.471 +639651.078|220064.138|103.334 +639655.376|220060.331|103.715 +639659.741|220056.460|103.803 +639664.130|220052.565|103.775 +639668.541|220048.651|103.437 +639667.035|220047.752|103.583 +639658.287|220055.506|103.690 +639653.989|220059.310|103.285 +639649.594|220063.205|103.355 +639645.223|220067.076|103.321 +639640.852|220070.950|103.315 +639636.424|220074.873|103.334 +639632.010|220078.787|103.562 +639627.588|220082.710|103.614 +639623.150|220086.642|103.739 +639618.703|220090.583|103.934 +639614.252|220094.530|104.163 +639609.769|220098.504|104.330 +639605.285|220102.479|104.504 +639600.820|220106.438|104.617 +639596.330|220110.416|104.595 +639591.914|220114.327|104.486 +639587.412|220118.316|104.580 +639582.922|220122.300|104.888 +639578.380|220126.330|105.226 +639573.818|220130.374|105.415 +639569.276|220134.398|105.513 +639564.780|220138.382|105.397 +639555.947|220146.197|104.629 +639551.485|220150.150|104.385 +639546.873|220154.234|104.394 +639537.830|220162.247|104.342 +639533.209|220166.341|104.455 +639528.640|220170.389|104.589 +639519.377|220178.600|105.068 +639514.717|220182.733|105.501 +639495.837|220199.485|107.695 +639491.208|220203.584|107.774 +639486.526|220207.733|107.887 +639481.838|220211.890|108.067 +639477.245|220215.956|107.695 +639472.630|220220.041|107.454 +639467.927|220224.201|107.153 +639458.716|220232.352|106.342 +639454.013|220236.515|106.089 +639449.227|220240.758|106.366 +639430.464|220257.360|104.961 +639421.012|220265.724|103.986 +639416.315|220269.879|103.492 +639411.530|220274.112|102.916 +639406.808|220278.285|102.261 +639402.056|220282.491|101.846 +639397.259|220286.734|101.389 +639392.547|220290.901|100.715 +639387.722|220295.171|100.130 +639378.038|220303.742|99.600 +639373.128|220308.091|99.688 +639368.254|220312.407|99.523 +639363.210|220316.885|100.285 +639358.275|220321.262|100.630 +639353.294|220325.675|100.962 +639348.351|220330.055|101.044 +639343.394|220334.445|100.874 +639338.484|220338.794|100.755 +639333.580|220343.131|100.197 +639328.676|220347.469|99.652 +639323.613|220351.958|100.026 +639318.608|220356.396|100.343 +639313.588|220360.843|100.401 +639308.568|220365.293|100.505 +639303.578|220369.707|100.346 +639298.577|220374.139|100.331 +639293.520|220378.622|100.407 +639288.472|220383.091|100.386 +639283.449|220387.541|100.212 +639278.420|220391.991|100.072 +639273.303|220396.526|100.331 +639263.049|220405.628|101.593 +639257.870|220410.224|102.526 +639247.632|220419.304|103.410 +639216.610|220446.828|107.122 +639195.840|220465.259|109.838 +639190.656|220469.855|110.411 +639180.302|220479.042|111.530 +639175.117|220483.644|112.261 +639169.969|220488.204|112.566 +639164.769|220492.813|112.941 +639144.064|220511.159|114.273 +639138.904|220515.725|114.312 +639133.728|220520.312|114.629 +639118.189|220534.071|115.172 +639102.700|220547.787|115.349 +639097.494|220552.401|115.650 +639087.179|220561.527|115.507 +639076.825|220570.689|115.294 +639071.689|220575.240|115.398 +639066.511|220579.824|115.388 +639061.326|220584.415|115.538 +639056.138|220589.008|115.775 +639045.824|220598.146|116.169 +639040.642|220602.733|116.370 +639035.421|220607.357|116.480 +639030.297|220611.892|116.586 +639025.140|220616.458|116.425 +639019.971|220621.033|116.504 +639014.813|220625.599|116.382 +639009.656|220630.162|116.254 +639004.502|220634.722|116.065 +638999.342|220639.288|116.038 +638994.181|220643.857|116.062 +638988.985|220648.453|115.775 +638983.885|220652.967|115.547 +638978.679|220657.576|115.516 +638963.168|220671.325|117.220 +638952.860|220680.454|117.571 +638947.657|220685.060|117.726 +638942.554|220689.580|117.906 +638937.409|220694.131|117.720 +638932.221|220698.721|117.357 +638927.131|220703.220|116.873 +638921.992|220707.764|116.382 +638916.850|220712.315|116.208 +638911.751|220716.829|116.294 +638906.554|220721.432|116.513 +638901.406|220725.991|116.754 +638896.307|220730.509|117.016 +638891.165|220735.059|116.830 +638875.785|220748.665|116.318 +638865.546|220757.730|116.464 +638860.407|220762.284|116.800 +638855.314|220766.792|116.912 +638850.169|220771.343|116.641 +638845.030|220775.899|116.946 +638839.983|220780.365|116.900 +638834.838|220784.915|116.705 +638829.699|220789.469|116.848 +638824.606|220793.977|117.074 +638819.464|220798.531|117.178 +638814.370|220803.039|117.141 +638809.274|220807.547|117.013 +638804.129|220812.101|116.894 +638799.085|220816.566|116.949 +638793.940|220821.120|116.885 +638788.846|220825.631|116.973 +638783.750|220830.139|116.952 +638778.657|220834.647|117.083 +638773.564|220839.155|117.187 +638768.461|220843.666|117.025 +638758.311|220852.642|116.918 +638753.215|220857.153|116.918 +638748.104|220861.670|116.522 +638743.010|220866.178|116.742 +638737.908|220870.692|116.726 +638732.848|220875.164|116.562 +638727.749|220879.678|116.641 +638717.590|220888.666|116.565 +638712.475|220893.187|116.345 +638697.220|220906.689|116.711 +638682.020|220920.143|117.287 +638676.963|220924.618|117.418 +638671.861|220929.132|117.616 +638666.868|220933.554|117.994 +638661.769|220938.069|118.290 +638651.674|220947.005|118.927 +638646.623|220951.477|119.195 +638636.504|220960.435|119.470 +638631.478|220964.888|120.171 +638621.392|220973.822|121.018 +638616.390|220978.250|121.335 +638611.330|220982.728|121.551 +638606.271|220987.205|121.762 +638601.257|220991.643|121.942 +638596.197|220996.121|122.182 +638591.192|221000.556|122.493 +638586.136|221005.030|122.819 +638581.137|221009.459|123.228 +638576.193|221013.845|124.401 +638556.137|221031.600|125.425 +638551.081|221036.071|125.243 +638536.033|221049.388|125.596 +638521.167|221062.555|127.041 +638511.350|221071.266|129.528 +638506.333|221075.704|129.363 +638501.340|221080.124|129.498 +638496.390|221084.501|129.586 +638491.410|221088.911|129.876 +638486.484|221093.273|130.229 +638481.522|221097.668|130.695 +638476.584|221102.039|130.961 +638471.637|221106.416|131.156 +638466.742|221110.750|131.381 +638461.725|221115.188|131.418 +638456.800|221119.547|131.406 +638451.837|221123.939|131.528 +638446.994|221128.225|131.851 +638442.005|221132.638|131.765 +638437.106|221136.969|131.662 +638432.108|221141.389|131.546 +638427.228|221145.708|131.625 +638422.345|221150.033|132.110 +638417.428|221154.383|131.915 +638407.678|221163.011|132.290 +638402.780|221167.343|132.317 +638397.933|221171.631|132.387 +638388.162|221180.275|132.332 +638373.620|221193.144|132.741 +638368.749|221197.451|132.756 +638363.899|221201.739|132.552 +638324.842|221236.252|129.363 +638320.039|221240.501|129.367 +638315.265|221244.722|129.254 +638310.456|221248.977|129.260 +638305.695|221253.187|129.293 +638300.979|221257.362|129.629 +638296.182|221261.602|129.440 +638291.467|221265.775|129.479 +638282.006|221274.148|129.744 +638272.593|221282.475|130.086 +638267.979|221286.562|130.537 +638263.318|221290.686|130.714 +638253.970|221298.959|130.942 +638239.977|221311.337|131.000 +638235.432|221315.360|131.366 +638216.848|221331.795|131.229 +638212.039|221336.041|130.449 +638207.457|221340.091|130.427 +638202.767|221344.237|130.098 +638198.295|221348.199|130.717 +638193.842|221352.146|131.445 +638179.913|221364.454|130.327 +638175.191|221368.618|129.412 +638170.598|221372.681|129.196 +638166.041|221376.710|129.190 +638143.306|221396.809|128.391 +638138.710|221400.869|127.785 +638129.499|221408.998|126.541 +638120.355|221417.075|125.468 +638111.372|221425.012|125.035 +638106.901|221428.965|124.685 +638102.396|221432.946|124.453 +638097.933|221436.890|124.194 +638089.042|221444.748|123.642 +638084.431|221448.814|122.731 +638079.981|221452.746|122.362 +638075.497|221456.705|121.862 +638066.627|221464.538|120.887 +638057.922|221472.241|121.003 +638053.643|221476.029|121.049 +638045.044|221483.643|121.247 +638014.790|221510.399|119.311 +638010.520|221514.175|119.104 +638006.292|221517.915|119.101 +638002.122|221521.606|119.134 +637998.105|221525.169|119.832 +637994.036|221528.778|120.314 +637977.336|221543.549|119.701 +637973.163|221547.237|119.375 +637969.070|221550.861|119.400 +637964.937|221554.519|119.265 +637956.704|221561.797|118.750 +637936.292|221579.848|117.565 +637923.743|221590.927|115.084 +637915.894|221597.874|115.135 +637911.947|221601.363|115.096 +637883.665|221626.339|110.204 +637879.721|221629.823|109.670 +637875.908|221633.194|109.448 +637872.094|221636.565|109.247 +637868.132|221640.064|108.488 +637852.804|221653.609|106.961 +637849.052|221656.923|106.458 +637845.290|221660.248|106.135 +638057.770|221470.040|120.616 +638062.061|221466.230|120.405 +638066.487|221462.307|120.579 +638071.068|221458.253|121.518 +638075.528|221454.300|121.902 +638079.999|221450.341|122.353 +638084.534|221446.324|122.893 +638089.125|221442.258|123.734 +638098.080|221434.321|124.109 +638102.594|221430.319|124.389 +638107.099|221426.323|124.645 +638111.631|221422.308|125.047 +638116.109|221418.334|125.215 +638120.723|221414.246|125.553 +638129.947|221406.078|126.809 +638134.567|221401.984|127.254 +638139.173|221397.906|127.919 +638162.115|221377.564|128.989 +638166.742|221373.461|129.080 +638171.369|221369.355|129.208 +638175.944|221365.298|129.336 +638194.799|221348.605|131.448 +638199.295|221344.612|130.680 +638203.879|221340.539|130.132 +638208.558|221336.397|130.406 +638213.215|221332.270|130.592 +638217.979|221328.046|130.845 +638232.064|221315.564|131.067 +638250.885|221298.876|131.122 +638255.604|221294.691|130.964 +638265.043|221286.319|130.695 +638274.425|221277.994|130.144 +638279.189|221273.770|130.034 +638283.917|221269.573|129.726 +638288.669|221265.360|129.565 +638293.426|221261.142|129.470 +638303.028|221252.626|129.254 +638307.792|221248.401|129.260 +638312.641|221244.101|129.190 +638317.457|221239.833|129.254 +638322.276|221235.563|129.339 +638341.865|221218.211|130.799 +638351.735|221209.472|131.887 +638361.528|221200.798|132.524 +638366.417|221196.466|132.649 +638376.201|221187.792|132.631 +638390.902|221174.755|132.369 +638395.797|221170.415|132.274 +638400.704|221166.062|132.329 +638405.645|221161.682|132.241 +638420.391|221148.607|131.933 +638425.338|221144.217|131.567 +638430.270|221139.844|131.506 +638435.204|221135.467|131.521 +638440.212|221131.032|131.741 +638445.193|221126.615|131.756 +638450.140|221122.226|131.479 +638455.111|221117.819|131.451 +638460.131|221113.369|131.439 +638465.090|221108.970|131.354 +638470.092|221104.535|131.208 +638475.039|221100.146|131.043 +638480.019|221095.730|130.717 +638484.975|221091.328|130.186 +638489.998|221086.872|129.842 +638494.976|221082.453|129.565 +638499.978|221078.021|129.507 +638505.010|221073.555|129.303 +638509.996|221069.133|129.181 +638519.899|221060.330|127.096 +638534.941|221046.974|125.514 +638545.030|221038.025|124.977 +638550.136|221033.502|125.206 +638555.238|221028.981|125.377 +638580.469|221006.585|123.146 +638585.511|221002.107|122.664 +638590.613|220997.581|122.332 +638595.670|220993.094|122.070 +638600.778|220988.565|121.844 +638605.884|220984.033|121.631 +638610.940|220979.546|121.411 +638616.043|220975.023|121.134 +638621.139|220970.499|120.802 +638626.238|220965.976|120.503 +638631.380|220961.410|120.165 +638636.428|220956.933|119.845 +638641.570|220952.370|119.485 +638646.666|220947.850|119.165 +638651.765|220943.323|118.942 +638667.139|220929.680|117.921 +638672.294|220925.112|117.818 +638677.390|220920.588|117.604 +638682.559|220916.010|117.863 +638697.909|220902.386|116.440 +638713.375|220888.676|116.623 +638718.520|220884.113|116.446 +638723.634|220879.583|116.790 +638728.825|220874.978|116.653 +638733.973|220870.415|116.605 +638739.121|220865.849|116.583 +638744.266|220861.286|116.595 +638749.423|220856.720|116.888 +638754.572|220852.157|116.995 +638759.713|220847.598|116.946 +638764.862|220843.035|117.034 +638770.004|220838.475|117.071 +638775.149|220833.915|117.129 +638780.288|220829.355|117.019 +638785.430|220824.799|117.007 +638790.623|220820.196|117.077 +638806.046|220806.523|117.138 +638811.179|220801.966|116.665 +638816.324|220797.406|116.851 +638831.796|220783.693|117.147 +638842.025|220774.619|116.793 +638847.216|220770.020|116.797 +638852.358|220765.466|117.165 +638857.448|220760.952|117.187 +638862.632|220756.353|116.918 +638867.726|220751.835|116.815 +638872.865|220747.279|116.876 +638878.007|220742.722|116.912 +638883.097|220738.208|116.992 +638888.242|220733.648|116.806 +638893.381|220729.091|116.986 +638898.477|220724.571|116.708 +638903.622|220720.008|116.553 +638908.767|220715.445|116.416 +638913.860|220710.928|116.489 +638918.999|220706.380|116.909 +638924.086|220701.876|117.482 +638929.173|220697.368|117.812 +638934.309|220692.814|118.125 +638939.403|220688.297|118.238 +638944.499|220683.776|118.186 +638949.647|220679.208|118.086 +638954.697|220674.724|117.952 +638959.803|220670.192|117.671 +638964.963|220665.610|117.272 +638975.189|220656.530|116.428 +638995.522|220638.489|116.150 +639000.631|220633.957|116.156 +639005.685|220629.476|116.309 +639010.784|220624.953|116.544 +639015.840|220620.469|116.644 +639020.903|220615.977|116.659 +639026.015|220611.444|116.672 +639031.084|220606.948|116.653 +639036.152|220602.450|116.598 +639041.221|220597.951|116.544 +639046.299|220593.446|116.376 +639056.467|220584.421|115.931 +639061.503|220579.952|115.733 +639066.587|220575.441|115.602 +639071.616|220570.976|115.559 +639076.703|220566.462|115.431 +639081.796|220561.942|115.218 +639096.924|220548.527|115.681 +639102.023|220544.001|115.489 +639122.222|220526.079|115.108 +639127.288|220521.583|114.876 +639132.341|220517.099|114.803 +639137.407|220512.604|114.639 +639142.482|220508.099|114.364 +639147.502|220503.645|114.215 +639152.589|220499.125|113.840 +639157.637|220494.642|113.383 +639162.730|220490.121|113.041 +639177.909|220476.637|111.606 +639208.407|220449.546|108.302 +639249.040|220413.446|103.410 +639254.103|220408.950|102.995 +639259.169|220404.451|102.611 +639274.503|220390.811|99.496 +639279.456|220386.428|100.282 +639284.434|220382.015|100.389 +639289.387|220377.623|100.334 +639294.389|220373.182|100.270 +639299.396|220368.741|100.225 +639304.343|220364.352|100.261 +639309.303|220359.950|100.237 +639314.262|220355.546|100.221 +639319.254|220351.111|99.975 +639324.204|220346.713|99.676 +639329.206|220342.272|99.414 +639343.858|220329.278|100.734 +639348.771|220324.916|100.852 +639358.616|220316.169|100.243 +639373.423|220303.017|99.618 +639383.177|220294.357|99.594 +639387.923|220290.151|100.350 +639392.696|220285.923|100.944 +639397.463|220281.696|101.575 +639402.221|220277.474|101.925 +639407.003|220273.234|102.480 +639411.728|220269.050|103.111 +639416.473|220264.840|103.586 +639421.210|220260.640|104.147 +639425.898|220256.486|104.717 +639444.805|220239.716|106.071 +639449.636|220235.421|105.790 +639454.272|220231.312|106.125 +639459.005|220227.109|106.177 +639472.886|220214.801|107.790 +639477.583|220210.631|107.829 +639482.228|220206.511|107.896 +639486.904|220202.356|107.790 +639491.646|220198.144|107.607 +639505.914|220185.455|105.525 +639515.326|220177.091|104.943 +639519.975|220172.958|104.577 +639524.608|220168.843|104.324 +639533.892|220160.595|104.059 +639538.406|220156.590|104.245 +639543.002|220152.509|104.275 +639547.529|220148.486|104.138 +639552.107|220144.426|104.315 +639556.566|220140.469|104.858 +639561.040|220136.501|105.056 +639565.527|220132.517|105.211 +639569.944|220128.600|105.488 +639574.482|220124.571|105.397 +639578.987|220120.566|105.223 +639583.568|220116.497|104.970 +639588.046|220112.519|104.717 +639592.566|220108.502|104.541 +639597.019|220104.549|104.455 +639601.387|220100.669|104.556 +639605.877|220096.682|104.336 +639610.366|220092.692|104.117 +639614.777|220088.775|104.071 +639619.248|220084.801|103.727 +639623.695|220080.850|103.544 +639628.078|220076.955|103.413 +639632.467|220073.057|103.282 +639636.853|220069.161|103.193 +639641.172|220065.327|103.178 +639645.522|220061.465|103.291 +639649.759|220057.704|103.449 +639654.075|220053.872|103.507 +639658.458|220049.977|103.266 +639662.661|220046.246|103.617 +639661.055|220045.192|103.257 +639656.513|220049.209|103.449 +639652.081|220053.129|103.404 +639647.656|220057.042|103.352 +639643.209|220060.974|103.157 +639638.685|220064.976|103.105 +639634.141|220068.997|103.163 +639629.642|220072.974|103.266 +639625.088|220077.004|103.413 +639620.541|220081.027|103.547 +639615.978|220085.066|103.779 +639611.366|220089.147|104.007 +639606.815|220093.177|104.220 +639602.170|220097.285|104.403 +639597.680|220101.257|104.348 +639593.057|220105.347|104.464 +639588.472|220109.407|104.678 +639583.843|220113.504|104.864 +639579.167|220117.640|105.037 +639574.580|220121.703|105.321 +639569.931|220125.815|105.406 +639565.399|220129.823|105.168 +639556.231|220137.924|104.742 +639551.640|220141.984|104.595 +639547.126|220145.968|104.035 +639542.484|220150.074|103.916 +639537.805|220154.213|104.013 +639533.142|220158.340|104.050 +639528.506|220162.446|104.257 +639523.821|220166.588|104.156 +639519.142|220170.730|104.358 +639514.372|220174.955|104.787 +639509.672|220179.118|105.141 +639504.936|220183.312|105.449 +639490.552|220196.062|107.518 +639485.797|220200.271|107.720 +639481.076|220204.450|107.765 +639476.422|220208.565|107.717 +639471.673|220212.768|107.649 +639457.747|220225.070|106.214 +639453.019|220229.255|106.098 +639448.371|220233.363|105.812 +639443.659|220237.530|105.616 +639424.773|220254.227|104.626 +639415.379|220262.524|103.559 +639410.673|220266.684|103.126 +639406.001|220270.808|102.447 +639401.252|220275.005|101.971 +639396.515|220279.190|101.422 +639391.824|220283.336|100.929 +639387.039|220287.560|100.389 +639382.305|220291.745|99.865 +639377.407|220296.082|100.170 +639372.643|220300.292|99.533 +639358.074|220313.185|99.740 +639353.160|220317.537|100.292 +639348.235|220321.896|100.572 +639343.340|220326.230|100.660 +639328.834|220339.047|99.246 +639323.909|220343.406|99.252 +639318.931|220347.816|99.712 +639313.966|220352.214|100.100 +639309.037|220356.573|100.209 +639304.087|220360.953|100.121 +639299.174|220365.303|100.161 +639294.166|220369.731|100.170 +639289.250|220374.084|100.301 +639284.251|220378.510|100.298 +639279.322|220382.868|100.127 +639274.378|220387.230|99.219 +639253.981|220405.323|102.913 +639248.906|220409.822|103.846 +639243.810|220414.342|104.556 +639228.570|220427.842|105.936 +639197.867|220455.051|109.570 +639177.342|220473.235|111.642 +639167.049|220482.361|112.761 +639161.910|220486.912|112.971 +639151.614|220496.038|113.749 +639141.351|220505.130|114.270 +639136.173|220509.720|114.565 +639131.049|220514.259|114.800 +639125.877|220518.840|115.059 +639120.741|220523.387|114.861 +639115.617|220527.926|115.196 +639100.109|220541.663|115.605 +639094.967|220546.217|115.657 +639074.277|220564.532|115.602 +639069.092|220569.126|115.708 +639063.908|220573.719|115.812 +639043.166|220592.089|116.589 +639037.945|220596.713|116.653 +639032.772|220601.294|116.723 +639027.603|220605.872|116.797 +639022.385|220610.493|116.861 +639017.172|220615.108|116.845 +639012.009|220619.680|116.797 +639006.806|220624.285|116.620 +639001.603|220628.888|116.388 +638996.449|220633.448|116.230 +638991.240|220638.062|116.254 +638986.034|220642.674|116.266 +638980.871|220647.243|116.388 +638975.616|220651.897|116.437 +638970.404|220656.515|116.711 +638965.234|220661.096|117.187 +638960.025|220665.714|117.543 +638954.768|220670.374|117.876 +638949.613|220674.940|118.089 +638944.414|220679.546|118.229 +638939.211|220684.154|118.433 +638934.017|220688.754|118.421 +638928.823|220693.350|118.339 +638923.632|220697.947|118.177 +638918.445|220702.531|117.690 +638913.257|220707.118|117.214 +638908.069|220711.705|116.653 +638902.875|220716.305|116.614 +638897.681|220720.904|116.726 +638892.485|220725.507|116.867 +638887.340|220730.067|117.135 +638882.097|220734.706|117.187 +638876.906|220739.302|117.123 +638871.764|220743.856|117.132 +638866.570|220748.452|117.083 +638861.380|220753.049|117.156 +638856.241|220757.599|117.120 +638851.050|220762.196|117.174 +638845.859|220766.792|117.086 +638840.714|220771.346|117.089 +638835.523|220775.942|117.202 +638830.333|220780.538|117.190 +638825.240|220785.050|117.379 +638820.052|220789.646|117.620 +638814.858|220794.242|117.309 +638809.762|220798.753|117.205 +638804.565|220803.350|116.934 +638799.417|220807.903|116.580 +638794.281|220812.457|117.120 +638789.139|220817.011|117.150 +638783.994|220821.565|117.135 +638778.901|220826.079|117.162 +638773.756|220830.636|117.147 +638768.605|220835.192|116.918 +638763.511|220839.706|117.083 +638758.357|220844.266|116.769 +638753.270|220848.777|117.059 +638748.116|220853.340|116.851 +638743.017|220857.857|116.854 +638737.960|220862.332|116.723 +638732.812|220866.895|116.675 +638727.706|220871.412|116.638 +638722.653|220875.889|116.608 +638717.560|220880.403|116.824 +638697.235|220898.405|116.778 +638682.029|220911.877|117.229 +638671.937|220920.823|117.851 +638666.886|220925.300|118.043 +638661.839|220929.772|118.339 +638651.756|220938.712|119.165 +638646.751|220943.147|119.372 +638631.642|220956.539|120.082 +638621.624|220965.415|120.451 +638616.579|220969.890|120.860 +638586.553|220996.496|122.097 +638581.524|221000.949|122.109 +638576.614|221005.311|123.082 +638571.716|221009.660|124.179 +638551.766|221027.345|125.337 +638546.749|221031.783|125.044 +638531.869|221044.968|125.657 +638521.981|221053.740|126.837 +638517.004|221058.151|127.074 +638512.179|221062.442|128.425 +638507.198|221066.856|128.662 +638502.306|221071.193|129.318 +638497.369|221075.570|129.510 +638492.376|221079.993|129.644 +638487.493|221084.321|129.906 +638482.525|221088.725|130.330 +638477.651|221093.047|130.726 +638472.728|221097.412|131.113 +638467.830|221101.753|131.320 +638462.822|221106.187|131.415 +638457.961|221110.497|131.497 +638452.999|221114.893|131.613 +638448.070|221119.257|131.595 +638443.160|221123.607|131.750 +638438.237|221127.969|131.832 +638433.306|221132.336|131.851 +638428.398|221136.680|131.671 +638423.512|221141.011|132.122 +638408.833|221154.014|132.131 +638403.911|221158.372|132.341 +638399.055|221162.673|132.311 +638394.163|221167.001|132.418 +638389.283|221171.326|132.616 +638360.080|221197.177|132.597 +638340.485|221214.504|131.006 +638335.501|221218.906|130.001 +638316.149|221236.026|129.293 +638311.346|221240.278|129.312 +638306.579|221244.500|129.272 +638301.769|221248.758|129.293 +638292.296|221257.149|129.702 +638287.474|221261.416|129.714 +638282.771|221265.580|129.860 +638278.025|221269.783|130.055 +638273.346|221273.928|130.397 +638268.610|221278.122|130.378 +638259.295|221286.376|131.061 +638254.552|221290.574|131.058 +638221.829|221319.542|131.424 +638217.120|221323.708|131.186 +638212.365|221327.912|130.699 +638207.674|221332.060|130.327 +638203.038|221336.166|130.570 +638198.545|221340.146|131.055 +638170.589|221364.872|129.135 +638166.017|221368.919|129.037 +638161.448|221372.961|128.986 +638156.934|221376.960|129.232 +638147.973|221384.897|129.589 +638134.089|221397.162|127.739 +638129.462|221401.250|127.004 +638115.679|221413.433|125.432 +638111.095|221417.483|124.746 +638106.632|221421.431|124.691 +638102.124|221425.417|124.429 +638097.647|221429.377|124.081 +638093.115|221433.385|123.743 +638079.731|221445.220|122.868 +638075.177|221449.244|122.015 +638070.712|221453.191|121.609 +638061.787|221461.079|120.643 +638057.361|221464.990|120.244 +638053.012|221468.836|120.207 +638040.073|221480.278|120.460 +638009.895|221506.939|118.702 +638005.689|221510.661|118.778 +638001.510|221514.355|118.763 +637997.319|221518.058|118.711 +637993.317|221521.603|119.491 +637989.342|221525.127|120.155 +637976.851|221536.164|119.832 +637972.587|221539.928|119.107 +637968.466|221543.567|119.012 +637964.385|221547.176|119.092 +637960.285|221550.803|119.104 +637952.120|221558.018|118.872 +637939.864|221568.841|118.193 +637915.248|221590.567|114.907 +637911.255|221594.094|114.684 +637907.339|221597.553|114.337 +637895.421|221608.075|113.395 +637883.415|221618.667|111.414 +637879.391|221622.212|110.582 +637875.536|221625.616|110.176 +637867.757|221632.481|109.180 +637859.960|221639.360|107.973 +637844.803|221652.735|106.348 +637841.087|221656.017|106.196 +638038.753|221478.962|120.274 +638047.330|221471.351|120.186 +638051.534|221467.614|119.537 +638055.965|221463.685|119.951 +638064.890|221455.779|121.143 +638069.328|221451.844|121.411 +638073.833|221447.851|121.753 +638091.831|221431.900|123.548 +638096.306|221427.932|123.862 +638100.844|221423.912|124.255 +638105.459|221419.824|125.054 +638109.976|221415.816|125.133 +638114.554|221411.759|125.535 +638119.081|221407.748|125.971 +638132.973|221395.440|127.678 +638151.423|221379.088|129.290 +638155.870|221375.134|128.684 +638160.521|221371.010|128.891 +638165.096|221366.954|128.989 +638169.732|221362.839|129.168 +638179.349|221354.329|131.177 +638188.517|221346.184|131.140 +638197.923|221337.839|131.646 +638202.404|221333.849|130.823 +638207.052|221329.722|130.668 +638211.743|221325.559|130.769 +638221.149|221317.210|131.208 +638244.796|221296.221|131.622 +638249.450|221292.085|131.393 +638254.165|221287.897|131.217 +638268.305|221275.334|130.485 +638273.032|221271.130|130.153 +638277.812|221266.887|130.171 +638282.551|221262.675|129.946 +638287.303|221258.457|129.808 +638292.155|221254.150|130.028 +638306.493|221241.412|129.379 +638330.752|221219.881|130.119 +638335.641|221215.547|130.455 +638350.452|221202.413|131.979 +638355.399|221198.027|132.491 +638374.955|221180.669|132.741 +638384.748|221171.973|132.552 +638389.646|221167.623|132.500 +638394.538|221163.277|132.418 +638399.479|221158.891|132.347 +638404.426|221154.498|132.357 +638409.296|221150.170|132.158 +638419.187|221141.392|132.238 +638424.125|221137.003|131.845 +638429.063|221132.620|131.857 +638434.001|221128.237|131.915 +638438.978|221123.817|131.896 +638443.943|221119.407|131.814 +638448.893|221115.008|131.610 +638453.861|221110.598|131.579 +638458.827|221106.191|131.537 +638463.825|221101.750|131.381 +638468.775|221097.354|131.244 +638473.759|221092.926|130.979 +638478.733|221088.506|130.634 +638483.686|221084.102|130.116 +638488.651|221079.688|129.711 +638493.650|221075.253|129.632 +638498.682|221070.782|129.452 +638503.672|221066.350|129.342 +638513.526|221057.578|127.297 +638518.540|221053.122|126.962 +638533.530|221039.796|125.416 +638543.616|221030.838|124.944 +638548.682|221026.345|125.294 +638553.781|221021.822|125.499 +638558.868|221017.311|125.563 +638645.172|220940.653|119.439 +638650.314|220936.084|119.177 +638655.417|220931.555|119.031 +638660.495|220927.041|118.506 +638665.628|220922.484|118.031 +638670.788|220917.906|118.132 +638686.156|220904.257|117.199 +638701.530|220890.605|116.446 +638716.974|220876.898|116.367 +638722.174|220872.287|116.431 +638732.470|220863.149|116.544 +638737.625|220858.580|116.800 +638747.957|220849.408|116.711 +638753.105|220844.842|116.912 +638758.302|220840.234|117.077 +638763.444|220835.671|117.089 +638768.586|220831.108|117.184 +638773.771|220826.505|116.976 +638778.901|220821.946|116.464 +638784.098|220817.340|116.781 +638789.236|220812.780|116.745 +638794.378|220808.217|117.001 +638799.572|220803.612|117.339 +638804.714|220799.052|117.580 +638820.177|220785.333|117.635 +638825.310|220780.773|117.357 +638830.497|220776.171|117.321 +638835.633|220771.611|117.214 +638840.772|220767.051|117.129 +638845.957|220762.449|117.178 +638851.096|220757.892|117.388 +638856.235|220753.332|117.446 +638861.416|220748.733|117.351 +638866.506|220744.212|117.187 +638871.691|220739.613|117.330 +638876.830|220735.056|117.449 +638881.969|220730.496|117.534 +638887.108|220725.933|117.290 +638892.250|220721.371|117.141 +638897.389|220716.808|117.053 +638902.528|220712.248|117.220 +638907.664|220707.694|117.540 +638912.800|220703.144|117.964 +638917.935|220698.587|118.196 +638923.071|220694.033|118.439 +638928.162|220689.519|118.589 +638933.300|220684.965|118.717 +638938.446|220680.405|118.699 +638943.542|220675.885|118.610 +638948.696|220671.310|118.269 +638953.801|220666.781|117.930 +638958.904|220662.251|117.705 +638964.064|220657.673|117.315 +638969.179|220653.132|116.845 +638974.290|220648.596|116.544 +638979.399|220644.064|116.376 +638984.507|220639.535|116.324 +638989.612|220635.008|116.364 +638994.666|220630.528|116.434 +638999.768|220626.008|116.601 +639004.868|220621.487|116.803 +639009.921|220617.007|116.979 +639015.027|220612.484|117.107 +639020.089|220607.994|117.104 +639025.158|220603.501|117.037 +639030.276|220598.960|116.918 +639035.296|220594.510|116.891 +639040.417|220589.968|116.809 +639045.495|220585.463|116.644 +639050.576|220580.955|116.470 +639055.657|220576.447|116.291 +639060.695|220571.979|116.068 +639065.782|220567.468|115.913 +639070.814|220563.002|115.815 +639075.859|220558.528|115.617 +639085.942|220549.594|116.138 +639096.030|220540.645|115.864 +639101.075|220536.171|115.785 +639106.135|220531.684|115.529 +639111.146|220527.237|115.266 +639116.187|220522.766|115.291 +639126.258|220513.832|114.968 +639136.285|220504.938|114.660 +639141.318|220500.472|114.346 +639156.430|220487.061|113.313 +639161.471|220482.587|113.017 +639166.513|220478.112|112.721 +639176.589|220469.169|111.789 +639191.781|220455.679|110.054 +639196.724|220451.296|109.975 +639201.808|220446.782|109.475 +639206.786|220442.362|109.088 +639221.944|220428.902|107.384 +639227.028|220424.385|106.570 +639232.026|220419.947|106.156 +639257.252|220397.544|102.925 +639262.281|220393.073|101.968 +639272.385|220384.093|100.279 +639277.408|220379.637|99.987 +639282.334|220375.269|100.121 +639287.262|220370.905|100.279 +639292.215|220366.513|100.237 +639297.178|220362.111|100.136 +639302.134|220357.716|100.115 +639307.038|220353.370|100.142 +639312.073|220348.904|99.920 +639317.087|220344.451|99.109 +639326.954|220335.706|99.274 +639331.785|220331.436|100.014 +639336.677|220327.102|100.258 +639341.575|220322.761|100.109 +639346.464|220318.430|100.420 +639351.429|220314.026|100.176 +639380.824|220287.975|99.987 +639385.600|220283.747|100.542 +639390.437|220279.465|101.029 +639395.223|220275.231|101.563 +639400.023|220270.982|101.986 +639404.806|220266.751|102.565 +639419.076|220254.120|104.156 +639423.837|220249.905|104.589 +639438.105|220237.271|105.394 +639442.915|220233.010|105.571 +639452.358|220224.649|106.135 +639457.109|220220.440|106.403 +639471.176|220207.986|107.528 +639475.916|220203.786|107.628 +639480.655|220199.585|107.759 +639499.882|220182.523|105.702 +639509.355|220174.116|104.751 +639514.113|220169.892|104.330 +639523.529|220161.546|103.885 +639528.125|220157.474|104.160 +639532.767|220153.359|104.196 +639537.415|220149.242|104.230 +639542.015|220145.166|104.260 +639546.602|220141.100|104.370 +639551.150|220137.077|104.723 +639564.704|220125.071|105.488 +639569.294|220120.999|105.132 +639573.836|220116.975|105.318 +639578.402|220112.928|105.132 +639582.992|220108.855|104.830 +639587.521|220104.838|104.611 +639592.017|220100.854|104.571 +639596.568|220096.816|104.272 +639601.094|220092.805|104.132 +639605.511|220088.891|104.291 +639610.065|220084.852|104.035 +639614.509|220080.911|103.836 +639619.032|220076.897|103.510 +639623.476|220072.959|103.364 +639627.929|220069.012|103.178 +639632.309|220065.129|103.108 +639636.674|220061.258|103.126 +639641.044|220057.384|103.135 +639645.382|220053.543|103.321 +639649.740|220049.681|103.419 +639654.056|220045.856|103.495 +639658.394|220042.013|103.486 +639658.924|220039.166|103.401 +639654.477|220043.104|103.413 +639650.094|220046.984|103.376 +639645.680|220050.888|103.257 +639641.282|220054.781|103.090 +639636.817|220058.731|103.004 +639632.385|220062.654|103.017 +639627.856|220066.662|103.023 +639623.329|220070.673|103.285 +639618.724|220074.748|103.434 +639614.176|220078.778|103.583 +639609.616|220082.816|103.821 +639605.057|220086.855|104.068 +639600.515|220090.875|103.992 +639595.882|220094.975|104.126 +639591.240|220099.087|104.327 +639586.653|220103.150|104.541 +639582.014|220107.258|104.772 +639577.369|220111.373|105.050 +639572.656|220115.546|105.171 +639568.020|220119.645|105.174 +639563.357|220123.775|105.351 +639558.764|220127.842|105.187 +639554.134|220131.935|104.940 +639549.534|220136.001|104.556 +639544.959|220140.046|104.053 +639540.277|220144.194|104.156 +639535.571|220148.355|104.108 +639530.838|220152.546|103.977 +639526.129|220156.712|103.998 +639521.477|220160.824|103.715 +639516.716|220165.036|103.769 +639511.903|220169.300|104.160 +639507.118|220173.540|104.702 +639478.013|220199.326|107.573 +639473.209|220203.572|107.494 +639468.442|220207.788|107.232 +639454.244|220220.336|105.897 +639449.425|220224.600|106.019 +639444.591|220228.877|105.946 +639439.864|220233.050|105.199 +639435.075|220237.283|104.873 +639425.505|220245.744|104.217 +639415.812|220254.315|103.757 +639411.060|220258.513|103.254 +639406.217|220262.792|102.709 +639401.493|220266.965|102.062 +639396.637|220271.256|101.621 +639391.833|220275.502|101.203 +639386.990|220279.782|100.706 +639382.174|220284.037|100.033 +639377.392|220288.258|99.478 +639352.819|220310.006|99.676 +639347.790|220314.459|99.981 +639342.870|220318.814|100.221 +639337.969|220323.149|99.978 +639333.080|220327.468|99.642 +639328.209|220331.774|99.203 +639308.345|220349.355|99.837 +639303.368|220353.766|99.978 +639298.400|220358.161|100.042 +639293.441|220362.550|100.057 +639288.479|220366.939|100.124 +639278.551|220375.724|99.920 +639273.613|220380.085|99.399 +639268.542|220384.587|100.548 +639248.251|220402.580|103.855 +639233.014|220416.085|106.010 +639228.027|220420.499|106.235 +639212.845|220433.953|107.860 +639167.116|220474.473|112.639 +639162.072|220478.938|112.886 +639157.027|220483.404|113.166 +639151.925|220487.924|113.584 +639146.835|220492.429|113.892 +639136.666|220501.430|114.422 +639131.579|220505.931|114.797 +639126.520|220510.409|114.834 +639121.390|220514.954|115.221 +639106.125|220528.456|115.410 +639101.063|220532.940|115.675 +639090.803|220542.017|116.028 +639070.360|220560.101|115.949 +639065.273|220564.602|116.050 +639060.131|220569.153|116.236 +639054.995|220573.698|116.394 +639044.723|220582.790|116.748 +639039.545|220587.371|116.879 +639034.418|220591.907|116.946 +639029.288|220596.445|117.144 +639024.122|220601.020|117.159 +639018.995|220605.552|117.299 +639013.832|220610.121|117.272 +639008.672|220614.684|117.181 +639003.514|220619.244|117.043 +638998.360|220623.801|116.833 +638993.206|220628.361|116.699 +638988.052|220632.917|116.510 +638982.895|220637.480|116.470 +638977.686|220642.089|116.519 +638972.522|220646.658|116.681 +638967.304|220651.279|117.138 +638962.141|220655.854|117.498 +638956.977|220660.426|117.872 +638951.768|220665.034|118.193 +638946.559|220669.649|118.601 +638941.405|220674.209|118.756 +638936.205|220678.808|118.842 +638931.011|220683.405|118.836 +638925.818|220687.998|118.735 +638920.627|220692.588|118.522 +638915.485|220697.133|118.266 +638910.294|220701.723|118.043 +638905.055|220706.356|117.772 +638899.910|220710.901|117.507 +638894.719|220715.494|117.397 +638889.525|220720.087|117.336 +638884.282|220724.723|117.336 +638879.137|220729.280|117.623 +638873.895|220733.916|117.562 +638868.704|220738.506|117.458 +638863.562|220743.057|117.501 +638858.320|220747.696|117.662 +638853.132|220752.283|117.623 +638847.941|220756.877|117.549 +638842.750|220761.467|117.461 +638837.557|220766.060|117.342 +638832.366|220770.654|117.412 +638827.172|220775.247|117.446 +638821.935|220779.883|117.653 +638811.606|220789.024|118.043 +638806.363|220793.660|117.955 +638801.218|220798.211|117.827 +638796.024|220802.804|117.644 +638790.828|220807.398|117.409 +638785.679|220811.951|117.239 +638780.434|220816.587|117.144 +638775.240|220821.187|117.031 +638770.144|220825.695|117.129 +638764.944|220830.294|116.836 +638759.747|220834.894|116.793 +638754.590|220839.450|116.492 +638744.251|220848.604|116.675 +638739.088|220853.169|116.211 +638728.737|220862.329|116.224 +638687.701|220898.655|117.470 +638682.584|220903.181|117.275 +638677.472|220907.704|117.257 +638662.205|220921.231|118.595 +638657.163|220925.697|118.997 +638652.067|220930.211|119.302 +638646.959|220934.731|119.387 +638621.651|220957.134|120.003 +638611.684|220965.970|121.216 +638576.571|220997.054|122.435 +638571.569|221001.485|122.877 +638566.607|221005.881|123.173 +638551.769|221019.036|125.374 +638546.804|221023.425|125.078 +638541.738|221027.906|124.801 +638536.816|221032.264|125.063 +638531.838|221036.672|125.267 +638517.046|221049.781|127.007 +638512.127|221054.140|127.346 +638507.366|221058.373|129.403 +638502.398|221062.769|129.232 +638497.466|221067.136|129.495 +638492.519|221071.516|129.586 +638487.572|221075.893|129.729 +638482.723|221080.191|130.354 +638477.797|221084.556|130.708 +638472.960|221088.838|130.991 +638468.022|221093.212|131.262 +638463.158|221097.516|131.323 +638458.220|221101.890|131.604 +638453.346|221106.203|131.619 +638448.427|221110.555|131.680 +638443.550|221114.871|131.704 +638438.633|221119.224|131.820 +638433.772|221123.528|132.012 +638428.889|221127.850|132.021 +638424.003|221132.175|132.040 +638419.193|221136.430|132.329 +638414.292|221140.767|132.250 +638409.391|221145.104|132.195 +638404.566|221149.375|132.390 +638399.720|221153.666|132.430 +638394.815|221158.007|132.421 +638390.024|221162.252|132.527 +638385.129|221166.587|132.625 +638370.620|221179.434|132.875 +638351.268|221196.561|132.442 +638341.527|221205.174|131.534 +638336.620|221209.512|131.049 +638326.958|221218.061|130.513 +638307.712|221235.088|129.607 +638293.475|221247.694|129.982 +638288.739|221251.888|130.202 +638284.042|221256.046|130.043 +638279.265|221260.273|130.037 +638274.565|221264.437|130.220 +638269.853|221268.610|130.339 +638241.869|221293.399|131.674 +638232.436|221301.748|131.506 +638227.788|221305.865|131.567 +638223.109|221310.005|131.464 +638218.363|221314.199|131.006 +638213.669|221318.353|130.866 +638209.024|221322.462|130.732 +638204.492|221326.482|131.256 +638199.908|221330.545|131.491 +638185.948|221342.896|130.887 +638181.354|221346.959|130.887 +638176.767|221351.022|130.924 +638167.312|221359.373|129.269 +638162.694|221363.457|128.928 +638158.110|221367.514|128.800 +638153.550|221371.547|128.541 +638139.981|221383.562|128.745 +638130.776|221391.697|127.715 +638121.531|221399.869|126.575 +638116.904|221403.956|125.892 +638112.323|221408.004|125.209 +638098.680|221420.068|124.036 +638094.157|221424.070|123.725 +638089.661|221428.042|123.325 +638085.165|221432.019|122.929 +638067.210|221447.893|121.237 +638062.756|221451.831|120.920 +638053.838|221459.717|120.034 +638049.391|221463.648|119.555 +638045.084|221467.462|119.497 +638040.814|221471.244|119.863 +638032.200|221478.870|119.835 +638027.948|221482.634|119.857 +638019.429|221490.175|119.875 +638006.295|221501.785|118.229 +638002.068|221505.528|118.220 +637997.895|221509.222|118.244 +637993.655|221512.977|118.208 +637989.647|221516.534|118.967 +637977.446|221527.349|120.076 +637968.820|221534.969|118.674 +637964.751|221538.572|118.796 +637960.627|221542.223|118.699 +637956.497|221545.878|118.592 +637952.379|221549.520|118.342 +637944.238|221556.725|118.034 +637940.123|221560.365|117.845 +637936.130|221563.900|117.936 +637915.596|221582.051|115.504 +637911.609|221585.578|115.279 +637907.473|221589.232|114.495 +637903.477|221592.765|114.062 +637899.499|221596.279|113.730 +637895.482|221599.833|113.236 +637891.471|221603.378|112.798 +637887.493|221606.893|112.292 +637883.500|221610.422|111.746 +637879.565|221613.897|111.234 +637875.627|221617.378|110.722 +637871.774|221620.788|110.548 +637867.839|221624.266|110.076 +637859.820|221631.341|108.021 +637855.940|221634.770|107.604 +637848.384|221641.454|106.955 +637836.945|221651.561|105.412 +638037.760|221471.643|119.509 +638041.978|221467.903|119.378 +638046.300|221464.069|119.268 +638050.631|221460.229|119.454 +638059.556|221452.331|120.604 +638063.951|221448.436|120.908 +638068.368|221444.528|121.320 +638081.837|221432.598|122.768 +638086.293|221428.651|122.954 +638090.786|221424.671|123.359 +638095.282|221420.690|123.786 +638099.942|221416.572|125.038 +638113.396|221404.651|125.593 +638118.005|221400.573|126.187 +638122.577|221396.522|126.626 +638127.146|221392.478|127.053 +638140.993|221380.218|128.711 +638150.012|221372.217|128.379 +638154.584|221368.167|128.696 +638159.153|221364.116|128.742 +638163.783|221360.013|128.879 +638173.253|221351.640|130.881 +638177.892|221347.529|130.845 +638182.473|221343.466|130.793 +638187.103|221339.363|131.037 +638201.066|221326.991|131.430 +638205.589|221322.974|130.866 +638210.185|221318.899|130.714 +638214.876|221314.741|130.857 +638219.570|221310.581|131.015 +638224.289|221306.402|131.357 +638229.007|221302.220|131.412 +638233.747|221298.020|131.619 +638238.447|221293.859|131.912 +638257.268|221277.168|131.275 +638261.956|221273.008|130.988 +638266.604|221268.881|130.455 +638271.380|221264.647|130.421 +638276.120|221260.441|130.177 +638280.823|221256.271|130.040 +638285.675|221251.971|130.241 +638290.418|221247.764|130.068 +638324.214|221217.815|130.769 +638329.018|221213.553|130.476 +638333.913|221209.219|130.863 +638338.808|221204.885|131.284 +638343.761|221200.499|131.787 +638348.656|221196.168|132.247 +638353.579|221191.806|132.594 +638368.221|221178.831|132.826 +638382.815|221165.886|132.527 +638387.787|221161.481|132.646 +638392.621|221157.193|132.494 +638397.568|221152.810|132.466 +638402.460|221148.472|132.402 +638407.404|221144.089|132.402 +638412.302|221139.746|132.024 +638417.264|221135.348|132.213 +638422.180|221130.986|132.046 +638427.167|221126.566|132.070 +638432.041|221122.244|131.991 +638436.991|221117.855|131.723 +638441.971|221113.442|131.747 +638446.945|221109.031|131.738 +638451.901|221104.636|131.601 +638456.858|221100.241|131.473 +638461.807|221095.852|131.308 +638466.812|221091.414|131.204 +638471.753|221087.031|130.994 +638476.743|221082.605|130.796 +638481.714|221078.195|130.418 +638486.646|221073.815|129.677 +638491.632|221069.392|129.473 +638496.594|221064.997|129.552 +638501.605|221060.547|129.156 +638516.437|221047.373|126.879 +638531.369|221034.117|125.182 +638536.444|221029.615|124.993 +638541.415|221025.202|124.758 +638546.509|221020.685|124.862 +638551.547|221016.216|124.880 +638566.613|221002.833|123.264 +638571.667|220998.343|122.960 +638576.723|220993.856|122.664 +638586.840|220984.877|122.182 +638591.866|220980.411|121.490 +638596.956|220975.888|121.039 +638602.013|220971.402|120.826 +638607.136|220966.854|120.911 +638612.242|220962.325|120.701 +638617.277|220957.850|120.198 +638622.376|220953.327|119.918 +638642.795|220935.207|119.354 +638647.910|220930.668|119.448 +638658.142|220921.585|118.827 +638663.223|220917.071|118.284 +638668.353|220912.514|117.787 +638673.446|220907.994|117.543 +638678.585|220903.431|117.214 +638683.739|220898.859|117.193 +638688.844|220894.330|117.205 +638694.005|220889.755|117.385 +638699.150|220885.189|117.281 +638714.563|220871.506|116.452 +638719.718|220866.937|116.565 +638724.908|220862.329|116.416 +638730.011|220857.805|116.531 +638735.204|220853.197|116.528 +638740.404|220848.585|116.745 +638745.513|220844.059|117.114 +638750.691|220839.463|116.632 +638755.897|220834.848|117.181 +638761.039|220830.285|117.263 +638766.233|220825.682|117.406 +638771.427|220821.077|117.620 +638776.569|220816.517|117.641 +638781.757|220811.915|117.665 +638786.944|220807.312|117.668 +638792.089|220802.752|117.952 +638797.277|220798.150|118.159 +638802.468|220793.550|118.324 +638817.976|220779.792|118.156 +638823.158|220775.189|117.845 +638828.342|220770.590|117.802 +638833.530|220765.987|117.668 +638838.669|220761.431|117.744 +638843.854|220756.831|117.781 +638854.177|220747.675|118.019 +638859.359|220743.078|117.964 +638864.547|220738.476|117.879 +638869.734|220733.877|117.879 +638874.919|220729.274|117.845 +638880.110|220724.665|117.479 +638885.249|220720.109|117.555 +638895.621|220710.907|117.738 +638900.760|220706.350|117.872 +638905.948|220701.754|118.101 +638911.132|220697.157|118.369 +638916.268|220692.607|118.723 +638926.589|220683.447|119.083 +638931.731|220678.884|119.113 +638936.918|220674.279|119.083 +638942.112|220669.664|118.939 +638947.215|220665.135|118.674 +638952.415|220660.514|118.366 +638957.572|220655.930|117.927 +638962.680|220651.394|117.638 +638967.889|220646.761|117.162 +638973.050|220642.177|116.858 +638978.158|220637.642|116.699 +638983.312|220633.064|116.632 +638988.463|220628.495|116.708 +638993.557|220623.975|116.992 +638998.705|220619.406|117.162 +639003.807|220614.879|117.324 +639008.909|220610.350|117.437 +639014.018|220605.815|117.440 +639019.129|220601.279|117.458 +639024.247|220596.732|117.293 +639029.361|220592.193|117.275 +639034.485|220587.639|117.080 +639039.609|220583.092|116.925 +639044.681|220578.587|116.870 +639049.762|220574.073|116.626 +639054.888|220569.519|116.513 +639059.924|220565.047|116.361 +639065.060|220560.485|116.129 +639070.089|220556.019|116.099 +639075.200|220551.475|115.565 +639090.376|220538.009|115.964 +639095.421|220533.528|115.815 +639100.465|220529.047|115.736 +639115.641|220515.566|115.007 +639120.637|220511.134|115.074 +639125.706|220506.629|114.782 +639130.714|220502.182|114.712 +639140.766|220493.252|114.151 +639145.801|220488.777|113.813 +639150.834|220484.306|113.523 +639155.823|220479.871|113.203 +639160.874|220475.384|112.782 +639165.857|220470.959|112.624 +639175.919|220462.010|111.271 +639210.995|220430.841|108.799 +639216.009|220426.382|108.113 +639221.041|220421.904|107.302 +639246.078|220399.638|104.038 +639251.110|220395.167|103.483 +639271.224|220377.263|99.874 +639276.165|220372.874|99.441 +639281.060|220368.533|99.859 +639285.921|220364.220|100.151 +639290.826|220359.865|100.081 +639295.730|220355.509|100.054 +639300.649|220351.141|99.920 +639305.624|220346.719|99.341 +639330.047|220325.041|99.374 +639334.881|220320.756|99.697 +639339.716|220316.467|100.020 +639344.562|220312.164|99.868 +639349.536|220307.744|99.560 +639373.823|220286.192|99.728 +639378.623|220281.930|99.716 +639383.378|220277.715|100.407 +639388.145|220273.494|101.041 +639392.900|220269.275|101.401 +639397.698|220265.023|101.837 +639402.431|220260.826|102.376 +639416.647|220248.226|103.654 +639421.472|220243.946|103.974 +639426.224|220239.731|104.135 +639430.945|220235.540|104.495 +639435.700|220231.327|105.004 +639445.067|220223.025|105.991 +639449.874|220218.754|105.879 +639463.989|220206.239|106.955 +639468.707|220202.054|107.168 +639473.340|220197.946|107.589 +639507.018|220168.011|104.150 +639511.827|220163.738|103.730 +639516.549|220159.547|103.553 +639521.264|220155.359|103.425 +639530.573|220147.102|103.922 +639535.212|220142.981|103.983 +639539.793|220138.918|104.117 +639544.465|220134.773|104.318 +639549.053|220130.704|104.714 +639553.615|220126.659|104.995 +639558.139|220122.648|105.223 +639562.787|220118.521|105.342 +639567.414|220114.412|105.324 +639572.044|220110.297|105.046 +639576.640|220106.216|104.961 +639581.215|220102.153|104.742 +639585.866|220098.020|104.416 +639590.505|220093.902|104.193 +639595.096|220089.824|103.961 +639599.595|220085.828|103.937 +639604.097|220081.832|103.931 +639608.632|220077.802|103.766 +639613.192|220073.752|103.501 +639617.819|220069.640|102.940 +639626.755|220061.706|102.916 +639631.230|220057.734|102.895 +639635.717|220053.748|102.828 +639640.081|220049.877|102.879 +639644.473|220045.978|103.047 +639648.853|220042.092|103.297 +639653.230|220038.209|103.330 +639657.653|220034.286|103.413 +639655.556|220034.042|103.288 +639651.219|220037.874|103.269 +639646.869|220041.717|103.087 +639642.596|220045.490|102.800 +639638.234|220049.343|102.687 +639633.802|220053.260|102.681 +639629.410|220057.143|102.757 +639624.948|220061.090|102.696 +639615.981|220069.018|103.053 +639611.396|220073.078|103.641 +639606.910|220077.046|103.763 +639602.384|220081.045|103.833 +639597.854|220085.051|103.952 +639593.270|220089.104|104.099 +639588.692|220093.155|104.242 +639584.092|220097.224|104.516 +639574.918|220105.335|104.714 +639570.239|220109.477|105.187 +639565.582|220113.598|105.312 +639560.955|220117.686|105.281 +639556.356|220121.752|105.141 +639551.765|220125.805|104.949 +639547.111|220129.917|104.583 +639542.496|220133.992|104.288 +639537.882|220138.068|104.007 +639533.246|220142.167|103.864 +639528.485|220146.379|103.855 +639519.115|220154.667|103.355 +639514.339|220158.895|103.480 +639509.569|220163.116|103.614 +639504.722|220167.414|104.211 +639490.129|220180.346|105.571 +639470.585|220197.662|107.375 +639465.784|220201.908|107.009 +639451.513|220214.521|105.461 +639436.923|220227.435|105.446 +639432.168|220231.632|104.565 +639427.330|220235.909|104.217 +639422.509|220240.170|103.794 +639417.580|220244.528|103.419 +639412.700|220248.847|103.416 +639402.968|220257.449|102.602 +639398.091|220261.759|101.953 +639393.196|220266.084|101.432 +639388.334|220270.385|101.047 +639383.403|220274.743|100.468 +639378.584|220279.001|99.822 +639373.573|220283.433|99.810 +639348.719|220305.427|99.475 +639343.684|220309.887|99.819 +639338.637|220314.355|99.883 +639328.737|220323.112|99.389 +639298.601|220349.791|99.883 +639293.581|220354.235|99.969 +639288.512|220358.722|100.081 +639278.493|220367.585|99.749 +639273.549|220371.953|99.261 +639268.398|220376.525|100.203 +639258.084|220385.681|102.361 +639252.957|220390.229|103.236 +639247.867|220394.740|103.788 +639237.610|220403.835|105.293 +639232.545|220408.322|105.748 +639227.467|220412.824|106.363 +639222.300|220417.411|107.409 +639212.068|220426.482|108.631 +639207.011|220430.963|109.201 +639191.726|220444.508|110.289 +639171.420|220462.500|112.124 +639161.267|220471.495|112.734 +639156.219|220475.966|113.038 +639146.027|220485.001|113.745 +639140.998|220489.457|113.950 +639135.920|220493.956|114.163 +639130.827|220498.470|114.614 +639125.813|220502.911|114.706 +639120.689|220507.449|114.989 +639100.444|220525.387|115.733 +639095.339|220529.910|115.922 +639090.297|220534.375|115.919 +639085.198|220538.893|116.083 +639069.936|220552.404|116.132 +639064.901|220556.864|116.147 +639059.808|220561.378|116.403 +639054.672|220565.928|116.568 +639049.588|220570.430|116.665 +639044.504|220574.932|116.836 +639039.426|220579.428|116.900 +639034.296|220583.976|117.107 +639029.215|220588.478|117.330 +639024.091|220593.016|117.434 +639018.971|220597.551|117.562 +639013.899|220602.041|117.626 +639008.787|220606.570|117.616 +639003.676|220611.094|117.546 +638998.570|220615.614|117.431 +638993.468|220620.131|117.242 +638988.366|220624.645|116.998 +638983.266|220629.159|116.763 +638978.155|220633.682|116.812 +638973.043|220638.212|116.946 +638967.877|220642.790|117.299 +638962.717|220647.362|117.574 +638957.648|220651.858|118.095 +638952.491|220656.427|118.339 +638947.330|220660.999|118.711 +638942.225|220665.525|119.028 +638937.025|220670.134|119.241 +638931.877|220674.690|119.329 +638926.781|220679.204|119.329 +638921.590|220683.801|119.256 +638911.309|220692.896|118.753 +638906.170|220697.444|118.412 +638901.031|220701.994|118.263 +638895.840|220706.585|118.022 +638890.699|220711.138|117.946 +638885.557|220715.692|117.936 +638880.366|220720.285|117.772 +638875.224|220724.839|117.796 +638870.033|220729.442|118.189 +638864.891|220733.992|118.183 +638859.703|220738.586|118.095 +638854.561|220743.139|118.135 +638849.377|220747.730|118.065 +638844.235|220752.280|117.936 +638839.047|220756.877|118.150 +638833.905|220761.431|118.089 +638828.714|220766.024|117.967 +638823.575|220770.575|117.936 +638818.388|220775.171|118.208 +638813.203|220779.767|118.525 +638782.159|220807.254|118.250 +638777.011|220811.805|118.068 +638771.820|220816.401|118.049 +638766.620|220820.998|117.757 +638756.275|220830.151|117.452 +638751.075|220834.750|117.272 +638745.927|220839.304|117.178 +638740.724|220843.907|116.955 +638735.528|220848.506|116.946 +638730.383|220853.060|117.080 +638725.231|220857.620|116.989 +638714.883|220866.776|117.077 +638709.735|220871.332|117.190 +638704.581|220875.892|117.156 +638689.128|220889.572|117.360 +638684.016|220894.095|117.229 +638678.859|220898.658|117.232 +638673.708|220903.218|117.400 +638668.606|220907.735|117.568 +638663.461|220912.292|117.848 +638658.386|220916.793|118.516 +638653.295|220921.301|118.961 +638648.160|220925.852|119.396 +638643.091|220930.336|119.336 +638637.949|220934.893|119.692 +638632.877|220939.379|119.613 +638627.762|220943.906|119.665 +638622.663|220948.420|119.966 +638617.591|220952.909|119.951 +638612.489|220957.426|120.232 +638607.447|220961.895|120.713 +638602.385|220966.375|120.866 +638597.325|220970.856|121.106 +638592.271|220975.334|121.414 +638587.233|220979.799|121.963 +638582.182|220984.270|122.338 +638577.174|220988.708|122.640 +638572.124|220993.180|123.054 +638567.092|220997.633|123.066 +638562.090|221002.065|123.472 +638557.073|221006.509|123.722 +638542.138|221019.737|124.737 +638537.108|221024.190|124.868 +638532.140|221028.588|125.197 +638527.169|221032.990|125.480 +638512.395|221046.087|127.373 +638507.552|221050.385|128.541 +638502.642|221054.737|128.967 +638497.725|221059.090|129.379 +638492.781|221063.467|129.482 +638487.847|221067.837|129.711 +638482.948|221072.175|130.348 +638478.081|221076.491|130.763 +638473.152|221080.855|131.101 +638468.297|221085.153|131.198 +638463.347|221089.533|131.360 +638458.446|221093.874|131.512 +638453.544|221098.214|131.701 +638448.677|221102.521|131.759 +638443.763|221106.870|131.878 +638438.890|221111.183|131.924 +638433.955|221115.551|131.881 +638429.090|221119.855|132.052 +638424.219|221124.168|132.183 +638419.334|221128.493|132.180 +638414.451|221132.815|132.253 +638409.601|221137.103|132.207 +638399.896|221145.693|132.546 +638395.044|221149.984|132.536 +638390.207|221154.267|132.671 +638385.400|221158.516|132.689 +638380.542|221162.813|132.695 +638375.729|221167.071|132.692 +638370.943|221171.308|132.924 +638366.121|221175.572|132.893 +638356.505|221184.079|133.100 +638351.695|221188.328|132.863 +638337.068|221201.249|131.208 +638332.295|221205.470|131.336 +638327.418|221209.777|130.744 +638322.721|221213.938|131.442 +638313.336|221222.249|132.226 +638279.829|221251.861|130.506 +638275.065|221256.073|130.250 +638270.380|221260.218|130.558 +638265.668|221264.388|130.680 +638228.388|221297.368|131.528 +638223.658|221301.546|131.110 +638219.052|221305.622|131.156 +638214.410|221309.724|131.003 +638209.722|221313.869|130.906 +638205.181|221317.887|131.076 +638191.407|221330.076|131.717 +638182.168|221338.241|131.061 +638177.493|221342.371|130.894 +638172.951|221346.389|130.900 +638158.854|221358.834|128.809 +638154.267|221362.887|128.672 +638149.698|221366.926|128.650 +638145.120|221370.971|128.327 +638140.694|221374.891|128.818 +638126.981|221387.006|127.879 +638122.275|221391.161|127.010 +638117.703|221395.196|126.328 +638113.109|221399.250|125.825 +638108.513|221403.310|125.322 +638090.374|221419.330|123.505 +638085.860|221423.317|123.011 +638081.355|221427.295|122.597 +638076.908|221431.224|122.219 +638063.515|221443.056|121.228 +638059.050|221446.997|120.616 +638054.594|221450.932|120.311 +638045.739|221458.759|119.528 +638041.332|221462.652|119.028 +638036.964|221466.517|118.958 +638024.050|221477.944|119.009 +638019.831|221481.677|119.201 +638015.585|221485.436|119.281 +638002.558|221496.948|118.147 +637998.227|221500.776|117.705 +637994.018|221504.501|117.796 +637977.583|221519.055|118.924 +637969.225|221526.447|118.631 +637965.135|221530.065|118.668 +637961.038|221533.689|118.683 +637956.771|221537.456|118.001 +637944.530|221548.289|117.943 +637940.434|221551.910|117.821 +637928.239|221562.687|117.043 +637916.071|221573.444|116.080 +637899.886|221587.742|114.346 +637895.835|221591.320|113.938 +637887.856|221598.370|113.005 +637883.842|221601.912|112.371 +637879.879|221605.414|111.938 +637868.004|221615.902|110.411 +637848.393|221633.215|107.275 +637844.486|221636.665|106.592 +637836.994|221643.286|106.055 +638033.413|221467.577|119.034 +638037.696|221463.773|118.961 +638042.027|221459.933|119.116 +638050.942|221452.026|120.186 +638055.374|221448.094|120.390 +638059.843|221444.132|120.783 +638064.421|221440.078|121.710 +638073.327|221432.181|122.460 +638077.710|221428.285|122.289 +638082.194|221424.308|122.621 +638086.714|221420.303|123.133 +638104.935|221404.148|125.124 +638109.485|221400.110|125.401 +638114.124|221396.001|126.133 +638118.724|221391.926|126.703 +638123.348|221387.823|127.166 +638132.665|221379.566|128.507 +638141.758|221371.498|128.781 +638146.269|221367.490|128.495 +638150.847|221363.427|128.571 +638155.431|221359.358|128.711 +638160.131|221355.191|129.199 +638169.589|221346.812|130.878 +638174.228|221342.697|130.842 +638178.849|221338.595|131.019 +638183.491|221334.474|131.040 +638202.221|221317.859|131.970 +638206.726|221313.848|131.028 +638211.371|221309.721|130.909 +638220.792|221301.360|131.171 +638225.526|221297.160|131.323 +638230.299|221292.933|131.720 +638235.075|221288.693|131.881 +638263.431|221263.529|131.025 +638268.122|221259.359|130.476 +638272.880|221255.137|130.339 +638311.718|221220.701|132.262 +638316.555|221216.409|132.198 +638326.025|221207.991|130.680 +638331.005|221203.580|131.314 +638335.818|221199.307|131.162 +638340.896|221194.814|132.216 +638365.457|221173.033|132.942 +638370.367|221168.678|132.902 +638375.256|221164.337|132.753 +638380.203|221159.945|132.677 +638385.117|221155.590|132.722 +638390.057|221151.203|132.643 +638395.001|221146.817|132.591 +638399.948|221142.431|132.594 +638409.851|221133.641|132.338 +638414.780|221129.267|132.247 +638419.763|221124.847|132.232 +638429.700|221116.026|132.006 +638434.674|221111.613|131.973 +638439.648|221107.199|131.960 +638444.665|221102.749|131.890 +638449.625|221098.348|131.790 +638454.575|221093.953|131.622 +638459.631|221089.469|131.537 +638464.575|221085.080|131.332 +638469.571|221080.645|131.198 +638474.560|221076.216|131.015 +638479.586|221071.754|130.705 +638489.529|221062.918|129.540 +638494.528|221058.486|129.491 +638499.545|221054.030|129.147 +638519.494|221036.303|126.620 +638534.542|221022.937|125.166 +638539.611|221018.435|124.956 +638554.738|221005.003|124.020 +638559.783|221000.522|123.551 +638569.917|220991.528|123.207 +638575.017|220987.001|122.862 +638580.067|220982.515|122.502 +638585.121|220978.028|122.219 +638590.217|220973.505|121.835 +638595.243|220969.036|121.177 +638600.345|220964.510|120.893 +638605.445|220959.987|120.555 +638610.504|220955.500|120.415 +638615.601|220950.977|120.094 +638620.657|220946.493|119.909 +638625.763|220941.964|119.732 +638630.874|220937.432|119.686 +638635.980|220932.905|119.589 +638646.184|220923.853|119.253 +638656.365|220914.821|118.519 +638661.458|220910.301|118.205 +638666.557|220905.778|118.071 +638681.892|220892.178|117.357 +638687.046|220887.609|117.403 +638702.399|220873.996|117.318 +638712.640|220864.913|117.138 +638717.788|220860.351|117.077 +638722.936|220855.788|117.080 +638728.081|220851.225|117.040 +638733.181|220846.705|117.107 +638738.329|220842.142|117.223 +638743.477|220837.579|117.321 +638748.625|220833.016|117.537 +638753.773|220828.456|117.684 +638758.924|220823.893|118.031 +638764.075|220819.330|118.473 +638769.217|220814.774|118.546 +638800.008|220787.482|119.003 +638805.144|220782.928|119.043 +638810.280|220778.371|118.830 +638815.416|220773.818|118.580 +638820.552|220769.261|118.311 +638825.688|220764.704|118.269 +638830.827|220760.150|118.299 +638835.965|220755.597|118.369 +638841.101|220751.040|118.327 +638846.289|220746.443|118.266 +638851.428|220741.890|118.537 +638856.561|220737.339|118.558 +638861.697|220732.785|118.616 +638866.836|220728.229|118.467 +638871.975|220723.669|118.226 +638877.162|220719.069|118.217 +638882.304|220714.513|118.101 +638887.443|220709.956|118.174 +638892.582|220705.402|118.302 +638897.718|220700.848|118.449 +638902.860|220696.292|118.491 +638908.045|220691.701|118.860 +638913.132|220687.193|119.144 +638923.407|220678.086|119.485 +638928.546|220673.532|119.595 +638933.691|220668.972|119.543 +638938.839|220664.403|119.329 +638943.990|220659.837|119.098 +638949.144|220655.262|118.717 +638954.252|220650.727|118.327 +638959.407|220646.155|118.071 +638964.570|220641.574|117.653 +638969.733|220636.990|117.229 +638974.842|220632.460|117.147 +638979.999|220627.885|116.973 +638985.101|220623.365|117.123 +638990.249|220618.805|117.354 +638995.398|220614.245|117.586 +639000.500|220609.722|117.729 +639005.654|220605.156|117.845 +639010.811|220600.584|117.866 +639015.929|220596.046|117.732 +639021.092|220591.468|117.687 +639026.216|220586.923|117.510 +639031.340|220582.382|117.397 +639036.518|220577.785|117.098 +639041.596|220573.283|116.967 +639046.772|220568.693|116.873 +639051.901|220564.145|116.729 +639057.031|220559.598|116.675 +639062.173|220555.035|116.352 +639067.257|220550.527|116.263 +639077.471|220541.474|116.272 +639082.567|220536.954|116.080 +639087.712|220532.391|115.916 +639102.995|220518.840|115.721 +639113.227|220509.766|115.120 +639118.290|220505.273|114.922 +639123.405|220500.738|114.733 +639128.477|220496.239|114.474 +639133.554|220491.734|114.194 +639138.675|220487.192|114.011 +639153.943|220473.644|113.008 +639158.978|220469.182|112.828 +639169.128|220460.175|112.157 +639174.270|220455.609|111.402 +639199.568|220433.166|110.024 +639209.721|220424.153|108.847 +639250.168|220388.236|103.452 +639270.337|220370.313|99.953 +639275.305|220365.906|99.734 +639280.179|220361.590|99.941 +639285.123|220357.207|99.972 +639290.042|220352.845|99.822 +639295.029|220348.423|99.551 +639304.929|220339.638|98.874 +639309.799|220335.319|98.813 +639329.322|220318.019|99.304 +639334.156|220313.739|99.645 +639339.018|220309.430|99.789 +639368.059|220283.677|99.758 +639372.817|220279.462|100.057 +639377.581|220275.240|100.337 +639382.342|220271.019|100.648 +639387.100|220266.803|100.987 +639391.794|220262.646|101.447 +639396.494|220258.482|101.880 +639401.227|220254.291|102.443 +639410.640|220245.946|102.931 +639415.315|220241.803|103.242 +639424.676|220233.510|104.187 +639448.057|220212.783|105.147 +639452.641|220208.723|105.824 +639457.317|220204.581|105.973 +639461.855|220200.561|106.641 +639480.689|220183.846|105.741 +639490.086|220175.503|105.089 +639499.455|220167.188|104.419 +639504.204|220162.967|103.742 +639508.895|220158.803|103.431 +639513.565|220154.658|103.251 +639518.173|220150.570|103.163 +639522.690|220146.568|103.602 +639527.250|220142.524|103.800 +639531.853|220138.442|103.794 +639536.379|220134.428|103.943 +639540.875|220130.445|104.281 +639545.337|220126.488|104.522 +639549.845|220122.495|104.821 +639554.377|220118.478|105.007 +639558.867|220114.497|105.156 +639563.381|220110.492|105.187 +639567.917|220106.469|105.132 +639572.486|220102.412|104.918 +639577.058|220098.352|104.455 +639581.590|220094.332|104.464 +639586.129|220090.302|104.214 +639590.685|220086.258|103.897 +639595.175|220082.274|103.660 +639599.717|220078.241|103.455 +639604.197|220074.267|103.565 +639608.681|220070.292|103.434 +639626.685|220054.311|102.730 +639631.123|220050.373|102.648 +639635.564|220046.432|102.578 +639639.996|220042.503|102.575 +639644.391|220038.608|102.760 +639648.704|220034.783|103.087 +639653.127|220030.863|103.172 +639652.267|220029.534|102.977 +639648.000|220033.311|102.888 +639643.718|220037.096|102.642 +639639.423|220040.894|102.462 +639635.089|220044.732|102.495 +639630.736|220048.581|102.617 +639626.341|220052.470|102.718 +639621.976|220056.332|102.693 +639613.143|220064.156|103.202 +639608.714|220068.076|103.291 +639604.328|220071.959|103.434 +639599.921|220075.861|103.458 +639595.501|220079.768|103.544 +639591.014|220083.740|103.730 +639586.564|220087.684|104.031 +639582.072|220091.662|104.278 +639577.539|220095.676|104.507 +639573.059|220099.644|104.748 +639568.538|220103.646|104.946 +639564.043|220107.624|105.034 +639559.571|220111.580|105.022 +639555.115|220115.521|104.940 +639550.634|220119.487|104.739 +639546.163|220123.440|104.501 +639541.643|220127.436|104.257 +639537.190|220131.374|103.949 +639532.734|220135.312|103.675 +639528.192|220139.332|103.602 +639523.605|220143.389|103.507 +639519.121|220147.352|103.135 +639514.555|220151.390|102.971 +639509.986|220155.435|103.123 +639505.314|220159.571|103.297 +639500.626|220163.726|103.873 +639495.914|220167.901|104.318 +639491.268|220172.016|104.708 +639486.550|220176.195|104.952 +639481.804|220180.398|105.373 +639477.135|220184.534|105.684 +639462.885|220197.150|106.970 +639458.323|220201.177|106.110 +639453.714|220205.243|105.522 +639448.993|220209.412|105.019 +639444.259|220213.603|105.257 +639430.052|220226.158|104.498 +639425.346|220230.312|103.971 +639411.051|220242.943|103.007 +639396.631|220255.684|101.989 +639391.897|220259.863|101.407 +639387.048|220264.145|100.947 +639382.253|220268.382|100.471 +639377.413|220272.661|100.337 +639372.506|220276.996|99.975 +639367.690|220281.251|99.694 +639343.038|220303.050|99.490 +639338.036|220307.476|99.600 +639333.138|220311.804|99.322 +639328.139|220316.224|99.075 +639308.181|220333.871|98.786 +639303.225|220338.251|98.679 +639287.973|220351.751|99.286 +639282.937|220356.204|99.542 +639272.742|220365.229|99.962 +639262.363|220374.425|101.675 +639257.194|220379.006|102.434 +639241.643|220392.789|104.915 +639236.516|220397.331|105.467 +639221.038|220411.044|107.293 +639215.869|220415.622|107.912 +639210.642|220420.255|108.689 +639190.034|220438.500|110.554 +639169.426|220456.743|111.962 +639164.318|220461.266|112.325 +639159.118|220465.868|112.666 +639153.976|220470.419|112.926 +639138.504|220484.114|113.867 +639133.317|220488.707|114.239 +639128.160|220493.267|114.224 +639123.033|220497.808|114.535 +639117.866|220502.380|114.730 +639112.694|220506.956|115.010 +639107.525|220511.534|115.343 +639097.189|220520.681|115.995 +639092.050|220525.225|115.949 +639081.766|220534.321|116.025 +639076.630|220538.862|116.010 +639071.473|220543.428|116.382 +639061.161|220552.548|116.361 +639056.068|220557.059|116.608 +639050.883|220561.643|116.745 +639045.751|220566.187|116.888 +639040.666|220570.683|117.046 +639035.488|220575.267|117.187 +639030.358|220579.806|117.385 +639025.225|220584.347|117.635 +639020.102|220588.880|117.754 +639014.978|220593.412|117.897 +639009.860|220597.942|117.976 +639004.697|220602.511|118.034 +638999.589|220607.028|117.936 +638994.483|220611.539|117.763 +638989.378|220616.053|117.601 +638984.275|220620.564|117.434 +638979.124|220625.118|117.260 +638973.964|220629.684|117.339 +638968.852|220634.204|117.464 +638963.686|220638.779|117.912 +638958.575|220643.302|118.144 +638953.460|220647.828|118.510 +638948.300|220652.400|118.945 +638943.191|220656.920|119.256 +638938.037|220661.483|119.537 +638932.935|220665.997|119.695 +638927.838|220670.505|119.723 +638922.693|220675.053|119.616 +638917.600|220679.558|119.467 +638912.461|220684.103|119.305 +638907.368|220688.601|119.064 +638902.278|220693.100|118.784 +638897.136|220697.648|118.708 +638892.043|220702.150|118.455 +638886.949|220706.655|118.488 +638881.856|220711.157|118.321 +638876.763|220715.665|118.421 +638871.667|220720.173|118.705 +638866.525|220724.720|118.720 +638861.432|220729.225|118.744 +638856.341|220733.730|118.848 +638851.248|220738.232|118.763 +638846.161|220742.734|118.845 +638841.068|220747.236|118.708 +638835.929|220751.784|118.778 +638830.836|220756.285|118.717 +638825.697|220760.833|118.674 +638820.604|220765.335|118.708 +638815.513|220769.840|118.811 +638810.374|220774.388|118.918 +638805.284|220778.890|119.113 +638800.194|220783.394|119.302 +638795.055|220787.939|119.372 +638789.965|220792.444|119.381 +638784.823|220796.992|119.259 +638764.389|220815.054|118.686 +638759.293|220819.562|118.607 +638749.039|220828.624|118.119 +638743.931|220833.138|117.738 +638738.826|220837.652|117.397 +638733.720|220842.163|117.242 +638728.621|220846.674|117.232 +638723.515|220851.188|117.071 +638718.413|220855.699|117.092 +638713.314|220860.213|117.132 +638708.211|220864.731|117.202 +638703.106|220869.248|117.184 +638698.007|220873.762|117.318 +638692.959|220878.233|117.516 +638677.582|220891.843|117.376 +638672.467|220896.366|117.296 +638652.149|220914.367|118.839 +638647.077|220918.866|119.558 +638636.842|220927.925|119.448 +638631.734|220932.445|119.589 +638626.671|220936.929|119.649 +638621.560|220941.455|119.784 +638616.506|220945.929|120.043 +638611.401|220950.450|120.296 +638606.335|220954.936|120.411 +638601.278|220959.414|120.671 +638596.234|220963.885|121.097 +638591.144|220968.396|121.628 +638586.154|220972.819|122.137 +638581.055|220977.336|122.545 +638576.050|220981.771|122.877 +638570.999|220986.245|123.261 +638565.985|220990.683|123.539 +638560.898|220995.185|123.484 +638555.884|220999.629|123.755 +638550.861|221004.076|123.926 +638535.792|221017.430|125.112 +638530.747|221021.895|125.090 +638520.753|221030.749|126.209 +638515.815|221035.129|126.879 +638505.869|221043.947|127.980 +638500.910|221048.345|128.958 +638495.939|221052.750|129.296 +638490.953|221057.163|129.495 +638481.025|221065.963|130.357 +638476.033|221070.383|130.543 +638471.131|221074.729|131.119 +638466.154|221079.136|131.494 +638461.192|221083.529|131.525 +638456.236|221087.918|131.628 +638451.283|221092.301|131.793 +638446.318|221096.696|131.863 +638441.371|221101.079|132.110 +638431.452|221109.854|132.024 +638426.576|221114.173|132.067 +638421.647|221118.535|132.128 +638416.721|221122.897|132.229 +638411.826|221127.228|132.210 +638406.873|221131.611|132.107 +638392.240|221144.571|132.610 +638387.348|221148.899|132.698 +638382.489|221153.200|132.701 +638377.585|221157.540|132.725 +638372.723|221161.844|132.732 +638367.877|221166.133|132.872 +638363.019|221170.433|132.933 +638353.359|221178.986|133.170 +638343.575|221187.639|132.582 +638333.742|221196.335|131.753 +638328.927|221200.596|131.558 +638314.540|221213.343|132.226 +638309.752|221217.583|132.314 +638305.018|221221.780|132.433 +638266.708|221255.680|130.653 +638262.008|221259.844|130.869 +638238.721|221280.475|132.195 +638234.003|221284.648|131.777 +638229.260|221288.845|131.546 +638224.560|221293.006|131.281 +638219.884|221297.145|131.183 +638215.193|221301.293|131.031 +638210.545|221305.411|131.125 +638205.979|221309.456|131.442 +638201.547|221313.394|132.515 +638192.138|221321.715|131.637 +638187.478|221325.839|131.467 +638182.799|221329.978|131.238 +638178.175|221334.072|131.034 +638173.548|221338.165|130.842 +638169.007|221342.185|130.863 +638154.904|221354.649|128.729 +638150.320|221358.709|128.601 +638145.772|221362.732|128.422 +638141.160|221366.810|128.199 +638132.239|221374.717|128.556 +638118.459|221386.900|127.077 +638113.823|221390.993|126.078 +638104.673|221399.083|125.008 +638100.344|221402.920|125.346 +638082.038|221419.096|122.539 +638073.046|221427.048|121.807 +638068.688|221430.907|121.881 +638059.763|221438.801|121.091 +638055.240|221442.797|120.454 +638050.851|221446.680|120.213 +638046.413|221450.609|119.997 +638037.543|221458.449|118.955 +638033.127|221462.353|118.671 +638028.799|221466.187|118.555 +638020.188|221473.807|118.360 +638015.963|221477.550|118.528 +638003.314|221488.752|118.769 +637994.597|221496.454|117.379 +637990.415|221500.154|117.367 +637986.422|221503.696|118.180 +637978.257|221510.929|118.845 +637974.111|221514.596|118.823 +637969.884|221518.333|118.461 +637965.808|221521.939|118.543 +637961.608|221525.651|118.107 +637957.487|221529.299|118.010 +637949.288|221536.548|117.626 +637937.118|221547.316|117.455 +637933.097|221550.870|117.440 +637929.013|221554.485|117.385 +637920.847|221561.700|116.480 +637916.818|221565.263|116.050 +637900.718|221579.491|114.788 +637896.625|221583.106|113.977 +637892.672|221586.599|113.733 +637888.715|221590.098|113.489 +637884.683|221593.658|112.764 +637880.702|221597.176|112.240 +637876.852|221600.577|112.045 +637864.923|221611.111|109.871 +637849.335|221624.876|107.461 +637845.528|221628.238|107.137 +637841.816|221631.520|106.961 +637834.269|221638.189|106.217 +637830.614|221641.420|106.095 +638032.493|221460.863|118.631 +638045.797|221449.085|120.082 +638050.217|221445.165|120.219 +638054.600|221441.282|120.448 +638067.999|221429.410|121.442 +638072.431|221425.484|121.731 +638076.927|221421.501|122.100 +638081.361|221417.572|122.438 +638099.662|221401.372|124.755 +638104.167|221397.382|125.041 +638108.729|221393.340|125.651 +638113.317|221389.277|126.145 +638117.950|221385.181|126.882 +638127.304|221376.902|128.385 +638131.867|221372.861|128.577 +638140.892|221364.850|128.257 +638145.479|221360.784|128.370 +638150.064|221356.721|128.495 +638154.718|221352.597|128.736 +638168.903|221340.043|130.805 +638173.530|221335.940|130.997 +638178.209|221331.795|131.208 +638182.845|221327.686|131.201 +638187.463|221323.593|131.406 +638192.178|221319.414|131.607 +638206.153|221307.024|131.659 +638210.737|221302.951|131.189 +638215.370|221298.843|131.012 +638220.113|221294.640|131.208 +638224.782|221290.497|131.296 +638229.519|221286.297|131.494 +638257.832|221261.179|131.259 +638262.486|221257.042|130.781 +638267.250|221252.815|130.686 +638305.920|221218.531|132.424 +638310.733|221214.264|132.527 +638339.860|221188.426|132.524 +638349.641|221179.754|133.137 +638354.524|221175.423|133.225 +638359.407|221171.089|132.963 +638364.271|221166.776|132.951 +638369.121|221162.472|132.860 +638374.019|221158.125|132.780 +638378.926|221153.773|132.792 +638383.812|221149.436|132.637 +638388.719|221145.086|132.680 +638403.438|221132.022|132.122 +638408.397|221127.624|132.287 +638413.338|221123.241|132.329 +638418.267|221118.870|132.256 +638423.256|221114.441|132.332 +638428.161|221110.089|132.098 +638433.147|221105.666|132.195 +638438.128|221101.250|132.250 +638443.077|221096.858|132.043 +638448.030|221092.462|131.893 +638453.038|221088.018|131.799 +638457.994|221083.620|131.710 +638462.984|221079.191|131.506 +638467.983|221074.759|131.375 +638482.939|221061.476|130.290 +638492.864|221052.664|129.443 +638497.881|221048.208|129.135 +638502.852|221043.795|128.858 +638507.762|221039.424|127.382 +638512.782|221034.971|127.093 +638517.793|221030.518|126.764 +638527.730|221021.688|125.063 +638547.895|221003.787|124.072 +638552.922|220999.327|123.984 +638557.996|220994.826|123.917 +638563.065|220990.327|123.758 +638568.122|220985.840|123.490 +638573.166|220981.359|123.078 +638578.220|220976.873|122.752 +638583.310|220972.353|122.316 +638588.355|220967.875|121.893 +638593.390|220963.398|121.369 +638603.528|220954.394|120.555 +638608.682|220949.816|120.375 +638613.790|220945.283|120.238 +638618.886|220940.757|119.933 +638623.995|220936.221|119.796 +638629.100|220931.689|119.665 +638634.206|220927.157|119.540 +638639.320|220922.621|119.564 +638644.423|220918.089|119.451 +638649.549|220913.535|118.875 +638659.724|220904.495|118.058 +638669.956|220895.409|117.415 +638675.058|220890.879|117.327 +638680.209|220886.307|117.281 +638685.333|220881.766|117.693 +638690.441|220877.236|117.808 +638695.583|220872.671|117.650 +638700.671|220868.153|117.251 +638705.822|220863.581|117.306 +638710.970|220859.012|117.354 +638716.066|220854.489|117.257 +638721.214|220849.920|117.312 +638726.365|220845.351|117.418 +638731.513|220840.785|117.510 +638736.661|220836.216|117.674 +638772.695|220804.264|119.448 +638777.834|220799.704|119.534 +638783.022|220795.102|119.653 +638788.112|220790.588|119.768 +638793.293|220785.985|119.683 +638798.429|220781.428|119.628 +638803.565|220776.869|119.427 +638808.698|220772.312|119.098 +638813.834|220767.752|119.003 +638818.970|220763.192|118.912 +638824.157|220758.593|119.028 +638829.245|220754.076|118.945 +638834.380|220749.519|118.918 +638839.568|220744.916|118.817 +638844.655|220740.399|118.866 +638849.788|220735.846|119.000 +638854.927|220731.289|119.019 +638860.063|220726.729|119.043 +638865.199|220722.172|119.043 +638870.338|220717.609|118.817 +638875.431|220713.089|118.628 +638880.567|220708.529|118.705 +638885.706|220703.973|118.772 +638890.796|220699.452|118.747 +638895.981|220694.856|119.086 +638901.123|220690.296|119.073 +638916.488|220676.665|119.558 +638921.624|220672.109|119.729 +638926.763|220667.549|119.835 +638931.904|220662.986|119.845 +638937.001|220658.463|119.762 +638942.152|220653.894|119.573 +638947.257|220649.355|119.186 +638952.415|220644.774|118.769 +638957.575|220640.193|118.372 +638962.686|220635.652|118.013 +638967.840|220631.073|117.836 +638972.952|220626.535|117.580 +638978.057|220622.006|117.568 +638983.205|220617.437|117.711 +638988.305|220612.913|117.891 +638993.407|220608.387|118.013 +638998.513|220603.861|118.144 +639003.566|220599.374|118.253 +639008.726|220594.796|118.220 +639013.844|220590.251|118.061 +639018.916|220585.750|117.940 +639024.034|220581.205|117.815 +639029.112|220576.697|117.577 +639034.241|220572.143|117.373 +639039.371|220567.586|117.156 +639044.452|220563.075|116.992 +639049.585|220558.519|116.787 +639054.666|220554.008|116.672 +639059.793|220549.457|116.656 +639064.883|220544.937|116.443 +639069.973|220540.417|116.272 +639080.208|220531.330|115.974 +639085.305|220526.807|115.797 +639090.431|220522.257|115.949 +639095.479|220517.779|115.858 +639100.599|220513.228|115.434 +639105.714|220508.684|115.108 +639110.826|220504.148|114.925 +639115.940|220499.607|114.687 +639121.009|220495.105|114.440 +639126.130|220490.554|114.184 +639131.247|220486.013|114.020 +639136.322|220481.505|113.813 +639141.440|220476.963|113.724 +639146.484|220472.483|113.334 +639151.629|220467.914|112.962 +639156.671|220463.433|112.673 +639161.770|220458.904|112.334 +639166.872|220454.371|111.984 +639171.996|220449.821|111.453 +639182.103|220440.844|110.941 +639187.227|220436.291|110.505 +639192.232|220431.847|110.323 +639197.352|220427.299|109.975 +639212.620|220413.729|108.152 +639217.722|220409.194|107.653 +639222.797|220404.680|106.951 +639238.074|220391.101|105.135 +639273.732|220359.395|99.792 +639278.771|220354.915|98.996 +639298.616|220337.297|98.758 +639303.572|220332.902|98.819 +639308.528|220328.501|98.877 +639328.115|220311.124|99.283 +639332.986|220306.799|99.335 +639362.161|220280.912|99.746 +639366.986|220276.636|99.932 +639371.787|220272.381|100.292 +639376.593|220268.120|100.627 +639381.397|220263.856|100.636 +639386.185|220259.616|101.142 +639390.937|220255.404|101.560 +639400.438|220246.982|102.117 +639405.199|220242.760|102.175 +639424.002|220226.100|104.178 +639442.839|220209.400|104.906 +639447.533|220205.233|104.903 +639452.096|220201.195|105.738 +639484.782|220172.187|105.001 +639489.559|220167.944|104.416 +639503.558|220155.508|103.202 +639508.231|220151.360|103.013 +639512.836|220147.276|102.931 +639517.396|220143.231|103.123 +639521.901|220139.235|103.343 +639526.452|220135.199|103.614 +639530.969|220131.194|103.806 +639535.486|220127.189|104.019 +639539.991|220123.196|104.309 +639544.453|220119.240|104.562 +639548.937|220115.265|104.726 +639553.466|220111.248|104.937 +639557.965|220107.255|105.037 +639562.430|220103.296|105.074 +639566.969|220099.269|105.019 +639571.434|220095.304|104.812 +639576.009|220091.244|104.617 +639580.505|220087.251|104.303 +639585.046|220083.219|104.041 +639589.533|220079.235|103.815 +639594.044|220075.227|103.489 +639598.476|220071.292|103.315 +639602.838|220067.427|103.510 +639607.288|220063.477|103.294 +639611.723|220059.539|103.163 +639616.209|220055.555|102.809 +639625.045|220047.709|102.550 +639629.386|220043.860|102.696 +639633.784|220039.958|102.596 +639638.121|220036.106|102.529 +639642.507|220032.216|102.514 +639646.811|220028.400|102.654 +639651.118|220024.578|102.788 +639649.725|220023.456|102.690 +639645.303|220027.370|102.572 +639640.892|220031.278|102.434 +639636.448|220035.216|102.456 +639631.992|220039.163|102.553 +639627.523|220043.122|102.489 +639623.073|220047.060|102.334 +639618.507|220051.111|102.779 +639614.024|220055.083|102.828 +639609.449|220059.139|103.099 +639604.938|220063.138|103.330 +639600.451|220067.113|103.205 +639595.958|220071.091|103.120 +639591.316|220075.205|103.538 +639586.756|220079.250|103.846 +639582.203|220083.283|103.855 +639577.609|220087.358|104.370 +639573.019|220091.427|104.629 +639568.392|220095.530|104.827 +639563.823|220099.580|105.010 +639559.248|220103.631|104.979 +639554.685|220107.673|104.894 +639550.144|220111.693|104.720 +639545.605|220115.710|104.553 +639541.033|220119.758|104.303 +639536.458|220123.809|104.077 +639531.892|220127.851|103.830 +639527.375|220131.850|103.611 +639518.164|220140.003|103.059 +639513.601|220144.042|102.846 +639508.953|220148.160|102.846 +639504.213|220152.360|103.096 +639499.538|220156.505|103.303 +639494.777|220160.726|103.727 +639485.291|220169.142|104.736 +639456.853|220194.358|106.494 +639452.224|220198.455|106.049 +639447.652|220202.496|105.251 +639443.006|220206.605|104.617 +639424.115|220223.339|104.150 +639414.681|220231.693|103.620 +639400.575|220244.175|102.151 +639395.729|220248.466|101.977 +639391.010|220252.645|101.651 +639386.259|220256.848|101.206 +639381.461|220261.097|100.761 +639376.657|220265.352|100.712 +639371.851|220269.604|100.350 +639367.044|220273.862|100.014 +639362.219|220278.133|99.816 +639337.844|220299.731|99.523 +639332.967|220304.050|99.466 +639328.136|220308.326|99.063 +639308.409|220325.800|98.877 +639303.456|220330.189|98.771 +639298.534|220334.551|98.819 +639293.569|220338.953|98.856 +639278.630|220352.190|99.024 +639273.613|220356.637|99.170 +639242.935|220383.883|104.690 +639237.808|220388.434|105.199 +639222.489|220402.025|106.863 +639217.420|220406.524|107.464 +639212.230|220411.132|108.302 +639207.130|220415.656|108.792 +639201.979|220420.228|109.332 +639196.819|220424.809|110.033 +639186.584|220433.883|110.600 +639181.515|220438.378|110.944 +639176.358|220442.950|111.213 +639171.252|220447.477|111.481 +639166.080|220452.067|111.996 +639160.929|220456.636|112.322 +639155.771|220461.208|112.727 +639145.484|220470.331|113.337 +639140.342|220474.894|113.712 +639130.107|220483.964|113.883 +639124.877|220488.600|114.218 +639119.756|220493.142|114.419 +639114.590|220497.723|114.639 +639109.423|220502.301|114.876 +639104.263|220506.873|115.029 +639099.103|220511.451|115.263 +639093.879|220516.078|115.721 +639083.546|220525.228|115.779 +639078.392|220529.794|116.050 +639062.816|220543.590|116.528 +639052.447|220552.773|116.797 +639047.265|220557.360|116.891 +639042.032|220561.999|117.150 +639036.856|220566.581|117.208 +639031.675|220571.171|117.424 +639026.493|220575.761|117.726 +639021.272|220580.388|117.866 +639016.097|220584.969|118.046 +639010.878|220589.593|118.226 +639005.709|220594.168|118.363 +639000.552|220598.734|118.311 +638995.346|220603.343|118.232 +638990.146|220607.945|118.098 +638984.992|220612.508|118.004 +638979.840|220617.065|117.842 +638974.641|220621.670|117.744 +638969.480|220626.239|117.903 +638964.274|220630.851|118.037 +638959.065|220635.463|118.281 +638953.902|220640.041|118.732 +638948.693|220644.658|119.156 +638943.487|220649.273|119.564 +638938.333|220653.836|119.835 +638933.136|220658.438|119.878 +638927.942|220663.035|119.906 +638922.800|220667.589|119.866 +638917.612|220672.182|119.744 +638912.422|220676.775|119.680 +638907.280|220681.326|119.570 +638902.092|220685.916|119.387 +638896.901|220690.510|119.372 +638891.717|220695.100|119.134 +638886.529|220699.690|118.927 +638881.387|220704.241|118.933 +638871.008|220713.431|118.997 +638865.869|220717.981|119.128 +638860.731|220722.535|119.287 +638855.543|220727.125|119.220 +638850.355|220731.719|119.159 +638845.268|220736.220|119.061 +638840.080|220740.811|118.927 +638834.941|220745.361|119.003 +638829.802|220749.909|119.019 +638824.615|220754.502|119.061 +638819.476|220759.053|119.040 +638814.386|220763.558|119.049 +638809.201|220768.151|119.189 +638804.111|220772.659|119.363 +638798.978|220777.207|119.787 +638793.842|220781.758|119.909 +638788.706|220786.305|120.034 +638783.616|220790.810|120.067 +638778.477|220795.361|119.997 +638773.384|220799.869|119.896 +638768.245|220804.420|119.826 +638763.149|220808.928|119.674 +638758.052|220813.436|119.470 +638727.331|220840.612|117.650 +638722.229|220845.129|117.528 +638717.179|220849.600|117.488 +638712.079|220854.114|117.552 +638706.974|220858.628|117.464 +638701.920|220863.097|117.479 +638681.590|220881.074|117.293 +638676.546|220885.539|117.638 +638671.474|220890.020|117.394 +638656.328|220903.422|118.168 +638636.239|220921.201|119.427 +638631.179|220925.678|119.534 +638626.171|220930.110|119.707 +638621.115|220934.582|119.912 +638616.107|220939.013|120.091 +638611.099|220943.445|120.326 +638606.045|220947.917|120.597 +638601.031|220952.352|120.744 +638596.026|220956.780|121.079 +638591.031|220961.206|121.481 +638586.044|220965.620|122.057 +638581.049|220970.042|122.521 +638576.047|220974.471|122.899 +638571.048|220978.897|123.310 +638566.092|220983.280|123.679 +638561.087|220987.711|124.011 +638556.125|220992.104|124.292 +638551.087|220996.557|124.273 +638546.103|221000.964|124.307 +638541.086|221005.405|124.572 +638516.306|221027.342|126.764 +638511.356|221031.719|126.742 +638496.634|221044.767|129.196 +638491.702|221049.129|129.440 +638486.765|221053.497|129.629 +638476.935|221062.199|130.479 +638467.108|221070.901|131.421 +638462.210|221075.232|131.576 +638457.257|221079.612|131.713 +638452.356|221083.949|131.878 +638447.403|221088.332|132.012 +638442.495|221092.673|132.165 +638437.588|221097.013|132.326 +638432.669|221101.366|132.396 +638427.734|221105.727|132.347 +638422.790|221110.098|132.259 +638417.934|221114.396|132.509 +638412.978|221118.773|132.360 +638408.105|221123.086|132.485 +638403.207|221127.417|132.433 +638398.305|221131.751|132.402 +638388.539|221140.389|132.668 +638383.702|221144.669|132.789 +638378.807|221148.997|132.884 +638373.955|221153.288|132.911 +638369.105|221157.577|133.012 +638364.229|221161.887|132.927 +638359.382|221166.175|133.067 +638349.726|221174.716|133.338 +638344.880|221179.001|133.177 +638340.049|221183.268|132.792 +638325.409|221196.195|131.854 +638320.612|221200.438|131.817 +638263.199|221251.178|131.061 +638258.463|221255.363|131.043 +638225.621|221284.398|131.482 +638220.948|221288.525|131.400 +638216.358|221292.591|131.796 +638211.630|221296.764|131.430 +638207.119|221300.760|132.030 +638193.245|221313.019|131.994 +638188.560|221317.158|131.677 +638183.927|221321.255|131.668 +638179.309|221325.330|131.497 +638174.734|221329.375|131.287 +638160.823|221341.658|130.345 +638156.077|221345.840|129.312 +638151.435|221349.940|128.854 +638146.811|221354.024|128.519 +638142.245|221358.053|128.260 +638137.725|221362.049|128.242 +638133.159|221366.082|128.013 +638128.700|221370.026|128.345 +638124.247|221373.964|128.455 +638110.382|221386.196|126.370 +638105.828|221390.213|125.806 +638101.244|221394.258|125.377 +638078.573|221414.265|122.749 +638074.037|221418.264|121.935 +638069.602|221422.180|121.625 +638065.106|221426.149|121.295 +638056.325|221433.906|120.951 +638051.826|221437.878|120.415 +638047.382|221441.800|119.924 +638029.847|221457.278|118.543 +638025.501|221461.119|118.354 +638021.188|221464.926|118.104 +638016.936|221468.684|118.138 +638012.665|221472.457|118.107 +637991.348|221491.291|117.415 +637987.020|221495.113|117.013 +637983.008|221498.673|117.748 +637962.422|221516.885|118.235 +637958.161|221520.649|117.775 +637949.828|221528.010|117.025 +637945.640|221531.707|116.483 +637941.702|221535.197|116.979 +637937.685|221538.751|116.937 +637933.625|221542.342|116.961 +637929.653|221545.859|117.138 +637921.612|221552.967|116.928 +637917.479|221556.613|116.294 +637897.408|221574.349|114.614 +637885.509|221584.862|113.520 +637881.403|221588.480|112.517 +637877.395|221592.021|112.103 +637873.408|221595.536|111.389 +637861.301|221606.216|108.762 +637857.370|221609.685|108.116 +637849.737|221616.430|107.525 +637845.940|221619.783|107.223 +637842.258|221623.038|107.153 +637831.026|221632.965|106.537 +637827.359|221636.205|106.375 +638026.622|221457.872|118.327 +638030.947|221454.038|118.446 +638035.346|221450.140|118.915 +638048.516|221438.466|119.857 +638053.024|221434.473|120.436 +638061.885|221426.615|120.939 +638066.329|221422.674|121.280 +638070.800|221418.712|121.518 +638075.302|221414.722|121.935 +638093.553|221398.558|124.481 +638098.016|221394.599|124.563 +638102.667|221390.484|125.337 +638107.291|221386.388|125.998 +638111.906|221382.300|126.648 +638121.156|221374.113|128.123 +638130.288|221366.012|128.306 +638134.714|221362.077|127.830 +638139.280|221358.032|128.096 +638143.888|221353.945|128.345 +638148.485|221349.869|128.541 +638153.157|221345.727|128.894 +638157.784|221341.625|129.318 +638171.906|221329.122|131.159 +638176.581|221324.973|131.384 +638181.174|221320.898|131.448 +638185.878|221316.728|131.582 +638190.523|221312.608|131.692 +638195.290|221308.389|132.503 +638204.726|221300.019|132.811 +638209.201|221296.039|131.723 +638213.800|221291.951|131.378 +638218.473|221287.803|131.177 +638223.203|221283.612|131.332 +638227.928|221279.424|131.464 +638232.707|221275.187|131.653 +638237.453|221270.984|131.970 +638242.189|221266.784|132.253 +638251.580|221258.448|131.433 +638256.250|221254.305|131.034 +638261.047|221250.050|131.153 +638265.748|221245.881|130.994 +638313.830|221203.254|131.601 +638318.658|221198.975|131.857 +638323.449|221194.723|131.525 +638328.457|221190.291|132.402 +638338.238|221181.623|132.927 +638343.124|221177.291|133.009 +638348.044|221172.933|133.356 +638352.899|221168.626|133.259 +638357.742|221164.331|133.079 +638362.634|221159.991|132.914 +638367.548|221155.635|132.945 +638372.449|221151.289|132.890 +638377.344|221146.945|132.820 +638382.239|221142.605|132.768 +638387.119|221138.277|132.597 +638392.005|221133.943|132.509 +638396.958|221129.550|132.588 +638401.881|221125.183|132.442 +638406.815|221120.809|132.396 +638411.726|221116.450|132.189 +638416.703|221112.043|132.543 +638421.589|221107.705|132.171 +638426.591|221103.271|132.375 +638431.513|221098.909|132.329 +638436.485|221094.498|132.326 +638441.444|221090.100|132.223 +638446.394|221085.711|132.040 +638451.344|221081.319|131.893 +638456.348|221076.878|131.829 +638461.308|221072.483|131.793 +638466.270|221068.078|131.329 +638476.142|221059.309|130.458 +638486.100|221050.470|129.455 +638491.099|221046.038|129.440 +638496.122|221041.582|129.171 +638510.984|221028.372|126.764 +638516.047|221023.879|126.443 +638526.011|221015.031|125.075 +638541.159|221001.589|124.359 +638546.198|220997.124|124.398 +638551.282|220992.613|124.459 +638556.360|220988.111|124.417 +638561.416|220983.624|124.142 +638566.458|220979.150|123.691 +638571.499|220974.672|123.252 +638576.544|220970.195|122.838 +638581.588|220965.717|122.423 +638586.675|220961.200|121.966 +638591.753|220956.692|121.347 +638596.752|220952.254|121.000 +638601.857|220947.725|120.783 +638606.960|220943.195|120.558 +638612.059|220938.672|120.262 +638617.161|220934.146|120.043 +638622.261|220929.620|119.826 +638627.363|220925.093|119.637 +638632.511|220920.527|119.393 +638637.559|220916.047|119.147 +638642.716|220911.472|119.104 +638647.827|220906.942|119.131 +638658.044|220897.868|118.253 +638663.180|220893.312|117.836 +638668.310|220888.755|117.324 +638673.473|220884.180|117.519 +638683.754|220875.069|118.031 +638688.948|220870.464|117.888 +638699.192|220861.378|117.754 +638704.383|220856.772|117.583 +638709.485|220852.249|117.690 +638714.627|220847.686|117.601 +638719.827|220843.077|117.702 +638724.930|220838.554|117.891 +638735.284|220829.380|118.476 +638740.435|220824.817|118.775 +638745.586|220820.254|119.198 +638750.786|220815.648|119.604 +638755.885|220811.128|120.018 +638761.079|220806.526|120.302 +638766.212|220801.972|120.177 +638771.348|220797.418|120.128 +638776.535|220792.819|120.283 +638781.674|220788.265|120.460 +638786.810|220783.711|120.436 +638791.992|220779.115|120.262 +638797.125|220774.558|119.945 +638802.258|220770.005|119.665 +638807.439|220765.405|119.427 +638812.575|220760.851|119.506 +638817.711|220756.298|119.390 +638822.896|220751.698|119.342 +638828.031|220747.145|119.326 +638833.167|220742.588|119.180 +638838.352|220737.988|119.107 +638843.488|220733.435|119.268 +638848.621|220728.887|119.378 +638853.805|220724.291|119.421 +638864.080|220715.180|119.436 +638869.216|220710.620|119.278 +638874.355|220706.064|119.095 +638879.494|220701.507|119.150 +638884.633|220696.953|119.195 +638889.717|220692.445|119.509 +638894.856|220687.891|119.659 +638899.992|220683.338|119.796 +638905.128|220678.787|120.040 +638910.218|220674.273|120.094 +638915.357|220669.716|120.119 +638920.496|220665.159|120.226 +638925.638|220660.599|120.146 +638930.734|220656.079|120.064 +638935.830|220651.559|119.988 +638940.978|220646.993|119.838 +638946.032|220642.510|119.579 +638951.189|220637.928|119.137 +638956.301|220633.393|118.759 +638961.412|220628.854|118.378 +638966.569|220624.282|118.193 +638971.626|220619.796|118.083 +638976.732|220615.266|118.071 +638981.831|220610.740|118.202 +638986.884|220606.260|118.308 +638991.987|220601.733|118.427 +638997.089|220597.204|118.500 +639002.146|220592.720|118.583 +639007.260|220588.185|118.537 +639012.329|220583.683|118.339 +639017.404|220579.175|118.098 +639022.479|220574.673|117.930 +639027.557|220570.165|117.732 +639032.687|220565.611|117.464 +639037.716|220561.146|117.342 +639042.794|220556.641|117.223 +639047.875|220552.130|117.074 +639058.010|220543.129|116.516 +639063.048|220538.658|116.382 +639068.096|220534.177|116.138 +639078.227|220525.183|115.897 +639083.278|220520.702|115.730 +639093.388|220511.726|115.276 +639098.445|220507.239|115.096 +639103.501|220502.746|114.901 +639118.650|220489.298|114.233 +639123.664|220484.851|114.151 +639128.745|220480.337|113.803 +639138.828|220471.388|113.639 +639143.872|220466.911|113.282 +639153.955|220457.956|112.679 +639159.002|220453.472|112.365 +639164.065|220448.979|111.935 +639169.085|220444.517|111.438 +639174.194|220439.982|111.112 +639179.204|220435.532|110.804 +639184.261|220431.042|110.545 +639189.287|220426.580|110.152 +639204.402|220413.150|108.744 +639219.584|220399.660|106.997 +639234.764|220386.172|105.181 +639244.859|220377.205|104.230 +639255.072|220368.119|102.328 +639260.147|220363.608|101.520 +639275.381|220350.066|99.261 +639290.393|220336.740|98.810 +639295.352|220332.341|98.822 +639300.317|220327.934|98.795 +639305.288|220323.523|98.734 +639310.253|220319.116|98.749 +639354.599|220279.775|99.478 +639359.442|220275.481|99.874 +639364.319|220271.153|100.036 +639369.171|220266.849|100.395 +639373.954|220262.609|100.898 +639378.852|220258.263|100.971 +639383.717|220253.944|100.944 +639388.520|220249.686|101.364 +639393.354|220245.397|101.593 +639398.121|220241.169|101.941 +639412.377|220228.532|103.702 +639417.187|220224.265|103.839 +639421.963|220220.025|103.882 +639436.307|220207.297|104.327 +639450.334|220194.864|105.982 +639455.003|220190.725|106.488 +639459.697|220186.561|106.851 +639464.400|220182.389|106.881 +639483.603|220165.317|104.595 +639488.464|220160.989|103.803 +639493.241|220156.743|103.257 +639497.944|220152.564|102.867 +639502.662|220148.373|102.703 +639511.952|220140.125|102.675 +639516.497|220136.096|102.965 +639521.072|220132.033|103.096 +639525.595|220128.021|103.532 +639530.158|220123.977|103.775 +639534.681|220119.962|103.958 +639539.201|220115.951|104.175 +639543.734|220111.931|104.352 +639548.269|220107.901|104.510 +639552.808|220103.875|104.690 +639557.313|220099.879|104.790 +639561.827|220095.871|104.839 +639566.326|220091.875|104.736 +639570.898|220087.815|104.544 +639575.433|220083.783|104.275 +639579.972|220079.753|104.031 +639584.477|220075.748|103.702 +639588.975|220071.752|103.443 +639593.483|220067.747|103.145 +639597.915|220063.809|102.989 +639602.387|220059.837|102.916 +639606.812|220055.909|102.834 +639611.226|220051.992|102.824 +639615.652|220048.057|102.760 +639620.050|220044.152|102.617 +639624.466|220040.230|102.392 +639628.813|220036.371|102.523 +639633.141|220032.527|102.511 +639637.484|220028.669|102.431 +639641.831|220024.810|102.367 +639646.092|220021.027|102.468 +639647.147|220017.427|102.453 +639642.718|220021.341|102.352 +639638.256|220025.288|102.440 +639633.760|220029.266|102.453 +639629.255|220033.250|102.520 +639624.732|220037.252|102.456 +639620.205|220041.257|102.666 +639615.621|220045.311|102.669 +639611.095|220049.313|102.663 +639606.578|220053.309|102.632 +639601.963|220057.393|102.852 +639597.367|220061.456|102.983 +639592.782|220065.513|103.093 +639588.162|220069.600|103.135 +639583.446|220073.779|103.684 +639578.795|220077.894|103.919 +639574.132|220082.021|104.242 +639569.438|220086.178|104.492 +639564.762|220090.314|104.656 +639560.147|220094.399|104.803 +639555.527|220098.483|104.729 +639550.921|220102.558|104.601 +639546.276|220106.661|104.409 +639541.682|220110.721|104.242 +639537.046|220114.823|104.056 +639532.414|220118.917|103.858 +639527.729|220123.056|103.672 +639523.111|220127.140|103.437 +639518.533|220131.182|102.989 +639513.857|220135.315|102.809 +639509.197|220139.436|102.568 +639504.530|220143.560|102.376 +639499.782|220147.763|102.678 +639495.024|220151.976|102.760 +639490.244|220156.209|103.282 +639485.398|220160.501|103.916 +639466.010|220177.686|106.793 +639461.206|220181.934|106.720 +639451.821|220190.234|106.214 +639437.819|220202.603|104.297 +639433.055|220206.815|104.086 +639423.539|220215.237|103.955 +639418.805|220219.422|103.602 +639414.032|220223.643|103.510 +639395.000|220240.471|102.300 +639390.328|220244.595|101.285 +639380.772|220253.044|100.721 +639375.987|220257.278|100.868 +639371.140|220261.567|100.764 +639366.352|220265.797|100.264 +639361.612|220269.988|99.810 +639356.772|220274.271|99.706 +639351.975|220278.511|99.328 +639308.120|220317.315|98.777 +639303.243|220321.634|98.832 +639298.272|220326.032|98.835 +639293.364|220330.372|98.755 +639283.529|220339.081|98.874 +639273.537|220347.929|99.539 +639268.542|220352.355|99.941 +639258.447|220361.313|101.767 +639243.194|220374.843|104.477 +639238.229|220379.238|104.821 +639212.922|220401.671|107.902 +639202.759|220410.675|108.917 +639192.622|220419.661|109.868 +639187.559|220424.144|110.045 +639182.487|220428.634|110.347 +639177.415|220433.130|110.719 +639172.337|220437.629|111.182 +639167.223|220442.158|111.520 +639162.160|220446.642|111.889 +639157.045|220451.177|112.346 +639151.946|220455.691|112.615 +639146.792|220460.260|113.026 +639141.699|220464.768|113.300 +639131.479|220473.821|113.797 +639126.364|220478.344|113.797 +639116.120|220487.418|114.163 +639105.824|220496.537|114.727 +639100.706|220501.070|114.977 +639095.555|220505.630|115.017 +639090.395|220510.202|115.251 +639085.286|220514.731|115.483 +639080.077|220519.346|115.788 +639064.639|220533.022|116.220 +639059.448|220537.622|116.358 +639054.297|220542.187|116.717 +639049.109|220546.784|116.891 +639043.919|220551.383|117.165 +639038.728|220555.986|117.488 +639033.555|220560.567|117.516 +639028.371|220565.163|117.784 +639023.192|220569.751|117.955 +639017.968|220574.377|118.147 +639012.841|220578.922|118.385 +639007.620|220583.549|118.589 +639002.402|220588.173|118.714 +638997.242|220592.742|118.699 +638992.033|220597.353|118.692 +638986.830|220601.962|118.613 +638981.675|220606.525|118.513 +638976.430|220611.167|118.260 +638971.227|220615.775|118.250 +638966.067|220620.347|118.357 +638960.809|220625.008|118.607 +638955.597|220629.626|118.936 +638950.388|220634.246|119.314 +638945.179|220638.864|119.720 +638939.927|220643.518|119.948 +638934.776|220648.078|120.070 +638929.527|220652.729|120.280 +638924.333|220657.332|120.393 +638919.139|220661.931|120.415 +638913.949|220666.531|120.381 +638908.712|220671.167|120.186 +638903.518|220675.763|120.189 +638898.331|220680.357|120.076 +638893.143|220684.950|119.936 +638887.955|220689.543|119.759 +638882.768|220694.134|119.482 +638877.531|220698.770|119.369 +638872.343|220703.363|119.150 +638867.153|220707.965|119.476 +638861.913|220712.605|119.683 +638856.725|220717.201|119.771 +638851.538|220721.794|119.634 +638846.301|220726.430|119.619 +638841.120|220731.021|119.485 +638835.929|220735.614|119.323 +638830.741|220740.207|119.396 +638825.508|220744.846|119.476 +638820.369|220749.400|119.607 +638815.132|220754.036|119.674 +638809.945|220758.632|119.668 +638804.757|220763.226|119.735 +638799.572|220767.819|119.893 +638794.388|220772.416|120.180 +638789.255|220776.966|120.518 +638784.070|220781.560|120.658 +638778.882|220786.153|120.655 +638773.740|220790.704|120.500 +638768.601|220795.257|120.408 +638763.414|220799.851|120.503 +638758.275|220804.401|120.506 +638753.130|220808.958|120.314 +638747.982|220813.515|120.012 +638742.821|220818.075|119.427 +638737.670|220822.634|119.104 +638732.513|220827.197|118.726 +638727.408|220831.715|118.424 +638722.257|220836.274|118.296 +638717.145|220840.798|117.915 +638712.037|220845.318|117.717 +638706.892|220849.878|117.784 +638696.687|220858.918|117.744 +638691.588|220863.435|117.863 +638681.389|220872.475|118.019 +638671.215|220881.485|117.793 +638666.161|220885.966|117.885 +638661.107|220890.443|118.046 +638640.924|220908.338|119.211 +638635.861|220912.825|119.220 +638630.859|220917.257|119.491 +638625.812|220921.734|119.762 +638620.804|220926.172|119.930 +638615.750|220930.653|120.165 +638610.788|220935.051|120.311 +638605.734|220939.529|120.582 +638600.729|220943.966|120.847 +638595.764|220948.368|120.994 +638590.769|220952.797|121.414 +638585.779|220957.225|121.926 +638580.783|220961.654|122.344 +638575.888|220965.997|122.807 +638570.893|220970.429|123.249 +638565.903|220974.855|123.798 +638560.953|220979.244|124.203 +638556.003|220983.636|124.630 +638551.032|220988.041|124.773 +638541.053|220996.883|124.682 +638536.063|221001.303|124.673 +638531.119|221005.682|124.663 +638521.289|221014.409|126.471 +638496.716|221036.214|129.321 +638491.772|221040.594|129.409 +638486.835|221044.971|129.580 +638481.943|221049.315|130.199 +638477.051|221053.649|130.378 +638472.140|221058.005|130.836 +638462.356|221066.682|131.701 +638457.501|221070.986|131.777 +638452.545|221075.378|131.869 +638447.646|221079.719|132.073 +638442.736|221084.071|132.143 +638437.865|221088.384|132.183 +638432.958|221092.734|132.341 +638428.078|221097.056|132.332 +638423.162|221101.414|132.430 +638418.276|221105.742|132.402 +638413.399|221110.071|132.887 +638408.443|221114.451|132.323 +638398.692|221123.095|132.591 +638393.849|221127.386|132.600 +638388.972|221131.708|132.762 +638384.080|221136.043|132.823 +638379.249|221140.325|133.000 +638374.369|221144.644|132.820 +638364.671|221153.240|132.966 +638359.766|221157.586|133.042 +638345.297|221170.406|133.341 +638340.418|221174.728|133.305 +638335.602|221178.995|133.390 +638330.725|221183.308|132.695 +638325.790|221187.673|132.329 +638320.929|221191.967|131.829 +638316.082|221196.256|131.445 +638311.260|221200.523|131.250 +638263.501|221242.808|131.336 +638254.016|221251.205|131.180 +638249.307|221255.375|131.348 +638235.258|221267.820|131.802 +638230.519|221272.011|131.558 +638225.813|221276.178|131.521 +638221.091|221280.357|131.415 +638216.364|221284.542|131.290 +638211.743|221288.632|131.531 +638207.256|221292.619|132.555 +638202.706|221296.654|133.219 +638193.327|221304.951|132.707 +638188.612|221309.121|132.183 +638183.881|221313.303|131.610 +638179.300|221317.356|131.622 +638174.633|221321.486|131.445 +638160.573|221333.916|129.912 +638155.934|221338.019|129.431 +638151.261|221342.152|129.065 +638146.631|221346.245|128.684 +638142.069|221350.281|128.406 +638137.442|221354.374|128.080 +638132.827|221358.456|127.846 +638128.371|221362.403|127.910 +638123.884|221366.377|128.108 +638114.816|221374.403|127.809 +638105.477|221382.651|126.230 +638100.896|221386.699|125.523 +638091.648|221394.867|124.045 +638078.201|221406.770|123.429 +638073.488|221410.924|121.993 +638068.962|221414.923|121.490 +638064.485|221418.885|121.222 +638060.041|221422.817|120.896 +638051.174|221430.660|120.405 +638046.648|221434.659|119.759 +638042.265|221438.536|119.549 +638037.854|221442.437|119.247 +638033.444|221446.336|118.955 +638029.045|221450.228|118.488 +638024.708|221454.062|118.339 +638020.353|221457.915|118.116 +638016.055|221461.719|117.927 +638011.705|221465.569|117.766 +638007.493|221469.299|117.757 +638003.229|221473.070|117.784 +637998.965|221476.849|117.805 +637990.513|221484.323|117.568 +637986.114|221488.206|116.836 +637981.884|221491.946|116.608 +637977.836|221495.531|117.196 +637948.810|221521.195|116.903 +637940.541|221528.498|116.239 +637936.499|221532.073|116.309 +637932.500|221535.612|116.565 +637928.480|221539.163|116.541 +637916.361|221549.880|116.288 +637912.307|221553.455|115.760 +637908.305|221556.991|115.657 +637900.380|221563.995|115.379 +637896.241|221567.646|114.575 +637880.281|221581.737|112.791 +637872.302|221588.775|111.484 +637868.272|221592.329|110.594 +637856.263|221602.921|108.149 +637848.582|221609.703|107.549 +637844.775|221613.065|107.195 +637841.026|221616.378|107.073 +637837.317|221619.658|107.104 +637833.568|221622.968|106.805 +637829.901|221626.211|106.808 +637826.246|221629.436|106.683 +638024.239|221451.740|118.299 +638028.518|221447.942|118.449 +638032.959|221444.004|118.878 +638037.351|221440.109|119.107 +638041.750|221436.204|119.387 +638046.136|221432.315|119.622 +638050.647|221428.316|120.229 +638055.057|221424.402|120.366 +638059.519|221420.446|120.786 +638063.963|221416.505|121.125 +638068.417|221412.555|121.539 +638072.891|221408.586|121.832 +638077.430|221404.563|122.448 +638082.123|221400.411|123.581 +638086.589|221396.446|123.636 +638091.112|221392.435|123.999 +638095.715|221388.360|124.770 +638104.983|221380.151|126.459 +638114.262|221371.928|127.785 +638118.843|221367.865|128.053 +638123.372|221363.842|128.096 +638127.831|221359.882|127.766 +638132.403|221355.822|127.800 +638137.033|221351.717|128.138 +638141.660|221347.614|128.477 +638146.269|221343.523|128.760 +638150.914|221339.406|129.254 +638155.565|221335.282|129.522 +638160.244|221331.133|129.958 +638174.414|221318.573|131.631 +638179.050|221314.458|131.665 +638183.744|221310.297|132.024 +638202.572|221293.597|133.183 +638207.256|221289.434|133.049 +638211.740|221285.444|132.030 +638216.355|221281.338|131.500 +638221.100|221277.126|131.454 +638225.816|221272.941|131.552 +638230.503|221268.777|131.506 +638235.310|221264.510|131.912 +638244.753|221256.125|131.720 +638249.477|221251.925|131.351 +638254.253|221247.688|131.640 +638311.885|221196.509|131.464 +638321.691|221187.813|132.381 +638326.549|221183.500|132.579 +638331.493|221179.117|133.042 +638336.446|221174.725|133.603 +638341.216|221170.485|133.237 +638346.136|221166.117|133.241 +638355.923|221157.427|133.298 +638360.748|221153.139|133.018 +638375.427|221140.103|132.744 +638380.322|221135.753|132.713 +638390.155|221127.024|132.649 +638395.096|221122.634|132.649 +638400.015|221118.264|132.491 +638404.944|221113.890|132.418 +638409.921|221109.473|132.792 +638414.810|221105.127|132.445 +638419.751|221100.741|132.558 +638424.725|221096.324|132.552 +638429.642|221091.959|132.482 +638434.656|221087.506|132.418 +638439.563|221083.148|132.326 +638444.513|221078.749|132.189 +638449.451|221074.363|131.939 +638454.480|221069.898|132.128 +638459.403|221065.524|131.768 +638464.383|221061.098|131.515 +638469.299|221056.727|131.147 +638479.196|221047.928|130.055 +638484.162|221043.514|129.708 +638489.182|221039.055|129.424 +638494.165|221034.626|129.306 +638499.264|221030.109|129.900 +638509.012|221021.416|126.785 +638534.027|220999.181|124.773 +638544.162|220990.183|125.063 +638549.246|220985.672|125.112 +638554.260|220981.216|124.959 +638559.350|220976.693|124.523 +638564.336|220972.261|124.002 +638569.366|220967.787|123.447 +638574.447|220963.269|122.874 +638579.488|220958.789|122.466 +638584.523|220954.311|122.006 +638589.565|220949.834|121.564 +638594.655|220945.311|121.189 +638599.754|220940.784|120.930 +638604.805|220936.301|120.704 +638609.898|220931.777|120.387 +638615.000|220927.248|120.210 +638620.103|220922.719|120.043 +638625.199|220918.193|119.838 +638630.289|220913.672|119.521 +638635.385|220909.146|119.287 +638640.530|220904.580|119.098 +638645.611|220900.066|118.592 +638666.140|220881.842|117.885 +638671.242|220877.313|117.888 +638676.390|220872.747|117.830 +638681.587|220868.135|117.808 +638691.889|220858.994|118.028 +638697.034|220854.428|117.952 +638702.179|220849.862|117.946 +638707.324|220845.299|117.967 +638712.524|220840.688|118.202 +638717.675|220836.119|118.442 +638722.820|220831.556|118.549 +638728.017|220826.944|118.836 +638733.168|220822.378|119.284 +638738.368|220817.770|119.744 +638743.568|220813.161|120.277 +638748.710|220808.605|120.436 +638753.901|220804.002|120.738 +638759.086|220799.400|120.860 +638764.170|220794.888|120.805 +638769.400|220790.246|120.805 +638774.536|220785.693|120.917 +638779.721|220781.093|121.109 +638784.896|220776.497|120.945 +638790.075|220771.900|120.643 +638795.204|220767.347|120.375 +638800.380|220762.747|120.128 +638805.562|220758.151|120.061 +638810.694|220753.597|120.055 +638815.925|220748.955|120.073 +638821.106|220744.356|119.933 +638826.239|220739.802|119.777 +638831.418|220735.202|119.628 +638836.602|220730.603|119.707 +638841.784|220726.007|119.872 +638846.960|220721.413|119.936 +638852.141|220716.817|120.034 +638857.274|220712.260|119.963 +638862.456|220707.664|120.012 +638867.640|220703.061|119.710 +638872.776|220698.501|119.582 +638877.958|220693.905|119.732 +638883.139|220689.312|120.049 +638888.272|220684.761|120.268 +638893.454|220680.162|120.338 +638898.639|220675.565|120.451 +638903.723|220671.051|120.536 +638908.907|220666.452|120.549 +638914.043|220661.895|120.661 +638919.182|220657.335|120.619 +638924.321|220652.772|120.543 +638929.512|220648.167|120.424 +638934.608|220643.643|120.283 +638939.753|220639.074|120.061 +638944.904|220634.502|119.829 +638950.052|220629.930|119.613 +638955.207|220625.352|119.278 +638960.318|220620.814|118.891 +638965.423|220616.278|118.634 +638970.578|220611.706|118.567 +638975.677|220607.183|118.616 +638980.776|220602.663|118.717 +638985.927|220598.100|118.811 +638990.984|220593.616|118.857 +638996.089|220589.087|118.851 +639001.201|220584.558|118.808 +639006.315|220580.019|118.644 +639011.436|220575.478|118.488 +639016.459|220571.022|118.305 +639021.586|220566.474|118.049 +639026.661|220561.972|117.882 +639031.736|220557.470|117.748 +639036.823|220552.956|117.394 +639041.916|220548.433|116.989 +639046.951|220543.967|116.824 +639052.036|220539.459|116.693 +639057.086|220534.979|116.327 +639062.173|220530.465|116.193 +639067.193|220526.006|115.553 +639077.258|220517.084|115.678 +639082.311|220512.600|115.443 +639087.319|220508.160|115.199 +639092.370|220503.679|115.056 +639102.389|220494.788|114.651 +639107.457|220490.292|114.370 +639122.466|220476.978|113.736 +639127.483|220472.528|113.642 +639147.463|220454.801|112.700 +639152.507|220450.327|112.429 +639157.460|220445.931|112.066 +639162.526|220441.433|111.572 +639167.476|220437.040|111.331 +639172.478|220432.606|111.100 +639177.458|220428.183|110.594 +639182.478|220423.727|110.222 +639187.440|220419.325|109.969 +639192.466|220414.863|109.579 +639197.401|220410.483|109.183 +639202.461|220405.990|108.539 +639207.402|220401.604|108.122 +639212.388|220397.179|107.790 +639222.376|220388.309|106.601 +639232.359|220379.442|105.147 +639237.306|220375.053|104.903 +639267.335|220348.371|100.078 +639272.300|220343.966|99.898 +639292.036|220326.453|98.847 +639296.937|220322.109|98.926 +639301.859|220317.744|98.871 +639306.730|220313.422|98.819 +639311.607|220309.100|98.780 +639350.499|220274.624|99.648 +639355.361|220270.321|99.908 +639360.195|220266.035|100.011 +639364.980|220261.798|100.490 +639369.821|220257.513|100.947 +639374.633|220253.246|100.895 +639379.504|220248.927|100.822 +639384.329|220244.653|101.081 +639393.824|220236.247|102.026 +639398.597|220232.019|102.346 +639403.404|220227.764|102.803 +639412.913|220219.340|103.419 +639417.708|220215.094|103.666 +639422.466|220210.878|103.843 +639427.288|220206.605|103.955 +639432.082|220202.353|103.928 +639484.645|220155.755|103.724 +639489.510|220151.433|102.946 +639494.313|220147.172|102.572 +639499.041|220142.978|102.343 +639503.787|220138.772|102.340 +639508.426|220134.660|102.648 +639513.080|220130.539|102.910 +639517.737|220126.412|103.160 +639526.948|220118.252|103.715 +639531.578|220114.150|103.879 +639536.205|220110.050|104.083 +639540.844|220105.942|104.239 +639545.425|220101.882|104.449 +639550.010|220097.822|104.653 +639554.615|220093.737|104.763 +639559.242|220089.638|104.793 +639563.832|220085.569|104.751 +639568.459|220081.466|104.541 +639573.098|220077.348|104.288 +639577.704|220073.261|103.967 +639582.343|220069.146|103.754 +639586.948|220065.059|103.480 +639591.533|220060.993|103.081 +639596.138|220056.908|102.849 +639600.631|220052.922|102.669 +639605.124|220048.941|102.776 +639609.711|220044.869|102.434 +639614.207|220040.888|102.575 +639618.642|220036.953|102.498 +639623.049|220033.045|102.575 +639627.520|220029.083|102.614 +639631.931|220025.172|102.471 +639636.360|220021.247|102.511 +639640.706|220017.391|102.437 +639643.574|220011.975|102.325 +639639.222|220015.830|102.376 +639634.805|220019.741|102.489 +639630.422|220023.624|102.480 +639625.993|220027.547|102.450 +639621.589|220031.445|102.312 +639617.151|220035.374|102.355 +639612.683|220039.330|102.315 +639608.224|220043.278|102.236 +639603.627|220047.353|102.602 +639599.122|220051.343|102.535 +639594.562|220055.381|102.757 +639590.039|220059.389|102.818 +639585.357|220063.541|103.428 +639580.755|220067.622|103.675 +639576.098|220071.746|103.940 +639571.449|220075.870|104.208 +639566.804|220079.982|104.455 +639562.168|220084.090|104.693 +639557.529|220088.202|104.702 +639552.902|220092.296|104.653 +639548.300|220096.371|104.507 +639543.703|220100.440|104.339 +639539.076|220104.536|104.092 +639534.434|220108.645|103.925 +639529.747|220112.793|103.754 +639525.110|220116.896|103.586 +639515.738|220125.190|103.023 +639511.071|220129.320|102.803 +639506.417|220133.441|102.535 +639501.677|220137.635|102.184 +639496.962|220141.807|101.992 +639492.143|220146.078|102.407 +639487.273|220150.397|102.873 +639482.338|220154.780|103.733 +639462.687|220172.208|106.348 +639443.433|220189.241|105.461 +639433.896|220197.671|104.409 +639429.114|220201.896|103.654 +639424.258|220206.194|103.711 +639419.360|220210.528|103.736 +639414.489|220214.838|103.620 +639409.631|220219.132|103.102 +639390.251|220236.265|101.489 +639380.513|220244.879|100.776 +639375.594|220249.234|100.791 +639370.638|220253.617|100.724 +639365.730|220257.961|100.691 +639360.860|220262.265|100.066 +639355.992|220266.572|99.813 +639351.066|220270.927|99.606 +639306.501|220310.362|98.637 +639301.481|220314.812|99.018 +639296.397|220319.317|99.536 +639291.463|220323.685|99.688 +639286.461|220328.114|99.609 +639281.593|220332.411|98.819 +639276.564|220336.865|98.990 +639271.446|220341.406|99.953 +639256.261|220354.866|101.654 +639251.156|220359.399|102.690 +639235.931|220372.901|104.793 +639230.902|220377.357|105.309 +639220.779|220386.334|106.586 +639210.687|220395.280|107.707 +639205.643|220399.748|108.079 +639200.647|220404.177|108.488 +639195.523|220408.721|109.241 +639190.534|220413.141|109.661 +639185.462|220417.634|109.935 +639180.491|220422.038|110.216 +639175.419|220426.531|110.557 +639170.396|220430.981|110.950 +639165.324|220435.477|111.380 +639160.261|220439.960|111.722 +639155.204|220444.441|112.051 +639150.194|220448.882|112.426 +639145.143|220453.356|112.767 +639135.060|220462.287|113.273 +639129.976|220466.789|113.496 +639119.887|220475.723|113.666 +639114.809|220480.218|113.889 +639109.728|220484.720|114.197 +639089.520|220502.615|114.931 +639084.421|220507.126|114.934 +639079.349|220511.619|115.343 +639074.243|220516.139|115.562 +639064.100|220525.119|115.806 +639058.994|220529.639|116.089 +639053.944|220534.107|116.321 +639048.841|220538.630|116.717 +639043.708|220543.172|116.751 +639038.670|220547.631|116.891 +639033.525|220552.188|117.269 +639028.420|220556.708|117.796 +639023.284|220561.259|118.092 +639018.209|220565.749|118.156 +639013.082|220570.287|118.324 +639007.952|220574.829|118.558 +639002.826|220579.367|118.814 +638997.708|220583.896|118.912 +638992.590|220588.426|118.985 +638987.479|220592.952|119.028 +638982.322|220597.512|118.924 +638977.164|220602.072|118.869 +638972.059|220606.589|118.787 +638966.902|220611.152|118.808 +638961.741|220615.724|119.015 +638956.627|220620.250|119.259 +638951.464|220624.825|119.662 +638946.258|220629.434|119.881 +638941.146|220633.957|120.143 +638935.946|220638.562|120.320 +638930.795|220643.122|120.472 +638925.644|220647.682|120.658 +638920.447|220652.281|120.732 +638915.299|220656.838|120.866 +638910.154|220661.389|120.878 +638904.963|220665.982|120.826 +638899.821|220670.530|120.762 +638894.630|220675.123|120.680 +638889.443|220679.713|120.567 +638884.252|220684.301|120.415 +638879.113|220688.848|120.235 +638873.925|220693.436|120.067 +638868.738|220698.026|119.878 +638863.593|220702.577|120.061 +638858.405|220707.173|120.357 +638853.214|220711.766|120.408 +638848.026|220716.354|120.271 +638842.839|220720.947|120.351 +638837.654|220725.531|120.165 +638832.466|220730.118|119.918 +638827.230|220734.754|120.003 +638822.042|220739.345|120.134 +638811.667|220748.528|120.466 +638806.479|220753.119|120.466 +638801.291|220757.709|120.442 +638796.055|220762.342|120.524 +638790.870|220766.932|120.707 +638785.689|220771.522|121.064 +638780.507|220776.113|121.414 +638775.319|220780.703|121.387 +638770.129|220785.293|121.207 +638764.941|220789.884|121.192 +638759.750|220794.474|121.134 +638754.559|220799.067|121.091 +638749.417|220803.615|121.064 +638744.220|220808.211|120.738 +638739.018|220812.811|120.338 +638733.815|220817.410|119.966 +638728.654|220821.970|119.467 +638723.445|220826.573|119.003 +638718.288|220831.132|118.641 +638713.082|220835.735|118.409 +638707.934|220840.292|118.421 +638702.774|220844.854|118.141 +638697.565|220849.463|117.912 +638692.414|220854.020|117.955 +638687.268|220858.577|118.138 +638676.963|220867.699|118.196 +638671.797|220872.268|117.976 +638666.649|220876.825|118.153 +638661.534|220881.351|118.083 +638656.380|220885.914|118.147 +638640.994|220899.542|119.031 +638635.940|220904.016|119.232 +638630.780|220908.582|119.320 +638625.693|220913.090|119.820 +638620.642|220917.565|120.088 +638615.537|220922.085|120.299 +638610.480|220926.562|120.512 +638605.426|220931.037|120.759 +638600.318|220935.560|120.939 +638595.301|220940.001|121.061 +638590.250|220944.475|121.408 +638585.209|220948.944|121.887 +638580.210|220953.373|122.304 +638575.163|220957.844|122.734 +638570.216|220962.227|123.194 +638565.187|220966.686|123.840 +638560.194|220971.109|124.350 +638555.256|220975.486|124.965 +638550.245|220979.927|125.218 +638545.268|220984.331|125.340 +638540.230|220988.790|125.288 +638535.219|220993.219|125.051 +638530.180|220997.678|125.060 +638495.729|221028.216|129.266 +638490.794|221032.587|129.455 +638485.804|221037.004|129.589 +638475.953|221045.727|130.238 +638466.197|221054.377|131.348 +638461.369|221058.654|131.695 +638456.416|221063.037|131.814 +638451.511|221067.377|131.945 +638446.625|221071.708|132.238 +638441.752|221076.021|132.223 +638436.796|221080.407|132.372 +638431.980|221084.669|132.485 +638427.063|221089.021|132.576 +638422.186|221093.337|132.619 +638417.304|221097.659|132.619 +638412.424|221101.978|132.668 +638407.553|221106.291|132.802 +638402.731|221110.558|132.960 +638397.793|221114.923|132.585 +638392.956|221119.209|132.646 +638383.266|221127.783|132.725 +638378.390|221132.096|132.552 +638373.571|221136.363|132.847 +638368.694|221140.679|132.698 +638359.071|221149.198|133.122 +638349.479|221157.693|133.442 +638344.636|221161.975|133.289 +638339.796|221166.258|133.170 +638320.502|221183.329|132.719 +638268.018|221229.796|131.842 +638263.291|221233.981|131.814 +638258.600|221238.136|132.046 +638249.142|221246.509|131.759 +638244.418|221250.687|131.531 +638239.724|221254.848|131.805 +638235.039|221258.996|131.848 +638230.357|221263.138|131.631 +638225.654|221267.305|131.607 +638220.930|221271.484|131.473 +638216.294|221275.593|131.589 +638211.767|221279.610|132.360 +638207.241|221283.624|133.149 +638202.556|221287.772|133.021 +638197.948|221291.854|133.058 +638193.229|221296.029|132.780 +638183.915|221304.271|132.408 +638179.227|221308.420|132.079 +638174.512|221312.589|131.628 +638160.472|221325.004|130.162 +638155.809|221329.125|129.821 +638151.197|221333.206|129.495 +638146.567|221337.303|129.086 +638141.953|221341.384|128.806 +638137.314|221345.486|128.394 +638132.708|221349.559|127.934 +638128.130|221353.609|127.620 +638123.613|221357.608|127.660 +638119.114|221361.595|127.800 +638114.618|221365.576|127.708 +638105.599|221373.555|127.458 +638100.896|221377.710|126.383 +638096.251|221381.809|125.383 +638091.572|221385.943|124.490 +638082.453|221394.005|123.453 +638077.865|221398.055|122.588 +638068.770|221406.099|121.551 +638064.274|221410.074|121.204 +638059.785|221414.045|120.887 +638055.322|221417.989|120.500 +638050.878|221421.924|120.198 +638046.398|221425.884|119.753 +638041.954|221429.819|119.491 +638037.528|221433.732|119.101 +638033.139|221437.615|118.897 +638028.704|221441.535|118.503 +638024.394|221445.351|118.458 +638020.036|221449.210|118.208 +638007.008|221460.735|117.555 +638002.708|221464.542|117.403 +637998.392|221468.361|117.196 +637994.146|221472.119|117.089 +637985.645|221479.641|116.888 +637981.378|221483.418|116.498 +637977.107|221487.197|116.342 +637972.947|221490.882|116.227 +637964.705|221498.188|116.583 +637956.256|221505.662|115.913 +637947.847|221513.105|115.242 +637943.628|221516.836|114.776 +637939.446|221520.533|114.480 +637935.536|221524.005|115.090 +637923.606|221534.585|115.937 +637911.469|221545.329|115.425 +637907.503|221548.840|115.468 +637903.428|221552.446|115.077 +637899.450|221555.963|114.888 +637895.503|221559.459|114.824 +637891.388|221563.099|114.111 +637887.432|221566.598|113.840 +637879.382|221573.715|112.798 +637867.321|221584.374|110.786 +637863.103|221588.096|109.399 +637859.076|221591.649|108.344 +637855.187|221595.091|108.046 +637851.313|221598.520|107.808 +637847.442|221601.943|107.390 +637839.856|221608.657|106.985 +637836.088|221611.992|106.799 +637832.385|221615.268|106.665 +637825.033|221621.782|106.817 +637821.363|221625.031|106.625 +638026.555|221440.883|118.458 +638030.893|221437.036|118.668 +638039.723|221429.212|119.357 +638044.139|221425.295|119.753 +638048.547|221421.388|119.875 +638052.954|221417.480|120.265 +638057.398|221413.542|120.591 +638061.876|221409.577|121.103 +638066.347|221405.614|121.359 +638070.821|221401.649|121.902 +638075.299|221397.680|122.237 +638089.024|221385.528|124.282 +638098.235|221377.375|125.910 +638102.935|221373.217|126.977 +638107.468|221369.203|127.480 +638116.493|221361.199|127.583 +638120.970|221357.221|127.355 +638125.494|221353.207|127.379 +638130.072|221349.153|127.693 +638134.665|221345.081|128.126 +638139.328|221340.951|128.672 +638143.949|221336.854|129.013 +638148.558|221332.770|129.315 +638153.227|221328.631|129.708 +638157.882|221324.507|130.028 +638162.481|221320.429|130.354 +638171.933|221312.059|131.619 +638176.612|221307.914|131.887 +638181.269|221303.784|132.354 +638185.948|221299.638|132.674 +638190.636|221295.481|132.780 +638195.345|221291.305|133.024 +638199.962|221287.209|133.064 +638209.320|221278.906|133.027 +638213.797|221274.922|131.994 +638218.385|221270.850|131.610 +638223.121|221266.647|131.528 +638227.836|221262.468|131.643 +638232.549|221258.289|131.765 +638237.300|221254.074|131.860 +638242.001|221249.904|131.625 +638246.713|221245.725|131.820 +638256.326|221237.206|132.174 +638261.008|221233.049|131.912 +638265.781|221228.812|131.619 +638270.658|221224.493|132.335 +638318.868|221181.741|132.808 +638328.689|221173.042|133.597 +638338.394|221164.429|133.286 +638343.243|221160.128|133.128 +638348.132|221155.794|133.295 +638362.714|221142.858|132.884 +638367.648|221138.478|132.722 +638372.565|221134.119|132.838 +638377.478|221129.758|132.536 +638382.395|221125.399|132.686 +638387.296|221121.053|132.750 +638392.231|221116.676|132.698 +638397.174|221112.293|132.719 +638402.152|221107.882|133.073 +638407.120|221103.475|132.942 +638412.012|221099.128|132.622 +638416.996|221094.712|132.655 +638421.930|221090.335|132.725 +638426.890|221085.933|132.616 +638431.849|221081.538|132.488 +638436.832|221077.119|132.643 +638441.761|221072.745|132.280 +638446.775|221068.298|132.290 +638451.703|221063.921|131.994 +638456.702|221059.486|131.899 +638461.643|221055.103|131.732 +638466.593|221050.708|131.177 +638476.496|221041.911|130.150 +638481.571|221037.412|130.436 +638486.432|221033.090|129.510 +638491.519|221028.576|129.446 +638496.460|221024.190|128.842 +638521.347|221002.083|125.874 +638526.386|220997.605|125.331 +638531.369|220993.186|125.282 +638536.453|220988.678|125.325 +638541.543|220984.164|125.450 +638546.576|220979.701|125.499 +638551.638|220975.209|125.294 +638556.677|220970.734|124.831 +638561.706|220966.269|124.225 +638566.735|220961.800|123.655 +638571.767|220957.332|123.078 +638576.854|220952.815|122.606 +638581.841|220948.383|122.128 +638586.928|220943.863|121.682 +638591.976|220939.379|121.375 +638597.075|220934.850|121.164 +638602.180|220930.321|120.994 +638607.228|220925.837|120.741 +638612.324|220921.311|120.494 +638617.423|220916.781|120.317 +638622.468|220912.301|120.049 +638627.558|220907.781|119.698 +638632.645|220903.260|119.357 +638637.751|220898.731|119.323 +638642.890|220894.168|118.991 +638653.058|220885.134|118.208 +638658.221|220880.553|118.424 +638663.272|220876.069|118.369 +638668.417|220871.503|118.244 +638678.667|220862.408|118.257 +638683.806|220857.842|118.107 +638688.954|220853.276|118.116 +638694.099|220848.710|118.086 +638699.250|220844.141|118.244 +638704.398|220839.572|118.388 +638709.543|220835.006|118.436 +638714.701|220830.437|118.836 +638719.852|220825.868|119.159 +638725.003|220821.299|119.598 +638730.203|220816.691|120.024 +638735.351|220812.128|120.424 +638740.496|220807.565|120.756 +638745.690|220802.960|121.103 +638750.826|220798.403|121.247 +638755.961|220793.846|121.326 +638761.146|220789.247|121.442 +638766.279|220784.693|121.484 +638771.461|220780.093|121.576 +638776.642|220775.497|121.701 +638781.769|220770.943|121.433 +638786.944|220766.347|121.024 +638792.120|220761.751|120.756 +638797.253|220757.194|120.661 +638802.431|220752.597|120.625 +638807.613|220747.998|120.628 +638812.746|220743.444|120.558 +638817.924|220738.845|120.411 +638823.106|220734.245|120.296 +638828.239|220729.692|120.366 +638838.940|220720.197|120.524 +638843.774|220715.906|120.518 +638848.956|220711.306|120.500 +638854.138|220706.707|120.442 +638859.271|220702.150|120.357 +638864.455|220697.550|120.195 +638869.686|220692.908|120.232 +638879.997|220683.758|120.594 +638885.179|220679.162|120.707 +638890.311|220674.608|120.856 +638895.493|220670.012|120.985 +638900.675|220665.415|121.125 +638905.811|220660.859|121.155 +638910.995|220656.256|121.140 +638916.183|220651.654|121.100 +638921.322|220647.088|120.945 +638926.513|220642.482|120.835 +638931.658|220637.910|120.576 +638936.806|220633.341|120.378 +638941.996|220628.733|120.302 +638947.148|220624.157|120.018 +638952.305|220619.579|119.640 +638957.453|220615.007|119.521 +638962.610|220610.429|119.250 +638967.761|220605.854|119.122 +638972.912|220601.279|119.089 +638978.060|220596.707|119.095 +638983.160|220592.178|119.147 +638988.311|220587.603|119.156 +638993.419|220583.067|119.076 +638998.580|220578.486|118.964 +639003.694|220573.942|118.781 +639008.815|220569.391|118.540 +639013.932|220564.843|118.336 +639019.050|220560.299|118.250 +639024.131|220555.782|117.924 +639029.322|220551.167|117.400 +639034.409|220546.644|117.025 +639039.536|220542.090|116.885 +639044.611|220537.582|116.815 +639049.710|220533.053|116.412 +639054.803|220528.523|116.062 +639059.890|220524.003|115.916 +639064.980|220519.483|115.760 +639075.136|220510.455|115.108 +639080.187|220505.968|114.901 +639085.280|220501.445|114.855 +639090.334|220496.952|114.626 +639100.404|220488.006|114.169 +639105.446|220483.529|114.251 +639110.475|220479.060|113.870 +639115.519|220474.580|113.928 +639120.543|220470.114|113.681 +639125.557|220465.661|113.578 +639140.653|220452.247|112.791 +639145.643|220447.812|112.487 +639150.681|220443.335|112.249 +639155.686|220438.884|111.850 +639170.713|220425.528|110.737 +639175.672|220421.121|110.460 +639180.683|220416.668|110.170 +639185.712|220412.196|109.737 +639190.677|220407.783|109.457 +639195.682|220403.329|108.820 +639200.681|220398.885|108.277 +639205.667|220394.451|107.902 +639210.666|220390.007|107.442 +639230.630|220372.252|105.290 +639235.602|220367.832|104.818 +639255.548|220350.087|102.197 +639260.525|220345.658|101.383 +639270.428|220336.849|100.331 +639275.357|220332.469|100.054 +639280.267|220328.108|99.972 +639285.187|220323.737|99.831 +639290.045|220319.421|99.792 +639294.962|220315.056|99.740 +639299.854|220310.710|99.496 +639304.737|220306.369|99.335 +639348.299|220267.687|99.688 +639353.121|220263.411|99.859 +639357.930|220259.140|100.103 +639362.710|220254.901|100.252 +639367.498|220250.652|100.694 +639372.259|220246.424|100.642 +639377.142|220242.090|100.478 +639381.863|220237.905|101.087 +639386.606|220233.693|101.209 +639391.367|220229.471|101.590 +639396.088|220225.283|101.895 +639400.825|220221.080|102.123 +639405.498|220216.944|103.129 +639424.447|220200.125|103.599 +639429.187|220195.919|103.897 +639433.811|220191.822|104.638 +639438.465|220187.698|105.190 +639457.228|220171.047|106.022 +639486.151|220145.325|102.431 +639490.927|220141.079|101.898 +639495.667|220136.870|101.886 +639500.257|220132.795|102.151 +639514.144|220120.478|103.007 +639518.752|220116.387|103.239 +639523.364|220112.294|103.468 +639527.994|220108.188|103.629 +639532.624|220104.076|103.791 +639537.205|220100.010|103.967 +639541.768|220095.962|104.251 +639546.349|220091.896|104.455 +639550.951|220087.812|104.565 +639555.514|220083.761|104.638 +639560.156|220079.637|104.577 +639564.725|220075.577|104.382 +639569.352|220071.469|104.178 +639574.010|220067.329|103.852 +639578.612|220063.239|103.541 +639583.212|220059.152|103.288 +639587.817|220055.058|103.010 +639592.444|220050.943|102.395 +639597.034|220046.868|102.258 +639601.573|220042.833|102.117 +639606.120|220038.794|101.959 +639610.510|220034.902|102.343 +639615.045|220030.869|102.023 +639619.474|220026.940|102.245 +639623.896|220023.011|102.255 +639628.377|220019.034|102.264 +639632.833|220015.081|102.401 +639637.280|220011.130|102.349 +639637.204|220008.954|102.120 +639632.885|220012.773|102.264 +639628.557|220016.601|102.230 +639624.247|220020.415|102.117 +639619.949|220024.212|101.968 +639615.667|220027.998|101.767 +639611.299|220031.863|101.736 +639606.876|220035.776|101.733 +639602.493|220039.654|101.813 +639598.034|220043.601|102.014 +639593.517|220047.600|102.267 +639589.009|220051.593|102.764 +639584.446|220055.634|103.035 +639579.941|220059.621|103.288 +639575.433|220063.614|103.596 +639570.876|220067.649|103.897 +639566.329|220071.676|104.175 +639561.748|220075.730|104.370 +639557.179|220079.771|104.531 +639552.610|220083.816|104.458 +639548.086|220087.818|104.425 +639543.536|220091.842|104.278 +639539.003|220095.850|104.056 +639534.431|220099.888|103.772 +639529.841|220103.948|103.617 +639525.251|220108.008|103.471 +639516.018|220116.168|102.953 +639511.416|220120.237|102.651 +639506.783|220124.336|102.529 +639502.122|220128.454|102.288 +639497.489|220132.548|101.904 +639492.777|220136.717|101.715 +639488.044|220140.905|101.934 +639483.200|220145.200|102.538 +639478.260|220149.583|103.428 +639468.543|220158.194|104.647 +639463.705|220162.476|105.007 +639458.905|220166.728|105.202 +639454.092|220170.992|105.473 +639449.252|220175.272|105.312 +639444.512|220179.466|105.178 +639439.766|220183.660|104.784 +639434.935|220187.936|104.638 +639430.156|220192.157|104.169 +639425.392|220196.370|103.635 +639401.176|220217.788|102.386 +639386.643|220230.632|100.999 +639376.855|220239.292|100.590 +639371.924|220243.654|100.350 +639366.946|220248.061|100.429 +639362.012|220252.426|100.234 +639357.074|220256.793|100.069 +639352.139|220261.161|99.917 +639347.290|220265.444|99.155 +639307.251|220300.883|99.280 +639302.155|220305.397|99.444 +639297.162|220309.817|99.600 +639292.078|220314.319|99.734 +639287.049|220318.769|99.822 +639281.971|220323.267|99.962 +639276.933|220327.730|100.191 +639271.846|220332.235|100.456 +639266.832|220336.676|100.548 +639251.393|220350.367|102.745 +639230.944|220368.494|105.178 +639210.443|220386.669|107.357 +639195.106|220400.257|108.512 +639184.898|220409.307|109.640 +639179.768|220413.851|110.009 +639174.636|220418.402|110.472 +639169.576|220422.879|110.670 +639164.498|220427.381|111.142 +639159.341|220431.950|111.429 +639154.275|220436.437|111.795 +639149.163|220440.966|112.191 +639144.064|220445.486|112.487 +639138.977|220449.991|112.666 +639133.875|220454.512|113.047 +639123.652|220463.567|113.578 +639113.508|220472.547|113.791 +639103.324|220481.566|114.059 +639098.216|220486.086|114.114 +639088.097|220495.047|114.334 +639077.874|220504.100|114.764 +639072.771|220508.620|114.910 +639062.545|220517.681|115.617 +639057.446|220522.199|115.824 +639052.353|220526.710|115.961 +639047.195|220531.279|116.364 +639042.142|220535.756|116.766 +639037.006|220540.307|116.918 +639031.913|220544.815|117.153 +639026.771|220549.372|117.482 +639021.677|220553.886|117.888 +639016.590|220558.394|118.183 +639011.457|220562.941|118.458 +639006.334|220567.477|118.583 +639001.256|220571.976|118.811 +638996.132|220576.517|119.073 +638991.014|220581.046|119.177 +638985.900|220585.576|119.241 +638980.788|220590.102|119.247 +638975.726|220594.583|119.256 +638970.568|220599.149|119.284 +638965.457|220603.675|119.409 +638960.345|220608.204|119.598 +638955.234|220612.727|119.741 +638950.125|220617.251|119.899 +638944.965|220621.826|120.259 +638939.857|220626.349|120.439 +638934.754|220630.869|120.591 +638929.600|220635.432|120.808 +638924.498|220639.952|121.015 +638919.399|220644.469|121.177 +638914.250|220649.029|121.301 +638909.105|220653.583|121.369 +638903.960|220658.137|121.381 +638898.818|220662.690|121.393 +638893.728|220667.195|121.274 +638888.541|220671.786|121.097 +638883.402|220676.333|120.966 +638878.308|220680.841|120.875 +638873.121|220685.432|120.686 +638867.982|220689.979|120.588 +638857.701|220699.081|120.564 +638852.513|220703.674|120.683 +638847.423|220708.182|120.668 +638842.235|220712.772|120.576 +638837.047|220717.366|120.622 +638831.960|220721.867|120.597 +638826.773|220726.458|120.475 +638821.634|220731.008|120.460 +638816.498|220735.559|120.619 +638811.310|220740.152|120.771 +638806.171|220744.700|120.838 +638801.035|220749.251|120.905 +638795.848|220753.841|120.978 +638790.660|220758.434|121.021 +638785.576|220762.939|121.298 +638780.394|220767.533|121.686 +638775.210|220772.123|121.875 +638770.071|220776.671|121.811 +638764.883|220781.264|121.753 +638759.744|220785.812|121.780 +638754.605|220790.362|121.673 +638749.414|220794.956|121.548 +638744.269|220799.509|121.411 +638739.124|220804.063|121.201 +638733.921|220808.662|120.759 +638728.767|220813.222|120.381 +638723.607|220817.782|119.918 +638718.404|220822.385|119.579 +638713.247|220826.947|119.244 +638708.083|220831.510|118.842 +638702.874|220836.119|118.510 +638697.766|220840.639|118.314 +638692.569|220845.239|118.385 +638687.418|220849.798|118.424 +638682.306|220854.322|118.257 +638677.106|220858.924|118.339 +638671.949|220863.487|118.314 +638666.847|220868.004|118.375 +638661.699|220872.564|118.577 +638656.545|220877.127|118.644 +638651.424|220881.656|118.439 +638641.192|220890.721|119.201 +638636.086|220895.238|119.354 +638630.929|220899.804|119.439 +638625.833|220904.318|119.781 +638620.737|220908.835|120.094 +638615.640|220913.346|120.451 +638610.590|220917.821|120.756 +638605.481|220922.344|120.927 +638600.376|220926.864|121.109 +638595.319|220931.345|121.344 +638590.220|220935.862|121.682 +638585.157|220940.342|121.878 +638580.110|220944.814|122.268 +638575.068|220949.282|122.752 +638570.024|220953.751|123.228 +638564.986|220958.216|123.792 +638559.999|220962.639|124.343 +638554.973|220967.095|125.054 +638549.925|220971.566|125.486 +638544.908|220976.007|125.706 +638539.879|220980.460|125.785 +638534.838|220984.923|125.700 +638529.790|220989.388|125.602 +638524.752|220993.844|125.639 +638509.841|221007.057|127.035 +638499.917|221015.851|127.803 +638494.985|221020.228|129.098 +638490.072|221024.583|129.488 +638485.085|221029.000|129.647 +638475.222|221037.732|130.150 +638470.290|221042.100|130.418 +638455.583|221055.136|132.158 +638450.670|221059.483|132.201 +638445.705|221063.878|132.207 +638440.807|221068.218|132.399 +638435.902|221072.559|132.564 +638430.986|221076.908|132.649 +638426.112|221081.224|132.671 +638421.181|221085.589|132.649 +638416.258|221089.945|132.732 +638411.381|221094.261|132.786 +638406.504|221098.580|132.872 +638401.643|221102.883|133.116 +638396.766|221107.199|133.237 +638391.886|221111.515|132.951 +638386.973|221115.862|132.796 +638382.130|221120.147|132.869 +638377.219|221124.494|132.786 +638372.382|221128.776|132.924 +638367.523|221133.074|132.930 +638362.683|221137.359|133.088 +638357.889|221141.602|133.241 +638343.377|221154.447|133.186 +638338.595|221158.680|133.503 +638333.764|221162.957|133.472 +638329.009|221167.169|133.631 +638324.208|221171.412|133.512 +638319.322|221175.731|133.140 +638314.558|221179.943|132.963 +638309.697|221184.244|132.829 +638271.600|221217.949|132.786 +638266.759|221222.219|132.006 +638262.053|221226.386|132.119 +638257.366|221230.534|132.360 +638243.223|221243.043|132.049 +638238.450|221247.264|131.835 +638233.826|221251.355|131.945 +638229.071|221255.561|131.890 +638224.392|221259.700|131.692 +638215.132|221267.896|132.268 +638210.579|221271.932|132.872 +638205.991|221275.992|132.994 +638201.340|221280.107|133.061 +638196.686|221284.228|133.119 +638192.074|221288.306|133.155 +638187.420|221292.424|132.963 +638182.787|221296.520|132.917 +638178.139|221300.626|132.527 +638173.457|221304.765|132.250 +638164.054|221313.071|130.976 +638154.779|221321.267|130.241 +638150.161|221325.345|129.879 +638145.495|221329.472|129.540 +638140.904|221333.532|129.363 +638126.993|221345.819|127.696 +638122.412|221349.866|127.398 +638117.867|221353.881|127.038 +638113.317|221357.907|126.922 +638108.867|221361.848|127.084 +638104.371|221365.823|127.032 +638099.890|221369.785|127.077 +638090.512|221378.057|124.877 +638085.851|221382.169|123.844 +638081.389|221386.110|123.566 +638072.263|221394.172|122.563 +638067.783|221398.132|122.259 +638063.259|221402.128|121.762 +638058.840|221406.035|121.530 +638054.368|221409.985|121.076 +638049.949|221413.893|120.881 +638045.489|221417.831|120.521 +638041.070|221421.738|120.125 +638027.649|221433.592|118.558 +638023.404|221437.350|118.799 +638014.540|221445.178|117.879 +638010.005|221449.173|116.638 +638005.814|221452.892|117.178 +637988.775|221467.958|116.915 +637984.511|221471.729|116.754 +637980.296|221475.453|116.598 +637976.010|221479.245|116.376 +637971.780|221482.985|116.178 +637967.521|221486.749|115.888 +637963.306|221490.477|115.556 +637959.097|221494.196|115.288 +637954.903|221497.905|115.081 +637950.742|221501.581|114.824 +637946.594|221505.251|114.632 +637942.436|221508.927|114.407 +637938.291|221512.593|114.255 +637934.192|221516.217|114.090 +637930.138|221519.802|114.133 +637922.252|221526.794|115.141 +637910.222|221537.435|115.065 +637902.224|221544.509|114.888 +637894.162|221551.635|114.303 +637890.151|221555.177|114.011 +637886.161|221558.704|113.599 +637882.202|221562.203|113.325 +637878.230|221565.714|113.008 +637874.237|221569.244|112.636 +637857.787|221583.746|108.439 +637853.831|221587.239|107.884 +637850.003|221590.622|107.619 +637846.122|221594.051|107.378 +637838.618|221600.693|107.482 +637834.878|221603.997|107.195 +637827.249|221610.736|106.500 +637823.744|221613.845|107.104 +638022.181|221436.293|118.823 +638026.427|221432.516|118.598 +638030.905|221428.542|118.985 +638044.356|221416.609|120.588 +638048.851|221412.619|121.152 +638053.338|221408.638|121.436 +638066.755|221396.726|122.478 +638080.420|221384.598|123.639 +638084.955|221380.572|124.075 +638103.517|221364.113|127.081 +638108.053|221360.086|127.099 +638112.509|221356.121|126.733 +638117.096|221352.049|127.065 +638121.726|221347.940|127.358 +638126.350|221343.834|127.654 +638140.383|221331.386|129.519 +638145.001|221327.284|129.610 +638149.667|221323.141|129.973 +638154.337|221318.999|130.375 +638159.040|221314.823|130.708 +638163.737|221310.654|131.043 +638173.180|221302.281|132.311 +638177.922|221298.072|132.683 +638182.628|221293.893|132.869 +638187.344|221289.705|133.134 +638192.010|221285.560|133.140 +638196.668|221281.420|133.116 +638201.352|221277.257|132.978 +638205.988|221273.133|132.878 +638210.725|221268.927|132.765 +638215.373|221264.793|132.469 +638219.970|221260.703|131.866 +638224.691|221256.506|131.723 +638229.455|221252.275|131.872 +638234.201|221248.060|131.912 +638238.971|221243.823|131.814 +638258.073|221226.858|132.436 +638262.834|221222.624|132.055 +638267.616|221218.378|132.171 +638306.323|221184.003|132.832 +638311.233|221179.641|133.006 +638316.073|221175.341|133.061 +638325.915|221166.608|133.667 +638330.774|221162.292|133.548 +638335.650|221157.958|133.615 +638340.488|221153.657|133.378 +638360.071|221136.262|133.305 +638365.003|221131.879|133.140 +638369.898|221127.530|133.097 +638374.823|221123.153|132.914 +638379.719|221118.803|132.899 +638384.702|221114.374|132.832 +638389.640|221109.994|133.213 +638394.639|221105.553|133.338 +638399.552|221101.189|133.140 +638404.499|221096.790|132.863 +638409.446|221092.395|133.021 +638414.390|221088.003|132.716 +638419.361|221083.586|132.710 +638424.335|221079.167|132.722 +638429.307|221074.753|132.732 +638434.253|221070.355|132.570 +638439.271|221065.899|132.582 +638444.248|221061.473|132.287 +638449.210|221057.066|132.290 +638464.090|221043.831|130.988 +638469.040|221039.427|130.464 +638478.992|221030.576|129.473 +638484.009|221026.122|129.659 +638489.038|221021.651|129.519 +638494.061|221017.186|129.327 +638498.941|221012.830|127.559 +638518.933|220995.051|125.721 +638523.984|220990.567|125.889 +638529.053|220986.062|125.745 +638534.094|220981.585|125.889 +638539.184|220977.065|126.020 +638544.210|220972.602|125.995 +638549.261|220968.110|125.715 +638554.299|220963.629|125.267 +638559.319|220959.161|124.569 +638564.391|220954.650|123.904 +638569.372|220950.218|123.322 +638574.404|220945.740|122.832 +638579.497|220941.214|122.475 +638584.542|220936.734|122.152 +638589.641|220932.204|121.902 +638594.682|220927.724|121.561 +638599.733|220923.240|121.308 +638604.835|220918.708|121.180 +638609.886|220914.221|121.027 +638615.022|220909.658|120.637 +638620.057|220905.184|120.232 +638625.144|220900.666|119.838 +638630.234|220896.143|119.540 +638635.285|220891.657|119.439 +638640.433|220887.088|119.329 +638645.538|220882.555|119.354 +638671.059|220859.893|118.638 +638676.146|220855.373|118.421 +638681.243|220850.850|118.385 +638686.391|220846.281|118.409 +638691.493|220841.755|118.564 +638696.638|220837.186|118.634 +638701.740|220832.662|118.790 +638706.898|220828.087|119.265 +638712.046|220823.521|119.552 +638717.151|220818.995|119.915 +638722.299|220814.429|120.277 +638727.447|220809.863|120.689 +638732.550|220805.343|121.149 +638737.695|220800.780|121.579 +638742.831|220796.224|121.637 +638747.966|220791.664|121.826 +638753.054|220787.150|121.902 +638758.235|220782.553|122.033 +638763.319|220778.039|122.060 +638768.449|220773.485|122.030 +638773.582|220768.932|122.146 +638778.709|220764.378|121.923 +638783.835|220759.824|121.649 +638788.962|220755.271|121.356 +638794.092|220750.714|121.378 +638799.222|220746.160|121.314 +638804.355|220741.606|121.247 +638809.481|220737.050|121.000 +638814.614|220732.493|120.942 +638819.744|220727.939|120.756 +638824.874|220723.382|120.716 +638830.007|220718.829|120.838 +638835.133|220714.278|120.792 +638840.266|220709.721|120.811 +638845.396|220705.167|120.951 +638850.480|220700.653|120.832 +638855.662|220696.057|120.817 +638860.795|220691.500|120.823 +638865.876|220686.989|120.927 +638871.057|220682.390|120.985 +638876.187|220677.839|121.189 +638881.271|220673.325|121.219 +638886.404|220668.771|121.329 +638891.537|220664.217|121.500 +638896.670|220659.664|121.561 +638901.802|220655.107|121.686 +638906.938|220650.547|121.649 +638912.074|220645.987|121.582 +638922.309|220636.898|121.219 +638927.454|220632.329|120.988 +638932.599|220627.760|120.765 +638937.696|220623.231|120.582 +638942.844|220618.662|120.436 +638947.992|220614.087|120.183 +638953.094|220609.554|120.000 +638958.245|220604.982|119.878 +638963.348|220600.453|119.729 +638968.502|220595.881|119.601 +638973.653|220591.306|119.503 +638978.755|220586.780|119.479 +638983.864|220582.247|119.396 +638989.021|220577.669|119.272 +638994.084|220573.177|119.180 +638999.247|220568.592|118.997 +639004.365|220564.051|118.799 +639009.491|220559.497|118.442 +639014.615|220554.949|118.220 +639019.748|220550.387|117.790 +639024.881|220545.830|117.449 +639030.017|220541.270|117.126 +639035.101|220536.756|116.873 +639040.237|220532.196|116.620 +639045.382|220527.624|116.208 +639050.481|220523.098|115.839 +639055.620|220518.535|115.629 +639060.716|220514.009|115.358 +639065.837|220509.461|114.788 +639070.976|220504.898|114.678 +639076.072|220500.378|114.556 +639081.187|220495.833|114.169 +639086.228|220491.359|114.142 +639091.340|220486.823|113.907 +639096.427|220482.309|114.017 +639101.553|220477.759|113.602 +639106.604|220473.275|113.599 +639111.652|220468.798|113.657 +639116.763|220464.259|113.523 +639126.910|220455.252|113.099 +639131.994|220450.741|112.840 +639137.087|220446.215|112.471 +639142.159|220441.713|112.368 +639147.203|220437.235|112.078 +639152.303|220432.706|111.749 +639157.375|220428.198|111.191 +639162.404|220423.736|111.167 +639172.551|220414.723|110.219 +639177.620|220410.221|109.859 +639192.735|220396.791|108.375 +639222.846|220370.048|106.092 +639227.933|220365.525|105.400 +639232.907|220361.105|104.891 +639237.915|220356.655|104.559 +639252.927|220343.314|102.559 +639258.020|220338.785|101.633 +639262.964|220334.393|101.163 +639267.932|220329.982|100.962 +639277.814|220321.210|100.670 +639282.770|220316.809|100.221 +639287.701|220312.429|100.017 +639292.578|220308.101|99.865 +639297.513|220303.721|99.697 +639302.454|220299.331|99.481 +639307.285|220295.043|99.374 +639312.229|220290.657|99.213 +639350.862|220256.382|99.917 +639355.663|220252.121|99.904 +639360.415|220247.906|100.240 +639365.230|220243.629|100.145 +639374.841|220235.098|99.837 +639379.504|220230.965|100.523 +639384.219|220226.786|100.859 +639388.953|220222.583|101.075 +639421.676|220193.569|103.507 +639426.300|220189.469|103.916 +639430.982|220185.318|104.288 +639435.600|220181.221|104.461 +639440.193|220177.149|104.781 +639444.884|220172.982|104.827 +639449.590|220168.807|104.824 +639454.275|220164.646|104.650 +639458.883|220160.556|104.644 +639463.663|220156.310|104.263 +639468.347|220152.143|103.839 +639487.221|220135.367|101.700 +639491.826|220131.277|101.581 +639496.362|220127.253|101.870 +639500.937|220123.196|102.248 +639505.478|220119.170|102.538 +639510.005|220115.153|102.657 +639514.510|220111.157|102.898 +639523.574|220103.116|103.407 +639528.104|220099.099|103.568 +639532.578|220095.130|103.763 +639537.046|220091.165|103.995 +639541.570|220087.154|104.239 +639546.078|220083.152|104.306 +639550.580|220079.156|104.409 +639555.066|220075.175|104.358 +639559.620|220071.130|104.233 +639564.140|220067.116|104.044 +639568.660|220063.099|103.867 +639573.232|220059.039|103.462 +639577.774|220055.003|103.221 +639582.273|220051.004|102.956 +639586.778|220047.002|102.678 +639591.274|220043.009|102.477 +639595.800|220038.989|102.148 +639600.326|220034.966|101.828 +639604.773|220031.015|101.666 +639609.266|220027.029|101.557 +639613.698|220023.094|101.511 +639618.075|220019.208|101.727 +639622.446|220015.334|102.005 +639626.804|220011.466|102.105 +639631.196|220007.564|102.053 +639635.555|220003.696|102.184 +639633.074|220003.538|101.901 +639628.682|220007.427|101.904 +639624.280|220011.322|101.959 +639619.955|220015.148|101.688 +639615.606|220018.991|101.279 +639611.192|220022.899|101.203 +639606.700|220026.876|101.517 +639602.301|220030.772|101.660 +639597.836|220034.728|101.889 +639593.322|220038.724|102.114 +639588.847|220042.689|102.425 +639584.342|220046.679|102.660 +639579.789|220050.712|102.885 +639575.290|220054.699|103.126 +639570.727|220058.740|103.437 +639566.225|220062.730|103.748 +639561.650|220066.781|103.897 +639557.127|220070.786|104.083 +639552.619|220074.776|104.199 +639548.089|220078.787|104.193 +639543.575|220082.783|104.111 +639539.076|220086.764|103.980 +639534.596|220090.726|103.760 +639530.118|220094.685|103.538 +639525.583|220098.700|103.364 +639521.011|220102.741|103.123 +639516.564|220106.676|102.797 +639511.983|220110.727|102.629 +639507.438|220114.750|102.584 +639502.884|220118.774|102.303 +639498.312|220122.818|101.870 +639493.768|220126.836|101.572 +639489.214|220130.865|101.358 +639484.563|220134.983|101.410 +639479.829|220139.180|101.971 +639475.090|220143.380|102.581 +639470.320|220147.614|103.407 +639465.607|220151.790|103.626 +639460.846|220156.008|103.852 +639456.168|220160.150|104.205 +639451.468|220164.311|104.422 +639446.716|220168.520|104.662 +639442.004|220172.687|104.681 +639437.328|220176.823|104.504 +639432.604|220180.999|104.312 +639427.940|220185.123|104.089 +639423.264|220189.253|103.638 +639418.586|220193.386|103.212 +639394.964|220214.265|101.514 +639390.248|220218.431|101.112 +639380.729|220226.844|100.551 +639375.950|220231.068|99.938 +639361.396|220243.946|100.005 +639356.534|220248.244|100.017 +639312.451|220287.237|99.170 +639307.495|220291.626|99.399 +639302.512|220296.037|99.447 +639297.519|220300.453|99.594 +639292.523|220304.879|99.819 +639287.525|220309.305|100.072 +639282.544|220313.712|100.209 +639277.445|220318.232|100.965 +639267.405|220327.120|101.227 +639257.294|220336.075|102.200 +639252.152|220340.638|103.081 +639241.954|220349.675|104.202 +639236.897|220354.153|104.437 +639226.695|220363.190|105.327 +639221.608|220367.698|105.958 +639216.442|220372.276|106.406 +639211.391|220376.751|106.772 +639206.216|220381.335|107.387 +639190.912|220394.890|108.262 +639180.604|220404.024|109.463 +639175.486|220408.557|109.716 +639170.313|220413.138|110.082 +639160.072|220422.209|110.838 +639154.921|220426.772|111.097 +639149.745|220431.356|111.615 +639144.591|220435.919|111.956 +639139.446|220440.475|112.215 +639134.307|220445.029|112.468 +639129.123|220449.616|112.666 +639118.814|220458.745|113.075 +639108.527|220467.850|113.319 +639098.249|220476.948|113.553 +639093.092|220481.511|113.630 +639087.917|220486.095|113.998 +639082.790|220490.627|113.712 +639077.617|220495.209|114.093 +639072.460|220499.774|114.306 +639062.109|220508.940|114.654 +639056.943|220513.518|115.151 +639051.743|220518.123|115.434 +639046.543|220522.726|115.711 +639041.389|220527.295|116.169 +639036.186|220531.903|116.592 +639031.044|220536.457|116.870 +639025.862|220541.044|117.050 +639020.665|220545.650|117.537 +639015.481|220550.243|117.866 +639010.290|220554.840|118.305 +639005.115|220559.421|118.494 +638999.933|220564.011|118.881 +638994.757|220568.598|119.214 +638989.594|220573.167|119.284 +638984.428|220577.742|119.451 +638979.267|220582.311|119.521 +638974.104|220586.877|119.625 +638968.944|220591.446|119.771 +638963.784|220596.015|119.921 +638958.581|220600.621|120.003 +638953.472|220605.144|120.146 +638948.269|220609.750|120.280 +638943.115|220614.312|120.418 +638937.961|220618.875|120.604 +638932.810|220623.438|120.808 +638927.659|220627.998|121.015 +638922.507|220632.561|121.247 +638917.308|220637.163|121.518 +638912.163|220641.720|121.658 +638907.018|220646.271|121.722 +638901.876|220650.824|121.853 +638896.737|220655.372|121.792 +638891.595|220659.920|121.762 +638886.459|220664.467|121.676 +638881.320|220669.009|121.478 +638876.181|220673.560|121.570 +638871.045|220678.101|121.408 +638865.906|220682.649|121.362 +638860.770|220687.193|121.228 +638855.631|220691.738|121.219 +638850.544|220696.243|121.198 +638845.356|220700.830|121.161 +638840.220|220705.378|121.210 +638835.133|220709.877|121.052 +638830.001|220714.418|121.018 +638824.862|220718.966|121.073 +638819.726|220723.513|121.170 +638814.590|220728.058|121.283 +638809.503|220732.563|121.375 +638804.367|220737.107|121.509 +638799.231|220741.655|121.558 +638794.144|220746.157|121.527 +638789.008|220750.702|121.695 +638783.875|220755.246|121.893 +638778.791|220759.748|122.042 +638773.658|220764.293|122.304 +638768.571|220768.795|122.353 +638763.484|220773.296|122.307 +638758.348|220777.844|122.313 +638753.258|220782.346|122.262 +638748.116|220786.894|122.106 +638743.026|220791.399|121.984 +638737.929|220795.903|121.777 +638732.833|220800.411|121.622 +638727.731|220804.923|121.237 +638722.625|220809.434|120.799 +638717.517|220813.951|120.347 +638712.415|220818.462|120.073 +638707.303|220822.979|119.659 +638702.192|220827.499|119.220 +638697.083|220832.016|118.945 +638691.975|220836.536|118.720 +638686.866|220841.057|118.610 +638681.806|220845.537|118.452 +638676.707|220850.051|118.525 +638671.602|220854.572|118.549 +638666.554|220859.043|118.738 +638661.446|220863.566|118.723 +638656.389|220868.044|118.738 +638651.296|220872.558|119.037 +638646.194|220877.075|119.186 +638641.140|220881.549|119.336 +638636.038|220886.073|119.454 +638630.975|220890.553|119.497 +638625.924|220895.028|119.735 +638620.877|220899.499|120.043 +638615.842|220903.964|120.573 +638610.757|220908.472|121.064 +638605.710|220912.947|121.369 +638600.644|220917.434|121.408 +638595.594|220921.908|121.707 +638590.592|220926.340|121.999 +638585.489|220930.860|122.274 +638580.485|220935.295|122.560 +638575.434|220939.769|122.896 +638570.432|220944.201|123.243 +638565.394|220948.670|123.773 +638560.371|220953.126|124.481 +638555.439|220957.500|125.145 +638550.404|220961.965|125.672 +638545.399|220966.400|126.008 +638540.336|220970.886|126.230 +638535.304|220975.343|126.239 +638530.302|220979.765|126.081 +638525.203|220984.282|125.892 +638520.232|220988.684|126.139 +638515.187|220993.149|126.105 +638500.231|221006.411|127.516 +638495.317|221010.773|128.428 +638490.358|221015.174|129.388 +638485.420|221019.548|129.522 +638480.422|221023.974|129.540 +638470.497|221032.770|130.412 +638460.604|221041.539|131.119 +638455.669|221045.916|131.866 +638450.734|221050.290|132.128 +638445.790|221054.667|132.320 +638435.893|221063.436|132.658 +638430.962|221067.801|132.564 +638425.999|221072.196|132.674 +638421.083|221076.549|132.747 +638416.106|221080.953|132.768 +638411.223|221085.278|132.759 +638406.285|221089.655|133.134 +638401.372|221094.002|132.899 +638396.455|221098.357|133.088 +638391.530|221102.719|133.216 +638386.650|221107.041|133.308 +638381.739|221111.387|133.201 +638376.753|221115.798|132.893 +638371.913|221120.083|132.997 +638367.014|221124.421|133.036 +638362.150|221128.734|133.356 +638357.261|221133.059|133.149 +638347.556|221141.654|133.320 +638342.685|221145.967|133.286 +638337.845|221150.256|133.515 +638332.977|221154.565|133.561 +638328.168|221158.823|133.689 +638323.340|221163.097|133.698 +638318.512|221167.376|133.719 +638313.644|221171.683|133.484 +638308.788|221175.981|133.369 +638303.979|221180.236|133.250 +638299.081|221184.573|132.869 +638294.347|221188.764|132.975 +638289.531|221193.028|132.869 +638284.758|221197.256|133.082 +638260.773|221218.488|132.308 +638256.085|221222.640|132.536 +638251.364|221226.824|132.558 +638241.857|221235.237|132.277 +638237.075|221239.471|131.985 +638232.381|221243.625|131.954 +638227.672|221247.795|131.860 +638223.002|221251.931|132.018 +638218.278|221256.116|132.165 +638213.739|221260.142|132.835 +638209.061|221264.284|132.689 +638204.348|221268.457|132.649 +638199.722|221272.557|132.841 +638195.144|221276.614|133.039 +638190.495|221280.732|133.152 +638185.823|221284.868|133.131 +638176.523|221293.097|132.850 +638171.826|221297.255|132.460 +638167.081|221301.446|131.564 +638162.435|221305.558|131.229 +638157.778|221309.675|130.872 +638153.075|221313.836|130.558 +638148.454|221317.920|130.165 +638143.806|221322.032|129.644 +638139.350|221325.985|130.159 +638134.683|221330.112|129.857 +638130.105|221334.163|129.504 +638120.650|221342.509|127.309 +638116.060|221346.568|126.971 +638111.476|221350.625|126.669 +638106.885|221354.685|126.373 +638098.065|221362.503|126.870 +638084.227|221374.732|124.865 +638079.606|221378.813|124.029 +638070.562|221386.808|123.161 +638061.613|221394.727|122.573 +638052.652|221402.655|122.024 +638039.308|221414.460|121.052 +638030.182|221422.516|118.979 +638025.723|221426.460|118.442 +638021.456|221430.239|118.827 +638012.824|221437.884|118.683 +637999.428|221449.716|116.382 +637995.133|221453.517|116.272 +637990.906|221457.263|116.461 +637982.533|221464.685|117.013 +637978.308|221468.422|116.800 +637974.047|221472.192|116.678 +637969.786|221475.959|116.345 +637965.546|221479.708|116.129 +637961.307|221483.457|115.916 +637957.070|221487.203|115.519 +637952.851|221490.931|115.212 +637948.624|221494.671|114.885 +637944.466|221498.347|114.648 +637940.254|221502.072|114.422 +637936.093|221505.751|114.200 +637931.982|221509.387|113.980 +637927.836|221513.054|113.630 +637923.557|221516.833|112.974 +637919.576|221520.354|113.127 +637915.812|221523.703|114.370 +637911.911|221527.160|114.636 +637899.792|221537.880|114.285 +637895.726|221541.473|113.950 +637879.937|221555.439|113.572 +637871.777|221562.645|112.334 +637867.772|221566.183|111.716 +637863.776|221569.710|111.158 +637859.549|221573.438|109.719 +637855.407|221577.086|108.433 +637847.488|221584.078|107.299 +637840.100|221590.625|108.009 +637836.378|221593.920|107.966 +637832.595|221597.264|107.717 +637825.195|221603.814|108.067 +637821.555|221607.036|107.966 +637817.828|221610.331|107.973 +637814.167|221613.568|107.829 +637810.577|221616.747|107.948 +638010.315|221438.109|118.321 +638014.732|221434.196|118.851 +638018.996|221430.410|118.699 +638023.285|221426.597|118.452 +638027.668|221422.711|118.634 +638036.815|221414.621|120.844 +638045.755|221406.693|121.716 +638050.260|221402.701|122.097 +638072.580|221382.904|123.341 +638077.167|221378.841|124.002 +638081.727|221374.796|124.304 +638095.654|221362.470|126.803 +638104.542|221354.573|126.169 +638109.132|221350.500|126.495 +638113.762|221346.395|126.779 +638118.355|221342.323|127.160 +638127.929|221333.852|129.482 +638132.495|221329.801|129.525 +638137.164|221325.665|130.135 +638146.348|221317.512|130.068 +638151.002|221313.385|130.388 +638155.675|221309.243|130.839 +638160.308|221305.137|131.089 +638165.005|221300.970|131.448 +638169.763|221296.752|131.881 +638179.227|221288.370|133.100 +638183.896|221284.225|133.109 +638188.563|221280.082|133.131 +638193.141|221276.016|132.939 +638202.492|221267.710|132.570 +638207.150|221263.577|132.600 +638211.871|221259.383|132.741 +638216.592|221255.189|132.594 +638221.183|221251.105|131.997 +638225.901|221246.914|131.860 +638230.647|221242.699|131.924 +638235.389|221238.486|131.985 +638240.141|221234.268|132.119 +638244.969|221229.985|132.442 +638249.715|221225.773|132.585 +638254.531|221221.497|132.561 +638259.286|221217.272|132.482 +638283.267|221195.976|132.802 +638288.126|221191.663|132.875 +638292.930|221187.399|132.939 +638297.773|221183.095|132.954 +638302.686|221178.739|133.472 +638307.527|221174.441|133.518 +638312.364|221170.147|133.548 +638317.259|221165.803|133.664 +638322.096|221161.506|133.768 +638326.955|221157.193|133.649 +638331.828|221152.862|133.695 +638336.693|221148.543|133.686 +638341.548|221144.230|133.612 +638346.419|221139.901|133.314 +638356.215|221131.199|133.180 +638361.074|221126.886|133.219 +638365.990|221122.516|132.969 +638370.888|221118.166|132.972 +638375.793|221113.811|133.058 +638380.758|221109.406|133.247 +638385.714|221105.005|133.396 +638390.637|221100.634|133.289 +638395.550|221096.266|133.119 +638400.515|221091.856|133.003 +638405.447|221087.476|133.036 +638410.418|221083.062|132.985 +638415.380|221078.655|132.908 +638420.355|221074.238|132.933 +638425.298|221069.846|132.713 +638430.258|221065.439|132.680 +638435.275|221060.982|132.722 +638440.228|221056.584|132.637 +638445.223|221052.146|132.527 +638450.158|221047.763|132.329 +638455.178|221043.301|131.997 +638470.077|221030.051|130.491 +638485.018|221016.771|129.531 +638490.050|221012.300|129.440 +638504.918|220999.065|126.709 +638509.945|220994.600|126.590 +638514.998|220990.107|126.242 +638520.021|220985.645|126.123 +638525.099|220981.137|126.096 +638530.196|220976.614|126.306 +638535.286|220972.097|126.468 +638540.352|220967.595|126.401 +638545.353|220963.151|126.111 +638550.447|220958.624|125.745 +638555.479|220954.147|125.258 +638560.493|220949.688|124.505 +638565.565|220945.177|123.868 +638570.597|220940.699|123.374 +638575.690|220936.173|123.057 +638580.735|220931.686|122.768 +638585.828|220927.157|122.432 +638590.927|220922.624|122.262 +638596.023|220918.095|122.012 +638601.065|220913.611|121.698 +638606.210|220909.036|121.487 +638611.242|220904.559|121.070 +638616.366|220900.002|120.521 +638621.389|220895.531|119.902 +638626.485|220891.004|119.689 +638631.630|220886.429|119.525 +638636.733|220881.897|119.525 +638641.832|220877.364|119.454 +638646.974|220872.792|119.302 +638652.064|220868.269|119.022 +638657.154|220863.743|118.860 +638662.299|220859.171|118.802 +638667.395|220854.645|118.738 +638672.541|220850.073|118.711 +638677.682|220845.504|118.604 +638682.776|220840.977|118.549 +638687.927|220836.405|118.695 +638693.078|220831.830|118.945 +638698.183|220827.301|119.244 +638703.383|220822.683|119.622 +638708.489|220818.154|120.067 +638713.634|220813.585|120.262 +638718.791|220809.013|120.884 +638723.939|220804.444|121.347 +638729.081|220799.878|121.597 +638734.220|220795.315|121.829 +638739.310|220790.798|122.070 +638744.495|220786.193|122.280 +638749.628|220781.633|122.380 +638754.712|220777.119|122.509 +638759.893|220772.516|122.591 +638765.023|220767.959|122.624 +638770.101|220763.445|122.576 +638775.277|220758.846|122.341 +638780.400|220754.289|122.094 +638785.478|220749.775|121.884 +638790.654|220745.176|121.661 +638795.735|220740.661|121.439 +638800.865|220736.105|121.554 +638806.043|220731.502|121.445 +638811.124|220726.988|121.405 +638816.254|220722.428|121.320 +638821.384|220717.871|121.314 +638826.514|220713.315|121.378 +638831.637|220708.761|121.359 +638836.770|220704.204|121.326 +638841.851|220699.690|121.417 +638846.981|220695.130|121.347 +638852.111|220690.574|121.387 +638857.241|220686.017|121.405 +638862.370|220681.460|121.524 +638867.503|220676.903|121.597 +638872.633|220672.346|121.728 +638877.763|220667.787|121.783 +638882.847|220663.273|121.850 +638887.977|220658.716|121.951 +638893.109|220654.159|122.051 +638898.194|220649.642|122.060 +638903.329|220645.079|122.012 +638908.465|220640.513|121.887 +638913.555|220635.990|121.768 +638918.694|220631.421|121.631 +638923.836|220626.849|121.408 +638928.936|220622.316|121.119 +638934.081|220617.744|120.920 +638939.180|220613.212|120.689 +638944.276|220608.680|120.539 +638949.424|220604.105|120.424 +638954.475|220599.615|120.256 +638959.629|220595.037|120.116 +638964.728|220590.504|120.046 +638969.785|220586.012|119.948 +638974.939|220581.427|119.796 +638980.051|220576.886|119.622 +638985.156|220572.351|119.582 +638990.265|220567.809|119.479 +638995.343|220563.292|119.031 +639000.466|220558.735|118.692 +639005.590|220554.178|118.412 +639010.668|220549.667|118.147 +639015.804|220545.095|117.680 +639020.937|220540.532|117.339 +639026.024|220536.009|116.998 +639031.160|220531.440|116.669 +639036.250|220526.914|116.358 +639041.401|220522.330|115.855 +639046.503|220517.791|115.422 +639051.594|220513.268|115.233 +639056.748|220508.684|114.828 +639072.055|220495.074|114.026 +639087.313|220481.511|113.526 +639097.521|220472.440|113.319 +639102.578|220467.944|113.215 +639107.683|220463.409|113.182 +639117.872|220454.353|112.813 +639122.941|220449.845|112.660 +639128.022|220445.328|112.407 +639133.100|220440.817|112.261 +639138.184|220436.297|112.042 +639143.268|220431.776|111.856 +639148.325|220427.278|111.441 +639153.437|220422.730|110.984 +639158.493|220418.234|110.655 +639163.544|220413.741|110.420 +639168.664|220409.188|109.993 +639173.733|220404.680|109.640 +639178.799|220400.175|109.323 +639183.874|220395.661|108.963 +639189.001|220391.098|108.116 +639209.252|220373.084|106.665 +639214.308|220368.585|106.214 +639224.434|220359.578|105.312 +639239.521|220346.158|104.190 +639244.545|220341.693|103.803 +639269.590|220319.418|102.066 +639274.586|220314.974|101.666 +639279.630|220310.478|100.880 +639284.586|220306.071|100.478 +639289.600|220301.608|100.023 +639294.535|220297.225|99.865 +639299.473|220292.836|99.691 +639304.404|220288.450|99.575 +639309.324|220284.079|99.606 +639348.287|220249.469|99.767 +639353.051|220245.242|100.029 +639357.955|220240.889|100.020 +639372.302|220228.154|100.551 +639377.112|220223.884|100.578 +639391.376|220211.223|101.203 +639400.916|220202.752|101.288 +639405.522|220198.674|102.114 +639428.696|220178.124|104.748 +639433.387|220173.961|104.778 +639438.075|220169.800|104.848 +639442.799|220165.600|104.699 +639447.499|220161.424|104.428 +639452.224|220157.221|104.022 +639456.924|220153.045|103.803 +639461.578|220148.909|103.559 +639471.036|220140.497|102.584 +639475.788|220136.269|101.855 +639480.503|220132.078|101.383 +639485.112|220127.982|101.224 +639489.680|220123.925|101.334 +639494.292|220119.831|101.505 +639498.821|220115.814|101.858 +639512.385|220103.774|102.581 +639516.893|220099.775|102.837 +639521.328|220095.844|103.230 +639525.857|220091.820|103.388 +639530.332|220087.852|103.602 +639534.806|220083.880|103.818 +639539.284|220079.906|104.031 +639543.801|220075.894|104.068 +639548.275|220071.920|104.059 +639552.771|220067.927|103.958 +639557.255|220063.943|103.946 +639561.738|220059.959|103.684 +639566.262|220055.939|103.516 +639570.760|220051.940|103.218 +639575.302|220047.904|102.986 +639579.752|220043.948|102.721 +639584.202|220039.995|102.471 +639588.698|220035.999|102.273 +639593.163|220032.027|101.986 +639597.562|220028.120|101.794 +639601.987|220024.188|101.733 +639606.425|220020.244|101.639 +639610.814|220016.345|101.553 +639615.252|220012.401|101.249 +639619.590|220008.549|101.438 +639623.896|220004.729|101.794 +639628.228|220000.883|101.785 +639632.547|219997.045|101.858 +639631.462|219995.643|101.447 +639627.008|219999.594|101.727 +639618.300|220007.302|101.151 +639613.887|220011.213|101.054 +639609.406|220015.187|101.541 +639604.999|220019.092|101.438 +639600.485|220023.094|101.624 +639596.004|220027.065|101.660 +639591.487|220031.070|101.889 +639586.961|220035.085|102.194 +639582.459|220039.077|102.398 +639577.908|220043.110|102.602 +639573.397|220047.115|102.904 +639568.855|220051.138|103.096 +639564.311|220055.168|103.343 +639559.766|220059.200|103.602 +639555.188|220063.260|103.794 +639550.695|220067.241|103.833 +639546.151|220071.267|103.882 +639541.622|220075.282|103.879 +639537.101|220079.287|103.846 +639532.560|220083.310|103.672 +639528.082|220087.273|103.434 +639523.556|220091.281|103.218 +639519.027|220095.292|103.020 +639514.534|220099.266|102.642 +639509.983|220103.296|102.325 +639505.430|220107.331|102.312 +639500.876|220111.364|102.032 +639496.353|220115.366|101.599 +639491.762|220119.429|101.261 +639487.181|220123.489|101.200 +639482.557|220127.585|101.090 +639477.924|220131.694|101.352 +639473.151|220135.928|101.843 +639468.366|220140.180|102.751 +639458.926|220148.553|103.571 +639454.208|220152.741|103.873 +639449.499|220156.916|104.126 +639444.783|220161.098|104.443 +639440.041|220165.305|104.659 +639430.595|220173.677|104.894 +639416.717|220185.955|103.239 +639412.157|220189.984|102.395 +639407.400|220194.200|102.200 +639402.730|220198.333|101.764 +639393.327|220206.657|101.017 +639388.532|220210.909|101.127 +639383.808|220215.088|100.764 +639355.035|220240.578|99.932 +639350.167|220244.891|100.008 +639311.162|220279.458|99.786 +639306.206|220283.848|99.609 +639301.301|220288.197|99.822 +639296.318|220292.614|99.911 +639291.383|220296.988|100.020 +639286.369|220301.438|100.404 +639281.364|220305.879|100.773 +639276.305|220310.371|101.602 +639256.215|220328.190|102.760 +639230.932|220350.620|104.595 +639225.872|220355.110|104.903 +639220.776|220359.633|105.592 +639205.433|220373.252|107.015 +639184.971|220391.403|108.445 +639179.802|220395.993|109.210 +639174.730|220400.492|109.515 +639169.564|220405.073|109.783 +639164.440|220409.621|110.192 +639159.255|220414.220|110.740 +639154.116|220418.777|110.838 +639148.956|220423.355|111.200 +639143.799|220427.930|111.563 +639138.642|220432.508|111.984 +639133.509|220437.056|112.112 +639128.324|220441.655|112.322 +639123.203|220446.194|112.401 +639118.028|220450.781|112.548 +639097.402|220469.069|113.166 +639087.030|220478.265|113.471 +639081.882|220482.831|113.508 +639076.660|220487.461|113.877 +639071.512|220492.020|113.934 +639061.122|220501.228|114.111 +639055.958|220505.809|114.544 +639045.543|220515.042|115.303 +639040.340|220519.657|115.733 +639035.131|220524.274|116.254 +639029.941|220528.880|116.565 +639024.744|220533.485|116.964 +639019.559|220538.082|117.223 +639014.320|220542.727|117.620 +639009.129|220547.332|118.107 +639003.947|220551.926|118.394 +638998.723|220556.556|118.659 +638993.544|220561.149|119.043 +638988.317|220565.782|119.409 +638983.148|220570.366|119.701 +638977.987|220574.935|119.698 +638972.775|220579.559|119.948 +638967.566|220584.174|120.091 +638962.409|220588.743|120.158 +638957.203|220593.354|120.311 +638952.046|220597.923|120.442 +638946.846|220602.532|120.512 +638941.692|220607.098|120.655 +638936.489|220611.709|120.884 +638931.341|220616.272|120.954 +638926.138|220620.884|121.283 +638920.938|220625.493|121.558 +638915.790|220630.055|121.765 +638910.596|220634.661|121.920 +638905.451|220639.218|122.009 +638900.260|220643.814|122.103 +638895.072|220648.414|122.167 +638889.933|220652.964|122.134 +638884.795|220657.515|122.088 +638879.610|220662.108|122.021 +638874.422|220666.702|122.012 +638869.286|220671.249|121.829 +638864.105|220675.839|121.689 +638858.966|220680.387|121.594 +638853.830|220684.935|121.524 +638848.645|220689.528|121.460 +638843.509|220694.073|121.247 +638838.373|220698.629|121.634 +638833.189|220703.217|121.326 +638828.053|220707.767|121.384 +638822.923|220712.312|121.359 +638817.784|220716.860|121.265 +638812.648|220721.410|121.305 +638807.515|220725.961|121.405 +638802.379|220730.512|121.689 +638797.292|220735.017|121.713 +638792.160|220739.567|121.765 +638787.024|220744.115|121.780 +638781.891|220748.665|122.149 +638776.807|220753.170|122.326 +638771.677|220757.718|122.597 +638766.593|220762.223|122.743 +638761.460|220766.771|122.883 +638756.373|220771.279|122.765 +638751.283|220775.784|122.673 +638746.144|220780.334|122.563 +638741.099|220784.800|122.390 +638735.957|220789.353|122.167 +638730.864|220793.864|121.969 +638725.765|220798.375|121.682 +638720.665|220802.890|121.472 +638715.557|220807.407|120.942 +638705.343|220816.444|120.152 +638700.283|220820.922|119.820 +638695.172|220825.445|119.366 +638690.060|220829.968|119.043 +638685.007|220834.439|119.003 +638679.892|220838.963|118.662 +638674.842|220843.434|118.766 +638669.739|220847.951|118.784 +638664.689|220852.423|118.903 +638659.638|220856.894|119.019 +638654.530|220861.417|118.921 +638649.482|220865.889|119.156 +638644.435|220870.357|119.403 +638639.384|220874.832|119.579 +638634.376|220879.263|119.653 +638629.271|220883.787|119.698 +638624.214|220888.261|119.826 +638619.216|220892.693|120.091 +638614.180|220897.152|120.631 +638609.206|220901.566|121.326 +638604.168|220906.031|121.777 +638599.172|220910.457|122.109 +638594.121|220914.931|122.387 +638589.071|220919.406|122.612 +638584.066|220923.837|122.874 +638579.015|220928.312|123.146 +638574.056|220932.704|123.377 +638569.009|220937.176|123.734 +638564.013|220941.604|124.151 +638559.039|220946.018|124.825 +638554.055|220950.434|125.416 +638549.108|220954.817|125.849 +638544.064|220959.289|126.279 +638539.114|220963.675|126.669 +638534.103|220968.113|126.916 +638529.056|220972.578|126.742 +638524.054|220977.004|126.529 +638519.003|220981.472|126.376 +638514.014|220985.889|126.355 +638508.975|220990.348|126.395 +638504.044|220994.716|126.547 +638499.054|220999.141|127.160 +638494.205|221003.448|128.220 +638489.319|221007.786|129.440 +638484.338|221012.196|129.626 +638479.321|221016.634|129.434 +638469.473|221025.367|130.534 +638464.548|221029.731|130.827 +638459.656|221034.069|131.494 +638454.748|221038.418|131.979 +638444.876|221047.163|132.469 +638439.987|221051.494|132.701 +638434.985|221055.923|132.820 +638430.069|221060.275|132.847 +638425.088|221064.680|132.777 +638420.214|221068.996|132.771 +638410.397|221077.689|133.091 +638405.410|221082.102|133.030 +638400.533|221086.421|133.094 +638390.746|221095.084|133.426 +638385.796|221099.467|133.329 +638380.916|221103.786|133.457 +638376.018|221108.123|133.442 +638371.068|221112.500|133.018 +638366.167|221116.837|133.021 +638361.345|221121.107|133.283 +638356.453|221125.442|133.399 +638351.585|221129.749|133.344 +638341.893|221138.332|133.609 +638337.086|221142.584|133.707 +638327.342|221151.210|133.701 +638322.535|221155.468|133.841 +638317.710|221159.738|133.865 +638312.876|221164.014|133.871 +638308.078|221168.260|133.774 +638303.220|221172.558|133.631 +638293.515|221181.144|133.146 +638288.693|221185.405|132.994 +638283.941|221189.611|132.988 +638279.116|221193.882|132.841 +638255.317|221214.943|132.957 +638250.511|221219.195|132.747 +638245.768|221223.389|132.640 +638240.986|221227.617|132.308 +638236.246|221231.814|132.253 +638231.497|221236.014|132.177 +638226.806|221240.166|132.165 +638222.088|221244.344|132.305 +638217.434|221248.465|132.561 +638212.804|221252.562|132.671 +638208.101|221256.725|132.658 +638203.425|221260.862|132.521 +638198.780|221264.973|132.600 +638194.113|221269.103|132.558 +638189.544|221273.154|133.103 +638184.893|221277.269|133.192 +638180.257|221281.372|133.091 +638170.936|221289.616|132.686 +638166.172|221293.823|131.942 +638161.521|221297.934|131.564 +638156.833|221302.080|131.284 +638152.215|221306.161|130.863 +638147.585|221310.255|130.683 +638143.001|221314.311|130.759 +638129.246|221326.479|130.253 +638124.591|221330.588|129.501 +638115.063|221338.991|127.202 +638110.470|221343.051|126.852 +638105.864|221347.123|126.459 +638101.308|221351.150|126.062 +638096.955|221355.011|126.724 +638074.083|221375.217|124.014 +638069.462|221379.295|123.213 +638056.161|221391.063|122.902 +638051.704|221395.001|122.731 +638042.816|221402.859|122.064 +638024.614|221418.922|118.537 +638020.252|221422.784|118.455 +638015.966|221426.576|118.750 +638007.255|221434.281|118.263 +637993.996|221445.988|116.361 +637989.705|221449.780|116.028 +637985.291|221453.678|115.401 +637977.165|221460.884|116.806 +637939.178|221494.497|114.956 +637934.950|221498.237|114.434 +637930.808|221501.901|114.059 +637926.721|221505.516|113.944 +637914.203|221516.586|112.615 +637910.271|221520.073|112.956 +637906.388|221523.517|113.511 +637902.389|221527.059|113.401 +637894.378|221534.149|113.163 +637890.459|221537.621|113.407 +637886.438|221541.174|113.060 +637882.522|221544.646|113.124 +637866.703|221558.640|112.097 +637862.688|221562.184|111.441 +637858.436|221565.933|109.887 +637854.325|221569.561|108.689 +637850.313|221573.102|108.107 +637838.911|221583.194|107.790 +637835.217|221586.471|108.043 +637827.816|221593.024|108.122 +637824.183|221596.243|108.430 +637816.706|221602.860|108.098 +638015.278|221424.832|118.647 +638019.557|221421.022|118.363 +638023.913|221417.154|118.427 +638046.602|221397.046|122.371 +638055.554|221389.100|123.197 +638060.013|221385.144|123.420 +638073.546|221373.129|124.258 +638082.879|221364.863|126.191 +638091.938|221356.816|126.617 +638096.388|221352.856|126.209 +638100.817|221348.918|125.953 +638105.425|221344.828|126.373 +638110.025|221340.747|126.770 +638114.780|221336.534|127.724 +638119.696|221332.191|129.549 +638124.204|221328.186|129.552 +638128.877|221324.044|130.162 +638133.562|221319.886|130.595 +638138.149|221315.808|130.549 +638147.299|221307.679|130.613 +638152.005|221303.503|130.973 +638156.699|221299.337|131.296 +638161.329|221295.228|131.567 +638166.066|221291.022|131.893 +638170.753|221286.861|132.250 +638180.233|221278.452|133.045 +638184.917|221274.288|133.177 +638194.168|221266.061|132.509 +638198.859|221261.895|132.411 +638203.559|221257.722|132.399 +638208.280|221253.531|132.543 +638212.977|221249.358|132.558 +638217.687|221245.173|132.357 +638222.408|221240.982|132.244 +638227.135|221236.782|132.186 +638231.899|221232.552|132.070 +638236.648|221228.336|132.186 +638241.431|221224.090|132.229 +638246.243|221219.820|132.475 +638251.059|221215.547|132.765 +638270.274|221198.487|132.881 +638275.017|221194.275|132.789 +638279.878|221189.959|132.878 +638284.688|221185.692|132.942 +638289.516|221181.400|132.838 +638294.429|221177.044|133.326 +638299.245|221172.771|133.530 +638304.146|221168.422|133.643 +638308.999|221164.112|133.804 +638313.882|221159.777|133.829 +638318.704|221155.495|133.811 +638323.559|221151.182|133.679 +638328.378|221146.897|133.320 +638333.288|221142.544|133.631 +638338.193|221138.188|133.554 +638343.103|221133.833|133.939 +638347.931|221129.538|133.320 +638352.820|221125.195|133.192 +638357.767|221120.803|133.155 +638362.613|221116.496|133.137 +638367.557|221112.107|133.106 +638372.495|221107.727|133.451 +638377.481|221103.301|133.417 +638382.352|221098.973|133.259 +638387.329|221094.553|133.198 +638392.264|221090.170|133.210 +638397.193|221085.793|133.201 +638402.115|221081.422|133.155 +638407.126|221076.972|133.018 +638412.037|221072.611|132.902 +638416.990|221068.209|132.765 +638421.961|221063.796|132.789 +638426.978|221059.343|132.814 +638431.955|221054.926|132.936 +638436.884|221050.543|132.655 +638446.891|221041.658|132.570 +638451.847|221037.251|132.122 +638456.806|221032.843|131.695 +638461.725|221028.466|130.887 +638466.706|221024.038|130.720 +638481.690|221010.724|129.662 +638486.716|221006.256|129.525 +638491.702|221001.821|128.952 +638496.631|220997.422|127.199 +638501.599|220993.009|126.940 +638506.659|220988.513|126.651 +638511.670|220984.060|126.383 +638516.763|220979.540|126.501 +638521.807|220975.062|126.684 +638526.907|220970.539|126.937 +638531.991|220966.025|127.038 +638537.057|220961.526|126.937 +638542.089|220957.049|126.465 +638547.133|220952.568|126.093 +638552.172|220948.090|125.669 +638557.244|220943.576|125.072 +638562.270|220939.108|124.493 +638567.351|220934.588|124.014 +638572.395|220930.107|123.679 +638577.446|220925.624|123.472 +638582.539|220921.097|123.191 +638587.632|220916.574|122.886 +638592.732|220912.042|122.755 +638597.825|220907.518|122.484 +638602.909|220903.001|122.097 +638607.981|220898.490|121.512 +638613.046|220893.985|120.796 +638618.121|220889.477|120.219 +638623.212|220884.954|119.957 +638628.360|220880.382|119.835 +638633.456|220875.856|119.726 +638638.604|220871.287|119.659 +638643.697|220866.764|119.448 +638648.839|220862.198|119.284 +638653.981|220857.632|119.159 +638659.084|220853.102|119.198 +638664.223|220848.539|119.040 +638669.364|220843.974|118.945 +638674.458|220839.450|118.830 +638679.652|220834.842|118.845 +638684.800|220830.273|118.976 +638689.905|220825.743|119.314 +638695.062|220821.171|119.720 +638700.213|220816.602|120.064 +638705.368|220812.034|120.503 +638710.567|220807.425|120.887 +638715.719|220802.856|121.433 +638720.861|220798.296|121.664 +638726.003|220793.733|121.960 +638731.145|220789.173|122.286 +638736.283|220784.617|122.502 +638741.419|220780.060|122.673 +638746.552|220775.503|122.868 +638751.685|220770.949|122.947 +638756.867|220766.353|123.191 +638761.948|220761.842|123.149 +638767.120|220757.249|122.886 +638772.247|220752.695|122.774 +638777.371|220748.144|122.487 +638782.497|220743.591|122.280 +638787.673|220738.994|122.054 +638792.754|220734.483|121.890 +638797.932|220729.887|122.018 +638803.062|220725.333|121.893 +638808.189|220720.776|121.698 +638813.319|220716.223|121.676 +638818.497|220711.626|121.634 +638823.627|220707.072|121.588 +638828.754|220702.522|121.439 +638833.884|220697.968|121.521 +638839.013|220693.414|121.646 +638844.143|220688.861|121.527 +638849.273|220684.310|121.710 +638854.403|220679.756|121.798 +638859.581|220675.160|121.911 +638864.665|220670.652|121.993 +638869.795|220666.098|122.149 +638874.925|220661.547|122.289 +638880.006|220657.036|122.332 +638885.139|220652.483|122.441 +638890.272|220647.923|122.368 +638895.356|220643.409|122.350 +638900.492|220638.849|122.271 +638905.582|220634.332|122.152 +638910.718|220629.769|122.067 +638915.811|220625.249|121.899 +638920.907|220620.719|121.612 +638926.052|220616.150|121.341 +638931.146|220611.624|121.222 +638936.245|220607.098|121.036 +638941.344|220602.568|120.835 +638946.443|220598.039|120.686 +638951.543|220593.513|120.570 +638956.645|220588.980|120.415 +638961.744|220584.451|120.351 +638966.801|220579.961|120.216 +638971.913|220575.423|119.988 +638976.966|220570.933|119.930 +638982.084|220566.389|119.625 +638987.153|220561.884|119.326 +638992.270|220557.336|119.022 +638997.348|220552.825|118.671 +639002.423|220548.317|118.354 +639007.501|220543.803|118.016 +639012.588|220539.283|117.580 +639017.675|220534.763|117.205 +639022.759|220530.245|116.900 +639027.801|220525.765|116.507 +639032.894|220521.239|116.160 +639037.948|220516.746|115.650 +639043.056|220512.204|115.105 +639048.107|220507.718|114.773 +639053.163|220503.222|114.340 +639058.232|220498.717|113.813 +639068.318|220489.762|113.636 +639078.422|220480.785|113.304 +639083.457|220476.320|113.450 +639093.549|220467.350|112.761 +639103.614|220458.416|112.642 +639113.642|220449.510|112.420 +639118.705|220445.014|112.368 +639123.679|220440.597|112.225 +639128.754|220436.092|112.100 +639133.731|220431.673|111.972 +639138.770|220427.192|111.709 +639148.886|220418.204|110.886 +639153.866|220413.781|110.826 +639158.926|220409.285|110.499 +639163.958|220404.811|109.942 +639168.975|220400.355|109.582 +639173.986|220395.901|109.317 +639184.087|220386.919|108.101 +639204.177|220369.067|106.726 +639209.194|220364.608|106.180 +639229.283|220346.752|104.541 +639234.288|220342.305|104.254 +639239.293|220337.858|104.007 +639254.353|220324.471|102.605 +639259.303|220320.079|102.550 +639269.236|220311.255|102.169 +639274.223|220306.823|101.864 +639279.261|220302.343|101.157 +639284.272|220297.890|100.724 +639289.305|220293.415|100.154 +639294.218|220289.054|100.148 +639299.137|220284.686|100.139 +639304.118|220280.263|100.066 +639309.086|220275.850|99.716 +639348.271|220241.057|99.847 +639353.127|220236.747|100.185 +639377.453|220215.139|100.048 +639386.963|220206.709|100.962 +639391.800|220202.411|100.892 +639401.313|220193.968|101.529 +639406.025|220189.789|101.992 +639410.719|220185.629|102.593 +639415.468|220181.416|103.184 +639439.059|220160.480|104.416 +639443.854|220156.218|104.199 +639448.581|220152.018|104.086 +639453.315|220147.812|103.967 +639467.765|220134.956|102.002 +639472.487|220130.755|101.456 +639477.290|220126.485|101.060 +639481.939|220122.352|100.980 +639486.538|220118.271|101.203 +639491.174|220114.156|101.252 +639495.798|220110.050|101.380 +639500.361|220105.996|101.563 +639509.447|220097.938|102.230 +639513.994|220093.902|102.559 +639518.536|220089.872|102.925 +639523.056|220085.861|103.160 +639527.518|220081.899|103.428 +639532.063|220077.863|103.553 +639536.571|220073.861|103.620 +639541.137|220069.807|103.681 +639545.611|220065.833|103.681 +639550.162|220061.788|103.574 +639554.661|220057.792|103.504 +639559.141|220053.808|103.254 +639563.665|220049.788|103.090 +639568.188|220045.771|102.943 +639572.690|220041.769|102.672 +639577.177|220037.782|102.480 +639581.621|220033.832|102.276 +639586.125|220029.827|102.044 +639590.536|220025.907|101.779 +639595.001|220021.939|101.523 +639599.390|220018.037|101.395 +639603.761|220014.154|101.386 +639608.187|220010.222|101.130 +639612.567|220006.327|101.096 +639616.910|220002.468|101.017 +639621.306|219998.563|100.721 +639625.561|219994.787|101.087 +639629.779|219991.041|101.389 +639628.322|219989.718|101.142 +639623.957|219993.574|100.749 +639619.535|219997.490|100.654 +639615.027|220001.483|100.968 +639610.543|220005.452|100.944 +639606.014|220009.463|101.157 +639601.518|220013.444|101.236 +639596.982|220017.455|101.255 +639592.465|220021.457|101.471 +639587.826|220025.569|101.785 +639583.251|220029.620|102.072 +639578.646|220033.701|102.279 +639574.046|220037.773|102.459 +639569.441|220041.854|102.696 +639564.853|220045.917|102.879 +639560.227|220050.014|103.004 +639555.530|220054.174|103.245 +639550.915|220058.262|103.355 +639546.294|220062.355|103.519 +639541.701|220066.418|103.553 +639537.022|220070.560|103.513 +639532.426|220074.626|103.340 +639527.796|220078.726|103.358 +639523.215|220082.777|103.132 +639518.557|220086.895|102.767 +639509.343|220095.042|102.120 +639504.753|220099.099|101.730 +639500.114|220103.201|101.340 +639495.423|220107.353|101.255 +639490.784|220111.458|101.188 +639486.090|220115.613|101.148 +639481.378|220119.783|100.953 +639476.702|220123.922|100.859 +639471.911|220128.165|101.148 +639467.095|220132.435|101.611 +639462.197|220136.784|102.596 +639457.311|220141.119|103.519 +639452.525|220145.361|103.907 +639447.737|220149.601|104.004 +639442.961|220153.832|104.074 +639438.230|220158.023|104.196 +639433.356|220162.345|104.595 +639428.559|220166.594|104.854 +639405.117|220187.317|101.767 +639395.726|220195.617|100.883 +639390.956|220199.838|100.471 +639381.357|220208.336|100.401 +639376.602|220212.543|99.941 +639371.887|220216.712|99.551 +639362.295|220225.198|98.899 +639347.683|220238.152|99.840 +639342.876|220242.404|99.502 +639308.915|220272.482|99.685 +639303.932|220276.901|100.100 +639299.086|220281.193|100.261 +639294.160|220285.558|100.285 +639289.305|220289.858|100.185 +639284.342|220294.253|100.535 +639279.405|220298.637|101.154 +639274.409|220303.068|101.861 +639269.483|220307.433|102.026 +639264.558|220311.798|102.218 +639259.553|220316.236|102.696 +639249.662|220324.996|102.696 +639234.764|220338.206|103.910 +639229.753|220342.650|104.190 +639224.797|220347.042|104.446 +639219.764|220351.504|104.992 +639199.644|220369.347|106.939 +639184.630|220382.658|107.918 +639179.537|220387.175|108.375 +639174.480|220391.662|109.009 +639169.408|220396.157|109.323 +639164.397|220400.598|109.542 +639159.322|220405.100|109.960 +639154.250|220409.596|110.380 +639149.182|220414.092|110.789 +639144.146|220418.551|110.868 +639139.032|220423.087|111.298 +639133.926|220427.613|111.673 +639128.885|220432.081|111.911 +639123.761|220436.620|111.999 +639118.689|220441.113|112.057 +639113.608|220445.617|112.276 +639108.497|220450.144|112.279 +639103.428|220454.633|112.386 +639098.326|220459.157|112.356 +639093.226|220463.668|112.240 +639077.840|220477.305|112.761 +639072.728|220481.837|112.974 +639067.583|220486.400|112.999 +639052.148|220500.094|114.050 +639046.939|220504.718|114.486 +639041.785|220509.293|114.879 +639036.625|220513.875|115.407 +639031.416|220518.501|115.980 +639026.271|220523.067|116.336 +639021.080|220527.673|116.693 +639015.892|220532.275|117.040 +639010.705|220536.881|117.427 +639005.517|220541.486|117.869 +639000.329|220546.089|118.314 +638995.151|220550.685|118.702 +638989.972|220555.282|119.067 +638984.754|220559.912|119.339 +638979.584|220564.496|119.610 +638974.369|220569.126|119.921 +638969.154|220573.753|120.226 +638963.997|220578.328|120.381 +638958.791|220582.942|120.506 +638953.539|220587.600|120.640 +638948.388|220592.172|120.753 +638943.136|220596.826|120.896 +638937.940|220601.438|121.049 +638932.740|220606.049|121.265 +638927.543|220610.658|121.393 +638922.297|220615.309|121.521 +638917.149|220619.878|121.841 +638911.907|220624.529|122.051 +638906.716|220629.132|122.131 +638901.525|220633.737|122.307 +638896.334|220638.340|122.496 +638891.101|220642.982|122.533 +638885.913|220647.581|122.615 +638880.732|220652.175|122.542 +638875.498|220656.814|122.487 +638870.316|220661.407|122.399 +638865.135|220665.997|122.271 +638859.904|220670.633|122.149 +638854.723|220675.227|121.960 +638849.541|220679.820|121.960 +638844.311|220684.456|121.829 +638839.129|220689.046|121.716 +638833.948|220693.646|121.905 +638828.717|220698.279|121.704 +638823.536|220702.875|121.768 +638818.357|220707.466|121.801 +638813.127|220712.102|121.829 +638807.945|220716.695|121.826 +638802.767|220721.291|121.929 +638797.585|220725.885|122.079 +638792.355|220730.521|122.039 +638787.176|220735.114|122.231 +638781.997|220739.710|122.435 +638776.819|220744.304|122.719 +638771.643|220748.897|123.054 +638766.465|220753.487|123.030 +638761.286|220758.081|123.267 +638756.108|220762.674|123.365 +638750.975|220767.225|123.335 +638745.787|220771.818|123.048 +638740.651|220776.372|122.874 +638735.464|220780.968|122.716 +638730.325|220785.522|122.518 +638725.180|220790.079|122.231 +638720.035|220794.639|121.865 +638714.841|220799.241|121.606 +638709.741|220803.758|121.332 +638704.584|220808.324|120.774 +638699.427|220812.890|120.308 +638694.315|220817.413|119.872 +638689.158|220821.982|119.512 +638684.047|220826.509|119.125 +638678.944|220831.035|118.979 +638673.793|220835.604|118.845 +638668.700|220840.124|118.976 +638663.656|220844.601|119.137 +638658.514|220849.164|119.287 +638653.466|220853.645|119.403 +638648.355|220858.174|119.247 +638643.313|220862.652|119.482 +638638.269|220867.129|119.710 +638633.166|220871.656|119.774 +638628.113|220876.142|119.826 +638623.062|220880.623|119.976 +638618.015|220885.106|120.171 +638613.028|220889.532|120.643 +638608.008|220893.994|121.332 +638602.994|220898.454|122.082 +638598.014|220902.879|122.646 +638593.021|220907.311|122.957 +638588.013|220911.755|123.075 +638582.969|220916.236|123.347 +638578.019|220920.631|123.636 +638573.017|220925.072|123.850 +638568.015|220929.513|124.100 +638563.023|220933.945|124.511 +638558.085|220938.331|124.987 +638553.104|220942.759|125.535 +638548.167|220947.146|126.032 +638543.226|220951.535|126.480 +638538.233|220955.966|126.910 +638533.329|220960.322|127.212 +638528.306|220964.781|127.254 +638523.316|220969.204|127.163 +638518.311|220973.642|126.895 +638513.361|220978.031|126.733 +638508.363|220982.463|126.593 +638503.398|220986.870|126.870 +638498.475|220991.241|127.087 +638488.813|220999.846|129.528 +638483.832|221004.265|129.674 +638478.892|221008.648|129.729 +638469.053|221017.387|130.318 +638459.247|221026.098|131.302 +638454.425|221030.384|132.137 +638449.472|221034.779|132.162 +638444.586|221039.116|132.366 +638439.639|221043.508|132.488 +638434.753|221047.846|132.732 +638429.849|221052.195|132.844 +638424.933|221056.557|132.844 +638420.065|221060.876|132.860 +638415.142|221065.244|132.844 +638410.241|221069.593|133.030 +638405.380|221073.909|133.161 +638400.448|221078.283|133.143 +638395.571|221082.611|133.173 +638390.716|221086.921|133.414 +638385.848|221091.240|133.573 +638380.913|221095.614|133.173 +638376.030|221099.945|133.256 +638371.230|221104.209|133.609 +638366.301|221108.580|133.332 +638361.446|221112.887|133.277 +638356.542|221117.240|133.265 +638346.812|221125.868|133.140 +638342.009|221130.136|133.576 +638332.334|221138.719|133.600 +638327.509|221142.998|133.570 +638322.639|221147.317|133.570 +638317.856|221151.566|133.859 +638313.031|221155.846|133.890 +638308.179|221160.146|133.722 +638303.326|221164.447|133.597 +638298.532|221168.696|133.542 +638293.731|221172.951|133.478 +638288.876|221177.258|133.372 +638284.017|221181.559|132.954 +638279.241|221185.792|132.768 +638274.419|221190.066|132.649 +638269.698|221194.257|132.872 +638264.885|221198.521|132.847 +638260.200|221202.678|133.024 +638250.657|221211.136|132.963 +638245.875|221215.373|132.564 +638241.068|221219.634|132.357 +638236.328|221223.834|132.293 +638231.573|221228.047|132.149 +638226.861|221232.229|132.277 +638222.167|221236.389|132.253 +638217.443|221240.580|132.347 +638212.752|221244.738|132.360 +638208.061|221248.898|132.402 +638203.376|221253.053|132.488 +638198.701|221257.198|132.354 +638194.004|221261.364|132.402 +638189.346|221265.491|132.418 +638184.814|221269.521|133.177 +638180.144|221273.660|133.152 +638170.723|221282.006|132.405 +638166.029|221286.163|132.021 +638161.347|221290.308|131.732 +638156.665|221294.457|131.457 +638152.090|221298.511|131.250 +638147.427|221302.644|131.125 +638133.592|221314.906|130.601 +638129.044|221318.935|130.631 +638124.357|221323.087|130.217 +638119.733|221327.180|129.616 +638110.235|221335.574|127.465 +638105.541|221339.723|126.593 +638100.930|221343.807|126.166 +638096.376|221347.839|125.788 +638091.935|221351.784|126.258 +638087.518|221355.700|126.361 +638082.995|221359.711|126.187 +638078.499|221363.695|126.187 +638069.160|221371.952|124.270 +638064.686|221375.915|123.926 +638055.676|221383.894|123.255 +638051.183|221387.878|123.127 +638042.192|221395.839|122.432 +638023.934|221411.982|118.778 +638019.493|221415.914|118.327 +638015.192|221419.730|118.528 +637997.550|221435.351|117.056 +637984.350|221447.034|115.236 +637963.446|221465.572|116.452 +637925.742|221498.935|114.736 +637908.863|221513.852|112.386 +637904.815|221517.437|112.261 +637900.837|221520.960|112.438 +637896.826|221524.508|112.282 +637884.954|221535.021|112.538 +637877.023|221542.043|112.496 +637861.183|221556.052|111.399 +637857.080|221559.670|110.411 +637848.988|221566.817|108.707 +637845.062|221570.289|108.448 +637837.490|221576.992|108.402 +637833.760|221580.296|108.500 +637830.020|221583.606|108.579 +637826.240|221586.949|108.527 +637822.671|221590.113|108.853 +637818.885|221593.466|108.792 +637807.971|221603.128|109.106 +637804.441|221606.259|109.628 +638013.367|221418.709|118.421 +638017.676|221414.877|118.260 +638053.771|221382.876|123.307 +638058.251|221378.899|123.645 +638062.705|221374.945|123.874 +638067.307|221370.861|124.612 +638076.543|221362.677|126.020 +638081.069|221358.660|126.181 +638085.519|221354.704|126.255 +638089.978|221350.738|126.130 +638094.437|221346.776|125.739 +638099.049|221342.682|126.160 +638103.639|221338.607|126.495 +638122.586|221321.825|130.293 +638127.200|221317.725|130.613 +638131.757|221313.677|130.641 +638136.427|221309.535|131.009 +638145.708|221301.293|131.244 +638150.313|221297.203|131.348 +638154.925|221293.106|131.506 +638159.637|221288.922|131.674 +638164.316|221284.770|131.948 +638169.004|221280.610|132.302 +638173.811|221276.348|133.073 +638183.150|221268.052|133.140 +638187.694|221264.007|132.466 +638192.394|221259.831|132.408 +638197.079|221255.665|132.311 +638206.549|221247.249|132.421 +638211.243|221243.076|132.415 +638215.925|221238.916|132.351 +638220.701|221234.667|132.290 +638225.444|221230.455|132.320 +638230.186|221226.239|132.390 +638234.960|221221.996|132.357 +638239.748|221217.741|132.442 +638244.512|221213.505|132.387 +638249.352|221209.210|132.832 +638259.011|221200.627|133.027 +638263.791|221196.378|132.829 +638268.558|221192.135|132.585 +638273.377|221187.856|132.680 +638278.196|221183.573|132.814 +638283.088|221179.227|133.116 +638297.706|221166.242|133.801 +638302.522|221161.963|133.670 +638307.414|221157.613|133.756 +638312.281|221153.291|134.033 +638317.173|221148.942|133.798 +638321.998|221144.653|133.823 +638326.909|221140.289|133.783 +638331.755|221135.979|133.637 +638336.662|221131.623|133.963 +638341.509|221127.310|133.475 +638346.407|221122.955|133.408 +638351.262|221118.639|133.411 +638356.191|221114.256|133.237 +638361.107|221109.888|133.378 +638366.088|221105.462|133.667 +638370.977|221101.119|133.625 +638375.878|221096.757|133.301 +638380.846|221092.343|133.573 +638385.772|221087.966|133.481 +638390.710|221083.580|133.527 +638395.663|221079.173|133.314 +638400.628|221074.759|133.213 +638405.563|221070.376|133.289 +638410.503|221065.981|133.021 +638415.463|221061.571|132.924 +638420.419|221057.163|132.826 +638425.384|221052.753|132.823 +638430.386|221048.306|132.735 +638440.340|221039.457|132.622 +638445.330|221035.020|132.479 +638455.215|221026.217|131.305 +638460.128|221021.849|130.915 +638470.092|221012.982|130.098 +638475.075|221008.551|129.994 +638480.083|221004.094|129.629 +638485.073|220999.660|129.592 +638490.026|220995.246|128.659 +638494.945|220990.857|127.355 +638499.969|220986.392|127.187 +638504.979|220981.932|126.916 +638510.021|220977.455|126.989 +638515.123|220972.923|127.248 +638520.158|220968.445|127.352 +638525.243|220963.931|127.425 +638530.269|220959.463|127.434 +638535.328|220954.964|127.291 +638540.425|220950.431|126.959 +638545.402|220945.999|126.407 +638550.483|220941.476|125.919 +638555.521|220936.996|125.508 +638560.554|220932.515|125.023 +638565.638|220927.992|124.599 +638570.673|220923.514|124.179 +638575.772|220918.979|123.996 +638580.869|220914.450|123.764 +638585.959|220909.923|123.475 +638591.049|220905.397|123.207 +638596.093|220900.910|122.972 +638601.214|220896.357|122.380 +638606.271|220891.852|121.573 +638611.337|220887.344|120.850 +638616.415|220882.827|120.363 +638621.550|220878.258|120.058 +638626.647|220873.728|119.918 +638631.798|220869.153|119.881 +638636.894|220864.621|119.820 +638642.039|220860.049|119.701 +638647.178|220855.480|119.525 +638652.329|220850.905|119.595 +638657.465|220846.339|119.372 +638662.607|220841.770|119.256 +638667.743|220837.204|119.022 +638672.885|220832.635|118.982 +638678.079|220828.020|119.058 +638683.230|220823.445|119.287 +638688.387|220818.870|119.707 +638693.590|220814.252|120.073 +638698.747|220809.677|120.591 +638703.950|220805.063|121.143 +638709.098|220800.491|121.567 +638714.289|220795.885|121.759 +638719.480|220791.274|122.118 +638724.625|220786.711|122.499 +638729.813|220782.105|122.786 +638734.994|220777.503|122.978 +638740.179|220772.900|123.161 +638745.312|220768.340|123.392 +638750.493|220763.741|123.551 +638755.669|220759.141|123.502 +638760.796|220754.585|123.466 +638765.968|220749.985|123.267 +638771.144|220745.389|123.301 +638776.267|220740.832|122.893 +638781.440|220736.233|122.731 +638786.664|220731.588|122.505 +638791.791|220727.034|122.454 +638796.966|220722.431|122.380 +638802.142|220717.832|122.198 +638807.272|220713.272|122.018 +638812.447|220708.673|121.914 +638817.626|220704.073|121.935 +638822.798|220699.477|121.954 +638827.977|220694.874|121.817 +638833.152|220690.278|122.079 +638838.282|220685.718|121.893 +638843.461|220681.122|122.051 +638848.636|220676.522|122.152 +638853.766|220671.965|122.173 +638858.941|220667.369|122.402 +638864.120|220662.767|122.460 +638869.250|220658.213|122.643 +638874.379|220653.656|122.704 +638879.558|220649.057|122.749 +638889.869|220639.894|122.752 +638895.005|220635.328|122.618 +638900.092|220630.805|122.451 +638905.280|220626.197|122.289 +638910.419|220621.628|122.106 +638915.558|220617.059|121.966 +638920.703|220612.484|121.664 +638925.796|220607.957|121.594 +638930.938|220603.388|121.484 +638936.083|220598.810|121.253 +638941.183|220594.278|121.064 +638946.282|220589.745|120.896 +638951.433|220585.167|120.728 +638956.484|220580.687|120.741 +638961.632|220576.112|120.634 +638966.743|220571.570|120.381 +638971.809|220567.068|120.030 +638976.927|220562.521|119.683 +638982.038|220557.979|119.488 +638987.116|220553.465|119.037 +638992.237|220548.914|118.717 +638997.315|220544.400|118.342 +639002.393|220539.886|117.997 +639007.480|220535.363|117.528 +639012.567|220530.840|117.117 +639017.654|220526.320|116.748 +639022.744|220521.796|116.403 +639027.837|220517.267|115.983 +639032.888|220512.780|115.553 +639037.948|220508.278|114.986 +639043.004|220503.783|114.535 +639048.110|220499.244|114.099 +639068.254|220481.340|112.636 +639073.305|220476.853|112.508 +639088.334|220463.500|111.965 +639098.323|220454.633|112.206 +639108.290|220445.785|112.176 +639113.258|220441.372|112.066 +639118.275|220436.918|112.002 +639123.243|220432.502|111.932 +639133.216|220423.641|111.475 +639138.221|220419.194|111.082 +639143.220|220414.750|110.755 +639148.157|220410.364|110.633 +639153.168|220405.911|110.274 +639158.188|220401.446|109.832 +639163.157|220397.032|109.475 +639168.162|220392.582|109.259 +639173.127|220388.172|109.009 +639198.041|220366.019|106.717 +639217.990|220348.282|104.806 +639222.931|220343.893|104.595 +639227.881|220339.495|104.348 +639252.567|220317.552|102.788 +639257.563|220313.121|102.770 +639262.473|220308.750|102.197 +639277.262|220295.610|101.483 +639282.242|220291.181|100.892 +639287.150|220286.819|100.511 +639292.057|220282.464|100.578 +639296.918|220278.145|100.615 +639301.853|220273.762|100.499 +639306.803|220269.357|99.898 +639311.689|220265.020|99.828 +639340.932|220239.057|99.725 +639345.741|220234.790|99.993 +639350.752|220230.334|99.234 +639355.635|220225.990|98.676 +639360.530|220221.647|98.783 +639384.494|220200.393|100.331 +639403.532|220183.510|101.532 +639412.926|220175.189|103.032 +639436.639|220154.152|104.144 +639446.164|220145.697|104.102 +639475.135|220119.935|100.727 +639479.787|220115.808|100.941 +639489.187|220107.466|101.151 +639493.875|220103.305|101.200 +639498.498|220099.202|101.346 +639503.171|220095.057|101.538 +639507.749|220090.997|101.959 +639516.863|220082.920|102.824 +639521.407|220078.891|103.190 +639526.058|220074.760|103.285 +639530.606|220070.728|103.413 +639535.172|220066.674|103.443 +639539.787|220062.578|103.513 +639544.389|220058.490|103.410 +639548.995|220054.403|103.300 +639553.561|220050.343|103.135 +639558.130|220046.289|102.995 +639562.653|220042.269|102.834 +639567.234|220038.200|102.663 +639571.769|220034.170|102.477 +639576.314|220030.135|102.279 +639580.862|220026.096|102.084 +639585.363|220022.097|101.870 +639589.893|220018.071|101.544 +639594.370|220014.093|101.240 +639598.863|220010.103|101.133 +639603.301|220006.162|101.057 +639607.748|220002.212|100.956 +639612.189|219998.271|100.898 +639616.587|219994.366|100.828 +639620.967|219990.477|100.849 +639625.268|219986.661|101.002 +639621.598|219987.200|100.962 +639617.246|219991.056|100.785 +639612.814|219994.985|100.752 +639608.373|219998.923|100.785 +639603.984|220002.818|100.846 +639599.531|220006.769|100.965 +639595.041|220010.749|101.032 +639590.518|220014.764|101.279 +639585.979|220018.793|101.630 +639581.419|220022.838|101.840 +639576.860|220026.885|102.084 +639572.260|220030.967|102.279 +639567.716|220035.002|102.489 +639563.128|220039.071|102.663 +639558.562|220043.119|102.748 +639553.945|220047.216|102.849 +639549.272|220051.361|102.998 +639544.670|220055.445|103.074 +639540.037|220059.554|103.315 +639535.401|220063.666|103.330 +639530.740|220067.799|103.233 +639526.138|220071.877|103.114 +639521.477|220076.010|103.035 +639516.853|220080.107|102.785 +639512.217|220084.212|102.349 +639507.584|220088.315|101.898 +639503.019|220092.357|101.377 +639498.312|220096.529|101.087 +639493.567|220100.736|101.026 +639488.873|220104.899|100.980 +639484.124|220109.108|100.977 +639479.384|220113.312|100.938 +639474.666|220117.490|100.508 +639469.908|220121.709|100.606 +639465.022|220126.049|101.185 +639460.063|220130.457|101.922 +639455.113|220134.861|102.943 +639435.725|220152.064|103.961 +639426.026|220160.662|104.178 +639406.945|220177.548|102.206 +639402.163|220181.782|101.834 +639387.749|220194.538|100.246 +639382.848|220198.881|100.057 +639378.035|220203.146|99.972 +639373.164|220207.458|99.609 +639358.580|220220.367|98.414 +639348.579|220229.246|99.335 +639338.694|220238.009|99.520 +639314.124|220259.777|98.841 +639309.120|220264.225|99.776 +639304.048|220268.726|100.103 +639299.110|220273.109|100.587 +639294.133|220277.520|100.630 +639289.164|220281.924|100.618 +639284.245|220286.283|100.630 +639279.234|220290.733|101.038 +639274.202|220295.198|101.624 +639269.206|220299.630|101.947 +639254.310|220312.837|102.337 +639244.295|220321.725|103.065 +639234.328|220330.564|103.468 +639224.339|220339.428|104.193 +639219.289|220343.909|104.449 +639194.173|220366.199|106.753 +639179.113|220379.561|107.781 +639174.056|220384.054|108.427 +639169.015|220388.528|108.942 +639163.992|220392.981|109.262 +639158.987|220397.422|109.460 +639153.973|220401.872|109.789 +639148.898|220406.374|110.252 +639143.887|220410.818|110.597 +639138.849|220415.287|110.737 +639133.792|220419.773|111.112 +639128.793|220424.208|111.438 +639123.752|220428.683|111.722 +639118.726|220433.139|111.816 +639113.706|220437.589|111.880 +639108.692|220442.036|111.917 +639103.629|220446.523|111.956 +639093.565|220455.444|111.944 +639088.517|220459.916|111.844 +639083.521|220464.344|111.761 +639073.347|220473.367|112.133 +639068.294|220477.847|112.243 +639053.008|220491.405|113.243 +639047.939|220495.900|113.730 +639042.776|220500.485|114.248 +639037.719|220504.968|114.663 +639032.605|220509.507|115.242 +639027.450|220514.082|115.751 +639022.357|220518.599|116.086 +639017.209|220523.168|116.580 +639012.076|220527.722|116.867 +639006.986|220532.236|117.260 +639001.847|220536.796|117.738 +638996.714|220541.349|118.171 +638991.584|220545.900|118.528 +638986.455|220550.451|118.982 +638981.331|220554.995|119.308 +638976.210|220559.537|119.622 +638971.041|220564.121|119.994 +638965.926|220568.656|120.277 +638960.766|220573.234|120.585 +638955.655|220577.767|120.875 +638950.510|220582.324|120.762 +638945.355|220586.896|120.991 +638940.204|220591.462|121.192 +638935.056|220596.027|121.329 +638929.905|220600.590|121.509 +638924.757|220605.156|121.728 +638919.618|220609.710|121.682 +638914.421|220614.322|122.024 +638909.279|220618.875|122.094 +638904.082|220623.490|122.600 +638898.898|220628.083|122.573 +638888.571|220637.236|122.926 +638878.253|220646.380|122.960 +638873.075|220650.971|122.856 +638867.893|220655.561|122.832 +638862.712|220660.151|122.765 +638857.533|220664.739|122.573 +638852.355|220669.326|122.390 +638847.176|220673.913|122.292 +638841.994|220678.503|122.222 +638836.816|220683.091|122.009 +638831.634|220687.684|122.201 +638826.456|220692.271|122.018 +638820.844|220697.246|122.167 +638816.102|220701.449|122.298 +638810.923|220706.039|122.292 +638805.741|220710.629|122.335 +638800.563|220715.220|122.393 +638795.384|220719.810|122.445 +638790.209|220724.400|122.615 +638785.030|220728.991|122.822 +638779.855|220733.578|122.963 +638774.630|220738.211|123.191 +638769.455|220742.801|123.420 +638764.325|220747.346|123.456 +638759.101|220751.979|123.597 +638753.925|220756.566|123.661 +638748.747|220761.156|123.670 +638743.565|220765.743|123.639 +638738.377|220770.337|123.283 +638733.245|220774.884|123.139 +638728.057|220779.478|122.963 +638722.869|220784.074|122.697 +638717.678|220788.671|122.387 +638712.482|220793.270|121.957 +638707.334|220797.827|121.582 +638702.188|220802.384|121.356 +638696.979|220806.992|120.774 +638691.773|220811.598|120.235 +638686.665|220816.121|119.866 +638681.462|220820.729|119.488 +638676.302|220825.298|119.122 +638671.209|220829.816|119.165 +638666.012|220834.421|119.140 +638660.925|220838.935|119.351 +638655.783|220843.492|119.500 +638650.644|220848.052|119.659 +638645.538|220852.578|119.564 +638640.448|220857.092|119.826 +638635.303|220861.655|119.948 +638630.252|220866.133|120.021 +638625.150|220870.656|120.064 +638620.054|220875.176|120.232 +638614.964|220879.693|120.515 +638609.886|220884.201|121.006 +638604.869|220888.657|121.701 +638599.864|220893.107|122.594 +638594.792|220897.609|123.210 +638589.796|220902.041|123.444 +638584.709|220906.555|123.801 +638579.713|220910.990|124.069 +638574.663|220915.468|124.282 +638569.618|220919.945|124.551 +638564.626|220924.374|124.895 +638559.639|220928.800|125.349 +638554.653|220933.228|125.788 +638549.657|220937.660|126.099 +638544.674|220942.083|126.608 +638539.687|220946.512|127.081 +638534.694|220950.940|127.477 +638529.781|220955.302|127.614 +638524.758|220959.752|127.669 +638519.777|220964.169|127.641 +638514.788|220968.588|127.550 +638509.792|220973.017|127.385 +638504.781|220977.455|127.077 +638499.874|220981.811|127.422 +638494.903|220986.218|127.629 +638490.005|220990.567|128.102 +638485.207|220994.841|129.671 +638480.220|220999.263|129.714 +638475.295|221003.631|129.943 +638470.366|221008.002|130.119 +638465.505|221012.318|130.491 +638455.675|221021.041|131.217 +638450.804|221025.370|132.034 +638445.936|221029.689|132.393 +638441.044|221034.026|132.536 +638431.266|221042.701|132.927 +638426.347|221047.059|132.866 +638421.461|221051.396|133.113 +638416.578|221055.725|132.972 +638411.668|221060.077|133.070 +638406.815|221064.381|133.241 +638401.890|221068.746|133.244 +638397.025|221073.062|133.335 +638392.164|221077.375|133.481 +638387.284|221081.700|133.506 +638382.410|221086.022|133.588 +638377.576|221090.307|133.625 +638372.711|221094.617|133.423 +638367.901|221098.884|133.686 +638363.012|221103.222|133.728 +638358.200|221107.486|133.618 +638353.317|221111.811|133.366 +638348.467|221116.109|133.396 +638343.661|221120.370|133.402 +638338.744|221124.728|133.329 +638334.035|221128.910|133.728 +638324.409|221137.442|133.774 +638319.581|221141.721|133.713 +638314.787|221145.976|133.914 +638310.038|221150.192|134.097 +638305.180|221154.498|133.865 +638300.382|221158.753|133.759 +638295.624|221162.978|133.923 +638290.830|221167.230|133.868 +638281.164|221175.798|133.301 +638276.385|221180.031|133.082 +638271.612|221184.265|132.930 +638266.793|221188.538|132.814 +638262.096|221192.708|132.860 +638257.356|221196.914|132.994 +638252.595|221201.136|133.006 +638247.847|221205.348|132.774 +638243.098|221209.558|132.576 +638238.367|221213.755|132.512 +638233.622|221217.961|132.399 +638228.903|221222.149|132.448 +638219.521|221230.473|132.338 +638214.837|221234.627|132.357 +638210.143|221238.791|132.338 +638205.510|221242.903|132.396 +638200.813|221247.069|132.396 +638196.143|221251.209|132.280 +638191.492|221255.339|132.280 +638186.850|221259.456|132.369 +638182.205|221263.580|132.442 +638168.284|221275.925|132.320 +638163.658|221280.027|132.003 +638158.976|221284.176|131.692 +638154.398|221288.239|131.692 +638145.117|221296.468|131.345 +638140.557|221300.513|131.235 +638135.966|221304.585|131.253 +638131.382|221308.648|131.034 +638126.701|221312.797|130.598 +638122.202|221316.789|130.613 +638117.578|221320.886|130.275 +638108.126|221329.247|128.306 +638098.750|221337.540|126.334 +638094.197|221341.576|125.934 +638089.658|221345.599|125.907 +638085.254|221349.513|126.303 +638080.703|221353.545|125.986 +638076.277|221357.474|126.044 +638062.695|221369.505|124.599 +638058.120|221373.555|124.023 +638053.625|221377.539|123.600 +638017.426|221409.586|118.186 +638013.132|221413.396|118.162 +638008.816|221417.227|118.290 +637995.621|221428.916|117.211 +637986.767|221436.756|115.690 +637982.423|221440.606|115.346 +637978.101|221444.434|115.114 +637973.901|221448.162|115.199 +637961.331|221459.320|115.660 +637953.147|221466.590|116.425 +637944.753|221474.036|116.114 +637940.489|221477.813|115.586 +637932.326|221485.058|115.913 +637923.865|221492.550|114.599 +637911.392|221503.605|113.575 +637903.001|221511.033|112.313 +637898.816|221514.739|111.639 +637894.909|221518.211|112.103 +637890.852|221521.804|111.767 +637886.835|221525.368|111.603 +637882.930|221528.833|111.895 +637878.953|221532.360|111.706 +637866.916|221543.028|110.807 +637859.034|221550.017|110.417 +637855.145|221553.464|110.231 +637850.957|221557.167|108.914 +637847.064|221560.618|108.753 +637843.202|221564.041|108.509 +637839.435|221567.384|108.646 +637831.827|221574.133|108.469 +637828.130|221577.415|108.686 +637824.387|221580.738|108.756 +637820.656|221584.048|108.875 +637817.017|221587.279|108.942 +637813.320|221590.561|109.003 +637809.662|221593.807|109.228 +637806.123|221596.950|109.484 +637802.518|221600.153|109.719 +638010.370|221413.628|118.156 +638014.702|221409.781|118.086 +638019.127|221405.855|118.467 +638028.277|221397.754|120.701 +638041.786|221385.775|122.496 +638050.772|221377.807|123.447 +638055.249|221373.836|123.764 +638059.766|221369.828|124.295 +638073.412|221357.727|125.989 +638077.902|221353.740|125.965 +638082.364|221349.778|126.072 +638086.848|221345.794|126.059 +638091.264|221341.868|125.712 +638095.821|221337.824|126.099 +638100.384|221333.773|126.276 +638105.182|221329.530|127.690 +638109.930|221325.324|128.888 +638123.881|221312.955|130.543 +638128.508|221308.852|130.933 +638133.062|221304.805|130.964 +638137.676|221300.708|131.052 +638142.306|221296.596|131.256 +638146.918|221292.503|131.369 +638151.554|221288.388|131.649 +638156.187|221284.273|131.646 +638160.802|221280.174|131.857 +638165.523|221275.986|132.098 +638170.199|221271.837|132.393 +638179.477|221263.593|132.369 +638184.122|221259.469|132.256 +638188.770|221255.336|132.201 +638193.458|221251.172|132.073 +638198.195|221246.966|132.277 +638202.843|221242.839|132.265 +638207.549|221238.657|132.323 +638212.289|221234.448|132.290 +638216.970|221230.287|132.253 +638226.459|221221.859|132.357 +638231.217|221217.638|132.512 +638235.975|221213.410|132.393 +638240.723|221209.195|132.539 +638245.497|221204.952|132.567 +638250.303|221200.688|132.814 +638255.076|221196.448|132.869 +638259.895|221192.169|132.917 +638264.696|221187.904|132.866 +638269.466|221183.668|132.966 +638274.291|221179.382|133.125 +638279.113|221175.103|133.280 +638283.999|221170.766|133.548 +638288.891|221166.425|133.893 +638293.676|221162.176|133.865 +638303.342|221153.590|133.844 +638308.255|221149.228|134.097 +638313.068|221144.952|133.999 +638317.905|221140.651|133.734 +638322.767|221136.332|133.658 +638332.505|221127.685|133.698 +638337.324|221123.400|133.359 +638342.256|221119.020|133.548 +638352.027|221110.339|133.237 +638356.977|221105.944|133.628 +638361.885|221101.588|133.695 +638366.774|221097.245|133.640 +638371.699|221092.868|133.512 +638376.668|221088.457|133.753 +638381.593|221084.080|133.667 +638386.510|221079.712|133.494 +638391.438|221075.332|133.478 +638396.355|221070.965|133.359 +638401.274|221066.594|133.314 +638406.227|221062.193|133.128 +638411.189|221057.785|133.024 +638416.148|221053.378|132.936 +638421.123|221048.961|133.021 +638426.091|221044.548|133.042 +638431.099|221040.098|133.027 +638441.017|221031.286|132.543 +638445.936|221026.909|132.204 +638450.908|221022.492|131.881 +638460.774|221013.717|131.025 +638465.782|221009.264|130.619 +638470.726|221004.866|130.052 +638475.749|221000.400|129.833 +638480.729|220995.975|129.702 +638485.762|220991.503|129.616 +638490.593|220987.190|127.849 +638495.613|220982.728|127.666 +638500.627|220978.272|127.379 +638505.659|220973.800|127.358 +638510.707|220969.320|127.544 +638515.751|220964.842|127.699 +638520.841|220960.322|127.843 +638525.867|220955.857|127.846 +638530.936|220951.355|127.751 +638535.990|220946.862|127.522 +638540.982|220942.424|127.129 +638546.060|220937.907|126.568 +638551.050|220933.469|126.184 +638556.091|220928.986|125.803 +638561.182|220924.462|125.444 +638566.217|220919.979|125.057 +638571.255|220915.495|124.700 +638576.300|220911.008|124.407 +638581.387|220906.482|124.097 +638586.477|220901.953|123.798 +638591.515|220897.472|123.441 +638596.602|220892.946|123.130 +638601.656|220888.441|122.304 +638606.716|220883.933|121.506 +638611.785|220879.419|120.890 +638616.817|220874.941|120.451 +638621.956|220870.369|120.186 +638627.058|220865.834|120.149 +638632.157|220861.298|120.113 +638637.254|220856.769|120.027 +638642.393|220852.197|119.805 +638647.483|220847.671|119.619 +638652.634|220843.093|119.704 +638657.724|220838.566|119.576 +638662.860|220833.997|119.387 +638667.950|220829.471|119.232 +638678.243|220820.324|119.406 +638683.401|220815.743|119.793 +638688.509|220811.211|120.213 +638693.660|220806.632|120.625 +638698.820|220802.054|121.280 +638703.965|220797.485|121.561 +638709.114|220792.913|121.942 +638714.259|220788.344|122.368 +638719.401|220783.779|122.719 +638724.588|220779.170|122.993 +638729.727|220774.607|123.240 +638734.860|220770.044|123.386 +638740.045|220765.442|123.679 +638745.174|220760.882|123.789 +638750.304|220756.322|123.840 +638755.480|220751.720|123.786 +638760.604|220747.163|123.670 +638765.779|220742.563|123.554 +638770.906|220738.004|123.609 +638776.075|220733.404|123.213 +638781.202|220728.844|123.155 +638786.377|220724.245|123.045 +638791.504|220719.682|122.670 +638796.680|220715.080|122.524 +638806.982|220705.920|122.505 +638812.161|220701.318|122.478 +638817.336|220696.715|122.393 +638822.509|220692.116|122.173 +638827.638|220687.556|122.274 +638832.817|220682.954|122.170 +638837.992|220678.354|122.316 +638843.168|220673.752|122.457 +638848.346|220669.152|122.597 +638853.473|220664.595|122.768 +638858.649|220659.999|123.021 +638863.827|220655.393|122.963 +638868.957|220650.837|123.063 +638874.136|220646.234|123.176 +638879.311|220641.635|123.280 +638884.447|220637.069|123.142 +638889.629|220632.460|123.008 +638894.810|220627.852|122.954 +638899.952|220623.277|122.597 +638905.094|220618.705|122.332 +638910.282|220614.090|122.152 +638915.424|220609.518|121.972 +638920.563|220604.949|121.908 +638925.754|220600.331|121.768 +638930.902|220595.753|121.530 +638936.092|220591.135|121.411 +638941.244|220586.554|121.210 +638946.392|220581.976|121.070 +638951.534|220577.404|121.097 +638956.691|220572.811|120.774 +638961.851|220568.217|120.378 +638967.005|220563.630|120.223 +638972.169|220559.031|119.872 +638977.289|220554.474|119.464 +638982.462|220549.865|118.994 +638987.628|220545.266|118.711 +638992.758|220540.700|118.275 +638997.930|220536.091|117.918 +639003.069|220531.516|117.406 +639008.202|220526.944|116.992 +639013.341|220522.369|116.574 +639018.477|220517.794|116.208 +639023.622|220513.213|115.736 +639028.764|220508.632|115.352 +639033.872|220504.081|114.776 +639038.978|220499.534|114.279 +639044.083|220494.989|113.852 +639064.551|220476.756|111.865 +639069.598|220472.266|111.783 +639074.704|220467.722|111.594 +639079.766|220463.214|111.353 +639084.814|220458.727|111.386 +639089.861|220454.237|111.426 +639094.851|220449.799|111.584 +639099.947|220445.267|111.685 +639104.946|220440.823|111.801 +639109.957|220436.364|111.758 +639114.977|220431.895|111.633 +639119.997|220427.430|111.533 +639125.032|220422.946|111.292 +639130.071|220418.463|111.036 +639135.115|220413.970|110.740 +639140.102|220409.532|110.576 +639145.152|220405.036|110.277 +639150.120|220400.611|109.826 +639155.183|220396.103|109.457 +639160.139|220391.692|109.222 +639165.190|220387.199|109.076 +639170.176|220382.755|108.561 +639175.230|220378.250|107.893 +639190.138|220364.973|106.750 +639195.179|220360.487|106.372 +639210.096|220347.191|104.565 +639215.080|220342.759|104.422 +639224.964|220333.957|104.019 +639239.750|220320.792|103.126 +639249.580|220312.042|102.626 +639259.407|220303.297|102.270 +639264.296|220298.941|101.898 +639269.264|220294.516|101.343 +639274.080|220290.233|101.654 +639279.011|220285.841|101.041 +639283.913|220281.473|100.688 +639288.722|220277.194|100.709 +639293.587|220272.869|100.727 +639298.406|220268.580|100.715 +639303.313|220264.209|100.444 +639308.224|220259.835|99.795 +639332.376|220238.350|99.578 +639342.017|220229.770|99.207 +639356.531|220216.849|98.118 +639361.250|220212.658|98.417 +639394.339|220183.263|100.520 +639412.831|220166.847|103.068 +639417.488|220162.714|103.602 +639426.937|220154.310|103.574 +639431.567|220150.196|103.687 +639436.313|220145.977|103.760 +639441.022|220141.789|103.739 +639445.713|220137.613|103.556 +639450.489|220133.361|102.898 +639460.136|220124.763|101.392 +639464.940|220120.481|100.651 +639469.670|220116.271|100.374 +639474.325|220112.135|100.548 +639483.545|220103.939|100.871 +639488.230|220099.775|100.935 +639492.878|220095.639|100.926 +639497.544|220091.491|100.849 +639502.095|220087.446|101.124 +639506.630|220083.420|101.800 +639511.141|220079.418|102.337 +639515.701|220075.364|102.605 +639520.282|220071.292|102.785 +639524.867|220067.217|102.971 +639529.478|220063.117|103.038 +639534.041|220059.063|103.099 +639538.680|220054.930|102.764 +639543.264|220050.855|102.767 +639547.861|220046.765|102.703 +639552.424|220042.708|102.575 +639557.035|220038.602|102.474 +639561.601|220034.542|102.376 +639566.131|220030.513|102.215 +639570.715|220026.431|102.047 +639575.305|220022.347|101.886 +639579.859|220018.296|101.666 +639584.434|220014.224|101.355 +639589.015|220010.146|101.051 +639593.535|220006.122|100.801 +639598.028|220002.126|100.706 +639602.530|219998.121|100.584 +639607.004|219994.141|100.602 +639611.479|219990.163|100.657 +639615.889|219986.240|100.767 +639620.275|219982.345|101.020 +639619.736|219980.601|100.993 +639615.523|219984.329|100.666 +639611.204|219988.151|100.599 +639606.892|219991.971|100.526 +639602.576|219995.796|100.490 +639598.196|219999.676|100.517 +639593.803|220003.565|100.612 +639589.393|220007.476|100.831 +639584.964|220011.402|101.145 +639580.496|220015.364|101.422 +639576.030|220019.320|101.706 +639571.593|220023.255|101.886 +639567.103|220027.236|102.072 +639562.580|220031.244|102.178 +639558.120|220035.194|102.261 +639553.612|220039.190|102.337 +639549.104|220043.183|102.425 +639544.538|220047.231|102.565 +639540.046|220051.212|102.623 +639535.468|220055.272|102.882 +639530.890|220059.325|102.876 +639526.369|220063.330|102.864 +639521.822|220067.357|102.745 +639517.286|220071.371|102.565 +639512.714|220075.419|102.331 +639503.689|220083.402|101.252 +639499.135|220087.428|100.685 +639494.527|220091.512|100.715 +639489.796|220095.703|100.865 +639485.163|220099.806|100.776 +639480.472|220103.960|100.737 +639475.809|220108.090|100.581 +639471.133|220112.230|100.206 +639466.449|220116.381|100.206 +639461.605|220120.679|100.843 +639456.692|220125.043|101.621 +639451.849|220129.344|102.331 +639447.027|220133.624|102.928 +639442.135|220137.967|103.373 +639437.316|220142.243|103.702 +639432.536|220146.480|103.513 +639422.880|220155.048|103.803 +639413.264|220163.570|103.294 +639408.524|220167.764|102.629 +639403.833|220171.913|101.685 +639394.302|220180.353|100.423 +639389.438|220184.656|99.947 +639384.597|220188.948|99.679 +639379.693|220193.294|99.505 +639374.832|220197.604|99.414 +639360.219|220210.549|98.060 +639330.227|220237.167|99.536 +639325.326|220241.505|98.850 +639310.208|220254.925|99.661 +639305.166|220259.400|100.118 +639300.012|220263.978|100.712 +639295.041|220268.388|100.700 +639289.978|220272.881|100.660 +639284.961|220277.328|100.657 +639279.883|220281.833|100.764 +639274.811|220286.338|101.267 +639269.752|220290.828|101.300 +639264.655|220295.351|101.654 +639259.602|220299.834|101.675 +639249.397|220308.899|102.669 +639244.316|220313.401|102.575 +639234.111|220322.466|103.337 +639229.052|220326.946|103.126 +639223.913|220331.512|103.687 +639213.680|220340.598|104.495 +639208.666|220345.045|104.480 +639182.954|220367.884|107.159 +639172.788|220376.912|107.918 +639157.356|220390.613|109.140 +639152.297|220395.106|109.439 +639147.133|220399.693|109.838 +639142.019|220404.232|110.249 +639136.919|220408.758|110.527 +639131.835|220413.269|110.667 +639126.736|220417.795|111.011 +639121.597|220422.358|111.301 +639116.473|220426.906|111.414 +639111.402|220431.405|111.511 +639106.287|220435.943|111.591 +639101.230|220440.427|111.588 +639096.134|220444.944|111.435 +639091.087|220449.421|111.335 +639085.996|220453.932|111.164 +639080.903|220458.450|111.078 +639075.795|220462.982|111.213 +639070.692|220467.511|111.341 +639065.633|220472.001|111.542 +639050.295|220485.629|112.679 +639045.165|220490.192|113.450 +639040.008|220494.776|113.913 +639034.903|220499.311|114.346 +639029.791|220503.853|114.943 +639024.686|220508.394|115.532 +639019.596|220512.914|115.867 +639014.451|220517.486|116.345 +639009.367|220522.004|116.672 +639004.231|220526.566|117.095 +638999.147|220531.084|117.510 +638994.008|220535.653|118.077 +638988.933|220540.157|118.388 +638983.803|220544.717|118.884 +638978.688|220549.262|119.140 +638973.613|220553.770|119.576 +638968.493|220558.321|120.073 +638963.381|220562.859|120.335 +638958.279|220567.391|120.448 +638953.164|220571.936|120.936 +638948.056|220576.471|121.228 +638943.008|220580.952|121.314 +638937.863|220585.521|121.411 +638932.764|220590.047|121.591 +638927.671|220594.567|121.667 +638922.526|220599.139|121.932 +638917.481|220603.617|122.054 +638912.342|220608.180|122.152 +638907.252|220612.700|122.323 +638902.162|220617.220|122.536 +638897.020|220621.786|122.865 +638886.846|220630.820|123.216 +638881.713|220635.377|123.325 +638876.632|220639.888|123.408 +638871.502|220644.439|123.344 +638866.375|220648.990|123.264 +638861.294|220653.495|123.182 +638851.038|220662.599|123.264 +638845.963|220667.098|122.813 +638840.836|220671.648|122.676 +638835.709|220676.193|122.478 +638830.583|220680.744|122.320 +638825.453|220685.294|122.460 +638820.332|220689.839|122.216 +638815.202|220694.393|122.472 +638810.076|220698.943|122.499 +638804.949|220703.494|122.600 +638799.822|220708.045|122.670 +638794.650|220712.638|122.816 +638789.523|220717.189|122.886 +638784.399|220721.739|123.118 +638779.273|220726.290|123.289 +638774.149|220730.841|123.447 +638768.976|220735.431|123.621 +638763.853|220739.982|123.749 +638758.729|220744.529|123.789 +638753.605|220749.080|123.935 +638748.482|220753.628|124.039 +638743.352|220758.178|123.975 +638738.173|220762.772|123.834 +638733.043|220767.325|123.700 +638727.956|220771.836|123.359 +638722.820|220776.390|123.103 +638717.636|220780.990|122.914 +638712.543|220785.504|122.518 +638707.398|220790.064|122.112 +638702.249|220794.626|121.661 +638697.104|220799.189|121.311 +638691.953|220803.755|120.847 +638686.799|220808.324|120.372 +638681.639|220812.893|119.817 +638676.485|220817.462|119.467 +638671.391|220821.982|119.445 +638666.243|220826.548|119.284 +638661.107|220831.105|119.485 +638655.972|220835.662|119.723 +638650.833|220840.225|119.799 +638645.730|220844.748|119.704 +638640.646|220849.262|120.021 +638635.504|220853.825|120.122 +638630.359|220858.391|120.198 +638625.263|220862.911|120.323 +638620.115|220867.480|120.369 +638615.025|220872.000|120.567 +638609.947|220876.508|121.052 +638604.878|220881.013|121.676 +638599.827|220885.506|122.554 +638594.761|220890.008|123.243 +638589.677|220894.522|123.554 +638584.642|220898.993|123.947 +638579.561|220903.504|124.343 +638574.523|220907.979|124.645 +638569.439|220912.493|125.035 +638564.409|220916.961|125.520 +638559.411|220921.399|125.739 +638554.318|220925.919|126.017 +638549.337|220930.345|126.477 +638544.299|220934.816|126.888 +638539.273|220939.285|127.398 +638534.274|220943.723|127.684 +638529.223|220948.206|127.913 +638524.255|220952.614|128.004 +638519.180|220957.116|127.977 +638514.148|220961.578|127.888 +638509.109|220966.046|127.785 +638504.071|220970.515|127.660 +638499.082|220974.940|127.611 +638494.065|220979.393|127.797 +638489.099|220983.801|128.053 +638484.259|220988.114|129.668 +638479.285|220992.530|129.818 +638474.304|220996.947|129.930 +638469.321|221001.370|130.010 +638464.383|221005.759|130.595 +638459.470|221010.120|130.939 +638454.572|221014.473|131.451 +638449.625|221018.865|131.970 +638444.754|221023.193|132.253 +638439.770|221027.616|132.442 +638434.909|221031.932|132.869 +638429.950|221036.330|132.856 +638425.045|221040.683|132.908 +638420.074|221045.093|132.802 +638415.231|221049.391|132.994 +638410.324|221053.743|133.091 +638405.413|221058.099|133.180 +638400.503|221062.458|133.265 +638395.684|221066.734|133.308 +638390.768|221071.096|133.411 +638381.026|221079.740|133.564 +638376.165|221084.056|133.734 +638371.297|221088.369|133.494 +638366.429|221092.691|133.664 +638361.586|221096.986|133.667 +638356.761|221101.268|133.811 +638351.902|221105.578|133.728 +638346.995|221109.924|133.289 +638342.213|221114.170|133.448 +638337.379|221118.462|133.600 +638332.557|221122.735|133.506 +638327.732|221127.018|133.780 +638318.137|221135.534|134.051 +638313.376|221139.758|134.097 +638308.572|221144.016|134.249 +638303.799|221148.250|134.262 +638298.992|221152.508|134.064 +638294.201|221156.754|133.999 +638275.081|221173.701|133.551 +638265.549|221182.144|133.335 +638260.828|221186.329|133.219 +638256.058|221190.556|133.125 +638251.343|221194.735|133.097 +638246.579|221198.954|132.762 +638241.851|221203.145|132.695 +638237.115|221207.342|132.579 +638232.466|221211.466|132.722 +638227.736|221215.654|132.387 +638218.314|221223.999|132.021 +638213.694|221228.102|132.408 +638209.015|221232.250|132.475 +638204.370|221236.368|132.442 +638199.722|221240.489|132.421 +638195.055|221244.622|132.311 +638190.389|221248.758|132.223 +638185.759|221252.861|132.064 +638181.132|221256.963|132.247 +638171.976|221265.086|132.622 +638167.321|221269.207|132.411 +638162.658|221273.340|132.165 +638158.049|221277.421|131.970 +638148.829|221285.590|131.613 +638144.227|221289.668|131.512 +638139.679|221293.701|131.445 +638135.125|221297.736|131.369 +638130.568|221301.772|131.296 +638121.415|221309.880|130.723 +638112.122|221318.100|129.239 +638107.486|221322.203|128.583 +638102.905|221326.260|128.245 +638093.550|221334.523|126.139 +638089.015|221338.540|125.840 +638084.507|221342.530|125.450 +638075.726|221350.324|126.151 +638071.276|221354.268|126.090 +638066.883|221358.160|126.090 +638053.265|221370.206|124.057 +638039.820|221382.108|122.810 +638017.237|221402.073|118.577 +638012.797|221406.005|118.101 +638008.453|221409.851|117.854 +638004.201|221413.622|118.040 +637995.545|221421.290|117.540 +637986.690|221429.118|116.007 +637982.405|221432.912|115.660 +637978.116|221436.710|115.318 +637973.901|221440.444|115.330 +637969.670|221444.196|115.269 +637965.421|221447.954|114.937 +637961.227|221451.670|114.858 +637957.125|221455.312|115.175 +637944.823|221466.221|115.800 +637940.583|221469.973|115.370 +637936.243|221473.804|114.315 +637928.108|221481.019|114.535 +637919.753|221488.414|113.688 +637915.745|221491.967|113.883 +637907.317|221499.414|112.188 +637903.193|221503.062|111.737 +637899.106|221506.680|111.453 +637895.028|221510.292|111.216 +637891.047|221513.819|111.179 +637887.027|221517.382|110.987 +637883.083|221520.875|110.908 +637879.129|221524.377|110.798 +637875.188|221527.870|110.752 +637871.214|221531.384|110.390 +637867.169|221534.966|109.966 +637863.341|221538.358|109.984 +637859.430|221541.821|109.692 +637855.538|221545.268|109.695 +637851.697|221548.673|109.707 +637847.799|221552.120|109.301 +637840.054|221558.978|108.725 +637836.241|221562.355|108.686 +637832.312|221565.830|108.012 +637828.746|221568.994|108.518 +637821.373|221575.535|109.058 +637817.758|221578.738|109.201 +637814.094|221581.987|109.384 +637810.430|221585.233|109.366 +637806.818|221588.437|109.551 +637803.261|221591.592|109.747 +638003.436|221412.335|117.912 +638007.712|221408.528|117.821 +638012.102|221404.627|118.007 +638016.588|221400.643|118.680 +638034.779|221384.507|122.225 +638048.318|221372.483|123.804 +638052.786|221368.514|124.322 +638057.407|221364.415|125.108 +638084.266|221340.524|125.508 +638088.823|221336.477|125.861 +638093.428|221332.383|126.239 +638107.519|221319.883|128.925 +638112.098|221315.814|129.254 +638121.610|221307.374|131.061 +638126.182|221303.311|131.150 +638130.751|221299.245|131.268 +638135.360|221295.149|131.323 +638139.969|221291.049|131.415 +638144.556|221286.968|131.393 +638149.241|221282.807|131.942 +638158.513|221274.562|131.985 +638163.173|221270.417|132.180 +638167.843|221266.269|132.445 +638172.524|221262.102|132.518 +638177.148|221257.987|132.259 +638181.784|221253.863|132.110 +638186.441|221249.721|132.085 +638191.120|221245.558|132.226 +638195.857|221241.348|132.424 +638200.560|221237.166|132.430 +638205.312|221232.939|132.457 +638209.993|221228.772|132.387 +638214.672|221224.609|132.326 +638219.357|221220.439|131.997 +638224.231|221216.114|132.863 +638228.894|221211.959|132.442 +638233.713|221207.677|132.710 +638238.425|221203.483|132.625 +638243.211|221199.228|132.722 +638248.054|221194.921|132.881 +638252.803|221190.700|133.109 +638257.676|221186.368|133.183 +638262.474|221182.101|133.454 +638267.290|221177.819|133.536 +638272.084|221173.551|133.497 +638276.925|221169.251|133.780 +638296.313|221152.008|133.960 +638301.187|221147.677|134.252 +638306.024|221143.373|134.316 +638310.882|221139.051|134.195 +638315.747|221134.723|134.137 +638325.427|221126.106|133.704 +638330.271|221121.796|133.548 +638335.187|221117.422|133.579 +638340.043|221113.103|133.551 +638344.944|221108.742|133.512 +638349.891|221104.346|133.847 +638354.819|221099.960|133.673 +638359.718|221095.605|133.670 +638364.634|221091.234|133.838 +638369.560|221086.851|133.716 +638384.373|221073.674|133.734 +638389.323|221069.270|133.478 +638394.239|221064.893|133.362 +638399.226|221060.461|133.451 +638404.179|221056.051|133.286 +638409.138|221051.640|133.170 +638414.103|221047.224|133.128 +638419.044|221042.826|132.902 +638424.052|221038.369|132.838 +638429.017|221033.953|132.881 +638434.013|221029.509|132.759 +638438.944|221025.120|132.488 +638443.971|221020.645|132.219 +638448.896|221016.259|131.951 +638453.916|221011.791|131.662 +638458.845|221007.399|130.918 +638463.813|221002.976|130.610 +638468.806|220998.526|130.083 +638473.789|220994.094|129.946 +638478.821|220989.613|129.860 +638483.808|220985.179|129.784 +638493.723|220976.336|127.992 +638498.737|220971.874|127.748 +638503.827|220967.348|127.821 +638508.875|220962.861|127.992 +638513.965|220958.335|128.144 +638519.000|220953.857|128.205 +638524.069|220949.346|128.153 +638529.089|220944.881|128.068 +638534.143|220940.382|127.861 +638539.193|220935.886|127.596 +638544.229|220931.403|127.120 +638549.261|220926.922|126.620 +638554.296|220922.435|126.206 +638559.392|220917.900|125.944 +638564.443|220913.407|125.727 +638569.475|220908.927|125.288 +638574.562|220904.397|124.938 +638579.595|220899.920|124.481 +638584.627|220895.439|124.066 +638589.708|220890.916|123.652 +638594.792|220886.393|123.249 +638599.812|220881.921|122.612 +638604.917|220877.371|121.789 +638609.941|220872.896|121.192 +638615.019|220868.376|120.704 +638620.112|220863.844|120.527 +638625.214|220859.308|120.475 +638630.307|220854.779|120.299 +638635.407|220850.243|120.247 +638640.500|220845.714|120.116 +638645.587|220841.188|119.838 +638650.689|220836.652|119.912 +638655.831|220832.077|119.845 +638660.915|220827.554|119.531 +638666.057|220822.982|119.427 +638671.154|220818.450|119.470 +638676.308|220813.871|119.729 +638681.410|220809.339|119.963 +638686.574|220804.755|120.591 +638691.679|220800.223|121.009 +638696.833|220795.644|121.506 +638701.984|220791.072|121.929 +638707.084|220786.543|122.359 +638712.232|220781.971|122.813 +638717.374|220777.405|123.124 +638722.510|220772.839|123.322 +638727.648|220768.273|123.658 +638732.784|220763.710|123.895 +638737.917|220759.151|124.017 +638743.050|220754.588|124.237 +638748.131|220750.071|124.206 +638753.255|220745.514|124.081 +638758.382|220740.954|123.959 +638768.632|220731.834|123.648 +638773.762|220727.275|123.581 +638778.888|220722.715|123.405 +638784.012|220718.155|123.152 +638789.142|220713.595|123.075 +638794.269|220709.035|122.947 +638799.399|220704.472|122.905 +638804.525|220699.913|122.899 +638809.655|220695.353|122.868 +638814.785|220690.790|122.722 +638819.912|220686.227|122.536 +638830.168|220677.114|122.649 +638835.295|220672.554|122.755 +638840.425|220667.994|122.871 +638845.603|220663.394|123.094 +638850.727|220658.844|123.618 +638860.990|220649.718|123.438 +638871.249|220640.598|123.597 +638876.379|220636.036|123.551 +638881.512|220631.473|123.557 +638886.648|220626.904|123.392 +638896.874|220617.808|123.002 +638902.068|220613.185|122.566 +638907.210|220608.613|122.390 +638912.303|220604.080|122.237 +638917.445|220599.508|122.094 +638922.587|220594.933|121.984 +638927.735|220590.352|121.734 +638932.877|220585.780|121.722 +638938.022|220581.205|121.673 +638943.121|220576.670|121.536 +638948.275|220572.085|121.262 +638953.393|220567.529|120.732 +638958.547|220562.947|120.582 +638963.701|220558.363|120.436 +638968.825|220553.803|119.918 +638973.997|220549.201|119.436 +638979.124|220544.638|118.930 +638984.245|220540.081|118.610 +638989.420|220535.476|118.235 +638994.550|220530.913|117.830 +638999.692|220526.335|117.245 +639004.877|220521.723|116.864 +639010.016|220517.148|116.422 +639015.155|220512.579|116.068 +639020.297|220508.004|115.681 +639025.399|220503.463|115.181 +639030.608|220498.823|114.541 +639035.717|220494.276|114.038 +639040.874|220489.686|113.581 +639046.052|220485.077|112.862 +639051.182|220480.505|112.130 +639061.463|220471.358|111.325 +639066.568|220466.819|111.149 +639071.680|220462.275|110.935 +639076.746|220457.767|110.691 +639081.842|220453.241|110.743 +639091.980|220444.231|110.987 +639097.079|220439.701|111.091 +639102.130|220435.212|111.176 +639107.238|220430.670|111.167 +639112.252|220426.214|111.149 +639117.367|220421.669|111.136 +639122.408|220417.183|110.838 +639132.573|220408.145|110.548 +639137.624|220403.656|110.256 +639142.683|220399.154|109.878 +639147.749|220394.646|109.463 +639152.797|220390.153|109.277 +639157.850|220385.660|109.079 +639167.966|220376.656|108.131 +639188.199|220358.649|106.189 +639223.254|220327.455|103.388 +639228.280|220322.984|102.959 +639238.183|220314.178|102.648 +639243.155|220309.756|102.337 +639267.813|220287.825|101.310 +639277.634|220279.090|100.843 +639282.611|220274.664|100.737 +639287.442|220270.369|100.609 +639292.343|220266.014|100.737 +639297.205|220261.695|100.831 +639301.996|220257.437|101.069 +639307.035|220252.944|99.828 +639311.896|220248.622|99.615 +639321.577|220240.014|99.542 +639326.399|220235.732|99.688 +639360.235|220205.630|98.170 +639379.093|220188.881|99.338 +639383.832|220184.672|99.600 +639388.462|220180.557|99.914 +639393.077|220176.463|100.676 +639397.695|220172.370|101.447 +639402.312|220168.273|102.197 +639420.878|220151.784|103.495 +639430.247|220143.453|103.407 +639439.632|220135.108|103.294 +639449.093|220126.686|102.224 +639463.425|220113.915|100.136 +639468.055|220109.800|100.164 +639472.593|220105.768|100.417 +639477.181|220101.696|100.721 +639486.376|220093.521|100.956 +639491.006|220089.403|100.782 +639495.594|220085.322|100.572 +639500.184|220081.247|100.950 +639518.124|220065.318|102.599 +639522.654|220061.291|102.800 +639527.223|220057.228|102.824 +639531.755|220053.199|102.779 +639536.303|220049.154|102.678 +639540.829|220045.128|102.447 +639545.435|220041.034|102.361 +639549.946|220037.020|102.233 +639554.496|220032.975|102.197 +639558.998|220028.970|102.157 +639563.525|220024.944|102.020 +639568.005|220020.957|101.867 +639572.541|220016.925|101.724 +639577.094|220012.874|101.520 +639581.608|220008.856|101.258 +639586.153|220004.812|100.880 +639590.676|220000.788|100.624 +639595.190|219996.774|100.441 +639599.610|219992.842|100.462 +639604.026|219988.916|100.526 +639608.437|219984.997|100.627 +639612.875|219981.053|100.630 +639617.240|219977.172|100.977 +639617.407|219975.109|100.996 +639613.109|219978.916|100.578 +639608.748|219982.784|100.481 +639604.398|219986.640|100.337 +639600.037|219990.507|100.264 +639595.617|219994.427|100.240 +639591.216|219998.335|100.401 +639586.738|220002.309|100.685 +639582.258|220006.287|101.008 +639577.750|220010.289|101.240 +639573.242|220014.291|101.483 +639568.758|220018.269|101.633 +639564.283|220022.240|101.758 +639559.809|220026.209|101.895 +639555.353|220030.165|101.968 +639550.851|220034.155|102.011 +639546.404|220038.102|102.072 +639541.887|220042.110|102.242 +639537.336|220046.149|102.343 +639532.773|220050.197|102.520 +639528.293|220054.171|102.562 +639523.772|220058.182|102.559 +639519.261|220062.184|102.538 +639514.796|220066.141|102.270 +639505.768|220074.142|101.773 +639501.397|220078.010|101.038 +639496.895|220081.996|100.481 +639492.341|220086.035|100.487 +639487.708|220090.147|100.688 +639483.109|220094.228|100.709 +639473.998|220102.302|100.322 +639469.414|220106.365|100.026 +639464.806|220110.453|99.886 +639460.130|220114.604|100.148 +639455.348|220118.856|101.063 +639450.568|220123.105|101.697 +639445.835|220127.305|102.075 +639441.117|220131.490|102.398 +639436.292|220135.775|103.090 +639431.567|220139.963|103.187 +639426.885|220144.115|103.364 +639417.443|220152.485|103.337 +639412.752|220156.639|103.017 +639408.076|220160.778|102.602 +639403.376|220164.939|102.346 +639389.374|220177.323|100.097 +639379.943|220185.671|99.267 +639360.802|220202.621|97.987 +639355.998|220206.876|97.917 +639316.609|220241.809|99.374 +639311.707|220246.156|99.514 +639306.718|220250.579|99.560 +639301.594|220255.138|101.084 +639296.653|220259.515|100.831 +639291.709|220263.898|100.645 +639286.766|220268.275|100.450 +639281.794|220272.683|100.514 +639276.765|220277.145|100.666 +639261.674|220290.529|101.291 +639256.624|220295.009|101.739 +639251.534|220299.527|102.123 +639231.258|220317.510|102.840 +639216.006|220331.037|103.526 +639210.901|220335.569|103.873 +639205.750|220340.135|104.190 +639200.739|220344.579|104.181 +639195.557|220349.182|104.888 +639190.418|220353.748|105.705 +639185.227|220358.353|106.077 +639174.919|220367.506|107.253 +639169.789|220372.057|107.616 +639164.659|220376.608|108.040 +639159.475|220381.210|108.564 +639154.305|220385.800|108.975 +639149.160|220390.363|109.131 +639144.006|220394.935|109.451 +639138.898|220399.471|109.829 +639133.698|220404.082|110.146 +639128.556|220408.645|110.417 +639123.414|220413.205|110.697 +639118.250|220417.783|110.719 +639113.130|220422.322|110.804 +639107.970|220426.897|110.813 +639102.821|220431.459|110.725 +639097.667|220436.028|110.716 +639092.519|220440.591|110.633 +639087.371|220445.154|110.600 +639082.226|220449.714|110.533 +639077.084|220454.274|110.475 +639071.936|220458.834|110.475 +639066.776|220463.412|110.740 +639061.573|220468.023|110.902 +639046.028|220481.819|112.285 +639040.849|220486.418|113.029 +639035.631|220491.051|113.685 +639030.480|220495.620|114.111 +639025.320|220500.201|114.742 +639020.114|220504.825|115.404 +639014.978|220509.379|115.669 +639009.787|220513.987|116.141 +639004.599|220518.587|116.556 +638999.467|220523.144|116.979 +638994.282|220527.746|117.470 +638989.100|220532.345|117.982 +638983.977|220536.890|118.330 +638978.804|220541.477|118.708 +638973.632|220546.068|119.134 +638968.459|220550.658|119.628 +638963.290|220555.248|120.183 +638958.178|220559.781|120.527 +638953.024|220564.353|120.722 +638947.867|220568.925|121.042 +638942.710|220573.500|121.445 +638937.562|220578.066|121.652 +638932.417|220582.631|121.862 +638927.326|220587.142|121.844 +638922.184|220591.699|121.920 +638917.042|220596.256|122.076 +638911.952|220600.770|122.176 +638906.813|220605.327|122.329 +638901.674|220609.884|122.603 +638896.578|220614.404|123.045 +638891.439|220618.964|123.420 +638886.358|220623.472|123.463 +638881.225|220628.022|123.630 +638876.096|220632.567|123.606 +638871.014|220637.069|123.530 +638865.888|220641.616|123.636 +638860.807|220646.115|123.618 +638855.732|220650.614|123.420 +638850.602|220655.159|123.517 +638845.524|220659.658|123.368 +638840.400|220664.196|123.063 +638835.322|220668.695|122.975 +638830.244|220673.191|122.844 +638825.121|220677.729|122.463 +638820.046|220682.231|122.890 +638814.968|220686.733|122.932 +638809.841|220691.278|122.990 +638804.766|220695.776|123.082 +638799.639|220700.321|123.146 +638794.564|220704.820|123.252 +638789.438|220709.364|123.365 +638784.363|220713.863|123.472 +638779.288|220718.365|123.621 +638774.213|220722.864|123.691 +638769.086|220727.406|123.716 +638764.011|220731.904|123.868 +638758.988|220736.361|124.103 +638753.864|220740.902|124.243 +638748.789|220745.401|124.334 +638743.715|220749.900|124.423 +638738.637|220754.399|124.380 +638733.555|220758.901|124.173 +638728.471|220763.403|123.947 +638723.390|220767.908|123.804 +638718.346|220772.370|123.350 +638713.213|220776.917|123.146 +638708.172|220781.383|122.893 +638703.075|220785.894|122.441 +638697.976|220790.408|121.948 +638692.874|220794.922|121.454 +638687.771|220799.439|120.966 +638682.669|220803.959|120.567 +638677.609|220808.440|120.052 +638672.501|220812.966|119.589 +638667.405|220817.483|119.494 +638662.314|220821.997|119.567 +638657.221|220826.515|119.616 +638652.198|220830.977|120.113 +638647.093|220835.500|119.893 +638642.009|220840.011|120.149 +638636.967|220844.486|120.256 +638631.828|220849.045|120.439 +638626.781|220853.520|120.491 +638621.739|220857.994|120.655 +638616.643|220862.515|120.741 +638611.602|220866.989|120.972 +638606.533|220871.491|121.533 +638601.525|220875.941|122.350 +638596.517|220880.394|123.112 +638591.436|220884.902|123.496 +638586.456|220889.325|123.929 +638581.426|220893.790|124.377 +638576.400|220898.252|124.859 +638571.374|220902.718|125.337 +638566.348|220907.180|125.803 +638561.352|220911.615|126.008 +638556.311|220916.089|126.288 +638551.273|220920.561|126.636 +638546.292|220924.983|127.090 +638541.309|220929.406|127.529 +638536.270|220933.881|127.882 +638531.268|220938.319|128.080 +638526.261|220942.763|128.227 +638521.262|220947.197|128.528 +638516.242|220951.650|128.531 +638511.207|220956.116|128.385 +638506.165|220960.581|128.233 +638501.118|220965.056|128.004 +638496.079|220969.524|127.891 +638491.126|220973.919|128.245 +638486.155|220978.336|128.949 +638481.260|220982.691|129.936 +638476.270|220987.114|129.918 +638471.290|220991.531|130.016 +638466.325|220995.938|130.278 +638461.372|221000.336|130.686 +638456.412|221004.741|131.037 +638446.613|221013.440|132.003 +638441.636|221017.856|132.223 +638436.710|221022.230|132.457 +638431.791|221026.595|132.799 +638426.893|221030.938|132.887 +638421.946|221035.327|132.972 +638417.038|221039.680|133.000 +638412.079|221044.078|133.027 +638407.181|221048.425|133.201 +638402.274|221052.777|133.292 +638397.360|221057.136|133.335 +638392.508|221061.440|133.515 +638387.573|221065.817|133.433 +638382.721|221070.123|133.634 +638377.844|221074.449|133.664 +638372.912|221078.822|133.664 +638368.084|221083.102|133.734 +638363.144|221087.485|133.707 +638358.297|221091.783|133.661 +638353.402|221096.120|133.655 +638348.571|221100.405|133.774 +638343.725|221104.706|133.789 +638338.823|221109.046|133.405 +638333.983|221113.341|133.509 +638329.140|221117.636|133.631 +638324.318|221121.912|133.542 +638319.493|221126.195|133.817 +638309.901|221134.708|134.134 +638305.103|221138.966|134.307 +638300.342|221143.193|134.399 +638295.463|221147.518|134.015 +638285.944|221155.967|134.335 +638281.122|221160.241|134.097 +638276.330|221164.490|133.734 +638266.814|221172.930|133.558 +638257.280|221181.388|133.329 +638252.541|221185.591|133.100 +638247.743|221189.843|132.860 +638243.022|221194.031|132.802 +638238.340|221198.185|132.680 +638233.579|221202.410|132.741 +638228.824|221206.622|132.213 +638224.139|221210.780|132.146 +638219.393|221214.989|132.043 +638214.687|221219.162|131.896 +638210.131|221223.210|132.369 +638205.443|221227.370|132.357 +638200.791|221231.497|132.299 +638196.165|221235.603|132.387 +638191.465|221239.772|132.372 +638186.801|221243.912|132.293 +638182.138|221248.045|131.939 +638177.477|221252.178|131.921 +638172.899|221256.241|132.113 +638168.312|221260.313|132.256 +638163.725|221264.382|132.125 +638159.073|221268.509|131.939 +638154.507|221272.560|131.982 +638145.287|221280.735|131.619 +638140.651|221284.846|131.320 +638136.131|221288.854|131.412 +638131.571|221292.899|131.293 +638127.060|221296.901|131.189 +638122.522|221300.928|131.226 +638117.910|221305.018|130.881 +638113.213|221309.172|129.866 +638108.650|221313.214|129.293 +638104.048|221317.292|128.818 +638099.525|221321.300|128.510 +638094.788|221325.491|127.382 +638090.146|221329.594|126.264 +638085.549|221333.666|125.645 +638081.054|221337.650|125.316 +638076.555|221341.637|124.987 +638072.233|221345.480|125.813 +638067.850|221349.376|126.087 +638058.779|221357.407|124.947 +638045.352|221369.304|123.639 +638040.856|221373.284|122.990 +638036.269|221377.344|122.173 +638022.794|221389.277|120.241 +638009.343|221401.183|117.906 +638005.015|221405.020|117.735 +638000.662|221408.879|117.464 +637987.635|221420.422|116.193 +637983.307|221424.259|115.867 +637974.696|221431.888|115.017 +637970.341|221435.741|114.410 +637957.832|221446.839|114.419 +637953.748|221450.466|114.815 +637949.630|221454.120|114.852 +637945.558|221457.735|115.102 +637937.124|221465.203|114.194 +637928.699|221472.661|113.176 +637924.688|221476.221|113.304 +637916.586|221483.409|113.285 +637908.247|221490.791|112.346 +637904.047|221494.510|111.560 +637900.008|221498.085|111.237 +637895.985|221501.654|111.207 +637891.995|221505.190|111.112 +637888.066|221508.677|111.048 +637884.101|221512.188|110.871 +637880.102|221515.733|110.777 +637876.115|221519.265|110.320 +637868.272|221526.218|109.963 +637864.435|221529.620|109.929 +637860.539|221533.073|109.893 +637856.629|221536.538|109.600 +637852.825|221539.913|109.512 +637849.012|221543.290|109.417 +637845.141|221546.719|109.113 +637841.252|221550.163|108.750 +637830.066|221560.084|108.738 +637822.805|221566.528|109.052 +637819.169|221569.756|109.298 +637811.854|221576.242|109.268 +637808.266|221579.427|109.533 +637804.694|221582.597|109.649 +638007.182|221401.228|117.760 +638011.593|221397.318|118.302 +638025.046|221385.394|120.597 +638029.588|221381.374|121.606 +638034.059|221377.405|122.064 +638043.033|221369.453|123.423 +638056.493|221357.511|124.776 +638069.980|221345.541|125.697 +638074.260|221341.731|124.883 +638078.768|221337.729|125.218 +638083.266|221333.739|125.523 +638087.820|221329.698|125.877 +638092.548|221325.510|126.882 +638106.544|221313.107|129.373 +638115.844|221304.863|130.540 +638125.024|221296.715|131.195 +638129.587|221292.661|131.278 +638134.193|221288.571|131.332 +638138.768|221284.505|131.235 +638143.358|221280.427|131.238 +638152.670|221272.167|132.034 +638157.260|221268.088|131.802 +638161.920|221263.949|131.994 +638166.559|221259.828|132.101 +638171.217|221255.692|132.012 +638175.807|221251.611|131.872 +638180.412|221247.520|131.826 +638185.201|221243.272|132.293 +638194.531|221234.987|132.402 +638199.219|221230.820|132.332 +638203.922|221226.639|132.372 +638213.352|221218.250|132.366 +638217.952|221214.154|131.829 +638227.443|221205.717|131.997 +638232.332|221201.377|132.704 +638237.047|221197.186|132.652 +638241.839|221192.928|132.777 +638246.609|221188.685|132.796 +638251.407|221184.421|133.027 +638256.274|221180.099|133.399 +638261.047|221175.856|133.506 +638265.860|221171.576|133.554 +638270.661|221167.309|133.561 +638275.431|221163.066|133.719 +638280.320|221158.726|134.012 +638285.136|221154.443|134.201 +638294.786|221145.863|134.039 +638299.666|221141.526|134.384 +638304.479|221137.247|134.271 +638309.273|221132.982|134.024 +638314.156|221128.642|134.103 +638318.911|221124.408|133.612 +638323.772|221120.083|133.585 +638328.695|221115.706|133.637 +638333.550|221111.390|133.588 +638338.424|221107.059|133.689 +638343.353|221102.676|133.881 +638348.190|221098.375|133.750 +638353.085|221094.023|133.698 +638358.044|221089.612|133.798 +638362.933|221085.266|133.759 +638367.889|221080.862|133.859 +638372.787|221076.509|133.929 +638377.689|221072.144|133.643 +638382.617|221067.761|133.606 +638387.540|221063.384|133.515 +638392.453|221059.013|133.384 +638397.427|221054.591|133.378 +638402.405|221050.168|133.393 +638407.306|221045.806|133.216 +638412.253|221041.405|133.033 +638417.264|221036.949|132.988 +638422.220|221032.542|132.902 +638427.182|221028.128|132.911 +638432.169|221023.693|132.695 +638437.100|221019.304|132.436 +638442.087|221014.869|132.256 +638447.049|221010.453|131.835 +638461.978|220997.163|130.644 +638466.931|220992.753|130.180 +638476.947|220983.847|129.952 +638481.979|220979.372|129.879 +638486.941|220974.946|129.040 +638491.873|220970.557|128.367 +638496.939|220966.049|128.181 +638501.983|220961.566|128.272 +638507.031|220957.082|128.461 +638512.121|220952.556|128.598 +638517.162|220948.075|128.790 +638522.277|220943.528|128.653 +638527.279|220939.077|128.379 +638532.329|220934.582|128.108 +638537.386|220930.086|127.900 +638542.427|220925.599|127.535 +638547.511|220921.073|127.111 +638552.550|220916.586|126.724 +638557.640|220912.060|126.346 +638562.684|220907.570|126.066 +638567.732|220903.077|125.834 +638572.859|220898.509|125.337 +638577.885|220894.028|124.813 +638582.963|220889.505|124.328 +638588.041|220884.978|123.831 +638593.076|220880.495|123.438 +638603.256|220871.418|122.070 +638608.322|220866.898|121.378 +638613.406|220862.371|120.960 +638618.502|220857.833|120.832 +638623.602|220853.294|120.719 +638628.747|220848.713|120.600 +638633.840|220844.181|120.427 +638638.936|220839.645|120.302 +638644.075|220835.067|120.088 +638649.178|220830.529|120.152 +638654.320|220825.951|120.091 +638659.449|220821.382|119.707 +638664.546|220816.846|119.656 +638669.688|220812.268|119.598 +638674.842|220807.684|119.890 +638679.962|220803.139|120.543 +638685.117|220798.555|120.917 +638690.274|220793.974|121.487 +638695.428|220789.393|121.987 +638700.631|220784.769|122.475 +638705.730|220780.237|122.954 +638710.872|220775.665|123.228 +638716.060|220771.050|123.441 +638721.159|220766.521|123.938 +638726.295|220761.952|124.130 +638731.477|220757.343|124.337 +638736.564|220752.820|124.578 +638741.745|220748.211|124.700 +638746.869|220743.648|124.572 +638751.950|220739.128|124.502 +638757.123|220734.520|124.218 +638762.249|220729.957|124.078 +638767.376|220725.394|123.926 +638772.506|220720.828|124.051 +638777.633|220716.265|123.935 +638782.759|220711.699|123.767 +638787.889|220707.136|123.627 +638793.016|220702.570|123.545 +638798.146|220698.005|123.484 +638803.273|220693.439|123.353 +638808.354|220688.918|123.246 +638813.483|220684.350|123.063 +638818.662|220679.744|123.210 +638823.746|220675.212|122.557 +638828.870|220670.661|123.060 +638834.048|220666.052|123.173 +638839.129|220661.532|123.255 +638849.389|220652.406|123.490 +638854.519|220647.840|123.536 +638859.648|220643.278|123.712 +638869.859|220634.195|123.959 +638875.041|220629.580|123.837 +638880.128|220625.054|123.734 +638885.264|220620.485|123.719 +638890.403|220615.907|123.466 +638895.493|220611.374|123.286 +638900.641|220606.790|122.801 +638905.786|220602.206|122.426 +638910.831|220597.713|122.304 +638915.976|220593.135|122.204 +638921.121|220588.551|121.978 +638926.165|220584.064|122.027 +638931.313|220579.480|121.820 +638936.416|220574.938|121.634 +638941.521|220570.391|121.399 +638946.675|220565.800|121.161 +638951.741|220561.289|120.792 +638956.849|220556.742|120.576 +638961.967|220552.182|120.204 +638967.094|220547.610|119.592 +638972.220|220543.041|119.083 +638977.298|220538.518|118.662 +638982.425|220533.949|118.253 +638987.552|220529.380|117.903 +638992.642|220524.841|117.345 +638997.781|220520.263|116.888 +639002.920|220515.685|116.470 +639008.007|220511.153|116.096 +639013.158|220506.562|115.556 +639018.248|220502.027|115.245 +639023.412|220497.424|114.584 +639028.526|220492.865|113.953 +639033.632|220488.314|113.541 +639038.804|220483.702|112.874 +639043.937|220479.127|112.109 +639049.067|220474.552|111.463 +639059.302|220465.433|110.661 +639064.417|220460.879|110.393 +639069.470|220456.380|110.332 +639074.579|220451.829|110.182 +639079.675|220447.294|110.271 +639084.725|220442.801|110.320 +639089.822|220438.266|110.445 +639094.872|220433.770|110.539 +639099.978|220429.228|110.615 +639105.037|220424.723|110.621 +639110.103|220420.218|110.621 +639115.166|220415.713|110.670 +639120.247|220411.187|110.521 +639125.337|220406.655|110.283 +639135.539|220397.566|109.652 +639140.644|220393.021|109.353 +639145.701|220388.513|109.061 +639150.794|220383.981|108.960 +639155.866|220379.461|108.555 +639161.008|220374.876|108.003 +639166.083|220370.356|107.674 +639171.222|220365.778|107.217 +639176.315|220361.236|106.738 +639181.436|220356.671|106.043 +639191.689|220347.530|104.659 +639196.734|220343.034|104.345 +639206.957|220333.926|103.498 +639227.159|220315.934|102.623 +639237.178|220307.015|102.645 +639257.325|220289.066|101.197 +639262.299|220284.637|101.032 +639282.230|220266.885|100.316 +639287.177|220262.484|100.493 +639292.078|220258.125|100.654 +639297.013|220253.736|100.965 +639302.021|220249.271|100.362 +639307.056|220244.781|99.566 +639311.930|220240.441|99.645 +639316.859|220236.058|99.728 +639356.260|220200.978|97.426 +639361.006|220196.763|97.911 +639370.625|220188.213|98.435 +639375.356|220184.010|98.737 +639380.111|220179.789|99.252 +639384.863|220175.567|99.773 +639389.493|220171.458|100.450 +639394.211|220167.271|101.221 +639403.504|220159.023|102.416 +639408.232|220154.822|102.849 +639412.980|220150.598|102.831 +639417.635|220146.462|103.108 +639422.399|220142.228|103.056 +639436.639|220129.551|102.373 +639441.354|220125.354|102.075 +639446.082|220121.148|101.742 +639450.821|220116.927|101.355 +639455.640|220112.632|100.535 +639460.432|220108.362|99.908 +639465.050|220104.256|100.002 +639474.242|220096.084|100.496 +639478.891|220091.951|100.484 +639488.068|220083.789|100.584 +639492.701|220079.668|100.429 +639497.258|220075.617|100.706 +639501.687|220071.685|101.410 +639506.176|220067.698|101.800 +639510.660|220063.715|101.968 +639515.171|220059.706|102.273 +639519.712|220055.668|102.428 +639524.230|220051.647|102.453 +639528.759|220047.618|102.434 +639533.258|220043.616|102.331 +639537.778|220039.596|102.139 +639542.286|220035.584|102.023 +639546.791|220031.576|101.947 +639551.296|220027.568|101.880 +639555.749|220023.606|101.843 +639560.211|220019.637|101.779 +639564.689|220015.654|101.651 +639569.112|220011.716|101.550 +639573.613|220007.710|101.340 +639578.076|220003.739|101.090 +639582.538|219999.764|100.855 +639587.012|219995.781|100.590 +639591.447|219991.833|100.285 +639595.836|219987.929|100.215 +639600.204|219984.046|100.267 +639604.557|219980.175|100.395 +639608.928|219976.285|100.462 +639613.186|219972.503|100.834 +639612.405|219971.204|100.755 +639607.943|219975.161|100.371 +639603.487|219979.111|100.221 +639599.022|219983.070|100.133 +639594.489|219987.091|100.127 +639589.945|219991.123|100.203 +639585.363|219995.192|100.481 +639580.724|219999.313|100.807 +639576.107|220003.410|101.038 +639571.541|220007.467|101.304 +639566.957|220011.536|101.428 +639562.363|220015.611|101.608 +639557.742|220019.713|101.694 +639553.128|220023.810|101.770 +639548.522|220027.894|101.803 +639543.923|220031.976|101.849 +639539.314|220036.066|101.944 +639534.651|220040.205|102.087 +639529.987|220044.344|102.233 +639525.339|220048.468|102.331 +639520.715|220052.571|102.331 +639516.116|220056.649|102.206 +639511.504|220060.740|101.907 +639506.868|220064.848|101.736 +639502.260|220068.936|101.453 +639497.749|220072.929|100.913 +639493.152|220077.001|100.310 +639488.486|220081.143|100.377 +639479.128|220089.446|100.438 +639469.811|220097.706|100.060 +639460.453|220106.009|99.981 +639455.622|220110.300|100.545 +639450.876|220114.516|100.959 +639441.357|220122.974|101.730 +639436.532|220127.262|102.401 +639431.787|220131.478|102.623 +639427.035|220135.699|102.904 +639422.259|220139.939|103.044 +639417.555|220144.115|103.081 +639408.070|220152.527|102.742 +639403.388|220156.679|102.389 +639398.728|220160.809|101.895 +639394.043|220164.960|101.261 +639389.419|220169.054|100.557 +639384.759|220173.181|99.783 +639375.362|220181.505|98.752 +639370.586|220185.741|98.448 +639365.831|220189.957|98.009 +639361.091|220194.160|97.820 +639356.288|220198.418|97.402 +639312.405|220237.390|99.581 +639307.535|220241.712|99.496 +639302.649|220246.049|99.557 +639297.632|220250.515|100.651 +639292.724|220254.867|100.538 +639287.866|220259.177|100.456 +639282.977|220263.517|100.264 +639278.085|220267.855|100.087 +639263.195|220281.077|100.673 +639258.227|220285.490|100.822 +639253.155|220289.995|101.438 +639228.155|220312.197|102.428 +639192.820|220343.582|104.361 +639187.702|220348.130|104.946 +639177.482|220357.216|106.156 +639172.304|220361.822|106.988 +639167.229|220366.333|107.345 +639162.099|220370.890|107.762 +639156.969|220375.446|108.241 +639151.897|220379.954|108.661 +639146.740|220384.535|108.969 +639141.650|220389.053|109.097 +639136.496|220393.634|109.433 +639131.351|220398.203|109.701 +639126.251|220402.732|110.057 +639121.116|220407.292|110.280 +639115.989|220411.846|110.457 +639110.816|220416.439|110.594 +639105.708|220420.971|110.597 +639100.606|220425.501|110.530 +639095.461|220430.067|110.414 +639090.319|220434.626|110.271 +639085.180|220439.186|110.100 +639080.038|220443.749|110.009 +639074.841|220448.358|110.006 +639069.693|220452.927|110.064 +639064.481|220457.553|110.353 +639059.332|220462.119|110.457 +639048.917|220471.367|111.124 +639043.742|220475.966|111.770 +639038.472|220480.651|112.462 +639033.248|220485.296|113.252 +639028.093|220489.875|113.764 +639022.839|220494.541|114.319 +639017.630|220499.174|115.044 +639012.439|220503.783|115.443 +639007.202|220508.434|115.916 +639002.018|220513.036|116.294 +638996.787|220517.685|116.729 +638991.603|220522.287|117.239 +638986.369|220526.938|117.812 +638981.197|220531.529|118.177 +638975.976|220536.168|118.628 +638970.760|220540.801|119.009 +638965.588|220545.397|119.570 +638960.315|220550.079|120.232 +638955.155|220554.663|120.619 +638949.955|220559.278|120.805 +638944.752|220563.901|121.216 +638939.552|220568.516|121.500 +638934.355|220573.128|121.701 +638929.164|220577.736|121.875 +638923.971|220582.345|122.155 +638918.835|220586.902|122.137 +638913.598|220591.550|122.295 +638908.410|220596.149|122.429 +638903.226|220600.752|122.600 +638898.035|220605.360|123.008 +638892.853|220609.963|123.261 +638887.669|220614.565|123.530 +638882.487|220619.165|123.783 +638877.309|220623.758|123.844 +638872.130|220628.358|124.100 +638866.958|220632.945|124.066 +638861.782|220637.532|123.965 +638856.658|220642.077|123.825 +638851.440|220646.704|123.618 +638846.268|220651.291|123.517 +638841.141|220655.838|123.621 +638835.972|220660.423|123.411 +638830.799|220665.010|123.298 +638825.681|220669.545|122.941 +638820.509|220674.133|122.911 +638815.382|220678.686|123.423 +638810.259|220683.231|123.277 +638805.086|220687.818|123.447 +638799.965|220692.366|123.603 +638794.842|220696.910|123.676 +638789.669|220701.498|123.731 +638784.549|220706.042|123.865 +638779.428|220710.590|124.033 +638774.304|220715.131|124.121 +638769.184|220719.676|124.212 +638764.060|220724.220|124.154 +638758.939|220728.765|124.337 +638753.867|220733.267|124.417 +638748.750|220737.808|124.648 +638743.629|220742.353|124.779 +638738.554|220746.855|124.807 +638733.476|220751.357|124.688 +638728.350|220755.901|124.481 +638723.314|220760.364|124.197 +638718.184|220764.914|123.987 +638713.100|220769.419|123.740 +638708.056|220773.888|123.319 +638702.920|220778.441|123.051 +638697.872|220782.913|122.573 +638692.776|220787.427|122.088 +638687.723|220791.901|121.503 +638682.666|220796.376|121.000 +638677.564|220800.896|120.512 +638672.504|220805.374|119.970 +638667.453|220809.848|119.759 +638662.363|220814.362|119.732 +638657.374|220818.785|119.854 +638652.351|220823.244|120.277 +638647.297|220827.722|120.061 +638642.265|220832.187|120.311 +638637.275|220836.613|120.475 +638632.282|220841.041|120.558 +638627.241|220845.510|120.701 +638622.203|220849.978|120.881 +638617.207|220854.410|120.963 +638612.166|220858.881|121.097 +638607.182|220863.304|121.448 +638602.220|220867.711|122.158 +638597.264|220872.116|122.941 +638592.287|220876.532|123.408 +638587.312|220880.949|123.850 +638582.335|220885.366|124.325 +638577.363|220889.779|124.859 +638572.444|220894.150|125.407 +638567.421|220898.606|125.925 +638562.480|220902.992|126.169 +638557.545|220907.372|126.529 +638552.565|220911.792|126.940 +638547.639|220916.166|127.440 +638542.699|220920.549|127.745 +638537.700|220924.980|127.943 +638532.753|220929.370|128.193 +638527.864|220933.707|128.577 +638522.868|220938.142|128.818 +638517.961|220942.494|128.976 +638513.002|220946.890|129.147 +638508.021|220951.303|129.056 +638503.035|220955.723|128.897 +638498.036|220960.151|128.644 +638493.107|220964.522|128.644 +638488.188|220968.884|128.769 +638483.320|220973.215|130.055 +638478.386|220977.589|130.061 +638473.448|220981.966|130.028 +638463.618|220990.686|130.537 +638458.653|220995.094|130.769 +638453.779|220999.416|130.985 +638444.044|221008.060|132.034 +638439.133|221012.416|132.408 +638434.253|221016.744|132.604 +638429.322|221021.121|132.780 +638424.427|221025.458|132.881 +638419.535|221029.798|133.018 +638414.646|221034.136|133.180 +638409.729|221038.491|133.140 +638404.874|221042.795|133.222 +638399.994|221047.126|133.521 +638395.117|221051.448|133.436 +638390.204|221055.804|133.500 +638385.339|221060.120|133.564 +638380.414|221064.485|133.570 +638375.619|221068.737|133.853 +638370.730|221073.071|133.780 +638365.908|221077.347|133.868 +638361.016|221081.685|133.795 +638356.228|221085.930|134.216 +638351.372|221090.234|134.091 +638346.517|221094.538|133.984 +638341.655|221098.845|133.871 +638336.821|221103.133|133.966 +638332.011|221107.398|133.908 +638327.128|221111.723|133.701 +638322.337|221115.969|133.826 +638317.518|221120.242|133.743 +638312.696|221124.515|133.701 +638307.944|221128.731|134.185 +638303.131|221132.998|134.231 +638298.395|221137.201|134.493 +638293.564|221141.480|134.451 +638288.757|221145.741|134.240 +638284.048|221149.917|134.396 +638279.226|221154.187|134.134 +638274.465|221158.406|133.972 +638269.670|221162.655|133.935 +638264.891|221166.885|133.704 +638260.127|221171.107|133.597 +638255.357|221175.335|133.460 +638250.626|221179.526|133.271 +638245.878|221183.729|133.003 +638241.110|221187.953|132.957 +638236.426|221192.105|132.808 +638231.692|221196.302|132.695 +638226.898|221200.545|132.229 +638222.192|221204.711|132.018 +638217.470|221208.893|131.747 +638212.819|221213.020|131.906 +638198.957|221225.313|132.475 +638194.318|221229.421|132.494 +638185.012|221237.669|132.405 +638180.416|221241.741|132.439 +638175.712|221245.902|131.866 +638171.116|221249.980|131.915 +638166.517|221254.055|131.991 +638161.960|221258.097|132.015 +638157.357|221262.172|131.811 +638139.014|221278.421|131.299 +638134.442|221282.472|131.083 +638116.401|221298.462|131.211 +638111.802|221302.531|130.668 +638107.184|221306.618|130.065 +638088.728|221322.931|126.681 +638079.575|221331.027|125.398 +638075.110|221334.983|125.212 +638070.666|221338.918|124.898 +638057.532|221350.558|125.066 +638053.143|221354.448|124.846 +638039.777|221366.274|123.612 +638035.312|221370.221|122.856 +638030.862|221374.159|122.201 +638026.369|221378.131|121.369 +638017.362|221386.089|119.683 +638008.459|221393.962|118.092 +638004.158|221397.766|117.787 +637999.818|221401.612|117.549 +637995.517|221405.419|117.275 +637991.265|221409.187|117.239 +637982.542|221416.901|116.010 +637978.260|221420.693|115.657 +637965.339|221432.129|113.950 +637957.155|221439.392|114.389 +637953.022|221443.059|114.322 +637948.889|221446.723|114.288 +637944.725|221450.417|114.133 +637928.016|221465.215|112.551 +637923.969|221468.806|112.520 +637919.857|221472.448|112.234 +637915.861|221475.993|112.228 +637911.840|221479.556|112.136 +637907.777|221483.159|111.877 +637903.705|221486.768|111.597 +637899.740|221490.282|111.554 +637895.683|221493.876|111.155 +637883.927|221504.303|111.271 +637879.931|221507.845|110.957 +637871.957|221514.907|110.240 +637868.031|221518.385|110.033 +637864.243|221521.747|110.176 +637860.405|221525.148|110.137 +637856.446|221528.653|109.631 +637852.551|221532.107|109.393 +637848.741|221535.484|109.292 +637844.958|221538.837|109.094 +637841.179|221542.186|109.131 +637837.445|221545.497|109.155 +637833.674|221548.840|108.832 +637830.062|221552.050|109.332 +637811.857|221568.198|109.801 +637808.300|221571.353|109.960 +637804.627|221574.608|109.701 +638013.220|221387.515|119.171 +638017.609|221383.620|119.668 +638026.631|221375.619|121.381 +638040.104|221363.668|123.603 +638044.648|221359.635|124.499 +638049.010|221355.758|124.520 +638053.405|221351.851|124.731 +638057.828|221347.922|124.822 +638062.308|221343.941|125.233 +638066.539|221340.171|124.426 +638071.010|221336.199|124.831 +638075.515|221332.197|125.163 +638079.993|221328.219|125.374 +638089.140|221320.100|126.584 +638112.354|221299.513|130.930 +638130.507|221283.371|130.964 +638135.061|221279.326|131.022 +638139.636|221275.260|131.226 +638153.493|221262.946|131.863 +638158.040|221258.902|131.710 +638162.679|221254.778|131.811 +638167.291|221250.678|131.768 +638171.899|221246.579|131.735 +638176.663|221242.351|132.314 +638181.333|221238.200|132.384 +638190.599|221229.961|132.451 +638195.235|221225.837|132.378 +638204.553|221217.555|132.235 +638209.134|221213.474|131.564 +638213.809|221209.320|131.488 +638218.491|221205.159|131.451 +638223.289|221200.901|131.866 +638228.053|221196.671|132.085 +638232.829|221192.437|132.722 +638237.608|221188.191|132.765 +638242.351|221183.979|132.930 +638247.078|221179.779|133.009 +638251.925|221175.475|133.237 +638256.664|221171.268|133.433 +638261.480|221166.989|133.512 +638266.253|221162.749|133.658 +638275.882|221154.197|133.884 +638280.695|221149.923|134.021 +638285.514|221145.644|134.231 +638290.366|221141.334|134.335 +638295.158|221137.076|134.393 +638299.964|221132.806|134.222 +638304.789|221128.517|134.201 +638309.560|221124.274|133.807 +638314.366|221120.001|133.686 +638319.237|221115.673|133.704 +638324.092|221111.357|133.622 +638328.936|221107.059|133.829 +638333.849|221102.691|133.871 +638338.659|221098.418|133.881 +638343.591|221094.041|134.094 +638348.431|221089.737|134.003 +638353.335|221085.382|134.033 +638358.200|221081.057|133.777 +638363.046|221076.750|133.798 +638367.996|221072.355|133.871 +638372.897|221067.999|133.975 +638377.747|221063.686|133.670 +638382.669|221059.312|133.579 +638387.592|221054.938|133.490 +638392.462|221050.610|133.423 +638397.437|221046.191|133.420 +638402.347|221041.826|133.289 +638407.239|221037.476|133.042 +638412.195|221033.072|132.927 +638417.124|221028.695|133.015 +638422.068|221024.300|132.829 +638427.024|221019.895|132.796 +638431.961|221015.503|132.582 +638436.957|221011.065|132.479 +638441.880|221006.688|132.152 +638456.711|220993.497|130.884 +638461.728|220989.034|130.580 +638471.677|220980.189|130.135 +638476.654|220975.763|129.973 +638481.696|220971.286|130.007 +638486.600|220966.915|129.040 +638491.605|220962.465|128.684 +638496.655|220957.978|128.873 +638501.654|220953.540|129.043 +638506.750|220949.014|129.226 +638511.789|220944.539|129.333 +638516.809|220940.080|129.248 +638521.847|220935.597|128.809 +638526.861|220931.140|128.684 +638531.902|220926.657|128.306 +638536.901|220922.213|127.977 +638541.958|220917.717|127.821 +638547.002|220913.230|127.498 +638552.031|220908.756|127.001 +638557.116|220904.233|126.562 +638562.157|220899.749|126.218 +638567.204|220895.262|125.959 +638577.306|220886.274|124.855 +638582.384|220881.757|124.328 +638587.462|220877.240|123.819 +638592.543|220872.719|123.347 +638597.672|220868.156|122.890 +638602.683|220863.694|122.054 +638607.807|220859.137|121.478 +638612.897|220854.611|121.155 +638618.045|220850.036|121.039 +638623.145|220845.504|120.905 +638628.290|220840.932|120.768 +638633.386|220836.402|120.613 +638638.580|220831.788|120.466 +638643.667|220827.264|120.192 +638648.824|220822.686|120.357 +638653.960|220818.120|120.043 +638659.102|220813.548|119.918 +638664.247|220808.979|119.857 +638669.447|220804.362|119.966 +638674.561|220799.823|120.451 +638679.770|220795.202|120.945 +638684.931|220790.624|121.463 +638690.091|220786.046|122.048 +638695.297|220781.428|122.603 +638700.448|220776.860|123.048 +638705.596|220772.291|123.420 +638710.796|220767.679|123.978 +638715.981|220763.073|124.069 +638721.120|220758.511|124.340 +638726.259|220753.948|124.615 +638731.446|220749.345|124.822 +638736.628|220744.743|124.938 +638741.806|220740.143|124.999 +638746.982|220735.541|124.709 +638752.112|220730.984|124.679 +638757.287|220726.385|124.542 +638762.466|220721.785|124.426 +638767.644|220717.183|124.441 +638772.823|220712.583|124.596 +638778.002|220707.981|124.340 +638783.128|220703.424|124.206 +638788.307|220698.821|124.075 +638793.534|220694.176|123.901 +638798.664|220689.620|123.868 +638803.843|220685.017|123.709 +638809.024|220680.415|123.536 +638814.154|220675.858|123.734 +638819.336|220671.252|123.469 +638824.517|220666.647|123.249 +638829.644|220662.093|123.395 +638834.822|220657.494|123.466 +638840.001|220652.897|123.776 +638845.134|220648.340|123.889 +638850.264|220643.784|124.005 +638855.445|220639.181|124.100 +638860.578|220634.621|124.106 +638865.705|220630.077|124.657 +638870.890|220625.465|124.365 +638876.028|220620.896|124.060 +638881.167|220616.327|123.871 +638886.309|220611.761|123.709 +638891.454|220607.186|123.344 +638896.596|220602.614|123.164 +638901.744|220598.036|122.752 +638906.890|220593.464|122.630 +638912.035|220588.892|122.484 +638917.180|220584.320|122.365 +638922.285|220579.782|122.073 +638927.433|220575.207|121.926 +638932.538|220570.668|121.701 +638937.690|220566.090|121.567 +638942.850|220561.500|121.241 +638947.919|220556.992|120.808 +638953.027|220552.453|120.658 +638958.151|220547.896|120.204 +638963.281|220543.327|119.567 +638968.410|220538.761|119.052 +638973.488|220534.244|118.662 +638978.621|220529.678|118.177 +638983.702|220525.155|117.805 +638988.796|220520.623|117.254 +638993.889|220516.093|116.766 +638998.979|220511.564|116.352 +639004.078|220507.026|115.873 +639009.174|220502.493|115.446 +639014.219|220498.004|115.114 +639019.340|220493.447|114.401 +639024.402|220488.939|113.825 +639029.468|220484.431|113.288 +639034.595|220479.868|112.630 +639039.676|220475.342|111.904 +639044.760|220470.812|111.231 +639059.909|220457.340|110.350 +639064.983|220452.826|109.999 +639070.043|220448.330|109.914 +639075.054|220443.874|109.823 +639080.114|220439.378|109.807 +639085.064|220434.980|109.945 +639090.114|220430.493|110.076 +639095.119|220426.049|110.201 +639100.127|220421.599|110.313 +639105.141|220417.143|110.332 +639110.161|220412.681|110.320 +639115.141|220408.255|110.231 +639120.180|220403.777|110.051 +639125.227|220399.288|109.789 +639130.229|220394.838|109.494 +639135.234|220390.388|109.241 +639150.251|220377.031|108.579 +639155.284|220372.554|108.134 +639160.270|220368.119|107.686 +639165.315|220363.629|107.195 +639170.359|220359.142|106.750 +639175.382|220354.668|106.010 +639185.480|220345.679|104.714 +639190.494|220341.214|104.202 +639200.507|220332.308|103.483 +639235.462|220301.230|102.279 +639240.497|220296.744|101.468 +639245.511|220292.288|101.337 +639250.519|220287.831|100.849 +639260.464|220278.989|100.545 +639280.325|220261.338|100.145 +639285.272|220256.943|100.337 +639290.192|220252.569|100.371 +639295.141|220248.171|100.212 +639300.183|220243.681|99.377 +639305.115|220239.298|99.395 +639310.010|220234.951|99.722 +639314.923|220230.581|99.548 +639339.996|220208.257|96.241 +639364.325|220186.650|97.792 +639369.165|220182.355|98.396 +639373.945|220178.112|99.078 +639378.785|220173.812|99.356 +639383.592|220169.547|99.892 +639388.368|220165.308|100.621 +639393.086|220161.123|101.410 +639397.896|220156.855|101.962 +639402.742|220152.552|102.294 +639407.479|220148.345|102.681 +639412.307|220144.057|102.840 +639422.009|220135.428|102.617 +639426.864|220131.112|102.666 +639431.695|220126.817|102.581 +639441.443|220118.140|101.657 +639456.015|220105.167|100.334 +639460.959|220100.763|99.447 +639465.702|220096.548|99.456 +639470.365|220092.411|100.225 +639475.050|220088.251|100.596 +639479.790|220084.036|100.383 +639484.578|220079.774|100.197 +639489.287|220075.586|100.200 +639493.945|220071.453|100.517 +639498.562|220067.351|101.044 +639503.241|220063.196|101.279 +639507.853|220059.100|101.599 +639517.058|220050.922|102.108 +639521.755|220046.743|102.023 +639526.442|220042.580|102.020 +639531.109|220038.428|101.870 +639535.727|220034.323|101.727 +639540.384|220030.180|101.666 +639544.990|220026.084|101.617 +639549.595|220021.990|101.608 +639554.158|220017.933|101.553 +639558.782|220013.822|101.486 +639563.326|220009.780|101.300 +639567.898|220005.714|101.264 +639572.504|220001.614|101.078 +639577.076|219997.548|100.831 +639581.651|219993.479|100.587 +639586.196|219989.435|100.252 +639590.722|219985.408|100.029 +639595.157|219981.464|100.023 +639599.634|219977.486|100.072 +639604.045|219973.564|100.197 +639608.416|219969.684|100.542 +639612.799|219965.791|100.840 +639609.729|219965.614|100.636 +639605.273|219969.559|100.228 +639600.768|219973.551|100.057 +639596.257|219977.544|99.923 +639591.670|219981.613|99.932 +639587.113|219985.655|100.069 +639582.474|219989.767|100.359 +639577.853|219993.866|100.590 +639573.171|219998.018|100.871 +639568.517|220002.148|101.054 +639563.878|220006.260|101.179 +639559.239|220010.374|101.325 +639554.618|220014.471|101.407 +639549.906|220018.647|101.435 +639545.243|220022.783|101.508 +639540.594|220026.901|101.514 +639535.937|220031.031|101.587 +639531.231|220035.200|101.672 +639526.464|220039.431|101.828 +639521.809|220043.552|101.675 +639517.079|220047.749|101.953 +639512.507|220051.791|101.139 +639507.703|220056.055|101.572 +639498.337|220064.348|100.919 +639493.652|220068.494|100.487 +639489.013|220072.602|100.115 +639484.273|220076.803|100.017 +639479.461|220081.067|100.054 +639474.605|220085.377|100.371 +639469.890|220089.552|100.188 +639465.187|220093.716|99.676 +639450.693|220106.569|100.157 +639445.765|220110.949|100.749 +639426.194|220128.332|102.559 +639421.356|220132.618|102.416 +639416.510|220136.922|102.681 +639411.661|220141.222|102.678 +639406.814|220145.517|102.355 +639402.014|220149.775|102.392 +639397.195|220154.045|101.931 +639387.709|220162.442|100.727 +639382.927|220166.676|100.075 +639378.123|220170.931|99.569 +639373.317|220175.186|99.085 +639368.565|220179.392|98.265 +639363.770|220183.638|97.740 +639354.096|220192.209|96.966 +639349.353|220196.400|95.765 +639344.403|220200.802|96.390 +639339.545|220205.102|96.021 +639309.504|220231.800|99.776 +639304.593|220236.152|99.603 +639299.710|220240.478|99.240 +639294.764|220244.867|99.399 +639289.765|220249.308|99.981 +639284.824|220253.694|100.139 +639279.874|220258.083|100.008 +639274.979|220262.420|99.856 +639269.965|220266.870|99.883 +639265.036|220271.241|100.039 +639260.044|220275.676|100.368 +639255.045|220280.114|100.758 +639250.086|220284.515|100.837 +639245.060|220288.977|101.105 +639230.149|220302.206|101.480 +639215.140|220315.526|102.090 +639210.126|220319.979|102.459 +639205.158|220324.386|102.434 +639184.965|220342.321|104.269 +639179.866|220346.856|105.208 +639174.757|220351.394|105.781 +639169.710|220355.878|106.287 +639159.517|220364.931|107.390 +639149.410|220373.907|108.290 +639144.351|220378.400|108.597 +639139.257|220382.920|108.744 +639134.198|220387.413|109.106 +639108.829|220409.925|109.951 +639103.760|220414.421|110.027 +639098.658|220418.947|109.939 +639093.598|220423.431|109.926 +639083.454|220432.426|109.695 +639078.364|220436.946|109.573 +639073.259|220441.475|109.652 +639068.156|220446.005|109.734 +639063.002|220450.583|109.881 +639057.933|220455.085|110.259 +639042.517|220468.776|111.048 +639037.344|220473.376|111.700 +639032.169|220477.978|112.441 +639027.005|220482.568|113.078 +639021.796|220487.198|113.663 +639016.639|220491.783|114.288 +639011.482|220496.370|114.968 +639006.294|220500.978|115.346 +639001.158|220505.541|115.727 +638995.919|220510.196|116.236 +638990.786|220514.758|116.696 +638985.601|220519.364|117.217 +638980.371|220524.015|117.796 +638975.195|220528.612|118.208 +638970.026|220533.205|118.613 +638964.808|220537.841|119.070 +638959.635|220542.437|119.619 +638954.463|220547.040|120.305 +638949.257|220551.661|120.610 +638944.103|220556.239|120.860 +638938.897|220560.863|121.301 +638928.564|220570.037|121.445 +638923.361|220574.658|121.920 +638918.170|220579.269|122.176 +638912.979|220583.878|122.371 +638907.789|220588.490|122.667 +638902.601|220593.095|122.862 +638897.465|220597.655|123.021 +638892.280|220602.258|123.249 +638887.047|220606.909|123.581 +638881.914|220611.466|123.792 +638876.684|220616.111|124.087 +638871.505|220620.710|124.331 +638866.330|220625.304|124.346 +638861.157|220629.894|124.285 +638855.933|220634.530|124.289 +638850.764|220639.114|124.087 +638845.591|220643.704|123.959 +638840.370|220648.334|123.789 +638835.197|220652.925|123.859 +638830.031|220657.509|123.856 +638824.862|220662.099|123.682 +638819.640|220666.732|123.685 +638814.468|220671.322|123.795 +638809.247|220675.955|123.740 +638804.074|220680.546|123.807 +638798.905|220685.136|124.023 +638793.735|220689.726|124.161 +638788.514|220694.359|124.304 +638783.393|220698.907|124.423 +638778.175|220703.540|124.566 +638773.006|220708.127|124.642 +638767.885|220712.672|124.624 +638762.713|220717.262|124.636 +638757.543|220721.849|124.688 +638747.208|220731.027|124.968 +638742.038|220735.617|124.990 +638736.917|220740.162|125.160 +638731.791|220744.709|125.029 +638726.615|220749.299|124.828 +638721.488|220753.847|124.630 +638716.307|220758.440|124.398 +638711.177|220762.991|124.145 +638706.044|220767.545|123.959 +638700.899|220772.102|123.377 +638695.711|220776.701|122.996 +638690.615|220781.221|122.496 +638685.464|220785.784|121.914 +638680.313|220790.350|121.356 +638675.208|220794.873|120.796 +638670.059|220799.439|120.463 +638664.908|220804.008|120.037 +638659.818|220808.525|120.003 +638654.728|220813.042|120.024 +638649.659|220817.550|120.488 +638644.560|220822.074|120.283 +638639.479|220826.585|120.573 +638634.443|220831.059|120.710 +638629.353|220835.579|120.805 +638624.318|220840.051|120.985 +638619.231|220844.568|121.149 +638614.186|220849.045|121.253 +638609.200|220853.477|121.454 +638604.174|220857.943|121.875 +638599.163|220862.399|122.569 +638594.198|220866.815|123.191 +638589.171|220871.281|123.624 +638584.197|220875.700|124.097 +638579.229|220880.117|124.660 +638574.261|220884.536|125.188 +638569.295|220888.953|125.803 +638564.312|220893.379|126.160 +638559.380|220897.762|126.541 +638554.403|220902.184|126.974 +638549.477|220906.564|127.431 +638544.500|220910.984|127.903 +638539.550|220915.382|128.059 +638534.612|220919.768|128.376 +638529.671|220924.157|128.687 +638524.718|220928.556|128.854 +638519.793|220932.936|129.357 +638514.837|220937.337|129.528 +638509.865|220941.748|129.495 +638504.989|220946.079|129.446 +638499.959|220950.541|129.370 +638495.064|220954.884|129.144 +638490.084|220959.304|129.123 +638485.180|220963.660|129.406 +638480.306|220967.994|130.058 +638475.429|220972.325|130.122 +638470.513|220976.690|130.321 +638460.719|220985.389|130.665 +638455.806|220989.754|130.939 +638450.908|220994.100|130.884 +638446.083|220998.392|131.601 +638436.427|221006.972|132.472 +638431.547|221011.306|132.668 +638426.707|221015.604|132.771 +638421.824|221019.941|132.957 +638416.971|221024.248|132.997 +638407.282|221032.852|133.274 +638402.414|221037.171|133.216 +638397.635|221041.417|133.548 +638392.709|221045.788|133.460 +638387.893|221050.065|133.494 +638383.023|221054.387|133.506 +638378.210|221058.660|133.609 +638373.397|221062.936|133.725 +638363.750|221071.498|133.856 +638358.910|221075.793|133.814 +638354.097|221080.069|133.996 +638349.324|221084.306|134.128 +638339.634|221092.907|134.106 +638330.067|221101.396|133.963 +638325.266|221105.660|133.969 +638320.432|221109.943|133.777 +638315.631|221114.204|133.844 +638310.846|221118.447|133.676 +638306.070|221122.683|133.603 +638301.363|221126.865|134.054 +638291.863|221135.299|134.353 +638287.123|221139.502|134.259 +638282.387|221143.705|134.213 +638277.598|221147.951|134.176 +638272.877|221152.136|133.917 +638268.085|221156.388|133.905 +638263.364|221160.573|133.710 +638258.670|221164.737|133.713 +638253.879|221168.986|133.423 +638249.133|221173.192|133.128 +638244.418|221177.374|133.052 +638239.690|221181.568|132.924 +638235.036|221185.695|132.978 +638230.226|221189.956|132.360 +638220.832|221198.283|132.006 +638211.365|221206.674|131.287 +638206.692|221210.816|131.037 +638202.163|221214.840|131.683 +638193.013|221222.969|132.427 +638188.368|221227.090|132.421 +638183.756|221231.180|132.305 +638179.129|221235.286|132.442 +638169.876|221243.488|131.869 +638165.224|221247.612|131.625 +638160.664|221251.657|131.628 +638156.086|221255.717|131.555 +638146.970|221263.806|131.674 +638142.392|221267.863|131.378 +638137.847|221271.895|131.275 +638133.318|221275.910|131.000 +638128.718|221279.985|130.650 +638124.174|221284.014|130.613 +638092.093|221312.422|126.587 +638087.671|221316.344|126.550 +638083.224|221320.295|126.663 +638074.055|221328.405|125.063 +638069.636|221332.325|124.855 +638065.192|221336.263|124.554 +638060.739|221340.207|124.237 +638056.502|221343.978|124.990 +638047.678|221351.799|124.578 +638043.261|221355.712|124.246 +638034.383|221363.576|123.182 +638012.035|221383.349|119.134 +638007.728|221387.168|118.750 +638003.211|221391.161|117.671 +637998.943|221394.943|117.528 +637994.658|221398.744|117.309 +637990.391|221402.524|116.961 +637977.598|221413.856|116.056 +637968.960|221421.495|114.828 +637960.526|221428.959|114.120 +637952.248|221436.293|114.151 +637948.136|221439.935|113.965 +637943.973|221443.623|113.797 +637939.885|221447.241|113.749 +637935.755|221450.899|113.535 +637931.595|221454.578|112.980 +637927.458|221458.238|112.548 +637919.287|221465.471|112.161 +637911.240|221472.600|111.895 +637899.307|221483.168|111.752 +637887.103|221493.958|109.987 +637883.113|221497.484|109.463 +637867.913|221510.963|110.295 +637860.317|221517.693|110.493 +637852.517|221524.590|109.512 +637848.832|221527.858|109.881 +637841.395|221534.448|109.957 +637829.831|221544.671|108.207 +637826.569|221547.575|109.628 +637812.198|221560.310|110.155 +638033.145|221361.720|122.899 +638042.027|221353.841|124.142 +638046.459|221349.909|124.484 +638050.781|221346.069|124.584 +638055.036|221342.283|124.106 +638059.452|221338.360|124.185 +638063.909|221334.404|124.478 +638068.365|221330.445|124.801 +638072.934|221326.397|125.435 +638081.931|221318.411|126.355 +638086.400|221314.442|126.553 +638090.862|221310.477|126.483 +638095.516|221306.353|127.413 +638105.130|221297.855|130.991 +638123.003|221281.963|130.226 +638127.566|221277.912|130.580 +638132.184|221273.813|130.994 +638136.716|221269.789|131.223 +638141.313|221265.708|131.278 +638145.940|221261.596|131.525 +638150.399|221257.631|131.122 +638155.023|221253.525|131.384 +638159.659|221249.407|131.457 +638164.234|221245.341|131.485 +638173.618|221237.014|132.369 +638178.227|221232.917|132.369 +638182.900|221228.769|132.451 +638187.490|221224.688|132.381 +638201.252|221212.444|130.964 +638205.933|221208.283|130.891 +638210.670|221204.074|131.186 +638215.404|221199.871|131.467 +638220.122|221195.680|131.692 +638224.980|221191.370|132.509 +638229.687|221187.188|132.710 +638234.454|221182.955|132.991 +638239.212|221178.724|132.914 +638243.948|221174.515|133.055 +638248.721|221170.272|133.137 +638253.470|221166.053|133.387 +638258.298|221161.768|133.871 +638263.090|221157.510|133.795 +638267.863|221153.267|133.960 +638272.685|221148.985|134.128 +638277.473|221144.726|134.097 +638282.228|221140.502|134.195 +638287.071|221136.195|134.256 +638291.857|221131.943|134.252 +638296.660|221127.667|134.070 +638301.412|221123.442|133.856 +638306.225|221119.163|133.765 +638311.102|221114.829|133.795 +638315.918|221110.546|133.768 +638320.755|221106.248|133.920 +638325.638|221101.908|134.073 +638330.502|221097.586|134.100 +638335.355|221093.273|134.036 +638340.207|221088.960|134.018 +638345.084|221084.626|134.204 +638354.847|221075.945|133.935 +638359.739|221071.596|133.911 +638364.625|221067.249|133.881 +638369.514|221062.906|133.865 +638374.436|221058.529|133.750 +638379.310|221054.195|133.664 +638384.233|221049.818|133.585 +638389.164|221045.438|133.594 +638394.087|221041.058|133.576 +638398.994|221036.696|133.430 +638403.886|221032.343|133.143 +638408.812|221027.966|133.195 +638413.807|221023.522|133.024 +638418.663|221019.203|132.933 +638423.662|221014.759|132.799 +638428.560|221010.404|132.674 +638433.549|221005.969|132.503 +638443.394|220997.209|131.851 +638473.167|220970.725|130.150 +638478.160|220966.284|130.196 +638483.113|220961.877|129.784 +638488.115|220957.426|129.363 +638493.110|220952.989|129.470 +638498.155|220948.505|129.616 +638503.190|220944.030|129.665 +638508.219|220939.559|129.693 +638513.243|220935.097|129.613 +638518.266|220930.628|129.607 +638523.316|220926.136|129.321 +638528.315|220921.692|129.004 +638533.356|220917.205|128.626 +638538.349|220912.761|128.263 +638543.400|220908.271|128.013 +638548.447|220903.782|127.760 +638553.476|220899.304|127.224 +638558.505|220894.827|126.742 +638563.538|220890.349|126.270 +638568.579|220885.862|125.931 +638573.651|220881.348|125.334 +638578.674|220876.877|124.755 +638583.700|220872.402|124.200 +638588.784|220867.879|123.752 +638593.814|220863.405|123.246 +638598.892|220858.887|122.734 +638603.954|220854.376|121.993 +638609.035|220849.856|121.518 +638614.135|220845.321|121.408 +638619.234|220840.791|121.265 +638624.330|220836.259|121.128 +638629.423|220831.730|120.948 +638634.520|220827.200|120.811 +638639.662|220822.628|120.658 +638644.746|220818.105|120.329 +638649.906|220813.524|120.567 +638655.033|220808.961|120.128 +638660.129|220804.435|120.021 +638665.280|220799.857|120.213 +638670.443|220795.276|120.652 +638675.604|220790.694|121.161 +638680.764|220786.116|121.673 +638685.927|220781.538|122.316 +638691.082|220776.963|122.810 +638696.233|220772.391|123.225 +638701.387|220767.816|123.874 +638706.532|220763.250|124.206 +638711.720|220758.642|124.420 +638716.859|220754.079|124.709 +638721.994|220749.516|124.855 +638727.179|220744.913|125.023 +638732.315|220740.351|125.258 +638737.445|220735.794|125.172 +638742.620|220731.191|125.118 +638747.796|220726.592|124.996 +638752.926|220722.032|124.886 +638758.101|220717.433|124.846 +638763.280|220712.830|124.788 +638768.409|220708.270|124.798 +638773.588|220703.671|124.703 +638778.715|220699.111|124.645 +638783.893|220694.509|124.596 +638789.072|220689.909|124.545 +638799.380|220680.744|124.258 +638804.556|220676.141|123.996 +638809.737|220671.539|124.036 +638814.916|220666.936|124.005 +638820.094|220662.334|124.063 +638825.273|220657.734|124.185 +638830.406|220653.174|124.331 +638835.578|220648.581|124.432 +638840.806|220643.936|124.545 +638845.935|220639.379|124.566 +638851.114|220634.774|124.596 +638856.299|220630.168|124.414 +638861.432|220625.605|124.441 +638866.613|220621.003|124.459 +638871.798|220616.394|124.362 +638876.934|220611.828|124.273 +638882.128|220607.208|123.780 +638887.315|220602.593|123.575 +638892.460|220598.021|123.280 +638897.654|220593.403|123.039 +638902.845|220588.788|122.923 +638907.947|220584.247|122.548 +638913.144|220579.629|122.353 +638918.295|220575.048|122.054 +638938.915|220556.711|121.082 +638944.078|220552.118|120.674 +638949.239|220547.534|120.521 +638954.408|220542.934|120.073 +638959.590|220538.320|119.406 +638964.719|220533.757|118.912 +638969.898|220529.151|118.473 +638975.080|220524.546|118.049 +638980.167|220520.022|117.577 +638985.360|220515.399|116.949 +638990.502|220510.827|116.507 +638995.650|220506.248|115.980 +639000.796|220501.673|115.526 +639005.941|220497.098|115.160 +639011.095|220492.514|114.672 +639016.261|220487.921|114.032 +639021.333|220483.404|113.346 +639026.502|220478.807|112.770 +639031.635|220474.238|111.990 +639036.765|220469.672|111.347 +639041.892|220465.116|110.841 +639047.019|220460.556|110.335 +639052.069|220456.069|110.326 +639057.187|220451.518|110.024 +639062.259|220447.013|109.768 +639067.321|220442.515|109.661 +639072.387|220438.013|109.515 +639077.453|220433.514|109.451 +639082.513|220429.021|109.466 +639087.569|220424.528|109.527 +639092.580|220420.078|109.597 +639102.663|220411.123|109.646 +639117.708|220397.758|109.384 +639122.804|220393.228|109.149 +639127.785|220388.806|109.149 +639132.841|220384.310|108.872 +639152.961|220366.427|107.674 +639157.999|220361.947|107.232 +639163.029|220357.475|106.930 +639168.110|220352.952|106.116 +639173.163|220348.456|105.616 +639193.305|220330.540|103.297 +639208.282|220317.226|102.358 +639223.202|220303.964|101.752 +639238.122|220290.706|100.977 +639243.042|220286.335|100.819 +639248.004|220281.924|100.727 +639252.902|220277.575|100.791 +639257.843|220273.186|100.542 +639262.848|220268.736|100.182 +639267.731|220264.395|100.036 +639272.690|220259.991|100.103 +639277.634|220255.599|99.935 +639282.504|220251.274|99.962 +639287.464|220246.866|99.716 +639292.383|220242.492|99.399 +639297.324|220238.103|99.350 +639302.161|220233.812|99.734 +639307.123|220229.404|99.563 +639317.032|220220.586|98.295 +639326.975|220211.738|96.930 +639331.879|220207.382|96.969 +639341.758|220198.601|96.259 +639351.472|220189.972|96.104 +639360.948|220181.575|97.649 +639394.260|220152.040|101.590 +639403.739|220143.630|102.328 +639408.521|220139.384|102.468 +639413.304|220135.138|102.614 +639418.101|220130.877|102.684 +639422.941|220126.580|102.529 +639432.707|220117.890|101.453 +639437.523|220113.613|101.224 +639452.129|220100.620|99.709 +639457.021|220096.270|99.136 +639466.430|220087.922|99.911 +639475.949|220079.467|99.831 +639480.649|220075.297|100.161 +639485.368|220071.109|100.398 +639508.764|220050.346|101.526 +639513.424|220046.210|101.636 +639522.794|220037.886|101.636 +639527.503|220033.704|101.550 +639532.167|220029.559|101.438 +639536.824|220025.425|101.392 +639541.478|220021.289|101.371 +639546.139|220017.150|101.343 +639550.805|220013.008|101.310 +639555.420|220008.908|101.291 +639560.068|220004.775|101.112 +639564.692|220000.670|101.087 +639569.304|219996.573|100.886 +639573.970|219992.425|100.691 +639578.597|219988.313|100.462 +639583.230|219984.195|100.221 +639587.866|219980.077|99.987 +639592.426|219976.026|99.886 +639596.943|219972.012|99.996 +639601.472|219967.992|100.081 +639605.947|219964.023|100.435 +639606.261|219961.167|100.526 +639601.853|219965.072|100.139 +639597.464|219968.961|99.929 +639592.999|219972.920|99.850 +639588.463|219976.944|99.868 +639583.903|219980.989|100.023 +639579.328|219985.052|100.270 +639574.759|219989.105|100.511 +639570.145|219993.202|100.749 +639565.539|219997.289|100.956 +639560.964|220001.349|101.032 +639556.346|220005.446|101.078 +639551.735|220009.536|101.121 +639547.126|220013.624|101.157 +639542.472|220017.751|101.185 +639537.824|220021.875|101.212 +639533.182|220025.992|101.218 +639528.524|220030.122|101.319 +639523.836|220034.283|101.346 +639514.494|220042.567|101.267 +639495.627|220059.298|100.919 +639491.012|220063.382|100.398 +639486.270|220067.589|100.316 +639476.836|220075.949|99.621 +639447.874|220101.629|99.975 +639442.955|220105.996|100.511 +639437.922|220110.462|101.118 +639433.039|220114.796|101.496 +639428.050|220119.222|101.919 +639423.133|220123.586|102.251 +639418.260|220127.902|102.331 +639413.304|220132.295|102.319 +639408.387|220136.656|102.413 +639403.513|220140.969|102.236 +639393.799|220149.571|101.462 +639374.420|220166.716|99.075 +639359.774|220179.676|97.506 +639324.972|220210.510|96.914 +639314.810|220219.532|98.161 +639299.509|220233.117|99.959 +639294.553|220237.500|99.392 +639289.542|220241.938|99.261 +639284.461|220246.449|99.709 +639279.432|220250.908|99.795 +639274.394|220255.373|99.965 +639269.325|220259.866|100.002 +639264.308|220264.313|100.054 +639259.263|220268.784|99.956 +639249.101|220277.797|100.834 +639213.650|220309.231|102.026 +639203.515|220318.217|102.352 +639198.523|220322.646|102.584 +639183.194|220336.246|103.913 +639178.144|220340.729|104.355 +639173.005|220345.292|105.220 +639167.899|220349.825|105.784 +639157.637|220358.935|107.076 +639152.614|220363.388|107.393 +639147.493|220367.933|107.762 +639142.427|220372.426|108.104 +639137.325|220376.952|108.357 +639117.016|220394.960|109.024 +639111.938|220399.458|109.094 +639106.869|220403.954|109.143 +639101.788|220408.456|109.320 +639096.722|220412.946|109.359 +639091.669|220417.426|109.295 +639086.566|220421.947|109.228 +639081.507|220426.424|109.219 +639076.401|220430.947|109.241 +639071.332|220435.437|109.405 +639066.224|220439.963|109.539 +639061.161|220444.450|109.722 +639056.053|220448.973|109.871 +639050.947|220453.500|110.042 +639045.891|220457.977|110.231 +639040.776|220462.510|110.569 +639035.656|220467.054|111.109 +639030.529|220471.599|111.752 +639025.356|220476.189|112.417 +639020.288|220480.688|113.090 +639015.127|220485.263|113.636 +639009.961|220489.847|114.379 +639004.855|220494.373|114.949 +638999.717|220498.930|115.303 +638994.623|220503.444|115.754 +638989.481|220508.007|116.288 +638984.342|220512.564|116.784 +638979.207|220517.118|117.303 +638974.071|220521.674|117.848 +638968.892|220526.265|118.305 +638963.765|220530.809|118.759 +638958.642|220535.354|119.272 +638953.466|220539.944|119.851 +638948.345|220544.486|120.381 +638943.188|220549.058|120.622 +638938.077|220553.587|120.988 +638912.324|220576.407|122.271 +638907.176|220580.970|122.563 +638902.037|220585.524|122.691 +638896.889|220590.087|123.127 +638891.750|220594.641|123.307 +638886.611|220599.194|123.606 +638881.426|220603.788|123.764 +638866.019|220617.440|124.499 +638860.840|220622.027|124.578 +638855.662|220626.614|124.627 +638850.535|220631.156|124.639 +638845.359|220635.737|124.602 +638840.230|220640.278|124.639 +638835.063|220644.853|124.514 +638829.888|220649.435|124.447 +638824.712|220654.016|124.316 +638819.585|220658.554|124.307 +638814.410|220663.138|124.237 +638809.237|220667.720|124.322 +638804.062|220672.301|124.249 +638798.935|220676.842|124.343 +638788.590|220686.008|124.639 +638783.415|220690.592|124.804 +638778.242|220695.173|124.828 +638773.070|220699.754|124.950 +638767.946|220704.293|125.054 +638762.774|220708.874|125.035 +638757.598|220713.455|125.047 +638752.474|220717.993|125.081 +638747.302|220722.575|125.139 +638742.130|220727.156|125.300 +638737.006|220731.694|125.389 +638731.830|220736.278|125.328 +638726.704|220740.817|125.328 +638721.574|220745.358|125.115 +638716.392|220749.943|124.904 +638711.259|220754.487|124.660 +638706.123|220759.029|124.474 +638700.936|220763.619|124.151 +638695.794|220768.173|123.716 +638690.640|220772.726|123.094 +638685.491|220777.283|122.615 +638680.337|220781.840|122.091 +638675.180|220786.403|121.469 +638669.974|220791.008|120.988 +638664.866|220795.529|120.463 +638659.708|220800.091|120.122 +638654.566|220804.645|120.125 +638649.491|220809.147|120.533 +638644.343|220813.707|120.442 +638639.259|220818.212|120.735 +638634.175|220822.720|120.972 +638629.036|220827.277|121.103 +638623.946|220831.785|121.283 +638618.856|220836.299|121.454 +638613.763|220840.810|121.585 +638608.712|220845.284|121.618 +638603.631|220849.789|122.006 +638598.572|220854.282|122.749 +638593.545|220858.738|123.267 +638588.467|220863.243|123.661 +638583.490|220867.660|124.157 +638578.467|220872.116|124.685 +638573.450|220876.569|125.300 +638568.430|220881.022|125.919 +638563.391|220885.487|126.221 +638558.463|220889.858|126.709 +638553.443|220894.314|127.276 +638548.465|220898.731|127.751 +638543.476|220903.154|128.068 +638538.483|220907.579|128.397 +638533.542|220911.959|128.729 +638528.547|220916.388|129.001 +638523.603|220920.774|129.306 +638518.607|220925.200|129.629 +638513.648|220929.595|129.763 +638508.689|220933.990|129.927 +638503.718|220938.395|129.982 +638498.737|220942.805|129.927 +638493.757|220947.219|129.888 +638488.807|220951.599|129.696 +638483.829|220956.009|129.738 +638478.931|220960.353|130.144 +638473.999|220964.720|130.205 +638469.086|220969.076|130.464 +638464.133|220973.462|130.333 +638454.355|220982.131|130.970 +638444.571|220990.805|131.579 +638439.728|220995.103|132.128 +638434.857|220999.419|132.436 +638425.116|221008.051|132.594 +638420.278|221012.339|132.799 +638415.371|221016.686|132.817 +638410.564|221020.944|132.866 +638405.675|221025.275|133.100 +638400.869|221029.533|133.198 +638395.971|221033.877|133.362 +638391.152|221038.144|133.408 +638386.342|221042.405|133.521 +638381.471|221046.718|133.573 +638376.652|221050.991|133.634 +638371.833|221055.261|133.731 +638367.014|221059.529|133.856 +638362.220|221063.774|133.795 +638357.395|221068.051|133.893 +638352.576|221072.321|134.060 +638347.788|221076.561|134.103 +638343.014|221080.791|134.289 +638338.199|221085.056|134.146 +638333.425|221089.286|134.365 +638328.640|221093.523|134.115 +638323.839|221097.778|134.146 +638319.033|221102.042|134.140 +638314.296|221106.236|133.951 +638309.514|221110.476|133.795 +638304.753|221114.697|133.847 +638300.019|221118.895|133.725 +638295.280|221123.098|133.954 +638290.595|221127.255|134.237 +638285.870|221131.446|134.246 +638281.140|221135.640|134.237 +638276.382|221139.856|134.060 +638271.703|221144.004|134.109 +638267.025|221148.152|134.188 +638262.309|221152.331|134.009 +638257.573|221156.528|133.734 +638252.839|221160.722|133.487 +638248.142|221164.883|133.180 +638243.427|221169.062|133.116 +638238.773|221173.189|133.134 +638234.094|221177.334|133.009 +638229.427|221181.473|132.981 +638224.682|221185.673|132.488 +638219.970|221189.849|132.213 +638215.221|221194.046|131.439 +638210.490|221198.240|131.092 +638205.821|221202.376|130.860 +638201.182|221206.485|130.522 +638196.533|221210.609|130.756 +638192.035|221214.605|131.308 +638178.419|221226.687|132.323 +638173.823|221230.763|132.344 +638164.636|221238.904|131.887 +638159.966|221243.034|131.272 +638155.391|221247.088|131.211 +638150.862|221251.105|131.137 +638146.293|221255.153|130.854 +638141.764|221259.167|130.833 +638132.806|221267.113|131.080 +638128.240|221271.155|130.628 +638123.756|221275.129|130.641 +638119.193|221279.171|130.238 +638114.676|221283.170|129.836 +638091.962|221303.275|127.230 +638087.406|221307.304|126.495 +638082.959|221311.245|126.352 +638078.576|221315.131|126.279 +638074.077|221319.115|125.907 +638065.058|221327.095|124.599 +638060.623|221331.021|124.368 +638056.234|221334.910|124.112 +638051.829|221338.811|123.792 +638043.264|221346.410|124.164 +638034.608|221354.082|123.898 +638030.115|221358.050|123.021 +638025.680|221361.976|122.426 +638007.880|221377.713|118.802 +638003.549|221381.547|118.324 +637999.269|221385.333|117.863 +637994.981|221389.134|117.626 +637990.726|221392.901|117.321 +637973.736|221407.943|115.681 +637969.573|221411.631|115.394 +637965.415|221415.316|115.151 +637957.045|221422.729|114.477 +637948.810|221430.026|113.998 +637944.725|221433.647|113.922 +637940.553|221437.341|113.493 +637936.368|221441.044|112.798 +637928.056|221448.399|111.716 +637924.310|221451.737|112.923 +637920.216|221455.364|112.447 +637916.217|221458.906|112.182 +637912.234|221462.432|111.987 +637907.814|221466.331|110.225 +637899.935|221473.317|110.057 +637896.283|221476.569|111.286 +637892.220|221480.160|110.405 +637884.753|221486.795|111.353 +637880.891|221490.218|111.328 +637876.962|221493.696|111.054 +637873.189|221497.045|111.191 +637869.391|221500.410|111.030 +637865.508|221503.852|110.758 +637861.853|221507.098|111.185 +637858.095|221510.426|111.011 +637854.239|221513.843|110.673 +637850.387|221517.251|110.164 +637846.711|221520.512|110.341 +637843.041|221523.767|110.341 +637831.913|221533.625|109.777 +637828.292|221536.837|109.814 +637824.604|221540.105|109.594 +637820.992|221543.305|109.478 +637807.017|221555.710|110.688 +637803.560|221558.780|110.996 +637783.349|221576.720|112.953 +638023.312|221361.680|122.216 +638027.628|221357.849|122.432 +638036.519|221349.973|123.908 +638040.866|221346.117|124.081 +638049.431|221338.503|123.609 +638053.856|221334.578|123.959 +638058.245|221330.685|124.151 +638062.647|221326.781|124.432 +638067.252|221322.703|125.496 +638071.663|221318.792|125.861 +638076.058|221314.891|125.910 +638080.578|221310.882|126.352 +638085.004|221306.950|126.343 +638089.494|221302.970|126.672 +638094.136|221298.864|128.080 +638107.782|221286.770|129.668 +638112.305|221282.752|129.757 +638116.773|221278.787|129.836 +638121.339|221274.736|130.183 +638125.911|221270.682|130.589 +638139.414|221258.694|130.476 +638143.971|221254.647|130.610 +638148.558|221250.578|130.927 +638153.154|221246.499|131.028 +638157.738|221242.430|131.067 +638162.438|221238.267|131.811 +638166.971|221234.243|131.890 +638171.665|221230.080|132.366 +638176.264|221225.995|132.290 +638180.885|221221.899|132.664 +638189.907|221213.870|131.250 +638194.427|221209.850|130.781 +638198.981|221205.802|130.516 +638203.748|221201.575|130.958 +638208.338|221197.497|130.634 +638213.108|221193.275|131.445 +638222.643|221184.823|132.503 +638227.382|221180.620|132.899 +638232.070|221176.456|132.994 +638236.825|221172.238|133.216 +638241.519|221168.068|133.064 +638246.259|221163.862|133.228 +638250.983|221159.668|133.311 +638255.741|221155.449|133.643 +638260.551|221151.185|133.999 +638265.309|221146.958|134.054 +638270.082|221142.724|134.222 +638274.852|221138.487|134.036 +638279.631|221134.247|134.301 +638284.432|221129.986|134.374 +638289.181|221125.765|134.109 +638293.896|221121.574|133.615 +638298.751|221117.264|133.783 +638303.540|221113.015|133.859 +638308.374|221108.723|133.911 +638313.211|221104.429|134.027 +638317.996|221100.183|134.149 +638322.852|221095.873|134.054 +638327.671|221091.594|134.082 +638332.535|221087.278|134.112 +638347.099|221074.345|134.106 +638351.973|221070.020|134.292 +638356.834|221065.701|133.996 +638361.659|221061.415|133.835 +638366.542|221057.081|133.747 +638371.431|221052.741|133.734 +638376.308|221048.406|133.664 +638381.182|221044.078|133.561 +638386.125|221039.692|133.661 +638390.984|221035.376|133.463 +638395.958|221030.960|133.460 +638400.802|221026.659|133.152 +638410.656|221017.905|132.808 +638415.642|221013.479|132.972 +638420.522|221009.142|132.640 +638445.290|220987.148|131.860 +638465.063|220969.576|130.516 +638470.065|220965.135|130.570 +638474.972|220960.773|130.177 +638480.028|220956.287|130.336 +638484.930|220951.931|129.879 +638489.977|220947.450|130.019 +638495.022|220942.973|130.113 +638500.008|220938.547|130.129 +638505.037|220934.082|130.129 +638510.064|220929.620|130.068 +638515.071|220925.169|129.821 +638520.030|220920.765|129.592 +638525.087|220916.272|129.336 +638530.089|220911.831|129.037 +638535.091|220907.384|128.769 +638540.132|220902.904|128.391 +638545.128|220898.466|128.010 +638550.172|220893.982|127.693 +638555.204|220889.511|127.169 +638560.231|220885.039|126.590 +638565.269|220880.562|126.160 +638570.304|220876.087|125.742 +638575.324|220871.622|125.029 +638580.357|220867.148|124.535 +638585.438|220862.627|124.051 +638590.470|220858.153|123.557 +638595.499|220853.678|123.045 +638600.574|220849.164|122.441 +638605.655|220844.644|121.966 +638610.754|220840.112|121.835 +638615.854|220835.582|121.686 +638620.898|220831.099|121.478 +638625.994|220826.569|121.305 +638631.091|220822.040|121.183 +638636.184|220817.514|120.969 +638641.274|220812.991|120.747 +638646.358|220808.467|120.378 +638651.470|220803.932|120.597 +638656.606|220799.366|120.296 +638661.662|220794.876|120.482 +638666.826|220790.298|120.936 +638671.937|220785.763|121.381 +638677.055|220781.224|121.975 +638682.218|220776.646|122.597 +638687.372|220772.074|123.030 +638692.481|220767.545|123.642 +638697.632|220762.973|124.112 +638702.780|220758.407|124.560 +638707.922|220753.844|124.743 +638713.061|220749.281|124.956 +638718.200|220744.718|125.218 +638723.339|220740.158|125.468 +638728.471|220735.599|125.441 +638733.604|220731.042|125.602 +638738.734|220726.485|125.493 +638743.910|220721.883|125.325 +638748.994|220717.369|125.273 +638754.172|220712.769|125.236 +638759.302|220708.212|125.240 +638764.435|220703.656|125.267 +638769.610|220699.053|125.188 +638774.743|220694.496|125.136 +638779.873|220689.940|125.066 +638785.003|220685.383|124.932 +638790.181|220680.780|124.743 +638795.311|220676.220|124.609 +638800.490|220671.618|124.395 +638805.623|220667.061|124.468 +638810.755|220662.501|124.362 +638815.937|220657.902|124.529 +638821.116|220653.299|124.450 +638826.248|220648.743|124.624 +638831.427|220644.143|124.813 +638836.609|220639.544|124.871 +638841.735|220634.987|124.740 +638846.917|220630.388|124.862 +638852.050|220625.828|124.837 +638857.231|220621.225|124.816 +638862.419|220616.617|124.639 +638867.555|220612.054|124.590 +638872.740|220607.448|124.538 +638877.936|220602.828|124.026 +638883.130|220598.210|123.642 +638888.269|220593.644|123.578 +638893.469|220589.020|123.179 +638898.666|220584.402|122.911 +638903.811|220579.830|122.740 +638909.017|220575.200|122.307 +638934.892|220552.203|121.015 +638940.107|220547.567|120.625 +638945.270|220542.980|120.402 +638950.442|220538.377|119.906 +638955.673|220533.726|119.308 +638960.851|220529.121|118.842 +638966.033|220524.512|118.327 +638971.215|220519.900|117.845 +638976.402|220515.283|117.345 +638981.596|220510.662|116.739 +638986.787|220506.041|116.251 +638991.932|220501.463|115.754 +638997.126|220496.842|115.303 +639002.326|220492.215|114.818 +639007.483|220487.625|114.279 +639012.698|220482.983|113.621 +639017.910|220478.344|113.066 +639023.086|220473.735|112.334 +639028.310|220469.087|111.734 +639033.495|220464.469|110.966 +639038.667|220459.867|110.478 +639043.876|220455.237|110.252 +639048.985|220450.692|110.082 +639054.145|220446.108|109.920 +639059.308|220441.515|109.725 +639064.429|220436.961|109.478 +639069.601|220432.362|109.241 +639074.725|220427.805|108.997 +639079.888|220423.218|108.988 +639085.000|220418.673|108.960 +639090.066|220414.171|108.966 +639095.183|220409.627|108.978 +639100.252|220405.119|108.954 +639105.376|220400.568|108.936 +639110.457|220396.051|108.853 +639125.678|220382.518|108.411 +639130.787|220377.976|108.143 +639135.834|220373.486|107.997 +639140.894|220368.991|107.796 +639145.963|220364.480|107.473 +639161.230|220350.895|106.144 +639166.296|220346.387|105.507 +639171.362|220341.876|104.900 +639181.490|220332.863|103.852 +639186.611|220328.306|103.324 +639191.616|220323.856|103.017 +639206.719|220310.426|102.312 +639216.728|220301.526|101.931 +639221.691|220297.113|101.718 +639241.670|220279.346|100.865 +639251.646|220270.473|100.316 +639261.537|220261.679|100.154 +639266.499|220257.269|99.792 +639271.425|220252.889|99.746 +639276.396|220248.466|99.344 +639281.288|220244.117|99.219 +639286.180|220239.767|99.103 +639291.051|220235.445|99.584 +639295.852|220231.187|100.225 +639300.869|220226.716|99.243 +639305.791|220222.339|99.002 +639310.686|220217.983|98.615 +639320.562|220209.196|97.707 +639330.340|220200.500|97.234 +639364.097|220170.517|98.161 +639368.781|220166.362|98.804 +639373.478|220162.193|99.362 +639378.245|220157.965|99.828 +639382.948|220153.792|100.383 +639387.658|220149.613|100.913 +639392.379|220145.425|101.377 +639397.091|220141.241|101.596 +639401.834|220137.031|101.956 +639416.153|220124.306|101.953 +639420.863|220120.121|101.959 +639425.654|220115.863|101.809 +639444.994|220098.651|99.527 +639468.454|220077.808|100.093 +639473.224|220073.569|99.722 +639482.612|220065.226|99.868 +639491.820|220057.052|100.514 +639496.481|220052.915|100.846 +639501.199|220048.724|100.868 +639515.186|220036.298|100.871 +639529.082|220023.950|101.233 +639533.706|220019.842|101.081 +639538.421|220015.650|101.023 +639543.021|220011.563|101.026 +639547.690|220007.415|100.971 +639552.247|220003.364|100.974 +639556.913|219999.219|100.965 +639561.534|219995.110|100.947 +639566.146|219991.010|100.743 +639570.821|219986.853|100.505 +639575.439|219982.747|100.307 +639580.069|219978.632|100.075 +639584.696|219974.518|99.874 +639589.335|219970.391|99.636 +639593.858|219966.373|99.725 +639598.351|219962.384|99.978 +639602.822|219958.415|100.337 +639601.533|219957.552|100.148 +639597.171|219961.405|99.786 +639592.798|219965.270|99.496 +639588.396|219969.162|99.350 +639583.873|219973.167|99.545 +639579.374|219977.151|99.911 +639574.857|219981.150|100.121 +639570.297|219985.186|100.298 +639565.774|219989.191|100.587 +639561.239|219993.205|100.694 +639556.663|219997.256|100.770 +639552.149|220001.249|100.813 +639547.602|220005.269|100.773 +639543.042|220009.305|100.825 +639538.430|220013.386|100.886 +639533.840|220017.449|100.871 +639529.225|220021.530|100.987 +639524.617|220025.608|100.831 +639510.696|220037.925|100.962 +639505.975|220042.104|101.194 +639496.773|220050.239|100.721 +639482.807|220062.584|99.776 +639444.777|220096.240|99.240 +639439.797|220100.659|100.109 +639434.865|220105.033|100.731 +639429.897|220109.438|101.279 +639425.041|220113.741|101.508 +639420.143|220118.082|101.703 +639415.215|220122.447|101.791 +639410.353|220126.750|101.803 +639405.455|220131.088|101.767 +639400.563|220135.416|101.691 +639381.031|220152.689|100.109 +639376.157|220156.999|99.700 +639371.241|220161.348|99.246 +639366.367|220165.652|98.518 +639356.495|220174.382|97.612 +639346.741|220182.995|95.951 +639331.593|220196.422|97.021 +639326.454|220200.975|97.222 +639321.379|220205.474|97.737 +639316.289|220209.985|98.027 +639311.177|220214.515|98.487 +639290.761|220232.611|99.752 +639280.718|220241.489|98.880 +639275.607|220246.013|98.777 +639270.498|220250.542|99.091 +639265.344|220255.108|99.383 +639260.193|220259.674|99.703 +639255.082|220264.200|99.712 +639239.604|220277.916|100.700 +639234.465|220282.470|101.075 +639218.981|220296.186|101.645 +639208.676|220305.315|102.029 +639203.509|220309.896|102.401 +639198.367|220314.450|102.575 +639193.219|220319.003|102.355 +639188.035|220323.606|103.026 +639182.868|220328.187|103.526 +639177.659|220332.805|103.995 +639167.293|220341.997|105.068 +639162.130|220346.576|105.702 +639156.924|220351.190|106.305 +639141.397|220364.952|107.424 +639136.289|220369.481|107.707 +639131.137|220374.044|107.899 +639125.995|220378.598|108.052 +639120.853|220383.152|108.204 +639115.672|220387.742|108.311 +639110.530|220392.299|108.543 +639100.273|220401.382|108.762 +639095.113|220405.951|108.707 +639089.950|220410.523|108.728 +639084.835|220415.052|108.759 +639079.724|220419.581|108.799 +639074.563|220424.156|108.890 +639069.434|220428.704|109.225 +639064.267|220433.282|109.442 +639059.101|220437.863|109.695 +639053.938|220442.441|109.978 +639048.780|220447.013|110.152 +639043.684|220451.528|110.207 +639038.530|220456.097|110.423 +639033.379|220460.662|110.630 +639028.264|220465.201|111.103 +639023.034|220469.846|111.908 +639017.907|220474.397|112.679 +639012.747|220478.975|113.246 +639007.590|220483.553|113.828 +639002.481|220488.085|114.456 +638997.284|220492.694|114.913 +638992.194|220497.208|115.318 +638987.049|220501.774|115.864 +638981.858|220506.379|116.416 +638976.771|220510.894|116.958 +638971.632|220515.453|117.559 +638966.502|220520.004|118.010 +638961.379|220524.549|118.442 +638956.252|220529.096|118.951 +638951.128|220533.644|119.461 +638946.002|220538.192|120.085 +638940.841|220542.767|120.405 +638935.733|220547.296|120.713 +638930.627|220551.825|121.003 +638925.467|220556.400|121.420 +638899.876|220579.090|122.795 +638894.780|220583.607|123.130 +638889.641|220588.164|123.313 +638884.551|220592.675|123.523 +638879.412|220597.228|123.795 +638874.322|220601.749|124.304 +638869.186|220606.299|124.575 +638864.102|220610.804|124.648 +638858.972|220615.349|124.706 +638853.842|220619.899|125.020 +638848.758|220624.407|125.419 +638843.634|220628.940|125.026 +638838.562|220633.436|125.099 +638833.436|220637.977|125.096 +638828.312|220642.516|124.993 +638818.110|220651.550|124.788 +638812.983|220656.088|124.624 +638807.909|220660.587|124.666 +638802.782|220665.129|124.724 +638797.658|220669.670|124.834 +638792.580|220674.169|124.941 +638787.456|220678.708|125.081 +638782.333|220683.249|125.191 +638777.258|220687.745|125.264 +638772.134|220692.287|125.343 +638767.010|220696.825|125.422 +638761.887|220701.367|125.489 +638756.766|220705.905|125.572 +638751.639|220710.443|125.450 +638746.516|220714.985|125.474 +638741.392|220719.523|125.575 +638736.317|220724.019|125.697 +638731.196|220728.558|125.782 +638726.067|220733.099|125.572 +638720.986|220737.598|125.474 +638715.856|220742.140|125.337 +638710.677|220746.727|125.121 +638705.639|220751.186|124.892 +638700.506|220755.731|124.679 +638695.361|220760.281|124.206 +638690.219|220764.832|123.755 +638685.120|220769.343|123.280 +638679.965|220773.900|122.694 +638674.860|220778.417|122.067 +638669.700|220782.980|121.481 +638664.646|220787.454|121.091 +638659.489|220792.017|120.597 +638654.390|220796.531|120.460 +638649.309|220801.036|120.725 +638644.209|220805.550|120.607 +638639.080|220810.098|120.927 +638634.047|220814.560|121.228 +638628.911|220819.111|121.381 +638623.873|220823.576|121.606 +638618.734|220828.133|121.710 +638613.644|220832.641|121.908 +638608.602|220837.109|122.057 +638603.512|220841.621|122.237 +638598.443|220846.119|122.804 +638588.339|220855.081|123.712 +638578.293|220863.993|124.712 +638573.276|220868.446|125.316 +638568.256|220872.899|125.901 +638563.181|220877.401|126.355 +638558.201|220881.818|126.785 +638553.184|220886.271|127.388 +638548.203|220890.687|127.824 +638543.171|220895.150|128.196 +638538.191|220899.566|128.656 +638533.198|220903.992|128.934 +638528.211|220908.415|129.318 +638523.213|220912.846|129.528 +638518.211|220917.278|129.711 +638513.209|220921.710|129.946 +638508.253|220926.102|130.141 +638503.251|220930.537|130.354 +638498.329|220934.899|130.382 +638493.296|220939.355|130.314 +638488.353|220943.729|130.147 +638483.378|220948.136|130.208 +638478.413|220952.541|130.369 +638473.420|220956.960|130.290 +638468.550|220961.282|131.006 +638463.624|220965.647|131.128 +638458.677|220970.036|131.579 +638448.786|220978.796|131.485 +638443.934|220983.100|131.942 +638419.449|221004.796|132.658 +638414.560|221009.127|132.838 +638409.650|221013.479|132.814 +638404.816|221017.762|133.076 +638399.951|221022.072|133.070 +638395.108|221026.363|133.292 +638390.246|221030.673|133.347 +638385.440|221034.931|133.500 +638380.572|221039.241|133.551 +638375.756|221043.511|133.625 +638370.940|221047.775|133.759 +638366.128|221052.040|133.905 +638361.339|221056.282|133.853 +638356.465|221060.601|133.957 +638346.904|221069.072|134.109 +638342.115|221073.312|134.158 +638337.373|221077.512|134.198 +638332.584|221081.755|134.280 +638327.808|221085.982|134.079 +638323.007|221090.231|134.124 +638318.243|221094.447|134.082 +638313.519|221098.634|134.341 +638308.727|221102.874|134.121 +638303.979|221107.074|133.893 +638294.472|221115.487|133.774 +638289.735|221119.681|133.686 +638285.060|221123.823|134.060 +638275.681|221132.129|134.292 +638270.960|221136.305|134.051 +638266.293|221140.438|134.204 +638261.581|221144.608|134.073 +638256.866|221148.780|133.914 +638252.150|221152.947|133.478 +638247.484|221157.077|133.372 +638242.817|221161.210|133.274 +638238.178|221165.316|133.405 +638233.533|221169.424|133.180 +638228.821|221173.591|132.860 +638224.191|221177.691|132.762 +638219.643|221181.717|132.911 +638205.507|221194.208|130.979 +638200.910|221198.274|130.909 +638196.305|221202.349|130.790 +638187.115|221210.481|130.439 +638164.621|221230.409|131.970 +638160.107|221234.405|131.942 +638155.550|221238.437|131.680 +638150.932|221242.513|130.817 +638146.388|221246.533|130.671 +638141.843|221250.553|130.555 +638137.305|221254.567|130.208 +638132.778|221258.569|129.952 +638119.474|221270.350|130.226 +638114.966|221274.337|129.851 +638110.433|221278.342|129.397 +638106.044|221282.228|129.427 +638101.667|221286.102|129.552 +638083.513|221302.135|126.611 +638079.036|221306.091|126.059 +638074.628|221309.992|125.877 +638070.245|221313.863|125.593 +638065.914|221317.698|125.578 +638061.677|221321.456|126.038 +638056.974|221325.595|124.215 +638052.579|221329.481|123.950 +638048.257|221333.307|123.786 +638043.911|221337.150|123.539 +638035.443|221344.648|123.932 +638031.130|221348.461|123.639 +638026.805|221352.283|123.313 +638013.427|221364.088|120.311 +638009.008|221367.987|119.396 +638000.312|221375.668|118.028 +637996.127|221379.368|117.772 +637991.848|221383.148|117.351 +637987.626|221386.884|117.202 +637983.371|221390.640|116.690 +637979.195|221394.337|116.541 +637975.010|221398.034|116.138 +637970.832|221401.728|115.782 +637962.456|221409.129|115.053 +637958.237|221412.853|114.337 +637954.132|221416.484|114.145 +637950.038|221420.102|114.026 +637945.999|221423.677|113.916 +637941.882|221427.313|113.493 +637921.820|221445.059|112.938 +637917.802|221448.607|112.590 +637913.825|221452.124|112.410 +637909.926|221455.574|112.356 +637906.004|221459.043|112.444 +637902.062|221462.527|112.243 +637898.097|221466.035|111.947 +637894.263|221469.427|111.996 +637886.618|221476.191|112.002 +637878.873|221483.037|111.664 +637875.069|221486.402|111.673 +637871.302|221489.736|111.630 +637867.605|221493.010|111.883 +637863.853|221496.326|111.932 +637860.082|221499.661|111.694 +637856.388|221502.928|111.783 +637852.557|221506.311|111.338 +637848.814|221509.625|111.249 +637845.190|221512.828|111.219 +637841.428|221516.153|110.874 +637834.040|221522.679|110.341 +637830.343|221525.950|110.070 +637826.682|221529.184|109.756 +637816.017|221538.617|109.871 +637809.174|221544.677|110.533 +637805.745|221547.712|110.737 +637779.042|221571.362|113.157 +638029.871|221347.596|123.642 +638034.242|221343.716|123.911 +638042.783|221336.123|123.523 +638047.129|221332.267|123.716 +638051.470|221328.411|123.917 +638055.969|221324.422|124.654 +638064.841|221316.552|125.584 +638069.188|221312.690|125.617 +638073.641|221308.740|125.953 +638078.088|221304.789|126.026 +638091.770|221292.664|128.370 +638096.269|221288.672|128.803 +638100.747|221284.697|129.132 +638105.264|221280.689|129.431 +638109.717|221276.733|129.403 +638114.304|221272.660|129.845 +638118.834|221268.643|130.263 +638132.242|221256.728|129.842 +638136.841|221252.644|130.183 +638141.422|221248.578|130.433 +638145.988|221244.524|130.613 +638150.573|221240.458|130.924 +638155.294|221236.270|131.768 +638159.899|221232.183|131.957 +638164.468|221228.123|131.963 +638182.705|221211.911|131.028 +638191.876|221203.757|130.519 +638196.582|221199.584|130.854 +638201.236|221195.451|130.909 +638205.900|221191.309|131.043 +638220.162|221178.657|132.335 +638224.941|221174.417|132.991 +638229.604|221170.275|132.924 +638234.387|221166.029|133.338 +638239.065|221161.875|133.408 +638243.765|221157.699|133.320 +638248.538|221153.459|133.399 +638253.272|221149.256|133.582 +638258.076|221144.992|133.914 +638262.797|221140.801|134.051 +638267.521|221136.600|133.890 +638272.380|221132.291|134.320 +638281.865|221123.857|134.015 +638286.599|221119.647|133.637 +638291.403|221115.383|133.783 +638296.194|221111.128|133.844 +638301.028|221106.834|133.908 +638305.841|221102.563|134.176 +638310.687|221098.260|134.368 +638315.515|221093.971|134.445 +638320.350|221089.673|134.192 +638325.165|221085.394|134.228 +638334.901|221076.747|134.368 +638339.738|221072.449|134.225 +638344.596|221068.133|134.277 +638349.418|221063.848|134.057 +638354.304|221059.507|133.963 +638359.141|221055.207|133.914 +638364.064|221050.833|133.750 +638368.910|221046.529|133.817 +638373.842|221042.149|133.765 +638378.707|221037.824|133.615 +638383.632|221033.447|133.567 +638388.509|221029.116|133.521 +638393.465|221024.711|133.359 +638398.311|221020.401|133.094 +638403.261|221016.003|132.899 +638408.166|221011.644|132.762 +638413.137|221007.228|132.808 +638418.032|221002.878|132.613 +638437.820|220985.294|132.094 +638442.806|220980.863|131.936 +638447.793|220976.431|131.784 +638452.715|220972.057|131.473 +638457.680|220967.640|131.125 +638462.652|220963.221|130.848 +638467.638|220958.789|130.781 +638472.597|220954.382|130.388 +638477.639|220949.904|130.394 +638482.634|220945.466|130.482 +638487.670|220940.995|130.485 +638492.662|220936.560|130.570 +638497.698|220932.088|130.619 +638502.760|220927.590|130.400 +638507.726|220923.176|130.235 +638512.791|220918.674|130.092 +638517.751|220914.267|129.857 +638522.807|220909.771|129.668 +638527.818|220905.321|129.479 +638532.860|220900.837|129.089 +638537.904|220896.354|128.745 +638542.894|220891.916|128.336 +638547.932|220887.435|127.922 +638552.967|220882.955|127.471 +638557.990|220878.486|126.849 +638563.023|220874.009|126.352 +638568.009|220869.574|125.931 +638573.090|220865.057|125.422 +638578.110|220860.588|124.734 +638583.146|220856.108|124.310 +638588.224|220851.594|123.761 +638598.346|220842.602|122.905 +638603.424|220838.088|122.347 +638608.474|220833.604|122.173 +638613.574|220829.078|122.045 +638618.667|220824.555|121.807 +638623.772|220820.025|121.780 +638628.863|220815.502|121.509 +638633.910|220811.022|121.329 +638639.046|220806.459|121.018 +638649.242|220797.409|120.826 +638654.335|220792.889|120.637 +638659.446|220788.357|120.908 +638664.607|220783.782|121.271 +638669.721|220779.249|121.771 +638674.836|220774.717|122.310 +638679.950|220770.187|122.911 +638685.110|220765.615|123.475 +638690.219|220761.089|123.978 +638695.370|220756.523|124.487 +638700.469|220752.003|124.779 +638705.611|220747.443|125.044 +638710.753|220742.883|125.316 +638715.847|220738.366|125.523 +638720.982|220733.809|125.645 +638726.073|220729.298|125.831 +638731.205|220724.742|125.962 +638736.338|220720.188|125.858 +638741.419|220715.677|125.709 +638746.549|220711.123|125.675 +638751.682|220706.569|125.694 +638756.815|220702.016|125.703 +638761.899|220697.505|125.721 +638767.029|220692.948|125.578 +638772.162|220688.394|125.572 +638777.294|220683.840|125.569 +638782.424|220679.287|125.575 +638787.557|220674.733|125.383 +638792.687|220670.173|125.063 +638797.820|220665.620|125.002 +638802.904|220661.112|125.282 +638808.037|220656.552|124.983 +638828.565|220638.352|126.212 +638833.655|220633.823|125.258 +638838.791|220629.269|125.297 +638843.927|220624.709|125.255 +638849.054|220620.162|125.252 +638854.189|220615.599|125.035 +638859.280|220611.082|124.886 +638864.422|220606.519|124.715 +638874.657|220597.430|124.289 +638879.805|220592.854|123.792 +638884.953|220588.282|123.469 +638890.052|220583.756|123.292 +638895.203|220579.178|122.920 +638920.877|220556.385|121.710 +638925.991|220551.837|121.262 +638931.158|220547.250|120.869 +638936.275|220542.703|120.521 +638941.442|220538.118|120.268 +638946.568|220533.562|119.759 +638951.701|220528.999|119.201 +638956.880|220524.396|118.708 +638961.964|220519.879|118.266 +638967.152|220515.271|117.732 +638972.291|220510.708|117.293 +638977.442|220506.133|116.653 +638982.590|220501.558|116.074 +638987.738|220496.986|115.586 +638992.889|220492.410|115.093 +638998.043|220487.838|114.636 +639003.152|220483.297|114.093 +639008.315|220478.713|113.550 +639013.487|220474.119|112.923 +639018.660|220469.523|112.301 +639023.799|220464.957|111.490 +639028.929|220460.397|110.874 +639034.092|220455.816|110.603 +639039.240|220451.253|110.597 +639044.339|220446.730|110.600 +639049.448|220442.201|110.505 +639054.559|220437.665|110.384 +639059.695|220433.102|109.932 +639064.874|220428.509|109.649 +639069.967|220423.986|109.201 +639075.152|220419.383|108.875 +639080.233|220414.875|108.674 +639085.372|220410.312|108.390 +639090.489|220405.777|108.436 +639095.610|220401.235|108.451 +639110.966|220387.614|108.125 +639116.062|220383.094|107.970 +639121.158|220378.574|107.823 +639126.306|220374.005|107.680 +639131.406|220369.481|107.582 +639151.861|220351.327|106.257 +639156.994|220346.771|105.936 +639162.163|220342.177|105.278 +639167.259|220337.654|104.918 +639172.383|220333.103|104.312 +639177.498|220328.562|103.830 +639182.618|220324.014|103.324 +639223.446|220287.773|100.484 +639228.512|220283.278|100.313 +639233.538|220278.818|100.103 +639238.531|220274.405|101.066 +639253.637|220261.000|100.423 +639273.757|220243.157|100.139 +639283.766|220234.275|99.764 +639308.851|220212.012|98.438 +639313.856|220207.571|98.073 +639323.805|220198.741|97.457 +639328.770|220194.334|97.094 +639333.748|220189.920|97.030 +639338.691|220185.534|96.863 +639353.337|220172.553|97.426 +639372.582|220155.505|99.420 +639377.389|220151.250|99.990 +639382.220|220146.971|100.420 +639386.950|220142.777|100.837 +639391.757|220138.516|101.115 +639396.579|220134.245|101.331 +639401.352|220130.012|101.523 +639406.214|220125.699|101.529 +639411.021|220121.435|101.569 +639415.785|220117.210|101.581 +639420.683|220112.864|101.413 +639430.244|220104.378|101.047 +639435.197|220099.977|100.340 +639440.044|220095.667|99.667 +639444.899|220091.351|98.993 +639449.806|220086.989|98.332 +639473.243|220066.217|99.362 +639487.242|220053.802|99.895 +639496.426|220045.667|100.776 +639505.707|220037.435|100.910 +639519.642|220025.072|100.788 +639524.281|220020.960|100.822 +639533.480|220012.798|100.804 +639538.095|220008.704|100.755 +639542.704|220004.617|100.755 +639547.334|220000.508|100.657 +639551.893|219996.463|100.679 +639556.450|219992.422|100.737 +639560.982|219988.398|100.663 +639565.594|219984.308|100.493 +639570.218|219980.205|100.276 +639574.808|219976.127|99.981 +639579.432|219972.021|99.551 +639583.989|219967.974|99.222 +639588.527|219963.950|99.249 +639592.947|219960.034|99.606 +639597.363|219956.120|99.990 +639601.801|219952.188|100.292 +639599.860|219951.999|100.069 +639595.385|219955.955|99.737 +639590.981|219959.848|99.322 +639586.452|219963.850|99.027 +639581.910|219967.867|99.039 +639577.283|219971.966|99.496 +639572.635|219976.084|99.831 +639568.045|219980.150|100.145 +639563.418|219984.247|100.420 +639558.840|219988.298|100.465 +639554.207|219992.397|100.545 +639549.662|219996.418|100.471 +639545.069|220000.481|100.392 +639540.430|220004.586|100.560 +639535.827|220008.658|100.572 +639531.243|220012.712|100.243 +639512.629|220029.187|100.788 +639494.057|220045.612|100.356 +639480.174|220057.890|99.764 +639475.443|220062.072|99.600 +639470.829|220066.144|99.082 +639442.491|220091.198|98.917 +639437.608|220095.523|99.499 +639432.741|220099.836|100.319 +639427.882|220104.143|100.831 +639423.002|220108.459|101.176 +639418.238|220112.675|101.166 +639413.459|220116.899|101.261 +639408.649|220121.154|101.261 +639403.846|220125.400|101.233 +639398.993|220129.689|101.215 +639394.217|220133.910|101.066 +639389.413|220138.156|100.795 +639384.604|220142.405|100.566 +639379.833|220146.617|100.106 +639370.223|220155.103|99.027 +639365.474|220159.294|98.469 +639360.631|220163.570|97.878 +639355.724|220167.904|97.719 +639350.914|220172.150|96.939 +639341.093|220180.828|96.759 +639336.131|220185.217|96.719 +639326.155|220194.044|97.088 +639321.217|220198.412|97.305 +639316.154|220202.893|97.716 +639311.073|220207.394|98.320 +639306.114|220211.781|98.399 +639296.019|220220.714|98.883 +639280.837|220234.153|99.904 +639275.802|220238.606|99.984 +639270.785|220243.041|99.935 +639265.753|220247.491|100.036 +639260.693|220251.965|99.975 +639255.545|220256.525|100.676 +639250.516|220260.972|100.435 +639245.310|220265.584|101.255 +639235.193|220274.527|100.959 +639194.115|220310.871|102.669 +639183.764|220320.034|103.260 +639178.583|220324.618|103.431 +639173.419|220329.187|103.919 +639168.216|220333.795|104.379 +639162.959|220338.453|104.918 +639157.829|220342.991|105.184 +639152.583|220347.636|105.680 +639147.399|220352.227|106.089 +639142.159|220356.866|106.598 +639136.987|220361.444|106.945 +639131.790|220366.040|107.073 +639126.587|220370.643|107.281 +639121.396|220375.236|107.400 +639116.248|220379.790|107.610 +639111.011|220384.423|107.720 +639105.824|220389.013|107.893 +639100.639|220393.597|108.055 +639095.424|220398.212|108.024 +639090.255|220402.781|108.049 +639085.030|220407.405|108.186 +639079.809|220412.022|108.299 +639074.606|220416.628|108.863 +639069.367|220421.267|109.311 +639064.142|220425.894|109.612 +639058.970|220430.469|109.865 +639053.736|220435.102|110.368 +639048.482|220439.750|110.502 +639043.315|220444.325|110.826 +639038.070|220448.961|110.862 +639032.891|220453.539|110.688 +639027.691|220458.139|110.819 +639022.485|220462.747|111.176 +639017.206|220467.423|111.898 +639011.979|220472.056|112.712 +639006.770|220476.668|113.224 +639001.558|220481.285|113.852 +638996.306|220485.936|114.386 +638991.109|220490.536|114.846 +638985.912|220495.141|115.410 +638980.670|220499.784|115.934 +638975.476|220504.383|116.507 +638970.233|220509.028|117.162 +638965.045|220513.618|117.693 +638959.815|220518.251|118.196 +638954.643|220522.830|118.546 +638949.467|220527.414|119.064 +638944.243|220532.038|119.589 +638939.070|220536.622|120.152 +638933.907|220541.188|120.472 +638928.698|220545.799|120.796 +638923.535|220550.371|121.274 +638918.377|220554.934|121.561 +638913.174|220559.537|121.884 +638887.388|220582.354|123.106 +638882.240|220586.914|123.606 +638877.101|220591.458|123.761 +638871.911|220596.055|124.176 +638866.769|220600.606|124.538 +638861.681|220605.107|124.761 +638856.497|220609.695|124.990 +638851.410|220614.194|125.206 +638846.286|220618.726|125.331 +638841.156|220623.264|125.432 +638830.894|220632.338|125.654 +638825.764|220636.883|126.081 +638805.400|220654.875|125.154 +638800.270|220659.411|125.179 +638795.192|220663.900|125.200 +638790.114|220668.393|125.416 +638784.988|220672.929|125.505 +638779.910|220677.421|125.715 +638774.832|220681.911|125.773 +638769.754|220686.401|125.813 +638764.673|220690.891|125.697 +638759.595|220695.383|125.809 +638754.517|220699.873|125.938 +638749.439|220704.363|125.883 +638744.358|220708.855|125.846 +638739.283|220713.345|125.913 +638734.205|220717.835|126.044 +638729.127|220722.325|126.035 +638724.094|220726.775|126.035 +638719.010|220731.267|125.846 +638713.972|220735.718|125.602 +638708.888|220740.213|125.486 +638703.801|220744.712|125.249 +638698.756|220749.171|124.874 +638693.712|220753.631|124.584 +638688.613|220758.136|124.100 +638683.559|220762.601|123.584 +638678.457|220767.109|123.103 +638673.394|220771.580|122.402 +638668.334|220776.052|121.908 +638663.275|220780.523|121.430 +638658.215|220784.995|121.085 +638653.158|220789.466|120.768 +638648.117|220793.925|120.936 +638643.063|220798.397|120.774 +638638.025|220802.856|121.003 +638632.993|220807.315|121.359 +638627.957|220811.774|121.667 +638622.919|220816.234|121.920 +638617.920|220820.659|121.987 +638612.879|220825.122|122.201 +638607.883|220829.544|122.347 +638602.836|220834.010|122.490 +638597.809|220838.463|122.996 +638592.774|220842.925|123.316 +638587.794|220847.336|123.804 +638582.819|220851.746|124.353 +638577.784|220856.202|124.740 +638572.816|220860.610|125.371 +638567.835|220865.020|125.837 +638562.855|220869.434|126.297 +638557.881|220873.841|126.834 +638552.861|220878.291|127.468 +638547.926|220882.662|127.894 +638542.945|220887.075|128.324 +638537.962|220891.489|128.769 +638533.021|220895.866|129.123 +638528.035|220900.282|129.534 +638523.033|220904.708|129.744 +638518.074|220909.097|129.876 +638513.121|220913.483|130.101 +638508.162|220917.872|130.278 +638503.199|220922.265|130.439 +638498.240|220926.654|130.653 +638493.275|220931.052|130.775 +638488.289|220935.463|130.686 +638483.354|220939.827|130.653 +638478.355|220944.247|130.473 +638473.417|220948.618|130.436 +638468.498|220952.970|130.659 +638463.520|220957.375|130.796 +638458.592|220961.739|130.927 +638443.900|220974.748|131.912 +638439.014|220979.073|132.046 +638434.086|220983.438|132.253 +638429.218|220987.748|132.600 +638414.505|221000.766|132.668 +638409.644|221005.067|132.683 +638404.718|221009.422|132.579 +638399.893|221013.696|132.945 +638394.986|221018.039|133.058 +638390.143|221022.328|133.289 +638385.351|221026.570|133.582 +638380.468|221030.890|133.503 +638375.604|221035.193|133.628 +638370.797|221039.448|133.829 +638365.975|221043.716|133.905 +638361.129|221048.001|133.807 +638356.304|221052.271|133.905 +638351.470|221056.551|133.954 +638346.684|221060.784|134.009 +638341.896|221065.021|134.070 +638332.307|221073.507|134.143 +638317.945|221086.220|134.176 +638313.205|221090.420|134.323 +638308.426|221094.648|134.216 +638303.656|221098.869|134.179 +638298.940|221103.042|134.213 +638294.128|221107.300|133.905 +638289.406|221111.479|133.935 +638284.660|221115.679|133.811 +638279.893|221119.894|133.554 +638275.215|221124.040|133.942 +638270.597|221128.136|134.402 +638256.384|221140.709|133.807 +638251.690|221144.858|133.506 +638247.024|221148.988|133.399 +638242.318|221153.154|133.384 +638237.672|221157.266|133.469 +638233.039|221161.362|133.320 +638223.621|221169.693|132.747 +638219.003|221173.780|132.765 +638214.264|221177.965|132.027 +638209.536|221182.144|131.390 +638204.882|221186.256|130.936 +638200.295|221190.315|130.912 +638195.695|221194.388|130.827 +638191.096|221198.457|130.772 +638186.509|221202.517|130.491 +638181.812|221206.665|129.891 +638177.435|221210.551|130.915 +638168.534|221218.439|131.838 +638164.005|221222.451|131.979 +638159.482|221226.453|131.902 +638154.934|221230.476|131.701 +638145.821|221238.532|130.973 +638141.163|221242.647|130.214 +638136.664|221246.627|130.080 +638132.144|221250.623|129.857 +638127.612|221254.631|129.580 +638123.150|221258.582|129.431 +638109.818|221270.377|129.406 +638105.416|221274.276|129.376 +638100.887|221278.278|128.970 +638096.434|221282.213|128.452 +638091.972|221286.160|128.160 +638087.491|221290.119|127.803 +638083.111|221293.996|127.715 +638078.536|221298.029|126.663 +638074.019|221302.016|125.654 +638069.608|221305.917|125.471 +638065.274|221309.752|125.453 +638047.721|221325.266|123.670 +638043.399|221329.091|123.527 +638039.052|221332.932|123.301 +638034.773|221336.720|123.149 +638030.615|221340.402|123.618 +638026.302|221344.218|123.341 +638013.229|221355.761|121.271 +638008.807|221359.666|120.320 +638004.472|221363.491|119.573 +637995.776|221371.169|117.994 +637991.518|221374.930|117.662 +637978.836|221386.138|116.455 +637974.687|221389.804|116.211 +637970.518|221393.489|115.891 +637966.442|221397.095|115.769 +637957.975|221404.572|114.413 +637953.967|221408.114|114.419 +637949.764|221411.826|113.803 +637945.807|221415.331|114.056 +637941.748|221418.922|113.867 +637937.721|221422.482|113.608 +637933.722|221426.018|113.724 +637929.626|221429.639|113.194 +637925.700|221433.110|113.194 +637921.893|221436.485|113.703 +637918.049|221439.889|113.837 +637914.084|221443.394|113.709 +637910.152|221446.872|113.727 +637906.281|221450.298|113.791 +637902.340|221453.782|113.349 +637898.414|221457.251|112.996 +637894.513|221460.698|112.752 +637890.681|221464.090|112.813 +637886.893|221467.440|112.846 +637883.073|221470.817|112.764 +637879.239|221474.207|112.417 +637875.414|221477.590|112.331 +637871.653|221480.915|112.307 +637868.108|221484.061|112.938 +637864.584|221487.188|113.660 +637860.619|221490.681|112.651 +637856.864|221494.004|112.478 +637853.081|221497.344|111.999 +637849.454|221500.554|112.148 +637845.790|221503.794|112.164 +637823.982|221523.069|110.874 +637820.330|221526.294|110.182 +637816.697|221529.504|109.792 +637809.912|221535.508|110.246 +637806.587|221538.456|110.835 +637803.194|221541.461|110.975 +637799.747|221544.509|110.914 +637780.386|221561.669|113.828 +637777.079|221564.592|113.745 +638035.943|221333.355|123.191 +638040.198|221329.585|123.435 +638044.532|221325.744|123.584 +638048.973|221321.816|124.270 +638066.481|221306.313|125.450 +638070.831|221302.458|125.532 +638075.320|221298.486|126.343 +638084.352|221290.500|127.772 +638088.713|221286.632|127.730 +638093.203|221282.658|128.105 +638097.690|221278.686|128.483 +638102.207|221274.690|129.043 +638106.678|221270.731|129.388 +638111.208|221266.720|129.790 +638120.004|221258.914|129.245 +638124.524|221254.909|129.379 +638129.051|221250.898|129.562 +638133.537|221246.923|129.833 +638138.054|221242.924|129.994 +638142.724|221238.794|130.763 +638151.938|221230.638|131.674 +638156.483|221226.611|131.805 +638161.021|221222.591|131.924 +638165.535|221218.586|131.628 +638174.530|221210.603|130.872 +638179.020|221206.616|130.473 +638183.616|221202.544|130.412 +638188.258|221198.432|130.647 +638192.876|221194.339|130.772 +638197.490|221190.251|130.875 +638202.130|221186.140|130.857 +638211.600|221177.761|132.082 +638216.214|221173.670|131.963 +638221.015|221169.424|132.741 +638225.648|221165.316|132.789 +638230.430|221161.079|133.164 +638235.136|221156.909|133.411 +638239.806|221152.770|133.436 +638244.509|221148.597|133.369 +638249.236|221144.409|133.475 +638253.900|221140.270|133.536 +638268.210|221127.591|134.280 +638272.898|221123.430|133.878 +638277.586|221119.266|133.497 +638282.362|221115.036|133.753 +638287.157|221110.787|133.804 +638291.890|221106.587|133.826 +638296.767|221102.268|134.161 +638301.504|221098.068|134.216 +638306.323|221093.794|134.173 +638311.102|221089.554|134.249 +638315.881|221085.321|134.307 +638320.721|221081.023|134.128 +638325.467|221076.817|133.975 +638330.350|221072.489|134.155 +638335.190|221068.197|134.426 +638340.012|221063.918|134.161 +638344.834|221059.641|133.902 +638349.644|221055.377|133.978 +638354.563|221051.015|134.182 +638364.241|221042.429|133.670 +638369.081|221038.138|133.667 +638374.016|221033.764|133.652 +638378.883|221029.445|133.512 +638383.748|221025.129|133.366 +638388.616|221020.813|133.234 +638393.526|221016.454|133.088 +638398.427|221012.105|132.881 +638403.313|221007.770|132.530 +638408.239|221003.403|132.561 +638413.161|220999.038|132.622 +638418.075|220994.682|132.567 +638432.891|220981.542|132.393 +638437.817|220977.171|132.073 +638447.692|220968.411|131.738 +638462.539|220955.238|131.198 +638467.507|220950.831|130.897 +638472.463|220946.432|130.449 +638477.465|220941.997|130.583 +638482.473|220937.560|130.793 +638487.520|220933.085|130.906 +638492.501|220928.669|130.851 +638497.524|220924.215|130.726 +638502.492|220919.808|130.540 +638507.555|220915.315|130.357 +638512.572|220910.865|130.214 +638517.580|220906.424|129.958 +638522.594|220901.977|129.787 +638527.602|220897.533|129.586 +638532.649|220893.053|129.263 +638537.688|220888.581|128.830 +638542.726|220884.107|128.367 +638547.764|220879.635|127.925 +638552.800|220875.164|127.474 +638557.826|220870.702|126.831 +638562.855|220866.236|126.267 +638567.896|220861.762|125.877 +638572.977|220857.251|125.358 +638578.004|220852.785|124.746 +638583.091|220848.271|124.319 +638588.169|220843.760|123.752 +638593.256|220839.243|123.356 +638598.349|220834.720|123.051 +638603.387|220830.248|122.591 +638608.487|220825.722|122.423 +638613.586|220821.196|122.234 +638618.685|220816.670|122.103 +638623.836|220812.101|122.018 +638628.927|220807.580|121.734 +638634.014|220803.063|121.311 +638639.156|220798.497|121.094 +638644.252|220793.977|120.875 +638649.360|220789.448|121.036 +638654.512|220784.879|121.045 +638659.675|220780.304|121.417 +638664.841|220775.726|121.878 +638670.005|220771.151|122.417 +638675.125|220766.618|123.100 +638680.282|220762.049|123.514 +638685.440|220757.480|124.039 +638690.597|220752.911|124.575 +638695.794|220748.306|124.846 +638700.896|220743.789|125.279 +638706.087|220739.183|125.532 +638711.229|220734.626|125.739 +638716.371|220730.070|125.995 +638721.510|220725.513|126.102 +638726.646|220720.959|126.239 +638731.782|220716.402|126.221 +638736.963|220711.806|126.160 +638742.096|220707.252|126.099 +638747.229|220702.699|126.169 +638752.362|220698.145|126.108 +638757.543|220693.548|126.017 +638762.627|220689.037|125.925 +638767.809|220684.441|125.904 +638772.942|220679.887|125.861 +638778.075|220675.334|125.834 +638783.211|220670.780|125.782 +638788.392|220666.183|125.791 +638793.525|220661.624|125.307 +638803.843|220652.473|125.422 +638824.377|220634.271|126.309 +638829.562|220629.671|126.142 +638839.836|220620.552|125.730 +638860.441|220602.267|124.837 +638865.586|220597.698|124.532 +638870.731|220593.129|124.215 +638875.879|220588.560|123.932 +638881.030|220583.985|123.557 +638906.749|220561.158|122.195 +638911.861|220556.620|121.902 +638917.021|220552.039|121.548 +638922.136|220547.497|121.265 +638927.308|220542.904|120.725 +638932.429|220538.356|120.357 +638937.549|220533.808|120.003 +638942.731|220529.209|119.448 +638947.864|220524.649|118.976 +638952.997|220520.092|118.503 +638958.130|220515.533|118.061 +638963.268|220510.967|117.601 +638968.414|220506.401|117.086 +638973.562|220501.823|116.467 +638978.719|220497.242|115.809 +638983.870|220492.666|115.300 +638989.024|220488.085|114.760 +638994.130|220483.550|114.267 +638999.290|220478.969|113.767 +639004.407|220474.418|113.160 +639009.528|220469.870|112.618 +639014.704|220465.271|111.944 +639019.843|220460.702|111.194 +639024.948|220456.170|111.008 +639030.038|220451.656|111.112 +639035.131|220447.141|111.225 +639040.292|220442.560|111.036 +639045.360|220438.058|110.795 +639050.487|220433.508|110.475 +639055.614|220428.954|110.146 +639060.704|220424.434|109.710 +639065.837|220419.877|109.430 +639070.912|220415.375|109.305 +639076.051|220410.809|108.969 +639081.159|220406.271|108.436 +639086.265|220401.735|108.000 +639091.422|220397.157|107.592 +639096.451|220392.695|107.558 +639101.587|220388.138|107.467 +639106.625|220383.670|107.409 +639111.716|220379.150|107.314 +639116.821|220374.617|107.083 +639121.917|220370.100|107.022 +639127.029|220365.562|106.784 +639132.085|220361.072|106.641 +639137.206|220356.527|106.372 +639142.290|220352.013|105.991 +639147.420|220347.456|105.684 +639152.513|220342.933|105.272 +639157.600|220338.419|104.976 +639162.742|220333.850|104.644 +639167.860|220329.306|104.108 +639172.977|220324.758|103.593 +639178.031|220320.271|103.285 +639183.155|220315.727|103.260 +639198.425|220302.169|102.477 +639203.470|220297.695|102.398 +639218.752|220284.125|101.438 +639233.944|220270.647|101.102 +639244.029|220261.701|101.349 +639249.110|220257.190|101.188 +639254.103|220252.764|101.380 +639264.311|220243.699|100.456 +639269.428|220239.152|100.109 +639274.342|220234.802|100.633 +639299.771|220212.216|98.481 +639304.819|220207.733|98.137 +639309.885|220203.237|98.042 +639324.994|220189.826|97.149 +639354.800|220163.393|97.868 +639359.710|220159.041|98.051 +639374.323|220146.108|99.810 +639379.163|220141.820|100.170 +639384.061|220137.482|100.520 +639388.944|220133.154|100.654 +639398.710|220124.501|100.996 +639403.599|220120.167|101.151 +639408.466|220115.851|101.145 +639413.340|220111.529|101.133 +639418.238|220107.182|100.977 +639428.092|220098.440|100.426 +639432.963|220094.115|99.911 +639442.930|220085.261|98.560 +639447.761|220080.975|98.359 +639452.665|220076.620|97.777 +639471.664|220059.792|99.149 +639485.782|220047.283|99.938 +639495.216|220038.922|100.060 +639504.674|220030.534|100.127 +639509.307|220026.431|100.429 +639513.994|220022.277|100.465 +639518.688|220018.116|100.478 +639528.098|220009.768|100.191 +639532.691|220005.696|100.243 +639537.333|220001.581|100.334 +639542.027|219997.417|100.185 +639546.639|219993.327|100.203 +639551.162|219989.322|100.435 +639555.780|219985.225|100.459 +639560.333|219981.187|100.557 +639564.969|219977.075|100.289 +639569.633|219972.936|99.892 +639574.241|219968.845|99.536 +639578.917|219964.694|99.136 +639583.434|219960.689|99.018 +639587.912|219956.720|99.347 +639592.322|219952.816|99.761 +639596.757|219948.887|100.072 +639595.611|219947.570|99.990 +639591.033|219951.615|99.627 +639586.470|219955.644|99.207 +639581.889|219959.692|98.890 +639577.167|219963.868|99.011 +639572.443|219968.053|99.426 +639567.661|219972.287|99.883 +639562.894|219976.511|100.301 +639558.187|219980.672|100.429 +639553.548|219984.771|100.255 +639548.858|219988.919|100.109 +639544.081|219993.144|100.130 +639539.421|219997.265|100.121 +639534.703|220001.441|100.170 +639529.972|220005.620|100.011 +639520.523|220013.977|99.993 +639511.050|220022.356|99.917 +639496.764|220034.990|100.066 +639487.248|220043.403|99.859 +639482.566|220047.536|99.365 +639477.717|220051.827|99.530 +639463.602|220064.297|98.033 +639454.004|220072.785|97.978 +639449.142|220077.089|98.051 +639444.320|220081.353|98.195 +639439.404|220085.715|98.944 +639429.537|220094.457|100.090 +639424.636|220098.797|100.517 +639419.701|220103.168|100.877 +639414.815|220107.493|100.977 +639409.993|220111.760|101.014 +639405.135|220116.055|100.968 +639400.276|220120.353|100.962 +639380.931|220137.458|100.255 +639376.136|220141.695|99.938 +639371.308|220145.962|99.530 +639361.747|220154.402|98.124 +639356.876|220158.706|97.698 +639337.503|220175.823|96.104 +639322.564|220189.052|97.097 +639317.553|220193.489|97.472 +639307.562|220202.335|98.076 +639302.579|220206.745|98.344 +639267.502|220237.798|100.151 +639262.494|220242.230|100.444 +639247.273|220255.711|101.508 +639242.301|220260.110|101.627 +639237.263|220264.566|101.493 +639232.310|220268.940|101.078 +639227.168|220273.497|101.465 +639206.893|220291.443|102.447 +639201.772|220295.976|102.791 +639191.665|220304.912|102.340 +639176.288|220318.531|103.434 +639171.136|220323.091|103.782 +639166.040|220327.602|104.123 +639160.831|220332.216|104.629 +639155.701|220336.758|104.885 +639150.562|220341.309|105.272 +639145.381|220345.896|105.601 +639135.045|220355.046|106.113 +639129.876|220359.624|106.439 +639124.721|220364.184|106.601 +639119.515|220368.792|106.857 +639114.419|220373.304|107.003 +639109.241|220377.885|107.006 +639104.050|220382.475|107.131 +639098.856|220387.071|107.357 +639093.665|220391.665|107.576 +639088.468|220396.267|107.927 +639083.259|220400.882|108.454 +639078.062|220405.481|108.869 +639072.887|220410.062|109.039 +639067.663|220414.683|109.244 +639062.484|220419.271|109.554 +639057.248|220423.903|109.987 +639052.011|220428.543|110.496 +639046.790|220433.163|110.810 +639041.627|220437.732|111.045 +639036.369|220442.387|111.277 +639031.166|220446.992|111.435 +639025.987|220451.570|111.240 +639020.797|220456.157|111.243 +639015.588|220460.769|111.581 +639010.311|220465.448|112.340 +639005.054|220470.099|112.770 +638999.842|220474.720|113.392 +638994.581|220479.380|114.020 +638989.332|220484.025|114.434 +638984.135|220488.628|114.928 +638978.886|220493.279|115.522 +638973.586|220497.976|116.211 +638968.392|220502.576|116.769 +638963.153|220507.218|117.373 +638957.870|220511.890|117.824 +638952.646|220516.517|118.217 +638947.465|220521.107|118.744 +638942.192|220525.777|119.208 +638936.967|220530.404|119.790 +638931.749|220535.025|120.235 +638926.534|220539.639|120.588 +638921.270|220544.303|121.082 +638916.110|220548.869|121.426 +638910.852|220553.526|121.878 +638905.652|220558.129|122.131 +638900.449|220562.731|122.435 +638879.616|220581.171|123.530 +638874.419|220585.771|123.956 +638869.225|220590.367|124.301 +638864.038|220594.958|124.505 +638858.801|220599.594|124.862 +638838.062|220617.955|126.504 +638832.884|220622.533|126.386 +638827.708|220627.111|126.309 +638791.513|220659.118|126.328 +638786.384|220663.647|125.867 +638781.208|220668.229|126.008 +638776.078|220672.761|125.992 +638770.900|220677.342|126.035 +638765.773|220681.878|126.044 +638760.646|220686.413|126.148 +638755.516|220690.948|126.136 +638750.390|220695.484|126.270 +638745.309|220699.974|126.282 +638740.182|220704.509|126.349 +638735.052|220709.044|126.291 +638729.971|220713.537|126.282 +638724.841|220718.073|126.331 +638719.760|220722.568|126.267 +638714.673|220727.064|126.075 +638709.540|220731.600|125.883 +638704.496|220736.050|125.566 +638699.409|220740.546|125.413 +638694.315|220745.044|124.983 +638689.271|220749.501|124.761 +638684.169|220754.003|124.203 +638679.066|220758.507|123.700 +638674.010|220762.970|123.200 +638668.901|220767.478|122.694 +638663.835|220771.949|122.082 +638658.773|220776.418|121.564 +638653.713|220780.883|121.253 +638648.662|220785.348|121.158 +638643.606|220789.814|120.951 +638638.616|220794.230|121.161 +638633.575|220798.686|121.372 +638628.543|220803.139|121.795 +638623.556|220807.550|122.103 +638618.512|220812.012|122.219 +638613.565|220816.386|122.405 +638608.520|220820.848|122.551 +638603.521|220825.265|122.694 +638598.538|220829.675|123.124 +638593.551|220834.089|123.459 +638588.608|220838.460|123.758 +638583.578|220842.913|124.209 +638578.695|220847.235|124.679 +638573.721|220851.639|125.273 +638563.806|220860.415|126.169 +638558.874|220864.779|126.645 +638553.955|220869.135|127.315 +638549.026|220873.497|127.852 +638544.088|220877.864|128.269 +638539.157|220882.229|128.748 +638534.271|220886.554|129.171 +638529.333|220890.925|129.580 +638524.380|220895.305|129.790 +638519.482|220899.636|130.086 +638514.523|220904.022|130.250 +638509.612|220908.366|130.409 +638504.696|220912.712|130.522 +638499.740|220917.092|130.778 +638494.827|220921.439|130.945 +638489.904|220925.788|131.055 +638485.033|220930.098|131.168 +638480.077|220934.472|130.921 +638475.115|220938.855|130.601 +638470.235|220943.171|130.683 +638465.386|220947.469|131.680 +638460.512|220951.779|131.860 +638455.632|220956.091|132.018 +638445.848|220964.739|132.076 +638431.190|220977.693|132.006 +638416.673|220990.528|132.558 +638411.814|220994.826|132.573 +638406.943|220999.129|132.491 +638402.149|221003.369|132.704 +638397.272|221007.676|132.616 +638392.441|221011.949|132.978 +638387.634|221016.201|133.106 +638382.831|221020.447|133.314 +638378.015|221024.705|133.411 +638373.196|221028.963|133.494 +638368.374|221033.227|133.573 +638363.601|221037.446|133.667 +638358.791|221041.701|133.878 +638354.012|221045.925|133.957 +638349.171|221050.202|133.960 +638344.456|221054.371|134.204 +638339.579|221058.678|133.951 +638334.834|221062.869|133.972 +638330.051|221067.097|134.124 +638325.333|221071.269|134.402 +638320.551|221075.491|134.204 +638315.744|221079.737|134.219 +638311.044|221083.888|134.320 +638301.552|221092.270|134.259 +638292.061|221100.658|134.252 +638287.330|221104.831|133.856 +638282.600|221109.007|133.856 +638277.860|221113.195|133.804 +638273.197|221117.313|133.588 +638268.509|221121.458|133.939 +638263.846|221125.576|134.137 +638259.191|221129.688|134.042 +638254.421|221133.897|133.542 +638249.758|221138.012|133.460 +638245.113|221142.117|133.487 +638240.470|221146.217|133.591 +638235.807|221150.338|133.536 +638231.214|221154.395|133.661 +638226.468|221158.583|133.119 +638221.792|221162.707|132.753 +638217.162|221166.794|132.686 +638212.478|221170.924|131.985 +638207.808|221175.045|131.713 +638203.105|221179.190|130.961 +638198.728|221183.070|132.229 +638194.098|221187.158|131.963 +638189.337|221191.349|130.927 +638184.719|221195.427|130.772 +638180.196|221199.420|130.601 +638175.481|221203.577|129.915 +638170.973|221207.561|130.193 +638157.763|221219.250|132.012 +638153.212|221223.267|131.790 +638148.668|221227.276|131.342 +638144.147|221231.265|131.339 +638135.067|221239.276|130.299 +638130.483|221243.314|129.735 +638126.009|221247.264|129.504 +638121.531|221251.218|129.263 +638117.108|221255.119|129.080 +638112.631|221259.072|128.894 +638094.919|221274.706|128.294 +638090.502|221278.604|127.974 +638086.113|221282.478|127.833 +638068.453|221298.056|126.367 +638064.027|221301.958|125.874 +638042.176|221321.224|123.545 +638037.897|221325.004|123.377 +638033.611|221328.786|123.210 +638029.344|221332.551|122.883 +638025.117|221336.281|122.777 +638020.886|221340.015|122.667 +638012.074|221347.775|120.847 +637990.723|221366.594|117.921 +637986.526|221370.297|117.388 +637973.971|221381.371|116.342 +637969.820|221385.031|115.858 +637961.572|221392.310|115.184 +637957.423|221395.967|114.779 +637953.373|221399.543|114.575 +637945.265|221406.696|113.968 +637941.299|221410.202|114.184 +637937.233|221413.786|113.758 +637933.225|221417.325|113.590 +637929.299|221420.793|113.563 +637925.401|221424.235|113.669 +637921.567|221427.624|114.066 +637917.882|221430.892|114.861 +637914.114|221434.223|115.334 +637910.137|221437.731|114.916 +637891.498|221454.215|116.931 +637887.557|221457.687|116.315 +637883.421|221461.320|114.703 +637879.565|221464.718|114.251 +637875.810|221468.035|114.224 +637872.256|221471.180|114.797 +637868.726|221474.304|115.480 +637854.142|221487.185|115.574 +637850.097|221490.739|114.059 +637846.135|221494.220|112.688 +637842.184|221497.689|111.170 +637838.469|221500.965|110.789 +637834.927|221504.096|110.883 +637831.413|221507.195|110.893 +637827.917|221510.286|110.972 +637813.887|221522.670|110.826 +637810.382|221525.761|110.518 +637807.062|221528.696|110.923 +637803.731|221531.640|111.286 +637794.245|221540.044|113.694 +637787.741|221545.792|114.044 +637784.516|221548.639|114.239 +637781.124|221551.632|114.029 +637777.868|221554.500|113.721 +637774.595|221557.393|113.755 +637771.416|221560.200|113.749 +638036.940|221323.041|123.194 +638041.180|221319.289|123.377 +638045.761|221315.247|124.749 +638063.268|221299.760|126.736 +638067.511|221295.996|126.273 +638071.964|221292.058|126.907 +638076.424|221288.111|127.324 +638085.199|221280.341|127.751 +638089.573|221276.467|127.788 +638093.995|221272.554|128.086 +638098.442|221268.619|128.559 +638111.723|221256.856|128.626 +638116.164|221252.922|128.867 +638120.644|221248.953|129.062 +638125.128|221244.985|129.287 +638129.648|221240.982|129.452 +638134.354|221236.831|130.668 +638138.862|221232.838|130.823 +638143.376|221228.842|131.019 +638147.930|221224.807|131.189 +638152.538|221220.732|131.668 +638161.597|221212.709|131.811 +638165.907|221208.872|130.324 +638170.305|221204.964|129.665 +638174.999|221200.813|130.162 +638179.617|221196.728|130.534 +638184.186|221192.681|130.644 +638188.807|221188.587|130.772 +638193.577|221184.375|131.835 +638198.176|221180.303|131.872 +638202.645|221176.334|131.125 +638207.357|221172.165|131.601 +638212.072|221167.995|132.119 +638216.790|221163.822|132.671 +638221.481|221159.668|132.768 +638230.869|221151.362|133.372 +638235.545|221147.223|133.439 +638240.217|221143.087|133.494 +638244.872|221138.966|133.426 +638249.569|221134.808|133.353 +638254.266|221130.648|133.298 +638259.048|221126.423|133.829 +638263.751|221122.257|133.868 +638268.445|221118.096|133.500 +638273.176|221113.914|133.737 +638277.918|221109.714|133.753 +638282.661|221105.517|133.786 +638287.462|221101.271|134.262 +638292.283|221097.004|134.182 +638297.014|221092.813|134.201 +638301.793|221088.582|134.222 +638306.557|221084.367|134.146 +638311.334|221080.139|134.170 +638316.180|221075.845|134.021 +638320.980|221071.599|134.298 +638325.784|221067.347|134.216 +638330.612|221063.073|134.368 +638335.367|221058.858|133.942 +638340.256|221054.536|134.210 +638345.066|221050.278|134.292 +638354.716|221041.728|133.911 +638359.590|221037.415|133.722 +638364.411|221033.142|133.554 +638369.249|221028.860|133.536 +638374.150|221024.522|133.652 +638379.008|221020.218|133.423 +638383.861|221015.921|133.155 +638388.710|221011.623|132.881 +638393.575|221007.316|132.759 +638398.482|221002.970|132.591 +638403.411|220998.605|132.655 +638408.281|220994.295|132.643 +638413.234|220989.909|132.503 +638418.157|220985.550|132.561 +638432.870|220972.517|131.829 +638442.794|220963.736|131.924 +638447.774|220959.328|132.216 +638452.709|220954.958|132.046 +638457.656|220950.581|132.015 +638462.594|220946.207|131.924 +638467.495|220941.854|130.881 +638472.436|220937.483|130.811 +638477.468|220933.024|130.741 +638482.455|220928.620|131.250 +638487.435|220924.206|131.189 +638492.409|220919.805|131.019 +638497.381|220915.401|130.872 +638502.395|220910.960|130.653 +638507.363|220906.558|130.503 +638512.383|220902.114|130.375 +638517.348|220897.716|130.196 +638522.405|220893.239|129.961 +638527.361|220888.846|129.711 +638532.360|220884.418|129.351 +638537.349|220879.995|128.915 +638542.388|220875.530|128.428 +638547.374|220871.110|127.949 +638552.361|220866.690|127.437 +638557.384|220862.234|126.800 +638562.416|220857.772|126.245 +638567.457|220853.307|125.822 +638572.496|220848.838|125.401 +638577.525|220844.382|124.776 +638582.563|220839.914|124.359 +638587.650|220835.406|123.904 +638592.692|220830.940|123.527 +638597.785|220826.426|123.185 +638602.823|220821.961|122.783 +638607.929|220817.441|122.697 +638613.028|220812.924|122.496 +638618.079|220808.452|122.341 +638623.227|220803.895|122.137 +638628.268|220799.427|121.811 +638633.358|220794.916|121.436 +638638.452|220790.405|121.192 +638643.548|220785.891|120.988 +638648.711|220781.325|121.253 +638653.823|220776.802|121.478 +638658.934|220772.281|121.704 +638664.104|220767.712|122.277 +638669.227|220763.189|122.966 +638674.388|220758.626|123.395 +638679.548|220754.064|123.969 +638684.659|220749.546|124.478 +638689.811|220744.993|124.788 +638694.962|220740.436|125.206 +638700.061|220735.928|125.514 +638705.261|220731.331|125.913 +638710.400|220726.784|126.075 +638715.542|220722.236|126.258 +638720.684|220717.689|126.419 +638725.820|220713.141|126.453 +638730.956|220708.596|126.468 +638736.140|220704.009|126.517 +638741.273|220699.462|126.495 +638746.458|220694.874|126.465 +638751.591|220690.330|126.398 +638756.775|220685.742|126.407 +638761.908|220681.195|126.279 +638767.093|220676.608|126.337 +638772.226|220672.063|126.233 +638777.410|220667.476|126.230 +638782.546|220662.931|126.184 +638787.728|220658.338|125.675 +638823.871|220626.358|126.559 +638829.053|220621.771|126.648 +638834.195|220617.214|126.105 +638849.721|220603.462|125.255 +638854.903|220598.871|125.014 +638860.048|220594.314|124.761 +638865.242|220589.715|124.596 +638870.396|220585.149|124.087 +638875.590|220580.550|123.941 +638880.799|220575.932|123.292 +638896.307|220562.195|122.612 +638901.516|220557.583|122.307 +638906.679|220553.008|121.862 +638911.888|220548.393|121.652 +638917.055|220543.818|121.289 +638922.230|220539.231|120.728 +638927.396|220534.653|120.436 +638932.572|220530.066|119.976 +638937.802|220525.430|119.393 +638942.935|220520.879|118.909 +638948.120|220516.289|118.482 +638953.308|220511.689|117.952 +638958.443|220507.138|117.565 +638963.640|220502.533|117.001 +638968.840|220497.924|116.403 +638973.994|220493.355|115.791 +638979.200|220488.738|115.166 +638984.358|220484.163|114.599 +638989.515|220479.591|114.105 +638994.672|220475.015|113.633 +638999.842|220470.431|113.047 +639005.008|220465.847|112.502 +639010.177|220461.263|111.996 +639015.301|220456.721|111.502 +639020.495|220452.119|111.490 +639025.582|220447.617|111.655 +639030.730|220443.057|111.655 +639035.845|220438.525|111.447 +639040.962|220433.992|111.231 +639046.089|220429.448|110.899 +639051.264|220424.861|110.615 +639056.406|220420.301|110.131 +639061.548|220415.741|109.719 +639066.639|220411.227|109.359 +639071.774|220406.676|109.109 +639076.868|220402.165|108.814 +639082.007|220397.608|108.564 +639092.220|220388.556|107.805 +639097.356|220383.996|107.086 +639102.404|220379.525|106.933 +639107.500|220375.007|106.775 +639112.599|220370.493|106.653 +639117.653|220366.016|106.516 +639122.758|220361.493|106.363 +639127.824|220357.003|106.129 +639132.884|220352.519|105.994 +639137.916|220348.060|105.656 +639143.043|220343.515|105.412 +639153.171|220334.536|104.736 +639158.213|220330.071|104.458 +639163.263|220325.593|104.099 +639168.375|220321.061|103.638 +639173.432|220316.577|103.288 +639178.482|220312.100|103.032 +639183.499|220307.662|103.145 +639188.556|220303.178|102.882 +639218.795|220276.386|101.557 +639228.799|220267.526|101.553 +639233.800|220263.097|101.605 +639238.814|220258.656|101.550 +639243.789|220254.248|101.462 +639248.876|220249.737|100.865 +639253.823|220245.357|101.051 +639258.849|220240.901|100.615 +639263.860|220236.460|100.319 +639268.868|220232.025|100.106 +639284.016|220218.584|98.237 +639338.722|220170.120|96.515 +639358.257|220152.838|97.914 +639372.777|220139.991|99.636 +639377.627|220135.696|99.959 +639382.488|220131.389|100.218 +639387.365|220127.070|100.404 +639392.248|220122.745|100.578 +639397.158|220118.393|100.596 +639401.989|220114.113|100.804 +639406.842|220109.813|100.898 +639416.641|220101.129|100.609 +639421.609|220096.721|100.383 +639436.407|220083.591|99.014 +639441.370|220079.183|98.335 +639446.265|220074.843|98.085 +639451.212|220070.451|97.551 +639456.040|220066.168|97.436 +639470.231|220053.613|99.136 +639489.348|220036.679|99.886 +639494.149|220032.427|100.078 +639498.925|220028.196|100.142 +639503.744|220023.920|99.728 +639518.064|220011.231|99.877 +639522.718|220007.110|100.401 +639527.464|220002.907|100.478 +639532.243|219998.667|100.124 +639536.934|219994.510|100.249 +639546.480|219986.045|99.999 +639551.198|219981.860|99.786 +639555.795|219977.794|100.197 +639560.461|219973.658|100.282 +639565.250|219969.409|99.798 +639570.078|219965.121|99.139 +639574.802|219960.930|98.752 +639579.402|219956.854|98.743 +639583.986|219952.791|99.060 +639588.549|219948.756|99.511 +639593.093|219944.733|99.810 +639595.477|219939.783|99.950 +639590.816|219943.891|99.694 +639586.238|219947.930|99.328 +639581.678|219951.950|98.886 +639577.045|219956.035|98.545 +639572.333|219960.195|98.618 +639567.493|219964.474|99.066 +639562.598|219968.806|99.807 +639557.855|219972.994|100.081 +639553.131|219977.166|100.051 +639548.388|219981.351|99.856 +639543.584|219985.591|99.987 +639538.775|219989.840|100.170 +639534.023|219994.034|100.081 +639529.158|219998.332|100.328 +639519.676|220006.699|99.883 +639514.842|220010.963|99.767 +639509.968|220015.269|99.883 +639500.345|220023.761|99.776 +639480.963|220040.867|99.447 +639471.304|220049.392|98.957 +639466.436|220053.684|98.643 +639461.727|220057.829|97.765 +639456.872|220062.114|97.433 +639451.974|220066.436|97.353 +639447.063|220070.777|97.673 +639442.061|220075.196|97.939 +639437.008|220079.668|98.829 +639431.954|220084.139|99.463 +639427.010|220088.510|99.798 +639422.036|220092.902|100.011 +639417.074|220097.288|100.194 +639412.103|220101.680|100.456 +639407.162|220106.042|100.545 +639402.172|220110.450|100.663 +639397.277|220114.772|100.538 +639392.339|220119.130|100.377 +639387.466|220123.428|100.139 +639382.479|220127.832|100.011 +639377.557|220132.173|99.795 +639372.652|220136.501|99.508 +639367.794|220140.783|98.932 +639362.914|220145.081|98.161 +639348.098|220158.154|97.494 +639338.256|220166.832|96.658 +639323.424|220179.920|96.034 +639313.244|220188.927|97.445 +639303.194|220197.802|97.701 +639257.843|220237.878|100.414 +639252.747|220242.386|101.017 +639247.727|220246.820|101.047 +639232.590|220260.189|101.489 +639227.604|220264.590|101.334 +639222.507|220269.095|101.709 +639202.275|220286.969|102.632 +639197.227|220291.428|102.739 +639187.141|220300.337|102.946 +639176.943|220309.347|103.394 +639171.895|220313.806|103.638 +639166.808|220318.299|103.797 +639161.749|220322.768|103.748 +639156.588|220327.327|104.217 +639151.547|220331.784|104.541 +639146.368|220336.362|104.772 +639141.281|220340.854|105.083 +639136.154|220345.387|105.379 +639131.086|220349.861|105.568 +639125.968|220354.385|105.827 +639120.808|220358.941|105.997 +639115.748|220363.416|106.232 +639110.615|220367.945|106.156 +639105.427|220372.535|106.781 +639100.316|220377.056|107.131 +639095.153|220381.618|107.521 +639084.841|220390.738|108.299 +639079.696|220395.286|108.582 +639074.505|220399.876|108.899 +639069.367|220404.421|109.195 +639064.231|220408.962|109.512 +639058.997|220413.586|109.807 +639053.855|220418.137|110.304 +639048.677|220422.715|110.621 +639043.489|220427.305|111.112 +639038.320|220431.874|111.368 +639033.101|220436.489|111.691 +639027.947|220441.042|111.804 +639022.802|220445.587|111.792 +639017.611|220450.171|111.776 +639012.430|220454.749|111.636 +639007.266|220459.315|112.048 +639002.009|220463.963|112.414 +638996.848|220468.529|112.883 +638991.633|220473.144|113.486 +638986.382|220477.789|113.947 +638981.176|220482.392|114.450 +638975.970|220487.000|115.111 +638970.718|220491.648|115.721 +638965.515|220496.254|116.400 +638960.321|220500.847|116.958 +638955.085|220505.480|117.427 +638949.897|220510.068|117.949 +638944.615|220514.740|118.446 +638939.387|220519.364|118.909 +638934.206|220523.948|119.467 +638928.978|220528.575|120.070 +638923.763|220533.187|120.390 +638918.548|220537.798|120.802 +638913.327|220542.416|121.335 +638908.072|220547.064|121.646 +638902.909|220551.627|122.021 +638897.654|220556.275|122.432 +638892.454|220560.869|122.554 +638887.248|220565.474|123.021 +638876.803|220574.707|123.548 +638866.406|220583.906|124.453 +638861.209|220588.502|124.959 +638855.976|220593.126|124.901 +638850.794|220597.704|125.130 +638845.603|220602.291|125.474 +638824.764|220620.716|126.620 +638819.628|220625.258|126.888 +638788.499|220652.742|125.962 +638783.317|220657.320|125.950 +638778.090|220661.941|126.383 +638772.960|220666.476|126.511 +638767.782|220671.051|126.517 +638762.600|220675.626|126.483 +638757.421|220680.201|126.544 +638752.292|220684.734|126.553 +638741.931|220693.884|126.696 +638736.802|220698.416|126.693 +638731.620|220702.994|126.687 +638726.487|220707.527|126.666 +638721.354|220712.059|126.632 +638716.221|220716.594|126.544 +638711.086|220721.130|126.337 +638705.947|220725.668|126.142 +638700.808|220730.207|125.959 +638695.708|220734.706|125.499 +638690.566|220739.247|125.182 +638685.464|220743.749|124.740 +638680.362|220748.254|124.325 +638675.256|220752.759|123.868 +638670.145|220757.267|123.258 +638665.033|220761.778|122.783 +638659.919|220766.289|122.198 +638654.853|220770.760|121.737 +638649.748|220775.268|121.545 +638644.679|220779.743|121.049 +638639.631|220784.202|121.186 +638634.538|220788.707|121.375 +638624.510|220797.577|122.015 +638619.469|220802.033|122.301 +638614.476|220806.450|122.542 +638609.428|220810.912|122.722 +638604.482|220815.286|122.923 +638599.434|220819.748|123.133 +638594.441|220824.165|123.420 +638589.501|220828.535|123.770 +638584.514|220832.946|124.188 +638579.521|220837.359|124.529 +638569.658|220846.089|125.608 +638564.672|220850.499|126.035 +638559.734|220854.870|126.450 +638554.808|220859.229|127.084 +638549.883|220863.591|127.702 +638544.948|220867.955|128.172 +638540.016|220872.320|128.708 +638535.124|220876.648|129.083 +638530.189|220881.016|129.583 +638525.288|220885.350|129.848 +638520.338|220889.727|130.153 +638515.480|220894.022|130.363 +638510.521|220898.408|130.574 +638505.653|220902.712|130.680 +638500.734|220907.058|130.796 +638495.817|220911.405|130.982 +638490.904|220915.748|131.201 +638486.039|220920.049|131.418 +638481.159|220924.362|131.497 +638476.167|220928.766|130.811 +638471.281|220933.082|130.869 +638466.404|220937.395|131.022 +638461.603|220941.647|132.073 +638456.760|220945.926|132.085 +638451.871|220950.248|132.146 +638447.031|220954.525|132.241 +638442.142|220958.850|132.332 +638437.280|220963.141|132.247 +638432.370|220967.479|132.174 +638427.536|220971.746|131.921 +638422.634|220976.080|131.966 +638417.855|220980.305|132.308 +638413.006|220984.590|132.427 +638408.205|220988.836|132.561 +638403.325|220993.143|132.451 +638398.522|220997.392|132.588 +638393.694|221001.656|132.527 +638388.908|221005.887|132.899 +638384.105|221010.136|133.103 +638379.292|221014.391|133.231 +638374.543|221018.591|133.497 +638369.703|221022.864|133.430 +638364.927|221027.086|133.524 +638360.117|221031.338|133.740 +638355.338|221035.562|133.835 +638350.543|221039.799|133.814 +638341.024|221048.211|133.990 +638331.484|221056.639|134.082 +638326.702|221060.861|133.865 +638321.995|221065.021|134.271 +638317.265|221069.200|134.112 +638312.449|221073.455|134.070 +638307.740|221077.612|134.134 +638298.349|221085.915|134.478 +638293.576|221090.124|134.112 +638288.867|221094.288|134.219 +638284.194|221098.418|134.259 +638279.512|221102.551|134.271 +638274.706|221106.791|133.747 +638270.015|221110.936|133.725 +638265.339|221115.060|133.487 +638260.642|221119.212|133.448 +638255.930|221123.372|133.341 +638251.324|221127.441|133.295 +638246.618|221131.599|133.265 +638241.973|221135.701|133.338 +638237.368|221139.770|133.341 +638232.686|221143.903|133.219 +638228.028|221148.015|132.924 +638218.775|221156.187|132.811 +638214.136|221160.283|132.719 +638209.448|221164.420|132.326 +638204.793|221168.525|131.842 +638200.121|221172.646|131.290 +638195.436|221176.776|130.674 +638191.056|221180.656|131.665 +638186.402|221184.765|131.272 +638181.760|221188.859|130.686 +638177.188|221192.894|130.555 +638172.646|221196.902|130.308 +638168.065|221200.947|130.162 +638163.456|221205.013|129.872 +638145.732|221220.689|131.220 +638141.191|221224.694|130.830 +638136.686|221228.669|130.662 +638123.061|221240.687|129.092 +638118.590|221244.634|128.918 +638114.118|221248.581|128.751 +638109.674|221252.501|128.495 +638105.233|221256.424|128.248 +638100.832|221260.310|128.257 +638096.455|221264.178|128.394 +638092.014|221268.094|127.952 +638087.564|221272.023|127.739 +638083.209|221275.870|127.779 +638078.807|221279.750|127.340 +638074.421|221283.624|127.254 +638070.011|221287.516|126.797 +638065.673|221291.342|126.483 +638039.265|221314.625|123.322 +638034.995|221318.396|123.225 +638030.755|221322.139|123.027 +638026.506|221325.891|123.063 +638004.664|221345.127|118.671 +638000.501|221348.800|118.735 +637987.946|221359.873|117.949 +637979.418|221367.380|116.562 +637975.309|221371.007|116.477 +637971.216|221374.616|116.245 +637962.840|221381.998|115.218 +637958.743|221385.607|114.797 +637954.756|221389.128|114.867 +637950.437|221392.919|113.496 +637942.613|221399.835|114.379 +637938.721|221403.274|114.690 +637934.691|221406.831|114.639 +637930.741|221410.314|114.495 +637926.855|221413.747|114.648 +637922.963|221417.182|114.776 +637919.204|221420.504|115.263 +637892.979|221443.684|118.125 +637870.546|221463.475|117.958 +637836.418|221493.513|111.911 +637832.528|221496.930|110.664 +637828.919|221500.112|110.521 +637825.411|221503.202|110.356 +637821.879|221506.321|110.307 +637818.654|221509.177|111.243 +637808.672|221518.001|112.505 +637805.172|221521.082|112.231 +637801.972|221523.914|112.880 +637779.207|221544.009|114.221 +637775.948|221546.883|114.099 +637772.708|221549.742|114.066 +637769.541|221552.534|114.102 +638040.725|221310.657|123.359 +638045.304|221306.624|124.999 +638067.039|221287.398|126.501 +638071.437|221283.505|126.864 +638075.790|221279.659|127.266 +638084.574|221271.889|127.751 +638088.945|221268.015|127.785 +638093.371|221264.105|128.111 +638097.766|221260.215|128.309 +638102.124|221256.354|128.047 +638106.572|221252.416|128.288 +638111.019|221248.484|128.534 +638115.441|221244.567|128.690 +638119.943|221240.586|128.992 +638129.133|221232.469|130.433 +638133.607|221228.510|130.668 +638138.115|221224.520|130.823 +638142.535|221220.607|130.781 +638147.134|221216.537|131.223 +638160.430|221204.751|130.001 +638164.846|221200.831|129.135 +638169.589|221196.646|130.202 +638174.121|221192.632|130.360 +638178.715|221188.569|130.586 +638183.354|221184.466|130.811 +638187.993|221180.367|131.375 +638192.449|221176.410|130.519 +638197.131|221172.271|131.067 +638201.819|221168.129|131.686 +638206.540|221163.956|132.238 +638211.185|221159.851|132.631 +638229.778|221143.391|132.951 +638234.515|221139.200|133.079 +638239.230|221135.031|133.768 +638243.823|221130.959|133.317 +638248.526|221126.792|133.292 +638253.229|221122.625|133.283 +638257.948|221118.450|133.399 +638262.666|221114.271|133.536 +638267.451|221110.037|133.820 +638272.145|221105.880|133.847 +638276.934|221101.643|134.195 +638281.679|221097.443|134.259 +638286.450|221093.215|134.164 +638291.189|221089.018|134.243 +638295.920|221084.830|134.252 +638300.742|221080.560|134.234 +638305.500|221076.341|134.143 +638310.291|221072.102|134.298 +638315.092|221067.850|134.176 +638319.856|221063.631|134.182 +638324.681|221059.352|133.917 +638329.448|221055.130|133.969 +638334.325|221050.814|134.149 +638339.098|221046.584|133.914 +638343.935|221042.298|133.795 +638348.729|221038.052|133.756 +638353.625|221033.718|133.762 +638358.462|221029.433|133.710 +638363.275|221025.165|133.487 +638368.164|221020.837|133.494 +638377.838|221012.263|133.100 +638382.693|221007.959|132.869 +638387.570|221003.640|132.853 +638392.407|220999.355|132.479 +638397.336|220994.987|132.533 +638402.201|220990.680|132.436 +638411.994|220982.003|132.034 +638416.916|220977.644|132.098 +638426.719|220968.960|131.881 +638431.690|220964.559|131.991 +638436.671|220960.151|132.250 +638441.578|220955.808|132.271 +638446.577|220951.379|132.262 +638451.469|220947.048|132.152 +638456.461|220942.625|132.122 +638461.408|220938.245|132.134 +638466.285|220933.908|130.836 +638471.241|220929.522|130.961 +638476.228|220925.105|130.915 +638481.278|220920.640|131.665 +638486.301|220916.193|131.518 +638491.263|220911.795|131.265 +638496.223|220907.396|130.976 +638501.243|220902.953|130.811 +638506.217|220898.545|130.763 +638511.234|220894.101|130.622 +638516.196|220889.706|130.442 +638521.204|220885.268|130.220 +638526.203|220880.836|129.885 +638531.201|220876.404|129.571 +638536.234|220871.942|129.050 +638541.226|220867.516|128.638 +638546.210|220863.097|128.120 +638551.239|220858.638|127.529 +638556.216|220854.221|126.898 +638561.246|220849.759|126.349 +638566.238|220845.333|125.947 +638571.322|220840.825|125.474 +638576.303|220836.408|124.892 +638581.393|220831.894|124.511 +638586.431|220827.429|124.100 +638591.476|220822.958|123.786 +638596.569|220818.443|123.450 +638601.613|220813.975|123.167 +638606.664|220809.501|123.027 +638611.763|220804.987|122.841 +638616.808|220800.518|122.609 +638621.901|220796.007|122.301 +638627.037|220791.456|121.920 +638632.075|220786.988|121.561 +638637.220|220782.434|121.384 +638642.271|220777.963|121.256 +638647.434|220773.394|121.603 +638652.546|220768.874|121.865 +638657.657|220764.354|122.140 +638662.830|220759.785|122.844 +638667.941|220755.264|123.271 +638673.056|220750.747|123.822 +638678.213|220746.187|124.331 +638683.370|220741.631|124.807 +638688.472|220737.117|125.212 +638693.624|220732.563|125.605 +638698.772|220728.012|126.008 +638703.914|220723.462|126.276 +638709.059|220718.914|126.587 +638714.149|220714.409|126.696 +638719.285|220709.864|126.828 +638724.421|220705.320|126.928 +638729.557|220700.775|127.035 +638734.689|220696.231|126.919 +638739.871|220691.643|126.879 +638745.004|220687.099|126.895 +638750.137|220682.557|126.834 +638755.269|220678.013|126.779 +638760.405|220673.468|126.764 +638765.584|220668.881|126.636 +638770.720|220664.336|126.794 +638775.901|220659.749|126.703 +638781.034|220655.201|126.294 +638786.216|220650.617|126.477 +638822.350|220618.638|126.776 +638837.864|220604.900|126.136 +638843.058|220600.295|125.557 +638848.249|220595.698|125.313 +638853.391|220591.141|125.054 +638858.573|220586.554|125.011 +638863.769|220581.949|124.572 +638868.924|220577.380|123.999 +638874.120|220572.777|123.743 +638884.481|220563.597|122.963 +638889.684|220558.991|122.725 +638894.886|220554.379|122.426 +638900.044|220549.811|122.185 +638905.207|220545.235|121.759 +638910.422|220540.618|121.387 +638915.592|220536.034|120.875 +638920.813|220531.407|120.384 +638925.982|220526.826|120.079 +638931.161|220522.235|119.509 +638936.391|220517.599|119.009 +638941.576|220513.006|118.497 +638946.760|220508.409|117.994 +638952.000|220503.764|117.452 +638957.191|220499.165|116.943 +638962.385|220494.559|116.391 +638967.584|220489.951|115.821 +638972.790|220485.333|115.175 +638977.996|220480.718|114.620 +638983.218|220476.088|113.806 +638988.369|220471.529|113.496 +638993.584|220466.911|112.971 +638998.793|220462.299|112.578 +639003.962|220457.724|112.106 +639009.114|220453.164|111.932 +639014.304|220448.574|111.996 +639019.458|220444.014|111.892 +639024.604|220439.467|111.969 +639029.703|220434.959|111.984 +639034.878|220430.377|111.633 +639040.054|220425.796|111.338 +639045.184|220421.255|110.984 +639050.371|220416.661|110.573 +639055.513|220412.111|110.158 +639060.655|220407.557|109.771 +639065.800|220403.003|109.414 +639070.939|220398.456|109.158 +639076.084|220393.902|108.844 +639081.193|220389.379|108.427 +639086.347|220384.816|108.070 +639091.458|220380.290|107.683 +639096.567|220375.769|107.381 +639101.727|220371.203|107.076 +639106.787|220366.726|106.817 +639111.923|220362.178|106.318 +639117.062|220357.625|105.775 +639122.182|220353.092|105.501 +639127.236|220348.624|105.461 +639132.314|220344.131|105.196 +639137.432|220339.602|105.050 +639142.473|220335.142|104.714 +639147.627|220330.577|104.242 +639152.623|220326.160|104.419 +639157.719|220321.652|104.117 +639162.751|220317.199|103.992 +639167.802|220312.731|103.699 +639177.943|220303.760|103.337 +639182.996|220299.286|103.111 +639193.076|220290.364|102.529 +639203.159|220281.443|102.078 +639208.139|220277.041|102.218 +639218.207|220268.129|101.608 +639233.230|220254.840|101.182 +639238.162|220250.481|101.432 +639243.173|220246.052|101.477 +639248.144|220241.657|101.474 +639253.170|220237.204|101.020 +639258.212|220232.739|100.487 +639263.198|220228.325|100.051 +639278.326|220214.926|98.350 +639283.257|220210.561|98.048 +639308.080|220188.600|97.292 +639337.722|220162.382|96.552 +639342.511|220158.154|97.192 +639352.316|220149.485|97.338 +639357.150|220145.215|97.725 +639362.012|220140.920|97.951 +639366.767|220136.729|98.893 +639371.585|220132.478|99.426 +639376.404|220128.223|99.667 +639381.290|220123.907|99.810 +639386.124|220119.633|99.962 +639395.796|220111.087|100.334 +639415.251|220093.887|100.017 +639420.162|220089.543|99.871 +639425.044|220085.224|99.612 +639439.846|220072.124|98.094 +639444.722|220067.805|97.664 +639449.660|220063.434|97.225 +639454.455|220059.197|97.326 +639459.216|220054.994|97.634 +639463.943|220050.824|98.164 +639478.241|220038.194|98.868 +639483.014|220033.978|99.197 +639497.319|220021.338|99.533 +639502.162|220017.053|99.292 +639516.283|220004.583|100.279 +639525.842|219996.134|100.100 +639530.701|219991.833|99.652 +639540.107|219983.521|99.840 +639554.252|219971.022|100.106 +639563.838|219962.536|99.356 +639568.782|219958.156|98.429 +639573.449|219954.032|98.356 +639578.100|219949.923|98.618 +639582.663|219945.894|99.057 +639587.262|219941.837|99.597 +639591.859|219937.780|99.932 +639588.375|219938.085|99.712 +639583.876|219942.050|99.207 +639579.383|219946.010|98.682 +639574.823|219950.030|98.237 +639570.151|219954.157|98.347 +639546.462|219975.091|99.819 +639541.789|219979.218|99.813 +639532.371|219987.527|99.417 +639527.662|219991.684|99.386 +639522.800|219995.985|99.889 +639518.067|220000.164|99.755 +639513.248|220004.419|99.807 +639508.557|220008.555|99.490 +639503.814|220012.737|99.185 +639499.044|220016.943|98.768 +639479.640|220034.079|99.316 +639474.870|220038.285|98.996 +639469.963|220042.613|98.871 +639465.181|220046.826|98.365 +639460.447|220050.992|97.606 +639455.592|220055.275|97.253 +639450.724|220059.566|96.981 +639445.774|220063.937|97.213 +639440.736|220068.393|97.963 +639435.682|220072.862|98.536 +639430.641|220077.315|99.069 +639425.645|220081.728|99.380 +639420.680|220086.111|99.517 +639415.647|220090.555|99.792 +639405.635|220099.394|100.090 +639400.712|220103.741|100.087 +639395.686|220108.176|100.106 +639390.751|220112.528|99.908 +639375.816|220125.699|99.274 +639370.732|220130.188|99.447 +639365.852|220134.483|98.664 +639360.948|220138.799|97.707 +639355.903|220143.249|97.686 +639350.960|220147.605|97.027 +639345.946|220152.027|96.860 +639325.939|220169.660|95.296 +639305.319|220187.884|97.375 +639284.827|220205.980|98.307 +639279.719|220210.491|98.426 +639274.638|220214.975|98.341 +639264.229|220224.180|100.179 +639259.084|220228.724|100.310 +639253.932|220233.278|100.923 +639248.733|220237.875|101.547 +639243.591|220242.413|101.730 +639238.482|220246.924|101.691 +639223.178|220260.424|101.483 +639218.060|220264.941|101.593 +639212.888|220269.510|101.797 +639207.749|220274.048|102.172 +639197.502|220283.092|102.276 +639192.357|220287.639|102.806 +639187.245|220292.147|102.593 +639182.060|220296.728|103.090 +639176.918|220301.270|103.245 +639171.807|220305.784|103.593 +639166.674|220310.313|103.675 +639161.532|220314.855|103.913 +639156.396|220319.387|104.089 +639151.254|220323.929|104.382 +639146.143|220328.443|104.391 +639141.001|220332.975|104.208 +639135.914|220337.468|104.541 +639130.735|220342.043|104.815 +639125.614|220346.563|105.037 +639120.421|220351.154|105.559 +639115.224|220355.750|106.174 +639110.100|220360.276|106.552 +639104.937|220364.836|106.854 +639099.822|220369.347|107.156 +639094.668|220373.895|107.387 +639089.511|220378.446|107.720 +639084.351|220383.002|108.122 +639079.190|220387.559|108.549 +639074.039|220392.104|108.881 +639068.891|220396.645|109.234 +639063.749|220401.187|109.561 +639058.607|220405.725|109.914 +639053.416|220410.306|110.323 +639048.274|220414.845|110.725 +639043.093|220419.420|111.085 +639037.960|220423.949|111.456 +639032.836|220428.472|111.767 +639027.664|220433.038|112.115 +639022.510|220437.580|112.154 +639017.371|220442.109|112.005 +639012.223|220446.651|112.060 +639007.120|220451.153|112.185 +639001.987|220455.676|112.005 +638996.824|220460.233|112.404 +638991.700|220464.759|113.014 +638986.500|220469.346|113.304 +638981.340|220473.903|113.773 +638976.171|220478.469|114.514 +638970.965|220483.068|115.065 +638965.859|220487.579|115.666 +638960.656|220492.176|116.288 +638955.459|220496.763|116.833 +638950.363|220501.262|117.321 +638945.176|220505.846|117.830 +638939.985|220510.427|118.372 +638934.852|220514.957|118.793 +638929.670|220519.535|119.357 +638924.489|220524.110|119.887 +638919.316|220528.676|120.280 +638914.144|220533.242|120.680 +638909.017|220537.771|121.308 +638903.851|220542.331|121.728 +638898.636|220546.933|122.124 +638893.527|220551.441|122.368 +638888.367|220555.995|122.707 +638883.164|220560.585|122.950 +638878.058|220565.093|123.261 +638872.852|220569.687|123.679 +638867.698|220574.237|124.127 +638862.547|220578.785|124.456 +638857.399|220583.326|124.752 +638852.214|220587.901|125.017 +638847.118|220592.400|125.328 +638841.924|220596.985|125.651 +638836.734|220601.566|125.922 +638826.450|220610.643|126.675 +638821.311|220615.175|126.843 +638816.175|220619.701|126.779 +638785.265|220646.954|126.870 +638780.083|220651.522|126.620 +638774.947|220656.052|126.879 +638769.815|220660.578|126.968 +638764.630|220665.147|126.849 +638759.497|220669.676|126.956 +638754.364|220674.203|127.020 +638749.183|220678.772|127.041 +638744.096|220683.255|127.050 +638738.914|220687.827|127.102 +638733.778|220692.354|127.105 +638728.645|220696.880|127.138 +638723.509|220701.406|127.172 +638718.373|220705.935|127.038 +638713.280|220710.422|126.864 +638708.089|220714.997|126.669 +638702.947|220719.527|126.453 +638697.851|220724.019|126.169 +638692.703|220728.552|125.834 +638687.549|220733.090|125.349 +638682.443|220737.586|124.953 +638677.292|220742.124|124.615 +638672.178|220746.626|124.011 +638667.018|220751.171|123.533 +638661.894|220755.679|122.856 +638656.779|220760.181|122.438 +638651.665|220764.686|122.048 +638646.550|220769.191|121.783 +638641.436|220773.699|121.490 +638636.330|220778.198|121.469 +638631.234|220782.696|121.634 +638626.138|220787.189|121.911 +638621.051|220791.682|122.329 +638610.965|220800.582|122.972 +638605.917|220805.035|123.213 +638600.867|220809.491|123.405 +638595.764|220813.990|123.548 +638590.769|220818.401|123.886 +638585.724|220822.854|124.176 +638580.680|220827.304|124.523 +638575.684|220831.715|124.859 +638570.655|220836.155|125.459 +638560.673|220844.967|126.328 +638555.686|220849.369|126.843 +638550.709|220853.767|127.501 +638545.734|220858.162|128.144 +638540.793|220862.521|128.626 +638535.755|220866.971|129.062 +638530.866|220871.287|129.583 +638525.870|220875.697|129.964 +638520.920|220880.065|130.275 +638515.961|220884.439|130.519 +638511.048|220888.776|130.711 +638506.083|220893.156|130.878 +638501.105|220897.542|130.924 +638496.186|220901.883|131.110 +638491.269|220906.220|131.317 +638486.356|220910.554|131.589 +638481.431|220914.898|131.744 +638476.453|220919.281|131.305 +638471.482|220923.661|130.936 +638466.590|220927.971|130.985 +638461.762|220932.247|132.283 +638456.940|220936.499|132.588 +638451.959|220940.888|132.201 +638447.113|220945.161|132.256 +638442.163|220949.523|132.290 +638437.305|220953.805|132.268 +638432.379|220958.146|132.070 +638427.514|220962.434|132.003 +638422.647|220966.723|131.966 +638417.770|220971.021|131.838 +638412.927|220975.294|132.055 +638398.406|220988.102|132.439 +638393.587|220992.351|132.494 +638388.762|220996.602|132.515 +638383.952|221000.845|132.710 +638379.149|221005.082|132.960 +638374.372|221009.294|133.024 +638369.566|221013.534|133.271 +638364.802|221017.737|133.481 +638360.016|221021.956|133.524 +638350.439|221030.399|133.628 +638345.654|221034.620|133.722 +638340.908|221038.811|133.737 +638336.129|221043.027|133.942 +638331.408|221047.190|133.801 +638326.656|221051.384|133.829 +638321.901|221055.578|133.875 +638317.216|221059.715|134.076 +638312.428|221063.939|133.884 +638303.012|221072.245|134.064 +638298.297|221076.408|134.103 +638293.588|221080.563|134.234 +638284.164|221088.875|134.115 +638279.512|221092.983|134.329 +638274.858|221097.086|134.195 +638270.176|221101.216|134.249 +638265.412|221105.413|133.743 +638260.764|221109.513|133.704 +638256.040|221113.679|133.521 +638251.410|221117.761|133.332 +638246.743|221121.876|133.231 +638242.138|221125.942|133.582 +638237.520|221130.014|133.527 +638232.853|221134.129|133.158 +638228.138|221138.283|132.829 +638223.578|221142.306|132.878 +638209.701|221154.544|132.515 +638205.126|221158.577|132.232 +638200.490|221162.664|131.902 +638195.808|221166.785|131.308 +638186.548|221174.938|130.235 +638182.077|221178.888|130.699 +638177.496|221182.927|130.510 +638173.000|221186.896|130.543 +638168.406|221190.943|130.314 +638163.914|221194.906|130.110 +638159.278|221198.984|129.388 +638154.767|221202.965|129.412 +638150.359|221206.857|129.769 +638141.602|221214.596|130.827 +638137.103|221218.561|130.699 +638132.617|221222.518|130.659 +638128.157|221226.453|130.494 +638114.710|221238.300|129.479 +638110.119|221242.336|128.403 +638105.694|221246.237|128.266 +638101.256|221250.148|128.074 +638096.851|221254.031|127.794 +638092.450|221257.911|127.562 +638088.119|221261.733|127.724 +638083.763|221265.577|127.760 +638079.405|221269.417|127.541 +638075.040|221273.264|127.303 +638070.645|221277.135|126.925 +638066.256|221281.003|126.602 +638061.970|221284.785|126.553 +638057.614|221288.620|126.187 +638044.691|221300.010|125.368 +638040.046|221304.082|123.389 +638035.772|221307.850|123.261 +638031.536|221311.583|123.088 +638027.250|221315.360|122.947 +638023.090|221319.033|123.164 +638018.765|221322.840|122.356 +638014.415|221326.668|121.707 +638005.686|221334.340|119.595 +637997.166|221341.847|118.567 +637976.224|221360.306|116.617 +637972.106|221363.936|116.278 +637967.957|221367.591|115.803 +637959.770|221374.808|115.178 +637955.528|221378.539|114.120 +637951.739|221381.898|115.081 +637939.964|221392.292|115.538 +637936.023|221395.772|115.644 +637920.664|221409.339|116.547 +637916.827|221412.728|116.696 +637909.323|221419.361|117.528 +637905.485|221422.753|117.705 +637901.721|221426.076|117.760 +637897.969|221429.389|117.882 +637894.217|221432.702|118.007 +637890.471|221436.009|118.177 +637886.704|221439.335|118.263 +637883.040|221442.568|118.351 +637879.312|221445.860|118.403 +637875.591|221449.146|118.488 +637864.456|221458.967|118.089 +637860.789|221462.201|118.010 +637857.165|221465.398|117.912 +637853.514|221468.620|117.918 +637827.045|221491.897|111.670 +637823.336|221495.159|110.728 +637819.733|221498.332|110.219 +637816.414|221501.267|110.804 +637813.125|221504.178|111.301 +637810.043|221506.912|112.602 +637806.837|221509.753|113.416 +637803.655|221512.572|114.334 +637790.481|221524.203|114.968 +637787.186|221527.108|114.888 +637783.727|221530.156|114.407 +637780.481|221533.018|114.328 +637777.189|221535.923|114.282 +637773.924|221538.803|114.151 +637770.681|221541.665|114.105 +637767.511|221544.460|114.145 +637764.323|221547.274|114.114 +638043.499|221298.407|124.645 +638052.427|221290.534|126.632 +638056.526|221286.901|125.953 +638060.833|221283.091|126.081 +638065.189|221279.244|126.471 +638069.590|221275.355|126.849 +638073.964|221271.490|127.102 +638078.313|221267.643|127.260 +638087.034|221259.932|127.187 +638091.386|221256.082|127.416 +638095.839|221252.147|127.635 +638100.241|221248.258|127.885 +638104.639|221244.369|128.144 +638109.168|221240.370|128.568 +638113.753|221236.325|129.327 +638118.224|221232.378|129.751 +638122.769|221228.364|130.342 +638127.213|221224.435|130.388 +638131.675|221220.491|130.558 +638136.158|221216.525|130.570 +638140.670|221212.538|130.772 +638149.323|221204.861|129.101 +638153.794|221200.904|128.812 +638158.446|221196.805|129.891 +638163.030|221192.751|130.013 +638167.571|221188.737|130.208 +638172.094|221184.735|130.318 +638176.666|221180.693|130.427 +638181.278|221176.615|130.485 +638185.811|221172.607|130.394 +638195.095|221164.404|131.320 +638199.767|221160.280|131.832 +638204.403|221156.184|132.162 +638218.427|221143.794|133.058 +638223.021|221139.728|132.887 +638227.690|221135.598|132.899 +638232.323|221131.504|132.997 +638237.035|221127.344|133.323 +638241.711|221123.208|133.442 +638246.380|221119.077|133.183 +638251.053|221114.950|133.295 +638255.774|221110.778|133.426 +638260.490|221106.611|133.542 +638265.187|221102.457|133.567 +638269.996|221098.214|134.036 +638279.445|221089.862|134.207 +638284.167|221085.690|134.100 +638293.673|221077.283|134.088 +638298.379|221073.120|133.954 +638303.144|221068.907|133.881 +638307.996|221064.622|134.128 +638312.672|221060.486|133.811 +638317.487|221056.228|133.823 +638322.248|221052.018|133.804 +638327.043|221047.782|133.670 +638331.856|221043.527|133.722 +638341.512|221034.989|133.722 +638346.303|221030.752|133.664 +638351.140|221026.476|133.582 +638355.965|221022.209|133.411 +638360.790|221017.942|133.280 +638365.631|221013.665|133.274 +638370.456|221009.395|133.183 +638375.302|221005.109|132.832 +638380.121|221000.845|132.713 +638385.043|220996.493|132.655 +638389.908|220992.192|132.518 +638394.767|220987.894|132.375 +638399.628|220983.597|132.238 +638409.434|220974.925|131.930 +638414.353|220970.576|131.945 +638419.254|220966.244|131.802 +638424.177|220961.892|131.924 +638429.105|220957.539|132.101 +638434.068|220953.153|132.158 +638438.984|220948.807|132.271 +638443.934|220944.433|132.247 +638448.887|220940.053|132.271 +638453.849|220935.670|132.399 +638458.799|220931.296|132.442 +638463.725|220926.940|132.219 +638468.608|220922.606|130.985 +638473.554|220918.235|131.012 +638478.611|220913.773|131.829 +638483.592|220909.372|131.747 +638488.557|220904.979|131.500 +638493.525|220900.584|131.311 +638498.496|220896.189|131.150 +638503.462|220891.797|130.967 +638508.485|220887.356|130.891 +638513.444|220882.970|130.665 +638518.455|220878.538|130.452 +638523.456|220874.112|130.156 +638528.452|220869.693|129.784 +638533.442|220865.276|129.315 +638538.383|220860.902|128.867 +638543.418|220856.446|128.358 +638548.395|220852.039|127.705 +638553.379|220847.625|127.160 +638558.411|220843.169|126.629 +638563.401|220838.752|126.151 +638568.488|220834.250|125.724 +638573.425|220829.880|125.212 +638578.510|220825.381|124.715 +638583.554|220820.915|124.356 +638588.598|220816.453|124.042 +638593.649|220811.985|123.850 +638598.706|220807.513|123.712 +638603.747|220803.051|123.377 +638608.798|220798.583|123.158 +638613.891|220794.075|122.856 +638618.981|220789.570|122.496 +638624.019|220785.107|122.088 +638629.067|220780.642|121.814 +638634.163|220776.131|121.573 +638639.265|220771.620|121.524 +638644.374|220767.103|121.615 +638649.495|220762.580|122.103 +638654.609|220758.062|122.423 +638659.730|220753.542|122.950 +638664.847|220749.025|123.502 +638669.962|220744.508|124.029 +638675.125|220739.951|124.606 +638680.228|220735.443|124.913 +638685.385|220730.890|125.410 +638690.490|220726.382|125.874 +638695.638|220721.831|126.206 +638700.738|220717.329|126.517 +638705.883|220712.781|126.803 +638710.976|220708.282|126.983 +638716.115|220703.738|127.129 +638721.254|220699.196|127.266 +638726.393|220694.655|127.352 +638731.526|220690.113|127.196 +638736.613|220685.614|127.263 +638741.749|220681.076|127.215 +638746.884|220676.534|127.205 +638752.020|220671.993|127.190 +638757.153|220667.451|127.132 +638762.289|220662.910|127.084 +638767.425|220658.368|127.108 +638772.561|220653.830|127.175 +638777.697|220649.285|126.965 +638782.833|220644.747|127.108 +638788.014|220640.163|126.962 +638813.745|220617.409|126.977 +638818.933|220612.825|126.916 +638824.072|220608.277|126.797 +638834.405|220599.133|126.075 +638839.599|220594.534|125.688 +638844.744|220589.980|125.371 +638849.941|220585.381|124.968 +638855.092|220580.821|124.633 +638860.279|220576.234|124.410 +638865.476|220571.634|124.203 +638870.630|220567.068|123.737 +638875.836|220562.463|123.338 +638880.994|220557.900|123.060 +638886.200|220553.288|122.661 +638896.566|220544.120|122.234 +638901.732|220539.545|121.734 +638906.905|220534.967|121.259 +638912.132|220530.334|120.573 +638917.301|220525.759|120.226 +638922.477|220521.178|119.811 +638927.710|220516.545|119.235 +638932.892|220511.954|118.756 +638938.129|220507.318|118.208 +638943.316|220502.725|117.729 +638948.507|220498.129|117.193 +638953.753|220493.483|116.659 +638958.949|220488.881|116.132 +638964.152|220484.272|115.516 +638969.355|220479.667|115.041 +638974.567|220475.049|114.386 +638979.783|220470.431|113.761 +638985.040|220465.774|113.279 +638990.249|220461.159|112.819 +638995.419|220456.581|112.316 +639000.655|220451.948|112.377 +639005.849|220447.352|112.322 +639011.000|220442.795|112.246 +639016.188|220438.208|112.359 +639021.388|220433.605|112.331 +639026.545|220429.042|112.228 +639031.763|220424.422|111.947 +639036.942|220419.837|111.603 +639042.169|220415.211|111.277 +639047.354|220410.617|110.890 +639052.535|220406.030|110.615 +639057.732|220401.424|110.143 +639062.929|220396.822|109.728 +639068.126|220392.219|109.335 +639073.326|220387.617|108.991 +639078.474|220383.057|108.668 +639083.680|220378.446|108.302 +639088.852|220373.864|107.768 +639094.019|220369.289|107.366 +639099.219|220364.684|107.177 +639104.382|220360.115|106.894 +639119.838|220346.429|106.013 +639125.035|220341.824|105.482 +639130.171|220337.276|105.114 +639135.341|220332.701|104.961 +639140.470|220328.163|104.760 +639145.603|220323.618|104.525 +639150.727|220319.083|104.403 +639155.863|220314.538|104.227 +639160.999|220309.993|104.062 +639166.089|220305.485|103.870 +639171.191|220300.968|103.617 +639181.454|220291.882|103.099 +639196.749|220278.343|102.328 +639201.796|220273.875|102.294 +639206.911|220269.348|102.120 +639211.958|220264.883|102.145 +639222.050|220255.952|101.855 +639232.109|220247.055|101.947 +639237.126|220242.623|102.346 +639242.088|220238.231|102.367 +639247.196|220233.711|102.069 +639252.259|220229.218|101.325 +639257.352|220224.710|100.816 +639282.675|220202.271|98.240 +639287.692|220197.833|98.106 +639292.615|220193.480|98.329 +639302.609|220184.629|97.737 +639312.591|220175.796|97.369 +639327.578|220162.522|96.189 +639332.507|220158.166|96.561 +639342.288|220149.513|96.799 +639351.978|220140.957|97.765 +639356.943|220136.559|97.622 +639371.415|220123.775|98.804 +639376.197|220119.551|99.277 +639381.089|220115.226|99.380 +639390.706|220106.725|99.755 +639395.558|220102.433|99.853 +639400.377|220098.172|99.874 +639405.254|220093.859|99.871 +639410.140|220089.531|99.517 +639414.965|220085.264|99.572 +639419.832|220080.957|99.386 +639429.495|220072.404|98.905 +639434.399|220068.061|98.585 +639439.337|220063.684|97.789 +639444.238|220059.344|97.253 +639449.136|220055.006|96.762 +639453.876|220050.812|96.878 +639458.606|220046.637|97.375 +639482.176|220025.806|98.795 +639486.913|220021.615|98.783 +639501.101|220009.070|99.002 +639515.204|219996.600|99.289 +639519.908|219992.440|99.322 +639538.744|219975.773|99.005 +639557.453|219959.226|98.883 +639566.819|219950.935|98.502 +639571.474|219946.817|98.481 +639580.657|219938.697|98.835 +639585.174|219934.711|99.514 +639587.771|219930.047|99.673 +639583.346|219933.936|99.289 +639578.835|219937.902|98.838 +639569.809|219945.842|97.996 +639565.295|219949.814|97.850 +639532.572|219978.648|98.761 +639527.939|219982.723|98.573 +639523.135|219986.960|99.005 +639518.396|219991.138|99.149 +639508.953|219999.453|99.024 +639494.905|220011.816|98.240 +639485.279|220020.299|98.441 +639480.485|220024.529|98.761 +639475.687|220028.754|98.560 +639470.856|220033.012|98.551 +639461.410|220041.321|97.393 +639456.668|220045.494|96.954 +639451.913|220049.681|96.594 +639446.972|220054.037|96.725 +639441.997|220058.429|97.356 +639437.078|220062.770|97.713 +639432.009|220067.253|98.667 +639427.077|220071.600|98.844 +639422.112|220075.983|99.246 +639417.184|220080.326|99.161 +639412.258|220084.670|99.386 +639407.272|220089.068|99.691 +639402.288|220093.460|99.694 +639397.359|220097.806|99.712 +639392.382|220102.193|99.722 +639387.493|220106.499|99.523 +639382.503|220110.895|99.341 +639377.517|220115.287|99.161 +639372.588|220119.627|98.954 +639367.650|220123.974|98.499 +639357.665|220132.767|98.012 +639337.695|220150.354|96.622 +639332.705|220154.746|96.296 +639327.652|220159.196|96.070 +639322.564|220163.683|96.457 +639307.117|220177.317|97.716 +639281.547|220199.863|98.289 +639255.566|220222.802|101.233 +639250.388|220227.374|101.654 +639245.160|220231.992|102.495 +639239.954|220236.585|102.791 +639224.608|220250.100|101.974 +639219.414|220254.678|101.852 +639214.220|220259.259|102.172 +639203.854|220268.397|102.294 +639198.693|220272.948|102.425 +639177.876|220291.306|103.010 +639172.688|220295.887|103.571 +639167.439|220300.514|103.760 +639162.236|220305.104|104.065 +639157.049|220309.679|104.227 +639151.812|220314.297|104.403 +639146.627|220318.869|104.598 +639141.409|220323.472|104.662 +639136.221|220328.047|104.955 +639131.040|220332.619|105.232 +639125.806|220337.233|105.531 +639120.573|220341.851|105.900 +639115.334|220346.478|106.378 +639110.118|220351.077|106.598 +639104.903|220355.677|106.851 +639099.694|220360.276|107.104 +639094.482|220364.879|107.406 +639089.276|220369.475|107.671 +639084.049|220374.090|108.216 +639078.791|220378.735|108.607 +639073.585|220383.331|108.988 +639068.336|220387.964|109.329 +639063.139|220392.555|109.698 +639057.936|220397.148|110.152 +639052.694|220401.778|110.539 +639047.506|220406.359|110.917 +639042.270|220410.983|111.280 +639037.039|220415.601|111.627 +639031.867|220420.164|111.847 +639026.649|220424.772|112.127 +639021.434|220429.375|112.331 +639016.228|220433.968|112.447 +639011.031|220438.552|112.441 +639005.895|220443.082|112.285 +639000.683|220447.678|112.569 +638995.504|220452.244|112.350 +638990.356|220456.785|112.432 +638985.089|220461.440|113.014 +638979.874|220466.045|113.553 +638974.714|220470.602|114.041 +638969.502|220475.211|114.693 +638964.293|220479.813|115.297 +638959.141|220484.361|115.760 +638953.942|220488.954|116.288 +638948.742|220493.550|116.931 +638943.551|220498.135|117.427 +638938.360|220502.719|117.900 +638933.224|220507.257|118.378 +638928.037|220511.838|118.909 +638922.855|220516.414|119.415 +638917.676|220520.989|119.878 +638912.501|220525.558|120.335 +638907.325|220530.130|120.811 +638902.153|220534.699|121.338 +638896.983|220539.267|121.878 +638891.820|220543.824|122.222 +638886.709|220548.338|122.512 +638881.500|220552.935|122.865 +638876.342|220557.488|123.139 +638871.234|220561.996|123.487 +638866.077|220566.550|123.880 +638860.926|220571.098|124.139 +638855.787|220575.633|124.380 +638850.636|220580.184|124.868 +638845.481|220584.735|125.410 +638840.336|220589.279|125.752 +638835.191|220593.818|125.877 +638830.095|220598.316|126.282 +638824.953|220602.855|126.550 +638819.811|220607.393|126.879 +638789.136|220634.454|127.227 +638784.000|220638.986|127.407 +638778.864|220643.512|127.178 +638773.777|220648.002|127.398 +638768.690|220652.489|127.343 +638763.554|220657.018|127.285 +638758.467|220661.505|127.288 +638753.331|220666.034|127.324 +638748.244|220670.521|127.394 +638743.160|220675.004|127.422 +638738.024|220679.534|127.465 +638732.937|220684.020|127.455 +638727.850|220688.507|127.468 +638722.714|220693.036|127.443 +638717.624|220697.526|127.364 +638712.485|220702.055|127.239 +638707.391|220706.542|127.077 +638702.295|220711.035|126.791 +638697.196|220715.525|126.529 +638692.097|220720.017|126.187 +638686.997|220724.510|125.880 +638681.889|220729.009|125.368 +638676.777|220733.508|124.871 +638671.672|220738.004|124.563 +638666.554|220742.509|123.929 +638661.485|220746.971|123.389 +638656.371|220751.476|122.938 +638651.253|220755.981|122.527 +638646.187|220760.446|122.158 +638641.067|220764.954|121.753 +638636.007|220769.413|121.673 +638630.954|220773.869|121.795 +638625.857|220778.368|122.003 +638620.813|220782.821|122.347 +638615.771|220787.268|122.749 +638610.730|220791.722|123.091 +638605.682|220796.175|123.353 +638600.589|220800.671|123.703 +638595.588|220805.081|123.920 +638590.531|220809.540|124.045 +638585.480|220813.999|124.246 +638580.436|220818.450|124.636 +638575.443|220822.860|125.023 +638570.457|220827.261|125.538 +638565.415|220831.711|125.974 +638560.423|220836.119|126.383 +638555.387|220840.569|126.867 +638550.404|220844.967|127.455 +638545.426|220849.366|128.117 +638540.437|220853.770|128.577 +638535.499|220858.132|129.077 +638530.464|220862.579|129.604 +638525.517|220866.943|129.988 +638520.521|220871.354|130.385 +638515.562|220875.731|130.631 +638510.606|220880.105|130.884 +638505.638|220884.488|131.040 +638500.663|220888.874|131.122 +638495.698|220893.254|131.336 +638490.776|220897.597|131.482 +638485.807|220901.980|131.674 +638480.882|220906.324|131.838 +638475.883|220910.728|131.707 +638470.891|220915.123|131.116 +638465.950|220919.482|131.131 +638461.113|220923.761|132.360 +638456.214|220928.080|132.357 +638451.264|220932.445|132.326 +638446.378|220936.752|132.500 +638441.413|220941.129|132.360 +638436.497|220945.460|132.241 +638431.583|220949.794|132.146 +638426.658|220954.132|131.994 +638421.790|220958.423|131.945 +638416.859|220962.770|131.747 +638411.994|220967.058|131.784 +638407.126|220971.350|131.796 +638402.249|220975.650|131.735 +638397.421|220979.912|132.165 +638392.563|220984.197|132.314 +638387.707|220988.480|132.521 +638382.934|220992.689|132.588 +638378.088|220996.968|132.890 +638373.263|221001.220|132.981 +638368.432|221005.481|133.030 +638363.662|221009.688|133.186 +638358.885|221013.900|133.323 +638354.067|221018.152|133.509 +638349.324|221022.334|133.539 +638344.481|221026.601|133.570 +638339.747|221030.774|133.713 +638335.004|221034.953|133.795 +638330.188|221039.192|133.713 +638325.473|221043.350|133.640 +638320.679|221047.574|133.765 +638311.196|221055.926|133.743 +638301.775|221064.226|133.884 +638292.341|221072.541|133.993 +638287.687|221076.643|134.173 +638282.950|221080.816|134.121 +638278.272|221084.937|134.161 +638273.621|221089.033|134.048 +638268.939|221093.157|134.109 +638264.251|221097.287|134.140 +638259.588|221101.396|133.999 +638254.884|221105.532|133.628 +638250.218|221109.641|133.515 +638245.539|221113.759|133.347 +638240.836|221117.898|133.036 +638236.331|221121.876|133.743 +638226.995|221130.093|133.009 +638222.405|221134.135|132.860 +638217.830|221138.164|132.841 +638203.974|221150.359|132.049 +638199.432|221154.358|132.000 +638181.037|221170.537|130.290 +638176.496|221174.542|130.327 +638172.003|221178.498|130.394 +638167.498|221182.467|130.394 +638163.030|221186.402|130.330 +638158.491|221190.398|130.168 +638153.983|221194.366|129.921 +638149.335|221198.448|128.867 +638144.943|221202.322|129.330 +638127.386|221217.799|130.479 +638118.474|221225.645|129.970 +638113.990|221229.586|129.458 +638109.568|221233.478|129.303 +638100.625|221241.342|128.242 +638096.178|221245.253|127.736 +638091.780|221249.124|127.522 +638087.430|221252.952|127.309 +638083.020|221256.832|127.065 +638078.661|221260.670|126.834 +638070.090|221268.219|126.928 +638065.740|221272.045|126.541 +638061.427|221275.839|126.361 +638057.099|221279.649|126.114 +638052.750|221283.478|125.788 +638039.640|221294.990|123.600 +638035.337|221298.779|123.316 +638031.109|221302.500|123.182 +638026.887|221306.219|123.085 +638022.742|221309.870|123.124 +638018.509|221313.595|123.008 +638009.794|221321.243|120.899 +638005.445|221325.062|120.043 +638001.114|221328.863|119.052 +637996.868|221332.593|118.488 +637988.483|221339.963|117.674 +637984.380|221343.575|117.586 +637975.806|221351.095|115.538 +637971.993|221354.466|116.580 +637963.672|221361.775|115.324 +637959.700|221365.274|115.443 +637955.713|221368.785|115.516 +637951.684|221372.330|115.419 +637947.743|221375.799|115.486 +637943.796|221379.277|115.535 +637935.981|221386.159|115.794 +637928.339|221392.892|116.400 +637924.490|221396.284|116.699 +637920.844|221399.503|117.437 +637913.127|221406.294|117.342 +637909.308|221409.656|117.370 +637905.519|221412.994|117.531 +637901.843|221416.237|118.177 +637894.357|221422.827|118.275 +637890.572|221426.158|118.281 +637886.856|221429.428|118.363 +637883.153|221432.693|118.500 +637875.770|221439.191|118.702 +637872.082|221442.437|118.723 +637868.431|221445.650|118.683 +637864.758|221448.881|118.567 +637861.073|221452.121|118.427 +637853.931|221458.409|118.647 +637850.185|221461.701|118.071 +637846.513|221464.929|117.808 +637842.959|221468.056|117.812 +637839.386|221471.198|117.751 +637835.820|221474.335|117.513 +637820.870|221487.438|113.654 +637817.014|221490.812|112.176 +637813.887|221493.577|113.075 +637810.738|221496.363|114.312 +637794.172|221510.950|115.227 +637790.859|221513.864|115.062 +637787.491|221516.824|114.916 +637784.199|221519.717|114.858 +637780.938|221522.585|114.718 +637777.637|221525.489|114.636 +637774.388|221528.345|114.565 +637771.199|221531.153|114.511 +637767.996|221533.969|114.419 +637764.823|221536.758|114.453 +638044.965|221287.864|125.499 +638053.554|221280.268|125.803 +638057.919|221276.412|126.212 +638062.330|221272.517|126.599 +638066.652|221268.692|126.565 +638075.256|221261.081|126.596 +638079.682|221257.167|126.892 +638084.089|221253.272|127.102 +638088.445|221249.422|127.324 +638092.907|221245.478|127.596 +638097.403|221241.507|128.062 +638106.443|221233.524|129.348 +638110.830|221229.644|129.284 +638115.325|221225.672|129.562 +638124.363|221217.690|130.436 +638128.843|221213.724|130.424 +638141.995|221202.069|129.086 +638146.473|221198.106|128.803 +638151.179|221193.958|129.866 +638155.742|221189.925|130.132 +638160.226|221185.960|130.260 +638164.795|221181.918|130.293 +638169.388|221177.858|130.500 +638173.923|221173.844|130.385 +638178.395|221169.882|129.897 +638183.009|221165.806|130.278 +638196.988|221153.462|131.826 +638210.990|221141.090|132.799 +638215.620|221136.994|132.829 +638220.232|221132.915|132.741 +638224.868|221128.816|132.841 +638229.574|221124.655|133.094 +638234.286|221120.492|133.417 +638238.879|221116.423|132.969 +638243.595|221112.259|133.347 +638248.328|221108.074|133.536 +638253.053|221103.898|133.692 +638257.798|221099.710|134.359 +638262.498|221095.547|134.045 +638271.929|221087.208|134.030 +638276.696|221082.992|134.249 +638286.145|221074.634|134.115 +638290.854|221070.468|133.954 +638300.388|221062.034|133.841 +638305.116|221057.852|133.893 +638309.928|221053.597|133.832 +638314.683|221049.391|133.756 +638319.432|221045.188|133.637 +638324.245|221040.933|133.658 +638329.049|221036.684|133.606 +638333.864|221032.426|133.689 +638338.708|221028.140|133.625 +638343.496|221023.907|133.518 +638348.327|221019.630|133.378 +638353.173|221015.345|133.390 +638357.992|221011.081|133.177 +638362.817|221006.813|133.027 +638367.685|221002.503|132.872 +638372.501|220998.242|132.683 +638377.426|220993.887|132.616 +638382.242|220989.626|132.466 +638387.165|220985.273|132.402 +638392.020|220980.975|132.201 +638396.934|220976.629|132.098 +638401.780|220972.337|131.857 +638406.690|220967.997|131.735 +638411.595|220963.657|131.619 +638416.572|220959.255|131.729 +638421.498|220954.903|131.854 +638426.469|220950.507|131.970 +638431.404|220946.146|132.229 +638436.378|220941.751|132.411 +638441.322|220937.377|132.323 +638446.314|220932.969|132.741 +638451.225|220928.620|132.338 +638456.272|220924.164|132.890 +638466.062|220915.486|131.180 +638471.009|220911.109|131.235 +638476.103|220906.613|131.878 +638481.095|220902.200|131.945 +638486.064|220897.804|131.710 +638491.038|220893.403|131.582 +638496.006|220889.008|131.387 +638501.023|220884.567|131.232 +638505.994|220880.172|131.092 +638511.057|220875.691|130.942 +638516.019|220871.302|130.708 +638521.067|220866.834|130.366 +638526.066|220862.408|130.007 +638531.058|220857.985|129.583 +638536.090|220853.529|129.034 +638541.077|220849.113|128.510 +638546.112|220844.653|128.013 +638551.093|220840.240|127.361 +638556.125|220835.784|126.818 +638561.163|220831.321|126.364 +638566.208|220826.856|125.989 +638571.249|220822.391|125.572 +638576.288|220817.931|125.102 +638581.329|220813.466|124.709 +638586.422|220808.958|124.322 +638591.479|220804.487|124.200 +638596.535|220800.012|124.100 +638601.626|220795.510|123.770 +638606.670|220791.048|123.408 +638611.760|220786.546|123.069 +638621.944|220777.539|122.353 +638627.037|220773.034|122.073 +638632.087|220768.572|121.878 +638637.187|220764.061|121.786 +638642.350|220759.504|122.045 +638647.425|220755.027|122.566 +638652.588|220750.470|122.896 +638657.703|220745.956|123.322 +638662.820|220741.442|123.828 +638667.990|220736.885|124.502 +638673.095|220732.377|124.810 +638678.204|220727.869|125.285 +638683.361|220723.321|125.822 +638688.463|220718.816|126.160 +638693.566|220714.314|126.529 +638698.714|220709.770|126.855 +638703.859|220705.228|127.111 +638709.001|220700.687|127.410 +638714.094|220696.191|127.550 +638719.230|220691.653|127.620 +638724.369|220687.114|127.687 +638729.456|220682.621|127.690 +638734.592|220678.083|127.708 +638739.728|220673.544|127.760 +638744.864|220669.006|127.638 +638749.999|220664.467|127.538 +638755.132|220659.932|127.535 +638765.355|220650.898|127.532 +638770.494|220646.362|127.672 +638775.627|220641.824|127.437 +638780.763|220637.288|127.675 +638785.899|220632.750|127.541 +638801.310|220619.128|127.251 +638811.584|220610.051|127.169 +638816.726|220605.507|126.986 +638821.865|220600.962|126.754 +638827.007|220596.415|126.520 +638832.149|220591.870|126.349 +638847.542|220578.258|125.307 +638852.699|220573.692|124.642 +638857.890|220569.098|124.182 +638862.992|220564.587|123.953 +638868.146|220560.030|123.667 +638873.304|220555.468|123.310 +638878.412|220550.954|123.027 +638883.621|220546.345|122.676 +638888.736|220541.822|122.249 +638893.899|220537.256|121.926 +638899.071|220532.678|121.344 +638904.244|220528.100|120.805 +638909.371|220523.564|120.329 +638914.546|220518.986|119.893 +638919.722|220514.408|119.497 +638924.858|220509.863|118.961 +638930.042|220505.276|118.446 +638935.178|220500.728|117.964 +638940.369|220496.138|117.488 +638945.560|220491.545|116.989 +638950.711|220486.985|116.394 +638955.911|220482.386|115.858 +638961.065|220477.826|115.309 +638966.216|220473.266|114.837 +638971.428|220468.651|114.221 +638976.588|220464.088|113.755 +638981.767|220459.501|112.947 +638986.970|220454.902|112.654 +638992.057|220450.412|112.740 +638997.202|220445.870|112.721 +639002.350|220441.323|112.645 +639007.498|220436.772|112.578 +639012.692|220432.188|112.642 +639017.800|220427.677|112.535 +639022.964|220423.117|112.340 +639028.078|220418.597|112.145 +639033.251|220414.025|111.898 +639038.426|220409.453|111.630 +639043.559|220404.914|111.304 +639048.695|220400.373|110.963 +639053.892|220395.780|110.515 +639059.040|220391.229|110.121 +639064.191|220386.675|109.704 +639069.391|220382.082|109.356 +639074.545|220377.525|108.981 +639079.699|220372.968|108.628 +639084.820|220368.439|108.149 +639090.029|220363.833|107.808 +639095.198|220359.264|107.412 +639100.316|220354.741|107.070 +639105.482|220350.175|106.790 +639110.646|220345.612|106.564 +639115.809|220341.053|106.397 +639120.942|220336.514|106.031 +639126.084|220331.966|105.586 +639131.268|220327.385|105.278 +639136.398|220322.853|105.062 +639141.522|220318.330|104.937 +639146.658|220313.791|104.708 +639151.785|220309.262|104.598 +639156.924|220304.720|104.400 +639162.020|220300.218|104.169 +639167.183|220295.656|103.818 +639172.282|220291.148|103.599 +639182.496|220282.132|103.629 +639192.792|220273.024|102.526 +639197.907|220268.504|102.346 +639202.976|220264.026|102.160 +639213.159|220255.038|102.331 +639218.249|220250.539|102.035 +639223.260|220246.119|102.462 +639228.259|220241.715|103.004 +639233.288|220237.277|103.288 +639238.305|220232.848|103.288 +639243.429|220228.316|102.837 +639248.528|220223.805|102.221 +639253.689|220219.242|101.557 +639258.806|220214.713|100.862 +639263.909|220210.202|100.346 +639268.965|220205.727|99.807 +639294.230|220183.404|98.566 +639299.275|220178.947|98.320 +639309.351|220170.038|97.631 +639314.399|220165.576|97.088 +639324.469|220156.666|95.918 +639378.218|220109.246|99.021 +639387.917|220100.684|99.548 +639392.769|220096.401|99.664 +639397.649|220092.088|99.627 +639407.396|220083.478|99.395 +639412.270|220079.171|99.164 +639417.114|220074.892|99.130 +639426.815|220066.318|98.752 +639436.639|220057.628|97.780 +639441.540|220053.290|97.237 +639446.457|220048.941|96.649 +639451.282|220044.674|96.314 +639455.966|220040.541|96.777 +639460.670|220036.398|97.460 +639465.299|220032.314|97.966 +639470.006|220028.163|98.362 +639474.760|220023.965|98.502 +639479.488|220019.787|98.259 +639484.212|220015.617|98.332 +639507.716|219994.860|98.771 +639512.419|219990.709|98.801 +639535.772|219970.080|98.719 +639540.402|219965.989|98.707 +639563.774|219945.333|97.609 +639568.270|219941.368|98.097 +639572.778|219937.393|98.560 +639577.301|219933.400|98.941 +639586.232|219925.524|99.816 +639575.317|219932.906|98.432 +639566.222|219940.910|97.884 +639561.662|219944.925|97.686 +639556.999|219949.036|98.012 +639552.293|219953.191|98.569 +639547.669|219957.266|98.749 +639538.409|219965.422|98.460 +639519.847|219981.775|98.313 +639515.086|219985.972|98.545 +639510.383|219990.117|98.755 +639496.380|220002.447|98.164 +639491.683|220006.580|97.893 +639486.977|220010.728|97.966 +639477.467|220019.101|98.112 +639467.976|220027.452|97.975 +639458.600|220035.691|96.994 +639453.943|220039.782|96.347 +639449.145|220044.003|96.216 +639444.323|220048.252|96.533 +639439.391|220052.601|97.198 +639434.448|220056.957|97.673 +639424.624|220065.623|98.667 +639419.747|220069.917|98.838 +639414.904|220074.178|98.832 +639409.993|220078.503|98.950 +639405.077|220082.832|99.127 +639400.179|220087.145|99.219 +639395.281|220091.457|99.335 +639390.358|220095.789|99.301 +639380.574|220104.399|98.944 +639375.685|220108.697|98.761 +639370.784|220113.007|98.368 +639351.030|220130.390|97.911 +639336.198|220143.426|96.546 +639331.248|220147.779|96.262 +639321.141|220156.679|96.524 +639316.045|220161.174|96.997 +639305.800|220170.206|98.042 +639275.107|220197.248|99.807 +639269.977|220201.765|100.066 +639264.853|220206.282|100.325 +639259.690|220210.833|100.889 +639254.475|220215.432|101.526 +639249.315|220219.983|102.169 +639244.060|220224.619|102.806 +639238.927|220229.145|103.303 +639233.688|220233.763|103.876 +639228.613|220238.228|103.541 +639213.278|220251.706|102.261 +639171.676|220288.346|103.596 +639166.482|220292.922|103.739 +639161.270|220297.515|104.074 +639156.018|220302.142|104.358 +639150.821|220306.720|104.620 +639145.576|220311.341|104.885 +639140.391|220315.907|105.080 +639135.170|220320.506|105.193 +639129.949|220325.102|105.318 +639124.712|220329.717|105.641 +639119.476|220334.332|105.997 +639114.239|220338.946|106.406 +639109.024|220343.540|106.601 +639103.806|220348.133|106.836 +639098.585|220352.736|107.180 +639093.318|220357.375|107.488 +639088.103|220361.971|107.848 +639082.833|220366.613|108.262 +639077.621|220371.210|108.668 +639072.366|220375.836|108.985 +639067.157|220380.427|109.396 +639061.902|220385.057|109.820 +639056.653|220389.687|110.234 +639051.395|220394.320|110.752 +639046.156|220398.934|111.091 +639040.919|220403.549|111.456 +639035.689|220408.157|111.728 +639030.462|220412.763|112.026 +639025.244|220417.359|112.231 +639020.031|220421.947|112.331 +639014.813|220426.543|112.593 +639009.607|220431.127|112.718 +639004.407|220435.702|112.731 +638999.159|220440.326|112.804 +638993.962|220444.898|112.819 +638988.765|220449.473|112.883 +638983.580|220454.036|112.782 +638978.377|220458.617|113.002 +638973.159|220463.220|113.617 +638967.938|220467.822|114.322 +638962.729|220472.416|114.837 +638957.526|220477.000|115.318 +638952.323|220481.587|115.827 +638947.123|220486.171|116.391 +638941.923|220490.758|116.982 +638936.726|220495.337|117.534 +638931.539|220499.912|117.982 +638926.351|220504.481|118.421 +638921.166|220509.053|118.918 +638915.982|220513.625|119.476 +638910.806|220518.184|119.826 +638905.631|220522.744|120.238 +638900.455|220527.307|120.701 +638895.277|220531.873|121.381 +638890.104|220536.430|121.829 +638884.938|220540.983|122.268 +638879.771|220545.537|122.731 +638874.611|220550.085|123.054 +638869.451|220554.632|123.444 +638864.297|220559.171|123.627 +638859.188|220563.670|123.926 +638854.046|220568.199|124.170 +638848.886|220572.753|125.020 +638838.629|220581.790|125.934 +638833.481|220586.326|126.184 +638823.240|220595.345|126.693 +638818.147|220599.831|126.907 +638813.005|220604.361|127.114 +638807.912|220608.844|127.279 +638802.821|220613.325|127.364 +638797.731|220617.805|127.358 +638792.641|220622.286|127.279 +638782.412|220631.293|127.687 +638777.322|220635.770|127.751 +638772.235|220640.251|127.791 +638767.145|220644.732|127.888 +638762.106|220649.163|127.696 +638757.016|220653.644|127.721 +638751.929|220658.121|127.730 +638746.839|220662.599|127.730 +638741.752|220667.080|127.782 +638731.574|220676.038|127.907 +638726.484|220680.515|127.870 +638721.443|220684.953|127.821 +638716.353|220689.434|127.754 +638711.259|220693.920|127.583 +638706.218|220698.361|127.458 +638701.122|220702.845|127.260 +638696.074|220707.289|126.983 +638690.972|220711.779|126.626 +638685.918|220716.226|126.200 +638680.862|220720.676|125.813 +638675.753|220725.168|125.386 +638670.690|220729.622|124.852 +638665.634|220734.075|124.593 +638660.510|220738.577|123.889 +638655.487|220742.993|123.313 +638650.372|220747.495|122.944 +638645.304|220751.954|122.512 +638640.232|220756.417|122.112 +638635.169|220760.876|121.923 +638630.161|220765.286|121.972 +638625.107|220769.739|122.112 +638620.066|220774.189|122.457 +638615.022|220778.637|122.819 +638610.029|220783.041|123.203 +638605.033|220787.445|123.539 +638599.992|220791.892|123.932 +638594.993|220796.300|124.182 +638589.936|220800.756|124.307 +638584.932|220805.166|124.514 +638579.936|220809.571|124.880 +638574.895|220814.018|125.276 +638569.948|220818.383|125.633 +638564.906|220822.830|126.044 +638559.911|220827.234|126.437 +638554.921|220831.638|126.873 +638549.931|220836.037|127.382 +638545.003|220840.389|128.041 +638540.013|220844.790|128.483 +638535.075|220849.146|129.028 +638530.092|220853.547|129.568 +638525.096|220857.952|129.994 +638520.149|220862.316|130.369 +638515.196|220866.681|130.708 +638510.240|220871.052|130.970 +638505.272|220875.432|131.104 +638500.304|220879.809|131.272 +638495.339|220884.186|131.482 +638490.416|220888.526|131.607 +638485.442|220892.909|131.759 +638480.522|220897.244|131.970 +638475.588|220901.593|132.003 +638470.589|220905.985|131.336 +638465.642|220910.344|131.293 +638460.799|220914.626|132.439 +638455.910|220918.933|132.530 +638450.950|220923.301|132.399 +638446.061|220927.611|132.503 +638441.108|220931.973|132.485 +638436.219|220936.282|132.646 +638431.263|220940.641|132.110 +638426.344|220944.969|132.024 +638421.409|220949.316|131.774 +638416.535|220953.607|131.668 +638411.607|220957.948|131.543 +638406.736|220962.239|131.500 +638401.875|220966.522|131.601 +638397.022|220970.798|131.781 +638392.197|220975.056|132.250 +638387.323|220979.351|132.271 +638382.450|220983.642|132.317 +638377.646|220987.879|132.570 +638372.818|220992.131|132.637 +638367.938|220996.429|132.668 +638363.171|221000.632|132.863 +638358.343|221004.887|132.957 +638353.515|221009.139|133.094 +638348.754|221013.339|133.359 +638343.953|221017.570|133.335 +638339.165|221021.791|133.433 +638334.370|221026.019|133.500 +638329.585|221030.240|133.631 +638324.815|221034.440|133.536 +638320.057|221038.634|133.548 +638315.296|221042.832|133.554 +638310.529|221047.035|133.524 +638301.046|221055.392|133.570 +638291.637|221063.689|133.856 +638286.913|221067.853|133.890 +638282.198|221072.013|133.993 +638277.525|221076.131|134.064 +638268.101|221084.437|134.064 +638263.410|221088.573|134.054 +638258.710|221092.715|134.027 +638254.083|221096.797|134.146 +638249.322|221100.981|133.387 +638244.619|221105.127|133.381 +638239.952|221109.239|133.301 +638235.292|221113.341|132.957 +638230.665|221117.422|133.189 +638221.362|221125.615|132.719 +638212.084|221133.790|132.512 +638207.506|221137.826|132.488 +638175.155|221166.303|129.845 +638170.753|221170.193|130.452 +638166.191|221174.213|130.412 +638161.664|221178.200|130.296 +638157.141|221182.186|130.232 +638152.663|221186.131|130.138 +638148.158|221190.099|129.921 +638143.586|221194.122|129.620 +638138.978|221198.173|128.848 +638134.583|221202.050|129.016 +638130.203|221205.918|129.583 +638121.479|221213.617|130.375 +638116.938|221217.613|129.796 +638112.469|221221.548|129.348 +638108.062|221225.428|129.272 +638103.630|221229.333|129.071 +638094.800|221237.108|128.659 +638090.237|221241.120|127.827 +638085.769|221245.052|127.236 +638081.395|221248.901|126.910 +638077.024|221252.748|126.614 +638072.659|221256.594|126.370 +638068.289|221260.441|126.114 +638059.724|221267.988|126.056 +638051.095|221275.590|125.712 +638042.387|221283.252|124.798 +638037.915|221287.175|123.673 +638033.617|221290.964|123.408 +638029.372|221294.701|123.179 +638025.156|221298.413|123.121 +638020.968|221302.107|123.191 +638012.492|221309.566|122.426 +638003.689|221317.292|120.174 +637999.407|221321.054|119.409 +637995.103|221324.833|118.567 +637986.718|221332.206|117.744 +637982.591|221335.839|117.537 +637978.570|221339.378|117.601 +637974.437|221343.014|117.409 +637966.220|221350.241|116.559 +637958.103|221357.386|116.230 +637954.153|221360.867|116.461 +637950.181|221364.369|116.605 +637946.164|221367.901|116.333 +637942.226|221371.370|116.419 +637938.303|221374.823|116.348 +637934.368|221378.289|116.239 +637930.436|221381.749|116.163 +637926.626|221385.110|116.623 +637922.890|221388.408|117.187 +637911.475|221398.467|117.586 +637900.036|221408.541|117.760 +637896.573|221411.607|118.857 +637892.873|221414.868|119.192 +637889.112|221418.178|119.073 +637885.375|221421.467|119.058 +637881.650|221424.747|119.107 +637877.995|221427.969|119.232 +637874.298|221431.224|119.195 +637870.589|221434.488|119.125 +637863.234|221440.959|118.842 +637859.613|221444.147|118.720 +637855.983|221447.342|118.592 +637848.826|221453.645|118.756 +637845.196|221456.836|118.442 +637837.914|221463.237|117.552 +637834.388|221466.340|117.473 +637830.852|221469.452|117.354 +637827.331|221472.549|117.117 +637823.845|221475.618|117.001 +637799.787|221496.783|115.827 +637796.452|221499.716|115.775 +637793.087|221502.678|115.602 +637789.774|221505.592|115.437 +637786.464|221508.503|115.294 +637783.157|221511.414|115.166 +637779.908|221514.273|115.062 +637776.652|221517.135|114.953 +637773.449|221519.954|114.834 +637766.908|221525.706|114.337 +637763.936|221528.330|114.892 +637760.821|221531.070|114.928 +638041.030|221281.960|123.856 +638054.134|221270.426|125.794 +638058.468|221266.604|126.066 +638062.781|221262.803|126.227 +638067.027|221259.051|126.081 +638071.391|221255.204|126.282 +638075.765|221251.349|126.550 +638080.148|221247.487|126.895 +638084.568|221243.592|127.172 +638097.912|221231.835|128.614 +638102.347|221227.928|129.068 +638106.837|221223.972|129.269 +638111.235|221220.091|129.296 +638115.737|221216.123|129.613 +638124.570|221208.332|129.647 +638128.941|221204.470|129.299 +638133.309|221200.612|128.940 +638137.740|221196.698|128.659 +638142.422|221192.577|129.552 +638146.909|221188.624|129.933 +638151.453|221184.619|130.074 +638155.952|221180.653|130.257 +638160.524|221176.618|130.318 +638164.993|221172.677|130.360 +638169.568|221168.641|130.464 +638174.009|221164.718|130.080 +638183.241|221156.580|130.570 +638197.167|221144.312|131.811 +638201.843|221140.194|132.384 +638206.415|221136.158|132.320 +638211.082|221132.047|132.558 +638215.696|221127.972|132.497 +638220.357|221123.863|132.738 +638229.705|221115.618|132.802 +638234.350|221111.518|133.018 +638239.059|221107.367|133.335 +638243.790|221103.191|133.506 +638253.245|221094.855|134.179 +638257.975|221090.676|134.067 +638262.657|221086.543|133.960 +638272.103|221078.204|134.073 +638276.775|221074.080|133.951 +638281.497|221069.907|133.875 +638286.212|221065.743|133.747 +638291.003|221061.519|133.829 +638295.761|221057.313|133.707 +638305.268|221048.925|133.789 +638310.032|221044.715|133.768 +638314.778|221040.524|133.603 +638319.578|221036.284|133.512 +638324.416|221032.017|133.722 +638333.989|221023.562|133.408 +638338.787|221019.328|133.356 +638343.581|221015.095|133.308 +638348.419|221010.824|133.213 +638353.241|221006.563|133.012 +638358.069|221002.299|132.884 +638362.945|220997.992|132.762 +638367.783|220993.725|132.738 +638377.512|220985.130|132.387 +638382.376|220980.835|132.226 +638387.229|220976.547|131.970 +638397.001|220967.918|131.683 +638401.899|220963.590|131.448 +638406.824|220959.243|131.485 +638411.747|220954.897|131.540 +638416.676|220950.550|131.656 +638421.623|220946.188|131.982 +638426.594|220941.802|132.091 +638431.510|220937.462|132.168 +638436.494|220933.067|132.442 +638441.444|220928.696|132.418 +638446.406|220924.319|132.515 +638451.341|220919.960|132.369 +638456.309|220915.577|132.591 +638461.222|220911.228|131.665 +638466.145|220906.878|131.387 +638471.137|220902.471|131.396 +638476.139|220898.070|132.091 +638481.117|220893.671|131.976 +638486.094|220889.279|131.851 +638491.108|220884.847|131.619 +638496.079|220880.458|131.467 +638501.099|220876.023|131.329 +638506.110|220871.598|131.092 +638511.082|220867.209|130.964 +638516.135|220862.743|130.656 +638521.085|220858.369|130.296 +638526.136|220853.907|129.946 +638531.116|220849.503|129.327 +638536.157|220845.046|128.900 +638541.196|220840.593|128.397 +638551.212|220831.736|127.224 +638556.250|220827.283|126.733 +638561.297|220822.823|126.379 +638566.342|220818.364|126.002 +638571.383|220813.908|125.599 +638576.483|220809.406|125.288 +638581.521|220804.950|124.828 +638586.568|220800.491|124.532 +638591.671|220795.986|124.298 +638596.724|220791.523|124.148 +638601.821|220787.019|123.853 +638606.914|220782.517|123.463 +638611.955|220778.057|123.094 +638617.091|220773.513|122.627 +638622.139|220769.054|122.341 +638627.241|220764.546|122.143 +638632.392|220759.995|122.064 +638637.501|220755.484|122.079 +638642.621|220750.967|122.457 +638647.794|220746.407|123.002 +638652.905|220741.896|123.274 +638658.026|220737.382|123.776 +638663.195|220732.825|124.417 +638668.356|220728.271|124.868 +638673.516|220723.721|125.282 +638678.627|220719.216|125.791 +638683.782|220714.668|126.163 +638688.985|220710.081|126.645 +638694.087|220705.579|127.017 +638699.235|220701.037|127.321 +638704.429|220696.453|127.535 +638709.571|220691.915|127.715 +638714.710|220687.376|127.818 +638719.852|220682.838|127.910 +638724.988|220678.302|127.907 +638730.178|220673.721|128.031 +638735.314|220669.183|127.922 +638740.450|220664.647|127.897 +638745.589|220660.109|127.888 +638750.774|220655.531|127.870 +638755.864|220651.035|127.843 +638761.049|220646.457|127.907 +638766.187|220641.921|127.961 +638771.323|220637.383|128.019 +638776.462|220632.844|127.900 +638781.647|220628.263|127.775 +638786.786|220623.722|127.477 +638791.925|220619.186|127.547 +638797.113|220614.605|127.580 +638802.251|220610.064|127.449 +638812.532|220600.983|127.291 +638817.723|220596.396|126.986 +638822.871|220591.843|126.477 +638833.207|220582.711|126.197 +638838.358|220578.157|125.800 +638843.512|220573.597|125.218 +638848.715|220568.998|124.724 +638853.869|220564.438|124.310 +638859.011|220559.896|124.142 +638864.178|220555.324|123.411 +638869.381|220550.725|123.164 +638874.538|220546.168|122.929 +638879.707|220541.596|122.393 +638884.871|220537.030|121.999 +638890.043|220532.458|121.494 +638895.167|220527.926|121.015 +638900.391|220523.305|120.469 +638905.518|220518.770|120.037 +638910.696|220514.195|119.619 +638915.878|220509.610|119.110 +638921.014|220505.069|118.647 +638926.196|220500.488|118.275 +638931.335|220495.943|117.818 +638936.477|220491.395|117.312 +638941.673|220486.799|116.739 +638946.828|220482.239|116.141 +638951.979|220477.682|115.635 +638957.179|220473.089|115.239 +638962.287|220468.569|114.700 +638967.499|220463.957|114.123 +638972.672|220459.382|113.432 +638977.829|220454.822|113.072 +638982.965|220450.287|113.185 +638988.064|220445.782|113.063 +638993.209|220441.234|113.002 +638998.351|220436.693|113.069 +639003.450|220432.188|113.054 +639008.611|220427.628|112.855 +639013.771|220423.065|112.679 +639018.885|220418.545|112.468 +639024.003|220414.022|112.310 +639029.118|220409.502|112.176 +639034.244|220404.969|111.923 +639039.374|220400.434|111.639 +639044.513|220395.889|111.286 +639049.652|220391.345|110.941 +639054.760|220386.821|110.393 +639059.912|220382.268|109.996 +639065.066|220377.711|109.609 +639070.168|220373.197|109.259 +639075.328|220368.634|108.850 +639080.388|220364.156|108.494 +639085.561|220359.581|108.037 +639090.669|220355.067|107.781 +639095.787|220350.541|107.442 +639100.913|220346.009|107.058 +639105.973|220341.534|106.894 +639111.091|220337.008|106.641 +639116.160|220332.530|106.452 +639121.292|220327.989|106.113 +639126.379|220323.490|105.772 +639131.494|220318.973|105.714 +639141.656|220309.990|105.336 +639146.749|220305.485|105.065 +639151.855|220300.974|104.726 +639156.957|220296.460|104.416 +639162.069|220291.940|104.065 +639167.177|220287.423|103.779 +639187.553|220269.406|102.575 +639192.637|220264.910|102.215 +639202.738|220255.992|102.629 +639222.803|220238.280|103.602 +639227.784|220233.888|104.288 +639232.807|220229.450|104.217 +639237.894|220224.951|103.666 +639243.030|220220.406|103.148 +639248.123|220215.898|102.602 +639253.283|220211.332|101.971 +639258.337|220206.858|101.401 +639268.508|220197.863|100.685 +639273.577|220193.383|100.514 +639288.811|220179.914|99.548 +639293.950|220175.363|98.963 +639299.025|220170.876|98.527 +639324.567|220148.272|95.598 +639334.513|220139.494|96.162 +639379.111|220100.135|98.826 +639384.055|220095.770|98.993 +639393.949|220087.035|99.063 +639403.873|220078.266|99.018 +639408.863|220073.858|98.725 +639413.803|220069.494|98.743 +639418.769|220065.107|98.646 +639423.688|220060.761|98.524 +639428.720|220056.311|98.085 +639433.695|220051.913|97.704 +639438.706|220047.478|97.152 +639443.695|220043.064|96.454 +639448.712|220038.623|95.918 +639453.540|220034.362|96.180 +639467.933|220021.670|97.582 +639472.807|220017.367|97.670 +639477.680|220013.060|97.484 +639487.343|220004.525|97.387 +639492.131|220000.301|97.737 +639496.846|219996.140|97.932 +639501.684|219991.867|98.051 +639506.292|219987.807|98.844 +639525.528|219970.808|98.057 +639530.234|219966.651|98.164 +639553.728|219945.903|98.164 +639558.544|219941.639|97.600 +639572.318|219929.486|98.530 +639581.404|219921.473|99.432 +639574.577|219924.966|98.755 +639569.922|219929.063|98.460 +639555.877|219941.428|97.811 +639551.101|219945.641|97.920 +639546.294|219949.881|98.204 +639531.990|219962.481|98.085 +639527.305|219966.608|97.847 +639522.511|219970.833|97.908 +639517.771|219975.005|97.719 +639503.110|219987.941|99.005 +639498.523|219991.967|97.847 +639493.771|219996.152|97.551 +639479.311|220008.887|97.292 +639474.517|220013.112|97.030 +639469.615|220017.431|97.347 +639464.784|220021.689|97.320 +639460.005|220025.895|97.030 +639455.217|220030.107|96.527 +639450.465|220034.286|95.823 +639445.591|220038.584|96.107 +639440.641|220042.951|96.567 +639435.639|220047.368|97.341 +639430.708|220051.718|97.737 +639425.712|220056.128|98.256 +639420.847|220060.414|98.329 +639415.910|220064.769|98.557 +639411.018|220069.079|98.530 +639406.095|220073.416|98.716 +639401.166|220077.763|98.960 +639391.382|220086.386|99.088 +639386.481|220090.702|98.932 +639381.574|220095.024|98.829 +639376.660|220099.352|98.783 +639371.805|220103.625|98.387 +639332.614|220138.125|96.192 +639322.820|220146.742|95.278 +639317.636|220151.329|96.671 +639297.403|220169.182|98.719 +639292.328|220173.659|99.167 +639287.226|220178.167|99.856 +639277.097|220187.104|100.770 +639272.019|220191.581|100.993 +639261.869|220200.530|101.483 +639256.837|220204.968|101.837 +639251.671|220209.528|102.471 +639246.572|220214.030|103.032 +639241.442|220218.553|103.449 +639236.352|220223.046|104.004 +639231.228|220227.566|104.455 +639226.208|220231.992|104.510 +639221.145|220236.448|104.086 +639185.645|220267.705|102.602 +639170.158|220281.363|103.742 +639165.019|220285.893|103.803 +639159.847|220290.453|104.205 +639154.634|220295.052|104.565 +639149.432|220299.642|104.891 +639144.265|220304.199|105.373 +639139.068|220308.780|105.668 +639133.884|220313.352|105.894 +639128.705|220317.918|106.104 +639123.493|220322.512|106.156 +639118.357|220327.041|106.467 +639113.136|220331.646|106.705 +639107.921|220336.240|106.860 +639102.703|220340.839|107.110 +639097.484|220345.436|107.378 +639092.318|220349.986|107.631 +639087.051|220354.628|107.954 +639081.836|220359.228|108.326 +639076.615|220363.827|108.768 +639071.360|220368.460|109.079 +639066.151|220373.054|109.472 +639060.890|220377.690|109.914 +639055.635|220382.320|110.326 +639050.377|220386.956|110.838 +639045.129|220391.582|111.277 +639039.889|220396.203|111.655 +639034.659|220400.812|111.914 +639029.428|220405.420|112.200 +639024.162|220410.056|112.316 +639018.943|220414.653|112.505 +639013.679|220419.292|112.691 +639008.461|220423.891|112.956 +639003.203|220428.521|113.121 +638997.952|220433.148|113.203 +638992.706|220437.766|113.194 +638987.509|220442.341|113.224 +638982.264|220446.959|113.291 +638977.024|220451.573|113.273 +638971.779|220456.191|113.404 +638966.521|220460.827|113.834 +638961.248|220465.481|114.614 +638955.990|220470.114|115.117 +638950.744|220474.741|115.480 +638945.493|220479.371|116.028 +638940.241|220484.001|116.592 +638934.992|220488.631|117.196 +638929.747|220493.258|117.757 +638924.513|220497.869|118.132 +638919.283|220502.478|118.427 +638914.001|220507.138|118.924 +638908.764|220511.753|119.512 +638903.585|220516.319|119.960 +638898.309|220520.970|120.415 +638893.085|220525.579|120.945 +638887.864|220530.178|121.341 +638882.643|220534.784|121.884 +638877.424|220539.383|122.356 +638872.212|220543.980|122.786 +638867.000|220548.570|123.112 +638861.742|220553.209|123.603 +638856.582|220557.754|123.914 +638851.337|220562.380|124.456 +638846.134|220566.968|124.828 +638840.979|220571.509|125.206 +638835.728|220576.139|125.745 +638830.528|220580.723|126.230 +638814.989|220594.415|127.126 +638809.847|220598.947|127.376 +638804.656|220603.516|127.489 +638799.469|220608.085|127.513 +638794.327|220612.612|127.519 +638789.139|220617.181|127.632 +638784.000|220621.704|127.583 +638778.861|220626.230|127.785 +638773.722|220630.756|127.913 +638768.583|220635.283|128.172 +638763.444|220639.806|128.105 +638758.305|220644.329|128.013 +638753.166|220648.852|128.022 +638748.076|220653.333|128.016 +638742.940|220657.856|127.989 +638737.850|220662.337|127.992 +638732.711|220666.863|128.019 +638727.621|220671.344|128.047 +638722.531|220675.824|128.044 +638717.438|220680.305|128.013 +638712.347|220684.782|127.910 +638707.303|220689.220|127.830 +638702.158|220693.743|127.638 +638697.110|220698.181|127.404 +638692.011|220702.665|127.111 +638686.909|220707.149|126.818 +638681.852|220711.593|126.337 +638676.789|220716.037|125.855 +638671.727|220720.484|125.349 +638666.667|220724.931|125.011 +638661.552|220729.426|124.514 +638656.532|220733.837|123.978 +638651.461|220738.290|123.453 +638646.395|220742.743|123.188 +638641.323|220747.199|122.707 +638636.300|220751.613|122.387 +638631.286|220756.023|122.265 +638626.229|220760.473|122.298 +638621.221|220764.878|122.393 +638616.223|220769.282|122.673 +638611.230|220773.677|123.121 +638606.234|220778.079|123.505 +638601.242|220782.477|123.923 +638596.292|220786.836|124.234 +638591.287|220791.243|124.380 +638586.282|220795.647|124.602 +638581.332|220800.006|124.944 +638576.339|220804.404|125.374 +638571.389|220808.763|125.691 +638566.394|220813.164|126.047 +638561.496|220817.477|126.443 +638556.494|220821.882|126.748 +638546.612|220830.590|127.739 +638541.680|220834.936|128.367 +638536.782|220839.252|128.766 +638531.838|220843.608|129.217 +638526.907|220847.954|129.851 +638521.954|220852.316|130.183 +638517.053|220856.632|130.577 +638512.100|220860.994|130.921 +638507.235|220865.276|131.134 +638502.270|220869.647|131.314 +638497.399|220873.932|131.506 +638492.428|220878.309|131.662 +638487.560|220882.595|131.890 +638482.583|220886.975|131.979 +638477.706|220891.266|132.131 +638472.753|220895.622|131.997 +638467.812|220899.959|131.436 +638462.920|220904.263|131.467 +638458.122|220908.500|132.610 +638453.224|220912.810|132.607 +638448.314|220917.129|132.472 +638443.431|220921.426|132.680 +638438.557|220925.709|132.494 +638433.641|220930.034|132.357 +638428.764|220934.320|132.174 +638423.829|220938.657|131.924 +638419.017|220942.891|131.927 +638414.076|220947.234|131.649 +638409.254|220951.474|131.634 +638404.362|220955.777|131.393 +638399.491|220960.060|131.427 +638394.675|220964.297|131.515 +638389.881|220968.521|131.817 +638385.068|220972.758|131.951 +638380.249|220976.998|132.061 +638375.439|220981.231|132.280 +638370.629|220985.462|132.521 +638365.853|220989.668|132.600 +638361.022|220993.917|132.674 +638356.246|220998.120|132.814 +638351.418|221002.369|132.954 +638346.678|221006.539|133.021 +638341.899|221010.745|133.180 +638337.101|221014.964|133.216 +638332.356|221019.139|133.286 +638327.558|221023.358|133.372 +638322.812|221027.534|133.469 +638318.097|221031.679|133.457 +638313.345|221035.858|133.545 +638308.615|221040.015|133.451 +638303.872|221044.188|133.661 +638299.145|221048.345|133.603 +638294.405|221052.512|133.509 +638289.696|221056.654|133.631 +638285.029|221060.760|133.737 +638275.644|221069.014|133.981 +638270.990|221073.104|133.868 +638266.324|221077.210|134.042 +638261.608|221081.355|133.862 +638256.966|221085.437|133.893 +638252.300|221089.545|134.115 +638247.633|221093.645|134.012 +638243.052|221097.674|134.176 +638238.300|221101.844|133.527 +638233.600|221105.974|133.253 +638228.961|221110.049|133.088 +638224.276|221114.164|132.631 +638219.695|221118.197|132.878 +638215.081|221122.247|132.607 +638210.484|221126.286|132.469 +638205.827|221130.383|132.274 +638201.206|221134.439|132.021 +638196.613|221138.478|131.970 +638191.913|221142.599|130.942 +638187.322|221146.631|130.964 +638173.548|221158.729|129.842 +638169.114|221162.637|130.564 +638164.590|221166.614|130.458 +638160.079|221170.580|130.452 +638155.611|221174.505|130.412 +638151.063|221178.501|130.211 +638146.558|221182.461|129.997 +638142.062|221186.411|129.851 +638137.521|221190.398|129.464 +638133.034|221194.339|129.129 +638128.566|221198.265|128.912 +638124.155|221202.148|129.318 +638110.948|221213.758|129.370 +638106.532|221217.638|129.251 +638102.118|221221.518|129.162 +638097.629|221225.459|128.675 +638093.279|221229.284|128.690 +638088.896|221233.134|128.553 +638075.628|221244.780|127.062 +638071.181|221248.682|126.386 +638066.801|221252.525|126.096 +638062.433|221256.363|125.889 +638058.102|221260.167|125.621 +638045.285|221271.432|125.550 +638040.762|221275.388|124.130 +638036.464|221279.165|123.859 +638032.151|221282.954|123.527 +638027.912|221286.675|123.341 +638023.708|221290.369|123.338 +638019.639|221293.954|123.743 +638006.862|221305.164|122.323 +637993.786|221316.625|119.156 +637989.580|221320.319|118.784 +637981.143|221327.726|117.754 +637977.123|221331.261|117.808 +637972.999|221334.885|117.659 +637968.945|221338.452|117.592 +637964.952|221341.960|117.586 +637960.852|221345.566|117.333 +637956.847|221349.086|117.306 +637952.833|221352.616|117.232 +637945.106|221359.425|118.253 +637937.188|221366.390|118.232 +637933.100|221369.971|117.452 +637925.203|221376.911|116.922 +637909.966|221390.323|117.964 +637906.168|221393.660|117.851 +637902.279|221397.080|117.815 +637898.603|221400.320|118.229 +637880.224|221416.499|119.589 +637876.548|221419.733|119.625 +637872.884|221422.955|119.729 +637869.293|221426.112|119.918 +637861.993|221432.531|119.845 +637858.208|221435.851|119.287 +637850.908|221442.261|118.638 +637847.287|221445.443|118.558 +637843.681|221448.613|118.333 +637840.154|221451.709|118.235 +637833.114|221457.897|118.095 +637829.499|221461.070|117.674 +637822.485|221467.230|117.077 +637818.977|221470.308|116.906 +637815.527|221473.341|116.745 +637801.893|221485.320|116.257 +637798.549|221488.258|116.147 +637795.199|221491.202|116.022 +637791.926|221494.077|115.995 +637788.631|221496.972|115.894 +637785.345|221499.859|115.833 +637782.130|221502.684|115.852 +637778.883|221505.537|115.751 +637775.686|221508.347|115.647 +637772.556|221511.100|115.794 +637769.307|221513.950|115.516 +637766.085|221516.781|115.343 +637762.921|221519.558|114.989 +637759.748|221522.344|114.818 +637756.694|221525.029|114.885 +638041.338|221272.261|124.407 +638054.268|221260.859|125.310 +638058.593|221257.042|125.547 +638062.927|221253.220|125.855 +638067.255|221249.404|126.142 +638071.635|221245.542|126.465 +638080.511|221237.724|127.763 +638084.888|221233.865|128.138 +638089.311|221229.964|128.492 +638093.688|221226.102|128.620 +638098.092|221222.216|128.632 +638102.512|221218.321|129.034 +638106.934|221214.416|129.199 +638115.792|221206.601|129.348 +638120.114|221202.779|129.004 +638124.576|221198.838|128.885 +638128.956|221194.967|128.601 +638133.488|221190.974|129.211 +638138.018|221186.978|129.534 +638142.541|221182.991|129.830 +638147.089|221178.980|130.001 +638151.584|221175.011|130.196 +638156.132|221171.000|130.406 +638160.649|221167.013|130.458 +638165.157|221163.033|130.485 +638169.711|221159.012|130.488 +638174.103|221155.129|129.833 +638178.703|221151.072|130.150 +638183.345|221146.979|130.446 +638192.537|221138.868|130.845 +638197.289|221134.689|131.899 +638201.886|221130.632|132.003 +638206.543|221126.524|132.204 +638211.139|221122.467|132.341 +638215.818|221118.343|132.722 +638220.439|221114.259|132.399 +638225.121|221110.135|132.838 +638229.830|221105.983|133.146 +638234.521|221101.847|133.347 +638239.273|221097.662|133.999 +638243.918|221093.566|133.929 +638248.587|221089.445|134.070 +638253.245|221085.333|133.771 +638257.963|221081.172|133.932 +638262.645|221077.042|133.847 +638267.363|221072.882|134.057 +638272.106|221068.691|133.743 +638276.766|221064.579|133.551 +638281.512|221060.394|133.646 +638286.282|221056.182|133.585 +638290.991|221052.024|133.460 +638295.728|221047.849|133.539 +638300.477|221043.658|133.369 +638305.250|221039.448|133.399 +638310.053|221035.209|133.305 +638314.830|221030.996|133.396 +638319.584|221026.799|133.356 +638324.382|221022.565|133.262 +638329.183|221018.332|133.216 +638334.038|221014.046|133.231 +638338.763|221009.877|133.015 +638343.600|221005.606|132.930 +638348.443|221001.333|132.887 +638353.280|220997.066|132.826 +638358.093|220992.817|132.582 +638362.921|220988.556|132.500 +638367.749|220984.295|132.396 +638372.614|220980.000|132.241 +638377.478|220975.708|132.070 +638382.312|220971.444|132.101 +638387.147|220967.174|131.689 +638391.996|220962.892|131.430 +638396.906|220958.557|131.329 +638401.789|220954.250|131.427 +638406.760|220949.864|131.464 +638411.640|220945.564|131.579 +638416.612|220941.178|131.640 +638421.485|220936.880|131.771 +638426.478|220932.482|132.107 +638431.401|220928.141|132.259 +638436.360|220923.767|132.311 +638441.276|220919.430|132.463 +638446.272|220915.023|132.415 +638451.179|220910.694|132.515 +638456.187|220906.278|132.664 +638461.024|220901.995|131.403 +638465.977|220897.628|131.534 +638470.985|220893.211|131.729 +638476.011|220888.785|132.168 +638480.937|220884.436|132.046 +638485.911|220880.047|131.887 +638490.928|220875.618|131.710 +638495.848|220871.275|131.543 +638500.868|220866.846|131.393 +638505.830|220862.466|131.171 +638510.838|220858.046|130.915 +638515.839|220853.627|130.592 +638520.838|220849.213|130.257 +638525.837|220844.800|129.863 +638530.817|220840.395|129.263 +638535.862|220835.939|128.870 +638540.851|220831.532|128.412 +638545.838|220827.127|127.864 +638550.867|220822.680|127.245 +638555.906|220818.230|126.782 +638560.959|220813.768|126.520 +638565.955|220809.357|126.154 +638571.042|220804.862|125.712 +638576.089|220800.405|125.404 +638581.134|220795.952|125.008 +638586.227|220791.453|124.657 +638591.275|220786.994|124.407 +638596.328|220782.538|124.203 +638601.421|220778.039|123.868 +638606.466|220773.586|123.490 +638611.602|220769.051|123.036 +638616.643|220764.597|122.609 +638621.749|220760.096|122.490 +638626.903|220755.548|122.454 +638631.962|220751.086|122.518 +638637.123|220746.538|122.615 +638642.237|220742.030|122.853 +638647.361|220737.519|123.426 +638652.524|220732.971|123.767 +638657.648|220728.460|124.462 +638662.808|220723.916|124.788 +638667.969|220719.371|125.236 +638673.129|220714.827|125.724 +638678.286|220710.285|126.191 +638683.446|220705.743|126.745 +638688.549|220701.248|127.102 +638693.697|220696.712|127.346 +638698.891|220692.134|127.647 +638703.987|220687.644|127.849 +638709.178|220683.069|127.967 +638714.316|220678.537|128.010 +638719.458|220674.005|128.123 +638724.646|220669.430|128.147 +638729.782|220664.900|128.147 +638734.921|220660.368|128.117 +638740.109|220655.793|128.132 +638745.293|220651.221|128.163 +638750.384|220646.731|128.153 +638755.571|220642.159|128.172 +638760.756|220637.587|128.245 +638765.895|220633.055|128.297 +638771.080|220628.480|128.123 +638776.267|220623.904|127.940 +638781.406|220619.372|127.885 +638786.591|220614.797|127.797 +638791.779|220610.219|127.721 +638796.920|220605.687|127.742 +638802.108|220601.115|127.766 +638807.299|220596.533|127.516 +638812.441|220591.995|127.294 +638833.173|220573.692|125.889 +638838.373|220569.098|125.450 +638843.528|220564.548|125.023 +638848.731|220559.954|124.621 +638854.473|220554.885|124.161 +638859.036|220550.856|123.853 +638864.248|220546.253|123.313 +638869.460|220541.648|122.801 +638874.626|220537.085|122.271 +638879.842|220532.483|121.914 +638885.017|220527.908|121.213 +638890.189|220523.339|120.759 +638895.414|220518.727|120.287 +638900.586|220514.161|119.963 +638905.765|220509.589|119.512 +638910.943|220505.014|119.095 +638916.134|220500.430|118.479 +638921.316|220495.855|118.116 +638926.500|220491.280|117.775 +638931.642|220486.735|117.278 +638936.842|220482.142|116.647 +638942.045|220477.545|116.062 +638947.196|220472.995|115.535 +638952.393|220468.407|115.181 +638957.596|220463.814|114.739 +638962.720|220459.285|113.977 +638967.923|220454.691|113.642 +638973.068|220450.156|113.566 +638978.216|220445.614|113.444 +638983.358|220441.079|113.450 +638988.503|220436.541|113.441 +638993.648|220431.999|113.410 +638998.747|220427.500|113.407 +639003.856|220422.992|113.288 +639009.022|220418.432|113.038 +639014.188|220413.869|112.810 +639019.309|220409.352|112.602 +639024.427|220404.835|112.435 +639029.493|220400.364|112.359 +639034.680|220395.786|111.999 +639039.764|220391.296|111.725 +639044.906|220386.754|111.353 +639050.054|220382.207|110.941 +639055.169|220377.687|110.384 +639060.280|220373.172|109.905 +639065.386|220368.661|109.530 +639070.488|220364.156|109.237 +639075.603|220359.639|108.847 +639080.717|220355.125|108.506 +639085.832|220350.608|108.171 +639090.901|220346.131|107.838 +639096.018|220341.610|107.540 +639101.084|220337.142|107.326 +639106.196|220332.631|107.183 +639121.402|220319.208|106.674 +639141.760|220301.233|105.577 +639146.829|220296.759|105.101 +639151.940|220292.245|104.726 +639157.009|220287.767|104.312 +639162.072|220283.293|103.971 +639167.119|220278.840|103.827 +639172.170|220274.384|103.696 +639182.310|220265.432|103.138 +639187.349|220260.988|103.193 +639192.399|220256.531|103.166 +639212.373|220238.923|103.983 +639217.378|220234.516|104.461 +639222.346|220230.136|104.827 +639227.360|220225.713|104.845 +639232.404|220221.260|104.620 +639237.470|220216.788|104.266 +639242.502|220212.341|103.809 +639247.596|220207.843|103.282 +639252.643|220203.380|102.760 +639257.745|220198.875|102.255 +639262.793|220194.416|101.806 +639293.154|220167.597|99.228 +639298.223|220163.119|98.856 +639303.310|220158.629|98.390 +639313.445|220149.674|97.454 +639328.712|220136.178|95.326 +639343.355|220123.288|97.317 +639358.311|220110.096|97.399 +639368.175|220101.397|97.807 +639373.073|220097.078|98.240 +639387.871|220084.023|98.734 +639392.858|220079.619|98.704 +639397.780|220075.276|98.789 +639402.767|220070.871|98.502 +639407.747|220066.473|98.289 +639412.685|220062.114|98.338 +639417.644|220057.737|98.304 +639422.600|220053.357|97.996 +639427.611|220048.932|97.701 +639432.558|220044.561|97.497 +639437.578|220040.123|96.917 +639442.616|220035.664|96.250 +639447.652|220031.211|95.640 +639471.965|220009.762|96.582 +639476.803|220005.491|96.622 +639481.667|220001.197|96.546 +639486.514|219996.924|96.872 +639491.348|219992.656|96.988 +639496.072|219988.493|97.436 +639500.906|219984.232|97.609 +639510.507|219975.755|97.783 +639515.445|219971.387|97.213 +639520.228|219967.172|97.463 +639524.973|219962.984|97.643 +639529.756|219958.766|97.661 +639534.559|219954.526|97.850 +639543.969|219946.223|98.222 +639548.809|219941.947|97.789 +639553.704|219937.622|97.359 +639558.450|219933.427|97.164 +639572.278|219921.239|98.640 +639574.717|219916.218|98.484 +639565.323|219924.469|97.984 +639556.011|219932.638|96.671 +639551.113|219936.954|97.332 +639546.218|219941.264|97.747 +639541.332|219945.562|98.134 +639536.522|219949.792|98.185 +639526.973|219958.180|97.478 +639522.142|219962.426|97.430 +639512.449|219970.945|97.289 +639507.581|219975.222|97.213 +639493.003|219988.039|97.021 +639488.160|219992.291|96.634 +639483.322|219996.543|96.512 +639478.400|220000.871|96.299 +639473.517|220005.168|96.460 +639458.688|220018.217|96.658 +639453.802|220022.512|96.366 +639448.987|220026.739|95.683 +639444.024|220031.104|95.842 +639423.840|220048.892|97.807 +639418.845|220053.287|97.993 +639413.797|220057.734|98.222 +639408.841|220062.093|98.231 +639403.836|220066.497|98.265 +639398.789|220070.941|98.569 +639393.796|220075.334|98.560 +639388.849|220079.683|98.307 +639383.942|220083.996|98.131 +639378.910|220088.425|98.131 +639368.970|220097.163|97.734 +639364.023|220101.507|97.237 +639308.739|220150.153|97.716 +639303.615|220154.670|98.393 +639298.522|220159.157|98.865 +639293.441|220163.634|99.295 +639288.311|220168.154|99.749 +639278.051|220177.198|101.121 +639262.808|220190.624|102.172 +639257.715|220195.111|102.541 +639252.607|220199.613|103.062 +639247.455|220204.151|103.568 +639242.359|220208.644|104.092 +639237.269|220213.128|104.571 +639232.154|220217.633|104.876 +639227.052|220222.125|105.135 +639222.026|220226.548|105.202 +639216.981|220230.983|105.013 +639211.971|220235.387|104.556 +639206.950|220239.792|103.763 +639191.759|220253.151|103.486 +639186.712|220257.592|103.449 +639181.631|220262.060|103.309 +639176.562|220266.523|103.498 +639171.380|220271.086|103.867 +639166.339|220275.523|103.897 +639161.191|220280.053|104.007 +639156.067|220284.564|104.379 +639150.904|220289.115|104.714 +639145.789|220293.620|105.086 +639140.672|220298.128|105.534 +639135.441|220302.736|106.138 +639130.333|220307.235|106.549 +639109.728|220325.374|107.232 +639104.608|220329.885|107.406 +639099.447|220334.429|107.534 +639094.278|220338.986|107.805 +639089.105|220343.546|108.119 +639083.945|220348.090|108.329 +639078.776|220352.650|108.695 +639073.564|220357.244|109.036 +639068.397|220361.800|109.445 +639063.194|220366.382|109.701 +639057.991|220370.972|110.054 +639052.828|220375.526|110.539 +639047.616|220380.122|111.072 +639042.410|220384.712|111.548 +639037.213|220389.296|111.984 +639032.022|220393.868|112.328 +639026.844|220398.434|112.584 +639021.629|220403.025|112.630 +639016.407|220407.624|112.825 +639011.235|220412.184|113.072 +639006.026|220416.774|113.200 +639000.808|220421.371|113.435 +638995.647|220425.918|113.614 +638990.448|220430.499|113.657 +638985.251|220435.074|113.636 +638980.057|220439.646|113.642 +638974.808|220444.270|113.752 +638969.617|220448.842|113.758 +638964.418|220453.420|113.901 +638959.163|220458.053|114.255 +638953.954|220462.650|114.788 +638948.693|220467.286|115.334 +638943.444|220471.916|115.757 +638938.244|220476.503|116.233 +638932.990|220481.136|116.864 +638927.741|220485.766|117.440 +638922.504|220490.384|117.833 +638917.271|220494.998|118.159 +638912.035|220499.613|118.586 +638906.801|220504.228|119.070 +638901.623|220508.793|119.396 +638896.346|220513.445|119.820 +638891.116|220518.056|120.344 +638885.889|220522.671|120.942 +638880.664|220527.277|121.478 +638875.391|220531.928|122.070 +638870.222|220536.488|122.566 +638864.955|220541.133|123.121 +638859.743|220545.732|123.630 +638854.531|220550.326|124.075 +638849.337|220554.904|124.316 +638844.079|220559.540|124.886 +638838.873|220564.130|125.297 +638833.670|220568.717|125.651 +638828.467|220573.301|126.090 +638807.631|220591.669|127.486 +638802.440|220596.244|127.702 +638797.247|220600.819|127.946 +638792.059|220605.388|127.806 +638786.868|220609.960|127.940 +638781.677|220614.532|128.230 +638776.490|220619.101|128.233 +638771.302|220623.673|128.400 +638766.114|220628.239|128.224 +638760.927|220632.811|128.388 +638755.785|220637.334|128.257 +638750.548|220641.946|128.263 +638745.409|220646.472|128.224 +638740.267|220650.995|128.245 +638735.080|220655.564|128.211 +638729.892|220660.133|128.233 +638724.799|220664.617|128.181 +638719.608|220669.186|128.160 +638714.469|220673.712|128.160 +638709.330|220678.238|128.080 +638704.185|220682.768|127.961 +638699.043|220687.297|127.843 +638693.898|220691.826|127.583 +638688.747|220696.356|127.273 +638683.644|220700.845|126.962 +638678.539|220705.338|126.517 +638673.379|220709.874|125.956 +638668.316|220714.327|125.468 +638663.156|220718.865|125.060 +638658.041|220723.364|124.648 +638652.972|220727.823|124.115 +638647.855|220732.325|123.658 +638642.728|220736.830|123.066 +638637.665|220741.286|122.908 +638632.557|220745.788|122.819 +638627.543|220750.202|122.704 +638622.428|220754.704|122.591 +638617.420|220759.117|122.652 +638612.367|220763.570|122.844 +638607.322|220768.017|123.252 +638602.333|220772.419|123.706 +638597.291|220776.866|124.170 +638592.290|220781.276|124.386 +638587.285|220785.687|124.584 +638582.286|220790.094|124.941 +638577.287|220794.498|125.282 +638572.292|220798.906|125.651 +638567.342|220803.271|125.992 +638562.349|220807.675|126.407 +638557.393|220812.043|126.657 +638552.446|220816.404|127.090 +638547.496|220820.769|127.428 +638542.567|220825.122|128.120 +638537.624|220829.480|128.589 +638532.680|220833.842|129.050 +638527.733|220838.204|129.464 +638522.844|220842.520|129.979 +638517.891|220846.884|130.327 +638513.035|220851.167|130.680 +638508.085|220855.532|131.049 +638503.169|220859.866|131.250 +638498.249|220864.200|131.421 +638493.382|220868.492|131.637 +638488.407|220872.872|131.774 +638483.534|220877.166|131.936 +638478.654|220881.467|132.064 +638473.725|220885.811|132.192 +638468.787|220890.151|131.634 +638463.886|220894.467|131.567 +638458.994|220898.777|131.585 +638454.191|220903.020|132.692 +638449.332|220907.299|132.582 +638444.428|220911.618|132.524 +638439.572|220915.894|132.503 +638434.708|220920.177|132.415 +638429.776|220924.517|132.143 +638424.951|220928.766|131.985 +638420.038|220933.094|131.954 +638415.182|220937.361|131.558 +638410.305|220941.656|131.442 +638405.483|220945.902|131.421 +638400.597|220950.203|131.290 +638395.821|220954.409|131.272 +638390.954|220958.697|131.345 +638386.196|220962.892|131.528 +638381.386|220967.131|131.713 +638376.588|220971.359|132.040 +638371.812|220975.568|132.107 +638367.002|220979.808|132.338 +638362.223|220984.017|132.433 +638357.444|220988.227|132.533 +638352.668|220992.439|132.664 +638347.879|220996.654|132.744 +638343.139|221000.830|132.802 +638338.351|221005.045|132.902 +638333.563|221009.261|133.003 +638328.875|221013.391|133.137 +638324.123|221017.573|133.180 +638319.374|221021.755|133.271 +638314.610|221025.949|133.237 +638309.895|221030.100|133.231 +638305.125|221034.297|133.207 +638300.400|221038.455|133.177 +638295.682|221042.609|133.201 +638290.976|221046.751|133.341 +638286.288|221050.878|133.265 +638281.570|221055.030|133.359 +638276.903|221059.138|133.475 +638272.255|221063.235|133.737 +638267.601|221067.335|133.975 +638262.913|221071.458|133.622 +638248.953|221083.748|133.817 +638244.320|221087.826|133.935 +638239.657|221091.932|133.865 +638235.057|221095.980|133.911 +638230.293|221100.165|133.195 +638225.654|221104.243|133.033 +638221.012|221108.327|132.860 +638216.382|221112.399|132.436 +638211.776|221116.453|132.558 +638207.153|221120.519|132.223 +638202.535|221124.579|131.979 +638197.939|221128.624|131.875 +638193.284|221132.714|131.442 +638184.088|221140.798|130.692 +638179.455|221144.867|130.147 +638174.969|221148.826|130.814 +638170.452|221152.801|130.720 +638165.919|221156.787|130.534 +638161.414|221160.753|130.531 +638156.903|221164.721|130.513 +638152.371|221168.708|130.394 +638147.872|221172.668|130.180 +638143.373|221176.624|129.994 +638138.859|221180.592|129.738 +638134.330|221184.576|129.418 +638129.846|221188.517|129.095 +638125.350|221192.467|128.720 +638120.900|221196.384|128.611 +638116.554|221200.212|128.830 +638098.973|221215.687|129.056 +638094.556|221219.570|128.687 +638090.179|221223.420|128.550 +638085.751|221227.315|128.156 +638076.991|221235.018|127.672 +638072.662|221238.824|127.605 +638063.796|221246.609|126.151 +638059.394|221250.477|125.764 +638055.051|221254.296|125.422 +638050.720|221258.103|125.172 +638046.456|221261.855|125.008 +638037.784|221269.472|124.036 +638033.493|221273.246|123.792 +638029.204|221277.019|123.584 +638024.973|221280.738|123.426 +638020.825|221284.392|123.682 +638016.674|221288.047|123.694 +638012.440|221291.771|123.563 +637999.510|221303.113|121.198 +637990.869|221310.681|119.311 +637986.706|221314.336|118.906 +637982.380|221318.124|117.991 +637978.382|221321.642|118.132 +637970.118|221328.899|117.729 +637966.104|221332.432|117.839 +637962.117|221335.937|118.095 +637958.067|221339.497|118.071 +637954.095|221342.990|118.174 +637950.078|221346.523|118.092 +637946.231|221349.906|118.558 +637922.542|221370.727|118.378 +637914.809|221377.524|118.369 +637910.920|221380.941|118.290 +637907.031|221384.358|118.220 +637903.364|221387.589|118.891 +637899.392|221391.069|118.272 +637877.346|221410.470|120.073 +637873.582|221413.777|119.963 +637869.900|221417.011|119.982 +637866.239|221420.233|120.094 +637847.768|221436.445|118.680 +637840.593|221442.742|118.375 +637836.948|221445.946|118.220 +637833.403|221449.058|118.049 +637829.883|221452.151|117.979 +637822.811|221458.360|117.772 +637819.209|221461.518|117.211 +637815.691|221464.606|116.998 +637812.238|221467.638|116.824 +637808.748|221470.705|116.733 +637805.428|221473.618|116.690 +637802.009|221476.624|116.681 +637798.653|221479.571|116.723 +637795.199|221482.601|116.403 +637791.865|221485.530|116.330 +637788.591|221488.404|116.309 +637778.789|221497.015|116.333 +637775.540|221499.868|116.227 +637772.321|221502.696|116.239 +637756.173|221516.861|114.834 +637753.131|221519.540|115.138 +638040.122|221264.537|124.282 +638044.496|221260.685|124.718 +638048.775|221256.914|124.944 +638053.131|221253.080|125.316 +638057.471|221249.255|125.645 +638061.815|221245.426|125.995 +638070.754|221237.566|127.544 +638075.076|221233.753|127.590 +638079.411|221229.933|127.699 +638083.846|221226.029|128.096 +638088.274|221222.124|128.492 +638092.648|221218.269|128.608 +638110.284|221202.721|128.879 +638114.615|221198.896|128.559 +638118.998|221195.025|128.266 +638123.491|221191.068|128.598 +638127.990|221187.106|128.986 +638132.516|221183.116|129.266 +638137.061|221179.114|129.674 +638141.575|221175.136|129.930 +638146.135|221171.119|130.162 +638150.627|221167.160|130.336 +638155.218|221163.115|130.494 +638159.729|221159.134|130.516 +638164.237|221155.160|130.531 +638168.806|221151.133|130.619 +638173.378|221147.101|130.763 +638177.947|221143.074|130.903 +638182.424|221139.115|130.165 +638191.724|221130.928|131.241 +638196.390|221126.813|131.445 +638201.063|221122.702|132.027 +638205.726|221118.593|132.247 +638210.384|221114.490|132.457 +638214.959|221110.455|132.475 +638219.686|221106.291|132.860 +638224.386|221102.149|133.088 +638229.004|221098.074|133.137 +638233.765|221093.883|133.832 +638238.480|221089.725|133.884 +638243.125|221085.626|133.829 +638247.828|221081.474|133.847 +638252.516|221077.335|133.795 +638257.219|221073.190|133.841 +638261.883|221069.069|133.652 +638266.641|221064.875|133.774 +638271.368|221060.699|133.731 +638276.089|221056.532|133.628 +638280.780|221052.390|133.341 +638285.563|221048.172|133.353 +638290.336|221043.959|133.329 +638295.085|221039.765|133.143 +638299.867|221035.547|133.253 +638304.640|221031.335|133.283 +638314.244|221022.858|133.109 +638319.002|221018.661|133.070 +638323.818|221014.412|133.137 +638328.655|221010.142|133.015 +638333.447|221005.911|132.917 +638338.281|221001.644|132.786 +638343.078|220997.410|132.786 +638347.955|220993.106|132.613 +638352.789|220988.839|132.558 +638357.621|220984.575|132.469 +638362.491|220980.274|132.323 +638367.368|220975.971|132.238 +638372.181|220971.722|132.049 +638377.030|220967.439|131.738 +638381.895|220963.145|131.616 +638386.793|220958.819|131.332 +638391.661|220954.525|131.256 +638396.589|220950.175|131.317 +638401.521|220945.826|131.451 +638406.437|220941.488|131.412 +638416.295|220932.796|131.713 +638421.235|220928.440|132.009 +638426.213|220924.051|132.226 +638431.175|220919.674|132.293 +638436.088|220915.340|132.402 +638441.105|220910.917|132.573 +638446.058|220906.546|132.628 +638451.014|220902.172|132.735 +638456.001|220897.774|132.649 +638460.808|220893.519|131.607 +638465.843|220889.075|131.534 +638470.830|220884.683|132.098 +638475.825|220880.275|132.186 +638480.800|220875.883|132.064 +638485.777|220871.494|131.957 +638490.742|220867.108|131.744 +638495.756|220862.679|131.549 +638500.721|220858.296|131.360 +638505.735|220853.870|131.144 +638510.740|220849.451|130.866 +638515.690|220845.080|130.500 +638520.689|220840.663|130.135 +638525.688|220836.250|129.775 +638530.671|220831.843|129.196 +638535.664|220827.432|128.797 +638540.656|220823.022|128.355 +638545.692|220818.572|127.827 +638550.675|220814.164|127.266 +638555.717|220809.711|126.824 +638560.718|220805.294|126.572 +638565.760|220800.838|126.160 +638570.804|220796.385|125.788 +638575.852|220791.926|125.502 +638580.896|220787.473|125.121 +638585.941|220783.017|124.758 +638590.985|220778.560|124.432 +638596.087|220774.055|124.270 +638601.123|220769.605|123.789 +638606.164|220765.155|123.344 +638611.254|220760.656|122.978 +638616.305|220756.200|122.783 +638621.410|220751.695|122.758 +638626.476|220747.227|122.957 +638631.630|220742.679|123.018 +638636.739|220738.177|123.112 +638641.801|220733.712|123.374 +638646.922|220729.201|123.892 +638652.034|220724.699|124.200 +638657.148|220720.191|124.706 +638662.308|220715.646|125.169 +638667.423|220711.141|125.745 +638672.528|220706.643|126.133 +638677.689|220702.098|126.715 +638682.742|220697.645|127.074 +638687.890|220693.109|127.437 +638693.038|220688.571|127.748 +638698.132|220684.081|127.931 +638703.274|220679.546|128.086 +638708.412|220675.013|128.220 +638713.503|220670.524|128.220 +638718.687|220665.949|128.220 +638723.777|220661.462|128.318 +638728.913|220656.930|128.324 +638734.049|220652.397|128.345 +638739.185|220647.865|128.345 +638744.324|220643.336|128.367 +638749.509|220638.760|128.376 +638754.645|220634.231|128.522 +638759.781|220629.699|128.291 +638764.916|220625.169|128.577 +638770.052|220620.637|128.397 +638775.237|220616.062|128.327 +638780.373|220611.530|128.373 +638785.512|220606.994|128.190 +638790.696|220602.416|127.980 +638795.884|220597.841|128.004 +638801.023|220593.306|127.803 +638821.695|220575.051|126.486 +638826.892|220570.461|126.102 +638832.040|220565.913|125.770 +638837.240|220561.317|125.227 +638842.442|220556.720|124.700 +638847.600|220552.167|124.282 +638852.739|220547.631|124.200 +638857.945|220543.029|123.697 +638863.154|220538.426|123.258 +638868.323|220533.860|122.597 +638873.535|220529.252|122.134 +638878.705|220524.686|121.649 +638883.926|220520.074|121.119 +638889.150|220515.456|120.521 +638894.326|220510.881|120.012 +638899.553|220506.264|119.470 +638904.786|220501.637|118.830 +638909.971|220497.056|118.336 +638915.201|220492.435|117.906 +638920.435|220487.814|117.531 +638925.616|220483.236|117.193 +638930.810|220478.652|116.726 +638936.056|220474.013|116.156 +638941.253|220469.422|115.684 +638946.459|220464.823|115.102 +638951.698|220460.196|114.870 +638956.904|220455.597|114.373 +638962.104|220451.003|114.011 +638967.298|220446.419|113.877 +638972.483|220441.847|113.950 +638977.722|220437.223|113.880 +638982.864|220432.688|113.898 +638988.061|220428.107|113.858 +638993.261|220423.522|113.764 +638998.412|220418.978|113.666 +639003.621|220414.382|113.499 +639008.833|220409.785|113.300 +639014.003|220405.225|113.057 +639019.172|220400.665|112.855 +639024.384|220396.066|112.724 +639029.557|220391.503|112.572 +639034.741|220386.928|112.215 +639039.935|220382.341|111.783 +639045.132|220377.754|111.383 +639050.338|220373.157|110.877 +639055.498|220368.597|110.347 +639060.707|220364.004|109.929 +639065.861|220359.453|109.591 +639071.012|220354.909|109.317 +639076.221|220350.309|108.988 +639081.336|220345.795|108.619 +639086.499|220341.242|108.344 +639091.660|220336.685|108.082 +639096.820|220332.134|107.909 +639101.980|220327.580|107.735 +639107.046|220323.115|107.573 +639112.203|220318.564|107.482 +639127.522|220305.050|106.964 +639132.695|220300.484|106.345 +639137.870|220295.909|105.711 +639142.933|220291.440|105.269 +639148.090|220286.886|104.915 +639153.211|220282.366|104.480 +639158.265|220277.907|104.230 +639163.355|220273.420|104.150 +639168.448|220268.925|104.056 +639173.502|220264.468|103.910 +639178.552|220260.015|103.821 +639183.591|220255.571|103.852 +639193.673|220246.683|103.949 +639203.643|220237.905|104.705 +639208.602|220233.537|105.092 +639213.620|220229.121|105.458 +639218.606|220224.725|105.659 +639223.614|220220.309|105.693 +639228.607|220215.908|105.479 +639233.654|220211.451|105.242 +639238.665|220207.029|104.937 +639243.746|220202.542|104.489 +639248.800|220198.080|103.919 +639253.847|220193.624|103.407 +639258.898|220189.161|102.916 +639263.927|220184.726|102.626 +639273.930|220175.893|101.782 +639279.018|220171.398|101.151 +639289.103|220162.488|99.898 +639294.087|220158.090|99.392 +639299.101|220153.661|99.054 +639304.097|220149.251|98.527 +639309.171|220144.767|97.826 +639319.209|220135.894|96.256 +639329.166|220127.107|95.732 +639334.147|220122.715|95.494 +639353.569|220105.603|96.393 +639363.261|220097.069|97.241 +639368.126|220092.786|97.576 +639372.948|220088.537|97.859 +639377.822|220084.243|97.859 +639382.656|220079.985|98.109 +639387.520|220075.699|98.201 +639392.342|220071.453|98.271 +639402.093|220062.855|98.115 +639406.939|220058.582|98.091 +639431.357|220037.051|97.259 +639436.298|220032.686|96.536 +639441.318|220028.248|95.698 +639446.128|220024.008|95.497 +639450.879|220019.826|95.933 +639455.616|220015.657|96.445 +639460.362|220011.478|96.655 +639465.239|220007.177|96.457 +639470.140|220002.852|96.137 +639474.922|219998.633|95.927 +639479.689|219994.436|96.110 +639493.951|219981.872|96.664 +639498.684|219977.706|97.082 +639503.515|219973.448|96.762 +639512.915|219965.166|97.225 +639517.695|219960.957|97.228 +639522.410|219956.803|97.561 +639536.547|219944.352|98.188 +639541.384|219940.081|97.737 +639550.994|219931.599|96.713 +639567.295|219914.505|98.115 +639538.958|219939.444|97.747 +639529.500|219947.765|97.579 +639524.699|219951.987|97.353 +639510.383|219964.584|96.911 +639505.625|219968.769|96.555 +639500.775|219973.033|96.408 +639495.923|219977.307|96.570 +639491.064|219981.580|96.235 +639481.378|219990.102|96.027 +639476.531|219994.360|95.689 +639471.645|219998.655|95.570 +639466.711|220003.001|95.753 +639461.718|220007.400|96.259 +639456.762|220011.758|96.314 +639451.900|220016.031|95.878 +639447.054|220020.287|95.369 +639442.135|220024.612|95.272 +639436.990|220029.147|95.896 +639426.852|220038.087|97.274 +639421.865|220042.473|97.378 +639416.858|220046.877|97.335 +639406.778|220055.750|97.698 +639401.752|220060.173|97.835 +639396.728|220064.592|97.981 +639381.623|220077.882|97.865 +639376.621|220082.280|97.661 +639371.598|220086.696|97.615 +639366.544|220091.140|97.457 +639361.579|220095.502|97.088 +639341.441|220113.205|96.253 +639326.170|220126.641|96.317 +639315.862|220135.721|97.125 +639310.677|220140.290|97.780 +639305.489|220144.859|98.146 +639300.320|220149.418|98.798 +639295.114|220154.003|99.350 +639289.993|220158.514|99.706 +639279.642|220167.639|100.953 +639274.406|220172.254|101.526 +639264.030|220181.398|102.788 +639258.907|220185.909|103.004 +639253.753|220190.448|103.462 +639248.601|220194.989|103.955 +639243.389|220199.582|104.556 +639238.193|220204.161|105.059 +639233.072|220208.672|105.424 +639227.924|220213.201|105.601 +639222.779|220217.733|105.808 +639217.643|220222.250|105.936 +639212.559|220226.719|105.677 +639207.472|220231.193|105.473 +639202.449|220235.607|105.153 +639197.352|220240.081|104.611 +639171.819|220262.536|104.022 +639166.720|220267.023|104.096 +639161.514|220271.604|104.275 +639156.424|220276.081|104.306 +639151.279|220280.611|104.431 +639146.112|220285.161|104.784 +639140.946|220289.712|105.190 +639135.776|220294.266|105.668 +639130.641|220298.795|106.363 +639120.277|220307.924|107.241 +639115.141|220312.444|107.509 +639110.024|220316.946|107.595 +639104.861|220321.494|107.701 +639099.743|220325.992|107.842 +639094.628|220330.491|108.000 +639089.459|220335.039|108.238 +639084.293|220339.586|108.497 +639079.181|220344.082|108.698 +639074.009|220348.639|109.119 +639068.842|220353.184|109.463 +639063.694|220357.713|109.634 +639058.534|220362.255|109.984 +639053.371|220366.802|110.411 +639048.201|220371.353|110.963 +639043.087|220375.858|111.496 +639037.887|220380.436|111.904 +639032.742|220384.962|112.258 +639027.548|220389.537|112.660 +639022.421|220394.045|112.831 +639017.297|220398.553|112.980 +639012.125|220403.104|113.197 +639007.001|220407.612|113.413 +639001.835|220412.156|113.593 +638996.669|220416.698|113.749 +638991.560|220421.191|113.837 +638986.354|220425.772|113.980 +638981.203|220430.304|114.038 +638976.104|220434.785|114.044 +638970.904|220439.357|114.108 +638965.765|220443.877|114.053 +638960.617|220448.403|114.142 +638955.414|220452.981|114.386 +638950.302|220457.480|114.849 +638945.093|220462.071|115.376 +638939.899|220466.637|115.541 +638934.754|220471.166|115.806 +638929.554|220475.741|116.245 +638924.358|220480.319|116.693 +638919.210|220484.851|117.202 +638914.016|220489.426|117.732 +638908.822|220493.998|118.232 +638903.631|220498.570|118.793 +638898.440|220503.146|119.479 +638893.253|220507.715|120.098 +638888.071|220512.277|120.591 +638882.890|220516.843|121.180 +638877.714|220521.400|121.664 +638872.542|220525.954|122.091 +638867.323|220530.544|122.414 +638862.197|220535.061|123.136 +638856.985|220539.648|123.469 +638851.815|220544.202|124.084 +638841.461|220553.316|124.627 +638836.301|220557.860|125.188 +638831.140|220562.405|125.739 +638825.938|220566.983|126.038 +638820.786|220571.518|126.398 +638815.632|220576.054|126.767 +638794.945|220594.260|127.955 +638789.752|220598.826|128.111 +638784.610|220603.352|128.348 +638779.419|220607.918|128.565 +638774.277|220612.438|128.397 +638769.135|220616.958|128.455 +638763.944|220621.524|128.708 +638758.753|220626.087|128.684 +638753.611|220630.604|128.391 +638748.469|220635.127|128.537 +638743.279|220639.690|128.434 +638738.140|220644.210|128.467 +638732.998|220648.731|128.455 +638727.856|220653.251|128.434 +638722.665|220657.814|128.406 +638717.520|220662.337|128.348 +638712.378|220666.857|128.306 +638707.233|220671.380|128.272 +638702.088|220675.903|128.160 +638696.943|220680.427|128.007 +638691.795|220684.953|127.873 +638686.644|220689.479|127.596 +638681.538|220693.963|127.236 +638676.381|220698.495|126.815 +638671.224|220703.025|126.401 +638666.109|220707.514|125.938 +638660.946|220712.050|125.468 +638655.776|220716.588|124.929 +638650.650|220721.087|124.234 +638645.535|220725.580|123.987 +638640.418|220730.079|123.670 +638635.251|220734.617|123.402 +638630.143|220739.110|123.362 +638625.077|220743.563|123.231 +638619.956|220748.062|123.030 +638614.842|220752.561|122.944 +638609.785|220757.011|123.091 +638604.686|220761.501|123.386 +638599.641|220765.942|123.834 +638594.600|220770.383|124.340 +638589.495|220774.875|124.535 +638584.490|220779.280|124.819 +638579.442|220783.724|125.179 +638569.396|220792.569|125.910 +638564.348|220797.013|126.312 +638559.347|220801.417|126.657 +638554.342|220805.825|126.916 +638549.343|220810.223|127.346 +638544.357|220814.618|127.919 +638539.364|220819.017|128.428 +638534.414|220823.375|128.818 +638529.415|220827.776|129.239 +638524.471|220832.129|129.748 +638519.470|220836.533|130.110 +638514.572|220840.849|130.564 +638509.567|220845.254|130.906 +638504.656|220849.576|131.208 +638499.685|220853.953|131.345 +638494.766|220858.281|131.570 +638489.797|220862.652|131.799 +638484.875|220866.986|131.966 +638479.946|220871.320|132.098 +638475.014|220875.661|132.213 +638470.080|220880.001|132.302 +638465.136|220884.338|131.744 +638460.177|220888.697|131.604 +638455.379|220892.934|132.753 +638450.484|220897.237|132.832 +638445.565|220901.563|132.622 +638440.666|220905.869|132.692 +638435.744|220910.195|132.509 +638430.873|220914.480|132.347 +638425.945|220918.811|132.149 +638421.056|220923.106|131.887 +638416.173|220927.394|131.720 +638411.284|220931.692|131.497 +638406.401|220935.984|131.369 +638401.567|220940.236|131.232 +638396.696|220944.518|131.268 +638391.862|220948.767|131.211 +638387.034|220953.013|131.238 +638382.163|220957.298|131.314 +638377.402|220961.489|131.528 +638372.583|220965.726|131.698 +638367.773|220969.963|131.930 +638363.015|220974.148|132.229 +638358.227|220978.360|132.274 +638353.448|220982.563|132.393 +638348.672|220986.767|132.573 +638343.923|220990.942|132.564 +638339.131|220995.161|132.631 +638334.392|220999.334|132.747 +638329.591|221003.561|132.756 +638324.854|221007.734|132.914 +638320.142|221011.879|132.905 +638310.620|221020.261|132.920 +638305.939|221024.388|133.198 +638301.150|221028.600|133.027 +638296.468|221032.718|132.963 +638291.765|221036.864|133.116 +638287.032|221041.027|133.064 +638282.411|221045.102|133.500 +638277.705|221049.242|133.320 +638273.047|221053.344|133.515 +638268.341|221057.483|133.375 +638263.678|221061.592|133.561 +638259.024|221065.689|133.466 +638254.424|221069.742|133.780 +638249.764|221073.845|133.686 +638245.109|221077.939|133.670 +638240.531|221081.971|133.832 +638235.871|221086.074|133.798 +638231.214|221090.173|133.795 +638226.626|221094.209|133.612 +638221.878|221098.375|132.722 +638217.287|221102.420|132.893 +638212.624|221106.520|132.610 +638207.994|221110.592|132.235 +638203.416|221114.621|132.226 +638198.804|221118.675|132.018 +638194.189|221122.732|131.491 +638189.578|221126.789|131.332 +638180.294|221134.942|130.071 +638175.883|221138.835|130.903 +638171.360|221142.815|130.747 +638166.800|221146.830|130.689 +638162.289|221150.798|130.641 +638157.766|221154.779|130.546 +638153.236|221158.763|130.430 +638148.756|221162.707|130.308 +638144.211|221166.706|130.147 +638139.767|221170.613|129.988 +638135.250|221174.588|129.726 +638130.751|221178.541|129.290 +638126.216|221182.528|128.967 +638121.732|221186.472|128.672 +638117.249|221190.413|128.397 +638112.768|221194.348|127.873 +638108.394|221198.204|128.245 +638104.112|221201.980|128.574 +638099.726|221205.839|128.632 +638086.601|221217.391|128.504 +638082.175|221221.283|128.135 +638077.789|221225.136|127.733 +638073.476|221228.934|127.721 +638069.127|221232.759|127.544 +638064.728|221236.624|127.141 +638055.944|221244.344|126.169 +638051.509|221248.234|125.371 +638047.172|221252.050|125.093 +638042.874|221255.829|124.764 +638038.558|221259.621|124.374 +638034.264|221263.398|124.100 +638030.018|221267.131|123.834 +638025.738|221270.896|123.685 +638021.514|221274.614|123.557 +638017.381|221278.253|123.645 +638013.162|221281.963|123.591 +638008.999|221285.630|123.548 +637995.932|221297.090|120.552 +637987.471|221304.524|119.515 +637983.283|221308.203|118.985 +637979.119|221311.864|118.595 +637974.953|221315.528|118.193 +637962.831|221326.202|118.369 +637958.923|221329.649|118.741 +637955.000|221333.105|119.058 +637947.039|221340.116|119.192 +637915.483|221367.889|118.537 +637911.600|221371.309|118.458 +637907.768|221374.680|118.397 +637903.943|221378.048|118.375 +637900.100|221381.432|118.284 +637892.925|221387.771|120.079 +637866.797|221410.775|120.061 +637863.142|221413.993|120.198 +637837.399|221436.628|118.077 +637833.863|221439.740|118.150 +637830.319|221442.861|117.973 +637826.749|221445.997|117.726 +637823.183|221449.134|117.491 +637819.623|221452.267|117.293 +637809.165|221461.463|116.806 +637805.715|221464.502|116.656 +637802.341|221467.471|116.605 +637798.918|221470.482|116.592 +637795.538|221473.460|116.531 +637792.231|221476.371|116.562 +637785.626|221482.186|116.681 +637782.358|221485.064|116.885 +637779.085|221487.944|116.653 +637775.735|221490.892|116.574 +637772.641|221493.620|116.833 +637753.366|221510.579|116.163 +637746.824|221516.318|114.937 +637743.789|221518.991|114.879 +638034.867|221260.350|124.164 +638039.226|221256.512|124.499 +638043.523|221252.726|124.822 +638047.876|221248.892|125.169 +638052.152|221245.125|125.419 +638056.636|221241.187|126.495 +638061.001|221237.340|126.700 +638065.408|221233.460|127.166 +638069.764|221229.623|127.641 +638074.089|221225.813|127.693 +638078.451|221221.966|127.702 +638082.879|221218.065|128.077 +638096.083|221206.427|128.620 +638100.402|221202.611|128.208 +638104.773|221198.755|128.080 +638109.092|221194.939|127.693 +638113.634|221190.946|128.254 +638118.148|221186.966|128.419 +638122.580|221183.061|128.717 +638127.106|221179.074|128.982 +638131.599|221175.118|129.379 +638136.146|221171.113|129.805 +638140.685|221167.111|129.924 +638145.199|221163.136|130.199 +638149.716|221159.153|130.238 +638154.255|221155.154|130.406 +638158.836|221151.115|130.540 +638163.353|221147.134|130.628 +638167.910|221143.114|130.671 +638172.463|221139.100|130.708 +638177.026|221135.076|130.817 +638181.616|221131.029|130.814 +638186.228|221126.969|131.256 +638190.831|221122.912|131.366 +638195.506|221118.791|131.643 +638200.167|221114.688|132.171 +638204.717|221110.674|132.009 +638209.457|221106.501|132.427 +638214.117|221102.396|132.698 +638218.756|221098.308|132.841 +638223.502|221094.130|133.384 +638228.202|221089.990|133.655 +638232.838|221085.906|133.856 +638237.523|221081.776|133.707 +638246.850|221073.549|133.548 +638251.550|221069.407|133.573 +638256.226|221065.283|133.445 +638260.923|221061.144|133.475 +638265.644|221056.980|133.347 +638270.332|221052.847|133.362 +638275.041|221048.696|133.189 +638279.820|221044.481|133.186 +638284.523|221040.332|133.000 +638289.245|221036.169|132.969 +638294.064|221031.923|132.933 +638298.785|221027.762|132.933 +638303.592|221023.522|132.869 +638308.350|221019.325|132.808 +638313.174|221015.076|132.902 +638317.932|221010.879|132.899 +638322.736|221006.646|132.863 +638327.576|221002.378|132.738 +638332.371|220998.151|132.680 +638337.223|220993.871|132.713 +638341.993|220989.665|132.466 +638346.840|220985.395|132.475 +638351.659|220981.143|132.277 +638356.490|220976.885|132.189 +638361.360|220972.587|132.055 +638366.182|220968.335|131.912 +638371.041|220964.047|131.707 +638375.866|220959.795|131.634 +638380.755|220955.479|131.268 +638385.641|220951.175|131.342 +638390.557|220946.838|131.284 +638395.413|220942.558|131.086 +638400.338|220938.218|131.140 +638405.276|220933.865|131.363 +638410.211|220929.519|131.540 +638415.133|220925.182|131.646 +638420.111|220920.796|131.826 +638425.045|220916.452|132.094 +638430.026|220912.066|132.366 +638434.939|220907.735|132.463 +638439.944|220903.324|132.521 +638444.845|220899.002|132.552 +638449.865|220894.583|132.820 +638454.794|220890.236|132.634 +638459.701|220885.896|131.634 +638464.645|220881.537|131.668 +638469.690|220877.102|132.305 +638474.670|220872.710|132.256 +638479.644|220868.321|132.116 +638484.619|220863.935|131.991 +638489.587|220859.555|131.796 +638494.601|220855.132|131.585 +638499.566|220850.752|131.396 +638504.577|220846.333|131.168 +638509.533|220841.959|130.891 +638514.535|220837.545|130.549 +638519.531|220833.138|130.147 +638524.529|220828.724|129.805 +638529.513|220824.326|129.220 +638534.505|220819.919|128.790 +638539.504|220815.505|128.464 +638544.494|220811.101|127.961 +638549.529|220806.657|127.443 +638554.567|220802.210|126.943 +638559.569|220797.793|126.712 +638564.614|220793.343|126.325 +638569.609|220788.936|125.968 +638574.654|220784.483|125.581 +638579.747|220779.990|125.206 +638584.743|220775.579|124.892 +638589.839|220771.084|124.575 +638594.886|220766.630|124.285 +638599.919|220762.183|123.740 +638605.012|220757.691|123.362 +638610.059|220753.234|123.115 +638615.168|220748.729|123.136 +638620.285|220744.225|123.368 +638625.348|220739.762|123.520 +638630.457|220735.257|123.609 +638635.516|220730.801|123.676 +638640.674|220726.257|123.874 +638645.788|220721.752|124.261 +638650.851|220717.292|124.526 +638656.017|220712.745|125.087 +638661.086|220708.285|125.733 +638666.240|220703.744|126.102 +638671.352|220699.248|126.590 +638676.457|220694.752|127.035 +638681.560|220690.257|127.410 +638686.659|220685.767|127.736 +638691.758|220681.274|127.967 +638696.900|220676.745|128.129 +638701.993|220672.255|128.260 +638707.132|220667.726|128.373 +638712.271|220663.196|128.431 +638717.361|220658.707|128.498 +638722.500|220654.177|128.492 +638727.591|220649.691|128.513 +638732.726|220645.161|128.568 +638737.865|220640.632|128.544 +638743.001|220636.103|128.547 +638748.091|220631.619|128.720 +638753.227|220627.090|128.586 +638758.366|220622.563|128.891 +638773.777|220608.969|128.446 +638778.913|220604.443|128.580 +638784.052|220599.908|128.394 +638789.191|220595.375|128.184 +638794.333|220590.840|127.943 +638809.807|220577.185|127.117 +638814.956|220572.643|126.757 +638825.300|220563.508|125.971 +638830.449|220558.967|125.681 +638835.603|220554.416|125.236 +638840.760|220549.862|124.673 +638851.059|220540.770|124.014 +638856.271|220536.168|123.429 +638861.438|220531.605|122.899 +638866.604|220527.045|122.374 +638871.764|220522.488|122.091 +638876.982|220517.883|121.658 +638882.155|220513.317|121.192 +638887.334|220508.742|120.573 +638892.558|220504.127|120.049 +638897.742|220499.549|119.427 +638902.927|220494.968|118.823 +638908.164|220490.344|118.241 +638913.354|220485.757|117.647 +638918.545|220481.176|117.138 +638923.788|220476.546|116.617 +638928.981|220471.961|116.184 +638934.166|220467.386|115.989 +638939.406|220462.763|115.693 +638944.596|220458.184|115.443 +638949.802|220453.588|114.919 +638955.054|220448.952|114.538 +638960.251|220444.368|114.300 +638965.442|220439.790|114.227 +638970.626|220435.221|114.325 +638975.820|220430.640|114.245 +638981.014|220426.058|114.197 +638986.214|220421.468|114.038 +638991.417|220416.875|113.880 +638996.617|220412.291|113.846 +639001.777|220407.734|113.645 +639006.983|220403.140|113.532 +639012.201|220398.535|113.313 +639017.371|220393.972|113.084 +639022.589|220389.367|112.907 +639027.810|220384.758|112.709 +639033.001|220380.174|112.301 +639038.240|220375.547|111.929 +639043.443|220370.950|111.429 +639048.646|220366.354|110.944 +639053.907|220361.706|110.438 +639059.067|220357.149|109.975 +639064.261|220352.565|109.780 +639069.464|220347.969|109.466 +639074.673|220343.372|109.143 +639079.879|220338.773|108.875 +639085.036|220334.222|108.661 +639090.200|220329.665|108.405 +639095.409|220325.066|108.201 +639100.523|220320.552|108.006 +639105.732|220315.955|107.887 +639110.893|220311.405|107.799 +639116.010|220306.884|107.631 +639121.192|220302.312|107.387 +639131.595|220293.120|106.022 +639136.761|220288.554|105.507 +639141.924|220283.991|105.046 +639147.075|220279.443|104.769 +639152.220|220274.902|104.580 +639157.308|220270.415|104.516 +639162.395|220265.925|104.461 +639167.525|220261.402|104.510 +639182.719|220248.003|104.763 +639187.809|220243.513|104.803 +639192.811|220239.106|105.214 +639197.809|220234.702|105.662 +639202.869|220230.245|106.040 +639207.859|220225.847|106.174 +639212.894|220221.406|106.366 +639217.960|220216.938|106.321 +639222.986|220212.503|106.220 +639228.034|220208.047|105.958 +639233.124|220203.554|105.793 +639238.141|220199.122|105.434 +639243.231|220194.626|104.946 +639248.333|220190.118|104.388 +639253.375|220185.662|103.931 +639258.465|220181.169|103.538 +639263.500|220176.722|103.196 +639278.710|220163.275|101.233 +639283.739|220158.834|100.724 +639309.031|220136.477|97.539 +639314.012|220132.078|97.189 +639338.999|220110.008|95.019 +639353.505|220097.230|96.405 +639372.963|220080.073|97.085 +639392.352|220062.974|97.542 +639402.136|220054.339|97.222 +639406.982|220050.062|97.198 +639416.653|220041.528|97.073 +639421.497|220037.258|97.152 +639436.267|220024.200|95.253 +639445.951|220015.654|95.052 +639450.629|220011.536|95.601 +639455.439|220007.293|95.720 +639460.258|220003.038|95.534 +639465.059|219998.798|95.189 +639469.868|219994.552|95.095 +639474.572|219990.407|95.329 +639484.033|219982.068|95.814 +639488.769|219977.889|95.912 +639493.490|219973.728|96.113 +639502.930|219965.401|96.305 +639507.578|219961.305|96.668 +639512.312|219957.132|96.625 +639517.058|219952.941|96.524 +639526.339|219944.766|97.436 +639554.487|219919.931|97.305 +639559.160|219915.810|97.475 +639563.701|219911.808|98.036 +639544.578|219925.945|96.597 +639539.835|219930.114|97.024 +639535.096|219934.281|97.213 +639521.051|219946.619|97.055 +639516.469|219950.630|96.262 +639511.666|219954.852|96.347 +639506.935|219959.006|96.335 +639502.250|219963.118|96.125 +639497.520|219967.269|95.899 +639492.738|219971.470|95.692 +639473.654|219988.234|95.043 +639468.899|219992.412|94.778 +639464.025|219996.698|94.884 +639459.118|220001.017|95.195 +639444.536|220013.840|94.955 +639439.565|220018.217|95.421 +639434.685|220022.505|95.131 +639429.650|220026.946|96.027 +639424.636|220031.363|96.546 +639419.631|220035.767|96.741 +639414.712|220040.096|96.771 +639409.731|220044.475|96.875 +639404.760|220048.849|96.945 +639394.814|220057.594|96.881 +639374.795|220075.199|96.856 +639339.633|220106.106|95.531 +639308.708|220133.334|97.664 +639282.718|220156.237|100.871 +639277.481|220160.851|101.389 +639266.975|220170.111|102.791 +639261.735|220174.729|103.446 +639256.548|220179.298|103.742 +639251.345|220183.879|104.196 +639246.090|220188.509|104.696 +639240.841|220193.133|105.168 +639235.647|220197.708|105.656 +639230.435|220202.295|105.918 +639225.223|220206.882|106.211 +639219.978|220211.500|106.406 +639214.799|220216.054|106.482 +639209.630|220220.601|106.500 +639204.427|220225.177|106.415 +639199.248|220229.727|106.144 +639194.076|220234.272|105.842 +639188.915|220238.804|105.437 +639183.798|220243.303|105.141 +639178.567|220247.899|104.949 +639173.380|220252.459|104.864 +639168.201|220257.016|104.739 +639163.013|220261.576|104.681 +639157.826|220266.136|104.665 +639152.592|220270.741|104.644 +639147.347|220275.356|104.769 +639142.144|220279.934|104.992 +639136.880|220284.570|105.385 +639131.659|220289.169|105.857 +639126.367|220293.836|106.622 +639121.085|220298.493|107.323 +639115.839|220303.111|107.665 +639110.612|220307.710|107.838 +639105.437|220312.264|108.027 +639100.176|220316.894|108.116 +639094.961|220321.487|108.277 +639089.742|220326.084|108.512 +639084.521|220330.683|108.799 +639079.309|220335.274|109.021 +639074.100|220339.864|109.274 +639068.839|220344.500|109.576 +639063.630|220349.090|109.847 +639058.382|220353.714|110.082 +639053.169|220358.307|110.487 +639047.957|220362.904|110.984 +639042.696|220367.540|111.456 +639037.442|220372.176|111.950 +639032.239|220376.760|112.407 +639026.999|220381.378|112.740 +639021.818|220385.944|113.002 +639016.593|220390.546|113.212 +639011.418|220395.106|113.447 +639006.200|220399.702|113.630 +639000.988|220404.293|113.767 +638995.821|220408.843|113.959 +638990.664|220413.385|114.050 +638985.461|220417.963|114.096 +638980.252|220422.553|114.288 +638975.098|220427.092|114.443 +638969.901|220431.670|114.520 +638964.762|220436.190|114.398 +638959.568|220440.765|114.480 +638954.368|220445.346|114.721 +638949.214|220449.888|115.032 +638944.048|220454.445|115.666 +638938.854|220459.020|115.907 +638933.718|220463.543|115.958 +638928.524|220468.118|116.300 +638923.334|220472.693|116.601 +638918.188|220477.228|117.028 +638912.998|220481.803|117.446 +638907.847|220486.348|118.110 +638902.705|220490.883|118.702 +638897.465|220495.504|119.308 +638892.326|220500.037|119.951 +638887.145|220504.606|120.411 +638881.963|220509.174|121.045 +638876.833|220513.698|121.542 +638871.661|220518.258|121.993 +638866.494|220522.811|122.295 +638861.416|220527.289|122.984 +638856.250|220531.843|123.423 +638851.087|220536.396|123.862 +638845.984|220540.892|124.255 +638840.827|220545.440|124.575 +638835.667|220549.987|125.047 +638830.558|220554.492|125.483 +638825.404|220559.034|125.788 +638820.299|220563.533|126.212 +638815.148|220568.071|126.559 +638810.045|220572.570|126.940 +638804.946|220577.063|127.233 +638794.705|220586.085|127.629 +638784.466|220595.107|128.284 +638779.370|220599.594|128.528 +638774.231|220604.123|128.632 +638769.138|220608.604|128.614 +638764.048|220613.090|128.836 +638758.906|220617.616|128.998 +638753.767|220622.140|128.784 +638748.722|220626.578|128.629 +638743.583|220631.104|128.790 +638738.490|220635.584|128.659 +638733.397|220640.068|128.632 +638728.258|220644.591|128.583 +638723.165|220649.075|128.544 +638718.023|220653.601|128.531 +638712.930|220658.085|128.510 +638707.836|220662.565|128.428 +638702.694|220667.092|128.336 +638697.601|220671.572|128.208 +638692.505|220676.056|128.120 +638687.406|220680.543|127.870 +638682.306|220685.026|127.626 +638677.204|220689.513|127.379 +638672.096|220694.003|126.892 +638666.987|220698.495|126.434 +638661.876|220702.988|125.995 +638656.761|220707.481|125.538 +638651.640|220711.980|124.889 +638646.578|220716.433|124.654 +638641.463|220720.932|124.258 +638636.348|220725.427|124.020 +638631.240|220729.923|123.914 +638626.180|220734.376|123.871 +638621.115|220738.833|123.731 +638615.994|220743.335|123.386 +638610.925|220747.794|123.207 +638605.865|220752.250|123.252 +638600.818|220756.697|123.578 +638595.731|220761.181|124.093 +638590.683|220765.631|124.426 +638585.681|220770.035|124.721 +638580.585|220774.525|125.063 +638575.593|220778.926|125.477 +638570.551|220783.370|125.925 +638565.498|220787.823|126.175 +638555.403|220796.717|126.861 +638550.453|220801.079|127.224 +638545.411|220805.523|127.708 +638540.425|220809.921|128.251 +638535.429|220814.326|128.638 +638530.382|220818.770|129.053 +638525.432|220823.134|129.412 +638520.445|220827.533|129.973 +638515.492|220831.894|130.327 +638510.493|220836.299|130.723 +638505.537|220840.666|131.025 +638500.575|220845.037|131.272 +638495.613|220849.411|131.509 +638490.648|220853.782|131.735 +638485.679|220858.159|131.918 +638480.751|220862.499|132.030 +638475.783|220866.876|132.235 +638470.897|220871.177|132.293 +638465.874|220875.591|131.906 +638460.972|220879.907|131.796 +638456.050|220884.241|132.067 +638451.167|220888.551|132.805 +638446.202|220892.918|132.582 +638441.310|220897.225|132.695 +638436.411|220901.535|132.725 +638431.483|220905.869|132.475 +638426.545|220910.210|132.137 +638421.620|220914.544|131.936 +638416.737|220918.839|131.720 +638411.808|220923.173|131.585 +638406.916|220927.477|131.317 +638402.045|220931.762|131.305 +638397.114|220936.103|131.168 +638392.276|220940.361|131.037 +638387.415|220944.640|131.186 +638382.590|220948.889|131.204 +638377.716|220953.178|131.253 +638372.900|220957.420|131.409 +638368.084|220961.660|131.595 +638363.326|220965.851|131.835 +638358.504|220970.097|132.000 +638353.722|220974.309|132.061 +638348.937|220978.522|132.134 +638344.115|220982.768|132.341 +638339.378|220986.937|132.439 +638334.590|220991.150|132.533 +638329.850|220995.319|132.646 +638325.101|220999.498|132.701 +638320.343|221003.683|132.695 +638315.601|221007.853|132.847 +638310.892|221011.995|132.890 +638301.464|221020.285|132.917 +638296.691|221024.483|132.908 +638291.985|221028.622|133.036 +638287.303|221032.740|132.972 +638282.585|221036.891|133.049 +638277.921|221040.991|133.189 +638273.252|221045.099|133.274 +638268.570|221049.217|133.308 +638263.955|221053.277|133.478 +638259.283|221057.389|133.600 +638254.574|221061.528|133.500 +638249.947|221065.600|133.625 +638245.341|221069.648|133.582 +638231.445|221081.870|133.686 +638226.794|221085.961|133.737 +638222.204|221089.993|133.545 +638217.555|221094.078|133.332 +638212.904|221098.162|132.771 +638208.323|221102.188|132.707 +638203.711|221106.239|132.469 +638199.060|221110.324|131.985 +638194.482|221114.350|132.006 +638189.883|221118.389|131.589 +638185.256|221122.442|130.711 +638180.751|221126.414|131.232 +638176.197|221130.410|130.863 +638171.631|221134.424|130.738 +638167.141|221138.371|130.799 +638162.630|221142.340|130.741 +638158.150|221146.275|130.580 +638153.630|221150.252|130.494 +638149.149|221154.187|130.382 +638144.662|221158.132|130.238 +638140.167|221162.082|130.071 +638135.665|221166.038|129.885 +638131.181|221169.976|129.519 +638126.688|221173.920|129.141 +638122.202|221177.861|128.809 +638117.721|221181.796|128.544 +638113.244|221185.731|128.306 +638108.815|221189.624|128.065 +638104.386|221193.513|127.855 +638099.899|221197.451|127.346 +638095.550|221201.279|127.614 +638087.025|221208.783|128.306 +638078.207|221216.528|127.745 +638073.851|221220.360|127.775 +638069.584|221224.112|127.745 +638065.237|221227.931|127.590 +638060.830|221231.796|126.861 +638056.447|221235.645|126.565 +638043.420|221247.078|125.060 +638039.134|221250.843|124.804 +638034.821|221254.631|124.435 +638030.563|221258.371|124.090 +638026.269|221262.142|123.859 +638022.078|221265.827|123.886 +638017.914|221269.490|124.057 +638013.687|221273.200|123.691 +638009.514|221276.870|123.606 +638005.359|221280.521|123.618 +637992.424|221291.854|121.027 +637987.925|221295.783|119.241 +637979.634|221303.064|118.848 +637971.194|221310.465|117.574 +637967.351|221313.854|118.470 +637959.374|221320.868|118.948 +637955.457|221324.318|119.531 +637951.568|221327.741|120.015 +637947.606|221331.225|120.168 +637943.491|221334.834|119.653 +637919.890|221355.569|119.381 +637912.060|221362.442|118.951 +637908.204|221365.826|118.784 +637904.312|221369.246|118.699 +637900.474|221372.617|118.641 +637893.263|221378.972|120.055 +637889.465|221382.306|119.970 +637867.004|221402.039|119.951 +637863.426|221405.188|120.189 +637830.541|221434.055|118.577 +637826.914|221437.234|118.092 +637823.326|221440.386|117.991 +637819.769|221443.504|117.598 +637816.249|221446.592|117.363 +637812.738|221449.673|117.174 +637805.895|221455.687|117.296 +637802.512|221458.656|117.214 +637798.973|221461.759|116.757 +637795.608|221464.715|116.757 +637792.212|221467.696|116.662 +637788.960|221470.555|116.903 +637785.574|221473.527|116.656 +637782.203|221476.484|116.470 +637779.033|221479.273|116.842 +637772.559|221484.963|117.117 +637740.363|221513.206|114.815 +638032.843|221254.177|124.407 +638037.156|221250.376|124.785 +638041.448|221246.594|125.069 +638050.250|221238.849|126.553 +638054.582|221235.027|126.578 +638058.888|221231.229|126.764 +638067.716|221223.453|127.754 +638072.080|221219.601|127.760 +638076.488|221215.715|128.007 +638085.226|221208.009|128.135 +638089.490|221204.239|127.669 +638093.843|221200.392|127.407 +638098.226|221196.524|127.330 +638102.761|221192.528|127.830 +638107.233|221188.587|127.983 +638111.713|221184.637|128.227 +638116.194|221180.687|128.480 +638120.726|221176.691|128.763 +638125.265|221172.692|129.101 +638129.800|221168.696|129.446 +638134.330|221164.703|129.784 +638138.841|221160.725|130.028 +638143.391|221156.714|130.220 +638147.927|221152.712|130.366 +638152.450|221148.725|130.430 +638157.025|221144.687|130.546 +638161.551|221140.697|130.677 +638166.114|221136.674|130.747 +638170.552|221132.748|130.071 +638175.295|221128.575|130.985 +638179.779|221124.613|130.616 +638184.405|221120.534|130.845 +638189.124|221116.383|131.698 +638193.696|221112.347|131.619 +638198.411|221108.196|132.180 +638203.108|221104.057|132.634 +638207.762|221099.954|132.841 +638212.468|221095.806|133.082 +638217.117|221091.706|133.298 +638221.838|221087.546|133.679 +638226.498|221083.434|133.682 +638231.229|221079.261|133.862 +638245.231|221066.899|133.521 +638249.922|221062.759|133.487 +638254.616|221058.617|133.506 +638259.353|221054.438|133.472 +638264.089|221050.257|133.484 +638268.802|221046.096|133.332 +638273.520|221041.932|133.216 +638282.987|221033.572|132.948 +638287.757|221029.362|132.917 +638292.524|221025.156|132.869 +638297.233|221020.996|132.808 +638302.031|221016.762|132.668 +638306.841|221012.516|132.643 +638311.614|221008.307|132.719 +638316.415|221004.067|132.680 +638321.218|220999.830|132.646 +638326.019|220995.594|132.628 +638330.801|220991.369|132.482 +638335.644|220987.093|132.445 +638340.472|220982.832|132.293 +638345.246|220978.619|132.091 +638350.132|220974.306|132.055 +638354.954|220970.048|131.902 +638359.775|220965.790|131.790 +638364.643|220961.496|131.613 +638369.502|220957.204|131.406 +638374.354|220952.918|131.144 +638379.228|220948.618|131.101 +638384.111|220944.308|131.183 +638389.018|220939.974|131.040 +638393.938|220935.633|131.009 +638398.872|220931.281|131.174 +638403.801|220926.934|131.299 +638408.736|220922.582|131.512 +638413.707|220918.196|131.634 +638418.642|220913.846|131.902 +638423.616|220909.460|132.098 +638428.596|220905.068|132.369 +638433.562|220900.688|132.536 +638438.521|220896.314|132.634 +638443.504|220891.913|132.509 +638448.482|220887.527|132.872 +638453.410|220883.177|132.704 +638458.314|220878.834|131.671 +638463.313|220874.423|131.774 +638468.342|220869.994|132.290 +638473.326|220865.596|132.256 +638478.303|220861.204|132.165 +638483.272|220856.815|132.012 +638488.292|220852.386|131.854 +638493.251|220848.003|131.601 +638498.268|220843.574|131.451 +638503.269|220839.155|131.147 +638508.274|220834.738|130.851 +638513.273|220830.322|130.503 +638518.269|220825.908|130.110 +638523.313|220821.449|129.751 +638528.297|220817.044|129.202 +638533.292|220812.631|128.827 +638538.389|220808.129|128.504 +638543.375|220803.722|127.961 +638548.407|220799.272|127.431 +638553.449|220794.818|127.007 +638558.499|220790.359|126.764 +638563.593|220785.860|126.413 +638568.634|220781.404|126.038 +638573.675|220776.951|125.657 +638578.766|220772.455|125.221 +638583.807|220767.999|124.877 +638588.903|220763.500|124.587 +638593.945|220759.047|124.179 +638599.032|220754.554|123.749 +638604.125|220750.058|123.456 +638609.182|220745.596|123.429 +638614.348|220741.045|123.722 +638619.466|220736.534|124.042 +638624.525|220732.075|124.121 +638629.679|220727.531|124.255 +638634.788|220723.029|124.395 +638639.893|220718.527|124.545 +638644.999|220714.028|124.776 +638650.110|220709.526|125.121 +638655.274|220704.978|125.703 +638660.382|220700.480|126.096 +638665.490|220695.981|126.599 +638670.645|220691.442|127.010 +638675.796|220686.904|127.434 +638680.895|220682.411|127.699 +638686.037|220677.879|127.885 +638691.133|220673.389|128.156 +638696.275|220668.856|128.324 +638701.414|220664.324|128.452 +638706.553|220659.795|128.525 +638711.689|220655.265|128.601 +638716.825|220650.733|128.565 +638721.915|220646.246|128.632 +638727.100|220641.674|128.699 +638732.236|220637.145|128.708 +638737.326|220632.658|128.842 +638742.459|220628.129|128.736 +638747.643|220623.557|128.906 +638752.731|220619.073|128.958 +638757.866|220614.544|129.025 +638763.002|220610.012|128.928 +638768.138|220605.482|128.812 +638773.323|220600.907|128.696 +638778.410|220596.418|128.480 +638783.549|220591.882|128.303 +638788.688|220587.350|128.153 +638793.827|220582.811|127.870 +638804.111|220573.734|127.254 +638809.256|220569.193|126.870 +638814.401|220564.648|126.474 +638819.546|220560.104|126.206 +638824.648|220555.599|125.752 +638829.796|220551.051|125.401 +638834.996|220546.461|125.051 +638840.105|220541.950|124.581 +638845.259|220537.399|124.285 +638850.407|220532.854|123.816 +638855.567|220528.295|123.292 +638860.727|220523.741|122.999 +638865.894|220519.175|122.417 +638871.060|220514.609|121.939 +638876.227|220510.049|121.591 +638881.350|220505.523|121.070 +638886.526|220500.948|120.521 +638891.707|220496.373|119.918 +638896.840|220491.834|119.329 +638902.028|220487.250|118.677 +638907.219|220482.663|118.013 +638912.361|220478.121|117.424 +638917.503|220473.577|116.894 +638922.687|220468.999|116.568 +638927.823|220464.466|116.294 +638933.002|220459.897|116.242 +638938.138|220455.368|116.092 +638943.286|220450.820|115.693 +638948.437|220446.273|115.294 +638953.585|220441.725|114.965 +638958.733|220437.181|114.693 +638963.875|220432.648|114.629 +638969.011|220428.116|114.669 +638974.150|220423.586|114.684 +638979.307|220419.036|114.410 +638984.455|220414.491|114.276 +638989.612|220409.944|114.090 +638994.712|220405.448|114.081 +638999.869|220400.897|113.907 +639004.980|220396.392|113.779 +639010.138|220391.842|113.666 +639015.310|220387.279|113.407 +639020.437|220382.752|113.112 +639025.561|220378.232|112.895 +639030.748|220373.657|112.545 +639035.893|220369.113|112.097 +639041.044|220364.565|111.633 +639046.199|220360.014|111.152 +639051.356|220355.461|110.697 +639056.556|220350.870|110.341 +639061.658|220346.368|110.048 +639066.806|220341.824|109.783 +639071.960|220337.279|109.536 +639077.115|220332.728|109.286 +639082.217|220328.230|109.109 +639087.374|220323.682|108.930 +639092.489|220319.168|108.664 +639097.606|220314.651|108.408 +639102.773|220310.094|108.198 +639107.887|220305.580|108.040 +639113.014|220301.057|107.784 +639118.196|220296.488|107.537 +639123.310|220291.971|106.951 +639128.544|220287.344|106.208 +639133.658|220282.827|105.693 +639138.806|220278.285|105.400 +639143.951|220273.747|105.181 +639149.093|220269.208|105.001 +639154.177|220264.727|104.955 +639159.304|220260.204|104.979 +639164.425|220255.696|105.120 +639169.490|220251.231|105.303 +639174.575|220246.747|105.336 +639179.646|220242.279|105.516 +639184.706|220237.823|105.815 +639189.812|220233.327|106.199 +639194.826|220228.910|106.479 +639199.913|220224.427|106.607 +639205.006|220219.937|106.695 +639210.111|220215.438|106.729 +639215.119|220211.022|106.732 +639220.249|220206.498|106.592 +639225.342|220202.003|106.375 +639230.448|220197.498|106.083 +639235.556|220192.990|105.790 +639240.683|220188.463|105.388 +639245.767|220183.974|104.964 +639250.854|220179.484|104.556 +639256.002|220174.939|104.099 +639261.083|220170.456|103.782 +639266.185|220165.945|102.971 +639271.334|220161.397|102.236 +639276.457|220156.871|101.709 +639281.538|220152.384|101.185 +639286.638|220147.876|100.532 +639291.780|220143.338|99.996 +639296.836|220138.869|99.368 +639302.015|220134.294|98.643 +639307.108|220129.792|97.832 +639317.307|220120.782|96.594 +639322.342|220116.338|96.293 +639347.320|220094.307|95.799 +639352.151|220090.055|96.311 +639367.017|220076.946|96.250 +639371.912|220072.633|96.436 +639376.837|220068.290|96.457 +639381.738|220063.971|96.640 +639386.661|220059.630|96.722 +639391.568|220055.302|96.622 +639406.269|220042.333|96.226 +639411.109|220038.066|96.293 +639416.001|220033.750|96.085 +639430.686|220020.786|95.253 +639435.542|220016.507|95.360 +639440.394|220012.221|94.903 +639445.201|220007.985|95.034 +639450.056|220003.702|94.912 +639459.685|219995.208|94.613 +639464.473|219990.983|94.634 +639469.253|219986.771|94.723 +639473.986|219982.595|94.796 +639483.502|219974.207|95.034 +639492.875|219965.950|95.552 +639511.623|219949.423|96.219 +639516.250|219945.348|96.482 +639520.880|219941.273|96.988 +639530.262|219932.995|96.698 +639534.916|219928.889|96.622 +639539.598|219924.762|96.701 +639550.327|219913.039|97.106 +639545.749|219917.060|96.707 +639536.437|219925.250|96.472 +639531.688|219929.425|96.445 +639526.945|219933.601|96.664 +639517.570|219941.846|96.375 +639512.885|219945.964|96.113 +639508.194|219950.085|95.884 +639503.482|219954.230|95.802 +639498.794|219958.351|95.601 +639494.064|219962.512|95.375 +639489.333|219966.669|95.159 +639484.612|219970.820|94.924 +639479.921|219974.941|94.537 +639475.120|219979.163|94.476 +639470.387|219983.323|94.366 +639460.755|219991.797|94.534 +639456.006|219995.966|94.275 +639451.148|220000.246|94.647 +639441.449|220008.774|94.778 +639436.657|220012.993|94.860 +639431.726|220017.333|95.156 +639426.901|220021.576|95.165 +639422.006|220025.886|95.598 +639412.185|220034.533|96.143 +639407.256|220038.870|96.552 +639402.550|220042.997|95.683 +639397.631|220047.322|95.777 +639392.729|220051.638|96.098 +639382.939|220060.249|96.140 +639368.214|220073.194|95.957 +639358.382|220081.841|95.854 +639353.377|220086.245|96.058 +639343.538|220094.893|95.784 +639338.551|220099.282|95.948 +639328.618|220108.014|95.771 +639323.628|220112.406|96.040 +639318.581|220116.853|96.387 +639303.292|220130.323|98.246 +639293.084|220139.323|99.679 +639267.441|220161.918|102.751 +639262.272|220166.478|103.644 +639257.163|220170.977|104.108 +639252.018|220175.506|104.504 +639246.916|220179.999|104.979 +639241.792|220184.510|105.266 +639236.656|220189.033|105.693 +639231.484|220193.587|106.037 +639226.427|220198.037|106.290 +639221.279|220202.569|106.510 +639216.149|220207.084|106.607 +639211.020|220211.595|106.705 +639205.899|220216.100|106.772 +639200.742|220220.635|106.766 +639195.652|220225.109|106.616 +639190.513|220229.630|106.500 +639185.383|220234.138|106.311 +639180.320|220238.582|105.970 +639175.209|220243.074|105.662 +639170.073|220247.592|105.598 +639164.903|220252.136|105.409 +639159.734|220256.678|105.223 +639154.604|220261.192|105.174 +639149.422|220265.745|105.144 +639144.229|220270.318|105.306 +639139.035|220274.886|105.449 +639133.847|220279.452|105.610 +639128.647|220284.027|105.888 +639123.356|220288.694|106.668 +639118.083|220293.342|107.299 +639112.834|220297.963|107.695 +639107.604|220302.565|107.951 +639102.425|220307.122|108.195 +639097.152|220311.767|108.463 +639091.931|220316.361|108.707 +639086.710|220320.954|108.985 +639081.452|220325.581|109.152 +639076.246|220330.162|109.332 +639070.991|220334.786|109.545 +639065.736|220339.407|109.750 +639060.533|220343.985|109.990 +639055.276|220348.615|110.344 +639050.015|220353.245|110.771 +639044.815|220357.823|111.121 +639039.508|220362.495|111.569 +639034.253|220367.122|112.057 +639029.005|220371.746|112.523 +639023.768|220376.355|112.831 +639018.489|220381.003|113.115 +639013.256|220385.605|113.438 +639008.035|220390.202|113.654 +639002.771|220394.832|113.809 +638997.555|220399.419|113.977 +638992.301|220404.043|114.059 +638987.101|220408.615|114.084 +638981.889|220413.202|114.328 +638976.634|220417.823|114.480 +638971.379|220422.450|114.733 +638966.185|220427.015|114.730 +638960.949|220431.621|114.696 +638955.746|220436.196|114.937 +638950.497|220440.817|115.187 +638945.249|220445.438|115.538 +638940.046|220450.016|115.916 +638934.800|220454.637|116.278 +638929.567|220459.236|116.339 +638924.345|220463.829|116.242 +638919.152|220468.398|116.605 +638913.915|220473.010|116.958 +638908.715|220477.591|117.595 +638903.473|220482.209|118.235 +638898.230|220486.827|118.872 +638892.994|220491.444|119.515 +638887.806|220496.010|120.131 +638882.576|220500.622|120.744 +638877.397|220505.182|121.283 +638872.179|220509.775|121.615 +638866.961|220514.368|121.963 +638861.788|220518.925|122.560 +638856.625|220523.473|122.935 +638851.410|220528.063|123.432 +638846.198|220532.653|123.886 +638841.046|220537.189|124.356 +638835.889|220541.730|124.718 +638830.732|220546.269|125.108 +638825.529|220550.850|125.514 +638820.375|220555.388|125.864 +638815.224|220559.924|126.248 +638810.076|220564.456|126.587 +638804.928|220568.989|126.965 +638799.780|220573.518|127.343 +638789.489|220582.577|128.086 +638784.396|220587.057|128.245 +638779.254|220591.583|128.443 +638774.115|220596.104|128.565 +638769.022|220600.581|128.687 +638763.883|220605.104|128.934 +638758.793|220609.579|128.821 +638753.703|220614.059|129.056 +638748.564|220618.577|128.970 +638743.474|220623.051|128.931 +638738.384|220627.526|128.748 +638733.293|220632.003|128.775 +638728.203|220636.478|128.842 +638723.110|220640.955|128.748 +638718.020|220645.430|128.675 +638712.975|220649.864|128.653 +638707.885|220654.342|128.614 +638702.792|220658.819|128.565 +638697.696|220663.300|128.449 +638692.651|220667.738|128.291 +638687.604|220672.176|128.147 +638682.504|220676.659|127.989 +638677.454|220681.097|127.733 +638672.352|220685.584|127.422 +638667.295|220690.028|127.081 +638662.232|220694.472|126.675 +638657.169|220698.919|126.151 +638652.104|220703.369|125.712 +638647.041|220707.819|125.374 +638641.975|220712.269|124.980 +638636.961|220716.677|124.758 +638631.901|220721.124|124.645 +638626.842|220725.574|124.557 +638621.782|220730.024|124.429 +638616.765|220734.434|124.264 +638611.745|220738.848|124.008 +638606.670|220743.307|123.664 +638601.656|220747.718|123.642 +638596.657|220752.119|123.993 +638591.656|220756.523|124.261 +638586.660|220760.925|124.633 +638581.618|220765.366|125.060 +638576.669|220769.724|125.416 +638571.676|220774.122|125.831 +638566.674|220778.527|126.136 +638561.681|220782.925|126.529 +638556.686|220787.326|126.919 +638551.727|220791.688|127.154 +638546.731|220796.089|127.522 +638541.796|220800.442|128.117 +638531.854|220809.199|128.928 +638526.901|220813.561|129.266 +638521.960|220817.913|129.790 +638517.010|220822.272|130.138 +638512.011|220826.676|130.528 +638507.107|220830.995|130.857 +638502.148|220835.363|131.116 +638497.189|220839.728|131.424 +638492.224|220844.099|131.601 +638487.310|220848.424|131.863 +638482.339|220852.798|132.040 +638477.413|220857.135|132.152 +638472.488|220861.469|132.293 +638467.547|220865.816|132.280 +638462.566|220870.189|131.799 +638457.613|220874.545|131.692 +638452.810|220878.785|132.753 +638447.857|220883.144|132.661 +638442.956|220887.450|132.655 +638438.067|220891.754|132.768 +638433.089|220896.128|132.475 +638428.179|220900.447|132.411 +638423.296|220904.739|132.134 +638418.370|220909.070|131.957 +638413.430|220913.410|131.643 +638408.547|220917.705|131.430 +638403.661|220921.999|131.250 +638398.729|220926.334|131.113 +638393.849|220930.625|131.015 +638388.975|220934.914|131.000 +638384.102|220939.202|131.006 +638379.271|220943.451|130.979 +638374.400|220947.737|131.070 +638369.581|220951.980|131.189 +638364.728|220956.250|131.479 +638359.964|220960.444|131.686 +638355.139|220964.690|131.805 +638350.305|220968.945|131.860 +638345.471|220973.197|131.948 +638335.913|220981.609|132.256 +638331.069|220985.874|132.305 +638326.324|220990.052|132.369 +638321.532|220994.271|132.491 +638316.722|220998.504|132.469 +638311.977|221002.680|132.597 +638307.203|221006.880|132.521 +638302.452|221011.065|132.634 +638297.703|221015.244|132.786 +638292.957|221019.417|132.604 +638288.275|221023.544|132.930 +638278.799|221031.880|132.750 +638274.096|221036.025|132.954 +638269.375|221040.180|133.064 +638264.711|221044.285|133.216 +638260.051|221048.391|133.426 +638255.366|221052.515|133.472 +638250.693|221056.624|133.274 +638245.999|221060.754|133.289 +638241.342|221064.856|133.591 +638236.721|221068.923|133.457 +638232.018|221073.062|133.463 +638222.749|221081.218|133.466 +638218.135|221085.281|133.442 +638213.419|221089.423|133.125 +638208.811|221093.477|132.856 +638204.147|221097.574|132.597 +638199.490|221101.670|132.387 +638194.872|221105.730|132.137 +638190.212|221109.827|131.625 +638185.634|221113.856|131.665 +638180.903|221118.008|130.759 +638171.869|221125.963|131.086 +638167.199|221130.059|130.336 +638162.694|221134.031|130.610 +638158.186|221137.996|130.580 +638153.651|221141.983|130.406 +638149.131|221145.961|130.345 +638144.592|221149.954|130.177 +638140.115|221153.892|130.104 +638135.555|221157.903|129.866 +638131.041|221161.871|129.610 +638126.551|221165.816|129.229 +638122.013|221169.805|128.885 +638117.523|221173.753|128.541 +638113.042|221177.691|128.278 +638108.562|221181.629|128.044 +638104.124|221185.533|127.763 +638099.640|221189.474|127.550 +638095.212|221193.370|127.373 +638090.701|221197.329|126.767 +638086.412|221201.108|127.111 +638082.117|221204.894|127.431 +638077.747|221208.741|127.355 +638055.895|221227.958|126.456 +638051.570|221231.762|126.465 +638047.202|221235.600|126.002 +638042.850|221239.425|125.639 +638034.221|221247.008|125.093 +638029.856|221250.843|124.468 +638025.516|221254.653|123.984 +638021.352|221258.320|124.139 +638017.070|221262.087|123.978 +638012.873|221265.781|123.993 +638008.666|221269.481|123.999 +638004.424|221273.212|123.566 +637987.123|221288.385|120.280 +637982.950|221292.052|119.799 +637978.659|221295.819|119.028 +637962.227|221310.267|118.601 +637958.271|221313.754|118.985 +637954.336|221317.225|119.467 +637942.519|221327.634|120.472 +637938.419|221331.237|120.024 +637918.628|221348.647|119.777 +637914.718|221352.082|119.567 +637910.697|221355.615|119.116 +637906.793|221359.047|118.970 +637902.974|221362.406|118.958 +637899.146|221365.777|119.150 +637865.419|221395.462|119.985 +637861.747|221398.692|120.055 +637858.089|221401.911|119.973 +637854.416|221405.142|120.061 +637818.126|221437.033|117.754 +637811.055|221443.251|117.357 +637807.596|221446.293|117.159 +637804.145|221449.326|117.226 +637800.677|221452.377|117.013 +637797.290|221455.352|116.922 +637793.858|221458.372|116.873 +637787.183|221464.243|116.909 +637783.824|221467.196|116.748 +637780.487|221470.132|116.687 +637777.210|221473.015|116.656 +637770.754|221478.696|116.992 +638036.047|221243.424|125.441 +638040.314|221239.663|125.627 +638044.670|221235.828|126.017 +638048.955|221232.055|126.334 +638053.244|221228.275|126.428 +638070.843|221212.782|127.925 +638079.417|221205.217|127.465 +638083.708|221201.428|127.132 +638087.899|221197.722|126.264 +638092.465|221193.711|127.187 +638096.888|221189.813|127.343 +638101.320|221185.908|127.574 +638105.809|221181.955|127.861 +638110.293|221178.008|128.126 +638114.765|221174.070|128.348 +638119.254|221170.116|128.693 +638123.793|221166.120|129.053 +638128.322|221162.131|129.388 +638132.797|221158.189|129.714 +638137.350|221154.178|129.930 +638141.840|221150.225|130.092 +638146.372|221146.229|130.223 +638150.947|221142.200|130.327 +638155.468|221138.216|130.424 +638159.988|221134.232|130.537 +638164.426|221130.309|129.876 +638169.235|221126.088|131.192 +638178.209|221118.169|130.513 +638182.939|221114.012|131.433 +638187.533|221109.964|131.494 +638192.190|221105.867|131.982 +638196.856|221101.756|132.244 +638201.480|221097.684|132.588 +638210.771|221089.497|132.942 +638220.098|221081.279|133.289 +638229.458|221073.031|133.609 +638234.076|221068.953|133.393 +638238.794|221064.796|133.518 +638243.467|221060.672|133.353 +638248.118|221056.569|133.405 +638252.797|221052.439|133.341 +638257.506|221048.284|133.131 +638266.906|221039.994|132.981 +638271.615|221035.836|132.838 +638281.113|221027.457|132.811 +638285.819|221023.306|132.683 +638290.580|221019.106|132.613 +638300.096|221010.715|132.479 +638304.853|221006.518|132.451 +638309.663|221002.275|132.463 +638314.433|220998.069|132.570 +638319.222|220993.844|132.427 +638324.016|220989.616|132.363 +638328.796|220985.395|132.204 +638333.633|220981.131|132.113 +638338.412|220976.912|131.982 +638343.252|220972.642|131.973 +638348.028|220968.427|131.854 +638352.893|220964.135|131.653 +638357.721|220959.877|131.564 +638362.534|220955.631|131.378 +638367.392|220951.343|131.180 +638372.266|220947.042|131.147 +638377.128|220942.753|130.997 +638381.950|220938.501|130.961 +638386.863|220934.164|130.894 +638391.737|220929.869|130.906 +638396.662|220925.526|130.991 +638401.551|220921.216|131.241 +638406.520|220916.836|131.311 +638411.457|220912.484|131.604 +638416.398|220908.134|131.924 +638421.376|220903.745|132.183 +638426.301|220899.405|132.408 +638431.269|220895.028|132.610 +638436.210|220890.669|132.546 +638441.154|220886.307|132.506 +638446.110|220881.940|132.652 +638451.109|220877.529|132.765 +638455.971|220873.228|131.835 +638460.954|220868.836|131.744 +638465.934|220864.450|132.271 +638470.921|220860.052|132.302 +638475.895|220855.663|132.195 +638480.870|220851.277|132.113 +638485.829|220846.897|131.863 +638490.843|220842.474|131.668 +638495.802|220838.097|131.439 +638500.810|220833.677|131.208 +638505.812|220829.261|130.903 +638510.761|220824.890|130.583 +638515.754|220820.483|130.165 +638520.753|220816.069|129.863 +638525.788|220811.622|129.342 +638530.787|220807.209|129.037 +638535.783|220802.798|128.714 +638540.821|220798.348|128.266 +638545.847|220793.907|127.626 +638550.885|220789.457|127.209 +638555.936|220785.001|126.962 +638560.977|220780.548|126.593 +638566.019|220776.094|126.251 +638571.109|220771.602|125.874 +638576.147|220767.152|125.456 +638581.237|220762.659|125.066 +638586.276|220758.209|124.621 +638591.369|220753.710|124.325 +638596.462|220749.211|123.984 +638601.559|220744.709|123.761 +638606.670|220740.201|123.901 +638611.794|220735.687|124.353 +638616.905|220731.179|124.499 +638622.014|220726.674|124.651 +638627.119|220722.169|124.764 +638632.273|220717.625|124.840 +638637.379|220713.123|124.993 +638642.487|220708.618|125.240 +638647.644|220704.073|125.633 +638652.802|220699.529|125.950 +638657.913|220695.027|126.465 +638663.067|220690.482|126.873 +638668.221|220685.941|127.306 +638673.370|220681.402|127.644 +638678.515|220676.867|127.882 +638683.611|220672.374|128.099 +638688.753|220667.838|128.275 +638693.895|220663.303|128.446 +638699.034|220658.771|128.580 +638704.221|220654.196|128.626 +638709.357|220649.663|128.647 +638714.496|220645.131|128.720 +638719.632|220640.598|128.717 +638724.771|220636.066|128.876 +638729.907|220631.534|128.879 +638735.092|220626.962|128.870 +638740.228|220622.426|128.769 +638745.363|220617.897|129.022 +638750.548|220613.322|128.870 +638766.005|220599.685|128.925 +638771.140|220595.150|128.690 +638776.328|220590.572|128.534 +638781.464|220586.033|128.220 +638786.603|220581.498|128.053 +638791.794|220576.913|127.803 +638796.936|220572.372|127.468 +638802.081|220567.827|126.998 +638807.272|220563.243|126.757 +638812.420|220558.695|126.376 +638817.565|220554.148|126.023 +638822.716|220549.597|125.624 +638827.919|220545.001|125.127 +638833.067|220540.456|124.938 +638838.224|220535.899|124.484 +638843.768|220531.001|124.124 +638848.529|220526.795|123.633 +638853.693|220522.229|123.011 +638858.905|220517.627|122.643 +638864.013|220513.113|122.445 +638869.237|220508.495|121.701 +638874.404|220503.932|121.381 +638879.525|220499.409|121.021 +638884.703|220494.831|120.445 +638889.930|220490.210|119.848 +638895.066|220485.668|119.238 +638900.257|220481.081|118.558 +638905.445|220476.494|118.004 +638910.636|220471.907|117.437 +638915.826|220467.316|116.900 +638920.968|220462.775|116.467 +638926.138|220458.215|116.617 +638931.264|220453.692|116.595 +638936.403|220449.153|116.352 +638941.600|220444.563|115.980 +638946.745|220440.018|115.702 +638951.896|220435.471|115.388 +638957.044|220430.923|115.120 +638962.189|220426.382|114.949 +638967.331|220421.843|114.925 +638972.470|220417.308|114.910 +638977.582|220412.787|114.568 +638982.736|220408.237|114.413 +638987.887|220403.686|114.288 +638992.993|220399.178|114.163 +638998.147|220394.627|114.105 +639003.258|220390.110|113.919 +639008.422|220385.550|113.758 +639013.545|220381.024|113.493 +639018.675|220376.489|113.157 +639023.802|220371.959|112.923 +639028.941|220367.418|112.557 +639034.092|220362.864|112.060 +639039.240|220358.310|111.615 +639044.391|220353.760|111.213 +639049.536|220349.212|110.926 +639054.648|220344.695|110.469 +639059.799|220340.141|110.155 +639064.947|220335.594|109.926 +639070.046|220331.086|109.722 +639075.197|220326.535|109.527 +639080.297|220322.033|109.396 +639085.402|220317.522|109.219 +639090.514|220313.008|109.027 +639095.628|220308.491|108.817 +639100.761|220303.952|108.436 +639105.891|220299.420|108.128 +639111.027|220294.878|107.762 +639116.117|220290.379|107.415 +639121.286|220285.807|106.802 +639126.474|220281.217|106.025 +639131.558|220276.724|105.839 +639136.630|220272.244|105.808 +639141.714|220267.757|105.714 +639146.850|220263.222|105.610 +639151.879|220258.781|105.601 +639157.006|220254.251|105.610 +639162.020|220249.829|105.802 +639167.095|220245.351|105.918 +639172.167|220240.874|106.049 +639177.220|220236.418|106.406 +639182.228|220232.001|106.726 +639187.309|220227.514|106.845 +639192.390|220223.031|106.997 +639197.438|220218.575|107.028 +639202.503|220214.100|106.918 +639207.569|220209.629|106.851 +639212.681|220205.115|106.842 +639217.707|220200.674|106.726 +639222.852|220196.129|106.503 +639227.899|220191.670|106.272 +639233.054|220187.116|106.037 +639238.125|220182.632|105.674 +639243.243|220178.109|105.385 +639248.321|220173.623|105.050 +639253.472|220169.066|104.544 +639258.581|220164.552|104.047 +639263.698|220160.022|103.489 +639268.865|220155.447|102.620 +639279.118|220146.383|101.584 +639294.547|220132.731|99.581 +639299.671|220128.198|98.886 +639304.804|220123.654|98.158 +639315.097|220114.546|96.640 +639320.117|220110.108|96.433 +639325.265|220105.561|96.094 +639330.242|220101.168|96.253 +639340.374|220092.210|95.445 +639345.293|220087.873|96.024 +639350.326|220083.429|95.912 +639360.354|220074.575|95.656 +639385.277|220052.574|95.573 +639390.245|220048.188|95.412 +639395.171|220043.845|95.845 +639419.957|220021.960|95.250 +639424.834|220017.656|95.192 +639444.549|220000.246|94.607 +639459.109|219987.392|94.647 +639463.986|219983.086|94.488 +639473.691|219974.515|94.223 +639478.500|219970.269|94.208 +639487.934|219961.954|94.948 +639497.474|219953.535|95.189 +639502.205|219949.362|95.409 +639506.926|219945.199|95.695 +639511.641|219941.041|96.027 +639516.329|219936.908|96.262 +639521.032|219932.751|96.158 +639530.527|219924.372|96.125 +639535.230|219920.220|96.094 +639544.432|219912.107|96.820 +639559.550|219896.342|97.999 +639554.999|219900.341|97.192 +639550.244|219904.532|97.369 +639531.411|219921.104|96.091 +639521.855|219929.523|96.113 +639517.055|219933.754|96.146 +639507.557|219942.111|95.729 +639502.805|219946.293|95.311 +639498.020|219950.505|95.076 +639493.241|219954.715|95.080 +639488.498|219958.887|94.659 +639483.655|219963.152|94.503 +639474.096|219971.567|94.141 +639464.367|219980.144|94.476 +639449.846|219992.937|94.357 +639440.080|220001.541|94.552 +639415.605|220023.118|95.400 +639396.125|220040.281|95.384 +639391.221|220044.600|95.403 +639386.323|220048.916|95.424 +639381.379|220053.275|95.433 +639366.547|220066.351|96.201 +639356.827|220074.907|95.698 +639332.089|220096.709|96.131 +639322.159|220105.463|96.317 +639317.182|220109.852|96.536 +639312.140|220114.296|96.860 +639301.975|220123.279|98.533 +639296.903|220127.753|99.155 +639291.810|220132.255|99.999 +639286.738|220136.733|100.706 +639281.681|220141.198|101.352 +639276.597|220145.681|101.852 +639271.568|220150.122|102.376 +639266.469|220154.624|103.071 +639261.373|220159.126|103.782 +639256.255|220163.640|104.300 +639251.204|220168.097|104.742 +639246.090|220172.611|105.315 +639241.070|220177.039|105.580 +639235.955|220181.547|105.836 +639230.935|220185.976|106.162 +639225.824|220190.481|106.433 +639220.770|220194.940|106.702 +639215.625|220199.476|106.906 +639210.605|220203.898|106.939 +639205.487|220208.409|106.991 +639200.473|220212.829|107.028 +639195.353|220217.340|107.144 +639190.250|220221.839|107.147 +639185.160|220226.320|107.052 +639180.070|220230.803|106.973 +639175.010|220235.256|106.644 +639169.902|220239.755|106.342 +639164.824|220244.224|106.202 +639159.703|220248.735|106.061 +639154.589|220253.240|105.851 +639149.450|220257.766|105.900 +639144.311|220262.295|106.007 +639139.132|220266.858|106.016 +639133.957|220271.421|106.037 +639128.842|220275.926|105.964 +639123.636|220280.519|106.360 +639118.400|220285.140|107.083 +639113.191|220289.739|107.598 +639107.948|220294.360|107.948 +639102.760|220298.938|108.308 +639097.521|220303.562|108.741 +639092.291|220308.174|109.082 +639087.066|220312.776|109.372 +639081.866|220317.354|109.430 +639076.660|220321.942|109.585 +639071.403|220326.572|109.777 +639066.200|220331.156|109.978 +639060.997|220335.740|110.216 +639055.742|220340.370|110.487 +639050.484|220345.003|110.850 +639045.235|220349.630|111.149 +639039.981|220354.263|111.563 +639034.732|220358.890|111.953 +639029.471|220363.532|112.538 +639024.229|220368.149|112.898 +639018.946|220372.804|113.179 +639013.713|220377.418|113.514 +639008.434|220382.070|113.840 +639003.216|220386.666|113.998 +638997.949|220391.305|114.200 +638992.691|220395.935|114.303 +638987.436|220400.568|114.428 +638982.227|220405.152|114.575 +638976.972|220409.782|114.718 +638971.711|220414.418|115.050 +638966.469|220419.033|115.044 +638961.226|220423.650|115.090 +638955.978|220428.277|115.315 +638950.726|220432.904|115.614 +638945.477|220437.531|115.903 +638940.180|220442.198|116.227 +638934.980|220446.779|116.556 +638929.695|220451.439|116.769 +638924.467|220456.039|116.745 +638919.246|220460.635|116.626 +638913.961|220465.289|116.873 +638908.712|220469.922|117.531 +638903.470|220474.546|118.101 +638898.227|220479.170|118.711 +638892.939|220483.836|119.366 +638887.705|220488.451|119.945 +638882.472|220493.066|120.521 +638877.193|220497.726|121.173 +638871.975|220502.323|121.411 +638866.750|220506.928|121.923 +638861.529|220511.534|122.481 +638856.317|220516.127|122.752 +638851.102|220520.723|123.185 +638845.841|220525.366|123.728 +638840.641|220529.950|124.188 +638835.481|220534.497|124.590 +638830.226|220539.127|124.929 +638825.023|220543.711|125.197 +638819.866|220548.259|125.730 +638814.666|220552.843|126.087 +638809.469|220557.427|126.422 +638804.318|220561.966|126.782 +638799.072|220566.587|127.151 +638793.927|220571.125|127.516 +638788.782|220575.658|127.858 +638783.592|220580.233|128.096 +638778.401|220584.805|128.199 +638773.259|220589.337|128.577 +638768.120|220593.863|128.775 +638742.425|220616.492|129.001 +638737.283|220621.015|128.906 +638732.193|220625.496|128.760 +638727.054|220630.022|128.891 +638721.915|220634.545|128.854 +638716.871|220638.983|128.745 +638711.732|220643.509|128.696 +638706.639|220647.993|128.662 +638701.594|220652.428|128.605 +638696.455|220656.951|128.598 +638691.411|220661.389|128.495 +638686.314|220665.869|128.306 +638681.267|220670.307|128.153 +638676.216|220674.748|127.919 +638671.114|220679.232|127.580 +638666.060|220683.673|127.334 +638661.004|220688.117|127.023 +638655.944|220692.564|126.575 +638650.878|220697.014|126.096 +638645.819|220701.461|125.779 +638640.805|220705.868|125.480 +638635.742|220710.319|125.188 +638630.685|220714.766|125.063 +638625.674|220719.170|124.993 +638620.618|220723.620|124.904 +638615.604|220728.027|124.770 +638610.587|220732.438|124.612 +638605.564|220736.854|124.246 +638600.541|220741.271|123.978 +638595.533|220745.675|124.118 +638590.537|220750.077|124.438 +638585.532|220754.484|124.612 +638580.536|220758.882|125.017 +638575.593|220763.238|125.450 +638570.597|220767.639|125.819 +638565.653|220771.995|126.255 +638560.651|220776.399|126.541 +638555.707|220780.755|126.953 +638550.754|220785.117|127.205 +638545.804|220789.475|127.565 +638540.824|220793.867|128.202 +638535.880|220798.223|128.656 +638530.979|220802.539|128.989 +638526.029|220806.901|129.321 +638521.085|220811.256|129.778 +638516.181|220815.572|130.101 +638511.231|220819.934|130.488 +638506.281|220824.296|130.836 +638501.419|220828.575|131.098 +638496.460|220832.943|131.357 +638491.593|220837.225|131.573 +638486.630|220841.593|131.817 +638481.714|220845.924|132.030 +638476.788|220850.259|132.137 +638471.912|220854.550|132.256 +638466.977|220858.891|132.323 +638462.045|220863.225|131.814 +638457.101|220867.574|131.781 +638452.289|220871.820|132.741 +638447.390|220876.130|132.716 +638442.443|220880.480|132.707 +638437.582|220884.756|132.552 +638432.675|220889.072|132.488 +638427.770|220893.388|132.472 +638422.848|220897.713|132.283 +638417.965|220902.008|132.006 +638413.033|220906.342|131.774 +638408.150|220910.633|131.555 +638403.252|220914.940|131.214 +638398.366|220919.235|131.031 +638393.483|220923.530|130.884 +638388.610|220927.815|130.875 +638383.782|220932.064|130.842 +638378.908|220936.350|130.860 +638374.086|220940.595|130.912 +638369.255|220944.844|130.921 +638364.451|220949.075|131.192 +638359.632|220953.315|131.348 +638354.807|220957.564|131.442 +638350.037|220961.761|131.622 +638345.206|220966.013|131.717 +638340.448|220970.204|132.018 +638335.666|220974.410|132.143 +638330.856|220978.641|132.040 +638326.071|220982.853|132.180 +638321.328|220987.026|132.256 +638316.594|220991.192|132.445 +638311.791|220995.417|132.485 +638307.018|220999.617|132.363 +638302.269|221003.793|132.488 +638297.505|221007.984|132.494 +638292.792|221012.129|132.555 +638288.025|221016.323|132.576 +638278.555|221024.650|132.421 +638273.825|221028.811|132.408 +638264.461|221037.053|132.783 +638255.144|221045.255|133.201 +638245.774|221053.497|133.298 +638241.126|221057.584|133.301 +638236.484|221061.671|133.332 +638231.854|221065.743|133.481 +638227.205|221069.834|133.533 +638222.542|221073.933|133.497 +638217.906|221078.009|133.311 +638213.282|221082.075|133.241 +638208.628|221086.165|132.988 +638194.753|221098.363|132.591 +638190.123|221102.432|132.259 +638185.487|221106.504|131.899 +638180.870|221110.558|131.378 +638167.053|221122.699|130.482 +638158.022|221130.642|130.580 +638153.468|221134.650|130.564 +638148.948|221138.621|130.485 +638144.425|221142.602|130.385 +638139.938|221146.546|130.232 +638135.439|221150.499|130.034 +638130.898|221154.492|129.891 +638126.414|221158.427|129.531 +638121.879|221162.414|129.174 +638117.401|221166.346|128.888 +638112.914|221170.287|128.559 +638108.422|221174.234|128.230 +638103.929|221178.184|127.907 +638099.491|221182.080|127.644 +638095.074|221185.963|127.510 +638090.655|221189.849|127.373 +638086.068|221193.869|126.355 +638081.694|221197.713|126.233 +638077.353|221201.535|126.590 +638073.159|221205.232|127.187 +638068.880|221209.006|127.608 +638064.558|221212.804|127.556 +638055.862|221220.448|127.227 +638051.461|221224.310|126.547 +638047.053|221228.178|126.123 +638029.850|221243.296|125.215 +638021.182|221250.907|124.285 +638016.991|221254.592|124.304 +638012.781|221258.292|124.246 +638008.538|221262.023|124.036 +638004.378|221265.677|124.008 +637987.029|221280.890|120.366 +637978.519|221288.361|119.086 +637974.340|221292.037|118.836 +637970.222|221295.655|118.653 +637962.175|221302.741|118.951 +637958.192|221306.249|119.183 +637954.272|221309.709|119.704 +637950.450|221313.080|120.457 +637942.574|221320.020|121.167 +637934.371|221327.223|119.985 +637918.659|221341.049|119.960 +637910.731|221348.016|119.494 +637906.842|221351.439|119.372 +637902.959|221354.853|119.296 +637899.182|221358.178|119.454 +637895.445|221361.470|119.802 +637869.153|221384.611|120.131 +637865.532|221387.799|120.378 +637861.835|221391.051|120.320 +637858.132|221394.309|120.241 +637854.440|221397.559|120.226 +637850.768|221400.786|120.085 +637847.147|221403.975|120.165 +637843.541|221407.145|120.098 +637811.256|221435.521|117.918 +637804.252|221441.672|117.373 +637800.811|221444.699|117.245 +637797.385|221447.713|117.181 +637794.008|221450.685|117.107 +637790.618|221453.663|117.010 +637787.363|221456.528|117.217 +637784.007|221459.485|117.248 +637780.624|221462.454|116.784 +637777.311|221465.368|116.806 +637774.052|221468.233|116.830 +637770.831|221471.067|116.800 +637767.621|221473.893|116.812 +637764.405|221476.721|116.824 +637761.345|221479.416|117.214 +638029.524|221241.562|125.154 +638033.828|221237.767|125.526 +638042.448|221230.165|126.099 +638046.712|221226.401|126.050 +638051.070|221222.560|126.511 +638068.520|221207.168|127.550 +638072.696|221203.471|126.864 +638076.954|221199.706|126.343 +638081.325|221195.845|126.175 +638085.784|221191.913|126.501 +638090.274|221187.956|127.309 +638094.687|221184.064|127.422 +638099.113|221180.160|127.632 +638103.594|221176.206|127.870 +638108.089|221172.244|128.230 +638112.582|221168.281|128.580 +638117.105|221164.292|128.848 +638121.626|221160.305|129.123 +638126.124|221156.342|129.571 +638130.632|221152.365|129.812 +638135.183|221148.351|130.031 +638139.676|221144.385|130.235 +638144.236|221140.359|130.244 +638148.722|221136.402|130.439 +638153.288|221132.373|130.525 +638157.763|221128.417|130.058 +638166.876|221120.370|130.223 +638176.191|221112.165|131.387 +638180.800|221108.099|131.543 +638185.454|221103.999|132.018 +638190.151|221099.857|132.475 +638194.702|221095.833|132.006 +638199.341|221091.743|132.445 +638204.047|221087.595|132.695 +638222.755|221071.093|133.484 +638227.404|221066.987|133.466 +638232.088|221062.854|133.344 +638241.464|221054.579|133.244 +638250.888|221046.261|133.192 +638255.543|221042.152|132.942 +638260.298|221037.952|132.738 +638264.937|221033.852|132.427 +638269.725|221029.628|132.491 +638274.443|221025.464|132.433 +638279.150|221021.307|132.308 +638293.506|221008.642|132.293 +638303.043|221000.227|132.408 +638307.886|220995.950|132.280 +638312.638|220991.756|132.259 +638317.430|220987.526|132.168 +638322.279|220983.249|132.146 +638327.055|220979.031|131.963 +638331.892|220974.760|131.896 +638336.726|220970.493|131.823 +638341.548|220966.235|131.662 +638346.373|220961.977|131.543 +638351.238|220957.682|131.342 +638356.072|220953.415|131.339 +638360.940|220949.118|131.220 +638365.792|220944.832|130.958 +638370.657|220940.537|130.842 +638375.570|220936.200|130.750 +638380.441|220931.902|130.726 +638390.249|220923.249|130.903 +638395.160|220918.915|130.869 +638400.088|220914.568|131.019 +638405.075|220910.170|131.293 +638410.013|220905.818|131.598 +638414.944|220901.471|131.832 +638419.916|220897.085|132.055 +638424.884|220892.705|132.226 +638429.800|220888.368|132.424 +638434.799|220883.960|132.448 +638439.712|220879.626|132.655 +638444.705|220875.219|132.695 +638449.652|220870.857|132.738 +638454.517|220866.550|131.884 +638459.497|220862.155|131.784 +638464.523|220857.726|132.287 +638469.504|220853.331|132.265 +638474.478|220848.939|132.189 +638479.446|220844.553|132.043 +638484.457|220840.130|131.838 +638489.419|220835.747|131.656 +638494.430|220831.324|131.445 +638499.386|220826.947|131.208 +638504.434|220822.488|130.894 +638509.384|220818.114|130.574 +638514.379|220813.701|130.202 +638519.424|220809.245|129.866 +638524.410|220804.837|129.391 +638529.455|220800.381|129.086 +638534.451|220795.967|128.751 +638539.489|220791.517|128.321 +638544.518|220787.070|127.745 +638549.557|220782.617|127.352 +638554.598|220778.164|126.995 +638559.591|220773.754|126.639 +638564.678|220769.261|126.227 +638569.722|220764.805|125.947 +638574.757|220760.352|125.526 +638579.842|220755.859|125.041 +638584.834|220751.451|124.688 +638589.930|220746.953|124.487 +638595.024|220742.457|124.228 +638600.077|220737.997|124.136 +638605.244|220733.444|124.484 +638610.312|220728.978|124.813 +638615.421|220724.477|124.944 +638620.523|220719.975|125.044 +638625.632|220715.473|125.246 +638630.731|220710.974|125.282 +638635.882|220706.432|125.444 +638640.988|220701.933|125.712 +638646.142|220697.392|126.029 +638651.247|220692.893|126.288 +638656.404|220688.352|126.809 +638661.552|220683.813|127.135 +638666.655|220679.317|127.510 +638671.803|220674.782|127.861 +638676.945|220670.249|128.083 +638682.087|220665.717|128.291 +638687.229|220661.185|128.428 +638692.368|220656.652|128.659 +638697.504|220652.123|128.678 +638702.688|220647.551|128.723 +638707.824|220643.022|128.717 +638712.960|220638.492|128.781 +638718.145|220633.920|128.876 +638723.278|220629.391|128.912 +638728.414|220624.862|128.821 +638733.595|220620.290|128.867 +638738.731|220615.763|129.132 +638743.864|220611.234|128.952 +638749.049|220606.662|129.013 +638764.499|220593.031|128.940 +638769.684|220588.453|128.675 +638774.819|220583.918|128.336 +638780.004|220579.343|128.233 +638785.143|220574.810|128.038 +638790.331|220570.229|127.724 +638795.470|220565.688|127.337 +638800.663|220561.103|126.904 +638805.805|220556.562|126.636 +638810.999|220551.975|126.267 +638816.193|220547.387|125.925 +638821.344|220542.837|125.432 +638826.544|220538.243|125.008 +638831.692|220533.702|124.834 +638836.895|220529.105|124.407 +638842.089|220524.518|123.984 +638847.249|220519.958|123.459 +638852.458|220515.356|122.990 +638857.670|220510.753|122.557 +638862.828|220506.200|122.335 +638868.000|220501.631|121.707 +638873.215|220497.022|121.308 +638878.382|220492.459|120.988 +638883.612|220487.838|120.283 +638888.787|220483.266|119.845 +638893.972|220478.682|119.144 +638899.160|220474.098|118.549 +638904.396|220469.471|117.970 +638909.535|220464.930|117.418 +638914.726|220460.345|116.955 +638919.953|220455.731|116.778 +638925.071|220451.220|116.943 +638930.243|220446.654|116.946 +638935.428|220442.079|116.736 +638940.573|220437.537|116.431 +638945.767|220432.950|116.123 +638950.915|220428.402|115.763 +638956.112|220423.815|115.504 +638961.306|220419.231|115.315 +638966.402|220414.735|115.221 +638971.590|220410.160|115.230 +638976.750|220405.603|114.885 +638981.852|220401.098|114.718 +638987.006|220396.548|114.541 +638992.161|220392.000|114.404 +638997.318|220387.449|114.291 +639002.481|220382.890|114.059 +639007.593|220378.378|113.938 +639012.722|220373.852|113.599 +639017.852|220369.320|113.252 +639022.988|220364.787|112.904 +639028.167|220360.212|112.630 +639033.272|220355.701|112.078 +639038.420|220351.154|111.673 +639043.519|220346.652|111.301 +639048.661|220342.113|111.048 +639053.816|220337.560|110.670 +639058.866|220333.100|110.390 +639063.959|220328.601|110.204 +639069.065|220324.097|109.954 +639074.164|220319.598|109.792 +639079.260|220315.102|109.692 +639084.314|220310.640|109.542 +639089.419|220306.132|109.375 +639094.494|220301.654|109.067 +639099.630|220297.116|108.622 +639104.729|220292.608|108.104 +639109.820|220288.112|107.710 +639114.925|220283.604|107.226 +639120.046|220279.077|106.592 +639125.087|220274.624|106.299 +639130.153|220270.156|106.296 +639135.213|220265.697|106.412 +639140.227|220261.274|106.479 +639145.256|220256.836|106.442 +639150.300|220252.383|106.269 +639155.357|220247.927|106.479 +639160.331|220243.538|106.561 +639165.345|220239.118|106.738 +639170.356|220234.702|106.997 +639175.324|220230.322|107.183 +639180.344|220225.896|107.369 +639185.340|220221.488|107.369 +639190.336|220217.081|107.381 +639195.392|220212.622|107.332 +639200.361|220208.233|107.183 +639205.414|220203.776|107.204 +639210.383|220199.393|107.140 +639215.406|220194.962|107.046 +639220.404|220190.548|106.778 +639225.446|220186.095|106.583 +639230.457|220181.672|106.278 +639235.526|220177.195|105.936 +639240.491|220172.812|105.650 +639245.569|220168.328|105.299 +639250.558|220163.921|104.879 +639255.670|220159.404|104.345 +639260.675|220154.981|103.867 +639265.780|220150.467|103.074 +639270.852|220145.983|102.547 +639280.953|220137.059|101.553 +639285.997|220132.599|100.974 +639301.247|220119.118|98.637 +639306.364|220114.589|97.686 +639311.415|220110.123|97.225 +639316.417|220105.710|96.811 +639321.446|220101.269|96.564 +639336.588|220087.882|94.650 +639351.261|220074.953|96.006 +639361.106|220066.266|96.283 +639376.084|220053.034|95.418 +639385.978|220044.299|95.326 +639390.873|220039.980|95.311 +639400.734|220031.272|95.232 +639405.638|220026.949|95.546 +639415.458|220018.275|95.525 +639454.830|219983.509|94.500 +639459.737|219979.175|94.449 +639469.442|219970.607|94.424 +639474.349|219966.273|94.171 +639479.204|219961.987|94.211 +639493.603|219949.283|94.766 +639503.113|219940.895|95.232 +639522.221|219924.034|95.695 +639527.006|219919.806|95.744 +639531.786|219915.588|95.598 +639536.367|219911.555|96.436 +639541.061|219907.416|96.735 +639545.727|219903.298|96.924 +639550.385|219899.192|97.186 +639557.051|219890.283|97.381 +639538.269|219906.794|96.189 +639523.980|219919.355|95.491 +639519.188|219923.570|95.427 +639514.327|219927.850|95.488 +639509.514|219932.083|95.320 +639504.722|219936.296|95.055 +639499.928|219940.511|94.839 +639490.275|219949.000|94.500 +639480.491|219957.610|94.388 +639475.644|219961.875|94.266 +639470.780|219966.154|94.247 +639465.827|219970.513|94.177 +639446.094|219987.895|94.537 +639441.181|219992.220|94.351 +639411.325|220018.522|95.012 +639396.427|220031.643|95.052 +639391.477|220036.002|95.019 +639381.449|220044.835|95.464 +639351.432|220071.277|95.796 +639346.488|220075.626|95.610 +639341.432|220080.085|95.866 +639331.465|220088.858|95.467 +639321.284|220097.837|96.570 +639311.165|220106.761|97.393 +639300.954|220115.771|98.643 +639290.691|220124.830|100.042 +639285.488|220129.426|100.950 +639280.383|220133.928|101.547 +639270.221|220142.896|102.535 +639265.109|220147.401|102.913 +639260.001|220151.912|103.702 +639254.865|220156.444|104.336 +639249.763|220160.943|104.769 +639244.694|220165.414|105.345 +639239.610|220169.898|105.699 +639234.550|220174.354|105.885 +639229.466|220178.841|106.311 +639224.397|220183.309|106.634 +639219.344|220187.762|106.869 +639214.253|220192.249|107.040 +639209.215|220196.690|107.208 +639204.134|220201.164|107.332 +639199.074|220205.621|107.311 +639194.048|220210.049|107.473 +639188.986|220214.512|107.537 +639183.880|220219.007|107.561 +639178.881|220223.406|107.528 +639173.791|220227.889|107.467 +639168.759|220232.318|107.357 +639163.684|220236.786|107.198 +639158.627|220241.236|106.900 +639153.555|220245.702|106.781 +639148.487|220250.164|106.622 +639143.393|220254.651|106.726 +639138.261|220259.171|106.769 +639133.186|220263.639|106.750 +639128.083|220268.132|106.540 +639123.033|220272.579|106.333 +639117.885|220277.115|106.631 +639112.715|220281.677|107.208 +639107.512|220286.268|107.653 +639102.352|220290.818|108.204 +639097.198|220295.366|108.753 +639092.007|220299.944|109.155 +639086.883|220304.464|109.460 +639081.723|220309.015|109.609 +639076.569|220313.563|109.765 +639071.412|220318.110|109.951 +639066.261|220322.655|110.118 +639061.106|220327.202|110.356 +639055.958|220331.744|110.539 +639050.752|220336.337|110.874 +639045.604|220340.879|111.142 +639040.407|220345.463|111.429 +639035.256|220350.011|111.819 +639030.059|220354.598|112.206 +639024.802|220359.240|112.773 +639019.669|220363.769|113.032 +639014.435|220368.390|113.383 +639009.248|220372.971|113.803 +639004.075|220377.531|113.998 +638998.857|220382.137|114.233 +638993.639|220386.739|114.489 +638988.436|220391.326|114.550 +638983.227|220395.923|114.712 +638978.018|220400.519|114.949 +638972.806|220405.119|115.260 +638967.563|220409.739|115.282 +638962.418|220414.275|115.340 +638957.169|220418.905|115.553 +638951.924|220423.535|115.757 +638946.770|220428.082|116.108 +638941.524|220432.712|116.425 +638936.275|220437.342|116.766 +638931.085|220441.923|117.010 +638925.854|220446.538|117.117 +638920.633|220451.137|117.010 +638915.464|220455.694|116.912 +638910.175|220460.364|117.327 +638904.939|220464.985|117.729 +638899.745|220469.572|118.336 +638894.509|220474.199|118.897 +638889.269|220478.829|119.613 +638884.039|220483.443|120.091 +638878.805|220488.067|120.747 +638873.587|220492.676|121.103 +638868.366|220497.281|121.478 +638863.141|220501.899|122.179 +638857.884|220506.538|122.374 +638852.669|220511.140|122.807 +638847.456|220515.743|123.246 +638842.244|220520.342|123.752 +638836.999|220524.975|124.197 +638831.790|220529.575|124.734 +638826.590|220534.162|124.926 +638821.387|220538.752|125.206 +638816.187|220543.343|125.645 +638810.938|220547.979|126.136 +638805.693|220552.609|126.504 +638800.545|220557.150|126.803 +638795.302|220561.777|127.114 +638790.111|220566.358|127.468 +638784.917|220570.945|127.989 +638779.681|220575.563|128.117 +638774.493|220580.138|128.184 +638769.306|220584.719|128.562 +638764.118|220589.291|128.632 +638748.610|220602.971|129.144 +638738.289|220612.069|128.982 +638733.104|220616.644|129.178 +638727.917|220621.213|128.873 +638722.781|220625.742|128.925 +638717.593|220630.314|128.876 +638712.457|220634.844|128.827 +638707.318|220639.373|128.766 +638702.131|220643.945|128.751 +638696.995|220648.474|128.687 +638691.856|220653.004|128.620 +638686.717|220657.536|128.510 +638681.575|220662.069|128.370 +638676.482|220666.558|128.190 +638671.337|220671.094|127.946 +638666.192|220675.626|127.754 +638661.086|220680.122|127.300 +638655.938|220684.660|127.099 +638650.830|220689.159|126.578 +638645.724|220693.655|126.291 +638640.619|220698.154|126.008 +638635.565|220702.610|125.800 +638630.454|220707.112|125.502 +638625.354|220711.611|125.438 +638620.295|220716.070|125.291 +638615.192|220720.569|125.200 +638610.178|220724.989|124.993 +638605.116|220729.451|124.816 +638600.047|220733.919|124.484 +638595.036|220738.336|124.435 +638589.979|220742.795|124.520 +638584.980|220747.209|124.727 +638579.936|220751.662|125.069 +638574.943|220756.069|125.435 +638569.954|220760.477|125.840 +638564.961|220764.884|126.227 +638560.017|220769.252|126.590 +638555.022|220773.662|126.922 +638550.075|220778.027|127.260 +638545.131|220782.395|127.620 +638540.147|220786.796|128.184 +638535.210|220791.158|128.687 +638530.260|220795.529|128.958 +638525.316|220799.896|129.357 +638520.372|220804.261|129.766 +638515.471|220808.589|130.058 +638510.527|220812.954|130.470 +638505.623|220817.282|130.790 +638500.670|220821.656|131.055 +638495.814|220825.942|131.366 +638490.852|220830.322|131.582 +638485.939|220834.659|131.774 +638481.022|220838.996|131.963 +638476.151|220843.294|132.101 +638471.232|220847.637|132.247 +638466.349|220851.941|132.296 +638461.384|220856.318|131.918 +638456.486|220860.634|131.835 +638451.670|220864.895|132.722 +638446.778|220869.208|132.710 +638441.922|220873.490|132.564 +638437.021|220877.813|132.497 +638432.172|220882.089|132.488 +638427.264|220886.414|132.408 +638422.391|220890.709|132.180 +638417.535|220894.994|132.146 +638412.649|220899.298|131.851 +638407.763|220903.602|131.558 +638402.877|220907.909|131.278 +638398.031|220912.179|130.964 +638393.154|220916.480|130.842 +638388.320|220920.741|130.689 +638369.035|220937.752|130.802 +638364.223|220941.997|130.976 +638359.419|220946.237|131.211 +638354.630|220950.459|131.192 +638349.799|220954.723|131.223 +638345.038|220958.923|131.473 +638340.256|220963.141|131.546 +638335.532|220967.314|131.686 +638330.755|220971.527|131.863 +638325.964|220975.751|131.912 +638321.227|220979.930|132.030 +638316.433|220984.154|132.101 +638311.687|220988.339|132.171 +638306.978|220992.494|132.146 +638302.235|220996.676|132.296 +638297.520|221000.833|132.271 +638292.750|221005.036|132.241 +638283.307|221013.360|132.192 +638278.592|221017.518|132.250 +638273.813|221021.724|131.854 +638269.155|221025.833|132.003 +638264.492|221029.948|132.128 +638259.834|221034.053|132.329 +638245.841|221046.398|132.847 +638241.248|221050.452|133.207 +638231.915|221058.681|133.277 +638227.251|221062.790|133.183 +638222.673|221066.829|133.359 +638218.001|221070.946|133.256 +638213.380|221075.019|133.170 +638208.692|221079.149|133.012 +638199.441|221087.299|132.561 +638194.778|221091.405|132.287 +638190.157|221095.474|131.985 +638185.628|221099.473|132.293 +638180.986|221103.557|131.902 +638176.331|221107.654|131.464 +638171.756|221111.683|131.220 +638167.260|221115.645|131.183 +638162.545|221119.794|130.427 +638158.132|221123.695|131.235 +638153.486|221127.780|130.342 +638148.988|221131.742|130.372 +638144.467|221135.726|130.284 +638139.935|221139.722|130.129 +638135.457|221143.666|130.040 +638130.959|221147.628|129.827 +638126.460|221151.591|129.644 +638121.933|221155.577|129.318 +638117.435|221159.537|128.888 +638112.930|221163.508|128.720 +638108.461|221167.443|128.498 +638103.987|221171.381|127.980 +638099.491|221175.338|127.650 +638095.017|221179.279|127.465 +638090.609|221183.165|127.376 +638086.183|221187.063|127.199 +638081.560|221191.117|125.709 +638077.189|221194.973|125.889 +638072.891|221198.768|126.191 +638068.618|221202.541|126.639 +638055.783|221213.867|127.437 +638051.287|221217.818|126.514 +638046.971|221221.622|126.535 +638042.606|221225.462|126.069 +638038.257|221229.290|125.703 +638033.934|221233.100|125.486 +638029.701|221236.831|125.486 +638025.376|221240.638|125.023 +638021.108|221244.399|124.883 +638012.544|221251.937|124.252 +638008.337|221255.646|124.200 +638004.128|221259.356|124.167 +637999.937|221263.047|123.969 +637986.696|221274.663|120.311 +637982.478|221278.375|119.817 +637978.217|221282.118|119.150 +637974.044|221285.788|118.924 +637961.803|221296.572|119.128 +637949.947|221307.030|120.500 +637946.045|221310.474|121.131 +637942.083|221313.970|121.478 +637938.111|221317.469|121.576 +637930.049|221324.559|121.036 +637925.840|221328.253|120.107 +637921.990|221331.645|120.335 +637918.001|221335.157|120.183 +637910.012|221342.185|119.653 +637906.089|221345.639|119.610 +637898.429|221352.384|119.674 +637868.150|221379.054|120.146 +637864.471|221382.297|120.360 +637860.738|221385.583|120.369 +637857.065|221388.817|120.411 +637853.398|221392.045|120.268 +637849.692|221395.309|120.198 +637846.022|221398.537|120.079 +637842.282|221401.829|119.890 +637838.719|221404.962|119.796 +637799.348|221439.597|117.449 +637795.861|221442.666|117.360 +637792.459|221445.659|117.406 +637785.796|221451.530|117.629 +637769.096|221466.221|116.979 +637765.774|221469.147|116.979 +637762.619|221471.924|117.004 +637753.131|221480.281|117.452 +637746.882|221485.783|117.610 +638022.855|221240.495|124.782 +638027.134|221236.718|125.020 +638031.444|221232.917|125.425 +638035.718|221229.147|125.654 +638039.985|221225.377|125.630 +638044.328|221221.545|126.002 +638048.687|221217.702|126.468 +638053.000|221213.895|126.730 +638061.717|221206.202|126.953 +638065.932|221202.471|126.480 +638070.224|221198.676|126.133 +638074.564|221194.842|126.081 +638078.829|221191.068|125.617 +638083.361|221187.078|126.642 +638087.863|221183.113|127.227 +638092.273|221179.218|127.343 +638096.742|221175.274|127.526 +638101.222|221171.320|127.779 +638105.730|221167.343|128.227 +638110.214|221163.389|128.547 +638114.673|221159.454|128.751 +638119.224|221155.443|129.199 +638123.738|221151.456|129.485 +638128.246|221147.479|129.735 +638132.784|221143.474|129.888 +638137.305|221139.481|129.970 +638141.819|221135.494|130.025 +638146.339|221131.504|130.135 +638150.908|221127.472|130.250 +638155.471|221123.448|130.653 +638160.104|221119.358|130.900 +638164.602|221115.383|130.638 +638169.211|221111.317|131.101 +638173.838|221107.233|131.369 +638178.492|221103.130|131.823 +638183.134|221099.037|132.244 +638192.318|221090.923|132.180 +638196.975|221086.814|132.433 +638206.263|221078.618|132.832 +638211.005|221074.436|133.393 +638220.311|221066.216|133.375 +638225.029|221062.049|133.494 +638234.320|221053.835|133.140 +638243.668|221045.575|132.902 +638248.374|221041.414|132.683 +638253.083|221037.251|132.503 +638257.731|221033.139|132.268 +638262.486|221028.936|132.079 +638267.198|221024.769|131.985 +638271.908|221020.609|131.854 +638276.729|221016.347|131.881 +638281.469|221012.163|132.027 +638291.076|221003.677|132.256 +638295.847|220999.465|132.332 +638300.635|220995.234|132.177 +638305.426|220990.997|132.079 +638310.227|220986.757|132.043 +638315.070|220982.478|131.994 +638319.862|220978.244|131.948 +638324.681|220973.989|132.134 +638329.475|220969.747|131.735 +638334.309|220965.473|131.695 +638339.122|220961.218|131.479 +638343.999|220956.911|131.381 +638348.809|220952.656|131.183 +638353.686|220948.346|131.153 +638363.427|220939.739|131.022 +638387.902|220918.113|130.808 +638392.825|220913.767|130.909 +638397.748|220909.417|131.049 +638402.737|220905.016|131.381 +638407.684|220900.651|131.817 +638412.643|220896.271|131.872 +638417.572|220891.922|132.189 +638422.570|220887.505|132.207 +638427.490|220883.165|132.442 +638432.486|220878.751|132.494 +638437.439|220874.377|132.616 +638442.437|220869.961|132.741 +638447.372|220865.599|132.732 +638452.273|220861.265|132.311 +638457.226|220856.885|131.942 +638462.216|220852.478|132.043 +638467.215|220848.064|132.277 +638472.186|220843.672|132.189 +638477.154|220839.280|132.082 +638482.113|220834.894|131.906 +638487.124|220830.468|131.741 +638492.077|220826.088|131.476 +638497.085|220821.662|131.293 +638502.032|220817.285|131.009 +638507.031|220812.866|130.699 +638512.020|220808.452|130.327 +638517.013|220804.036|130.010 +638522.045|220799.582|129.507 +638527.044|220795.163|129.290 +638532.027|220790.752|128.836 +638537.069|220786.296|128.507 +638542.049|220781.889|127.989 +638547.072|220777.442|127.385 +638552.117|220772.979|127.135 +638557.161|220768.520|126.888 +638562.194|220764.067|126.443 +638567.232|220759.614|126.084 +638572.267|220755.158|125.703 +638577.303|220750.705|125.310 +638582.387|220746.206|124.923 +638587.431|220741.750|124.712 +638592.482|220737.287|124.636 +638597.587|220732.779|124.700 +638602.647|220728.314|124.880 +638607.758|220723.803|125.154 +638612.864|220719.295|125.371 +638617.914|220714.836|125.450 +638623.013|220710.334|125.532 +638628.116|220705.829|125.745 +638633.221|220701.324|126.023 +638638.321|220696.825|126.230 +638643.420|220692.323|126.480 +638648.519|220687.821|126.757 +638653.664|220683.280|127.026 +638658.764|220678.781|127.398 +638663.863|220674.285|127.772 +638669.002|220669.747|127.961 +638674.095|220665.254|128.175 +638679.234|220660.715|128.388 +638684.321|220656.226|128.501 +638689.457|220651.690|128.608 +638694.590|220647.158|128.684 +638699.723|220642.622|128.772 +638704.855|220638.090|128.729 +638709.988|220633.558|128.830 +638715.121|220629.025|128.851 +638720.251|220624.493|128.873 +638725.384|220619.960|128.812 +638730.514|220615.428|128.918 +638735.695|220610.853|128.952 +638740.825|220606.321|128.912 +638761.399|220588.145|128.793 +638766.581|220583.567|128.589 +638771.713|220579.029|128.205 +638776.895|220574.451|128.175 +638782.031|220569.912|128.059 +638787.216|220565.325|127.571 +638792.355|220560.783|127.221 +638797.542|220556.196|126.888 +638802.681|220551.652|126.587 +638807.872|220547.061|126.276 +638813.066|220542.468|125.773 +638818.214|220537.914|125.364 +638823.408|220533.321|124.993 +638828.601|220528.734|124.871 +638833.801|220524.131|124.386 +638838.943|220519.583|123.956 +638844.149|220514.975|123.386 +638849.355|220510.372|122.954 +638854.516|220505.809|122.524 +638859.722|220501.204|122.198 +638864.931|220496.601|121.899 +638870.149|220491.984|121.323 +638875.358|220487.378|121.049 +638880.533|220482.797|120.430 +638885.758|220478.176|119.893 +638890.988|220473.546|119.241 +638896.218|220468.916|118.625 +638901.403|220464.329|118.095 +638906.633|220459.702|117.620 +638911.821|220455.115|117.159 +638916.988|220450.549|117.165 +638922.206|220445.944|117.202 +638927.372|220441.381|117.278 +638932.602|220436.754|117.040 +638937.790|220432.170|116.787 +638942.981|220427.582|116.480 +638948.181|220422.983|116.041 +638953.369|220418.396|115.839 +638958.562|220413.805|115.620 +638963.753|220409.218|115.480 +638968.941|220404.637|115.474 +638974.086|220400.092|115.337 +638979.295|220395.490|115.010 +638984.501|220390.891|114.782 +638989.655|220386.337|114.626 +638994.858|220381.740|114.489 +639000.024|220377.174|114.194 +639005.188|220372.612|114.002 +639010.409|220368.000|113.724 +639015.545|220363.458|113.297 +639020.726|220358.880|112.959 +639025.911|220354.296|112.615 +639031.105|220349.703|112.170 +639036.253|220345.152|111.728 +639041.450|220340.559|111.353 +639046.592|220336.017|111.094 +639051.737|220331.470|110.813 +639056.876|220326.931|110.655 +639062.021|220322.384|110.429 +639067.169|220317.833|110.213 +639072.268|220313.328|110.021 +639077.416|220308.780|109.884 +639082.467|220304.321|109.750 +639087.636|220299.752|109.451 +639092.711|220295.268|109.103 +639097.850|220290.721|108.613 +639103.010|220286.158|107.979 +639108.101|220281.656|107.582 +639113.261|220277.093|107.009 +639118.363|220272.579|106.546 +639123.405|220268.135|106.796 +639128.394|220263.731|107.052 +639133.494|220259.232|107.229 +639138.514|220254.797|107.214 +639143.595|220250.310|107.122 +639148.615|220245.879|107.174 +639153.632|220241.450|107.278 +639158.688|220236.988|107.482 +639163.702|220232.565|107.674 +639168.722|220228.133|107.811 +639173.709|220223.729|107.805 +639178.738|220219.291|107.909 +639183.740|220214.874|107.838 +639188.781|220210.421|107.878 +639193.804|220205.983|107.656 +639198.815|220201.558|107.598 +639203.835|220197.123|107.464 +639208.846|220192.697|107.427 +639213.830|220188.296|107.256 +639218.865|220183.846|107.086 +639223.867|220179.426|106.802 +639228.902|220174.973|106.299 +639233.907|220170.550|106.049 +639238.875|220166.158|105.729 +639243.898|220161.720|105.415 +639248.885|220157.310|105.022 +639253.954|220152.826|104.412 +639258.919|220148.431|103.846 +639263.994|220143.944|103.273 +639268.968|220139.543|102.724 +639273.976|220135.114|102.322 +639304.136|220108.423|98.085 +639338.957|220077.644|95.683 +639348.713|220069.030|95.777 +639382.973|220038.776|95.311 +639407.256|220017.333|95.031 +639412.051|220013.108|95.692 +639416.864|220008.856|95.671 +639450.992|219978.700|93.790 +639470.204|219961.743|94.229 +639489.449|219944.754|94.272 +639494.201|219940.560|94.372 +639498.852|219936.457|94.729 +639513.184|219923.808|95.073 +639522.654|219915.453|95.390 +639527.308|219911.348|95.826 +639546.075|219894.788|96.561 +639550.604|219890.801|97.426 +639552.689|219886.223|97.628 +639525.013|219910.601|95.561 +639515.637|219918.861|94.964 +639510.913|219923.028|94.881 +639506.201|219927.179|94.744 +639501.391|219931.419|94.592 +639496.657|219935.595|94.607 +639438.413|219986.963|94.418 +639403.632|220017.650|95.229 +639373.625|220044.122|95.494 +639348.418|220066.357|95.476 +639338.249|220075.327|95.646 +639328.039|220084.343|96.223 +639317.794|220093.390|96.799 +639307.431|220102.546|97.948 +639302.280|220107.097|98.374 +639291.828|220116.338|100.005 +639286.656|220120.910|100.703 +639281.389|220125.568|101.374 +639271.050|220134.703|102.520 +639265.878|220139.268|102.974 +639260.644|220143.895|103.568 +639255.463|220148.473|104.160 +639250.235|220153.094|104.778 +639245.041|220157.681|105.174 +639239.906|220162.217|105.543 +639234.727|220166.789|105.866 +639229.545|220171.367|106.281 +639224.327|220175.973|106.598 +639219.210|220180.496|106.964 +639214.022|220185.071|107.104 +639208.874|220189.615|107.354 +639203.704|220194.178|107.415 +639198.517|220198.756|107.628 +639193.402|220203.271|107.707 +639188.224|220207.839|107.912 +639183.060|220212.396|108.021 +639177.924|220216.926|107.942 +639172.782|220221.461|107.915 +639167.628|220226.009|108.027 +639162.498|220230.532|107.942 +639157.384|220235.040|107.741 +639152.224|220239.591|107.528 +639147.106|220244.105|107.412 +639141.930|220248.671|107.387 +639136.801|220253.194|107.421 +639131.622|220257.766|107.497 +639126.468|220262.310|107.348 +639121.381|220266.791|107.012 +639116.248|220271.314|106.695 +639111.054|220275.901|107.019 +639105.830|220280.519|107.707 +639100.639|220285.103|108.076 +639095.476|220289.669|108.750 +639090.236|220294.296|109.198 +639085.061|220298.868|109.524 +639079.885|220303.434|109.881 +639074.731|220307.982|110.021 +639069.577|220312.529|110.213 +639064.380|220317.110|110.329 +639059.229|220321.655|110.548 +639054.032|220326.242|110.758 +639048.884|220330.781|110.969 +639043.742|220335.319|111.167 +639038.548|220339.903|111.466 +639033.400|220344.448|111.813 +639028.194|220349.041|112.304 +639023.000|220353.629|112.712 +639017.858|220358.167|113.087 +639012.674|220362.742|113.450 +639007.489|220367.317|113.816 +639002.362|220371.844|114.142 +638997.193|220376.406|114.379 +638992.026|220380.966|114.623 +638986.869|220385.514|114.739 +638981.706|220390.071|114.995 +638976.543|220394.624|115.260 +638971.382|220399.178|115.568 +638966.240|220403.713|115.559 +638961.095|220408.249|115.632 +638955.947|220412.793|115.846 +638950.799|220417.332|116.044 +638945.648|220421.880|116.373 +638940.448|220426.470|116.714 +638935.303|220431.008|117.013 +638930.167|220435.544|117.202 +638924.979|220440.119|117.421 +638919.856|220444.636|117.397 +638914.735|220449.150|117.278 +638909.553|220453.722|117.488 +638904.418|220458.255|117.827 +638899.230|220462.833|118.272 +638894.094|220467.371|118.796 +638888.906|220471.952|119.415 +638883.722|220476.530|119.954 +638878.589|220481.066|120.579 +638873.416|220485.632|120.994 +638868.299|220490.152|121.295 +638863.172|220494.678|121.920 +638858.009|220499.235|122.155 +638852.842|220503.795|122.591 +638847.731|220508.309|122.978 +638842.519|220512.911|123.429 +638837.410|220517.419|123.783 +638832.262|220521.967|124.319 +638827.105|220526.521|124.737 +638821.954|220531.065|124.962 +638816.803|220535.613|125.322 +638811.655|220540.157|125.648 +638806.552|220544.662|126.163 +638801.404|220549.207|126.611 +638796.259|220553.745|126.788 +638791.117|220558.287|127.157 +638785.972|220562.826|127.458 +638780.833|220567.361|127.772 +638775.740|220571.857|128.163 +638770.555|220576.432|128.300 +638765.416|220580.964|128.501 +638760.329|220585.454|128.617 +638755.145|220590.029|128.925 +638739.737|220603.614|128.940 +638734.650|220608.101|128.998 +638729.514|220612.627|128.894 +638724.378|220617.156|128.815 +638719.242|220621.682|128.708 +638714.106|220626.212|128.790 +638708.970|220630.741|128.809 +638703.883|220635.228|128.778 +638698.747|220639.757|128.751 +638693.608|220644.283|128.669 +638688.518|220648.770|128.647 +638683.425|220653.260|128.513 +638678.286|220657.789|128.431 +638673.193|220662.279|128.245 +638668.045|220666.811|128.001 +638662.900|220671.344|127.785 +638657.803|220675.836|127.608 +638652.649|220680.372|127.215 +638647.596|220684.825|126.946 +638642.441|220689.363|126.590 +638637.345|220693.856|126.611 +638632.240|220698.355|126.346 +638627.131|220702.854|126.081 +638622.026|220707.353|125.898 +638616.917|220711.855|125.639 +638611.812|220716.354|125.553 +638606.746|220720.813|125.291 +638601.635|220725.318|125.084 +638596.523|220729.823|124.910 +638591.461|220734.282|124.779 +638586.352|220738.787|124.782 +638581.308|220743.237|125.044 +638576.263|220747.690|125.361 +638571.222|220752.140|125.718 +638566.177|220756.590|126.059 +638561.139|220761.037|126.489 +638556.149|220765.445|126.901 +638551.102|220769.898|127.205 +638546.051|220774.351|127.446 +638541.071|220778.752|128.001 +638536.036|220783.199|128.504 +638531.086|220787.567|128.803 +638521.094|220796.385|129.516 +638516.111|220800.786|130.043 +638511.109|220805.200|130.314 +638506.159|220809.568|130.668 +638501.160|220813.978|131.012 +638496.256|220818.306|131.302 +638491.242|220822.729|131.433 +638486.286|220827.103|131.710 +638481.318|220831.483|131.860 +638476.401|220835.820|132.052 +638471.433|220840.203|132.213 +638466.504|220844.550|132.283 +638461.512|220848.951|132.143 +638456.553|220853.319|131.887 +638451.630|220857.659|132.082 +638446.744|220861.978|132.725 +638441.837|220866.300|132.555 +638436.884|220870.665|132.460 +638431.986|220874.984|132.430 +638427.045|220879.340|132.497 +638422.162|220883.640|132.165 +638417.249|220887.972|132.040 +638412.332|220892.303|131.930 +638407.394|220896.652|131.589 +638402.505|220900.956|131.302 +638397.629|220905.254|131.153 +638392.734|220909.567|130.854 +638387.857|220913.864|130.756 +638358.888|220939.407|131.067 +638349.242|220947.917|131.247 +638344.429|220952.160|131.479 +638339.637|220956.384|131.467 +638334.864|220960.596|131.622 +638330.076|220964.818|131.674 +638325.351|220968.988|131.851 +638320.557|220973.215|131.887 +638315.814|220977.400|131.970 +638311.017|220981.631|132.009 +638306.323|220985.776|132.094 +638301.565|220989.970|132.110 +638296.816|220994.161|132.195 +638292.122|220998.303|132.351 +638287.330|221002.528|132.140 +638282.585|221006.710|131.927 +638273.194|221014.994|131.951 +638268.433|221019.191|131.686 +638263.800|221023.285|132.030 +638259.106|221027.421|131.942 +638254.449|221031.536|132.128 +638249.828|221035.611|132.247 +638245.164|221039.729|132.427 +638240.547|221043.804|132.597 +638231.259|221052.000|132.985 +638226.712|221056.017|133.332 +638217.440|221064.195|133.216 +638212.831|221068.261|133.210 +638203.593|221076.408|133.106 +638198.972|221080.481|132.728 +638189.755|221088.604|132.235 +638185.079|221092.721|131.912 +638180.601|221096.678|132.226 +638176.023|221100.710|131.930 +638171.384|221104.798|131.579 +638166.770|221108.861|131.095 +638157.684|221116.874|130.769 +638152.996|221120.995|129.906 +638148.463|221124.991|129.711 +638143.967|221128.959|129.748 +638139.402|221132.979|129.397 +638134.939|221136.917|129.370 +638130.486|221140.843|129.434 +638126.003|221144.806|129.607 +638121.565|221148.716|129.491 +638117.054|221152.691|129.260 +638112.585|221156.632|129.001 +638108.080|221160.600|128.550 +638103.618|221164.532|128.373 +638099.092|221168.516|127.852 +638094.642|221172.439|127.498 +638090.219|221176.337|127.306 +638085.827|221180.211|127.309 +638081.294|221184.198|126.572 +638076.689|221188.243|125.163 +638072.449|221191.995|126.050 +638068.100|221195.829|125.816 +638063.845|221199.591|126.364 +638059.574|221203.364|126.843 +638042.201|221218.677|126.041 +638037.851|221222.509|125.657 +638033.541|221226.309|125.489 +638029.259|221230.086|125.483 +638024.943|221233.890|125.057 +638020.673|221237.651|124.898 +638016.408|221241.412|124.761 +638012.120|221245.189|124.282 +638007.914|221248.898|124.218 +638003.698|221252.614|124.145 +637999.504|221256.314|124.179 +637986.258|221267.948|120.421 +637981.993|221271.706|119.951 +637977.784|221275.413|119.515 +637973.578|221279.119|119.101 +637965.312|221286.407|118.793 +637961.285|221289.967|119.028 +637957.411|221293.396|119.988 +637953.485|221296.868|120.472 +637949.441|221300.437|120.418 +637945.548|221303.881|121.076 +637941.705|221307.280|121.722 +637933.774|221314.281|121.939 +637925.803|221321.316|121.792 +637921.664|221324.955|120.942 +637917.546|221328.576|120.223 +637909.622|221335.565|119.707 +637905.760|221338.973|119.677 +637901.956|221342.335|120.155 +637898.027|221345.797|119.869 +637867.864|221372.422|120.485 +637860.332|221379.066|120.186 +637856.684|221382.285|120.323 +637852.980|221385.552|120.238 +637849.298|221388.802|120.265 +637845.647|221392.023|120.198 +637838.286|221398.516|119.872 +637834.613|221401.750|119.546 +637831.117|221404.840|119.933 +637827.566|221407.977|120.113 +637805.992|221426.987|118.247 +637802.460|221430.099|117.955 +637798.924|221433.217|117.647 +637795.462|221436.268|117.427 +637791.969|221439.347|117.324 +637788.521|221442.389|117.178 +637785.330|221445.211|117.616 +637768.532|221460.027|117.159 +637765.314|221462.868|117.333 +637761.970|221465.816|117.059 +637758.748|221468.656|117.043 +637755.469|221471.549|117.022 +637749.132|221477.145|117.211 +637746.090|221479.833|117.488 +637742.926|221482.625|117.522 +637739.854|221485.338|117.702 +638020.834|221235.545|124.898 +638025.144|221231.738|125.035 +638029.460|221227.931|125.483 +638033.724|221224.161|125.419 +638038.040|221220.351|125.639 +638042.387|221216.513|126.047 +638059.727|221201.194|126.511 +638063.936|221197.466|126.014 +638068.255|221193.647|125.828 +638072.650|221189.761|125.797 +638076.881|221186.015|125.154 +638081.590|221181.872|126.882 +638086.001|221177.980|127.273 +638090.396|221174.097|127.315 +638094.873|221170.144|127.538 +638099.369|221166.175|127.910 +638103.874|221162.201|128.333 +638108.342|221158.253|128.595 +638112.841|221154.282|129.037 +638117.355|221150.298|129.299 +638121.842|221146.333|129.421 +638126.335|221142.361|129.306 +638130.815|221138.402|129.424 +638135.378|221134.372|129.766 +638139.868|221130.404|129.674 +638144.376|221126.417|129.418 +638148.917|221122.406|129.677 +638153.578|221118.297|130.382 +638158.241|221114.185|131.150 +638162.783|221110.168|130.851 +638167.376|221106.114|131.220 +638172.043|221101.996|131.765 +638176.676|221097.906|132.104 +638181.211|221093.892|131.528 +638185.862|221089.786|132.037 +638190.456|221085.729|132.192 +638199.819|221077.460|132.762 +638204.480|221073.345|133.100 +638237.041|221044.563|132.549 +638241.705|221040.439|132.375 +638246.402|221036.291|132.439 +638251.084|221032.145|132.085 +638255.741|221028.030|131.906 +638260.450|221023.867|131.756 +638265.214|221019.655|131.686 +638269.957|221015.467|131.817 +638274.660|221011.309|131.701 +638279.430|221007.094|131.726 +638284.225|221002.860|131.960 +638289.053|220998.596|132.091 +638293.820|220994.384|132.149 +638298.632|220990.132|132.195 +638303.375|220985.941|132.104 +638317.783|220973.203|131.808 +638322.626|220968.920|131.808 +638327.436|220964.669|131.528 +638332.218|220960.441|131.479 +638337.104|220956.122|131.479 +638341.932|220951.858|131.418 +638346.721|220947.618|131.034 +638366.152|220930.439|130.327 +638385.744|220913.130|130.549 +638390.630|220908.814|130.799 +638395.593|220904.428|130.851 +638400.533|220900.066|131.198 +638405.520|220895.668|131.528 +638410.442|220891.321|131.741 +638415.420|220886.923|132.073 +638420.364|220882.555|132.046 +638425.329|220878.172|132.265 +638430.276|220873.798|132.351 +638435.238|220869.418|132.585 +638440.215|220865.017|132.500 +638445.214|220860.604|132.646 +638450.146|220856.245|132.625 +638455.065|220851.886|131.857 +638460.052|220847.479|131.957 +638465.057|220843.062|132.274 +638470.077|220838.624|132.226 +638474.990|220834.281|132.049 +638479.998|220829.852|131.875 +638485.012|220825.420|131.756 +638489.965|220821.040|131.512 +638494.970|220816.615|131.342 +638499.969|220812.195|131.080 +638504.961|220807.775|130.747 +638509.951|220803.362|130.406 +638514.940|220798.945|130.031 +638519.933|220794.529|129.726 +638524.968|220790.076|129.327 +638529.955|220785.662|128.934 +638534.947|220781.246|128.626 +638539.974|220776.799|128.099 +638545.003|220772.345|127.626 +638549.995|220767.932|127.321 +638555.031|220763.473|126.992 +638560.066|220759.020|126.608 +638565.147|220754.524|126.181 +638570.137|220750.110|125.861 +638575.215|220745.614|125.386 +638580.259|220741.152|125.224 +638585.297|220736.690|124.950 +638590.397|220732.182|124.959 +638595.453|220727.710|125.112 +638600.556|220723.199|125.212 +638605.664|220718.688|125.486 +638610.718|220714.220|125.654 +638615.817|220709.712|125.864 +638620.923|220705.201|126.136 +638626.019|220700.696|126.325 +638631.121|220696.188|126.599 +638636.211|220691.686|126.651 +638641.305|220687.184|126.754 +638646.404|220682.679|127.145 +638651.497|220678.177|127.385 +638656.593|220673.675|127.727 +638661.732|220669.134|127.916 +638666.819|220664.635|128.105 +638671.910|220660.139|128.352 +638676.997|220655.643|128.461 +638682.130|220651.105|128.620 +638687.262|220646.566|128.690 +638692.295|220642.113|128.720 +638697.424|220637.578|128.766 +638702.557|220633.042|128.836 +638707.638|220628.547|128.821 +638712.765|220624.011|128.787 +638717.895|220619.476|128.766 +638722.979|220614.983|129.013 +638728.154|220610.405|129.071 +638733.235|220605.909|129.001 +638738.365|220601.374|129.065 +638743.492|220596.838|129.083 +638753.752|220587.764|128.845 +638758.881|220583.226|128.656 +638764.011|220578.684|128.492 +638769.141|220574.146|128.315 +638774.271|220569.604|128.150 +638779.407|220565.060|127.843 +638784.539|220560.515|127.574 +638789.724|220555.928|127.254 +638794.811|220551.423|126.904 +638799.999|220546.830|126.565 +638805.138|220542.276|126.123 +638810.234|220537.765|125.727 +638815.425|220533.168|125.334 +638820.570|220528.615|125.023 +638825.712|220524.061|124.779 +638830.863|220519.501|124.350 +638836.005|220514.947|123.837 +638841.156|220510.385|123.414 +638846.359|220505.779|123.027 +638851.465|220501.256|122.637 +638856.625|220496.687|122.204 +638861.828|220492.081|121.966 +638866.991|220487.509|121.518 +638872.154|220482.934|121.033 +638877.321|220478.359|120.631 +638882.499|220473.772|119.966 +638887.672|220469.188|119.479 +638892.899|220464.558|118.924 +638898.029|220460.013|118.403 +638903.204|220455.429|118.034 +638908.435|220450.799|117.620 +638913.555|220446.270|117.546 +638918.768|220441.658|117.562 +638923.937|220437.089|117.577 +638929.113|220432.505|117.397 +638934.294|220427.921|117.184 +638939.482|220423.327|116.882 +638944.670|220418.734|116.571 +638949.863|220414.138|116.239 +638955.054|220409.544|116.028 +638960.242|220404.951|115.846 +638965.430|220400.358|115.748 +638970.608|220395.773|115.772 +638975.762|220391.208|115.474 +638980.965|220386.596|115.166 +638986.119|220382.033|114.931 +638991.322|220377.421|114.700 +638996.528|220372.810|114.483 +639001.695|220368.232|114.160 +639006.910|220363.614|113.913 +639012.088|220359.024|113.471 +639017.267|220354.436|113.115 +639022.497|220349.800|112.731 +639027.685|220345.201|112.310 +639032.876|220340.601|111.886 +639038.060|220336.008|111.597 +639043.251|220331.409|111.255 +639048.436|220326.815|111.024 +639053.617|220322.228|110.899 +639058.756|220317.674|110.691 +639063.999|220313.029|110.457 +639069.141|220308.475|110.292 +639074.283|220303.922|110.143 +639079.486|220299.313|109.932 +639084.652|220294.735|109.567 +639089.825|220290.151|109.177 +639095.015|220285.548|108.637 +639100.206|220280.946|108.146 +639105.461|220276.285|107.525 +639110.606|220271.726|107.061 +639115.745|220267.178|107.223 +639120.814|220262.694|107.595 +639125.898|220258.199|107.872 +639131.049|220253.639|107.948 +639136.164|220249.113|107.954 +639141.281|220244.580|107.930 +639146.347|220240.097|107.957 +639151.440|220235.592|108.241 +639156.555|220231.065|108.320 +639161.627|220226.576|108.372 +639166.708|220222.077|108.363 +639171.804|220217.566|108.244 +639176.879|220213.073|108.332 +639181.917|220208.611|108.323 +639187.041|220204.072|108.043 +639192.107|220199.585|107.857 +639197.172|220195.099|107.713 +639202.235|220190.615|107.619 +639207.307|220186.119|107.451 +639212.333|220181.669|107.296 +639217.420|220177.164|107.092 +639222.462|220172.696|106.869 +639227.531|220168.203|106.449 +639232.615|220163.695|105.967 +639237.693|220159.193|105.546 +639242.719|220154.740|105.184 +639247.806|220150.232|104.763 +639252.847|220145.761|104.339 +639257.944|220141.244|103.919 +639262.961|220136.793|103.370 +639268.045|220132.282|102.730 +639273.065|220127.832|102.236 +639308.300|220096.581|98.271 +639313.393|220092.061|97.524 +639318.361|220087.654|96.978 +639328.346|220078.802|96.009 +639333.248|220074.462|95.985 +639343.126|220065.708|95.537 +639357.674|220052.833|96.064 +639372.329|220039.855|95.820 +639425.596|219992.669|94.592 +639430.415|219988.398|94.302 +639439.943|219979.964|94.415 +639444.771|219975.682|94.132 +639454.394|219967.157|93.580 +639473.206|219950.505|94.180 +639477.967|219946.284|93.879 +639487.428|219937.908|93.921 +639492.076|219933.790|93.979 +639501.415|219925.524|94.226 +639510.721|219917.285|94.452 +639515.326|219913.213|94.827 +639524.477|219905.124|95.912 +639529.106|219901.024|95.960 +639542.780|219888.930|96.978 +639547.370|219884.867|97.274 +639550.290|219879.959|97.158 +639545.685|219884.022|97.122 +639536.534|219892.087|96.817 +639527.509|219900.030|95.966 +639513.790|219912.113|94.677 +639509.194|219916.161|94.208 +639504.597|219920.211|94.031 +639499.870|219924.381|93.994 +639495.139|219928.551|93.985 +639490.491|219932.647|93.851 +639485.776|219936.805|93.812 +639476.275|219945.181|93.616 +639471.557|219949.344|93.659 +639418.263|219996.387|95.168 +639413.374|220000.703|95.275 +639374.036|220035.417|95.272 +639363.895|220044.375|96.265 +639344.105|220061.825|95.235 +639339.039|220066.302|95.540 +639334.025|220070.725|95.537 +639328.959|220075.196|95.573 +639318.559|220084.401|97.481 +639308.294|220093.472|98.298 +639277.289|220120.880|101.633 +639272.123|220125.452|102.373 +639266.911|220130.057|102.742 +639261.760|220134.611|103.431 +639256.532|220139.235|103.998 +639251.329|220143.828|104.394 +639246.117|220148.437|104.918 +639240.966|220152.988|105.376 +639235.733|220157.614|105.741 +639230.551|220162.193|106.141 +639225.363|220166.777|106.604 +639220.136|220171.398|107.031 +639215.000|220175.930|107.128 +639209.797|220180.526|107.436 +639204.607|220185.110|107.640 +639199.428|220189.682|107.796 +639194.207|220194.294|107.927 +639189.037|220198.857|108.040 +639183.819|220203.463|108.186 +639178.647|220208.031|108.405 +639173.441|220212.628|108.509 +639168.253|220217.209|108.503 +639163.059|220221.793|108.543 +639157.832|220226.405|108.463 +639152.647|220230.980|108.491 +639147.484|220235.537|108.357 +639142.272|220240.133|108.201 +639137.096|220244.702|108.210 +639131.872|220249.314|108.247 +639126.666|220253.907|108.119 +639121.466|220258.494|107.979 +639116.284|220263.063|107.646 +639111.155|220267.583|107.299 +639105.888|220272.238|107.409 +639100.688|220276.831|107.869 +639095.430|220281.479|108.448 +639090.139|220286.158|108.924 +639084.902|220290.788|109.393 +639079.669|220295.415|109.865 +639074.457|220300.017|110.106 +639069.251|220304.617|110.326 +639064.005|220309.253|110.463 +639058.802|220313.849|110.725 +639053.608|220318.439|110.920 +639048.369|220323.069|111.085 +639043.181|220327.654|111.261 +639037.984|220332.247|111.575 +639032.745|220336.877|111.847 +639027.554|220341.467|112.206 +639022.308|220346.103|112.627 +639017.072|220350.733|113.014 +639011.884|220355.320|113.398 +639006.651|220359.947|113.828 +639001.426|220364.565|114.148 +638996.257|220369.134|114.416 +638990.990|220373.788|114.700 +638985.827|220378.354|114.968 +638980.618|220382.954|115.184 +638975.406|220387.562|115.522 +638970.200|220392.165|115.809 +638965.009|220396.749|115.833 +638959.818|220401.333|115.894 +638954.624|220405.923|116.099 +638949.476|220410.471|116.321 +638944.234|220415.104|116.580 +638939.086|220419.655|116.928 +638933.898|220424.242|117.165 +638928.707|220428.826|117.449 +638923.574|220433.364|117.635 +638918.396|220437.936|117.757 +638913.226|220442.502|117.738 +638908.106|220447.026|117.766 +638902.924|220451.604|118.055 +638897.794|220456.142|118.412 +638892.613|220460.720|118.790 +638887.425|220465.314|119.518 +638882.301|220469.846|119.869 +638877.168|220474.385|120.485 +638871.999|220478.957|120.863 +638866.875|220483.489|121.420 +638861.706|220488.058|121.862 +638856.549|220492.618|122.064 +638851.434|220497.138|122.441 +638846.271|220501.704|122.920 +638841.162|220506.221|123.286 +638836.008|220510.778|123.648 +638830.330|220515.801|124.051 +638825.755|220519.846|124.566 +638820.607|220524.396|124.880 +638815.458|220528.947|125.176 +638810.359|220533.458|125.541 +638805.211|220538.009|125.953 +638800.115|220542.514|126.352 +638795.019|220547.019|126.754 +638789.880|220551.563|127.032 +638784.786|220556.065|127.337 +638779.647|220560.607|127.638 +638774.560|220565.105|127.910 +638769.470|220569.601|128.196 +638764.337|220574.140|128.361 +638759.250|220578.632|128.547 +638754.166|220583.128|128.736 +638749.082|220587.618|128.845 +638743.998|220592.111|128.931 +638738.914|220596.600|128.986 +638733.827|220601.090|128.952 +638728.743|220605.580|128.934 +638718.575|220614.559|128.854 +638713.487|220619.052|128.708 +638708.403|220623.542|128.736 +638703.319|220628.031|128.714 +638698.284|220632.482|128.790 +638693.151|220637.014|128.781 +638688.113|220641.461|128.708 +638683.026|220645.954|128.617 +638677.939|220650.443|128.519 +638672.848|220654.936|128.391 +638667.761|220659.429|128.263 +638662.668|220663.925|128.083 +638657.627|220668.375|127.980 +638652.482|220672.916|127.696 +638647.431|220677.373|127.352 +638642.332|220681.868|127.135 +638637.229|220686.373|126.727 +638632.182|220690.827|126.675 +638627.092|220695.325|126.745 +638622.038|220699.785|126.529 +638616.978|220704.247|126.160 +638611.876|220708.752|126.005 +638606.819|220713.214|125.785 +638601.763|220717.679|125.590 +638596.703|220722.145|125.377 +638591.646|220726.610|125.270 +638586.535|220731.121|125.072 +638581.533|220735.538|125.172 +638576.489|220739.997|125.355 +638566.461|220748.864|126.078 +638561.425|220753.317|126.456 +638556.488|220757.681|126.904 +638551.446|220762.138|127.187 +638546.402|220766.597|127.440 +638541.418|220771.004|127.943 +638536.438|220775.412|128.434 +638531.448|220779.825|128.797 +638526.407|220784.281|129.129 +638521.463|220788.652|129.455 +638516.483|220793.057|129.994 +638511.484|220797.476|130.244 +638506.491|220801.890|130.607 +638501.496|220806.306|130.918 +638496.546|220810.683|131.180 +638491.547|220815.100|131.479 +638486.633|220819.443|131.616 +638481.626|220823.866|131.820 +638476.663|220828.252|131.988 +638471.695|220832.641|132.098 +638466.730|220837.030|132.232 +638461.804|220841.380|132.280 +638456.787|220845.805|131.842 +638451.859|220850.161|131.893 +638446.939|220854.517|132.677 +638442.038|220858.839|132.543 +638437.097|220863.203|132.515 +638432.150|220867.571|132.442 +638427.197|220871.945|132.320 +638422.339|220876.234|132.168 +638417.383|220880.611|132.061 +638412.509|220884.911|131.823 +638407.550|220889.291|131.726 +638402.670|220893.595|131.470 +638397.729|220897.957|131.098 +638392.874|220902.245|131.150 +638387.921|220906.613|130.720 +638383.038|220910.923|130.540 +638344.301|220945.143|131.089 +638339.534|220949.355|131.241 +638334.681|220953.647|131.540 +638329.923|220957.844|131.396 +638325.104|220962.102|131.585 +638320.322|220966.330|131.671 +638315.573|220970.521|131.668 +638310.815|220974.724|132.009 +638306.051|220978.930|131.896 +638301.251|220983.170|131.909 +638296.578|220987.297|132.195 +638291.802|220991.512|132.040 +638287.056|220995.703|132.168 +638282.307|220999.891|131.887 +638277.562|221004.076|131.680 +638272.852|221008.237|131.762 +638263.446|221016.539|131.680 +638258.771|221020.666|131.701 +638254.089|221024.800|131.692 +638249.422|221028.920|131.805 +638244.783|221033.020|132.140 +638240.184|221037.086|132.421 +638235.499|221041.222|132.442 +638230.903|221045.282|132.783 +638226.291|221049.354|132.655 +638221.628|221053.475|132.896 +638217.068|221057.505|133.180 +638212.456|221061.574|133.109 +638207.802|221065.682|133.116 +638203.178|221069.764|133.024 +638198.588|221073.815|132.820 +638193.940|221077.914|132.597 +638184.719|221086.046|132.067 +638175.435|221094.230|131.204 +638171.061|221098.107|132.192 +638166.471|221102.152|131.832 +638161.847|221106.227|131.287 +638157.229|221110.296|130.799 +638152.639|221114.344|130.503 +638148.024|221118.407|129.772 +638143.586|221122.327|129.833 +638139.112|221126.280|129.988 +638134.601|221130.261|129.961 +638130.130|221134.208|129.860 +638125.628|221138.179|129.616 +638121.147|221142.130|129.226 +638116.666|221146.083|129.138 +638112.189|221150.036|129.104 +638107.794|221153.913|128.955 +638103.289|221157.885|128.513 +638098.866|221161.786|128.251 +638094.352|221165.764|127.797 +638089.899|221169.690|127.425 +638085.418|221173.640|127.196 +638081.069|221177.480|127.138 +638076.317|221181.650|125.194 +638071.879|221185.561|124.706 +638067.502|221189.422|124.584 +638054.725|221200.721|125.892 +638050.452|221204.495|126.099 +638046.166|221208.280|126.255 +638041.905|221212.045|126.270 +638033.215|221219.701|125.526 +638028.936|221223.481|125.502 +638024.635|221227.273|125.130 +638020.362|221231.043|124.932 +638016.140|221234.768|124.737 +637986.029|221261.294|120.664 +637981.817|221265.004|120.174 +637977.574|221268.744|119.811 +637973.392|221272.426|119.262 +637965.162|221279.692|119.332 +637961.148|221283.240|119.616 +637957.061|221286.849|119.564 +637953.208|221290.257|120.390 +637941.342|221300.751|121.695 +637937.435|221304.204|122.048 +637929.464|221311.239|122.100 +637913.297|221325.488|120.418 +637905.321|221332.520|119.915 +637901.465|221335.925|119.924 +637897.664|221339.284|120.177 +637893.866|221342.637|120.457 +637867.330|221366.060|120.680 +637863.563|221369.386|120.497 +637859.909|221372.611|120.585 +637856.196|221375.887|120.671 +637852.359|221379.271|120.247 +637848.735|221382.468|120.280 +637845.080|221385.696|120.411 +637841.474|221388.881|120.530 +637830.462|221398.589|119.976 +637823.329|221404.883|119.997 +637805.188|221420.873|118.278 +637798.101|221427.121|117.799 +637794.660|221430.157|117.653 +637791.194|221433.211|117.647 +637787.726|221436.271|117.421 +637761.065|221459.799|117.644 +637757.749|221462.722|117.266 +637754.466|221465.617|117.223 +637751.281|221468.428|117.153 +637748.074|221471.256|117.214 +637741.716|221476.865|117.153 +637738.714|221479.519|117.586 +637735.663|221482.217|117.839 +638017.969|221231.671|124.849 +638022.209|221227.913|124.904 +638026.528|221224.087|125.115 +638030.859|221220.253|125.416 +638039.512|221212.590|126.011 +638048.224|221204.873|126.187 +638052.469|221201.102|125.864 +638065.280|221189.727|124.523 +638069.648|221185.859|124.618 +638074.031|221181.976|124.831 +638078.911|221177.685|127.212 +638083.291|221173.801|127.166 +638087.756|221169.842|127.346 +638092.255|221165.861|127.705 +638096.772|221161.865|128.205 +638101.234|221157.912|128.422 +638105.797|221153.877|128.937 +638110.296|221149.890|129.107 +638114.743|221145.946|129.001 +638119.294|221141.916|129.214 +638123.790|221137.932|129.434 +638128.359|221133.888|129.815 +638132.946|221129.825|130.001 +638137.487|221125.801|130.266 +638141.959|221121.839|130.101 +638146.570|221117.752|130.211 +638151.225|221113.634|130.909 +638155.748|221109.623|130.827 +638160.369|221105.535|131.360 +638165.014|221101.423|131.759 +638169.644|221097.327|132.085 +638174.067|221093.392|131.119 +638178.724|221089.271|131.662 +638183.393|221085.135|132.003 +638192.681|221076.911|132.375 +638197.356|221072.772|132.820 +638201.992|221068.663|133.021 +638206.668|221064.524|133.167 +638211.301|221060.412|133.067 +638220.604|221052.165|132.796 +638225.218|221048.071|132.610 +638234.557|221039.790|132.347 +638239.285|221035.599|132.299 +638243.906|221031.496|131.866 +638248.566|221027.363|131.744 +638253.321|221023.148|131.579 +638258.027|221018.975|131.442 +638262.742|221014.793|131.409 +638267.537|221010.544|131.610 +638272.273|221006.350|131.759 +638277.022|221002.138|131.668 +638281.777|220997.922|131.637 +638286.584|220993.667|132.024 +638291.393|220989.403|132.061 +638296.151|220985.188|132.119 +638300.967|220980.914|131.845 +638305.722|220976.702|131.912 +638310.501|220972.462|131.802 +638315.360|220968.158|131.939 +638320.106|220963.946|131.567 +638324.931|220959.667|131.479 +638329.701|220955.436|131.351 +638334.578|220951.114|131.320 +638339.387|220946.847|131.137 +638344.203|220942.577|131.040 +638349.098|220938.242|131.211 +638383.190|220908.012|130.589 +638388.107|220903.657|130.677 +638393.038|220899.289|130.970 +638398.001|220894.891|131.095 +638402.935|220890.523|131.454 +638407.903|220886.121|131.717 +638412.866|220881.726|131.887 +638417.819|220877.337|132.018 +638422.820|220872.905|132.198 +638427.780|220868.513|132.421 +638432.763|220864.097|132.445 +638437.707|220859.717|132.555 +638442.696|220855.294|132.677 +638447.619|220850.929|132.588 +638452.584|220846.519|131.863 +638457.522|220842.145|131.991 +638462.563|220837.679|132.241 +638467.535|220833.272|132.250 +638472.536|220828.834|132.027 +638477.502|220824.433|131.985 +638482.455|220820.038|131.814 +638487.502|220815.563|131.579 +638492.455|220811.168|131.448 +638497.494|220806.700|131.125 +638502.486|220802.271|130.857 +638507.473|220797.845|130.537 +638512.508|220793.377|130.217 +638517.495|220788.951|129.900 +638522.521|220784.492|129.406 +638527.553|220780.023|129.074 +638532.588|220775.558|128.754 +638537.614|220771.096|128.330 +638542.641|220766.633|127.855 +638547.670|220762.171|127.452 +638552.751|220757.660|127.166 +638557.780|220753.198|126.757 +638562.858|220748.690|126.389 +638567.887|220744.228|126.008 +638572.968|220739.720|125.700 +638578.046|220735.218|125.307 +638583.142|220730.704|125.276 +638588.239|220726.189|125.364 +638593.344|220721.672|125.581 +638598.440|220717.158|125.718 +638603.540|220712.644|125.907 +638608.587|220708.173|126.059 +638613.738|220703.616|126.367 +638618.835|220699.105|126.636 +638623.928|220694.594|126.812 +638629.015|220690.089|126.831 +638634.151|220685.541|126.852 +638639.244|220681.033|127.135 +638644.389|220676.483|127.532 +638649.476|220671.978|127.751 +638654.563|220667.476|127.971 +638659.699|220662.928|128.193 +638664.780|220658.429|128.288 +638669.910|220653.885|128.379 +638675.040|220649.343|128.492 +638680.170|220644.802|128.608 +638685.296|220640.260|128.678 +638690.426|220635.719|128.745 +638695.504|220631.220|128.784 +638700.677|220626.639|128.726 +638705.800|220622.097|128.644 +638710.927|220617.555|128.632 +638716.054|220613.017|128.815 +638721.178|220608.475|128.882 +638726.304|220603.937|128.885 +638731.428|220599.399|128.897 +638736.555|220594.857|128.836 +638741.678|220590.315|128.754 +638746.802|220585.777|128.775 +638751.929|220581.235|128.678 +638757.056|220576.691|128.486 +638762.179|220572.146|128.348 +638767.260|220567.644|128.092 +638772.436|220563.057|127.897 +638777.566|220558.506|127.580 +638782.647|220554.002|127.318 +638787.780|220549.454|127.105 +638792.912|220544.900|126.718 +638798.048|220540.343|126.297 +638803.184|220535.790|126.014 +638808.323|220531.233|125.541 +638813.462|220526.673|125.169 +638818.601|220522.116|124.919 +638823.697|220517.599|124.532 +638828.830|220513.042|124.130 +638833.978|220508.480|123.755 +638839.123|220503.917|123.423 +638844.274|220499.345|122.978 +638849.428|220494.776|122.539 +638854.534|220490.243|122.112 +638859.688|220485.677|121.829 +638864.839|220481.108|121.625 +638870.006|220476.521|120.988 +638875.166|220471.946|120.637 +638880.290|220467.402|120.049 +638885.456|220462.817|119.625 +638890.631|220458.224|119.064 +638895.755|220453.676|118.601 +638900.876|220449.138|118.318 +638906.042|220444.557|118.101 +638911.160|220440.024|118.019 +638916.320|220435.449|118.028 +638921.444|220430.911|117.857 +638926.567|220426.369|117.693 +638931.697|220421.819|117.406 +638936.827|220417.271|117.187 +638941.966|220412.714|116.876 +638947.151|220408.118|116.605 +638952.238|220403.607|116.412 +638957.374|220399.056|116.224 +638962.513|220394.499|116.019 +638967.600|220389.994|115.946 +638972.736|220385.447|115.876 +638977.890|220380.875|115.529 +638983.047|220376.303|115.163 +638988.146|220371.789|115.044 +638993.261|220367.253|114.672 +638998.421|220362.678|114.383 +639003.591|220358.094|114.017 +639008.711|220353.555|113.700 +639013.890|220348.962|113.267 +639019.023|220344.411|112.852 +639024.146|220339.870|112.593 +639029.282|220335.316|112.197 +639034.467|220330.720|111.871 +639039.600|220326.172|111.597 +639044.739|220321.612|111.271 +639049.871|220317.068|111.094 +639054.998|220312.526|111.021 +639060.137|220307.973|110.813 +639065.282|220303.413|110.569 +639070.375|220298.899|110.384 +639075.533|220294.327|110.073 +639080.644|220289.794|109.734 +639085.826|220285.198|109.204 +639090.956|220280.650|108.780 +639096.098|220276.087|108.207 +639101.264|220271.509|107.997 +639106.342|220267.007|107.686 +639111.475|220262.466|107.866 +639116.547|220257.976|108.168 +639121.582|220253.520|108.390 +639126.669|220249.015|108.579 +639131.774|220244.498|108.631 +639136.874|220239.981|108.753 +639141.952|220235.482|108.622 +639146.999|220231.013|108.820 +639152.108|220226.490|108.924 +639157.195|220221.985|108.799 +639162.319|220217.447|108.829 +639167.354|220212.985|108.756 +639172.484|220208.443|108.786 +639177.534|220203.969|108.634 +639182.694|220199.393|108.442 +639187.757|220194.910|108.259 +639192.811|220190.429|108.162 +639197.925|220185.897|108.015 +639203.003|220181.401|107.808 +639208.081|220176.899|107.607 +639213.156|220172.403|107.461 +639218.256|220167.880|107.150 +639223.358|220163.357|106.836 +639228.430|220158.861|106.415 +639233.505|220154.356|105.982 +639238.631|220149.812|105.595 +639243.670|220145.343|105.138 +639248.763|220140.826|104.669 +639253.853|220136.312|104.266 +639258.934|220131.801|103.599 +639264.015|220127.293|102.956 +639269.066|220122.812|102.565 +639274.168|220118.283|101.849 +639284.294|220109.300|100.731 +639289.366|220104.802|100.322 +639294.431|220100.306|99.642 +639319.626|220077.955|97.003 +639324.689|220073.459|96.204 +639329.715|220069.006|96.034 +639388.910|220016.534|93.903 +639398.451|220008.094|94.787 +639408.085|219999.563|95.183 +639412.916|219995.284|95.052 +639446.649|219965.380|94.028 +639460.965|219952.694|93.775 +639470.539|219944.208|93.385 +639475.196|219940.087|93.879 +639479.945|219935.878|93.668 +639489.421|219927.481|93.668 +639494.082|219923.354|93.702 +639503.436|219915.066|93.909 +639526.363|219894.779|95.823 +639530.932|219890.734|96.180 +639535.519|219886.674|96.460 +639539.942|219882.767|97.052 +639544.578|219878.661|97.137 +639549.132|219874.625|97.362 +639541.911|219878.472|96.878 +639537.254|219882.590|96.875 +639523.425|219894.800|95.512 +639514.147|219902.999|94.988 +639509.468|219907.132|94.671 +639504.860|219911.198|94.034 +639500.230|219915.286|93.513 +639495.481|219919.489|93.613 +639490.775|219923.646|93.507 +639485.995|219927.874|93.531 +639471.813|219940.420|93.476 +639466.945|219944.726|93.769 +639404.379|220000.054|95.140 +639380.190|220021.433|94.796 +639375.176|220025.870|95.528 +639360.491|220038.861|96.098 +639340.886|220056.189|95.963 +639335.982|220060.523|95.921 +639331.035|220064.900|96.177 +639321.089|220073.700|96.786 +639311.003|220082.640|98.448 +639300.945|220091.543|99.377 +639295.967|220095.947|99.703 +639290.950|220100.388|100.002 +639285.888|220104.872|100.642 +639280.807|220109.371|101.081 +639275.759|220113.839|101.678 +639270.700|220118.320|102.044 +639265.606|220122.828|102.666 +639260.534|220127.320|103.184 +639255.447|220131.825|103.839 +639250.321|220136.367|104.473 +639245.233|220140.869|104.815 +639240.134|220145.383|105.309 +639235.038|220149.897|105.802 +639229.954|220154.399|106.247 +639224.833|220158.928|106.601 +639219.716|220163.461|106.979 +639214.610|220167.978|107.278 +639209.514|220172.486|107.534 +639204.427|220176.988|107.765 +639199.309|220181.514|107.857 +639194.228|220186.007|108.079 +639189.104|220190.539|108.271 +639183.996|220195.056|108.375 +639178.820|220199.634|108.640 +639173.712|220204.154|108.792 +639168.604|220208.672|108.972 +639163.471|220213.210|108.966 +639158.341|220217.745|108.951 +639153.211|220222.281|108.954 +639148.130|220226.774|109.021 +639142.970|220231.337|108.902 +639137.861|220235.851|108.786 +639132.671|220240.444|109.015 +639127.526|220244.989|108.817 +639122.423|220249.497|108.710 +639117.235|220254.081|108.479 +639112.109|220258.610|108.183 +639106.970|220263.152|108.009 +639101.776|220267.742|107.936 +639096.600|220272.320|108.180 +639091.385|220276.935|108.408 +639086.143|220281.577|108.930 +639080.918|220286.201|109.320 +639075.682|220290.837|109.868 +639070.415|220295.500|110.262 +639065.209|220300.103|110.530 +639059.963|220304.745|110.749 +639054.770|220309.338|110.960 +639049.536|220313.965|111.069 +639044.303|220318.595|111.222 +639039.109|220323.188|111.539 +639033.869|220327.824|111.859 +639028.630|220332.463|112.215 +639023.393|220337.096|112.551 +639018.166|220341.720|112.819 +639012.930|220346.353|113.243 +639007.705|220350.977|113.569 +639002.426|220355.649|113.983 +638997.202|220360.273|114.370 +638991.984|220364.891|114.730 +638986.723|220369.545|114.998 +638981.514|220374.154|115.300 +638976.259|220378.802|115.568 +638970.998|220383.459|115.989 +638965.814|220388.041|115.983 +638960.577|220392.674|116.071 +638955.380|220397.270|116.361 +638950.141|220401.906|116.583 +638944.901|220406.542|116.824 +638939.665|220411.175|117.071 +638934.480|220415.756|117.245 +638929.247|220420.389|117.531 +638924.016|220425.016|117.763 +638918.789|220429.640|117.982 +638913.568|220434.258|118.132 +638908.350|220438.872|118.217 +638903.134|220443.484|118.275 +638897.916|220448.099|118.442 +638892.695|220452.716|118.695 +638887.513|220457.304|119.272 +638882.292|220461.927|119.695 +638877.071|220466.551|120.219 +638871.853|220471.169|120.649 +638866.686|220475.744|121.134 +638861.468|220480.362|121.679 +638856.265|220484.967|121.942 +638851.108|220489.530|122.210 +638845.902|220494.136|122.618 +638840.699|220498.744|123.042 +638835.542|220503.307|123.533 +638830.345|220507.907|123.819 +638825.206|220512.454|124.240 +638820.058|220517.011|124.572 +638814.864|220521.610|125.002 +638809.722|220526.158|125.240 +638804.577|220530.712|125.672 +638799.386|220535.305|126.041 +638794.247|220539.853|126.395 +638789.108|220544.400|126.809 +638783.924|220548.991|127.123 +638778.788|220553.532|127.388 +638773.655|220558.074|127.635 +638768.522|220562.615|127.864 +638763.441|220567.111|128.105 +638758.263|220571.695|128.370 +638753.182|220576.185|128.406 +638748.052|220580.723|128.623 +638742.971|220585.216|128.690 +638737.841|220589.749|128.687 +638732.763|220594.241|128.815 +638727.633|220598.777|128.894 +638722.555|220603.266|128.824 +638717.474|220607.756|128.729 +638712.393|220612.249|128.635 +638707.358|220616.696|128.592 +638702.277|220621.189|128.504 +638697.199|220625.678|128.672 +638692.167|220630.129|128.693 +638687.089|220634.621|128.714 +638682.005|220639.114|128.611 +638676.972|220643.567|128.583 +638671.937|220648.017|128.480 +638666.902|220652.470|128.361 +638661.818|220656.966|128.278 +638656.779|220661.419|128.187 +638651.741|220665.872|128.080 +638646.696|220670.332|127.757 +638641.655|220674.788|127.626 +638636.608|220679.247|127.245 +638631.563|220683.706|127.050 +638626.519|220688.166|126.931 +638621.477|220692.625|126.846 +638616.482|220697.041|126.797 +638611.434|220701.504|126.636 +638606.377|220705.972|126.288 +638601.376|220710.392|126.123 +638596.322|220714.860|125.947 +638591.317|220719.283|125.785 +638586.261|220723.754|125.569 +638581.308|220728.134|125.499 +638576.263|220732.596|125.602 +638571.271|220737.016|125.788 +638566.281|220741.433|126.059 +638561.297|220745.846|126.422 +638556.366|220750.214|126.840 +638551.382|220754.627|127.230 +638546.438|220759.001|127.471 +638541.458|220763.412|127.937 +638536.481|220767.822|128.419 +638531.546|220772.193|128.803 +638526.602|220776.570|129.034 +638521.664|220780.941|129.385 +638516.687|220785.351|129.909 +638511.795|220789.682|130.211 +638506.802|220794.102|130.476 +638501.864|220798.476|130.845 +638496.917|220802.853|131.104 +638491.971|220807.233|131.378 +638487.018|220811.616|131.573 +638482.065|220815.999|131.750 +638477.157|220820.342|131.930 +638472.195|220824.735|132.043 +638467.285|220829.081|132.195 +638462.320|220833.473|132.296 +638457.373|220837.844|132.052 +638452.386|220842.251|131.933 +638442.581|220850.935|132.600 +638437.692|220855.257|132.536 +638432.748|220859.631|132.408 +638427.804|220864.002|132.357 +638422.906|220868.333|132.244 +638417.950|220872.716|132.058 +638413.042|220877.054|131.909 +638408.132|220881.394|131.762 +638403.207|220885.747|131.476 +638398.275|220890.105|131.156 +638393.398|220894.415|130.915 +638388.482|220898.761|130.784 +638383.605|220903.074|130.592 +638344.801|220937.404|130.973 +638339.997|220941.656|131.201 +638335.160|220945.932|131.156 +638330.405|220950.142|131.409 +638325.571|220954.418|131.396 +638320.743|220958.691|131.473 +638316.006|220962.882|131.521 +638311.184|220967.153|131.680 +638306.399|220971.389|131.765 +638296.859|220979.832|131.838 +638292.064|220984.075|131.902 +638287.288|220988.300|131.738 +638282.533|220992.509|131.753 +638277.748|220996.743|131.567 +638272.983|221000.958|131.555 +638263.532|221009.322|131.433 +638258.804|221013.507|131.381 +638254.110|221017.664|131.610 +638249.419|221021.813|131.509 +638244.762|221025.936|131.668 +638240.089|221030.079|132.107 +638235.466|221034.172|132.177 +638230.781|221038.318|132.201 +638226.194|221042.384|132.567 +638221.484|221046.547|132.451 +638216.946|221050.570|132.841 +638212.258|221054.722|132.905 +638207.674|221058.782|133.000 +638193.775|221071.077|132.796 +638189.105|221075.204|132.415 +638175.237|221087.470|131.668 +638170.607|221091.563|131.311 +638161.564|221099.573|131.704 +638156.973|221103.630|131.354 +638152.371|221107.699|130.933 +638147.793|221111.747|130.705 +638143.355|221115.682|131.336 +638138.737|221119.760|130.595 +638134.223|221123.753|130.494 +638129.727|221127.728|130.235 +638125.152|221131.772|129.818 +638120.614|221135.784|129.342 +638116.127|221139.752|129.193 +638111.592|221143.760|128.778 +638107.224|221147.631|129.059 +638102.722|221151.612|128.879 +638098.226|221155.586|128.464 +638093.794|221159.503|128.160 +638089.308|221163.472|127.827 +638084.827|221167.428|127.294 +638080.414|221171.332|127.138 +638075.924|221175.298|126.593 +638071.248|221179.413|124.767 +638066.822|221183.326|124.627 +638062.485|221187.164|124.417 +638058.187|221190.971|124.715 +638053.926|221194.750|125.212 +638049.659|221198.530|125.435 +638045.413|221202.294|125.764 +638023.830|221221.384|125.060 +638019.511|221225.206|124.849 +638015.253|221228.970|124.709 +638006.719|221236.517|124.124 +637998.078|221244.152|123.091 +637985.105|221255.601|120.777 +637980.814|221259.392|120.122 +637976.577|221263.135|119.756 +637972.401|221266.823|119.457 +637968.064|221270.649|118.403 +637964.184|221274.096|119.281 +637952.080|221284.813|120.052 +637948.179|221288.275|120.622 +637944.198|221291.805|121.073 +637940.294|221295.267|121.652 +637936.426|221298.696|122.158 +637928.568|221305.658|122.655 +637924.599|221309.169|122.749 +637916.592|221316.250|122.420 +637912.389|221319.953|121.283 +637908.183|221323.660|120.152 +637904.251|221327.137|120.009 +637900.356|221330.585|120.046 +637892.702|221337.363|120.533 +637888.795|221340.820|120.552 +637884.963|221344.209|120.460 +637881.138|221347.599|120.628 +637865.983|221361.007|120.713 +637862.246|221364.314|120.640 +637854.748|221370.949|120.661 +637851.082|221374.196|120.695 +637847.384|221377.463|120.622 +637843.724|221380.706|120.707 +637840.036|221383.967|120.695 +637836.491|221387.107|121.061 +637821.872|221400.027|119.979 +637818.264|221403.219|119.921 +637803.770|221416.020|118.321 +637800.229|221419.154|118.168 +637796.678|221422.293|117.982 +637793.243|221425.332|117.845 +637789.759|221428.414|117.741 +637786.348|221431.431|117.933 +637756.368|221457.955|117.793 +637752.994|221460.936|117.394 +637749.836|221463.731|117.403 +637746.614|221466.578|117.394 +637743.447|221469.382|117.385 +637740.244|221472.216|117.455 +637734.102|221477.654|117.781 +637731.057|221480.352|117.851 +637728.058|221483.006|118.092 +638019.716|221223.426|124.810 +638024.041|221219.598|125.063 +638028.375|221215.760|125.389 +638036.934|221208.177|125.532 +638045.581|221200.517|125.922 +638058.200|221189.310|124.103 +638062.610|221185.408|124.414 +638071.428|221177.596|124.837 +638076.192|221173.408|127.154 +638080.572|221169.525|127.126 +638085.007|221165.599|127.419 +638089.530|221161.597|127.934 +638094.005|221157.635|128.205 +638098.503|221153.654|128.641 +638102.972|221149.698|128.928 +638107.440|221145.738|128.928 +638111.930|221141.761|129.086 +638116.453|221137.753|129.153 +638120.958|221133.763|129.440 +638125.573|221129.685|130.083 +638130.126|221125.652|130.412 +638134.702|221121.598|130.577 +638139.264|221117.557|130.680 +638143.833|221113.515|131.156 +638148.302|221109.549|130.726 +638152.962|221105.425|131.183 +638157.565|221101.350|131.631 +638162.198|221097.251|131.979 +638166.639|221093.304|131.113 +638171.296|221089.183|131.659 +638175.944|221085.065|131.835 +638185.228|221076.844|132.524 +638189.880|221072.726|132.792 +638208.396|221056.313|132.835 +638213.020|221052.207|132.713 +638217.711|221048.047|132.707 +638226.928|221039.866|132.299 +638231.637|221035.684|132.122 +638236.289|221031.557|131.899 +638240.973|221027.400|131.576 +638245.637|221023.257|131.497 +638250.343|221019.082|131.363 +638255.076|221014.887|131.448 +638259.813|221010.681|131.211 +638264.544|221006.487|131.326 +638269.353|221002.226|131.686 +638274.099|220998.014|131.582 +638283.673|220989.522|131.686 +638288.446|220985.291|131.854 +638293.244|220981.036|131.829 +638298.023|220976.797|131.695 +638302.820|220972.542|131.726 +638307.618|220968.287|131.777 +638312.428|220964.016|131.549 +638317.210|220959.773|131.497 +638322.029|220955.497|131.390 +638326.866|220951.205|131.445 +638331.670|220946.941|131.214 +638341.301|220938.398|131.031 +638360.629|220921.234|129.656 +638370.367|220912.596|129.763 +638380.200|220903.882|130.436 +638385.120|220899.523|130.586 +638390.054|220895.150|130.927 +638395.007|220890.757|130.991 +638399.927|220886.396|131.226 +638404.898|220881.988|131.543 +638409.857|220877.596|131.713 +638414.771|220873.241|131.982 +638419.763|220868.812|132.061 +638424.719|220864.420|132.308 +638429.654|220860.043|132.344 +638434.641|220855.620|132.436 +638439.588|220851.234|132.677 +638444.605|220846.784|132.585 +638449.478|220842.450|131.966 +638454.450|220838.042|131.954 +638459.439|220833.620|132.198 +638464.459|220829.166|132.210 +638469.415|220824.768|132.088 +638474.420|220820.327|131.970 +638479.373|220815.932|131.826 +638484.375|220811.494|131.671 +638489.374|220807.056|131.531 +638494.314|220802.667|131.287 +638499.350|220798.199|130.967 +638504.336|220793.770|130.692 +638509.323|220789.344|130.385 +638514.355|220784.876|130.058 +638519.323|220780.462|129.501 +638524.356|220775.994|129.193 +638529.336|220771.568|128.876 +638534.417|220767.057|128.583 +638539.443|220762.595|128.175 +638544.411|220758.178|127.647 +638549.493|220753.667|127.376 +638554.570|220749.159|127.013 +638559.594|220744.697|126.593 +638564.669|220740.192|126.218 +638569.701|220735.721|125.956 +638574.782|220731.207|125.749 +638579.875|220726.686|125.761 +638584.965|220722.166|125.733 +638590.110|220717.600|125.886 +638595.207|220713.077|126.096 +638600.303|220708.557|126.294 +638605.396|220704.037|126.462 +638610.495|220699.516|126.824 +638615.634|220694.957|126.965 +638620.715|220690.442|126.980 +638625.802|220685.928|127.093 +638630.938|220681.375|127.227 +638636.071|220676.818|127.428 +638641.161|220672.304|127.748 +638646.294|220667.750|127.949 +638651.378|220663.239|128.132 +638656.508|220658.685|128.297 +638661.635|220654.135|128.376 +638666.761|220649.587|128.455 +638671.888|220645.036|128.571 +638677.012|220640.489|128.665 +638682.087|220635.981|128.757 +638687.211|220631.433|128.769 +638692.331|220626.885|128.748 +638697.452|220622.338|128.629 +638702.576|220617.790|128.617 +638707.745|220613.200|128.659 +638712.869|220608.655|128.696 +638717.992|220604.108|128.995 +638723.162|220599.517|128.809 +638728.282|220594.970|128.833 +638733.403|220590.422|128.745 +638738.573|220585.832|128.696 +638743.696|220581.284|128.665 +638748.866|220576.691|128.498 +638753.989|220572.143|128.449 +638759.110|220567.593|128.227 +638764.282|220562.996|127.998 +638769.409|220558.442|127.782 +638774.536|220553.889|127.535 +638779.708|220549.292|127.358 +638784.838|220544.736|127.023 +638789.968|220540.176|126.687 +638795.150|220535.570|126.279 +638800.282|220531.007|125.922 +638805.415|220526.441|125.526 +638810.551|220521.882|125.297 +638815.690|220517.313|124.840 +638820.829|220512.744|124.496 +638826.008|220508.141|124.139 +638831.101|220503.618|123.886 +638836.246|220499.040|123.353 +638841.397|220494.462|122.877 +638846.542|220489.887|122.560 +638851.693|220485.309|122.170 +638856.844|220480.731|121.804 +638861.947|220476.198|121.570 +638867.153|220471.568|121.125 +638872.316|220466.978|120.594 +638877.427|220462.433|120.162 +638882.640|220457.797|119.717 +638887.760|220453.247|119.265 +638892.933|220448.647|118.738 +638898.102|220444.051|118.336 +638903.201|220439.528|118.546 +638908.362|220434.943|118.464 +638913.525|220430.356|118.284 +638918.594|220425.854|118.156 +638923.766|220421.258|117.927 +638928.942|220416.658|117.659 +638934.023|220412.144|117.373 +638939.198|220407.545|117.171 +638944.325|220402.991|117.016 +638949.458|220398.428|116.787 +638954.594|220393.862|116.531 +638959.690|220389.333|116.193 +638964.820|220384.773|116.092 +638969.901|220380.259|116.047 +638975.000|220375.724|115.736 +638980.148|220371.146|115.440 +638985.254|220366.604|115.099 +638990.411|220362.023|114.803 +638995.519|220357.475|114.462 +639000.637|220352.925|114.087 +639005.755|220348.374|113.721 +639010.878|220343.817|113.331 +639015.999|220339.263|112.999 +639021.123|220334.707|112.697 +639026.198|220330.193|112.395 +639031.376|220325.590|112.097 +639036.463|220321.064|111.725 +639041.596|220316.501|111.417 +639046.680|220311.981|111.167 +639051.804|220307.427|111.063 +639056.931|220302.870|110.938 +639061.978|220298.380|110.643 +639067.120|220293.808|110.399 +639072.238|220289.255|109.917 +639077.358|220284.698|109.436 +639082.528|220280.099|108.994 +639087.609|220275.581|108.506 +639092.711|220271.043|108.329 +639097.811|220266.511|108.241 +639102.861|220262.024|108.171 +639107.936|220257.516|108.369 +639112.959|220253.057|108.622 +639118.025|220248.564|108.991 +639123.072|220244.077|109.027 +639128.096|220239.618|109.332 +639133.180|220235.098|109.082 +639138.233|220230.608|109.128 +639143.308|220226.097|109.015 +639148.362|220221.610|109.128 +639153.376|220217.154|109.170 +639158.445|220212.649|109.177 +639163.516|220208.147|109.207 +639168.558|220203.664|109.061 +639173.657|220199.131|108.896 +639178.711|220194.639|108.707 +639183.822|220190.094|108.491 +639188.876|220185.598|108.344 +639193.945|220181.096|108.140 +639199.007|220176.594|107.988 +639204.131|220172.041|107.793 +639209.160|220167.566|107.555 +639214.260|220163.031|107.198 +639219.353|220158.501|106.942 +639224.458|220153.960|106.586 +639229.518|220149.458|106.244 +639234.657|220144.886|105.729 +639239.750|220140.354|105.193 +639244.831|220135.833|104.781 +639249.912|220131.310|104.403 +639255.048|220126.738|103.669 +639260.160|220122.191|103.145 +639265.286|220117.625|102.532 +639270.285|220113.181|102.166 +639275.400|220108.630|101.721 +639280.462|220104.122|101.300 +639285.552|220099.593|100.731 +639290.606|220095.100|100.456 +639295.660|220090.604|100.215 +639300.674|220086.145|99.908 +639326.057|220063.547|96.826 +639341.169|220050.108|95.796 +639370.909|220023.682|95.256 +639375.901|220019.244|95.183 +639434.560|219967.114|93.949 +639448.971|219954.312|94.116 +639468.216|219937.204|93.467 +639472.904|219933.040|93.528 +639482.435|219924.570|93.449 +639487.138|219920.394|93.491 +639491.927|219916.136|93.385 +639501.257|219907.852|93.705 +639505.902|219903.731|94.107 +639510.465|219899.683|94.674 +639515.095|219895.574|94.933 +639524.272|219887.427|95.634 +639533.285|219879.432|96.671 +639542.499|219871.251|97.076 +639544.810|219866.515|96.866 +639540.128|219870.666|96.725 +639535.416|219874.845|96.750 +639530.749|219878.978|96.564 +639512.199|219895.401|94.692 +639498.191|219907.806|93.729 +639493.417|219912.037|93.693 +639488.793|219916.130|93.196 +639484.048|219920.339|93.330 +639479.229|219924.613|93.318 +639459.978|219941.691|93.940 +639436.026|219962.932|94.229 +639421.637|219975.685|94.022 +639402.212|219992.918|94.738 +639343.803|220044.722|96.046 +639294.059|220088.891|100.532 +639289.094|220093.298|100.837 +639279.112|220102.159|101.572 +639274.116|220106.594|101.834 +639269.090|220111.056|102.349 +639264.101|220115.485|102.629 +639259.068|220119.956|103.245 +639254.006|220124.452|103.772 +639248.940|220128.951|104.321 +639243.938|220133.395|104.839 +639238.866|220137.897|105.144 +639233.816|220142.380|105.687 +639228.728|220146.901|106.186 +639223.705|220151.357|106.589 +639218.643|220155.853|106.955 +639213.589|220160.339|107.281 +639208.496|220164.860|107.561 +639203.461|220169.328|107.799 +639198.379|220173.836|108.015 +639193.353|220178.295|108.247 +639188.236|220182.837|108.430 +639183.164|220187.336|108.671 +639178.104|220191.828|108.853 +639172.993|220196.361|109.055 +639167.893|220200.887|109.213 +639162.806|220205.398|109.280 +639157.716|220209.912|109.384 +639152.592|220214.457|109.384 +639147.517|220218.956|109.408 +639142.412|220223.482|109.286 +639137.340|220227.981|109.359 +639132.180|220232.556|109.332 +639127.053|220237.106|109.497 +639121.957|220241.621|109.375 +639116.815|220246.180|109.256 +639111.752|220250.664|108.850 +639106.583|220255.245|108.549 +639101.456|220259.787|108.314 +639096.308|220264.353|108.338 +639091.163|220268.915|108.363 +639086.006|220273.494|108.564 +639080.787|220278.126|108.908 +639075.557|220282.772|109.436 +639070.336|220287.405|109.878 +639065.112|220292.041|110.417 +639059.906|220296.661|110.768 +639054.663|220301.310|111.002 +639049.484|220305.900|111.106 +639044.248|220310.542|111.298 +639039.011|220315.187|111.588 +639033.775|220319.832|111.895 +639028.587|220324.435|112.255 +639023.354|220329.077|112.593 +639018.081|220333.756|112.865 +639012.899|220338.352|113.252 +639007.629|220343.025|113.526 +639002.356|220347.706|113.922 +638997.135|220352.336|114.297 +638991.874|220357.006|114.611 +638986.656|220361.633|115.013 +638981.398|220366.299|115.352 +638976.146|220370.957|115.620 +638970.888|220375.623|116.059 +638965.704|220380.219|116.120 +638960.419|220384.904|116.254 +638955.176|220389.555|116.553 +638949.982|220394.161|116.836 +638944.700|220398.843|117.037 +638939.473|220403.482|117.217 +638934.242|220408.118|117.394 +638928.966|220412.800|117.638 +638923.739|220417.436|117.894 +638918.509|220422.072|118.217 +638913.242|220426.744|118.375 +638908.023|220431.374|118.601 +638902.811|220435.992|118.641 +638897.560|220440.646|118.564 +638892.344|220445.267|118.735 +638887.074|220449.949|119.229 +638881.856|220454.579|119.677 +638876.638|220459.209|120.149 +638871.377|220463.878|120.512 +638866.162|220468.508|121.070 +638860.901|220473.178|121.622 +638855.701|220477.786|121.743 +638850.498|220482.404|122.131 +638845.247|220487.061|122.518 +638839.998|220491.722|122.938 +638834.850|220496.291|123.350 +638829.601|220500.948|123.837 +638824.362|220505.596|124.145 +638819.229|220510.150|124.453 +638813.989|220514.798|124.782 +638808.802|220519.404|125.203 +638803.614|220524.006|125.578 +638798.426|220528.606|125.892 +638793.242|220533.208|126.309 +638788.060|220537.804|126.645 +638782.878|220542.401|126.953 +638777.700|220546.994|127.230 +638772.521|220551.588|127.471 +638767.391|220556.135|127.702 +638762.216|220560.728|127.974 +638757.040|220565.316|128.147 +638751.917|220569.863|128.379 +638746.790|220574.405|128.458 +638741.617|220578.992|128.571 +638736.494|220583.537|128.696 +638731.370|220588.078|128.678 +638726.246|220592.620|128.757 +638721.120|220597.161|128.726 +638715.996|220601.703|128.690 +638710.921|220606.202|128.647 +638705.794|220610.743|128.647 +638700.719|220615.242|128.650 +638695.641|220619.741|128.501 +638690.518|220624.285|128.589 +638685.443|220628.784|128.669 +638680.365|220633.280|128.714 +638675.287|220637.779|128.595 +638670.258|220642.235|128.544 +638665.177|220646.734|128.458 +638660.144|220651.190|128.394 +638655.115|220655.646|128.385 +638650.031|220660.145|128.230 +638644.996|220664.605|128.096 +638639.954|220669.067|127.876 +638634.913|220673.529|127.577 +638629.923|220677.949|127.437 +638624.882|220682.411|127.309 +638619.889|220686.831|127.126 +638614.848|220691.296|126.986 +638609.858|220695.716|126.962 +638604.814|220700.181|126.806 +638599.818|220704.607|126.684 +638594.862|220708.993|126.413 +638589.812|220713.464|126.181 +638584.807|220717.893|125.980 +638579.814|220722.315|126.032 +638574.818|220726.744|126.017 +638569.871|220731.124|126.114 +638564.833|220735.590|126.245 +638559.941|220739.927|126.437 +638554.967|220744.340|126.943 +638549.986|220748.757|127.300 +638545.052|220753.134|127.596 +638540.126|220757.502|128.102 +638535.149|220761.918|128.553 +638530.214|220766.295|128.851 +638525.322|220770.629|129.095 +638520.338|220775.049|129.431 +638515.462|220779.377|129.946 +638510.521|220783.757|130.205 +638505.635|220788.091|130.540 +638500.694|220792.471|130.820 +638495.753|220796.851|131.104 +638490.861|220801.189|131.403 +638485.957|220805.538|131.521 +638481.059|220809.879|131.756 +638476.151|220814.228|131.887 +638471.244|220818.578|132.015 +638466.337|220822.927|132.174 +638461.469|220827.237|132.259 +638456.531|220831.611|132.049 +638451.655|220835.930|132.018 +638446.769|220840.267|132.497 +638441.901|220844.577|132.646 +638436.963|220848.951|132.527 +638432.141|220853.227|132.628 +638427.182|220857.613|132.335 +638422.339|220861.905|132.241 +638417.380|220866.294|132.006 +638412.527|220870.589|131.875 +638407.620|220874.935|131.689 +638402.758|220879.239|131.518 +638397.833|220883.598|131.217 +638392.965|220887.908|131.022 +638383.218|220896.539|130.574 +638378.353|220900.846|130.497 +638358.855|220918.107|129.555 +638334.910|220939.343|131.076 +638325.370|220947.795|131.265 +638320.545|220952.071|131.329 +638315.814|220956.262|131.384 +638310.986|220960.542|131.457 +638306.262|220964.726|131.601 +638301.488|220968.957|131.765 +638296.731|220973.169|131.674 +638291.988|220977.370|131.717 +638287.178|220981.631|131.622 +638282.445|220985.819|131.387 +638277.641|220990.077|131.396 +638272.938|220994.240|131.451 +638268.192|220998.440|131.192 +638263.422|221002.665|131.150 +638258.765|221006.792|131.217 +638249.319|221015.156|131.189 +638244.671|221019.277|131.390 +638239.989|221023.428|131.713 +638235.298|221027.582|131.628 +638230.668|221031.688|132.021 +638225.995|221035.827|132.098 +638221.375|221039.921|132.223 +638216.757|221044.014|132.372 +638212.075|221048.163|132.442 +638207.521|221052.201|132.735 +638202.846|221056.340|132.546 +638193.632|221064.503|132.829 +638175.097|221080.910|131.896 +638170.510|221084.970|131.784 +638161.262|221093.154|131.144 +638156.864|221097.059|131.954 +638152.221|221101.167|131.564 +638147.634|221105.224|131.241 +638143.023|221109.303|130.778 +638138.606|221113.222|131.223 +638134.037|221117.261|130.769 +638129.477|221121.299|130.689 +638124.988|221125.277|130.750 +638120.470|221129.273|130.357 +638115.880|221133.327|129.568 +638111.314|221137.369|129.235 +638106.834|221141.334|129.123 +638102.323|221145.327|128.876 +638097.900|221149.244|128.836 +638093.422|221153.206|128.525 +638088.933|221157.174|128.166 +638084.434|221161.155|127.769 +638079.969|221165.102|127.303 +638075.561|221169.007|127.175 +638070.888|221173.125|125.602 +638066.371|221177.115|124.932 +638057.587|221184.890|124.444 +638053.265|221188.721|124.599 +638040.463|221200.069|125.493 +638036.105|221203.928|125.246 +638023.224|221215.330|124.843 +638010.297|221226.770|124.093 +638001.650|221234.417|123.200 +637992.945|221242.107|121.597 +637988.809|221245.771|121.902 +637984.590|221249.505|121.548 +637980.158|221253.415|120.436 +637975.958|221257.128|119.970 +637971.612|221260.968|119.070 +637963.471|221268.186|119.454 +637959.310|221271.871|119.232 +637951.489|221278.820|120.701 +637947.328|221282.502|120.287 +637939.608|221289.367|121.783 +637935.703|221292.835|122.335 +637931.787|221296.310|122.850 +637927.818|221299.827|122.899 +637923.898|221303.305|123.179 +637915.940|221310.355|123.011 +637907.710|221317.622|121.003 +637903.577|221321.273|120.180 +637899.688|221324.720|120.226 +637895.835|221328.134|120.201 +637891.998|221331.539|120.488 +637888.221|221334.888|120.823 +637880.571|221341.667|120.652 +637865.459|221355.060|120.814 +637861.655|221358.428|120.655 +637857.885|221361.769|120.668 +637854.197|221365.039|120.802 +637850.475|221368.334|120.579 +637846.756|221371.632|120.613 +637843.163|221374.817|120.960 +637835.966|221381.200|121.180 +637814.118|221400.539|119.811 +637810.494|221403.749|119.695 +637806.882|221406.943|119.214 +637803.255|221410.150|118.689 +637799.717|221413.283|118.525 +637796.217|221416.380|118.311 +637792.743|221419.458|118.211 +637789.335|221422.476|118.165 +637785.943|221425.481|118.196 +637782.507|221428.529|118.266 +637739.854|221466.312|117.677 +637736.681|221469.120|117.650 +637733.563|221471.884|117.620 +637724.409|221479.998|117.930 +637721.422|221482.647|118.214 +638008.734|221226.416|123.770 +638017.341|221218.775|124.596 +638030.173|221207.366|124.779 +638034.492|221203.526|124.831 +638038.891|221199.624|125.300 +638047.388|221192.059|124.743 +638051.723|221188.203|124.673 +638064.796|221176.584|124.907 +638069.230|221172.643|125.172 +638073.955|221168.467|127.035 +638078.414|221164.505|127.202 +638082.861|221160.558|127.599 +638087.351|221156.571|127.967 +638091.801|221152.621|128.428 +638096.315|221148.610|128.699 +638100.768|221144.650|128.641 +638105.261|221140.660|129.123 +638109.723|221136.695|129.153 +638114.259|221132.669|129.638 +638118.904|221128.551|130.485 +638123.445|221124.512|130.769 +638127.917|221120.537|130.634 +638132.412|221116.538|130.671 +638136.997|221112.469|130.945 +638141.502|221108.458|130.778 +638146.055|221104.417|131.223 +638155.257|221096.245|131.835 +638159.741|221092.249|131.284 +638168.946|221084.068|131.744 +638178.288|221075.774|132.503 +638182.930|221071.647|132.756 +638187.539|221067.551|132.792 +638192.190|221063.415|132.796 +638206.037|221051.104|132.549 +638210.643|221047.007|132.308 +638215.282|221042.883|132.320 +638219.988|221038.699|132.128 +638224.612|221034.587|132.070 +638229.260|221030.454|131.851 +638233.978|221026.260|131.796 +638238.605|221022.142|131.436 +638243.320|221017.951|131.403 +638248.011|221013.778|131.201 +638252.690|221009.624|131.275 +638257.448|221005.393|131.238 +638262.206|221001.162|131.238 +638266.933|220996.962|131.369 +638271.667|220992.753|131.211 +638276.437|220988.513|131.354 +638281.234|220984.252|131.320 +638286.023|220980.000|131.656 +638290.802|220975.751|131.540 +638295.597|220971.490|131.567 +638305.195|220962.962|131.756 +638309.944|220958.734|131.473 +638314.772|220954.442|131.445 +638324.397|220945.887|131.177 +638334.002|220937.343|130.808 +638348.446|220924.493|129.815 +638358.184|220915.830|129.501 +638377.795|220898.411|130.369 +638382.666|220894.086|130.577 +638387.634|220889.672|130.811 +638392.493|220885.353|130.982 +638397.455|220880.946|131.201 +638402.380|220876.575|131.567 +638407.352|220872.162|131.954 +638412.226|220867.827|131.854 +638417.218|220863.392|131.997 +638422.119|220859.040|132.216 +638427.097|220854.614|132.259 +638432.044|220850.222|132.488 +638436.960|220845.851|132.424 +638441.938|220841.425|132.527 +638446.891|220837.021|132.338 +638451.780|220832.669|131.988 +638456.745|220828.255|131.985 +638461.777|220823.787|132.241 +638466.687|220819.422|132.186 +638471.680|220814.981|131.994 +638476.627|220810.583|131.826 +638481.626|220806.139|131.717 +638486.615|220801.698|131.528 +638491.608|220797.257|131.378 +638496.588|220792.828|131.037 +638501.523|220788.436|130.790 +638506.552|220783.961|130.491 +638511.527|220779.536|130.122 +638516.547|220775.067|129.690 +638521.524|220770.639|129.339 +638526.550|220766.167|129.031 +638531.576|220761.696|128.757 +638536.554|220757.267|128.455 +638541.568|220752.802|127.971 +638546.585|220748.336|127.519 +638551.608|220743.868|127.138 +638556.628|220739.396|126.767 +638561.651|220734.928|126.413 +638566.735|220730.411|126.319 +638571.770|220725.933|126.291 +638576.851|220721.416|126.160 +638581.935|220716.896|126.142 +638586.980|220712.416|126.306 +638592.073|220707.892|126.553 +638597.166|220703.369|126.809 +638602.250|220698.852|126.888 +638607.338|220694.335|127.044 +638612.419|220689.821|127.056 +638617.551|220685.261|127.266 +638622.632|220680.747|127.391 +638627.713|220676.233|127.513 +638632.843|220671.676|127.687 +638637.973|220667.119|127.885 +638643.054|220662.608|128.114 +638648.181|220658.054|128.269 +638653.305|220653.504|128.422 +638658.376|220648.996|128.446 +638663.497|220644.445|128.446 +638668.618|220639.894|128.550 +638673.738|220635.344|128.693 +638678.859|220630.796|128.696 +638683.977|220626.245|128.696 +638689.091|220621.698|128.565 +638694.258|220617.107|128.531 +638699.375|220612.560|128.611 +638704.493|220608.009|128.641 +638709.659|220603.419|128.635 +638714.777|220598.871|128.635 +638719.894|220594.324|128.605 +638725.061|220589.733|128.669 +638730.175|220585.183|128.605 +638735.342|220580.592|128.626 +638740.508|220575.999|128.452 +638745.626|220571.451|128.403 +638750.792|220566.858|128.224 +638755.958|220562.262|128.059 +638761.125|220557.668|127.913 +638766.245|220553.115|127.727 +638771.415|220548.515|127.513 +638776.587|220543.916|127.236 +638781.760|220539.316|126.940 +638786.932|220534.711|126.584 +638792.059|220530.151|126.261 +638797.237|220525.545|125.925 +638802.413|220520.940|125.617 +638807.598|220516.325|125.105 +638812.779|220511.717|124.795 +638817.961|220507.105|124.502 +638823.085|220502.548|124.221 +638828.272|220497.930|123.761 +638833.463|220493.313|123.331 +638838.651|220488.695|122.957 +638843.796|220484.117|122.588 +638848.993|220479.493|122.131 +638854.186|220474.872|121.829 +638859.331|220470.294|121.600 +638864.528|220465.670|121.256 +638869.740|220461.028|120.588 +638874.895|220456.444|120.262 +638880.107|220451.802|119.695 +638885.270|220447.205|119.223 +638890.433|220442.612|118.836 +638895.633|220437.988|118.769 +638900.784|220433.410|118.763 +638905.935|220428.832|118.805 +638911.145|220424.199|118.604 +638916.308|220419.609|118.439 +638921.477|220415.006|118.129 +638926.647|220410.410|117.906 +638931.822|220405.804|117.577 +638936.992|220401.208|117.421 +638942.164|220396.609|117.287 +638947.297|220392.043|116.979 +638952.472|220387.440|116.827 +638957.611|220382.862|116.458 +638962.747|220378.293|116.245 +638967.926|220373.688|116.153 +638973.062|220369.119|115.961 +638978.213|220364.531|115.593 +638983.367|220359.944|115.230 +638988.475|220355.396|114.824 +638993.630|220350.809|114.550 +638998.747|220346.256|114.117 +639003.911|220341.656|113.755 +639009.022|220337.108|113.471 +639014.137|220332.555|113.191 +639019.260|220327.995|112.855 +639024.326|220323.487|112.639 +639029.456|220318.921|112.279 +639034.589|220314.352|111.908 +639039.673|220309.829|111.591 +639044.751|220305.309|111.371 +639049.826|220300.791|111.210 +639054.904|220296.274|111.042 +639060.000|220291.739|110.719 +639065.066|220287.228|110.192 +639070.171|220282.683|109.826 +639075.246|220278.163|109.277 +639080.367|220273.600|108.805 +639085.414|220269.110|108.628 +639090.462|220264.621|108.521 +639095.500|220260.140|108.506 +639100.526|220255.672|108.652 +639105.534|220251.222|108.997 +639110.487|220246.827|109.442 +639115.504|220242.367|109.722 +639120.494|220237.932|109.832 +639125.499|220233.479|109.777 +639130.510|220229.023|109.713 +639135.536|220224.549|109.521 +639140.531|220220.108|109.655 +639145.539|220215.658|109.701 +639150.511|220211.235|109.634 +639155.528|220206.773|109.631 +639160.505|220202.347|109.579 +639165.488|220197.912|109.472 +639170.478|220193.474|109.359 +639175.483|220189.018|109.131 +639180.488|220184.568|108.948 +639185.499|220180.106|108.722 +639190.461|220175.692|108.524 +639195.475|220171.230|108.329 +639200.403|220166.841|108.052 +639205.439|220162.360|107.744 +639210.434|220157.913|107.409 +639215.430|220153.466|107.073 +639220.380|220149.059|106.741 +639225.431|220144.563|106.449 +639230.408|220140.131|105.976 +639235.437|220135.650|105.510 +639240.415|220131.219|105.098 +639245.398|220126.781|104.675 +639250.406|220122.319|104.077 +639255.417|220117.853|103.513 +639260.428|220113.391|102.995 +639265.353|220109.008|102.748 +639270.401|220104.512|102.367 +639275.323|220100.135|102.215 +639280.316|220095.688|101.925 +639290.231|220086.861|101.252 +639295.184|220082.451|100.971 +639305.133|220073.593|100.237 +639325.125|220055.781|97.844 +639330.114|220051.330|97.198 +639340.154|220042.372|95.662 +639349.999|220033.606|95.470 +639394.110|219994.330|94.479 +639398.938|219990.035|94.586 +639413.642|219976.938|94.065 +639423.429|219968.224|94.004 +639428.275|219963.911|93.860 +639447.682|219946.634|93.900 +639452.571|219942.276|93.626 +639471.874|219925.088|93.287 +639486.328|219912.223|93.199 +639495.828|219903.764|93.382 +639500.595|219899.521|93.424 +639505.244|219895.391|94.074 +639509.907|219891.243|94.397 +639514.589|219887.086|94.915 +639519.243|219882.946|95.323 +639523.849|219878.850|95.720 +639528.469|219874.744|96.311 +639533.185|219870.550|96.479 +639542.505|219862.257|96.860 +639542.033|219859.455|96.671 +639537.360|219863.595|96.485 +639532.660|219867.761|96.201 +639527.942|219871.949|96.277 +639523.273|219876.082|95.869 +639518.655|219880.173|95.244 +639513.933|219884.355|94.875 +639509.288|219888.469|94.409 +639504.604|219892.618|93.885 +639499.980|219896.711|93.342 +639495.161|219900.988|93.275 +639485.608|219909.458|93.004 +639480.744|219913.777|93.214 +639475.931|219918.047|93.190 +639461.364|219930.971|93.360 +639451.632|219939.609|93.513 +639446.697|219943.989|93.708 +639441.812|219948.323|93.674 +639427.105|219961.375|93.668 +639417.141|219970.226|94.281 +639402.349|219983.354|94.257 +639387.432|219996.597|94.851 +639382.415|220001.054|94.961 +639367.504|220014.291|95.235 +639362.624|220018.616|94.921 +639347.622|220031.936|95.421 +639322.229|220054.519|98.652 +639301.975|220072.523|100.654 +639296.958|220076.979|100.932 +639291.920|220081.457|101.380 +639281.794|220090.452|101.995 +639276.728|220094.954|102.383 +639271.705|220099.416|102.498 +639266.667|220103.887|102.730 +639261.620|220108.374|103.081 +639256.563|220112.861|103.141 +639251.479|220117.384|103.815 +639246.349|220121.947|104.498 +639241.253|220126.476|104.952 +639236.187|220130.978|105.220 +639231.103|220135.495|105.644 +639226.010|220140.021|106.186 +639220.950|220144.517|106.503 +639215.842|220149.056|106.836 +639210.831|220153.509|107.223 +639205.722|220158.050|107.628 +639200.678|220162.534|107.954 +639195.600|220167.042|108.158 +639190.531|220171.544|108.341 +639185.456|220176.052|108.588 +639180.427|220180.520|108.902 +639175.364|220185.016|109.119 +639170.301|220189.515|109.362 +639165.245|220194.005|109.573 +639160.161|220198.519|109.625 +639155.119|220202.996|109.753 +639150.044|220207.501|109.780 +639145.015|220211.966|109.878 +639139.943|220216.468|109.902 +639134.890|220220.955|109.811 +639129.830|220225.445|109.807 +639124.755|220229.950|109.939 +639119.634|220234.497|110.085 +639114.593|220238.975|109.987 +639109.509|220243.483|109.811 +639104.452|220247.963|109.366 +639099.402|220252.441|108.881 +639094.330|220256.940|108.643 +639089.236|220261.463|108.677 +639084.101|220266.023|108.637 +639078.995|220270.555|108.829 +639073.829|220275.149|109.201 +639068.650|220279.754|109.759 +639063.542|220284.296|110.097 +639058.375|220288.892|110.591 +639053.218|220293.482|111.024 +639048.088|220298.042|111.176 +639042.953|220302.608|111.405 +639037.817|220307.174|111.694 +639032.684|220311.740|111.972 +639027.493|220316.358|112.404 +639022.369|220320.914|112.651 +639017.197|220325.511|112.904 +639012.070|220330.074|113.264 +639006.904|220334.667|113.514 +639001.737|220339.260|113.825 +638996.620|220343.814|114.197 +638991.405|220348.453|114.553 +638986.247|220353.040|114.870 +638981.084|220357.634|115.282 +638975.878|220362.264|115.663 +638970.721|220366.851|116.068 +638965.539|220371.456|116.135 +638960.352|220376.068|116.306 +638955.210|220380.640|116.595 +638949.970|220385.300|116.931 +638944.788|220389.909|117.153 +638939.607|220394.518|117.400 +638934.428|220399.120|117.635 +638929.207|220403.762|117.787 +638924.031|220408.368|118.068 +638918.810|220413.010|118.299 +638913.641|220417.606|118.513 +638908.474|220422.197|118.689 +638903.265|220426.827|118.756 +638898.056|220431.456|118.909 +638892.902|220436.038|118.936 +638887.699|220440.661|118.982 +638882.484|220445.300|119.387 +638877.318|220449.900|119.866 +638872.060|220454.579|120.305 +638866.900|220459.169|120.698 +638861.685|220463.811|121.366 +638856.488|220468.435|121.631 +638851.291|220473.056|121.890 +638846.140|220477.637|122.252 +638840.943|220482.261|122.658 +638835.749|220486.881|123.024 +638830.555|220491.505|123.475 +638825.361|220496.123|123.874 +638820.174|220500.741|124.267 +638814.998|220505.343|124.560 +638809.765|220509.997|124.816 +638804.580|220514.606|125.118 +638799.395|220519.221|125.621 +638794.217|220523.829|125.971 +638788.987|220528.481|126.337 +638783.860|220533.043|126.678 +638778.636|220537.689|126.943 +638773.411|220542.334|127.166 +638768.288|220546.894|127.498 +638763.066|220551.536|127.632 +638757.894|220556.132|127.833 +638752.724|220560.732|128.059 +638747.555|220565.325|128.184 +638742.386|220569.921|128.345 +638737.216|220574.515|128.260 +638732.050|220579.111|128.595 +638726.880|220583.701|128.452 +638721.760|220588.252|128.492 +638716.593|220592.845|128.470 +638711.473|220597.396|128.498 +638706.306|220601.989|128.553 +638701.186|220606.540|128.577 +638696.016|220611.133|128.455 +638690.896|220615.684|128.446 +638685.772|220620.235|128.382 +638680.657|220624.785|128.608 +638675.537|220629.336|128.629 +638670.419|220633.887|128.617 +638665.295|220638.440|128.440 +638660.175|220642.994|128.406 +638655.054|220647.545|128.437 +638649.930|220652.102|128.364 +638644.855|220656.613|128.324 +638639.732|220661.166|128.236 +638634.645|220665.684|127.885 +638629.564|220670.201|127.705 +638624.437|220674.757|127.626 +638619.356|220679.275|127.526 +638614.272|220683.792|127.379 +638609.136|220688.355|127.135 +638604.101|220692.832|127.026 +638599.013|220697.352|126.892 +638593.981|220701.830|126.895 +638588.937|220706.310|126.715 +638583.844|220710.837|126.456 +638578.799|220715.317|126.343 +638573.767|220719.795|126.462 +638568.732|220724.272|126.520 +638563.742|220728.710|126.517 +638558.707|220733.191|126.636 +638553.732|220737.616|127.004 +638548.755|220742.045|127.337 +638543.777|220746.477|127.644 +638538.815|220750.900|128.187 +638533.844|220755.322|128.650 +638528.912|220759.711|128.912 +638523.929|220764.146|129.144 +638518.997|220768.535|129.437 +638514.075|220772.918|129.885 +638509.149|220777.305|130.250 +638504.169|220781.736|130.580 +638499.231|220786.132|130.796 +638494.345|220790.478|131.086 +638489.416|220794.867|131.436 +638484.466|220799.268|131.552 +638479.522|220803.670|131.723 +638474.621|220808.028|131.829 +638469.671|220812.433|131.960 +638464.819|220816.749|132.128 +638459.863|220821.156|132.226 +638454.937|220825.536|132.076 +638450.012|220829.913|132.000 +638445.171|220834.223|132.363 +638440.261|220838.591|132.491 +638435.393|220842.919|132.561 +638430.450|220847.314|132.332 +638425.570|220851.655|132.274 +638420.684|220855.998|132.198 +638415.786|220860.351|131.997 +638410.936|220864.657|131.857 +638406.090|220868.967|131.723 +638401.177|220873.332|131.451 +638396.321|220877.648|131.305 +638391.450|220881.976|130.994 +638381.712|220890.629|130.546 +638376.878|220894.924|130.199 +638372.041|220899.228|130.354 +638343.188|220924.880|129.982 +638333.651|220933.369|130.473 +638324.178|220941.802|131.128 +638319.395|220946.051|131.098 +638314.628|220950.294|131.195 +638309.870|220954.528|131.409 +638300.367|220962.980|131.534 +638295.615|220967.201|131.436 +638290.869|220971.420|131.412 +638286.108|220975.650|131.278 +638281.359|220979.872|131.250 +638276.653|220984.054|131.211 +638267.232|220992.427|131.104 +638262.511|220996.624|130.994 +638257.795|221000.815|130.967 +638248.484|221009.096|131.092 +638243.768|221013.287|131.128 +638239.135|221017.408|131.409 +638229.860|221025.656|131.585 +638225.279|221029.734|131.915 +638220.692|221033.816|132.226 +638215.992|221037.991|132.116 +638211.435|221042.048|132.314 +638206.790|221046.175|132.271 +638202.209|221050.250|132.341 +638197.582|221054.365|132.469 +638193.022|221058.416|132.384 +638188.410|221062.522|132.631 +638179.230|221070.681|132.485 +638165.371|221082.989|131.695 +638160.869|221086.994|131.790 +638151.703|221095.138|131.659 +638147.150|221099.183|131.509 +638142.617|221103.210|131.180 +638138.036|221107.279|130.884 +638133.479|221111.329|130.756 +638128.962|221115.344|130.589 +638124.546|221119.269|130.750 +638120.071|221123.250|130.869 +638115.572|221127.249|130.854 +638111.019|221131.285|129.964 +638106.422|221135.360|129.147 +638101.981|221139.307|128.946 +638097.440|221143.340|128.492 +638093.057|221147.238|128.672 +638088.594|221151.200|128.422 +638084.141|221155.154|127.958 +638079.648|221159.144|127.574 +638075.201|221163.091|127.199 +638070.837|221166.974|127.276 +638066.048|221171.198|125.084 +638061.717|221175.051|125.115 +638052.744|221183.006|123.575 +638035.626|221198.240|124.590 +638031.252|221202.120|124.270 +638026.918|221205.973|124.154 +638018.344|221213.593|123.944 +638014.080|221217.388|123.972 +638009.788|221221.195|123.639 +638005.545|221224.968|123.545 +638001.214|221228.812|123.051 +637992.521|221236.520|121.695 +637988.150|221240.394|120.802 +637983.895|221244.174|120.500 +637979.771|221247.844|120.600 +637971.405|221255.275|120.290 +637963.041|221262.696|119.793 +637958.975|221266.314|119.988 +637954.900|221269.932|119.918 +637951.035|221273.380|120.835 +637947.045|221276.925|121.192 +637939.050|221284.039|121.844 +637935.121|221287.532|122.268 +637931.201|221291.022|122.737 +637927.282|221294.505|122.981 +637923.322|221298.026|123.060 +637919.436|221301.482|123.481 +637902.937|221316.101|120.576 +637898.929|221319.655|120.305 +637895.052|221323.102|120.378 +637891.199|221326.525|120.344 +637887.475|221329.838|120.887 +637868.309|221346.864|120.936 +637864.471|221350.272|120.835 +637860.686|221353.634|120.728 +637845.760|221366.893|120.710 +637834.857|221376.582|121.192 +637809.266|221399.290|119.525 +637805.657|221402.493|119.244 +637802.009|221405.730|118.823 +637798.421|221408.912|118.665 +637794.919|221412.018|118.424 +637791.389|221415.155|118.290 +637784.586|221421.199|118.436 +637781.096|221424.296|118.287 +637777.661|221427.344|118.162 +637774.305|221430.328|118.330 +637741.451|221459.503|118.150 +637735.035|221465.197|117.787 +637731.874|221468.007|117.784 +637728.774|221470.759|117.827 +637725.647|221473.533|117.775 +637719.545|221478.956|117.842 +638010.282|221218.863|123.566 +638014.522|221215.087|123.676 +638018.786|221211.286|123.670 +638023.077|221207.464|123.807 +638027.400|221203.611|123.874 +638031.697|221199.786|124.084 +638040.323|221192.102|124.182 +638053.350|221180.492|124.404 +638057.852|221176.493|125.279 +638062.150|221172.658|125.075 +638066.600|221168.699|125.438 +638071.266|221164.560|127.017 +638075.698|221160.616|127.324 +638080.136|221156.665|127.690 +638084.653|221152.648|128.236 +638089.122|221148.671|128.547 +638093.553|221144.723|128.653 +638098.022|221140.740|128.705 +638102.481|221136.771|129.007 +638107.068|221132.690|129.498 +638111.704|221128.572|130.595 +638116.258|221124.521|130.930 +638120.702|221120.556|130.644 +638125.189|221116.557|130.638 +638129.727|221112.512|130.647 +638134.202|221108.522|130.592 +638138.813|221104.420|131.086 +638143.394|221100.341|131.415 +638148.009|221096.233|131.677 +638152.505|221092.221|131.201 +638157.120|221088.116|131.814 +638161.692|221084.044|131.854 +638166.288|221079.944|131.771 +638170.869|221075.863|131.906 +638184.768|221063.482|132.515 +638189.364|221059.385|132.518 +638193.994|221055.258|132.427 +638198.612|221051.140|132.262 +638203.239|221047.010|132.204 +638207.912|221042.844|132.119 +638217.214|221034.544|132.067 +638221.850|221030.408|131.777 +638226.507|221026.253|131.662 +638231.147|221022.111|131.433 +638235.886|221017.884|131.223 +638240.550|221013.723|131.208 +638245.259|221009.523|131.183 +638250.008|221005.286|131.092 +638254.738|221001.065|130.891 +638259.435|220996.874|130.830 +638264.211|220992.619|131.006 +638268.963|220988.382|131.015 +638273.779|220984.087|131.171 +638278.564|220979.820|131.107 +638283.313|220975.583|131.171 +638288.102|220971.313|131.177 +638292.920|220967.019|131.439 +638297.755|220962.709|131.439 +638302.522|220958.457|131.329 +638312.147|220949.867|131.113 +638336.193|220928.412|130.253 +638340.988|220924.127|129.641 +638370.300|220897.990|130.040 +638375.159|220893.659|130.156 +638380.118|220889.236|130.348 +638385.050|220884.844|130.772 +638389.954|220880.473|130.945 +638394.913|220876.054|131.204 +638399.857|220871.646|131.332 +638404.767|220867.273|131.653 +638409.711|220862.868|131.817 +638414.694|220858.424|131.939 +638419.632|220854.020|132.119 +638424.567|220849.622|132.277 +638429.544|220845.184|132.381 +638434.506|220840.761|132.326 +638439.426|220836.372|132.399 +638444.431|220831.907|132.335 +638449.314|220827.548|131.960 +638454.325|220823.080|131.982 +638459.247|220818.690|132.195 +638464.246|220814.231|132.125 +638469.190|220809.821|131.970 +638474.179|220805.368|131.835 +638479.169|220800.917|131.689 +638484.110|220796.507|131.558 +638489.099|220792.057|131.442 +638494.071|220787.619|131.086 +638499.045|220783.175|130.817 +638504.025|220778.734|130.589 +638508.997|220774.293|130.287 +638514.014|220769.813|129.909 +638518.979|220765.381|129.482 +638523.999|220760.897|129.196 +638528.973|220756.456|128.952 +638533.993|220751.976|128.650 +638539.007|220747.498|128.263 +638544.006|220743.030|127.620 +638549.029|220738.549|127.394 +638554.049|220734.069|127.099 +638559.066|220729.588|126.809 +638564.144|220725.059|126.730 +638569.173|220720.575|126.709 +638574.251|220716.046|126.672 +638579.278|220711.562|126.639 +638584.362|220707.030|126.809 +638589.446|220702.500|126.965 +638594.472|220698.020|126.949 +638599.550|220693.490|127.111 +638604.628|220688.967|127.218 +638609.709|220684.438|127.455 +638614.833|220679.872|127.605 +638619.911|220675.346|127.861 +638624.979|220670.826|127.824 +638630.097|220666.263|127.867 +638635.120|220661.785|128.080 +638640.241|220657.222|128.224 +638645.361|220652.659|128.461 +638650.427|220648.142|128.510 +638655.493|220643.625|128.556 +638660.605|220639.065|128.492 +638665.719|220634.509|128.629 +638670.828|220629.949|128.559 +638675.893|220625.435|128.653 +638680.999|220620.878|128.403 +638686.110|220616.318|128.446 +638691.222|220611.761|128.516 +638696.333|220607.204|128.516 +638701.494|220602.602|128.553 +638706.553|220598.088|128.504 +638716.822|220588.932|128.412 +638721.933|220584.372|128.394 +638727.091|220579.772|128.504 +638732.202|220575.216|128.367 +638737.311|220570.656|128.211 +638742.471|220566.053|128.208 +638747.631|220561.454|128.129 +638752.743|220556.891|127.934 +638757.903|220552.285|127.754 +638763.063|220547.683|127.623 +638768.178|220543.117|127.382 +638773.292|220538.551|127.166 +638778.507|220533.897|126.809 +638783.625|220529.331|126.572 +638788.791|220524.716|126.233 +638793.961|220520.102|125.877 +638799.085|220515.527|125.444 +638804.260|220510.906|125.054 +638809.433|220506.291|124.834 +638814.559|220501.716|124.542 +638819.726|220497.101|124.157 +638824.953|220492.435|123.837 +638830.086|220487.851|123.395 +638835.271|220483.221|122.987 +638840.455|220478.591|122.566 +638845.594|220474.004|122.198 +638850.782|220469.374|121.865 +638856.015|220464.701|121.634 +638861.157|220460.111|121.292 +638866.360|220455.463|120.695 +638871.557|220450.820|120.271 +638876.708|220446.221|119.875 +638881.914|220441.570|119.354 +638887.111|220436.934|119.186 +638892.259|220432.340|119.012 +638897.453|220427.704|118.942 +638902.650|220423.071|118.869 +638907.752|220418.518|118.766 +638912.955|220413.876|118.604 +638918.161|220409.227|118.385 +638923.276|220404.664|118.135 +638928.488|220400.013|117.915 +638933.700|220395.362|117.729 +638938.823|220390.787|117.415 +638943.996|220386.172|117.171 +638949.165|220381.564|117.019 +638954.350|220376.937|116.608 +638959.532|220372.313|116.312 +638964.710|220367.698|116.138 +638969.834|220363.129|116.056 +638975.034|220358.490|115.596 +638980.182|220353.894|115.202 +638985.382|220349.255|114.824 +638990.536|220344.658|114.471 +638995.687|220340.062|114.169 +639000.847|220335.459|113.779 +639006.002|220330.860|113.502 +639011.110|220326.306|113.261 +639016.270|220321.704|112.983 +639021.440|220317.092|112.639 +639026.551|220312.532|112.444 +639031.727|220307.918|112.087 +639036.802|220303.385|111.767 +639041.980|220298.768|111.459 +639047.058|220294.238|111.216 +639052.188|220289.663|110.966 +639057.290|220285.109|110.490 +639062.390|220280.559|110.082 +639067.547|220275.956|109.628 +639072.600|220271.448|109.262 +639077.752|220266.852|108.945 +639082.784|220262.368|108.908 +639087.871|220257.833|108.811 +639092.940|220253.316|108.951 +639097.942|220248.860|109.268 +639102.928|220244.425|109.786 +639107.890|220240.008|110.079 +639112.965|220235.485|110.225 +639117.964|220231.026|110.146 +639123.008|220226.530|110.152 +639128.059|220222.031|110.134 +639133.061|220217.572|110.140 +639138.059|220213.116|110.161 +639143.073|220208.647|110.094 +639148.090|220204.173|110.021 +639153.114|220199.695|109.908 +639158.091|220195.257|109.814 +639163.123|220190.771|109.670 +639168.110|220186.324|109.536 +639173.102|220181.874|109.384 +639178.104|220177.408|109.149 +639183.124|220172.931|108.826 +639188.135|220168.459|108.573 +639193.097|220164.034|108.363 +639198.120|220159.553|108.104 +639203.101|220155.109|107.799 +639208.097|220150.653|107.409 +639213.098|220146.187|106.991 +639218.100|220141.722|106.610 +639223.099|220137.263|106.293 +639228.061|220132.834|105.888 +639233.084|220128.351|105.443 +639237.985|220123.980|105.196 +639242.981|220119.523|105.016 +639247.958|220115.076|104.245 +639257.959|220106.149|103.236 +639262.884|220101.757|103.306 +639267.810|220097.361|103.053 +639272.711|220092.994|102.992 +639277.649|220088.589|102.715 +639282.535|220084.231|102.462 +639292.468|220075.364|101.627 +639297.379|220070.981|101.297 +639302.295|220066.592|100.944 +639307.218|220062.200|100.581 +639332.102|220039.977|97.192 +639342.035|220031.104|95.674 +639346.927|220026.745|95.442 +639361.494|220013.761|95.217 +639366.367|220009.420|95.195 +639424.319|219957.769|93.744 +639452.970|219932.239|93.723 +639457.774|219927.953|93.376 +639462.489|219923.756|93.513 +639467.348|219919.422|93.199 +639486.322|219902.515|93.178 +639491.028|219898.321|93.211 +639505.027|219885.860|94.028 +639514.205|219877.698|95.150 +639518.740|219873.662|95.607 +639523.388|219869.526|96.037 +639535.114|219856.066|96.436 +639526.007|219864.171|96.037 +639521.392|219868.276|95.902 +639507.716|219880.435|94.522 +639503.208|219884.437|93.674 +639498.520|219888.607|93.464 +639493.945|219892.676|92.967 +639489.269|219896.836|92.989 +639484.511|219901.079|93.193 +639479.741|219905.325|93.199 +639474.989|219909.555|93.141 +639465.473|219918.029|93.159 +639460.700|219922.281|93.272 +639407.393|219969.760|94.546 +639402.575|219974.045|94.043 +639362.957|220009.332|95.144 +639348.003|220022.649|95.400 +639343.020|220027.087|95.521 +639307.169|220059.082|100.554 +639302.118|220063.583|101.035 +639296.995|220068.149|101.371 +639291.904|220072.688|101.849 +639281.697|220081.792|102.764 +639276.597|220086.334|103.053 +639271.519|220090.860|103.230 +639266.463|220095.365|103.294 +639261.382|220099.891|103.535 +639256.313|220104.402|103.361 +639251.208|220108.953|103.849 +639246.050|220113.555|104.385 +639240.930|220118.121|105.053 +639235.772|220122.718|105.290 +639230.682|220127.253|105.412 +639225.504|220131.871|105.879 +639220.426|220136.400|106.360 +639215.232|220141.027|106.613 +639210.117|220145.587|107.067 +639204.960|220150.186|107.491 +639199.809|220154.780|107.899 +639194.670|220159.358|108.238 +639189.559|220163.912|108.399 +639184.386|220168.523|108.674 +639179.217|220173.132|108.960 +639174.145|220177.652|109.286 +639168.991|220182.245|109.524 +639163.849|220186.823|109.646 +639158.716|220191.399|109.747 +639153.629|220195.928|109.893 +639148.499|220200.500|110.015 +639143.320|220205.115|110.164 +639138.255|220209.626|110.216 +639133.091|220214.225|110.262 +639128.038|220218.724|110.234 +639122.883|220223.311|110.256 +639117.784|220227.856|110.280 +639112.642|220232.431|110.210 +639107.537|220236.981|110.341 +639102.422|220241.532|110.054 +639097.378|220246.016|109.585 +639092.284|220250.548|109.137 +639087.164|220255.108|108.988 +639082.043|220259.665|108.856 +639076.950|220264.203|108.988 +639071.744|220268.842|109.308 +639066.602|220273.423|109.506 +639061.442|220278.023|109.932 +639056.236|220282.665|110.384 +639051.127|220287.219|110.890 +639045.946|220291.836|111.136 +639040.810|220296.408|111.432 +639035.631|220301.023|111.691 +639030.453|220305.638|112.029 +639025.320|220310.213|112.417 +639020.156|220314.812|112.593 +639014.987|220319.418|112.886 +639009.915|220323.935|113.240 +639004.706|220328.577|113.483 +638999.601|220333.125|113.685 +638994.434|220337.730|114.117 +638989.277|220342.324|114.440 +638984.126|220346.914|114.718 +638978.966|220351.513|115.169 +638973.815|220356.104|115.559 +638968.709|220360.651|115.977 +638963.531|220365.266|116.102 +638958.447|220369.795|116.294 +638953.259|220374.416|116.623 +638948.120|220378.994|116.964 +638942.993|220383.563|117.202 +638937.863|220388.132|117.464 +638932.740|220392.698|117.708 +638927.616|220397.261|117.976 +638922.450|220401.863|118.171 +638917.329|220406.426|118.436 +638912.166|220411.023|118.625 +638907.005|220415.619|118.811 +638901.897|220420.173|118.994 +638896.746|220424.757|119.009 +638891.598|220429.341|119.052 +638886.489|220433.889|119.247 +638881.341|220438.476|119.357 +638876.181|220443.078|119.851 +638871.072|220447.629|120.223 +638865.918|220452.223|120.622 +638860.761|220456.822|121.225 +638855.665|220461.363|121.518 +638850.517|220465.951|121.841 +638845.375|220470.532|122.149 +638840.233|220475.113|122.481 +638835.091|220479.697|122.850 +638830.001|220484.236|123.261 +638824.813|220488.856|123.648 +638819.677|220493.435|124.036 +638814.593|220497.967|124.368 +638809.472|220502.530|124.724 +638804.342|220507.102|124.977 +638799.216|220511.668|125.236 +638794.086|220516.240|125.636 +638788.959|220520.812|126.093 +638783.884|220525.335|126.413 +638778.712|220529.944|126.709 +638773.591|220534.506|126.956 +638768.470|220539.066|127.248 +638763.353|220543.626|127.446 +638758.235|220548.186|127.675 +638753.118|220552.743|127.800 +638747.954|220557.345|127.992 +638742.840|220561.899|128.114 +638737.725|220566.456|128.172 +638732.611|220571.009|128.184 +638727.496|220575.563|128.339 +638722.382|220580.117|128.208 +638717.218|220584.713|128.257 +638712.152|220589.221|128.233 +638706.992|220593.821|128.358 +638701.878|220598.374|128.416 +638696.812|220602.885|128.470 +638691.648|220607.482|128.492 +638686.534|220612.036|128.455 +638681.468|220616.544|128.412 +638676.351|220621.100|128.358 +638671.239|220625.654|128.577 +638666.173|220630.165|128.565 +638661.056|220634.719|128.580 +638655.941|220639.276|128.553 +638650.872|220643.787|128.565 +638645.752|220648.343|128.504 +638640.677|220652.861|128.269 +638635.602|220657.378|128.163 +638630.481|220661.934|128.102 +638625.403|220666.455|127.910 +638620.331|220670.972|127.879 +638615.204|220675.532|127.800 +638610.175|220680.009|127.675 +638605.045|220684.575|127.458 +638599.961|220689.098|127.260 +638594.877|220693.622|127.105 +638589.796|220698.145|127.013 +638584.767|220702.625|127.035 +638579.680|220707.152|126.931 +638574.599|220711.675|126.885 +638569.567|220716.155|126.910 +638564.483|220720.685|126.879 +638559.444|220725.165|126.882 +638554.421|220729.643|127.135 +638549.398|220734.120|127.394 +638544.369|220738.601|127.559 +638539.364|220743.066|128.184 +638534.347|220747.538|128.598 +638529.373|220751.970|128.888 +638524.346|220756.450|129.120 +638519.372|220760.882|129.443 +638514.395|220765.317|129.726 +638509.426|220769.749|130.113 +638504.452|220774.180|130.488 +638499.523|220778.576|130.747 +638494.540|220783.013|130.991 +638489.614|220787.406|131.354 +638484.625|220791.850|131.467 +638479.684|220796.251|131.659 +638474.789|220800.613|131.784 +638469.793|220805.060|131.921 +638464.895|220809.424|132.024 +638459.942|220813.835|132.116 +638455.023|220818.215|131.997 +638450.115|220822.586|132.049 +638445.162|220826.996|132.189 +638440.261|220831.364|132.363 +638435.339|220835.747|132.320 +638430.471|220840.081|132.326 +638425.542|220844.470|132.241 +638420.611|220848.856|132.171 +638415.728|220853.206|132.079 +638410.842|220857.555|131.997 +638405.895|220861.960|131.774 +638401.033|220866.282|131.488 +638396.132|220870.644|131.302 +638391.222|220875.014|131.049 +638376.613|220888.011|130.235 +638371.769|220892.324|130.275 +638323.727|220935.112|130.793 +638318.975|220939.346|130.967 +638314.247|220943.552|130.970 +638309.508|220947.780|131.290 +638304.722|220952.041|131.223 +638295.261|220960.471|131.244 +638285.727|220968.966|131.168 +638281.024|220973.154|131.083 +638276.327|220977.339|131.070 +638271.588|220981.564|131.119 +638266.851|220985.782|130.814 +638262.145|220989.973|130.796 +638257.436|220994.170|130.763 +638252.803|220998.303|130.942 +638248.112|221002.482|131.092 +638238.770|221010.806|130.982 +638234.134|221014.942|131.201 +638229.482|221019.088|131.345 +638224.886|221023.187|131.531 +638220.262|221027.308|131.549 +638215.681|221031.392|131.890 +638211.063|221035.510|131.970 +638206.436|221039.634|132.012 +638201.880|221043.697|132.207 +638197.283|221047.794|132.162 +638192.699|221051.878|132.216 +638183.579|221060.007|132.357 +638169.860|221072.233|132.268 +638165.258|221076.329|131.991 +638160.671|221080.414|131.829 +638156.144|221084.446|131.750 +638147.049|221092.548|131.400 +638142.507|221096.598|131.585 +638137.984|221100.625|131.299 +638133.458|221104.654|131.009 +638128.880|221108.726|130.446 +638124.381|221112.738|130.668 +638119.922|221116.712|130.537 +638115.435|221120.711|130.567 +638111.049|221124.625|130.915 +638106.526|221128.648|130.476 +638101.878|221132.775|129.327 +638097.345|221136.808|128.891 +638092.874|221140.788|128.528 +638088.466|221144.717|128.547 +638084.025|221148.671|128.409 +638079.530|221152.673|127.961 +638075.080|221156.635|127.519 +638070.648|221160.579|127.202 +638066.085|221164.630|126.197 +638061.498|221168.702|125.084 +638052.735|221176.508|124.587 +638048.522|221180.269|125.294 +638044.042|221184.253|124.569 +638039.427|221188.343|122.883 +638030.975|221195.887|123.694 +638026.677|221199.712|123.490 +638022.300|221203.611|123.139 +638018.088|221207.366|123.130 +638013.818|221211.167|123.124 +638009.563|221214.962|123.191 +637992.341|221230.284|121.359 +637988.019|221234.134|120.920 +637979.674|221241.568|120.838 +637975.254|221245.487|119.491 +637967.156|221252.720|120.436 +637958.890|221260.087|120.381 +637951.007|221267.128|121.698 +637938.925|221277.900|121.939 +637934.987|221281.417|122.539 +637931.034|221284.947|122.832 +637923.182|221291.954|123.472 +637919.235|221295.472|123.591 +637915.282|221298.998|123.703 +637911.344|221302.506|123.661 +637907.393|221306.027|123.566 +637898.847|221313.598|120.372 +637894.942|221317.079|120.305 +637891.053|221320.545|120.323 +637887.176|221324.004|120.402 +637864.310|221344.389|120.832 +637860.524|221347.760|120.716 +637856.760|221351.116|120.704 +637852.926|221354.530|120.411 +637845.537|221361.117|120.597 +637841.974|221364.299|121.018 +637838.173|221367.682|120.704 +637834.589|221370.882|121.058 +637805.398|221396.876|119.220 +637801.725|221400.143|118.900 +637798.186|221403.295|118.705 +637794.663|221406.434|118.567 +637791.127|221409.583|118.409 +637784.333|221415.642|118.769 +637777.384|221421.830|118.357 +637773.964|221424.878|118.272 +637770.599|221427.874|118.211 +637767.203|221430.904|118.241 +637737.781|221457.132|118.516 +637734.431|221460.110|118.010 +637728.055|221465.791|117.799 +637724.949|221468.559|117.818 +637721.782|221471.381|117.815 +637718.716|221474.115|117.784 +637715.662|221476.834|117.818 +638004.332|221217.763|122.445 +638008.706|221213.861|122.978 +638012.897|221210.118|122.862 +638017.237|221206.241|122.993 +638021.489|221202.443|122.960 +638025.818|221198.579|123.338 +638038.625|221187.130|122.844 +638052.030|221175.182|124.865 +638056.529|221171.174|125.474 +638060.806|221167.349|125.176 +638065.320|221163.325|125.928 +638069.928|221159.226|127.218 +638074.357|221155.276|127.535 +638078.874|221151.246|128.096 +638083.340|221147.259|128.391 +638087.753|221143.318|128.400 +638092.185|221139.359|128.559 +638096.699|221135.329|128.900 +638101.204|221131.315|129.504 +638105.852|221127.179|130.659 +638110.378|221123.137|130.860 +638114.752|221119.224|130.476 +638119.221|221115.231|130.360 +638123.704|221111.223|130.360 +638128.215|221107.196|130.537 +638132.815|221103.094|130.958 +638137.341|221099.052|131.281 +638141.901|221094.983|131.512 +638151.036|221086.827|131.823 +638155.586|221082.760|131.747 +638160.155|221078.679|131.808 +638164.798|221074.537|132.369 +638178.565|221062.238|132.491 +638183.137|221058.154|132.326 +638187.719|221054.057|132.268 +638192.342|221049.927|132.168 +638196.963|221045.797|132.073 +638210.850|221033.389|131.723 +638215.486|221029.253|131.793 +638220.137|221025.095|131.656 +638224.776|221020.947|131.451 +638234.103|221012.614|131.067 +638238.739|221008.471|130.881 +638248.212|221000.010|130.945 +638252.851|220995.865|130.845 +638262.340|220987.388|130.784 +638267.052|220983.182|130.915 +638271.844|220978.903|130.915 +638276.601|220974.654|131.070 +638281.326|220970.435|130.955 +638286.142|220966.135|131.238 +638290.906|220961.877|131.104 +638295.697|220957.600|131.201 +638300.477|220953.333|131.235 +638310.029|220944.796|130.869 +638314.842|220940.498|130.830 +638319.652|220936.200|130.787 +638324.452|220931.912|130.665 +638334.032|220923.341|129.872 +638372.982|220888.554|129.979 +638377.911|220884.158|130.394 +638382.831|220879.766|130.769 +638387.787|220875.344|131.025 +638392.679|220870.976|131.144 +638397.626|220866.559|131.372 +638402.566|220862.149|131.540 +638407.513|220857.735|131.823 +638412.418|220853.358|132.195 +638417.371|220848.933|132.049 +638422.299|220844.534|132.168 +638427.261|220840.100|132.165 +638432.190|220835.701|132.384 +638437.149|220831.269|132.378 +638442.105|220826.844|132.372 +638447.028|220822.439|131.966 +638451.978|220818.020|131.902 +638456.998|220813.539|132.168 +638461.942|220809.120|132.085 +638466.882|220804.706|131.966 +638471.869|220800.250|131.838 +638476.852|220795.797|131.710 +638481.836|220791.344|131.558 +638486.816|220786.894|131.393 +638491.791|220782.443|131.189 +638496.811|220777.957|130.900 +638501.733|220773.555|130.650 +638506.747|220769.072|130.330 +638511.716|220764.631|130.019 +638516.720|220760.153|129.546 +638521.740|220755.667|129.312 +638526.703|220751.229|128.986 +638531.720|220746.742|128.739 +638536.737|220742.259|128.452 +638541.741|220737.781|128.004 +638546.746|220733.304|127.574 +638551.766|220728.820|127.379 +638556.829|220724.294|127.126 +638561.849|220719.807|127.007 +638566.875|220715.314|127.038 +638571.950|220710.782|127.111 +638576.970|220706.295|127.035 +638582.045|220701.763|127.135 +638587.114|220697.236|127.126 +638592.137|220692.747|127.205 +638597.209|220688.217|127.309 +638602.284|220683.688|127.510 +638607.356|220679.159|127.711 +638612.473|220674.590|127.843 +638617.490|220670.106|127.940 +638622.605|220665.537|128.047 +638627.671|220661.014|128.117 +638632.731|220656.494|128.038 +638637.845|220651.928|128.245 +638642.911|220647.405|128.440 +638647.971|220642.881|128.544 +638653.079|220638.319|128.537 +638658.139|220633.801|128.553 +638663.244|220629.239|128.565 +638668.301|220624.718|128.562 +638673.403|220620.158|128.373 +638678.509|220615.599|128.412 +638683.565|220611.078|128.385 +638688.671|220606.519|128.422 +638693.776|220601.956|128.431 +638698.833|220597.439|128.333 +638703.938|220592.879|128.315 +638709.040|220588.316|128.181 +638714.097|220583.799|128.144 +638719.202|220579.236|128.120 +638724.354|220574.633|128.156 +638729.410|220570.113|128.169 +638734.516|220565.553|128.184 +638739.621|220560.991|128.080 +638744.726|220556.428|127.977 +638749.832|220551.865|127.843 +638754.940|220547.299|127.660 +638760.049|220542.730|127.419 +638765.203|220538.121|127.266 +638770.314|220533.552|127.001 +638775.426|220528.983|126.782 +638780.537|220524.411|126.535 +638785.698|220519.794|126.194 +638790.815|220515.219|125.822 +638795.933|220510.641|125.435 +638801.051|220506.062|125.084 +638806.168|220501.487|124.865 +638811.484|220496.733|124.508 +638816.452|220492.292|124.203 +638821.576|220487.704|123.801 +638826.703|220483.120|123.447 +638831.832|220478.530|122.990 +638836.962|220473.943|122.691 +638842.141|220469.310|122.365 +638847.225|220464.765|122.106 +638852.358|220460.172|121.740 +638857.545|220455.533|121.390 +638862.639|220450.973|120.908 +638867.787|220446.367|120.369 +638872.974|220441.731|120.174 +638878.074|220437.165|119.698 +638883.216|220432.569|119.515 +638888.364|220427.963|119.159 +638893.503|220423.373|119.137 +638898.639|220418.783|119.165 +638903.787|220414.180|119.009 +638908.938|220409.575|118.778 +638914.089|220404.972|118.619 +638919.243|220400.361|118.382 +638924.400|220395.749|118.177 +638929.564|220391.131|117.854 +638934.721|220386.520|117.674 +638939.884|220381.902|117.458 +638945.054|220377.278|117.202 +638950.177|220372.694|116.864 +638955.356|220368.061|116.522 +638960.531|220363.431|116.227 +638965.658|220358.847|116.025 +638970.831|220354.220|115.855 +638975.982|220349.608|115.324 +638981.127|220345.003|114.913 +638986.318|220340.358|114.590 +638991.466|220335.752|114.267 +638996.614|220331.147|113.922 +639001.765|220326.538|113.624 +639006.907|220321.939|113.459 +639012.064|220317.324|113.136 +639017.221|220312.709|112.807 +639022.324|220308.146|112.639 +639027.493|220303.522|112.289 +639032.614|220298.938|111.923 +639037.780|220294.314|111.645 +639042.907|220289.730|111.338 +639048.034|220285.140|111.011 +639053.215|220280.504|110.673 +639058.324|220275.932|110.103 +639063.463|220271.332|109.759 +639068.638|220266.703|109.597 +639073.725|220262.155|109.381 +639078.858|220257.562|109.204 +639083.927|220253.029|109.213 +639089.026|220248.475|109.472 +639094.068|220243.974|109.850 +639099.139|220239.447|110.432 +639104.202|220234.924|110.606 +639109.250|220230.410|110.457 +639114.328|220225.871|110.521 +639119.409|220221.330|110.585 +639124.490|220216.785|110.643 +639129.531|220212.280|110.670 +639134.585|220207.760|110.585 +639139.654|220203.228|110.402 +639144.716|220198.702|110.310 +639149.785|220194.166|110.155 +639154.805|220189.676|110.042 +639159.834|220185.178|109.878 +639164.854|220180.691|109.829 +639169.899|220176.177|109.576 +639174.937|220171.672|109.436 +639179.954|220167.179|109.049 +639185.017|220162.650|108.753 +639190.025|220158.169|108.524 +639195.042|220153.679|108.232 +639200.080|220149.168|107.808 +639205.125|220144.651|107.369 +639210.169|220140.137|106.970 +639215.171|220135.663|106.552 +639220.161|220131.194|106.247 +639225.156|220126.723|105.921 +639230.185|220122.224|105.766 +639235.148|220117.783|105.379 +639240.162|220113.293|105.010 +639245.133|220108.846|104.635 +639250.159|220104.347|104.248 +639255.082|220099.946|104.257 +639260.053|220095.499|103.967 +639264.991|220091.080|103.922 +639269.950|220086.645|103.757 +639274.863|220082.249|103.593 +639279.810|220077.821|103.221 +639284.821|220073.337|102.794 +639304.551|220055.671|101.078 +639309.528|220051.215|100.679 +639339.264|220024.566|96.232 +639344.278|220020.070|95.208 +639353.910|220011.456|95.046 +639358.744|220007.131|95.186 +639368.306|219998.585|95.278 +639377.803|219990.099|95.817 +639382.604|219985.801|95.656 +639387.478|219981.443|95.403 +639392.297|219977.133|95.204 +639406.720|219964.225|94.610 +639430.790|219942.672|92.705 +639454.360|219921.604|93.257 +639468.421|219909.025|93.001 +639473.160|219904.788|93.040 +639487.181|219892.243|92.690 +639491.829|219888.085|92.748 +639505.487|219875.890|94.183 +639509.947|219871.913|94.967 +639514.561|219867.792|95.275 +639519.066|219863.765|95.601 +639528.271|219855.536|95.659 +639532.871|219851.421|95.845 +639533.011|219848.330|95.771 +639528.524|219852.326|95.506 +639514.982|219864.387|95.198 +639510.468|219868.404|94.887 +639505.932|219872.440|94.424 +639501.565|219876.317|93.418 +639496.983|219880.398|93.214 +639492.405|219884.473|93.010 +639487.821|219888.561|93.129 +639483.173|219892.700|92.787 +639478.503|219896.861|92.836 +639473.898|219900.966|92.851 +639469.177|219905.172|92.931 +639450.291|219922.010|93.232 +639431.314|219938.923|92.982 +639417.098|219951.594|92.214 +639402.133|219964.983|94.964 +639397.225|219969.360|95.003 +639392.333|219973.728|95.265 +639387.469|219978.072|95.415 +639382.543|219982.467|95.616 +639377.633|219986.850|95.784 +639372.728|219991.227|95.930 +639363.024|219999.877|95.360 +639358.028|220004.333|95.500 +639343.230|220017.537|95.555 +639317.739|220040.336|99.731 +639312.610|220044.920|100.353 +639307.553|220049.441|100.880 +639302.475|220053.976|101.236 +639297.397|220058.509|101.608 +639292.304|220063.062|102.139 +639287.177|220067.640|102.581 +639282.038|220072.237|103.141 +639276.920|220076.806|103.580 +639271.824|220081.356|103.907 +639266.752|220085.886|104.089 +639261.644|220090.446|104.205 +639256.587|220094.960|104.345 +639251.479|220099.516|104.504 +639246.315|220104.128|104.736 +639241.207|220108.688|104.970 +639236.096|220113.254|105.266 +639230.941|220117.856|105.531 +639225.818|220122.434|105.973 +639220.630|220127.064|106.165 +639215.528|220131.621|106.503 +639210.334|220136.260|106.808 +639205.180|220140.866|107.229 +639199.977|220145.514|107.677 +639194.832|220150.110|108.107 +639189.653|220154.737|108.436 +639184.481|220159.355|108.744 +639179.360|220163.927|109.058 +639174.136|220168.596|109.454 +639168.985|220173.193|109.670 +639163.797|220177.826|109.807 +639158.609|220182.456|109.990 +639153.482|220187.034|110.091 +639148.304|220191.658|110.249 +639143.180|220196.230|110.362 +639137.962|220200.887|110.490 +639132.796|220205.499|110.618 +639127.629|220210.113|110.792 +639122.432|220214.749|110.795 +639117.293|220219.330|110.722 +639112.164|220223.912|110.640 +639106.970|220228.545|110.673 +639101.846|220233.114|110.554 +639096.655|220237.747|110.627 +639091.529|220242.315|110.091 +639086.438|220246.851|109.649 +639081.242|220251.484|109.356 +639076.127|220256.047|109.250 +639070.927|220260.689|109.530 +639065.742|220265.319|109.713 +639060.622|220269.891|109.774 +639055.373|220274.585|110.198 +639050.216|220279.193|110.719 +639044.986|220283.872|111.021 +639039.801|220288.505|111.362 +639034.674|220293.089|111.673 +639029.444|220297.762|112.051 +639024.268|220302.392|112.456 +639019.108|220307.003|112.660 +639013.951|220311.609|112.843 +639008.787|220316.227|113.182 +639003.581|220320.881|113.462 +638998.430|220325.480|113.666 +638993.276|220330.092|114.005 +638988.070|220334.743|114.373 +638982.879|220339.382|114.596 +638977.728|220343.988|114.974 +638972.574|220348.596|115.465 +638967.383|220353.242|115.843 +638962.250|220357.826|116.056 +638957.072|220362.453|116.266 +638951.887|220367.089|116.629 +638946.757|220371.676|116.964 +638941.579|220376.303|117.284 +638936.458|220380.881|117.534 +638931.289|220385.502|117.787 +638926.119|220390.122|118.095 +638921.011|220394.688|118.253 +638915.848|220399.303|118.525 +638910.687|220403.912|118.741 +638905.582|220408.474|118.900 +638900.477|220413.037|119.116 +638895.328|220417.637|119.226 +638890.235|220422.187|119.247 +638885.093|220426.781|119.272 +638879.988|220431.344|119.649 +638874.843|220435.943|119.869 +638869.695|220440.546|120.168 +638864.641|220445.063|120.600 +638859.496|220449.665|121.018 +638854.348|220454.268|121.451 +638849.304|220458.779|121.847 +638844.165|220463.372|122.192 +638839.032|220467.962|122.472 +638833.945|220472.510|122.758 +638828.812|220477.097|123.066 +638823.728|220481.645|123.478 +638818.598|220486.232|123.825 +638813.471|220490.816|124.191 +638808.402|220495.349|124.532 +638803.279|220499.930|124.868 +638798.155|220504.508|125.169 +638793.083|220509.043|125.450 +638787.962|220513.622|125.761 +638782.891|220518.157|126.090 +638777.773|220522.735|126.538 +638772.655|220527.307|126.748 +638767.590|220531.833|127.010 +638762.478|220536.405|127.212 +638757.363|220540.974|127.422 +638752.301|220545.498|127.608 +638747.238|220550.024|127.809 +638742.130|220554.587|127.919 +638737.070|220559.110|127.995 +638731.961|220563.673|128.092 +638726.899|220568.193|128.044 +638721.839|220572.713|127.998 +638716.731|220577.276|127.980 +638711.671|220581.796|127.992 +638706.611|220586.316|128.086 +638701.503|220590.879|128.147 +638696.443|220595.400|128.230 +638691.383|220599.923|128.315 +638686.324|220604.440|128.315 +638681.264|220608.963|128.409 +638676.155|220613.526|128.434 +638671.093|220618.046|128.352 +638666.033|220622.566|128.428 +638660.973|220627.087|128.507 +638655.911|220631.607|128.449 +638650.802|220636.170|128.489 +638645.739|220640.693|128.531 +638640.674|220645.216|128.419 +638635.605|220649.739|128.281 +638630.533|220654.266|127.980 +638625.470|220658.789|128.065 +638620.404|220663.315|128.111 +638615.336|220667.842|127.989 +638610.267|220672.368|127.946 +638605.192|220676.897|127.806 +638600.166|220681.384|127.672 +638595.088|220685.916|127.458 +638590.061|220690.406|127.318 +638584.987|220694.938|127.279 +638579.957|220699.428|127.181 +638574.931|220703.918|127.154 +638569.905|220708.404|127.178 +638564.879|220712.897|127.169 +638559.850|220717.387|127.187 +638554.781|220721.916|127.355 +638549.809|220726.360|127.571 +638544.783|220730.850|127.684 +638539.779|220735.327|128.184 +638534.816|220739.765|128.534 +638529.799|220744.249|128.839 +638524.825|220748.696|129.046 +638519.808|220753.180|129.345 +638514.834|220757.627|129.552 +638509.878|220762.061|130.049 +638504.858|220766.548|130.330 +638499.938|220770.946|130.692 +638494.912|220775.439|130.891 +638489.992|220779.840|131.226 +638485.015|220784.288|131.473 +638480.028|220788.744|131.576 +638475.042|220793.200|131.704 +638470.104|220797.610|131.860 +638465.160|220802.027|131.942 +638460.171|220806.486|132.058 +638455.276|220810.863|132.174 +638450.256|220815.344|131.957 +638445.357|220819.718|132.094 +638440.420|220824.134|132.320 +638435.506|220828.520|132.308 +638430.593|220832.909|132.274 +638425.628|220837.344|132.262 +638420.751|220841.700|132.149 +638415.828|220846.095|132.082 +638410.900|220850.496|132.000 +638406.014|220854.858|131.851 +638401.067|220859.275|131.585 +638396.172|220863.645|131.393 +638391.283|220868.010|131.293 +638376.582|220881.129|130.290 +638371.718|220885.469|130.074 +638332.944|220920.104|129.876 +638323.349|220928.678|130.132 +638318.640|220932.890|130.659 +638309.014|220941.491|130.738 +638299.516|220949.980|131.168 +638294.789|220954.199|131.177 +638289.997|220958.475|131.092 +638280.463|220966.982|130.967 +638275.718|220971.216|130.915 +638271.008|220975.419|130.766 +638266.275|220979.646|130.842 +638261.560|220983.853|130.702 +638256.872|220988.038|130.787 +638247.508|220996.395|130.735 +638238.172|221004.732|130.973 +638228.864|221013.043|131.122 +638224.221|221017.189|131.308 +638219.604|221021.310|131.329 +638214.953|221025.464|131.485 +638210.359|221029.570|131.698 +638205.751|221033.685|131.835 +638187.344|221050.116|132.073 +638182.778|221054.195|132.238 +638178.191|221058.291|132.287 +638173.625|221062.369|132.485 +638169.089|221066.420|132.579 +638159.960|221074.564|132.451 +638155.315|221078.704|131.909 +638150.804|221082.733|131.909 +638137.195|221094.876|131.561 +638132.690|221098.894|131.387 +638128.161|221102.932|131.067 +638123.601|221106.995|130.595 +638119.038|221111.061|130.119 +638114.603|221115.024|130.433 +638110.205|221118.949|130.382 +638105.773|221122.912|130.741 +638101.311|221126.890|130.339 +638096.702|221130.989|129.434 +638092.206|221134.997|128.885 +638087.759|221138.963|128.662 +638083.285|221142.953|128.291 +638078.929|221146.839|128.333 +638074.497|221150.792|127.955 +638069.998|221154.803|127.507 +638065.579|221158.744|127.245 +638060.879|221162.917|125.477 +638052.207|221170.656|125.428 +638048.019|221174.405|126.227 +638030.057|221190.386|122.332 +638025.824|221194.171|122.691 +638021.630|221197.917|123.011 +638017.344|221201.742|122.871 +638013.019|221205.598|122.551 +638008.813|221209.353|122.579 +638004.552|221213.154|122.362 +638000.278|221216.964|122.094 +637987.526|221228.333|120.957 +637983.072|221232.293|119.625 +637958.524|221254.214|120.619 +637946.646|221264.836|122.164 +637942.604|221268.442|122.237 +637938.675|221271.953|122.609 +637926.803|221282.557|123.380 +637922.856|221286.084|123.709 +637918.903|221289.610|123.786 +637915.026|221293.073|123.972 +637907.083|221300.160|123.786 +637894.610|221311.245|120.597 +637890.703|221314.732|120.509 +637886.883|221318.140|120.604 +637883.095|221321.523|120.838 +637856.504|221345.252|120.905 +637852.761|221348.589|120.756 +637849.021|221351.924|120.637 +637845.327|221355.222|120.710 +637838.057|221361.714|121.161 +637834.372|221365.003|121.091 +637805.044|221391.142|119.226 +637801.497|221394.309|119.165 +637797.879|221397.534|118.845 +637794.325|221400.704|118.793 +637790.838|221403.813|118.799 +637787.302|221406.968|118.631 +637770.120|221422.293|118.400 +637766.707|221425.338|118.351 +637763.250|221428.417|117.936 +637759.974|221431.343|118.223 +637756.624|221434.330|118.028 +637727.625|221460.207|118.610 +637724.306|221463.161|118.019 +637721.188|221465.941|117.988 +637718.012|221468.775|117.946 +637714.942|221471.509|117.912 +638000.790|221215.050|122.115 +638009.346|221207.384|122.527 +638017.990|221199.648|123.179 +638022.218|221195.857|123.063 +638026.366|221192.126|122.277 +638044.663|221175.804|128.004 +638048.675|221172.183|126.020 +638052.924|221168.364|125.297 +638057.395|221164.368|126.084 +638061.744|221160.466|125.968 +638066.435|221156.281|127.443 +638070.864|221152.319|127.794 +638075.348|221148.305|128.187 +638079.850|221144.272|128.425 +638084.266|221140.313|128.492 +638088.765|221136.283|128.748 +638093.313|221132.217|129.299 +638097.863|221128.145|129.912 +638102.445|221124.046|130.415 +638106.922|221120.035|130.342 +638111.393|221116.023|130.269 +638115.871|221112.009|130.220 +638120.437|221107.919|130.439 +638134.129|221095.663|131.473 +638138.707|221091.560|131.534 +638147.893|221083.330|131.927 +638152.447|221079.249|131.896 +638157.077|221075.104|132.372 +638175.447|221058.636|132.268 +638180.022|221054.533|132.177 +638184.646|221050.388|132.094 +638189.264|221046.248|131.973 +638193.869|221042.115|131.808 +638203.163|221033.782|131.753 +638207.768|221029.649|131.643 +638212.459|221025.443|131.439 +638217.107|221021.270|131.320 +638221.756|221017.103|131.208 +638226.453|221012.888|131.110 +638235.859|221004.457|131.034 +638240.556|221000.239|130.631 +638245.259|220996.020|130.659 +638250.005|220991.765|130.641 +638254.759|220987.504|130.720 +638259.487|220983.264|130.589 +638264.297|220978.955|130.763 +638269.027|220974.712|130.708 +638273.809|220970.423|130.699 +638288.193|220957.533|131.101 +638292.960|220953.257|131.061 +638297.758|220948.953|130.863 +638302.531|220944.674|130.903 +638307.328|220940.370|130.763 +638312.144|220936.054|130.784 +638316.914|220931.771|130.446 +638326.510|220923.158|129.824 +638331.383|220918.793|130.004 +638336.141|220914.520|129.610 +638341.070|220910.103|129.903 +638355.603|220897.067|129.409 +638360.516|220892.665|129.659 +638365.445|220888.252|130.080 +638370.367|220883.838|129.958 +638375.284|220879.434|130.302 +638380.237|220874.996|130.570 +638390.094|220866.163|131.183 +638395.035|220861.737|131.400 +638399.963|220857.318|131.509 +638404.977|220852.831|132.037 +638409.943|220848.381|132.076 +638414.850|220843.980|132.012 +638419.815|220839.530|132.088 +638424.777|220835.080|132.152 +638429.730|220830.639|132.131 +638434.702|220826.185|132.351 +638439.655|220821.744|132.381 +638444.626|220817.282|132.046 +638449.567|220812.847|131.976 +638454.529|220808.403|132.171 +638459.512|220803.932|132.058 +638464.496|220799.464|131.936 +638469.482|220794.992|131.893 +638474.411|220790.569|131.753 +638479.437|220786.058|131.628 +638484.415|220781.596|131.488 +638489.432|220777.094|131.262 +638494.391|220772.641|130.915 +638499.411|220768.139|130.714 +638504.419|220763.643|130.394 +638509.378|220759.193|130.046 +638514.431|220754.655|129.671 +638519.442|220750.159|129.434 +638524.450|220745.663|129.110 +638529.510|220741.122|128.903 +638534.521|220736.629|128.626 +638539.526|220732.136|128.281 +638544.573|220727.604|127.855 +638549.590|220723.102|127.788 +638554.695|220718.524|127.501 +638559.758|220713.985|127.413 +638564.778|220709.486|127.404 +638569.887|220704.908|127.273 +638574.913|220700.406|127.401 +638580.027|220695.822|127.489 +638585.090|220691.287|127.449 +638590.159|220686.745|127.574 +638595.228|220682.207|127.736 +638600.294|220677.668|127.867 +638605.408|220673.090|128.031 +638610.471|220668.552|128.160 +638615.531|220664.019|128.214 +638620.639|220659.444|128.217 +638625.693|220654.912|128.153 +638630.749|220650.383|128.178 +638635.861|220645.804|128.419 +638640.966|220641.232|128.516 +638646.023|220636.703|128.522 +638651.125|220632.131|128.550 +638656.225|220627.559|128.467 +638661.324|220622.987|128.428 +638666.423|220618.415|128.370 +638671.480|220613.889|128.455 +638676.579|220609.317|128.434 +638681.727|220604.705|128.400 +638686.778|220600.176|128.306 +638691.877|220595.607|128.211 +638697.022|220590.992|128.074 +638702.076|220586.463|128.022 +638707.224|220581.848|127.940 +638712.323|220577.279|127.903 +638717.422|220572.707|127.903 +638722.525|220568.135|127.910 +638727.624|220563.566|128.016 +638732.726|220558.997|128.035 +638737.826|220554.422|127.897 +638742.928|220549.850|127.885 +638748.027|220545.275|127.669 +638753.130|220540.703|127.507 +638758.284|220536.082|127.327 +638763.338|220531.550|127.108 +638768.492|220526.926|126.867 +638773.548|220522.391|126.693 +638778.660|220517.806|126.294 +638783.768|220513.222|125.965 +638788.880|220508.638|125.593 +638793.991|220504.054|125.340 +638799.106|220499.467|125.023 +638804.175|220494.919|124.663 +638809.280|220490.338|124.365 +638814.398|220485.748|124.026 +638819.518|220481.154|123.712 +638824.639|220476.558|123.341 +638829.763|220471.961|123.002 +638834.835|220467.414|122.816 +638839.964|220462.811|122.414 +638845.091|220458.212|122.100 +638850.224|220453.606|121.719 +638855.357|220449.001|121.311 +638860.444|220444.435|120.902 +638865.583|220439.823|120.515 +638870.725|220435.212|120.104 +638875.809|220430.649|119.927 +638880.957|220426.031|119.488 +638886.038|220421.477|119.473 +638891.125|220416.917|119.415 +638896.264|220412.309|119.284 +638901.354|220407.743|119.165 +638906.454|220403.171|118.912 +638911.599|220398.559|118.790 +638916.652|220394.024|118.516 +638921.758|220389.443|118.257 +638926.909|220384.825|118.104 +638931.975|220380.283|117.793 +638937.086|220375.699|117.534 +638942.152|220371.158|117.229 +638947.273|220366.564|116.879 +638952.399|220361.971|116.504 +638957.477|220357.417|116.160 +638962.549|220352.873|115.949 +638967.670|220348.282|115.742 +638972.763|220343.713|115.282 +638977.905|220339.105|114.852 +638982.995|220334.539|114.504 +638988.082|220329.979|114.261 +638993.224|220325.371|113.956 +638998.275|220320.841|113.590 +639003.417|220316.236|113.386 +639008.513|220311.664|113.121 +639013.618|220307.089|112.810 +639018.712|220302.526|112.679 +639023.768|220297.990|112.426 +639028.941|220293.354|111.993 +639034.004|220288.816|111.731 +639039.133|220284.216|111.286 +639044.214|220279.657|110.853 +639049.329|220275.072|110.667 +639054.465|220270.467|110.280 +639059.506|220265.947|109.875 +639064.624|220261.362|109.765 +639069.696|220256.815|109.612 +639074.771|220252.267|109.487 +639079.827|220247.741|109.600 +639084.808|220243.288|110.015 +639089.867|220238.761|110.612 +639094.872|220234.281|110.795 +639099.950|220229.733|110.771 +639104.976|220225.228|110.755 +639110.042|220220.693|110.899 +639115.117|220216.148|110.954 +639120.104|220211.683|110.947 +639125.194|220207.120|110.899 +639130.247|220202.594|110.774 +639135.304|220198.061|110.643 +639140.361|220193.532|110.551 +639145.426|220188.991|110.384 +639150.492|220184.452|110.243 +639155.564|220179.904|110.082 +639160.587|220175.406|109.969 +639165.665|220170.855|109.807 +639170.746|220166.301|109.655 +639175.760|220161.802|109.262 +639180.878|220157.215|108.878 +639185.934|220152.680|108.600 +639191.000|220148.138|108.283 +639196.033|220143.624|107.860 +639201.162|220139.025|107.500 +639206.204|220134.501|107.070 +639211.300|220129.932|106.659 +639216.283|220125.464|106.369 +639221.352|220120.919|106.214 +639226.336|220116.451|105.970 +639231.374|220111.934|105.729 +639236.364|220107.463|105.507 +639241.405|220102.945|105.303 +639246.373|220098.486|104.909 +639251.421|220093.963|104.717 +639256.350|220089.546|104.687 +639261.339|220085.075|104.598 +639266.286|220080.643|104.498 +639271.300|220076.147|104.278 +639276.283|220071.679|103.958 +639281.313|220067.165|103.361 +639286.278|220062.712|102.888 +639296.336|220053.687|101.864 +639301.256|220049.273|101.453 +639306.273|220044.774|101.087 +639311.247|220040.312|100.712 +639316.191|220035.877|100.240 +639321.199|220031.384|99.706 +639326.204|220026.888|98.908 +639346.260|220008.875|95.512 +639370.378|219987.280|96.244 +639375.203|219982.958|96.201 +639380.059|219978.605|96.015 +639384.917|219974.249|95.826 +639389.718|219969.949|95.698 +639413.962|219948.198|93.498 +639418.958|219943.705|92.160 +639447.082|219918.520|93.062 +639456.732|219909.854|91.541 +639465.827|219901.725|92.986 +639470.548|219897.491|92.836 +639479.805|219889.201|93.010 +639484.465|219885.025|92.970 +639502.662|219868.737|94.153 +639520.721|219852.576|95.485 +639525.245|219848.522|95.506 +639529.753|219844.484|95.613 +639528.259|219842.868|95.265 +639523.672|219846.974|95.256 +639519.091|219851.070|95.244 +639514.552|219855.127|95.040 +639500.937|219867.292|94.004 +639482.697|219883.590|92.681 +639478.031|219887.765|92.733 +639468.802|219896.019|92.620 +639464.099|219900.232|92.925 +639459.484|219904.353|92.513 +639450.093|219912.759|92.876 +639436.048|219925.326|92.937 +639431.479|219929.404|92.400 +639426.623|219933.757|93.144 +639417.348|219942.038|92.339 +639402.794|219955.084|94.561 +639397.932|219959.439|95.217 +639393.123|219963.746|95.622 +639388.319|219968.044|95.726 +639383.552|219972.308|95.933 +639378.751|219976.602|96.061 +639373.948|219980.897|96.226 +639369.129|219985.207|96.213 +639364.328|219989.505|96.421 +639354.721|219998.091|96.018 +639345.120|220006.674|95.951 +639340.185|220011.097|96.475 +639320.208|220029.004|99.719 +639315.252|220033.442|100.221 +639310.311|220037.867|100.663 +639305.334|220042.324|101.029 +639300.393|220046.749|101.520 +639290.387|220055.710|102.422 +639285.409|220060.170|102.910 +639280.377|220064.678|103.468 +639275.409|220069.128|103.961 +639270.361|220073.648|104.342 +639265.384|220078.101|104.601 +639260.376|220082.582|104.763 +639255.423|220087.013|104.909 +639250.388|220091.515|104.952 +639245.392|220095.987|105.114 +639240.381|220100.473|105.400 +639235.327|220104.997|105.671 +639230.283|220109.514|105.909 +639225.257|220114.007|106.019 +639220.185|220118.545|106.129 +639215.110|220123.087|106.293 +639210.078|220127.592|106.540 +639204.939|220132.194|106.897 +639199.830|220136.769|107.415 +639194.746|220141.323|107.777 +639189.613|220145.916|108.152 +639184.490|220150.506|108.512 +639179.372|220155.088|108.841 +639174.258|220159.666|109.189 +639169.100|220164.283|109.494 +639164.004|220168.843|109.737 +639158.871|220173.437|109.896 +639153.741|220178.030|110.073 +639148.618|220182.614|110.228 +639143.494|220187.198|110.387 +639138.373|220191.780|110.560 +639133.213|220196.397|110.679 +639128.053|220201.015|110.832 +639122.947|220205.584|110.954 +639117.751|220210.235|111.042 +639112.666|220214.780|110.999 +639107.482|220219.419|111.021 +639102.370|220223.988|110.832 +639097.244|220228.572|110.813 +639092.077|220233.193|110.728 +639086.905|220237.823|110.746 +639081.778|220242.401|110.268 +639076.654|220246.979|109.798 +639071.543|220251.548|109.731 +639066.325|220256.217|109.786 +639061.161|220260.835|109.811 +639055.992|220265.462|109.929 +639050.749|220270.156|110.362 +639045.519|220274.841|110.682 +639040.301|220279.510|110.914 +639035.070|220284.198|111.338 +639029.895|220288.831|111.700 +639024.668|220293.513|112.148 +639019.410|220298.222|112.432 +639014.256|220302.834|112.615 +639009.010|220307.531|112.819 +639003.801|220312.191|113.160 +638998.604|220316.845|113.419 +638993.404|220321.503|113.755 +638988.162|220326.197|114.056 +638983.020|220330.799|114.300 +638977.777|220335.493|114.657 +638972.583|220340.144|115.074 +638967.392|220344.792|115.471 +638962.165|220349.474|115.748 +638956.990|220354.107|115.998 +638951.808|220358.746|116.376 +638946.584|220363.428|116.742 +638941.359|220368.107|117.135 +638936.190|220372.737|117.461 +638930.975|220377.403|117.729 +638925.812|220382.027|118.025 +638920.654|220386.645|118.287 +638915.448|220391.302|118.497 +638910.248|220395.959|118.738 +638905.100|220400.565|118.866 +638899.900|220405.222|119.134 +638894.707|220409.870|119.296 +638889.565|220414.473|119.457 +638884.374|220419.118|119.595 +638879.244|220423.708|119.552 +638874.050|220428.357|119.842 +638868.863|220433.002|120.143 +638863.721|220437.607|120.500 +638858.582|220442.210|120.832 +638853.391|220446.858|121.301 +638848.206|220451.503|121.707 +638843.073|220456.103|122.091 +638837.941|220460.699|122.499 +638832.762|220465.335|122.792 +638827.638|220469.922|123.021 +638822.515|220474.510|123.298 +638817.391|220479.097|123.581 +638812.267|220483.687|124.011 +638807.098|220488.314|124.319 +638802.038|220492.849|124.694 +638796.920|220497.431|124.929 +638791.803|220502.012|125.316 +638786.688|220506.590|125.557 +638781.577|220511.171|125.883 +638776.465|220515.749|126.200 +638771.400|220520.284|126.599 +638766.291|220524.860|126.885 +638761.234|220529.386|127.050 +638756.175|220533.915|127.199 +638751.069|220538.484|127.401 +638746.013|220543.010|127.565 +638740.907|220547.579|127.745 +638735.854|220552.106|127.876 +638730.800|220556.629|127.977 +638725.695|220561.192|127.916 +638720.641|220565.715|127.803 +638715.588|220570.235|127.772 +638710.531|220574.758|127.724 +638705.477|220579.282|127.775 +638700.424|220583.802|127.830 +638695.370|220588.325|127.967 +638690.365|220592.806|128.099 +638680.258|220601.849|128.281 +638675.253|220606.330|128.306 +638670.200|220610.850|128.385 +638665.195|220615.334|128.416 +638660.138|220619.857|128.303 +638655.133|220624.340|128.406 +638650.129|220628.821|128.473 +638645.124|220633.301|128.571 +638640.113|220637.785|128.477 +638635.053|220642.314|128.412 +638630.045|220646.798|128.385 +638625.080|220651.242|128.220 +638620.020|220655.768|128.227 +638615.061|220660.209|128.327 +638610.047|220664.696|128.272 +638605.030|220669.186|128.111 +638600.013|220673.675|128.001 +638594.993|220678.168|127.858 +638590.025|220682.615|127.757 +638585.002|220687.108|127.632 +638579.982|220691.604|127.501 +638575.020|220696.048|127.660 +638569.996|220700.541|127.605 +638565.031|220704.991|127.693 +638560.002|220709.489|127.544 +638555.034|220713.936|127.614 +638550.023|220718.426|127.849 +638545.055|220722.876|127.949 +638540.099|220727.317|128.330 +638535.136|220731.764|128.562 +638530.129|220736.254|128.876 +638525.206|220740.658|129.040 +638520.198|220745.148|129.330 +638515.279|220749.555|129.534 +638510.323|220753.996|129.952 +638505.406|220758.401|130.217 +638500.447|220762.848|130.583 +638495.482|220767.295|130.851 +638490.562|220771.705|131.073 +638485.594|220776.155|131.342 +638480.665|220780.569|131.494 +638475.737|220784.982|131.634 +638470.805|220789.402|131.741 +638465.870|220793.822|131.838 +638460.988|220798.196|131.982 +638455.998|220802.661|132.058 +638451.091|220807.053|131.906 +638446.141|220811.485|131.890 +638441.212|220815.901|132.174 +638436.311|220820.291|132.165 +638431.404|220824.683|132.137 +638426.490|220829.081|132.052 +638421.546|220833.510|132.177 +638416.673|220837.871|132.034 +638411.720|220842.306|132.122 +638406.834|220846.677|131.872 +638401.935|220851.066|132.079 +638397.001|220855.474|131.363 +638392.087|220859.875|131.415 +638387.177|220864.264|131.025 +638382.270|220868.653|130.699 +638377.359|220873.045|130.357 +638372.470|220877.422|130.281 +638367.600|220881.778|129.918 +638352.887|220894.936|128.964 +638348.089|220899.234|128.928 +638314.497|220929.333|130.552 +638309.685|220933.640|130.552 +638304.936|220937.895|130.671 +638295.353|220946.478|130.699 +638290.592|220950.742|130.802 +638285.816|220955.022|130.787 +638281.076|220959.264|130.686 +638276.300|220963.544|130.717 +638271.545|220967.799|130.558 +638262.038|220976.315|130.692 +638257.335|220980.527|130.592 +638252.589|220984.776|130.583 +638247.880|220988.995|130.479 +638243.122|220993.256|130.415 +638238.443|220997.450|130.583 +638233.811|221001.601|130.741 +638224.478|221009.962|131.003 +638219.832|221014.125|131.119 +638215.138|221018.332|131.262 +638205.940|221026.577|131.543 +638201.267|221030.758|131.561 +638196.658|221034.888|131.674 +638192.077|221038.991|131.665 +638187.475|221043.118|131.860 +638182.915|221047.205|132.006 +638178.322|221051.317|131.970 +638173.753|221055.414|132.098 +638169.217|221059.480|132.488 +638164.697|221063.534|132.631 +638160.110|221067.639|132.710 +638155.544|221071.730|132.610 +638150.893|221075.887|131.997 +638146.385|221079.926|131.988 +638137.311|221088.052|131.985 +638128.218|221096.190|131.314 +638123.659|221100.268|131.098 +638119.120|221104.331|130.714 +638114.557|221108.409|130.226 +638110.046|221112.448|130.055 +638105.621|221116.414|130.110 +638101.155|221120.416|130.247 +638096.662|221124.436|129.955 +638092.127|221128.490|129.431 +638087.659|221132.489|129.016 +638083.190|221136.488|128.638 +638078.618|221140.575|127.977 +638074.257|221144.486|128.239 +638069.834|221148.439|127.907 +638065.411|221152.398|127.571 +638060.824|221156.492|126.376 +638056.395|221160.454|126.069 +638051.927|221164.447|125.279 +638047.812|221168.153|126.703 +638043.880|221171.701|128.845 +638039.592|221175.545|128.790 +638035.004|221179.635|127.449 +638030.420|221183.720|125.889 +638012.644|221199.597|122.353 +638004.064|221207.278|122.045 +637999.779|221211.115|121.942 +637995.478|221214.965|121.509 +637986.843|221222.682|120.302 +637982.512|221226.550|119.540 +637978.598|221230.077|120.841 +637970.188|221237.602|120.384 +637962.011|221244.933|120.860 +637957.905|221248.612|121.036 +637941.808|221263.044|122.423 +637933.911|221270.128|123.155 +637929.869|221273.745|123.237 +637925.925|221277.281|123.523 +637921.999|221280.799|123.676 +637918.068|221284.325|124.051 +637914.160|221287.827|124.319 +637893.668|221306.131|120.878 +637889.721|221309.663|120.591 +637885.917|221313.071|120.716 +637882.049|221316.533|120.808 +637844.080|221350.531|120.668 +637840.401|221353.826|120.792 +637833.104|221360.367|121.094 +637803.816|221386.567|119.387 +637800.210|221389.792|119.083 +637796.708|221392.926|118.988 +637793.142|221396.120|118.851 +637789.646|221399.247|118.802 +637786.193|221402.344|118.921 +637765.664|221420.717|118.549 +637762.290|221423.738|118.424 +637758.876|221426.792|118.372 +637755.578|221429.742|118.147 +637752.311|221432.672|118.464 +637723.449|221458.516|118.616 +637720.316|221461.320|118.497 +637717.180|221464.127|118.378 +637714.034|221466.940|118.040 +637710.913|221469.732|118.004 +638002.982|221206.464|121.762 +638011.586|221198.755|122.490 +638015.933|221194.860|122.999 +638020.301|221190.949|123.347 +638029.469|221182.763|126.410 +638034.066|221178.663|128.056 +638038.604|221174.609|129.437 +638042.902|221170.753|129.278 +638046.885|221167.154|127.455 +638050.924|221163.505|125.636 +638055.307|221159.579|125.977 +638059.663|221155.669|125.913 +638064.326|221151.508|127.553 +638068.746|221147.546|127.894 +638073.211|221143.544|128.211 +638077.585|221139.618|128.044 +638082.072|221135.601|128.513 +638086.567|221131.574|129.086 +638091.072|221127.536|129.440 +638095.590|221123.491|129.869 +638100.021|221119.516|130.129 +638104.505|221115.493|130.132 +638108.940|221111.509|129.863 +638113.484|221107.440|130.244 +638118.047|221103.353|130.766 +638122.583|221099.287|131.168 +638127.124|221095.215|131.308 +638131.669|221091.142|131.473 +638136.223|221087.058|131.738 +638145.342|221078.880|132.085 +638149.893|221074.799|132.067 +638163.652|221062.458|132.530 +638168.190|221058.383|132.186 +638172.762|221054.280|132.076 +638177.349|221050.162|132.101 +638181.897|221046.078|131.878 +638186.521|221041.926|131.845 +638191.117|221037.796|131.643 +638195.732|221033.654|131.579 +638200.350|221029.509|131.558 +638205.004|221025.327|131.467 +638209.667|221021.139|131.473 +638214.270|221017.000|131.046 +638218.945|221012.803|131.165 +638223.563|221008.654|130.884 +638228.242|221004.451|130.699 +638242.296|220991.826|130.375 +638246.987|220987.614|130.363 +638251.745|220983.344|130.485 +638256.488|220979.086|130.546 +638261.230|220974.828|130.598 +638265.970|220970.573|130.650 +638270.701|220966.324|130.662 +638275.468|220962.044|130.595 +638280.256|220957.743|130.711 +638285.026|220953.461|130.705 +638289.799|220949.179|130.726 +638294.609|220944.856|130.680 +638299.379|220940.574|130.732 +638308.965|220931.963|130.458 +638318.490|220923.399|129.714 +638323.337|220919.046|129.668 +638347.434|220897.393|128.477 +638352.390|220892.952|129.123 +638367.085|220879.769|130.098 +638372.004|220875.353|130.031 +638376.908|220870.951|130.336 +638391.700|220857.684|131.198 +638396.595|220853.291|131.521 +638401.588|220848.814|131.878 +638406.440|220844.455|131.802 +638411.415|220839.990|132.003 +638416.340|220835.570|132.235 +638421.284|220831.129|132.143 +638426.228|220826.688|132.067 +638431.175|220822.244|132.067 +638436.134|220817.794|132.216 +638441.075|220813.356|132.177 +638446.046|220808.891|131.921 +638450.993|220804.447|131.988 +638456.035|220799.921|132.067 +638460.966|220795.492|131.970 +638465.944|220791.021|131.869 +638470.921|220786.552|131.753 +638475.892|220782.084|131.625 +638480.912|220777.573|131.497 +638485.881|220773.110|131.326 +638490.888|220768.609|131.040 +638495.851|220764.149|130.823 +638500.859|220759.650|130.558 +638505.857|220755.155|130.150 +638510.816|220750.699|129.921 +638515.864|220746.163|129.519 +638520.872|220741.661|129.309 +638525.880|220737.162|129.086 +638530.930|220732.621|128.815 +638535.938|220728.122|128.608 +638540.986|220723.583|128.251 +638545.993|220719.085|128.120 +638551.047|220714.540|127.897 +638556.107|220709.992|127.815 +638561.166|220705.445|127.742 +638566.229|220700.894|127.797 +638571.286|220696.350|127.724 +638576.342|220691.805|127.626 +638581.454|220687.215|127.708 +638586.514|220682.667|127.775 +638591.576|220678.119|127.910 +638596.685|220673.529|128.053 +638601.790|220668.942|128.105 +638606.899|220664.355|128.284 +638612.001|220659.770|128.361 +638617.049|220655.232|128.224 +638622.151|220650.648|128.260 +638627.253|220646.064|128.376 +638632.356|220641.479|128.522 +638642.594|220632.274|128.361 +638647.647|220627.736|128.449 +638657.883|220618.534|128.272 +638662.979|220613.953|128.318 +638668.124|220609.332|128.345 +638673.217|220604.754|128.257 +638683.455|220595.552|128.096 +638688.594|220590.928|127.913 +638693.691|220586.347|127.821 +638698.784|220581.769|127.654 +638703.929|220577.145|127.650 +638714.167|220567.943|127.638 +638719.263|220563.362|127.681 +638724.408|220558.741|127.806 +638729.550|220554.120|127.830 +638734.647|220549.539|127.852 +638739.792|220544.915|127.696 +638744.934|220540.289|127.529 +638750.033|220535.704|127.343 +638755.178|220531.077|127.145 +638760.277|220526.490|126.977 +638765.425|220521.863|126.858 +638770.528|220517.273|126.453 +638775.679|220512.637|126.133 +638780.833|220508.001|125.800 +638785.939|220503.408|125.502 +638791.096|220498.769|125.145 +638796.201|220494.175|124.919 +638801.358|220489.536|124.636 +638806.461|220484.946|124.267 +638811.575|220480.343|123.908 +638816.739|220475.698|123.566 +638821.853|220471.102|123.353 +638826.971|220466.496|123.063 +638832.088|220461.894|122.813 +638837.258|220457.243|122.475 +638842.333|220452.677|122.134 +638847.459|220448.062|121.710 +638852.589|220443.447|121.311 +638857.673|220438.869|120.814 +638862.849|220434.215|120.607 +638867.985|220429.594|120.210 +638873.069|220425.019|119.939 +638878.199|220420.407|119.793 +638883.283|220415.838|119.653 +638888.364|220411.266|119.552 +638893.500|220406.649|119.400 +638898.587|220402.074|119.204 +638903.729|220397.447|118.979 +638908.825|220392.866|118.741 +638913.921|220388.281|118.534 +638919.018|220383.697|118.354 +638924.123|220379.107|118.055 +638929.228|220374.514|117.775 +638934.337|220369.914|117.482 +638939.396|220365.360|117.202 +638944.514|220360.752|116.830 +638949.589|220356.183|116.382 +638954.661|220351.617|116.056 +638959.785|220347.005|115.733 +638964.860|220342.439|115.422 +638969.931|220337.874|115.175 +638975.067|220333.247|114.760 +638980.106|220328.714|114.413 +638985.196|220324.133|114.056 +638990.277|220319.558|113.834 +638995.367|220314.980|113.557 +639000.411|220310.435|113.236 +639005.453|220305.900|113.008 +639010.549|220301.313|112.731 +639015.594|220296.774|112.538 +639020.647|220292.227|112.273 +639025.707|220287.673|111.965 +639030.776|220283.107|111.545 +639035.896|220278.495|111.158 +639040.910|220273.984|110.908 +639045.967|220269.434|110.743 +639051.018|220264.883|110.140 +639056.080|220260.329|109.999 +639061.134|220255.782|109.981 +639066.139|220251.283|109.987 +639071.144|220246.781|110.024 +639076.121|220242.309|110.384 +639081.141|220237.801|110.838 +639086.146|220233.299|110.929 +639091.160|220228.791|110.944 +639096.174|220224.280|110.987 +639101.179|220219.782|111.158 +639106.150|220215.313|111.191 +639111.176|220210.790|111.182 +639116.202|220206.270|111.210 +639121.192|220201.780|111.130 +639126.242|220197.239|110.981 +639131.244|220192.737|110.838 +639136.304|220188.186|110.673 +639141.263|220183.721|110.509 +639146.329|220179.164|110.335 +639151.297|220174.692|110.164 +639156.320|220170.172|109.996 +639161.349|220165.646|109.783 +639166.378|220161.120|109.609 +639171.377|220156.618|109.277 +639176.434|220152.067|108.933 +639181.448|220147.550|108.549 +639186.507|220142.996|108.259 +639191.531|220138.473|107.863 +639196.560|220133.944|107.464 +639201.589|220129.414|107.083 +639206.618|220124.885|106.741 +639211.684|220120.328|106.549 +639216.652|220115.857|106.348 +639221.657|220111.352|106.284 +639226.671|220106.844|106.189 +639231.642|220102.369|106.055 +639236.681|220097.834|105.818 +639241.673|220093.341|105.583 +639246.660|220088.854|105.421 +639251.637|220084.374|105.333 +639256.673|220079.842|105.239 +639261.616|220075.394|105.095 +639266.630|220070.880|104.854 +639271.617|220066.391|104.470 +639276.686|220061.825|103.910 +639281.694|220057.311|103.434 +639286.766|220052.742|102.916 +639291.773|220048.234|102.520 +639296.742|220043.756|102.066 +639301.789|220039.209|101.474 +639306.828|220034.670|100.968 +639311.860|220030.138|100.523 +639316.840|220025.654|100.130 +639321.833|220021.158|99.688 +639326.877|220016.611|98.947 +639336.963|220007.518|97.576 +639341.965|220003.010|96.887 +639346.970|219998.509|96.536 +639351.865|219994.104|96.555 +639356.745|219989.718|96.689 +639361.649|219985.305|96.692 +639366.529|219980.915|96.573 +639391.029|219958.869|95.735 +639405.903|219945.464|93.970 +639410.880|219940.977|93.245 +639415.934|219936.418|92.141 +639425.474|219927.844|92.534 +639444.640|219910.601|92.547 +639468.332|219889.289|92.406 +639473.069|219885.028|92.443 +639491.686|219868.289|93.138 +639496.261|219864.180|93.555 +639500.787|219860.114|93.973 +639514.516|219847.772|94.827 +639519.106|219843.645|95.000 +639523.690|219839.521|94.967 +639524.016|219836.248|94.891 +639519.338|219840.448|94.845 +639509.931|219848.882|94.522 +639491.339|219865.542|93.040 +639477.269|219878.161|92.477 +639472.468|219882.468|92.446 +639467.717|219886.732|92.443 +639453.321|219899.653|92.769 +639414.959|219934.068|92.092 +639395.025|219952.005|95.354 +639390.126|219956.406|95.692 +639385.204|219960.832|96.207 +639380.294|219965.243|96.390 +639375.432|219969.607|96.600 +639370.558|219973.981|96.604 +639360.844|219982.702|96.799 +639351.085|219991.462|96.756 +639346.217|219995.832|96.841 +639341.276|220000.270|97.091 +639336.341|220004.708|97.658 +639331.340|220009.207|98.344 +639326.387|220013.657|98.758 +639321.370|220018.171|99.615 +639316.407|220022.633|100.154 +639311.461|220027.081|100.621 +639306.526|220031.515|101.047 +639296.537|220040.492|102.093 +639291.615|220044.917|102.538 +639286.644|220049.386|102.995 +639281.639|220053.885|103.382 +639276.655|220058.365|103.983 +639271.638|220062.876|104.492 +639266.682|220067.332|104.982 +639261.711|220071.798|105.254 +639256.764|220076.242|105.382 +639251.814|220080.686|105.552 +639246.876|220085.118|105.662 +639241.951|220089.540|105.714 +639236.952|220094.030|105.946 +639232.008|220098.471|106.183 +639226.973|220102.994|106.382 +639222.047|220107.417|106.537 +639217.064|220111.888|106.400 +639212.089|220116.357|106.604 +639207.063|220120.871|106.839 +639202.086|220125.342|107.119 +639197.063|220129.856|107.396 +639192.076|220134.340|107.823 +639187.047|220138.857|108.210 +639182.030|220143.365|108.527 +639176.970|220147.913|108.847 +639171.950|220152.424|109.244 +639166.900|220156.962|109.530 +639161.910|220161.446|109.771 +639156.826|220166.012|109.972 +639151.843|220170.486|110.195 +639146.777|220175.037|110.313 +639141.754|220179.548|110.502 +639136.688|220184.099|110.667 +639131.622|220188.649|110.868 +639126.565|220193.191|111.021 +639121.509|220197.732|111.185 +639116.409|220202.310|111.313 +639111.322|220206.876|111.365 +639106.293|220211.393|111.356 +639101.172|220215.987|111.298 +639096.155|220220.492|111.222 +639091.053|220225.070|111.030 +639085.984|220229.621|111.018 +639080.870|220234.211|111.011 +639075.770|220238.786|110.841 +639070.747|220243.288|110.405 +639065.669|220247.842|110.051 +639060.561|220252.432|110.076 +639055.407|220257.059|110.085 +639050.298|220261.646|110.140 +639045.165|220266.258|110.527 +639039.987|220270.909|110.911 +639034.820|220275.551|111.188 +639029.703|220280.147|111.484 +639024.485|220284.838|111.898 +639019.367|220289.435|112.279 +639014.170|220294.104|112.487 +639009.019|220298.731|112.755 +639003.871|220303.352|112.993 +638998.683|220308.012|113.194 +638993.480|220312.688|113.608 +638988.341|220317.303|113.880 +638983.157|220321.960|114.102 +638977.969|220326.620|114.440 +638972.781|220331.284|114.840 +638967.554|220335.978|115.126 +638962.378|220340.629|115.413 +638957.200|220345.280|115.736 +638951.979|220349.971|116.068 +638946.806|220354.619|116.431 +638941.579|220359.316|116.922 +638936.364|220364.004|117.278 +638931.207|220368.637|117.507 +638925.994|220373.319|117.894 +638920.791|220377.991|118.122 +638915.589|220382.664|118.418 +638910.443|220387.288|118.628 +638905.201|220391.997|118.799 +638900.053|220396.621|119.083 +638894.865|220401.281|119.284 +638889.626|220405.984|119.509 +638884.441|220410.642|119.692 +638879.308|220415.250|119.796 +638874.084|220419.941|119.854 +638868.899|220424.598|120.091 +638863.718|220429.256|120.421 +638858.536|220433.910|120.704 +638853.357|220438.561|121.012 +638848.173|220443.225|121.542 +638842.948|220447.919|121.899 +638837.770|220452.573|122.353 +638832.600|220457.215|122.612 +638827.428|220461.863|122.972 +638822.213|220466.548|123.280 +638817.098|220471.145|123.444 +638811.886|220475.826|123.722 +638806.720|220480.468|124.112 +638801.560|220485.104|124.410 +638796.408|220489.734|124.758 +638791.202|220494.410|124.999 +638786.091|220499.000|125.291 +638780.888|220503.679|125.654 +638775.734|220508.309|125.947 +638770.580|220512.939|126.248 +638765.425|220517.569|126.590 +638760.277|220522.196|126.895 +638755.126|220526.819|127.026 +638750.027|220531.401|127.215 +638744.879|220536.024|127.358 +638739.734|220540.645|127.538 +638734.634|220545.223|127.690 +638729.489|220549.844|127.739 +638724.344|220554.462|127.635 +638719.248|220559.037|127.617 +638714.103|220563.655|127.513 +638709.007|220568.230|127.468 +638703.908|220572.805|127.501 +638698.811|220577.380|127.541 +638693.715|220581.955|127.574 +638688.619|220586.533|127.721 +638683.526|220591.108|127.824 +638678.478|220595.640|128.071 +638673.385|220600.215|128.144 +638668.337|220604.748|128.208 +638663.290|220609.280|128.272 +638658.194|220613.852|128.245 +638653.143|220618.382|128.236 +638648.092|220622.911|128.150 +638643.048|220627.440|128.373 +638638.001|220631.970|128.388 +638632.950|220636.499|128.446 +638627.951|220640.986|128.516 +638622.943|220645.475|128.373 +638617.890|220650.008|128.355 +638612.885|220654.497|128.272 +638607.834|220659.030|128.339 +638602.827|220663.522|128.324 +638597.813|220668.018|128.099 +638592.808|220672.508|128.105 +638587.843|220676.961|127.989 +638582.832|220681.457|127.922 +638577.818|220685.953|127.864 +638572.852|220690.406|127.797 +638567.848|220694.899|127.894 +638562.888|220699.349|128.050 +638557.923|220703.805|128.038 +638552.964|220708.255|128.163 +638548.005|220712.708|128.284 +638543.040|220717.161|128.327 +638538.130|220721.569|128.571 +638533.173|220726.019|128.778 +638528.263|220730.429|128.976 +638523.301|220734.882|129.153 +638518.397|220739.287|129.464 +638513.480|220743.697|129.629 +638508.579|220748.102|130.010 +638503.663|220752.515|130.199 +638498.713|220756.962|130.592 +638493.851|220761.327|130.887 +638488.941|220765.737|131.134 +638484.073|220770.105|131.366 +638479.154|220774.522|131.540 +638474.228|220778.944|131.616 +638469.351|220783.318|131.759 +638464.471|220787.698|131.848 +638459.595|220792.078|131.988 +638454.709|220796.461|132.034 +638449.807|220800.856|131.909 +638444.915|220805.246|131.921 +638440.042|220809.623|132.152 +638435.156|220814.006|132.305 +638430.297|220818.367|132.155 +638425.393|220822.766|132.107 +638420.580|220827.082|132.003 +638415.691|220831.468|132.174 +638410.866|220835.796|131.966 +638405.956|220840.200|131.918 +638396.245|220848.908|131.485 +638391.365|220853.285|131.305 +638376.774|220866.364|130.458 +638371.934|220870.705|130.293 +638367.078|220875.057|130.004 +638362.247|220879.391|129.976 +638357.410|220883.726|129.446 +638342.981|220896.677|129.738 +638328.561|220909.609|129.385 +638323.724|220913.953|129.458 +638319.002|220918.193|129.735 +638314.217|220922.487|129.891 +638304.774|220930.967|130.516 +638300.035|220935.222|130.674 +638295.261|220939.504|130.574 +638285.782|220948.005|130.619 +638281.012|220952.281|130.616 +638276.288|220956.521|130.586 +638271.542|220960.776|130.418 +638266.811|220965.016|130.406 +638262.087|220969.253|130.464 +638252.729|220977.650|130.546 +638243.259|220986.139|130.247 +638238.639|220990.284|130.421 +638233.984|220994.460|130.366 +638229.318|220998.648|130.595 +638224.676|221002.814|130.671 +638220.030|221006.978|130.759 +638210.780|221015.281|131.232 +638206.180|221019.408|131.323 +638201.511|221023.599|131.278 +638192.333|221031.834|131.707 +638183.177|221040.049|131.991 +638173.972|221048.309|132.015 +638169.479|221052.341|132.293 +638164.880|221056.462|132.219 +638160.329|221060.544|132.143 +638146.695|221072.775|132.158 +638142.181|221076.826|132.399 +638137.637|221080.898|132.152 +638133.074|221084.986|131.799 +638128.529|221089.058|131.601 +638124.027|221093.093|131.360 +638119.492|221097.159|131.256 +638114.972|221101.210|130.961 +638110.500|221105.215|130.671 +638105.938|221109.303|130.162 +638101.490|221113.289|130.046 +638097.074|221117.252|130.159 +638092.596|221121.263|129.918 +638088.158|221125.241|129.626 +638083.641|221129.285|129.208 +638079.182|221133.281|128.839 +638074.689|221137.305|128.321 +638070.334|221141.212|128.300 +638065.884|221145.196|128.062 +638061.485|221149.140|127.839 +638056.849|221153.279|126.334 +638052.405|221157.260|125.904 +638044.264|221164.596|128.611 +638040.174|221168.281|129.839 +638035.952|221172.070|130.125 +638031.584|221175.984|129.635 +638027.012|221180.065|128.379 +638022.468|221184.125|127.010 +638017.890|221188.206|125.255 +638013.251|221192.345|123.466 +638008.639|221196.457|121.603 +638004.427|221200.234|121.820 +637987.364|221215.519|120.442 +637979.153|221222.893|121.070 +637974.953|221226.657|120.933 +637954.467|221245.042|121.487 +637950.440|221248.657|121.783 +637946.448|221252.248|122.243 +637934.509|221262.980|123.380 +637930.552|221266.534|123.563 +637926.511|221270.161|123.609 +637918.680|221277.196|124.188 +637890.392|221302.543|121.167 +637886.420|221306.100|120.762 +637882.616|221309.514|120.856 +637878.739|221312.995|120.878 +637875.048|221316.314|121.497 +637871.317|221319.670|121.939 +637840.895|221346.956|120.820 +637837.234|221350.244|120.997 +637833.546|221353.554|121.076 +637800.549|221383.141|119.201 +637796.967|221386.357|119.180 +637793.468|221389.497|119.067 +637789.893|221392.700|118.894 +637786.467|221395.775|119.098 +637758.977|221420.440|118.668 +637755.618|221423.451|118.601 +637752.393|221426.350|118.839 +637749.040|221429.358|118.811 +637710.590|221463.853|118.144 +637996.423|221205.339|120.646 +638000.858|221201.361|121.826 +638005.177|221197.475|122.182 +638009.624|221193.482|123.203 +638014.122|221189.447|124.542 +638018.807|221185.256|126.596 +638023.343|221181.193|128.178 +638027.826|221177.169|129.263 +638032.301|221173.149|130.049 +638036.577|221169.293|129.821 +638040.841|221165.447|129.540 +638044.938|221161.737|128.364 +638048.864|221158.171|126.258 +638053.204|221154.261|126.123 +638057.605|221150.298|126.355 +638062.290|221146.101|127.882 +638066.731|221142.099|128.105 +638071.096|221138.167|127.907 +638075.592|221134.125|128.461 +638080.060|221130.105|128.897 +638084.577|221126.039|129.345 +638089.085|221121.985|129.763 +638093.547|221117.965|129.936 +638097.967|221113.984|129.872 +638102.438|221109.955|129.842 +638107.013|221105.843|130.446 +638111.540|221101.768|130.787 +638116.103|221097.662|131.058 +638120.577|221093.630|131.140 +638125.128|221089.536|131.375 +638129.712|221085.409|131.546 +638134.247|221081.325|131.747 +638161.615|221056.673|132.128 +638166.184|221052.555|132.049 +638170.778|221048.419|132.134 +638180.016|221040.094|132.064 +638184.533|221036.022|131.695 +638193.775|221027.698|131.390 +638198.402|221023.529|131.153 +638203.081|221019.319|131.265 +638207.698|221015.156|130.988 +638212.319|221010.995|130.735 +638216.970|221006.807|130.723 +638221.643|221002.595|130.531 +638226.315|220998.389|130.336 +638231.009|220994.161|130.324 +638235.667|220989.964|130.071 +638240.425|220985.681|130.214 +638245.134|220981.439|130.007 +638254.586|220972.935|130.287 +638259.338|220968.658|130.467 +638264.108|220964.364|130.418 +638268.814|220960.127|130.281 +638278.385|220951.510|130.564 +638283.139|220947.231|130.488 +638287.894|220942.948|130.433 +638292.671|220938.648|130.574 +638297.465|220934.332|130.464 +638302.266|220930.007|130.446 +638311.797|220921.420|129.815 +638316.555|220917.129|129.479 +638321.383|220912.779|129.333 +638326.165|220908.472|129.229 +638345.584|220890.992|129.437 +638369.965|220869.050|129.979 +638374.860|220864.645|130.253 +638379.761|220860.235|130.644 +638384.711|220855.785|131.043 +638389.655|220851.341|131.400 +638394.517|220846.961|131.451 +638399.430|220842.541|131.518 +638404.359|220838.106|131.835 +638409.324|220833.638|131.997 +638414.188|220829.261|132.183 +638419.114|220824.820|131.970 +638424.058|220820.370|131.973 +638429.002|220815.920|131.994 +638433.955|220811.470|132.756 +638438.844|220807.059|132.162 +638443.757|220802.630|131.869 +638448.698|220798.183|131.927 +638453.685|220793.694|131.997 +638458.613|220789.256|131.951 +638463.581|220784.781|131.829 +638468.501|220780.350|131.729 +638473.469|220775.872|131.622 +638478.437|220771.401|131.518 +638483.400|220766.929|131.357 +638488.353|220762.464|131.086 +638493.360|220757.953|130.918 +638498.307|220753.494|130.558 +638503.306|220748.989|130.284 +638508.256|220744.526|130.019 +638513.249|220740.027|129.650 +638518.250|220735.519|129.458 +638523.249|220731.014|129.178 +638528.251|220726.506|129.010 +638533.253|220722.002|128.815 +638538.255|220717.497|128.687 +638543.305|220712.946|128.531 +638548.310|220708.441|128.464 +638553.363|220703.893|128.358 +638558.362|220699.388|128.224 +638563.413|220694.841|128.111 +638568.415|220690.339|127.986 +638573.514|220685.749|127.995 +638578.564|220681.201|127.967 +638583.621|220676.650|128.080 +638588.675|220672.103|128.160 +638593.725|220667.558|128.190 +638598.779|220663.010|128.345 +638603.875|220658.423|128.330 +638608.923|220653.882|128.345 +638613.970|220649.337|128.352 +638619.063|220644.753|128.400 +638624.160|220640.169|128.422 +638629.256|220635.581|128.592 +638634.297|220631.043|128.461 +638639.381|220626.462|128.172 +638644.520|220621.835|128.160 +638649.565|220617.296|128.254 +638654.704|220612.670|128.263 +638659.791|220608.088|128.224 +638664.881|220603.507|128.184 +638670.017|220598.883|128.150 +638675.107|220594.302|128.062 +638680.194|220589.718|127.855 +638685.330|220585.094|127.660 +638690.466|220580.467|127.586 +638695.553|220575.886|127.434 +638700.692|220571.262|127.468 +638705.782|220566.678|127.398 +638710.921|220562.054|127.474 +638716.011|220557.473|127.532 +638721.147|220552.849|127.568 +638726.237|220548.268|127.620 +638731.425|220543.599|127.623 +638736.515|220539.014|127.556 +638741.654|220534.388|127.428 +638746.793|220529.758|127.236 +638751.932|220525.128|127.117 +638757.025|220520.544|126.974 +638762.170|220515.908|126.660 +638767.312|220511.272|126.334 +638772.411|220506.678|125.995 +638777.605|220501.999|125.745 +638782.753|220497.357|125.346 +638787.856|220492.764|125.127 +638793.007|220488.122|124.846 +638798.448|220483.221|124.523 +638803.303|220478.844|124.148 +638808.457|220474.199|123.880 +638813.611|220469.557|123.639 +638818.766|220464.911|123.475 +638823.929|220460.263|123.130 +638829.086|220455.612|122.865 +638834.204|220451.003|122.512 +638839.370|220446.346|122.134 +638844.539|220441.686|121.692 +638849.663|220437.068|121.292 +638854.839|220432.404|120.896 +638860.014|220427.738|120.491 +638865.132|220423.129|120.433 +638870.259|220418.509|120.110 +638875.431|220413.851|119.963 +638880.558|220409.233|119.808 +638885.681|220404.619|119.698 +638890.863|220399.949|119.454 +638895.950|220395.368|119.208 +638901.083|220390.741|119.006 +638906.222|220386.111|118.744 +638911.312|220381.527|118.543 +638916.457|220376.891|118.275 +638921.602|220372.255|117.997 +638926.702|220367.659|117.732 +638931.859|220363.010|117.373 +638936.964|220358.408|117.071 +638942.076|220353.799|116.684 +638947.242|220349.142|116.269 +638952.311|220344.573|115.907 +638957.432|220339.952|115.495 +638962.549|220335.341|115.233 +638967.621|220330.769|114.940 +638972.739|220326.157|114.709 +638977.826|220321.573|114.297 +638982.907|220316.989|113.962 +638988.034|220312.371|113.736 +638993.066|220307.835|113.499 +638998.159|220303.242|113.121 +639003.246|220298.658|112.871 +639008.284|220294.116|112.654 +639013.375|220289.529|112.429 +639018.422|220284.978|112.170 +639023.482|220280.419|111.795 +639028.490|220275.901|111.463 +639033.549|220271.339|111.158 +639038.615|220266.776|110.829 +639043.644|220262.237|110.368 +639048.698|220257.684|110.216 +639053.691|220253.188|110.259 +639058.695|220248.680|110.198 +639063.685|220244.187|110.301 +639068.644|220239.728|110.792 +639073.573|220235.293|111.088 +639078.581|220230.779|111.048 +639083.537|220226.316|111.091 +639088.535|220221.818|111.228 +639093.491|220217.355|111.307 +639098.448|220212.893|111.420 +639103.410|220208.422|111.463 +639108.384|220203.944|111.453 +639113.364|220199.457|111.386 +639118.354|220194.962|111.261 +639123.304|220190.499|111.060 +639128.303|220185.991|110.896 +639133.259|220181.526|110.710 +639138.221|220177.055|110.502 +639143.229|220172.544|110.356 +639148.133|220168.124|110.268 +639153.147|220163.607|110.121 +639158.070|220159.166|109.908 +639163.053|220154.676|109.670 +639167.994|220150.220|109.366 +639172.996|220145.709|109.009 +639177.952|220141.244|108.671 +639182.911|220136.769|108.302 +639187.873|220132.295|107.966 +639192.786|220127.866|107.659 +639197.752|220123.388|107.339 +639202.714|220118.917|107.104 +639207.624|220114.491|106.897 +639212.541|220110.056|106.656 +639217.472|220105.618|106.738 +639222.315|220101.254|106.732 +639227.281|220096.779|106.592 +639232.161|220092.381|106.369 +639237.104|220087.925|106.077 +639242.021|220083.493|106.004 +639246.901|220079.095|105.857 +639251.832|220074.654|105.741 +639256.718|220070.249|105.613 +639261.671|220065.784|105.379 +639266.594|220061.346|105.053 +639271.532|220056.893|104.635 +639276.494|220052.416|104.092 +639281.441|220047.950|103.666 +639286.415|220043.464|103.111 +639291.325|220039.032|102.654 +639296.315|220034.533|102.062 +639301.234|220030.095|101.627 +639311.144|220021.146|100.694 +639316.090|220016.681|100.173 +639326.030|220007.707|98.932 +639330.953|220003.260|98.341 +639335.918|219998.777|97.820 +639340.810|219994.363|97.466 +639345.729|219989.928|97.301 +639350.563|219985.570|97.353 +639355.443|219981.168|97.155 +639365.130|219972.436|96.978 +639369.994|219968.050|96.942 +639374.877|219963.642|96.814 +639379.739|219959.256|96.549 +639384.661|219954.818|96.262 +639389.553|219950.402|95.875 +639404.288|219937.100|94.284 +639409.274|219932.589|93.205 +639414.343|219928.005|92.266 +639419.247|219923.576|91.708 +639428.729|219915.039|92.422 +639433.652|219910.589|91.565 +639438.303|219906.410|92.455 +639447.783|219897.872|93.056 +639452.547|219893.572|92.848 +639457.609|219888.991|91.410 +639462.136|219884.928|92.739 +639471.761|219876.241|91.998 +639481.195|219867.740|92.315 +639485.898|219863.497|92.312 +639495.182|219855.142|93.226 +639499.772|219851.006|93.571 +639509.017|219842.679|94.007 +639513.674|219838.479|94.077 +639519.670|219829.530|94.433 +639510.480|219837.781|93.836 +639505.899|219841.893|93.373 +639496.532|219850.305|92.967 +639487.242|219858.651|92.528 +639482.554|219862.860|92.150 +639477.824|219867.112|92.016 +639453.818|219888.704|92.879 +639448.996|219893.035|92.797 +639444.162|219897.385|92.818 +639434.524|219906.053|93.010 +639410.231|219927.895|93.144 +639390.227|219945.921|95.793 +639385.262|219950.393|96.268 +639380.294|219954.864|96.479 +639375.325|219959.336|96.725 +639370.406|219963.764|97.018 +639365.428|219968.242|97.085 +639360.497|219972.677|97.186 +639355.577|219977.102|97.247 +639345.674|219986.012|97.533 +639340.715|219990.474|97.606 +639330.721|219999.472|98.295 +639325.692|220004.001|98.871 +639315.591|220013.105|100.109 +639310.586|220017.613|100.648 +639305.508|220022.185|101.038 +639300.512|220026.687|101.578 +639295.480|220031.217|102.044 +639290.429|220035.770|102.684 +639280.337|220044.860|103.669 +639275.265|220049.428|104.211 +639270.267|220053.930|104.635 +639265.216|220058.481|105.092 +639260.193|220063.001|105.391 +639255.185|220067.509|105.616 +639250.193|220072.002|105.763 +639245.209|220076.486|105.876 +639240.171|220081.018|106.034 +639235.190|220085.502|106.183 +639230.097|220090.086|106.439 +639225.120|220094.563|106.616 +639220.097|220099.084|106.772 +639215.159|220103.525|106.695 +639210.108|220108.066|106.747 +639205.097|220112.577|106.912 +639200.086|220117.085|107.092 +639195.078|220121.593|107.284 +639190.010|220126.159|107.601 +639184.996|220130.670|107.893 +639179.927|220135.236|108.259 +639174.919|220139.744|108.588 +639169.859|220144.298|108.930 +639164.809|220148.848|109.268 +639159.758|220153.393|109.603 +639154.723|220157.928|109.878 +639149.697|220162.452|110.067 +639144.680|220166.969|110.228 +639139.614|220171.526|110.399 +639134.609|220176.030|110.502 +639129.552|220180.578|110.649 +639124.487|220185.138|110.902 +639119.485|220189.643|111.082 +639114.434|220194.184|111.249 +639109.390|220198.726|111.420 +639104.358|220203.252|111.481 +639099.331|220207.772|111.496 +639094.269|220212.329|111.456 +639089.258|220216.834|111.374 +639084.207|220221.376|111.216 +639079.154|220225.920|111.118 +639074.152|220230.419|111.048 +639064.057|220239.496|110.829 +639059.040|220244.004|110.438 +639053.956|220248.576|110.246 +639048.896|220253.127|110.365 +639043.797|220257.720|110.420 +639038.740|220262.271|110.542 +639033.623|220266.882|110.877 +639028.548|220271.457|111.338 +639023.445|220276.054|111.569 +639018.331|220280.662|111.965 +639013.228|220285.262|112.285 +639008.135|220289.849|112.496 +639003.042|220294.433|112.709 +638997.906|220299.063|112.929 +638992.807|220303.657|113.328 +638987.720|220308.241|113.621 +638982.590|220312.865|113.849 +638977.457|220317.488|114.154 +638972.321|220322.118|114.568 +638967.194|220326.733|114.831 +638962.077|220331.345|115.059 +638956.959|220335.956|115.312 +638951.784|220340.620|115.715 +638946.663|220345.234|116.074 +638941.545|220349.849|116.470 +638936.379|220354.506|116.894 +638931.267|220359.112|117.235 +638926.058|220363.809|117.665 +638920.956|220368.402|117.915 +638915.805|220373.044|118.226 +638910.617|220377.717|118.385 +638905.524|220382.304|118.586 +638900.333|220386.983|118.897 +638895.194|220391.613|119.140 +638890.058|220396.240|119.381 +638884.874|220400.909|119.637 +638879.747|220405.530|119.771 +638874.617|220410.148|119.933 +638869.445|220414.808|120.088 +638864.263|220419.481|120.509 +638859.146|220424.086|120.491 +638853.970|220428.753|120.887 +638848.795|220433.413|121.213 +638843.671|220438.034|121.618 +638838.498|220442.694|122.048 +638833.332|220447.352|122.396 +638828.166|220452.009|122.771 +638823.002|220456.660|123.033 +638817.842|220461.312|123.389 +638812.731|220465.917|123.609 +638807.528|220470.605|123.840 +638802.370|220475.250|124.103 +638797.216|220479.892|124.337 +638792.074|220484.531|124.709 +638786.920|220489.173|124.980 +638781.769|220493.816|125.294 +638776.621|220498.455|125.529 +638771.424|220503.139|125.919 +638766.328|220507.730|126.145 +638761.131|220512.411|126.486 +638755.989|220517.047|126.748 +638750.844|220521.684|127.074 +638745.705|220526.313|127.151 +638740.563|220530.943|127.257 +638735.375|220535.616|127.401 +638730.285|220540.200|127.498 +638725.097|220544.870|127.431 +638719.958|220549.497|127.452 +638714.868|220554.081|127.318 +638709.729|220558.708|127.340 +638704.590|220563.331|127.276 +638699.497|220567.916|127.154 +638694.361|220572.543|127.303 +638689.222|220577.169|127.346 +638684.132|220581.754|127.431 +638678.996|220586.384|127.669 +638673.860|220591.010|127.836 +638668.773|220595.592|128.080 +638663.683|220600.176|128.105 +638653.457|220609.387|128.205 +638648.370|220613.971|128.345 +638643.277|220618.558|128.169 +638638.183|220623.142|128.132 +638633.096|220627.727|128.345 +638628.009|220632.311|128.516 +638622.965|220636.855|128.416 +638617.871|220641.443|128.385 +638612.775|220646.030|128.324 +638607.728|220650.575|128.300 +638602.680|220655.122|128.275 +638597.636|220659.667|128.324 +638592.585|220664.214|128.306 +638587.532|220668.765|128.160 +638582.481|220673.313|128.135 +638577.431|220677.863|128.141 +638572.426|220682.368|128.105 +638567.424|220686.876|128.120 +638562.419|220691.384|128.166 +638557.420|220695.889|128.324 +638552.422|220700.394|128.483 +638547.420|220704.899|128.589 +638542.467|220709.364|128.736 +638537.465|220713.869|128.870 +638532.503|220718.341|128.879 +638527.547|220722.806|129.001 +638522.597|220727.268|129.214 +638517.644|220731.734|129.446 +638512.688|220736.199|129.610 +638507.793|220740.616|129.973 +638502.840|220745.078|130.253 +638497.939|220749.498|130.537 +638492.982|220753.963|130.753 +638488.124|220758.343|130.997 +638483.171|220762.808|131.278 +638478.306|220767.191|131.445 +638473.390|220771.623|131.555 +638468.467|220776.058|131.607 +638463.597|220780.447|131.750 +638458.677|220784.882|131.869 +638453.800|220789.274|131.948 +638448.860|220793.724|131.848 +638443.977|220798.122|131.869 +638439.100|220802.518|132.012 +638434.260|220806.879|132.000 +638429.361|220811.290|131.902 +638424.549|220815.627|132.305 +638419.620|220820.065|131.869 +638414.786|220824.421|132.018 +638409.927|220828.795|131.909 +638405.069|220833.168|131.838 +638400.198|220837.554|131.622 +638395.376|220841.898|131.439 +638390.530|220846.263|131.573 +638385.687|220850.621|131.201 +638380.840|220854.983|130.857 +638375.979|220859.354|130.385 +638371.129|220863.719|130.046 +638366.298|220868.068|129.940 +638356.657|220876.749|129.504 +638337.382|220894.101|128.531 +638327.860|220902.684|129.065 +638318.353|220911.252|129.336 +638304.186|220924.023|130.028 +638299.437|220928.303|130.065 +638294.685|220932.582|130.101 +638290.001|220936.807|130.302 +638285.249|220941.086|130.360 +638275.809|220949.587|130.275 +638271.085|220953.842|130.226 +638266.360|220958.094|130.196 +638261.700|220962.294|130.305 +638256.978|220966.549|130.321 +638252.260|220970.792|130.028 +638247.578|220975.010|130.019 +638242.872|220979.247|129.851 +638233.561|220987.632|129.976 +638228.973|220991.768|130.400 +638224.304|220995.972|130.208 +638219.628|221000.187|130.366 +638210.402|221008.499|130.552 +638205.775|221012.669|130.772 +638192.001|221025.080|131.180 +638187.450|221029.183|131.622 +638182.848|221033.328|131.393 +638173.737|221041.539|131.963 +638169.178|221045.648|132.070 +638160.076|221053.847|132.146 +638155.602|221057.880|132.539 +638150.978|221062.043|132.302 +638146.455|221066.118|132.424 +638137.390|221074.281|132.271 +638132.824|221078.387|131.851 +638128.292|221082.468|131.668 +638123.750|221086.555|131.467 +638119.263|221090.594|131.290 +638114.719|221094.684|131.107 +638110.235|221098.723|130.991 +638105.721|221102.783|130.729 +638101.213|221106.837|130.217 +638096.653|221110.936|129.732 +638092.228|221114.923|129.760 +638083.376|221122.894|129.546 +638078.838|221126.972|128.989 +638074.391|221130.974|128.672 +638069.919|221134.997|128.239 +638065.478|221138.990|128.019 +638061.126|221142.913|128.010 +638056.548|221147.019|126.782 +638052.098|221151.021|126.276 +638043.804|221158.522|128.626 +638039.656|221162.271|129.531 +638035.367|221166.136|129.680 +638031.075|221170.004|129.836 +638026.814|221173.844|129.888 +638022.498|221177.727|129.687 +638017.996|221181.766|128.525 +638013.415|221185.871|126.974 +638008.749|221190.044|124.773 +637999.775|221198.094|122.304 +637995.429|221202.002|121.835 +637982.716|221213.447|121.384 +637966.022|221228.483|121.268 +637957.759|221235.923|121.210 +637953.769|221239.526|121.878 +637945.646|221246.841|122.313 +637929.723|221261.188|123.639 +637917.949|221271.798|124.855 +637905.985|221282.563|124.843 +637901.938|221286.203|124.435 +637893.967|221293.372|124.011 +637885.475|221300.970|120.890 +637881.610|221304.448|120.936 +637877.758|221307.917|121.039 +637873.881|221311.407|121.042 +637870.208|221314.720|121.719 +637866.395|221318.155|122.027 +637862.621|221321.553|122.054 +637839.847|221342.033|121.079 +637806.718|221371.833|120.387 +637803.097|221375.086|119.945 +637799.403|221378.405|119.433 +637795.797|221381.645|119.302 +637792.258|221384.830|119.223 +637788.792|221387.951|119.445 +637785.263|221391.127|119.430 +637754.524|221418.782|119.156 +637751.110|221421.848|118.860 +637747.843|221424.789|118.933 +637744.551|221427.749|118.924 +637718.896|221450.832|118.836 +637715.646|221453.749|118.464 +637712.534|221456.547|118.400 +637706.374|221462.088|118.339 +637990.513|221204.163|122.085 +637994.704|221200.377|122.048 +637998.946|221196.549|122.286 +638003.339|221192.592|123.039 +638008.097|221188.331|125.703 +638012.824|221184.094|127.989 +638017.335|221180.044|129.455 +638021.694|221176.115|129.891 +638025.997|221172.226|129.790 +638030.249|221168.382|129.717 +638034.529|221164.517|129.519 +638038.820|221160.640|129.397 +638043.039|221156.821|128.912 +638051.265|221149.356|126.245 +638055.758|221145.309|127.001 +638060.266|221141.252|127.867 +638064.643|221137.295|127.757 +638069.093|221133.284|128.345 +638073.613|221129.209|128.797 +638078.036|221125.219|128.995 +638082.611|221121.098|129.805 +638087.046|221117.093|129.821 +638091.426|221113.134|129.546 +638095.900|221109.098|129.836 +638100.448|221104.996|130.293 +638109.510|221096.824|131.055 +638114.003|221092.767|131.262 +638118.532|221088.680|131.390 +638123.061|221084.592|131.531 +638127.603|221080.496|131.777 +638132.132|221076.405|131.979 +638150.426|221059.891|132.497 +638154.998|221055.761|132.442 +638173.201|221039.314|131.790 +638177.800|221035.157|131.671 +638187.002|221026.836|131.147 +638191.620|221022.663|131.211 +638196.244|221018.481|130.979 +638200.865|221014.305|130.744 +638205.501|221010.114|130.638 +638214.834|221001.680|130.537 +638219.491|220997.468|130.284 +638224.145|220993.259|130.016 +638228.836|220989.022|130.031 +638233.551|220984.758|129.897 +638238.209|220980.549|129.702 +638242.955|220976.263|129.805 +638247.716|220971.962|130.080 +638252.449|220967.689|130.141 +638257.219|220963.376|130.156 +638261.950|220959.106|130.229 +638276.233|220946.201|130.180 +638281.030|220941.863|130.125 +638285.797|220937.557|130.208 +638290.601|220933.216|130.229 +638295.383|220928.894|130.077 +638300.169|220924.569|129.994 +638314.513|220911.597|129.248 +638319.325|220907.247|129.019 +638328.969|220898.527|128.800 +638333.864|220894.107|128.931 +638368.017|220863.264|130.010 +638372.946|220858.811|130.232 +638377.841|220854.395|130.613 +638382.837|220849.887|131.064 +638392.624|220841.051|131.427 +638397.580|220836.573|131.543 +638402.481|220832.144|131.625 +638407.388|220827.712|131.759 +638412.338|220823.241|131.902 +638417.276|220818.782|131.872 +638422.217|220814.316|131.942 +638427.139|220809.866|131.787 +638432.059|220805.425|132.253 +638437.018|220800.942|132.009 +638441.886|220796.544|131.814 +638446.857|220792.051|131.762 +638451.844|220787.546|131.945 +638456.766|220783.096|131.924 +638461.725|220778.612|131.765 +638466.690|220774.125|131.713 +638471.649|220769.645|131.573 +638476.612|220765.158|131.525 +638481.562|220760.684|131.265 +638486.512|220756.206|131.061 +638491.507|220751.689|130.839 +638496.457|220747.215|130.641 +638501.450|220742.697|130.394 +638506.439|220738.186|130.077 +638511.374|220733.721|129.671 +638516.376|220729.201|129.559 +638521.362|220724.687|129.263 +638526.361|220720.170|129.162 +638531.406|220715.610|128.998 +638536.401|220711.093|128.897 +638541.397|220706.579|128.742 +638546.393|220702.065|128.681 +638551.391|220697.547|128.659 +638556.430|220692.994|128.434 +638561.468|220688.440|128.284 +638566.464|220683.926|128.230 +638571.508|220679.369|128.199 +638576.550|220674.815|128.190 +638581.594|220670.259|128.224 +638586.639|220665.702|128.275 +638591.686|220661.145|128.428 +638596.718|220656.594|128.248 +638601.760|220652.041|128.227 +638606.798|220647.490|128.248 +638611.885|220642.894|128.254 +638616.875|220638.386|128.275 +638621.962|220633.789|128.376 +638627.046|220629.199|128.297 +638632.081|220624.648|128.336 +638637.162|220620.058|128.135 +638642.249|220615.465|128.355 +638647.282|220610.914|128.263 +638652.360|220606.324|128.083 +638657.444|220601.733|128.092 +638662.525|220597.143|128.031 +638667.603|220592.550|127.907 +638672.684|220587.959|127.779 +638677.762|220583.369|127.449 +638682.843|220578.776|127.300 +638687.924|220574.182|127.123 +638693.005|220569.592|127.169 +638698.086|220564.999|127.090 +638703.170|220560.408|127.111 +638708.254|220555.815|127.157 +638713.384|220551.182|127.266 +638718.465|220546.592|127.297 +638723.549|220541.998|127.282 +638728.679|220537.366|127.367 +638733.760|220532.772|127.327 +638738.844|220528.179|127.239 +638743.977|220523.540|127.093 +638749.061|220518.943|126.898 +638754.194|220514.304|126.724 +638759.281|220509.702|126.392 +638764.417|220505.060|126.178 +638769.507|220500.457|125.928 +638774.646|220495.809|125.535 +638779.739|220491.203|125.273 +638784.881|220486.552|124.926 +638790.023|220481.901|124.673 +638795.110|220477.301|124.368 +638800.255|220472.650|124.103 +638805.400|220467.999|123.932 +638810.499|220463.387|123.639 +638815.647|220458.733|123.377 +638820.799|220454.073|123.082 +638825.904|220449.458|122.798 +638831.061|220444.795|122.478 +638836.221|220440.125|122.024 +638841.336|220435.498|121.622 +638846.448|220430.874|121.308 +638851.611|220426.202|120.936 +638856.728|220421.575|120.622 +638861.883|220416.917|120.643 +638867.012|220412.275|120.094 +638872.124|220407.658|120.064 +638877.290|220402.985|119.863 +638882.411|220398.355|119.683 +638887.538|220393.722|119.415 +638892.713|220389.040|119.165 +638897.840|220384.404|118.918 +638902.973|220379.765|118.671 +638908.103|220375.123|118.455 +638913.239|220370.481|118.208 +638918.374|220365.836|117.970 +638923.519|220361.188|117.668 +638928.619|220356.576|117.293 +638933.776|220351.916|116.870 +638938.930|220347.255|116.519 +638944.042|220342.631|116.071 +638949.202|220337.968|115.715 +638954.362|220333.305|115.379 +638959.474|220328.684|115.090 +638964.637|220324.017|114.791 +638969.749|220319.396|114.587 +638974.869|220314.770|114.291 +638979.999|220310.134|113.913 +638985.123|220305.504|113.651 +638990.249|220300.868|113.349 +638995.334|220296.274|113.054 +639000.463|220291.638|112.810 +639005.547|220287.045|112.569 +639010.628|220282.455|112.386 +639015.722|220277.849|112.090 +639020.827|220273.234|111.679 +639025.929|220268.623|111.356 +639031.038|220264.002|110.950 +639036.091|220259.436|110.697 +639041.133|220254.882|110.621 +639046.223|220250.286|110.588 +639051.267|220245.729|110.524 +639056.284|220241.200|110.780 +639066.334|220232.132|111.231 +639071.336|220227.615|111.188 +639076.328|220223.107|111.261 +639081.367|220218.556|111.408 +639086.362|220214.048|111.533 +639091.361|220209.537|111.618 +639096.366|220205.017|111.679 +639101.383|220200.485|111.630 +639106.360|220195.989|111.514 +639111.395|220191.438|111.353 +639116.391|220186.924|111.121 +639121.436|220182.364|110.914 +639126.431|220177.853|110.761 +639131.427|220173.339|110.627 +639136.426|220168.819|110.463 +639141.391|220164.332|110.213 +639146.408|220159.800|109.978 +639151.367|220155.319|109.832 +639156.335|220150.830|109.649 +639161.319|220146.325|109.341 +639166.311|220141.811|108.997 +639171.310|220137.290|108.655 +639176.257|220132.819|108.335 +639181.262|220128.293|107.985 +639186.209|220123.821|107.729 +639191.165|220119.341|107.439 +639196.066|220114.912|107.232 +639201.016|220110.437|107.022 +639205.908|220106.018|106.936 +639210.846|220101.559|106.903 +639215.726|220097.151|106.951 +639220.621|220092.728|106.894 +639225.540|220088.284|106.702 +639230.469|220083.825|106.439 +639235.343|220079.424|106.275 +639240.271|220074.971|106.083 +639245.136|220070.576|106.016 +639250.013|220066.168|105.903 +639254.938|220061.718|105.799 +639259.839|220057.289|105.565 +639264.710|220052.882|105.196 +639269.636|220048.429|104.851 +639274.510|220044.024|104.534 +639279.493|220039.513|103.839 +639284.400|220035.072|103.355 +639289.320|220030.622|102.824 +639294.233|220026.175|102.358 +639299.107|220021.771|101.867 +639304.033|220017.315|101.395 +639308.900|220012.910|100.980 +639313.859|220008.427|100.353 +639318.770|220003.983|99.743 +639323.625|219999.591|99.191 +639328.529|219995.156|98.694 +639333.409|219990.745|98.365 +639338.173|219986.438|98.149 +639343.056|219982.025|97.859 +639347.848|219977.697|97.832 +639352.666|219973.344|97.676 +639357.488|219968.986|97.509 +639362.259|219964.676|97.378 +639367.041|219960.357|97.210 +639371.887|219955.977|96.991 +639376.676|219951.652|96.823 +639381.440|219947.345|96.533 +639386.304|219942.946|96.274 +639391.096|219938.615|95.875 +639395.854|219934.314|95.683 +639420.040|219912.439|93.260 +639424.715|219908.220|93.400 +639429.498|219903.895|93.245 +639434.182|219899.668|93.370 +639438.998|219895.312|92.827 +639443.695|219891.069|92.922 +639453.324|219882.361|91.980 +639458.018|219878.121|91.897 +639481.271|219857.130|92.608 +639486.044|219852.814|92.245 +639495.301|219844.456|92.513 +639499.830|219840.372|92.891 +639504.375|219836.269|93.214 +639508.959|219832.136|93.613 +639513.531|219828.012|93.854 +639513.284|219824.894|93.632 +639508.791|219828.942|93.257 +639504.280|219833.005|92.967 +639499.754|219837.089|92.793 +639495.295|219841.103|92.291 +639490.644|219845.300|92.236 +639463.029|219870.191|91.081 +639458.341|219874.421|91.084 +639453.607|219878.694|91.337 +639448.615|219883.218|92.684 +639443.848|219887.518|92.885 +639439.193|219891.719|92.815 +639434.335|219896.111|93.555 +639415.248|219913.329|93.543 +639395.646|219931.038|95.610 +639390.806|219935.409|95.945 +639385.871|219939.865|96.250 +639380.982|219944.281|96.616 +639376.124|219948.664|96.826 +639371.171|219953.136|97.030 +639366.276|219957.555|97.219 +639361.384|219961.969|97.396 +639356.449|219966.425|97.573 +639351.569|219970.827|97.743 +639346.604|219975.310|97.844 +639341.745|219979.690|97.926 +639336.768|219984.186|98.149 +639331.779|219988.691|98.481 +639326.835|219993.156|98.871 +639321.781|219997.719|99.322 +639316.761|220002.261|99.941 +639311.701|220006.833|100.514 +639306.687|220011.362|101.145 +639301.646|220015.916|101.651 +639296.623|220020.454|102.093 +639291.554|220025.035|102.535 +639286.531|220029.574|103.032 +639281.447|220034.167|103.623 +639276.396|220038.730|104.041 +639271.315|220043.320|104.684 +639266.228|220047.917|105.071 +639261.193|220052.464|105.479 +639256.127|220057.039|105.778 +639251.098|220061.578|105.854 +639246.017|220066.162|105.943 +639241.049|220070.646|105.997 +639235.980|220075.221|106.074 +639230.941|220079.768|106.324 +639225.812|220084.398|106.516 +639220.779|220088.943|106.790 +639215.677|220093.545|106.845 +639210.639|220098.093|106.836 +639205.603|220102.634|106.805 +639200.507|220107.234|106.906 +639195.463|220111.785|107.009 +639190.360|220116.393|107.220 +639185.252|220121.005|107.506 +639180.140|220125.623|107.845 +639175.041|220130.225|108.116 +639169.929|220134.843|108.518 +639164.830|220139.448|108.869 +639159.682|220144.097|109.216 +639154.592|220148.693|109.539 +639149.477|220153.311|109.692 +639144.366|220157.925|109.841 +639139.297|220162.503|110.085 +639134.185|220167.115|110.274 +639129.077|220171.727|110.487 +639123.972|220176.338|110.697 +639118.872|220180.941|110.893 +639113.730|220185.583|111.057 +639108.631|220190.185|111.298 +639103.541|220194.782|111.508 +639098.414|220199.409|111.597 +639093.342|220203.984|111.661 +639088.237|220208.592|111.609 +639083.140|220213.189|111.499 +639078.047|220217.782|111.356 +639072.954|220222.375|111.243 +639067.907|220226.929|111.182 +639062.807|220231.529|111.176 +639047.528|220245.309|110.588 +639042.428|220249.911|110.707 +639037.338|220254.501|110.713 +639032.184|220259.156|110.972 +639027.088|220263.752|111.136 +639021.936|220268.403|111.402 +639016.837|220273.006|111.664 +639011.720|220277.624|112.176 +639006.581|220282.266|112.426 +639001.497|220286.853|112.602 +638996.367|220291.483|112.782 +638991.225|220296.125|113.169 +638986.141|220300.712|113.459 +638981.014|220305.339|113.688 +638975.881|220309.975|114.062 +638970.754|220314.605|114.401 +638965.640|220319.217|114.550 +638960.525|220323.831|114.757 +638955.405|220328.455|115.111 +638950.290|220333.073|115.428 +638945.166|220337.700|115.879 +638940.055|220342.314|116.236 +638934.946|220346.926|116.544 +638929.838|220351.538|116.918 +638924.681|220356.198|117.379 +638919.578|220360.804|117.687 +638914.482|220365.406|117.997 +638909.346|220370.039|118.144 +638904.256|220374.636|118.406 +638899.114|220379.275|118.714 +638894.030|220383.865|118.970 +638888.897|220388.498|119.204 +638883.764|220393.128|119.464 +638878.735|220397.666|119.643 +638873.611|220402.290|119.811 +638868.494|220406.911|119.909 +638863.410|220411.501|120.378 +638858.295|220416.116|120.491 +638853.178|220420.737|120.671 +638848.103|220425.315|121.030 +638842.936|220429.981|121.350 +638837.867|220434.556|121.679 +638832.750|220439.177|122.097 +638827.635|220443.798|122.502 +638822.573|220448.370|122.819 +638817.464|220452.981|123.164 +638812.359|220457.590|123.377 +638807.250|220462.199|123.703 +638802.148|220466.807|123.950 +638797.049|220471.410|124.157 +638792.007|220475.960|124.386 +638786.859|220480.606|124.612 +638781.760|220485.211|124.941 +638776.712|220489.768|125.218 +638771.616|220494.370|125.541 +638766.474|220499.012|125.825 +638761.378|220503.612|126.172 +638756.288|220508.208|126.413 +638751.197|220512.802|126.654 +638746.107|220517.395|126.882 +638741.020|220521.988|127.093 +638735.933|220526.579|127.123 +638730.846|220531.166|127.196 +638725.710|220535.799|127.227 +638720.672|220540.343|127.175 +638715.539|220544.973|127.044 +638710.452|220549.561|127.026 +638705.413|220554.102|126.968 +638700.329|220558.692|126.968 +638695.193|220563.322|126.931 +638690.155|220567.867|126.867 +638685.071|220572.454|127.029 +638679.984|220577.044|127.093 +638674.903|220581.632|127.367 +638669.819|220586.219|127.608 +638664.786|220590.764|127.769 +638659.702|220595.351|127.952 +638654.618|220599.938|127.977 +638649.534|220604.525|128.035 +638644.499|220609.070|128.196 +638639.409|220613.657|128.062 +638634.367|220618.205|128.038 +638629.280|220622.792|128.044 +638624.199|220627.379|128.284 +638619.210|220631.881|128.376 +638614.116|220636.474|128.248 +638609.026|220641.065|128.224 +638603.985|220645.612|128.230 +638598.940|220650.163|128.187 +638593.902|220654.711|128.288 +638588.861|220659.258|128.342 +638583.770|220663.852|128.403 +638578.769|220668.360|128.281 +638573.721|220672.913|128.263 +638568.674|220677.467|128.269 +638563.675|220681.975|128.278 +638558.630|220686.526|128.397 +638553.638|220691.034|128.556 +638548.590|220695.588|128.644 +638543.595|220700.096|128.809 +638538.596|220704.607|128.903 +638533.594|220709.121|128.949 +638528.595|220713.629|129.107 +638523.645|220718.097|129.278 +638518.647|220722.611|129.400 +638513.700|220727.076|129.653 +638508.701|220731.588|129.845 +638503.757|220736.050|130.153 +638498.813|220740.515|130.485 +638493.815|220745.026|130.705 +638488.913|220749.452|130.936 +638483.915|220753.966|131.180 +638479.007|220758.395|131.336 +638474.051|220762.869|131.528 +638469.135|220767.304|131.610 +638464.221|220771.739|131.729 +638459.299|220776.177|131.784 +638454.379|220780.618|131.869 +638449.405|220785.104|131.872 +638444.516|220789.515|131.753 +638439.594|220793.956|131.848 +638434.726|220798.351|132.046 +638429.782|220802.807|131.927 +638424.945|220807.172|131.948 +638420.022|220811.616|132.116 +638415.167|220815.993|131.960 +638410.223|220820.452|131.936 +638405.416|220824.786|131.802 +638400.530|220829.197|131.924 +638395.660|220833.586|131.695 +638390.743|220838.021|131.506 +638381.035|220846.769|130.994 +638371.294|220855.550|130.229 +638366.457|220859.909|129.994 +638356.773|220868.638|129.537 +638337.421|220886.082|128.568 +638294.640|220924.703|130.220 +638289.918|220928.958|130.083 +638285.151|220933.259|129.961 +638280.466|220937.493|130.144 +638275.708|220941.787|130.144 +638271.014|220946.027|130.290 +638266.330|220950.255|130.113 +638261.608|220954.516|130.086 +638247.530|220967.226|129.973 +638242.823|220971.469|129.763 +638238.136|220975.702|129.687 +638233.484|220979.899|129.559 +638228.879|220984.060|129.802 +638224.179|220988.303|129.702 +638219.625|220992.418|129.991 +638215.010|220996.587|130.202 +638210.371|221000.778|130.241 +638201.215|221009.047|130.564 +638196.573|221013.239|130.644 +638192.044|221017.332|130.830 +638187.444|221021.486|130.900 +638182.857|221025.629|131.067 +638178.325|221029.725|131.290 +638173.838|221033.782|131.848 +638169.272|221037.903|131.875 +638164.679|221042.051|131.720 +638151.216|221054.219|132.509 +638142.123|221062.424|132.378 +638133.074|221070.593|132.262 +638128.526|221074.692|131.945 +638124.046|221078.737|131.750 +638119.513|221082.828|131.555 +638115.051|221086.857|131.509 +638105.965|221095.044|130.528 +638101.564|221099.025|130.903 +638097.028|221103.115|130.497 +638092.542|221107.160|130.110 +638088.079|221111.180|129.613 +638083.654|221115.176|129.626 +638079.347|221119.074|130.333 +638074.723|221123.232|128.964 +638070.248|221127.264|128.467 +638065.783|221131.291|128.056 +638061.391|221135.253|127.791 +638056.868|221139.322|126.824 +638052.454|221143.306|126.757 +638048.108|221147.232|126.800 +638044.048|221150.917|128.138 +638039.924|221154.654|129.144 +638035.632|221158.531|129.248 +638031.338|221162.408|129.351 +638027.058|221166.276|129.546 +638022.824|221170.101|129.732 +638018.563|221173.951|129.775 +638014.247|221177.846|129.833 +638009.797|221181.848|128.684 +638004.878|221186.240|125.145 +638000.260|221190.386|123.207 +637995.944|221194.278|122.832 +637983.170|221205.802|122.204 +637978.967|221209.594|121.966 +637974.797|221213.358|121.905 +637970.606|221217.141|121.768 +637958.097|221228.431|121.490 +637953.952|221232.174|121.378 +637949.971|221235.773|121.826 +637937.995|221246.609|123.063 +637933.999|221250.227|123.472 +637930.071|221253.781|123.972 +637922.134|221260.959|124.380 +637914.288|221268.058|125.264 +637910.262|221271.691|125.130 +637906.354|221275.224|125.307 +637898.530|221282.295|125.435 +637890.187|221289.799|123.322 +637881.860|221297.291|120.896 +637878.026|221300.757|121.049 +637874.167|221304.241|121.116 +637870.351|221307.688|121.143 +637866.614|221311.071|121.518 +637862.893|221314.439|121.984 +637859.080|221317.884|122.054 +637836.402|221338.357|121.177 +637807.044|221364.869|120.347 +637799.680|221371.510|119.573 +637796.129|221374.717|119.406 +637792.551|221377.948|119.375 +637788.994|221381.157|119.214 +637785.577|221384.248|119.403 +637782.084|221387.406|119.509 +637748.035|221418.157|119.006 +637744.743|221421.132|118.970 +637741.490|221424.073|119.092 +637735.059|221429.886|119.433 +637731.761|221432.864|119.198 +637718.963|221444.422|118.860 +637715.698|221447.369|118.598 +637712.571|221450.188|118.467 +637709.410|221453.044|118.409 +637706.362|221455.800|118.382 +637703.262|221458.598|118.375 +637989.626|221198.118|122.600 +637993.948|221194.208|122.993 +638002.555|221186.423|123.929 +638007.551|221181.958|127.852 +638012.175|221177.794|129.653 +638016.479|221173.896|129.833 +638020.724|221170.049|129.714 +638024.958|221166.215|129.540 +638029.225|221162.344|129.296 +638033.483|221158.488|129.287 +638037.805|221154.568|129.101 +638042.073|221150.701|128.900 +638050.391|221143.138|126.800 +638054.835|221139.121|127.321 +638059.340|221135.046|127.943 +638063.668|221131.126|127.870 +638068.142|221127.082|128.352 +638072.598|221123.049|128.766 +638077.305|221118.809|130.324 +638081.636|221114.874|129.498 +638086.013|221110.909|129.513 +638090.569|221106.791|130.001 +638095.050|221102.737|130.375 +638099.589|221098.634|130.805 +638104.036|221094.602|130.421 +638113.128|221086.378|131.503 +638117.627|221082.303|131.503 +638122.156|221078.204|131.689 +638126.679|221074.110|131.860 +638131.202|221070.017|132.055 +638135.808|221065.850|132.479 +638149.387|221053.548|132.384 +638153.931|221049.431|132.174 +638167.586|221037.056|131.799 +638172.104|221032.959|131.476 +638176.691|221028.805|131.317 +638181.251|221024.672|130.970 +638185.841|221020.514|130.863 +638190.410|221016.378|130.613 +638195.046|221012.178|130.513 +638199.685|221007.978|130.449 +638204.300|221003.796|130.229 +638208.966|220999.571|130.034 +638213.645|220995.341|130.308 +638218.247|220991.171|130.052 +638222.911|220986.940|129.528 +638227.605|220982.694|129.601 +638232.268|220978.470|129.491 +638237.020|220974.172|129.674 +638241.726|220969.917|129.906 +638246.493|220965.601|129.885 +638251.166|220961.374|129.909 +638260.663|220952.778|130.065 +638265.367|220948.520|130.001 +638270.195|220944.152|130.183 +638274.861|220939.922|129.869 +638279.622|220935.612|129.952 +638284.407|220931.281|129.839 +638308.221|220909.719|129.427 +638317.786|220901.054|128.952 +638322.593|220896.698|128.763 +638332.145|220888.039|127.803 +638337.107|220883.564|129.135 +638341.966|220879.172|129.488 +638346.861|220874.746|129.757 +638356.502|220866.011|129.415 +638366.320|220857.132|129.949 +638371.205|220852.715|130.263 +638376.128|220848.262|130.473 +638381.017|220843.843|130.897 +638385.955|220839.377|131.354 +638390.859|220834.942|131.448 +638395.766|220830.501|131.628 +638405.550|220821.644|131.717 +638410.503|220817.163|131.927 +638415.383|220812.747|131.887 +638420.324|220808.275|132.009 +638425.195|220803.865|131.899 +638430.148|220799.384|132.232 +638435.052|220794.940|131.973 +638439.965|220790.493|131.845 +638444.873|220786.046|131.659 +638449.801|220781.584|131.796 +638454.721|220777.131|131.808 +638459.683|220772.638|131.750 +638464.639|220768.151|131.631 +638469.546|220763.707|131.555 +638474.502|220759.221|131.467 +638479.452|220754.737|131.317 +638484.393|220750.260|131.064 +638489.340|220745.779|130.915 +638494.281|220741.301|130.662 +638499.271|220736.781|130.442 +638504.202|220732.313|130.071 +638509.192|220727.793|129.869 +638514.178|220723.276|129.598 +638519.168|220718.755|129.452 +638524.157|220714.235|129.287 +638529.098|220709.761|129.101 +638534.140|220705.195|129.013 +638539.129|220700.678|128.897 +638544.119|220696.157|128.787 +638549.105|220691.640|128.623 +638554.095|220687.123|128.510 +638559.130|220682.563|128.434 +638564.120|220678.046|128.367 +638569.158|220673.483|128.315 +638574.194|220668.924|128.284 +638579.192|220664.403|128.498 +638584.225|220659.847|128.382 +638589.208|220655.332|128.321 +638594.243|220650.773|128.294 +638599.276|220646.219|128.187 +638604.311|220641.659|128.248 +638609.343|220637.102|128.245 +638614.378|220632.546|128.348 +638619.411|220627.992|128.297 +638624.431|220623.438|127.983 +638629.512|220618.842|128.022 +638634.495|220614.331|127.998 +638639.570|220609.734|127.943 +638644.654|220605.135|128.153 +638649.680|220600.581|128.031 +638654.755|220595.985|127.940 +638664.860|220586.838|127.711 +638669.980|220582.199|127.458 +638675.006|220577.645|127.218 +638680.081|220573.045|127.084 +638685.156|220568.449|126.800 +638690.234|220563.853|126.849 +638700.387|220554.657|126.764 +638705.419|220550.106|126.937 +638710.543|220545.464|126.943 +638715.621|220540.868|127.004 +638720.699|220536.271|127.126 +638725.777|220531.675|127.151 +638730.855|220527.078|127.175 +638735.933|220522.482|127.175 +638741.060|220517.837|126.956 +638746.141|220513.234|126.776 +638751.222|220508.632|126.538 +638756.303|220504.029|126.343 +638761.384|220499.424|126.081 +638766.471|220494.812|125.733 +638771.604|220490.161|125.416 +638776.691|220485.552|125.169 +638781.781|220480.941|124.883 +638786.917|220476.283|124.599 +638791.998|220471.681|124.307 +638797.088|220467.072|124.197 +638802.227|220462.412|123.926 +638807.323|220457.794|123.630 +638812.468|220453.134|123.341 +638817.565|220448.516|123.094 +638822.667|220443.892|122.737 +638827.818|220439.223|122.405 +638832.972|220434.547|121.939 +638838.081|220429.920|121.612 +638843.189|220425.290|121.280 +638848.350|220420.612|120.853 +638853.458|220415.985|120.664 +638858.615|220411.309|120.433 +638863.724|220406.682|120.277 +638868.847|220402.034|119.777 +638874.005|220397.364|119.726 +638879.119|220392.735|119.604 +638884.237|220388.096|119.393 +638889.360|220383.453|119.122 +638894.533|220378.766|118.848 +638899.611|220374.166|118.592 +638904.741|220369.515|118.287 +638909.919|220364.824|118.068 +638915.000|220360.218|117.848 +638920.188|220355.515|117.516 +638925.284|220350.892|117.123 +638930.432|220346.225|116.748 +638935.577|220341.559|116.425 +638940.732|220336.886|116.038 +638945.837|220332.256|115.684 +638950.991|220327.577|115.312 +638956.103|220322.944|114.974 +638961.263|220318.263|114.614 +638966.417|220313.593|114.450 +638971.522|220308.966|114.273 +638976.646|220304.318|113.858 +638981.819|220299.627|113.505 +638986.936|220294.988|113.279 +638992.063|220290.340|112.983 +638997.193|220285.689|112.666 +639002.307|220281.053|112.572 +639007.437|220276.401|112.337 +639012.524|220271.787|112.023 +639017.666|220267.126|111.716 +639022.747|220262.521|111.554 +639027.840|220257.903|111.310 +639032.982|220253.240|111.075 +639043.087|220244.086|111.106 +639058.272|220230.331|111.313 +639063.310|220225.768|111.322 +639068.397|220221.159|111.374 +639073.381|220216.645|111.484 +639078.416|220212.082|111.600 +639083.457|220207.519|111.697 +639088.505|220202.944|111.716 +639093.510|220198.409|111.719 +639098.530|220193.861|111.597 +639103.608|220189.259|111.423 +639108.594|220184.736|111.197 +639113.636|220180.167|110.954 +639118.683|220175.589|110.673 +639123.731|220171.013|110.445 +639128.739|220166.469|110.143 +639133.731|220161.943|110.003 +639138.782|220157.364|109.841 +639143.784|220152.829|109.676 +639148.785|220148.297|109.558 +639153.757|220143.792|109.311 +639158.783|220139.232|109.036 +639163.769|220134.709|108.698 +639168.811|220130.137|108.369 +639173.755|220125.650|108.030 +639178.805|220121.072|107.689 +639183.758|220116.579|107.360 +639188.760|220112.041|107.058 +639193.704|220107.560|106.863 +639198.636|220103.089|106.778 +639203.570|220098.614|106.695 +639208.450|220094.195|106.686 +639213.382|220089.726|106.702 +639218.286|220085.279|106.543 +639223.257|220080.771|106.293 +639228.119|220076.364|106.147 +639233.099|220071.847|105.885 +639237.976|220067.424|105.684 +639242.856|220063.004|105.842 +639247.718|220058.600|105.790 +639252.588|220054.183|105.708 +639257.468|220049.761|105.589 +639262.366|220045.317|105.348 +639267.286|220040.854|105.007 +639272.181|220036.414|104.516 +639277.119|220031.933|104.096 +639282.041|220027.462|103.483 +639286.976|220022.981|102.815 +639291.889|220018.525|102.343 +639296.711|220014.148|102.142 +639301.637|220009.676|101.633 +639306.523|220005.239|101.072 +639311.424|220000.785|100.453 +639316.389|219996.277|99.789 +639321.226|219991.888|99.335 +639326.106|219987.456|98.929 +639330.989|219983.025|98.548 +639335.808|219978.654|98.283 +639340.599|219974.310|98.216 +639345.397|219969.958|98.115 +639350.182|219965.614|97.820 +639354.995|219961.247|97.670 +639359.765|219956.922|97.509 +639364.560|219952.572|97.244 +639369.348|219948.229|97.018 +639374.128|219943.891|96.872 +639378.861|219939.600|96.738 +639383.689|219935.217|96.360 +639388.505|219930.849|96.088 +639393.263|219926.527|95.592 +639398.103|219922.129|94.942 +639407.753|219913.362|93.632 +639412.374|219909.181|94.266 +639421.804|219900.631|94.284 +639426.456|219896.412|94.263 +639431.268|219892.042|93.665 +639440.711|219883.474|93.260 +639445.390|219879.231|93.184 +639459.569|219866.365|92.336 +639482.859|219845.240|92.035 +639487.391|219841.134|92.348 +639492.018|219836.940|92.220 +639496.615|219832.776|92.510 +639501.269|219828.552|92.281 +639505.753|219824.489|92.635 +639507.850|219819.368|92.629 +639503.317|219823.458|92.458 +639494.326|219831.575|92.080 +639485.267|219839.753|91.843 +639480.759|219843.819|91.641 +639471.399|219852.283|92.245 +639452.851|219869.035|92.556 +639443.470|219877.518|93.013 +639438.803|219881.733|93.007 +639433.972|219886.107|93.879 +639429.168|219890.454|94.382 +639424.468|219894.700|94.348 +639419.732|219898.979|94.534 +639414.931|219903.322|94.820 +639410.277|219907.526|94.604 +639405.696|219911.656|93.735 +639395.936|219920.495|95.034 +639391.068|219924.905|95.528 +639386.185|219929.325|96.122 +639381.321|219933.726|96.360 +639376.490|219938.100|96.722 +639371.643|219942.486|96.917 +639366.803|219946.866|97.100 +639361.951|219951.255|97.372 +639357.001|219955.736|97.646 +639352.124|219960.146|97.804 +639347.256|219964.551|97.951 +639342.331|219969.004|98.152 +639337.408|219973.460|98.371 +639332.510|219977.889|98.460 +639327.545|219982.382|98.676 +639322.601|219986.856|99.100 +639317.560|219991.422|99.545 +639312.594|219995.921|100.161 +639307.535|220000.502|100.776 +639302.481|220005.083|101.395 +639297.449|220009.640|101.895 +639292.468|220014.145|102.090 +639287.424|220018.714|102.742 +639282.325|220023.338|103.462 +639277.314|220027.876|103.971 +639272.224|220032.482|104.345 +639267.182|220037.047|104.772 +639262.153|220041.601|105.156 +639257.099|220046.173|105.388 +639252.058|220050.733|105.555 +639247.074|220055.241|105.696 +639242.021|220059.810|105.653 +639237.022|220064.330|105.601 +639231.938|220068.930|105.827 +639226.878|220073.508|105.909 +639221.800|220078.101|106.159 +639216.735|220082.688|106.354 +639211.669|220087.269|106.546 +639206.588|220091.866|106.534 +639201.501|220096.465|106.574 +639196.417|220101.062|106.628 +639191.323|220105.673|106.787 +639186.230|220110.279|106.955 +639181.128|220114.897|107.241 +639175.971|220119.566|107.613 +639170.813|220124.236|108.009 +639165.662|220128.902|108.399 +639160.523|220133.553|108.710 +639155.384|220138.202|109.045 +639150.258|220142.844|109.332 +639145.146|220147.471|109.509 +639139.992|220152.131|109.634 +639134.886|220156.752|109.829 +639129.738|220161.409|109.966 +639124.590|220166.067|110.146 +639119.485|220170.687|110.423 +639114.282|220175.396|110.725 +639109.134|220180.057|111.008 +639103.992|220184.711|111.289 +639098.856|220189.359|111.505 +639093.732|220193.992|111.645 +639088.572|220198.665|111.716 +639083.467|220203.280|111.722 +639078.325|220207.931|111.648 +639073.231|220212.536|111.588 +639068.144|220217.133|111.478 +639063.014|220221.772|111.347 +639057.866|220226.426|111.414 +639052.734|220231.071|111.380 +639042.474|220240.346|111.277 +639032.220|220249.622|111.191 +639027.127|220254.233|111.386 +639021.930|220258.942|111.673 +639016.798|220263.588|111.819 +639011.662|220268.239|112.039 +639006.477|220272.939|112.313 +639001.344|220277.587|112.566 +638996.217|220282.229|112.758 +638991.054|220286.905|112.868 +638985.924|220291.553|113.176 +638980.801|220296.192|113.438 +638975.622|220300.883|113.834 +638970.495|220305.531|114.251 +638965.341|220310.198|114.370 +638960.233|220314.824|114.590 +638955.115|220319.461|114.959 +638949.958|220324.136|115.297 +638944.846|220328.766|115.660 +638939.692|220333.436|115.980 +638934.541|220338.102|116.300 +638929.439|220342.726|116.659 +638924.336|220347.347|117.050 +638919.191|220352.013|117.440 +638914.098|220356.628|117.760 +638908.962|220361.276|118.004 +638903.829|220365.927|118.272 +638898.745|220370.533|118.543 +638893.618|220375.178|118.769 +638888.541|220379.774|118.991 +638883.414|220384.423|119.305 +638878.290|220389.062|119.537 +638873.227|220393.646|119.607 +638868.116|220398.270|119.616 +638863.001|220402.903|119.811 +638857.923|220407.508|120.329 +638852.812|220412.138|120.543 +638847.703|220416.765|120.728 +638842.634|220421.355|121.109 +638837.526|220425.985|121.426 +638832.415|220430.621|121.859 +638827.355|220435.202|122.185 +638822.249|220439.829|122.509 +638817.193|220444.410|122.905 +638812.090|220449.034|123.246 +638806.994|220453.652|123.453 +638801.944|220458.227|123.786 +638796.847|220462.845|124.060 +638791.754|220467.456|124.292 +638786.722|220472.016|124.505 +638781.632|220476.628|124.718 +638776.587|220481.197|124.971 +638771.497|220485.808|125.334 +638766.410|220490.417|125.520 +638761.372|220494.983|125.855 +638756.333|220499.549|126.187 +638751.249|220504.154|126.407 +638746.165|220508.757|126.648 +638741.133|220513.317|126.782 +638736.052|220517.919|126.965 +638731.020|220522.476|127.141 +638725.942|220527.072|127.044 +638720.909|220531.626|126.983 +638715.828|220536.223|126.898 +638710.799|220540.776|126.812 +638705.718|220545.373|126.767 +638700.689|220549.926|126.718 +638695.608|220554.523|126.532 +638690.576|220559.080|126.660 +638680.420|220568.275|126.754 +638675.439|220572.786|126.980 +638670.361|220577.386|127.172 +638665.286|220581.982|127.394 +638660.309|220586.493|127.626 +638655.231|220591.090|127.718 +638650.202|220595.643|127.864 +638645.172|220600.197|127.903 +638640.091|220604.797|127.815 +638635.108|220609.308|127.779 +638630.030|220613.904|127.876 +638625.001|220618.458|128.022 +638620.014|220622.969|127.940 +638604.917|220636.636|128.129 +638599.882|220641.193|128.135 +638594.896|220645.707|128.181 +638589.860|220650.264|128.233 +638584.825|220654.823|128.251 +638579.838|220659.338|128.315 +638574.806|220663.894|128.458 +638569.811|220668.415|128.394 +638564.772|220672.974|128.403 +638559.783|220677.495|128.440 +638554.790|220682.012|128.461 +638549.749|220686.575|128.531 +638544.762|220691.092|128.699 +638539.775|220695.609|128.858 +638534.783|220700.129|128.967 +638529.836|220704.607|129.050 +638524.798|220709.169|129.174 +638519.857|220713.644|129.397 +638514.867|220718.164|129.586 +638509.878|220722.684|129.766 +638504.937|220727.159|130.001 +638499.950|220731.676|130.275 +638495.058|220736.108|130.574 +638490.066|220740.628|130.769 +638485.119|220745.112|130.927 +638480.175|220749.589|131.177 +638475.228|220754.070|131.390 +638470.321|220758.514|131.448 +638465.364|220763.000|131.573 +638460.457|220767.444|131.683 +638455.498|220771.934|131.774 +638450.582|220776.384|131.793 +638445.650|220780.846|131.649 +638440.727|220785.303|131.649 +638435.823|220789.743|131.915 +638430.904|220794.200|131.963 +638426.057|220798.592|132.360 +638421.101|220803.072|132.046 +638416.206|220807.501|131.860 +638411.326|220811.921|131.912 +638406.428|220816.350|131.784 +638401.527|220820.787|131.598 +638396.690|220825.164|131.665 +638391.786|220829.602|131.512 +638386.884|220834.037|131.424 +638382.002|220838.451|131.049 +638377.128|220842.861|130.772 +638372.230|220847.290|130.269 +638367.350|220851.700|130.022 +638362.473|220856.114|129.808 +638357.608|220860.509|129.248 +638352.747|220864.910|129.272 +638343.142|220873.609|129.546 +638338.357|220877.938|129.406 +638333.438|220882.385|128.931 +638304.777|220908.332|129.181 +638299.974|220912.679|129.053 +638290.589|220921.189|129.915 +638285.819|220925.502|129.723 +638281.076|220929.793|129.778 +638276.348|220934.073|129.979 +638271.639|220938.331|129.952 +638266.945|220942.580|130.040 +638262.224|220946.850|129.943 +638252.769|220955.396|129.744 +638248.100|220959.621|129.711 +638243.369|220963.900|129.641 +638238.745|220968.082|129.650 +638233.993|220972.377|129.440 +638229.357|220976.571|129.388 +638224.752|220980.741|129.598 +638220.088|220984.959|129.754 +638215.446|220989.159|129.717 +638210.832|220993.335|129.906 +638206.229|220997.505|130.174 +638201.630|221001.662|130.159 +638197.055|221005.801|130.324 +638192.437|221009.983|130.537 +638187.828|221014.150|130.510 +638183.299|221018.249|130.695 +638178.724|221022.392|130.915 +638174.204|221026.485|131.201 +638169.641|221030.615|131.195 +638160.604|221038.796|131.848 +638151.612|221046.934|132.216 +638147.076|221051.037|132.149 +638142.572|221055.115|132.302 +638138.131|221059.135|132.570 +638133.610|221063.223|132.357 +638129.051|221067.344|132.219 +638124.576|221071.388|132.030 +638120.059|221075.476|131.878 +638115.581|221079.520|131.707 +638106.596|221087.646|131.518 +638102.121|221091.688|131.119 +638097.458|221095.891|129.921 +638093.166|221099.784|130.650 +638088.640|221103.874|130.296 +638084.208|221107.876|129.946 +638079.761|221111.893|129.528 +638075.317|221115.908|129.144 +638066.411|221123.957|128.620 +638062.037|221127.911|128.422 +638057.584|221131.934|128.071 +638053.170|221135.921|127.681 +638044.590|221143.687|128.053 +638040.384|221147.503|128.842 +638036.156|221151.335|129.254 +638031.822|221155.251|129.107 +638027.570|221159.098|129.153 +638023.312|221162.954|129.446 +638019.082|221166.785|129.623 +638014.872|221170.592|129.671 +638010.602|221174.457|129.665 +638005.939|221178.648|127.660 +638001.016|221183.052|124.090 +637996.731|221186.923|123.834 +637992.503|221190.745|123.639 +637975.715|221205.930|123.624 +637971.432|221209.798|122.978 +637954.723|221224.895|121.932 +637950.645|221228.586|122.128 +637946.557|221232.287|122.289 +637938.535|221239.550|122.886 +637934.588|221243.125|123.264 +637930.671|221246.673|123.801 +637922.768|221253.833|124.557 +637918.894|221257.344|125.066 +637914.995|221260.874|125.483 +637911.014|221264.473|125.285 +637891.129|221282.445|124.651 +637886.868|221286.279|123.072 +637874.972|221297.014|121.481 +637871.083|221300.528|121.393 +637867.224|221304.021|121.448 +637859.674|221310.852|121.640 +637855.943|221314.229|121.838 +637833.345|221334.657|121.225 +637829.614|221338.025|121.064 +637807.715|221357.825|120.588 +637800.351|221364.469|119.781 +637796.812|221367.670|119.640 +637793.233|221370.904|119.579 +637789.676|221374.119|119.393 +637786.156|221377.301|119.369 +637782.599|221380.517|119.208 +637779.152|221383.629|119.076 +637775.750|221386.711|119.332 +637768.980|221392.834|119.604 +637738.906|221420.028|119.457 +637735.577|221423.034|119.290 +637732.313|221425.984|119.174 +637729.116|221428.877|119.323 +637719.487|221437.579|119.058 +637713.077|221443.367|118.561 +637709.931|221446.211|118.549 +637706.826|221449.018|118.497 +637703.774|221451.776|118.446 +637991.988|221189.608|123.904 +637996.191|221185.789|124.008 +638000.449|221181.924|124.136 +638005.311|221177.550|127.151 +638010.053|221173.277|129.583 +638014.330|221169.391|129.635 +638018.582|221165.529|129.571 +638022.849|221161.646|129.342 +638027.058|221157.818|129.083 +638031.399|221153.880|129.260 +638035.690|221149.981|129.196 +638039.957|221146.098|128.745 +638044.206|221142.230|128.202 +638048.358|221138.441|127.141 +638052.799|221134.412|127.690 +638057.255|221130.370|128.056 +638061.732|221126.310|128.565 +638070.572|221118.285|129.004 +638075.040|221114.231|129.229 +638079.542|221110.147|129.699 +638084.028|221106.075|130.083 +638088.503|221102.015|130.424 +638092.999|221097.930|130.324 +638106.556|221085.629|131.448 +638111.089|221081.514|131.646 +638115.612|221077.408|131.811 +638120.132|221073.306|131.973 +638124.664|221069.191|132.238 +638129.218|221065.055|132.351 +638133.805|221060.888|132.372 +638138.329|221056.776|132.341 +638142.852|221052.668|132.314 +638147.396|221048.537|132.113 +638151.962|221044.389|132.076 +638156.446|221040.311|131.854 +638161.061|221036.120|131.848 +638165.557|221032.029|131.400 +638170.147|221027.857|131.259 +638174.722|221023.693|131.052 +638179.358|221019.481|130.918 +638183.902|221015.345|130.534 +638188.551|221011.120|130.531 +638193.117|221006.969|130.308 +638197.771|221002.738|130.382 +638202.419|220998.511|130.083 +638211.697|220990.074|129.748 +638216.364|220985.831|129.641 +638221.024|220981.594|129.498 +638225.749|220977.303|129.464 +638230.415|220973.060|129.409 +638235.152|220968.756|129.528 +638244.585|220960.182|129.519 +638249.310|220955.890|129.595 +638258.841|220947.237|130.092 +638263.635|220942.878|130.034 +638268.375|220938.568|129.930 +638277.924|220929.891|129.979 +638282.630|220925.608|129.653 +638287.431|220921.247|129.744 +638306.621|220903.803|129.303 +638311.337|220899.508|128.739 +638316.146|220895.137|128.574 +638345.361|220868.608|130.107 +638350.162|220864.231|129.059 +638369.773|220846.421|130.104 +638374.726|220841.928|130.702 +638379.633|220837.472|130.875 +638384.565|220832.995|131.329 +638389.478|220828.535|131.589 +638399.314|220819.599|131.784 +638404.273|220815.091|131.561 +638409.190|220810.625|132.012 +638414.173|220806.099|132.107 +638419.081|220801.637|131.909 +638424.046|220797.132|132.451 +638429.029|220792.606|132.625 +638433.888|220788.177|131.875 +638438.844|220783.672|131.726 +638443.800|220779.167|131.613 +638448.777|220774.647|131.835 +638453.736|220770.139|131.777 +638458.695|220765.634|131.777 +638463.688|220761.092|131.604 +638468.641|220756.587|131.570 +638473.634|220752.049|131.418 +638478.578|220747.553|131.247 +638483.564|220743.018|131.043 +638488.551|220738.485|130.830 +638493.488|220733.995|130.601 +638498.515|220729.420|130.321 +638503.495|220724.891|130.031 +638508.482|220720.359|129.848 +638513.511|220715.784|129.635 +638518.446|220711.294|129.437 +638523.475|220706.719|129.232 +638528.510|220702.144|129.144 +638533.490|220697.614|128.952 +638538.572|220692.997|128.842 +638543.558|220688.467|128.733 +638548.587|220683.898|128.620 +638553.620|220679.326|128.519 +638558.606|220674.797|128.498 +638563.684|220670.182|128.431 +638568.719|220665.610|128.531 +638573.749|220661.041|128.449 +638578.823|220656.430|128.315 +638583.853|220651.864|128.239 +638588.879|220647.295|128.202 +638593.957|220642.683|128.175 +638598.983|220638.117|128.092 +638604.000|220633.554|127.806 +638609.081|220628.943|127.891 +638614.107|220624.377|127.903 +638619.182|220619.768|127.919 +638624.254|220615.160|127.836 +638629.280|220610.594|127.843 +638634.346|220605.988|127.602 +638639.424|220601.380|127.745 +638644.496|220596.771|127.775 +638649.568|220592.166|127.663 +638654.591|220587.603|127.638 +638659.660|220582.994|127.498 +638664.725|220578.389|127.218 +638669.794|220573.780|126.974 +638674.863|220569.171|126.703 +638679.935|220564.563|126.636 +638685.007|220559.954|126.459 +638690.079|220555.349|126.349 +638695.151|220550.740|126.447 +638700.226|220546.132|126.498 +638705.297|220541.526|126.581 +638710.369|220536.920|126.706 +638715.441|220532.315|126.828 +638720.516|220527.706|126.876 +638725.588|220523.101|126.992 +638730.660|220518.492|126.956 +638735.781|220513.838|126.864 +638740.807|220509.272|126.684 +638745.882|220504.660|126.538 +638751.005|220500.003|126.340 +638756.035|220495.428|126.029 +638761.113|220490.810|125.745 +638766.194|220486.193|125.499 +638771.275|220481.572|125.172 +638776.359|220476.951|124.868 +638781.440|220472.330|124.673 +638786.524|220467.709|124.490 +638791.599|220463.095|124.231 +638796.686|220458.471|123.959 +638801.727|220453.887|123.618 +638806.866|220449.214|123.389 +638811.911|220444.630|123.091 +638817.004|220439.997|122.768 +638822.100|220435.361|122.399 +638827.151|220430.768|122.094 +638832.256|220426.125|121.640 +638837.358|220421.486|121.289 +638842.415|220416.884|120.881 +638847.523|220412.239|120.500 +638852.626|220407.600|120.314 +638862.800|220398.349|119.622 +638867.860|220393.750|119.457 +638872.956|220389.120|119.576 +638878.019|220384.520|119.427 +638883.085|220379.915|119.186 +638888.202|220375.260|118.948 +638893.274|220370.649|118.647 +638898.346|220366.037|118.439 +638903.421|220361.425|118.220 +638908.499|220356.808|117.958 +638913.580|220352.187|117.647 +638918.667|220347.563|117.296 +638923.757|220342.936|116.915 +638928.850|220338.309|116.568 +638933.941|220333.682|116.257 +638938.991|220329.092|115.897 +638944.090|220324.459|115.568 +638949.138|220319.872|115.276 +638954.240|220315.236|114.989 +638959.346|220310.597|114.681 +638964.354|220306.049|114.407 +638969.453|220301.416|114.261 +638974.519|220296.811|113.883 +638979.642|220292.153|113.486 +638984.708|220287.551|113.233 +638989.771|220282.955|113.051 +638994.837|220278.352|112.859 +638999.899|220273.753|112.731 +639004.983|220269.132|112.374 +639010.049|220264.529|112.282 +639015.127|220259.918|112.063 +639020.163|220255.343|111.828 +639025.241|220250.728|111.664 +639035.360|220241.547|111.914 +639040.356|220237.009|111.685 +639045.440|220232.391|111.569 +639050.463|220227.828|111.621 +639055.547|220223.214|111.588 +639060.582|220218.642|111.566 +639065.563|220214.121|111.633 +639070.644|220209.510|111.706 +639075.627|220204.987|111.804 +639080.675|220200.402|111.758 +639085.719|220195.821|111.752 +639090.721|220191.283|111.746 +639095.784|220186.680|111.606 +639100.816|220182.108|111.335 +639105.897|220177.490|111.100 +639110.902|220172.943|110.682 +639116.001|220168.310|110.359 +639121.000|220163.765|110.064 +639126.044|220159.181|109.829 +639131.080|220154.609|109.728 +639136.066|220150.080|109.631 +639141.114|220145.493|109.466 +639146.112|220140.954|109.344 +639151.169|220136.358|109.146 +639156.192|220131.795|108.850 +639161.230|220127.214|108.469 +639166.226|220122.672|108.052 +639171.316|220118.045|107.701 +639176.312|220113.504|107.366 +639181.362|220108.913|107.015 +639186.303|220104.424|106.766 +639191.339|220099.849|106.589 +639196.319|220095.325|106.485 +639201.290|220090.811|106.488 +639206.216|220086.337|106.464 +639211.202|220081.811|106.391 +639216.162|220077.306|106.183 +639221.182|220072.740|105.897 +639226.138|220068.238|105.766 +639236.007|220059.271|105.504 +639240.942|220054.793|105.607 +639245.849|220050.337|105.555 +639250.772|220045.865|105.431 +639255.700|220041.388|105.299 +639260.586|220036.947|105.120 +639265.545|220032.439|104.809 +639270.486|220027.949|104.339 +639275.464|220023.420|103.961 +639280.429|220018.906|103.376 +639285.360|220014.416|102.709 +639290.286|220009.939|102.437 +639295.178|220005.491|102.099 +639300.146|220000.974|101.621 +639305.093|219996.475|100.996 +639310.043|219991.974|100.380 +639314.947|219987.511|99.758 +639319.830|219983.067|99.298 +639324.747|219978.599|98.981 +639329.587|219974.204|98.844 +639334.433|219969.802|98.707 +639339.298|219965.380|98.475 +639344.099|219961.018|98.344 +639348.914|219956.641|98.140 +639353.739|219952.258|97.923 +639358.580|219947.860|97.646 +639363.371|219943.504|97.362 +639368.205|219939.112|97.167 +639372.942|219934.808|96.963 +639377.782|219930.410|96.771 +639382.537|219926.088|96.509 +639387.377|219921.680|95.793 +639392.269|219917.230|95.119 +639397.088|219912.847|94.595 +639401.822|219908.547|94.278 +639420.451|219891.636|94.875 +639439.285|219874.516|93.894 +639444.030|219870.200|93.193 +639453.421|219861.662|92.629 +639471.904|219844.874|92.498 +639485.587|219832.447|92.397 +639494.789|219824.083|92.123 +639499.297|219819.993|92.339 +639503.729|219815.973|92.690 +639508.197|219811.919|92.885 +639504.750|219812.327|92.522 +639500.181|219816.466|92.309 +639495.658|219820.560|91.882 +639486.306|219829.045|92.324 +639467.677|219845.938|92.583 +639458.368|219854.374|92.537 +639448.938|219862.930|92.940 +639434.655|219875.896|94.174 +639420.402|219888.826|94.924 +639401.685|219905.785|94.436 +639396.972|219910.052|94.330 +639392.166|219914.414|94.772 +639387.325|219918.809|95.439 +639382.418|219923.265|96.204 +639377.578|219927.655|96.634 +639372.832|219931.958|96.835 +639368.044|219936.299|97.015 +639363.252|219940.642|97.244 +639358.461|219944.989|97.500 +639353.669|219949.332|97.774 +639348.792|219953.752|97.978 +639344.007|219958.092|98.268 +639339.203|219962.448|98.396 +639334.394|219966.806|98.579 +639329.538|219971.211|98.765 +639324.732|219975.566|98.969 +639319.879|219979.967|99.188 +639315.002|219984.390|99.569 +639310.061|219988.874|100.072 +639305.154|219993.330|100.721 +639300.259|219997.771|101.319 +639295.337|220002.239|101.806 +639290.408|220006.711|102.349 +639285.467|220011.194|102.696 +639280.569|220015.638|103.108 +639275.604|220020.146|103.663 +639270.721|220024.575|104.038 +639265.774|220029.065|104.534 +639260.812|220033.564|104.824 +639255.917|220038.002|105.025 +639250.985|220042.473|105.159 +639246.108|220046.893|105.281 +639241.192|220051.349|105.360 +639236.242|220055.832|105.345 +639231.350|220060.264|105.299 +639226.397|220064.754|105.360 +639221.477|220069.213|105.555 +639216.515|220073.712|105.729 +639211.547|220078.220|106.001 +639206.548|220082.749|106.116 +639201.610|220087.227|106.211 +639196.593|220091.771|106.144 +639191.665|220096.237|106.199 +639186.623|220100.809|106.397 +639181.628|220105.338|106.625 +639176.580|220109.916|106.933 +639171.581|220114.452|107.272 +639166.491|220119.069|107.589 +639161.444|220123.650|107.985 +639156.387|220128.238|108.479 +639151.303|220132.849|108.838 +639146.237|220137.443|109.070 +639141.190|220142.018|109.158 +639136.136|220146.602|109.353 +639131.098|220151.168|109.433 +639126.011|220155.780|109.524 +639120.920|220160.394|109.695 +639115.870|220164.975|109.984 +639110.765|220169.605|110.329 +639105.659|220174.238|110.731 +639100.511|220178.911|111.118 +639095.372|220183.571|111.450 +639090.300|220188.171|111.618 +639085.192|220192.801|111.703 +639080.144|220197.379|111.719 +639074.999|220202.039|111.728 +639069.906|220206.657|111.746 +639064.868|220211.220|111.709 +639059.738|220215.868|111.645 +639054.611|220220.513|111.569 +639049.524|220225.125|111.627 +639044.394|220229.773|111.624 +639039.271|220234.418|111.594 +639029.026|220243.702|111.588 +639018.767|220253.005|111.868 +639013.585|220257.705|112.100 +639008.455|220262.353|112.295 +639003.283|220267.044|112.481 +638998.110|220271.735|112.694 +638992.941|220276.426|112.929 +638987.777|220281.104|113.081 +638982.663|220285.743|113.267 +638977.448|220290.474|113.575 +638972.281|220295.159|113.880 +638967.130|220299.831|114.020 +638961.979|220304.504|114.209 +638956.773|220309.225|114.507 +638951.607|220313.913|114.995 +638946.459|220318.583|115.221 +638941.262|220323.298|115.547 +638936.114|220327.967|115.861 +638930.920|220332.680|116.190 +638925.775|220337.349|116.550 +638920.587|220342.055|116.891 +638915.396|220346.765|117.272 +638910.258|220351.428|117.656 +638905.134|220356.076|117.863 +638899.907|220360.816|118.147 +638894.786|220365.461|118.360 +638889.610|220370.155|118.680 +638884.444|220374.840|118.878 +638879.329|220379.479|119.067 +638874.166|220384.164|119.272 +638869.015|220388.830|119.247 +638863.852|220393.515|119.528 +638848.441|220407.487|119.915 +638843.326|220412.132|120.408 +638838.166|220416.814|120.878 +638833.012|220421.493|121.305 +638827.907|220426.125|121.686 +638822.755|220430.801|122.128 +638817.610|220435.471|122.469 +638812.462|220440.137|122.816 +638807.320|220444.807|123.167 +638802.227|220449.424|123.450 +638797.088|220454.085|123.706 +638791.998|220458.706|124.066 +638786.865|220463.363|124.292 +638781.787|220467.969|124.538 +638776.654|220472.623|124.773 +638771.525|220477.277|124.962 +638766.489|220481.843|125.261 +638761.359|220486.497|125.532 +638756.281|220491.106|125.813 +638751.200|220495.715|126.130 +638746.074|220500.366|126.383 +638740.999|220504.968|126.565 +638735.924|220509.571|126.721 +638730.849|220514.173|126.858 +638725.774|220518.773|126.876 +638720.702|220523.369|126.831 +638715.627|220527.965|126.709 +638710.604|220532.522|126.651 +638705.529|220537.119|126.553 +638700.503|220541.672|126.422 +638695.477|220546.226|126.334 +638690.402|220550.826|126.230 +638685.376|220555.379|126.187 +638680.353|220559.936|126.349 +638675.329|220564.493|126.556 +638670.306|220569.050|126.632 +638665.283|220573.603|126.968 +638660.217|220578.203|127.251 +638655.243|220582.714|127.413 +638650.220|220587.267|127.550 +638645.197|220591.827|127.638 +638640.219|220596.341|127.650 +638635.190|220600.898|127.498 +638630.213|220605.415|127.462 +638615.244|220619.000|127.986 +638610.212|220623.560|127.879 +638600.260|220632.591|128.153 +638595.277|220637.108|128.056 +638590.299|220641.626|128.123 +638585.319|220646.143|128.175 +638580.387|220650.617|128.242 +638575.407|220655.137|128.312 +638570.426|220659.655|128.431 +638565.495|220664.129|128.516 +638560.511|220668.649|128.592 +638555.573|220673.130|128.565 +638550.636|220677.610|128.574 +638545.649|220682.131|128.641 +638540.714|220686.608|128.775 +638535.780|220691.089|128.870 +638530.839|220695.569|128.915 +638525.907|220700.047|129.159 +638520.966|220704.527|129.217 +638516.035|220709.005|129.467 +638511.100|220713.485|129.659 +638506.217|220717.917|129.946 +638501.279|220722.401|130.083 +638496.393|220726.833|130.348 +638491.458|220731.313|130.607 +638486.573|220735.748|130.851 +638481.638|220740.229|131.089 +638476.740|220744.673|131.204 +638471.802|220749.156|131.436 +638466.898|220753.606|131.464 +638461.999|220758.050|131.640 +638457.092|220762.503|131.643 +638452.234|220766.911|131.717 +638447.278|220771.407|131.768 +638442.395|220775.832|131.561 +638437.490|220780.282|131.717 +638432.644|220784.684|131.982 +638427.734|220789.140|132.085 +638422.842|220793.575|131.832 +638417.962|220797.997|131.768 +638413.088|220802.420|131.774 +638408.187|220806.861|131.509 +638403.301|220811.293|131.430 +638398.433|220815.709|131.592 +638393.611|220820.086|131.744 +638388.701|220824.539|131.430 +638383.836|220828.947|131.144 +638378.987|220833.342|131.076 +638374.037|220837.826|130.446 +638369.212|220842.197|130.153 +638364.314|220846.641|130.110 +638354.585|220855.455|129.342 +638349.744|220859.842|129.028 +638335.273|220872.972|129.117 +638311.199|220894.802|128.458 +638292.174|220912.072|129.363 +638287.458|220916.355|129.552 +638282.676|220920.695|129.604 +638277.946|220924.990|129.714 +638273.215|220929.284|129.827 +638263.763|220937.864|129.796 +638258.996|220942.186|129.684 +638254.287|220946.463|129.647 +638249.544|220950.764|129.373 +638240.184|220959.261|129.498 +638235.435|220963.568|129.248 +638230.781|220967.793|129.376 +638221.417|220976.291|129.257 +638216.769|220980.515|129.461 +638212.130|220984.721|129.421 +638202.916|220993.094|129.805 +638198.277|220997.304|129.815 +638193.653|221001.504|129.933 +638184.451|221009.858|130.202 +638179.879|221014.013|130.388 +638175.368|221018.112|130.677 +638170.787|221022.270|130.845 +638161.734|221030.496|131.272 +638148.131|221042.850|131.884 +638143.690|221046.882|132.088 +638139.149|221051.009|132.280 +638134.641|221055.103|132.408 +638130.160|221059.169|132.405 +638125.670|221063.247|132.341 +638116.642|221071.437|132.003 +638112.110|221075.549|131.759 +638107.611|221079.624|131.442 +638103.133|221083.687|131.268 +638098.656|221087.750|131.107 +638085.257|221099.902|130.375 +638080.816|221103.932|130.220 +638076.320|221108.007|129.769 +638071.870|221112.040|129.315 +638067.438|221116.060|128.982 +638058.608|221124.070|128.583 +638054.170|221128.093|128.294 +638045.404|221136.043|127.806 +638041.268|221139.810|128.669 +638032.743|221147.558|129.315 +638028.430|221151.475|129.239 +638024.077|221155.419|128.995 +638019.862|221159.250|129.208 +638015.634|221163.091|129.382 +638011.370|221166.962|129.367 +638007.042|221170.884|129.046 +638002.156|221175.271|125.599 +637997.727|221179.279|124.551 +637993.457|221183.150|124.346 +637989.275|221186.947|124.340 +637980.853|221194.595|124.353 +637976.629|221198.423|123.932 +637968.244|221206.031|123.728 +637955.659|221217.440|122.615 +637951.541|221221.177|122.579 +637943.387|221228.577|122.691 +637939.379|221232.223|123.216 +637935.432|221235.810|123.551 +637911.773|221257.311|125.666 +637907.787|221260.929|125.651 +637903.855|221264.498|125.675 +637887.764|221279.076|124.036 +637875.737|221289.967|122.198 +637871.790|221293.542|121.823 +637867.897|221297.072|121.698 +637864.005|221300.605|121.579 +637860.223|221304.037|121.500 +637856.382|221307.520|121.423 +637852.587|221310.962|121.317 +637848.890|221314.321|121.646 +637845.144|221317.722|121.780 +637833.860|221327.957|121.375 +637830.123|221331.347|121.155 +637826.356|221334.760|120.811 +637822.732|221338.049|120.866 +637797.168|221361.232|119.683 +637793.563|221364.506|119.689 +637782.946|221374.135|119.305 +637779.414|221377.338|119.229 +637775.942|221380.490|119.183 +637769.112|221386.689|119.369 +637762.378|221392.807|119.756 +637732.508|221419.910|119.509 +637729.244|221422.869|119.375 +637726.013|221425.795|119.180 +637719.667|221431.559|119.226 +637716.381|221434.534|118.857 +637713.248|221437.375|118.653 +637710.102|221440.228|118.616 +637703.933|221445.827|118.613 +637991.829|221183.073|124.566 +637996.060|221179.230|124.837 +638005.064|221171.086|127.711 +638009.584|221166.995|129.306 +638013.833|221163.133|129.229 +638018.070|221159.275|129.126 +638022.331|221155.401|128.873 +638026.555|221151.554|128.733 +638030.987|221147.534|129.437 +638035.163|221143.727|128.778 +638039.564|221139.734|129.357 +638043.731|221135.933|128.400 +638047.830|221132.184|127.077 +638052.305|221128.127|127.830 +638056.874|221123.985|128.873 +638061.226|221120.025|128.711 +638065.640|221116.017|128.922 +638070.084|221111.979|129.327 +638074.519|221107.952|129.696 +638078.987|221103.892|129.988 +638083.455|221099.835|130.308 +638087.845|221095.839|129.888 +638096.897|221087.622|131.028 +638101.423|221083.507|131.180 +638105.904|221079.435|131.381 +638110.385|221075.363|131.610 +638114.923|221071.239|131.909 +638119.516|221067.069|132.244 +638124.027|221062.970|132.411 +638128.535|221058.870|132.591 +638133.010|221054.798|132.262 +638137.588|221050.634|132.280 +638142.078|221046.550|132.073 +638146.558|221042.472|131.817 +638151.112|221038.330|131.735 +638155.626|221034.218|131.424 +638160.171|221030.085|131.320 +638164.755|221025.912|131.153 +638169.330|221021.749|130.951 +638173.832|221017.646|130.619 +638178.431|221013.458|130.278 +638183.019|221009.282|130.214 +638192.291|221000.842|130.129 +638196.905|220996.642|129.946 +638206.119|220988.254|129.549 +638210.780|220984.011|129.412 +638215.440|220979.765|129.293 +638224.804|220971.249|129.412 +638229.473|220966.994|129.050 +638234.170|220962.724|129.275 +638238.885|220958.432|129.278 +638243.653|220954.095|129.339 +638248.383|220949.794|129.519 +638253.068|220945.530|129.351 +638257.835|220941.193|129.476 +638262.605|220936.855|129.644 +638267.381|220932.512|129.894 +638272.106|220928.211|129.729 +638276.873|220923.868|129.543 +638281.634|220919.540|129.729 +638286.383|220915.215|129.415 +638291.134|220910.886|129.138 +638305.414|220897.884|128.635 +638310.288|220893.449|128.650 +638324.675|220880.355|128.449 +638334.383|220871.525|128.775 +638363.634|220844.925|130.162 +638368.514|220840.484|130.025 +638373.464|220835.988|130.668 +638383.300|220827.048|131.354 +638388.198|220822.592|131.537 +638398.001|220813.670|131.491 +638407.858|220804.703|131.573 +638412.741|220800.259|131.713 +638417.715|220795.736|131.777 +638427.569|220786.769|132.079 +638432.513|220782.267|131.845 +638437.417|220777.804|131.732 +638442.361|220773.303|131.525 +638447.290|220768.822|131.768 +638452.243|220764.314|131.735 +638457.242|220759.763|131.720 +638462.192|220755.258|131.646 +638467.132|220750.759|131.525 +638472.076|220746.258|131.430 +638477.060|220741.722|131.201 +638482.043|220737.184|131.025 +638486.975|220732.694|130.781 +638492.001|220728.113|130.580 +638496.930|220723.626|130.281 +638501.907|220719.091|130.065 +638506.933|220714.513|129.872 +638511.911|220709.983|129.638 +638516.934|220705.408|129.409 +638521.914|220700.873|129.235 +638526.937|220696.298|129.031 +638531.921|220691.762|128.964 +638536.947|220687.181|128.861 +638541.976|220682.603|128.775 +638547.002|220678.025|128.647 +638552.031|220673.444|128.620 +638557.061|220668.866|128.605 +638562.087|220664.288|128.550 +638567.162|220659.667|128.464 +638572.185|220655.092|128.379 +638577.208|220650.517|128.263 +638582.277|220645.899|128.150 +638587.303|220641.321|128.153 +638592.372|220636.703|128.099 +638597.444|220632.085|128.068 +638602.467|220627.510|128.071 +638607.533|220622.896|127.891 +638612.608|220618.278|128.031 +638617.625|220613.706|127.803 +638622.687|220609.094|127.535 +638627.753|220604.480|127.431 +638632.822|220599.862|127.471 +638637.891|220595.247|127.443 +638642.963|220590.632|127.538 +638648.028|220586.018|127.452 +638653.094|220581.403|127.376 +638658.160|220576.788|127.248 +638663.223|220572.174|126.925 +638668.285|220567.559|126.678 +638673.400|220562.899|126.443 +638678.466|220558.284|126.273 +638683.535|220553.666|126.148 +638688.604|220549.052|126.139 +638693.718|220544.391|126.175 +638698.787|220539.776|126.285 +638703.856|220535.165|126.392 +638708.973|220530.507|126.514 +638714.042|220525.893|126.684 +638719.111|220521.278|126.806 +638724.226|220516.621|126.794 +638729.294|220512.006|126.782 +638734.363|220507.388|126.709 +638739.481|220502.725|126.614 +638744.553|220498.104|126.404 +638749.625|220493.480|126.105 +638754.745|220488.814|125.813 +638759.820|220484.190|125.547 +638764.898|220479.560|125.249 +638770.022|220474.891|125.032 +638775.100|220470.264|124.755 +638780.178|220465.634|124.526 +638785.250|220461.016|124.316 +638790.331|220456.383|124.026 +638795.415|220451.750|123.786 +638800.499|220447.114|123.463 +638805.635|220442.432|123.152 +638810.676|220437.836|122.798 +638815.769|220433.194|122.438 +638820.863|220428.552|122.112 +638825.959|220423.903|121.698 +638831.058|220419.255|121.274 +638836.164|220414.595|120.710 +638841.223|220409.983|120.207 +638846.332|220405.323|119.735 +638851.431|220400.678|119.570 +638856.482|220396.075|119.470 +638866.644|220386.815|119.025 +638871.731|220382.185|119.268 +638876.790|220377.574|119.092 +638881.853|220372.962|118.881 +638886.968|220368.299|118.610 +638892.034|220363.684|118.409 +638897.102|220359.063|118.177 +638902.171|220354.446|117.994 +638907.194|220349.864|117.775 +638912.278|220345.228|117.370 +638917.359|220340.595|117.043 +638922.443|220335.959|116.723 +638927.531|220331.320|116.388 +638932.572|220326.721|116.025 +638937.616|220322.121|115.684 +638942.707|220317.479|115.416 +638947.751|220312.880|115.141 +638952.808|220308.265|114.733 +638957.855|220303.666|114.495 +638962.951|220299.021|114.303 +638968.005|220294.412|114.038 +638973.001|220289.855|113.938 +638978.054|220285.250|113.752 +638983.117|220280.635|113.505 +638988.177|220276.020|113.270 +638993.243|220271.400|113.017 +638998.214|220266.870|112.798 +639003.335|220262.201|112.520 +639008.306|220257.668|112.353 +639013.372|220253.051|112.231 +639028.474|220239.286|112.008 +639033.470|220234.732|111.703 +639038.484|220230.163|111.758 +639043.501|220225.594|111.834 +639048.482|220221.056|111.770 +639053.508|220216.471|111.752 +639058.531|220211.896|111.819 +639063.511|220207.358|111.837 +639068.495|220202.819|111.865 +639073.533|220198.229|111.840 +639078.529|220193.675|111.770 +639083.521|220189.125|111.761 +639088.532|220184.559|111.615 +639093.546|220179.984|111.426 +639098.582|220175.393|111.085 +639103.629|220170.788|110.673 +639108.680|220166.179|110.243 +639113.685|220161.613|109.844 +639118.729|220157.011|109.536 +639123.712|220152.469|109.384 +639128.742|220147.885|109.298 +639133.728|220143.341|109.183 +639138.712|220138.799|109.113 +639143.750|220134.206|109.024 +639148.761|220129.634|108.765 +639153.793|220125.046|108.375 +639158.835|220120.444|107.918 +639163.876|220115.845|107.515 +639168.920|220111.242|107.116 +639173.913|220106.688|106.772 +639178.951|220102.092|106.482 +639183.944|220097.538|106.193 +639188.982|220092.945|105.964 +639193.951|220088.416|105.921 +639198.907|220083.904|106.025 +639203.881|220079.369|105.985 +639208.871|220074.821|105.863 +639213.891|220070.240|105.537 +639218.899|220065.671|105.315 +639223.855|220061.154|105.165 +639228.844|220056.610|105.153 +639233.782|220052.108|105.168 +639238.729|220047.600|105.156 +639243.682|220043.086|105.110 +639248.650|220038.556|104.986 +639253.567|220034.073|104.903 +639258.553|220029.528|104.723 +639263.518|220024.996|104.345 +639268.538|220020.418|103.986 +639273.467|220015.919|103.583 +639278.505|220011.322|103.160 +639283.455|220006.805|102.693 +639288.451|220002.245|102.273 +639293.407|219997.725|101.819 +639298.363|219993.202|101.392 +639303.392|219988.612|100.855 +639308.339|219984.098|100.246 +639313.314|219979.559|99.792 +639318.221|219975.082|99.475 +639323.171|219970.567|99.234 +639328.072|219966.102|99.027 +639332.915|219961.686|98.859 +639337.868|219957.168|98.685 +639342.745|219952.721|98.393 +639347.607|219948.290|98.201 +639352.490|219943.836|97.914 +639357.324|219939.426|97.643 +639362.198|219934.985|97.472 +639367.059|219930.553|97.384 +639371.851|219926.182|97.131 +639376.764|219921.699|96.799 +639381.641|219917.249|96.140 +639386.551|219912.762|95.308 +639391.513|219908.230|94.503 +639396.171|219903.990|94.851 +639400.752|219899.826|95.640 +639410.231|219891.191|95.799 +639414.995|219886.845|95.631 +639419.710|219882.547|95.482 +639424.529|219878.152|95.086 +639429.229|219873.860|94.784 +639434.003|219869.508|94.406 +639443.546|219860.800|93.479 +639452.937|219852.232|92.885 +639457.588|219847.995|92.989 +639462.328|219843.670|92.653 +639466.988|219839.415|92.227 +639480.975|219826.662|91.583 +639494.536|219814.311|92.181 +639499.044|219810.203|92.382 +639503.558|219806.091|92.571 +639501.330|219805.024|92.455 +639496.782|219809.157|92.160 +639463.791|219839.174|92.422 +639458.993|219843.542|92.745 +639454.290|219847.821|92.882 +639435.018|219865.372|94.156 +639430.189|219869.773|94.534 +639420.546|219878.554|95.284 +639415.684|219882.983|95.631 +639410.853|219887.381|95.851 +639406.098|219891.709|95.957 +639401.261|219896.111|95.985 +639396.610|219900.332|95.293 +639391.971|219904.545|94.552 +639387.106|219908.973|94.787 +639382.101|219913.542|95.829 +639377.163|219918.044|96.536 +639372.271|219922.503|97.024 +639367.428|219926.914|97.256 +639362.545|219931.361|97.442 +639357.677|219935.793|97.567 +639352.849|219940.188|97.786 +639347.966|219944.635|98.057 +639343.084|219949.082|98.350 +639338.222|219953.511|98.545 +639333.290|219958.001|98.877 +639328.447|219962.414|99.030 +639323.552|219966.867|99.182 +639318.651|219971.332|99.429 +639313.792|219975.755|99.719 +639308.827|219980.281|100.097 +639303.898|219984.774|100.596 +639298.970|219989.267|101.115 +639294.053|219993.748|101.581 +639289.146|219998.219|102.026 +639284.153|220002.767|102.407 +639279.252|220007.235|102.867 +639274.308|220011.740|103.315 +639269.368|220016.242|103.775 +639264.454|220020.716|104.080 +639259.486|220025.246|104.452 +639254.594|220029.699|104.659 +639249.659|220034.195|104.861 +639244.801|220038.614|104.885 +639239.890|220043.086|104.961 +639234.989|220047.545|104.989 +639230.097|220051.995|104.976 +639225.159|220056.491|104.973 +639220.270|220060.941|104.986 +639215.308|220065.458|105.202 +639210.337|220069.987|105.522 +639205.384|220074.498|105.717 +639200.458|220078.982|105.741 +639195.481|220083.511|105.802 +639190.577|220087.974|105.708 +639185.599|220092.503|105.812 +639180.655|220097.008|106.095 +639175.666|220101.555|106.375 +639170.670|220106.103|106.708 +639165.629|220110.696|107.070 +639160.685|220115.204|107.473 +639155.634|220119.807|107.966 +639150.642|220124.358|108.439 +639145.615|220128.936|108.789 +639140.617|220133.486|108.936 +639135.627|220138.028|109.033 +639130.641|220142.569|109.155 +639125.614|220147.148|109.204 +639120.634|220151.680|109.301 +639115.593|220156.273|109.545 +639110.548|220160.867|109.841 +639105.488|220165.478|110.320 +639100.441|220170.078|110.716 +639095.381|220174.689|111.274 +639090.297|220179.322|111.624 +639085.292|220183.879|111.722 +639080.248|220188.472|111.758 +639075.197|220193.069|111.862 +639070.153|220197.662|111.935 +639065.069|220202.289|111.944 +639060.034|220206.873|111.972 +639054.959|220211.491|111.950 +639049.932|220216.066|111.938 +639044.861|220220.684|111.920 +639039.786|220225.301|111.950 +639034.729|220229.901|111.822 +639029.605|220234.561|111.886 +639019.330|220243.925|113.115 +639009.217|220253.115|112.453 +639004.103|220257.766|112.563 +638998.979|220262.429|112.862 +638993.870|220267.081|113.008 +638988.701|220271.784|113.316 +638983.638|220276.389|113.523 +638978.481|220281.083|113.764 +638973.327|220285.774|113.989 +638968.231|220290.413|114.133 +638963.089|220295.092|114.264 +638957.989|220299.734|114.489 +638952.847|220304.412|114.684 +638947.690|220309.106|115.135 +638942.545|220313.791|115.462 +638937.412|220318.464|115.650 +638932.221|220323.191|116.016 +638927.086|220327.864|116.291 +638921.947|220332.543|116.662 +638916.765|220337.261|117.004 +638911.638|220341.930|117.309 +638906.460|220346.643|117.674 +638901.290|220351.349|117.906 +638896.173|220356.006|118.150 +638891.009|220360.706|118.360 +638885.846|220365.403|118.577 +638880.689|220370.100|118.793 +638875.532|220374.791|118.979 +638870.377|220379.482|119.134 +638865.242|220384.151|118.936 +638854.933|220393.533|119.436 +638844.646|220402.894|119.646 +638839.507|220407.566|119.631 +638834.338|220412.281|120.622 +638829.184|220416.978|121.231 +638824.039|220421.666|121.673 +638818.894|220426.351|122.097 +638813.755|220431.030|122.451 +638808.616|220435.708|122.765 +638803.434|220440.427|123.088 +638798.347|220445.060|123.478 +638793.165|220449.775|123.776 +638788.039|220454.445|124.048 +638782.967|220459.059|124.328 +638777.794|220463.768|124.560 +638772.668|220468.435|124.770 +638767.593|220473.056|125.090 +638762.469|220477.719|125.355 +638757.299|220482.425|125.596 +638752.225|220487.043|125.916 +638747.107|220491.703|126.096 +638741.989|220496.361|126.364 +638736.920|220500.975|126.568 +638731.757|220505.675|126.700 +638726.688|220510.284|126.751 +638721.574|220514.935|126.678 +638716.508|220519.541|126.617 +638711.393|220524.192|126.587 +638706.328|220528.801|126.410 +638701.213|220533.449|126.233 +638696.147|220538.057|126.148 +638691.078|220542.666|126.008 +638686.013|220547.275|125.992 +638680.947|220551.883|125.998 +638675.881|220556.492|126.169 +638670.815|220561.100|126.242 +638665.801|220565.666|126.504 +638660.739|220570.275|126.858 +638655.676|220574.883|127.087 +638650.662|220579.446|127.285 +638645.645|220584.009|127.346 +638640.625|220588.569|127.355 +638635.605|220593.132|127.209 +638630.585|220597.695|127.327 +638625.565|220602.255|127.285 +638620.548|220606.817|127.382 +638615.534|220611.377|127.644 +638610.559|220615.897|127.650 +638605.591|220620.415|127.864 +638600.568|220624.980|127.812 +638595.600|220629.498|128.025 +638590.625|220634.018|128.013 +638585.651|220638.541|128.019 +638580.677|220643.061|128.102 +638575.702|220647.581|128.187 +638570.777|220652.062|128.260 +638565.751|220656.628|128.294 +638560.825|220661.105|128.434 +638555.851|220665.629|128.574 +638550.922|220670.109|128.608 +638545.987|220674.593|128.595 +638541.059|220679.076|128.708 +638536.127|220683.557|128.821 +638531.195|220688.041|128.900 +638526.267|220692.524|129.013 +638521.378|220696.965|129.077 +638516.452|220701.446|129.306 +638511.572|220705.884|129.504 +638506.647|220710.364|129.763 +638501.764|220714.802|129.955 +638496.884|220719.243|130.177 +638492.004|220723.681|130.439 +638487.121|220728.122|130.668 +638482.238|220732.560|130.900 +638477.352|220737.004|131.095 +638472.466|220741.448|131.287 +638467.626|220745.849|131.464 +638462.728|220750.302|131.512 +638457.885|220754.707|131.662 +638452.980|220759.163|131.677 +638448.125|220763.576|131.683 +638443.254|220767.999|131.531 +638438.396|220772.419|131.546 +638433.537|220776.832|131.622 +638428.682|220781.246|131.717 +638423.805|220785.677|131.579 +638414.112|220794.483|131.521 +638409.232|220798.918|131.381 +638404.395|220803.313|131.235 +638399.570|220807.696|131.262 +638394.751|220812.079|131.357 +638389.911|220816.474|131.250 +638385.080|220820.867|131.238 +638380.228|220825.274|131.037 +638375.393|220829.663|130.513 +638370.532|220834.074|130.284 +638365.731|220838.438|130.186 +638356.048|220847.232|129.708 +638346.383|220856.007|129.077 +638336.842|220864.682|129.263 +638327.198|220873.436|128.559 +638317.631|220882.125|128.214 +638308.090|220890.800|128.199 +638284.444|220912.307|129.476 +638270.316|220925.151|129.778 +638260.865|220933.737|129.659 +638256.137|220938.032|129.434 +638251.416|220942.321|129.266 +638246.719|220946.588|129.321 +638242.043|220950.837|129.184 +638237.334|220955.116|129.162 +638232.683|220959.344|129.257 +638227.998|220963.599|129.117 +638223.359|220967.820|129.318 +638214.078|220976.254|129.409 +638209.472|220980.442|129.559 +638204.870|220984.624|129.394 +638200.206|220988.861|129.525 +638195.637|220993.015|129.632 +638191.105|220997.142|130.010 +638186.460|221001.360|129.970 +638181.882|221005.524|130.080 +638177.364|221009.633|130.257 +638172.789|221013.790|130.418 +638163.697|221022.062|130.814 +638154.648|221030.289|131.259 +638150.131|221034.398|131.543 +638145.665|221038.461|131.848 +638132.214|221050.695|132.521 +638127.700|221054.798|132.591 +638109.714|221071.135|131.909 +638105.169|221075.259|131.582 +638100.695|221079.325|131.384 +638096.245|221083.364|131.058 +638091.758|221087.436|130.857 +638082.846|221095.532|130.232 +638078.454|221099.521|130.351 +638074.049|221103.523|130.092 +638069.633|221107.532|129.812 +638065.149|221111.601|129.446 +638060.711|221115.630|129.074 +638056.362|221119.580|128.943 +638047.343|221127.749|126.953 +638043.274|221131.468|128.419 +638039.204|221135.180|129.629 +638034.824|221139.158|129.409 +638030.606|221142.998|129.808 +638026.089|221147.089|128.614 +638021.867|221150.926|128.760 +638017.612|221154.797|129.016 +638013.394|221158.631|129.217 +638009.188|221162.457|129.211 +638004.732|221166.492|128.199 +638000.080|221170.686|125.938 +637995.786|221174.585|125.547 +637978.778|221190.026|124.563 +637970.368|221197.664|124.142 +637913.770|221249.133|125.407 +637909.844|221252.705|125.642 +637881.784|221278.189|123.179 +637870.031|221288.864|122.298 +637862.240|221295.938|121.762 +637858.406|221299.422|121.664 +637854.553|221302.927|121.490 +637850.752|221306.380|121.338 +637846.982|221309.806|121.338 +637843.187|221313.257|121.237 +637835.784|221319.990|121.417 +637832.102|221323.337|121.399 +637828.343|221326.753|121.280 +637824.594|221330.158|120.997 +637820.888|221333.523|120.686 +637817.291|221336.797|120.838 +637813.695|221340.070|121.000 +637806.392|221346.703|120.488 +637799.073|221353.347|119.966 +637795.504|221356.590|119.875 +637791.932|221359.839|119.768 +637784.949|221366.195|120.049 +637781.307|221369.499|119.494 +637777.814|221372.669|119.348 +637774.330|221375.835|119.238 +637770.870|221378.981|119.232 +637767.453|221382.087|119.204 +637763.997|221385.229|119.235 +637760.675|221388.256|119.589 +637757.358|221391.274|119.762 +637750.702|221397.327|119.842 +637724.425|221421.211|119.439 +637721.209|221424.134|119.281 +637718.027|221427.027|119.256 +637711.632|221432.833|118.738 +637708.529|221435.653|118.638 +637705.451|221438.451|118.638 +637696.228|221446.833|118.534 +637979.174|221187.728|124.852 +637983.392|221183.881|125.063 +637987.666|221179.989|125.560 +637996.127|221172.274|125.663 +638000.379|221168.397|125.843 +638005.049|221164.173|128.227 +638009.422|221160.195|129.104 +638013.659|221156.327|129.022 +638017.871|221152.484|128.818 +638022.130|221148.597|128.598 +638026.348|221144.745|128.464 +638030.856|221140.651|129.620 +638035.117|221136.759|129.199 +638039.467|221132.797|129.546 +638043.563|221129.038|128.254 +638052.299|221121.077|128.684 +638056.639|221117.118|128.772 +638061.126|221113.030|129.144 +638065.564|221108.989|129.534 +638069.983|221104.962|129.857 +638074.418|221100.924|130.272 +638078.731|221096.979|129.732 +638083.260|221092.855|130.165 +638092.228|221084.684|130.863 +638096.665|221080.642|131.107 +638101.210|221076.497|131.442 +638105.724|221072.382|131.598 +638110.253|221068.261|132.162 +638114.758|221064.155|132.308 +638123.808|221055.901|132.610 +638128.279|221051.823|132.600 +638132.769|221047.724|132.433 +638137.186|221043.685|131.793 +638141.782|221039.497|132.009 +638146.241|221035.425|131.674 +638150.704|221031.350|131.372 +638159.744|221023.096|130.930 +638168.858|221014.781|130.695 +638173.390|221010.642|130.260 +638177.971|221006.463|130.183 +638182.537|221002.299|130.007 +638187.146|220998.093|129.805 +638196.317|220989.726|129.495 +638200.923|220985.523|129.330 +638205.549|220981.305|129.315 +638210.192|220977.068|129.098 +638214.882|220972.795|129.245 +638219.534|220968.552|129.104 +638224.200|220964.297|129.117 +638228.861|220960.045|129.110 +638233.570|220955.753|129.098 +638238.255|220951.477|128.934 +638242.994|220947.161|129.208 +638247.706|220942.866|129.287 +638252.422|220938.568|129.412 +638257.146|220934.259|129.257 +638261.944|220929.891|129.696 +638271.395|220921.268|129.485 +638280.917|220912.587|129.540 +638285.587|220908.320|129.031 +638299.888|220895.278|128.815 +638304.622|220890.959|128.483 +638328.594|220869.092|128.114 +638333.468|220864.657|128.760 +638338.363|220860.201|129.171 +638357.770|220842.514|129.946 +638362.692|220838.030|130.299 +638367.523|220833.626|130.226 +638372.425|220829.157|130.433 +638377.329|220824.689|130.680 +638382.239|220820.214|131.037 +638387.110|220815.773|130.958 +638392.048|220811.272|131.137 +638401.850|220802.338|131.250 +638406.715|220797.900|131.201 +638411.665|220793.392|131.640 +638416.584|220788.908|131.695 +638421.482|220784.437|131.561 +638426.438|220779.920|131.515 +638431.303|220775.482|131.592 +638436.256|220770.965|131.589 +638441.200|220766.457|131.454 +638446.119|220761.973|131.662 +638451.069|220757.459|131.689 +638456.013|220752.951|131.628 +638460.948|220748.446|131.485 +638465.846|220743.981|131.473 +638470.827|220739.436|131.305 +638475.758|220734.937|131.144 +638480.733|220730.399|130.903 +638485.658|220725.900|130.702 +638490.584|220721.407|130.452 +638495.604|220716.826|130.205 +638500.526|220712.333|129.964 +638505.501|220707.795|129.778 +638510.469|220703.259|129.510 +638515.437|220698.724|129.296 +638520.457|220694.146|129.068 +638525.435|220689.604|129.004 +638530.455|220685.023|128.867 +638535.478|220680.442|128.793 +638540.452|220675.903|128.693 +638545.475|220671.322|128.620 +638550.498|220666.741|128.565 +638555.518|220662.163|128.477 +638560.535|220657.585|128.342 +638565.555|220653.007|128.275 +638570.621|220648.386|128.202 +638575.638|220643.808|128.129 +638580.655|220639.233|128.038 +638585.721|220634.612|128.010 +638590.741|220630.034|127.967 +638595.749|220625.462|127.708 +638600.821|220620.841|127.827 +638605.884|220616.224|127.788 +638610.895|220611.652|127.547 +638615.951|220607.034|127.276 +638621.017|220602.416|127.315 +638626.077|220597.798|127.221 +638631.139|220593.181|127.178 +638636.153|220588.609|127.117 +638641.222|220583.991|127.315 +638646.328|220579.330|127.178 +638651.342|220574.758|127.111 +638656.447|220570.098|126.925 +638661.507|220565.480|126.645 +638666.563|220560.863|126.322 +638671.672|220556.202|126.108 +638676.735|220551.584|125.916 +638686.909|220542.303|125.852 +638692.020|220537.643|125.931 +638697.083|220533.028|126.066 +638702.195|220528.368|126.218 +638707.306|220523.710|126.392 +638712.369|220519.093|126.489 +638717.477|220514.435|126.605 +638722.589|220509.775|126.654 +638727.697|220505.115|126.690 +638732.809|220500.451|126.620 +638737.923|220495.788|126.410 +638742.989|220491.164|126.233 +638748.104|220486.497|126.023 +638753.218|220481.828|125.736 +638758.287|220477.198|125.459 +638763.405|220472.528|125.236 +638768.525|220467.856|124.983 +638773.597|220463.226|124.697 +638778.721|220458.550|124.444 +638783.881|220453.838|124.157 +638788.959|220449.205|123.889 +638794.037|220444.566|123.572 +638799.216|220439.842|123.249 +638804.297|220435.199|122.917 +638809.381|220430.560|122.630 +638814.565|220425.827|122.210 +638819.607|220421.221|121.823 +638824.746|220416.530|121.457 +638829.897|220411.824|120.783 +638845.305|220397.745|119.092 +638850.395|220393.103|119.061 +638865.729|220379.110|118.729 +638870.859|220374.437|119.003 +638875.964|220369.777|118.781 +638881.067|220365.123|118.647 +638886.221|220360.417|118.467 +638891.329|220355.753|118.266 +638896.395|220351.129|118.001 +638901.555|220346.420|117.812 +638906.627|220341.790|117.525 +638911.748|220337.118|117.272 +638916.875|220332.436|116.955 +638921.953|220327.797|116.656 +638927.037|220323.152|116.281 +638932.124|220318.506|115.928 +638937.208|220313.861|115.663 +638942.289|220309.225|115.489 +638947.398|220304.559|114.956 +638952.482|220299.917|114.797 +638957.520|220295.317|114.654 +638962.616|220290.663|114.404 +638967.658|220286.060|114.236 +638972.708|220281.449|114.029 +638977.756|220276.843|113.877 +638982.861|220272.180|113.636 +638987.872|220267.605|113.395 +638992.935|220262.981|113.121 +638997.991|220258.363|112.974 +639003.002|220253.791|112.834 +639023.119|220235.427|112.267 +639028.145|220230.840|112.106 +639033.156|220226.268|112.121 +639038.124|220221.732|112.115 +639043.138|220217.160|112.161 +639048.110|220212.622|112.161 +639053.136|220208.038|112.136 +639058.113|220203.493|112.112 +639063.094|220198.948|112.100 +639068.074|220194.404|112.097 +639073.027|220189.881|111.914 +639078.020|220185.324|111.837 +639082.970|220180.807|111.752 +639087.908|220176.302|111.810 +639092.867|220171.775|111.664 +639097.954|220167.121|110.789 +639102.907|220162.595|110.298 +639107.915|220158.017|109.804 +639112.862|220153.497|109.451 +639117.842|220148.952|109.283 +639122.780|220144.441|109.070 +639127.696|220139.954|109.082 +639132.631|220135.452|108.972 +639137.566|220130.947|108.875 +639142.464|220126.473|108.686 +639147.481|220121.892|108.357 +639152.419|220117.381|107.902 +639157.411|220112.818|107.433 +639162.361|220108.295|106.948 +639167.305|220103.777|106.537 +639172.246|220099.263|106.183 +639177.181|220094.755|105.918 +639182.115|220090.247|105.671 +639187.050|220085.742|105.455 +639191.912|220081.305|105.449 +639196.822|220076.827|105.495 +639201.693|220072.377|105.455 +639206.582|220067.915|105.318 +639211.498|220063.425|105.019 +639216.415|220058.935|104.733 +639221.313|220054.464|104.605 +639226.138|220050.059|104.665 +639231.024|220045.603|104.690 +639235.861|220041.187|104.702 +639240.701|220036.773|104.748 +639245.614|220032.287|104.635 +639250.433|220027.885|104.504 +639255.362|220023.386|104.342 +639260.211|220018.958|104.062 +639265.122|220014.471|103.739 +639269.998|220010.012|103.315 +639274.869|220005.562|102.971 +639279.770|220001.084|102.474 +639284.662|219996.613|102.050 +639289.597|219992.099|101.694 +639294.447|219987.667|101.285 +639299.348|219983.183|100.874 +639304.261|219978.690|100.441 +639309.117|219974.252|100.072 +639314.015|219969.772|99.767 +639318.870|219965.334|99.459 +639323.707|219960.914|99.286 +639328.560|219956.480|99.054 +639333.415|219952.039|98.807 +639338.280|219947.595|98.545 +639343.099|219943.190|98.286 +639347.982|219938.725|97.969 +639352.822|219934.299|97.622 +639357.635|219929.901|97.475 +639362.445|219925.509|97.372 +639367.282|219921.089|97.128 +639372.137|219916.648|96.796 +639376.993|219912.204|96.213 +639381.994|219907.623|95.128 +639386.847|219903.185|94.634 +639391.492|219898.951|95.299 +639396.107|219894.745|96.134 +639400.852|219890.414|96.293 +639405.592|219886.086|96.213 +639410.429|219881.660|95.896 +639415.196|219877.305|95.713 +639419.997|219872.915|95.384 +639424.825|219868.499|94.927 +639429.653|219864.085|94.510 +639434.432|219859.711|94.089 +639439.196|219855.356|93.781 +639443.997|219850.970|93.580 +639448.740|219846.636|93.421 +639477.107|219820.709|92.394 +639495.801|219803.628|92.099 +639498.815|219797.480|92.312 +639494.237|219801.644|91.916 +639466.061|219827.299|92.345 +639446.914|219844.743|93.510 +639442.104|219849.126|93.717 +639437.246|219853.551|93.933 +639432.433|219857.938|94.205 +639427.593|219862.351|94.653 +639422.713|219866.801|95.058 +639417.821|219871.260|95.561 +639412.962|219875.689|95.899 +639408.088|219880.130|96.088 +639403.263|219884.522|96.296 +639398.417|219888.939|96.381 +639393.577|219893.343|96.162 +639388.892|219897.601|95.409 +639384.186|219901.875|94.753 +639379.239|219906.389|95.195 +639374.262|219910.936|96.128 +639369.281|219915.481|96.823 +639364.380|219919.946|97.079 +639359.509|219924.384|97.201 +639354.587|219928.874|97.362 +639349.704|219933.324|97.600 +639344.757|219937.832|97.942 +639339.816|219942.340|98.283 +639334.878|219946.842|98.640 +639329.956|219951.328|98.920 +639325.049|219955.800|99.139 +639320.096|219960.317|99.368 +639315.139|219964.831|99.615 +639310.235|219969.306|99.908 +639305.227|219973.871|100.231 +639300.314|219978.352|100.624 +639295.312|219982.912|100.977 +639290.362|219987.426|101.346 +639285.370|219991.980|101.712 +639280.380|219996.530|102.066 +639275.393|220001.078|102.443 +639270.395|220005.635|102.907 +639265.472|220010.128|103.263 +639260.452|220014.706|103.614 +639255.490|220019.229|103.943 +639250.500|220023.773|104.129 +639245.560|220028.278|104.373 +639240.552|220032.841|104.406 +639235.644|220037.313|104.464 +639230.707|220041.812|104.416 +639225.760|220046.316|104.449 +639220.831|220050.803|104.361 +639215.851|220055.342|104.330 +639210.879|220059.874|104.614 +639205.911|220064.400|104.903 +639200.915|220068.957|105.074 +639195.935|220073.496|105.150 +639191.009|220077.982|105.187 +639186.044|220082.505|105.205 +639181.055|220087.053|105.415 +639176.068|220091.598|105.635 +639171.078|220096.148|105.924 +639166.037|220100.745|106.238 +639161.038|220105.305|106.671 +639155.979|220109.919|107.214 +639150.986|220114.476|107.656 +639145.945|220119.075|108.125 +639140.918|220123.660|108.494 +639135.926|220128.210|108.619 +639130.878|220132.810|108.802 +639125.895|220137.351|108.893 +639120.872|220141.929|108.933 +639115.882|220146.474|109.119 +639110.844|220151.067|109.350 +639105.848|220155.624|109.676 +639100.743|220160.281|110.140 +639095.729|220164.856|110.707 +639090.587|220169.557|111.615 +639085.603|220174.092|111.475 +639080.522|220178.728|111.859 +639075.539|220183.269|111.801 +639070.537|220187.826|111.926 +639065.435|220192.478|112.115 +639060.442|220197.025|112.194 +639055.410|220201.612|112.237 +639050.371|220206.203|112.334 +639045.342|220210.787|112.392 +639040.279|220215.395|112.292 +639035.262|220219.967|112.273 +639030.197|220224.582|112.258 +639025.180|220229.160|112.301 +639020.111|220233.784|112.401 +639004.910|220247.646|112.776 +638999.845|220252.270|112.987 +638994.742|220256.925|113.041 +638989.625|220261.594|113.313 +638984.565|220266.212|113.544 +638979.463|220270.869|113.718 +638974.351|220275.533|114.029 +638969.249|220280.190|114.276 +638964.162|220284.829|114.340 +638959.068|220289.477|114.495 +638953.920|220294.174|114.779 +638948.784|220298.862|114.968 +638943.685|220303.516|115.349 +638938.555|220308.198|115.507 +638933.419|220312.883|115.760 +638928.326|220317.534|116.156 +638923.193|220322.219|116.470 +638918.064|220326.904|116.806 +638912.943|220331.576|116.998 +638907.819|220336.252|117.278 +638902.650|220340.970|117.559 +638897.529|220345.643|117.827 +638892.415|220350.309|118.040 +638887.257|220355.015|118.199 +638882.146|220359.682|118.452 +638876.992|220364.382|118.616 +638871.889|220369.039|118.750 +638866.759|220373.715|118.464 +638846.225|220392.448|118.970 +638830.781|220406.551|120.143 +638825.617|220411.273|121.134 +638820.527|220415.921|121.463 +638815.334|220420.663|122.015 +638810.198|220425.351|122.371 +638805.065|220430.039|122.676 +638799.886|220434.767|122.947 +638794.756|220439.451|123.335 +638789.627|220444.133|123.636 +638784.454|220448.854|123.947 +638779.340|220453.524|124.246 +638774.216|220458.200|124.511 +638769.043|220462.921|124.837 +638763.926|220467.594|125.008 +638758.805|220472.266|125.282 +638753.688|220476.939|125.587 +638748.524|220481.651|125.764 +638743.407|220486.321|126.102 +638738.295|220490.987|126.282 +638733.181|220495.654|126.428 +638728.069|220500.317|126.611 +638722.958|220504.980|126.642 +638717.846|220509.641|126.507 +638712.738|220514.298|126.416 +638707.675|220518.916|126.270 +638702.563|220523.576|126.191 +638697.452|220528.234|125.992 +638692.340|220532.894|125.846 +638687.229|220537.554|125.776 +638682.166|220542.172|125.688 +638677.103|220546.793|125.767 +638671.992|220551.453|125.941 +638666.883|220556.117|126.078 +638661.824|220560.735|126.309 +638656.767|220565.352|126.675 +638651.707|220569.970|126.876 +638646.602|220574.630|127.053 +638641.539|220579.248|127.053 +638636.480|220583.866|127.035 +638631.414|220588.484|126.946 +638626.354|220593.101|127.053 +638621.340|220597.676|127.084 +638616.280|220602.294|127.166 +638611.218|220606.915|127.193 +638606.256|220611.444|127.416 +638601.202|220616.059|127.791 +638596.188|220620.634|127.876 +638591.168|220625.215|127.769 +638586.157|220629.790|127.937 +638581.189|220634.323|127.967 +638576.172|220638.901|127.995 +638571.203|220643.436|128.117 +638566.235|220647.972|128.181 +638561.215|220652.550|128.245 +638556.293|220657.042|128.306 +638551.324|220661.578|128.467 +638546.359|220666.110|128.644 +638541.431|220670.606|128.641 +638536.456|220675.148|128.687 +638531.534|220679.640|128.803 +638526.605|220684.136|128.891 +638521.682|220688.632|129.025 +638516.708|220693.170|129.132 +638511.786|220697.663|129.370 +638506.915|220702.113|129.635 +638501.992|220706.609|129.836 +638497.119|220711.059|130.061 +638492.193|220715.555|130.290 +638487.319|220720.005|130.503 +638482.391|220724.504|130.708 +638477.517|220728.954|130.988 +638472.686|220733.368|131.168 +638467.754|220737.869|131.339 +638462.914|220742.286|131.433 +638458.022|220746.751|131.509 +638453.179|220751.171|131.576 +638448.283|220755.639|131.634 +638443.416|220760.077|131.430 +638438.566|220764.503|131.494 +638433.711|220768.935|131.467 +638428.855|220773.363|131.512 +638423.994|220777.798|131.485 +638419.178|220782.194|131.427 +638414.304|220786.638|131.287 +638409.491|220791.030|131.320 +638404.654|220795.440|131.073 +638399.842|220799.832|131.168 +638395.020|220804.234|131.150 +638390.192|220808.638|131.104 +638385.367|220813.039|131.095 +638380.572|220817.413|130.918 +638375.765|220821.796|130.613 +638370.913|220826.219|130.391 +638366.121|220830.590|130.324 +638356.490|220839.371|129.748 +638342.079|220852.508|128.967 +638337.309|220856.858|128.784 +638322.870|220870.022|128.056 +638313.321|220878.736|127.782 +638308.590|220883.049|127.663 +638299.190|220891.638|128.437 +638280.396|220908.802|129.357 +638275.681|220913.102|129.491 +638270.993|220917.379|129.446 +638266.250|220921.704|129.397 +638261.581|220925.965|129.540 +638256.863|220930.266|129.336 +638247.499|220938.803|129.144 +638242.778|220943.107|128.973 +638238.102|220947.371|128.790 +638233.445|220951.620|128.772 +638228.778|220955.875|128.708 +638224.124|220960.121|128.754 +638219.509|220964.336|129.114 +638214.898|220968.543|129.147 +638210.228|220972.804|129.126 +638205.613|220977.013|129.181 +638200.983|220981.234|129.132 +638196.387|220985.432|129.348 +638191.769|220989.644|129.434 +638187.219|220993.798|129.653 +638182.631|220997.980|129.656 +638178.139|221002.089|130.299 +638173.524|221006.298|130.119 +638169.043|221010.389|130.564 +638159.915|221018.719|130.650 +638150.905|221026.945|131.278 +638146.430|221031.030|131.479 +638141.950|221035.126|131.982 +638137.509|221039.177|132.128 +638132.992|221043.301|132.421 +638128.554|221047.352|132.597 +638110.607|221063.720|132.293 +638106.120|221067.807|131.948 +638101.579|221071.943|131.610 +638092.663|221080.072|131.095 +638088.158|221084.175|130.741 +638083.696|221088.241|130.360 +638070.486|221100.290|130.092 +638066.036|221104.343|129.879 +638061.677|221108.315|129.626 +638057.246|221112.354|129.269 +638052.805|221116.398|128.870 +638048.403|221120.412|128.726 +638043.874|221124.524|127.318 +638039.771|221128.285|128.580 +638035.486|221132.196|128.851 +638031.304|221136.021|129.415 +638026.918|221140.014|128.888 +638022.559|221143.986|128.537 +638018.347|221147.829|128.705 +638014.083|221151.725|128.885 +638009.910|221155.529|129.043 +638005.692|221159.381|129.220 +638000.946|221163.673|126.407 +637996.715|221167.529|126.319 +637984.097|221179.035|125.983 +637975.553|221186.816|125.017 +637942.537|221216.925|124.316 +637926.364|221231.668|124.340 +637918.479|221238.864|125.020 +637914.486|221242.503|125.151 +637878.767|221275.041|123.383 +637874.890|221278.574|123.234 +637870.915|221282.188|122.673 +637866.971|221285.779|122.265 +637863.136|221289.272|122.118 +637859.290|221292.774|121.935 +637855.492|221296.234|121.756 +637851.642|221299.742|121.588 +637847.829|221303.214|121.366 +637844.050|221306.658|121.301 +637840.307|221310.072|121.177 +637836.573|221313.473|121.113 +637832.842|221316.872|121.079 +637829.102|221320.279|121.009 +637825.503|221323.565|121.326 +637807.193|221340.250|120.884 +637803.453|221343.648|120.262 +637799.854|221346.928|120.219 +637796.272|221350.193|120.052 +637792.660|221353.481|119.985 +637789.119|221356.712|119.988 +637782.273|221362.964|120.786 +637778.649|221366.256|120.082 +637775.037|221369.538|119.439 +637771.513|221372.748|119.372 +637768.109|221375.854|119.354 +637764.643|221379.011|119.326 +637761.266|221382.090|119.448 +637751.293|221391.185|119.854 +637747.949|221394.236|119.921 +637718.576|221420.998|119.290 +637712.175|221426.829|118.897 +637709.017|221429.700|118.784 +637705.890|221432.553|118.784 +637702.753|221435.409|118.756 +637693.326|221443.989|117.668 +637982.320|221178.477|126.017 +637986.602|221174.560|126.355 +637990.750|221170.766|126.258 +637994.996|221166.885|126.431 +637999.199|221163.036|126.410 +638003.762|221158.884|128.016 +638008.185|221154.852|128.903 +638012.419|221150.978|128.836 +638016.619|221147.131|128.598 +638020.889|221143.224|128.473 +638025.156|221139.316|128.370 +638029.597|221135.268|129.190 +638038.071|221127.502|128.443 +638042.344|221123.589|128.144 +638046.806|221119.513|128.629 +638051.168|221115.527|128.858 +638055.618|221111.461|129.318 +638060.041|221107.419|129.647 +638064.460|221103.380|129.979 +638068.737|221099.464|129.510 +638073.193|221095.391|129.799 +638077.618|221091.341|129.952 +638082.126|221087.223|130.296 +638091.078|221079.042|130.982 +638095.553|221074.951|131.198 +638100.046|221070.846|131.549 +638104.538|221066.743|131.912 +638109.065|221062.604|132.223 +638131.526|221042.057|132.317 +638136.006|221037.955|132.140 +638140.484|221033.855|131.957 +638144.967|221029.747|131.500 +638149.481|221025.613|131.244 +638153.980|221021.493|130.921 +638158.540|221017.320|130.668 +638163.112|221013.138|130.872 +638167.626|221008.999|130.348 +638172.201|221004.811|130.266 +638176.795|221000.601|129.985 +638181.327|220996.450|129.632 +638185.951|220992.219|129.589 +638190.532|220988.019|129.275 +638195.156|220983.789|129.278 +638199.801|220979.534|129.086 +638204.406|220975.318|128.986 +638209.085|220971.039|129.074 +638218.424|220962.492|129.205 +638223.082|220958.228|128.821 +638227.806|220953.906|128.986 +638232.418|220949.681|128.665 +638237.160|220945.344|129.007 +638241.854|220941.050|128.989 +638246.579|220936.724|128.848 +638251.285|220932.418|128.961 +638265.528|220919.387|129.284 +638270.252|220915.062|129.269 +638275.038|220910.685|129.339 +638284.554|220901.971|129.092 +638293.966|220893.342|128.019 +638303.582|220884.539|127.931 +638317.951|220871.390|127.879 +638351.979|220840.273|129.577 +638361.769|220831.324|130.394 +638366.637|220826.868|130.272 +638371.519|220822.400|130.360 +638376.369|220817.965|130.631 +638386.132|220809.034|130.903 +638391.057|220804.529|131.012 +638395.934|220800.067|131.162 +638405.755|220791.082|131.171 +638410.628|220786.622|131.375 +638415.530|220782.136|131.308 +638420.486|220777.600|131.363 +638425.387|220773.114|131.375 +638430.294|220768.624|131.461 +638435.241|220764.098|131.497 +638440.127|220759.623|131.351 +638445.089|220755.085|131.607 +638450.036|220750.561|131.671 +638454.965|220746.044|131.546 +638459.896|220741.533|131.415 +638464.831|220737.016|131.384 +638469.802|220732.459|131.235 +638474.725|220727.954|131.046 +638479.644|220723.449|130.796 +638484.607|220718.902|130.534 +638489.575|220714.351|130.354 +638494.540|220709.803|130.122 +638499.456|220705.301|129.869 +638504.467|220700.714|129.647 +638509.433|220696.167|129.464 +638514.389|220691.625|129.114 +638519.357|220687.077|129.025 +638524.322|220682.530|128.879 +638529.336|220677.940|128.763 +638534.304|220673.395|128.678 +638539.273|220668.847|128.662 +638544.287|220664.260|128.547 +638549.297|220659.676|128.422 +638554.257|220655.134|128.263 +638559.267|220650.547|128.169 +638564.281|220645.963|128.108 +638569.292|220641.379|128.025 +638574.300|220636.791|127.946 +638579.311|220632.207|127.913 +638584.365|220627.583|127.699 +638589.379|220622.996|127.782 +638594.390|220618.412|127.800 +638599.440|220613.788|127.611 +638604.448|220609.207|127.510 +638609.493|220604.586|127.077 +638614.500|220600.002|127.071 +638619.557|220595.375|127.013 +638624.608|220590.751|126.834 +638629.661|220586.128|126.733 +638634.669|220581.546|126.687 +638639.774|220576.877|126.837 +638644.782|220572.296|126.913 +638649.885|220567.629|126.785 +638654.935|220563.002|126.547 +638659.937|220558.421|126.279 +638665.036|220553.752|125.898 +638670.090|220549.128|125.788 +638675.144|220544.501|125.633 +638680.197|220539.874|125.544 +638685.303|220535.208|125.566 +638690.310|220530.626|125.660 +638695.413|220525.957|125.843 +638700.469|220521.336|126.050 +638705.526|220516.712|126.169 +638710.628|220512.046|126.261 +638715.682|220507.422|126.364 +638720.739|220502.801|126.584 +638725.841|220498.129|126.480 +638730.898|220493.502|126.358 +638736.003|220488.829|126.239 +638741.108|220484.153|125.974 +638746.168|220479.520|125.715 +638751.228|220474.891|125.572 +638756.336|220470.212|125.352 +638761.448|220465.533|125.127 +638766.511|220460.894|124.813 +638771.625|220456.212|124.526 +638776.740|220451.528|124.270 +638781.799|220446.895|123.953 +638786.914|220442.210|123.685 +638792.035|220437.522|123.377 +638797.109|220432.874|123.021 +638802.230|220428.183|122.725 +638807.357|220423.486|122.371 +638812.438|220418.832|121.987 +638817.568|220414.132|121.579 +638822.701|220409.428|121.137 +638827.797|220404.759|120.527 +638843.134|220390.699|118.823 +638863.583|220371.981|118.333 +638868.674|220367.326|118.296 +638873.752|220362.678|118.470 +638878.848|220358.018|118.369 +638883.944|220353.351|118.235 +638889.043|220348.682|118.049 +638894.198|220343.960|117.812 +638899.254|220339.334|117.641 +638904.369|220334.646|117.287 +638909.480|220329.970|117.089 +638914.546|220325.337|116.918 +638919.664|220320.655|116.669 +638924.790|220315.961|116.315 +638929.875|220311.307|115.903 +638934.998|220306.622|115.715 +638940.076|220301.974|115.465 +638945.203|220297.286|115.303 +638950.293|220292.626|114.949 +638955.383|220287.969|114.675 +638960.464|220283.320|114.532 +638965.545|220278.672|114.440 +638970.587|220274.060|114.267 +638975.686|220269.394|113.995 +638980.737|220264.770|113.721 +638985.787|220260.152|113.550 +638990.890|220255.483|113.334 +638995.897|220250.902|113.124 +639000.948|220246.281|113.002 +639006.002|220241.657|112.892 +639011.055|220237.036|112.807 +639016.066|220232.452|112.688 +639031.093|220218.709|112.529 +639036.104|220214.131|112.548 +639041.115|220209.546|112.548 +639046.125|220204.965|112.590 +639051.106|220200.408|112.435 +639056.080|220195.858|112.389 +639061.119|220191.249|112.228 +639066.099|220186.695|112.176 +639071.098|220182.120|111.962 +639076.097|220177.545|111.770 +639081.123|220172.946|111.365 +639086.109|220168.386|111.368 +639091.044|220163.875|111.423 +639096.140|220159.199|110.414 +639101.139|220154.621|109.914 +639106.138|220150.043|109.448 +639111.121|220145.480|109.170 +639116.099|220140.930|108.997 +639121.021|220136.425|108.875 +639125.992|220131.877|108.786 +639130.924|220127.363|108.646 +639135.904|220122.809|108.539 +639140.803|220118.329|108.332 +639145.768|220113.784|107.997 +639150.700|220109.267|107.555 +639155.741|220104.649|107.049 +639160.636|220100.163|106.549 +639165.620|220095.603|106.193 +639170.548|220091.092|105.912 +639175.489|220086.568|105.562 +639180.415|220082.060|105.351 +639185.288|220077.601|105.196 +639190.214|220073.093|105.043 +639195.085|220068.640|104.973 +639199.967|220064.172|104.818 +639204.856|220059.697|104.641 +639209.767|220055.201|104.342 +639214.668|220050.718|104.153 +639219.533|220046.271|104.233 +639224.358|220041.857|104.269 +639229.237|220037.395|104.300 +639234.069|220032.978|104.352 +639238.964|220028.501|104.303 +639243.850|220024.026|104.004 +639248.675|220019.613|103.815 +639253.551|220015.151|103.629 +639258.459|220010.658|103.285 +639263.308|220006.220|102.998 +639268.182|220001.755|102.587 +639273.056|219997.292|102.200 +639277.975|219992.790|101.880 +639282.806|219988.368|101.508 +639287.671|219983.915|101.264 +639292.505|219979.492|100.935 +639297.345|219975.060|100.584 +639302.228|219970.592|100.310 +639307.017|219966.209|100.017 +639311.857|219961.780|99.752 +639316.697|219957.351|99.527 +639321.504|219952.953|99.200 +639326.298|219948.564|98.984 +639331.151|219944.123|98.740 +639335.933|219939.746|98.347 +639340.828|219935.265|97.920 +639345.620|219930.876|97.512 +639350.377|219926.524|97.350 +639355.181|219922.129|97.219 +639359.954|219917.761|97.006 +639364.761|219913.362|96.637 +639369.659|219908.873|96.046 +639374.518|219904.426|95.439 +639379.297|219900.049|95.012 +639383.966|219895.785|95.497 +639388.563|219891.591|96.128 +639393.202|219887.354|96.524 +639397.987|219882.977|96.430 +639402.718|219878.652|96.378 +639407.467|219874.308|96.259 +639412.206|219869.971|95.927 +639417.007|219865.573|95.564 +639421.771|219861.211|95.153 +639426.489|219856.892|94.747 +639431.299|219852.491|94.415 +639436.014|219848.172|94.068 +639440.781|219843.807|93.741 +639445.442|219839.543|93.458 +639450.175|219835.215|93.360 +639487.489|219801.077|92.208 +639492.158|219796.801|91.849 +639493.167|219792.549|91.836 +639488.614|219796.712|91.867 +639465.610|219817.734|92.135 +639446.816|219834.922|93.391 +639442.110|219839.229|93.613 +639437.358|219843.572|93.821 +639432.628|219847.900|94.211 +639427.849|219852.271|94.610 +639423.033|219856.679|94.967 +639418.257|219861.050|95.403 +639413.441|219865.454|95.802 +639408.646|219869.840|96.113 +639403.818|219874.257|96.366 +639399.060|219878.606|96.530 +639394.287|219882.965|96.530 +639389.480|219887.357|96.448 +639384.796|219891.627|95.994 +639380.059|219895.949|95.573 +639375.316|219900.274|95.186 +639370.439|219904.737|95.579 +639365.505|219909.254|96.052 +639360.576|219913.762|96.503 +639355.693|219918.230|97.024 +639350.765|219922.735|97.237 +639345.897|219927.182|97.420 +639340.983|219931.675|97.609 +639336.043|219936.195|97.981 +639331.093|219940.721|98.432 +639326.109|219945.281|98.832 +639321.196|219949.774|99.112 +639316.252|219954.294|99.328 +639311.290|219958.833|99.664 +639306.355|219963.344|99.862 +639301.369|219967.900|100.087 +639296.431|219972.415|100.359 +639291.392|219977.023|100.660 +639286.455|219981.537|100.983 +639281.438|219986.124|101.209 +639276.460|219990.678|101.529 +639271.425|219995.284|101.938 +639266.390|219999.889|102.361 +639261.357|220004.495|102.800 +639256.353|220009.070|103.084 +639251.351|220013.645|103.401 +639246.319|220018.244|103.586 +639241.286|220022.847|103.803 +639236.260|220027.440|104.013 +639231.258|220032.012|104.083 +639226.281|220036.557|103.983 +639221.246|220041.156|103.977 +639216.262|220045.710|103.980 +639211.227|220050.312|104.038 +639206.179|220054.927|104.205 +639201.123|220059.548|104.449 +639196.078|220064.163|104.659 +639191.037|220068.771|104.861 +639185.959|220073.413|105.013 +639180.939|220078.001|105.095 +639175.928|220082.579|105.159 +639170.798|220087.269|105.394 +639165.769|220091.869|105.650 +639160.682|220096.520|106.001 +639155.631|220101.141|106.497 +639150.474|220105.862|107.107 +639145.381|220110.523|107.625 +639140.315|220115.159|107.963 +639135.246|220119.795|108.347 +639130.153|220124.452|108.539 +639125.115|220129.058|108.713 +639120.098|220133.642|108.725 +639115.029|220138.272|108.799 +639109.951|220142.917|108.981 +639104.867|220147.562|109.231 +639099.764|220152.235|109.728 +639094.659|220156.904|110.259 +639089.508|220161.626|111.289 +639084.488|220166.210|111.078 +639079.437|220170.828|111.216 +639074.371|220175.461|111.517 +639069.248|220180.148|111.929 +639064.200|220184.763|112.109 +639059.113|220189.411|112.221 +639054.023|220194.066|112.407 +639048.988|220198.671|112.575 +639043.907|220203.313|112.715 +639038.886|220207.900|112.734 +639033.836|220212.515|112.621 +639028.770|220217.142|112.657 +639023.704|220221.772|112.743 +639018.651|220226.387|112.712 +639013.594|220231.007|112.755 +639008.534|220235.625|112.819 +639003.472|220240.252|112.980 +638998.412|220244.876|113.154 +638993.346|220249.506|113.428 +638988.302|220254.111|113.441 +638983.242|220258.735|113.672 +638978.146|220263.392|113.840 +638973.132|220267.977|114.197 +638968.036|220272.631|114.370 +638962.945|220277.282|114.529 +638957.910|220281.885|114.648 +638952.820|220286.533|114.824 +638947.782|220291.138|115.062 +638942.691|220295.790|115.337 +638937.604|220300.441|115.620 +638932.575|220305.034|115.779 +638927.494|220309.679|116.050 +638922.410|220314.328|116.400 +638917.329|220318.973|116.766 +638912.217|220323.642|116.864 +638907.194|220328.233|117.086 +638902.080|220332.908|117.321 +638897.014|220337.535|117.537 +638891.951|220342.162|117.766 +638886.843|220346.832|117.946 +638881.786|220351.452|118.150 +638876.733|220356.070|118.299 +638871.633|220360.727|118.418 +638866.604|220365.318|118.083 +638861.514|220369.963|118.016 +638851.379|220379.223|118.129 +638846.283|220383.880|118.345 +638831.028|220397.831|119.793 +638825.971|220402.461|120.549 +638820.875|220407.121|121.094 +638815.782|220411.782|121.625 +638810.701|220416.427|121.859 +638805.613|220421.078|122.320 +638800.535|220425.720|122.588 +638795.454|220430.368|122.987 +638790.376|220435.007|123.274 +638785.301|220439.646|123.554 +638780.227|220444.289|123.904 +638775.164|220448.915|124.179 +638770.046|220453.594|124.478 +638764.974|220458.230|124.816 +638759.906|220462.860|125.047 +638754.794|220467.536|125.252 +638749.728|220472.166|125.523 +638744.662|220476.796|125.742 +638739.554|220481.462|125.861 +638734.491|220486.092|126.139 +638729.428|220490.716|126.303 +638724.323|220495.382|126.370 +638719.263|220500.003|126.404 +638714.155|220504.666|126.361 +638709.098|220509.281|126.096 +638704.039|220513.902|126.032 +638698.979|220518.520|125.867 +638693.874|220523.183|125.715 +638688.860|220527.758|125.520 +638683.751|220532.422|125.392 +638678.691|220537.042|125.352 +638673.635|220541.663|125.432 +638668.575|220546.284|125.569 +638663.518|220550.908|125.730 +638658.465|220555.529|126.029 +638653.411|220560.149|126.373 +638648.355|220564.770|126.578 +638643.298|220569.388|126.684 +638638.238|220574.012|126.608 +638633.224|220578.590|126.437 +638628.165|220583.211|126.514 +638623.108|220587.831|126.596 +638618.097|220592.409|126.764 +638613.040|220597.030|126.858 +638607.981|220601.654|126.959 +638602.976|220606.229|127.212 +638592.866|220615.471|127.647 +638582.792|220624.676|127.733 +638577.781|220629.257|127.833 +638572.767|220633.838|127.888 +638567.701|220638.462|127.922 +638562.736|220643.000|128.001 +638557.719|220647.584|128.050 +638552.705|220652.166|128.166 +638547.740|220656.704|128.288 +638542.726|220661.285|128.437 +638537.761|220665.827|128.580 +638532.789|220670.365|128.684 +638527.766|220674.956|128.681 +638522.844|220679.454|128.790 +638517.827|220684.039|128.915 +638512.904|220688.537|129.068 +638507.942|220693.076|129.373 +638503.020|220697.575|129.537 +638498.100|220702.071|129.772 +638493.138|220706.609|130.065 +638488.215|220711.108|130.278 +638483.293|220715.610|130.452 +638478.370|220720.109|130.695 +638473.448|220724.611|130.912 +638468.571|220729.067|131.150 +638463.642|220733.572|131.299 +638458.708|220738.083|131.354 +638453.867|220742.505|131.442 +638448.939|220747.010|131.668 +638444.035|220751.488|131.561 +638439.118|220755.978|131.311 +638434.229|220760.446|131.436 +638429.364|220764.887|131.308 +638424.460|220769.368|131.275 +638419.593|220773.812|131.137 +638414.701|220778.283|131.351 +638409.863|220782.700|131.009 +638404.956|220787.180|131.070 +638400.134|220791.588|130.976 +638390.448|220800.436|130.958 +638385.604|220804.855|130.723 +638380.785|220809.260|130.775 +638375.927|220813.692|130.397 +638371.148|220818.059|130.394 +638366.259|220822.522|130.275 +638361.525|220826.847|130.290 +638323.059|220861.960|128.129 +638299.248|220883.704|127.605 +638289.848|220892.306|128.370 +638285.166|220896.585|128.751 +638280.457|220900.892|128.867 +638266.406|220913.739|129.174 +638261.700|220918.040|128.970 +638257.033|220922.307|129.129 +638252.361|220926.578|128.851 +638247.621|220930.912|128.858 +638242.979|220935.155|128.885 +638238.303|220939.428|128.644 +638233.646|220943.686|128.595 +638229.043|220947.892|128.614 +638224.395|220952.144|128.644 +638219.811|220956.338|128.845 +638215.227|220960.532|129.040 +638210.569|220964.793|129.068 +638205.970|220969.000|129.196 +638201.364|220973.206|128.925 +638196.756|220977.421|129.010 +638192.233|220981.564|129.373 +638187.627|220985.770|129.178 +638183.092|220989.924|129.485 +638178.532|220994.094|129.638 +638174.064|220998.187|130.101 +638169.528|221002.342|130.439 +638164.956|221006.518|130.217 +638155.958|221014.753|130.820 +638151.429|221018.896|130.955 +638146.976|221022.974|131.256 +638142.529|221027.043|131.631 +638133.601|221035.215|132.189 +638129.130|221039.308|132.433 +638106.745|221059.772|132.198 +638102.262|221063.869|131.869 +638097.784|221067.959|131.595 +638093.300|221072.056|131.302 +638088.847|221076.122|130.912 +638084.358|221080.221|130.641 +638079.904|221084.291|130.287 +638075.454|221088.354|129.997 +638071.032|221092.398|129.869 +638066.652|221096.400|129.729 +638062.226|221100.442|129.345 +638057.944|221104.365|129.805 +638053.542|221108.385|129.598 +638049.114|221112.433|129.242 +638044.712|221116.450|128.793 +638036.059|221124.363|128.793 +638031.743|221128.307|128.589 +638018.856|221140.087|128.449 +638014.574|221144.007|128.504 +638010.392|221147.835|128.839 +638006.167|221151.700|128.967 +638001.705|221155.760|127.596 +637997.249|221159.820|126.547 +637993.033|221163.676|126.511 +637988.854|221167.501|126.681 +637959.578|221194.260|125.877 +637951.105|221201.992|124.663 +637947.127|221205.638|125.212 +637930.863|221220.512|125.112 +637922.783|221227.900|125.035 +637918.860|221231.494|125.441 +637914.898|221235.115|125.441 +637903.233|221245.801|126.535 +637891.355|221256.661|126.282 +637883.137|221264.153|124.456 +637879.077|221267.857|123.679 +637875.072|221271.505|122.947 +637871.180|221275.065|122.719 +637867.282|221278.625|122.490 +637863.380|221282.192|122.249 +637859.561|221285.681|122.167 +637855.718|221289.196|121.987 +637844.217|221299.705|121.213 +637840.441|221303.156|121.155 +637836.707|221306.569|121.076 +637832.970|221309.986|120.985 +637829.279|221313.360|120.884 +637825.545|221316.774|120.835 +637821.848|221320.154|120.738 +637814.600|221326.787|120.732 +637810.961|221330.115|120.914 +637807.279|221333.480|120.704 +637803.584|221336.854|120.241 +637799.997|221340.134|120.232 +637796.367|221343.450|120.061 +637792.825|221346.693|120.037 +637789.241|221349.967|119.863 +637785.775|221353.140|120.177 +637782.517|221356.136|121.106 +637779.207|221359.175|121.844 +637775.372|221362.662|120.503 +637771.754|221365.960|119.826 +637764.713|221372.391|119.290 +637761.290|221375.525|119.201 +637757.901|221378.624|119.268 +637754.475|221381.758|119.204 +637751.186|221384.769|119.470 +637747.821|221387.845|119.454 +637744.584|221390.810|119.723 +637718.432|221414.725|119.232 +637715.131|221417.739|118.955 +637711.989|221420.614|118.857 +637708.795|221423.534|118.790 +637705.698|221426.362|118.692 +637702.513|221429.276|118.665 +637692.920|221438.027|117.147 +637980.570|221173.119|126.712 +637984.862|221169.190|127.120 +637989.001|221165.395|126.742 +637993.204|221161.542|126.718 +637997.349|221157.744|126.675 +638001.836|221153.651|127.897 +638006.283|221149.594|128.946 +638010.480|221145.741|128.711 +638014.668|221141.904|128.412 +638018.938|221137.990|128.318 +638023.202|221134.083|128.199 +638036.123|221122.247|128.370 +638040.494|221118.248|128.629 +638044.880|221114.234|128.995 +638049.306|221110.183|129.339 +638053.722|221106.142|129.623 +638058.194|221102.051|129.976 +638066.896|221094.072|129.644 +638071.279|221090.060|129.827 +638075.759|221085.958|130.022 +638080.261|221081.837|130.360 +638084.696|221077.780|130.619 +638089.189|221073.668|130.936 +638093.697|221069.544|131.378 +638098.214|221065.408|131.610 +638102.676|221061.324|131.823 +638107.230|221057.160|132.311 +638129.660|221036.611|132.351 +638134.162|221032.481|132.024 +638138.637|221028.378|131.829 +638143.084|221024.300|131.485 +638147.619|221020.139|131.076 +638156.626|221011.879|130.543 +638161.213|221007.676|130.522 +638165.767|221003.500|130.314 +638170.229|220999.407|129.818 +638174.829|220995.188|129.595 +638179.425|220990.979|129.723 +638183.988|220986.794|129.281 +638188.584|220982.579|129.089 +638197.817|220974.120|129.059 +638202.456|220969.868|128.867 +638207.086|220965.623|128.644 +638216.489|220957.012|128.934 +638221.088|220952.793|128.516 +638225.788|220948.487|128.516 +638230.436|220944.229|128.513 +638235.136|220939.925|128.537 +638239.882|220935.575|128.583 +638244.607|220931.253|128.845 +638254.028|220922.618|128.870 +638258.783|220918.266|129.071 +638263.495|220913.947|128.934 +638268.219|220909.618|128.925 +638272.990|220905.248|128.909 +638277.754|220900.883|128.839 +638282.432|220896.591|128.492 +638287.157|220892.257|128.147 +638291.930|220887.880|127.791 +638301.421|220879.178|127.541 +638311.007|220870.394|127.303 +638325.562|220857.074|128.367 +638340.088|220843.772|128.922 +638349.802|220834.881|129.388 +638354.707|220830.389|129.687 +638364.521|220821.409|130.366 +638369.337|220816.996|130.281 +638374.223|220812.521|130.479 +638379.094|220808.059|130.519 +638384.028|220803.542|130.775 +638388.920|220799.064|131.101 +638393.803|220794.587|130.805 +638398.659|220790.137|130.775 +638403.572|220785.635|130.881 +638408.489|220781.133|131.031 +638413.396|220776.637|131.110 +638418.294|220772.150|131.070 +638423.159|220767.697|131.275 +638428.093|220763.174|131.162 +638433.004|220758.675|131.381 +638437.942|220754.152|131.305 +638442.846|220749.662|131.500 +638447.793|220745.130|131.640 +638452.718|220740.616|131.482 +638457.641|220736.102|131.339 +638462.573|220731.584|131.323 +638467.498|220727.070|131.192 +638472.457|220722.523|130.884 +638477.374|220718.015|130.686 +638482.290|220713.507|130.485 +638487.249|220708.959|130.250 +638492.211|220704.408|130.040 +638497.170|220699.861|129.781 +638502.136|220695.310|129.638 +638507.092|220690.766|129.357 +638512.045|220686.224|129.046 +638516.958|220681.719|128.876 +638521.969|220677.126|128.772 +638526.931|220672.575|128.672 +638531.939|220667.982|128.550 +638536.901|220663.431|128.486 +638541.860|220658.883|128.324 +638546.865|220654.290|128.193 +638551.870|220649.700|128.065 +638556.829|220645.152|128.019 +638561.837|220640.559|127.967 +638566.842|220635.969|127.855 +638571.850|220631.378|127.846 +638576.848|220626.791|127.647 +638581.811|220622.243|127.696 +638591.866|220613.023|127.565 +638596.862|220608.439|127.318 +638601.863|220603.852|127.218 +638606.853|220599.267|126.657 +638611.861|220594.677|126.867 +638616.905|220590.047|126.578 +638621.907|220585.463|126.498 +638626.958|220580.830|126.404 +638631.965|220576.243|126.718 +638637.022|220571.613|126.943 +638642.064|220566.983|126.614 +638647.065|220562.396|126.529 +638652.110|220557.766|126.285 +638657.154|220553.136|125.950 +638662.202|220548.506|125.724 +638667.249|220543.873|125.371 +638672.300|220539.243|125.422 +638677.350|220534.610|125.279 +638682.401|220529.980|125.319 +638687.451|220525.350|125.465 +638692.502|220520.720|125.581 +638697.555|220516.090|125.770 +638702.606|220511.464|125.916 +638707.654|220506.834|126.087 +638712.704|220502.207|126.279 +638717.755|220497.577|126.343 +638722.805|220492.947|126.340 +638727.856|220488.314|126.221 +638732.955|220483.635|126.093 +638737.963|220479.042|125.803 +638743.062|220474.363|125.703 +638748.119|220469.724|125.486 +638753.172|220465.085|125.291 +638758.232|220460.446|125.047 +638763.338|220455.758|124.761 +638768.397|220451.116|124.517 +638773.460|220446.468|124.191 +638778.514|220441.832|123.901 +638783.579|220437.184|123.621 +638788.694|220432.490|123.304 +638793.760|220427.835|122.981 +638798.832|220423.181|122.640 +638803.949|220418.484|122.356 +638809.027|220413.821|121.868 +638814.102|220409.163|121.570 +638819.235|220404.451|120.997 +638824.316|220399.785|120.631 +638829.409|220395.106|119.963 +638839.650|220385.694|118.558 +638844.747|220381.015|118.095 +638865.117|220362.337|118.043 +638870.140|220357.731|118.287 +638875.230|220353.065|118.193 +638880.323|220348.392|118.037 +638885.419|220343.717|117.851 +638890.513|220339.044|117.766 +638895.615|220334.362|117.516 +638900.717|220329.680|117.312 +638905.820|220324.996|117.117 +638910.873|220320.357|117.013 +638915.979|220315.669|116.824 +638921.096|220310.969|116.477 +638926.165|220306.314|116.196 +638931.283|220301.614|115.964 +638936.403|220296.914|115.699 +638941.475|220292.257|115.483 +638946.556|220287.588|115.138 +638951.680|220282.887|114.977 +638956.755|220278.227|114.797 +638961.830|220273.573|114.718 +638966.908|220268.906|114.544 +638971.995|220264.237|114.322 +638977.137|220259.515|114.050 +638982.181|220254.885|113.834 +638987.265|220250.216|113.724 +638992.362|220245.537|113.520 +638997.403|220240.913|113.435 +639002.551|220236.186|113.255 +639007.599|220231.553|113.157 +639012.649|220226.917|113.017 +639017.697|220222.284|112.977 +639022.744|220217.654|112.968 +639027.798|220213.015|112.889 +639032.842|220208.388|112.956 +639037.893|220203.755|112.990 +639042.956|220199.104|112.883 +639047.991|220194.483|112.618 +639053.066|220189.823|112.450 +639058.089|220185.214|112.365 +639063.130|220180.584|112.100 +639068.190|220175.936|111.700 +639073.253|220171.285|111.295 +639078.306|220166.643|111.002 +639083.308|220162.049|110.789 +639088.316|220157.459|111.042 +639093.373|220152.808|110.341 +639098.441|220148.147|109.588 +639103.480|220143.517|109.155 +639108.500|220138.906|108.920 +639113.496|220134.322|108.957 +639118.464|220129.759|108.799 +639123.499|220125.138|108.539 +639128.501|220120.542|108.168 +639133.527|220115.927|108.030 +639138.465|220111.391|107.838 +639143.476|220106.789|107.464 +639148.474|220102.196|106.845 +639153.498|220097.578|106.439 +639158.484|220092.994|105.955 +639163.504|220088.382|105.650 +639168.436|220083.853|105.303 +639173.407|220079.290|105.065 +639178.327|220074.773|104.864 +639183.298|220070.207|104.675 +639188.166|220065.735|104.537 +639193.146|220061.163|104.336 +639198.023|220056.686|104.196 +639202.939|220052.175|104.160 +639207.877|220047.639|103.977 +639212.760|220043.156|103.873 +639217.637|220038.681|103.833 +639222.517|220034.201|103.785 +639227.342|220029.772|103.806 +639232.185|220025.328|103.730 +639237.098|220020.814|103.513 +639241.987|220016.324|103.178 +639246.867|220011.840|102.910 +639251.741|220007.363|102.709 +639256.627|220002.876|102.459 +639261.482|219998.414|102.108 +639266.329|219993.964|101.861 +639271.196|219989.493|101.480 +639276.052|219985.033|101.212 +639280.913|219980.565|100.926 +639285.781|219976.097|100.639 +639290.542|219971.723|100.404 +639295.419|219967.242|100.100 +639300.180|219962.874|99.938 +639305.005|219958.439|99.685 +639309.836|219954.005|99.441 +639314.603|219949.628|99.310 +639319.391|219945.229|99.057 +639324.207|219940.804|98.673 +639329.011|219936.393|98.402 +639333.805|219931.986|97.887 +639338.594|219927.584|97.442 +639343.340|219923.226|97.277 +639348.094|219918.861|97.088 +639352.889|219914.457|96.698 +639357.665|219910.065|96.131 +639362.390|219905.724|95.899 +639367.178|219901.326|95.622 +639371.799|219897.086|95.729 +639376.453|219892.819|95.963 +639381.107|219888.552|96.204 +639385.676|219884.364|96.658 +639390.300|219880.124|96.823 +639394.982|219875.826|96.698 +639399.664|219871.526|96.591 +639404.309|219867.261|96.433 +639409.036|219862.918|96.128 +639413.703|219858.629|95.884 +639418.409|219854.307|95.476 +639423.127|219849.970|95.015 +639427.821|219845.654|94.461 +639432.463|219841.390|94.180 +639437.182|219837.056|93.808 +639441.824|219832.791|93.583 +639446.475|219828.518|93.327 +639474.194|219803.055|91.940 +639487.843|219790.528|91.931 +639492.424|219786.322|91.745 +639490.302|219785.435|91.635 +639485.834|219789.522|91.748 +639481.548|219793.423|90.514 +639476.708|219797.874|91.967 +639472.176|219802.019|91.952 +639453.903|219818.740|92.303 +639444.576|219827.284|93.293 +639439.916|219831.551|93.559 +639435.277|219835.800|93.741 +639430.604|219840.076|94.107 +639425.870|219844.414|94.543 +639421.192|219848.702|95.003 +639416.437|219853.058|95.607 +639411.734|219857.364|95.970 +639407.015|219861.687|96.168 +639402.294|219866.009|96.408 +639397.634|219870.273|96.607 +639392.888|219874.619|96.756 +639388.167|219878.941|96.780 +639383.518|219883.193|96.704 +639378.901|219887.412|96.207 +639374.195|219891.716|95.921 +639369.510|219896.001|95.817 +639364.706|219900.396|95.838 +639359.921|219904.779|96.070 +639355.160|219909.138|96.180 +639350.292|219913.600|96.643 +639345.449|219918.038|96.991 +639340.612|219922.470|97.326 +639335.768|219926.905|97.423 +639330.867|219931.398|97.905 +639325.960|219935.896|98.435 +639321.056|219940.389|98.688 +639316.185|219944.854|99.069 +639311.293|219949.335|99.298 +639306.401|219953.813|99.536 +639301.484|219958.318|99.664 +639296.559|219962.829|99.856 +639291.685|219967.291|100.063 +639286.705|219971.854|100.346 +639281.782|219976.362|100.618 +639276.802|219980.928|100.959 +639271.885|219985.430|101.236 +639266.923|219989.977|101.526 +639261.921|219994.558|101.755 +639256.962|219999.100|102.062 +639251.957|220003.687|102.379 +639247.020|220008.210|102.617 +639241.996|220012.810|102.779 +639236.982|220017.406|103.242 +639231.956|220022.009|103.474 +639226.945|220026.599|103.647 +639221.950|220031.174|103.711 +639216.966|220035.734|103.724 +639211.934|220040.342|103.775 +639206.944|220044.908|103.864 +639201.854|220049.572|104.028 +639196.880|220054.125|104.074 +639191.796|220058.783|104.227 +639186.757|220063.398|104.449 +639181.679|220068.046|104.608 +639176.656|220072.648|104.778 +639171.536|220077.339|104.952 +639166.458|220081.990|105.202 +639161.377|220086.645|105.516 +639156.247|220091.348|105.876 +639151.163|220096.008|106.290 +639146.018|220100.726|106.839 +639140.882|220105.433|107.336 +639135.764|220110.123|107.713 +639130.680|220114.781|107.860 +639125.541|220119.487|108.058 +639120.314|220124.284|109.082 +639115.324|220128.850|108.899 +639110.161|220133.578|108.991 +639105.110|220138.202|108.966 +639099.926|220142.954|109.317 +639094.787|220147.663|109.728 +639089.636|220152.393|110.761 +639084.497|220157.099|110.798 +639079.407|220161.760|110.841 +639074.252|220166.478|111.048 +639069.095|220171.209|111.365 +639063.975|220175.902|111.825 +639058.814|220180.630|112.200 +639053.669|220185.345|112.484 +639048.549|220190.033|112.526 +639043.413|220194.739|112.791 +639038.283|220199.439|113.005 +639033.168|220204.121|113.084 +639028.014|220208.839|113.066 +639022.964|220213.463|113.044 +639017.813|220218.178|113.035 +639012.710|220222.851|113.099 +639007.608|220227.520|113.139 +639002.457|220232.242|113.267 +638997.299|220236.966|113.480 +638992.194|220241.645|113.678 +638987.046|220246.360|113.837 +638981.959|220251.014|113.837 +638976.817|220255.727|113.998 +638971.663|220260.451|114.364 +638966.569|220265.118|114.565 +638961.434|220269.821|114.727 +638956.307|220274.518|114.803 +638951.223|220279.175|114.992 +638946.096|220283.872|115.151 +638940.960|220288.578|115.458 +638935.876|220293.235|115.742 +638930.701|220297.978|116.016 +638925.577|220302.675|116.275 +638920.502|220307.323|116.522 +638915.384|220312.014|116.754 +638910.270|220316.699|116.940 +638905.161|220321.378|117.071 +638900.004|220326.105|117.272 +638894.950|220330.732|117.373 +638889.839|220335.417|117.638 +638884.697|220340.126|117.677 +638879.643|220344.753|117.815 +638874.547|220349.422|117.964 +638869.454|220354.089|118.040 +638864.376|220358.734|117.790 +638844.034|220377.357|117.744 +638833.884|220386.669|118.796 +638823.719|220395.999|120.515 +638818.631|220400.662|120.905 +638813.547|220405.326|121.329 +638808.509|220409.947|121.814 +638803.437|220414.592|121.920 +638798.353|220419.252|122.454 +638793.327|220423.861|122.795 +638788.249|220428.518|123.246 +638783.180|220433.160|123.426 +638778.160|220437.763|123.685 +638772.671|220442.792|124.033 +638768.080|220447.001|124.319 +638763.014|220451.643|124.633 +638757.949|220456.285|124.956 +638752.935|220460.879|125.136 +638747.875|220465.515|125.316 +638742.864|220470.108|125.578 +638737.853|220474.699|125.688 +638732.793|220479.335|125.874 +638727.737|220483.964|126.017 +638722.729|220488.555|126.157 +638717.675|220493.185|126.224 +638712.668|220497.766|126.169 +638707.660|220502.350|126.056 +638702.606|220506.977|125.867 +638697.598|220511.558|125.642 +638692.590|220516.139|125.416 +638687.537|220520.766|125.270 +638682.578|220525.308|125.188 +638677.521|220529.934|125.057 +638672.513|220534.522|125.081 +638667.505|220539.106|125.035 +638662.500|220543.693|125.352 +638657.499|220548.280|125.745 +638652.497|220552.865|125.995 +638647.492|220557.449|126.163 +638642.487|220562.033|126.361 +638637.479|220566.617|126.215 +638627.512|220575.740|126.294 +638622.504|220580.324|126.285 +638617.500|220584.908|126.340 +638612.492|220589.493|126.447 +638607.487|220594.077|126.599 +638602.531|220598.618|126.779 +638597.532|220603.199|127.114 +638592.524|220607.784|127.166 +638587.526|220612.365|127.535 +638572.545|220626.081|127.620 +638567.589|220630.619|127.846 +638562.623|220635.164|127.833 +638557.612|220639.754|127.882 +638552.644|220644.299|127.882 +638547.682|220648.843|128.013 +638542.674|220653.431|128.123 +638537.758|220657.932|128.281 +638532.750|220662.520|128.461 +638527.833|220667.022|128.544 +638522.871|220671.566|128.723 +638517.900|220676.117|128.763 +638512.980|220680.622|128.870 +638508.021|220685.166|129.153 +638503.111|220689.665|129.455 +638498.146|220694.213|129.629 +638493.232|220698.715|129.839 +638488.316|220703.220|130.068 +638483.400|220707.722|130.318 +638478.480|220712.230|130.485 +638473.564|220716.732|130.763 +638468.647|220721.236|130.985 +638463.725|220725.744|131.180 +638458.845|220730.213|131.311 +638453.913|220734.730|131.351 +638448.991|220739.238|131.589 +638444.092|220743.722|131.503 +638439.185|220748.211|131.308 +638434.293|220752.689|131.332 +638429.395|220757.172|131.317 +638424.488|220761.665|131.162 +638419.586|220766.149|131.168 +638414.682|220770.642|131.104 +638409.808|220775.098|130.872 +638404.919|220779.578|131.064 +638400.040|220784.041|130.796 +638395.184|220788.485|130.878 +638390.332|220792.932|130.976 +638385.434|220797.409|130.598 +638380.612|220801.823|130.537 +638375.723|220806.294|130.318 +638370.962|220810.656|130.452 +638366.073|220815.127|130.266 +638361.287|220819.507|130.186 +638351.570|220828.392|129.583 +638346.724|220832.830|129.434 +638341.935|220837.213|129.421 +638337.086|220841.642|128.815 +638322.651|220854.849|128.288 +638317.859|220859.232|127.900 +638308.295|220867.986|127.821 +638293.993|220881.074|127.632 +638289.306|220885.372|127.861 +638284.551|220889.724|127.974 +638279.845|220894.034|128.096 +638261.017|220911.277|128.726 +638256.332|220915.562|128.714 +638251.654|220919.845|128.769 +638246.957|220924.142|128.696 +638242.250|220928.446|128.574 +638237.627|220932.677|128.748 +638232.905|220936.996|128.525 +638223.594|220945.515|128.458 +638218.988|220949.730|128.443 +638214.337|220953.988|128.486 +638209.768|220958.170|128.812 +638200.526|220966.625|128.714 +638195.942|220970.822|128.961 +638186.780|220979.211|129.196 +638182.211|220983.392|129.235 +638177.739|220987.492|129.641 +638173.149|220991.692|129.577 +638168.601|220995.856|129.830 +638164.100|220999.980|130.071 +638155.065|221008.249|130.397 +638150.573|221012.364|130.756 +638146.071|221016.488|131.055 +638141.630|221020.557|131.430 +638132.678|221028.756|131.796 +638110.409|221049.144|132.735 +638105.925|221053.241|132.360 +638101.402|221057.377|132.070 +638096.970|221061.427|131.747 +638092.447|221065.564|131.488 +638088.012|221069.614|131.201 +638083.568|221073.677|130.875 +638074.604|221081.864|129.842 +638065.789|221089.929|129.766 +638061.415|221093.931|129.644 +638057.035|221097.936|129.534 +638052.741|221101.868|129.623 +638048.412|221105.831|129.827 +638044.023|221109.842|129.431 +638039.598|221113.887|129.126 +638035.251|221117.858|128.720 +638030.972|221121.778|128.992 +638026.604|221125.768|128.507 +638022.315|221129.691|128.477 +638017.929|221133.699|128.220 +638013.763|221137.518|128.611 +638009.471|221141.447|128.601 +638005.250|221145.315|129.001 +638000.864|221149.314|128.013 +637992.204|221157.226|127.227 +637988.044|221161.036|127.468 +637979.674|221168.693|127.501 +637975.422|221172.582|127.324 +637971.167|221176.468|126.898 +637962.800|221184.122|126.559 +637950.270|221195.576|125.907 +637946.124|221199.371|125.874 +637942.034|221203.111|125.886 +637937.971|221206.830|125.776 +637917.766|221225.322|125.813 +637913.767|221228.979|125.867 +637893.933|221247.133|126.139 +637889.925|221250.800|125.989 +637885.689|221254.659|124.599 +637881.574|221258.411|123.780 +637877.633|221262.014|123.533 +637873.698|221265.613|123.325 +637869.799|221269.177|123.060 +637865.846|221272.791|122.807 +637861.954|221276.352|122.600 +637858.080|221279.893|122.499 +637854.233|221283.411|122.289 +637842.764|221293.902|121.847 +637838.886|221297.444|121.347 +637835.098|221300.909|121.241 +637831.349|221304.335|121.106 +637827.645|221307.722|120.945 +637823.896|221311.151|120.823 +637820.217|221314.516|120.789 +637816.520|221317.899|120.689 +637812.893|221321.218|120.686 +637809.193|221324.601|120.597 +637805.538|221327.945|120.500 +637801.932|221331.243|120.384 +637798.324|221334.544|120.290 +637794.718|221337.842|120.213 +637791.158|221341.097|120.116 +637784.269|221347.410|120.887 +637781.032|221350.391|122.115 +637777.643|221353.500|122.518 +637770.443|221360.071|121.487 +637766.679|221363.500|120.232 +637763.052|221366.810|119.753 +637759.669|221369.904|119.619 +637756.139|221373.129|119.342 +637752.777|221376.204|119.308 +637749.360|221379.331|119.275 +637745.944|221382.453|119.055 +637742.795|221385.342|119.665 +637736.190|221391.389|119.729 +637716.634|221409.269|119.116 +637713.458|221412.174|119.095 +637710.239|221415.115|118.921 +637707.057|221418.026|118.887 +637703.966|221420.854|118.799 +637700.833|221423.720|118.772 +637694.341|221429.642|117.510 +637691.329|221432.394|117.565 +637688.416|221435.067|117.970 +637973.206|221173.125|127.346 +637977.406|221169.269|127.535 +637985.773|221161.576|127.559 +637989.961|221157.729|127.757 +637998.453|221149.929|127.989 +638002.869|221145.882|128.915 +638007.097|221141.992|128.861 +638011.282|221138.143|128.577 +638015.546|221134.220|128.483 +638019.776|221130.334|128.473 +638024.068|221126.393|128.550 +638028.411|221122.397|128.669 +638032.706|221118.453|128.797 +638037.086|221114.432|129.135 +638041.509|221110.372|129.461 +638045.944|221106.303|129.863 +638050.125|221102.448|129.162 +638054.582|221098.357|129.440 +638058.968|221094.328|129.641 +638063.378|221090.274|129.711 +638085.714|221069.767|131.122 +638090.192|221065.655|131.418 +638094.645|221061.562|131.585 +638099.198|221057.386|132.070 +638103.716|221053.241|132.369 +638108.248|221049.074|132.485 +638130.636|221028.488|131.890 +638135.110|221024.373|131.738 +638139.664|221020.182|131.491 +638144.108|221016.094|131.168 +638148.576|221011.980|130.695 +638153.169|221007.761|130.729 +638157.702|221003.589|130.394 +638162.256|220999.401|130.217 +638166.779|220995.234|129.845 +638171.387|220990.997|129.726 +638175.929|220986.818|129.522 +638180.586|220982.536|129.443 +638185.158|220978.330|129.114 +638189.776|220974.084|129.147 +638194.388|220969.841|128.778 +638199.036|220965.565|128.708 +638208.323|220957.024|128.556 +638212.996|220952.723|128.361 +638217.696|220948.404|128.379 +638222.408|220944.073|128.528 +638227.099|220939.763|128.501 +638231.790|220935.450|128.528 +638236.545|220931.080|128.687 +638241.254|220926.748|128.492 +638245.996|220922.393|128.589 +638250.739|220918.034|128.720 +638255.448|220913.700|128.614 +638260.173|220909.356|128.629 +638274.447|220896.232|128.412 +638279.153|220891.897|127.943 +638283.920|220887.517|127.995 +638288.699|220883.119|127.760 +638293.475|220878.724|127.522 +638307.880|220865.483|127.571 +638327.265|220847.680|128.793 +638332.100|220843.236|128.803 +638337.016|220838.722|129.190 +638341.844|220834.284|129.184 +638351.622|220825.298|129.531 +638356.545|220820.781|130.104 +638361.427|220816.295|130.257 +638366.289|220811.826|130.220 +638371.199|220807.309|130.247 +638376.079|220802.829|130.439 +638380.993|220798.314|130.516 +638385.903|220793.800|130.586 +638390.807|220789.289|130.631 +638395.715|220784.781|130.689 +638400.616|220780.276|130.735 +638405.520|220775.768|130.823 +638410.494|220771.202|131.208 +638415.411|220766.676|130.921 +638420.309|220762.174|131.009 +638425.262|220757.624|131.201 +638430.175|220753.113|131.546 +638435.089|220748.589|131.284 +638440.020|220744.057|131.250 +638445.019|220739.467|131.537 +638449.948|220734.934|131.528 +638454.864|220730.414|131.369 +638459.832|220725.845|131.287 +638464.746|220721.325|131.116 +638469.699|220716.765|130.851 +638474.655|220712.205|130.625 +638479.611|220707.645|130.409 +638484.567|220703.086|130.183 +638489.523|220698.529|129.967 +638494.522|220693.926|129.735 +638499.481|220689.367|129.583 +638504.434|220684.813|129.367 +638509.423|220680.216|128.992 +638514.422|220675.620|128.733 +638519.430|220671.014|128.702 +638524.432|220666.418|128.544 +638529.385|220661.864|128.364 +638534.390|220657.265|128.300 +638539.385|220652.672|128.050 +638544.387|220648.075|127.937 +638549.386|220643.479|127.809 +638554.391|220638.879|127.788 +638559.395|220634.283|127.806 +638564.443|220629.644|127.696 +638569.396|220625.090|127.672 +638574.447|220620.451|127.681 +638579.445|220615.858|127.641 +638584.441|220611.264|127.471 +638589.437|220606.671|127.352 +638594.426|220602.084|127.020 +638609.456|220588.264|126.413 +638614.500|220583.628|126.303 +638619.545|220578.992|126.194 +638624.544|220574.399|126.297 +638629.591|220569.763|126.389 +638634.584|220565.172|126.087 +638639.631|220560.536|126.148 +638644.673|220555.900|126.093 +638649.717|220551.264|125.947 +638654.758|220546.628|125.621 +638659.797|220541.992|125.224 +638664.838|220537.353|124.874 +638669.837|220532.760|124.755 +638674.933|220528.081|124.883 +638679.932|220523.488|124.996 +638684.976|220518.852|125.142 +638690.073|220514.176|125.291 +638695.068|220509.586|125.499 +638700.116|220504.953|125.767 +638705.160|220500.317|125.877 +638710.205|220495.684|125.989 +638715.249|220491.051|126.096 +638720.297|220486.415|126.084 +638725.295|220481.819|125.983 +638730.340|220477.180|125.852 +638735.387|220472.541|125.715 +638740.389|220467.941|125.477 +638745.440|220463.296|125.291 +638750.490|220458.651|125.060 +638755.544|220454.009|124.904 +638760.597|220449.357|124.587 +638765.605|220444.752|124.307 +638770.656|220440.107|123.950 +638775.712|220435.458|123.746 +638780.720|220430.853|123.548 +638785.783|220426.193|123.155 +638790.852|220421.529|122.658 +638795.866|220416.917|122.448 +638800.932|220412.260|122.182 +638806.001|220407.600|121.878 +638811.027|220402.973|121.423 +638816.099|220398.306|121.045 +638821.180|220393.631|120.546 +638826.215|220388.995|119.985 +638836.359|220379.649|118.406 +638846.545|220370.274|117.336 +638851.565|220365.662|117.476 +638861.669|220356.378|117.552 +638866.699|220351.757|117.549 +638871.719|220347.149|117.830 +638876.757|220342.516|117.732 +638881.798|220337.883|117.598 +638886.837|220333.250|117.513 +638891.878|220328.617|117.455 +638896.926|220323.978|117.296 +638901.973|220319.342|117.193 +638906.975|220314.745|117.040 +638912.031|220310.097|116.821 +638917.036|220305.501|116.723 +638922.093|220300.855|116.586 +638927.107|220296.244|116.339 +638932.133|220291.623|115.983 +638937.202|220286.966|115.751 +638942.277|220282.302|115.455 +638947.303|220277.681|115.199 +638952.326|220273.067|115.074 +638957.349|220268.449|114.910 +638962.421|220263.792|114.821 +638967.447|220259.174|114.690 +638972.486|220254.541|114.434 +638977.573|220249.868|114.224 +638982.544|220245.303|114.315 +638987.634|220240.624|114.093 +638992.673|220235.994|113.980 +638997.738|220231.340|113.575 +639002.786|220226.697|113.383 +639007.775|220222.116|113.361 +639012.826|220217.477|113.246 +639017.809|220212.899|113.337 +639022.851|220208.269|113.349 +639027.895|220203.636|113.361 +639032.854|220199.080|113.267 +639037.917|220194.431|113.154 +639042.949|220189.801|112.819 +639047.957|220185.205|112.843 +639052.999|220180.569|112.490 +639058.055|220175.921|112.036 +639063.112|220171.266|111.584 +639068.117|220166.667|111.240 +639073.149|220162.043|111.133 +639078.148|220157.447|110.896 +639083.168|220152.832|110.490 +639088.164|220148.248|110.816 +639093.254|220143.560|109.826 +639098.298|220138.918|109.277 +639103.315|220134.306|109.033 +639108.305|220129.725|109.097 +639113.316|220125.123|108.972 +639118.296|220120.548|109.128 +639123.368|220115.875|108.085 +639128.416|220111.233|107.717 +639133.448|220106.606|107.531 +639138.428|220102.034|107.412 +639143.485|220097.377|106.653 +639148.508|220092.756|106.214 +639153.571|220088.102|105.891 +639158.545|220083.530|105.528 +639163.574|220078.903|105.141 +639168.585|220074.297|104.931 +639173.563|220069.722|104.635 +639178.534|220065.153|104.425 +639183.499|220060.590|104.278 +639188.489|220056.003|103.977 +639193.417|220051.474|103.791 +639198.373|220046.920|103.797 +639203.293|220042.400|103.727 +639208.237|220037.855|103.504 +639213.174|220033.320|103.355 +639218.094|220028.803|103.379 +639222.974|220024.319|103.337 +639227.912|220019.781|103.266 +639232.788|220015.297|102.943 +639237.760|220010.728|102.690 +639242.667|220006.217|102.556 +639247.596|220001.685|102.306 +639252.463|219997.213|102.166 +639257.349|219992.723|101.925 +639262.241|219988.221|101.654 +639267.142|219983.717|101.374 +639272.105|219979.157|101.054 +639276.960|219974.691|100.791 +639281.880|219970.168|100.471 +639286.766|219965.675|100.081 +639291.633|219961.198|99.813 +639296.495|219956.729|99.630 +639301.305|219952.310|99.478 +639306.163|219947.848|99.374 +639310.982|219943.416|99.197 +639315.819|219938.969|98.966 +639320.696|219934.485|98.509 +639325.515|219930.050|98.121 +639330.346|219925.606|97.682 +639335.201|219921.144|97.442 +639339.981|219916.746|97.067 +639344.775|219912.341|96.927 +639349.548|219907.952|96.652 +639354.288|219903.597|96.582 +639359.043|219899.229|96.460 +639363.795|219894.861|96.363 +639368.510|219890.524|96.210 +639373.113|219886.299|96.430 +639377.788|219882.011|96.829 +639382.403|219877.774|97.024 +639387.069|219873.488|96.951 +639391.794|219869.145|96.863 +639396.488|219864.832|96.677 +639401.200|219860.498|96.424 +639405.851|219856.225|96.241 +639415.279|219847.553|95.561 +639419.948|219843.255|95.076 +639424.694|219838.887|94.497 +639429.409|219834.550|94.119 +639434.064|219830.268|93.784 +639438.736|219825.970|93.397 +639443.323|219821.755|93.205 +639448.045|219817.408|92.614 +639452.516|219813.309|93.312 +639470.944|219796.362|92.022 +639475.480|219792.198|92.227 +639480.177|219787.867|91.163 +639486.175|219779.939|91.580 +639481.539|219784.191|91.772 +639467.634|219796.944|91.971 +639458.088|219805.716|93.388 +639448.980|219814.058|92.736 +639439.617|219822.651|93.181 +639434.911|219826.970|93.437 +639430.174|219831.319|93.866 +639425.462|219835.647|94.208 +639420.683|219840.034|94.641 +639415.867|219844.459|95.296 +639411.149|219848.790|95.729 +639406.409|219853.140|96.040 +639401.694|219857.468|96.247 +639396.981|219861.790|96.460 +639392.220|219866.161|96.695 +639387.523|219870.471|96.863 +639382.796|219874.805|96.957 +639378.139|219879.072|96.966 +639373.494|219883.324|96.640 +639368.787|219887.628|96.375 +639364.106|219891.920|96.296 +639359.323|219896.303|96.515 +639354.593|219900.643|96.759 +639349.829|219905.008|96.634 +639345.040|219909.397|96.957 +639340.331|219913.710|96.838 +639335.521|219918.120|97.055 +639330.724|219922.525|97.515 +639325.917|219926.929|97.743 +639321.040|219931.407|98.143 +639316.215|219935.832|98.542 +639311.406|219940.243|98.871 +639306.568|219944.681|99.109 +639301.804|219949.049|99.216 +639296.952|219953.496|99.274 +639292.127|219957.918|99.487 +639287.265|219962.377|99.655 +639282.440|219966.803|99.938 +639277.548|219971.290|100.353 +639272.681|219975.755|100.642 +639267.792|219980.242|101.093 +639262.881|219984.744|101.371 +639258.020|219989.206|101.712 +639253.186|219993.638|101.892 +639248.257|219998.155|102.050 +639243.402|220002.605|102.084 +639238.534|220007.070|102.224 +639233.660|220011.539|102.431 +639228.741|220016.047|102.626 +639223.812|220020.570|102.931 +639218.911|220025.063|103.062 +639213.973|220029.589|103.126 +639209.087|220034.067|103.184 +639204.134|220038.608|103.419 +639199.245|220043.089|103.556 +639194.286|220047.633|103.522 +639189.354|220052.156|103.663 +639184.368|220056.728|103.891 +639179.427|220061.261|104.156 +639174.450|220065.824|104.361 +639169.466|220070.396|104.650 +639164.443|220075.004|104.885 +639159.475|220079.558|105.101 +639154.449|220084.167|105.409 +639149.407|220088.797|105.897 +639144.393|220093.396|106.196 +639139.312|220098.066|107.083 +639134.262|220102.695|107.320 +639129.272|220107.271|107.494 +639124.237|220111.891|107.695 +639119.064|220116.652|109.131 +639114.142|220121.151|108.357 +639109.113|220125.763|108.564 +639104.004|220130.454|109.100 +639099.005|220135.035|109.103 +639093.973|220139.649|109.430 +639088.825|220144.383|110.469 +639083.808|220148.979|110.277 +639078.748|220153.618|110.521 +639073.655|220158.297|111.133 +639068.571|220162.958|111.200 +639063.536|220167.572|111.283 +639058.479|220172.211|111.624 +639053.364|220176.905|112.121 +639048.250|220181.599|112.621 +639043.163|220186.269|112.919 +639038.045|220190.960|113.017 +639033.019|220195.568|113.218 +639027.901|220200.259|113.368 +639022.793|220204.944|113.459 +639017.691|220209.620|113.496 +639012.600|220214.283|113.441 +639007.559|220218.901|113.377 +639002.408|220223.625|113.526 +638997.296|220228.310|113.776 +638992.194|220232.989|113.983 +638987.046|220237.707|114.151 +638981.904|220242.422|114.328 +638976.811|220247.092|114.507 +638971.681|220251.789|114.523 +638966.542|220256.501|114.757 +638961.415|220261.201|114.843 +638956.289|220265.898|114.916 +638951.162|220270.598|115.053 +638946.035|220275.298|115.245 +638940.902|220280.004|115.519 +638935.779|220284.704|115.745 +638930.649|220289.407|116.059 +638925.473|220294.153|116.397 +638920.356|220298.847|116.632 +638915.244|220303.532|116.790 +638910.087|220308.259|116.931 +638904.981|220312.938|117.043 +638899.830|220317.659|117.153 +638894.731|220322.335|117.248 +638889.629|220327.010|117.409 +638884.490|220331.720|117.373 +638879.351|220336.426|117.363 +638874.261|220341.092|117.427 +638869.070|220345.850|117.537 +638863.992|220350.501|117.373 +638833.167|220378.763|118.616 +638828.071|220383.441|119.204 +638812.651|220397.596|121.103 +638807.521|220402.302|121.494 +638802.349|220407.051|121.951 +638797.274|220411.705|122.271 +638792.156|220416.393|122.420 +638787.036|220421.090|122.801 +638781.967|220425.741|123.161 +638771.735|220435.126|123.914 +638766.684|220439.756|124.017 +638761.573|220444.444|124.325 +638756.464|220449.132|124.633 +638751.405|220453.771|124.871 +638746.299|220458.450|125.047 +638741.194|220463.131|125.246 +638736.186|220467.722|125.441 +638731.084|220472.400|125.611 +638725.981|220477.079|125.767 +638720.976|220481.666|125.849 +638715.877|220486.339|125.980 +638710.827|220490.969|125.913 +638705.776|220495.596|125.837 +638700.722|220500.223|125.694 +638695.623|220504.892|125.538 +638690.618|220509.473|125.191 +638685.568|220514.100|125.069 +638680.514|220518.727|124.782 +638675.461|220523.357|124.709 +638670.407|220527.984|124.636 +638665.402|220532.571|124.569 +638660.355|220537.201|124.813 +638655.307|220541.831|125.179 +638650.308|220546.418|125.617 +638645.307|220551.002|125.828 +638640.259|220555.629|125.922 +638635.303|220560.171|125.974 +638630.298|220564.758|125.962 +638625.296|220569.345|126.163 +638620.289|220573.932|125.959 +638615.284|220578.520|126.011 +638610.331|220583.064|126.154 +638605.329|220587.652|126.376 +638600.370|220592.196|126.395 +638595.423|220596.738|126.718 +638590.421|220601.322|126.901 +638580.515|220610.408|127.309 +638570.649|220619.454|127.501 +638565.690|220624.002|127.550 +638560.721|220628.553|127.434 +638555.768|220633.097|127.644 +638550.855|220637.599|127.681 +638545.893|220642.150|127.730 +638540.934|220646.697|127.867 +638536.020|220651.202|127.955 +638531.110|220655.704|128.160 +638526.148|220660.255|128.278 +638521.234|220664.760|128.406 +638516.324|220669.262|128.629 +638511.408|220673.770|128.726 +638506.497|220678.278|128.928 +638501.596|220682.774|129.330 +638496.680|220687.285|129.467 +638491.766|220691.790|129.702 +638486.905|220696.249|129.952 +638481.991|220700.757|130.196 +638477.124|220705.222|130.366 +638472.207|220709.730|130.601 +638467.343|220714.196|130.833 +638462.472|220718.661|131.031 +638457.598|220723.129|131.198 +638452.718|220727.604|131.259 +638447.845|220732.075|131.470 +638443.004|220736.510|131.461 +638438.103|220741.003|131.256 +638433.205|220745.489|131.168 +638428.377|220749.918|131.412 +638423.515|220754.371|131.195 +638418.602|220758.870|130.979 +638413.737|220763.326|130.784 +638408.882|220767.780|130.723 +638394.297|220781.145|130.479 +638389.487|220785.552|130.494 +638384.623|220790.012|130.439 +638379.752|220794.474|130.348 +638374.927|220798.894|130.260 +638370.117|220803.307|130.327 +638365.225|220807.785|130.089 +638360.409|220812.201|130.150 +638345.904|220825.487|129.360 +638341.070|220829.919|129.321 +638331.456|220838.725|128.912 +638321.837|220847.537|128.550 +638302.570|220865.182|127.385 +638293.036|220873.917|127.215 +638283.609|220882.567|127.632 +638278.918|220886.868|127.879 +638274.175|220891.221|128.065 +638269.442|220895.558|127.955 +638255.329|220908.509|128.492 +638250.648|220912.804|128.477 +638245.951|220917.107|128.382 +638241.269|220921.402|128.403 +638227.187|220934.320|128.333 +638217.836|220942.897|128.291 +638213.169|220947.179|128.568 +638208.479|220951.477|128.291 +638203.910|220955.671|128.592 +638199.267|220959.932|128.714 +638194.650|220964.169|128.684 +638190.053|220968.384|128.839 +638185.454|220972.606|128.973 +638180.879|220976.809|129.296 +638171.710|220985.221|129.519 +638153.572|221001.866|130.183 +638144.553|221010.151|130.948 +638140.097|221014.241|131.204 +638135.640|221018.332|131.482 +638131.090|221022.507|131.470 +638126.643|221026.592|131.842 +638122.180|221030.688|132.131 +638117.779|221034.730|132.491 +638108.833|221042.941|132.671 +638104.325|221047.071|132.424 +638099.829|221051.192|132.265 +638095.312|221055.331|132.006 +638090.835|221059.434|131.695 +638086.275|221063.610|131.232 +638081.828|221067.682|130.860 +638072.781|221075.970|129.866 +638063.951|221084.065|129.656 +638059.559|221088.094|129.699 +638055.100|221092.179|129.391 +638050.735|221096.184|129.348 +638046.456|221100.113|129.815 +638042.024|221104.176|129.418 +638037.735|221108.111|129.583 +638033.371|221112.110|129.330 +638028.920|221116.185|128.915 +638024.614|221120.135|128.733 +638020.273|221124.113|128.681 +638015.973|221128.057|128.589 +638011.687|221131.989|128.583 +638007.432|221135.890|128.501 +638003.192|221139.780|128.507 +637998.907|221143.708|128.562 +637990.333|221151.566|127.900 +637986.136|221155.419|128.196 +637973.447|221167.050|127.632 +637969.265|221170.884|127.556 +637960.801|221178.639|126.946 +637956.591|221182.497|126.779 +637948.374|221190.038|126.989 +637935.956|221201.419|126.468 +637911.551|221223.807|126.197 +637899.554|221234.816|126.139 +637895.659|221238.395|126.465 +637887.478|221245.884|125.142 +637883.326|221249.678|124.115 +637879.394|221253.281|123.880 +637875.478|221256.872|123.722 +637871.482|221260.535|123.444 +637867.538|221264.150|123.200 +637863.661|221267.704|123.030 +637859.713|221271.322|122.792 +637848.299|221281.798|122.908 +637844.678|221285.133|123.685 +637840.916|221288.583|123.877 +637836.991|221292.177|123.142 +637833.016|221295.810|122.219 +637825.311|221302.866|121.241 +637821.501|221306.356|120.850 +637817.755|221309.791|120.747 +637814.167|221313.089|121.088 +637810.382|221316.555|120.625 +637806.684|221319.947|120.533 +637803.036|221323.291|120.445 +637799.445|221326.586|120.387 +637795.800|221329.929|120.341 +637792.173|221333.258|120.375 +637788.939|221336.242|121.585 +637785.254|221339.613|120.975 +637781.919|221342.688|122.003 +637778.688|221345.669|123.024 +637767.975|221355.484|122.070 +637757.087|221365.439|119.720 +637750.193|221371.760|119.369 +637746.776|221374.894|119.332 +637743.389|221377.996|119.214 +637736.702|221384.132|119.131 +637733.523|221387.052|119.427 +637730.289|221390.024|119.729 +637720.478|221399.025|119.649 +637717.173|221402.051|119.305 +637713.900|221405.051|119.098 +637710.684|221408.001|119.110 +637707.533|221410.894|118.973 +637704.360|221413.801|118.970 +637701.226|221416.676|118.924 +637694.847|221422.519|118.229 +637685.788|221430.834|118.644 +637968.969|221169.330|127.666 +637973.157|221165.480|127.824 +637981.570|221157.748|128.114 +637989.991|221150.009|128.251 +637994.228|221146.110|128.217 +637998.495|221142.197|128.620 +638002.750|221138.286|128.714 +638011.233|221130.483|128.553 +638015.528|221126.536|128.641 +638019.801|221122.607|128.638 +638024.126|221118.632|128.644 +638028.469|221114.643|129.065 +638032.938|221110.546|129.909 +638037.217|221106.611|129.726 +638041.338|221102.807|128.675 +638050.183|221094.684|129.449 +638054.545|221090.676|129.522 +638058.980|221086.601|129.735 +638063.363|221082.575|129.976 +638081.218|221066.173|130.955 +638085.659|221062.095|131.339 +638090.204|221057.922|131.768 +638094.709|221053.783|131.991 +638099.232|221049.632|132.335 +638103.716|221045.511|132.472 +638108.260|221041.335|132.695 +638121.653|221029.012|131.948 +638126.146|221024.876|131.595 +638130.611|221020.767|131.403 +638135.147|221016.594|131.366 +638139.661|221012.443|131.195 +638144.199|221008.267|130.878 +638148.664|221004.152|130.421 +638153.230|220999.952|130.327 +638157.772|220995.770|130.080 +638162.323|220991.582|129.891 +638166.898|220987.367|129.577 +638171.448|220983.179|129.434 +638176.057|220978.939|129.373 +638180.656|220974.706|129.275 +638185.295|220970.435|129.110 +638189.834|220966.253|128.595 +638194.467|220961.986|128.440 +638199.136|220957.695|128.544 +638203.766|220953.434|128.391 +638208.430|220949.139|128.132 +638213.087|220944.856|128.214 +638217.790|220940.531|128.303 +638222.463|220936.231|128.181 +638227.175|220931.896|128.376 +638231.896|220927.553|128.272 +638236.572|220923.252|128.220 +638241.363|220918.845|128.352 +638246.045|220914.538|128.382 +638250.831|220910.137|128.510 +638265.010|220897.085|127.894 +638269.759|220892.714|127.782 +638274.514|220888.340|127.745 +638284.066|220879.550|127.684 +638288.803|220875.185|127.096 +638293.609|220870.763|127.154 +638303.201|220861.939|127.148 +638312.867|220853.060|127.922 +638322.559|220844.147|128.156 +638327.421|220839.685|128.955 +638332.261|220835.235|129.056 +638337.153|220830.736|129.239 +638341.990|220826.289|129.394 +638361.467|220808.379|130.071 +638366.332|220803.904|130.107 +638371.212|220799.418|130.357 +638381.014|220790.402|130.299 +638385.876|220785.930|130.397 +638390.771|220781.425|130.388 +638395.678|220776.914|130.485 +638400.567|220772.416|130.430 +638405.511|220767.868|130.458 +638410.421|220763.354|130.702 +638415.365|220758.806|130.811 +638420.266|220754.301|130.997 +638425.268|220749.705|131.241 +638430.157|220745.206|131.336 +638435.076|220740.677|131.204 +638440.017|220736.135|131.384 +638444.998|220731.557|131.454 +638449.911|220727.034|131.287 +638454.828|220722.507|131.168 +638459.793|220717.942|131.086 +638464.703|220713.421|130.921 +638469.653|220708.862|130.665 +638474.609|220704.299|130.473 +638479.559|220699.742|130.223 +638484.512|220695.185|129.997 +638489.462|220690.625|129.772 +638494.461|220686.023|129.565 +638499.411|220681.466|129.370 +638504.361|220676.912|129.120 +638509.350|220672.316|128.769 +638514.300|220667.756|128.614 +638519.299|220663.154|128.400 +638524.295|220658.551|128.227 +638529.296|220653.946|128.120 +638534.292|220649.346|127.907 +638539.288|220644.744|127.751 +638544.290|220640.138|127.708 +638549.340|220635.490|127.705 +638554.342|220630.887|127.711 +638559.386|220626.242|127.641 +638569.378|220617.040|127.422 +638599.577|220589.233|126.572 +638604.628|220584.588|126.821 +638609.654|220579.952|126.139 +638614.647|220575.353|125.971 +638619.737|220570.668|125.867 +638624.729|220566.069|125.776 +638629.823|220561.384|125.855 +638634.864|220556.742|125.800 +638639.906|220552.103|125.831 +638644.944|220547.461|125.627 +638649.985|220542.818|125.465 +638655.024|220538.176|125.020 +638660.062|220533.531|124.621 +638665.149|220528.843|124.423 +638670.194|220524.201|124.487 +638675.238|220519.559|124.526 +638680.331|220514.874|124.727 +638685.376|220510.235|124.916 +638690.420|220505.596|125.233 +638695.510|220500.914|125.474 +638700.552|220496.275|125.614 +638705.596|220491.633|125.742 +638710.686|220486.951|125.858 +638715.728|220482.309|125.861 +638720.772|220477.667|125.797 +638725.862|220472.976|125.657 +638730.910|220468.331|125.486 +638736.000|220463.643|125.444 +638741.051|220458.992|125.160 +638746.098|220454.341|124.990 +638751.146|220449.690|124.764 +638756.245|220444.993|124.496 +638761.253|220440.381|124.164 +638766.343|220435.693|123.984 +638781.510|220421.718|123.182 +638786.573|220417.052|122.765 +638791.632|220412.391|122.530 +638796.695|220407.728|122.268 +638801.767|220403.052|121.747 +638806.833|220398.383|121.405 +638811.904|220393.707|121.018 +638816.934|220389.071|120.482 +638822.015|220384.386|119.933 +638827.102|220379.692|119.256 +638857.515|220351.666|117.071 +638862.535|220347.045|117.220 +638867.619|220342.363|117.089 +638872.645|220337.742|117.235 +638877.680|220333.103|117.147 +638882.761|220328.428|117.181 +638887.745|220323.840|117.239 +638892.780|220319.201|117.208 +638897.819|220314.565|117.223 +638902.863|220309.917|117.095 +638907.908|220305.272|117.040 +638912.909|220300.663|116.870 +638917.963|220296.009|116.736 +638922.974|220291.391|116.507 +638927.988|220286.771|116.257 +638933.054|220282.101|115.980 +638938.077|220277.474|115.702 +638943.094|220272.850|115.519 +638948.114|220268.224|115.306 +638953.134|220263.597|115.154 +638958.163|220258.967|114.934 +638963.134|220254.386|114.824 +638968.154|220249.762|114.779 +638973.181|220245.135|114.693 +638978.152|220240.557|114.696 +638983.172|220235.933|114.709 +638988.183|220231.312|114.270 +638993.182|220226.704|113.992 +638998.177|220222.101|113.816 +639003.228|220217.450|113.602 +639008.214|220212.856|113.593 +639013.146|220208.315|113.669 +639018.184|220203.679|113.688 +639023.140|220199.110|113.526 +639028.148|220194.495|113.368 +639033.156|220189.884|113.276 +639038.106|220185.324|113.270 +639043.148|220180.679|112.859 +639048.155|220176.055|112.289 +639053.206|220171.401|111.847 +639058.150|220166.844|111.542 +639063.182|220162.205|111.341 +639068.111|220157.666|111.261 +639073.122|220153.045|110.859 +639078.154|220148.403|110.280 +639083.110|220143.837|110.033 +639088.066|220139.275|110.256 +639093.086|220134.639|109.439 +639098.118|220129.999|109.018 +639103.154|220125.351|108.143 +639108.107|220120.788|108.064 +639113.020|220116.265|108.357 +639117.946|220111.733|108.585 +639122.972|220107.091|107.515 +639127.983|220102.476|107.461 +639132.920|220097.922|107.223 +639137.925|220093.308|106.863 +639142.924|220088.696|106.174 +639147.941|220084.072|105.793 +639152.906|220079.494|105.458 +639157.932|220074.861|105.071 +639162.904|220070.277|104.748 +639167.863|220065.705|104.547 +639172.840|220061.118|104.230 +639177.812|220056.536|104.016 +639182.731|220052.004|103.827 +639187.754|220047.374|103.644 +639192.689|220042.827|103.401 +639197.645|220038.261|103.388 +639202.519|220033.771|103.279 +639207.496|220029.187|103.187 +639212.437|220024.633|103.004 +639217.378|220020.082|102.858 +639222.315|220015.535|102.760 +639227.223|220011.008|102.532 +639232.170|220006.452|102.416 +639237.086|220001.922|102.206 +639241.987|219997.405|102.117 +639246.876|219992.903|102.133 +639251.802|219988.362|101.916 +639256.740|219983.811|101.657 +639261.680|219979.257|101.410 +639266.606|219974.719|100.962 +639271.602|219970.110|100.392 +639276.494|219965.608|100.231 +639281.380|219961.106|100.109 +639286.321|219956.550|99.670 +639291.191|219952.066|99.402 +639296.117|219947.525|99.109 +639300.985|219943.044|98.908 +639305.861|219938.554|98.984 +639310.680|219934.116|98.816 +639315.591|219929.593|98.426 +639320.486|219925.082|98.152 +639325.347|219920.605|97.820 +639330.224|219916.106|97.396 +639335.110|219911.607|97.271 +639339.795|219907.303|97.747 +639344.620|219902.859|97.704 +639349.442|219898.418|97.436 +639354.261|219893.977|97.180 +639359.095|219889.530|97.183 +639363.819|219885.181|97.231 +639368.559|219880.816|97.219 +639373.292|219876.460|97.271 +639378.062|219872.065|97.134 +639382.772|219867.731|97.082 +639387.523|219863.357|97.082 +639392.272|219858.983|96.860 +639396.963|219854.661|96.686 +639401.724|219850.272|96.436 +639415.992|219837.123|95.128 +639420.762|219832.721|94.659 +639430.171|219824.047|93.708 +639434.868|219819.719|93.434 +639457.993|219798.419|92.912 +639462.617|219794.158|92.623 +639476.391|219781.469|91.867 +639480.924|219777.293|91.852 +639479.229|219776.178|91.800 +639460.618|219793.277|92.108 +639455.954|219797.560|92.022 +639446.356|219806.396|93.306 +639441.805|219810.565|92.723 +639437.072|219814.921|93.095 +639432.247|219819.356|93.424 +639427.468|219823.751|93.815 +639422.664|219828.171|94.348 +639417.885|219832.569|94.790 +639413.047|219837.022|95.305 +639408.232|219841.451|95.982 +639403.428|219845.870|96.375 +639398.633|219850.278|96.457 +639393.860|219854.667|96.735 +639389.099|219859.041|96.954 +639384.314|219863.439|97.079 +639379.541|219867.825|97.143 +639374.768|219872.211|97.228 +639370.007|219876.585|97.277 +639365.215|219880.987|97.228 +639360.451|219885.363|97.338 +639355.663|219889.759|97.308 +639350.853|219894.181|97.433 +639346.040|219898.604|97.606 +639341.200|219903.054|97.951 +639336.460|219907.407|97.747 +639331.769|219911.707|97.256 +639326.871|219916.209|97.423 +639322.052|219920.641|97.747 +639317.179|219925.122|98.112 +639312.259|219929.645|98.490 +639307.413|219934.101|98.758 +639302.606|219938.521|98.813 +639297.754|219942.977|98.853 +639292.904|219947.439|99.222 +639288.024|219951.926|99.490 +639283.129|219956.425|99.871 +639278.262|219960.902|100.121 +639273.418|219965.352|100.237 +639268.517|219969.857|100.429 +639263.561|219974.417|100.999 +639258.675|219978.913|101.480 +639253.774|219983.418|101.752 +639248.882|219987.920|102.011 +639244.017|219992.385|102.078 +639239.104|219996.902|102.194 +639234.236|220001.374|102.334 +639229.335|220005.882|102.419 +639224.419|220010.399|102.611 +639219.508|220014.910|102.788 +639214.619|220019.403|102.846 +639209.712|220023.914|103.062 +639204.777|220028.449|103.157 +639199.897|220032.936|103.233 +639194.969|220037.462|103.303 +639190.080|220041.958|103.513 +639185.093|220046.539|103.696 +639180.158|220051.074|103.919 +639175.236|220055.601|104.077 +639170.304|220060.133|104.318 +639165.321|220064.717|104.632 +639160.377|220069.265|105.050 +639155.354|220073.883|105.321 +639150.425|220078.418|105.690 +639145.408|220083.030|105.985 +639140.425|220087.614|106.446 +639135.389|220092.250|106.970 +639130.436|220096.804|107.253 +639125.447|220101.388|107.433 +639120.469|220105.963|107.543 +639115.349|220110.687|108.975 +639110.445|220115.180|108.064 +639105.491|220119.731|108.052 +639100.478|220124.339|108.177 +639095.418|220128.994|108.750 +639090.337|220133.675|109.579 +639085.353|220138.260|109.993 +639080.330|220142.871|109.862 +639075.292|220147.510|110.396 +639070.232|220152.162|110.679 +639065.200|220156.791|111.222 +639060.125|220161.461|111.755 +639055.111|220166.070|111.697 +639050.012|220170.754|112.017 +639044.961|220175.400|112.395 +639039.908|220180.051|112.849 +639034.796|220184.754|113.444 +639029.742|220189.399|113.447 +639024.686|220194.044|113.496 +639019.617|220198.705|113.712 +639014.612|220203.304|113.782 +639009.519|220207.983|113.788 +639004.481|220212.610|113.745 +638999.375|220217.300|113.910 +638994.282|220221.982|114.023 +638989.219|220226.633|114.340 +638984.096|220231.349|114.901 +638979.005|220236.024|115.032 +638973.940|220240.676|114.882 +638968.868|220245.330|114.809 +638963.738|220250.045|114.934 +638958.669|220254.703|114.931 +638953.533|220259.421|115.175 +638948.403|220264.136|115.404 +638943.283|220268.839|115.526 +638938.159|220273.548|115.733 +638933.081|220278.215|115.992 +638927.909|220282.973|116.309 +638922.791|220287.676|116.528 +638917.676|220292.376|116.720 +638912.568|220297.070|116.858 +638907.411|220301.806|117.040 +638902.308|220306.497|117.153 +638897.163|220311.222|117.199 +638892.021|220315.943|117.190 +638886.931|220320.619|117.156 +638881.798|220325.331|117.056 +638876.665|220330.046|117.013 +638871.572|220334.722|117.092 +638866.446|220339.431|116.937 +638861.310|220344.149|117.025 +638856.192|220348.846|116.720 +638851.059|220353.559|116.736 +638845.942|220358.256|116.458 +638835.645|220367.729|117.601 +638825.337|220377.220|119.320 +638820.201|220381.948|119.875 +638815.017|220386.718|120.439 +638809.932|220391.396|121.006 +638804.757|220396.151|121.372 +638799.588|220400.906|121.765 +638794.513|220405.573|122.134 +638789.346|220410.325|122.545 +638784.232|220415.025|122.713 +638774.003|220424.431|123.456 +638763.731|220433.874|124.191 +638758.641|220438.549|124.124 +638753.483|220443.289|124.429 +638748.381|220447.980|124.630 +638743.324|220452.631|124.941 +638738.173|220457.364|125.179 +638733.071|220462.049|125.285 +638727.972|220466.737|125.441 +638722.872|220471.422|125.593 +638717.776|220476.107|125.715 +638712.725|220480.746|125.733 +638707.580|220485.470|125.681 +638702.484|220490.149|125.651 +638697.434|220494.785|125.468 +638692.337|220499.464|125.349 +638687.287|220504.100|125.051 +638682.236|220508.733|124.734 +638677.137|220513.411|124.484 +638672.041|220518.093|124.337 +638667.036|220522.686|124.231 +638661.940|220527.371|124.282 +638656.892|220532.010|124.535 +638651.848|220536.649|124.987 +638646.803|220541.288|125.377 +638641.756|220545.927|125.544 +638636.757|220550.521|125.703 +638631.661|220555.199|125.669 +638626.659|220559.793|125.739 +638621.660|220564.386|125.749 +638616.616|220569.022|125.956 +638611.614|220573.612|125.934 +638606.612|220578.206|126.029 +638601.620|220582.796|126.294 +638596.621|220587.389|126.422 +638591.625|220591.980|126.660 +638571.722|220610.262|127.096 +638566.772|220614.809|127.294 +638556.863|220623.911|127.535 +638551.903|220628.464|127.519 +638546.996|220632.972|127.565 +638542.037|220637.526|127.608 +638537.078|220642.080|127.684 +638532.171|220646.588|127.821 +638527.215|220651.141|127.943 +638522.356|220655.607|128.132 +638517.397|220660.161|128.211 +638512.493|220664.669|128.495 +638507.592|220669.173|128.830 +638502.684|220673.681|129.046 +638497.826|220678.147|129.278 +638492.915|220682.658|129.449 +638488.060|220687.120|129.763 +638483.150|220691.631|129.964 +638478.288|220696.100|130.168 +638473.381|220700.611|130.436 +638468.513|220705.082|130.577 +638463.652|220709.550|130.827 +638458.784|220714.022|131.019 +638453.910|220718.499|131.107 +638449.036|220722.977|131.232 +638444.211|220727.409|131.336 +638439.328|220731.895|131.354 +638434.473|220736.348|131.101 +638429.593|220740.832|131.211 +638424.741|220745.282|131.070 +638419.888|220749.738|130.918 +638415.030|220754.198|130.744 +638405.307|220763.119|130.366 +638400.454|220767.575|130.321 +638385.982|220780.862|130.257 +638381.169|220785.281|130.199 +638376.366|220789.695|130.260 +638371.529|220794.133|129.988 +638366.722|220798.546|130.080 +638361.903|220802.972|130.040 +638357.057|220807.416|129.766 +638352.293|220811.793|129.830 +638342.640|220820.647|129.296 +638337.793|220825.097|129.092 +638333.014|220829.486|129.095 +638323.401|220838.307|128.662 +638289.909|220869.037|127.117 +638275.766|220882.031|127.458 +638271.014|220886.396|127.565 +638266.360|220890.669|127.687 +638256.908|220899.356|127.992 +638252.254|220903.629|128.166 +638247.597|220907.909|128.324 +638242.915|220912.209|128.291 +638228.836|220925.133|128.074 +638224.154|220929.434|128.147 +638219.506|220933.701|128.108 +638210.170|220942.275|128.141 +638205.580|220946.490|128.233 +638200.913|220950.773|128.132 +638196.265|220955.043|128.190 +638191.693|220959.243|128.470 +638187.112|220963.455|128.684 +638182.513|220967.680|128.787 +638177.971|220971.859|129.318 +638173.393|220976.059|129.272 +638168.876|220980.213|129.644 +638164.285|220984.432|129.882 +638150.676|220996.935|130.446 +638146.147|221001.098|130.473 +638141.669|221005.216|130.875 +638137.173|221009.346|131.174 +638132.650|221013.501|131.311 +638128.136|221017.643|131.204 +638123.668|221021.752|131.393 +638119.212|221025.845|131.698 +638114.780|221029.923|132.162 +638110.385|221033.965|132.543 +638101.460|221042.161|132.533 +638096.964|221046.285|132.351 +638088.030|221054.481|131.796 +638083.498|221058.636|131.461 +638079.011|221062.750|131.125 +638074.574|221066.822|130.793 +638070.084|221070.940|130.473 +638052.399|221087.165|129.571 +638048.047|221091.161|129.589 +638039.348|221099.147|129.385 +638035.010|221103.130|129.531 +638030.737|221107.059|129.760 +638022.005|221115.069|129.245 +638017.670|221119.044|128.912 +638013.345|221123.009|128.669 +638009.078|221126.932|128.733 +638004.872|221130.797|128.873 +638000.550|221134.759|128.699 +637992.006|221142.602|128.379 +637987.876|221146.400|128.714 +637979.412|221154.166|128.385 +637966.814|221165.727|128.007 +637958.423|221173.426|127.705 +637954.205|221177.294|127.218 +637945.917|221184.902|127.026 +637925.447|221203.696|127.056 +637921.399|221207.415|127.032 +637909.292|221218.531|126.739 +637897.393|221229.470|127.291 +637889.142|221237.026|125.809 +637884.951|221240.861|124.557 +637881.019|221244.472|124.755 +637873.055|221251.779|124.011 +637869.107|221255.400|123.719 +637865.169|221259.011|123.475 +637857.406|221266.144|123.289 +637853.590|221269.649|123.405 +637849.807|221273.127|123.661 +637846.205|221276.449|124.496 +637842.660|221279.720|125.587 +637839.011|221283.075|126.002 +637835.086|221286.675|125.471 +637831.285|221290.162|125.255 +637827.386|221293.737|124.639 +637823.518|221297.279|123.959 +637819.465|221300.982|122.509 +637815.563|221304.552|121.731 +637811.726|221308.069|121.231 +637807.983|221311.504|120.924 +637804.337|221314.851|120.817 +637800.600|221318.280|120.552 +637796.888|221321.688|120.411 +637793.291|221324.989|120.332 +637789.719|221328.274|120.567 +637786.260|221331.459|121.064 +637782.937|221334.523|122.128 +637779.728|221337.491|123.423 +637772.534|221344.090|122.935 +637768.983|221347.349|122.679 +637761.805|221353.929|121.911 +637754.603|221360.531|120.881 +637751.052|221363.784|120.280 +637747.538|221367.005|119.832 +637744.078|221370.178|119.607 +637740.655|221373.318|119.332 +637737.223|221376.469|119.241 +637733.919|221379.505|119.235 +637730.557|221382.590|119.232 +637724.117|221388.515|119.707 +637717.487|221394.599|119.509 +637714.199|221397.616|119.211 +637710.983|221400.570|119.211 +637707.746|221403.539|119.140 +637704.561|221406.462|119.067 +637701.400|221409.367|119.086 +637694.975|221415.261|118.580 +637691.793|221418.181|118.354 +637685.599|221423.866|118.366 +637968.479|221161.853|128.291 +637972.648|221158.013|128.388 +637976.839|221154.151|128.342 +637981.125|221150.204|128.553 +637989.601|221142.398|128.781 +637998.181|221134.497|129.101 +638002.324|221130.672|128.632 +638006.591|221126.740|128.574 +638010.876|221122.793|128.623 +638015.223|221118.791|128.766 +638019.606|221114.755|129.120 +638023.977|221110.732|129.424 +638028.302|221106.748|129.504 +638032.651|221102.746|129.723 +638036.976|221098.759|129.549 +638054.441|221082.669|129.684 +638072.251|221066.274|130.689 +638076.704|221062.174|130.833 +638081.209|221058.029|131.329 +638085.684|221053.911|131.668 +638090.225|221049.735|132.116 +638094.712|221045.602|132.262 +638099.168|221041.494|132.259 +638103.716|221037.312|132.503 +638112.600|221029.116|132.082 +638117.029|221025.031|131.643 +638121.522|221020.886|131.314 +638125.984|221016.771|131.125 +638130.489|221012.620|130.891 +638139.597|221004.226|130.827 +638144.080|221000.089|130.506 +638148.616|220995.908|130.220 +638153.148|220991.735|129.909 +638157.644|220987.590|129.717 +638162.246|220983.353|129.598 +638166.782|220979.174|129.354 +638171.375|220974.943|129.205 +638180.556|220966.485|128.900 +638185.149|220962.258|128.793 +638189.745|220958.018|128.376 +638194.403|220953.729|128.425 +638198.999|220949.499|128.406 +638203.681|220945.186|128.300 +638208.335|220940.903|128.379 +638217.665|220932.308|128.019 +638227.023|220923.694|127.919 +638236.398|220915.062|128.077 +638241.141|220910.701|128.214 +638245.856|220906.357|128.181 +638255.275|220897.679|127.626 +638260.060|220893.275|127.815 +638269.490|220884.585|127.501 +638274.245|220880.208|127.495 +638279.006|220875.822|127.126 +638283.758|220871.448|127.117 +638293.216|220862.722|125.886 +638302.939|220853.788|127.169 +638312.672|220844.842|128.217 +638332.017|220827.045|129.065 +638336.854|220822.595|129.202 +638361.193|220800.198|129.979 +638366.048|220795.727|129.994 +638370.907|220791.255|130.034 +638375.781|220786.772|130.266 +638380.666|220782.270|130.141 +638385.562|220777.765|130.110 +638390.478|220773.242|130.363 +638395.352|220768.752|130.132 +638400.268|220764.229|130.479 +638405.151|220759.733|130.397 +638414.999|220750.671|130.750 +638424.875|220741.582|130.930 +638429.816|220737.034|131.107 +638434.738|220732.502|131.052 +638439.688|220727.951|131.418 +638444.605|220723.422|131.336 +638449.561|220718.856|131.159 +638454.477|220714.330|131.064 +638459.430|220709.767|130.900 +638464.386|220705.201|130.726 +638469.287|220700.684|130.494 +638474.286|220696.081|130.269 +638479.184|220691.564|130.037 +638484.137|220687.004|129.869 +638489.127|220682.405|129.552 +638494.074|220677.848|129.327 +638499.069|220673.246|129.104 +638504.019|220668.686|129.001 +638509.003|220664.092|128.547 +638513.947|220659.539|128.291 +638518.939|220654.939|128.105 +638523.938|220650.340|127.989 +638528.931|220645.740|127.772 +638533.926|220641.141|127.650 +638538.922|220636.542|127.571 +638543.921|220631.939|127.529 +638548.923|220627.340|127.550 +638553.964|220622.694|127.486 +638563.995|220613.459|127.181 +638569.033|220608.820|127.001 +638589.092|220590.349|126.517 +638594.182|220585.664|126.553 +638599.169|220581.071|126.285 +638604.201|220576.435|125.968 +638609.291|220571.753|125.956 +638614.327|220567.114|125.800 +638619.362|220562.475|125.489 +638624.403|220557.836|125.572 +638629.442|220553.197|125.517 +638634.529|220548.515|125.486 +638639.567|220543.876|125.465 +638644.606|220539.240|125.209 +638649.687|220534.555|124.886 +638654.771|220529.870|124.395 +638659.760|220525.274|124.173 +638664.847|220520.589|123.972 +638669.938|220515.908|124.060 +638674.979|220511.268|124.289 +638680.069|220506.587|124.587 +638685.159|220501.908|124.886 +638690.198|220497.272|125.072 +638695.285|220492.593|125.352 +638700.372|220487.912|125.502 +638705.413|220483.276|125.517 +638710.500|220478.594|125.688 +638715.588|220473.912|125.636 +638720.629|220469.270|125.511 +638725.719|220464.582|125.337 +638730.809|220459.894|125.191 +638735.851|220455.252|125.102 +638740.944|220450.561|124.855 +638746.040|220445.867|124.609 +638751.088|220441.219|124.371 +638756.184|220436.522|124.087 +638761.268|220431.840|123.972 +638781.580|220413.129|122.801 +638786.643|220408.465|122.390 +638791.748|220403.762|122.173 +638796.811|220399.096|121.801 +638801.922|220394.387|121.466 +638806.991|220389.717|121.064 +638812.063|220385.038|120.564 +638817.138|220380.360|120.027 +638822.265|220375.632|119.479 +638827.321|220370.963|118.327 +638832.408|220366.269|117.690 +638852.729|220347.554|116.665 +638857.753|220342.927|116.656 +638862.821|220338.264|116.821 +638867.854|220333.634|116.748 +638872.929|220328.958|116.751 +638877.955|220324.334|116.848 +638882.981|220319.710|116.992 +638888.007|220315.087|117.126 +638893.033|220310.457|117.229 +638898.069|220305.821|117.248 +638903.107|220301.179|117.178 +638908.103|220296.579|117.083 +638913.153|220291.925|116.894 +638918.201|220287.274|116.803 +638923.160|220282.708|116.620 +638928.216|220278.047|116.422 +638933.236|220273.417|116.096 +638938.257|220268.793|115.836 +638943.271|220264.173|115.666 +638948.242|220259.592|115.462 +638953.268|220254.962|115.199 +638958.239|220250.380|115.062 +638963.253|220245.763|115.038 +638968.234|220241.172|114.837 +638973.181|220236.622|115.105 +638978.155|220232.041|115.053 +638983.132|220227.456|114.989 +638988.140|220222.839|114.547 +638993.105|220218.258|114.078 +638998.083|220213.676|114.096 +639003.030|220209.117|113.925 +639008.013|220204.529|113.928 +639012.951|220199.979|113.913 +639017.898|220195.422|113.828 +639022.851|220190.862|113.706 +639027.755|220186.342|113.605 +639032.772|220181.721|113.380 +639037.713|220177.164|112.941 +639042.712|220172.553|112.441 +639047.649|220168.002|112.103 +639052.630|220163.409|111.862 +639057.540|220158.888|111.880 +639062.527|220154.286|111.146 +639067.495|220149.705|110.667 +639072.439|220145.148|110.435 +639077.410|220140.564|109.981 +639082.330|220136.028|109.579 +639087.295|220131.450|109.247 +639092.257|220126.869|108.509 +639097.216|220122.300|108.302 +639102.117|220117.786|108.219 +639107.028|220113.260|108.070 +639111.837|220108.840|108.832 +639116.839|220104.223|107.933 +639121.795|220099.654|107.461 +639126.727|220095.106|107.229 +639131.622|220090.595|106.930 +639136.493|220086.108|106.857 +639141.455|220081.530|106.464 +639146.380|220076.989|105.997 +639151.300|220072.453|105.616 +639156.223|220067.915|105.248 +639161.145|220063.376|104.906 +639166.058|220058.850|104.678 +639170.987|220054.305|104.358 +639175.861|220049.813|104.092 +639180.783|220045.274|103.858 +639185.663|220040.778|103.623 +639190.589|220036.240|103.437 +639195.466|220031.747|103.263 +639200.339|220027.254|103.145 +639205.204|220022.774|103.114 +639210.090|220018.275|102.965 +639214.976|220013.773|102.831 +639219.874|220009.259|102.642 +639224.729|220004.784|102.440 +639229.564|220000.331|102.389 +639234.459|219995.823|102.303 +639239.317|219991.346|102.148 +639244.218|219986.832|102.069 +639249.053|219982.375|101.788 +639253.963|219977.843|101.349 +639258.861|219973.326|101.041 +639263.720|219968.842|100.682 +639268.618|219964.322|100.414 +639273.455|219959.863|100.261 +639278.295|219955.401|100.106 +639283.169|219950.902|99.743 +639288.073|219946.375|99.246 +639292.944|219941.880|98.975 +639297.763|219937.436|98.737 +639302.633|219932.943|98.518 +639307.507|219928.447|98.326 +639312.344|219923.985|98.054 +639317.179|219919.526|97.826 +639322.022|219915.057|97.579 +639326.826|219910.628|97.579 +639331.553|219906.279|98.073 +639336.302|219901.902|98.143 +639341.102|219897.476|97.948 +639345.943|219893.011|97.826 +639350.685|219888.637|97.710 +639355.522|219884.178|97.658 +639360.277|219879.795|97.533 +639365.072|219875.375|97.481 +639369.869|219870.949|97.423 +639374.588|219866.597|97.274 +639379.355|219862.202|97.173 +639384.119|219857.809|97.097 +639388.868|219853.430|96.863 +639393.635|219849.028|96.536 +639398.402|219844.636|96.518 +639403.175|219840.232|96.219 +639407.945|219835.827|95.692 +639412.755|219831.383|94.982 +639417.592|219826.915|94.430 +639422.313|219822.556|93.967 +639427.102|219818.134|93.449 +639431.817|219813.784|93.086 +639450.593|219796.459|91.992 +639478.305|219770.902|91.340 +639476.376|219769.216|91.699 +639471.776|219773.441|91.739 +639457.823|219786.258|91.702 +639439.090|219803.470|92.166 +639434.316|219807.862|92.717 +639429.580|219812.217|93.123 +639424.758|219816.655|93.467 +639419.954|219821.075|93.997 +639415.123|219825.519|94.430 +639410.326|219829.932|94.991 +639405.394|219834.474|95.738 +639400.554|219838.927|96.308 +639395.781|219843.316|96.558 +639390.983|219847.727|96.683 +639386.182|219852.137|96.841 +639381.360|219856.569|97.143 +639376.529|219861.010|97.253 +639371.747|219865.405|97.387 +639366.919|219869.846|97.518 +639362.109|219874.269|97.576 +639357.306|219878.685|97.625 +639352.429|219883.175|97.829 +639347.579|219887.631|97.884 +639342.767|219892.060|98.060 +639337.923|219896.513|98.137 +639333.037|219901.006|98.192 +639328.234|219905.422|98.097 +639323.457|219909.808|97.841 +639318.605|219914.268|97.768 +639313.734|219918.748|97.832 +639308.845|219923.247|98.021 +639304.005|219927.700|98.246 +639299.083|219932.227|98.390 +639294.181|219936.738|98.740 +639289.237|219941.288|99.066 +639284.294|219945.839|99.429 +639279.383|219950.362|99.926 +639274.412|219954.937|100.200 +639269.569|219959.393|100.322 +639264.661|219963.908|100.551 +639259.684|219968.489|100.959 +639254.771|219973.012|101.291 +639249.821|219977.566|101.560 +639244.932|219982.065|101.794 +639239.954|219986.643|101.968 +639235.077|219991.132|102.178 +639230.112|219995.698|102.315 +639225.214|220000.203|102.376 +639220.264|220004.754|102.465 +639215.357|220009.271|102.654 +639210.413|220013.819|102.760 +639205.466|220018.369|102.916 +639200.528|220022.911|103.029 +639195.594|220027.449|103.135 +639190.650|220031.997|103.358 +639185.663|220036.584|103.538 +639180.732|220041.123|103.724 +639175.745|220045.713|103.977 +639170.758|220050.300|104.242 +639165.772|220054.887|104.553 +639160.831|220059.435|104.922 +639155.814|220064.053|105.144 +639150.870|220068.607|105.620 +639145.823|220073.255|106.150 +639140.858|220077.827|106.458 +639135.834|220082.448|106.848 +639130.875|220087.013|107.168 +639125.904|220091.585|107.189 +639120.920|220096.173|107.363 +639115.931|220100.763|107.601 +639110.841|220105.460|108.780 +639105.946|220109.953|108.219 +639101.005|220114.491|108.104 +639096.000|220119.097|108.168 +639091.023|220123.678|108.460 +639085.987|220128.314|108.860 +639080.949|220132.953|109.314 +639075.965|220137.543|109.786 +639070.875|220142.231|110.353 +639065.919|220146.791|110.609 +639060.856|220151.454|110.987 +639055.803|220156.112|111.795 +639050.789|220160.723|111.758 +639045.738|220165.372|112.118 +639040.706|220169.998|112.307 +639035.653|220174.653|112.767 +639030.651|220179.261|113.252 +639025.570|220183.937|113.550 +639020.550|220188.555|113.758 +639015.496|220193.203|113.831 +639010.488|220197.808|113.950 +639005.453|220202.441|113.883 +639000.402|220207.087|114.002 +638995.410|220211.680|114.035 +638990.362|220216.328|114.203 +638985.245|220221.046|114.700 +638980.243|220225.655|114.977 +638975.165|220230.328|114.995 +638970.139|220234.955|115.023 +638965.070|220239.621|115.017 +638959.998|220244.291|115.062 +638954.972|220248.917|115.163 +638949.897|220253.590|115.321 +638944.816|220258.272|115.599 +638939.793|220262.899|115.769 +638934.672|220267.611|115.964 +638929.600|220272.287|116.236 +638924.525|220276.959|116.568 +638919.417|220281.662|116.699 +638914.360|220286.320|116.827 +638909.252|220291.026|117.037 +638904.152|220295.720|117.117 +638899.105|220300.368|117.193 +638894.015|220305.050|117.168 +638888.928|220309.734|117.162 +638883.850|220314.404|116.964 +638878.726|220319.116|116.705 +638873.651|220323.786|116.547 +638868.561|220328.470|116.641 +638863.431|220333.192|116.608 +638858.371|220337.843|116.163 +638853.284|220342.528|116.306 +638843.086|220351.913|116.129 +638827.748|220366.055|117.888 +638817.455|220375.553|119.598 +638812.371|220380.241|120.186 +638807.241|220384.971|120.719 +638802.120|220389.690|121.125 +638791.931|220399.081|121.881 +638786.819|220403.790|122.076 +638781.702|220408.505|122.551 +638776.590|220413.214|122.908 +638756.163|220432.036|124.194 +638751.075|220436.717|124.090 +638745.973|220441.417|124.346 +638740.874|220446.114|124.569 +638735.774|220450.811|124.819 +638730.678|220455.505|124.980 +638725.579|220460.199|125.200 +638720.486|220464.890|125.255 +638715.389|220469.584|125.474 +638710.296|220474.272|125.453 +638705.203|220478.960|125.529 +638700.158|220483.602|125.395 +638695.020|220488.332|125.310 +638689.972|220492.974|125.081 +638684.879|220497.656|124.779 +638679.786|220502.344|124.599 +638674.738|220506.986|124.261 +638669.642|220511.671|123.965 +638664.594|220516.316|123.834 +638659.501|220521.004|123.984 +638654.457|220525.652|124.182 +638649.415|220530.297|124.520 +638644.328|220534.985|124.919 +638639.284|220539.630|125.176 +638634.242|220544.275|125.252 +638629.198|220548.917|125.300 +638624.153|220553.563|125.383 +638619.060|220558.250|125.416 +638614.065|220562.850|125.441 +638609.020|220567.495|125.611 +638603.982|220572.137|125.825 +638598.937|220576.782|125.919 +638593.896|220581.427|126.133 +638588.906|220586.024|126.434 +638583.914|220590.623|126.602 +638568.875|220604.473|126.892 +638563.876|220609.076|126.922 +638558.877|220613.678|127.047 +638553.885|220618.278|127.254 +638548.889|220622.880|127.455 +638543.936|220627.440|127.507 +638538.931|220632.049|127.507 +638533.975|220636.612|127.516 +638529.022|220641.171|127.663 +638524.069|220645.734|127.748 +638519.113|220650.297|127.867 +638514.212|220654.814|128.071 +638509.262|220659.374|128.330 +638504.370|220663.885|128.708 +638499.423|220668.442|129.016 +638494.561|220672.919|129.144 +638489.611|220677.479|129.388 +638484.710|220681.996|129.659 +638479.806|220686.517|129.903 +638474.899|220691.034|130.122 +638470.043|220695.511|130.363 +638465.133|220700.031|130.549 +638460.274|220704.509|130.784 +638455.358|220709.035|130.906 +638450.490|220713.522|131.025 +638445.629|220717.999|131.256 +638440.749|220722.492|131.241 +638435.854|220726.994|131.067 +638430.971|220731.490|131.046 +638426.134|220735.943|131.006 +638421.232|220740.454|130.781 +638411.470|220749.434|130.354 +638406.681|220753.844|130.436 +638401.768|220758.364|130.165 +638396.989|220762.766|130.400 +638387.256|220771.721|130.001 +638382.398|220776.192|129.912 +638377.631|220780.578|129.815 +638372.784|220785.040|129.924 +638367.962|220789.478|129.769 +638363.156|220793.904|129.830 +638358.398|220798.287|129.903 +638353.573|220802.728|129.790 +638339.162|220815.987|129.275 +638334.392|220820.379|129.330 +638319.987|220833.635|128.659 +638305.612|220846.851|127.635 +638300.818|220851.258|127.151 +638286.553|220864.389|126.983 +638281.817|220868.751|127.151 +638272.362|220877.459|127.233 +638267.680|220881.772|127.495 +638262.904|220886.167|127.385 +638258.283|220890.428|127.791 +638253.565|220894.772|127.791 +638244.207|220903.385|128.105 +638239.513|220907.701|127.980 +638230.150|220916.318|127.958 +638225.450|220920.640|127.836 +638220.747|220924.965|127.730 +638216.111|220929.232|127.766 +638211.484|220933.487|127.910 +638206.869|220937.739|128.153 +638202.245|220941.994|128.339 +638197.594|220946.277|128.324 +638192.992|220950.511|128.348 +638188.359|220954.775|128.522 +638183.744|220959.021|128.480 +638179.184|220963.221|128.873 +638174.585|220967.454|128.982 +638156.297|220984.292|129.662 +638151.783|220988.452|130.104 +638147.204|220992.664|130.122 +638142.721|220996.795|130.470 +638138.225|221000.934|130.747 +638133.662|221005.134|130.912 +638129.093|221009.337|130.738 +638124.631|221013.446|130.955 +638120.117|221017.600|131.180 +638115.652|221021.712|131.409 +638111.214|221025.802|131.820 +638106.745|221029.914|132.061 +638102.323|221033.992|132.597 +638097.827|221038.125|132.387 +638093.364|221042.231|132.402 +638088.853|221046.379|132.125 +638084.327|221050.540|131.802 +638079.807|221054.688|131.226 +638075.363|221058.773|130.833 +638070.907|221062.869|130.692 +638066.454|221066.966|130.595 +638044.289|221087.345|129.488 +638031.286|221099.308|129.616 +638022.480|221107.401|128.928 +638018.259|221111.293|129.473 +638013.860|221115.331|129.062 +638009.538|221119.306|128.821 +638005.225|221123.272|128.644 +638000.925|221127.228|128.544 +637996.752|221131.074|129.150 +637992.472|221135.009|128.934 +637975.425|221150.688|128.617 +637971.210|221154.565|128.565 +637967.043|221158.400|128.507 +637962.803|221162.295|128.370 +637933.701|221189.060|127.382 +637929.604|221192.827|127.324 +637921.396|221200.377|127.175 +637917.333|221204.108|127.081 +637913.297|221207.817|127.132 +637909.234|221211.548|127.077 +637901.255|221218.881|127.205 +637897.326|221222.499|127.565 +637889.108|221230.031|126.447 +637884.762|221234.003|124.709 +637880.867|221237.587|125.054 +637872.838|221244.951|124.246 +637868.946|221248.529|124.407 +637860.997|221255.826|123.810 +637857.199|221259.316|123.975 +637853.368|221262.843|124.231 +637849.615|221266.296|124.855 +637846.022|221269.612|125.709 +637842.255|221273.078|126.050 +637838.426|221276.592|125.910 +637834.589|221280.116|125.742 +637830.745|221283.642|125.572 +637826.999|221287.087|125.593 +637823.244|221290.537|125.602 +637819.458|221294.009|125.270 +637815.645|221297.511|125.054 +637811.726|221301.098|124.194 +637807.824|221304.668|123.207 +637803.987|221308.185|122.502 +637800.116|221311.733|121.896 +637796.315|221315.220|121.372 +637792.651|221318.582|121.228 +637789.116|221321.831|121.390 +637785.589|221325.080|122.039 +637782.248|221328.162|123.014 +637771.650|221337.903|123.447 +637753.682|221354.390|121.838 +637746.498|221360.976|120.924 +637742.874|221364.296|120.265 +637739.348|221367.527|119.793 +637735.897|221370.696|119.622 +637732.420|221373.888|119.357 +637729.097|221376.936|119.296 +637725.744|221380.017|119.332 +637722.392|221383.099|119.375 +637719.179|221386.055|119.753 +637712.504|221392.179|119.396 +637709.212|221395.202|119.305 +637705.963|221398.183|119.186 +637702.692|221401.189|119.186 +637686.724|221415.853|118.991 +637683.289|221418.989|117.863 +637953.555|221168.291|127.721 +637957.795|221164.389|128.132 +637962.044|221160.479|128.339 +637966.260|221156.592|128.400 +637970.542|221152.651|128.565 +637974.770|221148.756|128.720 +637991.823|221133.046|128.946 +637996.045|221129.151|128.638 +638000.352|221125.183|128.504 +638004.658|221121.217|128.665 +638009.041|221117.182|128.995 +638013.409|221113.161|129.254 +638017.728|221109.181|129.278 +638022.035|221105.209|128.967 +638030.865|221097.083|129.586 +638035.321|221092.980|129.882 +638061.772|221068.618|130.442 +638066.237|221064.506|130.644 +638079.706|221052.104|131.220 +638084.278|221047.897|131.857 +638088.856|221043.685|132.253 +638093.386|221039.512|132.375 +638106.785|221027.162|131.979 +638111.275|221023.020|131.610 +638115.758|221018.880|131.235 +638120.220|221014.766|131.034 +638124.774|221010.568|130.799 +638129.273|221006.420|130.543 +638133.836|221002.217|130.729 +638138.438|220997.974|130.543 +638142.931|220993.826|130.305 +638147.515|220989.595|130.043 +638152.115|220985.349|129.894 +638156.656|220981.161|129.690 +638161.283|220976.894|129.769 +638165.846|220972.682|129.406 +638170.415|220968.463|129.123 +638175.042|220964.193|128.885 +638184.283|220955.662|128.419 +638188.941|220951.370|128.455 +638193.574|220947.094|128.367 +638198.179|220942.845|128.065 +638202.901|220938.489|127.907 +638207.534|220934.213|127.870 +638212.225|220929.888|127.907 +638216.873|220925.599|127.605 +638221.545|220921.286|127.559 +638231.031|220912.545|127.815 +638235.749|220908.195|127.760 +638240.504|220903.812|128.062 +638254.699|220890.718|127.660 +638268.927|220877.593|127.300 +638278.449|220868.806|127.071 +638297.639|220851.115|127.242 +638302.446|220846.683|127.431 +638307.277|220842.236|127.879 +638312.132|220837.762|128.153 +638321.840|220828.816|128.693 +638331.539|220819.882|129.284 +638341.250|220810.930|129.595 +638355.865|220797.461|130.013 +638360.699|220792.999|129.818 +638365.536|220788.536|129.635 +638375.299|220779.536|129.784 +638380.173|220775.046|130.122 +638385.101|220770.498|129.991 +638389.948|220766.030|130.022 +638394.858|220761.504|130.287 +638399.738|220757.005|130.193 +638404.636|220752.491|130.339 +638414.457|220743.435|130.452 +638419.401|220738.878|130.668 +638424.296|220734.367|130.894 +638429.279|220729.774|131.064 +638434.153|220725.281|131.015 +638439.139|220720.685|131.293 +638444.053|220716.152|131.226 +638448.957|220711.626|131.028 +638453.916|220707.054|130.912 +638458.823|220702.528|130.787 +638463.773|220697.959|130.595 +638468.672|220693.439|130.391 +638473.664|220688.830|130.132 +638478.611|220684.267|129.894 +638483.506|220679.747|129.674 +638488.496|220675.145|129.367 +638493.440|220670.582|129.141 +638498.380|220666.019|128.925 +638503.370|220661.416|128.665 +638508.302|220656.860|128.260 +638513.288|220652.257|128.022 +638518.278|220647.652|127.809 +638523.222|220643.089|127.681 +638528.263|220638.437|127.632 +638533.207|220633.878|127.474 +638538.197|220629.272|127.370 +638543.247|220624.615|127.538 +638548.182|220620.058|127.300 +638553.217|220615.413|127.135 +638558.204|220610.810|126.971 +638563.236|220606.165|126.712 +638583.292|220587.664|126.660 +638588.269|220583.067|126.276 +638593.350|220578.379|126.111 +638598.379|220573.734|125.855 +638603.372|220569.132|125.953 +638608.395|220564.490|125.435 +638613.476|220559.802|125.322 +638618.463|220555.199|125.212 +638623.547|220550.512|125.224 +638633.614|220541.221|125.041 +638638.695|220536.533|124.980 +638643.728|220531.888|124.749 +638648.757|220527.240|124.289 +638653.792|220522.595|124.023 +638658.873|220517.904|123.831 +638663.909|220513.259|123.703 +638668.996|220508.568|123.877 +638674.080|220503.883|124.194 +638679.118|220499.238|124.441 +638684.202|220494.553|124.776 +638689.237|220489.914|125.023 +638694.322|220485.226|125.243 +638699.403|220480.542|125.334 +638704.438|220475.896|125.377 +638709.522|220471.209|125.407 +638714.603|220466.518|125.340 +638719.641|220461.869|125.215 +638724.728|220457.176|125.002 +638729.813|220452.482|124.822 +638734.903|220447.785|124.642 +638739.941|220443.130|124.426 +638745.031|220438.433|124.267 +638775.539|220410.270|122.826 +638780.641|220405.561|122.509 +638785.698|220400.888|122.030 +638790.806|220396.170|121.594 +638795.912|220391.457|121.338 +638800.968|220386.788|121.070 +638806.083|220382.067|120.671 +638811.200|220377.336|120.113 +638816.275|220372.645|119.494 +638821.402|220367.906|118.854 +638846.868|220344.378|116.175 +638857.055|220334.981|116.202 +638862.114|220330.314|116.409 +638867.186|220325.636|116.412 +638872.261|220320.957|116.419 +638877.330|220316.284|116.565 +638882.393|220311.618|116.806 +638887.410|220306.997|117.034 +638892.485|220302.319|117.117 +638897.563|220297.640|117.190 +638902.601|220292.995|117.126 +638907.639|220288.346|117.040 +638912.690|220283.689|116.821 +638917.731|220279.041|116.784 +638922.831|220274.338|116.620 +638927.842|220269.714|116.358 +638932.904|220265.041|116.092 +638937.970|220260.369|115.827 +638942.984|220255.742|115.599 +638948.038|220251.082|115.568 +638953.064|220246.442|115.266 +638958.087|220241.813|115.077 +638963.150|220237.143|115.010 +638968.112|220232.568|115.020 +638973.132|220227.938|114.940 +638978.146|220223.314|114.937 +638983.132|220218.718|114.751 +638988.183|220214.051|114.337 +638993.139|220209.476|113.971 +638998.153|220204.859|114.130 +639003.100|220200.296|113.938 +639008.077|220195.705|113.968 +639013.064|220191.109|113.956 +639018.008|220186.549|113.889 +639023.022|220181.922|113.578 +639027.999|220177.329|113.200 +639032.976|220172.733|112.843 +639037.960|220168.133|112.453 +639042.931|220163.549|112.264 +639047.915|220158.949|111.953 +639052.859|220154.384|111.572 +639057.876|220149.751|110.981 +639062.822|220145.185|110.655 +639067.754|220140.637|110.518 +639072.686|220136.086|110.390 +639077.703|220131.450|109.487 +639082.683|220126.848|108.948 +639087.645|220122.267|108.640 +639092.562|220117.734|108.357 +639097.497|220113.181|108.344 +639102.355|220108.706|108.628 +639107.192|220104.256|109.143 +639112.231|220099.593|107.860 +639117.168|220095.033|107.500 +639122.021|220090.555|107.491 +639126.949|220086.011|107.299 +639131.835|220081.503|107.064 +639136.764|220076.955|106.909 +639141.620|220072.474|106.589 +639146.536|220067.936|106.180 +639151.465|220063.385|105.717 +639156.402|220058.826|105.211 +639161.279|220054.321|104.827 +639166.147|220049.831|104.559 +639171.057|220045.301|104.364 +639175.885|220040.845|104.068 +639180.811|220036.298|103.809 +639185.624|220031.860|103.708 +639190.516|220027.346|103.382 +639195.356|220022.877|103.105 +639200.172|220018.436|103.038 +639204.997|220013.989|102.949 +639209.840|220009.518|102.733 +639214.680|220005.053|102.565 +639219.469|220000.636|102.437 +639224.315|219996.165|102.273 +639229.109|219991.742|102.157 +639233.889|219987.335|102.166 +639238.723|219982.875|102.166 +639243.493|219978.477|101.968 +639248.327|219974.018|101.681 +639253.170|219969.546|101.346 +639257.971|219965.121|101.017 +639262.811|219960.655|100.770 +639267.606|219956.236|100.535 +639272.330|219951.880|100.450 +639277.192|219947.396|100.151 +639281.989|219942.965|99.642 +639286.763|219938.563|99.316 +639291.597|219934.104|98.963 +639296.382|219929.688|98.615 +639301.155|219925.283|98.371 +639305.916|219920.897|98.243 +639310.628|219916.551|98.106 +639315.368|219912.186|98.152 +639320.114|219907.812|98.179 +639324.750|219903.542|98.271 +639329.477|219899.186|98.432 +639334.180|219894.855|98.472 +639338.865|219890.536|98.341 +639343.602|219886.168|98.225 +639348.347|219881.794|98.088 +639353.002|219877.500|97.902 +639357.732|219873.141|97.890 +639362.429|219868.813|97.814 +639367.135|219864.472|97.695 +639371.814|219860.160|97.478 +639376.535|219855.804|97.314 +639381.229|219851.476|97.058 +639385.905|219847.163|96.914 +639390.590|219842.844|96.765 +639395.290|219838.513|96.549 +639404.790|219829.737|95.369 +639414.303|219820.956|94.260 +639419.028|219816.591|93.760 +639423.694|219812.284|93.333 +639437.703|219799.364|92.425 +639446.972|219790.817|92.111 +639456.165|219782.344|92.001 +639453.150|219782.143|91.830 +639443.936|219790.625|92.187 +639425.450|219807.645|92.949 +639420.774|219811.952|93.336 +639416.105|219816.256|93.732 +639411.380|219820.612|94.162 +639406.616|219825.001|94.811 +639401.809|219829.436|95.457 +639397.067|219833.806|96.070 +639392.297|219838.205|96.585 +639387.588|219842.542|96.796 +639382.839|219846.913|96.966 +639378.105|219851.268|97.067 +639373.353|219855.645|97.311 +639368.589|219860.035|97.634 +639363.810|219864.433|97.789 +639359.098|219868.770|97.887 +639354.288|219873.196|97.975 +639349.539|219877.567|98.030 +639344.772|219881.956|98.222 +639339.923|219886.418|98.323 +639335.122|219890.838|98.451 +639330.328|219895.251|98.576 +639325.527|219899.665|98.463 +639320.800|219904.011|98.234 +639315.993|219908.434|98.198 +639311.119|219912.917|98.271 +639306.315|219917.340|98.274 +639301.445|219921.824|98.390 +639296.568|219926.310|98.560 +639291.685|219930.806|98.798 +639286.793|219935.314|99.130 +639281.870|219939.850|99.667 +639276.878|219944.449|100.060 +639271.983|219948.960|100.493 +639267.045|219953.502|100.575 +639262.150|219958.010|100.746 +639257.197|219962.573|101.002 +639252.253|219967.126|101.215 +639247.294|219971.692|101.547 +639242.298|219976.295|101.837 +639237.421|219980.784|102.020 +639232.401|219985.402|102.169 +639227.503|219989.910|102.215 +639222.514|219994.503|102.227 +639217.576|219999.048|102.239 +639212.568|220003.657|102.425 +639207.609|220008.223|102.636 +639202.607|220012.828|102.840 +639197.617|220017.421|102.980 +639192.628|220022.015|103.154 +639187.629|220026.617|103.407 +639182.582|220031.265|103.702 +639177.604|220035.850|103.867 +639172.566|220040.489|104.135 +639167.537|220045.119|104.382 +639162.507|220049.749|104.641 +639157.524|220054.339|104.973 +639152.443|220059.021|105.321 +639147.389|220063.681|105.906 +639142.299|220068.372|106.409 +639137.276|220072.999|106.787 +639132.226|220077.650|107.037 +639127.187|220082.286|107.183 +639122.149|220086.925|107.378 +639117.107|220091.567|107.640 +639112.087|220096.188|107.738 +639106.958|220100.918|108.405 +639101.870|220105.609|109.170 +639096.847|220110.230|108.966 +639091.891|220114.784|108.576 +639086.853|220119.423|108.555 +639081.784|220124.089|108.817 +639076.703|220128.768|109.244 +639071.607|220133.468|109.859 +639066.526|220138.153|110.387 +639061.439|220142.832|110.481 +639056.382|220147.492|110.841 +639051.264|220152.207|111.331 +639046.196|220156.883|111.886 +639041.148|220161.531|112.243 +639036.015|220166.259|112.502 +639030.986|220170.888|112.718 +639025.902|220175.573|113.069 +639020.812|220180.261|113.486 +639015.743|220184.928|113.727 +639010.683|220189.588|113.904 +639005.685|220194.187|113.941 +639000.594|220198.872|113.974 +638995.556|220203.508|113.959 +638990.512|220208.150|114.044 +638985.458|220212.805|114.331 +638980.395|220217.468|114.727 +638975.360|220222.101|114.800 +638970.285|220226.774|114.831 +638965.259|220231.398|114.861 +638960.184|220236.067|114.892 +638955.149|220240.703|115.132 +638950.122|220245.330|115.239 +638945.029|220250.021|115.669 +638940.021|220254.629|115.614 +638934.943|220259.305|115.870 +638929.868|220263.978|116.156 +638924.797|220268.650|116.443 +638919.728|220273.317|116.656 +638914.674|220277.968|116.745 +638909.611|220282.631|116.958 +638904.561|220287.280|117.022 +638899.559|220291.879|117.080 +638894.469|220296.564|117.071 +638889.424|220301.203|117.062 +638884.395|220305.830|116.854 +638879.323|220310.493|116.571 +638874.297|220315.114|116.321 +638869.259|220319.750|116.312 +638864.175|220324.426|116.291 +638854.083|220333.707|115.779 +638849.041|220338.346|115.934 +638838.928|220347.655|116.050 +638833.829|220352.355|116.638 +638823.685|220361.706|117.900 +638818.628|220366.372|118.833 +638813.538|220371.066|119.497 +638808.454|220375.751|120.043 +638803.422|220380.393|120.631 +638798.350|220385.060|120.872 +638793.281|220389.729|121.137 +638788.209|220394.402|121.551 +638783.140|220399.071|121.975 +638778.072|220403.741|122.405 +638773.058|220408.362|122.755 +638767.949|220413.065|123.014 +638762.883|220417.731|123.511 +638747.723|220431.685|123.767 +638742.678|220436.333|124.042 +638737.579|220441.027|124.234 +638732.574|220445.636|124.426 +638727.475|220450.333|124.731 +638722.427|220454.981|124.874 +638717.377|220459.629|125.096 +638712.329|220464.274|125.166 +638707.236|220468.962|125.209 +638702.237|220473.562|125.224 +638697.144|220478.246|125.252 +638692.100|220482.888|125.054 +638687.055|220487.528|124.901 +638682.008|220492.167|124.609 +638676.914|220496.851|124.289 +638671.913|220501.448|124.029 +638666.865|220506.087|123.694 +638661.769|220510.775|123.624 +638656.770|220515.374|123.603 +638651.726|220520.019|123.767 +638646.681|220524.664|124.142 +638641.640|220529.310|124.471 +638636.598|220533.952|124.676 +638626.510|220543.239|124.947 +638621.465|220547.881|124.965 +638616.421|220552.523|125.038 +638611.373|220557.168|125.069 +638606.380|220561.768|125.261 +638601.339|220566.410|125.499 +638596.301|220571.052|125.791 +638586.315|220580.248|126.181 +638581.271|220584.890|126.352 +638576.227|220589.535|126.383 +638571.234|220594.135|126.651 +638566.196|220598.774|126.956 +638561.188|220603.382|126.687 +638541.211|220621.780|127.547 +638536.209|220626.383|127.596 +638531.195|220630.994|127.382 +638526.194|220635.600|127.529 +638521.241|220640.160|127.638 +638516.288|220644.722|127.739 +638511.286|220649.325|127.867 +638506.382|220653.842|128.065 +638501.398|220658.435|128.574 +638496.448|220662.995|128.824 +638491.498|220667.555|129.062 +638486.548|220672.115|129.336 +638481.647|220676.629|129.635 +638476.697|220681.189|129.879 +638471.793|220685.706|130.141 +638466.888|220690.223|130.372 +638461.981|220694.743|130.589 +638457.068|220699.266|130.738 +638452.109|220703.835|130.906 +638447.235|220708.319|130.979 +638442.322|220712.842|131.153 +638437.442|220717.335|131.134 +638432.501|220721.880|130.951 +638427.624|220726.369|131.037 +638422.729|220730.874|130.854 +638412.920|220739.893|130.378 +638407.949|220744.459|129.964 +638398.278|220753.366|130.180 +638393.428|220757.828|130.122 +638388.521|220762.342|130.019 +638383.638|220766.832|129.607 +638378.819|220771.273|130.016 +638373.952|220775.750|129.833 +638369.130|220780.185|129.674 +638364.268|220784.659|129.647 +638359.452|220789.091|129.592 +638344.974|220802.411|129.266 +638340.180|220806.828|129.519 +638320.889|220824.567|128.659 +638287.288|220855.465|126.636 +638282.451|220859.909|126.312 +638277.769|220864.225|126.520 +638273.066|220868.559|126.992 +638258.926|220881.577|127.404 +638254.202|220885.923|127.337 +638249.508|220890.248|127.538 +638244.796|220894.586|127.623 +638240.129|220898.883|127.687 +638235.456|220903.187|127.730 +638226.035|220911.859|127.650 +638216.711|220920.445|127.629 +638212.093|220924.697|127.815 +638207.439|220928.982|127.727 +638202.754|220933.295|127.797 +638198.164|220937.523|127.873 +638193.546|220941.778|128.114 +638188.910|220946.048|128.257 +638184.302|220950.291|128.242 +638179.727|220954.506|128.492 +638175.139|220958.734|128.656 +638170.549|220962.962|128.848 +638147.799|220983.926|129.967 +638143.236|220988.126|130.095 +638138.737|220992.271|130.324 +638134.202|220996.453|130.656 +638129.608|221000.678|130.302 +638125.103|221004.829|130.534 +638120.605|221008.974|130.836 +638116.121|221013.101|130.942 +638111.659|221017.213|131.183 +638102.719|221025.455|131.933 +638098.278|221029.548|132.040 +638089.369|221037.757|132.436 +638084.861|221041.902|132.207 +638075.866|221050.171|131.296 +638071.315|221054.353|130.863 +638066.908|221058.413|131.006 +638062.397|221062.561|130.555 +638057.980|221066.624|130.388 +638053.570|221070.684|130.272 +638049.101|221074.796|130.138 +638040.317|221082.879|129.927 +638035.894|221086.948|129.833 +638031.563|221090.938|129.973 +638018.441|221103.018|129.802 +638014.043|221107.062|129.367 +638009.691|221111.067|129.205 +638005.417|221114.999|129.229 +638001.053|221119.017|129.031 +637996.648|221123.067|128.653 +637992.302|221127.063|128.327 +637987.992|221131.032|128.220 +637983.834|221134.863|128.675 +637979.646|221138.725|128.958 +637975.385|221142.645|128.900 +637971.121|221146.567|128.565 +637966.845|221150.502|128.464 +637958.396|221158.281|128.294 +637954.241|221162.106|128.339 +637941.656|221173.686|127.964 +637933.387|221181.299|127.879 +637929.232|221185.122|127.763 +637925.136|221188.892|127.708 +637908.719|221203.998|127.233 +637904.699|221207.701|127.361 +637900.666|221211.411|127.224 +637896.811|221214.974|128.150 +637888.718|221222.414|127.556 +637884.271|221226.480|125.563 +637880.156|221230.257|124.898 +637876.182|221233.917|124.874 +637872.223|221237.560|124.712 +637864.310|221244.841|124.682 +637860.472|221248.380|124.862 +637856.617|221251.934|125.215 +637852.843|221255.412|125.712 +637849.167|221258.807|126.413 +637845.504|221262.191|127.175 +637841.651|221265.735|127.123 +637837.588|221269.463|126.166 +637833.741|221273.002|125.950 +637829.864|221276.568|125.843 +637826.091|221280.040|125.733 +637822.333|221283.499|125.715 +637818.575|221286.959|125.703 +637814.792|221290.439|125.599 +637811.089|221293.847|125.636 +637807.407|221297.236|125.544 +637803.603|221300.736|125.166 +637799.915|221304.125|125.081 +637796.031|221307.694|124.407 +637792.289|221311.129|123.908 +637788.610|221314.513|123.682 +637785.077|221317.771|124.063 +637781.611|221320.968|124.511 +637778.036|221324.257|124.532 +637770.764|221330.944|124.109 +637759.772|221341.042|122.603 +637756.231|221344.298|122.408 +637745.642|221354.039|121.811 +637734.910|221363.890|120.168 +637731.365|221367.146|119.634 +637727.930|221370.303|119.332 +637724.519|221373.446|119.329 +637721.209|221376.491|119.323 +637717.865|221379.569|119.412 +637714.610|221382.568|119.628 +637711.288|221385.623|119.396 +637707.953|221388.692|119.336 +637704.716|221391.670|119.253 +637701.391|221394.733|119.238 +637698.282|221397.595|119.448 +637695.054|221400.567|119.628 +637691.909|221403.463|119.518 +637688.659|221406.453|119.433 +637685.493|221409.363|119.262 +637682.222|221412.369|118.915 +637678.854|221415.456|118.031 +637956.399|221157.708|128.193 +637969.103|221145.988|128.452 +637973.380|221142.050|128.876 +637977.635|221138.124|128.955 +637981.792|221134.284|128.531 +637986.008|221130.389|128.163 +637990.284|221126.448|128.388 +637994.618|221122.452|128.681 +637998.986|221118.425|128.909 +638003.332|221114.420|129.303 +638007.627|221110.452|128.906 +638020.825|221098.293|130.034 +638025.171|221094.282|129.982 +638029.490|221090.295|129.793 +638033.931|221086.199|130.037 +638038.363|221082.114|130.223 +638042.740|221078.076|130.132 +638051.576|221069.922|130.177 +638056.005|221065.838|130.150 +638060.498|221061.696|130.519 +638064.981|221057.566|130.845 +638069.489|221053.411|131.040 +638074.013|221049.239|131.369 +638078.545|221045.063|131.762 +638083.068|221040.896|132.122 +638087.616|221036.705|132.351 +638096.516|221028.488|131.985 +638100.997|221024.352|131.860 +638105.517|221020.179|131.680 +638109.985|221016.049|131.204 +638114.426|221011.949|130.860 +638118.989|221007.737|130.686 +638123.488|221003.582|130.436 +638128.042|220999.376|130.253 +638132.644|220995.133|130.394 +638137.207|220990.924|130.311 +638141.745|220986.736|130.061 +638146.281|220982.548|129.824 +638150.880|220978.305|129.699 +638155.483|220974.059|129.595 +638160.131|220969.777|129.848 +638164.731|220965.528|129.437 +638169.284|220961.325|129.040 +638173.896|220957.067|128.748 +638178.511|220952.809|128.480 +638183.110|220948.560|128.111 +638187.813|220944.223|128.178 +638192.452|220939.946|128.123 +638197.131|220935.630|128.047 +638201.755|220931.357|127.571 +638206.467|220927.017|127.757 +638211.170|220922.673|127.553 +638220.582|220913.995|127.590 +638225.258|220909.682|127.590 +638229.997|220905.315|127.727 +638234.746|220900.935|127.568 +638239.452|220896.591|127.492 +638244.232|220892.187|127.623 +638258.417|220879.099|127.315 +638263.123|220874.755|126.892 +638267.899|220870.345|126.703 +638282.164|220857.187|126.483 +638291.820|220848.287|126.745 +638306.377|220834.878|127.803 +638311.209|220830.431|128.327 +638316.085|220825.932|128.373 +638320.871|220821.522|128.507 +638325.772|220817.008|128.833 +638340.332|220803.584|129.071 +638359.788|220785.647|129.467 +638364.631|220781.182|129.388 +638369.541|220776.655|129.552 +638374.436|220772.141|129.595 +638379.298|220767.661|129.790 +638384.199|220763.144|129.946 +638389.097|220758.626|130.083 +638403.716|220745.142|129.629 +638408.662|220740.582|129.869 +638418.526|220731.499|130.641 +638423.470|220726.942|130.948 +638428.340|220722.450|130.921 +638433.318|220717.862|131.049 +638438.188|220713.370|131.086 +638443.154|220708.791|131.107 +638448.055|220704.268|130.884 +638452.965|220699.742|130.830 +638457.915|220695.173|130.662 +638462.813|220690.653|130.458 +638467.757|220686.090|130.241 +638472.701|220681.527|130.019 +638477.642|220676.967|129.757 +638482.583|220672.407|129.488 +638487.472|220667.893|129.202 +638492.458|220663.291|128.928 +638497.390|220658.737|128.559 +638502.328|220654.177|128.297 +638507.305|220649.581|127.882 +638512.249|220645.021|127.745 +638517.242|220640.412|127.654 +638522.182|220635.853|127.532 +638527.172|220631.250|127.410 +638532.174|220626.639|127.586 +638537.118|220622.076|127.547 +638572.063|220589.831|126.498 +638577.037|220585.234|126.075 +638582.079|220580.586|126.236 +638592.037|220571.390|125.596 +638597.069|220566.748|125.502 +638602.098|220562.106|125.227 +638607.082|220557.507|125.066 +638617.143|220548.219|124.779 +638622.178|220543.577|124.798 +638627.211|220538.932|124.636 +638632.194|220534.333|124.538 +638637.275|220529.645|124.426 +638642.307|220525.003|124.276 +638647.291|220520.400|123.932 +638652.369|220515.712|123.603 +638657.401|220511.067|123.429 +638662.436|220506.422|123.493 +638667.475|220501.780|123.627 +638672.510|220497.138|124.026 +638677.545|220492.499|124.350 +638682.581|220487.860|124.676 +638687.662|220483.175|124.880 +638692.697|220478.536|125.124 +638697.729|220473.894|125.154 +638702.810|220469.206|125.182 +638707.797|220464.607|125.102 +638712.881|220459.916|125.057 +638717.916|220455.271|124.898 +638722.955|220450.616|124.590 +638728.039|220445.922|124.395 +638733.077|220441.274|124.231 +638738.118|220436.623|124.066 +638753.322|220422.593|123.828 +638763.463|220413.229|123.197 +638768.513|220408.566|122.816 +638773.561|220403.906|122.548 +638778.660|220399.196|122.231 +638783.717|220394.530|121.847 +638788.822|220389.812|121.387 +638793.839|220385.179|120.887 +638798.944|220380.466|120.610 +638804.004|220375.794|120.338 +638809.073|220371.109|119.759 +638814.148|220366.421|119.192 +638819.281|220361.672|118.345 +638824.316|220357.015|117.607 +638839.574|220342.915|115.779 +638844.689|220338.197|115.763 +638849.758|220333.521|115.754 +638859.840|220324.228|115.974 +638864.900|220319.564|116.224 +638869.969|220314.885|116.260 +638875.038|220310.210|116.348 +638880.049|220305.589|116.665 +638885.112|220300.923|116.925 +638890.132|220296.290|117.068 +638895.164|220291.647|117.077 +638900.242|220286.963|117.098 +638905.280|220282.311|117.031 +638910.319|220277.660|116.943 +638915.415|220272.954|116.763 +638920.462|220268.297|116.632 +638925.516|220263.630|116.428 +638930.585|220258.945|116.035 +638935.644|220254.273|115.797 +638940.655|220249.649|115.660 +638945.718|220244.970|115.434 +638950.729|220240.346|115.340 +638955.810|220235.653|114.971 +638960.824|220231.026|114.876 +638965.884|220226.353|114.840 +638970.901|220221.723|114.794 +638975.909|220217.102|114.867 +638980.941|220212.457|114.675 +638986.004|220207.775|114.108 +638991.024|220203.142|114.120 +638996.059|220198.494|113.971 +639000.988|220193.947|113.992 +639006.011|220189.314|114.069 +639011.012|220184.693|113.825 +639016.017|220180.072|113.587 +639021.068|220175.409|113.419 +639026.036|220170.821|113.130 +639031.056|220166.182|112.813 +639036.018|220161.601|112.654 +639041.047|220156.953|112.319 +639046.092|220152.296|111.877 +639051.094|220147.669|111.377 +639056.074|220143.072|111.164 +639061.094|220138.427|110.560 +639066.102|220133.803|110.158 +639071.031|220129.253|110.039 +639076.078|220124.583|109.308 +639081.046|220119.993|108.902 +639086.003|220115.424|109.109 +639090.846|220110.959|109.466 +639095.857|220106.332|109.204 +639100.764|220101.796|109.006 +639105.754|220097.188|108.558 +639110.701|220092.616|108.088 +639115.687|220088.007|107.732 +639120.604|220083.469|107.595 +639125.526|220078.924|107.433 +639130.452|220074.376|107.272 +639135.395|220069.807|106.973 +639140.300|220065.278|106.644 +639145.277|220060.679|106.153 +639150.154|220056.171|105.702 +639155.144|220051.559|105.168 +639160.017|220047.054|104.815 +639164.976|220042.476|104.595 +639169.856|220037.968|104.248 +639174.718|220033.478|104.071 +639179.579|220028.989|103.913 +639184.462|220024.478|103.644 +639189.351|220019.960|103.330 +639194.222|220015.465|103.209 +639199.108|220010.954|102.998 +639203.939|220006.491|102.843 +639208.819|220001.986|102.718 +639213.604|219997.567|102.587 +639218.445|219993.098|102.447 +639223.276|219988.639|102.386 +639228.067|219984.216|102.294 +639232.910|219979.745|102.209 +639237.671|219975.347|102.008 +639242.539|219970.854|101.819 +639247.324|219966.431|101.514 +639252.158|219961.966|101.264 +639256.983|219957.513|101.099 +639261.729|219953.127|100.816 +639266.493|219948.728|100.752 +639271.276|219944.312|100.615 +639276.104|219939.853|100.212 +639280.923|219935.396|99.569 +639285.772|219930.910|99.075 +639290.490|219926.554|98.813 +639295.285|219922.125|98.719 +639300.003|219917.767|98.499 +639304.746|219913.393|98.481 +639309.434|219909.062|98.481 +639314.124|219904.737|98.512 +639318.806|219900.415|98.594 +639323.479|219896.105|98.761 +639328.130|219891.813|98.786 +639332.864|219887.439|98.633 +639337.564|219883.099|98.405 +639342.248|219878.774|98.295 +639346.927|219874.455|98.246 +639351.618|219870.123|98.143 +639356.312|219865.789|98.048 +639360.911|219861.543|97.932 +639365.590|219857.218|97.673 +639370.333|219852.838|97.375 +639374.966|219848.562|97.158 +639379.593|219844.285|96.981 +639384.259|219839.976|96.881 +639388.941|219835.650|96.472 +639393.641|219831.304|95.970 +639398.323|219826.973|95.323 +639403.074|219822.578|94.610 +639407.759|219818.246|94.013 +639412.404|219813.955|93.647 +639417.040|219809.669|93.345 +639467.552|219762.998|90.148 +639438.066|219787.657|91.891 +639415.087|219808.810|93.272 +639410.451|219813.077|93.501 +639405.842|219817.320|93.885 +639401.157|219821.639|94.433 +639396.457|219825.970|95.073 +639391.754|219830.304|95.756 +639387.033|219834.654|96.305 +639382.333|219838.985|96.756 +639377.691|219843.255|96.920 +639372.991|219847.580|97.155 +639368.300|219851.899|97.366 +639363.603|219856.225|97.622 +639358.900|219860.553|97.935 +639354.187|219864.890|98.042 +639349.530|219869.179|98.158 +639344.824|219873.507|98.262 +639340.090|219877.865|98.277 +639335.381|219882.200|98.460 +639330.626|219886.580|98.640 +639325.832|219890.990|98.771 +639321.104|219895.343|98.835 +639316.417|219899.653|98.679 +639311.677|219904.014|98.569 +639306.870|219908.437|98.563 +639302.121|219912.805|98.542 +639297.306|219917.240|98.646 +639292.548|219921.616|98.719 +639287.692|219926.088|98.804 +639282.840|219930.556|99.197 +639277.926|219935.089|99.716 +639272.995|219939.636|100.362 +639268.118|219944.126|100.676 +639263.293|219948.567|100.712 +639258.386|219953.087|100.968 +639253.539|219957.546|101.166 +639248.595|219962.100|101.398 +639243.697|219966.614|101.678 +639238.747|219971.171|101.989 +639233.874|219975.661|102.172 +639228.966|219980.178|102.261 +639224.007|219984.744|102.386 +639219.103|219989.255|102.489 +639214.168|219993.799|102.501 +639209.261|219998.316|102.675 +639204.271|220002.907|102.770 +639199.324|220007.467|102.959 +639194.329|220012.063|103.138 +639189.382|220016.620|103.373 +639184.343|220021.259|103.562 +639179.393|220025.819|103.876 +639174.349|220030.464|104.178 +639169.393|220035.027|104.217 +639164.361|220039.663|104.507 +639159.377|220044.253|104.809 +639154.296|220048.932|105.135 +639149.233|220053.601|105.748 +639144.146|220058.289|106.211 +639139.123|220062.916|106.564 +639134.042|220067.598|107.028 +639128.992|220072.252|107.290 +639123.950|220076.894|107.503 +639118.912|220081.533|107.710 +639113.877|220086.172|107.924 +639108.789|220090.857|108.189 +639103.724|220095.527|108.732 +639098.588|220100.257|109.067 +639093.577|220104.869|109.189 +639088.432|220109.614|109.704 +639083.430|220114.211|109.335 +639078.428|220118.807|108.978 +639073.259|220123.577|109.820 +639068.187|220128.250|110.204 +639063.106|220132.926|110.240 +639057.958|220137.677|110.996 +639052.868|220142.365|111.213 +639047.768|220147.059|111.517 +639042.663|220151.765|111.953 +639037.506|220156.520|112.453 +639032.422|220161.202|112.746 +639027.347|220165.878|112.977 +639022.217|220170.605|113.294 +639017.142|220175.278|113.578 +639012.040|220179.975|113.642 +639006.922|220184.687|113.925 +639001.878|220189.332|113.980 +638996.739|220194.062|114.011 +638991.667|220198.726|113.855 +638986.619|220203.374|114.011 +638981.471|220208.117|114.242 +638976.344|220212.844|114.843 +638971.276|220217.511|114.751 +638966.204|220222.183|114.730 +638961.126|220226.859|114.818 +638956.005|220231.574|114.843 +638950.924|220236.256|115.038 +638945.837|220240.947|115.361 +638940.707|220245.674|115.626 +638935.590|220250.387|115.745 +638930.521|220255.056|115.903 +638925.391|220259.787|116.318 +638920.322|220264.459|116.565 +638915.214|220269.165|116.705 +638910.105|220273.871|116.851 +638905.049|220278.529|117.007 +638899.952|220283.223|117.019 +638894.813|220287.956|117.007 +638889.769|220292.601|117.025 +638884.685|220297.280|116.900 +638879.613|220301.944|116.571 +638874.541|220306.610|116.257 +638869.460|220311.289|116.184 +638864.382|220315.961|116.041 +638859.313|220320.625|115.684 +638854.232|220325.300|115.629 +638838.995|220339.334|115.574 +638823.700|220353.440|117.318 +638818.653|220358.100|118.037 +638803.388|220372.182|119.890 +638798.268|220376.903|120.165 +638793.190|220381.588|120.753 +638788.164|220386.221|121.195 +638783.043|220390.942|121.649 +638778.026|220395.569|121.996 +638772.960|220400.239|122.332 +638767.852|220404.948|122.618 +638757.778|220414.229|123.164 +638747.677|220423.532|123.066 +638742.614|220428.201|123.682 +638737.570|220432.852|124.057 +638732.568|220437.455|123.950 +638727.517|220442.109|124.118 +638722.418|220446.809|124.359 +638717.416|220451.418|124.578 +638712.366|220456.072|124.919 +638707.321|220460.720|124.919 +638702.323|220465.323|124.996 +638697.275|220469.971|125.081 +638692.231|220474.616|124.932 +638687.232|220479.216|124.846 +638682.187|220483.858|124.609 +638677.140|220488.500|124.307 +638672.092|220493.145|124.097 +638667.045|220497.787|123.642 +638662.043|220502.390|123.380 +638657.044|220506.992|123.207 +638651.997|220511.640|123.344 +638647.001|220516.246|123.533 +638641.957|220520.894|123.908 +638636.961|220525.497|124.148 +638631.965|220530.099|124.255 +638621.925|220539.350|124.471 +638616.878|220543.995|124.523 +638611.882|220548.597|124.612 +638606.886|220553.200|124.807 +638601.894|220557.802|125.014 +638596.898|220562.405|125.203 +638591.906|220567.007|125.435 +638586.861|220571.653|125.599 +638581.917|220576.212|125.831 +638576.867|220580.861|125.813 +638571.874|220585.463|126.008 +638541.964|220613.008|126.334 +638537.017|220617.568|126.599 +638532.049|220622.155|127.492 +638527.099|220626.718|127.608 +638522.128|220631.290|127.370 +638517.126|220635.898|127.495 +638512.176|220640.461|127.678 +638507.220|220645.027|127.769 +638502.270|220649.587|128.010 +638497.329|220654.144|128.461 +638492.382|220658.704|128.763 +638487.478|220663.221|129.004 +638482.537|220667.781|129.379 +638477.630|220672.298|129.607 +638472.677|220676.864|129.839 +638467.730|220681.426|130.135 +638462.822|220685.947|130.360 +638457.915|220690.470|130.580 +638453.002|220694.996|130.744 +638448.037|220699.571|130.814 +638443.175|220704.049|131.064 +638438.246|220708.587|131.009 +638433.312|220713.129|130.927 +638428.380|220717.673|130.878 +638423.500|220722.166|130.942 +638418.599|220726.674|130.711 +638398.945|220744.755|129.443 +638379.420|220762.738|129.635 +638374.561|220767.210|129.559 +638369.654|220771.730|129.519 +638364.780|220776.213|129.318 +638359.934|220780.679|129.467 +638355.118|220785.114|129.440 +638350.275|220789.576|129.656 +638345.413|220794.047|129.150 +638330.896|220807.413|129.101 +638326.068|220811.860|129.059 +638311.562|220825.210|128.406 +638306.737|220829.645|128.041 +638277.717|220856.321|124.892 +638273.051|220860.637|126.130 +638268.302|220865.011|126.224 +638263.617|220869.336|126.882 +638258.902|220873.682|127.291 +638254.174|220878.035|127.193 +638244.719|220886.746|127.462 +638235.246|220895.464|127.254 +638230.570|220899.770|127.282 +638225.846|220904.117|127.343 +638221.161|220908.430|127.321 +638216.470|220912.746|127.294 +638211.783|220917.065|127.294 +638202.443|220925.663|127.669 +638188.542|220938.465|128.031 +638183.918|220942.720|127.900 +638179.260|220947.011|128.251 +638174.697|220951.218|128.598 +638165.493|220959.691|128.784 +638160.997|220963.843|129.647 +638151.761|220972.340|129.363 +638147.220|220976.522|129.616 +638142.675|220980.710|129.845 +638138.146|220984.883|130.211 +638129.014|220993.289|130.144 +638124.472|220997.468|130.153 +638119.977|221001.610|130.470 +638115.447|221005.780|130.583 +638110.939|221009.934|130.833 +638106.532|221013.997|131.454 +638102.054|221018.124|131.613 +638097.571|221022.251|131.768 +638093.099|221026.372|132.003 +638088.661|221030.460|132.162 +638084.224|221034.547|132.335 +638079.734|221038.677|132.213 +638070.675|221047.004|131.564 +638057.270|221059.334|130.921 +638048.345|221067.539|130.391 +638039.552|221075.634|130.403 +638030.691|221083.785|130.116 +638026.366|221087.768|130.293 +638021.989|221091.798|130.205 +638008.929|221103.810|129.909 +638000.117|221111.912|129.043 +637995.813|221115.871|129.205 +637991.476|221119.861|128.915 +637987.163|221123.829|128.787 +637978.470|221131.821|128.227 +637974.224|221135.729|128.245 +637970.088|221139.545|128.827 +637961.560|221147.387|128.483 +637957.308|221151.304|128.513 +637953.025|221155.239|128.169 +637936.310|221170.619|128.001 +637923.825|221182.107|127.791 +637919.653|221185.945|127.623 +637915.574|221189.700|127.669 +637911.466|221193.479|127.599 +637903.306|221200.983|127.529 +637899.319|221204.656|127.830 +637882.924|221219.723|126.617 +637878.605|221223.676|125.236 +637870.625|221231.015|125.066 +637862.737|221238.276|125.368 +637858.958|221241.763|126.041 +637855.199|221245.231|126.815 +637851.475|221248.666|127.519 +637847.692|221252.150|127.980 +637843.839|221255.698|128.135 +637840.008|221259.225|128.160 +637831.830|221266.720|126.276 +637827.944|221270.292|126.111 +637824.177|221273.758|126.035 +637820.358|221277.269|125.974 +637816.548|221280.771|125.971 +637812.780|221284.237|125.934 +637808.998|221287.715|125.843 +637805.288|221291.128|125.849 +637801.530|221294.585|125.663 +637797.796|221298.014|125.611 +637794.053|221301.458|125.517 +637790.341|221304.872|125.343 +637786.705|221308.212|125.288 +637783.001|221311.620|125.182 +637779.271|221315.046|124.983 +637775.640|221318.384|124.770 +637771.992|221321.733|124.505 +637768.343|221325.092|124.453 +637764.704|221328.433|124.255 +637760.925|221331.895|123.289 +637757.358|221335.175|123.188 +637753.777|221338.467|123.042 +637743.094|221348.284|122.496 +637736.038|221354.765|121.899 +637728.954|221361.269|121.039 +637725.324|221364.597|120.396 +637718.502|221370.864|120.009 +637715.028|221374.055|119.579 +637711.687|221377.128|119.683 +637708.340|221380.206|119.564 +637705.009|221383.266|119.525 +637701.684|221386.327|119.503 +637698.514|221389.244|119.680 +637695.142|221392.340|119.515 +637688.714|221398.253|119.576 +637682.420|221404.045|119.979 +637679.262|221406.949|120.049 +637673.038|221412.677|120.347 +637935.837|221169.050|128.047 +637952.595|221153.572|128.108 +637956.896|221149.606|128.592 +637961.093|221145.729|128.586 +637969.533|221137.929|128.312 +637973.733|221134.046|128.108 +637978.031|221130.081|128.419 +637982.365|221126.082|128.669 +637991.037|221118.075|129.001 +637995.347|221114.094|128.909 +637999.666|221110.107|129.168 +638004.104|221106.014|129.531 +638021.691|221089.780|130.327 +638026.046|221085.760|130.342 +638048.129|221065.362|130.458 +638066.185|221048.702|131.613 +638084.254|221032.023|132.290 +638088.735|221027.884|132.128 +638093.258|221023.702|131.954 +638102.283|221015.360|131.506 +638111.299|221007.024|130.744 +638115.795|221002.866|130.479 +638120.358|220998.651|130.321 +638124.945|220994.408|130.034 +638129.523|220990.177|130.013 +638138.777|220981.631|130.043 +638143.364|220977.388|129.833 +638147.936|220973.160|129.507 +638152.563|220968.887|129.589 +638161.820|220960.328|129.147 +638171.092|220951.754|128.525 +638175.767|220947.429|128.352 +638180.425|220943.128|128.412 +638185.085|220938.821|128.153 +638194.464|220930.150|127.772 +638199.142|220925.828|127.693 +638203.830|220921.490|127.340 +638208.561|220917.120|127.340 +638213.270|220912.767|127.184 +638217.970|220908.421|126.986 +638222.783|220903.980|127.312 +638227.489|220899.633|127.172 +638246.579|220881.994|127.074 +638251.410|220877.535|127.288 +638265.705|220864.316|126.352 +638270.493|220859.890|126.276 +638275.209|220855.526|125.557 +638280.067|220851.039|125.712 +638284.959|220846.528|126.212 +638289.830|220842.038|126.980 +638304.475|220828.526|127.992 +638309.325|220824.049|128.217 +638314.199|220819.547|128.260 +638319.121|220815.008|128.806 +638323.986|220810.516|128.784 +638328.875|220806.002|129.056 +638338.674|220796.955|129.385 +638343.539|220792.462|129.485 +638348.409|220787.957|129.138 +638353.262|220783.474|129.141 +638358.175|220778.938|129.296 +638363.089|220774.403|129.488 +638367.996|220769.874|129.623 +638372.943|220765.305|129.714 +638392.554|220747.181|129.278 +638397.449|220742.661|129.409 +638417.307|220724.339|130.775 +638427.200|220715.201|130.836 +638432.172|220710.608|130.924 +638437.094|220706.064|131.012 +638442.062|220701.476|131.058 +638447.009|220696.904|130.836 +638451.962|220692.326|130.738 +638456.912|220687.751|130.601 +638461.856|220683.182|130.354 +638466.846|220678.567|130.113 +638471.787|220674.002|129.851 +638476.776|220669.390|129.616 +638481.714|220664.824|129.351 +638486.697|220660.218|129.028 +638491.638|220655.653|128.812 +638496.570|220651.093|128.461 +638501.547|220646.493|127.995 +638506.534|220641.888|127.754 +638511.527|220637.276|127.681 +638516.519|220632.664|127.577 +638521.515|220628.053|127.629 +638526.507|220623.441|127.577 +638531.509|220618.811|126.651 +638536.447|220614.251|126.383 +638541.479|220609.600|126.187 +638546.472|220604.992|126.148 +638556.497|220595.732|125.986 +638561.471|220591.135|125.465 +638566.519|220586.478|125.776 +638571.551|220581.830|125.584 +638576.537|220577.224|125.468 +638581.524|220572.619|125.432 +638586.559|220567.971|125.364 +638591.592|220563.322|125.264 +638596.624|220558.674|125.060 +638601.653|220554.029|124.791 +638606.633|220549.423|124.526 +638611.666|220544.775|124.389 +638616.701|220540.127|124.285 +638621.733|220535.479|124.243 +638626.769|220530.831|124.145 +638631.801|220526.182|124.017 +638636.833|220521.534|123.874 +638641.865|220516.886|123.603 +638646.898|220512.235|123.335 +638651.933|220507.583|123.088 +638656.968|220502.935|123.103 +638662.004|220498.287|123.307 +638667.042|220493.642|123.697 +638672.080|220489.000|124.121 +638677.116|220484.355|124.356 +638682.151|220479.709|124.545 +638687.183|220475.064|124.807 +638692.218|220470.419|124.923 +638697.251|220465.771|124.932 +638702.286|220461.123|124.926 +638707.321|220456.471|124.737 +638712.360|220451.820|124.554 +638717.395|220447.166|124.307 +638722.433|220442.512|124.127 +638727.475|220437.854|123.874 +638732.513|220433.200|123.755 +638757.717|220409.922|123.024 +638762.731|220405.277|122.024 +638767.766|220400.635|122.448 +638772.863|220395.926|122.204 +638777.874|220391.296|121.753 +638782.930|220386.620|121.366 +638787.987|220381.945|121.006 +638793.001|220377.309|120.561 +638798.073|220372.621|119.933 +638803.138|220367.933|119.454 +638808.155|220363.297|119.144 +638813.236|220358.600|118.452 +638818.318|220353.897|117.757 +638823.356|220349.236|117.059 +638843.585|220330.531|115.340 +638853.629|220321.262|115.385 +638863.602|220312.066|115.955 +638868.671|220307.390|116.044 +638873.642|220302.803|116.156 +638878.653|220298.182|116.470 +638883.664|220293.565|116.821 +638888.638|220288.980|116.982 +638893.664|220284.341|117.022 +638898.651|220279.739|116.995 +638903.689|220275.091|116.928 +638908.682|220270.482|116.848 +638913.684|220265.864|116.656 +638918.725|220261.210|116.595 +638923.736|220256.583|116.336 +638928.753|220251.950|116.010 +638933.755|220247.332|115.937 +638938.778|220242.693|115.593 +638943.792|220238.064|115.382 +638948.824|220233.415|114.986 +638953.798|220228.822|114.779 +638958.806|220224.201|114.773 +638963.771|220219.617|114.739 +638968.782|220214.993|114.748 +638973.760|220210.400|114.611 +638978.768|220205.773|114.111 +638983.791|220201.134|114.050 +638988.771|220196.537|113.971 +638993.758|220191.935|113.837 +638998.677|220187.400|113.974 +639003.667|220182.791|113.849 +639008.665|220178.176|113.654 +639023.558|220164.430|113.355 +639028.584|220159.788|112.990 +639033.562|220155.188|112.648 +639038.560|220150.570|112.133 +639043.544|220145.965|111.810 +639048.549|220141.338|111.295 +639053.526|220136.745|111.118 +639058.570|220132.078|110.295 +639063.484|220127.543|110.307 +639073.469|220118.316|109.378 +639078.465|220113.705|109.198 +639083.311|220109.246|109.963 +639088.252|220104.686|109.865 +639093.232|220100.080|109.420 +639098.188|220095.508|109.253 +639103.169|220090.903|108.863 +639108.098|220086.352|108.570 +639113.081|220081.750|108.241 +639118.007|220077.202|108.018 +639122.981|220072.606|107.808 +639127.925|220068.043|107.512 +639132.878|220063.465|107.131 +639137.831|220058.890|106.799 +639142.799|220054.302|106.397 +639147.737|220049.736|105.848 +639152.717|220045.134|105.388 +639157.655|220040.571|104.925 +639162.623|220035.981|104.635 +639167.528|220031.454|104.480 +639172.447|220026.910|104.233 +639177.321|220022.411|104.016 +639182.256|220017.851|103.699 +639187.196|220013.288|103.404 +639192.070|220008.789|103.245 +639196.944|220004.288|103.120 +639201.821|219999.786|102.992 +639206.707|219995.278|102.840 +639211.586|219990.773|102.754 +639216.463|219986.271|102.700 +639221.246|219981.857|102.651 +639226.138|219977.343|102.550 +639230.990|219972.863|102.395 +639235.858|219968.367|102.172 +639240.683|219963.908|101.916 +639245.520|219959.442|101.624 +639250.403|219954.934|101.386 +639255.237|219950.469|101.160 +639260.083|219945.991|100.871 +639264.893|219941.553|100.868 +639269.675|219937.140|100.734 +639274.589|219932.595|100.097 +639279.383|219928.164|99.618 +639284.242|219923.674|99.097 +639289.061|219919.224|98.838 +639293.773|219914.874|98.941 +639298.500|219910.516|98.990 +639303.249|219906.133|98.926 +639307.983|219901.762|98.966 +639312.713|219897.397|99.054 +639317.404|219893.072|99.112 +639322.113|219888.725|99.066 +639326.847|219884.355|98.896 +639331.580|219879.987|98.761 +639336.265|219875.659|98.624 +639340.956|219871.327|98.490 +639345.687|219866.963|98.432 +639350.332|219862.674|98.310 +639355.050|219858.315|98.082 +639359.768|219853.960|97.893 +639364.444|219849.641|97.658 +639369.089|219845.352|97.356 +639373.777|219841.021|97.119 +639378.486|219836.672|96.783 +639383.177|219832.334|96.296 +639387.871|219827.997|95.820 +639392.611|219823.611|95.131 +639397.356|219819.222|94.436 +639402.008|219814.924|93.997 +639406.604|219810.675|93.604 +639411.231|219806.402|93.345 +639415.876|219802.110|93.010 +639420.457|219797.880|92.760 +639425.023|219793.664|92.614 +639434.252|219785.133|91.641 +639438.800|219780.936|91.660 +639447.990|219772.441|90.764 +639451.626|219766.964|90.547 +639447.194|219771.039|90.093 +639437.718|219779.787|91.757 +639433.091|219784.048|91.812 +639428.513|219788.266|91.919 +639423.734|219792.680|92.797 +639419.232|219796.819|92.553 +639414.483|219801.199|93.065 +639409.795|219805.518|93.275 +639405.168|219809.782|93.476 +639400.514|219814.071|93.836 +639395.756|219818.460|94.241 +639390.940|219822.904|94.967 +639386.192|219827.287|95.637 +639381.421|219831.688|96.186 +639376.663|219836.074|96.680 +639371.890|219840.475|97.027 +639367.184|219844.810|97.295 +639362.441|219849.181|97.521 +639357.690|219853.561|97.817 +639352.956|219857.922|98.039 +639348.223|219862.284|98.280 +639343.404|219866.722|98.451 +639338.719|219871.032|98.472 +639333.961|219875.415|98.652 +639329.172|219879.822|98.722 +639324.372|219884.245|98.896 +639319.626|219888.613|99.060 +639314.810|219893.044|99.063 +639310.046|219897.431|99.091 +639305.297|219901.801|99.048 +639300.509|219906.206|98.963 +639295.702|219910.631|99.014 +639290.908|219915.045|99.002 +639286.141|219919.428|98.850 +639281.288|219923.899|99.243 +639276.329|219928.471|99.712 +639271.468|219932.955|100.246 +639266.518|219937.515|100.709 +639261.680|219941.971|100.825 +639256.843|219946.424|100.941 +639251.948|219950.932|101.145 +639247.053|219955.440|101.368 +639242.164|219959.945|101.590 +639237.263|219964.459|101.904 +639232.374|219968.964|102.178 +639227.442|219973.506|102.431 +639222.526|219978.035|102.614 +639217.631|219982.540|102.666 +639212.803|219986.984|102.617 +639207.856|219991.538|102.736 +639202.964|219996.043|102.834 +639198.029|220000.587|102.922 +639193.079|220005.144|103.126 +639188.150|220009.682|103.221 +639183.203|220014.239|103.474 +639178.257|220018.796|103.763 +639173.255|220023.405|104.102 +639168.329|220027.943|104.300 +639163.346|220032.530|104.562 +639158.371|220037.115|104.803 +639153.385|220041.711|105.165 +639148.337|220046.359|105.635 +639143.339|220050.971|106.171 +639138.300|220055.613|106.647 +639133.286|220060.237|106.982 +639128.260|220064.867|107.415 +639123.295|220069.442|107.805 +639118.253|220074.087|108.055 +639113.264|220078.683|108.283 +639108.226|220083.325|108.561 +639103.279|220087.882|108.905 +639098.207|220092.552|109.109 +639093.226|220097.142|109.396 +639088.145|220101.824|109.734 +639083.168|220106.408|110.057 +639078.218|220110.953|109.237 +639073.210|220115.564|109.433 +639068.135|220120.243|109.853 +639063.118|220124.867|110.231 +639058.107|220129.481|110.536 +639053.032|220134.157|110.591 +639048.006|220138.790|111.139 +639042.864|220143.533|111.926 +639037.847|220148.153|111.978 +639032.800|220152.802|112.353 +639027.706|220157.499|112.773 +639022.711|220162.101|113.194 +639007.541|220176.067|113.474 +639002.530|220180.685|113.697 +638997.470|220185.342|113.895 +638992.450|220189.960|113.688 +638987.354|220194.654|113.831 +638982.315|220199.293|113.901 +638977.280|220203.929|113.959 +638972.208|220208.601|114.489 +638967.124|220213.286|114.642 +638962.098|220217.910|114.651 +638957.026|220222.577|114.666 +638951.957|220227.243|114.675 +638946.931|220231.870|114.803 +638941.844|220236.558|115.145 +638936.757|220241.246|115.526 +638931.676|220245.927|115.861 +638926.607|220250.594|116.028 +638921.535|220255.263|116.288 +638916.421|220259.973|116.498 +638911.367|220264.624|116.553 +638906.304|220269.287|116.797 +638901.254|220273.935|116.845 +638896.157|220278.629|116.915 +638891.116|220283.268|116.891 +638886.029|220287.950|116.848 +638881.000|220292.574|116.608 +638875.977|220297.192|116.297 +638870.856|220301.898|115.998 +638865.830|220306.522|115.782 +638860.764|220311.179|115.404 +638855.686|220315.852|115.327 +638835.459|220334.466|115.355 +638825.224|220343.899|116.291 +638820.171|220348.563|117.092 +638815.077|220353.260|117.748 +638809.987|220357.954|118.391 +638804.903|220362.636|118.842 +638799.770|220367.372|119.500 +638794.692|220372.054|120.040 +638789.614|220376.736|120.655 +638784.543|220381.408|121.064 +638779.474|220386.081|121.490 +638774.408|220390.747|121.856 +638769.296|220395.456|122.131 +638764.231|220400.123|122.609 +638759.177|220404.777|122.719 +638754.120|220409.432|122.826 +638733.863|220428.082|123.356 +638728.822|220432.727|123.560 +638723.723|220437.421|123.703 +638718.721|220442.027|123.941 +638713.625|220446.721|124.151 +638708.577|220451.369|124.414 +638703.575|220455.975|124.691 +638698.485|220460.662|124.727 +638693.438|220465.308|124.791 +638688.396|220469.950|124.761 +638683.352|220474.589|124.663 +638678.304|220479.228|124.453 +638673.260|220483.867|124.209 +638668.215|220488.506|123.837 +638663.168|220493.145|123.420 +638658.166|220497.744|123.106 +638653.070|220502.429|122.902 +638648.074|220507.032|123.072 +638643.030|220511.677|123.182 +638637.988|220516.322|123.527 +638632.944|220520.964|123.767 +638627.948|220525.564|123.920 +638622.904|220530.209|123.950 +638617.908|220534.808|123.984 +638612.864|220539.450|124.069 +638607.819|220544.092|124.203 +638602.827|220548.692|124.380 +638597.834|220553.291|124.666 +638592.796|220557.933|124.996 +638587.800|220562.536|125.084 +638582.755|220567.181|125.215 +638577.802|220571.738|125.258 +638572.801|220576.343|125.206 +638567.756|220580.989|125.328 +638562.806|220585.548|125.416 +638557.814|220590.148|125.669 +638552.815|220594.750|125.767 +638547.813|220599.356|125.849 +638542.817|220603.958|126.014 +638537.861|220608.521|126.020 +638532.920|220613.075|126.437 +638527.928|220617.674|126.727 +638522.987|220622.228|127.126 +638518.007|220626.821|127.684 +638513.032|220631.396|127.382 +638508.088|220635.953|127.724 +638503.132|220640.516|127.785 +638498.188|220645.073|128.160 +638493.248|220649.627|128.537 +638488.301|220654.186|128.839 +638483.351|220658.746|129.062 +638478.450|220663.263|129.348 +638473.503|220667.820|129.650 +638468.553|220672.383|129.940 +638463.645|220676.903|130.138 +638458.741|220681.420|130.403 +638453.831|220685.944|130.583 +638448.872|220690.510|130.747 +638443.955|220695.039|130.830 +638439.091|220699.519|131.022 +638434.165|220704.055|131.003 +638429.224|220708.599|130.805 +638424.305|220713.129|130.951 +638419.422|220717.625|130.955 +638414.478|220722.172|130.781 +638409.574|220726.686|130.513 +638394.824|220740.247|129.498 +638389.896|220744.776|129.080 +638380.185|220753.722|129.501 +638370.431|220762.702|129.482 +638360.720|220771.641|129.479 +638355.840|220776.131|129.232 +638350.967|220780.615|129.089 +638321.883|220807.385|128.885 +638317.033|220811.848|128.662 +638312.205|220816.282|128.214 +638307.380|220820.726|128.288 +638302.537|220825.177|127.711 +638297.672|220829.651|127.474 +638292.850|220834.086|127.178 +638287.992|220838.548|126.587 +638268.802|220856.205|125.816 +638259.335|220864.926|126.276 +638249.934|220873.588|126.956 +638235.783|220886.621|127.462 +638231.003|220891.017|127.010 +638226.258|220895.387|126.864 +638216.833|220904.065|126.797 +638212.151|220908.378|126.849 +638202.831|220916.970|127.330 +638198.134|220921.298|127.309 +638193.476|220925.590|127.620 +638188.825|220929.876|127.611 +638184.201|220934.137|127.833 +638179.586|220938.395|128.120 +638174.947|220942.668|128.260 +638170.327|220946.929|128.553 +638165.745|220951.151|128.793 +638161.180|220955.363|129.150 +638156.544|220959.633|129.025 +638147.384|220968.076|129.638 +638142.803|220972.295|129.604 +638138.268|220976.480|129.903 +638133.693|220980.695|129.955 +638129.081|220984.941|129.781 +638124.555|220989.110|129.872 +638119.983|220993.323|130.010 +638115.466|220997.483|130.193 +638110.948|221001.650|130.388 +638102.015|221009.889|131.140 +638093.069|221018.134|131.585 +638088.533|221022.315|131.732 +638084.117|221026.388|132.027 +638079.618|221030.527|131.845 +638070.575|221038.854|131.537 +638066.161|221042.920|131.619 +638057.188|221051.180|131.265 +638048.263|221059.398|130.994 +638039.363|221067.588|130.650 +638034.931|221071.675|130.744 +638026.089|221079.813|130.564 +638021.733|221083.824|130.595 +638012.952|221091.911|130.296 +637995.338|221108.117|129.110 +637991.043|221112.076|129.324 +637986.608|221116.151|128.800 +637982.320|221120.105|128.797 +637977.991|221124.085|128.614 +637973.688|221128.051|128.565 +637969.366|221132.025|128.190 +637965.022|221136.024|127.977 +637960.764|221139.944|127.974 +637956.658|221143.733|128.495 +637952.367|221147.683|128.339 +637943.835|221155.538|128.089 +637939.602|221159.436|128.022 +637935.420|221163.289|127.983 +637931.189|221167.184|127.971 +637918.638|221178.739|127.711 +637914.489|221182.561|127.657 +637906.278|221190.126|127.772 +637902.093|221193.976|127.611 +637898.106|221197.658|128.138 +637890.087|221205.053|128.778 +637877.200|221216.873|125.560 +637873.241|221220.527|126.056 +637869.129|221224.307|125.654 +637865.142|221227.980|125.590 +637861.149|221231.659|125.752 +637857.360|221235.161|126.602 +637853.685|221238.562|127.736 +637849.856|221242.098|128.422 +637845.827|221245.804|128.007 +637841.678|221249.611|127.077 +637837.783|221253.199|127.294 +637829.822|221260.523|126.544 +637825.865|221264.163|126.303 +637821.997|221267.723|126.242 +637818.151|221271.264|126.053 +637814.298|221274.812|126.078 +637810.433|221278.372|126.056 +637806.599|221281.902|125.965 +637802.835|221285.371|125.953 +637798.997|221288.897|125.660 +637795.254|221292.347|125.767 +637791.466|221295.834|125.703 +637787.649|221299.346|125.529 +637783.964|221302.738|125.489 +637780.179|221306.222|125.255 +637776.475|221309.633|125.154 +637769.017|221316.497|124.791 +637757.944|221326.680|123.969 +637750.622|221333.413|123.438 +637746.989|221336.757|123.091 +637743.377|221340.079|122.847 +637739.854|221343.325|122.963 +637736.227|221346.660|122.469 +637732.761|221349.851|122.637 +637729.180|221353.140|122.146 +637722.032|221359.711|121.256 +637718.451|221363.003|120.811 +637714.976|221366.198|120.582 +637711.422|221369.462|119.848 +637707.975|221372.635|119.747 +637704.582|221375.756|119.668 +637701.278|221378.801|119.924 +637697.919|221381.895|119.774 +637694.435|221385.092|119.183 +637691.305|221387.982|119.713 +637688.071|221390.963|119.869 +637684.880|221393.907|120.183 +637678.631|221399.671|120.945 +637933.094|221163.200|127.839 +637937.258|221159.360|127.827 +637941.431|221155.513|127.894 +637945.609|221151.655|127.751 +637954.119|221143.815|128.260 +637958.265|221139.984|127.733 +637962.501|221136.079|127.946 +637966.766|221132.147|128.050 +637971.103|221128.154|128.562 +637975.404|221124.189|128.635 +637979.686|221120.239|128.623 +637983.984|221116.279|128.708 +637988.327|221112.277|129.071 +637992.701|221108.248|129.330 +637997.044|221104.243|129.455 +638001.403|221100.226|129.690 +638005.780|221096.193|130.031 +638018.963|221084.041|130.369 +638027.759|221075.930|130.650 +638036.623|221067.764|131.089 +638045.471|221059.605|131.250 +638049.891|221055.530|131.180 +638054.338|221051.427|131.299 +638058.818|221047.297|131.339 +638063.342|221043.130|131.646 +638067.847|221038.976|131.878 +638072.309|221034.861|131.869 +638081.285|221026.580|131.598 +638090.283|221018.277|131.552 +638094.794|221014.113|131.314 +638099.302|221009.953|131.076 +638103.786|221005.817|131.003 +638112.789|220997.502|130.214 +638117.349|220993.292|130.034 +638121.903|220989.086|129.851 +638126.469|220984.874|129.754 +638131.077|220980.619|129.647 +638140.285|220972.124|129.729 +638144.870|220967.890|129.507 +638154.130|220959.344|129.391 +638167.977|220946.554|128.528 +638172.677|220942.217|128.525 +638181.943|220933.658|127.958 +638186.566|220929.385|127.465 +638191.291|220925.029|127.702 +638196.006|220920.677|127.553 +638200.666|220916.373|127.364 +638205.357|220912.039|127.062 +638210.076|220907.683|126.983 +638214.797|220903.327|126.931 +638224.346|220894.519|126.986 +638229.059|220890.166|126.943 +638238.584|220881.379|126.904 +638243.342|220876.983|126.483 +638257.686|220863.746|126.309 +638267.223|220854.937|125.800 +638291.485|220832.568|126.885 +638306.097|220819.102|128.135 +638315.872|220810.089|128.483 +638325.635|220801.085|128.833 +638340.363|220787.506|129.412 +638355.005|220773.994|129.290 +638369.758|220760.385|129.531 +638384.495|220746.782|129.220 +638389.420|220742.237|129.132 +638394.383|220737.665|129.507 +638414.234|220719.365|130.808 +638424.134|220710.233|130.955 +638429.041|220705.704|130.802 +638434.068|220701.071|131.015 +638438.981|220696.538|130.955 +638443.931|220691.966|130.808 +638448.884|220687.394|130.702 +638453.831|220682.829|130.485 +638458.827|220678.214|130.351 +638463.770|220673.651|130.086 +638468.757|220669.045|129.827 +638473.743|220664.440|129.543 +638478.681|220659.877|129.257 +638483.668|220655.268|128.979 +638488.660|220650.657|128.809 +638493.638|220646.054|128.397 +638498.618|220641.452|128.041 +638503.611|220636.840|127.885 +638508.594|220632.235|127.602 +638513.596|220627.617|127.730 +638518.583|220623.011|127.501 +638523.591|220618.375|126.733 +638528.580|220613.767|126.575 +638533.606|220609.119|126.181 +638538.642|220604.467|125.974 +638543.628|220599.859|125.852 +638548.663|220595.211|125.691 +638553.696|220590.559|125.477 +638558.682|220585.954|125.288 +638563.718|220581.303|125.133 +638568.802|220576.609|125.038 +638573.794|220572.000|125.096 +638578.830|220567.349|125.029 +638583.865|220562.697|124.950 +638588.903|220558.046|125.008 +638593.932|220553.398|124.706 +638598.962|220548.750|124.401 +638603.991|220544.102|124.136 +638609.072|220539.411|123.917 +638614.107|220534.759|123.825 +638619.142|220530.111|123.837 +638624.178|220525.460|123.758 +638629.259|220520.766|123.642 +638634.291|220516.118|123.459 +638639.323|220511.467|123.149 +638644.404|220506.770|122.829 +638654.527|220497.427|122.917 +638659.565|220492.776|123.124 +638664.604|220488.131|123.542 +638669.688|220483.443|123.901 +638674.726|220478.798|124.307 +638679.807|220474.107|124.450 +638684.842|220469.459|124.596 +638694.962|220460.120|124.639 +638700.043|220455.426|124.578 +638705.081|220450.772|124.392 +638710.119|220446.117|124.173 +638715.203|220441.417|123.877 +638720.245|220436.760|123.572 +638725.286|220432.106|123.517 +638730.367|220427.412|123.283 +638735.406|220422.757|123.335 +638745.537|220413.400|123.048 +638750.585|220408.737|122.807 +638755.629|220404.076|122.661 +638765.724|220394.752|122.329 +638770.778|220390.077|121.878 +638775.880|220385.364|121.628 +638780.891|220380.728|121.149 +638785.954|220376.050|120.741 +638791.062|220371.325|120.308 +638796.082|220366.686|119.848 +638801.157|220361.989|119.128 +638806.235|220357.289|118.455 +638811.313|220352.595|117.918 +638816.397|220347.892|117.220 +638821.442|220343.223|116.403 +638831.622|220333.801|115.059 +638846.743|220319.838|114.834 +638851.763|220315.205|114.956 +638861.846|220305.897|115.276 +638866.808|220301.319|115.647 +638871.865|220296.655|116.044 +638876.830|220292.071|116.318 +638881.844|220287.447|116.653 +638886.864|220282.814|116.858 +638891.848|220278.212|116.870 +638896.883|220273.561|116.858 +638901.876|220268.949|116.775 +638906.871|220264.334|116.687 +638911.925|220259.662|116.449 +638916.917|220255.050|116.431 +638921.925|220250.423|116.275 +638926.939|220245.787|115.995 +638931.959|220241.148|115.684 +638937.004|220236.479|115.044 +638941.975|220231.885|114.846 +638946.995|220227.246|114.636 +638951.957|220222.662|114.626 +638956.965|220218.035|114.626 +638961.930|220213.448|114.614 +638966.905|220208.854|114.532 +638971.964|220204.173|113.950 +638976.930|220199.589|114.035 +638981.919|220194.980|113.855 +638986.900|220190.377|113.779 +638991.840|220185.812|113.642 +638996.806|220181.230|113.831 +639001.762|220176.646|113.550 +639006.794|220172.001|113.581 +639021.647|220158.276|113.243 +639026.637|220153.658|112.749 +639031.623|220149.046|112.343 +639036.600|220144.450|112.100 +639046.555|220135.239|111.146 +639051.484|220130.685|110.972 +639056.403|220126.141|110.944 +639061.433|220121.486|110.316 +639066.346|220116.942|109.917 +639071.332|220112.333|109.774 +639076.252|220107.786|109.393 +639081.114|220103.305|110.027 +639086.027|220098.770|110.195 +639091.035|220094.134|109.533 +639095.936|220089.607|109.426 +639100.846|220085.066|109.237 +639105.815|220080.475|109.030 +639110.746|220075.919|108.753 +639115.678|220071.359|108.491 +639120.613|220066.793|108.210 +639125.593|220062.187|107.616 +639130.558|220057.594|107.162 +639135.459|220053.065|106.875 +639140.434|220048.462|106.412 +639145.372|220043.893|105.885 +639150.346|220039.294|105.507 +639155.217|220034.792|105.184 +639160.197|220030.186|104.815 +639165.068|220025.681|104.553 +639170.027|220021.097|104.394 +639174.922|220016.571|104.007 +639179.869|220011.996|103.635 +639184.743|220007.494|103.471 +639189.620|220002.986|103.315 +639194.499|219998.478|103.175 +639199.388|219993.961|102.977 +639204.210|219989.505|102.931 +639209.035|219985.049|102.885 +639213.909|219980.547|102.882 +639218.740|219976.081|102.834 +639223.602|219971.589|102.602 +639228.488|219967.071|102.242 +639233.355|219962.573|102.020 +639238.235|219958.065|101.758 +639243.051|219953.614|101.599 +639247.940|219949.094|101.325 +639252.725|219944.672|101.090 +639257.557|219940.209|100.926 +639262.375|219935.759|100.859 +639267.210|219931.291|100.706 +639272.132|219926.737|100.042 +639276.978|219922.253|99.548 +639281.782|219917.813|99.359 +639286.558|219913.405|99.386 +639291.347|219908.982|99.341 +639296.129|219904.566|99.359 +639300.869|219900.189|99.341 +639305.608|219895.812|99.365 +639310.415|219891.374|99.307 +639315.149|219886.997|99.100 +639319.855|219882.651|99.075 +639324.680|219878.195|98.972 +639329.364|219873.866|98.838 +639334.107|219869.486|98.682 +639338.841|219865.113|98.585 +639343.553|219860.757|98.350 +639348.259|219856.407|98.182 +639353.041|219851.985|97.887 +639357.775|219847.611|97.618 +639362.457|219843.286|97.372 +639367.154|219838.942|97.070 +639371.921|219834.535|96.680 +639376.599|219830.207|96.238 +639381.327|219825.830|95.576 +639386.088|219821.425|95.031 +639390.831|219817.036|94.339 +639395.546|219812.675|93.824 +639423.344|219786.980|92.193 +639427.949|219782.722|91.891 +639432.530|219778.488|91.715 +639450.538|219759.292|91.416 +639432.341|219776.065|91.510 +639427.730|219780.320|91.766 +639423.121|219784.572|92.028 +639399.792|219806.094|93.586 +639395.140|219810.383|93.671 +639390.361|219814.796|94.202 +639385.618|219819.176|94.820 +639380.888|219823.544|95.409 +639376.057|219828.006|96.024 +639371.296|219832.401|96.558 +639366.565|219836.766|96.951 +639361.801|219841.164|97.289 +639357.053|219845.541|97.548 +639352.310|219849.918|97.814 +639347.515|219854.341|98.103 +639342.733|219858.754|98.356 +639338.018|219863.101|98.533 +639333.257|219867.493|98.710 +639328.456|219871.919|98.847 +639323.710|219876.296|98.996 +639318.919|219880.712|99.121 +639314.140|219885.120|99.213 +639309.370|219889.518|99.261 +639304.590|219893.925|99.405 +639299.774|219898.363|99.472 +639295.029|219902.737|99.450 +639290.231|219907.160|99.456 +639285.440|219911.576|99.459 +639280.627|219916.017|99.615 +639275.741|219920.519|99.618 +639270.879|219925.009|100.127 +639265.960|219929.553|100.718 +639261.107|219934.025|100.901 +639256.273|219938.484|101.008 +639251.378|219942.998|101.188 +639246.535|219947.467|101.410 +639241.649|219951.975|101.599 +639236.748|219956.495|101.904 +639231.883|219960.981|102.014 +639226.939|219965.541|102.331 +639222.059|219970.043|102.587 +639217.131|219974.591|102.864 +639212.217|219979.120|103.056 +639207.338|219983.619|103.053 +639202.464|219988.109|103.020 +639197.523|219992.669|103.154 +639192.634|219997.173|103.266 +639187.699|220001.727|103.407 +639182.755|220006.284|103.623 +639177.824|220010.835|103.788 +639172.871|220015.404|104.138 +639167.918|220019.973|104.513 +639162.934|220024.572|104.787 +639158.003|220029.120|105.059 +639153.019|220033.719|105.394 +639148.033|220038.322|105.781 +639143.052|220042.918|106.150 +639138.062|220047.523|106.622 +639133.073|220052.132|107.147 +639128.068|220056.747|107.415 +639123.082|220061.352|107.970 +639118.058|220065.988|108.457 +639113.051|220070.609|108.844 +639108.070|220075.202|109.042 +639103.084|220079.805|109.314 +639098.112|220084.386|109.472 +639093.098|220089.013|109.640 +639088.072|220093.649|109.908 +639083.070|220098.267|110.463 +639078.175|220102.766|109.564 +639073.173|220107.380|109.725 +639068.160|220112.004|109.999 +639063.167|220116.607|110.106 +639058.119|220121.264|110.323 +639048.055|220130.551|111.008 +639043.017|220135.196|111.213 +639032.897|220144.538|112.185 +639027.908|220149.141|112.502 +639022.872|220153.786|112.819 +639017.770|220158.498|113.398 +639007.705|220167.776|113.602 +639002.716|220172.376|113.550 +638997.659|220177.039|113.730 +638992.676|220181.633|113.651 +638987.628|220186.284|113.767 +638982.593|220190.926|113.785 +638977.551|220195.574|113.910 +638972.528|220200.204|113.840 +638967.496|220204.843|113.904 +638962.382|220209.562|114.434 +638957.346|220214.204|114.593 +638952.323|220218.831|114.617 +638947.257|220223.497|114.605 +638942.182|220228.173|114.700 +638937.120|220232.836|114.706 +638932.020|220237.542|115.273 +638926.973|220242.200|115.815 +638921.889|220246.891|116.251 +638916.823|220251.560|116.467 +638911.769|220256.214|116.461 +638906.664|220260.917|116.589 +638901.613|220265.575|116.669 +638896.560|220270.232|116.790 +638891.464|220274.923|116.806 +638886.422|220279.568|116.797 +638881.344|220284.244|116.617 +638876.272|220288.913|116.291 +638871.249|220293.534|115.986 +638866.180|220298.201|115.641 +638861.105|220302.870|115.425 +638851.017|220312.151|114.733 +638845.935|220316.833|114.733 +638840.864|220321.503|114.492 +638830.674|220330.900|115.257 +638820.482|220340.303|116.373 +638815.388|220345.006|116.989 +638810.292|220349.712|117.717 +638805.153|220354.458|118.449 +638800.112|220359.109|119.137 +638794.982|220363.843|119.674 +638789.904|220368.527|120.216 +638784.832|220373.209|120.674 +638779.711|220377.930|121.106 +638774.643|220382.609|121.618 +638769.580|220387.273|121.795 +638764.465|220391.991|122.320 +638759.360|220396.700|122.566 +638754.355|220401.309|122.539 +638749.253|220406.009|122.591 +638744.150|220410.712|122.734 +638718.806|220434.069|123.472 +638713.759|220438.723|123.676 +638708.708|220443.377|123.969 +638703.612|220448.074|124.203 +638698.567|220452.725|124.389 +638693.520|220457.377|124.499 +638688.430|220462.068|124.587 +638678.341|220471.358|124.374 +638673.293|220476.003|124.167 +638668.200|220480.688|123.847 +638663.153|220485.333|123.423 +638658.105|220489.975|123.024 +638653.058|220494.623|122.838 +638648.010|220499.272|122.694 +638642.963|220503.920|122.670 +638637.921|220508.568|123.008 +638632.880|220513.219|123.274 +638627.835|220517.867|123.499 +638622.791|220522.516|123.597 +638617.747|220527.161|123.584 +638612.699|220531.809|123.581 +638607.703|220536.415|123.682 +638602.662|220541.063|123.850 +638597.621|220545.708|124.176 +638592.631|220550.310|124.508 +638587.590|220554.956|124.694 +638582.594|220559.555|124.877 +638577.546|220564.203|124.886 +638572.545|220568.806|124.886 +638567.549|220573.405|124.990 +638562.492|220578.056|124.831 +638557.490|220582.659|124.852 +638552.547|220587.216|125.151 +638547.508|220591.858|125.505 +638542.555|220596.418|125.608 +638537.553|220601.023|125.617 +638532.558|220605.626|125.837 +638527.620|220610.176|126.337 +638522.630|220614.773|126.712 +638517.687|220619.329|127.017 +638512.755|220623.877|127.614 +638507.802|220628.437|127.766 +638502.846|220633.000|127.839 +638497.896|220637.560|128.053 +638492.949|220642.116|128.382 +638488.002|220646.673|128.665 +638483.052|220651.233|128.876 +638478.151|220655.747|129.141 +638473.201|220660.307|129.412 +638468.303|220664.821|129.732 +638463.350|220669.384|129.967 +638458.400|220673.941|130.272 +638453.538|220678.418|130.433 +638448.582|220682.984|130.634 +638443.669|220687.507|130.772 +638438.755|220692.030|130.973 +638433.830|220696.566|130.939 +638428.935|220701.065|130.723 +638423.970|220705.637|130.878 +638419.148|220710.078|131.034 +638414.210|220714.622|130.930 +638399.421|220728.219|129.839 +638389.579|220737.266|129.132 +638379.804|220746.258|128.748 +638374.967|220750.711|128.931 +638350.656|220773.086|129.147 +638340.988|220781.986|129.229 +638331.298|220790.905|129.171 +638326.458|220795.358|128.973 +638311.934|220808.714|128.537 +638302.199|220817.666|127.833 +638278.019|220839.898|126.255 +638268.302|220848.820|124.816 +638258.877|220857.510|126.075 +638249.383|220866.251|126.361 +638230.452|220883.677|126.794 +638225.721|220888.033|126.754 +638220.981|220892.391|126.684 +638216.254|220896.741|126.715 +638211.588|220901.035|126.882 +638206.836|220905.406|126.770 +638197.497|220914.002|127.105 +638188.209|220922.551|127.553 +638178.898|220931.122|127.873 +638169.662|220939.626|128.458 +638165.023|220943.893|128.629 +638155.803|220952.382|129.068 +638151.173|220956.640|128.998 +638146.586|220960.862|129.251 +638141.995|220965.089|129.482 +638137.408|220969.311|129.763 +638132.836|220973.520|129.827 +638128.185|220977.790|129.379 +638123.640|220981.975|129.665 +638119.065|220986.184|129.766 +638114.542|220990.345|129.912 +638110.022|220994.505|130.077 +638096.537|221006.926|131.159 +638087.567|221015.180|131.454 +638083.071|221019.316|131.561 +638078.603|221023.431|131.854 +638065.207|221035.754|131.973 +638056.240|221044.002|131.915 +638042.826|221056.328|131.336 +638033.941|221064.497|131.083 +638007.441|221088.860|130.281 +638003.046|221092.898|130.141 +637985.471|221109.046|129.028 +637981.161|221113.006|128.912 +637976.894|221116.935|129.022 +637972.490|221120.979|128.443 +637968.305|221124.832|128.766 +637963.955|221128.825|128.522 +637959.697|221132.742|128.489 +637955.342|221136.741|127.986 +637951.053|221140.682|127.846 +637946.761|221144.623|127.452 +637942.607|221148.448|127.766 +637938.416|221152.304|127.903 +637925.880|221163.834|127.836 +637921.682|221167.690|127.763 +637917.534|221171.503|127.693 +637913.319|221175.380|127.562 +637909.222|221179.148|127.516 +637905.077|221182.958|127.516 +637900.999|221186.710|127.590 +637896.939|221190.450|128.019 +637892.964|221194.113|128.611 +637888.907|221197.841|128.595 +637884.832|221201.590|128.498 +637872.070|221213.291|125.867 +637863.993|221220.722|125.706 +637860.085|221224.319|126.011 +637856.269|221227.843|126.965 +637852.523|221231.302|128.010 +637848.738|221234.798|128.876 +637844.592|221238.596|127.940 +637840.487|221242.360|126.968 +637836.527|221245.999|126.885 +637832.611|221249.602|126.776 +637828.670|221253.226|126.809 +637824.796|221256.786|126.687 +637820.870|221260.398|126.575 +637817.005|221263.949|126.535 +637813.137|221267.506|126.480 +637809.306|221271.030|126.370 +637805.477|221274.550|126.300 +637801.673|221278.049|126.334 +637797.784|221281.622|126.023 +637790.219|221288.580|125.904 +637786.506|221291.994|125.938 +637782.721|221295.475|125.907 +637778.950|221298.940|125.727 +637775.177|221302.406|125.550 +637771.468|221305.817|125.435 +637767.712|221309.267|125.142 +637756.578|221319.499|124.676 +637749.190|221326.284|124.069 +637723.858|221349.555|122.277 +637720.188|221352.920|121.664 +637712.995|221359.522|120.643 +637709.465|221362.766|120.411 +637705.987|221365.957|120.192 +637702.519|221369.145|120.015 +637699.090|221372.300|119.985 +637695.645|221375.457|119.521 +637685.785|221384.534|120.357 +637921.658|221165.279|127.690 +637938.468|221149.765|127.693 +637942.647|221145.906|127.553 +637946.899|221141.983|127.535 +637951.199|221138.018|127.775 +637955.598|221133.967|128.288 +637964.172|221126.057|128.477 +637968.411|221122.141|128.224 +637972.807|221118.093|128.803 +637977.181|221114.060|129.022 +637981.475|221110.095|128.836 +637985.822|221106.087|128.949 +637994.707|221097.900|129.997 +637999.084|221093.864|130.058 +638007.914|221085.723|130.665 +638012.315|221081.663|130.641 +638016.698|221077.618|130.830 +638030.012|221065.341|131.265 +638038.854|221057.182|131.378 +638043.304|221053.076|131.488 +638047.766|221048.961|131.689 +638052.207|221044.859|131.485 +638065.716|221032.401|132.098 +638074.702|221024.111|131.869 +638079.149|221019.999|131.521 +638083.620|221015.869|131.317 +638092.682|221007.505|131.098 +638097.187|221003.345|130.851 +638110.692|220990.866|129.808 +638115.304|220986.611|129.659 +638119.861|220982.408|129.488 +638129.038|220973.938|129.315 +638133.659|220969.679|129.647 +638138.268|220965.427|129.559 +638142.888|220961.160|129.269 +638147.470|220956.933|129.034 +638156.717|220948.401|128.873 +638161.295|220944.174|128.678 +638165.956|220939.870|128.379 +638170.549|220935.630|128.342 +638175.182|220931.351|127.873 +638179.885|220927.017|127.925 +638184.512|220922.743|127.830 +638189.160|220918.452|127.516 +638193.851|220914.120|127.178 +638198.478|220909.847|126.733 +638207.957|220901.102|126.901 +638212.645|220896.774|126.602 +638217.357|220892.428|126.511 +638222.076|220888.075|126.486 +638231.567|220879.315|126.160 +638236.362|220874.896|126.434 +638241.120|220870.510|126.413 +638255.476|220857.260|125.947 +638260.243|220852.859|125.678 +638269.673|220844.138|124.212 +638274.675|220839.545|125.685 +638284.429|220830.565|126.867 +638294.152|220821.607|127.446 +638299.013|220817.127|127.788 +638333.148|220785.659|129.089 +638338.016|220781.172|129.208 +638352.695|220767.636|129.525 +638372.260|220749.580|128.879 +638377.180|220745.038|128.675 +638382.114|220740.488|128.669 +638387.076|220735.916|129.025 +638391.984|220731.395|129.324 +638396.989|220726.784|129.690 +638406.953|220717.606|130.543 +638411.890|220713.053|130.759 +638416.828|220708.502|130.976 +638421.827|220703.887|130.766 +638426.746|220699.352|130.769 +638431.718|220694.768|130.887 +638436.680|220690.193|130.866 +638441.636|220685.617|130.830 +638446.631|220681.009|130.622 +638451.581|220676.440|130.479 +638456.528|220671.874|130.333 +638461.515|220667.272|130.028 +638466.456|220662.709|129.781 +638471.439|220658.106|129.434 +638476.377|220653.546|129.168 +638481.363|220648.944|128.900 +638486.356|220644.338|128.726 +638491.340|220639.733|128.449 +638496.326|220635.130|128.187 +638501.300|220630.534|127.733 +638506.302|220625.922|127.824 +638511.331|220621.277|127.529 +638516.300|220616.687|126.910 +638521.286|220612.081|126.709 +638526.309|220607.442|126.245 +638531.339|220602.797|125.886 +638536.359|220598.158|125.328 +638546.393|220588.901|125.297 +638551.419|220584.259|124.889 +638556.454|220579.614|124.731 +638561.489|220574.966|124.630 +638566.531|220570.318|124.679 +638571.618|220565.624|124.694 +638576.608|220561.021|124.761 +638581.695|220556.330|124.752 +638591.756|220547.040|124.325 +638596.785|220542.395|124.017 +638601.818|220537.750|123.767 +638606.847|220533.104|123.499 +638611.931|220528.417|123.441 +638616.966|220523.771|123.441 +638622.050|220519.081|123.435 +638627.086|220514.435|123.292 +638632.167|220509.744|123.127 +638637.199|220505.096|122.804 +638642.280|220500.405|122.588 +638647.318|220495.760|122.539 +638652.357|220491.115|122.710 +638657.441|220486.427|123.002 +638662.528|220481.739|123.380 +638667.566|220477.100|123.789 +638672.650|220472.416|124.130 +638677.731|220467.728|124.313 +638682.767|220463.086|124.362 +638692.932|220453.707|124.383 +638698.016|220449.016|124.249 +638703.100|220444.322|124.023 +638708.138|220439.671|123.764 +638713.225|220434.974|123.484 +638723.393|220425.589|123.103 +638728.435|220420.935|122.920 +638738.566|220411.586|122.765 +638743.660|220406.886|122.512 +638748.704|220402.232|122.399 +638753.791|220397.538|122.533 +638758.842|220392.875|122.198 +638768.992|220383.505|121.722 +638774.045|220378.842|121.442 +638779.105|220374.166|121.012 +638784.168|220369.490|120.539 +638789.230|220364.812|120.061 +638794.348|220360.084|119.531 +638799.371|220355.439|118.958 +638804.452|220350.745|118.275 +638809.582|220346.003|117.552 +638829.839|220327.276|114.885 +638845.012|220313.276|114.651 +638850.093|220308.585|114.450 +638865.165|220294.689|115.590 +638870.173|220290.072|115.952 +638875.190|220285.448|116.199 +638880.204|220280.824|116.489 +638885.179|220276.237|116.684 +638890.208|220271.595|116.723 +638895.246|220266.946|116.672 +638900.239|220262.335|116.577 +638905.283|220257.680|116.504 +638910.227|220253.118|116.483 +638915.272|220248.460|116.412 +638920.295|220243.818|115.980 +638925.269|220239.225|115.623 +638930.335|220234.534|114.639 +638935.291|220229.962|114.623 +638940.299|220225.338|114.590 +638945.258|220220.760|114.562 +638950.217|220216.185|114.572 +638955.200|220211.579|114.282 +638960.178|220206.986|114.142 +638965.222|220202.326|113.736 +638970.136|220197.790|113.825 +638975.110|220193.200|113.788 +638980.045|220188.646|113.691 +638985.022|220184.050|113.669 +638989.960|220179.493|113.563 +638994.934|220174.903|113.627 +638999.878|220170.337|113.517 +639004.810|220165.786|113.566 +639009.751|220161.229|113.566 +639014.722|220156.636|113.203 +639019.699|220152.037|112.849 +639024.622|220147.489|112.569 +639029.590|220142.905|112.386 +639034.574|220138.299|112.057 +639039.536|220133.709|111.453 +639044.464|220129.161|111.274 +639049.402|220124.598|111.018 +639054.352|220120.023|110.646 +639059.250|220115.500|110.365 +639064.182|220110.949|110.280 +639074.030|220101.851|109.811 +639078.849|220097.410|109.951 +639083.704|220092.936|110.643 +639088.618|220088.394|109.948 +639093.525|220083.862|109.762 +639098.435|220079.329|109.606 +639103.297|220074.837|109.454 +639108.180|220070.329|109.164 +639113.105|220065.778|108.930 +639117.961|220061.294|108.524 +639122.883|220056.747|108.390 +639127.775|220052.220|107.707 +639132.704|220047.667|107.189 +639137.639|220043.107|106.662 +639142.506|220038.608|106.296 +639147.429|220034.060|105.918 +639152.312|220029.546|105.498 +639157.228|220025.008|105.242 +639162.053|220020.552|104.949 +639166.985|220015.992|104.611 +639171.828|220011.517|104.233 +639176.708|220007.012|104.004 +639181.545|220002.541|103.724 +639186.370|219998.088|103.580 +639191.235|219993.598|103.529 +639196.008|219989.191|103.440 +639200.848|219984.722|103.263 +639205.670|219980.272|103.230 +639210.462|219975.847|103.090 +639215.317|219971.363|102.870 +639220.081|219966.959|102.629 +639224.949|219962.463|102.395 +639229.719|219958.055|102.157 +639234.538|219953.605|101.965 +639239.314|219949.192|101.739 +639244.100|219944.769|101.474 +639248.922|219940.313|101.328 +639253.710|219935.890|101.112 +639258.428|219931.532|101.038 +639263.265|219927.066|100.883 +639268.048|219922.641|100.441 +639272.824|219918.227|100.087 +639277.594|219913.823|100.103 +639282.315|219909.458|99.816 +639287.095|219905.047|99.825 +639291.834|219900.674|99.798 +639296.537|219896.330|99.703 +639301.292|219891.935|99.609 +639306.014|219887.573|99.447 +639310.735|219883.215|99.325 +639315.453|219878.856|99.219 +639320.178|219874.491|99.109 +639324.853|219870.175|99.021 +639329.608|219865.780|98.777 +639334.351|219861.400|98.637 +639339.005|219857.102|98.448 +639343.724|219852.741|98.198 +639348.454|219848.367|97.902 +639353.136|219844.042|97.628 +639357.821|219839.710|97.356 +639362.530|219835.358|96.981 +639367.242|219831.002|96.610 +639371.957|219826.641|95.973 +639376.685|219822.267|95.311 +639381.437|219817.871|94.799 +639386.149|219813.513|94.269 +639390.815|219809.197|93.735 +639395.470|219804.893|93.287 +639414.093|219787.675|91.711 +639432.536|219770.624|90.398 +639427.742|219772.398|91.632 +639423.210|219776.571|91.748 +639409.393|219789.299|92.291 +639404.742|219793.582|92.556 +639400.167|219797.797|92.742 +639386.070|219810.794|94.013 +639381.342|219815.153|94.543 +639376.575|219819.548|95.046 +639371.829|219823.928|95.744 +639367.013|219828.369|96.287 +639362.252|219832.761|96.850 +639357.537|219837.104|97.180 +639352.773|219841.494|97.515 +639348.012|219845.883|97.871 +639343.282|219850.241|98.079 +639338.502|219854.643|98.307 +639333.723|219859.047|98.554 +639328.956|219863.439|98.755 +639324.189|219867.831|98.987 +639319.404|219872.242|99.066 +639314.664|219876.607|99.194 +639309.872|219881.023|99.350 +639305.054|219885.458|99.377 +639300.317|219889.826|99.566 +639295.440|219894.319|99.694 +639290.661|219898.720|99.868 +639285.860|219903.142|99.908 +639281.017|219907.605|99.904 +639276.180|219912.061|100.197 +639271.330|219916.529|100.285 +639266.469|219921.007|100.478 +639261.623|219925.478|100.932 +639256.731|219929.986|101.047 +639251.887|219934.449|101.203 +639247.001|219938.950|101.334 +639242.106|219943.462|101.550 +639237.260|219947.927|101.806 +639232.334|219952.465|101.950 +639227.436|219956.979|102.258 +639222.517|219961.515|102.422 +639217.640|219966.008|102.639 +639212.665|219970.592|102.882 +639207.804|219975.072|103.071 +639202.851|219979.635|103.218 +639197.950|219984.152|103.382 +639193.009|219988.703|103.507 +639188.114|219993.214|103.666 +639183.197|219997.740|103.663 +639178.260|220002.291|103.846 +639173.307|220006.857|104.153 +639168.311|220011.463|104.452 +639163.367|220016.019|104.769 +639158.368|220020.628|105.144 +639153.434|220025.176|105.431 +639148.407|220029.808|105.717 +639143.467|220034.365|106.135 +639138.425|220039.013|106.589 +639133.494|220043.561|106.994 +639128.464|220048.200|107.418 +639123.453|220052.827|108.165 +639118.436|220057.454|108.561 +639113.480|220062.020|108.884 +639108.485|220066.628|109.189 +639103.501|220071.219|109.402 +639098.521|220075.809|109.615 +639093.549|220080.387|109.771 +639088.578|220084.968|109.960 +639083.570|220089.589|110.518 +639078.626|220094.137|110.085 +639073.719|220098.651|109.759 +639068.681|220103.296|110.234 +639058.738|220112.458|110.481 +639053.745|220117.055|110.603 +639048.744|220121.666|110.868 +639043.696|220126.318|111.127 +639038.710|220130.920|111.810 +639033.690|220135.544|111.850 +639028.688|220140.158|112.261 +639023.653|220144.798|112.529 +639018.620|220149.437|112.819 +639013.649|220154.018|112.983 +639008.608|220158.666|113.419 +639003.603|220163.278|113.502 +638998.607|220167.877|113.486 +638993.617|220172.470|113.432 +638988.616|220177.079|113.547 +638983.629|220181.669|113.517 +638978.637|220186.266|113.557 +638973.592|220190.914|113.709 +638968.615|220195.498|113.642 +638963.589|220200.128|113.605 +638958.605|220204.718|113.675 +638953.533|220209.400|114.325 +638948.498|220214.039|114.486 +638943.527|220218.620|114.501 +638938.510|220223.241|114.511 +638933.493|220227.862|114.514 +638928.482|220232.480|114.477 +638923.425|220237.146|115.169 +638918.365|220241.819|115.961 +638913.333|220246.464|116.394 +638908.279|220251.121|116.440 +638903.284|220255.718|116.306 +638898.224|220260.384|116.513 +638893.225|220264.990|116.522 +638888.175|220269.644|116.626 +638883.136|220274.283|116.522 +638878.107|220278.913|116.303 +638873.078|220283.543|116.089 +638868.052|220288.167|115.800 +638863.029|220292.790|115.513 +638852.955|220302.053|114.483 +638847.883|220306.723|114.209 +638822.585|220330.046|115.330 +638812.386|220339.458|116.656 +638802.242|220348.825|118.220 +638797.152|220353.525|118.948 +638792.071|220358.213|119.476 +638771.781|220376.934|121.295 +638756.595|220390.933|122.082 +638751.536|220395.600|122.399 +638746.439|220400.291|122.185 +638741.383|220404.951|122.356 +638736.329|220409.605|122.457 +638721.129|220423.617|122.847 +638716.029|220428.317|123.139 +638710.939|220433.011|123.374 +638705.889|220437.665|123.609 +638700.792|220442.362|123.859 +638695.748|220447.017|124.075 +638690.701|220451.665|124.221 +638685.607|220456.359|124.270 +638680.514|220461.050|124.273 +638675.470|220465.695|124.151 +638670.379|220470.383|123.932 +638665.332|220475.028|123.618 +638660.284|220479.670|123.249 +638655.188|220484.358|122.865 +638650.141|220489.006|122.649 +638645.093|220493.654|122.423 +638640.000|220498.345|122.490 +638634.956|220502.996|122.627 +638629.914|220507.644|123.011 +638624.870|220512.293|123.167 +638619.825|220516.941|123.298 +638614.781|220521.589|123.289 +638609.685|220526.283|123.203 +638604.686|220530.888|123.271 +638599.644|220535.534|123.548 +638594.606|220540.182|123.837 +638589.568|220544.827|124.215 +638584.526|220549.475|124.386 +638579.482|220554.123|124.496 +638574.483|220558.729|124.545 +638569.430|220563.380|124.410 +638564.382|220568.031|124.438 +638559.331|220572.680|124.468 +638554.278|220577.334|124.346 +638549.282|220581.940|124.596 +638544.299|220586.536|125.136 +638539.239|220591.193|124.901 +638534.256|220595.793|125.453 +638529.263|220600.395|125.767 +638524.279|220604.992|126.331 +638519.287|220609.597|126.575 +638514.288|220614.203|126.788 +638509.308|220618.796|127.346 +638504.364|220623.356|127.693 +638499.368|220627.961|127.925 +638494.415|220632.524|128.053 +638489.468|220637.084|128.388 +638484.527|220641.641|128.754 +638479.568|220646.210|128.836 +638474.579|220650.812|129.226 +638469.674|220655.332|129.443 +638464.724|220659.895|129.699 +638459.820|220664.412|129.961 +638454.870|220668.975|130.257 +638449.963|220673.502|130.439 +638445.050|220678.028|130.567 +638440.097|220682.594|130.830 +638435.220|220687.084|130.827 +638430.288|220691.625|130.729 +638425.366|220696.157|130.805 +638420.443|220700.693|130.887 +638400.805|220718.771|130.156 +638395.830|220723.343|129.671 +638390.917|220727.866|129.391 +638381.069|220736.925|128.629 +638376.216|220741.393|128.595 +638371.312|220745.910|128.537 +638366.481|220750.360|128.815 +638356.807|220759.279|129.229 +638347.145|220768.179|129.290 +638342.219|220772.711|129.141 +638313.211|220799.415|128.291 +638303.525|220808.333|128.016 +638298.721|220812.753|127.839 +638293.875|220817.209|127.276 +638284.197|220826.115|126.837 +638264.684|220844.038|123.581 +638250.660|220856.989|125.867 +638245.902|220861.369|125.931 +638241.156|220865.742|126.111 +638236.414|220870.113|126.331 +638222.192|220883.211|126.352 +638217.470|220887.560|126.428 +638212.731|220891.925|126.358 +638208.055|220896.229|126.471 +638194.040|220909.143|127.312 +638189.349|220913.462|127.373 +638184.664|220917.775|127.480 +638180.056|220922.021|127.818 +638175.350|220926.355|127.806 +638170.717|220930.622|127.971 +638166.078|220934.893|128.141 +638156.912|220943.342|128.961 +638147.555|220951.955|128.821 +638143.026|220956.128|129.150 +638133.760|220964.659|129.412 +638129.142|220968.908|129.187 +638124.506|220973.176|129.184 +638119.903|220977.409|129.092 +638115.365|220981.594|129.440 +638110.753|220985.840|129.656 +638106.276|220989.970|130.104 +638097.193|220998.337|130.558 +638092.636|221002.534|130.863 +638083.650|221010.812|131.403 +638079.085|221015.015|131.390 +638074.601|221019.146|131.589 +638070.139|221023.257|131.939 +638065.640|221027.400|132.091 +638061.117|221031.566|132.101 +638056.645|221035.681|132.152 +638038.610|221052.268|131.369 +638034.178|221056.350|131.439 +638029.704|221060.467|131.290 +638016.378|221072.726|130.961 +637985.340|221101.268|129.184 +637980.981|221105.276|129.059 +637976.650|221109.269|129.367 +637972.313|221113.256|129.141 +637963.583|221121.284|128.702 +637959.228|221125.289|128.425 +637954.912|221129.261|128.370 +637950.599|221133.226|128.102 +637946.286|221137.195|128.102 +637937.681|221145.107|127.495 +637933.329|221149.106|127.096 +637929.150|221152.956|127.327 +637924.990|221156.787|127.419 +637920.789|221160.655|127.565 +637916.562|221164.542|127.358 +637904.089|221176.020|127.343 +637899.990|221179.797|127.562 +637895.881|221183.579|127.757 +637891.885|221187.264|128.254 +637887.737|221191.077|128.047 +637870.997|221206.452|126.245 +637866.873|221210.243|125.989 +637862.826|221213.962|125.883 +637858.830|221217.644|126.245 +637854.983|221221.195|127.065 +637851.246|221224.642|128.160 +637847.421|221228.172|128.851 +637843.209|221232.030|127.839 +637839.021|221235.871|126.959 +637835.019|221239.550|126.922 +637831.129|221243.128|126.928 +637827.176|221246.761|126.907 +637823.247|221250.373|126.764 +637819.327|221253.976|126.696 +637815.411|221257.579|126.636 +637811.497|221261.176|126.620 +637807.641|221264.720|126.632 +637799.890|221271.844|126.312 +637796.022|221275.398|126.096 +637792.225|221278.894|126.181 +637788.354|221282.451|125.977 +637784.580|221285.919|125.989 +637780.798|221289.397|125.956 +637777.052|221292.841|125.877 +637773.278|221296.307|125.709 +637769.520|221299.763|125.599 +637765.811|221303.174|125.712 +637762.104|221306.582|125.639 +637758.370|221310.011|125.459 +637754.673|221313.406|125.236 +637736.166|221330.405|123.783 +637732.493|221333.779|123.523 +637728.805|221337.165|123.219 +637725.214|221340.460|122.899 +637721.493|221343.874|122.283 +637714.083|221350.668|121.027 +637710.581|221353.887|120.887 +637707.008|221357.166|120.701 +637703.543|221360.352|120.518 +637700.001|221363.604|120.271 +637696.593|221366.737|120.329 +637689.601|221373.156|119.832 +637686.422|221376.088|120.375 +637911.667|221166.468|127.141 +637915.900|221162.566|127.416 +637920.110|221158.680|127.355 +637924.282|221154.824|127.132 +637928.470|221150.957|126.992 +637932.762|221147.003|127.379 +637937.051|221143.047|127.519 +637941.388|221139.051|127.922 +637950.023|221131.090|128.336 +637954.330|221127.118|128.379 +637958.603|221123.171|128.281 +637963.023|221119.099|128.690 +637971.731|221111.070|129.147 +637976.153|221106.992|129.370 +637980.424|221103.048|129.059 +637984.822|221098.988|129.202 +637998.163|221086.695|130.223 +638007.054|221078.496|130.634 +638011.574|221074.330|131.003 +638024.934|221062.010|131.393 +638056.426|221032.962|132.192 +638060.876|221028.856|132.094 +638065.433|221024.650|132.061 +638069.892|221020.532|131.744 +638074.427|221016.344|131.619 +638078.932|221012.184|131.305 +638087.997|221003.814|131.098 +638092.520|220999.635|130.638 +638097.080|220995.423|130.439 +638101.582|220991.265|130.199 +638106.142|220987.056|130.013 +638110.689|220982.850|129.446 +638115.307|220978.586|129.363 +638119.864|220974.373|128.891 +638124.527|220970.076|129.135 +638129.112|220965.839|128.888 +638133.842|220961.480|129.299 +638138.490|220957.189|129.178 +638143.132|220952.903|129.022 +638147.753|220948.633|128.742 +638157.043|220940.056|128.592 +638161.753|220935.706|128.297 +638166.383|220931.433|128.147 +638171.043|220927.126|127.885 +638175.740|220922.792|127.913 +638180.400|220918.485|127.690 +638185.116|220914.130|127.145 +638189.828|220909.783|127.340 +638194.491|220905.470|126.818 +638199.252|220901.081|127.050 +638208.652|220892.394|126.239 +638213.364|220888.042|126.160 +638218.156|220883.625|126.328 +638222.911|220879.233|126.245 +638227.669|220874.844|126.169 +638232.454|220870.424|125.959 +638237.212|220866.032|125.968 +638246.813|220857.171|125.883 +638251.596|220852.755|125.736 +638270.780|220835.046|125.313 +638275.684|220830.529|125.922 +638290.357|220817.005|127.141 +638300.120|220808.007|127.748 +638305.024|220803.487|128.086 +638314.778|220794.489|128.306 +638319.676|220789.972|128.684 +638324.534|220785.488|128.653 +638349.007|220762.915|129.318 +638363.601|220749.434|128.312 +638368.551|220744.868|128.440 +638373.446|220740.351|128.510 +638378.390|220735.791|128.629 +638383.346|220731.222|128.894 +638388.296|220726.656|129.147 +638398.220|220717.512|130.028 +638408.141|220708.362|130.382 +638413.140|220703.756|130.833 +638418.050|220699.221|130.714 +638423.015|220694.643|130.686 +638427.981|220690.061|130.711 +638432.952|220685.474|130.845 +638437.911|220680.896|130.848 +638442.852|220676.333|130.580 +638447.802|220671.764|130.452 +638452.798|220667.153|130.263 +638457.738|220662.590|130.043 +638462.728|220657.984|129.772 +638467.669|220653.421|129.552 +638472.652|220648.819|129.208 +638477.639|220644.216|128.949 +638482.583|220639.654|128.803 +638487.560|220635.054|128.409 +638492.541|220630.455|128.013 +638497.533|220625.849|127.888 +638502.556|220621.207|127.434 +638507.540|220616.605|127.184 +638512.517|220612.005|126.776 +638517.546|220607.363|126.422 +638522.481|220602.803|126.172 +638527.519|220598.155|126.026 +638532.539|220593.516|125.477 +638537.520|220588.916|125.115 +638542.549|220584.274|124.785 +638547.578|220579.626|124.508 +638552.614|220574.981|124.340 +638562.645|220565.727|124.267 +638567.732|220561.033|124.258 +638572.773|220556.385|124.359 +638577.805|220551.737|124.246 +638582.841|220547.092|124.173 +638587.876|220542.447|124.066 +638592.905|220537.801|123.743 +638597.983|220533.114|123.347 +638603.012|220528.468|123.091 +638608.051|220523.820|123.045 +638613.135|220519.129|123.091 +638618.173|220514.484|123.133 +638623.205|220509.839|122.966 +638628.290|220505.148|122.853 +638633.322|220500.500|122.533 +638638.357|220495.852|122.368 +638643.441|220491.161|122.362 +638648.480|220486.516|122.457 +638653.518|220481.870|122.688 +638658.605|220477.186|123.051 +638663.689|220472.498|123.435 +638668.724|220467.856|123.743 +638673.760|220463.214|123.929 +638678.844|220458.529|124.075 +638683.879|220453.884|124.090 +638688.963|220449.193|124.011 +638694.047|220444.502|123.901 +638699.083|220439.851|123.761 +638704.170|220435.157|123.484 +638709.208|220430.505|123.286 +638714.289|220425.812|122.954 +638719.330|220421.157|122.682 +638724.421|220416.460|122.521 +638729.465|220411.806|122.329 +638734.552|220407.109|122.274 +638739.645|220402.412|122.173 +638744.690|220397.755|122.060 +638759.872|220383.743|121.823 +638770.028|220374.367|121.244 +638775.133|220369.652|120.829 +638790.325|220355.622|119.589 +638795.445|220350.885|118.909 +638800.484|220346.225|118.037 +638820.832|220327.413|115.193 +638830.942|220318.077|114.559 +638836.023|220313.392|114.376 +638851.193|220299.405|114.419 +638861.203|220290.194|115.446 +638866.278|220285.515|115.483 +638871.237|220280.949|115.964 +638876.303|220276.282|116.220 +638881.332|220271.649|116.333 +638886.309|220267.062|116.498 +638891.393|220262.374|116.480 +638896.386|220257.772|116.428 +638901.437|220253.112|116.260 +638906.469|220248.475|116.425 +638911.483|220243.849|116.099 +638916.503|220239.216|115.745 +638921.624|220234.479|114.623 +638926.634|220229.858|114.532 +638931.639|220225.244|114.511 +638936.601|220220.669|114.474 +638941.609|220216.051|114.459 +638946.642|220211.409|114.169 +638951.668|220206.773|113.980 +638956.666|220202.158|113.560 +638961.632|220197.580|113.593 +638966.606|220192.993|113.550 +638971.590|220188.396|113.435 +638976.558|220183.821|113.547 +638981.544|220179.219|113.407 +638986.519|220174.634|113.496 +638991.508|220170.035|113.398 +638996.431|220165.497|113.547 +639001.384|220160.928|113.371 +639006.328|220156.371|113.334 +639011.299|220151.787|113.047 +639016.301|220147.169|112.938 +639021.235|220142.618|112.572 +639026.204|220138.031|112.368 +639031.181|220133.441|112.124 +639041.066|220124.318|111.432 +639046.065|220119.706|111.085 +639050.966|220115.180|110.740 +639055.931|220110.605|110.783 +639060.844|220106.070|110.396 +639065.840|220101.461|110.188 +639070.695|220096.980|109.932 +639075.630|220092.433|109.908 +639080.443|220088.004|110.576 +639085.338|220083.490|110.490 +639090.282|220078.924|109.990 +639095.183|220074.407|109.926 +639100.060|220069.908|109.670 +639104.979|220065.370|109.497 +639109.868|220060.855|109.167 +639114.760|220056.344|108.872 +639119.659|220051.821|108.524 +639124.584|220047.274|108.018 +639129.452|220042.781|107.598 +639134.377|220038.233|107.134 +639139.266|220033.719|106.610 +639144.155|220029.205|106.125 +639149.023|220024.712|105.821 +639153.900|220020.213|105.510 +639158.792|220015.696|105.086 +639163.611|220011.249|104.879 +639168.497|220006.741|104.562 +639173.346|220002.267|104.199 +639178.220|219997.771|104.025 +639182.987|219993.373|103.937 +639187.812|219988.923|103.824 +639192.652|219984.460|103.635 +639197.435|219980.047|103.507 +639202.278|219975.578|103.334 +639207.088|219971.144|103.074 +639211.839|219966.764|102.913 +639216.646|219962.329|102.727 +639221.416|219957.927|102.477 +639226.226|219953.496|102.331 +639231.011|219949.079|102.032 +639235.785|219944.678|101.846 +639240.555|219940.279|101.697 +639245.282|219935.921|101.526 +639250.074|219931.501|101.291 +639254.801|219927.142|101.179 +639259.535|219922.778|101.035 +639264.305|219918.373|100.685 +639269.020|219914.030|100.721 +639273.748|219909.668|100.386 +639278.454|219905.328|100.209 +639283.193|219900.960|100.154 +639287.845|219896.672|100.048 +639292.563|219892.322|99.868 +639297.272|219887.979|99.755 +639301.942|219883.672|99.615 +639306.660|219879.322|99.499 +639311.336|219875.009|99.350 +639316.020|219870.690|99.200 +639320.647|219866.426|99.097 +639325.344|219862.092|98.896 +639330.050|219857.755|98.685 +639334.665|219853.497|98.423 +639339.371|219849.156|98.246 +639344.041|219844.849|98.030 +639348.692|219840.555|97.631 +639353.334|219836.272|97.320 +639358.034|219831.938|97.009 +639362.722|219827.607|96.485 +639367.431|219823.263|95.896 +639372.094|219818.954|95.293 +639376.761|219814.644|94.699 +639381.467|219810.300|94.202 +639390.837|219801.644|92.693 +639413.596|219780.661|92.156 +639418.205|219776.406|91.815 +639440.446|219753.507|92.315 +639418.183|219773.989|92.010 +639413.654|219778.159|92.135 +639409.210|219782.243|91.583 +639400.011|219790.720|92.385 +639390.888|219799.117|92.605 +639381.467|219807.810|93.973 +639376.840|219812.074|94.519 +639372.177|219816.372|95.009 +639367.449|219820.734|95.604 +639362.719|219825.095|96.244 +639358.025|219829.423|96.713 +639353.346|219833.733|97.116 +639348.637|219838.074|97.451 +639343.928|219842.411|97.792 +639339.228|219846.742|98.121 +639334.601|219851.003|98.329 +639329.858|219855.371|98.655 +639325.152|219859.705|98.798 +639320.431|219864.058|99.063 +639315.688|219868.423|99.164 +639310.997|219872.742|99.292 +639306.251|219877.109|99.459 +639301.500|219881.486|99.697 +639296.726|219885.882|99.776 +639291.999|219890.234|99.917 +639287.220|219894.632|100.081 +639282.443|219899.031|100.255 +639277.673|219903.423|100.414 +639272.873|219907.843|100.474 +639268.045|219912.287|100.724 +639263.241|219916.712|100.859 +639258.376|219921.193|101.087 +639253.576|219925.612|101.249 +639248.736|219930.066|101.358 +639243.889|219934.531|101.557 +639239.046|219938.990|101.745 +639234.163|219943.486|101.889 +639229.317|219947.948|102.148 +639224.431|219952.450|102.370 +639219.554|219956.940|102.562 +639214.628|219961.475|102.764 +639209.758|219965.962|102.968 +639204.887|219970.449|103.199 +639199.916|219975.027|103.462 +639195.060|219979.498|103.632 +639190.107|219984.058|103.821 +639185.212|219988.563|103.964 +639180.274|219993.114|104.111 +639175.346|219997.649|104.199 +639170.396|220002.209|104.470 +639165.449|220006.766|104.757 +639160.444|220011.374|105.120 +639155.506|220015.922|105.400 +639150.514|220020.521|105.744 +639145.527|220025.118|106.086 +639140.541|220029.711|106.439 +639135.490|220034.368|106.976 +639130.436|220039.026|107.552 +639125.444|220043.628|108.070 +639120.424|220048.255|108.448 +639115.352|220052.928|108.872 +639110.350|220057.533|109.152 +639105.351|220062.139|109.439 +639100.307|220066.787|109.753 +639095.336|220071.362|109.868 +639090.258|220076.038|110.079 +639085.256|220080.646|110.527 +639080.205|220085.297|110.576 +639075.277|220089.821|109.939 +639070.278|220094.423|110.006 +639065.230|220099.068|110.076 +639060.162|220103.738|110.399 +639055.081|220108.423|110.890 +639050.106|220113.001|110.829 +639045.056|220117.649|111.042 +639040.014|220122.291|111.225 +639029.840|220131.667|112.127 +639024.799|220136.312|112.407 +639019.715|220140.994|112.676 +639014.676|220145.633|112.971 +639009.616|220150.293|113.035 +639004.560|220154.947|113.099 +638999.488|220159.617|113.331 +638994.392|220164.308|113.352 +638989.402|220168.898|113.264 +638984.300|220173.595|113.395 +638979.264|220178.228|113.331 +638974.229|220182.861|113.291 +638969.142|220187.543|113.313 +638964.052|220192.228|113.422 +638953.939|220201.536|113.468 +638948.848|220206.221|113.666 +638943.749|220210.921|114.050 +638938.653|220215.615|114.410 +638933.630|220220.236|114.465 +638928.515|220224.939|114.440 +638923.498|220229.557|114.468 +638918.387|220234.260|114.492 +638913.251|220239.002|115.663 +638908.215|220243.641|116.080 +638903.098|220248.354|116.318 +638898.050|220252.993|116.208 +638892.997|220257.644|116.260 +638887.894|220262.338|116.327 +638882.853|220266.977|116.236 +638877.808|220271.616|116.178 +638872.724|220276.292|116.019 +638867.695|220280.912|115.736 +638862.617|220285.582|115.480 +638852.589|220294.793|114.379 +638847.463|220299.505|114.194 +638837.346|220308.811|113.998 +638816.949|220327.602|115.751 +638796.613|220346.347|118.275 +638791.519|220351.044|119.006 +638776.298|220365.056|119.771 +638771.259|220369.707|120.701 +638761.116|220379.049|121.506 +638756.053|220383.709|121.725 +638745.933|220393.021|121.875 +638740.877|220397.675|121.914 +638735.820|220402.327|121.951 +638730.764|220406.981|122.070 +638725.759|220411.586|122.054 +638720.699|220416.244|122.326 +638715.597|220420.941|122.582 +638710.589|220425.549|122.816 +638705.352|220430.374|123.136 +638700.491|220434.849|123.389 +638695.486|220439.457|123.600 +638690.390|220444.148|123.789 +638685.339|220448.797|123.892 +638680.337|220453.396|123.865 +638675.290|220458.044|123.923 +638670.239|220462.683|123.658 +638665.192|220467.325|123.463 +638660.141|220471.967|123.097 +638655.088|220476.610|122.783 +638650.037|220481.252|122.441 +638644.983|220485.897|122.204 +638639.982|220490.499|122.259 +638634.934|220495.145|122.338 +638629.884|220499.793|122.457 +638624.885|220504.395|122.740 +638619.837|220509.040|122.853 +638614.787|220513.686|122.896 +638609.785|220518.288|122.850 +638604.732|220522.936|122.774 +638599.733|220527.536|122.969 +638594.688|220532.181|123.267 +638589.696|220536.780|123.716 +638584.654|220541.425|124.008 +638579.649|220546.028|123.959 +638574.648|220550.630|124.081 +638569.643|220555.233|124.029 +638564.641|220559.835|124.084 +638559.591|220564.484|124.118 +638554.638|220569.043|124.215 +638549.587|220573.692|124.289 +638544.631|220578.251|124.316 +638539.638|220582.851|124.715 +638534.649|220587.447|125.194 +638529.711|220591.998|125.721 +638524.712|220596.600|125.907 +638519.713|220601.203|126.123 +638514.767|220605.760|126.443 +638504.830|220614.910|127.199 +638499.834|220619.512|127.428 +638494.897|220624.063|127.983 +638489.941|220628.626|128.096 +638484.985|220633.186|128.248 +638480.056|220637.733|128.903 +638475.097|220642.296|129.019 +638470.147|220646.853|129.287 +638465.246|220651.367|129.607 +638460.290|220655.930|129.805 +638455.385|220660.447|130.095 +638450.429|220665.010|130.278 +638445.519|220669.530|130.485 +638440.606|220674.053|130.659 +638435.643|220678.619|130.814 +638430.767|220683.109|130.808 +638425.780|220687.693|130.680 +638420.903|220692.180|130.729 +638411.028|220701.266|130.531 +638406.126|220705.771|130.336 +638401.198|220710.306|130.403 +638396.278|220714.827|130.037 +638381.459|220728.445|128.858 +638376.588|220732.923|128.608 +638371.678|220737.437|128.467 +638366.774|220741.951|128.431 +638361.842|220746.480|128.120 +638356.996|220750.942|128.254 +638342.499|220764.293|129.235 +638327.842|220777.771|128.577 +638323.007|220782.215|128.483 +638313.299|220791.146|128.388 +638308.380|220795.666|127.980 +638298.700|220804.569|127.827 +638289.016|220813.472|127.276 +638279.281|220822.415|126.364 +638269.615|220831.297|125.755 +638259.740|220840.350|123.411 +638250.419|220848.957|125.636 +638245.667|220853.331|125.749 +638231.384|220866.471|125.983 +638217.107|220879.608|126.017 +638212.398|220883.945|126.203 +638202.937|220892.650|126.306 +638193.516|220901.328|126.800 +638179.483|220914.258|127.626 +638174.841|220918.531|127.727 +638170.156|220922.847|127.876 +638165.508|220927.123|127.964 +638160.835|220931.430|128.224 +638156.172|220935.725|128.236 +638151.523|220940.001|128.388 +638146.881|220944.277|128.583 +638142.312|220948.487|128.961 +638137.664|220952.769|129.132 +638123.750|220965.574|129.001 +638119.126|220969.832|129.098 +638114.542|220974.050|129.147 +638109.976|220978.257|129.315 +638100.878|220986.639|129.958 +638096.315|220990.842|130.205 +638091.746|220995.051|130.415 +638087.244|220999.202|130.763 +638082.767|221003.326|130.973 +638073.726|221011.654|131.515 +638069.230|221015.793|131.665 +638064.722|221019.947|132.055 +638060.211|221024.102|132.134 +638055.709|221028.247|132.287 +638051.229|221032.371|132.277 +638028.680|221053.116|131.717 +638015.244|221065.472|131.025 +638010.797|221069.563|131.110 +638001.888|221077.759|130.677 +637984.069|221094.136|129.251 +637979.677|221098.177|129.214 +637970.969|221106.197|129.321 +637966.586|221110.226|129.123 +637962.175|221114.280|128.800 +637957.807|221118.294|128.458 +637953.370|221122.372|128.041 +637944.844|221130.221|128.263 +637940.507|221134.214|128.141 +637936.395|221138.009|128.925 +637931.960|221142.075|127.852 +637927.626|221146.058|127.562 +637919.067|221153.931|127.309 +637914.727|221157.921|126.791 +637910.627|221161.698|127.212 +637906.424|221165.566|127.151 +637902.258|221169.400|127.282 +637889.834|221180.842|127.617 +637885.710|221184.637|127.769 +637881.635|221188.389|127.907 +637877.572|221192.132|128.123 +637873.439|221195.933|128.038 +637869.156|221199.862|127.026 +637864.852|221203.812|126.194 +637860.780|221207.561|126.194 +637856.833|221211.197|126.541 +637852.910|221214.818|127.245 +637849.186|221218.266|128.373 +637845.232|221221.908|128.726 +637841.069|221225.730|127.925 +637836.844|221229.604|126.873 +637832.851|221233.280|126.858 +637828.950|221236.874|127.050 +637817.035|221247.837|126.751 +637813.091|221251.465|126.575 +637809.174|221255.070|126.526 +637805.267|221258.664|126.322 +637801.390|221262.233|126.474 +637793.669|221269.341|126.294 +637789.838|221272.868|126.236 +637785.906|221276.483|125.998 +637782.139|221279.948|126.017 +637778.350|221283.435|125.968 +637774.537|221286.943|125.825 +637770.748|221290.430|125.794 +637767.027|221293.856|125.840 +637763.287|221297.297|125.819 +637759.596|221300.696|125.794 +637755.810|221304.180|125.608 +637748.391|221311.004|125.270 +637744.593|221314.488|124.670 +637737.242|221321.255|124.468 +637733.538|221324.656|124.072 +637729.850|221328.046|123.746 +637726.165|221331.435|123.447 +637715.012|221341.670|121.433 +637711.431|221344.962|121.180 +637707.862|221348.248|120.981 +637704.283|221351.537|120.765 +637700.815|221354.728|120.567 +637693.716|221361.251|120.021 +637686.834|221367.588|119.918 +637663.757|221388.847|121.433 +637660.517|221391.828|121.417 +637904.321|221165.139|127.154 +637908.472|221161.308|127.013 +637912.712|221157.403|127.056 +637916.961|221153.486|127.172 +637925.496|221145.626|127.626 +637929.787|221141.672|127.748 +637934.286|221137.542|128.934 +637938.370|221133.763|128.065 +637951.166|221121.964|127.995 +637955.552|221117.925|128.196 +637959.929|221113.896|128.623 +637964.345|221109.833|129.016 +637968.732|221105.791|129.287 +637977.507|221097.708|129.607 +637981.817|221093.727|129.266 +637995.176|221081.428|130.330 +638008.609|221069.060|131.186 +638013.062|221064.954|131.198 +638017.527|221060.839|131.293 +638022.038|221056.685|131.656 +638026.534|221052.543|131.674 +638049.135|221031.716|132.213 +638058.157|221023.398|132.101 +638062.717|221019.194|132.067 +638067.179|221015.076|131.747 +638071.684|221010.919|131.421 +638076.210|221006.743|131.226 +638080.788|221002.522|131.070 +638085.296|220998.361|130.799 +638089.817|220994.188|130.324 +638098.945|220985.770|129.958 +638103.499|220981.570|129.732 +638108.053|220977.363|129.196 +638112.664|220973.115|129.040 +638117.282|220968.856|128.958 +638121.912|220964.589|128.976 +638140.520|220947.438|128.839 +638145.190|220943.131|128.550 +638149.893|220938.797|128.498 +638154.507|220934.539|128.199 +638159.180|220930.229|127.980 +638163.871|220925.907|127.903 +638168.592|220921.551|127.708 +638173.347|220917.171|127.794 +638177.983|220912.892|127.364 +638182.708|220908.536|127.260 +638187.444|220904.172|127.245 +638192.205|220899.783|127.068 +638196.881|220895.467|126.648 +638206.351|220886.728|125.983 +638211.112|220882.339|125.870 +638215.903|220877.925|126.041 +638220.674|220873.530|126.047 +638230.241|220864.712|125.953 +638235.033|220860.296|125.797 +638258.798|220838.356|123.158 +638263.876|220833.705|125.230 +638268.747|220829.230|125.913 +638273.639|220824.722|125.959 +638283.392|220815.743|126.757 +638298.072|220802.231|127.693 +638302.973|220797.720|127.971 +638307.862|220793.215|128.187 +638312.787|220788.677|128.306 +638322.578|220779.658|128.467 +638337.321|220766.085|129.263 +638351.945|220752.594|128.434 +638356.849|220748.068|127.980 +638361.799|220743.508|128.050 +638366.716|220738.982|128.327 +638371.657|220734.431|128.361 +638376.613|220729.868|128.571 +638381.566|220725.306|128.803 +638391.487|220716.174|129.565 +638396.449|220711.608|130.010 +638401.393|220707.057|130.223 +638406.370|220702.470|130.311 +638411.329|220697.910|130.817 +638416.301|220693.329|130.848 +638421.205|220688.806|130.668 +638426.173|220684.228|130.702 +638431.148|220679.646|130.827 +638436.104|220675.077|130.772 +638441.105|220670.469|130.625 +638446.004|220665.949|130.430 +638450.999|220661.343|130.250 +638455.995|220656.738|130.040 +638460.936|220652.178|129.772 +638465.925|220647.578|129.507 +638470.866|220643.019|129.257 +638475.859|220638.416|129.065 +638480.833|220633.823|128.586 +638485.814|220629.226|128.208 +638490.803|220624.624|127.967 +638495.787|220620.027|127.638 +638500.776|220615.425|127.471 +638505.757|220610.829|127.059 +638510.737|220606.232|126.657 +638515.763|220601.593|126.248 +638520.753|220596.994|126.038 +638525.736|220592.394|125.739 +638530.769|220587.752|125.477 +638535.749|220583.156|125.090 +638540.726|220578.562|124.569 +638545.756|220573.920|124.167 +638550.748|220569.318|124.075 +638555.790|220564.673|124.023 +638560.828|220560.027|123.956 +638565.821|220555.425|123.932 +638570.862|220550.780|123.920 +638575.900|220546.135|123.862 +638580.890|220541.535|123.865 +638585.974|220536.847|123.752 +638591.006|220532.205|123.432 +638595.990|220527.606|123.054 +638601.071|220522.921|122.740 +638606.109|220518.276|122.667 +638611.151|220513.631|122.774 +638616.189|220508.989|122.749 +638621.224|220504.343|122.664 +638626.263|220499.698|122.509 +638631.347|220495.010|122.329 +638636.385|220490.365|122.195 +638646.511|220481.035|122.286 +638651.552|220476.393|122.539 +638656.590|220471.751|122.856 +638661.677|220467.069|123.213 +638666.716|220462.427|123.463 +638671.754|220457.788|123.691 +638676.838|220453.106|123.874 +638681.877|220448.458|123.691 +638686.915|220443.816|123.697 +638691.953|220439.171|123.563 +638696.992|220434.526|123.435 +638702.027|220429.881|123.127 +638707.117|220425.187|122.822 +638712.113|220420.578|122.518 +638717.203|220415.881|122.301 +638722.247|220411.230|122.076 +638727.295|220406.573|121.768 +638732.339|220401.927|121.868 +638737.384|220397.276|121.768 +638742.383|220392.668|121.734 +638752.523|220383.322|121.664 +638757.574|220378.665|121.539 +638762.624|220374.008|121.353 +638767.681|220369.344|121.091 +638772.759|220364.647|120.030 +638777.825|220359.975|119.582 +638787.944|220350.639|119.159 +638818.406|220322.512|115.187 +638848.694|220294.574|114.093 +638863.715|220280.745|115.486 +638868.677|220276.176|115.894 +638873.703|220271.543|116.007 +638878.729|220266.910|116.141 +638883.716|220262.313|116.163 +638888.751|220257.671|116.202 +638893.740|220253.072|116.190 +638898.727|220248.475|116.288 +638903.781|220243.812|116.083 +638908.798|220239.185|115.775 +638913.876|220234.485|114.529 +638918.883|220229.867|114.425 +638923.885|220225.253|114.410 +638928.939|220220.595|114.413 +638933.901|220216.020|114.386 +638938.933|220211.375|114.035 +638943.972|220206.724|113.669 +638949.007|220202.076|113.358 +638953.975|220197.498|113.380 +638963.963|220188.287|113.364 +638968.953|220183.684|113.169 +638973.979|220179.051|113.160 +638978.950|220174.470|113.264 +638983.925|220169.883|113.310 +638988.924|220165.274|113.142 +638993.855|220160.729|113.194 +638998.845|220156.127|113.163 +639003.792|220151.567|113.102 +639008.748|220146.995|112.959 +639013.710|220142.420|112.791 +639018.663|220137.848|112.709 +639023.656|220133.243|112.289 +639028.630|220128.652|112.081 +639033.623|220124.044|111.709 +639038.573|220119.475|111.292 +639043.553|220114.878|111.115 +639058.375|220101.205|110.481 +639063.335|220096.630|110.173 +639068.272|220092.076|110.094 +639073.210|220087.522|110.033 +639078.059|220083.054|110.338 +639082.955|220078.549|110.725 +639087.904|220073.977|110.170 +639092.854|220069.411|110.097 +639097.777|220064.870|109.868 +639102.703|220060.325|109.628 +639107.592|220055.814|109.326 +639112.529|220051.257|109.049 +639117.431|220046.737|108.716 +639122.380|220042.168|108.396 +639127.309|220037.614|107.884 +639132.247|220033.055|107.323 +639137.139|220028.537|106.787 +639142.122|220023.938|106.336 +639146.996|220019.436|105.982 +639151.867|220014.943|105.705 +639156.747|220010.441|105.400 +639161.633|220005.930|105.053 +639166.519|220001.419|104.742 +639171.347|219996.966|104.528 +639176.175|219992.513|104.339 +639180.997|219988.066|104.236 +639185.880|219983.561|104.059 +639190.668|219979.145|103.873 +639195.505|219974.682|103.718 +639200.318|219970.241|103.425 +639205.128|219965.803|103.169 +639209.992|219961.317|102.913 +639214.744|219956.931|102.760 +639219.563|219952.487|102.526 +639224.385|219948.037|102.306 +639229.152|219943.641|102.136 +639233.977|219939.188|101.925 +639238.714|219934.817|101.685 +639243.493|219930.410|101.514 +639248.254|219926.018|101.474 +639252.985|219921.656|101.340 +639257.785|219917.227|101.112 +639262.531|219912.847|100.916 +639267.231|219908.513|100.727 +639272.025|219904.090|100.612 +639276.725|219899.756|100.478 +639281.432|219895.416|100.328 +639286.141|219891.072|100.179 +639290.847|219886.732|100.069 +639295.532|219882.407|99.804 +639300.256|219878.048|99.633 +639304.929|219873.738|99.499 +639309.616|219869.416|99.304 +639314.249|219865.143|99.152 +639318.946|219860.809|98.935 +639323.595|219856.520|98.740 +639328.246|219852.229|98.551 +639332.928|219847.907|98.213 +639337.591|219843.606|98.006 +639342.239|219839.314|97.622 +639346.887|219835.023|97.250 +639351.542|219830.728|96.881 +639356.199|219826.430|96.524 +639360.829|219822.151|96.046 +639365.480|219817.859|95.506 +639370.196|219813.501|94.909 +639374.865|219809.188|94.299 +639379.562|219804.847|93.586 +639388.804|219796.310|92.495 +639402.608|219783.569|91.370 +639415.952|219771.271|91.971 +639420.408|219767.162|91.919 +639444.195|219743.320|92.537 +639435.234|219751.553|92.592 +639417.370|219767.957|91.876 +639412.862|219772.100|91.888 +639394.820|219788.672|91.382 +639385.497|219797.252|92.409 +639380.873|219801.510|92.909 +639371.403|219810.233|94.339 +639366.703|219814.561|95.049 +639361.987|219818.905|95.604 +639357.330|219823.190|96.128 +639352.615|219827.528|96.457 +639347.945|219831.825|96.829 +639343.273|219836.126|97.250 +639338.557|219840.463|97.646 +639333.876|219844.767|97.871 +639329.172|219849.095|98.262 +639324.451|219853.436|98.475 +639319.779|219857.736|98.743 +639315.021|219862.107|98.920 +639310.357|219866.399|99.170 +639305.660|219870.721|99.347 +639300.920|219875.080|99.481 +639296.233|219879.389|99.645 +639291.487|219883.754|99.871 +639286.750|219888.110|100.063 +639282.017|219892.465|100.267 +639277.295|219896.806|100.423 +639272.534|219901.186|100.542 +639267.776|219905.563|100.666 +639263.061|219909.897|100.849 +639258.248|219914.323|101.044 +639253.500|219918.693|101.185 +639248.751|219923.058|101.337 +639243.898|219927.520|101.532 +639239.150|219931.891|101.755 +639234.319|219936.332|101.864 +639229.533|219940.734|102.041 +639224.693|219945.184|102.251 +639219.859|219949.634|102.480 +639215.037|219954.066|102.629 +639210.151|219958.561|102.904 +639205.332|219962.993|103.099 +639200.467|219967.468|103.288 +639195.530|219972.012|103.666 +639190.711|219976.444|103.928 +639185.764|219980.995|104.083 +639180.917|219985.454|104.257 +639176.031|219989.947|104.373 +639171.146|219994.439|104.522 +639166.250|219998.941|104.751 +639161.313|220003.486|104.976 +639156.408|220007.994|105.327 +639151.462|220012.548|105.680 +639146.527|220017.089|105.976 +639141.540|220021.676|106.302 +639136.639|220026.191|106.784 +639131.585|220030.845|107.332 +639126.632|220035.405|107.896 +639121.643|220039.998|108.375 +639116.675|220044.570|108.732 +639111.670|220049.172|109.006 +639106.763|220053.690|109.344 +639101.761|220058.292|109.658 +639096.771|220062.879|109.884 +639091.791|220067.461|110.076 +639086.813|220072.042|110.289 +639081.802|220076.653|110.801 +639076.868|220081.183|110.228 +639071.933|220085.715|110.103 +639066.937|220090.311|110.155 +639061.939|220094.902|110.204 +639056.873|220099.565|110.496 +639051.862|220104.174|110.758 +639046.811|220108.819|110.947 +639041.806|220113.424|111.234 +639036.713|220118.109|111.414 +639031.657|220122.764|111.792 +639026.606|220127.409|112.118 +639021.519|220132.090|112.362 +639016.474|220136.733|112.712 +639011.406|220141.393|112.810 +639006.389|220146.008|112.938 +639001.326|220150.659|113.023 +638996.263|220155.316|113.169 +638991.219|220159.952|113.112 +638986.116|220164.646|113.230 +638981.078|220169.273|113.148 +638976.037|220173.909|113.160 +638970.949|220178.585|113.151 +638965.911|220183.215|113.151 +638960.815|220187.906|113.343 +638955.773|220192.538|113.441 +638950.708|220197.193|113.279 +638945.624|220201.868|113.364 +638940.530|220206.553|113.599 +638935.428|220211.253|114.011 +638930.329|220215.944|114.389 +638925.263|220220.605|114.373 +638920.145|220225.311|114.398 +638915.080|220229.968|114.379 +638909.953|220234.686|114.629 +638904.768|220239.472|115.858 +638899.696|220244.138|116.068 +638894.585|220248.838|116.202 +638889.437|220253.572|116.163 +638884.389|220258.211|116.077 +638879.247|220262.938|115.998 +638874.151|220267.623|115.946 +638869.061|220272.302|115.833 +638863.986|220276.962|115.455 +638843.595|220295.689|113.922 +638838.492|220300.386|114.206 +638802.651|220333.387|117.290 +638797.512|220338.117|117.748 +638777.127|220356.887|119.451 +638766.861|220366.345|120.869 +638761.786|220371.014|121.237 +638756.672|220375.721|121.414 +638751.560|220380.424|121.539 +638746.503|220385.069|121.338 +638741.392|220389.772|121.481 +638731.224|220399.120|121.588 +638726.118|220403.817|121.618 +638721.010|220408.514|121.765 +638715.950|220413.171|122.051 +638710.845|220417.868|122.295 +638705.739|220422.568|122.643 +638700.683|220427.223|122.880 +638695.586|220431.911|123.136 +638690.484|220436.608|123.399 +638685.431|220441.253|123.493 +638680.331|220445.944|123.557 +638675.278|220450.592|123.703 +638670.227|220455.234|123.447 +638665.125|220459.919|123.252 +638660.074|220464.561|122.978 +638655.018|220469.203|122.606 +638649.918|220473.891|122.390 +638644.862|220478.533|122.118 +638639.808|220483.178|121.948 +638634.754|220487.826|122.103 +638629.704|220492.474|122.182 +638624.650|220497.120|122.329 +638619.600|220501.765|122.490 +638614.595|220506.367|122.487 +638609.541|220511.015|122.505 +638604.488|220515.661|122.478 +638594.435|220524.908|122.871 +638589.388|220529.553|123.219 +638584.389|220534.153|123.530 +638579.339|220538.798|123.636 +638574.285|220543.446|123.673 +638569.277|220548.049|123.615 +638564.220|220552.697|123.603 +638559.261|220557.257|123.642 +638554.208|220561.905|123.712 +638549.206|220566.507|123.941 +638544.201|220571.110|124.008 +638539.209|220575.706|124.508 +638534.219|220580.303|125.023 +638529.220|220584.902|125.368 +638524.225|220589.502|125.721 +638519.272|220594.058|125.959 +638514.276|220598.658|126.264 +638509.280|220603.254|126.666 +638504.382|220607.765|127.035 +638499.383|220612.365|127.343 +638494.433|220616.922|127.638 +638489.483|220621.475|127.974 +638484.469|220626.084|128.010 +638479.565|220630.598|128.275 +638474.637|220635.139|129.016 +638469.677|220639.702|129.205 +638464.727|220644.259|129.522 +638459.768|220648.819|129.738 +638454.861|220653.336|130.007 +638449.902|220657.899|130.205 +638444.989|220662.419|130.394 +638440.023|220666.985|130.540 +638435.107|220671.505|130.735 +638430.178|220676.038|130.726 +638425.201|220680.616|130.699 +638420.309|220685.108|130.601 +638415.386|220689.638|130.729 +638410.449|220694.176|130.702 +638405.508|220698.718|130.613 +638400.585|220703.238|130.199 +638395.644|220707.780|130.153 +638390.688|220712.333|129.994 +638375.927|220725.882|128.507 +638371.010|220730.399|128.342 +638366.103|220734.913|128.306 +638361.171|220739.442|128.001 +638356.301|220743.917|127.882 +638351.412|220748.416|128.132 +638346.581|220752.863|128.510 +638327.134|220770.736|128.272 +638322.300|220775.180|128.178 +638317.433|220779.655|128.266 +638312.583|220784.111|128.065 +638302.897|220793.014|127.839 +638283.450|220810.872|126.553 +638268.872|220824.262|125.819 +638264.035|220828.700|125.112 +638254.278|220837.652|123.892 +638244.899|220846.299|125.691 +638216.266|220872.622|125.874 +638211.530|220876.977|125.849 +638206.787|220881.336|125.819 +638197.411|220889.962|126.294 +638192.702|220894.293|126.544 +638183.342|220902.907|127.199 +638178.645|220907.223|127.251 +638164.651|220920.091|127.812 +638159.994|220924.371|127.861 +638146.010|220937.230|128.355 +638127.502|220954.244|128.736 +638122.872|220958.499|128.781 +638118.215|220962.785|128.967 +638113.643|220966.988|129.095 +638108.995|220971.258|129.074 +638104.468|220975.422|129.546 +638086.247|220992.183|130.464 +638081.739|220996.331|130.793 +638072.623|221004.713|131.192 +638068.170|221008.810|131.598 +638063.637|221012.979|131.838 +638059.141|221017.113|132.027 +638054.664|221021.233|132.317 +638050.135|221025.394|132.335 +638045.657|221029.509|132.381 +638032.057|221042.003|131.912 +638018.640|221054.332|131.823 +638009.663|221062.574|131.509 +638005.103|221066.755|130.973 +638000.675|221070.824|130.918 +637996.203|221074.930|130.641 +637991.692|221079.069|130.162 +637982.719|221087.305|129.555 +637978.314|221091.350|129.467 +637973.925|221095.385|129.455 +637956.280|221111.585|128.650 +637951.849|221115.655|128.245 +637947.514|221119.632|128.126 +637943.153|221123.637|127.873 +637925.965|221139.435|128.096 +637921.628|221143.416|127.803 +637917.391|221147.308|127.779 +637913.060|221151.283|127.559 +637908.774|221155.218|127.324 +637904.492|221159.150|127.126 +637900.298|221163.005|127.123 +637896.021|221166.928|126.751 +637891.940|221170.686|127.312 +637887.749|221174.539|127.367 +637883.598|221178.352|127.398 +637879.404|221182.208|127.471 +637875.310|221185.969|127.553 +637871.183|221189.764|127.730 +637866.986|221193.613|127.358 +637862.652|221197.585|126.379 +637858.537|221201.364|126.428 +637854.572|221205.019|127.160 +637850.600|221208.674|127.638 +637846.680|221212.285|128.126 +637842.663|221215.980|128.422 +637838.536|221219.765|128.025 +637834.302|221223.642|127.160 +637830.376|221227.257|127.678 +637806.258|221249.401|126.556 +637802.332|221253.010|126.483 +637786.741|221267.329|126.187 +637782.846|221270.908|126.096 +637779.033|221274.410|126.148 +637775.220|221277.909|126.002 +637771.355|221281.460|125.858 +637767.591|221284.919|125.934 +637763.838|221288.370|126.062 +637760.047|221291.851|126.059 +637756.313|221295.283|126.081 +637752.573|221298.715|125.874 +637741.277|221309.084|125.243 +637737.519|221312.534|125.023 +637718.804|221329.698|122.969 +637715.116|221333.078|122.484 +637711.376|221336.504|121.814 +637707.728|221339.851|121.512 +637704.158|221343.130|121.317 +637700.577|221346.416|121.094 +637697.182|221349.537|121.387 +637693.637|221352.789|121.122 +637689.976|221356.142|120.430 +637686.578|221359.269|120.533 +637683.158|221362.409|120.579 +637679.759|221365.533|120.707 +637676.531|221368.505|121.274 +637663.169|221380.782|121.576 +637659.895|221383.791|121.622 +637656.588|221386.827|121.558 +637891.471|221169.205|126.687 +637895.747|221165.267|127.093 +637899.935|221161.408|127.093 +637904.205|221157.473|127.257 +637908.445|221153.569|127.547 +637912.731|221149.622|127.830 +637921.256|221141.764|127.964 +637942.753|221121.946|127.873 +637947.106|221117.934|128.126 +637951.498|221113.890|128.339 +637955.902|221109.833|128.644 +637977.961|221089.512|129.577 +637982.347|221085.467|129.638 +638009.285|221060.665|131.582 +638013.699|221056.593|131.372 +638027.299|221044.066|132.037 +638040.939|221031.502|132.533 +638045.444|221027.345|132.405 +638050.013|221023.135|132.366 +638054.518|221018.981|132.277 +638059.032|221014.814|131.945 +638063.634|221010.572|131.881 +638068.191|221006.365|131.543 +638072.699|221002.208|131.220 +638081.874|220993.743|130.695 +638086.430|220989.540|130.406 +638100.189|220976.845|129.601 +638109.434|220968.320|129.074 +638114.115|220964.004|129.062 +638118.767|220959.712|128.870 +638123.430|220955.415|128.769 +638128.063|220951.141|128.489 +638142.172|220938.142|128.489 +638146.866|220933.811|128.364 +638160.997|220920.783|128.089 +638165.697|220916.449|127.708 +638170.455|220912.063|127.782 +638175.170|220907.717|127.544 +638203.650|220881.443|125.739 +638208.506|220876.971|125.959 +638213.307|220872.546|125.773 +638222.966|220863.645|125.950 +638227.809|220859.180|125.755 +638237.459|220850.286|125.553 +638256.750|220832.492|124.441 +638261.672|220827.965|125.112 +638276.367|220814.438|126.215 +638281.308|220809.894|126.715 +638300.952|220791.804|127.498 +638310.773|220782.757|127.806 +638315.726|220778.201|128.169 +638330.490|220764.600|128.489 +638345.288|220750.961|128.358 +638355.097|220741.914|127.864 +638360.111|220737.299|128.105 +638365.070|220732.731|128.284 +638370.020|220728.171|128.367 +638375.012|220723.571|128.452 +638389.963|220709.813|129.665 +638394.977|220705.198|130.132 +638399.970|220700.601|130.330 +638404.956|220696.008|130.497 +638409.943|220691.418|130.644 +638414.923|220686.828|130.805 +638419.879|220682.259|130.574 +638424.853|220677.674|130.686 +638429.825|220673.096|130.717 +638434.839|220668.479|130.723 +638439.789|220663.913|130.528 +638444.742|220659.350|130.351 +638449.740|220654.744|130.159 +638454.690|220650.181|130.001 +638459.683|220645.582|129.720 +638464.676|220640.979|129.485 +638469.668|220636.380|129.223 +638474.624|220631.799|128.348 +638479.577|220627.239|128.236 +638484.622|220622.591|128.096 +638489.614|220617.991|127.870 +638494.607|220613.392|127.669 +638499.639|220608.750|127.349 +638504.623|220604.153|126.980 +638509.658|220599.514|126.648 +638514.687|220594.878|126.200 +638519.674|220590.279|125.877 +638524.709|220585.640|125.611 +638529.741|220580.998|125.255 +638534.725|220576.404|124.798 +638539.757|220571.765|124.435 +638544.829|220567.084|123.831 +638549.822|220562.484|123.648 +638554.863|220557.839|123.511 +638559.904|220553.194|123.441 +638564.952|220548.549|123.453 +638569.996|220543.903|123.514 +638575.041|220539.258|123.505 +638580.034|220534.659|123.420 +638585.118|220529.974|123.207 +638590.107|220525.375|122.969 +638595.142|220520.733|122.646 +638600.181|220516.090|122.408 +638605.225|220511.445|122.368 +638610.267|220506.803|122.396 +638615.357|220502.115|122.377 +638620.350|220497.516|122.295 +638625.440|220492.828|122.170 +638630.478|220488.183|121.899 +638635.519|220483.541|121.923 +638640.561|220478.896|121.832 +638645.654|220474.211|122.134 +638650.650|220469.614|122.411 +638655.740|220464.930|122.563 +638660.784|220460.291|122.908 +638665.826|220455.652|123.149 +638670.913|220450.967|123.335 +638676.003|220446.285|123.594 +638680.996|220441.686|123.395 +638686.086|220436.995|123.295 +638691.127|220432.350|123.124 +638696.166|220427.707|122.920 +638701.210|220423.059|122.655 +638706.303|220418.362|122.335 +638711.305|220413.754|122.027 +638716.401|220409.057|121.747 +638726.499|220399.754|121.369 +638731.544|220395.109|121.454 +638736.594|220390.458|121.417 +638741.596|220385.849|121.295 +638746.692|220381.158|121.411 +638751.694|220376.550|121.320 +638756.748|220371.895|121.219 +638761.807|220367.235|120.969 +638781.976|220348.636|119.339 +638792.083|220339.315|118.260 +638797.167|220334.621|117.562 +638807.296|220325.279|116.291 +638822.423|220311.328|114.715 +638862.575|220274.384|115.474 +638867.543|220269.815|115.797 +638872.578|220265.179|115.797 +638877.562|220260.594|115.937 +638882.548|220256.007|115.998 +638887.483|220251.463|116.123 +638892.475|220246.869|116.156 +638897.480|220242.261|116.013 +638902.500|220237.634|115.635 +638907.530|220232.989|114.422 +638912.486|220228.426|114.379 +638917.490|220223.820|114.379 +638922.450|220219.254|114.349 +638927.409|220214.688|114.361 +638932.395|220210.095|114.023 +638937.400|220205.483|113.465 +638942.429|220200.850|113.255 +638947.361|220196.306|113.090 +638952.326|220191.740|113.182 +638957.291|220187.171|113.288 +638962.238|220182.614|113.023 +638967.210|220178.039|113.096 +638972.129|220173.513|113.249 +638977.119|220168.919|113.142 +638982.056|220164.372|113.108 +638986.988|220159.833|113.172 +638991.938|220155.277|113.051 +638996.879|220150.729|113.066 +639001.823|220146.178|113.047 +639006.776|220141.618|112.980 +639011.686|220137.095|112.862 +639016.654|220132.523|112.691 +639021.592|220127.973|112.362 +639026.524|220123.431|112.112 +639031.516|220118.832|111.770 +639036.405|220114.327|111.530 +639041.328|220109.794|111.459 +639046.250|220105.259|110.957 +639051.243|220100.659|110.734 +639056.099|220096.185|110.457 +639061.039|220091.637|110.347 +639065.928|220087.135|110.277 +639070.869|220082.588|110.204 +639075.694|220078.147|110.326 +639080.580|220073.657|110.813 +639085.454|220069.170|110.551 +639090.392|220064.620|110.176 +639095.262|220060.133|109.975 +639100.237|220055.552|109.771 +639105.086|220051.081|109.399 +639110.021|220046.539|109.183 +639114.907|220042.037|108.966 +639119.869|220037.462|108.567 +639124.746|220032.969|108.104 +639129.677|220028.422|107.619 +639134.618|220023.868|107.101 +639139.507|220019.363|106.644 +639144.436|220014.821|106.278 +639149.322|220010.316|105.891 +639154.208|220005.815|105.537 +639159.088|220001.319|105.263 +639163.967|219996.826|105.028 +639168.802|219992.373|104.778 +639173.672|219987.889|104.669 +639178.500|219983.445|104.534 +639183.322|219979.004|104.446 +639188.175|219974.536|104.181 +639192.991|219970.095|103.843 +639197.852|219965.614|103.553 +639202.674|219961.170|103.242 +639207.481|219956.745|103.053 +639212.297|219952.307|102.828 +639217.076|219947.902|102.532 +639221.889|219943.468|102.383 +639226.656|219939.075|102.221 +639231.426|219934.683|102.062 +639236.217|219930.270|101.806 +639240.994|219925.868|101.657 +639245.770|219921.467|101.535 +639250.513|219917.099|101.334 +639255.246|219912.738|101.218 +639260.038|219908.327|101.087 +639264.774|219903.962|100.993 +639269.477|219899.631|100.828 +639274.278|219895.209|100.700 +639278.990|219890.868|100.526 +639283.708|219886.522|100.328 +639288.442|219882.160|100.075 +639293.169|219877.804|99.880 +639297.851|219873.491|99.670 +639302.582|219869.133|99.508 +639307.221|219864.860|99.298 +639311.921|219860.531|99.075 +639316.630|219856.191|98.807 +639321.290|219851.896|98.554 +639325.951|219847.602|98.320 +639330.632|219843.289|98.006 +639335.317|219838.970|97.689 +639339.981|219834.669|97.228 +639344.647|219830.368|96.783 +639349.295|219826.080|96.445 +639353.953|219821.791|96.113 +639358.561|219817.539|95.768 +639363.197|219813.269|95.320 +639367.830|219808.993|94.628 +639391.123|219787.498|91.193 +639395.518|219783.459|91.885 +639408.930|219771.118|92.135 +639413.425|219766.973|91.855 +639417.848|219762.904|91.971 +639422.320|219758.786|91.873 +639438.422|219742.119|91.772 +639424.898|219754.540|91.516 +639415.791|219762.910|91.888 +639411.216|219767.116|91.958 +639406.644|219771.319|92.047 +639392.986|219783.865|92.086 +639388.636|219787.846|91.087 +639383.878|219792.232|91.967 +639379.178|219796.557|92.577 +639365.008|219809.605|94.656 +639360.256|219813.979|95.363 +639355.629|219818.234|95.717 +639350.966|219822.523|96.009 +639346.260|219826.851|96.290 +639341.532|219831.197|96.698 +639336.850|219835.507|97.173 +639332.135|219839.845|97.579 +639327.423|219844.179|97.984 +639322.741|219848.486|98.252 +639318.020|219852.823|98.469 +639313.286|219857.179|98.792 +639308.568|219861.516|99.042 +639303.856|219865.847|99.295 +639299.153|219870.169|99.499 +639294.416|219874.522|99.652 +639289.716|219878.841|99.889 +639285.022|219883.154|100.127 +639280.228|219887.558|100.377 +639275.500|219891.904|100.572 +639270.773|219896.248|100.767 +639266.009|219900.622|100.907 +639261.303|219904.947|101.032 +639256.599|219909.269|101.163 +639251.802|219913.676|101.276 +639247.102|219917.992|101.416 +639242.353|219922.357|101.602 +639237.565|219926.752|101.709 +639232.831|219931.102|101.840 +639228.043|219935.500|102.008 +639223.242|219939.917|102.303 +639218.460|219944.306|102.471 +639213.690|219948.692|102.617 +639208.862|219953.127|102.809 +639204.085|219957.516|103.035 +639199.202|219962.003|103.330 +639194.423|219966.398|103.641 +639189.540|219970.884|103.983 +639184.715|219975.322|104.321 +639179.854|219979.788|104.565 +639175.020|219984.229|104.650 +639170.188|219988.666|104.757 +639165.299|219993.156|104.918 +639160.465|219997.600|105.086 +639155.576|220002.090|105.312 +639150.675|220006.595|105.662 +639145.777|220011.100|106.025 +639140.870|220015.614|106.510 +639135.975|220020.113|106.891 +639131.028|220024.663|107.363 +639126.075|220029.217|107.887 +639121.146|220033.753|108.280 +639116.214|220038.285|108.704 +639111.249|220042.851|109.049 +639106.345|220047.356|109.305 +639101.407|220051.894|109.475 +639096.497|220056.405|109.829 +639091.510|220060.987|110.057 +639086.624|220065.479|110.295 +639081.601|220070.100|110.911 +639076.743|220074.553|110.487 +639071.771|220079.116|110.243 +639066.882|220083.606|110.164 +639061.923|220088.163|110.304 +639056.931|220092.747|110.320 +639051.969|220097.307|110.551 +639046.958|220101.909|110.780 +639041.950|220106.515|111.066 +639031.943|220115.707|111.575 +639026.886|220120.356|111.932 +639021.894|220124.946|112.179 +639016.849|220129.579|112.462 +639011.863|220134.160|112.697 +639006.846|220138.769|112.770 +639001.780|220143.423|112.865 +638996.763|220148.035|113.020 +638991.722|220152.661|112.898 +638986.753|220157.224|113.060 +638981.721|220161.842|112.907 +638976.680|220166.472|112.865 +638971.644|220171.096|112.776 +638966.597|220175.729|112.834 +638961.568|220180.346|112.740 +638956.523|220184.979|112.843 +638951.482|220189.609|112.929 +638946.410|220194.267|112.825 +638941.323|220198.939|112.935 +638936.278|220203.572|113.151 +638931.152|220208.291|113.919 +638926.065|220212.963|114.136 +638921.035|220217.587|114.288 +638915.970|220222.238|114.288 +638910.858|220226.929|114.270 +638905.792|220231.580|114.288 +638900.647|220236.314|114.892 +638895.578|220240.983|115.861 +638890.476|220245.665|115.827 +638885.371|220250.356|115.910 +638880.323|220254.989|115.818 +638875.224|220259.668|115.800 +638870.131|220264.343|115.736 +638865.053|220269.004|115.401 +638859.914|220273.719|115.324 +638844.692|220287.679|114.212 +638839.620|220292.333|113.831 +638829.382|220301.739|114.157 +638819.140|220311.146|114.639 +638814.041|220315.836|115.108 +638808.939|220320.530|115.666 +638783.308|220344.110|118.939 +638778.224|220348.782|119.393 +638762.902|220362.867|120.405 +638757.824|220367.534|120.881 +638752.712|220372.228|120.978 +638747.601|220376.925|121.113 +638742.538|220381.570|121.070 +638737.433|220386.258|121.024 +638732.321|220390.951|121.161 +638727.216|220395.639|121.131 +638722.107|220400.330|121.247 +638717.047|220404.978|121.433 +638711.939|220409.672|121.600 +638706.834|220414.366|121.990 +638701.774|220419.014|122.304 +638696.669|220423.705|122.600 +638691.566|220428.396|122.917 +638686.519|220433.032|123.014 +638681.419|220437.717|123.167 +638676.317|220442.402|123.322 +638671.266|220447.038|123.200 +638666.164|220451.717|122.957 +638661.065|220456.398|122.743 +638656.060|220460.989|122.466 +638650.958|220465.670|122.265 +638645.855|220470.352|122.042 +638640.847|220474.945|121.747 +638635.794|220479.584|121.655 +638630.691|220484.269|121.728 +638625.690|220488.866|121.899 +638620.636|220493.505|122.057 +638615.585|220498.144|122.146 +638610.532|220502.783|122.201 +638605.478|220507.425|122.146 +638600.425|220512.064|122.204 +638595.420|220516.660|122.344 +638590.372|220521.299|122.594 +638585.371|220525.893|122.871 +638580.323|220530.532|123.112 +638575.273|220535.171|123.289 +638570.313|220539.722|123.255 +638565.257|220544.364|123.252 +638560.200|220549.006|123.207 +638555.238|220553.560|123.179 +638550.184|220558.202|123.271 +638545.186|220562.798|123.563 +638540.196|220567.388|124.157 +638535.200|220571.979|124.590 +638530.257|220576.526|125.063 +638525.261|220581.120|125.419 +638520.262|220585.710|125.745 +638515.315|220590.261|126.111 +638510.320|220594.851|126.504 +638505.370|220599.399|126.828 +638500.426|220603.946|127.248 +638495.470|220608.497|127.483 +638490.523|220613.047|127.827 +638485.561|220617.604|127.937 +638480.614|220622.152|128.303 +638475.645|220626.712|128.284 +638470.741|220631.220|128.595 +638465.806|220635.758|129.275 +638460.899|220640.266|129.528 +638455.946|220644.820|129.830 +638451.033|220649.334|129.982 +638446.122|220653.845|130.226 +638441.209|220658.359|130.409 +638436.247|220662.916|130.628 +638431.367|220667.396|130.634 +638426.390|220671.969|130.604 +638421.464|220676.489|130.717 +638416.526|220681.024|130.610 +638411.598|220685.550|130.662 +638406.703|220690.043|130.561 +638401.756|220694.582|130.424 +638396.839|220699.090|130.061 +638391.901|220703.625|130.098 +638386.973|220708.142|129.665 +638382.038|220712.665|129.178 +638377.045|220717.241|128.605 +638372.132|220721.749|128.452 +638367.213|220726.263|128.248 +638362.342|220730.734|128.059 +638357.380|220735.288|127.980 +638352.561|220739.710|127.931 +638328.146|220762.129|128.083 +638313.580|220775.503|128.172 +638289.196|220797.872|127.053 +638284.331|220802.335|126.824 +638279.518|220806.751|126.678 +638274.608|220811.250|126.084 +638264.912|220820.147|125.706 +638260.039|220824.613|125.102 +638255.156|220829.090|124.883 +638250.172|220833.644|123.380 +638231.165|220851.121|125.297 +638226.404|220855.495|125.416 +638212.090|220868.635|125.648 +638207.372|220872.969|125.794 +638197.887|220881.684|126.142 +638193.162|220886.021|126.291 +638188.374|220890.419|126.337 +638179.047|220898.996|127.282 +638174.323|220903.327|127.157 +638169.586|220907.677|127.297 +638164.959|220911.935|127.900 +638160.265|220916.239|127.693 +638155.553|220920.564|127.715 +638150.850|220924.886|127.809 +638132.214|220941.994|128.300 +638127.569|220946.265|128.550 +638122.948|220950.507|128.641 +638118.285|220954.790|128.818 +638113.658|220959.039|128.915 +638109.110|220963.218|129.229 +638099.823|220971.743|129.296 +638095.303|220975.897|129.833 +638081.575|220988.510|130.436 +638063.439|221005.170|131.607 +638058.910|221009.334|131.881 +638054.408|221013.467|132.055 +638049.900|221017.606|132.189 +638045.340|221021.794|132.329 +638040.866|221025.900|132.415 +638036.321|221030.073|132.390 +638031.804|221034.218|132.256 +638027.259|221038.388|132.271 +638013.723|221050.802|131.561 +638004.725|221059.059|131.442 +637995.722|221067.313|130.808 +637982.228|221079.682|129.674 +637977.793|221083.751|129.693 +637942.427|221116.185|127.830 +637916.394|221140.069|127.413 +637912.194|221143.928|127.580 +637907.939|221147.835|127.745 +637899.341|221155.721|127.458 +637895.064|221159.643|127.324 +637890.809|221163.545|127.065 +637886.542|221167.462|127.010 +637882.330|221171.326|126.980 +637878.035|221175.261|126.599 +637873.981|221178.989|127.111 +637869.830|221182.799|127.172 +637865.651|221186.633|127.135 +637861.359|221190.562|126.596 +637857.208|221194.372|126.468 +637853.206|221198.051|127.050 +637849.192|221201.742|127.577 +637845.110|221205.488|127.827 +637841.051|221209.216|127.934 +637836.954|221212.974|127.907 +637832.662|221216.900|127.026 +637828.615|221220.610|127.026 +637816.414|221231.799|126.593 +637812.341|221235.530|126.319 +637804.356|221242.857|126.483 +637788.433|221257.460|126.081 +637784.483|221261.081|125.983 +637780.572|221264.665|125.843 +637776.671|221268.244|125.752 +637772.800|221271.795|125.806 +637768.892|221275.379|125.718 +637765.094|221278.863|125.883 +637761.242|221282.396|125.843 +637757.432|221285.895|125.971 +637753.628|221289.382|125.934 +637749.860|221292.835|125.843 +637746.044|221296.334|125.788 +637742.277|221299.791|125.718 +637738.400|221303.339|125.227 +637734.645|221306.780|125.029 +637726.921|221313.851|124.039 +637719.362|221320.773|123.136 +637715.589|221324.227|122.740 +637711.760|221327.729|122.137 +637708.118|221331.066|121.850 +637704.436|221334.440|121.637 +637700.751|221337.815|121.426 +637697.297|221340.988|121.701 +637693.734|221344.255|121.765 +637683.118|221353.984|121.518 +637679.503|221357.297|121.231 +637676.083|221360.434|121.289 +637672.621|221363.610|121.201 +637665.763|221369.898|121.301 +637662.361|221373.016|121.271 +637658.947|221376.143|121.006 +637655.585|221379.228|121.143 +637652.269|221382.270|121.253 +637884.664|221167.184|126.901 +637888.871|221163.322|127.178 +637893.129|221159.406|127.254 +637897.347|221155.526|127.394 +637901.569|221151.642|127.327 +637905.869|221147.692|127.641 +637910.146|221143.757|127.629 +637914.169|221140.042|126.636 +637918.348|221136.192|126.151 +637940.160|221116.148|127.574 +637953.339|221104.039|128.467 +637957.768|221099.970|128.638 +637975.510|221083.663|129.687 +637979.884|221079.642|129.665 +637993.344|221067.274|130.470 +637997.828|221063.156|130.848 +638020.374|221042.432|131.860 +638024.876|221038.296|132.204 +638029.420|221034.117|132.238 +638033.977|221029.926|132.357 +638038.528|221025.744|132.451 +638042.990|221021.639|132.366 +638047.547|221017.448|132.241 +638052.088|221013.266|132.049 +638056.596|221009.118|131.985 +638061.153|221004.924|131.610 +638065.695|221000.745|131.479 +638083.919|220983.956|130.208 +638093.115|220975.486|129.906 +638097.674|220971.283|129.367 +638102.277|220967.043|129.114 +638106.916|220962.776|129.107 +638111.521|220958.533|128.918 +638116.209|220954.214|128.632 +638120.876|220949.919|128.537 +638125.484|220945.673|128.419 +638130.184|220941.348|128.251 +638139.551|220932.725|128.105 +638144.281|220928.373|128.214 +638148.930|220924.087|127.769 +638153.675|220919.720|127.675 +638158.394|220915.376|127.772 +638163.115|220911.030|127.547 +638172.533|220902.361|127.312 +638186.765|220889.255|126.596 +638196.238|220880.522|125.852 +638201.029|220876.115|125.931 +638205.842|220871.686|125.797 +638210.664|220867.248|125.773 +638220.180|220858.482|125.121 +638225.072|220853.983|125.331 +638229.882|220849.554|125.285 +638234.682|220845.138|125.163 +638248.990|220831.937|122.844 +638258.950|220822.802|125.142 +638268.780|220813.768|125.971 +638273.688|220809.257|126.117 +638283.469|220800.262|126.666 +638288.376|220795.751|126.910 +638293.317|220791.203|127.053 +638303.147|220782.172|127.818 +638308.072|220777.640|127.879 +638312.970|220773.129|127.660 +638352.357|220736.888|127.891 +638357.358|220732.285|127.952 +638362.266|220727.774|128.035 +638367.267|220723.172|128.184 +638372.230|220718.612|128.409 +638377.237|220714.004|128.684 +638382.215|220709.432|129.181 +638392.252|220700.211|130.141 +638397.196|220695.664|130.308 +638402.182|220691.080|130.421 +638407.166|220686.492|130.558 +638412.149|220681.908|130.714 +638417.172|220677.290|130.732 +638422.129|220672.724|130.531 +638427.109|220668.146|130.686 +638432.120|220663.532|130.631 +638437.079|220658.966|130.500 +638442.035|220654.403|130.357 +638447.031|220649.797|130.113 +638452.033|220645.192|129.985 +638457.028|220640.589|129.705 +638461.975|220636.033|129.467 +638466.943|220631.448|128.769 +638471.939|220626.846|128.525 +638476.941|220622.240|128.434 +638481.936|220617.638|128.217 +638486.975|220612.996|127.964 +638491.967|220608.396|127.696 +638497.006|220603.754|127.443 +638501.992|220599.158|127.102 +638507.028|220594.519|126.745 +638512.063|220589.880|126.367 +638517.046|220585.286|125.931 +638522.082|220580.647|125.587 +638527.117|220576.005|125.297 +638532.104|220571.409|124.868 +638537.136|220566.773|124.417 +638542.165|220562.134|123.859 +638547.194|220557.495|123.359 +638552.281|220552.810|123.082 +638557.329|220548.162|123.027 +638562.376|220543.516|123.024 +638567.424|220538.871|123.088 +638572.471|220534.226|123.094 +638577.513|220529.581|122.987 +638587.641|220520.251|122.509 +638592.683|220515.609|122.265 +638597.770|220510.921|122.091 +638602.814|220506.279|122.048 +638607.859|220501.634|122.036 +638612.952|220496.946|122.051 +638617.996|220492.301|121.978 +638623.041|220487.659|121.875 +638628.131|220482.968|121.612 +638633.176|220478.326|121.649 +638638.269|220473.638|121.640 +638643.362|220468.950|121.792 +638648.406|220464.308|121.996 +638653.454|220459.669|122.249 +638658.593|220454.938|122.359 +638663.592|220450.342|122.609 +638668.682|220445.660|122.819 +638673.772|220440.975|123.130 +638678.865|220436.291|123.161 +638683.910|220431.642|122.899 +638688.997|220426.958|122.737 +638694.041|220422.312|122.548 +638699.137|220417.615|122.243 +638704.234|220412.918|121.884 +638709.287|220408.264|121.497 +638714.387|220403.567|121.237 +638719.486|220398.870|121.070 +638724.491|220394.262|120.902 +638729.587|220389.571|120.948 +638734.689|220384.874|120.796 +638739.691|220380.268|120.820 +638744.790|220375.574|120.844 +638749.844|220370.923|120.884 +638765.078|220356.890|119.997 +638780.284|220342.878|119.000 +638785.314|220338.242|118.525 +638820.911|220305.418|114.215 +638825.904|220300.819|113.983 +638851.151|220277.587|114.392 +638861.179|220268.370|115.334 +638866.168|220263.776|115.376 +638871.191|220259.159|115.711 +638876.187|220254.559|115.666 +638881.180|220249.966|115.721 +638886.230|220245.318|115.669 +638891.180|220240.761|115.681 +638896.234|220236.098|114.794 +638901.272|220231.452|114.261 +638906.280|220226.841|114.209 +638911.285|220222.238|114.270 +638916.201|220217.712|114.230 +638921.221|220213.088|114.093 +638926.189|220208.513|114.035 +638931.237|220203.862|113.575 +638936.260|220199.229|112.852 +638941.189|220194.690|112.767 +638946.218|220190.060|112.694 +638951.140|220185.531|112.776 +638956.133|220180.935|112.587 +638961.065|220176.393|112.578 +638966.036|220171.818|112.718 +638970.959|220167.292|112.913 +638975.863|220162.784|113.313 +638980.895|220158.145|112.795 +638985.778|220153.652|112.929 +638990.731|220149.092|112.825 +638995.614|220144.599|113.011 +639000.576|220140.030|112.862 +639005.535|220135.465|112.770 +639010.455|220130.935|112.618 +639015.374|220126.406|112.490 +639020.306|220121.861|112.264 +639025.250|220117.308|111.944 +639030.194|220112.754|111.682 +639040.036|220103.689|111.179 +639044.943|220099.169|110.868 +639049.847|220094.649|110.612 +639054.794|220090.095|110.460 +639059.643|220085.630|110.323 +639064.535|220081.128|110.280 +639069.415|220076.635|110.368 +639074.246|220072.191|110.478 +639079.096|220067.732|110.874 +639083.976|220063.236|110.603 +639088.883|220058.716|110.118 +639093.754|220054.229|109.963 +639098.646|220049.721|109.673 +639103.489|220045.259|109.399 +639108.381|220040.754|109.161 +639113.230|220036.285|108.878 +639118.153|220031.750|108.469 +639123.018|220027.269|108.137 +639127.946|220022.725|107.707 +639132.783|220018.266|107.262 +639137.721|220013.718|106.854 +639142.564|220009.253|106.421 +639147.463|220004.736|105.973 +639152.303|220000.279|105.650 +639157.140|219995.823|105.367 +639162.029|219991.318|105.083 +639166.796|219986.929|105.004 +639171.618|219982.488|104.903 +639176.446|219978.044|104.803 +639181.250|219973.622|104.534 +639186.102|219969.153|104.291 +639190.881|219964.749|103.897 +639195.752|219960.262|103.580 +639200.537|219955.855|103.202 +639205.341|219951.435|103.071 +639210.178|219946.979|102.739 +639214.906|219942.626|102.492 +639219.725|219938.192|102.337 +639224.495|219933.796|102.175 +639229.256|219929.416|102.130 +639234.035|219925.018|101.980 +639238.763|219920.665|101.846 +639243.551|219916.258|101.694 +639248.284|219911.899|101.569 +639253.021|219907.541|101.462 +639257.767|219903.173|101.328 +639262.513|219898.802|101.200 +639267.277|219894.419|101.005 +639271.992|219890.076|100.813 +639276.771|219885.674|100.554 +639281.502|219881.319|100.322 +639286.226|219876.969|100.142 +639290.963|219872.611|99.932 +639295.666|219868.276|99.621 +639300.424|219863.896|99.322 +639305.182|219859.513|99.048 +639309.851|219855.216|98.743 +639314.576|219850.863|98.408 +639319.306|219846.504|98.079 +639323.979|219842.204|97.817 +639328.691|219837.860|97.359 +639333.440|219833.486|97.003 +639338.173|219829.122|96.463 +639342.855|219824.809|95.960 +639347.503|219820.529|95.683 +639352.161|219816.241|95.637 +639356.818|219811.952|95.348 +639366.306|219803.195|93.370 +639380.284|219790.318|92.242 +639384.811|219786.154|92.245 +639389.419|219781.911|92.111 +639421.067|219752.787|91.980 +639430.061|219744.512|91.885 +639434.414|219740.510|92.187 +639443.189|219732.445|92.751 +639447.606|219728.382|92.787 +639444.808|219729.266|92.675 +639431.619|219741.363|92.190 +639400.179|219770.228|92.172 +639395.668|219774.370|92.242 +639391.111|219778.555|92.291 +639386.524|219782.765|92.245 +639372.948|219795.219|91.550 +639368.050|219799.733|92.964 +639353.733|219812.909|95.406 +639349.036|219817.225|95.601 +639344.416|219821.468|95.668 +639339.694|219825.808|96.043 +639334.951|219830.170|96.558 +639330.154|219834.581|97.113 +639325.396|219838.955|97.494 +639320.693|219843.277|97.862 +639315.908|219847.675|98.158 +639311.168|219852.027|98.493 +639306.383|219856.429|98.841 +639301.606|219860.815|99.152 +639296.787|219865.244|99.450 +639292.014|219869.630|99.795 +639287.201|219874.052|100.106 +639282.404|219878.457|100.343 +639277.615|219882.855|100.548 +639272.787|219887.287|100.718 +639267.950|219891.731|100.980 +639263.131|219896.160|101.157 +639258.322|219900.573|101.285 +639253.512|219904.993|101.453 +639248.659|219909.446|101.587 +639243.816|219913.893|101.691 +639238.964|219918.349|101.880 +639234.130|219922.787|101.965 +639229.283|219927.237|102.163 +639224.412|219931.708|102.221 +639219.545|219936.177|102.270 +639214.711|219940.615|102.462 +639209.834|219945.095|102.645 +639204.942|219949.588|102.946 +639200.007|219954.123|103.230 +639195.112|219958.619|103.608 +639190.186|219963.142|103.876 +639185.307|219967.629|104.230 +639180.375|219972.158|104.598 +639175.471|219976.663|104.809 +639170.576|219981.159|104.982 +639165.656|219985.676|105.001 +639160.764|219990.166|105.199 +639155.826|219994.702|105.391 +639150.934|219999.194|105.659 +639145.935|220003.788|106.010 +639140.964|220008.360|106.555 +639135.959|220012.959|107.019 +639131.012|220017.504|107.439 +639126.023|220022.088|107.845 +639121.091|220026.617|108.213 +639116.111|220031.195|108.619 +639111.142|220035.761|108.951 +639106.138|220040.358|109.216 +639101.182|220044.908|109.497 +639096.186|220049.499|109.756 +639091.291|220053.997|110.018 +639086.265|220058.612|110.155 +639081.275|220063.196|110.856 +639076.343|220067.723|110.652 +639071.457|220072.203|110.505 +639066.477|220076.772|110.326 +639061.533|220081.311|110.307 +639056.580|220085.858|110.399 +639051.630|220090.403|110.481 +639046.619|220095.002|110.701 +639041.657|220099.559|110.963 +639036.643|220104.165|111.267 +639031.678|220108.727|111.642 +639026.682|220113.315|111.847 +639021.696|220117.893|111.981 +639016.688|220122.495|112.398 +639011.659|220127.113|112.517 +639006.727|220131.639|112.682 +639001.710|220136.245|112.755 +638996.736|220140.814|112.926 +638991.743|220145.392|112.764 +638986.735|220149.991|112.834 +638981.785|220154.530|112.779 +638976.747|220159.154|112.688 +638971.785|220163.710|112.855 +638966.798|220168.285|112.752 +638961.818|220172.854|112.593 +638956.785|220177.469|112.484 +638951.790|220182.053|112.563 +638946.757|220186.674|112.538 +638941.719|220191.298|112.599 +638936.726|220195.879|112.734 +638931.673|220200.524|113.075 +638926.674|220205.115|113.371 +638921.605|220209.775|114.041 +638916.524|220214.435|114.184 +638911.553|220218.995|114.178 +638906.533|220223.598|114.194 +638901.516|220228.200|114.197 +638896.450|220232.848|114.242 +638891.378|220237.515|115.242 +638886.343|220242.139|115.663 +638881.341|220246.726|115.568 +638876.288|220251.359|115.547 +638871.286|220255.946|115.474 +638866.241|220260.573|115.373 +638861.194|220265.200|115.309 +638851.132|220274.417|114.617 +638841.083|220283.625|113.749 +638836.029|220288.261|113.916 +638795.360|220325.608|117.239 +638785.222|220334.923|118.299 +638775.042|220344.274|119.412 +638769.967|220348.932|119.579 +638764.877|220353.610|120.287 +638754.751|220362.892|119.902 +638744.601|220372.212|120.783 +638739.539|220376.854|120.735 +638734.473|220381.500|120.792 +638729.413|220386.142|120.768 +638724.305|220390.827|120.668 +638719.288|220395.429|120.853 +638714.176|220400.120|120.991 +638709.114|220404.765|121.247 +638704.051|220409.413|121.582 +638698.988|220414.065|122.039 +638693.883|220418.749|122.304 +638688.823|220423.394|122.600 +638683.721|220428.076|122.752 +638678.670|220432.709|122.832 +638673.613|220437.348|122.947 +638668.560|220441.978|122.640 +638663.457|220446.657|122.438 +638658.401|220451.290|122.249 +638653.295|220455.969|122.079 +638648.193|220460.647|121.884 +638643.182|220465.241|121.676 +638638.080|220469.919|121.533 +638632.974|220474.598|121.381 +638627.918|220479.237|121.588 +638622.864|220483.876|121.637 +638617.762|220488.555|121.795 +638612.705|220493.194|121.908 +638607.648|220497.830|121.914 +638602.546|220502.512|121.853 +638597.538|220507.105|121.929 +638592.433|220511.787|122.003 +638587.382|220516.423|122.228 +638582.332|220521.059|122.460 +638577.281|220525.695|122.777 +638572.228|220530.331|122.923 +638567.217|220534.924|122.929 +638562.157|220539.563|122.826 +638557.097|220544.205|122.746 +638552.041|220548.841|122.893 +638546.993|220553.474|123.271 +638542.001|220558.061|123.828 +638537.002|220562.646|124.298 +638531.957|220567.279|124.688 +638526.962|220571.863|125.227 +638521.914|220576.496|125.514 +638516.912|220581.083|125.858 +638511.865|220585.716|126.154 +638506.869|220590.300|126.593 +638501.870|220594.887|126.968 +638496.875|220599.472|127.370 +638491.876|220604.059|127.757 +638486.865|220608.652|127.885 +638481.863|220613.243|128.147 +638476.862|220617.830|128.480 +638466.885|220626.977|128.754 +638461.926|220631.528|128.961 +638456.940|220636.103|129.616 +638451.981|220640.653|129.845 +638447.019|220645.204|130.046 +638442.053|220649.758|130.226 +638437.137|220654.266|130.446 +638432.172|220658.819|130.644 +638427.194|220663.382|130.656 +638422.250|220667.912|130.485 +638417.279|220672.471|130.638 +638412.344|220676.995|130.631 +638407.398|220681.524|130.528 +638402.448|220686.059|130.339 +638397.504|220690.592|130.290 +638392.487|220695.182|129.943 +638382.611|220704.229|129.510 +638377.673|220708.746|129.031 +638372.678|220713.318|128.434 +638367.697|220717.878|128.086 +638362.781|220722.383|127.980 +638357.855|220726.894|127.797 +638352.939|220731.399|127.727 +638348.007|220735.922|128.080 +638328.448|220753.850|128.217 +638313.720|220767.341|127.681 +638308.807|220771.839|127.334 +638284.392|220794.203|126.617 +638279.534|220798.653|126.511 +638274.684|220803.097|126.498 +638269.817|220807.559|126.331 +638264.955|220812.003|125.831 +638255.192|220820.940|124.956 +638221.558|220851.770|125.511 +638207.223|220864.907|125.663 +638202.440|220869.290|125.718 +638197.652|220873.679|125.739 +638188.212|220882.336|126.166 +638174.076|220895.302|127.071 +638169.363|220899.627|127.385 +638164.642|220903.952|127.303 +638159.915|220908.290|127.553 +638141.194|220925.453|127.949 +638131.846|220934.027|128.333 +638122.577|220942.522|128.327 +638117.898|220946.810|128.400 +638108.659|220955.281|128.705 +638104.066|220959.496|129.046 +638099.479|220963.699|129.141 +638090.298|220972.121|129.638 +638081.166|220980.497|130.177 +638076.610|220984.679|130.528 +638063.012|220997.154|131.518 +638058.471|221001.318|131.729 +638053.975|221005.442|131.918 +638049.427|221009.611|132.122 +638044.926|221013.741|132.293 +638035.907|221022.005|132.344 +638022.361|221034.419|132.299 +638017.826|221038.570|132.116 +638013.315|221042.704|132.082 +637995.331|221059.172|131.101 +637977.421|221075.564|129.757 +637972.996|221079.621|129.824 +637950.876|221099.869|128.348 +637899.011|221147.378|127.330 +637894.808|221151.231|127.532 +637890.605|221155.084|127.513 +637882.177|221162.804|127.419 +637877.934|221166.687|127.257 +637873.710|221170.558|127.196 +637869.479|221174.429|126.892 +637865.374|221178.194|126.940 +637861.192|221182.022|126.901 +637857.031|221185.832|126.727 +637852.874|221189.642|126.575 +637848.869|221193.318|127.148 +637844.803|221197.042|127.221 +637840.706|221200.801|127.394 +637836.701|221204.477|127.522 +637832.595|221208.238|127.452 +637828.441|221212.042|126.953 +637824.384|221215.760|126.901 +637812.238|221226.892|126.727 +637808.184|221230.604|126.520 +637804.203|221234.256|126.419 +637800.232|221237.895|126.379 +637780.316|221256.140|125.703 +637776.366|221259.761|125.621 +637772.513|221263.294|125.733 +637768.569|221266.906|125.483 +637764.753|221270.405|125.560 +637760.854|221273.980|125.520 +637757.020|221277.495|125.544 +637753.119|221281.067|125.322 +637749.373|221284.502|125.520 +637745.544|221288.010|125.395 +637741.768|221291.470|125.282 +637737.967|221294.954|125.294 +637722.410|221309.185|123.036 +637718.713|221312.571|122.908 +637714.942|221316.024|122.707 +637711.279|221319.380|122.518 +637707.493|221322.846|122.286 +637703.884|221326.156|122.338 +637700.257|221329.481|122.332 +637696.609|221332.822|122.259 +637689.464|221339.375|122.518 +637685.831|221342.701|122.329 +637678.668|221349.263|121.975 +637675.001|221352.616|121.503 +637671.548|221355.786|121.835 +637657.530|221368.627|121.308 +637654.125|221371.748|121.469 +637650.757|221374.836|121.585 +637878.099|221164.008|127.175 +637882.342|221160.107|127.135 +637886.560|221156.233|127.236 +637890.760|221152.368|127.029 +637894.961|221148.503|126.834 +637903.303|221140.822|125.959 +637916.266|221128.907|126.059 +637938.169|221108.797|127.407 +637951.462|221096.592|128.345 +637955.899|221092.517|128.571 +637960.374|221088.408|129.001 +637964.906|221084.251|129.488 +637973.779|221076.098|129.528 +637978.238|221072.001|129.696 +637991.738|221059.608|130.708 +637996.264|221055.450|131.058 +638000.839|221051.250|131.415 +638005.323|221047.132|131.561 +638014.394|221038.802|131.954 +638018.917|221034.648|132.094 +638023.446|221030.487|132.302 +638027.979|221026.321|132.268 +638032.511|221022.157|132.238 +638037.053|221017.984|132.290 +638046.123|221009.642|132.082 +638050.677|221005.457|131.957 +638073.443|220984.523|130.671 +638077.999|220980.332|130.354 +638082.562|220976.141|130.080 +638087.153|220971.917|129.693 +638096.300|220963.507|129.059 +638100.975|220959.213|128.955 +638105.587|220954.973|128.766 +638110.241|220950.696|128.544 +638114.886|220946.429|128.266 +638119.556|220942.138|128.199 +638138.280|220924.935|127.672 +638142.989|220920.610|127.626 +638157.123|220907.625|127.260 +638161.868|220903.263|127.193 +638166.620|220898.899|127.193 +638171.372|220894.537|127.202 +638185.573|220881.482|126.184 +638195.089|220872.735|125.727 +638199.889|220868.330|125.843 +638204.696|220863.911|125.672 +638209.445|220859.549|125.404 +638214.236|220855.145|125.133 +638219.098|220850.682|125.459 +638233.527|220837.417|124.404 +638243.122|220828.596|123.703 +638262.882|220810.482|125.916 +638267.729|220806.032|125.931 +638272.645|220801.521|126.139 +638277.546|220797.022|126.255 +638282.463|220792.508|126.541 +638287.358|220788.015|126.639 +638292.320|220783.465|126.946 +638302.156|220774.436|127.248 +638312.028|220765.375|127.526 +638316.963|220760.845|127.696 +638326.827|220751.793|128.053 +638346.590|220733.642|127.833 +638351.534|220729.100|127.718 +638356.490|220724.550|127.800 +638361.488|220719.959|127.806 +638366.457|220715.400|128.071 +638371.492|220710.785|128.605 +638376.482|220706.213|129.178 +638381.489|220701.616|129.449 +638386.506|220697.017|129.839 +638396.504|220687.839|130.302 +638401.445|220683.304|130.421 +638406.477|220678.686|130.473 +638411.464|220674.111|130.616 +638416.435|220669.545|130.549 +638421.449|220664.937|130.458 +638426.435|220660.362|130.668 +638431.452|220655.756|130.628 +638436.411|220651.199|130.458 +638441.374|220646.643|130.302 +638446.424|220642.004|130.095 +638451.380|220637.450|129.918 +638456.352|220632.878|129.123 +638461.353|220628.281|128.943 +638466.386|220623.667|129.315 +638476.365|220614.492|128.486 +638481.363|220609.902|128.208 +638486.408|220605.266|127.937 +638491.407|220600.676|127.739 +638496.399|220596.085|127.385 +638501.438|220591.455|127.004 +638506.427|220586.868|126.611 +638511.463|220582.238|126.148 +638516.504|220577.608|125.809 +638521.497|220573.018|125.468 +638526.538|220568.385|125.176 +638531.573|220563.755|124.679 +638536.566|220559.168|124.282 +638541.650|220554.492|123.810 +638546.685|220549.862|123.237 +638551.675|220545.275|122.740 +638556.771|220540.593|122.594 +638561.828|220535.954|122.664 +638566.881|220531.315|122.789 +638571.932|220526.679|122.694 +638576.976|220522.043|122.496 +638582.024|220517.407|122.210 +638587.068|220512.771|121.963 +638592.116|220508.135|121.814 +638597.166|220503.499|121.716 +638602.266|220498.820|121.728 +638607.316|220494.181|121.811 +638612.367|220489.545|121.719 +638617.414|220484.909|121.649 +638622.462|220480.273|121.457 +638627.561|220475.592|121.497 +638632.612|220470.956|121.338 +638637.662|220466.320|121.399 +638642.713|220461.684|121.570 +638647.812|220457.005|121.750 +638652.863|220452.372|121.914 +638657.913|220447.736|121.999 +638663.012|220443.060|122.231 +638668.014|220438.470|122.441 +638673.110|220433.794|122.664 +638678.685|220428.680|122.743 +638683.205|220424.525|122.487 +638688.305|220419.844|122.332 +638693.355|220415.204|122.176 +638698.412|220410.559|121.768 +638703.469|220405.911|121.356 +638708.574|220401.220|121.009 +638713.631|220396.575|120.796 +638743.974|220368.716|120.539 +638749.082|220364.028|120.588 +638754.108|220359.408|120.009 +638764.243|220350.096|119.552 +638804.787|220312.822|115.535 +638825.035|220294.205|113.749 +638840.150|220280.324|113.666 +638845.170|220275.722|114.093 +638860.237|220261.905|115.273 +638865.226|220257.327|115.401 +638870.271|220252.694|115.404 +638875.263|220248.110|115.480 +638880.262|220243.522|115.522 +638885.325|220238.868|115.288 +638890.382|220234.214|114.407 +638895.402|220229.599|114.181 +638900.412|220225.000|114.142 +638905.420|220220.403|114.215 +638910.434|220215.801|114.181 +638915.400|220211.238|114.166 +638920.429|220206.617|113.950 +638925.491|220201.960|113.322 +638930.454|220197.406|113.468 +638935.532|220192.734|112.712 +638940.479|220188.186|112.441 +638945.511|220183.568|112.414 +638950.494|220178.993|112.386 +638955.478|220174.415|112.359 +638960.452|220169.849|112.499 +638965.384|220165.326|112.612 +638970.352|220160.766|112.862 +638975.314|220156.206|112.615 +638980.295|220151.634|112.764 +638985.229|220147.108|112.932 +638990.195|220142.545|112.740 +638995.129|220138.016|112.913 +639000.098|220133.453|112.776 +639005.060|220128.896|112.688 +639009.982|220124.373|112.554 +639014.966|220119.795|112.319 +639019.903|220115.259|112.084 +639024.887|220110.681|111.917 +639029.788|220106.179|111.636 +639034.747|220101.620|111.286 +639039.694|220097.075|111.069 +639044.656|220092.515|110.752 +639049.554|220088.016|110.621 +639054.498|220083.475|110.527 +639059.393|220078.979|110.469 +639064.285|220074.489|110.469 +639069.123|220070.048|110.545 +639074.036|220065.540|110.835 +639078.873|220061.099|110.947 +639083.842|220056.533|110.368 +639088.731|220052.038|110.067 +639093.607|220047.560|109.929 +639098.502|220043.061|109.652 +639103.401|220038.562|109.375 +639108.256|220034.097|109.061 +639113.157|220029.592|108.811 +639118.080|220025.069|108.427 +639122.947|220020.597|108.128 +639127.824|220016.114|107.756 +639132.707|220011.627|107.403 +639137.550|220007.174|106.982 +639142.461|220002.660|106.467 +639147.325|219998.182|105.933 +639152.163|219993.738|105.650 +639156.997|219989.297|105.431 +639161.822|219984.866|105.312 +639166.647|219980.437|105.211 +639171.438|219976.036|105.013 +639176.230|219971.631|104.830 +639181.073|219967.181|104.672 +639185.843|219962.792|104.327 +639190.671|219958.354|103.992 +639195.456|219953.950|103.596 +639200.245|219949.548|103.236 +639205.079|219945.104|102.928 +639209.843|219940.727|102.776 +639214.558|219936.393|102.639 +639219.322|219932.016|102.547 +639224.038|219927.682|102.456 +639228.768|219923.339|102.309 +639233.547|219918.943|102.172 +639238.229|219914.643|102.050 +639242.972|219910.284|101.895 +639247.708|219905.931|101.788 +639252.351|219901.667|101.666 +639257.051|219897.345|101.517 +639261.812|219892.971|101.340 +639266.466|219888.692|101.203 +639271.141|219884.397|100.980 +639275.866|219880.054|100.770 +639280.496|219875.799|100.566 +639285.199|219871.474|100.231 +639289.917|219867.133|99.844 +639294.590|219862.836|99.441 +639299.259|219858.541|99.091 +639303.938|219854.237|98.716 +639308.623|219849.930|98.338 +639313.262|219845.666|97.951 +639317.898|219841.402|97.603 +639322.564|219837.110|97.384 +639327.231|219832.819|96.911 +639331.879|219828.539|96.290 +639336.564|219824.230|95.774 +639341.160|219820.005|95.494 +639345.720|219815.817|95.427 +639350.295|219811.611|95.302 +639359.677|219802.973|93.604 +639382.409|219782.076|92.422 +639386.935|219777.918|92.461 +639400.414|219765.534|92.156 +639418.095|219749.297|92.519 +639422.618|219745.140|92.217 +639426.949|219741.165|92.611 +639431.256|219737.215|93.144 +639440.147|219729.043|92.665 +639448.862|219721.039|92.608 +639444.262|219722.890|92.870 +639422.423|219742.887|92.580 +639418.010|219746.929|92.541 +639409.219|219754.973|92.077 +639395.771|219767.296|92.461 +639391.349|219771.341|92.306 +639382.342|219779.592|92.379 +639377.837|219783.719|92.452 +639364.209|219796.209|92.854 +639359.521|219800.510|93.434 +639345.555|219813.324|95.104 +639340.962|219817.533|95.293 +639336.323|219821.785|95.461 +639331.641|219826.080|95.890 +639326.932|219830.402|96.503 +639322.226|219834.721|97.125 +639317.547|219839.009|97.338 +639312.844|219843.322|97.701 +639308.144|219847.629|98.076 +639303.441|219851.945|98.512 +639298.702|219856.292|98.874 +639294.008|219860.595|99.292 +639289.216|219864.994|99.734 +639284.483|219869.337|100.154 +639279.716|219873.708|100.487 +639275.009|219878.024|100.788 +639270.273|219882.367|101.008 +639265.487|219886.753|101.227 +639260.766|219891.082|101.377 +639255.999|219895.452|101.547 +639251.232|219899.820|101.724 +639246.468|219904.188|101.910 +639241.673|219908.583|101.995 +639236.918|219912.942|102.175 +639232.127|219917.331|102.291 +639227.290|219921.766|102.413 +639222.504|219926.152|102.538 +639217.670|219930.584|102.669 +639212.848|219935.000|102.748 +639208.020|219939.426|102.904 +639203.186|219943.858|103.117 +639198.294|219948.347|103.431 +639193.399|219952.837|103.775 +639188.504|219957.324|104.144 +639183.578|219961.841|104.422 +639178.689|219966.325|104.818 +639173.782|219970.827|105.019 +639168.899|219975.301|105.080 +639163.995|219979.797|105.312 +639159.112|219984.271|105.406 +639154.223|219988.755|105.583 +639149.236|219993.324|105.769 +639144.320|219997.835|106.208 +639139.294|220002.447|106.756 +639134.371|220006.964|107.299 +639129.330|220011.588|107.671 +639124.447|220016.068|107.988 +639119.415|220020.680|108.317 +639114.486|220025.200|108.661 +639109.469|220029.802|108.960 +639104.504|220034.356|109.256 +639099.493|220038.949|109.554 +639094.531|220043.500|109.878 +639089.508|220048.103|109.917 +639084.561|220052.638|110.188 +639079.513|220057.268|110.502 +639074.536|220061.837|111.121 +639069.574|220066.378|110.722 +639064.590|220070.941|110.554 +639059.589|220075.522|110.551 +639054.590|220080.101|110.557 +639049.588|220084.685|110.627 +639044.586|220089.269|110.737 +639039.575|220093.862|110.954 +639034.510|220098.511|111.261 +639029.502|220103.098|111.496 +639024.448|220107.731|111.740 +639019.404|220112.358|111.956 +639014.350|220116.994|112.267 +639009.309|220121.611|112.481 +639004.285|220126.217|112.557 +638999.214|220130.865|112.630 +638994.227|220135.437|112.889 +638989.189|220140.049|112.654 +638984.166|220144.651|112.804 +638979.124|220149.269|112.676 +638974.089|220153.878|112.465 +638969.075|220158.474|112.618 +638964.046|220163.076|112.380 +638959.004|220167.694|112.319 +638953.920|220172.355|112.240 +638948.882|220176.969|112.191 +638943.886|220181.544|112.225 +638938.796|220186.208|112.282 +638933.749|220190.835|112.453 +638928.628|220195.535|113.020 +638923.541|220200.198|113.139 +638918.472|220204.849|113.752 +638913.376|220209.525|114.072 +638908.353|220214.131|114.111 +638903.284|220218.773|114.108 +638898.218|220223.415|114.062 +638893.155|220228.054|114.047 +638888.083|220232.705|114.194 +638882.969|220237.402|115.056 +638877.894|220242.056|115.361 +638872.840|220246.686|115.285 +638867.787|220251.319|115.273 +638862.742|220255.940|115.120 +638857.646|220260.607|115.029 +638847.530|220269.866|114.355 +638837.468|220279.077|113.614 +638832.369|220283.750|113.685 +638827.315|220288.386|113.910 +638791.727|220321.042|117.129 +638766.322|220344.354|119.448 +638756.156|220353.684|120.381 +638751.158|220358.246|119.348 +638740.999|220367.570|120.347 +638735.933|220372.212|120.344 +638730.867|220376.854|120.326 +638725.801|220381.494|120.329 +638720.739|220386.136|120.320 +638715.673|220390.778|120.408 +638710.607|220395.423|120.561 +638705.541|220400.068|120.863 +638700.475|220404.713|121.204 +638695.410|220409.361|121.615 +638690.347|220414.007|122.018 +638685.287|220418.643|122.085 +638680.228|220423.282|122.313 +638675.034|220428.043|122.420 +638670.117|220432.545|122.323 +638665.106|220437.132|122.057 +638660.001|220441.807|121.844 +638654.944|220446.440|121.686 +638649.933|220451.031|121.585 +638644.874|220455.667|121.521 +638639.814|220460.300|121.259 +638634.754|220464.933|121.195 +638629.695|220469.569|121.134 +638624.638|220474.205|121.344 +638619.578|220478.841|121.308 +638614.522|220483.477|121.414 +638609.511|220488.067|121.551 +638604.451|220492.703|121.573 +638599.391|220497.339|121.503 +638594.380|220501.929|121.484 +638589.324|220506.565|121.673 +638584.267|220511.201|121.826 +638579.259|220515.792|122.012 +638574.209|220520.425|122.384 +638569.152|220525.061|122.484 +638564.141|220529.651|122.484 +638559.075|220534.290|122.387 +638554.068|220538.880|122.582 +638549.017|220543.513|122.914 +638544.018|220548.101|123.338 +638539.023|220552.685|123.972 +638534.021|220557.272|124.346 +638528.976|220561.902|124.779 +638524.026|220566.443|125.233 +638518.973|220571.073|125.529 +638513.971|220575.661|125.867 +638508.975|220580.245|126.303 +638503.977|220584.829|126.730 +638499.024|220589.374|127.093 +638494.025|220593.958|127.519 +638489.020|220598.545|127.763 +638484.061|220603.093|127.983 +638479.059|220607.680|128.303 +638459.171|220625.910|129.257 +638454.203|220630.464|129.370 +638449.247|220635.008|129.726 +638444.294|220639.553|130.122 +638439.286|220644.143|130.433 +638434.360|220648.654|130.522 +638429.386|220653.214|130.567 +638424.411|220657.774|130.662 +638419.465|220662.300|130.494 +638414.481|220666.866|130.500 +638409.552|220671.383|130.607 +638404.551|220675.961|130.409 +638399.613|220680.485|130.427 +638394.663|220685.017|130.330 +638379.761|220698.657|129.476 +638364.884|220712.263|127.980 +638359.952|220716.777|127.718 +638354.990|220721.322|127.660 +638350.080|220725.821|127.708 +638301.083|220770.693|127.181 +638296.188|220775.177|127.090 +638291.336|220779.618|126.986 +638286.395|220784.138|126.511 +638281.533|220788.588|126.361 +638276.635|220793.075|126.343 +638271.767|220797.531|126.194 +638262.038|220806.440|125.998 +638252.254|220815.389|124.959 +638237.681|220828.727|124.362 +638228.074|220837.533|124.712 +638223.316|220841.892|124.895 +638199.426|220863.783|125.645 +638194.634|220868.172|125.663 +638185.131|220876.883|125.983 +638180.449|220881.178|126.514 +638161.481|220898.554|127.023 +638152.054|220907.192|127.419 +638142.626|220915.827|127.538 +638137.951|220920.110|127.562 +638133.287|220924.386|128.013 +638128.615|220928.665|128.089 +638114.509|220941.583|128.135 +638109.866|220945.835|128.156 +638105.194|220950.114|128.324 +638100.604|220954.324|128.723 +638095.995|220958.548|129.001 +638091.371|220962.782|129.226 +638086.738|220967.028|129.373 +638082.200|220971.188|129.848 +638077.625|220975.382|130.092 +638063.945|220987.922|131.214 +638059.465|220992.034|131.796 +638054.877|220996.231|131.738 +638050.321|221000.406|131.887 +638045.755|221004.588|131.994 +638036.669|221012.912|132.232 +638032.109|221017.085|132.134 +638027.564|221021.246|132.149 +638023.050|221025.379|132.061 +638018.512|221029.536|132.140 +638009.392|221037.882|131.838 +637995.743|221050.366|131.012 +637982.131|221062.811|129.757 +637977.650|221066.911|129.787 +637973.185|221071.001|129.632 +637968.701|221075.101|129.409 +637959.789|221083.254|129.056 +637955.296|221087.363|128.571 +637950.840|221091.441|128.306 +637946.332|221095.559|127.800 +637941.955|221099.564|127.733 +637924.182|221115.813|126.032 +637906.906|221131.626|125.864 +637902.541|221135.619|125.514 +637898.283|221139.517|125.709 +637881.455|221154.937|126.605 +637877.380|221158.674|127.245 +637873.164|221162.533|127.236 +637860.564|221174.067|127.032 +637856.364|221177.907|126.928 +637852.148|221181.766|126.760 +637848.012|221185.551|126.724 +637843.870|221189.343|126.700 +637839.709|221193.150|126.587 +637835.674|221196.844|126.840 +637831.638|221200.542|127.090 +637827.475|221204.352|127.013 +637823.415|221208.067|126.962 +637819.337|221211.795|126.840 +637815.182|221215.593|126.639 +637811.165|221219.272|126.581 +637807.105|221222.981|126.361 +637799.058|221230.342|126.294 +637791.078|221237.642|126.111 +637787.073|221241.306|125.974 +637783.035|221244.997|125.718 +637779.078|221248.615|125.602 +637775.131|221252.224|125.544 +637771.236|221255.787|125.493 +637767.368|221259.328|125.560 +637759.541|221266.482|125.166 +637755.871|221269.856|126.084 +637744.340|221280.399|125.724 +637736.629|221287.449|125.310 +637729.012|221294.411|124.923 +637725.001|221298.069|123.932 +637721.136|221301.595|123.350 +637717.362|221305.042|123.127 +637713.714|221308.386|123.414 +637709.916|221311.855|122.911 +637706.158|221315.290|122.801 +637702.558|221318.588|123.100 +637699.059|221321.794|123.591 +637695.399|221325.141|123.475 +637691.756|221328.472|123.432 +637684.319|221335.263|122.408 +637677.016|221341.935|121.743 +637673.471|221345.176|121.731 +637669.878|221348.461|121.554 +637666.354|221351.680|121.451 +637662.861|221354.877|121.457 +637659.325|221358.111|121.530 +637655.939|221361.211|121.554 +637652.480|221364.375|121.728 +637649.142|221367.432|121.960 +637645.704|221370.578|122.018 +637871.424|221161.347|127.209 +637875.584|221157.525|126.748 +637879.580|221153.843|125.776 +637883.848|221149.929|125.843 +637892.397|221142.084|125.611 +637896.646|221138.182|125.401 +637901.008|221134.180|125.505 +637909.655|221126.249|125.633 +637914.044|221122.226|125.928 +637918.433|221118.203|126.239 +637936.157|221101.954|127.248 +637940.626|221097.860|127.550 +637945.036|221093.816|127.565 +637954.058|221085.549|128.449 +637958.579|221081.407|128.848 +637963.017|221077.338|129.098 +637967.479|221073.248|129.223 +637972.014|221069.090|129.491 +637976.547|221064.936|129.775 +637981.055|221060.803|129.940 +637985.602|221056.636|130.339 +638003.842|221039.921|131.622 +638008.380|221035.760|131.799 +638012.976|221031.548|132.061 +638017.515|221027.381|132.003 +638022.084|221023.193|132.140 +638026.671|221018.987|132.101 +638031.258|221014.775|132.104 +638035.785|221010.623|132.052 +638040.421|221006.374|132.369 +638045.017|221002.156|132.162 +638049.552|220997.992|131.933 +638054.140|220993.780|131.717 +638058.764|220989.540|131.732 +638063.259|220985.401|130.997 +638067.850|220981.189|130.851 +638081.557|220968.591|129.470 +638086.244|220964.291|129.370 +638090.856|220960.054|129.132 +638095.449|220955.835|128.763 +638100.122|220951.547|128.629 +638114.091|220938.721|127.983 +638128.212|220925.764|127.855 +638142.373|220912.764|127.492 +638147.147|220908.387|127.541 +638151.813|220904.099|127.224 +638156.574|220899.734|127.233 +638166.084|220891.004|126.858 +638175.569|220882.293|126.376 +638180.370|220877.889|126.419 +638185.134|220873.518|126.175 +638194.705|220864.727|125.752 +638199.505|220860.326|125.858 +638223.545|220838.256|124.657 +638233.207|220829.389|124.465 +638247.847|220815.962|124.950 +638257.643|220806.989|125.736 +638262.575|220802.469|126.029 +638272.377|220793.477|126.133 +638282.198|220784.473|126.544 +638292.070|220775.424|127.065 +638301.879|220766.426|127.062 +638306.786|220761.921|126.870 +638311.721|220757.398|126.983 +638316.738|220752.802|127.483 +638346.389|220725.604|127.772 +638351.336|220721.066|127.672 +638356.289|220716.521|127.681 +638361.260|220711.964|127.931 +638376.302|220698.184|129.263 +638386.250|220689.062|129.498 +638396.236|220679.915|130.348 +638401.268|220675.300|130.403 +638406.209|220670.771|130.497 +638411.244|220666.153|130.631 +638416.206|220661.596|130.427 +638421.199|220657.021|130.628 +638426.222|220652.412|130.656 +638431.193|220647.853|130.607 +638436.210|220643.250|130.543 +638441.215|220638.657|130.284 +638446.141|220634.128|129.531 +638451.207|220629.482|129.516 +638456.172|220624.926|129.461 +638461.201|220620.317|129.690 +638476.221|220606.522|128.348 +638481.226|220601.928|128.175 +638486.225|220597.341|127.891 +638491.276|220592.705|127.687 +638496.268|220588.121|127.303 +638501.307|220583.494|126.858 +638506.351|220578.864|126.504 +638511.341|220574.280|126.020 +638516.385|220569.650|125.672 +638521.430|220565.017|125.371 +638526.428|220560.430|125.063 +638531.464|220555.803|124.514 +638536.508|220551.173|124.115 +638541.552|220546.540|123.749 +638546.591|220541.910|123.240 +638551.629|220537.283|122.609 +638556.677|220532.647|122.338 +638561.776|220527.969|122.155 +638566.836|220523.329|122.271 +638571.889|220518.696|122.204 +638576.937|220514.060|121.902 +638581.987|220509.427|121.722 +638587.038|220504.791|121.475 +638592.137|220500.113|121.311 +638597.191|220495.477|121.295 +638602.247|220490.841|121.381 +638607.350|220486.162|121.366 +638612.403|220481.526|121.237 +638617.457|220476.890|121.143 +638622.559|220472.211|121.216 +638627.610|220467.575|121.009 +638632.712|220462.897|121.039 +638637.815|220458.218|121.088 +638642.871|220453.582|121.231 +638647.925|220448.949|121.262 +638653.027|220444.270|121.356 +638658.081|220439.637|121.457 +638663.183|220434.959|121.652 +638668.285|220430.286|121.908 +638673.284|220425.702|122.109 +638678.387|220421.023|122.106 +638683.489|220416.341|121.890 +638688.546|220411.702|121.759 +638693.602|220407.060|121.469 +638698.711|220402.372|121.109 +638703.770|220397.724|120.668 +638708.879|220393.033|120.424 +638713.942|220388.388|120.201 +638719.004|220383.743|120.003 +638724.110|220379.064|120.134 +638729.172|220374.422|120.107 +638734.232|220369.780|120.113 +638739.295|220365.141|120.204 +638749.487|220355.781|119.415 +638769.760|220337.185|119.171 +638774.847|220332.515|118.653 +638785.021|220323.170|117.659 +638815.504|220295.165|113.691 +638850.797|220262.829|114.785 +638855.842|220258.205|114.840 +638860.831|220253.630|115.004 +638865.872|220249.012|115.138 +638870.917|220244.391|115.276 +638875.934|220239.789|115.071 +638880.951|220235.183|114.855 +638886.005|220230.544|114.126 +638891.019|220225.948|114.072 +638896.033|220221.348|114.047 +638901.046|220216.752|114.041 +638906.064|220212.152|114.029 +638911.081|220207.556|114.035 +638916.082|220202.963|113.593 +638921.127|220198.333|113.233 +638926.125|220193.745|112.916 +638931.139|220189.143|112.447 +638936.141|220184.556|112.173 +638941.177|220179.938|112.112 +638946.111|220175.415|112.154 +638951.101|220170.840|112.097 +638961.025|220161.744|112.212 +638966.012|220157.172|112.292 +638970.949|220152.646|112.389 +638975.890|220148.120|112.481 +638980.834|220143.591|112.587 +638985.784|220139.055|112.627 +638990.740|220134.511|112.624 +638995.687|220129.975|112.718 +639000.610|220125.464|112.615 +639005.581|220120.901|112.493 +639010.516|220116.378|112.322 +639015.453|220111.846|112.093 +639020.400|220107.310|111.844 +639025.344|220102.775|111.648 +639030.297|220098.230|111.374 +639035.256|220093.679|111.082 +639040.164|220089.178|110.853 +639045.110|220084.645|110.761 +639050.012|220080.149|110.630 +639054.904|220075.666|110.637 +639059.808|220071.170|110.560 +639064.688|220066.695|110.713 +639069.537|220062.258|111.158 +639074.445|220057.753|110.670 +639079.388|220053.214|110.332 +639084.320|220048.688|109.707 +639089.218|220044.192|109.390 +639094.010|220039.803|109.615 +639098.899|220035.319|109.457 +639103.800|220030.823|109.198 +639108.655|220026.370|108.966 +639113.572|220021.859|108.640 +639118.388|220017.440|108.369 +639123.310|220012.923|108.067 +639128.135|220008.497|107.777 +639133.027|220004.007|107.393 +639137.934|219999.502|106.912 +639142.808|219995.028|106.345 +639147.661|219990.572|105.955 +639152.507|219986.128|105.668 +639157.338|219981.696|105.516 +639162.117|219977.313|105.388 +639166.964|219972.869|105.190 +639171.746|219968.483|105.089 +639176.553|219964.078|104.873 +639181.356|219959.671|104.675 +639186.175|219955.251|104.400 +639191.003|219950.822|104.092 +639195.798|219946.424|103.699 +639200.589|219942.029|103.373 +639205.420|219937.600|103.126 +639210.148|219933.266|102.943 +639214.921|219928.889|102.803 +639219.688|219924.518|102.718 +639224.361|219920.233|102.626 +639229.146|219915.850|102.495 +639233.877|219911.512|102.395 +639238.574|219907.205|102.227 +639243.319|219902.856|102.090 +639248.016|219898.549|101.962 +639252.719|219894.236|101.803 +639257.435|219889.914|101.624 +639262.147|219885.592|101.462 +639266.826|219881.300|101.224 +639271.513|219877.003|100.965 +639276.216|219872.690|100.633 +639280.929|219868.368|100.279 +639285.604|219864.076|99.862 +639290.335|219859.736|99.441 +639295.004|219855.450|99.100 +639299.662|219851.177|98.576 +639304.401|219846.828|98.195 +639309.043|219842.569|97.801 +639313.707|219838.290|97.323 +639318.340|219834.038|97.027 +639323.022|219829.743|96.503 +639327.719|219825.431|95.906 +639332.339|219821.191|95.488 +639336.957|219816.954|95.101 +639378.123|219779.198|92.638 +639382.625|219775.071|92.550 +639387.118|219770.954|92.531 +639413.749|219746.548|92.373 +639418.022|219742.641|93.059 +639435.539|219726.599|93.610 +639439.900|219722.600|93.427 +639444.280|219718.586|93.437 +639442.171|219718.528|93.427 +639437.727|219722.594|93.690 +639433.253|219726.687|93.866 +639428.781|219730.778|94.046 +639415.650|219742.772|93.059 +639411.347|219746.694|92.230 +639406.891|219750.770|92.166 +639397.878|219759.011|92.336 +639384.299|219771.429|92.647 +639370.683|219783.880|92.809 +639352.371|219800.635|93.519 +639333.778|219817.655|95.012 +639329.044|219821.989|95.430 +639324.347|219826.290|95.942 +639319.638|219830.606|96.567 +639314.984|219834.864|96.893 +639310.266|219839.186|97.332 +639305.550|219843.502|97.774 +639300.835|219847.821|98.256 +639296.126|219852.134|98.713 +639291.371|219856.487|99.179 +639286.634|219860.824|99.557 +639281.886|219865.173|100.033 +639277.170|219869.489|100.346 +639272.443|219873.821|100.761 +639267.685|219878.173|101.063 +639262.936|219882.523|101.349 +639258.203|219886.851|101.547 +639253.475|219891.179|101.758 +639248.708|219895.541|101.907 +639243.993|219899.854|102.078 +639239.235|219904.209|102.233 +639234.434|219908.598|102.343 +639229.679|219912.951|102.520 +639224.937|219917.288|102.639 +639220.157|219921.662|102.703 +639215.372|219926.042|102.834 +639210.587|219930.416|102.968 +639205.807|219934.790|103.102 +639200.973|219939.216|103.288 +639196.118|219943.660|103.644 +639191.265|219948.101|104.007 +639186.416|219952.542|104.394 +639181.582|219956.964|104.678 +639176.717|219961.417|104.870 +639171.853|219965.870|105.089 +639167.009|219970.299|105.171 +639162.160|219974.737|105.327 +639157.311|219979.172|105.507 +639152.425|219983.643|105.626 +639147.514|219988.139|105.952 +639142.607|219992.629|106.272 +639137.663|219997.158|106.915 +639132.747|220001.663|107.400 +639127.797|220006.196|107.774 +639122.862|220010.710|108.043 +639117.930|220015.227|108.338 +639113.005|220019.735|108.607 +639108.079|220024.243|108.917 +639103.111|220028.787|109.183 +639098.192|220033.292|109.506 +639093.275|220037.785|109.384 +639088.401|220042.238|108.951 +639083.445|220046.774|109.225 +639078.386|220051.413|110.030 +639073.417|220055.960|110.478 +639068.409|220060.548|110.908 +639063.447|220065.086|110.944 +639058.531|220069.576|110.569 +639053.566|220074.117|110.667 +639048.564|220078.692|110.685 +639043.611|220083.222|110.734 +639038.603|220087.806|110.868 +639033.589|220092.390|111.066 +639028.572|220096.983|111.368 +639023.558|220101.571|111.633 +639018.504|220106.195|111.847 +639013.503|220110.773|112.078 +639008.452|220115.396|112.340 +639003.417|220119.999|112.456 +638998.433|220124.559|112.578 +638993.346|220129.216|112.822 +638988.351|220133.779|112.578 +638983.346|220138.357|112.487 +638978.289|220142.978|112.441 +638973.284|220147.556|112.389 +638968.243|220152.165|112.221 +638963.195|220156.779|112.142 +638958.139|220161.403|112.197 +638948.056|220170.620|112.014 +638942.963|220175.278|112.029 +638937.915|220179.895|112.081 +638932.816|220184.559|112.197 +638927.707|220189.231|112.471 +638922.639|220193.874|112.923 +638917.518|220198.567|113.505 +638912.422|220203.228|113.715 +638907.325|220207.894|114.023 +638902.202|220212.576|113.986 +638897.172|220217.176|114.047 +638892.052|220221.857|114.056 +638886.934|220226.539|114.056 +638881.859|220231.181|114.181 +638876.748|220235.866|114.922 +638871.633|220240.542|114.974 +638866.564|220245.178|115.068 +638861.422|220249.878|114.803 +638856.363|220254.504|114.855 +638851.263|220259.165|114.693 +638846.167|220263.825|114.562 +638836.008|220273.100|113.572 +638830.851|220277.819|113.739 +638820.652|220287.139|113.675 +638815.556|220291.803|113.672 +638810.435|220296.491|114.255 +638764.292|220338.751|119.223 +638759.153|220343.461|119.762 +638723.390|220376.156|119.774 +638718.319|220380.799|119.875 +638713.201|220385.480|119.906 +638708.077|220390.165|120.180 +638703.005|220394.807|120.451 +638697.885|220399.495|120.844 +638692.767|220404.180|121.213 +638687.698|220408.819|121.490 +638682.584|220413.498|121.649 +638677.469|220418.176|121.814 +638672.403|220422.806|121.750 +638667.298|220427.473|121.622 +638662.232|220432.100|121.369 +638657.166|220436.729|121.192 +638652.055|220441.402|121.027 +638646.940|220446.078|120.981 +638641.923|220450.665|120.936 +638636.809|220455.338|120.908 +638631.697|220460.013|120.884 +638621.566|220469.276|121.076 +638616.500|220473.909|120.957 +638611.483|220478.496|121.033 +638606.371|220483.172|121.134 +638601.306|220487.802|121.128 +638596.285|220492.392|121.091 +638591.174|220497.065|121.180 +638586.111|220501.698|121.274 +638581.097|220506.285|121.469 +638576.035|220510.915|121.707 +638570.975|220515.545|121.923 +638565.958|220520.132|122.030 +638560.889|220524.768|121.893 +638555.875|220529.352|122.188 +638550.821|220533.979|122.652 +638545.771|220538.606|123.155 +638540.812|220543.145|123.560 +638535.761|220547.771|124.075 +638530.756|220552.353|124.487 +638525.755|220556.934|124.956 +638520.747|220561.515|125.313 +638515.742|220566.099|125.617 +638510.734|220570.680|125.956 +638505.735|220575.258|126.437 +638500.779|220579.797|126.834 +638495.774|220584.375|127.239 +638490.773|220588.956|127.626 +638485.807|220593.501|127.824 +638480.800|220598.082|128.117 +638475.834|220602.626|128.336 +638470.875|220607.165|128.620 +638455.992|220620.786|129.549 +638451.014|220625.340|129.543 +638446.040|220629.888|129.665 +638441.105|220634.399|129.650 +638436.162|220638.928|130.299 +638431.193|220643.476|130.510 +638426.259|220647.987|130.543 +638421.324|220652.501|130.558 +638416.328|220657.067|130.439 +638411.387|220661.584|130.427 +638406.440|220666.104|130.366 +638401.497|220670.627|130.330 +638396.544|220675.154|130.211 +638366.856|220702.275|128.620 +638361.860|220706.838|128.138 +638356.956|220711.315|127.663 +638351.985|220715.860|127.574 +638347.126|220720.304|127.693 +638317.692|220747.209|127.300 +638312.772|220751.701|126.901 +638303.006|220760.632|126.971 +638293.250|220769.550|126.709 +638273.767|220787.357|126.358 +638268.835|220791.862|126.087 +638244.536|220814.064|124.871 +638215.614|220840.505|124.852 +638196.491|220857.997|125.614 +638191.733|220862.350|125.526 +638182.241|220871.034|126.017 +638158.580|220892.678|126.718 +638153.858|220897.000|127.050 +638139.743|220909.914|127.437 +638134.961|220914.282|127.053 +638125.631|220922.822|127.669 +638120.976|220927.084|127.894 +638116.255|220931.403|128.028 +638111.601|220935.658|127.952 +638097.677|220948.401|128.772 +638093.008|220952.672|128.678 +638088.421|220956.872|129.150 +638083.827|220961.075|129.251 +638079.228|220965.284|129.665 +638074.601|220969.521|129.906 +638070.123|220973.621|130.494 +638065.527|220977.833|130.951 +638060.943|220982.027|131.204 +638033.590|221007.054|132.128 +638029.045|221011.209|132.134 +638024.492|221015.372|132.110 +638019.929|221019.545|132.037 +638015.378|221023.705|132.067 +638010.806|221027.884|131.991 +638006.259|221032.042|131.781 +638001.687|221036.217|131.454 +637997.166|221040.351|131.454 +637983.542|221052.799|130.628 +637978.939|221056.999|129.979 +637969.932|221065.228|129.559 +637965.415|221069.352|129.165 +637956.427|221077.567|128.681 +637942.958|221089.868|127.669 +637938.456|221093.977|127.236 +637925.124|221106.154|126.148 +637920.646|221110.241|125.648 +637907.528|221122.232|125.374 +637894.595|221134.058|125.401 +637890.325|221137.960|125.316 +637886.057|221141.864|125.502 +637877.578|221149.618|125.697 +637873.420|221153.428|126.191 +637852.502|221172.567|127.099 +637848.277|221176.426|126.907 +637844.166|221180.187|126.998 +637839.956|221184.034|126.901 +637835.799|221187.834|126.824 +637831.614|221191.660|126.629 +637827.520|221195.403|126.629 +637823.247|221199.304|126.081 +637819.279|221202.937|126.678 +637815.258|221206.619|126.806 +637811.208|221210.323|126.828 +637803.014|221217.812|126.523 +637798.976|221221.503|126.419 +637794.925|221225.203|126.273 +637790.883|221228.900|126.175 +637786.860|221232.576|125.956 +637782.834|221236.255|125.742 +637778.847|221239.897|125.718 +637774.909|221243.500|125.678 +637770.971|221247.103|125.654 +637767.030|221250.703|125.642 +637763.101|221254.296|125.465 +637755.365|221261.374|125.660 +637732.270|221282.481|125.096 +637724.556|221289.525|124.331 +637720.648|221293.091|123.761 +637716.829|221296.578|123.569 +637713.065|221300.019|123.392 +637709.499|221303.287|123.786 +637694.908|221316.628|124.020 +637691.177|221320.039|123.831 +637676.440|221333.493|122.326 +637672.828|221336.790|122.060 +637669.259|221340.052|121.954 +637665.720|221343.286|121.774 +637662.215|221346.489|121.734 +637658.819|221349.601|122.112 +637655.403|221352.725|122.222 +637651.830|221355.987|121.969 +637645.183|221362.071|122.521 +637866.319|221157.485|126.401 +637870.506|221153.645|126.288 +637878.934|221145.915|125.858 +637887.322|221138.219|125.294 +637891.623|221134.278|125.288 +637900.179|221126.429|124.889 +637931.113|221098.110|126.995 +637940.028|221089.945|127.431 +637953.498|221077.615|128.498 +637976.059|221056.959|129.860 +637980.661|221052.750|130.247 +637985.243|221048.556|130.836 +637994.362|221040.207|131.253 +637998.873|221036.071|131.238 +638003.457|221031.877|131.640 +638008.054|221027.668|131.863 +638012.629|221023.477|131.966 +638017.225|221019.264|131.936 +638021.791|221015.083|132.049 +638026.391|221010.867|132.073 +638030.969|221006.673|131.991 +638035.577|221002.449|132.113 +638072.324|220968.759|129.994 +638076.939|220964.528|129.708 +638081.547|220960.301|129.397 +638095.510|220947.505|128.787 +638109.562|220934.627|128.269 +638114.234|220930.342|127.836 +638118.907|220926.062|127.745 +638123.677|220921.692|127.678 +638128.307|220917.446|127.324 +638142.535|220904.409|127.044 +638152.078|220895.671|127.111 +638156.815|220891.324|126.575 +638161.594|220886.947|126.733 +638166.361|220882.580|126.434 +638171.140|220878.200|126.255 +638180.693|220869.446|125.910 +638185.469|220865.072|125.745 +638190.297|220860.646|125.648 +638195.113|220856.236|125.450 +638233.807|220820.787|124.822 +638243.540|220811.875|124.825 +638258.252|220798.406|125.212 +638263.157|220793.922|125.675 +638273.008|220784.906|126.209 +638277.936|220780.389|126.084 +638282.862|220775.887|126.401 +638287.766|220771.398|126.547 +638297.657|220762.342|126.797 +638307.493|220753.332|126.544 +638322.392|220739.698|127.404 +638327.287|220735.212|127.132 +638347.175|220717.006|127.547 +638352.079|220712.513|127.498 +638357.096|220707.923|127.623 +638362.095|220703.351|128.202 +638367.088|220698.785|128.739 +638397.104|220671.319|130.217 +638402.094|220666.750|130.293 +638407.074|220662.191|130.235 +638412.061|220657.625|130.290 +638417.060|220653.053|130.577 +638422.077|220648.459|130.421 +638427.063|220643.893|130.589 +638432.080|220639.300|130.452 +638437.018|220634.771|129.836 +638442.041|220630.171|129.872 +638447.055|220625.581|129.717 +638452.026|220621.027|129.735 +638457.077|220616.400|129.424 +638477.090|220598.064|128.355 +638482.138|220593.440|128.010 +638487.142|220588.852|127.824 +638492.141|220584.271|127.504 +638497.189|220579.647|127.135 +638502.233|220575.024|126.757 +638507.229|220570.446|126.328 +638512.264|220565.828|125.764 +638517.266|220561.244|125.496 +638522.313|220556.620|125.163 +638527.358|220551.996|124.724 +638532.405|220547.369|124.350 +638537.450|220542.745|123.917 +638542.488|220538.124|123.310 +638547.490|220533.540|122.981 +638552.534|220528.916|122.460 +638557.585|220524.290|122.134 +638562.632|220519.663|121.692 +638567.695|220515.030|121.753 +638572.749|220510.400|121.628 +638577.802|220505.770|121.390 +638582.859|220501.140|121.271 +638587.913|220496.510|121.085 +638592.969|220491.880|120.994 +638598.075|220487.208|120.942 +638603.134|220482.575|120.975 +638608.191|220477.945|120.902 +638613.248|220473.315|120.820 +638618.307|220468.685|120.948 +638623.413|220464.012|120.826 +638628.469|220459.382|120.777 +638633.526|220454.752|120.759 +638638.586|220450.119|120.713 +638643.691|220445.447|120.753 +638648.748|220440.817|120.762 +638653.807|220436.190|120.920 +638658.913|220431.517|121.000 +638663.970|220426.887|121.161 +638669.023|220422.267|121.347 +638674.125|220417.597|121.533 +638679.136|220413.010|121.530 +638684.245|220408.334|121.353 +638689.305|220403.698|121.152 +638694.319|220399.105|120.893 +638699.430|220394.420|120.518 +638704.496|220389.778|120.098 +638709.516|220385.179|119.753 +638714.627|220380.497|119.698 +638719.693|220375.861|119.646 +638724.707|220371.271|119.695 +638729.773|220366.634|119.683 +638734.836|220362.002|119.814 +638744.976|220352.714|119.521 +638755.056|220343.494|119.869 +638765.166|220334.228|119.165 +638770.250|220329.571|118.842 +638785.433|220315.650|117.202 +638790.550|220310.954|116.156 +638800.645|220301.703|115.391 +638810.774|220292.409|114.002 +638825.916|220278.544|113.627 +638830.964|220273.923|113.532 +638840.992|220264.749|113.892 +638845.966|220260.204|114.428 +638850.995|220255.602|114.751 +638856.000|220251.021|114.712 +638861.002|220246.446|114.760 +638866.049|220241.825|114.849 +638871.054|220237.244|114.870 +638876.062|220232.659|114.870 +638881.119|220228.017|114.056 +638886.084|220223.473|114.041 +638891.101|220218.882|114.029 +638896.069|220214.335|113.998 +638901.086|220209.741|113.980 +638906.106|220205.145|113.977 +638911.099|220200.573|113.691 +638916.113|220195.977|113.145 +638921.112|220191.395|112.840 +638926.125|220186.799|112.343 +638931.130|220182.212|112.033 +638936.111|220177.655|112.103 +638941.103|220173.083|111.996 +638946.093|220168.517|112.014 +638951.076|220163.957|112.090 +638960.973|220154.899|112.029 +638965.963|220150.330|112.112 +638970.901|220145.813|112.264 +638975.863|220141.268|112.136 +638980.798|220136.757|112.374 +638985.744|220132.231|112.502 +638990.691|220127.701|112.602 +638995.654|220123.160|112.593 +639000.582|220118.646|112.450 +639005.563|220114.086|112.298 +639010.500|220109.563|112.106 +639015.441|220105.039|111.929 +639020.391|220100.507|111.676 +639025.338|220095.975|111.487 +639030.303|220091.424|111.133 +639035.259|220086.885|110.920 +639040.203|220082.359|110.822 +639045.098|220077.879|110.786 +639050.045|220073.349|110.728 +639054.943|220068.866|110.713 +639059.796|220064.431|111.142 +639064.740|220059.901|110.746 +639069.687|220055.366|110.347 +639074.652|220050.815|109.820 +639079.611|220046.265|108.966 +639084.570|220041.720|108.561 +639089.422|220037.279|108.701 +639094.281|220032.841|109.237 +639099.088|220028.443|109.378 +639104.047|220023.898|109.076 +639108.908|220019.445|108.820 +639113.828|220014.940|108.518 +639118.695|220010.481|108.271 +639123.621|220005.970|107.982 +639128.498|220001.502|107.698 +639133.393|219997.015|107.323 +639138.322|219992.495|106.702 +639143.180|219988.042|106.281 +639148.087|219983.546|105.903 +639152.915|219979.126|105.778 +639157.756|219974.691|105.577 +639162.547|219970.302|105.406 +639167.442|219965.822|105.242 +639172.243|219961.426|105.074 +639177.040|219957.034|104.943 +639181.908|219952.575|104.678 +639186.687|219948.198|104.385 +639191.561|219943.736|104.144 +639196.371|219939.325|103.678 +639201.156|219934.942|103.416 +639205.990|219930.517|103.199 +639210.709|219926.198|103.105 +639215.476|219921.833|103.038 +639220.209|219917.499|102.879 +639224.992|219913.119|102.764 +639229.728|219908.784|102.657 +639234.477|219904.435|102.468 +639239.180|219900.128|102.291 +639243.978|219895.736|102.175 +639248.696|219891.417|101.953 +639253.359|219887.147|101.773 +639258.145|219882.760|101.483 +639262.830|219878.472|101.221 +639267.578|219874.122|100.913 +639272.281|219869.813|100.584 +639276.994|219865.494|100.234 +639281.715|219861.171|99.865 +639286.403|219856.874|99.414 +639291.139|219852.533|98.999 +639295.846|219848.217|98.478 +639300.503|219843.950|97.993 +639305.212|219839.634|97.527 +639309.927|219835.312|97.045 +639314.527|219831.097|96.674 +639319.202|219826.811|96.183 +639323.893|219822.514|95.643 +639328.535|219818.256|95.104 +639337.826|219809.742|94.098 +639347.125|219801.214|92.851 +639356.379|219792.732|91.696 +639360.930|219788.559|91.282 +639365.328|219784.542|91.967 +639374.182|219776.452|92.815 +639383.116|219768.271|92.513 +639409.649|219743.994|92.885 +639439.971|219716.260|93.973 +639441.092|219713.617|94.366 +639432.223|219721.710|94.296 +639427.724|219725.819|94.604 +639423.267|219729.885|94.479 +639414.447|219737.925|93.818 +639405.738|219745.853|92.388 +639401.236|219749.959|92.309 +639369.239|219779.168|92.882 +639360.396|219787.215|91.376 +639355.843|219791.369|91.205 +639351.127|219795.676|91.641 +639336.847|219808.743|94.144 +639332.187|219812.995|94.113 +639327.417|219817.356|94.720 +639322.656|219821.709|95.293 +639317.944|219826.019|95.918 +639313.155|219830.396|96.418 +639308.425|219834.718|96.914 +639303.658|219839.076|97.353 +639298.897|219843.426|97.783 +639294.130|219847.785|98.280 +639289.350|219852.152|98.874 +639284.556|219856.532|99.274 +639279.758|219860.918|99.740 +639275.022|219865.247|100.157 +639270.255|219869.605|100.496 +639265.442|219874.001|100.810 +639260.684|219878.350|101.142 +639255.932|219882.690|101.456 +639251.101|219887.104|101.657 +639246.361|219891.435|101.950 +639241.594|219895.788|102.120 +639236.775|219900.189|102.334 +639232.029|219904.523|102.422 +639227.217|219908.922|102.639 +639222.468|219913.256|102.785 +639217.673|219917.633|102.925 +639212.888|219922.007|103.053 +639208.097|219926.380|103.233 +639203.320|219930.742|103.318 +639198.489|219935.153|103.480 +639193.692|219939.539|103.779 +639188.830|219943.980|104.193 +639183.999|219948.393|104.437 +639179.165|219952.810|104.714 +639174.294|219957.260|104.952 +639169.487|219961.649|105.092 +639164.635|219966.081|105.235 +639159.825|219970.473|105.443 +639154.933|219974.941|105.568 +639150.081|219979.376|105.802 +639145.225|219983.811|106.074 +639140.315|219988.298|106.412 +639135.444|219992.748|106.860 +639130.464|219997.301|107.424 +639125.617|220001.730|107.753 +639120.680|220006.241|108.037 +639115.800|220010.697|108.283 +639110.868|220015.205|108.604 +639105.952|220019.698|108.820 +639101.078|220024.148|109.094 +639096.113|220028.684|109.362 +639091.297|220033.073|108.811 +639086.466|220037.477|108.402 +639081.534|220041.979|108.442 +639076.560|220046.527|108.890 +639071.607|220051.059|109.634 +639066.581|220055.656|110.188 +639061.615|220060.191|110.658 +639056.647|220064.736|111.207 +639051.749|220069.198|110.673 +639046.842|220073.678|110.710 +639041.883|220078.205|110.774 +639036.930|220082.728|110.826 +639031.967|220087.257|110.993 +639026.950|220091.845|111.267 +639016.980|220100.949|111.731 +639011.976|220105.521|111.953 +639007.026|220110.041|112.145 +639001.984|220114.647|112.319 +638997.040|220119.161|112.493 +638992.002|220123.763|112.697 +638987.006|220128.320|112.462 +638981.992|220132.895|112.426 +638977.042|220137.412|112.261 +638972.001|220142.009|112.005 +638966.981|220146.593|112.130 +638961.988|220151.150|111.972 +638956.938|220155.758|111.908 +638946.888|220164.930|111.871 +638941.844|220169.535|111.819 +638936.790|220174.147|111.914 +638931.740|220178.758|112.005 +638926.692|220183.367|112.093 +638921.617|220188.006|112.572 +638916.512|220192.673|112.877 +638911.443|220197.306|113.380 +638906.350|220201.957|113.529 +638901.242|220206.629|113.965 +638896.215|220211.217|113.922 +638891.140|220215.853|113.919 +638886.066|220220.486|113.925 +638880.991|220225.122|114.002 +638875.836|220229.837|114.614 +638870.801|220234.436|114.870 +638865.699|220239.094|114.687 +638860.590|220243.757|114.617 +638855.534|220248.372|114.459 +638850.416|220253.047|114.623 +638845.314|220257.705|114.492 +638840.275|220262.301|114.133 +638824.941|220276.295|113.511 +638819.832|220280.961|113.654 +638809.579|220290.325|113.794 +638799.298|220299.728|114.776 +638794.168|220304.422|115.669 +638768.486|220327.913|118.604 +638742.824|220351.352|119.259 +638732.614|220360.679|119.582 +638727.490|220365.357|119.570 +638722.415|220369.987|119.479 +638717.246|220374.709|119.457 +638712.122|220379.387|119.509 +638707.050|220384.020|119.494 +638701.923|220388.708|119.970 +638696.797|220393.393|120.396 +638691.676|220398.075|120.835 +638686.555|220402.753|121.021 +638681.438|220407.426|121.155 +638676.320|220412.102|121.305 +638671.202|220416.771|121.213 +638666.088|220421.438|120.951 +638660.976|220426.101|120.762 +638655.862|220430.774|120.631 +638650.744|220435.443|120.570 +638645.627|220440.113|120.488 +638640.512|220444.785|120.475 +638635.394|220449.458|120.527 +638630.280|220454.131|120.625 +638625.162|220458.800|120.652 +638620.048|220463.473|120.747 +638614.979|220468.100|120.792 +638609.861|220472.772|120.704 +638604.744|220477.445|120.671 +638599.675|220482.072|120.704 +638589.495|220491.371|120.902 +638584.380|220496.041|120.969 +638579.314|220500.671|121.137 +638574.248|220505.297|121.305 +638569.134|220509.967|121.481 +638564.111|220514.554|121.433 +638559.002|220519.221|121.841 +638553.943|220523.845|122.240 +638548.883|220528.471|122.597 +638543.826|220533.092|123.027 +638538.824|220537.670|123.633 +638533.771|220542.291|124.157 +638528.714|220546.912|124.557 +638523.709|220551.487|125.035 +638513.639|220560.689|125.630 +638508.631|220565.267|126.032 +638503.580|220569.885|126.523 +638498.573|220574.460|126.943 +638493.568|220579.035|127.367 +638488.560|220583.613|127.702 +638483.589|220588.151|127.873 +638473.567|220597.311|128.492 +638463.597|220606.424|129.171 +638458.628|220610.963|129.397 +638448.637|220620.088|129.751 +638443.715|220624.584|130.007 +638438.728|220629.135|129.970 +638433.802|220633.634|130.165 +638428.831|220638.175|130.418 +638423.842|220642.732|130.388 +638418.907|220647.237|130.485 +638413.914|220651.794|130.442 +638409.013|220656.268|130.366 +638404.054|220660.795|130.122 +638399.095|220665.318|129.973 +638394.160|220669.823|130.177 +638374.354|220687.888|128.943 +638359.483|220701.452|127.836 +638354.487|220706.003|127.492 +638349.574|220710.492|127.532 +638344.645|220714.991|127.434 +638329.942|220728.408|127.141 +638325.013|220732.907|127.141 +638320.103|220737.382|126.852 +638305.411|220750.790|126.495 +638300.528|220755.249|126.590 +638295.661|220759.696|126.864 +638290.793|220764.137|126.629 +638280.991|220773.077|126.099 +638271.216|220781.989|125.499 +638266.394|220786.391|125.392 +638261.535|220790.826|125.419 +638246.957|220804.127|124.694 +638242.113|220808.544|124.523 +638237.240|220812.994|124.520 +638217.940|220830.605|124.359 +638203.769|220843.562|126.038 +638194.077|220852.401|125.221 +638189.331|220856.739|125.660 +638184.524|220861.125|125.642 +638179.791|220865.447|125.819 +638175.011|220869.812|126.038 +638160.811|220882.778|126.383 +638156.099|220887.082|126.794 +638151.350|220891.413|126.611 +638141.925|220900.014|126.834 +638137.207|220904.321|126.916 +638127.831|220912.877|127.245 +638123.174|220917.132|127.465 +638118.507|220921.390|127.654 +638113.838|220925.651|127.833 +638109.232|220929.860|128.117 +638095.245|220942.628|128.592 +638076.829|220959.444|129.824 +638072.211|220963.660|129.836 +638067.661|220967.817|130.299 +638063.025|220972.048|130.552 +638058.526|220976.160|131.052 +638053.990|220980.308|131.625 +638049.385|220984.508|131.811 +638026.534|221005.362|132.192 +638021.962|221009.532|132.076 +638017.387|221013.702|131.976 +638012.803|221017.884|131.832 +638008.276|221022.011|131.759 +638003.689|221026.196|131.628 +637994.557|221034.520|131.134 +637990.052|221038.625|130.976 +637985.544|221042.737|130.827 +637976.364|221051.101|129.958 +637971.862|221055.203|129.623 +637962.754|221063.500|128.739 +637958.265|221067.594|128.537 +637953.708|221071.742|128.007 +637949.218|221075.835|127.858 +637940.266|221083.998|127.477 +637931.348|221092.127|127.099 +637922.326|221100.338|125.764 +637917.891|221104.383|125.767 +637900.255|221120.461|124.953 +637895.842|221124.482|124.657 +637891.559|221128.395|125.011 +637882.948|221136.250|125.047 +637874.512|221143.955|125.980 +637870.269|221147.829|126.096 +637865.998|221151.722|126.114 +637853.380|221163.240|126.651 +637849.177|221167.074|126.791 +637836.591|221178.556|126.943 +637832.406|221182.372|126.751 +637828.197|221186.210|126.715 +637824.037|221190.002|126.672 +637819.925|221193.754|126.626 +637815.722|221197.582|126.425 +637811.598|221201.346|126.355 +637807.495|221205.089|126.392 +637803.228|221208.969|125.745 +637795.218|221216.284|126.294 +637791.109|221220.027|126.148 +637787.058|221223.725|126.032 +637778.957|221231.110|125.861 +637774.869|221234.835|125.645 +637770.873|221238.480|125.599 +637766.957|221242.052|125.694 +637754.993|221252.958|125.374 +637743.392|221263.547|125.785 +637731.691|221274.209|125.285 +637727.872|221277.693|125.258 +637723.925|221281.286|124.727 +637719.965|221284.889|124.176 +637716.165|221288.355|124.054 +637712.348|221291.832|123.880 +637704.939|221298.593|124.039 +637701.333|221301.885|124.520 +637697.611|221305.277|124.566 +637693.957|221308.615|124.660 +637690.250|221311.992|124.584 +637675.209|221325.680|122.539 +637671.530|221329.033|122.426 +637667.991|221332.261|122.448 +637664.434|221335.504|122.408 +637660.886|221338.744|122.609 +637657.366|221341.951|122.530 +637650.383|221348.318|122.621 +637646.859|221351.528|122.359 +637864.801|221150.405|126.108 +637868.998|221146.561|126.026 +637881.531|221135.076|124.880 +637890.062|221127.267|124.770 +637894.360|221123.336|124.764 +637916.190|221103.368|125.459 +637920.628|221099.311|125.761 +637942.985|221078.880|127.650 +637947.472|221074.775|127.818 +637970.073|221054.118|129.531 +637974.629|221049.955|129.924 +637979.150|221045.822|130.135 +637983.746|221041.625|130.784 +637988.281|221037.476|130.857 +637992.860|221033.291|131.180 +637997.407|221029.131|131.360 +638002.010|221024.925|131.567 +638006.600|221020.727|131.759 +638011.181|221016.539|131.890 +638015.744|221012.364|131.954 +638020.356|221008.145|132.021 +638024.989|221003.909|132.244 +638034.136|220995.536|132.043 +638038.772|220991.296|132.034 +638047.998|220982.853|131.793 +638057.209|220974.419|131.229 +638061.751|220970.256|130.720 +638066.417|220965.982|130.388 +638071.026|220961.761|130.028 +638075.686|220957.500|129.991 +638089.628|220944.728|128.809 +638094.288|220940.461|128.519 +638103.755|220931.799|128.312 +638108.470|220927.483|128.132 +638113.192|220923.161|127.992 +638117.874|220918.872|127.596 +638122.622|220914.526|127.349 +638136.905|220901.456|126.934 +638141.654|220897.109|126.751 +638151.219|220888.359|126.578 +638165.584|220875.213|126.017 +638170.439|220870.769|126.008 +638175.228|220866.389|125.880 +638180.062|220861.963|125.752 +638184.914|220857.525|125.791 +638233.500|220813.064|124.072 +638243.400|220804.014|124.648 +638248.340|220799.497|124.895 +638268.067|220781.462|125.337 +638277.909|220772.458|125.279 +638292.823|220758.837|126.636 +638297.736|220754.341|126.367 +638302.717|220749.784|126.349 +638307.627|220745.288|126.111 +638317.588|220736.187|126.666 +638322.587|220731.618|126.949 +638342.509|220713.406|127.455 +638347.519|220708.822|127.431 +638352.491|220704.277|127.529 +638357.508|220699.690|127.660 +638362.564|220695.072|128.297 +638372.559|220685.941|128.763 +638377.554|220681.369|128.702 +638397.662|220662.995|129.815 +638402.673|220658.414|130.122 +638407.675|220653.845|130.305 +638412.719|220649.233|130.458 +638417.703|220644.677|130.449 +638422.750|220640.062|130.732 +638427.716|220635.520|130.455 +638432.736|220630.927|130.327 +638437.756|220626.334|130.199 +638442.730|220621.783|130.171 +638452.798|220612.569|129.662 +638457.763|220608.027|129.458 +638462.822|220603.398|129.278 +638472.832|220594.235|128.605 +638477.883|220589.611|128.257 +638482.884|220585.033|127.897 +638487.944|220580.403|127.754 +638492.998|220575.780|127.425 +638497.993|220571.204|126.925 +638503.041|220566.581|126.489 +638508.088|220561.960|126.066 +638513.136|220557.336|125.648 +638518.193|220552.712|125.368 +638523.246|220548.085|125.108 +638528.294|220543.465|124.612 +638533.390|220538.798|124.188 +638538.434|220534.174|123.563 +638543.479|220529.553|122.963 +638548.532|220524.930|122.533 +638553.583|220520.303|122.064 +638558.640|220515.673|121.823 +638563.739|220511.003|121.268 +638568.802|220506.373|121.259 +638573.864|220501.743|121.158 +638578.973|220497.071|120.954 +638584.033|220492.441|120.796 +638589.095|220487.811|120.701 +638594.204|220483.138|120.643 +638599.266|220478.509|120.524 +638604.329|220473.879|120.448 +638609.441|220469.203|120.472 +638614.506|220464.573|120.741 +638619.615|220459.900|120.539 +638624.726|220455.228|120.533 +638629.789|220450.598|120.509 +638634.852|220445.965|120.372 +638639.960|220441.292|120.244 +638645.026|220436.659|120.232 +638650.138|220431.987|120.229 +638655.249|220427.314|120.387 +638660.312|220422.687|120.564 +638665.417|220418.021|120.722 +638670.529|220413.348|120.838 +638675.589|220408.724|121.036 +638680.703|220404.046|120.927 +638685.815|220399.373|120.875 +638690.832|220394.780|120.652 +638695.952|220390.092|120.140 +638701.073|220385.404|119.634 +638706.096|220380.808|119.412 +638711.214|220376.126|119.305 +638716.282|220371.490|119.235 +638721.351|220366.857|119.317 +638726.423|220362.218|119.308 +638741.642|220348.298|119.040 +638746.702|220343.683|119.689 +638756.864|220334.384|119.186 +638761.942|220329.735|119.031 +638772.079|220320.454|118.074 +638777.130|220315.830|117.568 +638792.348|220301.889|115.696 +638797.478|220297.186|114.605 +638807.601|220287.920|113.688 +638817.711|220278.669|113.282 +638822.758|220274.054|113.252 +638832.789|220264.889|113.700 +638837.828|220260.287|113.980 +638842.808|220255.739|114.443 +638847.856|220251.124|114.532 +638852.870|220246.543|114.431 +638857.878|220241.962|114.434 +638862.879|220237.393|114.578 +638867.872|220232.830|114.888 +638872.855|220228.270|114.535 +638877.897|220223.656|114.090 +638882.874|220219.102|113.934 +638887.846|220214.554|113.904 +638892.823|220210.007|113.843 +638897.794|220205.462|113.886 +638902.790|220200.890|113.581 +638907.789|220196.315|113.233 +638912.790|220191.737|112.923 +638917.753|220187.195|112.523 +638922.760|220182.611|112.200 +638927.710|220178.088|112.069 +638932.663|220173.552|111.862 +638937.620|220169.023|111.719 +638942.554|220164.512|111.840 +638947.550|220159.946|111.844 +638952.454|220155.459|111.776 +638957.404|220150.936|111.792 +638962.293|220146.468|111.962 +638967.264|220141.920|111.764 +638972.141|220137.467|112.164 +638977.097|220132.938|112.194 +638981.995|220128.460|112.337 +638986.903|220123.977|112.435 +638991.801|220119.502|112.642 +638996.739|220114.982|112.423 +639001.676|220110.465|112.228 +639006.565|220105.996|112.106 +639011.512|220101.470|111.883 +639016.414|220096.983|111.655 +639021.360|220092.460|111.502 +639026.268|220087.971|111.295 +639031.184|220083.475|111.027 +639036.027|220079.043|111.002 +639040.941|220074.553|110.832 +639045.833|220070.079|110.859 +639050.643|220065.687|111.228 +639055.541|220061.203|110.804 +639060.448|220056.713|110.350 +639065.422|220052.156|109.747 +639070.330|220047.658|108.890 +639075.240|220043.162|108.485 +639080.120|220038.700|108.393 +639085.000|220034.240|108.344 +639089.797|220029.854|108.573 +639094.601|220025.471|109.183 +639099.417|220021.070|109.311 +639104.300|220016.601|108.902 +639109.167|220012.148|108.640 +639114.038|220007.692|108.378 +639118.912|220003.233|108.134 +639123.743|219998.813|107.860 +639128.635|219994.336|107.521 +639133.503|219989.880|107.012 +639138.407|219985.390|106.638 +639143.268|219980.940|106.250 +639148.118|219976.505|105.988 +639152.961|219972.073|105.784 +639157.750|219967.693|105.653 +639162.602|219963.252|105.434 +639167.403|219958.863|105.281 +639172.258|219954.422|105.092 +639177.074|219950.015|104.858 +639181.893|219945.604|104.635 +639186.712|219941.194|104.425 +639191.494|219936.820|104.163 +639196.337|219932.388|103.852 +639201.120|219928.011|103.629 +639205.902|219923.634|103.446 +639210.678|219919.266|103.327 +639215.461|219914.893|103.187 +639220.203|219910.555|103.017 +639225.004|219906.163|102.803 +639229.743|219901.826|102.690 +639234.556|219897.424|102.456 +639239.320|219893.066|102.239 +639244.039|219888.747|102.011 +639248.815|219884.379|101.770 +639253.597|219880.002|101.514 +639258.291|219875.707|101.206 +639263.089|219871.315|100.910 +639267.850|219866.960|100.554 +639272.559|219862.647|100.212 +639277.344|219858.264|99.764 +639282.093|219853.917|99.255 +639286.857|219849.552|98.691 +639291.606|219845.206|98.249 +639296.367|219840.847|97.750 +639301.067|219836.544|97.332 +639305.791|219832.215|96.814 +639310.555|219827.854|96.387 +639315.277|219823.529|95.643 +639320.059|219819.146|94.894 +639329.438|219810.556|93.918 +639343.580|219797.596|91.702 +639361.573|219781.161|92.809 +639397.631|219748.188|92.534 +639410.691|219736.264|93.903 +639423.624|219724.456|95.256 +639428.111|219720.351|94.958 +639432.494|219716.342|94.939 +639441.104|219708.475|95.439 +639439.324|219708.369|95.601 +639430.659|219716.263|95.043 +639426.197|219720.332|95.144 +639417.373|219728.376|94.945 +639404.352|219740.224|93.178 +639395.494|219748.292|92.525 +639390.852|219752.531|93.159 +639359.043|219781.533|92.900 +639354.425|219785.745|93.053 +639340.764|219798.184|91.766 +639326.429|219811.288|94.095 +639321.726|219815.579|94.311 +639312.128|219824.348|95.637 +639307.288|219828.774|96.430 +639302.560|219833.087|96.887 +639297.735|219837.495|97.369 +639292.968|219841.850|97.838 +639288.158|219846.239|98.277 +639283.337|219850.644|98.819 +639278.475|219855.082|99.319 +639273.665|219859.474|99.853 +639268.822|219863.893|100.301 +639264.003|219868.289|100.642 +639259.245|219872.629|100.935 +639254.387|219877.058|101.255 +639249.543|219881.477|101.511 +639244.755|219885.842|101.764 +639239.872|219890.295|101.992 +639235.041|219894.700|102.255 +639230.222|219899.095|102.459 +639225.354|219903.533|102.672 +639220.548|219907.913|102.852 +639215.653|219912.378|102.983 +639210.849|219916.755|103.187 +639206.003|219921.174|103.367 +639201.117|219925.628|103.498 +639196.267|219930.047|103.751 +639191.360|219934.525|104.089 +639186.480|219938.975|104.278 +639181.600|219943.425|104.480 +639176.723|219947.869|104.687 +639171.850|219952.313|104.900 +639166.936|219956.793|105.068 +639162.066|219961.234|105.318 +639157.103|219965.758|105.528 +639152.245|219970.189|105.751 +639147.347|219974.652|105.906 +639142.391|219979.172|106.171 +639137.480|219983.649|106.485 +639132.558|219988.142|106.927 +639127.593|219992.672|107.351 +639122.627|219997.201|107.793 +639117.693|220001.703|108.043 +639112.764|220006.196|108.262 +639107.784|220010.734|108.521 +639102.864|220015.221|108.728 +639097.865|220019.784|109.231 +639092.976|220024.234|108.823 +639088.151|220028.623|108.308 +639083.235|220033.100|108.162 +639078.303|220037.593|108.177 +639073.314|220042.141|108.293 +639068.364|220046.655|108.530 +639063.362|220051.221|109.247 +639058.369|220055.781|109.954 +639053.352|220060.356|110.445 +639048.332|220064.940|111.030 +639043.394|220069.436|110.853 +639038.496|220073.895|110.774 +639033.534|220078.418|110.886 +639028.575|220082.938|110.984 +639023.619|220087.455|111.103 +639018.648|220091.988|111.365 +639013.637|220096.560|111.609 +639008.678|220101.080|111.834 +639003.731|220105.588|111.953 +638998.692|220110.181|112.054 +638993.736|220114.699|112.346 +638988.753|220119.240|112.423 +638983.794|220123.757|112.261 +638978.832|220128.277|112.170 +638973.866|220132.801|112.118 +638968.868|220137.351|111.929 +638963.930|220141.847|111.603 +638958.907|220146.425|111.734 +638953.908|220150.976|111.584 +638948.946|220155.499|111.642 +638943.914|220160.086|111.959 +638938.942|220164.610|111.557 +638933.889|220169.215|111.606 +638928.878|220173.781|111.743 +638923.864|220178.353|111.987 +638918.801|220182.971|112.258 +638913.796|220187.534|112.435 +638908.721|220192.164|112.950 +638903.717|220196.726|113.218 +638898.654|220201.341|113.642 +638893.612|220205.934|113.791 +638888.632|220210.470|113.785 +638883.603|220215.051|113.840 +638878.574|220219.632|113.898 +638873.474|220224.280|114.328 +638868.445|220228.865|114.471 +638863.404|220233.461|114.852 +638858.429|220237.981|114.066 +638853.367|220242.590|113.986 +638848.331|220247.180|114.367 +638843.272|220251.789|114.331 +638838.212|220256.394|114.288 +638833.177|220260.975|113.791 +638828.132|220265.566|113.502 +638812.974|220279.364|113.206 +638807.909|220283.979|113.459 +638802.794|220288.645|113.861 +638797.713|220293.281|114.568 +638792.595|220297.951|115.181 +638787.475|220302.623|115.867 +638767.096|220321.210|117.842 +638756.894|220330.516|118.955 +638751.807|220335.149|119.095 +638746.720|220339.782|119.226 +638741.636|220344.418|119.403 +638731.431|220353.708|119.299 +638726.356|220358.329|119.159 +638721.278|220362.949|119.055 +638716.203|220367.573|118.991 +638711.125|220372.197|119.019 +638705.998|220376.867|119.116 +638700.920|220381.494|119.381 +638695.839|220386.126|119.765 +638690.713|220390.802|120.268 +638685.638|220395.426|120.549 +638680.566|220400.047|120.597 +638675.445|220404.710|120.652 +638670.328|220409.371|120.546 +638665.256|220413.985|120.375 +638660.138|220418.646|120.213 +638655.024|220423.300|120.043 +638649.952|220427.915|119.899 +638644.834|220432.575|119.793 +638639.713|220437.239|119.814 +638634.645|220441.859|119.997 +638629.527|220446.523|120.235 +638624.409|220451.183|120.363 +638619.338|220455.801|120.475 +638614.220|220460.464|120.460 +638609.102|220465.125|120.469 +638604.027|220469.742|120.287 +638598.910|220474.403|120.253 +638593.792|220479.066|120.387 +638588.723|220483.684|120.485 +638583.655|220488.299|120.625 +638578.537|220492.962|120.738 +638573.468|220497.580|120.841 +638568.399|220502.198|120.945 +638563.340|220506.812|121.481 +638558.274|220511.427|121.701 +638553.211|220516.042|122.054 +638548.151|220520.656|122.448 +638543.092|220525.268|122.902 +638538.038|220529.880|123.450 +638532.985|220534.488|124.057 +638527.977|220539.054|124.554 +638522.923|220543.663|125.066 +638517.857|220548.277|125.285 +638512.798|220552.892|125.617 +638507.735|220557.504|125.898 +638502.727|220562.070|126.352 +638497.673|220566.681|126.800 +638492.620|220571.290|127.269 +638487.612|220575.856|127.711 +638482.592|220580.428|127.897 +638477.578|220584.997|128.150 +638472.561|220589.569|128.397 +638462.499|220598.743|129.296 +638457.522|220603.279|129.357 +638452.505|220607.848|129.656 +638447.540|220612.377|129.979 +638442.517|220616.952|130.159 +638437.490|220621.530|130.299 +638432.541|220626.035|130.125 +638427.523|220630.607|130.418 +638422.546|220635.142|130.628 +638417.553|220639.690|130.558 +638412.597|220644.198|130.385 +638407.590|220648.758|130.159 +638402.579|220653.318|129.933 +638397.659|220657.792|129.671 +638392.642|220662.355|129.427 +638372.815|220680.402|128.693 +638367.807|220684.962|128.696 +638357.898|220693.969|127.727 +638352.908|220698.511|127.419 +638347.989|220702.988|127.446 +638342.999|220707.530|127.224 +638288.903|220756.770|126.099 +638284.011|220761.217|125.703 +638279.131|220765.664|125.938 +638274.248|220770.105|125.663 +638269.262|220774.634|124.901 +638264.458|220779.011|124.968 +638254.717|220787.878|124.868 +638249.831|220792.325|124.715 +638244.991|220796.729|124.551 +638240.120|220801.164|124.563 +638215.919|220823.189|123.795 +638177.739|220857.979|125.919 +638172.920|220862.362|125.864 +638168.160|220866.700|125.867 +638163.402|220871.031|125.928 +638158.662|220875.350|126.154 +638149.170|220883.994|126.187 +638135.055|220896.860|126.751 +638116.258|220913.992|127.532 +638106.983|220922.448|128.022 +638102.332|220926.687|128.379 +638097.693|220930.915|128.483 +638088.351|220939.425|128.669 +638083.788|220943.589|128.989 +638065.375|220960.377|130.388 +638060.790|220964.556|130.662 +638056.252|220968.692|130.933 +638051.653|220972.886|131.134 +638042.585|220981.152|131.787 +638037.961|220985.368|131.890 +638033.383|220989.537|131.988 +638028.792|220993.719|132.030 +638019.639|221002.055|132.058 +638015.064|221006.219|131.954 +638010.532|221010.346|131.835 +638005.942|221014.525|131.686 +638001.400|221018.661|131.543 +637996.828|221022.818|131.259 +637992.274|221026.964|131.095 +637987.727|221031.106|130.985 +637983.188|221035.233|130.674 +637978.638|221039.375|130.305 +637974.096|221043.508|130.016 +637969.487|221047.693|129.394 +637964.940|221051.829|128.842 +637960.410|221055.947|128.428 +637942.424|221072.315|127.370 +637937.974|221076.366|127.196 +637928.989|221084.537|126.221 +637915.559|221096.751|125.060 +637897.826|221112.884|123.813 +637893.604|221116.731|124.212 +637876.371|221132.434|124.749 +637863.813|221143.885|125.959 +637838.527|221166.916|126.492 +637834.314|221170.750|126.404 +637830.084|221174.600|126.251 +637825.975|221178.346|126.428 +637821.854|221182.101|126.562 +637805.215|221197.253|126.355 +637801.097|221201.002|126.355 +637797.034|221204.705|126.373 +637792.834|221208.527|126.050 +637788.765|221212.237|126.069 +637784.708|221215.928|125.944 +637780.532|221219.726|125.553 +637776.561|221223.347|125.816 +637772.492|221227.053|125.672 +637768.420|221230.759|125.544 +637764.436|221234.390|125.581 +637756.337|221241.763|125.139 +637752.335|221245.405|124.923 +637744.520|221252.525|125.313 +637728.838|221266.808|125.172 +637717.073|221277.513|124.346 +637713.159|221281.076|124.209 +637709.444|221284.462|124.435 +637705.625|221287.940|124.273 +637701.729|221291.482|124.045 +637698.044|221294.841|124.221 +637694.539|221298.050|125.304 +637675.489|221315.372|123.213 +637671.743|221318.777|122.838 +637664.525|221325.354|123.161 +637657.295|221331.938|123.072 +637653.729|221335.184|123.033 +637650.084|221338.503|122.908 +637646.569|221341.707|123.072 +637639.404|221348.224|122.551 +637873.445|221132.742|124.916 +637877.663|221128.886|124.474 +637886.219|221121.068|124.218 +637890.544|221117.121|124.334 +637894.735|221113.289|123.804 +637907.869|221101.305|124.343 +637943.738|221068.599|127.334 +637948.136|221064.585|127.294 +637957.201|221056.322|128.141 +637966.382|221047.955|129.171 +637970.908|221043.828|129.665 +637975.474|221039.668|130.104 +637980.098|221035.455|130.610 +637984.660|221031.292|130.817 +637989.141|221027.204|130.854 +637993.695|221023.050|131.040 +637998.261|221018.883|131.326 +638002.863|221014.686|131.552 +638007.399|221010.550|131.695 +638011.958|221006.384|131.729 +638016.549|221002.199|131.945 +638025.702|220993.844|131.985 +638030.283|220989.659|131.930 +638034.873|220985.471|131.927 +638048.617|220972.913|131.275 +638053.210|220968.716|131.067 +638057.797|220964.522|130.830 +638071.635|220951.879|130.077 +638076.277|220947.633|129.629 +638080.859|220943.442|129.110 +638085.531|220939.175|128.873 +638099.561|220926.358|128.358 +638113.637|220913.496|127.647 +638118.361|220909.180|127.541 +638137.228|220891.940|126.428 +638141.953|220887.624|126.437 +638146.753|220883.238|126.282 +638151.484|220878.916|125.995 +638156.260|220874.554|126.084 +638161.073|220870.162|126.069 +638185.079|220848.238|125.553 +638199.560|220835.009|125.169 +638209.241|220826.161|124.401 +638214.072|220821.748|123.941 +638218.958|220817.285|123.993 +638228.644|220808.434|123.392 +638243.470|220794.913|124.407 +638248.459|220790.359|124.654 +638253.312|220785.930|124.542 +638263.190|220776.911|124.679 +638268.158|220772.379|124.822 +638273.130|220767.850|125.499 +638283.048|220758.800|125.736 +638287.980|220754.292|125.648 +638292.945|220749.766|125.880 +638297.904|220745.240|126.096 +638317.692|220727.177|126.197 +638327.665|220718.076|126.428 +638337.699|220708.923|126.959 +638342.637|220704.418|127.196 +638347.666|220699.827|127.394 +638352.625|220695.301|127.352 +638357.660|220690.708|127.669 +638367.740|220681.521|128.513 +638372.754|220676.946|128.675 +638382.852|220667.735|129.354 +638387.857|220663.169|129.491 +638392.843|220658.615|129.367 +638397.906|220653.997|129.653 +638413.024|220640.199|130.500 +638418.005|220635.648|130.427 +638423.089|220631.009|130.439 +638428.112|220626.419|130.342 +638433.083|220621.875|130.156 +638438.164|220617.235|130.220 +638448.204|220608.061|130.010 +638453.209|220603.486|129.613 +638458.226|220598.902|129.434 +638463.246|220594.314|129.391 +638473.289|220585.131|128.367 +638478.349|220580.507|128.135 +638483.357|220575.929|127.849 +638488.417|220571.302|127.660 +638493.464|220566.687|127.166 +638498.463|220562.115|126.663 +638503.510|220557.498|126.187 +638508.564|220552.877|125.800 +638513.621|220548.256|125.553 +638518.680|220543.632|125.304 +638523.783|220538.969|124.990 +638528.784|220534.394|124.450 +638533.878|220529.730|123.883 +638538.928|220525.113|123.359 +638543.982|220520.492|122.868 +638549.081|220515.828|122.329 +638554.141|220511.201|122.048 +638559.197|220506.581|121.670 +638564.306|220501.911|121.451 +638569.408|220497.245|120.863 +638574.422|220492.660|120.637 +638579.534|220487.991|120.567 +638584.648|220483.318|120.451 +638589.714|220478.691|120.384 +638594.777|220474.065|120.238 +638599.888|220469.395|120.091 +638604.957|220464.768|120.201 +638610.075|220460.099|120.436 +638615.137|220455.472|120.271 +638620.206|220450.845|120.341 +638625.318|220446.172|120.210 +638630.384|220441.545|119.921 +638635.498|220436.873|119.726 +638640.564|220432.243|119.512 +638645.678|220427.570|119.531 +638650.744|220422.946|119.717 +638655.956|220418.188|119.863 +638660.922|220413.656|119.973 +638666.036|220408.987|120.113 +638671.151|220404.317|120.265 +638681.285|220395.063|120.335 +638686.403|220390.391|120.244 +638691.523|220385.709|119.790 +638696.595|220381.070|119.473 +638701.722|220376.385|119.015 +638706.794|220371.752|118.930 +638711.866|220367.116|118.845 +638716.990|220362.440|118.833 +638722.061|220357.807|118.872 +638727.133|220353.178|118.964 +638732.254|220348.505|119.113 +638737.283|220343.906|118.915 +638742.398|220339.242|119.336 +638752.514|220330.001|118.991 +638757.604|220325.346|118.634 +638783.006|220302.114|116.135 +638788.124|220297.430|115.419 +638793.196|220292.787|114.672 +638798.268|220288.145|114.017 +638803.388|220283.461|113.425 +638808.390|220278.892|113.425 +638813.508|220274.213|113.041 +638823.560|220265.035|113.200 +638828.650|220260.390|113.489 +638833.625|220255.855|114.175 +638838.681|220251.240|114.218 +638843.735|220246.622|114.285 +638848.746|220242.044|114.279 +638853.787|220237.436|113.779 +638858.786|220232.873|114.059 +638863.812|220228.292|114.748 +638868.856|220223.680|114.306 +638873.840|220219.123|114.062 +638878.878|220214.518|113.803 +638883.904|220209.927|113.776 +638888.934|220205.334|113.703 +638893.917|220200.780|113.633 +638898.925|220196.202|113.209 +638903.915|220191.642|113.108 +638908.938|220187.046|112.548 +638913.955|220182.462|112.170 +638918.963|220177.884|111.914 +638923.919|220173.354|111.737 +638928.920|220168.785|111.636 +638933.883|220164.250|111.441 +638938.875|220159.690|111.502 +638943.776|220155.213|111.536 +638948.781|220150.644|111.514 +638953.743|220146.111|111.441 +638958.660|220141.618|111.368 +638963.592|220137.120|111.712 +638968.548|220132.593|111.783 +638973.495|220128.076|111.962 +638978.405|220123.596|112.066 +638983.315|220119.112|112.164 +638988.226|220114.625|112.279 +638993.206|220110.081|112.225 +638998.101|220105.606|112.026 +639003.045|220101.086|111.850 +639007.998|220096.563|111.655 +639012.948|220092.037|111.478 +639017.809|220087.596|111.255 +639022.766|220083.066|111.097 +639027.673|220078.583|110.960 +639032.577|220074.102|110.880 +639037.420|220069.676|110.923 +639042.349|220065.178|111.133 +639047.268|220060.679|110.545 +639052.234|220056.137|109.996 +639057.129|220051.657|109.244 +639062.124|220047.082|108.497 +639066.971|220042.653|108.259 +639071.896|220038.154|108.216 +639076.737|220033.731|108.073 +639081.610|220029.281|108.116 +639086.445|220024.865|108.079 +639091.218|220020.512|108.604 +639095.997|220016.153|109.064 +639100.825|220011.740|108.744 +639105.748|220007.238|108.469 +639110.566|220002.834|108.271 +639115.440|219998.384|108.076 +639120.274|219993.961|107.802 +639125.185|219989.471|107.360 +639130.052|219985.021|106.900 +639134.856|219980.629|106.586 +639139.708|219976.194|106.296 +639144.561|219971.759|106.049 +639149.404|219967.334|105.888 +639154.211|219962.938|105.644 +639159.024|219958.540|105.388 +639163.843|219954.136|105.120 +639168.652|219949.740|104.931 +639173.511|219945.303|104.787 +639178.284|219940.938|104.565 +639183.060|219936.573|104.345 +639187.888|219932.163|104.144 +639192.622|219927.834|103.919 +639197.465|219923.409|103.669 +639202.217|219919.065|103.382 +639206.947|219914.743|103.248 +639211.748|219910.357|103.032 +639216.503|219906.011|102.797 +639221.255|219901.667|102.599 +639226.022|219897.312|102.346 +639230.780|219892.962|102.160 +639235.495|219888.655|101.968 +639240.268|219884.291|101.730 +639244.999|219879.965|101.480 +639249.735|219875.637|101.233 +639254.469|219871.312|101.017 +639259.178|219867.005|100.660 +639263.942|219862.650|100.310 +639268.718|219858.285|99.917 +639273.461|219853.945|99.432 +639278.185|219849.623|98.804 +639283.004|219845.215|98.237 +639287.698|219840.920|97.826 +639292.465|219836.562|97.335 +639297.205|219832.225|96.719 +639301.987|219827.851|96.183 +639306.733|219823.504|95.582 +639311.418|219819.222|95.089 +639320.918|219810.529|93.997 +639325.606|219806.243|93.562 +639335.226|219797.428|91.434 +639353.233|219781.003|93.016 +639357.805|219776.827|93.083 +639366.913|219768.509|92.931 +639375.862|219760.346|93.665 +639398.502|219739.657|92.867 +639402.824|219735.719|93.580 +639424.639|219715.824|95.595 +639429.004|219711.840|95.927 +639437.636|219703.964|96.597 +639436.700|219702.623|96.850 +639432.433|219706.506|96.485 +639428.169|219710.387|96.128 +639423.901|219714.267|95.787 +639415.187|219722.201|95.540 +639410.944|219726.053|94.622 +639406.644|219729.961|93.985 +639402.279|219733.935|93.699 +639397.948|219737.867|92.982 +639393.577|219741.848|92.751 +639384.664|219749.965|92.653 +639366.562|219766.455|92.797 +639362.015|219770.597|92.790 +639357.373|219774.831|93.043 +639329.886|219799.858|92.434 +639325.064|219804.265|93.543 +639320.400|219808.514|93.796 +639315.612|219812.885|94.217 +639306.084|219821.578|95.418 +639301.301|219825.940|95.884 +639296.507|219830.313|96.439 +639291.719|219834.684|97.003 +639286.979|219839.009|97.597 +639282.111|219843.450|98.082 +639277.317|219847.827|98.761 +639272.495|219852.229|99.338 +639267.630|219856.663|99.874 +639262.857|219861.013|100.212 +639258.023|219865.417|100.621 +639253.207|219869.806|100.962 +639248.406|219874.183|101.240 +639243.563|219878.594|101.477 +639238.726|219882.998|101.703 +639233.941|219887.360|101.956 +639229.067|219891.798|102.151 +639224.254|219896.184|102.312 +639219.447|219900.561|102.462 +639214.522|219905.047|102.736 +639209.654|219909.482|102.998 +639204.786|219913.920|103.300 +639199.885|219918.383|103.504 +639195.033|219922.802|103.742 +639190.086|219927.310|103.980 +639185.249|219931.718|104.178 +639180.305|219936.219|104.434 +639175.428|219940.663|104.617 +639170.554|219945.101|104.787 +639165.626|219949.591|105.037 +639160.764|219954.020|105.187 +639155.793|219958.549|105.434 +639150.910|219962.996|105.787 +639145.954|219967.510|105.979 +639141.053|219971.976|106.153 +639136.093|219976.496|106.436 +639131.171|219980.979|106.823 +639126.215|219985.497|107.137 +639121.237|219990.032|107.643 +639116.284|219994.546|107.997 +639111.350|219999.042|108.232 +639106.421|220003.535|108.451 +639101.456|220008.052|108.573 +639096.503|220012.569|109.039 +639091.599|220017.028|108.738 +639086.731|220021.451|108.125 +639081.796|220025.941|108.094 +639076.865|220030.433|108.085 +639071.872|220034.978|108.171 +639066.928|220039.480|108.314 +639061.960|220044.003|108.265 +639056.995|220048.526|108.643 +639051.935|220053.144|109.469 +639046.894|220057.743|110.195 +639041.877|220062.319|110.719 +639036.850|220066.903|111.365 +639031.894|220071.405|110.890 +639026.935|220075.922|110.963 +639021.973|220080.439|111.091 +639016.965|220085.002|111.207 +639012.000|220089.522|111.420 +639006.992|220094.082|111.588 +639002.027|220098.605|111.850 +638996.986|220103.198|111.941 +638992.017|220107.725|112.313 +638986.994|220112.297|112.261 +638982.041|220116.802|111.969 +638977.067|220121.328|111.969 +638972.102|220125.845|111.856 +638967.149|220130.353|111.655 +638962.138|220134.913|111.578 +638957.172|220139.430|111.520 +638952.180|220143.972|111.255 +638947.160|220148.544|111.389 +638942.152|220153.103|111.359 +638937.144|220157.660|111.344 +638932.182|220162.177|111.402 +638927.119|220166.786|111.551 +638922.114|220171.343|111.603 +638917.100|220175.912|111.804 +638912.031|220180.529|112.124 +638907.021|220185.095|112.374 +638901.933|220189.734|113.044 +638896.935|220194.282|113.148 +638891.829|220198.930|113.441 +638886.843|220203.466|113.438 +638881.789|220208.068|113.767 +638876.711|220212.689|113.745 +638871.719|220217.233|113.907 +638866.619|220221.879|114.322 +638861.575|220226.469|114.623 +638856.604|220230.983|113.715 +638851.544|220235.579|113.468 +638846.505|220240.167|113.758 +638841.418|220244.803|114.139 +638836.353|220249.408|114.111 +638831.336|220253.974|114.108 +638821.256|220263.127|113.078 +638816.199|220267.727|112.959 +638806.074|220276.941|113.060 +638801.005|220281.555|113.325 +638795.872|220286.231|113.974 +638790.794|220290.858|114.565 +638760.192|220318.750|118.168 +638755.093|220323.392|118.476 +638739.816|220337.297|119.025 +638734.781|220341.876|118.900 +638729.648|220346.545|118.869 +638724.567|220351.166|118.711 +638719.483|220355.787|118.610 +638714.353|220360.453|118.519 +638709.272|220365.077|118.543 +638704.185|220369.704|118.705 +638699.101|220374.331|118.860 +638693.968|220379.009|119.339 +638688.887|220383.636|119.564 +638683.754|220388.309|119.960 +638678.676|220392.930|120.043 +638673.598|220397.547|120.012 +638668.474|220402.208|119.924 +638663.400|220406.822|119.732 +638658.273|220411.483|119.595 +638652.722|220416.530|119.424 +638648.077|220420.755|119.281 +638642.999|220425.373|119.189 +638637.872|220430.036|119.235 +638632.798|220434.657|119.537 +638627.674|220439.320|119.790 +638622.550|220443.984|120.040 +638617.475|220448.601|120.134 +638612.352|220453.265|120.122 +638607.231|220457.925|120.256 +638602.153|220462.543|120.079 +638597.026|220467.203|119.960 +638591.902|220471.867|120.110 +638586.828|220476.485|120.204 +638581.753|220481.102|120.271 +638576.629|220485.763|120.290 +638571.508|220490.423|120.536 +638566.449|220495.038|121.317 +638561.331|220499.695|121.594 +638556.265|220504.310|121.939 +638551.193|220508.925|122.118 +638546.128|220513.539|122.539 +638541.065|220518.151|122.990 +638535.953|220522.805|123.456 +638530.897|220527.414|124.063 +638525.886|220531.980|124.569 +638520.826|220536.588|125.084 +638515.760|220541.200|125.428 +638510.694|220545.812|125.669 +638505.629|220550.423|125.983 +638500.612|220554.989|126.322 +638495.555|220559.598|126.818 +638490.498|220564.203|127.352 +638485.484|220568.769|127.708 +638480.467|220573.335|128.007 +638475.399|220577.947|128.272 +638470.385|220582.513|128.653 +638460.357|220591.644|129.397 +638455.327|220596.216|129.516 +638450.301|220600.791|129.659 +638445.287|220605.357|130.052 +638430.282|220619.006|130.281 +638425.250|220623.584|130.436 +638420.260|220628.123|130.470 +638415.261|220632.668|130.421 +638410.272|220637.206|130.528 +638400.259|220646.301|129.562 +638395.263|220650.843|129.662 +638390.289|220655.363|129.370 +638385.287|220659.914|129.409 +638375.339|220668.954|129.013 +638365.375|220678.010|128.504 +638360.382|220682.545|128.187 +638355.405|220687.062|127.465 +638350.421|220691.592|127.291 +638345.535|220696.033|127.196 +638315.790|220723.065|125.968 +638305.945|220732.017|125.840 +638301.080|220736.446|126.157 +638276.449|220758.834|125.422 +638271.548|220763.284|125.002 +638266.604|220767.773|124.709 +638261.745|220772.193|124.776 +638256.853|220776.640|124.535 +638251.977|220781.072|124.484 +638227.571|220803.258|123.889 +638222.573|220807.782|122.490 +638208.277|220820.809|124.453 +638179.504|220846.982|125.215 +638150.883|220873.018|126.273 +638141.325|220881.711|126.233 +638136.594|220886.015|126.236 +638122.455|220898.883|127.105 +638113.097|220907.403|127.644 +638108.394|220911.685|127.949 +638103.728|220915.931|128.175 +638089.722|220928.672|128.611 +638085.043|220932.930|128.824 +638080.362|220937.191|129.040 +638075.823|220941.327|129.549 +638071.160|220945.573|129.897 +638057.374|220958.121|130.784 +638052.792|220962.291|131.107 +638048.233|220966.439|131.253 +638043.591|220970.664|131.525 +638039.009|220974.831|131.579 +638034.459|220978.973|131.829 +638029.871|220983.146|131.878 +638025.296|220987.309|132.012 +638020.746|220991.445|132.027 +638016.143|220995.630|132.049 +638011.507|220999.846|131.890 +638006.999|221003.945|131.896 +638002.400|221008.124|131.710 +637997.837|221012.269|131.457 +637993.222|221016.463|131.217 +637988.662|221020.606|131.031 +637984.145|221024.714|130.805 +637979.616|221028.832|130.833 +637965.879|221041.305|129.357 +637956.713|221049.626|128.473 +637947.655|221057.846|127.440 +637934.231|221070.044|126.782 +637911.972|221090.262|125.191 +637894.229|221106.370|123.411 +637889.941|221110.275|123.731 +637881.391|221118.053|124.057 +637864.523|221133.406|125.496 +637860.357|221137.198|125.761 +637856.123|221141.051|125.971 +637822.674|221171.467|126.495 +637818.511|221175.249|126.447 +637814.380|221179.007|126.556 +637810.269|221182.744|126.535 +637802.006|221190.258|126.361 +637797.982|221193.921|126.532 +637793.874|221197.655|126.355 +637789.811|221201.349|126.392 +637785.741|221205.043|126.203 +637781.721|221208.701|126.224 +637777.719|221212.343|126.334 +637773.653|221216.035|125.974 +637769.581|221219.735|125.828 +637765.579|221223.374|125.767 +637761.601|221226.992|125.819 +637757.553|221230.668|125.368 +637749.705|221237.809|125.770 +637741.710|221245.067|124.987 +637729.984|221255.729|124.987 +637726.101|221259.261|125.121 +637722.297|221262.721|125.151 +637710.654|221273.300|124.630 +637699.504|221283.447|125.331 +637688.284|221293.652|125.651 +637680.893|221300.370|125.581 +637676.842|221304.034|124.200 +637673.063|221307.466|123.880 +637669.353|221310.834|123.642 +637662.053|221317.472|123.630 +637651.138|221327.390|123.237 +637629.955|221346.645|123.167 +637842.824|221150.432|126.312 +637851.322|221142.678|126.017 +637855.559|221138.810|125.840 +637859.753|221134.979|125.477 +637863.975|221131.123|125.252 +637872.460|221123.372|124.575 +637889.587|221107.730|123.353 +637898.414|221099.683|123.761 +637920.768|221079.313|125.389 +637929.748|221071.132|126.069 +637934.329|221066.963|126.657 +637956.936|221046.358|128.111 +637961.584|221042.128|128.665 +637966.196|221037.930|129.306 +637975.379|221029.564|130.199 +637980.006|221025.351|130.735 +637984.590|221021.169|130.784 +637989.132|221017.030|130.887 +637993.701|221012.867|131.168 +637998.315|221008.660|131.436 +638002.982|221004.408|131.756 +638007.542|221000.248|131.759 +638012.092|220996.097|131.729 +638016.783|220991.820|131.963 +638021.331|220987.672|131.960 +638025.943|220983.469|132.046 +638030.539|220979.275|131.768 +638035.151|220975.068|131.598 +638039.723|220970.899|131.512 +638044.395|220966.638|131.448 +638048.982|220962.453|131.177 +638053.579|220958.259|130.973 +638058.194|220954.049|130.592 +638067.444|220945.609|130.013 +638072.065|220941.391|129.732 +638076.722|220937.142|129.348 +638081.313|220932.951|128.891 +638085.973|220928.699|128.571 +638104.770|220911.560|128.184 +638109.501|220907.241|127.748 +638114.124|220903.020|127.279 +638123.628|220894.357|127.123 +638133.107|220885.710|126.523 +638137.832|220881.397|126.136 +638142.575|220877.072|125.892 +638180.958|220842.075|124.993 +638185.710|220837.737|124.590 +638205.107|220820.053|124.374 +638209.945|220815.639|123.953 +638229.479|220797.836|124.048 +638234.362|220793.386|124.115 +638249.072|220779.981|124.127 +638258.923|220771.004|124.377 +638263.861|220766.509|124.670 +638268.841|220761.973|124.904 +638273.813|220757.447|125.081 +638278.711|220752.988|125.541 +638288.620|220743.959|125.724 +638293.603|220739.418|125.645 +638313.409|220721.368|125.733 +638318.466|220716.762|126.062 +638328.427|220707.694|126.684 +638343.423|220694.033|127.102 +638348.400|220689.498|127.245 +638353.426|220684.919|127.404 +638373.522|220666.625|128.833 +638383.565|220657.481|129.385 +638388.610|220652.882|129.360 +638413.743|220629.997|130.400 +638418.791|220625.401|130.580 +638423.811|220620.823|130.321 +638428.843|220616.236|130.333 +638433.879|220611.652|130.351 +638443.967|220602.456|129.982 +638448.981|220597.884|129.671 +638454.050|220593.260|129.568 +638459.073|220588.685|129.434 +638474.195|220574.893|128.336 +638479.205|220570.324|128.050 +638484.265|220565.709|127.730 +638489.322|220561.097|127.385 +638494.372|220556.489|126.852 +638499.423|220551.880|126.395 +638504.434|220547.311|126.081 +638509.494|220542.700|125.709 +638519.662|220533.427|125.124 +638524.712|220528.816|124.551 +638529.769|220524.204|124.136 +638534.819|220519.593|123.539 +638539.876|220514.981|123.027 +638544.985|220510.324|122.673 +638549.995|220505.752|122.252 +638555.107|220501.091|122.051 +638560.218|220496.431|121.682 +638565.281|220491.813|121.420 +638570.341|220487.195|120.920 +638575.446|220482.535|120.235 +638580.512|220477.917|119.906 +638585.633|220473.254|120.000 +638590.702|220468.633|119.896 +638595.819|220463.970|119.875 +638600.891|220459.352|119.933 +638606.012|220454.688|120.098 +638611.084|220450.068|120.070 +638616.201|220445.404|120.000 +638621.319|220440.741|119.896 +638626.388|220436.120|119.595 +638631.505|220431.453|119.369 +638636.623|220426.787|119.061 +638641.698|220422.166|119.009 +638646.770|220417.542|118.964 +638651.884|220412.888|119.153 +638656.956|220408.267|119.250 +638662.074|220403.607|119.409 +638667.194|220398.943|119.564 +638672.217|220394.371|119.707 +638677.335|220389.711|119.890 +638682.459|220385.041|119.710 +638687.534|220380.411|119.442 +638692.612|220375.782|119.113 +638697.741|220371.106|118.711 +638702.774|220366.519|118.449 +638707.900|220361.846|118.363 +638712.978|220357.219|118.324 +638718.056|220352.595|118.369 +638723.180|220347.929|118.497 +638728.258|220343.305|118.577 +638733.336|220338.675|118.567 +638738.411|220334.054|118.802 +638748.585|220324.785|118.467 +638753.669|220320.152|118.409 +638779.093|220296.960|115.986 +638784.213|220292.281|115.212 +638789.291|220287.642|114.322 +638794.412|220282.967|113.724 +638799.487|220278.337|113.179 +638804.553|220273.716|112.849 +638809.664|220269.056|112.627 +638814.654|220264.514|113.032 +638819.707|220259.915|113.139 +638824.731|220255.349|113.886 +638829.729|220250.795|114.078 +638834.792|220246.183|114.044 +638839.861|220241.560|113.867 +638844.893|220236.972|113.553 +638849.971|220232.342|113.316 +638854.976|220227.786|113.526 +638859.947|220223.268|114.383 +638864.967|220218.693|114.361 +638870.018|220214.082|113.861 +638875.053|220209.495|113.700 +638880.040|220204.947|113.523 +638885.069|220200.366|113.517 +638890.065|220195.812|113.291 +638895.112|220191.210|113.032 +638900.120|220186.644|112.740 +638905.137|220182.062|112.270 +638910.200|220177.451|111.965 +638915.165|220172.922|111.658 +638920.176|220168.353|111.432 +638925.174|220163.796|111.386 +638930.128|220159.282|111.344 +638935.132|220154.725|111.322 +638940.085|220150.211|111.331 +638945.090|220145.651|111.341 +638949.997|220141.180|111.359 +638954.993|220136.629|111.505 +638959.903|220132.157|111.551 +638964.860|220127.643|111.652 +638969.809|220123.135|111.844 +638974.717|220118.667|111.990 +638984.544|220109.718|112.194 +638989.448|220105.253|112.426 +638994.419|220100.717|111.984 +638999.363|220096.212|111.853 +639004.267|220091.741|111.642 +639009.223|220087.224|111.444 +639014.128|220082.749|111.283 +639019.035|220078.281|111.155 +639023.942|220073.806|111.033 +639028.828|220069.356|111.146 +639033.720|220064.900|111.234 +639038.640|220060.410|110.600 +639043.617|220055.869|109.945 +639048.567|220051.346|109.103 +639053.511|220046.832|108.387 +639058.382|220042.394|108.357 +639063.267|220037.938|108.198 +639068.150|220033.490|108.131 +639072.978|220029.089|108.107 +639077.849|220024.654|108.192 +639082.686|220020.247|108.158 +639087.511|220015.855|108.244 +639092.266|220011.533|108.945 +639097.097|220007.128|109.003 +639101.995|220002.660|108.543 +639106.820|219998.265|108.329 +639111.652|219993.857|108.073 +639116.470|219989.465|107.936 +639121.338|219985.024|107.457 +639126.203|219980.586|107.019 +639131.006|219976.206|106.717 +639135.859|219971.781|106.442 +639140.659|219967.407|106.223 +639145.466|219963.024|105.973 +639150.273|219958.638|105.741 +639155.049|219954.279|105.409 +639159.868|219949.881|105.144 +639164.687|219945.485|104.906 +639169.454|219941.136|104.705 +639174.224|219936.783|104.510 +639178.997|219932.431|104.339 +639183.770|219928.078|104.178 +639188.510|219923.753|103.931 +639193.253|219919.425|103.681 +639198.038|219915.060|103.510 +639202.793|219910.720|103.233 +639207.527|219906.401|102.803 +639212.330|219902.018|102.587 +639217.052|219897.708|102.273 +639221.758|219893.416|102.108 +639226.503|219889.088|102.008 +639231.210|219884.797|101.877 +639235.876|219880.538|101.703 +639240.616|219876.216|101.413 +639245.304|219871.937|101.139 +639249.991|219867.661|100.895 +639254.691|219863.372|100.627 +639259.398|219859.077|100.325 +639264.140|219854.746|99.819 +639268.865|219850.433|99.164 +639273.665|219846.044|98.377 +639278.368|219841.747|97.603 +639283.068|219837.455|97.164 +639287.781|219833.154|96.698 +639292.499|219828.844|96.213 +639297.114|219824.632|95.784 +639311.235|219811.736|94.193 +639315.868|219807.508|93.748 +639320.406|219803.372|93.866 +639343.254|219782.536|93.293 +639352.362|219774.227|93.050 +639365.956|219761.831|92.650 +639379.434|219749.544|92.769 +639392.745|219737.413|93.104 +639401.368|219729.565|94.138 +639405.796|219725.532|94.354 +639422.963|219709.911|96.512 +639431.540|219702.102|97.195 +639433.454|219697.747|97.765 +639429.205|219701.605|97.305 +639412.002|219717.217|95.570 +639407.692|219721.128|94.961 +639403.468|219724.950|93.924 +639394.781|219732.835|93.092 +639381.540|219744.863|92.480 +639372.378|219753.199|93.162 +639367.977|219757.198|92.888 +639363.511|219761.252|92.672 +639358.915|219765.434|92.900 +639354.486|219769.457|92.544 +639349.899|219773.630|92.775 +639345.336|219777.781|92.888 +639340.703|219781.996|93.388 +639308.473|219811.303|94.007 +639294.398|219824.120|95.482 +639289.615|219828.472|95.966 +639284.873|219832.791|96.533 +639280.145|219837.095|97.049 +639275.387|219841.426|97.469 +639270.575|219845.813|98.240 +639265.811|219850.156|99.075 +639261.040|219854.499|99.652 +639256.228|219858.882|100.228 +639251.494|219863.192|100.648 +639246.751|219867.505|100.828 +639241.999|219871.827|101.105 +639237.263|219876.134|101.307 +639232.517|219880.456|101.608 +639227.698|219884.836|101.736 +639222.989|219889.119|101.837 +639218.231|219893.444|101.947 +639213.421|219897.821|102.102 +639208.636|219902.173|102.447 +639203.805|219906.572|102.797 +639198.971|219910.970|103.181 +639194.164|219915.341|103.419 +639189.357|219919.715|103.684 +639184.511|219924.125|103.907 +639179.726|219928.478|104.080 +639174.837|219932.925|104.294 +639170.012|219937.311|104.431 +639165.187|219941.700|104.614 +639160.304|219946.144|104.882 +639155.421|219950.585|105.165 +639150.547|219955.017|105.394 +639145.710|219959.421|105.775 +639140.754|219963.929|105.952 +639135.886|219968.358|106.241 +639130.973|219972.829|106.534 +639126.056|219977.300|106.869 +639121.143|219981.772|107.226 +639116.178|219986.292|107.610 +639111.264|219990.764|108.024 +639106.339|219995.241|108.162 +639101.404|219999.731|108.393 +639096.454|220004.236|108.802 +639091.565|220008.677|108.716 +639086.697|220013.093|108.073 +639081.802|220017.543|108.091 +639076.804|220022.088|108.168 +639071.933|220026.517|108.034 +639066.946|220031.049|108.055 +639062.012|220035.536|108.091 +639057.074|220040.022|108.165 +639052.084|220044.561|108.296 +639047.095|220049.096|108.445 +639042.035|220053.711|109.320 +639036.985|220058.313|110.137 +639031.955|220062.892|110.774 +639026.890|220067.506|111.359 +639021.967|220071.975|111.033 +639016.956|220076.531|111.112 +639011.948|220081.085|111.207 +639006.931|220085.648|111.414 +639001.875|220090.247|111.584 +638996.915|220094.758|111.776 +638991.804|220099.407|112.026 +638986.805|220103.954|112.185 +638981.794|220108.505|111.956 +638971.748|220117.637|111.856 +638961.726|220126.738|111.530 +638956.663|220131.341|111.472 +638951.653|220135.894|111.368 +638946.593|220140.494|111.304 +638941.551|220145.069|110.999 +638936.525|220149.644|111.200 +638931.423|220154.280|111.130 +638926.360|220158.882|111.207 +638921.300|220163.482|111.249 +638911.169|220172.696|111.642 +638906.051|220177.353|111.935 +638900.922|220182.023|112.450 +638895.816|220186.668|112.682 +638890.705|220191.316|112.974 +638885.651|220195.919|113.233 +638880.552|220200.558|113.459 +638875.471|220205.176|113.404 +638870.377|220209.808|113.605 +638865.226|220214.496|113.995 +638860.136|220219.126|114.215 +638855.064|220223.726|113.304 +638849.959|220228.365|112.993 +638844.872|220232.995|113.258 +638839.742|220237.658|113.398 +638834.603|220242.337|113.822 +638829.531|220246.951|113.913 +638824.414|220251.603|113.941 +638819.311|220256.242|113.745 +638814.230|220260.847|113.011 +638809.125|220265.486|112.865 +638804.019|220270.129|112.773 +638798.908|220274.777|112.819 +638793.781|220279.443|113.236 +638788.648|220284.119|113.907 +638783.515|220288.798|114.733 +638778.334|220293.522|115.571 +638762.941|220307.534|117.040 +638757.824|220312.200|117.857 +638742.486|220326.151|118.348 +638732.260|220335.447|118.333 +638727.173|220340.071|118.284 +638722.086|220344.698|118.253 +638716.953|220349.361|118.189 +638711.869|220353.982|118.031 +638706.736|220358.649|117.979 +638701.600|220363.321|118.193 +638696.513|220367.948|118.421 +638691.377|220372.624|118.799 +638686.241|220377.296|119.150 +638681.157|220381.923|119.409 +638676.027|220386.587|119.549 +638670.949|220391.201|119.329 +638665.871|220395.819|119.171 +638655.615|220405.137|118.900 +638650.534|220409.755|118.811 +638645.413|220414.409|118.671 +638640.332|220419.030|118.702 +638635.251|220423.650|118.854 +638630.124|220428.314|119.098 +638625.046|220432.935|119.342 +638619.972|220437.552|119.680 +638614.894|220442.173|119.842 +638609.770|220446.834|119.945 +638604.738|220451.406|119.957 +638599.611|220456.066|119.823 +638594.530|220460.684|119.756 +638589.501|220465.256|119.808 +638584.374|220469.919|119.771 +638579.296|220474.534|119.930 +638574.273|220479.106|120.363 +638569.207|220483.721|121.012 +638564.138|220488.335|121.350 +638559.069|220492.950|121.722 +638553.997|220497.565|122.015 +638548.974|220502.134|122.271 +638543.906|220506.745|122.664 +638538.888|220511.314|123.085 +638533.871|220515.880|123.523 +638528.809|220520.489|124.069 +638523.792|220525.058|124.453 +638518.784|220529.621|125.066 +638513.718|220534.229|125.407 +638508.698|220538.798|125.685 +638503.681|220543.364|126.087 +638498.661|220547.933|126.370 +638493.693|220552.456|126.736 +638488.685|220557.019|127.263 +638483.674|220561.582|127.739 +638478.654|220566.148|128.035 +638473.634|220570.717|128.318 +638468.669|220575.237|128.751 +638453.749|220588.813|129.543 +638448.719|220593.388|129.662 +638443.748|220597.914|129.991 +638438.765|220602.447|130.074 +638428.840|220611.475|130.263 +638423.848|220616.013|130.253 +638418.867|220620.546|130.506 +638413.911|220625.051|130.360 +638408.915|220629.592|130.394 +638393.977|220643.168|129.876 +638384.019|220652.211|129.239 +638379.054|220656.725|129.159 +638374.080|220661.246|128.961 +638354.158|220679.339|127.602 +638349.159|220683.880|127.254 +638344.221|220688.370|127.087 +638339.311|220692.835|127.303 +638324.397|220706.374|125.907 +638319.447|220710.876|125.730 +638309.563|220719.856|125.127 +638289.891|220737.741|125.294 +638284.959|220742.219|125.026 +638280.082|220746.660|125.291 +638270.228|220755.609|124.432 +638265.303|220760.083|124.310 +638260.441|220764.503|124.368 +638255.518|220768.980|124.304 +638250.645|220773.409|124.295 +638245.719|220777.887|124.249 +638240.775|220782.367|123.185 +638201.962|220817.672|124.359 +638197.131|220822.068|124.508 +638192.288|220826.469|124.587 +638173.030|220843.980|124.776 +638163.383|220852.749|124.673 +638153.816|220861.454|124.859 +638139.511|220874.463|125.486 +638134.866|220878.693|126.126 +638125.457|220887.258|126.968 +638120.696|220891.586|127.178 +638106.556|220904.449|127.882 +638101.850|220908.732|128.199 +638097.187|220912.974|128.483 +638073.775|220934.265|129.522 +638069.108|220938.511|129.876 +638064.469|220942.732|130.107 +638059.824|220946.957|130.314 +638055.203|220951.160|130.689 +638041.381|220963.736|131.534 +638036.793|220967.906|131.567 +638032.173|220972.106|131.710 +638027.534|220976.324|131.765 +638022.953|220980.491|131.881 +638018.362|220984.663|131.973 +638013.769|220988.839|132.052 +638009.136|220993.049|131.924 +638004.564|220997.203|131.887 +637999.971|221001.376|131.732 +637995.356|221005.564|131.497 +637990.763|221009.733|131.101 +637986.148|221013.924|130.906 +637981.606|221018.051|130.845 +637977.013|221022.224|130.522 +637972.410|221026.400|130.171 +637967.878|221030.518|129.949 +637963.215|221034.745|129.330 +637958.606|221038.927|128.733 +637944.939|221051.329|127.446 +637922.201|221071.961|125.255 +637913.276|221080.069|124.980 +637908.786|221084.144|124.484 +637904.388|221088.140|124.462 +637899.871|221092.231|123.630 +637882.336|221108.163|123.344 +637869.562|221119.785|124.441 +637865.401|221123.573|124.971 +637856.937|221131.273|125.374 +637848.479|221138.963|125.883 +637844.242|221142.815|125.870 +637835.790|221150.496|125.998 +637819.023|221165.733|126.145 +637806.590|221177.032|126.337 +637802.405|221180.833|126.258 +637798.263|221184.591|126.154 +637794.239|221188.249|126.346 +637790.118|221191.989|126.364 +637786.028|221195.701|126.306 +637781.941|221199.414|126.273 +637777.887|221203.093|126.169 +637773.772|221206.830|126.038 +637769.779|221210.454|126.008 +637765.707|221214.148|125.874 +637761.674|221217.812|125.922 +637757.657|221221.460|125.825 +637753.676|221225.069|125.688 +637749.641|221228.729|125.553 +637745.688|221232.323|125.544 +637741.701|221235.938|125.200 +637737.702|221239.565|125.044 +637726.080|221250.120|125.313 +637714.427|221260.694|124.926 +637710.501|221264.254|124.740 +637706.673|221267.732|124.734 +637699.242|221274.483|125.230 +637695.499|221277.885|125.383 +637691.723|221281.314|125.425 +637676.726|221294.923|125.087 +637672.807|221298.468|124.234 +637669.161|221301.778|124.234 +637665.461|221305.137|124.033 +637658.030|221311.876|123.569 +637626.017|221340.927|123.155 +637837.036|221146.452|125.764 +637841.273|221142.593|125.776 +637849.774|221134.848|125.736 +637866.809|221119.315|124.791 +637875.307|221111.561|123.944 +637879.574|221107.669|123.499 +637888.298|221099.720|123.313 +637892.611|221095.788|123.133 +637910.621|221079.408|124.846 +637933.134|221058.919|126.053 +637946.880|221046.416|127.440 +637951.535|221042.188|128.245 +637956.171|221037.973|128.702 +637960.749|221033.809|129.156 +637965.385|221029.594|129.665 +637974.605|221021.206|130.211 +637979.241|221016.994|130.787 +637983.837|221012.806|130.906 +637988.455|221008.602|131.159 +638002.369|220995.941|131.820 +638006.984|220991.738|131.854 +638011.599|220987.538|131.909 +638016.247|220983.301|131.893 +638020.895|220979.070|131.887 +638025.479|220974.892|131.829 +638030.161|220970.627|131.753 +638034.773|220966.424|131.595 +638039.445|220962.169|131.503 +638053.314|220949.526|130.763 +638057.938|220945.311|130.436 +638062.647|220941.016|130.040 +638067.295|220936.779|129.915 +638071.955|220932.530|129.555 +638090.655|220915.483|128.318 +638095.385|220911.176|128.525 +638118.992|220889.657|127.068 +638133.269|220876.642|126.215 +638137.926|220872.387|125.343 +638171.625|220841.691|124.831 +638181.214|220832.952|124.267 +638191.001|220824.040|124.612 +638205.510|220810.817|123.618 +638229.805|220788.674|122.597 +638234.804|220784.132|123.261 +638244.631|220775.186|123.588 +638254.546|220766.170|124.386 +638269.335|220752.704|124.529 +638279.265|220743.664|124.813 +638284.261|220739.116|124.813 +638299.169|220725.543|125.142 +638304.119|220721.038|125.243 +638314.107|220711.946|125.471 +638319.072|220707.420|125.300 +638324.065|220702.878|125.450 +638339.186|220689.132|127.242 +638344.188|220684.575|127.065 +638349.178|220680.037|127.343 +638354.219|220675.449|127.721 +638359.263|220670.862|128.123 +638364.223|220666.345|128.132 +638369.310|220661.721|128.534 +638374.287|220657.192|128.824 +638379.353|220652.580|129.016 +638389.402|220643.439|129.760 +638394.459|220638.840|129.876 +638399.445|220634.298|129.738 +638409.568|220625.090|130.345 +638414.563|220620.543|130.449 +638419.602|220615.955|130.467 +638424.628|220611.380|130.281 +638429.660|220606.796|130.229 +638434.686|220602.221|130.068 +638439.716|220597.640|130.022 +638444.787|220593.022|129.900 +638449.807|220588.450|129.650 +638454.882|220583.826|129.632 +638459.902|220579.254|129.464 +638469.961|220570.086|128.480 +638475.024|220565.474|128.220 +638480.089|220560.860|127.998 +638485.097|220556.294|127.629 +638490.197|220551.645|127.062 +638495.204|220547.080|126.663 +638500.264|220542.468|126.322 +638505.324|220537.856|125.959 +638510.384|220533.248|125.575 +638515.446|220528.636|125.267 +638520.500|220524.024|124.795 +638525.557|220519.416|124.307 +638530.613|220514.807|123.761 +638535.719|220510.150|123.328 +638540.733|220505.581|122.890 +638545.841|220500.927|122.463 +638550.904|220496.312|122.143 +638555.973|220491.694|121.887 +638561.035|220487.080|121.548 +638566.101|220482.465|121.210 +638571.167|220477.850|120.924 +638576.272|220473.190|120.146 +638581.390|220468.529|119.930 +638586.410|220463.954|119.573 +638591.534|220459.291|119.592 +638596.657|220454.630|119.692 +638601.729|220450.013|119.790 +638606.804|220445.392|119.796 +638611.925|220440.732|119.753 +638616.997|220436.111|119.613 +638622.114|220431.447|119.290 +638627.189|220426.827|119.049 +638632.261|220422.206|118.790 +638637.385|220417.539|118.574 +638642.460|220412.918|118.452 +638647.529|220408.304|118.461 +638652.652|220403.640|118.567 +638657.727|220399.023|118.683 +638662.802|220394.405|118.805 +638667.923|220389.744|118.979 +638672.998|220385.127|119.086 +638683.151|220375.885|119.031 +638688.232|220371.252|118.631 +638693.313|220366.622|118.348 +638698.397|220361.989|117.949 +638703.481|220357.359|117.735 +638708.559|220352.739|117.872 +638713.640|220348.118|117.961 +638718.721|220343.491|117.985 +638723.802|220338.867|118.001 +638728.883|220334.240|118.049 +638733.915|220329.662|118.156 +638738.999|220325.032|118.168 +638744.083|220320.405|118.208 +638749.137|220315.800|117.690 +638764.368|220301.928|117.248 +638769.479|220297.268|116.647 +638774.551|220292.641|115.873 +638779.629|220288.008|114.998 +638784.762|220283.326|114.084 +638789.794|220278.736|113.319 +638794.866|220274.115|112.913 +638799.923|220269.513|112.819 +638804.982|220264.910|112.795 +638810.030|220260.317|113.008 +638815.059|220255.751|113.681 +638820.061|220251.203|113.877 +638825.124|220246.595|113.809 +638830.147|220242.020|113.617 +638835.228|220237.393|113.294 +638840.257|220232.812|113.054 +638845.286|220228.234|112.868 +638850.306|220223.668|112.901 +638855.314|220219.111|113.121 +638860.301|220214.585|113.770 +638865.330|220210.007|113.685 +638870.377|220205.407|113.325 +638875.404|220200.835|113.364 +638880.393|220196.294|113.233 +638885.441|220191.700|113.011 +638890.442|220187.144|112.752 +638895.496|220182.541|112.505 +638900.513|220177.969|112.090 +638905.533|220173.397|111.679 +638920.566|220159.708|111.109 +638925.568|220155.158|111.100 +638930.576|220150.601|111.030 +638935.593|220146.035|110.908 +638940.527|220141.548|111.203 +638945.532|220136.992|111.228 +638950.436|220132.535|111.374 +638955.441|220127.982|111.478 +638960.409|220123.462|111.459 +638965.362|220118.957|111.630 +638970.322|220114.446|111.749 +638975.223|220109.989|112.029 +638980.206|220105.454|111.923 +638985.123|220100.979|112.033 +638990.088|220096.465|112.197 +638995.068|220091.924|111.682 +639000.018|220087.422|111.557 +639004.923|220082.954|111.377 +639009.936|220078.391|111.164 +639014.829|220073.938|111.176 +639019.769|220069.445|111.243 +639024.689|220064.964|111.045 +639029.660|220060.432|110.380 +639034.638|220055.893|109.689 +639039.688|220051.285|108.814 +639044.605|220046.804|108.332 +639049.536|220042.318|108.207 +639054.419|220037.870|108.076 +639059.357|220033.378|107.939 +639064.225|220028.949|108.003 +639069.135|220024.481|108.155 +639073.939|220020.113|108.399 +639078.895|220015.602|108.204 +639083.762|220011.170|107.948 +639088.593|220006.781|108.436 +639093.418|220002.392|108.585 +639098.265|219997.984|108.588 +639103.160|219993.525|108.204 +639108.034|219989.087|108.027 +639112.932|219984.625|107.662 +639117.751|219980.233|107.195 +639122.655|219975.764|106.860 +639127.492|219971.363|106.695 +639132.351|219966.940|106.412 +639137.221|219962.499|106.025 +639142.028|219958.122|105.793 +639146.914|219953.672|105.388 +639151.687|219949.326|105.098 +639156.506|219944.937|104.864 +639161.328|219940.548|104.632 +639166.104|219936.195|104.397 +639170.966|219931.769|104.288 +639175.690|219927.469|104.114 +639180.521|219923.070|103.931 +639185.313|219918.709|103.702 +639190.055|219914.390|103.483 +639194.841|219910.031|103.330 +639199.611|219905.688|102.980 +639204.405|219901.320|102.501 +639209.194|219896.955|102.081 +639213.955|219892.621|101.867 +639218.658|219888.338|101.739 +639223.404|219884.019|101.669 +639228.107|219879.737|101.575 +639232.819|219875.448|101.453 +639237.543|219871.148|101.279 +639242.228|219866.880|101.057 +639246.946|219862.583|100.651 +639251.659|219858.288|100.310 +639256.426|219853.942|99.667 +639261.135|219849.650|99.088 +639265.932|219845.273|98.313 +639270.687|219840.936|97.524 +639275.351|219836.684|97.006 +639280.069|219832.383|96.500 +639284.714|219828.152|96.152 +639298.769|219815.342|94.555 +639312.604|219802.744|93.872 +639322.031|219794.137|91.913 +639344.391|219773.806|93.092 +639348.957|219769.652|92.937 +639375.844|219745.177|92.370 +639384.628|219737.194|93.068 +639397.807|219725.203|93.159 +639401.846|219721.548|94.796 +639410.402|219713.779|95.753 +639414.678|219709.896|96.265 +639418.897|219706.065|96.805 +639427.379|219698.356|97.695 +639431.625|219694.500|98.155 +639430.552|219692.906|98.246 +639426.303|219696.756|97.765 +639421.975|219700.679|97.423 +639417.705|219704.553|96.841 +639413.435|219708.421|96.244 +639409.155|219712.301|95.726 +639400.569|219720.076|94.311 +639396.320|219723.920|93.159 +639365.172|219752.193|92.416 +639351.575|219764.547|92.864 +639337.920|219776.955|93.272 +639310.531|219801.833|93.662 +639305.916|219806.030|93.940 +639296.605|219814.494|94.455 +639287.262|219822.986|95.235 +639277.783|219831.612|96.332 +639273.104|219835.867|96.847 +639268.340|219840.201|97.326 +639263.531|219844.578|98.082 +639258.776|219848.906|98.859 +639254.045|219853.210|99.514 +639249.235|219857.587|100.069 +639244.496|219861.897|100.542 +639239.784|219866.179|100.855 +639235.026|219870.504|101.176 +639230.289|219874.811|101.392 +639225.568|219879.100|101.529 +639220.816|219883.413|101.544 +639216.107|219887.689|101.660 +639211.401|219891.965|101.767 +639206.585|219896.339|101.956 +639201.775|219900.713|102.468 +639196.974|219905.081|102.949 +639192.152|219909.461|103.257 +639187.358|219913.817|103.419 +639182.609|219918.133|103.638 +639177.766|219922.534|103.846 +639172.971|219926.893|104.074 +639168.143|219931.276|104.211 +639163.315|219935.662|104.385 +639158.484|219940.051|104.592 +639153.647|219944.446|104.882 +639148.782|219948.866|105.037 +639143.896|219953.310|105.379 +639139.026|219957.735|105.635 +639134.134|219962.182|106.086 +639129.251|219966.620|106.479 +639124.353|219971.073|106.665 +639119.457|219975.517|106.823 +639114.547|219979.983|107.162 +639109.576|219984.503|107.595 +639104.669|219988.962|107.954 +639099.731|219993.452|108.207 +639094.778|219997.954|108.591 +639089.886|220002.395|108.530 +639085.067|220006.759|107.842 +639080.086|220011.289|108.143 +639075.142|220015.775|108.140 +639065.331|220024.682|107.991 +639060.357|220029.196|107.902 +639055.416|220033.686|108.000 +639050.478|220038.169|108.058 +639045.491|220042.699|108.158 +639040.502|220047.231|108.329 +639035.494|220051.782|108.674 +639030.437|220056.387|109.548 +639025.384|220060.987|110.417 +639020.315|220065.598|111.030 +639015.341|220070.118|111.213 +639010.345|220074.654|111.161 +639005.340|220079.198|111.216 +639000.320|220083.761|111.447 +638995.269|220088.345|111.523 +638990.182|220092.972|112.020 +638985.199|220097.499|111.972 +638980.173|220102.061|111.889 +638975.147|220106.621|111.798 +638970.130|220111.178|111.667 +638965.061|220115.777|111.569 +638960.050|220120.322|111.374 +638954.975|220124.931|111.392 +638944.852|220134.120|111.185 +638939.796|220138.708|111.057 +638934.742|220143.295|110.917 +638929.689|220147.882|110.813 +638924.574|220152.530|110.902 +638919.511|220157.127|110.947 +638904.213|220171.026|111.499 +638899.087|220175.683|111.892 +638894.018|220180.292|112.228 +638888.900|220184.943|112.578 +638883.795|220189.579|112.782 +638878.686|220194.218|113.066 +638873.593|220198.845|113.169 +638868.506|220203.459|113.176 +638863.413|220208.086|113.349 +638858.307|220212.716|112.938 +638853.232|220217.319|112.801 +638848.121|220221.955|112.502 +638843.040|220226.569|112.578 +638837.904|220231.230|112.743 +638832.765|220235.899|113.054 +638827.690|220240.508|113.118 +638822.551|220245.178|113.520 +638817.421|220249.835|113.742 +638812.307|220254.480|113.733 +638807.217|220259.092|113.163 +638802.120|220263.709|112.718 +638796.957|220268.397|112.779 +638791.843|220273.039|112.822 +638786.719|220277.697|113.166 +638781.577|220282.375|114.026 +638776.386|220287.100|115.026 +638771.253|220291.769|115.812 +638766.078|220296.475|116.528 +638740.456|220319.753|117.863 +638735.363|220324.374|117.796 +638730.270|220328.995|117.720 +638725.131|220333.658|117.665 +638720.086|220338.236|117.696 +638714.947|220342.903|117.699 +638709.857|220347.520|117.677 +638704.770|220352.135|117.495 +638699.631|220356.802|117.549 +638694.492|220361.468|117.796 +638689.448|220366.049|118.040 +638684.309|220370.722|118.506 +638679.170|220375.388|118.827 +638674.135|220379.960|118.738 +638669.002|220384.618|118.653 +638663.869|220389.272|118.464 +638653.701|220398.498|118.272 +638648.568|220403.156|118.168 +638643.533|220407.725|118.071 +638638.406|220412.379|118.189 +638633.322|220416.997|118.506 +638628.238|220421.614|118.702 +638623.108|220426.275|118.985 +638618.027|220430.890|119.177 +638612.946|220435.504|119.467 +638607.816|220440.162|119.610 +638602.784|220444.731|119.631 +638597.703|220449.342|119.704 +638592.570|220453.999|119.515 +638587.535|220458.568|119.476 +638582.457|220463.183|119.835 +638577.382|220467.795|120.290 +638572.356|220472.361|120.668 +638567.281|220476.972|120.994 +638562.206|220481.581|121.372 +638557.180|220486.147|121.682 +638552.108|220490.755|122.118 +638547.078|220495.324|122.280 +638542.055|220499.887|122.658 +638536.983|220504.496|123.002 +638531.966|220509.056|123.575 +638526.953|220513.618|124.127 +638521.881|220518.224|124.490 +638516.864|220522.784|124.968 +638511.847|220527.344|125.416 +638506.823|220531.907|125.715 +638501.809|220536.463|126.230 +638496.789|220541.026|126.584 +638491.766|220545.589|126.837 +638486.755|220550.146|127.398 +638481.741|220554.703|127.849 +638476.770|220559.223|128.169 +638471.744|220563.786|128.385 +638466.730|220568.345|128.839 +638446.726|220586.518|129.799 +638441.742|220591.041|129.936 +638436.750|220595.573|129.967 +638431.757|220600.106|129.952 +638426.771|220604.635|130.089 +638421.781|220609.164|130.229 +638416.801|220613.688|130.491 +638411.838|220618.189|130.272 +638406.846|220622.725|130.375 +638401.850|220627.248|129.732 +638396.885|220631.753|129.595 +638371.971|220654.357|128.632 +638367.030|220658.835|128.348 +638362.025|220663.370|127.849 +638357.041|220667.893|127.669 +638347.111|220676.900|127.239 +638342.167|220681.384|127.041 +638312.367|220708.410|125.404 +638307.377|220712.934|124.877 +638292.564|220726.375|124.697 +638282.728|220735.300|124.404 +638272.938|220744.182|124.206 +638268.085|220748.589|124.316 +638263.145|220753.070|124.066 +638253.385|220761.930|124.346 +638238.721|220775.229|123.542 +638228.778|220784.230|121.939 +638223.938|220788.625|121.923 +638214.346|220797.348|123.146 +638190.282|220819.202|124.243 +638185.420|220823.616|124.200 +638156.638|220849.743|124.688 +638147.156|220858.363|125.587 +638132.940|220871.278|126.203 +638128.261|220875.536|126.977 +638109.367|220892.702|127.550 +638099.994|220901.218|128.114 +638095.263|220905.516|128.300 +638085.915|220914.005|128.461 +638062.644|220935.155|129.973 +638058.020|220939.358|130.324 +638053.375|220943.579|130.546 +638048.784|220947.752|130.820 +638044.136|220951.977|131.061 +638039.543|220956.149|131.357 +638025.653|220968.765|131.653 +638021.051|220972.944|131.662 +638016.415|220977.156|131.771 +638011.800|220981.344|131.738 +638007.200|220985.520|131.817 +638002.641|220989.659|131.854 +637984.148|221006.438|131.025 +637979.534|221010.626|130.842 +637974.885|221014.839|130.223 +637970.341|221018.966|130.189 +637965.729|221023.145|129.830 +637961.084|221027.354|129.299 +637928.922|221056.505|125.739 +637915.340|221068.825|124.782 +637910.865|221072.882|124.618 +637883.973|221097.269|122.725 +637871.009|221109.053|123.636 +637862.545|221116.752|124.743 +637853.889|221124.610|124.749 +637849.756|221128.374|125.447 +637845.501|221132.236|125.593 +637832.745|221143.818|125.669 +637824.293|221151.493|125.889 +637820.086|221155.312|125.870 +637815.883|221159.128|125.880 +637799.229|221174.249|126.084 +637795.077|221178.023|126.163 +637790.966|221181.754|126.209 +637786.808|221185.530|126.062 +637782.767|221189.203|126.206 +637778.643|221192.946|126.239 +637774.561|221196.655|126.239 +637770.480|221200.362|126.258 +637766.420|221204.047|126.154 +637762.345|221207.744|126.014 +637758.267|221211.447|125.864 +637754.243|221215.099|125.749 +637750.253|221218.723|125.779 +637746.215|221222.390|125.627 +637742.265|221225.977|125.633 +637738.324|221229.555|125.688 +637734.514|221233.024|126.294 +637730.374|221236.770|125.361 +637726.461|221240.324|125.355 +637722.495|221243.921|125.166 +637718.496|221247.548|124.630 +637714.616|221251.071|124.587 +637710.931|221254.421|125.139 +637707.030|221257.960|124.828 +637703.183|221261.459|124.950 +637691.966|221271.648|125.438 +637688.239|221275.035|125.453 +637673.240|221288.650|125.093 +637669.414|221292.116|124.606 +637665.748|221295.444|124.523 +637662.187|221298.684|124.846 +637654.699|221305.472|123.950 +637650.953|221308.865|123.423 +637647.283|221312.196|123.389 +637643.759|221315.393|123.316 +637640.178|221318.649|123.432 +637636.609|221321.889|123.408 +637633.155|221325.025|123.417 +637629.577|221328.274|123.380 +637626.099|221331.429|123.328 +637622.624|221334.587|123.286 +637833.269|221140.855|125.480 +637846.004|221129.264|125.398 +637850.176|221125.463|125.148 +637854.383|221121.632|124.816 +637858.677|221117.724|124.919 +637862.914|221113.865|124.514 +637867.102|221110.043|123.901 +637871.351|221106.175|123.575 +637888.609|221090.457|122.731 +637897.548|221082.340|123.673 +637910.996|221070.114|124.575 +637919.948|221061.976|125.026 +637929.025|221053.725|125.697 +637933.545|221049.620|125.956 +637961.230|221024.480|129.449 +637970.441|221016.107|130.174 +637975.047|221011.922|130.287 +637979.689|221007.706|130.909 +637984.273|221003.534|130.964 +637998.148|220990.921|131.613 +638007.399|220982.509|131.777 +638012.035|220978.290|131.653 +638016.631|220974.105|131.628 +638021.279|220969.878|131.622 +638025.927|220965.650|131.625 +638035.233|220957.183|131.479 +638039.829|220953.001|131.226 +638044.468|220948.776|130.958 +638049.153|220944.512|130.677 +638053.804|220940.278|130.510 +638086.589|220910.429|128.382 +638091.298|220906.141|128.086 +638096.065|220901.809|128.184 +638100.826|220897.472|127.940 +638114.981|220884.582|126.706 +638119.754|220880.239|126.605 +638162.947|220840.932|124.932 +638187.158|220818.901|124.008 +638226.148|220783.413|122.085 +638236.154|220774.333|123.475 +638251.050|220760.797|124.325 +638255.945|220756.343|124.133 +638265.830|220747.358|124.282 +638270.761|220742.868|124.057 +638275.715|220738.363|124.048 +638280.695|220733.837|124.359 +638285.675|220729.311|124.694 +638290.662|220724.778|124.590 +638295.612|220720.276|124.657 +638305.618|220711.181|124.950 +638315.576|220702.132|125.352 +638320.566|220697.593|125.456 +638335.647|220683.904|127.248 +638340.664|220679.342|127.227 +638345.648|220674.812|127.385 +638350.671|220670.243|127.498 +638355.691|220665.680|127.550 +638360.711|220661.115|127.672 +638365.765|220656.530|128.217 +638370.748|220652.001|128.571 +638390.944|220633.652|129.827 +638411.006|220615.413|130.260 +638416.051|220610.826|130.378 +638421.080|220606.247|130.202 +638426.112|220601.672|130.101 +638431.148|220597.091|130.071 +638436.128|220592.559|129.979 +638441.157|220587.984|129.854 +638446.183|220583.412|129.748 +638451.210|220578.840|129.607 +638461.301|220569.653|129.309 +638466.312|220565.090|128.903 +638471.369|220560.488|128.419 +638476.383|220555.922|128.144 +638481.449|220551.310|127.897 +638486.457|220546.750|127.382 +638491.513|220542.145|126.931 +638496.576|220537.536|126.602 +638501.587|220532.973|126.221 +638506.644|220528.368|125.694 +638511.706|220523.759|125.392 +638516.763|220519.151|124.895 +638521.826|220514.542|124.517 +638526.885|220509.936|124.045 +638531.945|220505.328|123.533 +638537.002|220500.719|122.941 +638542.068|220496.108|122.646 +638547.133|220491.496|122.295 +638552.202|220486.881|122.112 +638557.265|220482.270|121.600 +638562.331|220477.658|121.216 +638567.400|220473.043|120.860 +638572.514|220468.386|120.494 +638577.537|220463.814|120.213 +638582.655|220459.157|119.756 +638587.727|220454.539|119.457 +638592.802|220449.924|119.412 +638597.877|220445.307|119.464 +638603.000|220440.646|119.363 +638608.029|220436.074|119.369 +638613.150|220431.414|119.235 +638618.225|220426.796|119.003 +638623.300|220422.175|118.799 +638628.424|220417.512|118.549 +638633.502|220412.894|118.272 +638638.580|220408.273|118.061 +638643.700|220403.613|117.952 +638648.778|220398.995|117.979 +638653.856|220394.377|118.007 +638658.983|220389.717|118.147 +638664.061|220385.102|118.208 +638669.136|220380.488|118.436 +638674.263|220375.827|118.522 +638679.295|220371.249|118.485 +638684.428|220366.577|118.068 +638689.512|220361.947|117.741 +638694.599|220357.317|117.421 +638699.683|220352.693|117.275 +638704.764|220348.072|117.431 +638709.848|220343.448|117.385 +638714.932|220338.824|117.397 +638720.016|220334.201|117.434 +638725.055|220329.623|117.452 +638730.139|220324.999|117.525 +638735.226|220320.372|117.562 +638740.313|220315.748|117.620 +638755.550|220301.886|117.138 +638760.604|220297.286|116.842 +638765.718|220292.626|116.190 +638770.787|220288.005|115.562 +638775.920|220283.320|114.550 +638780.955|220278.730|113.715 +638786.085|220274.054|113.011 +638791.148|220269.449|112.825 +638796.207|220264.846|112.779 +638801.258|220260.250|112.904 +638806.287|220255.687|113.614 +638811.344|220251.091|113.706 +638816.409|220246.479|113.557 +638821.445|220241.895|113.145 +638826.514|220237.280|113.032 +638831.592|220232.659|112.834 +638836.621|220228.081|112.618 +638841.653|220223.503|112.432 +638846.685|220218.922|112.276 +638851.687|220214.377|112.645 +638856.680|220209.845|113.236 +638861.718|220205.261|113.038 +638866.741|220200.692|113.127 +638871.728|220196.156|113.047 +638876.769|220191.569|112.904 +638881.820|220186.973|112.663 +638886.818|220182.422|112.478 +638891.829|220177.859|112.142 +638896.849|220173.287|111.752 +638916.905|220155.033|110.826 +638921.855|220150.531|110.874 +638926.881|220145.953|110.588 +638931.828|220141.460|110.771 +638936.833|220136.906|110.819 +638941.728|220132.459|111.060 +638946.727|220127.912|111.213 +638956.596|220118.935|111.389 +638961.562|220114.424|111.475 +638966.518|220109.919|111.667 +638971.498|220105.387|111.584 +638976.418|220100.912|111.664 +638981.328|220096.450|111.886 +638986.272|220091.954|111.786 +638991.255|220087.419|111.780 +638996.172|220082.941|111.478 +639001.128|220078.433|111.313 +639006.029|220073.971|111.219 +639011.009|220069.445|111.362 +639015.911|220064.982|110.862 +639020.931|220060.404|110.179 +639025.929|220055.845|109.256 +639030.922|220051.291|108.457 +639035.851|220046.810|108.326 +639040.782|220042.321|108.162 +639045.674|220037.870|107.957 +639050.591|220033.396|107.985 +639055.446|220028.982|108.162 +639060.405|220024.465|107.854 +639065.264|220020.052|108.049 +639070.101|220015.657|108.439 +639075.014|220011.185|108.192 +639079.913|220006.729|108.119 +639084.796|220002.282|107.756 +639089.627|219997.893|108.274 +639094.464|219993.495|108.354 +639099.353|219989.044|108.046 +639104.266|219984.570|107.570 +639109.180|219980.096|107.119 +639114.075|219975.639|106.839 +639118.900|219971.247|106.750 +639123.761|219966.828|106.784 +639128.635|219962.390|106.385 +639133.484|219957.967|105.796 +639138.367|219953.523|105.391 +639143.241|219949.085|105.071 +639148.115|219944.650|104.800 +639152.925|219940.273|104.638 +639157.747|219935.884|104.419 +639162.575|219931.492|104.187 +639167.348|219927.149|104.022 +639172.182|219922.747|103.791 +639176.961|219918.398|103.623 +639181.801|219913.993|103.407 +639186.596|219909.632|103.193 +639191.351|219905.304|102.934 +639196.176|219900.911|102.556 +639200.973|219896.541|102.069 +639205.743|219892.200|101.785 +639210.541|219887.835|101.678 +639215.259|219883.541|101.462 +639219.981|219879.243|101.233 +639224.736|219874.918|101.145 +639229.445|219870.632|101.060 +639234.184|219866.320|100.795 +639238.936|219861.994|100.499 +639243.661|219857.691|100.054 +639248.403|219853.369|99.542 +639253.228|219848.973|98.865 +639258.020|219844.606|98.118 +639262.753|219840.293|97.457 +639267.517|219835.952|96.920 +639272.245|219831.645|96.357 +639276.966|219827.345|95.832 +639281.627|219823.102|95.412 +639291.115|219814.449|93.955 +639295.687|219810.294|94.119 +639304.895|219801.915|93.833 +639314.435|219793.207|91.519 +639327.719|219781.158|93.610 +639332.291|219776.995|93.363 +639336.811|219772.883|93.138 +639341.349|219768.756|93.120 +639354.870|219756.454|92.839 +639359.326|219752.400|92.781 +639372.725|219740.211|92.574 +639376.971|219736.365|93.668 +639411.405|219705.089|96.524 +639415.644|219701.236|96.963 +639419.857|219697.414|97.548 +639424.106|219693.555|97.978 +639428.294|219689.755|98.460 +639426.614|219689.602|98.368 +639422.310|219693.498|97.914 +639418.031|219697.369|97.356 +639413.761|219701.233|96.765 +639409.509|219705.077|96.091 +639392.016|219720.911|94.616 +639374.219|219737.035|93.876 +639369.976|219740.864|92.489 +639360.832|219749.157|92.839 +639351.566|219757.573|93.915 +639342.596|219765.693|92.982 +639333.424|219774.005|92.900 +639324.113|219782.457|93.668 +639319.492|219786.645|93.613 +639291.603|219811.931|93.787 +639286.796|219816.302|94.659 +639277.326|219824.897|95.372 +639272.550|219829.234|95.857 +639267.706|219833.636|96.460 +639262.930|219837.973|97.012 +639258.148|219842.316|97.612 +639253.305|219846.718|98.323 +639248.477|219851.104|98.960 +639243.648|219855.490|99.633 +639238.863|219859.833|100.063 +639234.038|219864.213|100.456 +639229.286|219868.526|100.737 +639224.510|219872.861|100.889 +639219.682|219877.237|101.047 +639214.991|219881.489|101.017 +639210.169|219885.863|101.209 +639205.332|219890.256|101.523 +639200.553|219894.590|101.800 +639195.645|219899.046|102.294 +639190.823|219903.423|102.593 +639185.998|219907.800|102.934 +639181.146|219912.204|103.154 +639176.342|219916.560|103.388 +639171.508|219920.946|103.538 +639166.662|219925.341|103.782 +639161.834|219929.724|103.943 +639156.991|219934.116|104.217 +639152.160|219938.502|104.452 +639147.240|219942.962|104.608 +639142.409|219947.345|104.885 +639137.526|219951.776|105.205 +639132.646|219956.208|105.552 +639127.711|219960.689|106.314 +639122.786|219965.160|106.674 +639117.958|219969.537|106.695 +639113.084|219973.960|106.729 +639108.189|219978.398|106.921 +639103.282|219982.851|107.262 +639098.356|219987.325|107.774 +639093.452|219991.775|108.149 +639088.569|219996.201|107.966 +639083.762|220000.554|107.595 +639078.806|220005.053|108.070 +639073.905|220009.494|108.091 +639064.142|220018.342|107.909 +639059.211|220022.816|107.872 +639054.300|220027.269|108.088 +639049.338|220031.765|107.918 +639044.458|220036.191|107.930 +639039.472|220040.711|108.009 +639034.583|220045.146|108.158 +639029.599|220049.666|108.287 +639024.631|220054.177|108.771 +639019.568|220058.780|109.734 +639014.533|220063.358|110.499 +639009.501|220067.927|111.234 +639004.557|220072.407|111.152 +638999.543|220076.955|111.286 +638994.587|220081.454|111.402 +638989.545|220086.029|111.874 +638984.617|220090.497|111.746 +638979.575|220095.066|111.767 +638974.610|220099.565|111.533 +638969.624|220104.085|111.557 +638964.637|220108.606|111.588 +638959.678|220113.098|111.356 +638954.655|220117.652|111.316 +638949.641|220122.197|111.182 +638944.630|220126.738|111.051 +638939.653|220131.240|110.502 +638934.614|220135.815|110.758 +638929.609|220140.347|110.594 +638924.601|220144.889|110.509 +638919.517|220149.501|110.804 +638914.461|220154.082|110.743 +638894.228|220172.440|111.703 +638889.153|220177.045|112.084 +638884.036|220181.691|112.417 +638878.930|220186.327|112.624 +638873.874|220190.911|112.807 +638868.774|220195.538|112.965 +638863.690|220200.152|112.956 +638858.658|220204.712|112.846 +638853.534|220209.357|112.694 +638848.465|220213.951|112.462 +638843.400|220218.541|112.167 +638838.264|220223.201|112.298 +638833.173|220227.819|112.514 +638828.083|220232.437|112.755 +638822.954|220237.094|112.916 +638817.827|220241.745|113.029 +638812.688|220246.412|113.456 +638807.561|220251.063|113.624 +638802.492|220255.660|113.617 +638797.362|220260.302|112.862 +638792.245|220264.941|112.871 +638787.133|220269.574|112.810 +638782.010|220274.225|113.105 +638776.819|220278.946|113.992 +638771.677|220283.625|114.931 +638766.498|220288.328|115.620 +638761.375|220292.982|116.175 +638756.254|220297.637|116.784 +638751.097|220302.315|117.043 +638745.946|220306.991|117.196 +638740.843|220311.618|117.345 +638735.698|220316.284|117.312 +638730.553|220320.948|117.290 +638725.463|220325.563|117.098 +638720.272|220330.272|117.107 +638715.179|220334.890|117.056 +638710.034|220339.556|117.141 +638704.895|220344.216|117.092 +638699.756|220348.877|117.043 +638694.614|220353.537|117.077 +638689.472|220358.207|117.367 +638684.330|220362.873|117.693 +638679.188|220367.543|118.065 +638674.052|220372.200|118.098 +638668.916|220376.858|118.052 +638663.781|220381.512|117.946 +638658.645|220386.169|117.845 +638653.512|220390.823|117.729 +638648.376|220395.481|117.763 +638643.240|220400.138|117.769 +638638.107|220404.792|117.830 +638632.977|220409.450|118.107 +638627.842|220414.107|118.327 +638622.709|220418.768|118.580 +638617.579|220423.425|118.906 +638612.446|220428.082|119.147 +638607.316|220432.737|119.180 +638602.232|220437.348|119.229 +638597.099|220442.003|119.332 +638591.963|220446.657|119.168 +638586.882|220451.268|119.457 +638581.756|220455.923|119.756 +638576.629|220460.574|120.177 +638571.551|220465.186|120.454 +638566.427|220469.837|120.817 +638561.300|220474.488|121.125 +638556.229|220479.097|121.567 +638551.157|220483.702|122.048 +638546.033|220488.354|122.362 +638540.961|220492.959|122.737 +638535.886|220497.565|123.033 +638530.769|220502.210|123.584 +638525.749|220506.770|124.039 +638520.680|220511.372|124.502 +638515.565|220516.017|124.968 +638510.545|220520.574|125.428 +638505.473|220525.180|125.742 +638500.407|220529.779|126.215 +638495.339|220534.382|126.617 +638490.319|220538.941|126.977 +638485.295|220543.501|127.346 +638480.236|220548.101|127.910 +638475.210|220552.660|128.208 +638470.180|220557.226|128.376 +638460.146|220566.340|129.269 +638450.079|220575.472|129.568 +638445.095|220579.995|129.717 +638440.066|220584.561|129.955 +638435.070|220589.090|129.967 +638430.069|220593.626|129.833 +638425.039|220598.192|130.119 +638420.077|220602.687|129.927 +638415.057|220607.247|130.382 +638405.093|220616.281|130.247 +638395.090|220625.343|129.613 +638390.082|220629.888|129.589 +638375.055|220643.497|128.309 +638370.108|220647.987|128.571 +638365.103|220652.519|128.096 +638360.096|220657.052|127.611 +638355.109|220661.575|127.407 +638350.119|220666.095|127.236 +638345.179|220670.573|127.087 +638340.198|220675.090|127.053 +638310.407|220702.080|125.136 +638295.533|220715.564|124.813 +638285.703|220724.480|124.581 +638280.777|220728.942|124.420 +638275.873|220733.389|124.481 +638265.997|220742.338|124.005 +638256.223|220751.204|124.136 +638251.355|220755.621|124.173 +638246.435|220760.083|124.225 +638236.612|220768.983|123.606 +638217.016|220786.735|122.341 +638149.759|220847.759|124.773 +638135.543|220860.671|126.111 +638126.140|220869.208|127.004 +638116.624|220877.834|126.809 +638111.832|220882.183|126.837 +638107.227|220886.365|127.510 +638102.518|220890.642|127.815 +638097.796|220894.924|128.056 +638083.769|220907.656|128.763 +638079.121|220911.871|128.900 +638051.268|220937.151|130.555 +638046.651|220941.339|130.674 +638042.042|220945.524|130.857 +638037.467|220949.675|131.284 +638023.626|220962.230|131.604 +638019.033|220966.397|131.671 +638014.430|220970.573|131.695 +638009.794|220974.773|131.555 +638005.216|220978.921|131.470 +638000.608|220983.103|131.518 +637996.036|220987.248|131.506 +637973.060|221008.066|130.253 +637968.527|221012.175|130.314 +637963.873|221016.387|129.720 +637927.105|221049.668|125.627 +637922.573|221053.777|125.346 +637918.089|221057.837|125.096 +637904.501|221070.139|123.737 +637891.056|221082.315|122.792 +637886.551|221086.394|122.323 +637865.078|221105.886|124.103 +637852.252|221117.526|124.859 +637839.444|221129.145|125.340 +637835.192|221132.998|125.300 +637830.895|221136.893|125.300 +637826.673|221140.724|125.419 +637822.439|221144.565|125.502 +637818.209|221148.399|125.617 +637809.760|221156.062|125.715 +637805.541|221159.887|125.691 +637801.396|221163.645|125.779 +637797.187|221167.462|125.837 +637784.766|221178.730|126.053 +637780.645|221182.467|126.087 +637772.449|221189.898|126.172 +637768.377|221193.592|126.236 +637764.265|221197.320|126.151 +637760.153|221201.047|126.069 +637756.075|221204.745|125.928 +637752.003|221208.436|125.828 +637747.961|221212.097|125.660 +637743.898|221215.782|125.627 +637739.896|221219.409|125.639 +637735.809|221223.112|125.319 +637731.889|221226.666|125.496 +637727.896|221230.287|125.368 +637723.922|221233.890|125.349 +637720.020|221237.428|125.413 +637716.104|221240.979|125.432 +637712.117|221244.591|125.176 +637708.228|221248.115|125.121 +637704.293|221251.684|125.102 +637700.434|221255.183|124.983 +637696.639|221258.624|125.130 +637692.823|221262.087|125.197 +637689.031|221265.525|125.383 +637685.197|221269.003|125.410 +637681.472|221272.380|125.453 +637674.020|221279.144|125.776 +637666.330|221286.102|125.041 +637662.568|221289.513|124.804 +637651.510|221299.538|124.834 +637644.037|221306.304|124.057 +637640.345|221309.645|123.770 +637636.758|221312.897|123.667 +637633.137|221316.180|123.655 +637629.552|221319.426|123.594 +637626.041|221322.611|123.603 +637622.512|221325.812|123.767 +637619.171|221328.847|124.225 +637828.734|221137.140|125.331 +637832.958|221133.296|125.261 +637841.450|221125.573|125.127 +637854.194|221113.978|124.682 +637875.441|221094.629|122.810 +637888.529|221082.727|122.646 +637901.941|221070.541|123.496 +637915.544|221058.194|124.990 +637920.067|221054.085|125.212 +637924.590|221049.976|125.465 +637929.101|221045.880|125.931 +637952.181|221024.937|129.016 +637956.762|221020.776|129.181 +637970.582|221008.225|130.275 +637975.193|221004.040|130.711 +637989.028|220991.464|131.025 +637998.319|220983.024|131.332 +638002.894|220978.863|131.415 +638007.548|220974.636|131.671 +638012.260|220970.353|131.710 +638016.866|220966.165|131.726 +638021.514|220961.938|131.707 +638030.801|220953.488|131.375 +638040.113|220945.018|130.955 +638044.761|220940.787|130.738 +638049.431|220936.542|130.647 +638087.012|220902.340|128.562 +638096.498|220893.708|128.059 +638101.265|220889.371|127.830 +638106.014|220885.049|127.489 +638110.747|220880.739|127.050 +638115.523|220876.392|126.953 +638139.481|220854.596|125.745 +638192.867|220806.032|123.764 +638207.479|220792.727|122.310 +638232.238|220770.236|123.508 +638242.205|220761.184|124.139 +638247.170|220756.666|124.118 +638252.141|220752.149|124.148 +638257.018|220747.711|123.761 +638261.986|220743.194|123.816 +638306.923|220702.354|124.706 +638316.972|220693.228|125.553 +638342.161|220670.347|126.754 +638347.215|220665.757|127.172 +638352.198|220661.230|127.324 +638357.282|220656.613|127.577 +638362.311|220652.041|127.779 +638367.356|220647.463|128.205 +638372.409|220642.866|128.120 +638387.576|220629.101|129.537 +638397.635|220619.960|129.650 +638407.766|220610.761|130.284 +638412.805|220606.177|130.226 +638422.884|220597.018|130.141 +638427.911|220592.446|129.909 +638432.946|220587.868|129.839 +638443.020|220578.712|129.830 +638448.091|220574.097|129.650 +638468.315|220555.699|128.480 +638473.338|220551.130|128.330 +638478.407|220546.522|128.065 +638483.470|220541.916|127.654 +638488.523|220537.314|127.096 +638493.589|220532.702|126.785 +638498.655|220528.097|126.428 +638503.711|220523.491|125.898 +638508.826|220518.840|125.544 +638513.892|220514.228|125.224 +638518.955|220509.623|124.721 +638524.066|220504.971|124.279 +638529.126|220500.363|123.761 +638534.192|220495.754|123.335 +638539.306|220491.100|122.911 +638544.372|220486.488|122.481 +638549.444|220481.877|122.216 +638554.558|220477.219|121.728 +638559.627|220472.608|121.314 +638564.699|220467.993|121.033 +638569.817|220463.336|120.625 +638574.888|220458.721|120.207 +638580.009|220454.064|119.893 +638585.084|220449.446|119.564 +638590.208|220444.785|119.332 +638595.283|220440.168|119.052 +638600.412|220435.507|119.128 +638610.620|220426.229|119.089 +638615.744|220421.569|118.817 +638620.825|220416.948|118.564 +638625.952|220412.284|118.299 +638631.078|220407.618|118.052 +638636.156|220403.003|117.876 +638641.286|220398.337|117.677 +638646.416|220393.673|117.595 +638651.497|220389.056|117.549 +638656.627|220384.395|117.644 +638661.760|220379.732|117.687 +638666.841|220375.114|117.748 +638671.971|220370.451|117.824 +638677.058|220365.827|117.680 +638682.142|220361.203|117.491 +638687.281|220356.527|117.156 +638692.368|220351.900|116.952 +638697.458|220347.274|116.784 +638702.542|220342.653|116.922 +638707.678|220337.986|116.925 +638712.722|220333.402|116.824 +638717.861|220328.729|116.766 +638722.951|220324.103|116.705 +638727.990|220319.525|116.867 +638733.080|220314.901|116.989 +638738.170|220310.277|117.098 +638743.266|220305.644|116.961 +638748.366|220301.005|116.736 +638753.422|220296.405|116.486 +638758.485|220291.797|116.038 +638763.597|220287.146|115.590 +638768.672|220282.528|114.956 +638773.804|220277.855|114.081 +638778.892|220273.219|113.194 +638783.963|220268.608|112.883 +638789.023|220264.008|112.816 +638794.080|220259.418|112.910 +638799.109|220254.858|113.660 +638804.175|220250.259|113.599 +638809.201|220245.687|113.334 +638814.297|220241.047|112.663 +638819.363|220236.448|112.740 +638824.389|220231.879|112.593 +638829.421|220227.304|112.380 +638834.457|220222.729|112.188 +638839.492|220218.148|111.947 +638844.521|220213.582|111.932 +638849.523|220209.043|112.389 +638854.494|220204.532|112.593 +638859.469|220200.012|112.709 +638864.495|220195.449|112.816 +638869.484|220190.917|112.752 +638874.483|220186.372|112.572 +638879.479|220181.831|112.450 +638884.444|220177.317|112.118 +638889.458|220172.757|111.813 +638894.432|220168.234|111.435 +638909.432|220154.597|110.743 +638914.385|220150.098|110.774 +638919.365|220145.569|110.475 +638924.324|220141.067|110.493 +638929.292|220136.553|110.423 +638934.242|220132.057|110.585 +638939.137|220127.613|110.862 +638944.097|220123.111|110.984 +638948.998|220118.661|111.197 +638953.914|220114.196|111.280 +638958.834|220109.727|111.328 +638963.750|220105.265|111.472 +638968.673|220100.793|111.533 +638973.613|220096.304|111.435 +638978.518|220091.851|111.737 +638983.413|220087.404|111.645 +638988.332|220082.935|111.844 +638993.261|220078.455|111.466 +638998.168|220073.992|111.304 +639003.051|220069.561|111.447 +639008.010|220065.046|110.835 +639012.945|220060.554|110.033 +639017.947|220055.997|109.103 +639022.884|220051.501|108.351 +639027.755|220047.072|108.268 +639032.638|220042.638|108.119 +639037.506|220038.215|108.143 +639042.395|220033.771|107.982 +639047.244|220029.370|108.201 +639052.130|220024.929|108.122 +639056.982|220020.518|107.930 +639061.884|220016.062|107.753 +639066.663|220011.728|108.247 +639071.512|220007.320|108.149 +639076.343|220002.934|108.238 +639081.242|219998.478|107.781 +639086.121|219994.043|107.521 +639090.873|219989.730|107.915 +639095.756|219985.292|107.665 +639100.615|219980.873|107.250 +639105.516|219976.414|106.915 +639110.274|219972.101|107.360 +639115.141|219967.672|106.942 +639119.988|219963.267|106.744 +639124.752|219958.942|106.817 +639129.729|219954.404|105.668 +639134.563|219950.009|105.254 +639139.428|219945.586|105.010 +639144.250|219941.203|104.748 +639149.072|219936.820|104.510 +639153.897|219932.434|104.281 +639158.688|219928.081|103.967 +639163.519|219923.689|103.739 +639168.293|219919.352|103.593 +639173.081|219914.999|103.379 +639177.915|219910.610|103.227 +639182.655|219906.300|103.035 +639187.468|219901.926|102.727 +639192.308|219897.525|102.273 +639197.136|219893.130|101.575 +639201.936|219888.762|101.102 +639206.755|219884.385|100.871 +639211.495|219880.075|100.517 +639216.274|219875.735|100.596 +639220.929|219871.510|100.837 +639225.644|219867.228|100.724 +639230.429|219862.878|100.499 +639235.184|219858.559|100.182 +639239.994|219854.179|99.536 +639244.782|219849.824|99.063 +639249.601|219845.441|98.438 +639254.326|219841.143|97.801 +639259.166|219836.736|97.097 +639273.504|219823.690|95.375 +639287.653|219810.824|94.110 +639324.533|219777.324|93.680 +639329.233|219773.047|93.025 +639338.301|219764.815|93.296 +639382.820|219724.417|95.628 +639387.313|219720.335|95.503 +639396.201|219712.261|95.308 +639400.554|219708.311|95.421 +639409.067|219700.593|96.631 +639413.319|219696.744|97.280 +639417.559|219692.903|97.996 +639421.823|219689.035|98.350 +639421.125|219688.310|98.280 +639416.848|219692.181|97.932 +639412.700|219695.930|97.244 +639408.472|219699.755|96.701 +639399.917|219707.494|95.619 +639386.649|219719.518|95.723 +639373.494|219731.427|94.641 +639369.086|219735.414|94.330 +639351.182|219751.632|93.620 +639337.558|219763.971|93.193 +639333.022|219768.082|93.153 +639305.605|219792.914|91.882 +639286.561|219810.206|94.308 +639281.861|219814.467|94.281 +639272.336|219823.111|95.290 +639267.569|219827.439|95.723 +639262.750|219831.810|96.180 +639257.947|219836.175|96.887 +639253.100|219840.573|97.564 +639248.220|219845.005|98.185 +639243.380|219849.397|98.890 +639238.528|219853.798|99.389 +639233.688|219858.187|99.853 +639228.869|219862.558|100.203 +639224.025|219866.950|100.435 +639219.274|219871.251|100.401 +639214.510|219875.561|100.154 +639209.654|219879.962|100.212 +639204.823|219884.339|100.441 +639199.986|219888.725|100.743 +639195.063|219893.191|101.307 +639190.113|219897.687|102.087 +639185.221|219902.124|102.514 +639180.351|219906.541|102.831 +639175.440|219910.991|103.096 +639170.597|219915.380|103.269 +639165.714|219919.803|103.398 +639160.776|219924.280|103.586 +639155.936|219928.666|103.821 +639150.998|219933.141|104.059 +639146.115|219937.567|104.294 +639141.211|219942.014|104.717 +639136.295|219946.470|104.897 +639131.360|219950.944|105.217 +639126.340|219955.504|106.244 +639121.423|219959.960|106.506 +639116.452|219964.468|106.845 +639111.575|219968.885|106.845 +639106.665|219973.332|106.766 +639101.785|219977.752|106.857 +639096.774|219982.296|107.220 +639091.812|219986.798|107.637 +639086.935|219991.212|107.378 +639081.973|219995.704|107.427 +639076.968|220000.249|108.287 +639072.046|220004.705|108.076 +639067.074|220009.210|108.296 +639062.207|220013.611|107.653 +639057.214|220018.132|107.656 +639052.237|220022.646|108.024 +639047.235|220027.178|108.177 +639042.334|220031.616|107.909 +639037.329|220036.148|108.140 +639032.382|220040.629|107.884 +639027.386|220045.155|108.088 +639022.403|220049.672|108.235 +639017.413|220054.193|108.436 +639012.357|220058.786|109.353 +639007.260|220063.413|110.213 +639002.262|220067.951|111.127 +638997.251|220072.493|111.228 +638992.282|220076.998|111.429 +638987.259|220081.545|111.676 +638982.288|220086.047|111.453 +638977.335|220090.534|111.542 +638972.370|220095.030|111.292 +638967.371|220099.559|111.408 +638962.342|220104.110|111.338 +638957.416|220108.572|111.261 +638952.396|220113.117|111.139 +638947.428|220117.615|111.008 +638942.420|220122.148|110.792 +638937.412|220126.680|110.585 +638927.448|220135.699|110.228 +638922.419|220140.256|110.356 +638917.350|220144.849|110.411 +638912.364|220149.367|110.694 +638907.307|220153.948|110.658 +638897.212|220163.095|111.051 +638892.140|220167.694|111.350 +638887.114|220172.251|111.664 +638882.045|220176.844|111.962 +638876.973|220181.444|112.362 +638871.926|220186.019|112.444 +638866.872|220190.597|112.606 +638861.883|220195.114|112.590 +638856.802|220199.713|112.471 +638851.772|220204.267|112.331 +638846.752|220208.812|112.103 +638841.687|220213.393|111.767 +638836.700|220217.910|111.813 +638831.610|220222.522|111.981 +638826.572|220227.088|112.176 +638821.484|220231.696|112.377 +638816.400|220236.305|112.569 +638811.383|220240.846|112.414 +638806.287|220245.470|112.953 +638801.240|220250.045|113.502 +638796.168|220254.642|113.599 +638791.123|220259.201|113.047 +638786.070|220263.776|112.801 +638780.998|220268.370|112.916 +638775.874|220273.015|113.252 +638770.781|220277.639|114.111 +638765.691|220282.260|114.919 +638760.567|220286.911|115.513 +638755.498|220291.504|115.873 +638750.387|220296.137|116.169 +638745.278|220300.767|116.419 +638740.218|220305.351|116.653 +638735.116|220309.975|116.800 +638730.023|220314.587|116.678 +638724.930|220319.195|116.397 +638719.833|220323.810|116.370 +638714.737|220328.428|116.434 +638709.638|220333.045|116.586 +638704.545|220337.660|116.659 +638699.448|220342.275|116.656 +638694.358|220346.886|116.617 +638689.262|220351.501|116.790 +638684.214|220356.076|116.982 +638679.072|220360.737|117.260 +638673.982|220365.345|117.303 +638668.892|220369.960|117.488 +638663.802|220374.565|117.388 +638658.715|220379.177|117.455 +638653.625|220383.783|117.437 +638648.489|220388.434|117.354 +638643.402|220393.042|117.479 +638638.314|220397.654|117.659 +638632.703|220402.738|117.787 +638628.146|220406.868|118.028 +638623.010|220411.522|118.287 +638617.926|220416.128|118.461 +638612.842|220420.737|118.662 +638607.709|220425.388|118.802 +638602.574|220430.036|118.759 +638597.489|220434.642|118.842 +638592.408|220439.247|119.177 +638587.279|220443.898|119.436 +638582.195|220448.504|119.564 +638577.068|220453.152|119.948 +638571.941|220457.797|120.314 +638566.912|220462.357|120.710 +638561.791|220467.002|121.170 +638556.668|220471.647|121.594 +638551.641|220476.204|121.978 +638546.518|220480.849|122.310 +638541.443|220485.449|122.676 +638536.374|220490.048|123.118 +638531.302|220494.645|123.591 +638526.233|220499.244|124.042 +638521.164|220503.840|124.471 +638516.099|220508.437|124.996 +638511.030|220513.030|125.407 +638506.004|220517.587|125.697 +638500.935|220522.183|126.090 +638495.866|220526.780|126.507 +638490.846|220531.334|126.916 +638485.774|220535.933|127.273 +638480.711|220540.526|127.785 +638475.691|220545.080|128.163 +638470.616|220549.682|128.406 +638465.587|220554.239|128.659 +638445.385|220572.558|129.738 +638440.353|220577.121|129.927 +638425.222|220590.828|129.964 +638420.239|220595.345|130.208 +638415.188|220599.920|130.156 +638410.196|220604.446|130.281 +638405.145|220609.021|130.272 +638395.038|220618.168|129.470 +638385.059|220627.205|129.333 +638364.917|220645.436|128.089 +638359.961|220649.919|127.623 +638354.923|220654.482|127.370 +638349.933|220658.999|127.172 +638344.941|220663.516|126.989 +638339.930|220668.052|126.544 +638319.999|220686.093|125.465 +638315.055|220690.574|125.407 +638305.027|220699.641|124.398 +638295.112|220708.624|124.209 +638285.258|220717.551|124.252 +638280.347|220721.998|124.240 +638270.472|220730.944|124.194 +638265.504|220735.443|124.148 +638255.653|220744.368|123.975 +638245.868|220753.231|124.087 +638240.989|220757.651|124.084 +638236.075|220762.098|123.749 +638231.156|220766.548|123.417 +638226.227|220771.010|123.005 +638211.365|220784.446|120.914 +638163.313|220828.017|124.072 +638158.534|220832.348|124.420 +638134.769|220853.907|126.507 +638130.026|220858.202|126.459 +638120.525|220866.821|127.029 +638115.789|220871.116|127.090 +638110.979|220875.475|126.992 +638106.239|220879.772|127.071 +638101.612|220883.973|127.605 +638092.206|220892.504|128.007 +638082.794|220901.038|128.428 +638073.385|220909.573|128.605 +638068.828|220913.712|129.360 +638064.180|220917.927|129.534 +638059.538|220922.140|129.766 +638041.055|220938.904|130.750 +638036.498|220943.040|131.293 +638031.828|220947.274|131.128 +638027.211|220951.458|131.314 +638022.590|220955.649|131.503 +638017.984|220959.822|131.494 +638013.412|220963.971|131.698 +638008.791|220968.158|131.643 +638004.174|220972.340|131.622 +637994.908|220980.735|131.156 +637990.305|220984.904|130.994 +637985.709|220989.071|130.878 +637971.883|221001.589|130.199 +637967.323|221005.722|130.092 +637962.672|221009.931|129.504 +637958.115|221014.055|129.184 +637953.491|221018.240|128.803 +637944.341|221026.519|127.815 +637930.485|221039.052|125.950 +637926.011|221043.103|125.694 +637921.445|221047.236|125.233 +637907.826|221059.559|123.652 +637894.385|221071.727|122.652 +637881.074|221083.779|121.990 +637838.313|221122.577|125.166 +637833.964|221126.515|124.901 +637829.666|221130.410|124.904 +637825.423|221134.257|124.926 +637821.193|221138.091|125.029 +637816.980|221141.913|125.215 +637808.611|221149.500|125.428 +637804.438|221153.282|125.608 +637800.256|221157.071|125.538 +637796.071|221160.866|125.700 +637783.632|221172.143|125.846 +637771.291|221183.332|126.087 +637767.216|221187.030|126.136 +637763.070|221190.782|125.904 +637759.004|221194.470|126.023 +637754.941|221198.152|125.944 +637750.860|221201.852|125.806 +637746.788|221205.540|125.724 +637742.716|221209.231|125.657 +637738.714|221212.859|125.672 +637734.648|221216.544|125.435 +637730.627|221220.186|125.413 +637726.619|221223.819|125.447 +637722.614|221227.446|125.300 +637718.505|221231.168|124.950 +637714.631|221234.682|125.136 +637710.696|221238.248|125.099 +637706.761|221241.815|125.075 +637702.842|221245.369|125.121 +637698.901|221248.941|125.093 +637694.990|221252.486|124.993 +637691.092|221256.018|124.953 +637687.257|221259.496|124.965 +637683.435|221262.956|124.840 +637679.476|221266.540|124.392 +637675.864|221269.826|125.313 +637672.103|221273.236|125.450 +637668.491|221276.516|125.971 +637664.516|221280.110|125.115 +637660.679|221283.584|124.795 +637657.027|221286.898|125.194 +637631.122|221310.364|124.194 +637623.874|221316.936|124.182 +637620.354|221320.130|124.371 +637616.867|221323.288|124.505 +637821.199|221136.277|124.828 +637829.691|221128.572|124.837 +637833.882|221124.765|124.615 +637846.741|221113.094|124.651 +637872.271|221089.899|122.509 +637881.010|221081.968|122.338 +637885.423|221077.963|122.637 +637916.891|221049.443|125.041 +637921.405|221045.349|125.227 +637925.965|221041.216|125.685 +637948.977|221020.371|128.345 +637953.555|221016.223|128.769 +637958.179|221012.031|129.196 +637962.751|221007.883|129.351 +637967.479|221003.604|130.122 +637972.020|220999.483|130.153 +637981.283|220991.086|130.732 +637985.806|220986.983|130.720 +637990.473|220982.752|130.976 +637995.054|220978.595|131.049 +637999.742|220974.346|131.479 +638004.360|220970.158|131.515 +638018.274|220957.527|131.521 +638022.858|220953.363|131.442 +638027.528|220949.124|131.278 +638032.182|220944.899|131.351 +638036.800|220940.708|131.223 +638055.362|220923.834|129.555 +638060.111|220919.525|129.705 +638064.805|220915.263|129.522 +638069.468|220911.024|129.171 +638074.138|220906.784|128.848 +638093.041|220889.611|127.961 +638097.754|220885.329|127.681 +638112.073|220872.326|127.193 +638116.828|220868.007|126.946 +638121.620|220863.658|126.965 +638126.432|220859.287|126.809 +638131.172|220854.980|126.504 +638174.438|220815.670|123.734 +638223.420|220771.196|122.746 +638238.383|220757.633|123.938 +638243.329|220753.146|124.176 +638248.237|220748.690|124.045 +638253.232|220744.151|123.874 +638258.164|220739.680|124.023 +638268.067|220730.688|123.834 +638273.075|220726.144|123.847 +638278.019|220721.654|123.740 +638283.005|220717.134|124.103 +638338.180|220667.089|126.553 +638343.219|220662.517|126.764 +638348.269|220657.939|127.148 +638353.253|220653.418|127.330 +638358.328|220648.813|127.440 +638363.381|220644.235|127.977 +638388.652|220621.305|129.229 +638393.715|220616.708|129.431 +638398.781|220612.112|129.674 +638408.854|220602.971|130.174 +638413.896|220598.393|130.113 +638418.946|220593.808|130.260 +638424.024|220589.194|130.071 +638444.163|220570.900|129.808 +638449.244|220566.285|129.769 +638454.306|220561.682|129.345 +638459.329|220557.120|129.117 +638464.395|220552.514|128.790 +638469.412|220547.951|128.455 +638474.484|220543.343|128.248 +638479.550|220538.740|127.910 +638484.561|220534.183|127.394 +638489.621|220529.578|126.971 +638494.686|220524.975|126.608 +638499.749|220520.370|126.197 +638504.815|220515.767|125.785 +638509.881|220511.159|125.477 +638514.949|220506.553|125.172 +638520.058|220501.908|124.596 +638525.124|220497.303|124.212 +638530.189|220492.697|123.767 +638535.252|220488.091|123.222 +638540.367|220483.440|122.752 +638545.436|220478.832|122.347 +638550.553|220474.180|122.060 +638555.625|220469.569|121.682 +638560.694|220464.960|121.292 +638565.812|220460.306|120.844 +638570.932|220455.652|120.378 +638576.004|220451.040|119.988 +638581.079|220446.425|119.582 +638586.206|220441.768|119.430 +638591.284|220437.153|119.284 +638596.410|220432.496|118.982 +638601.534|220427.835|118.705 +638606.615|220423.221|118.479 +638611.745|220418.563|118.385 +638616.872|220413.903|118.266 +638621.953|220409.288|118.141 +638627.083|220404.625|117.872 +638632.161|220400.013|117.720 +638637.245|220395.395|117.534 +638642.374|220390.732|117.403 +638647.507|220386.072|117.217 +638652.591|220381.454|117.263 +638657.724|220376.793|117.190 +638662.854|220372.133|117.211 +638667.941|220367.515|117.208 +638673.074|220362.849|117.043 +638678.161|220358.228|116.882 +638683.251|220353.604|116.711 +638688.387|220348.941|116.690 +638693.529|220344.268|116.385 +638698.616|220339.647|116.425 +638703.752|220334.984|116.431 +638708.845|220330.357|116.272 +638713.942|220325.727|116.108 +638719.084|220321.058|116.028 +638724.174|220316.434|116.059 +638729.261|220311.816|116.309 +638734.400|220307.153|116.403 +638739.496|220302.523|116.361 +638744.553|220297.929|116.126 +638749.710|220293.242|115.736 +638754.764|220288.648|115.571 +638759.872|220284.006|115.355 +638765.005|220279.334|114.520 +638770.092|220274.704|113.700 +638775.222|220270.037|113.066 +638780.339|220265.389|112.874 +638785.350|220260.835|112.883 +638790.434|220256.227|113.541 +638795.500|220251.624|113.496 +638800.578|220247.012|113.252 +638805.729|220242.325|112.456 +638810.755|220237.753|112.282 +638815.824|220233.150|112.319 +638820.905|220228.535|112.145 +638825.947|220223.954|111.859 +638831.028|220219.337|111.749 +638836.060|220214.765|111.670 +638841.141|220210.153|111.630 +638846.158|220205.599|111.901 +638851.123|220201.094|112.231 +638856.195|220196.489|112.383 +638861.176|220191.969|112.514 +638866.214|220187.393|112.496 +638871.261|220182.806|112.368 +638876.217|220178.301|112.154 +638881.283|220173.696|111.795 +638886.303|220169.133|111.441 +638891.320|220164.573|111.194 +638896.340|220160.010|110.908 +638901.315|220155.490|110.673 +638906.313|220150.948|110.728 +638911.300|220146.419|110.387 +638916.308|220141.868|110.399 +638921.236|220137.391|110.228 +638926.205|220132.877|110.170 +638931.203|220128.341|110.405 +638936.111|220123.885|110.536 +638941.067|220119.386|110.728 +638945.980|220114.927|110.865 +638950.878|220110.483|111.176 +638955.847|220105.975|111.295 +638960.766|220101.507|111.414 +638965.698|220097.026|111.399 +638970.651|220092.527|111.207 +638975.512|220088.114|111.481 +638980.462|220083.618|111.362 +638985.345|220079.183|111.456 +638990.277|220074.706|111.575 +638995.190|220070.240|111.389 +639000.137|220065.744|110.926 +639005.139|220061.185|109.902 +639010.150|220056.622|108.875 +639015.072|220052.144|108.277 +639019.998|220047.670|108.162 +639024.881|220043.232|108.009 +639029.803|220038.760|107.973 +639034.601|220034.405|108.192 +639039.508|220029.952|108.347 +639044.355|220025.547|108.180 +639049.222|220021.128|108.293 +639054.120|220016.675|107.723 +639058.976|220012.261|107.546 +639063.764|220007.918|107.985 +639068.586|220003.541|108.140 +639073.430|219999.142|108.158 +639078.251|219994.759|107.945 +639083.183|219990.270|107.265 +639087.993|219985.902|107.229 +639092.858|219981.485|107.162 +639097.710|219977.072|106.808 +639102.474|219972.744|106.799 +639107.326|219968.342|106.924 +639126.657|219950.765|105.495 +639131.494|219946.366|105.080 +639136.282|219942.014|104.696 +639141.147|219937.594|104.501 +639145.957|219933.220|104.025 +639150.730|219928.883|103.821 +639155.558|219924.497|103.611 +639160.350|219920.144|103.352 +639165.132|219915.795|103.151 +639169.920|219911.445|102.959 +639174.660|219907.138|102.767 +639179.473|219902.765|102.459 +639184.240|219898.433|102.142 +639189.062|219894.044|101.477 +639193.951|219889.597|100.743 +639198.715|219885.263|100.191 +639203.485|219880.929|99.981 +639208.264|219876.585|99.712 +639212.946|219872.333|99.780 +639217.579|219868.130|99.865 +639222.300|219863.845|100.048 +639227.003|219859.568|99.716 +639231.789|219855.219|99.234 +639236.568|219850.872|98.804 +639241.268|219846.596|98.265 +639246.026|219842.271|97.722 +639250.875|219837.857|96.948 +639255.578|219833.578|96.472 +639260.361|219829.228|95.866 +639265.061|219824.955|95.479 +639269.782|219820.663|95.284 +639279.188|219812.111|94.293 +639302.573|219790.860|92.888 +639334.619|219761.761|93.144 +639348.238|219749.398|93.491 +639352.627|219745.423|94.336 +639357.065|219741.397|94.662 +639361.533|219737.343|94.851 +639379.260|219721.262|96.000 +639383.710|219717.220|96.091 +639388.151|219713.185|95.997 +639397.088|219705.068|95.860 +639405.827|219697.143|96.509 +639410.048|219693.318|97.305 +639414.367|219689.404|97.893 +639418.604|219685.564|98.405 +639422.917|219681.653|98.798 +639418.881|219683.396|98.515 +639414.690|219687.188|98.018 +639410.505|219690.974|97.497 +639406.284|219694.793|96.920 +639397.780|219702.489|96.085 +639384.664|219714.373|96.189 +639380.300|219718.330|96.149 +639371.601|219726.203|95.421 +639353.995|219742.150|94.689 +639345.309|219750.005|93.278 +639331.843|219762.206|93.141 +639322.680|219770.515|93.592 +639318.279|219774.492|92.864 +639290.487|219799.702|94.561 +639285.879|219803.878|94.263 +639267.133|219820.880|95.348 +639262.403|219825.168|95.561 +639257.657|219829.472|95.896 +639252.884|219833.806|96.430 +639243.274|219842.533|97.646 +639238.458|219846.904|98.207 +639233.602|219851.308|98.719 +639228.826|219855.642|99.094 +639224.016|219860.007|99.703 +639219.246|219864.332|99.783 +639214.506|219868.624|99.691 +639209.721|219872.958|99.566 +639204.960|219877.274|99.655 +639200.126|219881.654|99.895 +639195.267|219886.065|100.340 +639190.348|219890.530|100.889 +639185.456|219894.974|101.627 +639180.533|219899.439|102.242 +639175.672|219903.850|102.495 +639170.813|219908.254|102.751 +639165.915|219912.695|102.946 +639161.066|219917.090|103.190 +639156.122|219921.577|103.434 +639151.276|219925.969|103.696 +639146.332|219930.453|103.980 +639141.385|219934.939|104.318 +639136.493|219939.374|104.653 +639131.561|219943.849|104.952 +639126.575|219948.372|105.309 +639121.585|219952.901|106.083 +639116.626|219957.403|106.680 +639101.773|219970.863|106.906 +639096.866|219975.310|106.830 +639091.873|219979.836|107.049 +639086.944|219984.305|107.177 +639081.979|219988.807|107.253 +639076.923|219993.397|108.098 +639071.909|219997.942|108.195 +639066.956|220002.431|108.253 +639062.015|220006.900|107.777 +639057.095|220011.356|107.570 +639052.087|220015.894|107.729 +639047.043|220020.472|108.253 +639042.062|220024.987|108.232 +639032.080|220034.027|107.988 +639027.103|220038.535|108.000 +639022.080|220043.086|108.006 +639017.041|220047.655|108.201 +639012.012|220052.214|108.320 +639006.934|220056.823|108.969 +639001.811|220061.483|110.121 +638996.665|220066.156|111.033 +638991.664|220070.691|111.520 +638986.616|220075.269|111.536 +638981.584|220079.823|111.377 +638976.533|220084.401|111.456 +638971.522|220088.937|111.112 +638966.505|220093.484|111.417 +638961.409|220098.105|111.554 +638956.395|220102.647|111.328 +638951.372|220107.197|111.246 +638946.367|220111.727|110.947 +638941.314|220116.302|110.676 +638936.254|220120.883|110.487 +638931.237|220125.427|110.377 +638926.189|220129.999|110.121 +638921.157|220134.559|110.268 +638916.076|220139.168|110.463 +638911.010|220143.755|110.454 +638905.987|220148.306|110.582 +638900.879|220152.936|110.591 +638895.804|220157.535|110.810 +638890.729|220162.138|111.088 +638885.657|220166.737|111.359 +638880.588|220171.337|111.642 +638875.465|220175.982|112.020 +638870.402|220180.572|112.279 +638865.299|220185.196|112.426 +638860.255|220189.765|112.438 +638855.217|220194.328|112.380 +638850.145|220198.915|112.066 +638845.073|220203.505|111.810 +638840.050|220208.050|111.523 +638834.966|220212.658|111.554 +638829.882|220217.264|111.566 +638824.791|220221.876|111.700 +638819.695|220226.493|111.987 +638814.657|220231.062|112.197 +638809.533|220235.701|112.151 +638804.504|220240.255|112.185 +638799.399|220244.888|112.886 +638794.250|220249.561|113.523 +638789.179|220254.157|113.611 +638784.128|220258.723|113.133 +638779.071|220263.301|112.877 +638773.999|220267.894|112.999 +638768.918|220272.503|113.392 +638763.780|220277.169|114.209 +638758.695|220281.784|114.864 +638753.566|220286.438|115.498 +638748.506|220291.020|115.538 +638743.440|220295.613|115.833 +638738.332|220300.243|116.041 +638733.275|220304.821|116.062 +638728.176|220309.442|116.004 +638723.128|220314.011|115.775 +638718.075|220318.583|115.730 +638712.975|220323.203|115.754 +638707.873|220327.830|115.961 +638702.819|220332.408|116.163 +638697.720|220337.029|116.291 +638692.621|220341.647|116.297 +638687.521|220346.268|116.510 +638682.428|220350.882|116.562 +638677.381|220355.454|116.623 +638672.284|220360.072|116.781 +638667.191|220364.687|116.894 +638662.144|220369.259|116.979 +638657.005|220373.913|116.976 +638651.912|220378.528|117.053 +638646.867|220383.097|117.107 +638641.777|220387.708|117.223 +638636.687|220392.323|117.327 +638631.597|220396.935|117.455 +638626.510|220401.543|117.580 +638621.419|220406.155|117.772 +638616.332|220410.767|117.949 +638611.242|220415.378|118.293 +638606.155|220419.990|118.528 +638601.068|220424.598|118.738 +638595.984|220429.210|118.988 +638590.897|220433.819|119.174 +638585.809|220438.427|119.375 +638580.725|220443.036|119.625 +638575.693|220447.599|119.985 +638570.563|220452.250|120.393 +638565.485|220456.855|120.817 +638560.456|220461.415|121.274 +638555.378|220466.021|121.716 +638550.300|220470.623|122.073 +638545.268|220475.186|122.316 +638540.147|220479.831|122.807 +638535.069|220484.434|123.176 +638530.049|220488.988|123.813 +638524.974|220493.590|124.185 +638519.902|220498.189|124.566 +638514.834|220502.786|125.099 +638509.759|220507.385|125.489 +638504.729|220511.945|125.712 +638499.658|220516.545|126.114 +638494.586|220521.141|126.517 +638489.563|220525.695|126.885 +638484.494|220530.291|127.306 +638479.474|220534.842|127.818 +638469.373|220543.995|128.446 +638464.343|220548.552|128.690 +638454.242|220557.705|129.269 +638449.225|220562.256|129.775 +638444.181|220566.821|129.735 +638424.015|220585.082|130.074 +638418.974|220589.648|130.156 +638413.929|220594.217|130.263 +638408.922|220598.749|130.165 +638403.923|220603.276|130.266 +638398.848|220607.866|129.924 +638393.809|220612.420|129.440 +638388.750|220617.001|129.409 +638373.665|220630.650|128.699 +638368.663|220635.173|128.208 +638363.579|220639.769|128.004 +638358.575|220644.296|127.529 +638353.530|220648.859|127.248 +638348.492|220653.418|127.071 +638343.545|220657.896|126.843 +638328.448|220671.545|125.627 +638323.471|220676.053|125.739 +638318.478|220680.573|125.685 +638293.487|220703.174|123.929 +638288.522|220707.667|123.810 +638283.588|220712.138|124.039 +638278.601|220716.649|123.755 +638263.763|220730.082|123.795 +638258.856|220734.526|123.901 +638253.921|220738.991|123.770 +638249.005|220743.441|123.850 +638244.152|220747.846|124.545 +638239.166|220752.351|123.984 +638229.293|220761.281|123.450 +638209.390|220779.261|120.445 +638156.370|220827.310|124.212 +638137.359|220844.544|126.169 +638127.859|220853.151|126.718 +638123.083|220857.476|126.797 +638118.325|220861.786|127.044 +638113.600|220866.066|127.184 +638108.864|220870.354|127.254 +638104.063|220874.701|127.233 +638085.284|220891.715|128.239 +638080.599|220895.954|128.443 +638075.939|220900.179|128.815 +638071.251|220904.425|129.022 +638066.597|220908.646|129.443 +638061.961|220912.846|129.690 +638057.300|220917.068|129.802 +638052.607|220921.320|130.034 +638047.983|220925.505|130.092 +638034.111|220938.075|130.985 +638024.870|220946.441|131.305 +638015.662|220954.784|131.576 +638006.448|220963.123|131.592 +638001.805|220967.323|131.412 +637997.203|220971.493|131.485 +637987.949|220979.860|130.848 +637983.374|220984.002|130.854 +637978.781|220988.156|130.790 +637969.622|220996.441|130.287 +637965.019|221000.605|129.933 +637960.392|221004.786|129.482 +637942.068|221021.355|128.056 +637923.691|221037.958|125.675 +637919.131|221042.082|125.246 +637896.552|221062.488|123.036 +637887.594|221070.587|122.265 +637878.809|221078.536|122.185 +637823.366|221128.755|124.810 +637819.111|221132.605|124.791 +637814.966|221136.363|125.044 +637810.726|221140.200|125.127 +637806.572|221143.958|125.139 +637802.371|221147.759|125.203 +637798.229|221151.511|125.297 +637794.093|221155.254|125.435 +637789.948|221159.009|125.535 +637785.796|221162.771|125.630 +637777.591|221170.193|125.621 +637765.375|221181.257|125.968 +637761.214|221185.018|125.675 +637757.188|221188.666|125.956 +637749.098|221195.988|125.953 +637745.078|221199.624|125.864 +637741.015|221203.303|125.825 +637736.986|221206.948|125.715 +637732.993|221210.560|125.560 +637729.030|221214.148|125.544 +637725.043|221217.751|125.450 +637721.041|221221.375|125.294 +637717.064|221224.974|125.258 +637713.147|221228.519|125.270 +637709.243|221232.052|125.352 +637705.301|221235.615|125.072 +637701.360|221239.178|124.822 +637697.614|221242.574|125.133 +637693.710|221246.106|125.047 +637689.821|221249.624|125.038 +637686.011|221253.074|125.142 +637682.210|221256.512|125.087 +637678.369|221259.984|124.889 +637674.489|221263.498|124.746 +637670.704|221266.921|124.798 +637666.955|221270.313|124.782 +637663.266|221273.654|124.807 +637659.402|221277.147|124.575 +637655.726|221280.475|124.673 +637652.138|221283.728|125.118 +637648.474|221287.047|125.282 +637644.838|221290.336|125.358 +637615.785|221316.622|124.907 +637816.471|221132.464|124.648 +637820.830|221128.517|124.904 +637842.184|221109.129|124.212 +637846.564|221105.160|124.432 +637855.132|221097.373|123.539 +637859.454|221093.450|123.539 +637894.613|221061.540|122.694 +637899.091|221057.480|122.853 +637903.632|221053.362|123.100 +637922.012|221036.717|125.416 +637935.981|221024.074|127.590 +637940.534|221019.944|127.827 +637945.186|221015.732|128.333 +637959.014|221003.198|129.324 +637963.669|220998.980|129.656 +637968.351|220994.740|130.183 +637972.953|220990.564|130.278 +637977.568|220986.383|130.473 +637982.219|220982.164|130.607 +637996.215|220969.472|131.403 +638000.833|220965.287|131.415 +638005.497|220961.057|131.433 +638014.811|220952.608|131.464 +638019.435|220948.414|131.305 +638024.144|220944.140|131.390 +638028.716|220939.992|130.939 +638047.367|220923.066|130.019 +638052.079|220918.790|129.912 +638056.758|220914.544|129.601 +638061.461|220910.277|129.467 +638070.824|220901.776|128.986 +638080.258|220893.214|128.361 +638084.979|220888.929|128.105 +638094.477|220880.309|127.669 +638103.959|220871.704|127.199 +638113.579|220862.978|127.077 +638118.325|220858.671|126.757 +638123.156|220854.291|126.712 +638127.920|220849.966|126.578 +638137.585|220841.197|126.239 +638142.303|220836.905|125.447 +638147.052|220832.592|124.859 +638156.693|220823.838|124.103 +638176.161|220806.181|123.834 +638210.161|220775.311|120.927 +638215.212|220770.742|121.920 +638235.200|220752.643|123.871 +638245.109|220743.658|124.020 +638250.041|220739.183|123.652 +638254.988|220734.700|123.962 +638259.990|220730.161|123.840 +638274.843|220716.689|123.584 +638279.890|220712.120|124.039 +638284.871|220707.600|123.844 +638289.879|220703.058|123.944 +638309.928|220684.889|124.785 +638320.069|220675.702|125.627 +638325.062|220671.179|125.727 +638340.210|220657.451|126.568 +638345.264|220652.873|126.995 +638350.296|220648.313|127.135 +638365.414|220634.615|128.062 +638370.492|220630.013|128.345 +638390.749|220611.667|129.546 +638395.815|220607.073|129.815 +638400.832|220602.529|130.040 +638405.892|220597.945|130.266 +638410.927|220593.376|130.077 +638415.984|220588.795|130.321 +638421.065|220584.186|130.144 +638426.112|220579.611|130.202 +638441.252|220565.877|129.708 +638451.414|220556.659|129.525 +638466.572|220542.907|128.528 +638471.601|220538.344|128.406 +638476.663|220533.748|128.007 +638481.729|220529.148|127.620 +638486.789|220524.555|127.090 +638496.927|220515.356|126.379 +638501.992|220510.756|126.017 +638507.061|220506.157|125.663 +638512.133|220501.554|125.456 +638517.245|220496.912|124.938 +638522.310|220492.313|124.478 +638527.379|220487.713|124.036 +638532.445|220483.114|123.569 +638537.514|220478.512|123.078 +638542.583|220473.909|122.606 +638547.655|220469.307|122.313 +638552.775|220464.658|121.917 +638557.850|220460.056|121.588 +638562.919|220455.450|121.049 +638568.043|220450.802|120.613 +638573.069|220446.239|120.287 +638578.193|220441.588|119.832 +638583.319|220436.937|119.531 +638588.352|220432.371|119.265 +638593.478|220427.717|119.076 +638598.559|220423.108|118.881 +638603.643|220418.496|118.625 +638608.773|220413.845|118.467 +638613.854|220409.233|118.354 +638618.938|220404.622|118.147 +638624.071|220399.967|117.897 +638629.152|220395.359|117.671 +638634.236|220390.744|117.461 +638639.369|220386.084|117.074 +638644.456|220381.472|116.894 +638649.543|220376.861|116.900 +638654.630|220372.249|116.906 +638659.718|220367.634|116.803 +638664.808|220363.020|116.684 +638669.944|220358.359|116.632 +638674.985|220353.787|116.458 +638680.075|220349.169|116.367 +638685.214|220344.512|116.434 +638690.259|220339.937|116.263 +638695.352|220335.316|116.099 +638700.451|220330.692|115.846 +638705.499|220326.111|115.678 +638710.598|220321.487|115.462 +638715.694|220316.867|115.385 +638720.742|220312.292|115.425 +638725.832|220307.677|115.660 +638730.925|220303.059|115.708 +638735.976|220298.481|115.690 +638741.078|220293.854|115.638 +638746.135|220289.270|115.489 +638751.197|220284.674|115.135 +638756.327|220280.007|114.224 +638761.405|220275.395|113.602 +638766.483|220270.784|113.057 +638771.546|220266.187|112.901 +638776.609|220261.597|112.822 +638781.650|220257.031|113.361 +638786.701|220252.453|113.590 +638791.769|220247.857|113.447 +638796.872|220243.218|112.615 +638801.919|220238.633|112.002 +638806.988|220234.037|111.981 +638812.005|220229.486|112.066 +638817.040|220224.917|111.840 +638822.128|220220.300|111.563 +638827.163|220215.731|111.392 +638832.195|220211.168|111.310 +638837.221|220206.611|111.383 +638842.244|220202.054|111.499 +638847.261|220197.510|111.764 +638852.230|220193.008|112.069 +638857.253|220188.457|112.273 +638862.288|220183.888|112.289 +638867.278|220179.362|112.267 +638872.346|220174.763|111.856 +638877.348|220170.224|111.716 +638882.420|220165.618|111.301 +638887.388|220161.110|111.027 +638892.457|220156.511|110.749 +638897.471|220151.960|110.579 +638902.488|220147.407|110.390 +638907.502|220142.862|110.332 +638912.446|220138.378|110.524 +638917.472|220133.819|110.335 +638922.459|220129.292|110.033 +638927.412|220124.806|110.219 +638937.382|220115.765|110.426 +638942.332|220111.279|110.664 +638947.273|220106.804|111.085 +638952.229|220102.311|111.289 +638957.096|220097.907|111.987 +638962.132|220093.332|111.371 +638967.021|220088.897|111.298 +638972.025|220084.356|111.078 +638976.936|220079.906|111.377 +638981.892|220075.410|111.210 +638986.817|220070.947|111.405 +638991.743|220066.473|111.072 +638996.745|220061.931|110.521 +639001.777|220057.350|109.225 +639006.776|220052.806|108.305 +639011.695|220048.343|108.210 +639016.676|220043.823|108.027 +639021.562|220039.391|107.842 +639026.466|220034.947|107.979 +639031.334|220030.537|108.454 +639041.096|220021.682|108.326 +639046.022|220017.211|107.918 +639050.929|220012.755|107.671 +639055.830|220008.311|107.540 +639060.716|220003.879|107.552 +639065.477|219999.572|108.235 +639070.366|219995.137|108.256 +639075.179|219990.773|108.131 +639080.175|219986.231|107.314 +639084.988|219981.866|107.250 +639089.877|219977.428|106.982 +639094.689|219973.064|106.939 +639099.505|219968.696|106.915 +639113.983|219955.565|106.726 +639118.921|219951.075|105.857 +639123.761|219946.677|105.394 +639128.605|219942.276|104.928 +639133.433|219937.893|104.617 +639138.270|219933.501|104.272 +639143.058|219929.148|103.922 +639147.853|219924.792|103.580 +639152.684|219920.406|103.352 +639157.430|219916.097|103.044 +639162.206|219911.762|102.916 +639167.022|219907.385|102.517 +639171.764|219903.082|102.325 +639176.577|219898.711|102.014 +639181.381|219894.343|101.453 +639186.184|219889.972|100.581 +639191.015|219885.586|100.234 +639195.752|219881.282|99.874 +639200.492|219876.975|99.508 +639205.195|219872.708|99.429 +639209.904|219868.435|99.328 +639214.607|219864.165|99.280 +639219.310|219859.897|99.255 +639223.998|219855.642|99.039 +639228.698|219851.369|98.454 +639233.493|219847.010|97.932 +639238.208|219842.728|97.609 +639247.632|219834.163|96.494 +639252.338|219829.884|95.997 +639257.023|219825.632|95.677 +639261.641|219821.435|95.454 +639266.246|219817.256|95.354 +639275.619|219808.737|94.250 +639280.206|219804.576|94.308 +639284.790|219800.412|94.116 +639289.338|219796.292|94.442 +639298.747|219787.730|92.528 +639303.213|219783.679|92.790 +639321.220|219767.351|93.549 +639325.753|219763.230|93.257 +639330.255|219759.146|93.168 +639334.726|219755.095|93.531 +639339.170|219751.059|93.501 +639343.526|219747.115|94.220 +639361.030|219731.253|95.750 +639369.848|219723.255|96.003 +639378.535|219715.376|96.451 +639382.906|219711.411|96.436 +639387.365|219707.357|95.997 +639391.730|219703.398|96.049 +639396.110|219699.423|96.046 +639404.617|219691.718|97.064 +639408.847|219687.883|97.567 +639413.075|219684.055|98.094 +639417.248|219680.275|98.655 +639416.254|219678.611|98.637 +639412.005|219682.449|98.146 +639407.771|219686.271|97.585 +639403.538|219690.093|97.045 +639399.249|219693.970|96.543 +639395.083|219697.722|95.439 +639386.079|219705.879|96.308 +639381.598|219709.939|96.552 +639377.179|219713.934|96.500 +639372.777|219717.915|96.378 +639368.406|219721.868|96.128 +639363.978|219725.874|95.921 +639359.531|219729.897|95.811 +639337.536|219749.770|93.757 +639333.202|219753.680|92.882 +639328.627|219757.820|93.022 +639324.049|219761.968|93.208 +639319.407|219766.174|93.760 +639314.932|219770.222|93.699 +639305.809|219778.479|94.019 +639282.855|219799.254|94.330 +639273.635|219807.600|94.351 +639268.959|219811.836|94.772 +639264.244|219816.110|95.165 +639259.562|219820.346|95.375 +639254.947|219824.525|95.518 +639250.269|219828.762|95.753 +639245.493|219833.093|96.308 +639240.783|219837.357|96.777 +639231.301|219845.953|97.600 +639226.500|219850.302|98.091 +639221.758|219854.603|98.591 +639217.003|219858.910|98.862 +639212.281|219863.183|98.935 +639207.563|219867.456|99.039 +639202.827|219871.745|99.261 +639198.078|219876.043|99.261 +639193.323|219880.353|99.667 +639188.501|219884.717|99.865 +639183.719|219889.049|100.164 +639178.857|219893.462|101.044 +639173.986|219897.879|101.657 +639169.158|219902.252|102.011 +639164.358|219906.599|102.218 +639159.487|219911.015|102.593 +639154.677|219915.371|102.913 +639149.840|219919.751|103.093 +639145.039|219924.101|103.404 +639140.190|219928.496|103.733 +639135.286|219932.937|104.111 +639130.394|219937.369|104.446 +639125.499|219941.806|104.842 +639120.594|219946.250|105.321 +639115.705|219950.679|105.732 +639091.181|219972.893|106.878 +639086.265|219977.343|106.887 +639081.370|219981.778|107.156 +639076.453|219986.228|107.220 +639071.467|219990.748|107.890 +639066.532|219995.220|108.162 +639061.637|219999.642|107.692 +639056.729|220004.080|107.348 +639051.767|220008.573|107.506 +639046.799|220013.075|107.765 +639041.828|220017.577|108.058 +639026.920|220031.070|108.171 +639021.973|220035.545|107.881 +639017.011|220040.035|107.799 +639012.018|220044.558|108.003 +639006.983|220049.118|108.183 +639001.996|220053.632|108.381 +638996.854|220058.304|109.698 +638991.746|220062.943|110.743 +638986.699|220067.515|111.185 +638981.660|220072.075|111.078 +638976.652|220076.608|111.164 +638971.632|220081.149|110.905 +638966.573|220085.730|111.100 +638961.513|220090.314|111.331 +638956.481|220094.868|111.271 +638951.448|220099.422|111.249 +638946.337|220104.052|111.591 +638941.390|220108.517|110.582 +638936.336|220113.086|110.298 +638931.274|220117.667|110.124 +638926.214|220122.245|109.957 +638921.148|220126.830|109.871 +638916.037|220131.463|110.414 +638910.968|220136.050|110.408 +638905.884|220140.646|110.012 +638900.800|220145.252|110.320 +638895.670|220149.897|110.569 +638890.610|220154.478|110.588 +638885.489|220159.117|110.816 +638880.360|220163.762|111.173 +638875.236|220168.404|111.511 +638870.121|220173.037|111.749 +638865.010|220177.673|112.039 +638859.956|220182.255|112.173 +638854.820|220186.903|112.066 +638849.745|220191.496|111.847 +638844.674|220196.083|111.502 +638839.565|220200.707|111.051 +638834.423|220205.361|111.133 +638829.345|220209.961|111.021 +638824.203|220214.618|111.194 +638819.067|220219.273|111.313 +638813.916|220223.942|111.752 +638808.786|220228.593|111.840 +638803.715|220233.187|111.764 +638798.591|220237.826|111.767 +638793.391|220242.544|112.414 +638788.285|220247.177|113.188 +638783.104|220251.877|113.557 +638777.989|220256.507|113.529 +638772.902|220261.106|112.804 +638767.739|220265.782|112.804 +638762.615|220270.424|113.041 +638757.501|220275.060|113.160 +638752.322|220279.757|113.730 +638747.189|220284.415|114.459 +638742.062|220289.066|115.090 +638736.899|220293.748|115.425 +638731.797|220298.365|115.321 +638726.694|220302.989|115.291 +638721.546|220307.649|115.209 +638716.447|220312.267|115.135 +638711.345|220316.891|115.196 +638706.194|220321.558|115.315 +638701.091|220326.181|115.455 +638695.937|220330.851|115.769 +638690.838|220335.472|115.922 +638685.738|220340.096|116.144 +638680.593|220344.753|116.153 +638675.448|220349.416|116.327 +638670.352|220354.031|116.330 +638665.256|220358.649|116.480 +638660.114|220363.303|116.492 +638655.021|220367.918|116.492 +638649.927|220372.529|116.498 +638644.788|220377.190|116.702 +638639.695|220381.807|117.095 +638634.553|220386.468|117.452 +638629.463|220391.080|117.680 +638624.373|220395.694|117.900 +638619.289|220400.303|118.101 +638614.153|220404.957|118.296 +638609.063|220409.566|118.418 +638603.976|220414.177|118.543 +638598.888|220418.786|118.708 +638593.801|220423.398|118.988 +638588.714|220428.006|119.195 +638583.581|220432.657|119.454 +638578.546|220437.223|119.759 +638573.465|220441.832|120.131 +638568.384|220446.437|120.567 +638563.306|220451.043|120.994 +638558.228|220455.648|121.442 +638553.199|220460.208|121.878 +638548.121|220464.814|122.243 +638543.043|220469.416|122.573 +638538.014|220473.976|123.008 +638532.939|220478.579|123.392 +638527.919|220483.132|124.060 +638522.893|220487.689|124.444 +638517.821|220492.289|124.874 +638512.801|220496.842|125.450 +638507.768|220501.402|125.605 +638502.696|220506.002|125.922 +638497.670|220510.555|126.325 +638492.647|220515.112|126.654 +638487.621|220519.669|127.010 +638482.644|220524.183|127.349 +638477.627|220528.734|127.888 +638472.607|220533.290|128.266 +638467.580|220537.847|128.562 +638462.548|220542.410|128.754 +638452.542|220551.484|129.324 +638447.512|220556.044|129.571 +638437.524|220565.093|129.592 +638422.513|220578.700|130.122 +638417.566|220583.186|130.171 +638412.521|220587.755|130.235 +638407.516|220592.288|130.217 +638402.560|220596.777|130.208 +638397.543|220601.322|129.976 +638392.569|220605.827|129.732 +638387.552|220610.368|129.592 +638382.532|220614.916|129.400 +638372.492|220623.999|128.492 +638367.554|220628.470|128.217 +638362.525|220633.024|128.047 +638357.526|220637.547|127.675 +638352.518|220642.080|127.199 +638347.526|220646.600|126.977 +638342.539|220651.117|126.864 +638337.531|220655.649|126.480 +638332.587|220660.127|126.358 +638327.561|220664.675|125.831 +638322.608|220669.158|125.645 +638317.634|220673.660|125.212 +638307.655|220682.694|124.721 +638287.812|220700.656|123.700 +638282.853|220705.152|123.655 +638272.968|220714.104|123.499 +638268.049|220718.560|123.429 +638263.163|220722.992|123.722 +638258.268|220727.430|123.962 +638253.330|220731.901|123.752 +638248.386|220736.379|123.548 +638243.503|220740.808|123.938 +638238.654|220745.206|124.206 +638218.848|220763.122|122.164 +638213.941|220767.566|122.027 +638175.155|220802.728|123.591 +638151.014|220824.610|124.395 +638141.477|220833.260|125.310 +638136.747|220837.558|126.053 +638132.028|220841.837|126.544 +638127.200|220846.214|126.596 +638122.418|220850.545|126.648 +638117.654|220854.864|126.846 +638098.595|220872.134|127.428 +638093.855|220876.426|127.547 +638089.073|220880.760|127.711 +638084.361|220885.027|127.711 +638079.682|220889.273|128.294 +638074.955|220893.559|128.547 +638070.322|220897.759|129.138 +638060.918|220906.278|129.424 +638051.494|220914.815|129.647 +638046.876|220919.006|130.049 +638042.124|220923.301|129.656 +638037.510|220927.489|130.119 +638028.219|220935.911|130.720 +638023.657|220940.047|131.256 +638019.002|220944.262|131.238 +638014.314|220948.511|131.332 +638009.666|220952.720|131.390 +638005.070|220956.884|131.467 +638000.388|220961.124|131.363 +637977.165|220982.140|130.503 +637972.584|220986.285|130.238 +637967.942|220990.491|130.214 +637963.273|220994.713|129.778 +637958.624|220998.916|129.214 +637954.071|221003.040|129.187 +637949.477|221007.194|128.973 +637944.838|221011.391|128.525 +637935.591|221019.749|127.324 +637931.064|221023.849|127.276 +637907.845|221044.828|123.533 +637898.740|221053.061|122.688 +637876.371|221073.306|121.756 +637828.980|221116.252|124.389 +637824.750|221120.089|124.697 +637807.794|221135.445|124.977 +637803.554|221139.283|124.852 +637799.336|221143.108|125.063 +637795.148|221146.897|124.971 +637790.957|221150.694|125.093 +637782.669|221158.202|125.371 +637770.291|221169.406|125.660 +637762.016|221176.892|125.678 +637757.895|221180.620|125.553 +637753.887|221184.253|125.919 +637745.712|221191.644|125.822 +637737.598|221198.984|125.587 +637733.535|221202.660|125.575 +637729.518|221206.293|125.547 +637721.489|221213.553|125.349 +637717.551|221217.117|125.258 +637713.589|221220.704|125.288 +637709.563|221224.340|125.090 +637705.628|221227.900|125.051 +637690.046|221241.994|124.828 +637686.084|221245.576|124.535 +637682.344|221248.962|124.938 +637678.494|221252.446|124.904 +637674.654|221255.915|124.724 +637670.893|221259.322|124.849 +637667.095|221262.757|124.855 +637663.294|221266.196|124.865 +637659.472|221269.649|124.593 +637655.759|221273.008|124.551 +637651.986|221276.419|124.496 +637648.209|221279.832|124.240 +637644.564|221283.130|124.282 +637640.989|221286.370|124.804 +637637.398|221289.623|125.078 +637633.765|221292.911|125.191 +637626.559|221299.428|125.300 +637619.409|221305.902|125.441 +637615.711|221309.240|124.987 +637612.151|221312.458|124.846 +637820.260|221121.504|124.855 +637824.500|221117.660|124.590 +637828.706|221113.841|124.197 +637841.697|221102.057|124.109 +637846.019|221098.138|124.075 +637871.912|221074.631|122.009 +637876.258|221070.687|121.692 +637894.241|221054.390|122.557 +637917.303|221033.523|125.816 +637921.884|221029.372|125.840 +637926.501|221025.193|126.632 +637949.681|221004.207|128.986 +637958.926|220995.828|129.284 +637963.611|220991.585|129.821 +637968.268|220987.370|130.217 +637972.910|220983.158|130.284 +637982.268|220974.681|130.878 +637991.604|220966.220|131.156 +637996.292|220961.971|131.290 +638000.976|220957.725|131.430 +638005.643|220953.495|131.482 +638010.273|220949.291|131.336 +638014.970|220945.030|131.311 +638019.667|220940.772|131.302 +638024.318|220936.551|131.022 +638028.951|220932.344|130.656 +638033.605|220928.120|130.439 +638043.024|220919.573|130.125 +638061.833|220902.504|129.187 +638066.621|220898.161|129.327 +638071.337|220893.882|128.995 +638075.970|220889.672|128.464 +638080.737|220885.344|128.175 +638090.213|220876.743|127.586 +638095.007|220872.396|127.532 +638109.281|220859.439|126.724 +638114.146|220855.029|126.898 +638118.913|220850.704|126.757 +638123.787|220846.284|126.675 +638128.609|220841.907|126.617 +638142.916|220828.913|124.926 +638167.178|220806.898|123.978 +638216.031|220762.564|122.103 +638221.027|220758.044|122.646 +638231.043|220748.973|123.658 +638236.014|220744.468|124.103 +638250.873|220730.990|123.645 +638255.802|220726.522|123.770 +638260.816|220721.974|123.795 +638265.763|220717.487|123.667 +638275.708|220708.465|123.499 +638280.710|220703.927|123.517 +638285.721|220699.385|123.627 +638290.705|220694.871|123.999 +638320.932|220667.479|125.688 +638325.894|220662.977|125.450 +638331.033|220658.329|126.212 +638341.125|220649.182|126.779 +638346.157|220644.622|126.931 +638351.198|220640.053|127.236 +638356.298|220635.435|127.669 +638366.417|220626.267|128.281 +638371.507|220621.655|128.754 +638376.527|220617.104|128.906 +638386.686|220607.899|129.696 +638391.697|220603.358|129.787 +638396.803|220598.728|129.930 +638401.871|220594.135|130.299 +638406.910|220589.566|130.135 +638412.003|220584.945|130.150 +638417.047|220580.370|130.168 +638422.089|220575.798|130.156 +638427.167|220571.189|129.921 +638432.202|220566.620|129.845 +638447.448|220552.788|129.623 +638452.517|220548.186|129.315 +638462.661|220538.981|128.766 +638467.736|220534.375|128.644 +638477.867|220525.177|127.843 +638482.976|220520.537|127.330 +638488.042|220515.938|126.962 +638493.114|220511.336|126.672 +638498.182|220506.733|126.358 +638503.294|220502.091|125.931 +638508.369|220497.485|125.749 +638513.486|220492.840|125.435 +638518.549|220488.244|124.852 +638523.618|220483.641|124.499 +638528.733|220478.996|124.014 +638533.795|220474.394|123.377 +638538.867|220469.791|123.042 +638543.982|220465.143|122.548 +638549.057|220460.537|122.243 +638554.177|220455.889|121.875 +638559.295|220451.241|121.393 +638564.370|220446.632|120.951 +638569.445|220442.027|120.512 +638574.568|220437.373|120.113 +638579.643|220432.764|119.729 +638584.770|220428.110|119.418 +638589.900|220423.455|119.165 +638594.981|220418.844|118.948 +638600.111|220414.189|118.790 +638605.241|220409.535|118.577 +638610.276|220404.966|118.555 +638615.406|220400.312|118.433 +638620.971|220395.264|118.199 +638625.616|220391.043|117.912 +638630.749|220386.386|117.687 +638635.836|220381.768|117.382 +638640.924|220377.153|117.117 +638646.059|220372.490|116.806 +638651.147|220367.869|116.489 +638656.237|220363.251|116.245 +638661.376|220358.588|116.077 +638666.463|220353.976|116.141 +638671.553|220349.358|116.172 +638676.643|220344.741|116.074 +638681.736|220340.120|115.919 +638686.830|220335.502|115.891 +638691.972|220330.836|115.693 +638697.019|220326.251|115.455 +638702.118|220321.625|115.248 +638707.215|220317.001|115.151 +638712.311|220312.377|115.065 +638717.361|220307.799|115.059 +638722.458|220303.175|115.044 +638727.505|220298.597|115.084 +638732.601|220293.976|115.181 +638737.719|220289.328|114.596 +638742.739|220284.768|114.114 +638747.857|220280.123|113.657 +638752.926|220275.520|113.258 +638757.988|220270.924|113.023 +638763.103|220266.285|112.859 +638768.117|220261.737|112.764 +638773.149|220257.181|113.489 +638778.251|220252.554|113.627 +638783.275|220247.997|113.398 +638788.386|220243.349|112.310 +638793.431|220238.765|111.709 +638798.496|220234.171|111.743 +638803.529|220229.605|111.527 +638808.546|220225.055|111.624 +638813.578|220220.489|111.472 +638818.668|220215.868|111.164 +638823.700|220211.302|111.036 +638828.742|220206.730|110.859 +638833.719|220202.216|110.920 +638838.754|220197.650|110.877 +638843.713|220193.154|111.295 +638848.727|220188.616|111.676 +638853.741|220184.071|112.036 +638858.679|220179.594|112.051 +638863.724|220175.015|111.965 +638868.732|220170.471|111.706 +638873.749|220165.917|111.392 +638878.769|220161.360|111.033 +638883.783|220156.813|110.826 +638888.800|220152.259|110.585 +638893.774|220147.742|110.307 +638898.785|220143.197|110.210 +638903.765|220138.674|109.911 +638908.715|220134.187|110.048 +638913.687|220129.686|110.557 +638918.701|220125.129|109.917 +638923.672|220120.621|109.862 +638928.631|220116.128|110.018 +638933.581|220111.638|110.246 +638938.488|220107.191|110.454 +638943.466|220102.683|110.999 +638953.295|220093.771|111.274 +638958.270|220089.263|111.365 +638963.198|220084.791|111.402 +638968.179|220080.268|110.914 +638973.101|220075.806|111.075 +638978.103|220071.267|110.941 +638982.977|220066.854|111.173 +638987.957|220062.331|110.816 +638992.947|220057.795|109.890 +638998.001|220053.196|108.863 +639002.972|220048.679|108.201 +639007.897|220044.210|108.052 +639012.847|220039.715|107.689 +639017.724|220035.298|108.058 +639042.248|220013.054|107.991 +639047.156|220008.604|107.771 +639052.072|220004.138|107.473 +639056.979|219999.685|107.317 +639061.771|219995.348|107.750 +639066.651|219990.919|107.845 +639071.564|219986.457|107.287 +639076.423|219982.052|107.220 +639081.351|219977.578|106.994 +639086.164|219973.213|106.958 +639110.429|219951.194|106.247 +639115.398|219946.680|105.537 +639120.238|219942.285|105.071 +639125.127|219937.847|104.653 +639129.970|219933.449|104.217 +639134.835|219929.029|103.657 +639139.708|219924.607|103.446 +639144.500|219920.257|103.114 +639149.343|219915.859|102.803 +639154.141|219911.506|102.501 +639158.954|219907.138|102.123 +639163.794|219902.743|101.901 +639168.564|219898.412|101.523 +639173.404|219894.017|101.023 +639178.257|219889.606|100.154 +639183.036|219885.266|99.789 +639187.797|219880.944|99.572 +639192.570|219876.616|99.322 +639197.304|219872.315|98.999 +639202.065|219867.999|98.883 +639206.777|219863.723|98.765 +639211.504|219859.431|98.557 +639216.247|219855.127|98.289 +639220.974|219850.839|98.149 +639225.732|219846.514|97.515 +639239.866|219833.681|96.363 +639244.557|219829.423|95.942 +639249.275|219825.141|95.692 +639253.923|219820.926|95.592 +639258.544|219816.732|95.363 +639263.256|219812.452|94.921 +639267.969|219808.173|94.519 +639272.553|219804.012|94.281 +639277.122|219799.873|94.446 +639295.782|219782.920|92.281 +639304.566|219774.974|93.930 +639309.260|219770.707|93.263 +639313.622|219766.763|93.876 +639318.267|219762.541|93.242 +639322.720|219758.502|93.391 +639327.203|219754.436|93.388 +639331.565|219750.492|94.324 +639335.957|219746.515|94.577 +639349.055|219734.649|95.793 +639353.456|219730.662|96.052 +639357.848|219726.684|96.369 +639366.593|219718.756|96.725 +639370.988|219714.770|96.799 +639375.322|219710.841|96.942 +639379.690|219706.881|96.951 +639384.070|219702.907|96.890 +639393.089|219694.708|95.348 +639401.432|219687.164|96.905 +639405.601|219683.387|97.695 +639409.771|219679.617|98.265 +639413.931|219675.850|98.865 +639415.946|219672.030|99.057 +639411.636|219675.926|98.600 +639407.357|219679.794|98.015 +639403.151|219683.589|97.085 +639398.804|219687.517|96.844 +639389.995|219695.485|96.451 +639385.475|219699.581|96.850 +639381.013|219703.620|96.981 +639376.520|219707.686|97.030 +639372.006|219711.770|96.942 +639367.547|219715.806|96.860 +639340.694|219740.092|95.637 +639336.271|219744.085|94.948 +639327.359|219752.135|93.668 +639318.248|219760.374|93.235 +639313.637|219764.553|93.638 +639304.325|219772.987|93.860 +639290.679|219785.319|92.537 +639267.024|219806.752|94.467 +639257.587|219815.302|95.272 +639252.802|219819.639|95.518 +639248.086|219823.907|95.659 +639243.371|219828.177|95.832 +639238.598|219832.502|96.070 +639233.843|219836.806|96.518 +639229.049|219841.149|96.936 +639219.432|219849.860|97.707 +639214.665|219854.176|98.036 +639209.874|219858.514|98.222 +639205.085|219862.848|98.414 +639200.333|219867.152|98.728 +639195.517|219871.510|98.826 +639190.729|219875.845|99.091 +639185.944|219880.176|99.359 +639181.076|219884.583|99.548 +639176.260|219888.948|100.087 +639171.389|219893.361|100.688 +639166.525|219897.766|101.261 +639161.703|219902.134|101.593 +639156.829|219906.550|101.971 +639151.964|219910.955|102.294 +639147.155|219915.310|102.620 +639142.247|219919.751|102.949 +639137.438|219924.110|103.337 +639132.546|219928.538|103.620 +639127.650|219932.970|103.955 +639122.761|219937.402|104.644 +639117.866|219941.834|105.037 +639112.962|219946.281|105.555 +639107.982|219950.795|106.281 +639103.084|219955.233|106.808 +639083.622|219972.841|106.970 +639078.760|219977.240|106.948 +639073.881|219981.653|107.086 +639069.001|219986.070|107.256 +639064.005|219990.596|107.613 +639059.192|219994.945|107.265 +639054.288|219999.380|107.290 +639049.366|220003.836|107.518 +639044.431|220008.305|107.869 +639039.502|220012.770|108.207 +639014.829|220035.094|108.363 +639009.979|220039.471|107.637 +639004.971|220044.006|107.982 +639000.021|220048.487|108.296 +638994.989|220053.050|108.975 +638989.929|220057.640|109.957 +638984.891|220062.209|110.804 +638979.911|220066.720|111.082 +638974.918|220071.234|110.990 +638969.998|220075.681|110.667 +638964.963|220080.241|111.091 +638959.955|220084.773|111.246 +638954.969|220089.284|111.179 +638949.979|220093.798|111.188 +638940.000|220102.817|110.685 +638935.053|220107.289|110.256 +638929.993|220111.864|110.042 +638925.022|220116.357|109.905 +638920.005|220120.895|109.798 +638914.945|220125.479|110.249 +638909.883|220130.057|110.149 +638904.899|220134.559|109.655 +638899.864|220139.119|109.890 +638894.783|220143.719|110.137 +638889.711|220148.309|110.265 +638884.624|220152.914|110.609 +638879.552|220157.508|110.832 +638874.477|220162.101|111.121 +638869.402|220166.697|111.435 +638864.333|220171.285|111.682 +638859.228|220175.906|111.825 +638854.125|220180.520|111.923 +638849.102|220185.059|111.560 +638844.034|220189.640|111.149 +638838.959|220194.227|110.862 +638833.878|220198.817|110.637 +638828.784|220203.423|110.713 +638823.694|220208.028|110.761 +638818.552|220212.683|110.929 +638813.404|220217.343|111.213 +638808.311|220221.952|111.414 +638803.239|220226.539|111.283 +638798.054|220231.230|111.423 +638792.973|220235.823|111.463 +638787.837|220240.474|111.728 +638782.671|220245.162|112.773 +638777.520|220249.829|113.514 +638772.393|220254.471|113.724 +638767.251|220259.113|113.127 +638762.149|220263.722|112.657 +638757.028|220268.358|112.837 +638751.853|220273.039|113.148 +638746.735|220277.672|113.322 +638741.560|220282.357|113.739 +638736.439|220286.993|114.090 +638731.318|220291.632|114.535 +638726.109|220296.347|114.700 +638720.998|220300.971|114.837 +638715.892|220305.589|114.852 +638710.738|220310.252|114.946 +638705.584|220314.916|115.056 +638700.430|220319.579|115.169 +638695.276|220324.243|115.297 +638690.173|220328.861|115.455 +638685.019|220333.524|115.635 +638679.871|220338.181|115.705 +638674.723|220342.839|115.779 +638669.575|220347.493|115.815 +638664.430|220352.150|115.888 +638659.282|220356.811|116.138 +638654.134|220361.468|116.400 +638648.989|220366.125|116.644 +638643.844|220370.783|116.943 +638638.699|220375.440|117.327 +638633.508|220380.140|117.644 +638628.369|220384.795|117.909 +638623.276|220389.403|118.150 +638617.850|220394.313|118.446 +638612.952|220398.748|118.601 +638607.862|220403.354|118.711 +638602.674|220408.048|118.845 +638597.535|220412.696|118.970 +638592.445|220417.301|119.156 +638587.309|220421.950|119.354 +638582.173|220426.601|119.662 +638577.037|220431.249|119.985 +638571.953|220435.852|120.354 +638566.823|220440.500|120.780 +638561.739|220445.102|121.173 +638556.613|220449.744|121.646 +638551.483|220454.390|122.051 +638546.405|220458.989|122.466 +638541.324|220463.589|122.868 +638536.200|220468.231|123.353 +638531.168|220472.784|123.645 +638526.047|220477.423|124.225 +638520.975|220482.020|124.746 +638515.949|220486.570|125.282 +638510.826|220491.210|125.611 +638505.748|220495.806|125.904 +638500.715|220500.360|126.160 +638495.640|220504.956|126.486 +638490.565|220509.552|126.864 +638485.533|220514.106|127.123 +638480.461|220518.700|127.495 +638475.441|220523.250|127.983 +638470.369|220527.840|128.431 +638465.340|220532.397|128.650 +638460.360|220536.905|128.952 +638450.246|220546.058|129.376 +638440.228|220555.129|129.778 +638435.235|220559.646|129.857 +638430.194|220564.209|129.952 +638425.195|220568.733|129.979 +638420.199|220573.253|130.049 +638415.161|220577.816|130.202 +638410.199|220582.302|130.080 +638405.197|220586.826|130.132 +638400.204|220591.346|130.327 +638395.221|220595.848|129.912 +638390.204|220600.386|129.772 +638375.211|220613.941|128.931 +638365.244|220622.950|128.480 +638350.290|220636.465|127.288 +638345.288|220640.986|126.965 +638340.332|220645.466|126.654 +638330.377|220654.464|126.163 +638325.406|220658.957|125.739 +638300.665|220681.335|125.422 +638285.694|220694.856|123.606 +638266.004|220712.672|123.636 +638261.127|220717.082|123.566 +638251.273|220725.997|123.417 +638246.390|220730.420|123.816 +638241.565|220734.785|123.840 +638173.305|220796.528|123.173 +638168.519|220800.863|123.395 +638154.096|220813.920|124.106 +638139.813|220826.856|125.252 +638135.046|220831.175|125.752 +638125.579|220839.749|126.514 +638116.017|220848.402|126.669 +638106.529|220856.998|127.035 +638101.716|220861.353|126.937 +638097.004|220865.621|127.224 +638087.579|220874.161|127.839 +638082.852|220878.437|127.742 +638078.109|220882.735|127.873 +638073.479|220886.935|128.446 +638068.822|220891.154|128.861 +638059.446|220899.648|129.330 +638054.722|220903.925|129.342 +638031.408|220925.044|130.409 +638017.548|220937.602|131.229 +638012.864|220941.842|131.348 +638008.212|220946.054|131.372 +638003.598|220950.230|131.351 +637998.931|220954.455|131.336 +637994.335|220958.618|131.451 +637989.684|220962.824|131.265 +637971.112|220979.628|130.360 +637961.776|220988.071|129.769 +637957.180|220992.229|129.476 +637952.589|220996.380|129.242 +637929.427|221017.317|127.026 +637924.828|221021.477|126.608 +637883.515|221058.815|122.015 +637870.150|221070.910|121.628 +637857.168|221082.678|123.018 +637844.224|221094.407|123.965 +637831.245|221106.157|124.142 +637814.076|221121.702|124.273 +637805.550|221129.422|124.456 +637801.320|221133.251|124.612 +637780.331|221152.258|125.127 +637772.062|221159.750|125.529 +637767.923|221163.499|125.502 +637763.777|221167.257|125.685 +637759.535|221171.095|125.233 +637755.530|221174.731|125.590 +637751.439|221178.440|125.828 +637743.286|221185.826|125.791 +637739.211|221189.517|125.694 +637735.102|221193.235|125.468 +637727.034|221200.545|125.465 +637722.968|221204.227|125.462 +637714.955|221211.487|125.337 +637710.965|221215.099|125.252 +637706.981|221218.708|125.215 +637695.078|221229.485|124.724 +637691.204|221232.997|124.755 +637687.297|221236.535|124.663 +637668.055|221253.967|124.517 +637660.499|221260.813|124.679 +637656.732|221264.227|124.609 +637652.982|221267.622|124.633 +637649.212|221271.039|124.572 +637645.484|221274.416|124.490 +637641.741|221277.802|124.371 +637638.017|221281.177|124.325 +637634.359|221284.490|124.337 +637630.662|221287.839|124.215 +637627.010|221291.147|124.279 +637623.432|221294.393|124.414 +637619.909|221297.587|124.578 +637616.385|221300.784|124.935 +637612.859|221303.982|125.102 +637605.644|221310.511|124.673 +637808.400|221124.914|124.322 +637812.631|221121.074|124.218 +637847.009|221089.871|123.856 +637851.261|221086.010|123.502 +637855.532|221082.126|123.027 +637864.097|221074.339|121.935 +637868.452|221070.386|121.643 +637877.258|221062.391|121.576 +637890.840|221050.083|122.713 +637899.932|221041.841|123.511 +637927.654|221016.738|127.212 +637950.727|220995.825|129.086 +637955.381|220991.604|129.424 +637960.008|220987.410|129.626 +637964.736|220983.127|130.125 +637969.341|220978.951|130.244 +637974.050|220974.681|130.711 +637978.708|220970.460|130.878 +637988.059|220961.977|131.232 +637992.695|220957.774|131.354 +637997.316|220953.580|131.125 +638002.052|220949.288|131.278 +638006.710|220945.061|131.311 +638016.088|220936.557|131.174 +638030.027|220923.904|130.330 +638048.757|220906.906|129.397 +638053.536|220902.575|129.418 +638058.227|220898.316|129.235 +638062.967|220894.016|129.043 +638067.716|220889.706|128.937 +638072.397|220885.454|128.388 +638081.870|220876.855|127.745 +638086.619|220872.549|127.721 +638096.144|220863.904|127.187 +638105.749|220855.190|126.959 +638110.555|220850.829|126.715 +638115.377|220846.458|126.590 +638125.015|220837.713|126.404 +638139.368|220824.680|125.078 +638144.242|220820.257|124.700 +638153.895|220811.494|124.063 +638158.726|220807.108|123.798 +638217.479|220753.814|122.402 +638227.458|220744.776|123.542 +638237.374|220735.788|123.722 +638242.363|220731.267|123.914 +638247.261|220726.823|123.725 +638252.172|220722.364|123.185 +638272.078|220704.314|123.411 +638277.074|220699.782|123.365 +638282.045|220695.277|123.588 +638312.227|220667.936|125.685 +638332.298|220649.742|126.352 +638337.336|220645.177|126.541 +638347.413|220636.045|127.032 +638357.505|220626.904|127.882 +638362.552|220622.335|128.370 +638372.653|220613.182|128.867 +638377.698|220608.613|129.455 +638392.828|220594.897|129.924 +638397.885|220590.315|130.077 +638402.938|220585.734|130.199 +638407.971|220581.165|130.034 +638413.021|220576.590|130.150 +638418.059|220572.018|130.098 +638423.095|220567.452|130.034 +638428.176|220562.841|129.946 +638433.220|220558.269|130.037 +638438.295|220553.666|129.833 +638463.557|220530.739|128.733 +638468.635|220526.134|128.650 +638473.695|220521.540|128.196 +638478.754|220516.947|127.669 +638483.820|220512.347|127.291 +638488.886|220507.748|126.962 +638499.024|220498.549|126.416 +638504.086|220493.950|125.986 +638509.155|220489.350|125.715 +638514.227|220484.748|125.517 +638519.336|220480.109|124.944 +638524.401|220475.509|124.474 +638529.467|220470.910|123.984 +638534.533|220466.310|123.557 +638539.602|220461.708|123.191 +638544.716|220457.063|122.643 +638549.788|220452.460|122.310 +638554.857|220447.858|121.890 +638559.978|220443.210|121.439 +638565.050|220438.604|121.042 +638570.124|220433.998|120.674 +638575.245|220429.347|120.259 +638580.323|220424.739|119.927 +638585.447|220420.087|119.671 +638590.528|220415.479|119.482 +638595.606|220410.870|119.320 +638600.736|220406.219|119.189 +638605.862|220401.565|119.040 +638610.943|220396.956|118.878 +638616.021|220392.351|118.775 +638621.151|220387.696|118.482 +638626.235|220383.085|118.257 +638631.319|220378.470|117.946 +638636.449|220373.809|117.543 +638641.536|220369.192|117.132 +638646.672|220364.531|116.787 +638651.759|220359.914|116.489 +638656.849|220355.296|116.260 +638661.936|220350.678|116.059 +638667.075|220346.015|115.852 +638672.120|220341.440|115.611 +638677.210|220336.822|115.532 +638682.303|220332.204|115.431 +638687.393|220327.583|115.373 +638692.487|220322.966|115.288 +638697.583|220318.342|115.132 +638702.679|220313.721|115.010 +638707.775|220309.094|114.824 +638712.826|220304.513|114.696 +638717.928|220299.883|114.471 +638723.028|220295.259|114.383 +638728.081|220290.675|114.236 +638733.190|220286.039|113.928 +638738.249|220281.446|113.657 +638743.315|220276.846|113.319 +638748.424|220272.210|113.108 +638753.489|220267.611|112.807 +638758.558|220263.011|112.517 +638763.591|220258.455|113.243 +638768.629|220253.889|113.727 +638773.698|220249.292|113.532 +638778.791|220244.662|112.752 +638783.851|220240.057|111.685 +638788.932|220235.445|111.365 +638793.955|220230.888|111.301 +638799.030|220226.283|111.133 +638804.056|220221.723|111.069 +638809.076|220217.172|111.139 +638814.108|220212.607|111.008 +638819.150|220208.028|110.688 +638824.188|220203.456|110.533 +638829.171|220198.936|110.490 +638834.155|220194.416|110.509 +638839.175|220189.865|110.694 +638844.201|220185.309|110.868 +638849.148|220180.831|111.536 +638854.122|220176.323|111.770 +638859.121|220171.785|111.615 +638864.123|220167.246|111.456 +638869.085|220162.741|111.152 +638874.102|220158.187|110.862 +638879.113|220153.640|110.643 +638884.124|220149.092|110.472 +638889.092|220144.584|110.295 +638894.124|220140.012|109.871 +638899.096|220135.501|109.682 +638904.073|220130.984|109.472 +638909.005|220126.516|109.847 +638913.982|220121.998|109.676 +638918.947|220117.494|109.676 +638923.897|220113.007|109.896 +638928.811|220108.551|109.987 +638933.767|220104.061|110.195 +638938.653|220099.632|110.640 +638943.603|220095.149|110.947 +638948.531|220090.677|110.914 +638953.457|220086.212|110.990 +638958.373|220081.753|111.155 +638963.329|220077.254|110.902 +638968.252|220072.785|110.548 +638973.165|220068.332|110.835 +638978.067|220063.885|110.746 +638983.041|220059.371|110.429 +638988.015|220054.848|109.634 +638993.011|220050.303|108.692 +638997.961|220045.811|108.247 +639002.914|220041.312|107.811 +639007.870|220036.810|107.372 +639012.683|220032.454|108.326 +639017.560|220028.028|108.223 +639042.072|220005.790|107.851 +639046.994|220001.325|107.515 +639051.911|219996.860|107.241 +639056.815|219992.409|107.104 +639061.698|219987.984|107.192 +639066.553|219983.576|107.092 +639071.464|219979.123|107.003 +639076.316|219974.722|106.997 +639100.663|219952.630|106.598 +639105.559|219948.183|106.031 +639110.463|219943.727|105.397 +639115.370|219939.267|104.797 +639120.268|219934.823|104.315 +639125.160|219930.379|103.873 +639130.077|219925.914|103.315 +639134.929|219921.507|102.867 +639139.779|219917.105|102.486 +639144.619|219912.713|102.203 +639149.435|219908.342|101.770 +639154.327|219903.901|101.529 +639159.146|219899.528|101.118 +639163.983|219895.135|100.630 +639168.826|219890.737|100.112 +639173.669|219886.339|99.627 +639178.491|219881.962|99.319 +639183.310|219877.591|99.069 +639188.092|219873.248|98.734 +639192.914|219868.874|98.518 +639197.672|219864.558|98.405 +639202.409|219860.260|98.124 +639207.246|219855.868|97.865 +639211.983|219851.570|97.643 +639221.526|219842.908|96.829 +639226.281|219838.592|96.573 +639230.984|219834.325|96.332 +639235.751|219829.996|96.043 +639240.448|219825.735|95.893 +639245.102|219821.514|95.726 +639249.836|219817.219|95.418 +639268.542|219800.245|94.540 +639278.039|219791.610|92.818 +639282.672|219787.407|92.672 +639305.310|219766.891|93.723 +639309.876|219762.751|93.784 +639314.359|219758.691|94.022 +639318.888|219754.577|93.741 +639323.378|219750.507|93.717 +639340.852|219734.691|96.283 +639349.652|219726.721|96.789 +639354.108|219722.676|96.759 +639358.476|219718.717|96.948 +639362.877|219714.730|97.244 +639367.236|219710.777|97.247 +639371.631|219706.796|97.356 +639375.978|219702.855|97.448 +639380.385|219698.853|97.262 +639389.179|219690.870|96.552 +639393.522|219686.932|96.479 +639401.913|219679.337|97.573 +639406.074|219675.569|98.170 +639410.231|219671.808|98.798 +639409.929|219670.269|98.749 +639405.699|219674.085|98.182 +639401.422|219677.944|97.588 +639397.170|219681.778|96.893 +639388.435|219689.672|96.408 +639383.838|219693.836|97.173 +639379.373|219697.875|97.326 +639374.856|219701.962|97.509 +639370.348|219706.037|97.396 +639365.953|219710.012|97.262 +639361.445|219714.084|97.170 +639357.004|219718.098|97.036 +639343.440|219730.357|96.643 +639338.929|219734.435|96.415 +639311.918|219758.822|93.909 +639307.285|219763.013|93.894 +639275.067|219792.128|92.501 +639260.717|219805.128|94.406 +639246.462|219818.033|95.424 +639241.692|219822.349|95.619 +639236.918|219826.668|95.848 +639232.209|219830.929|96.037 +639227.448|219835.236|96.241 +639222.642|219839.589|96.457 +639217.890|219843.889|96.658 +639213.065|219848.257|97.027 +639208.249|219852.622|97.381 +639203.442|219856.971|97.692 +639198.648|219861.312|97.948 +639193.862|219865.643|98.170 +639189.083|219869.971|98.387 +639184.255|219874.339|98.612 +639179.403|219878.734|99.033 +639174.636|219883.053|99.252 +639169.756|219887.470|99.560 +639164.937|219891.831|99.837 +639160.060|219896.251|100.535 +639155.229|219900.631|100.971 +639150.416|219904.987|101.276 +639145.503|219909.437|101.642 +639140.711|219913.774|101.864 +639135.850|219918.178|102.267 +639130.967|219922.601|102.849 +639126.105|219927.002|103.297 +639121.189|219931.458|103.830 +639116.333|219935.857|104.300 +639111.472|219940.261|104.858 +639106.552|219944.720|105.513 +639101.657|219949.155|106.031 +639096.719|219953.630|106.506 +639072.482|219975.560|106.933 +639067.620|219979.958|106.942 +639062.704|219984.405|107.046 +639057.857|219988.791|107.003 +639052.956|219993.223|107.019 +639048.073|219997.646|107.342 +639043.090|220002.157|107.695 +639038.222|220006.564|107.942 +639018.602|220024.313|107.845 +639013.664|220028.781|107.963 +639008.836|220033.140|107.067 +639003.923|220037.587|107.445 +638998.912|220042.125|107.881 +638993.941|220046.630|108.436 +638988.975|220051.129|108.985 +638983.928|220055.707|109.896 +638978.917|220060.249|110.490 +638973.946|220064.748|110.694 +638969.032|220069.186|110.316 +638964.000|220073.745|110.716 +638959.047|220078.229|110.838 +638954.054|220082.746|110.859 +638949.120|220087.209|110.792 +638944.133|220091.723|110.829 +638939.119|220096.252|110.588 +638934.160|220100.736|110.310 +638929.210|220105.210|109.960 +638924.187|220109.755|109.920 +638919.179|220114.281|109.698 +638914.171|220118.807|109.500 +638909.145|220123.358|109.579 +638904.137|220127.887|109.430 +638899.068|220132.471|109.457 +638894.039|220137.025|109.655 +638888.949|220141.634|110.045 +638883.877|220146.224|110.231 +638878.799|220150.820|110.521 +638873.736|220155.405|110.646 +638868.664|220159.995|110.905 +638863.593|220164.588|111.246 +638858.484|220169.215|111.450 +638853.421|220173.796|111.667 +638848.340|220178.393|111.469 +638843.287|220182.959|110.841 +638838.264|220187.503|110.533 +638833.134|220192.142|110.365 +638828.047|220196.745|110.316 +638822.957|220201.353|110.423 +638817.863|220205.965|110.560 +638812.770|220210.577|110.768 +638807.631|220215.228|110.920 +638802.507|220219.867|110.862 +638797.420|220224.469|110.975 +638792.291|220229.118|111.121 +638787.158|220233.763|111.295 +638782.025|220238.411|111.560 +638776.862|220243.096|112.557 +638771.707|220247.771|113.428 +638766.581|220252.417|113.727 +638761.423|220257.083|113.611 +638756.348|220261.664|112.557 +638751.185|220266.334|112.566 +638746.013|220271.019|112.883 +638740.898|220275.652|113.041 +638735.781|220280.284|113.243 +638730.572|220285.003|113.407 +638725.454|220289.636|113.758 +638720.294|220294.311|114.008 +638715.136|220298.981|114.178 +638709.979|220303.647|114.309 +638704.871|220308.277|114.614 +638699.717|220312.944|114.815 +638694.562|220317.607|114.956 +638689.414|220322.268|115.017 +638684.266|220326.928|115.038 +638679.118|220331.592|115.205 +638673.967|220336.255|115.529 +638668.819|220340.918|115.775 +638663.671|220345.579|116.025 +638658.526|220350.239|116.175 +638653.381|220354.897|116.345 +638648.190|220359.600|116.638 +638643.094|220364.214|116.946 +638637.903|220368.917|117.467 +638632.764|220373.578|117.930 +638627.671|220378.189|118.290 +638622.486|220382.886|118.644 +638617.301|220387.583|118.958 +638612.214|220392.189|119.137 +638607.078|220396.837|119.232 +638601.894|220401.531|119.442 +638596.761|220406.179|119.573 +638591.625|220410.831|119.692 +638586.489|220415.479|119.878 +638581.356|220420.127|120.110 +638576.224|220424.775|120.338 +638571.094|220429.423|120.664 +638565.964|220434.072|121.091 +638560.834|220438.717|121.430 +638555.707|220443.362|121.838 +638550.629|220447.964|122.304 +638545.503|220452.607|122.676 +638540.428|220457.206|123.142 +638535.310|220461.848|123.716 +638530.229|220466.448|123.941 +638525.108|220471.087|124.365 +638520.037|220475.683|124.932 +638514.968|220480.276|125.486 +638509.844|220484.918|125.797 +638504.818|220489.472|126.056 +638499.740|220494.069|126.355 +638494.619|220498.711|126.660 +638489.593|220503.261|126.980 +638484.515|220507.861|127.212 +638479.443|220512.454|127.647 +638474.420|220517.005|128.062 +638469.351|220521.598|128.492 +638464.276|220526.195|128.760 +638459.293|220530.706|129.022 +638449.183|220539.862|129.431 +638444.153|220544.416|129.687 +638439.069|220549.015|129.882 +638434.074|220553.538|129.872 +638429.035|220558.098|129.964 +638423.988|220562.664|129.973 +638418.986|220567.190|129.933 +638413.996|220571.707|130.107 +638403.944|220580.806|130.095 +638393.974|220589.825|129.967 +638363.960|220616.964|128.614 +638353.966|220625.998|127.849 +638348.955|220630.525|127.379 +638343.947|220635.054|126.928 +638334.005|220644.046|126.498 +638324.050|220653.037|125.465 +638279.378|220693.439|123.746 +638274.398|220697.941|123.502 +638264.589|220706.816|123.700 +638254.747|220715.723|123.603 +638249.806|220720.191|123.392 +638244.978|220724.565|123.853 +638215.519|220751.204|122.749 +638210.551|220755.691|122.057 +638186.237|220777.692|121.914 +638176.599|220786.421|122.594 +638162.185|220799.473|123.237 +638138.344|220821.071|125.419 +638124.015|220834.046|126.331 +638119.242|220838.365|126.450 +638114.469|220842.687|126.565 +638109.744|220846.964|126.721 +638104.941|220851.310|126.675 +638100.198|220855.605|127.084 +638095.468|220859.887|127.233 +638090.740|220864.164|127.449 +638086.016|220868.440|127.681 +638081.307|220872.701|127.687 +638076.570|220876.987|127.885 +638067.274|220885.408|128.827 +638062.577|220889.660|128.986 +638057.944|220893.854|129.257 +638048.507|220902.392|129.397 +638043.856|220906.601|129.613 +638039.211|220910.807|129.869 +638034.535|220915.038|129.964 +638029.923|220919.208|130.171 +638025.284|220923.411|130.519 +638011.398|220935.978|131.235 +638006.746|220940.187|131.262 +638002.150|220944.344|131.354 +637997.447|220948.596|131.110 +637992.841|220952.766|131.174 +637983.588|220961.133|131.116 +637978.924|220965.348|130.915 +637974.322|220969.509|130.790 +637969.618|220973.761|130.388 +637964.995|220977.940|130.189 +637960.295|220982.182|129.583 +637955.701|220986.334|129.309 +637946.387|220994.746|128.422 +637941.830|220998.870|128.412 +637937.264|221002.997|128.105 +637932.607|221007.200|127.611 +637914.206|221023.821|125.706 +637909.542|221028.030|125.035 +637895.781|221040.454|123.292 +637877.675|221056.816|122.097 +637847.073|221084.513|123.551 +637842.757|221088.421|123.880 +637829.645|221100.280|123.920 +637808.016|221119.843|123.834 +637803.789|221123.665|123.990 +637799.521|221127.527|124.209 +637795.312|221131.340|124.462 +637791.139|221135.116|124.666 +637786.900|221138.950|124.822 +637774.351|221150.304|125.194 +637770.163|221154.090|125.169 +637766.030|221157.833|125.401 +637761.787|221161.667|125.176 +637757.651|221165.407|125.209 +637753.603|221169.071|125.624 +637749.415|221172.860|125.444 +637737.080|221184.015|125.563 +637732.941|221187.758|125.441 +637720.703|221198.822|125.258 +637716.652|221202.483|125.121 +637712.522|221206.214|124.688 +637708.602|221209.765|125.112 +637692.655|221224.185|125.026 +637684.660|221231.406|124.563 +637672.932|221242.010|124.386 +637665.144|221249.051|124.029 +637653.641|221259.447|123.898 +637646.219|221266.165|124.462 +637642.513|221269.518|124.468 +637638.745|221272.926|124.468 +637635.014|221276.297|124.414 +637631.336|221279.622|124.359 +637627.593|221283.005|124.276 +637623.874|221286.367|124.106 +637620.195|221289.693|124.090 +637616.534|221293.000|123.950 +637612.892|221296.292|123.895 +637609.326|221299.519|124.127 +637605.903|221302.622|124.691 +637602.443|221305.759|125.127 +637799.436|221125.722|123.837 +637803.636|221121.912|123.807 +637807.894|221118.047|123.831 +637820.653|221106.471|123.685 +637825.018|221102.515|124.029 +637846.506|221083.004|123.210 +637850.822|221079.088|122.926 +637868.217|221063.293|122.103 +637886.085|221047.087|122.609 +637899.697|221034.754|123.804 +637913.563|221022.197|125.758 +637936.621|221001.309|128.074 +637941.235|220997.127|128.403 +637955.137|220984.523|129.312 +637959.770|220980.326|129.552 +637964.522|220976.022|130.220 +637969.134|220971.840|130.397 +637978.485|220963.364|130.964 +637992.469|220950.678|131.162 +637997.084|220946.493|131.180 +638001.772|220942.244|131.366 +638006.448|220937.998|131.198 +638011.068|220933.801|130.708 +638015.820|220929.495|131.046 +638029.795|220916.803|130.116 +638034.504|220912.529|129.940 +638039.232|220908.241|129.897 +638043.984|220903.928|129.723 +638048.684|220899.661|129.562 +638058.163|220891.056|129.129 +638062.909|220886.749|128.979 +638067.627|220882.464|128.678 +638072.336|220878.184|127.992 +638077.067|220873.893|127.772 +638081.874|220869.531|127.775 +638091.456|220860.829|127.294 +638101.027|220852.142|126.779 +638105.898|220847.726|126.974 +638110.647|220843.416|126.678 +638115.527|220838.987|126.645 +638120.318|220834.634|126.337 +638125.198|220830.209|126.331 +638149.332|220808.288|124.176 +638154.160|220803.904|123.856 +638173.692|220786.168|122.603 +638183.476|220777.286|122.009 +638198.124|220763.985|120.765 +638228.190|220736.745|123.618 +638233.183|220732.218|123.801 +638248.151|220718.646|123.938 +638253.074|220714.174|123.545 +638263.044|220705.128|123.560 +638268.015|220700.614|123.191 +638278.071|220691.503|123.706 +638303.165|220668.750|124.526 +638333.508|220641.248|126.520 +638338.549|220636.679|126.770 +638343.624|220632.076|126.818 +638348.678|220627.498|127.303 +638353.737|220622.917|127.900 +638379.051|220599.981|129.705 +638394.224|220586.225|130.052 +638399.281|220581.638|130.235 +638404.319|220577.069|130.104 +638409.400|220572.457|129.891 +638414.408|220567.919|130.122 +638424.533|220558.732|130.052 +638439.737|220544.943|129.897 +638444.754|220540.389|129.473 +638449.832|220535.781|129.354 +638459.933|220526.612|129.031 +638465.054|220521.967|128.818 +638470.074|220517.410|128.452 +638475.136|220512.814|128.038 +638480.245|220508.172|127.550 +638485.314|220503.572|127.205 +638490.386|220498.970|126.989 +638495.457|220494.367|126.809 +638500.523|220489.768|126.367 +638505.592|220485.165|126.017 +638515.782|220475.918|125.489 +638520.841|220471.321|124.852 +638525.956|220466.676|124.365 +638531.025|220462.074|123.932 +638536.100|220457.468|123.795 +638541.211|220452.823|123.173 +638546.283|220448.220|122.707 +638551.355|220443.615|122.380 +638556.475|220438.964|121.926 +638561.547|220434.358|121.518 +638566.622|220429.753|121.219 +638571.746|220425.098|120.817 +638576.824|220420.490|120.555 +638581.951|220415.838|120.408 +638587.032|220411.230|120.219 +638592.113|220406.618|120.012 +638597.240|220401.967|119.893 +638602.369|220397.313|119.753 +638607.405|220392.744|119.573 +638612.528|220388.092|119.378 +638617.658|220383.438|119.241 +638622.742|220378.823|118.860 +638627.826|220374.209|118.510 +638632.959|220369.545|118.055 +638638.046|220364.925|117.546 +638643.136|220360.307|117.153 +638648.272|220355.643|116.854 +638653.362|220351.020|116.483 +638658.456|220346.399|116.214 +638663.595|220341.738|116.062 +638668.688|220337.115|115.797 +638673.781|220332.491|115.580 +638678.877|220327.867|115.291 +638683.974|220323.240|115.050 +638689.070|220318.616|114.861 +638694.120|220314.032|114.681 +638699.220|220309.405|114.456 +638704.319|220304.778|114.279 +638709.376|220300.188|113.986 +638714.478|220295.558|113.803 +638719.580|220290.928|113.685 +638724.637|220286.338|113.511 +638729.742|220281.711|113.459 +638734.802|220277.115|113.194 +638739.862|220272.527|113.078 +638744.973|220267.891|112.916 +638750.039|220263.292|112.627 +638755.077|220258.732|113.166 +638760.113|220254.175|113.849 +638765.130|220249.622|113.678 +638770.208|220245.013|113.270 +638775.325|220240.359|111.956 +638780.406|220235.744|111.578 +638785.439|220231.178|111.274 +638790.465|220226.618|111.149 +638795.549|220222.007|110.859 +638800.578|220217.444|110.731 +638805.604|220212.884|110.682 +638810.640|220208.318|110.530 +638815.678|220203.743|110.310 +638820.710|220199.183|110.298 +638825.742|220194.617|110.246 +638830.726|220190.100|110.313 +638835.758|220185.537|110.350 +638840.726|220181.035|110.640 +638845.682|220176.549|111.173 +638850.654|220172.044|111.478 +638855.653|220167.511|111.383 +638860.654|220162.976|111.243 +638865.668|220158.422|110.917 +638870.682|220153.871|110.664 +638875.650|220149.367|110.426 +638880.610|220144.865|110.298 +638885.593|220140.341|109.896 +638890.570|220135.827|109.618 +638895.594|220131.267|109.396 +638900.562|220126.763|109.305 +638905.524|220122.264|109.326 +638910.434|220117.811|109.399 +638915.393|220113.315|109.512 +638920.295|220108.874|109.740 +638925.251|220104.381|109.914 +638930.115|220099.974|110.039 +638935.059|220095.493|110.390 +638939.979|220091.034|110.487 +638944.901|220086.572|110.582 +638949.812|220082.121|110.795 +638954.704|220077.684|110.713 +638959.650|220073.197|110.594 +638964.539|220068.765|110.603 +638969.505|220064.257|110.326 +638974.375|220059.844|110.576 +638979.313|220055.360|110.137 +638984.284|220050.846|109.420 +638989.237|220046.347|108.902 +638994.169|220041.869|108.625 +638999.083|220037.407|108.101 +639004.090|220032.853|107.156 +639008.992|220028.406|106.830 +639038.042|220002.081|108.183 +639042.962|219997.615|107.878 +639047.832|219993.196|107.585 +639052.724|219988.752|107.125 +639057.586|219984.341|106.967 +639062.368|219980.010|107.098 +639067.269|219975.563|107.061 +639086.640|219957.994|106.692 +639091.465|219953.611|106.205 +639096.308|219949.216|106.010 +639101.166|219944.809|105.717 +639106.068|219940.356|105.126 +639110.978|219935.896|104.489 +639115.833|219931.486|103.934 +639120.680|219927.082|103.458 +639125.547|219922.662|102.879 +639130.415|219918.242|102.337 +639135.289|219913.817|101.773 +639140.096|219909.452|101.361 +639144.951|219905.044|100.993 +639149.761|219900.677|100.612 +639154.589|219896.294|100.164 +639159.481|219891.850|99.615 +639164.242|219887.528|99.313 +639169.052|219883.166|99.075 +639173.806|219878.850|98.871 +639178.580|219874.519|98.576 +639183.395|219870.148|98.350 +639188.163|219865.823|98.155 +639192.908|219861.513|97.780 +639197.691|219857.172|97.521 +639202.467|219852.841|97.341 +639207.152|219848.589|97.106 +639211.943|219844.243|96.887 +639216.704|219839.918|96.543 +639221.386|219835.672|96.408 +639226.153|219831.347|96.098 +639230.896|219827.043|95.948 +639235.586|219822.788|95.835 +639240.293|219818.518|95.646 +639254.399|219805.713|94.692 +639264.067|219796.919|92.742 +639300.713|219763.702|94.046 +639305.191|219759.645|94.293 +639309.699|219755.561|94.659 +639331.949|219735.408|96.643 +639336.390|219731.384|96.914 +639349.783|219719.241|97.195 +639354.194|219715.245|97.420 +639358.577|219711.271|97.539 +639363.014|219707.247|97.658 +639367.398|219703.276|97.811 +639371.796|219699.286|97.899 +639376.234|219695.262|97.817 +639380.714|219691.193|97.533 +639385.122|219687.197|97.384 +639389.593|219683.134|96.939 +639393.888|219679.242|97.113 +639398.094|219675.435|97.728 +639402.337|219671.592|98.188 +639406.528|219667.797|98.655 +639410.755|219663.969|99.200 +639407.360|219664.990|98.920 +639403.169|219668.775|98.414 +639398.987|219672.552|97.865 +639390.748|219679.980|95.951 +639381.708|219688.173|97.463 +639377.319|219692.147|97.753 +639372.951|219696.101|97.945 +639368.583|219700.054|97.914 +639364.191|219704.022|97.743 +639359.842|219707.954|97.649 +639355.443|219711.935|97.561 +639350.993|219715.955|97.466 +639346.570|219719.954|97.262 +639342.096|219724.002|97.344 +639333.226|219732.018|96.881 +639328.862|219735.962|96.442 +639324.466|219739.928|95.628 +639306.456|219756.207|94.805 +639302.003|219760.228|94.095 +639260.336|219797.919|94.092 +639255.591|219802.220|94.662 +639250.973|219806.396|94.479 +639241.369|219815.095|95.479 +639236.659|219819.356|95.619 +639231.844|219823.715|95.808 +639227.083|219828.024|96.000 +639222.343|219832.316|96.098 +639217.536|219836.665|96.305 +639212.729|219841.018|96.552 +639207.908|219845.383|96.905 +639203.073|219849.757|97.036 +639193.454|219858.468|97.420 +639188.592|219862.869|97.807 +639183.761|219867.243|98.039 +639178.884|219871.657|98.262 +639174.056|219876.027|98.524 +639169.177|219880.447|98.819 +639164.288|219884.870|98.865 +639159.411|219889.289|99.203 +639154.531|219893.706|99.563 +639149.584|219898.189|100.109 +639144.652|219902.655|100.551 +639139.745|219907.102|100.880 +639134.822|219911.561|101.331 +639129.833|219916.078|101.919 +639124.907|219920.544|102.474 +639119.921|219925.064|103.117 +639114.956|219929.563|103.654 +639109.990|219934.061|104.224 +639105.022|219938.563|104.842 +639100.017|219943.099|105.409 +639095.046|219947.601|105.738 +639090.133|219952.051|106.049 +639085.161|219956.553|106.449 +639065.346|219974.484|106.948 +639060.433|219978.931|107.025 +639055.501|219983.393|106.851 +639050.563|219987.862|107.159 +639045.519|219992.431|107.582 +639040.538|219996.939|107.912 +639010.738|220023.901|107.982 +639005.852|220028.306|106.674 +639000.796|220032.890|107.494 +638995.727|220037.489|108.497 +638990.661|220042.077|108.997 +638985.693|220046.576|109.097 +638980.624|220051.169|109.725 +638975.567|220055.753|110.277 +638970.550|220060.289|110.417 +638965.622|220064.748|110.207 +638960.550|220069.338|110.493 +638955.603|220073.816|110.536 +638950.567|220078.369|110.463 +638945.572|220082.890|110.536 +638940.546|220087.437|110.445 +638935.568|220091.939|110.347 +638930.563|220096.462|110.039 +638925.601|220100.949|109.811 +638920.557|220105.515|110.012 +638915.570|220110.020|109.533 +638910.614|220114.503|109.305 +638905.551|220119.078|109.189 +638900.531|220123.620|109.183 +638895.517|220128.158|109.137 +638890.482|220132.715|109.387 +638885.453|220137.269|109.600 +638880.372|220141.868|109.908 +638875.337|220146.428|110.259 +638870.265|220151.019|110.493 +638865.199|220155.606|110.685 +638860.179|220160.150|110.954 +638855.122|220164.725|111.066 +638850.059|220169.313|111.365 +638845.036|220173.848|110.984 +638840.022|220178.380|110.524 +638835.002|220182.916|110.152 +638829.967|220187.473|110.082 +638824.926|220192.033|110.088 +638819.842|220196.632|110.064 +638814.803|220201.189|110.085 +638809.762|220205.752|110.246 +638804.672|220210.357|110.390 +638799.636|220214.917|110.515 +638794.552|220219.516|110.627 +638789.459|220224.128|110.972 +638784.421|220228.688|111.216 +638779.337|220233.290|111.475 +638774.252|220237.893|111.773 +638769.171|220242.492|112.039 +638764.051|220247.144|113.407 +638758.973|220251.743|113.739 +638753.907|220256.324|113.773 +638748.878|220260.863|112.828 +638743.812|220265.447|112.855 +638738.743|220270.034|113.084 +638733.629|220274.661|113.233 +638728.563|220279.248|113.447 +638723.503|220283.829|113.575 +638718.440|220288.410|113.742 +638713.332|220293.034|113.910 +638708.224|220297.658|114.081 +638703.164|220302.239|114.358 +638698.055|220306.860|114.578 +638692.953|220311.481|114.742 +638687.899|220316.056|114.922 +638682.797|220320.674|115.099 +638677.695|220325.291|115.300 +638672.595|220329.906|115.544 +638667.496|220334.524|115.779 +638662.397|220339.141|116.108 +638657.300|220343.756|116.416 +638652.204|220348.371|116.699 +638647.108|220352.982|116.979 +638642.015|220357.594|117.281 +638636.873|220362.251|117.723 +638631.828|220366.820|118.171 +638626.689|220371.475|118.656 +638621.602|220376.083|119.055 +638616.515|220380.689|119.415 +638611.428|220385.294|119.628 +638606.295|220389.940|119.838 +638601.260|220394.499|120.052 +638596.124|220399.145|120.244 +638591.040|220403.747|120.405 +638585.956|220408.350|120.637 +638580.872|220412.952|120.719 +638575.739|220417.597|120.927 +638570.704|220422.154|121.100 +638565.577|220426.799|121.439 +638560.496|220431.399|121.753 +638555.415|220435.998|122.091 +638550.340|220440.594|122.469 +638545.216|220445.236|122.908 +638540.190|220449.787|123.438 +638535.069|220454.426|123.947 +638529.988|220459.026|124.057 +638524.916|220463.619|124.514 +638519.799|220468.255|125.026 +638514.779|220472.803|125.584 +638509.704|220477.399|125.809 +638504.583|220482.035|126.148 +638499.508|220486.628|126.492 +638494.439|220491.222|126.898 +638489.361|220495.815|127.105 +638484.332|220500.369|127.257 +638479.260|220504.959|127.660 +638474.195|220509.549|128.126 +638469.171|220514.097|128.480 +638464.097|220518.690|128.815 +638459.025|220523.281|129.162 +638453.992|220527.834|129.269 +638448.917|220532.428|129.598 +638443.824|220537.033|129.528 +638438.801|220541.581|129.894 +638433.766|220546.135|130.019 +638423.628|220555.303|129.988 +638413.588|220564.383|130.113 +638408.498|220568.989|130.208 +638403.447|220573.558|130.159 +638393.392|220582.650|130.165 +638373.251|220600.852|129.187 +638368.170|220605.443|128.909 +638337.940|220632.753|126.657 +638332.950|220637.264|126.498 +638322.858|220646.377|125.499 +638317.820|220650.925|124.846 +638312.858|220655.409|124.593 +638287.931|220677.952|124.511 +638282.920|220682.475|123.865 +638267.954|220695.993|122.865 +638263.041|220700.443|123.371 +638248.310|220713.775|124.039 +638223.624|220736.089|123.472 +638208.792|220749.488|122.350 +638194.043|220762.814|121.350 +638155.398|220797.790|123.667 +638150.621|220802.112|124.014 +638112.451|220836.661|126.492 +638093.364|220853.925|126.870 +638088.680|220858.168|127.358 +638083.952|220862.445|127.577 +638074.458|220871.034|127.769 +638069.767|220875.277|127.946 +638065.094|220879.510|128.583 +638055.734|220887.981|129.156 +638037.013|220904.915|129.818 +638032.343|220909.140|129.940 +638027.668|220913.371|130.034 +638023.108|220917.498|130.567 +638018.469|220921.695|130.622 +637999.894|220938.495|130.891 +637995.316|220942.634|131.098 +637990.702|220946.807|131.116 +637976.787|220959.386|130.836 +637967.479|220967.796|130.293 +637962.888|220971.947|130.269 +637958.225|220976.153|129.577 +637953.568|220980.360|129.223 +637939.775|220992.823|128.455 +637935.142|220997.005|128.065 +637930.522|221001.181|127.742 +637925.947|221005.314|127.431 +637921.320|221009.489|126.864 +637916.626|221013.723|125.959 +637912.054|221017.850|125.462 +637898.323|221030.246|124.045 +637893.723|221034.398|123.502 +637880.065|221046.730|121.957 +637875.706|221050.674|122.195 +637857.952|221066.722|121.756 +637853.642|221070.623|122.320 +637845.120|221078.341|123.194 +637840.721|221082.315|123.118 +637832.080|221090.131|123.523 +637827.795|221094.011|123.780 +637819.120|221101.850|123.633 +637806.224|221113.506|123.466 +637801.926|221117.392|123.527 +637797.690|221121.226|123.636 +637785.150|221132.571|124.371 +637780.990|221136.335|124.654 +637776.802|221140.124|124.822 +637772.608|221143.916|124.987 +637768.450|221147.677|125.093 +637764.293|221151.438|125.215 +637760.074|221155.248|124.855 +637755.999|221158.939|125.358 +637751.869|221162.676|125.419 +637747.772|221166.379|125.407 +637743.621|221170.132|125.413 +637739.497|221173.862|125.313 +637735.376|221177.587|125.249 +637727.183|221184.994|125.148 +637723.117|221188.670|125.130 +637719.069|221192.330|125.212 +637714.964|221196.043|125.060 +637710.904|221199.712|124.904 +637682.819|221225.096|124.276 +637663.282|221242.759|124.057 +637659.325|221246.335|123.859 +637655.476|221249.813|123.892 +637647.895|221256.668|124.029 +637636.453|221267.012|123.844 +637632.796|221270.326|124.261 +637629.056|221273.703|124.182 +637625.310|221277.095|124.282 +637621.618|221280.427|124.212 +637617.909|221283.783|124.279 +637614.218|221287.120|124.218 +637610.530|221290.455|124.185 +637606.851|221293.777|124.002 +637603.212|221297.066|123.978 +637599.569|221300.361|123.950 +637799.991|221117.130|123.517 +637804.246|221113.274|123.517 +637817.157|221101.573|123.347 +637821.455|221097.677|123.377 +637825.835|221093.712|123.560 +637834.488|221085.869|123.475 +637838.746|221082.008|123.127 +637856.038|221066.323|121.911 +637860.366|221062.397|121.472 +637873.679|221050.336|121.890 +637878.126|221046.306|121.856 +637882.702|221042.170|122.475 +637891.806|221033.934|123.578 +637896.351|221029.820|123.865 +637900.871|221025.726|124.036 +637914.742|221013.184|126.069 +637919.323|221009.038|126.666 +637923.978|221004.826|127.145 +637933.173|220996.505|127.812 +637937.745|220992.366|128.181 +637942.360|220988.184|128.269 +637951.650|220979.777|129.092 +637960.938|220971.371|129.723 +637965.595|220967.159|130.135 +637970.225|220962.965|130.436 +637974.892|220958.740|130.674 +637988.851|220946.091|131.009 +637993.521|220941.860|131.049 +638002.793|220933.457|131.101 +638016.716|220920.832|130.647 +638026.058|220912.356|130.095 +638030.676|220908.165|129.656 +638035.410|220903.876|129.650 +638054.176|220886.859|129.062 +638058.907|220882.564|128.827 +638063.616|220878.294|128.437 +638068.313|220874.030|127.983 +638073.031|220869.751|127.708 +638077.774|220865.450|127.596 +638082.553|220861.116|127.422 +638087.329|220856.784|127.230 +638096.818|220848.177|126.462 +638111.272|220835.073|126.334 +638125.786|220821.912|126.093 +638135.415|220813.180|125.535 +638149.814|220800.110|123.898 +638154.620|220795.745|123.438 +638174.091|220778.082|122.085 +638178.986|220773.644|122.021 +638203.611|220751.326|121.999 +638228.513|220728.771|123.356 +638233.497|220724.257|123.466 +638238.477|220719.743|123.591 +638253.455|220706.173|123.923 +638268.354|220692.652|122.655 +638313.644|220651.632|124.871 +638328.890|220637.831|126.276 +638333.883|220633.308|126.507 +638344.048|220624.109|127.510 +638384.629|220587.331|129.927 +638394.721|220578.175|129.848 +638399.838|220573.539|130.211 +638404.880|220568.964|130.177 +638409.976|220564.343|130.241 +638415.014|220559.771|130.156 +638420.099|220555.160|130.071 +638430.181|220546.016|130.132 +638435.259|220541.407|129.988 +638440.346|220536.792|130.052 +638445.424|220532.184|129.900 +638450.487|220527.584|129.501 +638455.562|220522.982|129.290 +638460.634|220518.379|129.059 +638465.706|220513.774|128.830 +638470.769|220509.174|128.412 +638475.834|220504.578|127.998 +638480.897|220499.979|127.577 +638485.969|220495.376|127.306 +638491.044|220490.771|127.172 +638496.162|220486.122|126.937 +638501.227|220481.526|126.456 +638506.293|220476.924|126.078 +638516.437|220467.719|125.544 +638521.545|220463.073|124.941 +638526.663|220458.428|124.502 +638531.732|220453.826|124.188 +638536.807|220449.220|123.987 +638541.924|220444.572|123.469 +638546.993|220439.966|122.938 +638552.111|220435.318|122.524 +638557.234|220430.667|122.204 +638562.309|220426.061|121.875 +638567.433|220421.410|121.606 +638572.560|220416.756|121.369 +638577.638|220412.147|121.241 +638582.719|220407.539|121.122 +638587.846|220402.887|120.939 +638592.924|220398.276|120.722 +638598.053|220393.622|120.549 +638603.183|220388.967|120.344 +638608.258|220384.359|120.085 +638613.342|220379.747|119.808 +638618.472|220375.090|119.506 +638623.556|220370.472|119.116 +638628.689|220365.812|118.641 +638633.776|220361.191|118.214 +638638.863|220356.570|117.812 +638643.999|220351.907|117.348 +638649.092|220347.283|116.992 +638654.179|220342.665|116.842 +638659.321|220337.998|116.580 +638664.415|220333.375|116.242 +638669.511|220328.748|115.800 +638674.656|220324.078|115.519 +638679.752|220319.451|115.269 +638684.848|220314.824|115.084 +638689.948|220310.198|114.849 +638695.047|220305.568|114.645 +638700.146|220300.941|114.495 +638705.249|220296.311|114.303 +638710.351|220291.681|114.142 +638715.456|220287.048|113.941 +638720.562|220282.412|113.700 +638725.667|220277.782|113.566 +638730.730|220273.183|113.304 +638735.838|220268.550|113.224 +638740.904|220263.950|113.008 +638746.004|220259.323|113.176 +638751.085|220254.724|113.947 +638756.147|220250.128|113.840 +638761.283|220245.458|113.148 +638766.395|220240.807|112.002 +638771.470|220236.195|111.716 +638776.551|220231.580|111.420 +638781.580|220227.018|111.255 +638786.664|220222.397|110.914 +638791.754|220217.776|110.554 +638796.783|220213.210|110.457 +638801.870|220208.589|110.228 +638806.900|220204.026|110.216 +638811.944|220199.445|109.939 +638817.028|220194.831|109.905 +638822.009|220190.310|109.957 +638827.099|220185.693|109.868 +638832.088|220181.163|109.847 +638837.102|220176.619|110.256 +638842.119|220172.071|110.621 +638847.142|220167.517|110.917 +638852.141|220162.979|110.835 +638857.189|220158.398|110.755 +638862.197|220153.850|110.579 +638867.268|220149.245|110.222 +638872.279|220144.697|110.094 +638877.303|220140.131|109.786 +638882.283|220135.608|109.460 +638887.358|220131.002|109.234 +638892.329|220126.485|109.061 +638897.352|220121.928|108.945 +638902.311|220117.426|109.003 +638907.319|220112.885|109.131 +638912.272|220108.392|109.335 +638917.234|220103.890|109.436 +638922.169|220099.419|109.890 +638927.092|220094.954|109.951 +638932.057|220090.449|110.073 +638936.979|220085.983|110.176 +638941.948|220081.475|110.304 +638946.879|220077.001|110.326 +638951.823|220072.514|110.252 +638956.752|220068.043|110.356 +638961.680|220063.568|110.475 +638966.670|220059.036|109.984 +638971.538|220054.622|110.280 +638976.506|220050.108|110.051 +638981.471|220045.594|109.405 +638986.369|220041.153|109.481 +638991.298|220036.679|109.268 +638996.342|220032.082|107.939 +639001.305|220027.568|106.991 +639006.285|220023.039|106.372 +639016.154|220014.075|105.690 +639035.375|219996.658|107.985 +639040.285|219992.199|107.762 +639045.165|219987.767|107.415 +639050.109|219983.275|106.964 +639054.977|219978.855|106.769 +639059.808|219974.475|106.927 +639064.609|219970.116|106.930 +639079.157|219956.906|106.308 +639084.009|219952.499|106.001 +639088.871|219948.082|105.656 +639093.741|219943.654|105.242 +639098.566|219939.274|104.864 +639103.385|219934.894|104.525 +639108.241|219930.480|103.961 +639113.102|219926.064|103.379 +639117.967|219921.641|102.794 +639122.801|219917.243|102.099 +639127.684|219912.805|101.459 +639132.530|219908.397|100.746 +639137.346|219904.020|100.295 +639142.177|219899.631|99.767 +639147.002|219895.245|99.313 +639151.757|219890.929|99.030 +639156.555|219886.570|98.813 +639161.331|219882.233|98.448 +639166.061|219877.935|98.387 +639170.826|219873.613|98.161 +639175.593|219869.282|97.908 +639180.314|219864.994|97.658 +639185.087|219860.659|97.439 +639189.808|219856.371|97.231 +639194.478|219852.131|97.079 +639199.236|219847.812|97.009 +639203.927|219843.554|96.771 +639208.633|219839.278|96.451 +639213.354|219834.992|96.369 +639218.048|219830.728|96.168 +639222.690|219826.513|95.997 +639227.381|219822.255|95.860 +639236.775|219813.717|94.979 +639255.210|219796.990|95.299 +639264.597|219788.461|94.446 +639278.451|219775.882|93.924 +639292.206|219763.394|93.851 +639318.962|219739.141|96.338 +639323.445|219735.075|96.625 +639327.831|219731.104|97.183 +639332.251|219727.093|97.551 +639341.151|219719.022|97.789 +639345.659|219714.928|97.762 +639350.088|219710.908|97.890 +639354.535|219706.872|97.951 +639358.982|219702.837|98.027 +639363.353|219698.874|98.237 +639367.721|219694.912|98.487 +639372.134|219690.904|98.515 +639376.581|219686.865|98.152 +639381.062|219682.793|97.890 +639385.558|219678.706|97.329 +639390.120|219674.554|96.469 +639398.557|219666.919|98.124 +639402.693|219663.170|98.841 +639406.924|219659.339|99.395 +639404.605|219659.217|99.237 +639400.496|219662.929|98.585 +639396.332|219666.693|97.960 +639383.470|219678.340|97.945 +639379.105|219682.290|98.085 +639374.713|219686.271|98.384 +639370.284|219690.288|98.646 +639365.983|219694.180|98.536 +639361.701|219698.054|98.347 +639357.333|219702.005|98.082 +639352.980|219705.946|98.018 +639348.628|219709.887|97.981 +639344.236|219713.861|97.884 +639339.773|219717.903|97.914 +639330.962|219725.880|97.704 +639326.585|219729.836|97.329 +639322.232|219733.771|96.838 +639313.411|219741.754|96.265 +639295.678|219757.786|94.634 +639291.280|219761.761|93.933 +639282.105|219770.070|94.089 +639277.551|219774.191|94.019 +639273.013|219778.302|94.165 +639268.322|219782.551|94.330 +639259.023|219790.979|94.845 +639240.418|219807.828|94.979 +639221.471|219824.995|96.006 +639216.713|219829.305|96.213 +639211.974|219833.599|96.338 +639207.225|219837.900|96.555 +639202.400|219842.271|96.628 +639197.639|219846.584|96.954 +639192.869|219850.906|97.061 +639183.277|219859.593|97.323 +639178.449|219863.970|97.545 +639173.617|219868.343|97.798 +639168.792|219872.717|98.057 +639163.925|219877.128|98.280 +639159.121|219881.477|98.426 +639154.244|219885.897|98.768 +639149.374|219890.310|99.094 +639144.530|219894.696|99.255 +639139.617|219899.153|99.600 +639134.679|219903.627|100.121 +639129.711|219908.135|100.913 +639124.755|219912.634|101.666 +639119.817|219917.112|102.309 +639114.834|219921.632|102.946 +639109.856|219926.146|103.590 +639104.876|219930.663|104.281 +639099.926|219935.153|104.790 +639094.970|219939.639|104.970 +639090.005|219944.141|105.281 +639085.024|219948.655|105.726 +639080.065|219953.151|106.043 +639075.039|219957.705|106.513 +639065.115|219966.696|106.942 +639060.155|219971.186|106.961 +639055.230|219975.645|106.735 +639050.271|219980.135|106.799 +639045.226|219984.707|107.201 +639040.237|219989.230|107.598 +639035.226|219993.769|107.784 +639030.340|219998.182|106.866 +639015.469|220011.630|105.687 +639010.470|220016.156|105.848 +639005.453|220020.707|106.250 +639000.399|220025.291|107.037 +638995.245|220029.967|107.872 +638990.121|220034.627|109.433 +638985.086|220039.190|109.689 +638980.097|220043.704|109.500 +638974.994|220048.331|110.021 +638969.980|220052.873|110.131 +638964.939|220057.433|110.045 +638959.858|220062.038|110.423 +638954.880|220066.543|110.243 +638949.845|220071.103|110.182 +638944.804|220075.669|110.219 +638939.774|220080.219|110.140 +638934.745|220084.770|110.067 +638924.617|220093.939|109.719 +638919.591|220098.489|109.689 +638914.586|220103.015|109.405 +638909.523|220107.600|109.292 +638904.466|220112.175|109.094 +638899.422|220116.741|108.796 +638894.347|220121.334|108.878 +638889.269|220125.933|109.052 +638884.191|220130.536|109.271 +638879.110|220135.135|109.521 +638873.986|220139.781|109.786 +638868.960|220144.334|110.045 +638863.852|220148.961|110.152 +638858.768|220153.570|110.606 +638853.708|220158.154|110.761 +638848.602|220162.775|110.914 +638843.573|220167.322|110.618 +638838.498|220171.910|110.307 +638833.478|220176.448|109.911 +638828.394|220181.044|109.747 +638823.304|220185.653|109.756 +638818.253|220190.225|109.939 +638813.169|220194.824|109.902 +638808.079|220199.433|110.018 +638803.035|220203.999|110.188 +638797.948|220208.605|110.280 +638792.809|220213.259|110.521 +638787.767|220217.822|110.716 +638782.625|220222.476|111.060 +638777.544|220227.078|111.252 +638772.454|220231.687|111.578 +638767.327|220236.329|111.743 +638762.289|220240.892|112.145 +638757.126|220245.580|113.355 +638752.036|220250.195|113.992 +638746.970|220254.779|114.053 +638741.883|220259.375|113.325 +638736.820|220263.953|113.273 +638731.708|220268.580|113.334 +638726.594|220273.213|113.541 +638721.525|220277.800|113.791 +638716.459|220282.388|113.998 +638711.351|220287.011|114.139 +638706.291|220291.593|114.300 +638701.183|220296.219|114.504 +638696.123|220300.798|114.648 +638691.066|220305.376|114.824 +638685.961|220309.996|115.010 +638680.904|220314.575|115.209 +638675.802|220319.195|115.495 +638670.696|220323.822|115.913 +638665.643|220328.400|116.309 +638660.544|220333.015|116.525 +638655.493|220337.590|116.790 +638650.442|220342.162|117.077 +638645.346|220346.777|117.373 +638640.250|220351.394|117.796 +638635.205|220355.963|118.122 +638630.064|220360.621|118.546 +638625.019|220365.190|118.979 +638619.929|220369.801|119.448 +638614.842|220374.413|119.887 +638609.752|220379.022|120.146 +638604.664|220383.627|120.329 +638599.583|220388.230|120.692 +638594.545|220392.792|120.911 +638589.458|220397.395|121.116 +638584.374|220402.001|121.305 +638579.290|220406.603|121.506 +638574.206|220411.205|121.646 +638569.167|220415.765|121.811 +638564.083|220420.368|121.990 +638559.002|220424.970|122.210 +638553.970|220429.527|122.545 +638548.892|220434.126|122.905 +638543.814|220438.726|123.408 +638538.788|220443.280|123.889 +638533.713|220447.879|124.276 +638528.629|220452.479|124.362 +638523.606|220457.032|124.855 +638518.580|220461.583|125.316 +638513.508|220466.179|125.718 +638508.482|220470.733|126.041 +638503.407|220475.329|126.352 +638498.377|220479.880|126.678 +638493.309|220484.477|127.102 +638488.273|220489.030|127.215 +638483.195|220493.630|127.434 +638478.172|220498.180|127.818 +638473.100|220502.774|128.153 +638468.077|220507.321|128.580 +638463.051|220511.872|128.864 +638457.976|220516.465|129.181 +638452.947|220521.019|129.385 +638447.915|220525.573|129.555 +638442.879|220530.126|129.708 +638432.766|220539.280|130.077 +638417.630|220552.965|130.086 +638412.625|220557.491|129.964 +638402.588|220566.572|130.205 +638397.537|220571.140|130.205 +638387.518|220580.199|130.010 +638382.462|220584.771|130.025 +638337.159|220625.709|127.044 +638316.969|220643.942|124.932 +638312.028|220648.410|124.892 +638306.944|220653.001|124.368 +638271.984|220684.609|123.594 +638227.355|220724.964|122.926 +638222.481|220729.372|122.999 +638217.525|220733.849|122.798 +638212.636|220738.272|122.758 +638207.637|220742.786|122.225 +638202.727|220747.224|122.060 +638187.767|220760.729|120.152 +638182.997|220765.061|121.301 +638168.409|220778.262|122.042 +638163.551|220782.654|122.082 +638144.324|220800.070|124.060 +638139.545|220804.398|124.822 +638134.723|220808.766|125.224 +638125.180|220817.407|126.108 +638110.750|220830.459|126.334 +638105.919|220834.830|126.413 +638086.860|220852.072|127.010 +638082.163|220856.321|127.419 +638077.420|220860.613|127.529 +638072.690|220864.892|127.733 +638063.293|220873.396|128.288 +638053.911|220881.888|129.007 +638049.223|220886.131|129.229 +638011.855|220919.936|130.677 +637993.259|220936.758|131.128 +637984.026|220945.103|131.119 +637965.388|220961.947|130.314 +637956.088|220970.347|129.592 +637951.504|220974.489|129.351 +637946.874|220978.668|129.171 +637937.633|220987.017|128.397 +637919.275|221003.595|126.700 +637914.672|221007.752|126.270 +637891.754|221028.439|123.642 +637882.613|221036.690|122.637 +637878.087|221040.780|122.256 +637873.521|221044.898|121.451 +637851.566|221064.753|122.054 +637842.940|221072.559|122.667 +637838.591|221076.494|122.807 +637830.026|221084.242|123.292 +637812.796|221099.823|123.487 +637808.376|221103.810|122.947 +637804.225|221107.568|123.411 +637799.966|221111.418|123.399 +637795.745|221115.237|123.575 +637783.227|221126.560|124.136 +637778.993|221130.389|124.072 +637774.918|221134.077|124.505 +637770.809|221137.795|124.791 +637766.679|221141.532|125.002 +637758.218|221149.173|124.368 +637750.147|221156.480|125.261 +637746.059|221160.177|125.276 +637733.660|221171.384|125.057 +637725.589|221178.684|125.209 +637721.456|221182.418|124.895 +637717.457|221186.033|124.944 +637713.452|221189.654|124.983 +637693.622|221207.595|125.709 +637689.626|221211.203|125.432 +637685.730|221214.724|125.358 +637681.686|221218.375|124.926 +637677.662|221222.012|124.581 +637673.794|221225.508|124.660 +637643.064|221253.281|124.106 +637639.187|221256.783|123.859 +637628.016|221266.887|124.109 +637624.292|221270.252|124.081 +637620.628|221273.566|124.295 +637616.848|221276.979|123.880 +637613.252|221280.235|124.154 +637609.515|221283.615|124.124 +637605.888|221286.892|124.118 +637602.248|221290.180|124.069 +637598.624|221293.457|124.100 +637595.034|221296.703|124.054 +637795.824|221112.853|123.380 +637800.104|221108.970|123.246 +637804.407|221105.069|123.243 +637817.334|221093.340|122.938 +637826.076|221085.418|123.222 +637830.434|221081.465|123.091 +637834.814|221077.490|122.826 +637839.121|221073.580|122.478 +637843.495|221069.611|122.222 +637847.927|221065.594|122.262 +637856.681|221057.648|121.856 +637883.744|221033.121|122.716 +637930.058|220991.186|127.708 +637934.685|220986.998|128.092 +637939.300|220982.819|128.443 +637948.584|220974.407|128.958 +637953.217|220970.207|129.205 +637957.942|220965.930|129.693 +637962.675|220961.645|130.278 +637967.235|220957.509|130.174 +637981.311|220944.756|130.805 +637985.950|220940.556|130.945 +637990.662|220936.282|130.955 +638009.307|220919.381|130.531 +638018.716|220910.853|130.351 +638028.049|220902.389|129.772 +638046.892|220885.305|129.312 +638051.552|220881.077|128.909 +638056.346|220876.727|128.754 +638065.698|220868.245|127.891 +638070.471|220863.914|127.641 +638075.204|220859.625|127.465 +638079.975|220855.297|127.236 +638084.717|220850.993|126.831 +638094.297|220842.309|126.703 +638103.889|220833.613|126.410 +638108.656|220829.291|126.245 +638113.527|220824.878|126.148 +638123.174|220816.130|126.059 +638127.975|220811.781|125.840 +638132.803|220807.401|125.499 +638142.358|220798.720|124.063 +638156.885|220785.540|122.725 +638171.415|220772.358|121.533 +638186.018|220759.105|120.259 +638205.967|220741.055|122.298 +638210.960|220736.528|122.408 +638220.920|220727.509|122.874 +638235.743|220714.074|122.923 +638240.723|220709.563|123.042 +638245.731|220705.030|123.469 +638250.727|220700.501|123.325 +638255.695|220695.999|123.408 +638270.682|220682.420|123.636 +638285.712|220668.799|123.481 +638290.708|220664.269|123.502 +638315.866|220641.482|124.386 +638341.286|220618.485|127.650 +638356.435|220604.766|128.409 +638371.617|220591.017|129.248 +638376.710|220586.411|129.839 +638386.830|220577.243|130.116 +638396.882|220568.132|130.208 +638401.978|220563.514|130.208 +638407.026|220558.942|130.250 +638412.061|220554.376|130.107 +638417.151|220549.762|130.153 +638432.315|220536.021|130.013 +638437.399|220531.413|129.976 +638442.471|220526.813|129.705 +638447.546|220522.208|129.546 +638452.572|220517.651|129.333 +638457.647|220513.049|129.126 +638462.722|220508.449|128.955 +638467.788|220503.853|128.565 +638472.856|220499.256|128.214 +638477.925|220494.657|127.867 +638482.991|220490.060|127.486 +638488.066|220485.461|127.263 +638493.141|220480.859|127.157 +638498.207|220476.262|126.764 +638503.276|220471.666|126.349 +638508.347|220467.063|126.117 +638513.419|220462.464|125.797 +638518.534|220457.825|125.389 +638523.554|220453.268|124.916 +638528.623|220448.669|124.417 +638533.747|220444.023|124.377 +638538.773|220439.467|124.036 +638543.890|220434.821|123.542 +638548.962|220430.219|123.066 +638554.034|220425.616|122.673 +638559.112|220421.014|122.414 +638564.190|220416.408|122.213 +638569.268|220411.803|122.051 +638574.395|220407.155|121.972 +638579.476|220402.549|121.838 +638584.554|220397.944|121.576 +638589.680|220393.292|121.292 +638594.761|220388.687|121.088 +638599.843|220384.078|120.796 +638604.920|220379.473|120.494 +638610.050|220374.821|120.271 +638615.134|220370.210|120.006 +638620.218|220365.598|119.537 +638625.351|220360.938|119.070 +638630.438|220356.323|118.607 +638635.526|220351.708|118.287 +638640.616|220347.091|117.961 +638645.706|220342.473|117.522 +638650.845|220337.809|117.245 +638655.892|220333.231|116.830 +638660.989|220328.611|116.461 +638666.128|220323.947|116.300 +638671.178|220319.369|116.016 +638676.274|220314.745|115.675 +638681.377|220310.115|115.224 +638686.430|220305.534|114.986 +638691.530|220300.910|114.818 +638696.629|220296.287|114.712 +638701.682|220291.705|114.523 +638706.785|220287.078|114.373 +638711.890|220282.449|114.157 +638716.950|220277.861|113.962 +638722.058|220273.228|113.745 +638727.115|220268.641|113.639 +638732.178|220264.048|113.438 +638737.277|220259.421|113.517 +638742.315|220254.858|114.102 +638747.372|220250.271|114.078 +638752.499|220245.613|113.514 +638757.562|220241.008|112.249 +638762.685|220236.357|111.923 +638767.760|220231.748|111.630 +638772.838|220227.139|111.368 +638777.919|220222.528|111.088 +638782.997|220217.919|110.883 +638788.075|220213.308|110.697 +638793.153|220208.702|110.591 +638798.198|220204.121|110.201 +638803.285|220199.503|109.984 +638808.317|220194.937|109.917 +638813.398|220190.326|109.862 +638818.433|220185.760|109.835 +638823.475|220181.185|109.682 +638828.507|220176.622|109.734 +638833.533|220172.062|109.911 +638838.556|220167.511|110.207 +638843.582|220162.955|110.390 +638848.560|220158.443|110.640 +638853.604|220153.868|110.630 +638858.624|220149.306|110.216 +638863.681|220144.721|110.088 +638868.701|220140.162|109.771 +638873.718|220135.608|109.570 +638878.784|220131.011|109.408 +638883.764|220126.491|109.088 +638888.790|220121.925|108.829 +638893.817|220117.366|108.643 +638898.818|220112.830|108.786 +638903.808|220108.307|109.097 +638908.761|220103.817|109.283 +638913.772|220099.273|109.384 +638918.740|220094.768|109.433 +638923.699|220090.272|109.606 +638928.668|220085.767|109.698 +638933.627|220081.271|109.914 +638938.644|220076.720|110.036 +638943.566|220072.258|110.158 +638948.553|220067.732|110.118 +638953.497|220063.248|110.051 +638958.456|220058.752|110.362 +638963.381|220054.278|109.996 +638968.377|220049.749|109.966 +638973.278|220045.301|109.951 +638978.240|220040.800|109.801 +638983.135|220036.359|109.884 +638988.085|220031.863|109.442 +638993.105|220027.297|108.341 +638998.104|220022.752|107.500 +639003.161|220018.147|106.135 +639008.117|220013.648|105.793 +639012.954|220009.265|106.150 +639027.505|219996.073|106.891 +639032.355|219991.678|107.186 +639037.222|219987.264|107.357 +639042.093|219982.842|107.073 +639046.982|219978.404|106.665 +639051.847|219973.987|106.482 +639056.665|219969.620|106.732 +639061.533|219965.206|106.985 +639066.358|219960.826|106.799 +639071.272|219956.364|106.336 +639076.124|219951.956|105.985 +639080.986|219947.543|105.610 +639085.859|219943.114|105.135 +639090.690|219938.731|105.050 +639095.445|219934.421|105.193 +639100.264|219930.041|104.851 +639105.178|219925.573|104.208 +639110.076|219921.117|103.337 +639114.907|219916.721|102.626 +639119.808|219912.262|101.809 +639124.657|219907.852|101.041 +639129.491|219903.453|100.404 +639134.371|219899.009|99.487 +639139.126|219894.690|99.158 +639143.927|219890.329|98.856 +639148.682|219886.007|98.566 +639153.418|219881.706|98.435 +639158.176|219877.384|98.179 +639162.879|219873.114|97.978 +639167.625|219868.801|97.841 +639172.353|219864.506|97.521 +639177.077|219860.214|97.259 +639181.740|219855.975|97.067 +639186.498|219851.656|96.963 +639191.150|219847.431|96.914 +639195.776|219843.228|96.704 +639200.492|219838.945|96.613 +639205.125|219834.736|96.430 +639209.800|219830.490|96.308 +639214.513|219826.211|96.003 +639219.088|219822.056|96.223 +639242.441|219800.830|94.220 +639256.045|219788.486|94.854 +639260.656|219784.295|94.464 +639265.180|219780.186|94.318 +639269.767|219776.016|94.104 +639274.296|219771.908|94.253 +639283.343|219763.690|94.086 +639287.811|219759.636|94.058 +639292.185|219755.671|94.836 +639296.516|219751.751|95.872 +639305.349|219743.738|96.469 +639314.140|219735.764|97.088 +639318.480|219731.829|97.573 +639331.663|219719.866|98.259 +639336.037|219715.897|98.353 +639340.429|219711.908|98.371 +639344.818|219707.924|98.423 +639349.210|219703.934|98.478 +639358.013|219695.945|98.557 +639362.304|219692.050|98.902 +639366.626|219688.130|99.124 +639371.031|219684.128|98.938 +639375.368|219680.187|98.856 +639379.760|219676.197|98.527 +639397.027|219660.515|98.579 +639401.157|219656.778|99.347 +639402.258|219653.419|99.572 +639398.064|219657.208|99.072 +639393.869|219660.991|98.329 +639389.614|219664.837|97.902 +639380.757|219672.856|98.499 +639376.304|219676.892|98.826 +639371.927|219680.854|99.063 +639367.513|219684.850|99.240 +639363.142|219688.804|99.210 +639358.796|219692.733|98.826 +639354.489|219696.625|98.530 +639349.993|219700.694|98.661 +639345.580|219704.687|98.667 +639341.169|219708.674|98.405 +639336.692|219712.727|98.515 +639332.315|219716.687|98.374 +639327.828|219720.744|98.292 +639323.396|219724.752|98.216 +639310.071|219736.801|97.417 +639305.648|219740.800|97.082 +639301.216|219744.802|96.539 +639292.298|219752.864|95.768 +639288.040|219756.698|94.299 +639283.596|219760.712|93.854 +639265.256|219777.312|94.296 +639251.418|219789.842|95.037 +639242.243|219798.145|94.948 +639228.323|219810.745|95.308 +639218.978|219819.210|95.860 +639209.648|219827.656|96.104 +639204.991|219831.874|96.378 +639200.269|219836.147|96.433 +639195.588|219840.387|96.591 +639190.866|219844.660|96.692 +639186.142|219848.937|96.844 +639181.420|219853.213|96.991 +639176.711|219857.477|97.091 +639167.156|219866.131|97.588 +639162.437|219870.404|97.829 +639157.634|219874.753|97.984 +639152.830|219879.103|98.155 +639148.063|219883.419|98.451 +639143.226|219887.799|98.566 +639138.453|219892.124|98.963 +639133.634|219896.492|99.359 +639128.714|219900.954|100.145 +639123.859|219905.358|100.871 +639118.900|219909.854|101.648 +639114.032|219914.274|102.550 +639109.085|219918.757|103.318 +639104.178|219923.214|104.211 +639099.301|219927.636|104.915 +639094.378|219932.096|105.239 +639089.602|219936.415|105.202 +639084.744|219940.813|105.092 +639079.891|219945.208|105.333 +639074.960|219949.676|105.818 +639070.055|219954.120|106.144 +639065.154|219958.561|106.482 +639060.186|219963.063|106.979 +639055.364|219967.425|106.686 +639050.493|219971.829|106.412 +639045.580|219976.279|106.546 +639040.584|219980.803|106.964 +639035.674|219985.250|107.116 +639030.760|219989.694|106.878 +639025.881|219994.110|106.805 +639020.870|219998.649|107.058 +639011.055|220007.521|106.168 +639006.172|220011.935|105.748 +639001.146|220016.492|106.241 +638996.016|220021.152|107.765 +638990.905|220025.794|108.722 +638985.918|220030.314|109.454 +638980.865|220034.893|109.887 +638975.921|220039.370|109.780 +638970.901|220043.915|109.945 +638965.932|220048.407|109.612 +638960.891|220052.976|110.064 +638955.880|220057.512|110.237 +638950.875|220062.038|109.835 +638945.806|220066.631|110.161 +638940.875|220071.094|110.070 +638935.812|220075.672|109.829 +638930.838|220080.174|109.710 +638925.772|220084.758|109.548 +638920.755|220089.296|109.399 +638915.723|220093.850|109.463 +638910.666|220098.425|109.259 +638905.649|220102.967|109.183 +638900.553|220107.575|108.914 +638895.508|220112.138|108.600 +638890.449|220116.716|108.515 +638885.319|220121.361|108.741 +638880.232|220125.970|109.079 +638875.157|220130.569|109.335 +638870.039|220135.202|109.494 +638864.915|220139.842|109.756 +638859.801|220144.474|109.960 +638854.686|220149.107|110.192 +638849.575|220153.737|110.414 +638844.497|220158.331|110.131 +638839.413|220162.930|109.990 +638834.283|220167.572|109.804 +638829.202|220172.169|109.646 +638824.121|220176.768|109.503 +638818.979|220181.422|109.576 +638813.886|220186.034|109.713 +638808.747|220190.688|109.838 +638803.614|220195.334|109.862 +638798.521|220199.948|110.100 +638793.382|220204.602|110.326 +638788.240|220209.263|110.670 +638783.156|220213.865|110.841 +638778.026|220218.511|110.993 +638772.893|220223.162|111.264 +638767.766|220227.804|111.399 +638762.640|220232.446|111.609 +638757.504|220237.103|112.106 +638752.377|220241.745|112.371 +638747.168|220246.476|113.678 +638742.041|220251.121|114.133 +638736.930|220255.751|114.206 +638731.800|220260.387|113.444 +638726.691|220265.011|113.456 +638721.580|220269.641|113.645 +638716.420|220274.313|113.867 +638711.262|220278.986|114.047 +638706.154|220283.613|114.236 +638700.997|220288.282|114.498 +638695.843|220292.949|114.648 +638690.740|220297.570|114.712 +638685.589|220302.233|114.888 +638680.487|220306.857|115.199 +638675.332|220311.527|115.626 +638670.230|220316.150|115.980 +638665.082|220320.814|116.324 +638659.986|220325.432|116.516 +638654.841|220330.095|116.934 +638649.744|220334.713|117.303 +638644.648|220339.330|117.644 +638639.506|220343.988|118.031 +638634.416|220348.602|118.342 +638629.277|220353.257|118.656 +638624.187|220357.868|119.092 +638619.100|220362.483|119.576 +638614.013|220367.092|120.006 +638608.877|220371.743|120.271 +638603.793|220376.348|120.591 +638598.712|220380.951|120.905 +638593.582|220385.599|121.164 +638588.547|220390.162|121.384 +638583.417|220394.810|121.762 +638578.336|220399.413|122.064 +638573.255|220404.015|122.256 +638568.174|220408.615|122.356 +638563.044|220413.260|122.463 +638558.009|220417.820|122.588 +638552.882|220422.462|122.880 +638547.807|220427.061|123.298 +638542.784|220431.618|123.783 +638537.660|220436.260|124.188 +638532.585|220440.856|124.447 +638527.553|220445.413|124.575 +638522.481|220450.010|124.999 +638517.412|220454.603|125.505 +638512.389|220459.157|125.901 +638507.317|220463.753|126.206 +638502.288|220468.307|126.407 +638497.268|220472.858|126.800 +638492.199|220477.451|127.218 +638487.216|220481.962|127.324 +638482.186|220486.516|127.519 +638477.163|220491.069|127.855 +638472.143|220495.617|128.275 +638467.120|220500.168|128.608 +638462.100|220504.718|128.955 +638457.071|220509.275|129.138 +638452.042|220513.829|129.379 +638447.058|220518.343|129.528 +638442.078|220522.854|129.754 +638437.045|220527.411|129.885 +638432.016|220531.967|130.107 +638416.974|220545.583|129.930 +638411.982|220550.103|129.991 +638406.992|220554.620|130.159 +638401.942|220559.192|130.098 +638396.946|220563.716|130.159 +638391.956|220568.236|130.339 +638381.919|220577.316|129.866 +638376.905|220581.854|129.732 +638331.895|220622.573|127.376 +638311.846|220640.687|124.517 +638286.922|220663.236|123.197 +638282.003|220667.695|123.539 +638272.036|220676.708|122.868 +638262.184|220685.627|123.042 +638247.414|220699.007|123.722 +638237.508|220707.969|123.027 +638232.524|220712.480|122.908 +638227.623|220716.911|122.667 +638222.704|220721.368|122.740 +638212.843|220730.292|122.765 +638202.986|220739.211|121.978 +638198.012|220743.706|121.692 +638183.168|220757.124|119.930 +638163.886|220774.607|121.996 +638125.603|220809.309|125.764 +638111.162|220822.391|126.169 +638101.567|220831.074|126.072 +638091.993|220839.749|126.544 +638087.214|220844.077|126.690 +638082.431|220848.408|126.837 +638077.710|220852.688|127.065 +638072.940|220857.010|127.330 +638068.221|220861.286|127.632 +638063.473|220865.587|127.742 +638054.091|220874.094|128.757 +638040.009|220886.850|129.379 +638025.933|220899.603|129.857 +638021.212|220903.879|129.967 +638016.549|220908.104|130.147 +638011.903|220912.313|130.455 +638007.237|220916.541|130.656 +637997.925|220924.971|130.634 +637988.571|220933.442|130.720 +637983.978|220937.602|130.851 +637979.293|220941.842|130.747 +637974.620|220946.070|130.446 +637970.015|220950.242|130.558 +637965.278|220954.528|130.220 +637955.960|220962.956|129.653 +637951.288|220967.180|129.196 +637946.646|220971.383|129.202 +637942.001|220975.586|128.931 +637937.364|220979.777|128.452 +637932.695|220984.002|128.099 +637928.065|220988.187|127.708 +637923.408|220992.399|127.196 +637918.747|220996.612|126.687 +637909.497|221004.975|125.858 +637890.937|221021.752|123.383 +637868.141|221042.362|121.140 +637828.724|221078.067|122.594 +637824.442|221081.953|123.091 +637807.047|221097.699|123.060 +637802.761|221101.582|123.133 +637798.473|221105.465|123.228 +637794.166|221109.363|123.240 +637768.886|221132.266|124.304 +637764.756|221136.006|124.523 +637760.611|221139.764|124.676 +637756.313|221143.647|124.188 +637748.193|221151.011|125.075 +637744.066|221154.748|125.145 +637739.954|221158.470|125.066 +637731.670|221165.968|124.916 +637727.595|221169.662|125.023 +637719.380|221177.093|124.599 +637711.291|221184.415|124.538 +637703.363|221191.599|124.977 +637699.266|221195.302|124.676 +637687.583|221205.894|125.654 +637671.466|221220.466|124.154 +637625.730|221261.874|123.923 +637621.993|221265.254|123.847 +637618.369|221268.536|123.996 +637614.794|221271.776|124.340 +637607.595|221278.299|124.676 +637603.775|221281.753|124.145 +637600.164|221285.020|123.999 +637596.552|221288.291|124.063 +637592.943|221291.555|123.947 +637792.889|221108.553|123.243 +637797.132|221104.700|123.200 +637801.411|221100.817|123.094 +637805.715|221096.909|122.874 +637809.991|221093.029|122.774 +637831.788|221073.251|122.566 +637836.128|221069.310|122.387 +637844.845|221061.394|122.006 +637849.164|221057.468|121.518 +637880.711|221028.860|122.752 +637885.201|221024.787|122.737 +637903.867|221007.886|125.493 +637917.738|220995.313|126.639 +637922.454|220991.043|127.184 +637927.090|220986.843|127.614 +637931.762|220982.606|127.998 +637936.444|220978.366|128.434 +637950.413|220965.702|129.235 +637955.165|220961.395|129.601 +637959.868|220957.134|130.013 +637964.519|220952.912|130.168 +637969.241|220948.633|130.439 +637973.895|220944.408|130.351 +637987.946|220931.662|130.705 +637997.313|220923.161|130.433 +638002.013|220918.894|130.439 +638006.743|220914.602|130.650 +638011.367|220910.402|130.211 +638025.537|220897.539|129.952 +638034.956|220888.983|129.376 +638039.671|220884.704|129.299 +638044.417|220880.394|129.132 +638049.147|220876.097|128.888 +638058.550|220867.550|127.711 +638063.320|220863.222|127.757 +638068.063|220858.912|127.306 +638072.858|220854.559|127.233 +638077.625|220850.231|126.983 +638082.447|220845.851|126.806 +638087.217|220841.520|126.608 +638091.993|220837.186|126.471 +638101.597|220828.462|125.938 +638111.287|220819.672|126.081 +638120.979|220810.872|125.998 +638125.801|220806.492|125.590 +638154.730|220780.209|123.106 +638164.350|220771.458|121.524 +638183.720|220753.850|119.101 +638218.750|220722.108|123.021 +638223.679|220717.631|122.591 +638228.598|220713.165|122.579 +638233.637|220708.596|122.804 +638258.576|220685.971|123.167 +638268.576|220676.900|123.673 +638273.496|220672.432|123.347 +638283.496|220663.352|122.911 +638293.588|220654.202|123.618 +638298.489|220649.749|123.179 +638308.654|220640.537|124.371 +638318.841|220631.314|125.992 +638323.879|220626.751|126.800 +638339.052|220612.996|127.721 +638379.572|220576.255|130.101 +638384.659|220571.637|129.979 +638394.776|220562.463|130.351 +638399.854|220557.851|130.132 +638404.907|220553.267|130.327 +638409.930|220548.704|129.979 +638415.021|220544.086|129.988 +638420.114|220539.466|130.119 +638425.201|220534.851|130.129 +638430.239|220530.279|130.196 +638435.314|220525.670|129.982 +638440.392|220521.062|129.836 +638445.412|220516.502|129.571 +638450.536|220511.851|129.424 +638455.611|220507.245|129.229 +638460.637|220502.682|129.107 +638465.749|220498.037|128.717 +638470.814|220493.438|128.364 +638475.883|220488.835|128.053 +638480.995|220484.190|127.663 +638486.067|220479.584|127.489 +638491.138|220474.979|127.266 +638496.204|220470.379|126.892 +638501.319|220465.734|126.498 +638511.508|220456.481|126.072 +638516.623|220451.835|125.654 +638521.686|220447.233|125.124 +638526.803|220442.585|124.734 +638531.878|220437.979|124.636 +638536.999|220433.328|124.414 +638542.116|220428.680|124.005 +638547.185|220424.074|123.533 +638552.303|220419.423|123.069 +638557.423|220414.772|122.810 +638562.501|220410.163|122.710 +638567.628|220405.512|122.630 +638572.752|220400.861|122.463 +638577.830|220396.249|122.268 +638582.954|220391.598|121.942 +638588.077|220386.940|121.585 +638593.155|220382.329|121.256 +638598.230|220377.720|121.006 +638603.360|220373.063|120.631 +638608.487|220368.405|120.296 +638613.568|220363.788|119.991 +638618.701|220359.127|119.567 +638623.785|220354.510|119.101 +638628.869|220349.889|118.705 +638634.002|220345.228|118.494 +638639.092|220340.608|118.153 +638644.228|220335.938|117.684 +638649.318|220331.314|117.373 +638654.460|220326.645|116.979 +638659.553|220322.018|116.583 +638664.646|220317.391|116.306 +638669.742|220312.764|116.004 +638674.839|220308.134|115.672 +638679.987|220303.458|115.273 +638685.037|220298.868|114.937 +638690.185|220294.196|114.757 +638695.285|220289.569|114.651 +638700.335|220284.981|114.504 +638705.441|220280.345|114.218 +638710.546|220275.712|114.026 +638715.603|220271.119|113.816 +638720.754|220266.440|113.697 +638725.817|220261.847|113.480 +638730.855|220257.284|113.992 +638735.948|220252.666|114.273 +638741.011|220248.070|114.078 +638746.110|220243.431|112.977 +638751.240|220238.771|112.374 +638756.269|220234.202|111.972 +638761.350|220229.590|111.581 +638766.425|220224.981|111.350 +638771.448|220220.425|111.271 +638776.526|220215.816|111.051 +638781.559|220211.250|110.822 +638786.640|220206.636|110.591 +638791.675|220202.064|110.365 +638796.716|220197.485|110.048 +638801.755|220192.916|109.899 +638806.787|220188.351|109.838 +638811.825|220183.775|109.689 +638816.870|220179.200|109.521 +638821.862|220174.668|109.399 +638826.895|220170.102|109.436 +638831.930|220165.536|109.512 +638836.910|220161.019|109.661 +638841.888|220156.508|109.917 +638846.862|220151.997|110.204 +638851.916|220147.413|110.073 +638856.875|220142.911|109.905 +638861.901|220138.348|109.487 +638866.915|220133.797|109.314 +638871.914|220129.262|109.369 +638876.952|220124.687|108.933 +638881.929|220120.170|108.683 +638886.956|220115.607|108.445 +638891.869|220111.148|108.460 +638896.865|220106.618|108.683 +638906.722|220097.681|109.085 +638911.687|220093.180|109.149 +638916.658|220088.669|109.146 +638921.617|220084.170|109.323 +638926.525|220079.726|109.594 +638931.453|220075.251|109.576 +638936.422|220070.746|109.737 +638941.326|220066.302|110.070 +638946.230|220061.849|109.856 +638951.229|220057.314|109.731 +638956.103|220052.894|109.911 +638961.056|220048.401|109.823 +638965.984|220043.924|109.469 +638970.901|220039.468|109.786 +638975.814|220035.008|109.649 +638980.767|220030.513|109.643 +638985.662|220026.069|109.277 +638990.673|220021.518|108.765 +638995.650|220016.989|107.640 +639000.735|220012.359|106.052 +639005.651|220007.890|105.613 +639010.491|220003.510|106.394 +639015.286|219999.167|107.137 +639020.236|219994.674|106.927 +639025.097|219990.261|106.659 +639029.980|219985.832|106.674 +639034.854|219981.409|106.772 +639039.758|219976.959|106.631 +639044.626|219972.543|106.433 +639049.484|219968.132|106.318 +639054.309|219963.758|106.513 +639059.159|219959.357|106.513 +639064.054|219954.913|106.189 +639068.906|219950.505|105.824 +639073.875|219945.991|105.345 +639078.718|219941.596|105.120 +639083.521|219937.241|105.226 +639088.368|219932.839|105.010 +639093.120|219928.532|105.196 +639097.984|219924.116|104.894 +639102.843|219919.702|104.294 +639107.799|219915.197|103.388 +639112.703|219910.741|102.538 +639117.626|219906.264|101.569 +639122.542|219901.795|100.700 +639127.401|219897.379|99.914 +639132.280|219892.947|99.392 +639137.108|219888.561|98.886 +639141.979|219884.141|98.481 +639146.783|219879.783|98.231 +639151.532|219875.473|98.021 +639156.332|219871.117|97.844 +639161.075|219866.816|97.737 +639165.836|219862.494|97.515 +639170.618|219858.154|97.198 +639175.370|219853.844|97.097 +639180.073|219849.577|97.003 +639184.831|219845.261|96.908 +639189.559|219840.975|96.725 +639194.228|219836.739|96.600 +639199.013|219832.395|96.405 +639203.726|219828.116|96.037 +639232.145|219802.308|92.998 +639236.443|219798.437|95.009 +639241.021|219794.283|95.028 +639254.932|219781.664|94.531 +639268.724|219769.152|94.302 +639277.832|219760.889|94.086 +639295.471|219744.927|96.747 +639299.875|219740.940|97.393 +639304.264|219736.968|97.871 +639322.010|219720.881|98.597 +639326.445|219716.858|98.621 +639330.788|219712.923|98.871 +639335.198|219708.924|98.801 +639339.633|219704.903|98.886 +639343.980|219700.965|99.170 +639348.390|219696.966|99.152 +639352.791|219692.970|98.926 +639357.068|219689.099|99.362 +639361.375|219685.195|99.636 +639365.660|219681.309|99.786 +639370.016|219677.358|99.609 +639374.393|219673.387|99.350 +639378.812|219669.373|98.899 +639391.760|219657.626|98.664 +639395.921|219653.861|99.271 +639400.084|219650.091|99.877 +639400.157|219647.717|100.048 +639395.988|219651.484|99.441 +639391.721|219655.340|98.813 +639387.484|219659.171|98.298 +639383.043|219663.197|98.545 +639378.584|219667.239|98.890 +639374.060|219671.339|99.301 +639369.534|219675.444|99.773 +639365.078|219679.480|99.904 +639360.692|219683.451|99.716 +639356.257|219687.466|99.536 +639351.880|219691.422|99.066 +639347.424|219695.461|99.277 +639342.959|219699.505|99.301 +639338.493|219703.547|99.075 +639333.991|219707.625|99.054 +639329.496|219711.697|99.014 +639325.003|219715.760|98.701 +639320.516|219719.823|98.652 +639306.946|219732.107|98.377 +639302.448|219736.179|97.929 +639293.517|219744.253|96.948 +639280.225|219756.256|94.031 +639275.616|219760.429|93.964 +639270.898|219764.705|94.244 +639266.292|219768.878|94.220 +639261.598|219773.130|94.412 +639242.771|219790.196|95.445 +639238.107|219794.414|94.973 +639229.085|219802.558|92.861 +639219.283|219811.465|95.220 +639214.534|219815.771|95.683 +639205.049|219824.361|95.674 +639195.478|219833.035|96.277 +639190.717|219837.351|96.634 +639181.140|219846.026|96.799 +639176.379|219850.336|96.887 +639171.679|219854.594|96.945 +639166.799|219859.013|97.204 +639162.023|219863.345|97.484 +639157.198|219867.716|97.774 +639152.416|219872.050|97.807 +639147.578|219876.433|98.228 +639142.805|219880.758|98.252 +639137.953|219885.153|98.490 +639133.116|219889.539|98.990 +639128.184|219894.014|99.511 +639123.328|219898.415|100.212 +639118.357|219902.929|101.078 +639113.410|219907.422|102.178 +639108.442|219911.933|103.096 +639103.480|219916.441|104.035 +639098.594|219920.873|104.787 +639093.662|219925.341|105.165 +639088.926|219929.624|104.449 +639083.994|219934.095|104.888 +639079.132|219938.502|105.208 +639074.329|219942.849|105.074 +639069.379|219947.336|105.351 +639064.499|219951.761|105.903 +639059.546|219956.251|106.260 +639054.687|219960.652|106.296 +639049.850|219965.029|106.156 +639044.931|219969.488|106.327 +639040.075|219973.884|106.385 +639035.174|219978.325|106.455 +639030.279|219982.756|106.476 +639025.390|219987.182|106.476 +639020.483|219991.629|106.668 +639015.508|219996.137|107.055 +639010.680|220000.505|106.580 +639005.867|220004.851|105.510 +639000.963|220009.295|105.787 +638995.830|220013.962|107.317 +638990.786|220018.546|108.567 +638985.802|220023.069|109.259 +638980.877|220027.532|109.393 +638975.893|220032.046|109.655 +638970.943|220036.529|109.612 +638966.006|220040.998|109.478 +638961.046|220045.490|109.573 +638956.093|220049.977|109.643 +638951.104|220054.494|109.570 +638946.166|220058.966|109.521 +638941.097|220063.562|109.896 +638936.175|220068.015|109.701 +638931.213|220072.505|109.439 +638926.235|220077.013|109.390 +638921.224|220081.548|109.186 +638916.262|220086.041|108.991 +638911.233|220090.595|109.015 +638906.262|220095.094|108.969 +638891.244|220108.691|108.460 +638886.239|220113.220|108.317 +638881.161|220117.823|108.533 +638876.129|220122.379|108.786 +638871.045|220126.991|109.177 +638866.046|220131.517|109.070 +638860.974|220136.111|109.295 +638855.909|220140.701|109.512 +638850.834|220145.304|109.914 +638845.783|220149.879|109.984 +638840.745|220154.438|109.853 +638835.725|220158.977|109.442 +638830.638|220163.579|109.329 +638825.553|220168.182|109.228 +638820.460|220172.793|109.323 +638815.407|220177.372|109.579 +638810.316|220181.980|109.686 +638805.226|220186.589|109.780 +638800.139|220191.194|109.856 +638795.000|220195.849|110.076 +638789.904|220200.466|110.426 +638784.771|220205.115|110.588 +638779.635|220209.769|110.883 +638774.551|220214.374|111.124 +638769.427|220219.013|111.203 +638764.301|220223.656|111.362 +638759.223|220228.255|111.572 +638754.041|220232.952|112.029 +638748.920|220237.591|112.215 +638743.788|220242.239|112.709 +638738.633|220246.921|113.947 +638733.516|220251.560|114.297 +638728.407|220256.187|114.328 +638723.275|220260.823|113.590 +638718.163|220265.450|113.779 +638713.055|220270.080|113.950 +638707.897|220274.749|114.151 +638702.740|220279.419|114.343 +638697.635|220284.043|114.541 +638692.484|220288.709|114.678 +638687.381|220293.330|114.864 +638682.230|220297.999|115.129 +638677.076|220302.666|115.455 +638671.974|220307.290|115.830 +638666.826|220311.953|116.108 +638661.680|220316.617|116.400 +638656.532|220321.280|116.854 +638651.387|220325.944|117.190 +638646.245|220330.604|117.601 +638641.103|220335.264|118.019 +638635.961|220339.922|118.464 +638630.826|220344.576|118.714 +638625.687|220349.230|118.979 +638620.551|220353.888|119.424 +638615.415|220358.539|119.823 +638610.233|220363.236|120.171 +638605.149|220367.842|120.472 +638600.019|220372.493|120.908 +638594.844|220377.181|121.180 +638589.760|220381.783|121.390 +638584.633|220386.431|121.777 +638579.503|220391.080|122.188 +638574.376|220395.725|122.481 +638569.250|220400.370|122.743 +638564.123|220405.012|122.899 +638559.042|220409.614|122.993 +638553.912|220414.257|123.082 +638548.788|220418.899|123.414 +638543.717|220423.498|123.831 +638538.645|220428.094|124.295 +638533.521|220432.737|124.548 +638528.443|220437.336|124.691 +638523.368|220441.932|124.999 +638518.250|220446.572|125.413 +638513.182|220451.165|125.928 +638508.113|220455.761|126.261 +638502.986|220460.400|126.422 +638497.963|220464.954|126.660 +638492.848|220469.590|127.157 +638487.776|220474.183|127.437 +638482.750|220478.737|127.641 +638477.675|220483.334|127.900 +638472.607|220487.924|128.266 +638467.583|220492.478|128.568 +638462.518|220497.068|128.982 +638457.446|220501.664|129.223 +638452.414|220506.221|129.287 +638447.387|220510.775|129.531 +638442.358|220515.328|129.687 +638437.332|220519.882|129.940 +638432.306|220524.436|130.156 +638427.267|220528.999|130.165 +638422.226|220533.562|130.159 +638412.183|220542.654|129.976 +638402.204|220551.691|130.199 +638397.214|220556.208|130.375 +638392.206|220560.744|130.177 +638382.197|220569.802|130.077 +638317.298|220628.510|125.971 +638312.199|220633.106|124.496 +638287.361|220655.576|122.886 +638257.832|220682.316|123.283 +638252.897|220686.779|123.027 +638228.312|220709.032|122.542 +638208.732|220726.759|122.393 +638203.858|220731.167|122.054 +638193.997|220740.088|121.292 +638174.469|220757.764|120.978 +638159.970|220770.904|121.975 +638150.448|220779.539|123.234 +638140.923|220788.174|124.084 +638131.440|220796.775|125.322 +638126.624|220801.134|125.386 +638121.830|220805.477|125.633 +638112.308|220814.103|125.922 +638107.510|220818.450|126.191 +638097.915|220827.136|126.069 +638093.166|220831.437|126.026 +638083.626|220840.084|126.410 +638078.954|220844.324|126.962 +638074.202|220848.628|126.995 +638069.496|220852.895|127.337 +638060.038|220861.469|127.779 +638055.353|220865.715|127.980 +638050.665|220869.964|128.187 +638046.041|220874.161|128.827 +638041.332|220878.431|128.912 +638036.586|220882.732|129.117 +638031.959|220886.929|129.449 +638027.308|220891.145|129.641 +638022.611|220895.403|129.876 +638013.303|220903.839|130.324 +638008.636|220908.073|130.479 +638003.970|220912.301|130.668 +637999.343|220916.492|130.817 +637994.582|220920.805|130.461 +637966.702|220946.057|130.223 +637962.087|220950.242|130.284 +637957.439|220954.446|129.909 +637952.754|220958.688|129.607 +637948.093|220962.904|129.211 +637934.155|220975.522|128.355 +637920.213|220988.132|126.885 +637910.923|220996.538|126.038 +637897.018|221009.121|124.584 +637883.198|221021.621|122.993 +637878.663|221025.726|122.795 +637874.195|221029.777|122.944 +637851.420|221050.385|120.832 +637829.691|221070.087|122.289 +637816.624|221081.928|122.746 +637799.332|221097.598|122.978 +637795.050|221101.478|123.091 +637790.829|221105.304|123.255 +637777.999|221116.929|123.325 +637773.802|221120.733|123.658 +637756.974|221135.985|124.011 +637748.815|221143.391|124.916 +637744.666|221147.153|124.859 +637740.512|221150.920|125.014 +637736.361|221154.684|124.987 +637732.240|221158.418|124.868 +637728.140|221162.137|124.862 +637719.929|221169.580|124.840 +637715.787|221173.335|124.688 +637711.711|221177.029|124.621 +637707.682|221180.684|124.764 +637703.701|221184.296|124.889 +637695.743|221191.516|125.209 +637679.909|221205.876|125.252 +637660.228|221223.709|124.444 +637652.208|221230.967|123.353 +637633.280|221248.133|123.661 +637625.840|221254.881|123.752 +637622.094|221258.277|123.822 +637618.406|221261.627|123.908 +637614.776|221264.918|124.036 +637611.210|221268.155|124.398 +637607.601|221271.432|124.615 +637604.004|221274.693|124.691 +637589.304|221288.007|123.566 +637792.987|221101.384|123.036 +637797.257|221097.504|122.877 +637818.727|221077.999|122.615 +637823.070|221074.055|122.661 +637831.687|221066.222|122.201 +637836.064|221062.250|122.188 +637840.353|221058.349|121.783 +637853.416|221046.474|120.835 +637857.799|221042.490|120.686 +637876.039|221025.955|122.804 +637880.568|221021.840|122.990 +637885.094|221017.734|123.161 +637908.158|220996.819|125.584 +637917.394|220988.443|126.684 +637931.381|220975.760|128.138 +637945.405|220963.038|129.184 +637950.053|220958.819|129.537 +637954.723|220954.583|129.732 +637959.490|220950.258|130.235 +637964.056|220946.112|130.171 +637968.750|220941.851|130.302 +637973.499|220937.544|130.756 +637987.516|220924.816|130.665 +637992.113|220920.640|130.311 +637996.889|220916.306|130.775 +638001.568|220912.060|130.650 +638006.225|220907.826|130.433 +638010.943|220903.541|130.284 +638015.634|220899.280|129.976 +638025.010|220890.760|129.388 +638029.743|220886.463|129.424 +638034.425|220882.208|129.129 +638039.201|220877.867|128.827 +638043.923|220873.582|128.830 +638048.568|220869.354|128.013 +638053.381|220864.983|127.995 +638058.093|220860.701|127.657 +638062.887|220856.345|127.562 +638067.606|220852.060|127.288 +638072.434|220847.677|127.111 +638077.192|220843.352|126.824 +638091.563|220830.297|126.364 +638096.394|220825.908|125.947 +638101.213|220821.531|125.806 +638106.123|220817.075|126.020 +638110.933|220812.707|125.843 +638115.807|220808.281|125.825 +638120.589|220803.935|125.505 +638149.612|220777.558|123.341 +638159.250|220768.788|121.896 +638168.940|220759.983|120.902 +638188.660|220742.076|120.808 +638198.637|220733.029|121.716 +638223.450|220710.511|122.435 +638288.300|220651.641|122.835 +638303.445|220637.904|123.883 +638333.834|220610.359|127.693 +638353.984|220592.071|128.498 +638379.231|220569.159|129.918 +638389.341|220559.985|130.257 +638394.383|220555.407|130.229 +638399.467|220550.789|130.156 +638404.505|220546.211|130.165 +638409.580|220541.599|129.952 +638414.618|220537.027|129.936 +638419.708|220532.403|130.083 +638424.747|220527.828|130.144 +638429.776|220523.259|130.065 +638434.851|220518.651|129.921 +638439.926|220514.042|129.796 +638444.998|220509.434|129.620 +638450.067|220504.828|129.400 +638455.138|220500.219|129.257 +638460.165|220495.654|129.181 +638465.270|220491.011|128.714 +638470.333|220486.409|128.348 +638475.399|220481.806|128.080 +638480.464|220477.201|127.794 +638485.533|220472.595|127.577 +638490.599|220467.993|127.285 +638495.659|220463.390|126.855 +638500.724|220458.788|126.550 +638505.793|220454.182|126.373 +638510.911|220449.531|126.203 +638515.974|220444.929|125.700 +638521.036|220440.326|125.197 +638526.151|220435.678|124.831 +638531.220|220431.069|124.703 +638536.292|220426.464|124.450 +638541.406|220421.813|124.127 +638546.475|220417.207|123.731 +638551.590|220412.556|123.289 +638556.661|220407.947|123.139 +638561.736|220403.339|123.094 +638566.860|220398.684|122.978 +638571.981|220394.030|122.682 +638577.053|220389.421|122.368 +638582.173|220384.764|121.987 +638587.297|220380.110|121.582 +638592.372|220375.495|121.332 +638597.493|220370.841|121.024 +638602.570|220366.226|120.643 +638607.648|220361.611|120.308 +638612.775|220356.951|120.009 +638617.902|220352.291|119.640 +638628.067|220343.049|118.875 +638633.197|220338.389|118.665 +638638.284|220333.765|118.342 +638643.371|220329.138|117.839 +638648.507|220324.468|117.467 +638653.597|220319.842|117.077 +638658.687|220315.212|116.644 +638663.781|220310.585|116.309 +638668.874|220305.955|116.007 +638673.970|220301.325|115.675 +638679.115|220296.646|115.318 +638684.163|220292.059|115.032 +638689.308|220287.383|114.803 +638694.358|220282.796|114.642 +638699.454|220278.166|114.559 +638704.554|220273.533|114.367 +638709.656|220268.894|114.117 +638714.761|220264.255|113.880 +638719.864|220259.622|113.797 +638724.847|220255.105|114.447 +638729.950|220250.469|114.379 +638735.067|220245.818|113.910 +638740.161|220241.176|112.816 +638745.235|220236.561|112.334 +638750.353|220231.910|112.069 +638755.425|220227.301|111.792 +638760.500|220222.686|111.459 +638765.526|220218.120|111.234 +638770.595|220213.515|111.115 +638775.670|220208.903|110.957 +638780.699|220204.334|110.734 +638785.783|220199.713|110.451 +638790.818|220195.138|110.216 +638795.899|220190.521|110.051 +638800.938|220185.943|109.847 +638805.924|220181.410|109.692 +638811.008|220176.792|109.603 +638816.010|220172.245|109.244 +638821.045|220167.670|109.207 +638826.044|220163.128|109.015 +638831.022|220158.611|109.207 +638836.033|220154.067|109.661 +638841.007|220149.549|109.887 +638845.999|220145.017|109.905 +638851.023|220140.451|109.463 +638856.034|220135.894|109.237 +638861.002|220131.380|108.975 +638866.001|220126.839|108.988 +638870.957|220122.337|108.942 +638875.943|220117.804|108.543 +638880.969|220113.239|108.271 +638885.925|220108.734|108.296 +638890.900|220104.216|108.143 +638900.772|220095.258|108.881 +638905.743|220090.741|108.826 +638910.663|220086.276|108.853 +638915.625|220081.768|108.948 +638920.493|220077.348|109.064 +638925.464|220072.834|109.094 +638930.326|220068.421|109.308 +638935.288|220063.916|109.512 +638940.162|220059.493|109.637 +638945.115|220054.991|109.430 +638950.016|220050.538|109.280 +638954.938|220046.067|109.451 +638959.821|220041.632|109.548 +638964.750|220037.154|109.213 +638969.614|220032.741|109.564 +638974.516|220028.288|109.542 +638979.395|220023.853|109.262 +638989.274|220014.873|108.622 +638994.248|220010.341|107.552 +638999.293|220005.738|105.842 +639004.246|220001.236|105.534 +639009.004|219996.920|106.125 +639013.838|219992.541|106.951 +639018.715|219988.103|106.497 +639023.613|219983.656|106.345 +639028.487|219979.227|106.418 +639033.324|219974.835|106.412 +639038.173|219970.430|106.324 +639043.071|219965.977|106.247 +639047.942|219961.554|106.043 +639052.734|219957.202|106.089 +639057.647|219952.737|105.967 +639062.512|219948.311|105.473 +639067.416|219943.855|105.098 +639072.204|219939.508|105.272 +639077.054|219935.098|104.970 +639086.880|219926.155|103.498 +639091.486|219921.991|105.181 +639096.283|219917.633|105.013 +639101.203|219913.161|104.342 +639106.116|219908.687|103.355 +639111.054|219904.188|102.245 +639116.001|219899.686|101.115 +639120.863|219895.260|100.285 +639125.779|219890.786|99.450 +639130.665|219886.345|98.890 +639135.472|219881.977|98.554 +639140.291|219877.597|98.146 +639145.094|219873.232|97.881 +639149.870|219868.895|97.844 +639154.622|219864.579|97.646 +639164.239|219855.840|96.914 +639169.000|219851.515|96.728 +639173.813|219847.135|96.219 +639178.488|219842.899|96.649 +639192.811|219829.884|95.826 +639202.232|219821.325|95.436 +639221.252|219804.040|93.909 +639235.020|219791.552|94.924 +639239.683|219787.315|95.043 +639244.350|219783.078|94.878 +639258.242|219770.460|94.549 +639262.857|219766.269|94.479 +639267.435|219762.114|94.628 +639272.096|219757.875|94.046 +639285.348|219745.875|96.777 +639289.719|219741.918|97.588 +639294.291|219737.764|97.576 +639312.034|219721.673|99.021 +639316.584|219717.537|98.938 +639321.056|219713.480|99.039 +639325.442|219709.503|99.322 +639329.864|219705.488|99.435 +639334.290|219701.471|99.542 +639338.719|219697.448|99.652 +639343.105|219693.467|99.737 +639347.579|219689.404|99.645 +639351.944|219685.445|99.883 +639356.272|219681.516|100.048 +639360.582|219677.605|100.316 +639364.953|219673.634|100.292 +639369.388|219669.604|99.990 +639373.823|219665.572|99.444 +639378.364|219661.436|98.414 +639382.619|219657.577|98.783 +639386.950|219653.642|98.804 +639391.138|219649.847|99.280 +639395.265|219646.107|100.045 +639396.911|219642.864|100.240 +639392.733|219646.641|99.703 +639388.593|219650.377|98.987 +639375.688|219662.057|98.749 +639371.140|219666.181|99.548 +639366.709|219670.202|100.087 +639362.298|219674.198|100.273 +639357.943|219678.139|100.206 +639353.621|219682.046|99.984 +639349.268|219685.984|99.688 +639344.861|219689.974|99.673 +639340.441|219693.973|99.734 +639336.003|219697.990|99.652 +639331.526|219702.041|99.514 +639327.146|219706.007|99.438 +639322.692|219710.036|99.213 +639318.242|219714.059|98.990 +639313.765|219718.113|98.932 +639309.214|219722.234|98.996 +639300.219|219730.372|98.630 +639295.748|219734.417|98.332 +639286.845|219742.461|97.012 +639282.285|219746.588|96.954 +639277.884|219750.559|96.034 +639273.510|219754.503|94.689 +639264.344|219762.797|94.372 +639250.354|219775.468|94.552 +639231.578|219792.469|94.909 +639217.494|219805.216|94.586 +639212.973|219809.297|93.656 +639193.622|219826.845|95.781 +639179.299|219839.811|95.872 +639164.864|219852.884|96.253 +639159.911|219857.380|97.049 +639155.070|219861.769|97.466 +639150.212|219866.167|97.667 +639145.366|219870.556|97.817 +639140.483|219874.979|97.905 +639135.633|219879.374|98.152 +639130.744|219883.806|98.682 +639125.825|219888.265|99.106 +639120.878|219892.752|99.767 +639115.897|219897.272|100.703 +639110.896|219901.817|101.858 +639105.845|219906.404|103.035 +639100.862|219910.927|104.120 +639095.884|219915.447|104.854 +639090.974|219919.894|105.089 +639076.535|219932.949|103.654 +639071.433|219937.588|105.138 +639066.575|219941.986|105.089 +639061.606|219946.482|105.144 +639056.693|219950.938|105.610 +639051.700|219955.465|105.952 +639046.787|219959.915|106.055 +639041.828|219964.404|106.141 +639036.927|219968.842|106.205 +639031.974|219973.326|106.296 +639027.091|219977.752|106.269 +639022.113|219982.253|106.180 +639017.224|219986.682|106.250 +639012.192|219991.245|106.720 +639002.432|220000.063|105.394 +638997.434|220004.601|106.129 +638992.289|220009.280|107.820 +638987.287|220013.819|108.677 +638982.218|220018.415|109.265 +638977.317|220022.853|109.192 +638972.294|220027.404|109.378 +638967.338|220031.890|109.417 +638962.409|220036.350|109.198 +638957.398|220040.891|109.369 +638947.489|220049.855|109.055 +638942.475|220054.403|109.344 +638937.501|220058.905|109.213 +638932.526|220063.407|109.082 +638927.552|220067.909|108.988 +638922.578|220072.414|108.930 +638917.609|220076.909|108.823 +638912.638|220081.408|108.738 +638907.621|220085.950|108.664 +638902.598|220090.497|108.680 +638897.575|220095.048|108.750 +638887.647|220104.027|108.009 +638882.579|220108.618|108.094 +638877.610|220113.120|108.198 +638872.532|220117.722|108.463 +638867.500|220122.282|108.814 +638862.459|220126.845|108.646 +638857.442|220131.389|108.826 +638852.425|220135.937|109.088 +638847.353|220140.533|109.475 +638842.281|220145.130|109.841 +638837.236|220149.699|109.841 +638832.165|220154.292|109.542 +638827.209|220158.776|108.957 +638822.118|220163.384|108.948 +638817.065|220167.965|109.189 +638812.014|220172.544|109.433 +638806.921|220177.161|109.622 +638801.880|220181.733|109.801 +638796.792|220186.342|109.935 +638791.702|220190.957|110.155 +638786.667|220195.519|110.329 +638781.531|220200.177|110.563 +638776.456|220204.773|110.609 +638771.366|220209.391|110.990 +638766.294|220213.987|111.075 +638761.213|220218.593|111.359 +638756.135|220223.198|111.648 +638751.005|220227.850|111.990 +638745.933|220232.446|112.194 +638740.810|220237.091|112.560 +638735.686|220241.742|113.017 +638730.590|220246.372|114.105 +638725.472|220251.011|114.456 +638720.370|220255.635|114.425 +638715.283|220260.238|113.916 +638710.174|220264.865|114.066 +638705.118|220269.452|114.270 +638699.963|220274.124|114.507 +638694.861|220278.745|114.565 +638689.759|220283.372|114.748 +638684.656|220287.996|114.922 +638679.508|220292.665|115.239 +638674.406|220297.292|115.586 +638669.258|220301.959|115.900 +638664.158|220306.583|116.211 +638659.062|220311.203|116.577 +638653.917|220315.870|116.925 +638648.824|220320.491|117.391 +638643.682|220325.154|117.827 +638638.540|220329.818|118.293 +638633.450|220334.432|118.674 +638628.314|220339.090|118.894 +638623.181|220343.744|119.147 +638618.045|220348.401|119.573 +638612.961|220353.013|119.912 +638607.831|220357.664|120.192 +638602.699|220362.319|120.555 +638597.617|220366.927|120.951 +638592.494|220371.572|121.241 +638587.364|220376.224|121.481 +638582.237|220380.872|121.908 +638577.114|220385.520|122.274 +638571.987|220390.168|122.603 +638566.912|220394.771|122.893 +638561.785|220399.416|123.109 +638556.658|220404.061|123.207 +638551.535|220408.706|123.338 +638546.414|220413.351|123.749 +638541.293|220417.993|124.072 +638536.221|220422.593|124.423 +638531.101|220427.238|124.654 +638525.974|220431.880|124.761 +638520.905|220436.480|125.179 +638515.791|220441.119|125.654 +638510.676|220445.758|126.093 +638505.607|220450.354|126.395 +638500.532|220454.954|126.578 +638495.412|220459.596|126.785 +638490.349|220464.189|127.260 +638485.231|220468.828|127.571 +638480.160|220473.427|127.766 +638475.091|220478.024|128.074 +638469.973|220482.663|128.364 +638464.904|220487.259|128.623 +638459.842|220491.853|129.101 +638454.770|220496.452|129.333 +638449.643|220501.100|129.379 +638444.620|220505.657|129.632 +638439.539|220510.260|129.723 +638434.464|220514.862|129.903 +638429.386|220519.468|130.049 +638424.305|220524.073|130.110 +638419.269|220528.639|130.186 +638414.216|220533.217|129.879 +638409.132|220537.823|130.010 +638404.148|220542.343|130.162 +638399.055|220546.958|130.165 +638394.011|220551.533|130.129 +638388.978|220556.096|130.354 +638383.913|220560.683|130.031 +638333.614|220606.241|127.562 +638303.345|220633.625|123.597 +638283.368|220651.715|122.246 +638263.568|220669.667|122.780 +638253.735|220678.583|123.072 +638229.043|220700.952|122.359 +638224.081|220705.445|121.963 +638214.355|220714.272|122.664 +638209.423|220718.740|122.640 +638174.938|220749.964|119.921 +638165.258|220758.745|120.579 +638155.699|220767.423|121.887 +638127.112|220793.371|125.151 +638122.324|220797.714|125.410 +638117.535|220802.057|125.691 +638112.768|220806.379|125.788 +638108.001|220810.702|125.889 +638103.246|220815.014|126.111 +638098.439|220819.370|125.959 +638088.975|220827.950|126.468 +638084.163|220832.309|126.337 +638074.726|220840.865|126.779 +638070.002|220845.150|126.962 +638065.332|220849.384|127.227 +638060.614|220853.660|127.513 +638051.198|220862.198|127.910 +638046.520|220866.440|128.178 +638041.804|220870.714|128.208 +638032.542|220879.117|129.089 +638027.863|220883.357|129.095 +638018.569|220891.788|129.860 +638004.637|220904.416|130.409 +638000.065|220908.561|130.549 +637981.469|220925.407|130.375 +637976.861|220929.589|130.692 +637972.270|220933.747|130.540 +637967.592|220937.980|130.196 +637962.965|220942.171|130.171 +637958.396|220946.313|130.202 +637953.726|220950.538|129.693 +637949.118|220954.711|129.543 +637939.833|220963.114|128.656 +637935.280|220967.238|128.611 +637921.387|220979.808|127.303 +637916.781|220983.978|126.776 +637912.139|220988.172|126.090 +637898.505|221000.519|125.428 +637889.160|221008.962|123.420 +637884.640|221013.056|123.252 +637875.615|221021.227|122.777 +637861.826|221033.694|120.591 +637857.330|221037.763|120.418 +637852.968|221041.719|120.658 +637848.582|221045.694|120.543 +637835.610|221057.459|121.722 +637801.067|221088.762|122.451 +637788.311|221100.329|123.158 +637779.776|221108.059|123.109 +637775.521|221111.918|123.146 +637771.404|221115.652|123.600 +637762.988|221123.278|123.719 +637758.821|221127.051|123.764 +637754.667|221130.821|124.090 +637746.431|221138.286|124.663 +637742.252|221142.069|124.471 +637738.177|221145.763|124.752 +637734.029|221149.521|124.724 +637729.887|221153.273|124.740 +637725.827|221156.952|124.895 +637721.672|221160.713|124.660 +637717.527|221164.462|124.496 +637713.455|221168.150|124.417 +637709.413|221171.811|124.499 +637661.456|221215.236|123.904 +637657.622|221218.714|124.118 +637634.448|221239.693|123.612 +637626.867|221246.554|123.563 +637623.127|221249.944|123.639 +637619.427|221253.293|123.673 +637615.775|221256.604|123.898 +637612.151|221259.889|124.246 +637608.475|221263.218|124.407 +637597.564|221273.102|124.578 +637586.859|221282.801|125.005 +637784.172|221102.149|123.088 +637792.609|221094.471|122.752 +637796.790|221090.664|122.445 +637805.361|221082.870|122.326 +637826.941|221063.244|122.079 +637839.901|221051.448|121.283 +637848.488|221043.627|120.323 +637852.898|221039.616|120.308 +637857.339|221035.580|120.457 +637875.603|221019.002|122.758 +637880.129|221014.894|123.197 +637884.655|221010.779|123.392 +637907.631|220989.921|125.983 +637912.258|220985.718|126.315 +637916.918|220981.484|126.855 +637940.114|220960.423|129.046 +637949.425|220951.964|129.546 +637963.382|220939.285|130.257 +637968.009|220935.078|130.299 +637986.672|220918.110|130.680 +638000.696|220905.354|130.513 +638014.699|220892.611|129.772 +638024.068|220884.085|129.150 +638028.783|220879.797|129.050 +638042.999|220866.861|128.367 +638047.681|220862.600|128.126 +638052.439|220858.269|127.754 +638057.246|220853.898|127.721 +638061.946|220849.618|127.324 +638066.722|220845.275|127.111 +638071.507|220840.923|126.980 +638076.323|220836.536|126.757 +638081.102|220832.193|126.614 +638090.743|220823.421|126.306 +638110.116|220805.800|125.822 +638114.984|220801.372|125.761 +638119.785|220797.001|125.197 +638144.013|220774.942|123.191 +638173.213|220748.352|120.049 +638183.247|220739.247|121.280 +638188.154|220734.782|121.000 +638223.030|220703.076|121.655 +638238.142|220689.351|122.792 +638243.159|220684.791|122.874 +638268.183|220662.032|122.454 +638298.407|220634.560|123.395 +638313.772|220620.628|126.227 +638379.688|220560.756|130.001 +638384.742|220556.163|130.174 +638389.801|220551.569|130.449 +638394.879|220546.951|130.247 +638399.912|220542.376|130.147 +638410.028|220533.181|129.973 +638415.127|220528.551|130.257 +638420.153|220523.979|130.104 +638425.286|220519.315|130.159 +638430.315|220514.740|130.092 +638435.387|220510.132|129.857 +638440.459|220505.520|129.696 +638445.531|220500.905|129.580 +638450.600|220496.297|129.379 +638455.724|220491.639|129.309 +638460.744|220487.076|129.056 +638465.846|220482.428|128.556 +638470.915|220477.820|128.361 +638475.981|220473.214|128.035 +638491.178|220459.391|127.218 +638496.283|220454.743|126.657 +638501.355|220450.132|126.507 +638506.424|220445.523|126.383 +638511.536|220440.872|126.017 +638516.598|220436.266|125.535 +638521.661|220431.658|125.017 +638526.779|220427.003|124.755 +638531.851|220422.392|124.718 +638536.919|220417.783|124.414 +638542.037|220413.129|124.087 +638547.106|220408.517|123.752 +638552.175|220403.906|123.459 +638557.295|220399.248|123.304 +638562.416|220394.591|123.155 +638567.488|220389.979|122.871 +638572.560|220385.364|122.518 +638577.684|220380.704|122.207 +638582.755|220376.089|121.829 +638587.830|220371.472|121.417 +638592.957|220366.811|121.216 +638598.029|220362.197|120.869 +638603.156|220357.533|120.512 +638608.234|220352.912|120.152 +638613.312|220348.292|119.838 +638618.393|220343.671|119.537 +638623.477|220339.047|119.186 +638628.558|220334.423|118.955 +638633.691|220329.757|118.729 +638638.778|220325.127|118.229 +638643.865|220320.497|117.729 +638648.955|220315.864|117.315 +638654.045|220311.234|116.949 +638659.138|220306.601|116.541 +638664.232|220301.965|116.156 +638669.279|220297.378|115.885 +638674.372|220292.742|115.562 +638679.469|220288.106|115.312 +638684.519|220283.512|115.001 +638689.618|220278.876|114.776 +638694.715|220274.240|114.611 +638699.765|220269.650|114.523 +638704.868|220265.011|114.331 +638709.921|220260.415|114.157 +638714.960|220255.839|114.538 +638720.056|220251.210|114.584 +638725.067|220246.656|114.331 +638730.151|220242.026|113.371 +638735.217|220237.420|113.102 +638740.285|220232.812|112.688 +638745.357|220228.200|112.340 +638750.384|220223.631|111.944 +638755.458|220219.017|111.600 +638760.533|220214.405|111.307 +638765.511|220209.879|111.063 +638770.583|220205.273|110.932 +638775.612|220200.701|110.710 +638780.644|220196.126|110.414 +638785.722|220191.514|110.301 +638790.709|220186.982|110.082 +638795.741|220182.410|109.948 +638800.776|220177.832|109.756 +638805.763|220173.303|109.634 +638810.810|220168.712|109.329 +638815.815|220164.165|108.978 +638820.860|220159.580|108.786 +638825.813|220155.088|109.350 +638830.772|220150.589|109.844 +638835.755|220146.062|109.908 +638840.778|220141.494|109.423 +638845.786|220136.943|109.183 +638850.754|220132.429|108.878 +638855.768|220127.869|108.604 +638860.721|220123.367|108.561 +638865.702|220118.844|108.207 +638870.655|220114.342|108.201 +638875.669|220109.785|108.088 +638880.640|220105.268|107.927 +638895.426|220091.848|108.640 +638900.348|220087.376|108.573 +638905.274|220082.899|108.469 +638910.239|220078.391|108.543 +638915.110|220073.968|108.597 +638920.072|220069.460|108.728 +638924.943|220065.040|108.832 +638929.865|220060.569|108.899 +638934.788|220056.101|109.021 +638939.668|220051.666|109.061 +638944.615|220047.173|108.966 +638949.498|220042.738|109.033 +638954.377|220038.309|109.158 +638959.254|220033.878|109.314 +638969.041|220024.990|109.402 +638973.952|220020.527|109.295 +638978.832|220016.092|109.042 +638983.763|220011.609|108.777 +638988.668|220007.153|108.363 +638993.648|220002.611|107.223 +638998.680|219998.021|105.659 +639003.572|219993.577|105.476 +639008.376|219989.221|106.119 +639013.189|219984.850|106.235 +639018.123|219980.367|106.168 +639022.900|219976.029|106.238 +639027.767|219971.610|106.375 +639032.617|219967.202|106.257 +639037.463|219962.801|106.196 +639042.300|219958.406|106.238 +639047.122|219954.026|106.034 +639052.020|219949.573|105.620 +639056.888|219945.141|105.062 +639061.725|219940.749|105.205 +639066.529|219936.387|105.263 +639090.514|219914.603|105.257 +639095.323|219910.229|104.986 +639100.212|219905.782|104.181 +639105.165|219901.265|102.904 +639110.170|219896.708|101.688 +639115.081|219892.234|100.459 +639120.000|219887.753|99.569 +639124.855|219883.337|98.838 +639129.644|219878.984|98.600 +639134.505|219874.564|98.234 +639139.269|219870.233|97.871 +639144.046|219865.896|97.798 +639153.607|219857.206|97.332 +639172.758|219839.802|96.192 +639177.449|219835.541|96.186 +639186.937|219826.921|95.878 +639196.350|219818.371|95.531 +639201.016|219814.135|95.781 +639224.504|219792.796|95.171 +639238.506|219780.076|94.833 +639247.715|219771.716|94.958 +639257.020|219763.260|94.601 +639261.711|219758.993|94.086 +639266.179|219754.945|94.872 +639270.544|219750.998|96.226 +639274.970|219746.987|96.975 +639292.892|219730.735|98.853 +639301.850|219722.603|99.331 +639306.361|219718.510|99.429 +639310.891|219714.395|99.450 +639315.362|219710.338|99.523 +639319.821|219706.287|99.670 +639324.229|219702.288|99.844 +639328.642|219698.280|99.996 +639333.120|219694.214|100.097 +639337.542|219690.200|100.240 +639341.962|219686.185|100.154 +639346.357|219682.196|100.206 +639350.761|219678.197|100.487 +639355.071|219674.289|100.749 +639359.421|219670.336|100.813 +639363.895|219666.273|100.554 +639368.388|219662.185|99.959 +639372.856|219658.116|99.258 +639377.334|219654.044|98.780 +639385.917|219646.253|99.185 +639390.023|219642.535|100.045 +639394.202|219638.746|100.566 +639393.315|219637.536|100.609 +639389.108|219641.343|100.194 +639385.024|219645.031|99.216 +639376.438|219652.807|98.780 +639372.006|219656.827|99.249 +639367.471|219660.942|99.990 +639362.972|219665.029|100.599 +639358.549|219669.037|100.840 +639354.123|219673.049|100.868 +639349.826|219676.938|100.520 +639345.461|219680.888|100.270 +639341.063|219684.872|100.206 +639336.604|219688.913|100.215 +639332.114|219692.979|100.124 +639327.673|219697.003|100.069 +639323.256|219701.002|99.904 +639318.788|219705.050|99.761 +639314.323|219709.091|99.606 +639309.808|219713.182|99.463 +639305.276|219717.287|99.441 +639300.756|219721.384|99.365 +639291.780|219729.510|98.923 +639260.370|219757.911|94.107 +639255.627|219762.215|94.598 +639246.233|219770.728|94.814 +639236.943|219779.140|94.519 +639222.806|219791.957|94.973 +639213.260|219800.611|95.211 +639203.744|219809.240|95.689 +639199.001|219813.537|95.549 +639189.516|219822.126|95.317 +639184.712|219826.485|95.646 +639179.939|219830.810|95.777 +639175.087|219835.215|96.146 +639170.338|219839.512|95.845 +639165.479|219843.920|96.277 +639160.688|219848.260|96.308 +639150.953|219857.093|97.131 +639146.076|219861.519|97.490 +639141.229|219865.911|97.649 +639136.389|219870.300|97.807 +639131.537|219874.699|98.048 +639126.639|219879.142|98.320 +639121.704|219883.617|98.856 +639116.745|219888.122|99.621 +639111.761|219892.651|100.599 +639106.738|219897.217|101.901 +639101.651|219901.847|103.373 +639096.671|219906.373|104.458 +639091.663|219910.915|105.028 +639086.975|219915.152|103.971 +639062.374|219937.457|105.181 +639057.501|219941.870|104.888 +639052.593|219946.318|104.900 +639047.622|219950.832|105.479 +639042.675|219955.318|105.876 +639037.704|219959.823|106.074 +639032.815|219964.255|106.052 +639027.877|219968.729|106.034 +639022.982|219973.167|106.095 +639018.059|219977.624|105.970 +639013.143|219982.080|105.851 +639008.156|219986.597|105.900 +639003.347|219990.949|105.290 +638998.360|219995.470|105.403 +638993.282|220000.090|106.894 +638988.195|220004.711|108.043 +638983.236|220009.213|108.497 +638978.198|220013.782|108.796 +638973.263|220018.260|109.082 +638968.255|220022.795|109.116 +638963.235|220027.355|109.850 +638958.358|220031.765|109.113 +638953.369|220036.285|109.033 +638948.394|220040.790|108.829 +638943.459|220045.262|108.756 +638938.476|220049.776|108.719 +638933.489|220054.293|108.695 +638928.509|220058.807|108.664 +638923.538|220063.312|108.552 +638918.573|220067.811|108.396 +638913.549|220072.359|108.332 +638908.584|220076.858|108.213 +638903.549|220081.420|108.351 +638898.581|220085.922|108.314 +638893.561|220090.473|108.347 +638878.570|220104.052|107.671 +638873.593|220108.560|107.842 +638868.530|220113.150|107.918 +638863.516|220117.695|108.027 +638858.502|220122.239|108.158 +638853.449|220126.820|108.204 +638848.426|220131.377|108.536 +638843.360|220135.971|108.811 +638838.309|220140.552|108.951 +638833.274|220145.124|109.637 +638828.178|220149.744|109.789 +638823.194|220154.262|109.728 +638818.177|220158.794|108.579 +638813.121|220163.381|108.948 +638808.067|220167.969|109.341 +638802.974|220172.589|109.612 +638797.939|220177.158|109.765 +638792.854|220181.767|109.923 +638787.770|220186.375|110.088 +638782.741|220190.935|110.216 +638777.614|220195.586|110.420 +638772.530|220200.201|110.743 +638767.458|220204.801|110.859 +638762.380|220209.406|111.136 +638757.306|220214.006|111.341 +638752.228|220218.614|111.731 +638747.104|220223.265|112.121 +638742.029|220227.871|112.542 +638736.960|220232.470|112.883 +638731.843|220237.109|113.191 +638726.783|220241.700|113.389 +638721.656|220246.360|114.197 +638716.590|220250.957|114.626 +638711.491|220255.577|114.693 +638706.407|220260.183|114.276 +638701.353|220264.767|114.443 +638696.251|220269.394|114.660 +638691.155|220274.012|114.715 +638686.107|220278.593|114.888 +638681.008|220283.217|115.172 +638675.912|220287.840|115.458 +638670.815|220292.464|115.751 +638665.719|220297.088|116.068 +638660.626|220301.709|116.370 +638655.533|220306.330|116.726 +638650.394|220310.993|117.135 +638645.304|220315.611|117.516 +638640.213|220320.229|117.979 +638635.077|220324.892|118.506 +638629.993|220329.504|118.820 +638624.909|220334.115|119.119 +638619.780|220338.770|119.302 +638614.699|220343.378|119.607 +638609.621|220347.990|120.027 +638604.494|220352.638|120.229 +638599.416|220357.247|120.668 +638594.289|220361.898|121.018 +638589.217|220366.500|121.271 +638584.142|220371.103|121.554 +638579.019|220375.751|122.024 +638573.947|220380.357|122.371 +638568.875|220384.959|122.673 +638563.754|220389.604|123.045 +638558.682|220394.204|123.225 +638553.607|220398.803|123.383 +638548.538|220403.403|123.618 +638543.421|220408.048|123.904 +638538.401|220412.601|124.276 +638533.283|220417.244|124.511 +638528.214|220421.840|124.785 +638523.142|220426.439|124.889 +638518.077|220431.036|125.206 +638513.014|220435.629|125.749 +638507.954|220440.223|126.261 +638502.888|220444.819|126.507 +638497.817|220449.418|126.544 +638492.748|220454.015|126.794 +638487.691|220458.608|127.300 +638482.625|220463.201|127.654 +638477.560|220467.798|127.830 +638472.497|220472.391|128.214 +638467.428|220476.988|128.397 +638462.362|220481.584|128.635 +638457.351|220486.132|129.120 +638452.282|220490.728|129.333 +638447.262|220495.282|129.510 +638442.191|220499.881|129.659 +638437.164|220504.441|129.790 +638432.092|220509.040|129.976 +638427.069|220513.594|130.186 +638422.037|220518.157|130.211 +638416.999|220522.723|130.119 +638411.973|220527.283|130.287 +638406.925|220531.855|130.092 +638401.902|220536.411|130.369 +638396.903|220540.944|130.193 +638391.871|220545.507|130.324 +638386.881|220550.033|130.385 +638381.864|220554.575|130.040 +638271.548|220654.479|121.454 +638227.181|220694.704|121.868 +638217.385|220703.582|121.795 +638212.505|220708.008|121.731 +638197.838|220721.313|122.316 +638183.104|220734.660|121.615 +638163.411|220752.488|119.808 +638153.944|220761.095|121.801 +638149.158|220765.445|122.792 +638144.373|220769.788|122.966 +638082.270|220826.128|126.587 +638077.527|220830.428|126.593 +638072.726|220834.778|126.578 +638068.011|220839.054|126.840 +638063.293|220843.334|127.081 +638053.908|220851.847|127.635 +638044.511|220860.372|128.163 +638039.823|220864.621|128.379 +638035.120|220868.885|128.495 +638030.484|220873.094|128.726 +638025.799|220877.340|129.007 +638021.124|220881.583|129.345 +638016.536|220885.743|129.632 +638002.516|220898.457|129.909 +637979.345|220919.464|130.397 +637965.516|220931.997|130.165 +637956.344|220940.309|130.296 +637951.626|220944.579|129.772 +637947.027|220948.746|129.379 +637942.449|220952.891|129.129 +637937.797|220957.100|128.784 +637933.204|220961.261|128.492 +637919.427|220973.736|127.501 +637910.124|220982.152|126.230 +637905.555|220986.288|125.669 +637901.035|220990.385|125.657 +637887.188|221002.909|123.734 +637882.686|221006.987|123.365 +637878.145|221011.099|123.094 +637873.637|221015.180|122.752 +637869.104|221019.286|122.563 +637855.391|221031.688|120.271 +637850.972|221035.693|120.219 +637846.555|221039.695|120.204 +637829.304|221055.344|121.320 +637803.423|221078.807|121.923 +637794.895|221086.537|121.993 +637790.713|221090.332|122.310 +637786.546|221094.114|122.697 +637782.334|221097.930|122.908 +637778.079|221101.789|122.923 +637769.639|221109.440|123.097 +637765.500|221113.195|123.447 +637761.421|221116.895|123.847 +637757.118|221120.793|123.502 +637748.918|221128.231|124.197 +637744.767|221131.992|124.337 +637740.610|221135.759|124.240 +637736.489|221139.493|124.325 +637732.395|221143.205|124.523 +637728.296|221146.918|124.502 +637724.184|221150.649|124.654 +637707.740|221165.538|124.133 +637675.967|221194.339|125.081 +637668.082|221201.480|124.990 +637652.059|221215.980|123.362 +637625.258|221240.257|123.234 +637621.433|221243.723|123.194 +637617.723|221247.085|123.399 +637614.044|221250.419|123.527 +637603.145|221260.307|124.474 +637592.166|221270.256|124.630 +637585.076|221276.684|125.032 +637784.333|221094.194|122.664 +637788.512|221090.393|122.329 +637792.709|221086.577|122.082 +637796.967|221082.712|121.884 +637801.237|221078.832|121.759 +637805.572|221074.897|121.707 +637814.338|221066.941|122.115 +637818.663|221063.012|121.829 +637844.620|221039.427|120.442 +637848.960|221035.483|120.082 +637853.398|221031.453|120.219 +637857.876|221027.393|120.567 +637867.117|221019.024|122.268 +637880.708|221006.694|123.365 +637885.262|221002.567|123.716 +637903.535|220985.995|125.416 +637912.807|220977.592|126.736 +637922.079|220969.186|127.605 +637931.299|220960.825|128.278 +637935.956|220956.597|128.647 +637940.583|220952.400|128.854 +637945.216|220948.197|129.126 +637949.874|220943.976|129.552 +637954.561|220939.721|129.903 +637959.194|220935.517|130.244 +637963.788|220931.345|130.089 +637968.460|220927.105|130.122 +637977.671|220918.735|130.052 +638000.982|220897.564|130.101 +638005.597|220893.363|129.638 +638019.615|220880.629|129.391 +638024.315|220876.356|128.891 +638028.933|220872.155|128.513 +638033.651|220867.870|128.480 +638038.357|220863.588|128.080 +638043.075|220859.302|128.077 +638066.670|220837.856|126.715 +638071.443|220833.516|126.544 +638076.232|220829.166|126.483 +638081.032|220824.805|126.520 +638085.802|220820.464|126.020 +638100.201|220807.382|125.569 +638129.243|220780.993|124.840 +638143.574|220767.953|122.798 +638148.469|220763.503|122.704 +638153.258|220759.141|121.750 +638162.752|220750.491|119.534 +638172.607|220741.542|119.582 +638177.642|220736.982|120.802 +638182.641|220732.450|121.323 +638197.521|220718.941|122.006 +638222.289|220696.438|121.530 +638227.245|220691.942|121.914 +638232.326|220687.334|122.600 +638242.253|220678.314|122.170 +638272.206|220651.099|121.625 +638277.239|220646.536|122.054 +638282.307|220641.933|122.426 +638287.343|220637.368|122.963 +638292.399|220632.777|123.237 +638368.340|220563.856|129.656 +638383.553|220550.039|130.159 +638388.610|220545.446|130.418 +638393.685|220540.831|130.193 +638398.772|220536.207|130.165 +638403.816|220531.623|130.305 +638408.851|220527.048|130.284 +638413.923|220522.436|130.065 +638419.007|220517.816|130.129 +638424.098|220513.192|130.314 +638429.124|220508.623|130.150 +638434.189|220504.014|129.891 +638439.258|220499.406|129.690 +638444.333|220494.791|129.598 +638449.402|220490.182|129.400 +638454.471|220485.574|129.245 +638459.534|220480.968|128.873 +638464.593|220476.366|128.461 +638469.662|220471.754|128.321 +638474.728|220467.149|128.035 +638479.794|220462.543|127.769 +638484.905|220457.892|127.507 +638489.919|220453.329|127.108 +638495.028|220448.684|126.608 +638500.100|220444.072|126.523 +638505.168|220439.464|126.376 +638510.280|220434.812|125.980 +638515.340|220430.207|125.471 +638520.405|220425.601|125.044 +638525.520|220420.947|124.822 +638530.592|220416.335|124.715 +638535.658|220411.727|124.371 +638540.775|220407.072|124.136 +638545.893|220402.421|123.847 +638550.962|220397.809|123.542 +638556.082|220393.152|123.353 +638561.203|220388.498|123.121 +638566.275|220383.886|122.847 +638571.392|220379.229|122.509 +638576.513|220374.568|122.158 +638581.539|220369.996|121.740 +638586.663|220365.336|121.350 +638592.265|220360.243|121.122 +638596.859|220356.064|120.841 +638601.985|220351.401|120.448 +638607.112|220346.737|120.152 +638612.141|220342.159|119.799 +638617.271|220337.496|119.525 +638622.401|220332.832|119.223 +638627.433|220328.254|119.052 +638632.566|220323.584|118.692 +638637.653|220318.958|118.223 +638642.740|220314.328|117.763 +638647.879|220309.655|117.406 +638652.969|220305.022|116.989 +638658.059|220300.389|116.641 +638663.153|220295.756|116.248 +638668.249|220291.123|115.940 +638673.342|220286.487|115.623 +638678.487|220281.808|115.361 +638683.538|220277.215|115.077 +638688.683|220272.539|114.913 +638693.782|220267.900|114.669 +638698.830|220263.313|114.642 +638703.926|220258.680|114.581 +638709.062|220254.017|114.873 +638714.115|220249.420|114.666 +638719.230|220244.769|114.267 +638724.360|220240.093|113.410 +638729.419|220235.494|113.258 +638734.531|220230.846|113.087 +638739.600|220226.234|112.755 +638744.675|220221.616|112.362 +638749.801|220216.950|111.911 +638754.882|220212.329|111.493 +638759.960|220207.708|111.188 +638765.038|220203.088|110.865 +638770.065|220198.516|110.710 +638775.142|220193.901|110.569 +638780.181|220189.317|110.228 +638785.262|220184.696|110.060 +638790.343|220180.078|109.951 +638795.329|220175.543|109.792 +638800.417|220170.913|109.588 +638805.461|220166.326|109.347 +638810.466|220161.772|108.963 +638815.565|220157.136|108.710 +638820.485|220152.677|109.859 +638825.529|220148.092|109.762 +638830.558|220143.511|109.097 +638835.633|220138.894|108.585 +638840.678|220134.306|108.567 +638845.640|220129.795|108.354 +638850.706|220125.184|108.055 +638855.713|220120.630|107.939 +638860.715|220116.085|107.979 +638865.726|220111.529|107.893 +638870.697|220107.008|107.695 +638875.715|220102.446|107.579 +638880.671|220097.944|107.680 +638885.666|220093.405|107.893 +638890.610|220088.912|108.158 +638895.588|220084.386|108.046 +638900.550|220079.875|108.113 +638905.521|220075.358|108.131 +638910.495|220070.835|108.107 +638915.418|220066.363|108.171 +638920.374|220061.861|108.442 +638925.296|220057.387|108.524 +638930.280|220052.858|108.515 +638935.154|220048.426|108.625 +638940.070|220043.960|108.856 +638945.020|220039.458|108.744 +638949.955|220034.975|108.811 +638954.822|220030.555|109.125 +638959.742|220026.078|108.860 +638964.628|220021.640|109.024 +638969.584|220017.132|108.954 +638974.455|220012.703|108.808 +638979.392|220008.213|108.512 +638984.281|220003.763|108.223 +638989.301|219999.194|107.668 +638994.267|219994.665|106.287 +638999.287|219990.090|105.336 +639004.167|219985.652|105.284 +639009.010|219981.254|105.601 +639013.868|219976.840|105.808 +639018.727|219972.424|106.010 +639023.570|219968.022|105.955 +639028.444|219963.594|106.061 +639033.275|219959.201|106.141 +639038.149|219954.770|105.891 +639043.044|219950.313|105.479 +639047.906|219945.888|104.952 +639052.788|219941.447|104.726 +639057.543|219937.131|105.150 +639062.396|219932.720|105.199 +639076.962|219919.458|103.843 +639086.521|219910.775|104.160 +639091.172|219906.556|105.107 +639096.046|219902.121|104.406 +639101.017|219897.586|103.017 +639106.013|219893.026|101.486 +639110.969|219888.506|100.279 +639115.852|219884.059|99.313 +639120.689|219879.652|98.694 +639125.511|219875.265|98.237 +639130.296|219870.916|98.057 +639135.091|219866.554|97.835 +639139.846|219862.232|97.588 +639144.664|219857.846|97.253 +639154.253|219849.117|96.302 +639159.030|219844.773|96.012 +639163.797|219840.439|95.796 +639173.124|219831.972|96.479 +639187.483|219818.899|94.763 +639192.155|219814.659|95.308 +639201.397|219806.265|95.790 +639210.788|219797.724|95.430 +639229.585|219780.625|94.287 +639238.796|219772.258|94.659 +639243.377|219768.094|94.717 +639248.016|219763.873|94.458 +639252.631|219759.679|94.366 +639257.212|219755.515|94.491 +639261.598|219751.544|95.738 +639266.006|219747.551|96.847 +639274.918|219739.465|98.006 +639279.374|219735.420|98.600 +639283.858|219731.351|99.054 +639292.859|219723.173|99.548 +639297.345|219719.101|99.767 +639301.862|219714.995|99.825 +639306.376|219710.893|99.917 +639310.854|219706.823|99.959 +639315.316|219702.770|100.097 +639319.833|219698.661|100.218 +639324.259|219694.641|100.316 +639328.724|219690.584|100.481 +639333.162|219686.551|100.542 +639337.585|219682.531|100.697 +639342.041|219678.480|100.706 +639346.500|219674.429|100.724 +639350.841|219670.488|101.078 +639355.263|219666.468|101.047 +639359.723|219662.411|100.855 +639364.182|219658.354|100.429 +639368.784|219654.160|99.581 +639373.241|219650.100|98.960 +639377.593|219646.144|99.109 +639381.900|219642.233|99.505 +639386.085|219638.438|100.243 +639390.325|219634.592|100.724 +639389.553|219633.001|100.758 +639385.362|219636.796|100.276 +639381.162|219640.602|99.859 +639372.777|219648.198|98.975 +639368.339|219652.234|99.499 +639363.850|219656.315|100.295 +639359.375|219660.381|100.776 +639355.013|219664.343|100.996 +639350.633|219668.318|101.060 +639346.299|219672.247|100.916 +639341.977|219676.167|100.721 +639337.612|219680.126|100.764 +639333.257|219684.076|100.523 +639328.810|219688.109|100.484 +639324.421|219692.092|100.447 +639320.019|219696.082|100.209 +639315.621|219700.075|100.246 +639311.171|219704.111|100.039 +639306.760|219708.110|99.908 +639302.335|219712.127|99.877 +639297.821|219716.220|99.773 +639293.349|219720.277|99.746 +639288.933|219724.282|99.444 +639266.691|219744.436|97.314 +639257.898|219752.391|95.500 +639253.497|219756.372|94.345 +639248.864|219760.578|94.528 +639244.310|219764.708|94.269 +639239.671|219768.920|94.534 +639234.998|219773.163|94.717 +639216.213|219790.220|95.619 +639202.220|219802.912|95.195 +639183.292|219820.100|95.799 +639159.478|219841.716|96.110 +639154.772|219845.986|95.933 +639149.913|219850.400|96.454 +639140.230|219859.199|97.387 +639135.298|219863.680|97.820 +639130.461|219868.072|97.978 +639125.621|219872.467|98.167 +639120.759|219876.884|98.548 +639115.870|219881.328|99.164 +639110.862|219885.885|99.956 +639105.839|219890.457|101.246 +639100.810|219895.038|102.645 +639095.710|219899.686|104.236 +639090.767|219904.182|105.095 +639085.978|219908.522|104.422 +639061.381|219930.855|105.260 +639056.388|219935.384|105.147 +639051.578|219939.746|104.778 +639046.574|219944.288|104.781 +639041.621|219948.789|105.245 +639036.622|219953.328|105.677 +639031.632|219957.863|106.092 +639026.643|219962.393|106.113 +639021.723|219966.855|105.961 +639016.743|219971.375|105.946 +639011.842|219975.819|105.662 +639006.892|219980.312|105.421 +639001.929|219984.814|105.299 +638996.882|219989.395|105.534 +638991.807|219994.019|106.985 +638986.695|219998.670|107.921 +638981.648|220003.254|108.277 +638976.655|220007.790|108.628 +638971.626|220012.356|108.866 +638966.560|220016.958|109.039 +638961.595|220021.460|108.698 +638956.554|220026.041|109.155 +638951.531|220030.595|108.933 +638946.568|220035.097|108.640 +638941.512|220039.687|108.814 +638936.495|220044.241|108.628 +638931.478|220048.788|108.421 +638926.409|220053.391|108.308 +638921.386|220057.948|108.247 +638916.317|220062.547|108.134 +638911.303|220067.095|108.012 +638906.234|220071.694|107.970 +638901.168|220076.291|107.912 +638896.154|220080.844|107.884 +638891.046|220085.477|107.777 +638886.044|220090.010|107.006 +638880.936|220094.652|107.598 +638875.885|220099.233|107.476 +638870.816|220103.835|107.631 +638865.705|220108.474|107.713 +638860.654|220113.062|107.701 +638855.546|220117.698|107.802 +638850.440|220122.334|107.921 +638845.378|220126.930|108.140 +638840.272|220131.566|108.293 +638835.228|220136.141|108.293 +638830.132|220140.765|108.390 +638824.959|220145.471|109.725 +638819.866|220150.092|109.847 +638814.803|220154.682|109.524 +638809.753|220159.254|108.917 +638804.662|220163.875|109.073 +638799.554|220168.514|109.573 +638794.418|220173.174|109.771 +638789.334|220177.786|109.908 +638784.213|220182.431|109.856 +638779.126|220187.049|110.143 +638773.996|220191.703|110.362 +638768.915|220196.318|110.615 +638763.837|220200.924|110.816 +638758.711|220205.578|111.097 +638753.581|220210.235|111.459 +638748.500|220214.847|111.886 +638743.376|220219.501|112.255 +638738.243|220224.165|112.919 +638733.132|220228.804|113.072 +638728.020|220233.440|113.221 +638722.909|220238.079|113.428 +638717.846|220242.675|113.730 +638712.668|220247.381|114.605 +638707.611|220251.972|114.834 +638702.512|220256.595|114.895 +638697.421|220261.210|114.611 +638692.322|220265.837|114.718 +638687.223|220270.464|114.949 +638682.123|220275.091|115.129 +638677.073|220279.678|115.413 +638671.977|220284.302|115.638 +638666.877|220288.932|116.019 +638661.781|220293.555|116.309 +638656.688|220298.182|116.684 +638651.592|220302.809|117.092 +638646.501|220307.430|117.431 +638641.411|220312.051|117.769 +638636.321|220316.675|118.241 +638631.234|220321.292|118.674 +638626.147|220325.910|118.945 +638621.063|220330.525|119.186 +638615.979|220335.136|119.464 +638610.898|220339.751|119.805 +638605.817|220344.363|120.052 +638600.736|220348.974|120.366 +638595.658|220353.586|120.759 +638590.583|220358.192|121.094 +638585.505|220362.800|121.298 +638580.427|220367.409|121.646 +638575.401|220371.975|122.076 +638570.277|220376.626|122.374 +638565.205|220381.231|122.710 +638560.179|220385.794|123.051 +638555.107|220390.397|123.301 +638550.032|220395.002|123.493 +638545.009|220399.562|123.798 +638539.937|220404.165|124.048 +638534.868|220408.767|124.295 +638529.796|220413.370|124.609 +638524.773|220417.926|124.776 +638519.750|220422.486|124.999 +638514.684|220427.086|125.368 +638509.667|220431.642|125.822 +638504.653|220436.196|126.276 +638499.584|220440.796|126.562 +638494.558|220445.355|126.532 +638489.496|220449.952|126.980 +638484.479|220454.505|127.349 +638479.462|220459.062|127.672 +638474.396|220463.659|127.989 +638469.376|220468.215|128.227 +638464.356|220472.772|128.449 +638459.336|220477.329|128.696 +638454.322|220481.880|129.056 +638449.301|220486.430|129.354 +638444.281|220490.987|129.595 +638439.255|220495.544|129.720 +638434.229|220500.101|129.848 +638429.206|220504.657|130.065 +638424.232|220509.168|130.339 +638419.193|220513.734|130.238 +638414.149|220518.303|130.098 +638409.159|220522.827|130.098 +638404.139|220527.380|130.427 +638399.147|220531.907|130.400 +638394.099|220536.482|130.244 +638389.109|220541.005|130.330 +638384.114|220545.534|130.272 +638379.109|220550.067|130.135 +638364.076|220563.688|129.577 +638329.085|220595.384|127.687 +638298.962|220622.646|124.060 +638293.868|220627.254|123.316 +638278.936|220640.778|122.536 +638268.905|220649.858|121.497 +638263.919|220654.375|121.070 +638258.960|220658.868|120.997 +638244.244|220672.218|122.082 +638224.429|220690.174|121.430 +638219.528|220694.618|121.609 +638209.695|220703.528|121.271 +638199.926|220712.391|122.082 +638195.019|220716.835|121.850 +638170.278|220739.238|119.707 +638160.482|220748.111|119.336 +638141.435|220765.420|122.890 +638131.882|220774.092|124.282 +638122.287|220782.800|124.965 +638112.628|220791.557|125.236 +638079.146|220821.915|126.370 +638069.651|220830.526|126.693 +638064.860|220834.866|126.770 +638050.750|220847.659|127.516 +638041.323|220856.211|128.156 +638036.632|220860.463|128.336 +638031.914|220864.740|128.336 +638027.244|220868.973|128.699 +638022.578|220873.204|128.763 +638003.973|220890.078|129.876 +637980.689|220911.179|130.174 +637966.796|220923.767|130.095 +637962.218|220927.919|130.305 +637957.585|220932.116|130.235 +637952.973|220936.292|130.013 +637948.295|220940.525|129.714 +637943.662|220944.722|129.409 +637934.408|220953.095|128.672 +637929.766|220957.301|128.379 +637906.692|220978.180|126.142 +637879.294|221002.976|123.469 +637870.220|221011.190|122.707 +637852.069|221027.607|120.442 +637847.564|221031.688|120.207 +637817.358|221059.074|121.850 +637800.073|221074.732|121.676 +637795.794|221078.609|121.756 +637791.572|221082.437|121.862 +637787.342|221086.272|121.948 +637774.854|221097.598|122.990 +637770.675|221101.384|123.133 +637758.224|221112.671|123.560 +637754.033|221116.465|123.484 +637745.874|221123.869|124.090 +637733.614|221134.982|124.456 +637729.518|221138.694|124.414 +637705.180|221160.747|124.151 +637701.232|221164.325|124.392 +637657.939|221203.556|124.081 +637653.915|221207.189|123.127 +637646.365|221214.035|123.633 +637630.912|221228.025|122.368 +637619.930|221237.986|123.219 +637616.230|221241.339|123.240 +637612.615|221244.616|123.597 +637601.858|221254.372|124.429 +637591.044|221264.175|124.529 +637787.851|221083.861|121.804 +637792.112|221079.984|121.631 +637805.121|221068.167|121.719 +637813.734|221060.336|121.426 +637818.178|221056.301|121.716 +637822.409|221052.451|121.244 +637831.050|221044.593|120.460 +637844.156|221032.676|119.713 +637853.246|221024.431|120.789 +637857.790|221020.310|121.490 +637866.983|221011.967|122.475 +637876.026|221003.759|123.024 +637880.598|220999.608|123.478 +637885.225|220995.411|123.956 +637903.620|220978.720|125.825 +637908.271|220974.501|126.291 +637912.941|220970.265|126.895 +637922.228|220961.840|127.873 +637926.828|220957.658|127.891 +637931.509|220953.412|128.379 +637936.124|220949.224|128.800 +637945.524|220940.693|129.537 +637950.120|220936.517|129.626 +637954.787|220932.280|129.876 +637959.527|220927.977|130.269 +637964.099|220923.822|129.997 +637968.707|220919.634|129.955 +638001.421|220889.904|129.674 +638006.085|220885.667|129.519 +638010.712|220881.458|129.150 +638015.454|220877.148|129.211 +638020.124|220872.902|128.818 +638024.818|220868.632|128.620 +638029.515|220864.365|128.437 +638034.218|220860.088|128.321 +638038.955|220855.782|128.120 +638048.385|220847.204|127.477 +638053.100|220842.919|127.172 +638062.601|220834.281|126.767 +638067.328|220829.983|126.587 +638076.887|220821.293|126.355 +638139.426|220764.430|122.917 +638148.997|220755.716|121.326 +638153.800|220751.342|120.479 +638158.668|220746.913|120.186 +638168.342|220738.110|119.113 +638173.430|220733.505|120.332 +638178.398|220728.991|120.579 +638208.055|220702.052|121.140 +638222.984|220688.489|121.347 +638242.866|220670.426|121.704 +638247.862|220665.888|121.600 +638257.759|220656.887|120.991 +638267.799|220647.770|121.494 +638384.132|220542.160|130.348 +638389.177|220537.579|130.403 +638394.206|220533.004|130.253 +638399.305|220528.371|130.485 +638404.334|220523.802|130.311 +638409.406|220519.187|130.074 +638414.445|220514.609|130.162 +638419.538|220509.982|130.415 +638424.613|220505.371|130.260 +638429.633|220500.805|130.031 +638434.705|220496.193|129.857 +638439.776|220491.581|129.744 +638444.845|220486.973|129.504 +638449.911|220482.364|129.220 +638454.974|220477.759|128.931 +638459.991|220473.196|128.620 +638465.108|220468.542|128.416 +638470.174|220463.936|128.199 +638475.240|220459.327|127.885 +638480.303|220454.722|127.559 +638485.366|220450.116|127.154 +638490.428|220445.511|126.757 +638495.543|220440.860|126.501 +638500.615|220436.248|126.492 +638505.677|220431.642|126.062 +638510.740|220427.037|125.593 +638515.852|220422.386|125.166 +638520.920|220417.774|124.944 +638525.989|220413.165|124.724 +638531.107|220408.511|124.481 +638536.179|220403.899|124.276 +638541.296|220399.245|123.990 +638546.362|220394.637|123.609 +638551.434|220390.022|123.310 +638556.555|220385.368|123.149 +638561.627|220380.753|122.853 +638566.747|220376.096|122.536 +638571.822|220371.481|122.249 +638576.943|220366.823|121.804 +638582.018|220362.206|121.414 +638587.141|220357.545|121.131 +638592.213|220352.931|120.826 +638597.291|220348.313|120.637 +638602.418|220343.649|120.155 +638607.496|220339.029|119.915 +638612.577|220334.405|119.540 +638617.707|220329.741|119.272 +638622.791|220325.118|119.000 +638627.875|220320.497|118.763 +638633.008|220315.827|118.464 +638638.046|220311.240|117.994 +638643.136|220306.607|117.519 +638648.272|220301.938|117.303 +638653.314|220297.350|117.007 +638658.456|220292.675|116.577 +638663.552|220288.039|116.224 +638668.596|220283.448|115.940 +638673.741|220278.770|115.632 +638678.838|220274.134|115.367 +638683.888|220269.543|115.148 +638688.985|220264.907|115.001 +638694.084|220260.271|114.791 +638699.174|220255.647|115.032 +638704.273|220251.011|114.882 +638709.330|220246.412|114.642 +638714.408|220241.785|113.730 +638719.516|220237.140|113.483 +638724.576|220232.534|113.243 +638729.636|220227.932|113.060 +638734.729|220223.308|113.352 +638739.773|220218.709|112.383 +638744.894|220214.048|111.996 +638749.972|220209.427|111.572 +638755.001|220204.849|111.203 +638760.079|220200.226|110.804 +638765.154|220195.611|110.612 +638770.183|220191.036|110.356 +638775.261|220186.418|110.182 +638780.291|220181.843|110.012 +638785.372|220177.219|109.789 +638790.398|220172.647|109.756 +638795.430|220168.072|109.628 +638800.484|220163.473|109.158 +638805.522|220158.888|109.000 +638810.521|220154.350|109.588 +638815.489|220149.836|109.841 +638820.530|220145.252|109.728 +638825.642|220140.591|108.485 +638830.650|220136.031|108.198 +638835.700|220131.441|108.070 +638840.702|220126.891|107.918 +638845.704|220122.343|107.848 +638850.706|220117.792|107.787 +638855.707|220113.248|107.771 +638860.767|220108.642|107.619 +638865.735|220104.125|107.454 +638870.740|220099.574|107.464 +638875.754|220095.014|107.372 +638880.713|220090.506|107.400 +638885.700|220085.974|107.704 +638890.665|220081.463|107.732 +638895.642|220076.934|107.576 +638900.608|220072.420|107.637 +638905.573|220067.906|107.695 +638910.541|220063.388|107.756 +638915.503|220058.880|107.909 +638920.426|220054.403|107.945 +638925.397|220049.886|108.055 +638930.313|220045.417|108.226 +638935.221|220040.958|108.524 +638940.143|220036.484|108.668 +638945.096|220031.979|108.527 +638950.013|220027.510|108.774 +638954.893|220023.075|108.927 +638959.858|220018.558|108.710 +638964.738|220014.123|108.905 +638969.654|220009.652|108.747 +638974.580|220005.171|108.543 +638979.514|220000.682|108.265 +638984.458|219996.183|107.921 +638989.439|219991.644|107.272 +638994.492|219987.036|105.985 +638999.439|219982.528|105.263 +639004.313|219978.099|105.284 +639009.162|219973.692|105.531 +639014.073|219969.229|105.696 +639018.867|219964.874|106.025 +639023.744|219960.442|106.095 +639028.602|219956.019|105.891 +639033.549|219951.517|105.415 +639038.441|219947.061|104.989 +639043.334|219942.611|104.632 +639048.183|219938.201|104.635 +639052.983|219933.842|105.062 +639057.757|219929.502|105.312 +639062.582|219925.116|105.190 +639081.936|219907.507|104.470 +639086.615|219903.261|105.199 +639091.446|219898.863|104.787 +639096.424|219894.319|103.327 +639101.474|219889.707|101.733 +639106.403|219885.208|100.337 +639111.289|219880.752|99.313 +639116.184|219876.293|98.624 +639125.779|219867.563|98.039 +639130.552|219863.220|97.942 +639149.739|219845.749|96.162 +639154.467|219841.451|96.168 +639201.409|219798.748|95.342 +639205.999|219794.576|95.491 +639219.978|219781.859|95.107 +639229.231|219773.438|94.823 +639238.479|219765.022|94.385 +639247.675|219756.658|94.336 +639252.064|219752.678|95.247 +639282.977|219724.615|99.624 +639287.479|219720.521|99.719 +639291.920|219716.486|100.148 +639296.327|219712.478|100.221 +639300.811|219708.399|100.182 +639305.258|219704.358|100.353 +639309.671|219700.343|100.453 +639314.134|219696.287|100.584 +639318.556|219692.266|100.666 +639322.961|219688.261|100.865 +639327.356|219684.265|100.859 +639331.769|219680.251|101.032 +639336.113|219676.301|101.060 +639340.496|219672.317|101.182 +639344.891|219668.318|101.230 +639349.247|219664.359|101.255 +639353.669|219660.335|101.224 +639358.113|219656.288|100.840 +639362.582|219652.215|100.118 +639367.007|219648.183|99.615 +639371.424|219644.163|99.432 +639375.621|219640.353|99.831 +639379.897|219636.466|100.112 +639384.094|219632.653|100.526 +639387.033|219627.694|100.977 +639382.775|219631.550|100.566 +639378.523|219635.400|100.139 +639374.237|219639.280|99.883 +639369.903|219643.209|99.630 +639365.553|219647.153|99.719 +639361.045|219651.246|100.093 +639356.528|219655.349|100.782 +639352.023|219659.442|101.191 +639347.592|219663.459|101.249 +639343.172|219667.468|101.276 +639338.761|219671.467|101.267 +639334.388|219675.432|101.108 +639329.925|219679.480|101.133 +639325.509|219683.482|100.941 +639321.068|219687.508|100.907 +639316.621|219691.538|100.645 +639312.189|219695.555|100.587 +639307.760|219699.572|100.545 +639303.292|219703.623|100.447 +639298.787|219707.704|100.285 +639294.312|219711.761|100.255 +639289.832|219715.821|99.999 +639285.403|219719.838|99.770 +639280.904|219723.914|99.636 +639271.928|219732.049|99.057 +639249.836|219752.035|95.131 +639245.267|219756.180|95.253 +639226.869|219772.859|94.814 +639203.595|219793.972|95.342 +639198.873|219798.255|95.357 +639194.143|219802.546|95.762 +639184.788|219811.029|95.683 +639180.098|219815.278|95.582 +639170.557|219823.943|96.512 +639156.418|219836.760|96.287 +639151.748|219840.988|95.851 +639146.978|219845.316|96.110 +639142.147|219849.702|96.472 +639127.647|219862.866|97.783 +639122.874|219867.194|97.859 +639118.022|219871.599|98.155 +639113.154|219876.018|98.597 +639108.238|219880.487|99.426 +639103.279|219884.995|100.590 +639098.304|219889.524|101.941 +639093.196|219894.175|103.586 +639088.255|219898.671|104.769 +639083.329|219903.142|105.129 +639078.575|219907.443|104.565 +639064.106|219920.559|103.849 +639059.015|219925.192|105.260 +639054.166|219929.587|105.165 +639049.308|219933.988|104.766 +639044.440|219938.399|104.455 +639039.536|219942.846|104.461 +639034.595|219947.329|104.815 +639029.605|219951.859|105.199 +639024.658|219956.352|105.680 +639019.687|219960.866|105.970 +639014.755|219965.337|105.930 +639009.879|219969.754|105.427 +639004.919|219974.246|105.235 +638999.997|219978.709|105.171 +638995.001|219983.244|105.373 +638989.865|219987.917|106.903 +638984.870|219992.458|107.668 +638979.819|219997.042|108.034 +638974.827|220001.572|108.332 +638969.794|220006.141|108.588 +638964.820|220010.652|108.789 +638959.849|220015.160|108.500 +638954.826|220019.713|108.722 +638949.787|220024.285|108.677 +638944.822|220028.784|108.363 +638939.762|220033.375|108.558 +638934.736|220037.931|108.439 +638929.777|220042.424|108.116 +638924.714|220047.011|107.887 +638919.697|220051.559|107.720 +638914.677|220056.113|107.616 +638909.614|220060.700|107.439 +638904.591|220065.257|107.412 +638899.522|220069.853|107.378 +638894.463|220074.440|107.256 +638889.394|220079.040|107.265 +638884.346|220083.612|107.000 +638879.272|220088.217|107.153 +638874.154|220092.856|107.223 +638869.094|220097.447|107.220 +638863.977|220102.089|107.384 +638858.902|220106.694|107.637 +638853.802|220111.321|107.628 +638848.700|220115.948|107.631 +638843.643|220120.535|107.735 +638838.544|220125.159|107.790 +638833.390|220129.838|107.963 +638828.333|220134.428|108.165 +638823.182|220139.107|108.396 +638818.040|220143.783|109.317 +638812.926|220148.428|109.795 +638807.790|220153.088|109.871 +638802.745|220157.660|109.250 +638797.618|220162.311|109.213 +638792.467|220166.990|109.643 +638787.383|220171.605|109.771 +638782.257|220176.259|109.890 +638777.130|220180.913|109.993 +638772.003|220185.565|110.115 +638766.876|220190.219|110.289 +638761.695|220194.925|110.649 +638756.617|220199.537|110.920 +638751.441|220204.237|111.234 +638746.311|220208.894|111.624 +638741.185|220213.551|112.100 +638736.064|220218.203|112.423 +638730.892|220222.903|112.895 +638725.829|220227.496|113.057 +638720.672|220232.178|113.227 +638715.560|220236.817|113.422 +638710.446|220241.465|113.886 +638705.273|220246.168|114.703 +638700.168|220250.804|115.038 +638695.068|220255.434|115.135 +638689.926|220260.098|115.017 +638684.827|220264.724|115.175 +638679.731|220269.354|115.379 +638674.583|220274.027|115.699 +638669.486|220278.657|115.961 +638664.390|220283.281|116.202 +638659.245|220287.953|116.537 +638654.103|220292.623|116.873 +638649.013|220297.247|117.190 +638643.874|220301.910|117.406 +638638.784|220306.534|117.751 +638633.697|220311.155|118.119 +638628.561|220315.821|118.577 +638623.474|220320.439|118.851 +638618.344|220325.099|119.122 +638613.211|220329.760|119.421 +638608.130|220334.374|119.729 +638603.049|220338.986|119.970 +638597.922|220343.643|120.347 +638592.841|220348.258|120.698 +638587.769|220352.864|120.933 +638582.643|220357.518|121.210 +638577.568|220362.130|121.551 +638572.493|220366.738|121.999 +638567.418|220371.347|122.353 +638562.343|220375.955|122.600 +638557.271|220380.561|122.923 +638552.199|220385.166|123.197 +638547.127|220389.772|123.481 +638542.055|220394.377|123.850 +638536.987|220398.983|124.154 +638531.963|220403.543|124.325 +638526.846|220408.188|124.639 +638521.823|220412.748|124.773 +638516.754|220417.353|125.005 +638511.685|220421.956|125.297 +638506.668|220426.510|125.770 +638501.605|220431.112|126.163 +638496.536|220435.711|126.456 +638491.513|220440.271|126.565 +638486.493|220444.831|126.815 +638481.434|220449.427|127.239 +638476.417|220453.984|127.629 +638471.354|220458.584|127.974 +638466.334|220463.140|128.153 +638461.311|220467.700|128.364 +638456.294|220472.257|128.605 +638451.277|220476.814|128.922 +638446.260|220481.374|129.211 +638441.194|220485.973|129.519 +638436.223|220490.490|129.738 +638431.196|220495.053|129.860 +638426.176|220499.613|130.107 +638421.208|220504.130|130.388 +638416.173|220508.699|130.360 +638411.128|220513.277|130.129 +638406.136|220517.806|130.058 +638401.122|220522.363|130.467 +638396.172|220526.856|130.284 +638391.133|220531.431|130.281 +638381.148|220540.493|130.278 +638376.094|220545.080|130.052 +638316.125|220599.487|127.212 +638306.094|220608.573|125.447 +638290.973|220622.274|123.118 +638286.017|220626.773|122.865 +638266.098|220644.832|121.106 +638261.166|220649.310|121.295 +638256.186|220653.830|120.948 +638251.254|220658.310|121.146 +638246.292|220662.812|121.061 +638241.421|220667.241|121.442 +638221.786|220685.066|121.564 +638211.975|220693.972|121.353 +638206.988|220698.495|121.201 +638202.163|220702.875|121.219 +638197.317|220707.286|121.963 +638187.493|220716.201|121.850 +638153.273|220747.251|120.396 +638148.475|220751.613|120.860 +638129.499|220768.883|124.167 +638119.940|220777.564|124.746 +638115.146|220781.919|124.929 +638110.351|220786.272|124.752 +638091.264|220803.612|125.685 +638081.791|220812.219|126.410 +638077.079|220816.499|126.602 +638067.511|220825.183|126.401 +638062.747|220829.514|126.636 +638058.066|220833.766|126.779 +638053.350|220838.048|127.056 +638048.611|220842.352|127.184 +638039.265|220850.844|128.041 +638034.578|220855.105|128.214 +638029.884|220859.366|128.379 +638025.184|220863.636|128.522 +638020.554|220867.843|128.806 +638015.823|220872.137|128.790 +638011.132|220876.398|129.034 +638006.539|220880.571|129.293 +638001.918|220884.771|129.696 +637974.081|220910.051|130.260 +637969.396|220914.303|130.098 +637964.766|220918.503|129.991 +637955.558|220926.864|130.129 +637950.904|220931.083|129.656 +637946.310|220935.252|129.552 +637941.607|220939.516|129.129 +637936.999|220943.698|128.982 +637927.791|220952.050|128.236 +637923.142|220956.265|127.934 +637918.528|220960.450|127.571 +637904.626|220973.054|126.011 +637899.987|220977.263|125.596 +637886.210|220989.748|123.929 +637881.604|220993.923|123.536 +637877.078|220998.029|123.310 +637863.563|221010.291|122.539 +637849.841|221022.727|120.689 +637845.370|221026.784|120.366 +637836.466|221034.858|119.741 +637827.865|221042.676|120.649 +637823.607|221046.550|121.201 +637789.103|221077.875|121.384 +637784.922|221081.675|121.692 +637768.221|221096.848|122.950 +637764.073|221100.619|123.234 +637759.867|221104.438|123.286 +637755.703|221108.217|123.298 +637751.537|221112.003|123.554 +637747.443|221115.722|123.670 +637743.319|221119.465|123.911 +637739.238|221123.174|124.109 +637726.887|221134.382|124.124 +637722.803|221138.088|124.157 +637718.758|221141.758|124.142 +637714.723|221145.424|124.173 +637663.056|221192.306|123.773 +637659.328|221195.695|124.161 +637655.393|221199.264|123.956 +637640.099|221213.142|123.770 +637632.454|221220.076|123.554 +637621.094|221230.378|122.926 +637617.382|221233.747|122.886 +637613.712|221237.078|123.024 +637610.121|221240.339|123.261 +637599.432|221250.053|124.350 +637595.890|221253.266|124.414 +637588.651|221259.837|124.383 +637585.210|221262.965|124.843 +637581.717|221266.138|125.127 +637578.187|221269.341|125.078 +637791.658|221073.296|121.198 +637804.566|221061.549|121.149 +637848.201|221021.846|120.567 +637852.810|221017.661|121.338 +637857.370|221013.519|121.899 +637875.453|220997.084|123.039 +637880.083|220992.878|123.548 +637884.616|220988.757|123.837 +637907.808|220967.692|126.565 +637917.095|220959.255|127.565 +637921.743|220955.031|127.858 +637926.383|220950.812|128.126 +637930.982|220946.630|128.178 +637935.667|220942.372|128.748 +637940.367|220938.105|129.132 +637944.994|220933.896|129.421 +637963.663|220916.922|129.970 +637968.317|220912.688|129.943 +637973.014|220908.418|130.180 +637977.629|220904.214|129.961 +637986.946|220895.735|129.796 +637991.628|220891.474|129.729 +637996.322|220887.200|129.443 +638010.340|220874.441|128.922 +638015.049|220870.156|128.793 +638019.776|220865.852|128.486 +638024.492|220861.561|128.452 +638029.201|220857.275|128.382 +638033.938|220852.962|128.199 +638043.325|220844.412|127.294 +638048.056|220840.106|127.108 +638052.829|220835.759|126.901 +638057.614|220831.407|126.785 +638067.118|220822.753|126.154 +638115.216|220778.972|124.657 +638120.077|220774.549|124.636 +638124.933|220770.133|124.566 +638129.718|220765.771|123.975 +638144.044|220752.704|121.204 +638148.875|220748.303|120.619 +638153.745|220743.868|120.375 +638163.313|220735.138|118.452 +638178.383|220721.462|121.052 +638198.198|220703.445|121.957 +638203.020|220699.047|121.003 +638208.000|220694.515|121.109 +638212.959|220690.004|121.021 +638227.891|220676.422|121.472 +638237.904|220667.320|122.006 +638242.851|220662.812|121.430 +638247.719|220658.377|121.067 +638252.763|220653.790|121.015 +638257.722|220649.279|121.158 +638262.776|220644.683|121.274 +638267.768|220640.138|121.301 +638287.910|220621.838|123.036 +638298.090|220612.593|124.612 +638308.191|220603.419|126.002 +638313.281|220598.801|126.959 +638323.419|220589.587|127.839 +638373.924|220543.666|130.147 +638379.018|220539.033|130.205 +638384.071|220534.439|130.449 +638389.103|220529.858|130.394 +638394.181|220525.237|130.253 +638399.229|220520.650|130.485 +638404.298|220516.036|130.253 +638409.379|220511.412|130.232 +638414.420|220506.828|130.439 +638419.498|220502.207|130.461 +638424.564|220497.598|130.159 +638429.581|220493.029|129.955 +638434.650|220488.415|129.778 +638439.764|220483.760|129.568 +638444.778|220479.194|129.214 +638449.841|220474.586|128.915 +638454.904|220469.977|128.632 +638459.966|220465.366|128.394 +638465.078|220460.714|128.092 +638470.144|220456.103|127.900 +638475.203|220451.494|127.507 +638480.266|220446.885|127.224 +638485.375|220442.231|126.831 +638490.437|220437.623|126.550 +638495.506|220433.011|126.370 +638500.569|220428.399|126.072 +638505.677|220423.748|125.666 +638510.789|220419.094|125.304 +638515.855|220414.482|125.032 +638520.920|220409.870|124.788 +638526.035|220405.213|124.584 +638531.101|220400.601|124.237 +638536.218|220395.944|124.090 +638541.333|220391.287|123.837 +638546.399|220386.672|123.426 +638551.468|220382.057|123.136 +638556.585|220377.397|122.835 +638561.657|220372.782|122.551 +638566.775|220368.122|122.262 +638571.895|220363.458|121.911 +638576.967|220358.841|121.497 +638582.039|220354.220|121.146 +638587.163|220349.557|120.860 +638592.232|220344.939|120.628 +638597.310|220340.318|120.244 +638602.433|220335.652|119.921 +638607.511|220331.028|119.683 +638612.589|220326.404|119.302 +638617.719|220321.734|118.985 +638622.751|220317.153|118.756 +638627.881|220312.481|118.494 +638632.965|220307.851|118.116 +638638.052|220303.218|117.668 +638643.136|220298.588|117.446 +638648.224|220293.958|117.229 +638653.314|220289.325|116.882 +638658.401|220284.689|116.589 +638663.494|220280.056|116.294 +638668.538|220275.463|116.044 +638673.680|220270.781|115.788 +638678.777|220266.142|115.462 +638683.824|220261.542|115.157 +638688.911|220256.918|115.367 +638693.959|220252.322|115.157 +638699.058|220247.680|114.974 +638704.173|220243.020|114.242 +638709.193|220238.445|113.624 +638714.298|220233.796|113.346 +638719.404|220229.148|113.160 +638724.415|220224.588|112.941 +638729.526|220219.940|112.734 +638734.595|220215.319|112.289 +638739.664|220210.708|112.002 +638744.739|220206.087|111.581 +638749.765|220201.512|111.249 +638754.840|220196.891|110.911 +638759.912|220192.273|110.670 +638764.938|220187.698|110.445 +638770.016|220183.077|110.231 +638775.045|220178.499|110.024 +638780.071|220173.927|109.905 +638785.103|220169.346|109.704 +638790.133|220164.768|109.603 +638795.174|220160.181|109.335 +638800.188|220155.621|109.564 +638805.199|220151.067|109.887 +638810.228|220146.495|109.902 +638815.273|220141.893|108.850 +638820.338|220137.278|108.344 +638825.343|220132.724|108.113 +638830.351|220128.165|107.808 +638835.344|220123.623|107.799 +638840.397|220119.027|107.662 +638845.396|220114.476|107.598 +638850.349|220109.968|107.534 +638855.403|220105.375|107.488 +638860.359|220100.864|107.424 +638865.379|220096.295|107.217 +638870.399|220091.723|106.994 +638875.361|220087.212|106.991 +638880.390|220082.633|106.723 +638885.294|220078.171|106.848 +638890.305|220073.614|106.894 +638895.216|220069.149|107.006 +638900.227|220064.592|107.107 +638905.146|220060.118|107.144 +638910.120|220055.595|107.131 +638915.073|220051.093|107.400 +638919.990|220046.621|107.534 +638924.940|220042.119|107.857 +638929.865|220037.642|107.945 +638934.773|220033.180|108.229 +638939.707|220028.693|108.262 +638944.636|220024.206|108.351 +638949.559|220019.732|108.543 +638954.499|220015.239|108.576 +638959.413|220010.768|108.418 +638964.335|220006.293|108.664 +638969.212|220001.852|108.405 +638974.193|219997.320|108.158 +638979.133|219992.821|107.826 +638984.126|219988.273|107.491 +638989.085|219983.753|106.598 +638994.133|219979.148|105.382 +638999.031|219974.688|105.150 +639003.956|219970.208|105.126 +639008.778|219965.828|105.629 +639013.695|219961.353|105.732 +639018.587|219956.903|105.632 +639023.531|219952.398|105.126 +639028.471|219947.899|104.687 +639033.345|219943.462|104.403 +639038.256|219938.996|104.284 +639043.090|219934.598|104.394 +639047.899|219930.227|104.739 +639052.709|219925.853|105.080 +639057.586|219921.421|105.309 +639062.509|219916.932|104.406 +639072.168|219908.144|104.544 +639076.953|219903.801|105.202 +639081.760|219899.424|104.931 +639086.685|219894.934|104.147 +639091.684|219890.377|102.898 +639096.646|219885.845|101.563 +639101.660|219881.276|100.295 +639111.517|219872.288|98.353 +639116.370|219867.871|98.006 +639126.075|219859.041|97.384 +639130.857|219854.688|97.234 +639140.519|219845.892|96.372 +639145.311|219841.533|95.933 +639159.466|219828.668|96.497 +639173.700|219815.720|96.082 +639178.522|219811.327|95.607 +639183.194|219807.082|95.790 +639197.267|219794.286|95.787 +639211.218|219781.603|96.082 +639234.486|219760.438|95.378 +639239.070|219756.268|95.406 +639243.566|219752.193|96.265 +639270.340|219727.882|99.551 +639274.787|219723.844|99.895 +639279.286|219719.759|100.267 +639283.833|219715.620|100.093 +639288.280|219711.578|100.481 +639292.706|219707.558|100.727 +639297.153|219703.516|100.886 +639301.637|219699.438|100.862 +639306.047|219695.427|100.959 +639310.522|219691.361|101.020 +639314.963|219687.319|101.002 +639319.343|219683.345|101.331 +639323.720|219679.364|101.410 +639328.090|219675.389|101.535 +639332.473|219671.406|101.627 +639336.899|219667.379|101.511 +639341.294|219663.383|101.566 +639345.656|219659.418|101.553 +639350.073|219655.398|101.282 +639354.504|219651.362|100.709 +639358.973|219647.290|100.228 +639363.341|219643.315|100.005 +639367.593|219639.450|100.115 +639371.912|219635.525|100.170 +639376.142|219631.681|100.414 +639380.348|219627.859|100.779 +639384.539|219624.052|101.230 +639380.614|219625.253|100.901 +639376.340|219629.127|100.578 +639372.027|219633.040|100.218 +639367.620|219637.039|100.081 +639363.179|219641.072|100.109 +639358.741|219645.101|100.148 +639354.248|219649.186|100.474 +639349.710|219653.316|101.060 +639345.165|219657.443|101.422 +639340.676|219661.521|101.541 +639336.171|219665.611|101.502 +639331.693|219669.677|101.605 +639327.185|219673.771|101.614 +639322.723|219677.822|101.419 +639318.227|219681.903|101.401 +639313.801|219685.917|101.041 +639309.193|219690.102|101.118 +639304.670|219694.208|101.038 +639300.195|219698.271|100.983 +639295.617|219702.428|100.956 +639291.112|219706.519|100.840 +639286.604|219710.606|100.471 +639281.995|219714.791|100.389 +639277.448|219718.915|100.258 +639272.891|219723.054|100.215 +639268.374|219727.148|99.682 +639208.606|219781.375|95.738 +639194.481|219794.201|95.854 +639189.732|219798.514|96.085 +639185.035|219802.775|95.698 +639180.329|219807.048|95.707 +639175.577|219811.367|96.034 +639170.731|219815.768|96.329 +639151.791|219832.965|96.226 +639137.511|219845.931|96.533 +639132.710|219850.290|96.396 +639127.882|219854.679|96.808 +639123.042|219859.081|97.335 +639118.199|219863.482|97.582 +639108.506|219872.291|98.518 +639098.640|219881.273|100.505 +639093.632|219885.836|101.752 +639088.682|219890.347|102.995 +639083.701|219894.882|104.120 +639078.788|219899.351|104.781 +639073.914|219903.780|105.174 +639069.141|219908.111|104.812 +639064.474|219912.332|103.620 +639059.393|219916.965|105.330 +639054.599|219921.318|105.196 +639049.731|219925.734|104.897 +639044.918|219930.102|104.547 +639040.093|219934.479|104.309 +639035.208|219938.914|104.190 +639030.352|219943.324|104.269 +639025.430|219947.796|104.510 +639020.489|219952.289|104.955 +639015.539|219956.787|105.495 +639010.647|219961.231|105.574 +639005.736|219965.688|105.382 +639000.896|219970.080|105.046 +638995.946|219974.576|105.248 +638990.993|219979.077|105.534 +638985.930|219983.689|106.894 +638980.950|219988.218|107.515 +638975.951|219992.763|107.884 +638971.007|219997.256|108.216 +638966.030|220001.779|108.457 +638961.065|220006.290|108.585 +638956.167|220010.737|108.549 +638951.226|220015.221|108.482 +638946.248|220019.741|108.320 +638941.314|220024.218|108.219 +638936.330|220028.745|108.177 +638931.383|220033.231|107.726 +638926.400|220037.755|107.689 +638921.435|220042.263|107.509 +638916.482|220046.755|107.162 +638911.458|220051.315|107.095 +638906.496|220055.820|106.927 +638901.482|220060.374|106.827 +638896.462|220064.931|106.793 +638891.448|220069.481|106.695 +638886.383|220074.081|106.705 +638881.420|220078.586|106.634 +638876.358|220083.185|106.644 +638871.283|220087.794|106.827 +638866.211|220092.402|106.997 +638861.191|220096.962|107.198 +638856.128|220101.562|107.332 +638851.071|220106.155|107.396 +638845.966|220110.791|107.488 +638840.915|220115.378|107.534 +638835.804|220120.020|107.768 +638830.769|220124.592|107.653 +638825.663|220129.228|107.845 +638820.594|220133.837|108.326 +638815.495|220138.467|108.500 +638810.353|220143.149|109.506 +638805.254|220147.779|109.783 +638800.167|220152.402|109.932 +638795.061|220157.029|109.521 +638789.986|220161.635|109.460 +638784.899|220166.256|109.670 +638779.769|220170.916|109.832 +638774.691|220175.528|109.939 +638769.562|220180.188|110.146 +638764.429|220184.848|110.435 +638759.305|220189.506|110.658 +638754.178|220194.160|110.902 +638749.058|220198.811|111.082 +638743.885|220203.514|111.435 +638738.758|220208.172|111.834 +638733.641|220212.823|112.145 +638728.471|220217.520|112.545 +638723.308|220222.211|112.810 +638718.197|220226.853|113.020 +638713.088|220231.492|113.252 +638707.928|220236.180|113.566 +638702.771|220240.868|113.907 +638697.653|220245.525|114.678 +638692.496|220250.210|115.157 +638687.348|220254.888|115.361 +638682.206|220259.552|115.294 +638677.061|220264.228|115.556 +638671.961|220268.861|115.879 +638666.819|220273.533|116.080 +638661.677|220278.203|116.312 +638656.535|220282.872|116.547 +638651.396|220287.545|116.891 +638646.258|220292.214|117.202 +638641.167|220296.835|117.400 +638636.031|220301.502|117.647 +638630.847|220306.214|118.083 +638625.763|220310.835|118.351 +638620.630|220315.498|118.680 +638615.500|220320.158|118.894 +638610.367|220324.819|119.198 +638605.237|220329.479|119.543 +638600.111|220334.140|119.790 +638594.984|220338.800|120.241 +638589.857|220343.457|120.573 +638584.737|220348.109|120.802 +638579.613|220352.763|121.091 +638574.489|220357.420|121.487 +638569.366|220362.075|121.841 +638564.245|220366.729|122.152 +638559.124|220371.380|122.475 +638554.007|220376.035|122.868 +638548.886|220380.686|123.136 +638543.814|220385.291|123.395 +638538.696|220389.943|123.789 +638533.579|220394.591|124.054 +638528.510|220399.196|124.264 +638523.392|220403.845|124.435 +638518.327|220408.450|124.791 +638513.261|220413.053|125.166 +638508.143|220417.701|125.337 +638503.077|220422.303|125.651 +638498.012|220426.906|125.980 +638492.894|220431.554|126.203 +638487.828|220436.156|126.486 +638482.811|220440.716|126.724 +638477.700|220445.361|127.138 +638472.683|220449.918|127.449 +638467.620|220454.521|127.757 +638462.554|220459.123|128.004 +638457.537|220463.680|128.342 +638452.474|220468.282|128.644 +638447.454|220472.842|128.848 +638442.440|220477.402|129.193 +638432.361|220486.561|129.787 +638427.386|220491.082|129.979 +638422.321|220495.684|130.244 +638417.349|220500.204|130.458 +638412.317|220504.773|130.433 +638407.279|220509.348|130.299 +638402.295|220513.878|130.345 +638397.269|220518.440|130.546 +638392.267|220522.982|130.278 +638387.290|220527.505|130.503 +638382.248|220532.083|130.418 +638377.292|220536.582|130.214 +638367.286|220545.665|129.915 +638347.330|220563.780|129.043 +638322.456|220586.359|127.861 +638317.521|220590.837|127.617 +638302.500|220604.455|125.517 +638297.453|220609.030|124.584 +638287.413|220618.129|122.984 +638267.561|220636.139|121.292 +638262.672|220640.580|121.350 +638257.710|220645.085|121.164 +638252.809|220649.538|121.152 +638247.850|220654.040|121.061 +638242.945|220658.493|121.085 +638223.371|220676.275|121.213 +638203.782|220694.064|121.085 +638198.990|220698.419|121.414 +638179.519|220716.104|121.426 +638159.741|220734.032|118.281 +638150.310|220742.618|120.186 +638145.516|220746.980|120.680 +638131.367|220759.864|123.304 +638126.704|220764.107|124.100 +638117.145|220772.793|124.651 +638112.347|220777.152|124.804 +638102.740|220785.879|124.700 +638088.488|220798.833|125.319 +638064.856|220820.312|126.163 +638060.135|220824.607|126.337 +638055.438|220828.877|126.712 +638050.747|220833.144|126.785 +638046.078|220837.387|127.047 +638041.347|220841.691|127.221 +638032.066|220850.131|127.867 +638027.415|220854.361|128.300 +638022.785|220858.574|128.547 +638018.091|220862.841|128.733 +638013.376|220867.120|128.486 +638008.767|220871.314|128.918 +638004.088|220875.566|128.946 +637999.532|220879.711|129.431 +637994.908|220883.915|129.507 +637990.217|220888.179|129.504 +637985.636|220892.345|129.885 +637981.027|220896.536|130.116 +637976.355|220900.782|129.973 +637967.119|220909.170|129.815 +637962.523|220913.349|129.891 +637934.792|220938.538|129.010 +637930.159|220942.741|128.461 +637920.933|220951.117|127.919 +637916.306|220955.320|127.462 +637897.789|220972.121|125.316 +637879.462|220988.754|123.478 +637874.938|220992.863|123.249 +637870.363|220997.014|122.774 +637865.883|221001.086|122.822 +637852.215|221013.491|121.375 +637847.683|221017.600|120.728 +637838.649|221025.799|119.890 +637821.266|221041.606|120.796 +637799.454|221061.427|120.765 +637778.124|221080.819|121.463 +637765.692|221092.133|122.755 +637761.562|221095.888|123.121 +637753.119|221103.560|123.078 +637744.837|221111.095|123.569 +637740.668|221114.886|123.581 +637728.299|221126.131|123.670 +637724.242|221129.822|124.014 +637720.127|221133.562|123.898 +637716.018|221137.298|124.042 +637711.943|221141.002|123.892 +637707.911|221144.672|124.170 +637699.806|221152.039|124.145 +637691.680|221159.421|123.658 +637660.081|221188.145|123.411 +637652.303|221195.214|123.124 +637648.566|221198.612|123.502 +637618.199|221226.212|122.774 +637614.504|221229.571|122.792 +637610.859|221232.890|123.005 +637607.232|221236.185|123.109 +637603.644|221239.452|123.557 +637589.432|221252.382|124.374 +637585.935|221255.564|124.615 +637575.484|221265.071|125.130 +637796.848|221061.869|120.972 +637801.122|221057.977|120.899 +637805.474|221054.015|120.988 +637831.300|221030.478|120.207 +637840.063|221022.492|120.168 +637844.473|221018.478|120.177 +637848.997|221014.366|121.039 +637867.132|220997.867|122.862 +637871.589|220993.807|122.981 +637876.112|220989.696|123.453 +637880.684|220985.532|123.685 +637885.271|220981.362|124.282 +637926.895|220943.494|128.550 +637931.482|220939.321|128.845 +637936.157|220935.063|129.095 +637940.787|220930.851|129.400 +637959.350|220913.947|129.918 +637963.992|220909.719|129.796 +637968.619|220905.504|129.626 +637978.001|220896.966|130.110 +637982.664|220892.717|129.921 +637987.260|220888.529|129.629 +637996.602|220880.022|129.424 +638001.266|220875.770|128.982 +638005.942|220871.515|128.946 +638010.642|220867.233|128.778 +638015.351|220862.944|128.681 +638020.060|220858.656|128.601 +638024.772|220854.361|128.251 +638029.448|220850.100|127.977 +638038.884|220841.505|127.404 +638043.600|220837.207|127.120 +638053.140|220828.517|126.681 +638057.913|220824.168|126.517 +638062.659|220819.843|126.175 +638067.432|220815.493|126.041 +638110.827|220775.973|124.874 +638115.664|220771.565|124.673 +638120.486|220767.170|124.362 +638130.075|220758.428|123.347 +638149.241|220740.942|120.104 +638158.784|220732.228|117.973 +638178.870|220713.979|121.356 +638203.471|220691.573|120.652 +638208.430|220687.056|120.594 +638213.358|220682.573|120.704 +638223.350|220673.477|120.902 +638243.247|220655.357|120.741 +638248.228|220650.828|121.064 +638253.232|220646.274|121.152 +638258.179|220641.769|121.204 +638263.227|220637.176|121.286 +638273.267|220628.041|122.051 +638288.428|220614.261|124.084 +638293.411|220609.725|124.191 +638298.501|220605.101|125.069 +638313.723|220591.266|127.346 +638318.719|220586.725|127.794 +638374.104|220536.335|130.147 +638379.197|220531.702|130.290 +638389.268|220522.534|130.336 +638394.306|220517.950|130.421 +638399.293|220513.411|130.516 +638404.362|220508.797|130.302 +638409.443|220504.170|130.388 +638414.475|220499.592|130.464 +638419.544|220494.977|130.333 +638424.558|220490.408|130.080 +638429.572|220485.839|129.851 +638434.634|220481.230|129.589 +638439.645|220476.664|129.242 +638444.702|220472.056|128.900 +638449.765|220467.447|128.617 +638454.776|220462.881|128.345 +638459.835|220458.273|127.998 +638464.895|220453.664|127.678 +638469.958|220449.053|127.468 +638475.014|220444.444|127.123 +638480.028|220439.878|126.803 +638485.088|220435.266|126.486 +638490.148|220430.658|126.200 +638495.211|220426.046|125.944 +638500.273|220421.435|125.733 +638505.336|220416.823|125.432 +638510.350|220412.257|125.166 +638515.458|220407.600|124.804 +638520.521|220402.988|124.523 +638525.538|220398.419|124.322 +638530.653|220393.762|124.075 +638535.719|220389.150|123.877 +638540.781|220384.535|123.630 +638545.847|220379.921|123.246 +638550.962|220375.263|122.950 +638555.979|220370.688|122.542 +638561.096|220366.028|122.243 +638566.162|220361.410|121.935 +638571.234|220356.792|121.585 +638576.352|220352.129|121.213 +638581.420|220347.511|120.881 +638586.492|220342.891|120.591 +638591.561|220338.273|120.265 +638596.636|220333.649|119.896 +638601.711|220329.025|119.592 +638606.835|220324.359|119.308 +638611.913|220319.732|119.022 +638616.991|220315.108|118.723 +638622.069|220310.481|118.491 +638627.150|220305.854|118.156 +638632.231|220301.221|117.805 +638637.312|220296.591|117.525 +638642.347|220292.007|117.281 +638647.431|220287.374|117.065 +638652.518|220282.741|116.772 +638657.560|220278.151|116.440 +638662.692|220273.472|116.263 +638667.783|220268.839|116.047 +638672.827|220264.243|115.730 +638677.917|220259.604|115.501 +638683.004|220254.974|115.498 +638688.052|220250.377|115.318 +638693.154|220245.726|114.751 +638698.217|220241.108|114.084 +638703.325|220236.454|113.639 +638708.425|220231.809|113.450 +638713.481|220227.203|113.197 +638718.538|220222.595|112.904 +638723.643|220217.944|112.691 +638728.706|220213.332|112.380 +638733.772|220208.714|112.057 +638738.841|220204.097|111.685 +638743.910|220199.479|111.395 +638748.978|220194.858|111.091 +638753.998|220190.286|110.920 +638759.070|220185.668|110.685 +638764.139|220181.051|110.539 +638769.171|220176.463|110.195 +638774.243|220171.843|110.009 +638779.269|220167.267|109.920 +638784.296|220162.689|109.807 +638789.325|220158.108|109.655 +638794.333|220153.548|109.914 +638799.359|220148.973|109.905 +638804.388|220144.392|109.841 +638809.420|220139.802|108.942 +638814.474|220135.196|108.555 +638819.521|220130.597|108.335 +638824.532|220126.031|107.954 +638829.543|220121.465|107.589 +638834.579|220116.881|107.643 +638839.583|220112.324|107.485 +638844.622|220107.734|107.528 +638854.589|220098.654|107.211 +638859.652|220094.045|107.052 +638864.617|220089.519|106.857 +638869.640|220084.944|106.622 +638874.654|220080.378|106.540 +638879.622|220075.852|106.418 +638884.624|220071.301|106.537 +638889.589|220066.778|106.516 +638894.557|220062.255|106.491 +638899.519|220057.737|106.580 +638904.488|220053.214|106.616 +638909.395|220048.746|106.781 +638914.351|220044.235|106.991 +638919.319|220039.715|107.098 +638924.211|220035.264|107.509 +638929.122|220030.796|107.735 +638934.038|220026.322|107.930 +638939.006|220021.801|108.101 +638943.883|220017.360|108.229 +638948.797|220012.889|108.497 +638953.734|220008.393|108.533 +638958.648|220003.919|108.338 +638963.543|219999.459|108.372 +638968.520|219994.924|108.094 +638973.449|219990.434|107.848 +638978.438|219985.887|107.512 +638983.376|219981.385|106.787 +638988.439|219976.761|105.827 +638993.361|219972.274|105.324 +638998.302|219967.772|105.114 +639003.213|219963.301|105.217 +639008.071|219958.881|105.379 +639013.024|219954.370|105.168 +639017.959|219949.868|104.681 +639022.894|219945.370|104.254 +639027.792|219940.907|104.160 +639032.684|219936.454|104.153 +639037.573|219932.004|104.205 +639042.389|219927.621|104.461 +639047.208|219923.235|104.699 +639052.066|219918.815|105.053 +639056.842|219914.469|105.290 +639061.780|219909.970|105.050 +639066.568|219905.611|105.211 +639071.467|219901.149|104.952 +639076.356|219896.687|104.379 +639081.287|219892.188|103.538 +639086.259|219887.649|102.453 +639091.184|219883.154|101.371 +639096.168|219878.600|100.267 +639115.760|219860.723|97.298 +639135.018|219843.179|96.506 +639163.669|219817.079|95.936 +639173.115|219808.478|95.857 +639177.851|219804.165|95.906 +639182.582|219799.852|95.704 +639187.257|219795.597|95.878 +639191.936|219791.339|96.058 +639205.932|219778.592|95.985 +639233.630|219753.379|96.948 +639251.555|219737.078|99.152 +639260.534|219728.906|99.804 +639264.963|219724.877|100.209 +639269.444|219720.802|100.627 +639273.982|219716.672|100.752 +639278.484|219712.572|100.804 +639282.925|219708.524|100.916 +639287.396|219704.455|101.169 +639291.862|219700.392|101.203 +639296.361|219696.296|101.343 +639300.826|219692.230|101.401 +639305.243|219688.206|101.465 +639309.705|219684.140|101.310 +639314.134|219680.111|101.617 +639318.553|219676.084|101.721 +639322.967|219672.067|101.874 +639327.371|219668.056|101.828 +639331.785|219664.033|101.745 +639336.149|219660.058|101.685 +639340.578|219656.022|101.566 +639345.007|219651.984|101.215 +639349.463|219647.921|100.755 +639353.901|219643.876|100.407 +639358.247|219639.917|100.270 +639362.557|219635.988|100.319 +639366.858|219632.074|100.444 +639371.086|219628.225|100.676 +639375.292|219624.396|101.020 +639379.498|219620.568|101.380 +639378.568|219619.492|101.419 +639374.323|219623.348|100.999 +639370.110|219627.170|100.670 +639365.773|219631.108|100.459 +639361.448|219635.031|100.200 +639357.120|219638.966|100.237 +639352.660|219643.020|100.417 +639348.232|219647.043|100.706 +639343.745|219651.124|101.060 +639339.274|219655.190|101.371 +639334.827|219659.235|101.575 +639330.401|219663.252|101.675 +639325.890|219667.355|101.724 +639321.427|219671.409|101.803 +639316.947|219675.478|101.721 +639312.518|219679.498|101.660 +639308.086|219683.521|101.371 +639303.575|219687.624|101.511 +639299.055|219691.730|101.450 +639294.501|219695.863|101.307 +639290.036|219699.920|101.258 +639285.470|219704.068|101.230 +639280.993|219708.134|101.011 +639276.405|219712.301|100.852 +639271.846|219716.440|100.825 +639267.316|219720.558|100.673 +639262.790|219724.663|100.225 +639258.206|219728.827|100.118 +639253.588|219733.021|99.929 +639230.871|219753.626|97.091 +639212.227|219770.554|96.055 +639207.511|219774.837|96.018 +639202.808|219779.110|95.924 +639183.789|219796.389|96.064 +639174.270|219805.036|96.168 +639169.533|219809.334|95.793 +639164.720|219813.708|95.915 +639155.168|219822.379|95.424 +639150.395|219826.717|95.677 +639140.626|219835.602|96.445 +639135.822|219839.963|96.305 +639126.163|219848.739|96.469 +639121.323|219853.137|96.661 +639111.606|219861.970|97.039 +639101.675|219871.007|98.344 +639091.647|219880.142|100.514 +639086.612|219884.733|101.657 +639081.607|219889.286|102.590 +639076.651|219893.803|103.590 +639071.640|219898.363|104.291 +639066.687|219902.868|104.946 +639061.759|219907.349|105.077 +639056.879|219911.784|105.217 +639051.962|219916.246|104.894 +639047.095|219920.665|104.601 +639042.233|219925.079|104.278 +639037.353|219929.508|104.099 +639032.425|219933.985|103.961 +639027.530|219938.432|103.986 +639022.583|219942.928|104.041 +639017.666|219947.396|104.281 +639012.680|219951.932|104.739 +639007.705|219956.458|105.135 +639002.783|219960.930|105.089 +638997.802|219965.453|105.129 +638992.831|219969.973|105.574 +638987.899|219974.457|105.714 +638982.885|219979.017|106.159 +638977.801|219983.649|107.336 +638972.806|219988.191|107.692 +638967.883|219992.669|107.875 +638962.851|219997.241|108.177 +638957.941|220001.703|108.271 +638952.936|220006.250|108.369 +638947.992|220010.743|108.354 +638943.027|220015.251|108.110 +638938.098|220019.726|107.970 +638933.130|220024.240|107.787 +638928.171|220028.742|107.515 +638923.166|220033.286|107.229 +638918.213|220037.782|106.903 +638913.251|220042.287|106.711 +638908.240|220046.841|106.567 +638903.287|220051.337|106.311 +638898.270|220055.893|106.266 +638893.301|220060.407|106.235 +638888.220|220065.025|106.394 +638883.213|220069.573|106.311 +638878.205|220074.123|106.241 +638873.133|220078.735|106.424 +638868.152|220083.261|106.671 +638863.099|220087.852|106.668 +638858.076|220092.421|106.927 +638853.007|220097.026|107.168 +638837.846|220110.806|107.488 +638832.808|220115.384|107.400 +638827.739|220119.996|107.820 +638822.679|220124.595|108.116 +638817.616|220129.204|108.543 +638812.529|220133.828|108.597 +638807.482|220138.415|108.802 +638802.352|220143.088|109.658 +638797.259|220147.718|109.923 +638792.220|220152.299|110.109 +638787.161|220156.895|109.847 +638782.086|220161.507|109.902 +638777.051|220166.085|110.143 +638771.927|220170.742|110.237 +638766.852|220175.357|110.374 +638761.774|220179.978|110.655 +638756.653|220184.632|110.795 +638751.581|220189.241|110.981 +638746.510|220193.852|111.200 +638741.389|220198.510|111.496 +638736.323|220203.118|111.691 +638731.151|220207.824|112.170 +638726.085|220212.430|112.435 +638720.973|220217.078|112.694 +638715.865|220221.726|112.941 +638710.753|220226.374|113.297 +638705.648|220231.017|113.483 +638700.546|220235.656|113.669 +638695.440|220240.298|113.992 +638690.329|220244.949|114.605 +638685.168|220249.649|115.334 +638680.121|220254.239|115.562 +638674.979|220258.912|115.721 +638669.886|220263.542|115.885 +638664.792|220268.175|116.144 +638659.702|220272.805|116.345 +638654.563|220277.477|116.556 +638649.473|220282.104|116.858 +638644.386|220286.731|117.110 +638639.253|220291.401|117.281 +638634.166|220296.024|117.522 +638629.033|220300.694|117.848 +638623.949|220305.318|118.171 +638618.868|220309.942|118.464 +638613.738|220314.605|118.708 +638608.612|220319.268|118.988 +638603.531|220323.889|119.287 +638598.407|220328.550|119.540 +638593.329|220333.170|120.009 +638588.205|220337.831|120.326 +638583.085|220342.485|120.530 +638578.013|220347.103|120.994 +638572.889|220351.760|121.292 +638567.768|220356.418|121.594 +638562.700|220361.029|121.945 +638557.628|220365.641|122.210 +638552.510|220370.298|122.655 +638547.395|220374.953|123.005 +638542.327|220379.561|123.319 +638537.209|220384.215|123.648 +638532.094|220388.867|123.844 +638527.029|220393.475|124.103 +638521.911|220398.126|124.276 +638516.848|220402.732|124.666 +638511.783|220407.341|125.017 +638506.671|220411.989|125.328 +638501.605|220416.597|125.459 +638496.539|220421.203|125.736 +638491.425|220425.854|125.861 +638486.362|220430.460|126.178 +638481.296|220435.065|126.431 +638476.234|220439.668|126.788 +638471.174|220444.273|127.148 +638466.111|220448.876|127.434 +638461.045|220453.484|127.638 +638455.983|220458.087|127.955 +638450.923|220462.692|128.330 +638445.857|220467.301|128.580 +638440.846|220471.861|128.925 +638435.784|220476.466|129.269 +638430.724|220481.072|129.662 +638425.707|220485.635|129.915 +638420.638|220490.243|130.122 +638415.572|220494.855|130.348 +638410.546|220499.424|130.458 +638405.462|220504.045|130.375 +638400.439|220508.614|130.555 +638395.404|220513.192|130.488 +638390.362|220517.773|130.375 +638385.330|220522.348|130.449 +638380.289|220526.932|130.400 +638375.238|220531.519|130.180 +638365.183|220540.657|129.824 +638304.975|220595.357|126.440 +638259.859|220636.313|121.228 +638254.903|220640.818|121.140 +638249.947|220645.323|121.055 +638244.978|220649.837|120.838 +638240.068|220654.302|120.765 +638215.422|220676.708|120.811 +638205.604|220685.630|120.521 +638191.010|220698.910|121.719 +638156.501|220730.246|118.217 +638137.564|220747.501|121.786 +638132.797|220751.845|122.521 +638118.541|220764.826|124.316 +638113.820|220769.124|124.666 +638109.007|220773.498|124.712 +638094.687|220786.522|125.084 +638089.929|220790.850|125.236 +638071.013|220808.062|126.483 +638066.198|220812.436|125.959 +638061.473|220816.731|126.111 +638056.761|220821.019|126.361 +638052.094|220825.265|126.584 +638042.707|220833.802|127.090 +638028.677|220846.567|127.779 +638024.035|220850.792|127.946 +638010.078|220863.490|128.665 +638005.469|220867.681|128.806 +638000.812|220871.915|128.961 +637996.203|220876.109|129.123 +637991.610|220880.288|129.397 +637987.017|220884.466|129.684 +637977.751|220892.894|129.833 +637973.148|220897.076|129.818 +637968.433|220901.361|129.437 +637963.922|220905.467|129.711 +637959.353|220909.625|129.943 +637954.744|220913.813|129.967 +637936.368|220930.513|129.150 +637931.796|220934.667|128.909 +637927.190|220938.849|128.516 +637917.979|220947.219|128.056 +637913.419|220951.361|127.687 +637908.786|220955.564|126.946 +637904.163|220959.758|126.300 +637890.447|220972.218|125.029 +637885.844|220976.394|124.316 +637876.761|220984.642|123.609 +637872.207|220988.778|123.225 +637867.715|220992.863|122.902 +637863.234|220996.932|122.673 +637840.587|221017.490|119.875 +637836.149|221021.520|119.479 +637827.405|221029.475|119.640 +637805.907|221049.031|120.713 +637801.579|221052.966|120.741 +637797.299|221056.859|120.768 +637784.556|221068.447|121.152 +637767.780|221083.711|122.201 +637763.659|221087.461|122.600 +637759.492|221091.252|122.792 +637755.392|221094.983|123.069 +637751.171|221098.823|123.051 +637747.013|221102.600|123.112 +637738.692|221110.168|123.216 +637726.467|221121.296|123.670 +637722.358|221125.033|123.792 +637718.307|221128.718|123.935 +637714.153|221132.495|123.664 +637710.087|221136.192|123.554 +637650.544|221190.340|123.335 +637616.138|221221.622|122.615 +637612.468|221224.959|122.725 +637608.802|221228.297|122.850 +637605.117|221231.649|122.929 +637601.538|221234.905|123.219 +637597.990|221238.142|123.822 +637587.240|221247.923|124.307 +637583.717|221251.129|124.444 +637580.236|221254.296|124.749 +637576.743|221257.478|125.218 +637573.244|221260.663|125.267 +637788.009|221064.067|121.027 +637792.197|221060.242|120.558 +637796.458|221056.353|120.445 +637800.756|221052.436|120.515 +637805.051|221048.516|120.347 +637826.576|221028.878|119.726 +637830.949|221024.885|119.793 +637835.262|221020.950|119.564 +637866.855|220992.177|123.005 +637871.384|220988.050|123.261 +637875.859|220983.972|123.520 +637884.972|220975.669|124.438 +637907.902|220954.784|126.834 +637912.602|220950.504|127.693 +637921.795|220942.132|128.315 +637926.364|220937.965|128.525 +637931.006|220933.734|128.876 +637935.630|220929.522|129.138 +637949.514|220916.867|129.876 +637954.138|220912.651|129.940 +637958.777|220908.421|130.135 +637963.358|220904.239|129.680 +637967.976|220900.029|129.766 +637991.180|220878.858|129.046 +637995.831|220874.618|129.138 +638000.473|220870.382|128.897 +638005.195|220866.075|128.842 +638019.280|220853.224|128.309 +638023.903|220849.003|128.028 +638028.631|220844.690|127.791 +638052.216|220823.165|126.489 +638056.983|220818.815|126.279 +638066.521|220810.116|125.931 +638090.472|220788.262|125.118 +638104.910|220775.089|124.557 +638114.630|220766.222|124.496 +638119.422|220761.848|123.938 +638129.060|220753.045|122.947 +638153.108|220731.072|119.189 +638163.097|220721.980|120.524 +638178.026|220708.377|121.692 +638197.673|220690.446|120.302 +638202.632|220685.922|120.207 +638207.582|220681.408|120.546 +638227.611|220663.154|121.490 +638237.508|220654.125|120.875 +638242.497|220649.572|120.808 +638247.517|220644.997|121.055 +638252.513|220640.443|121.073 +638262.553|220631.287|121.216 +638267.537|220626.742|121.155 +638282.838|220612.816|123.639 +638303.086|220594.382|126.367 +638308.164|220589.752|126.602 +638373.979|220529.782|130.247 +638379.021|220525.186|130.318 +638384.117|220520.544|130.613 +638389.189|220515.917|130.452 +638394.218|220511.329|130.427 +638399.305|220506.693|130.613 +638404.374|220502.070|130.449 +638409.455|220497.440|130.561 +638414.521|220492.819|130.378 +638419.583|220488.201|130.135 +638424.652|220483.577|130.022 +638429.709|220478.963|129.693 +638434.763|220474.348|129.293 +638439.822|220469.733|128.943 +638444.879|220465.119|128.583 +638449.987|220460.458|128.324 +638455.041|220455.844|127.888 +638460.098|220451.229|127.510 +638465.209|220446.565|127.358 +638470.269|220441.951|127.074 +638475.325|220437.336|126.663 +638480.434|220432.676|126.340 +638485.497|220428.055|126.111 +638490.602|220423.394|125.785 +638495.668|220418.777|125.663 +638500.731|220414.156|125.511 +638505.845|220409.493|125.358 +638510.950|220404.832|124.953 +638516.013|220400.214|124.621 +638521.122|220395.551|124.255 +638526.233|220390.887|124.066 +638531.296|220386.267|123.764 +638536.410|220381.603|123.581 +638541.522|220376.940|123.267 +638546.633|220372.273|122.941 +638551.748|220367.607|122.597 +638556.863|220362.940|122.128 +638561.928|220358.313|121.768 +638567.046|220353.647|121.500 +638572.164|220348.977|121.231 +638577.232|220344.351|120.869 +638582.350|220339.678|120.415 +638587.468|220335.008|120.149 +638592.539|220330.378|119.826 +638597.663|220325.706|119.418 +638602.784|220321.030|119.110 +638607.862|220316.397|118.823 +638612.986|220311.725|118.616 +638618.064|220307.089|118.333 +638623.141|220302.456|118.031 +638628.271|220297.774|117.656 +638633.401|220293.092|117.400 +638638.433|220288.502|117.226 +638643.566|220283.820|117.016 +638648.650|220279.181|116.739 +638653.737|220274.539|116.483 +638658.870|220269.857|116.278 +638663.957|220265.215|116.111 +638668.996|220260.619|115.934 +638674.132|220255.934|115.824 +638679.176|220251.331|115.593 +638684.278|220246.674|115.050 +638689.390|220242.005|114.239 +638694.434|220237.402|114.105 +638699.534|220232.748|113.822 +638704.633|220228.097|113.617 +638709.690|220223.482|113.304 +638714.795|220218.824|113.002 +638719.855|220214.213|112.752 +638724.920|220209.589|112.313 +638730.026|220204.935|112.142 +638735.046|220200.354|111.752 +638740.157|220195.693|111.557 +638745.232|220191.063|111.109 +638750.246|220186.491|110.978 +638755.315|220181.867|110.755 +638760.329|220177.298|110.713 +638765.401|220172.675|110.563 +638770.421|220168.097|110.423 +638775.444|220163.518|110.326 +638780.477|220158.925|110.024 +638785.490|220154.356|110.137 +638790.514|220149.781|110.134 +638795.543|220145.197|110.036 +638800.511|220140.658|109.317 +638805.568|220136.047|108.838 +638810.557|220131.496|108.698 +638815.553|220126.939|108.469 +638820.546|220122.386|108.320 +638825.557|220117.817|107.951 +638830.564|220113.248|107.646 +638835.533|220108.715|107.262 +638840.528|220104.162|107.232 +638845.494|220099.632|106.967 +638850.480|220095.091|107.122 +638855.457|220090.549|106.729 +638860.420|220086.026|106.619 +638865.382|220081.500|106.513 +638875.324|220072.432|106.138 +638880.241|220067.951|106.098 +638885.200|220063.431|106.132 +638890.122|220058.944|106.074 +638895.091|220054.415|106.058 +638900.010|220049.931|106.077 +638904.924|220045.454|106.165 +638909.831|220040.982|106.378 +638914.741|220036.508|106.546 +638919.652|220032.037|106.763 +638924.495|220027.626|107.186 +638929.384|220023.173|107.637 +638934.255|220018.738|107.811 +638939.125|220014.300|107.985 +638943.987|220009.871|108.271 +638948.867|220005.421|108.363 +638953.753|220000.968|108.436 +638963.546|219992.041|107.985 +638968.481|219987.539|107.646 +638973.351|219983.095|107.491 +638978.289|219978.587|106.726 +638983.209|219974.094|106.159 +638988.082|219969.653|106.095 +638992.977|219965.188|105.839 +638997.872|219960.719|105.165 +639002.771|219956.251|104.946 +639007.602|219951.847|104.912 +639012.527|219947.351|104.492 +639017.404|219942.901|104.105 +639022.250|219938.484|104.038 +639027.100|219934.061|103.946 +639031.934|219929.657|104.013 +639036.765|219925.256|104.129 +639041.535|219920.909|104.355 +639046.360|219916.511|104.544 +639051.075|219912.216|104.848 +639055.891|219907.830|105.168 +639060.719|219903.426|104.998 +639065.602|219898.970|104.449 +639070.506|219894.489|103.742 +639075.386|219890.036|102.919 +639080.321|219885.525|102.050 +639085.222|219881.047|101.112 +639099.972|219867.572|98.207 +639104.790|219863.177|98.012 +639119.305|219849.933|96.509 +639133.603|219836.900|96.393 +639143.275|219828.073|95.156 +639171.499|219802.360|96.277 +639180.908|219793.786|96.469 +639185.590|219789.519|96.579 +639204.378|219772.395|96.250 +639209.078|219768.110|96.347 +639213.705|219763.894|96.597 +639218.289|219759.722|97.125 +639222.834|219755.585|97.600 +639245.633|219734.832|99.746 +639250.068|219730.799|100.627 +639254.652|219726.620|100.679 +639259.251|219722.429|100.679 +639263.768|219718.314|101.142 +639268.322|219714.166|101.419 +639272.821|219710.067|101.459 +639277.420|219705.876|101.523 +639281.953|219701.745|101.697 +639286.461|219697.637|101.736 +639290.966|219693.534|101.822 +639295.477|219689.422|101.883 +639299.991|219685.308|101.956 +639304.499|219681.199|102.059 +639308.973|219677.124|102.114 +639313.439|219673.055|102.221 +639317.938|219668.952|102.172 +639322.400|219664.883|102.069 +639326.905|219660.774|102.023 +639331.391|219656.684|101.843 +639335.902|219652.569|101.560 +639340.359|219648.503|101.300 +639344.809|219644.446|101.102 +639349.277|219640.371|100.840 +639353.694|219636.341|100.587 +639358.125|219632.303|100.538 +639362.423|219628.386|100.895 +639366.767|219624.430|101.060 +639371.025|219620.553|101.383 +639375.271|219616.685|101.782 +639374.188|219615.368|101.825 +639369.994|219619.178|101.410 +639365.733|219623.055|101.078 +639361.396|219626.996|100.871 +639357.086|219630.913|100.545 +639352.727|219634.881|100.487 +639348.302|219638.911|100.758 +639343.885|219642.931|101.008 +639339.429|219646.988|101.218 +639334.982|219651.039|101.413 +639330.517|219655.105|101.712 +639326.018|219659.204|101.944 +639321.491|219663.322|102.062 +639317.032|219667.379|102.136 +639312.582|219671.430|102.175 +639308.099|219675.511|102.160 +639303.630|219679.577|102.069 +639299.162|219683.643|101.995 +639294.645|219687.749|101.913 +639290.112|219691.876|101.944 +639285.616|219695.966|101.806 +639281.105|219700.069|101.755 +639276.558|219704.208|101.660 +639272.010|219708.344|101.569 +639267.453|219712.493|101.553 +639262.894|219716.638|101.285 +639258.428|219720.695|100.791 +639253.823|219724.886|100.816 +639249.287|219729.010|100.468 +639244.706|219733.177|100.103 +639240.186|219737.285|99.694 +639230.999|219745.637|98.886 +639226.470|219749.752|98.283 +639221.852|219753.949|97.914 +639217.265|219758.118|97.378 +639212.681|219762.285|96.841 +639208.033|219766.506|96.381 +639203.326|219770.792|96.302 +639198.611|219775.081|96.290 +639189.135|219783.700|96.311 +639184.386|219788.019|96.564 +639179.634|219792.344|96.567 +639160.651|219809.602|95.945 +639141.513|219827.012|96.015 +639131.823|219835.827|96.314 +639117.394|219848.952|96.235 +639112.523|219853.384|96.332 +639107.622|219857.852|97.033 +639102.639|219862.391|97.637 +639097.783|219866.810|98.064 +639082.854|219880.420|100.779 +639077.813|219885.016|101.636 +639072.866|219889.530|102.587 +639067.846|219894.102|103.343 +639062.874|219898.634|104.166 +639057.894|219903.173|104.720 +639053.038|219907.590|104.699 +639048.165|219912.018|104.446 +639043.285|219916.456|104.266 +639038.408|219920.888|104.059 +639033.534|219925.320|103.876 +639028.639|219929.773|103.867 +639023.701|219934.263|103.846 +639018.757|219938.761|103.897 +639013.807|219943.266|104.016 +639008.833|219947.796|104.394 +639003.856|219952.328|104.824 +638998.945|219956.793|104.696 +638993.934|219961.362|105.504 +638988.927|219965.919|105.854 +638983.925|219970.476|106.208 +638978.993|219974.963|106.375 +638973.979|219979.529|106.897 +638968.987|219984.073|107.244 +638963.991|219988.624|107.680 +638958.953|219993.214|108.076 +638949.056|220002.215|108.116 +638944.121|220006.702|108.037 +638939.080|220011.292|108.098 +638934.160|220015.763|107.899 +638929.210|220020.262|107.534 +638924.278|220024.743|106.985 +638919.286|220029.281|106.583 +638914.324|220033.792|106.388 +638909.328|220038.334|106.046 +638904.363|220042.848|105.930 +638899.398|220047.365|105.854 +638894.326|220051.980|105.888 +638889.351|220056.503|105.952 +638884.295|220061.105|105.882 +638879.278|220065.668|105.915 +638874.261|220070.234|106.001 +638869.192|220074.846|106.144 +638864.175|220079.412|106.287 +638859.118|220084.011|106.330 +638854.068|220088.614|106.988 +638844.009|220097.758|106.482 +638838.953|220102.360|106.650 +638828.800|220111.608|107.707 +638823.743|220116.210|108.030 +638818.641|220120.855|108.323 +638813.642|220125.400|108.518 +638808.546|220130.039|108.799 +638803.465|220134.663|108.893 +638798.423|220139.250|109.131 +638793.309|220143.911|109.841 +638788.218|220148.544|110.173 +638783.140|220153.164|110.332 +638778.081|220157.767|110.222 +638773.052|220162.342|110.432 +638767.934|220166.996|110.505 +638762.862|220171.611|110.682 +638757.751|220176.262|110.755 +638752.688|220180.868|110.795 +638747.616|220185.482|111.054 +638742.507|220190.128|111.121 +638737.390|220194.788|111.472 +638732.324|220199.400|111.773 +638727.207|220204.057|112.203 +638722.095|220208.708|112.499 +638717.029|220213.323|112.977 +638711.878|220218.014|113.236 +638706.773|220222.659|113.532 +638701.670|220227.301|113.800 +638696.571|220231.943|114.078 +638691.475|220236.582|114.267 +638686.385|220241.212|114.294 +638681.276|220245.866|115.035 +638676.177|220250.512|115.599 +638671.087|220255.141|115.803 +638665.954|220259.811|115.836 +638660.912|220264.398|116.053 +638655.780|220269.068|116.181 +638650.647|220273.740|116.428 +638645.608|220278.325|116.696 +638640.475|220282.997|116.955 +638635.394|220287.621|117.117 +638630.313|220292.245|117.391 +638625.187|220296.911|117.607 +638620.057|220301.578|117.930 +638615.028|220306.156|118.150 +638609.904|220310.822|118.506 +638604.777|220315.486|118.787 +638599.705|220320.104|118.964 +638594.582|220324.767|119.339 +638589.510|220329.385|119.753 +638584.441|220333.999|120.061 +638579.323|220338.660|120.399 +638574.206|220343.320|120.902 +638569.137|220347.932|121.228 +638564.019|220352.589|121.457 +638558.905|220357.247|121.740 +638553.839|220361.858|122.137 +638548.724|220366.513|122.560 +638543.662|220371.124|122.938 +638538.599|220375.733|123.246 +638533.487|220380.387|123.533 +638528.373|220385.038|123.752 +638523.359|220389.601|124.017 +638518.250|220394.252|124.273 +638513.188|220398.861|124.584 +638508.128|220403.467|124.907 +638503.071|220408.072|125.307 +638497.960|220412.720|125.520 +638492.946|220417.283|125.672 +638487.834|220421.938|125.749 +638482.772|220426.543|125.968 +638477.761|220431.106|126.239 +638472.655|220435.751|126.593 +638467.647|220440.311|127.007 +638462.585|220444.919|127.169 +638457.528|220449.522|127.501 +638452.520|220454.082|127.879 +638447.464|220458.687|128.199 +638442.407|220463.290|128.568 +638437.399|220467.850|128.915 +638432.391|220472.409|129.290 +638427.338|220477.012|129.665 +638422.330|220481.572|130.037 +638417.313|220486.138|130.177 +638412.299|220490.704|130.369 +638407.279|220495.273|130.485 +638402.207|220499.884|130.577 +638397.232|220504.414|130.625 +638392.197|220508.992|130.485 +638387.211|220513.530|130.394 +638377.140|220522.689|130.302 +638372.193|220527.188|130.116 +638367.155|220531.772|130.065 +638352.162|220545.406|129.699 +638307.243|220586.243|126.818 +638282.252|220608.945|123.709 +638262.264|220627.102|121.198 +638257.314|220631.607|121.049 +638252.434|220636.048|121.173 +638247.487|220640.547|121.143 +638242.589|220645.003|121.109 +638237.611|220649.529|120.783 +638222.917|220662.898|120.930 +638218.004|220667.369|120.844 +638213.063|220671.862|120.518 +638208.174|220676.306|120.280 +638198.377|220685.218|120.119 +638169.278|220711.702|121.091 +638144.931|220733.846|120.223 +638135.403|220742.527|121.207 +638130.611|220746.898|122.109 +638121.214|220755.463|123.825 +638116.444|220759.809|124.112 +638111.668|220764.158|124.359 +638102.118|220772.848|124.572 +638097.321|220777.213|124.731 +638092.557|220781.550|124.770 +638064.116|220807.446|125.825 +638059.413|220811.732|126.075 +638054.685|220816.036|126.200 +638050.022|220820.281|126.422 +638040.585|220828.877|126.855 +638026.638|220841.584|127.693 +638017.298|220850.094|128.263 +638003.363|220862.783|128.775 +637998.764|220866.971|128.961 +637994.128|220871.189|128.925 +637989.485|220875.420|129.174 +637984.831|220879.657|129.056 +637966.436|220896.405|129.559 +637961.846|220900.584|129.629 +637957.301|220904.726|129.991 +637952.684|220908.927|129.940 +637943.488|220917.296|129.522 +637929.693|220929.842|128.800 +637925.063|220934.054|128.513 +637920.530|220938.181|128.217 +637915.946|220942.348|127.961 +637906.720|220950.736|126.913 +637902.163|220954.878|126.593 +637897.518|220959.100|125.803 +637893.001|220963.209|125.471 +637883.835|220971.542|124.450 +637879.330|220975.638|124.255 +637870.217|220983.923|123.112 +637865.764|220987.974|122.987 +637834.186|221016.683|119.570 +637829.770|221020.697|119.290 +637825.439|221024.644|119.436 +637799.689|221048.096|120.524 +637791.094|221055.917|120.393 +637786.878|221059.760|120.722 +637778.576|221067.328|121.551 +637774.314|221071.202|121.490 +637770.145|221075.000|121.606 +637753.533|221090.134|122.548 +637749.482|221093.825|123.042 +637745.319|221097.616|123.045 +637741.128|221101.430|122.722 +637737.010|221105.182|122.954 +637728.890|221112.585|123.502 +637724.812|221116.301|123.493 +637720.731|221120.016|123.490 +637716.637|221123.744|123.447 +637708.481|221131.175|123.530 +637692.369|221145.845|123.411 +637652.739|221181.933|122.621 +637648.874|221185.454|122.463 +637645.058|221188.932|122.716 +637637.249|221196.034|121.954 +637633.542|221199.414|122.469 +637626.017|221206.272|122.670 +637618.430|221213.182|122.475 +637614.657|221216.614|122.384 +637611.024|221219.927|122.615 +637607.326|221223.295|122.627 +637603.675|221226.623|122.816 +637600.060|221229.918|123.164 +637596.536|221233.134|123.648 +637801.430|221044.791|120.259 +637818.608|221029.113|119.500 +637822.945|221025.153|119.375 +637827.255|221021.221|119.375 +637831.675|221017.192|119.430 +637836.094|221013.162|119.750 +637840.621|221009.041|120.375 +637858.781|220992.503|122.606 +637863.203|220988.470|122.829 +637867.705|220984.365|122.947 +637872.256|220980.219|123.335 +637881.421|220971.871|124.526 +637904.266|220951.059|126.760 +637908.820|220946.908|127.087 +637913.480|220942.662|127.751 +637918.052|220938.495|127.943 +637922.643|220934.310|128.272 +637927.242|220930.119|128.672 +637931.863|220925.910|128.915 +637936.490|220921.692|129.239 +637941.092|220917.495|129.440 +637945.682|220913.310|129.583 +637950.322|220909.076|129.757 +637954.955|220904.851|129.903 +637959.484|220900.718|129.757 +637964.080|220896.524|129.418 +637968.634|220892.367|129.162 +637973.386|220888.039|129.808 +637982.539|220879.681|129.031 +637987.230|220875.402|129.065 +637991.890|220871.150|128.922 +637996.575|220866.876|128.955 +638001.174|220862.679|128.784 +638005.887|220858.378|128.714 +638015.198|220849.881|128.224 +638019.880|220845.607|128.013 +638024.562|220841.334|127.815 +638029.207|220837.091|127.407 +638038.580|220828.535|126.815 +638048.013|220819.925|126.389 +638052.774|220815.578|126.157 +638057.499|220811.268|126.035 +638062.199|220806.977|125.752 +638081.300|220789.545|125.230 +638090.847|220780.834|124.843 +638095.635|220776.460|124.624 +638110.141|220763.226|124.371 +638114.914|220758.870|124.084 +638134.077|220741.359|121.292 +638143.693|220732.572|120.259 +638163.310|220714.677|120.366 +638168.306|220710.130|120.917 +638192.803|220687.772|120.262 +638212.615|220669.701|120.390 +638222.594|220660.606|121.103 +638237.444|220647.054|120.631 +638242.473|220642.470|121.015 +638247.472|220637.910|121.109 +638252.452|220633.366|121.015 +638257.454|220628.806|121.189 +638262.428|220624.267|121.052 +638267.433|220619.701|121.338 +638272.468|220615.117|121.966 +638287.696|220601.255|124.538 +638302.878|220587.423|126.346 +638338.220|220555.205|128.882 +638358.392|220536.808|129.793 +638363.436|220532.205|129.906 +638368.474|220527.609|129.964 +638373.513|220523.009|130.104 +638378.606|220518.364|130.321 +638383.641|220513.768|130.452 +638388.677|220509.178|130.543 +638393.706|220504.587|130.583 +638398.784|220499.951|130.680 +638403.804|220495.370|130.543 +638408.873|220490.743|130.500 +638413.929|220486.125|130.235 +638418.995|220481.502|130.104 +638424.052|220476.881|129.848 +638429.057|220472.309|129.446 +638434.107|220467.694|129.025 +638439.164|220463.076|128.720 +638444.214|220458.462|128.278 +638449.274|220453.844|128.028 +638454.322|220449.229|127.529 +638459.378|220444.612|127.187 +638464.438|220439.994|126.968 +638469.540|220435.330|126.663 +638474.548|220430.755|126.267 +638479.654|220426.095|125.983 +638489.773|220416.853|125.557 +638494.836|220412.230|125.502 +638499.944|220407.566|125.322 +638505.004|220402.945|125.099 +638510.060|220398.328|124.685 +638515.169|220393.664|124.386 +638520.226|220389.043|123.972 +638525.288|220384.420|123.783 +638530.397|220379.753|123.484 +638535.459|220375.132|123.341 +638540.519|220370.509|122.993 +638545.631|220365.842|122.621 +638550.693|220361.215|122.259 +638555.756|220356.588|121.765 +638560.868|220351.919|121.439 +638565.936|220347.292|121.225 +638571.051|220342.622|120.942 +638576.117|220337.992|120.512 +638581.186|220333.359|120.085 +638586.300|220328.690|119.793 +638591.369|220324.057|119.351 +638596.490|220319.381|118.982 +638601.562|220314.748|118.717 +638606.682|220310.073|118.488 +638611.757|220305.437|118.183 +638616.835|220300.801|117.915 +638621.913|220296.162|117.555 +638627.037|220291.483|117.333 +638632.115|220286.844|117.126 +638637.196|220282.205|116.909 +638642.277|220277.566|116.675 +638647.407|220272.881|116.443 +638652.442|220268.284|116.227 +638657.572|220263.600|116.077 +638662.653|220258.961|115.992 +638667.688|220254.364|115.934 +638672.778|220249.716|115.657 +638677.926|220245.010|115.013 +638682.977|220240.392|114.450 +638688.058|220235.756|114.642 +638693.151|220231.105|114.428 +638698.199|220226.496|114.233 +638703.292|220221.845|114.084 +638708.394|220217.185|113.745 +638713.451|220212.567|113.456 +638718.559|220207.894|113.029 +638723.625|220203.264|112.545 +638728.697|220198.628|112.008 +638733.808|220193.956|111.691 +638738.874|220189.326|111.353 +638743.937|220184.702|111.170 +638749.000|220180.075|111.002 +638754.059|220175.454|110.957 +638759.119|220170.834|110.929 +638764.188|220166.204|110.780 +638769.257|220161.577|110.649 +638774.329|220156.944|110.487 +638779.294|220152.408|110.533 +638784.421|220147.724|110.289 +638789.459|220143.118|109.948 +638794.513|220138.500|109.436 +638799.551|220133.895|109.177 +638804.583|220129.298|109.052 +638809.631|220124.687|108.744 +638814.678|220120.075|108.469 +638819.671|220115.512|108.317 +638824.727|220110.888|107.933 +638829.732|220106.320|107.692 +638839.855|220097.060|106.318 +638854.805|220083.411|106.869 +638859.883|220078.772|106.497 +638864.876|220074.206|105.970 +638869.884|220069.631|105.915 +638874.846|220065.101|105.885 +638879.814|220060.563|105.784 +638884.819|220055.991|105.857 +638889.796|220051.446|105.714 +638894.768|220046.905|105.644 +638899.736|220042.369|105.680 +638904.701|220037.834|105.732 +638909.596|220033.366|106.058 +638914.558|220028.836|106.199 +638919.450|220024.377|106.634 +638924.382|220019.875|107.131 +638929.277|220015.410|107.528 +638934.181|220010.935|107.845 +638939.095|220006.452|108.079 +638943.984|220001.983|108.055 +638948.903|219997.497|108.283 +638958.785|219988.465|107.823 +638963.726|219983.948|107.412 +638968.663|219979.434|107.058 +638973.610|219974.914|106.668 +638978.542|219970.406|106.433 +638983.446|219965.925|106.043 +638988.405|219961.390|105.629 +638993.310|219956.906|105.281 +638998.241|219952.398|104.733 +639003.149|219947.912|104.446 +639008.059|219943.425|104.156 +639012.969|219938.935|103.882 +639017.828|219934.500|103.690 +639022.720|219930.029|103.623 +639027.508|219925.655|103.647 +639032.388|219921.199|103.742 +639037.222|219916.785|103.843 +639042.008|219912.418|103.955 +639046.854|219907.992|103.980 +639051.648|219903.615|104.065 +639056.531|219899.153|103.855 +639061.378|219894.718|103.190 +639066.340|219890.176|102.413 +639071.217|219885.714|101.593 +639076.145|219881.203|100.776 +639085.926|219872.254|99.109 +639090.855|219867.746|98.411 +639100.502|219858.925|97.570 +639105.421|219854.423|96.664 +639114.946|219845.721|96.509 +639119.713|219841.369|96.436 +639124.508|219836.989|96.204 +639143.451|219819.688|96.387 +639148.109|219815.436|96.506 +639157.606|219806.758|96.265 +639171.597|219793.990|97.064 +639176.230|219789.760|97.131 +639180.951|219785.447|96.981 +639185.669|219781.137|96.881 +639190.336|219776.873|96.802 +639195.033|219772.578|96.549 +639199.654|219768.363|96.808 +639204.287|219764.129|96.686 +639208.825|219759.990|97.149 +639217.914|219751.702|98.368 +639222.474|219747.542|98.752 +639231.551|219739.263|99.810 +639236.074|219735.136|100.157 +639240.597|219731.006|100.505 +639245.127|219726.873|100.846 +639249.647|219722.752|101.267 +639254.161|219718.628|101.428 +639258.651|219714.532|101.755 +639263.186|219710.390|101.840 +639267.752|219706.220|101.779 +639272.251|219702.111|102.099 +639276.799|219697.960|102.172 +639281.249|219693.894|102.242 +639285.818|219689.724|102.245 +639290.329|219685.603|102.303 +639294.806|219681.513|102.279 +639299.317|219677.392|102.364 +639303.773|219673.323|102.486 +639308.284|219669.202|102.349 +639312.792|219665.084|102.258 +639317.297|219660.966|102.181 +639321.738|219656.909|101.944 +639326.283|219652.755|101.706 +639330.730|219648.689|101.474 +639335.220|219644.586|101.310 +639339.712|219640.484|101.151 +639344.175|219636.402|100.901 +639348.625|219632.336|100.731 +639353.026|219628.316|100.819 +639357.363|219624.354|100.977 +639361.689|219620.406|101.221 +639365.995|219616.478|101.563 +639370.223|219612.622|102.044 +639370.948|219609.324|102.331 +639366.715|219613.180|101.870 +639362.539|219616.980|101.392 +639358.269|219620.870|101.127 +639353.977|219624.780|100.983 +639349.692|219628.685|100.828 +639345.324|219632.665|100.837 +639340.926|219636.680|101.020 +639336.509|219640.706|101.294 +639332.083|219644.742|101.392 +639327.645|219648.789|101.566 +639323.250|219652.801|101.816 +639318.757|219656.900|102.044 +639314.320|219660.948|102.279 +639309.854|219665.020|102.413 +639305.398|219669.083|102.520 +639300.896|219673.189|102.620 +639296.449|219677.240|102.453 +639291.987|219681.306|102.379 +639287.506|219685.393|102.425 +639283.050|219689.456|102.364 +639278.539|219693.568|102.340 +639273.979|219697.722|102.309 +639269.489|219701.816|102.206 +639265.015|219705.894|102.041 +639260.461|219710.042|102.029 +639255.886|219714.215|101.892 +639251.390|219718.308|101.608 +639246.843|219722.454|101.349 +639242.310|219726.581|101.008 +639237.735|219730.750|100.654 +639233.218|219734.862|100.261 +639228.668|219739.007|99.795 +639196.487|219768.314|97.012 +639191.768|219772.615|96.747 +639187.020|219776.946|97.000 +639182.295|219781.256|97.137 +639177.549|219785.581|97.100 +639172.804|219789.912|97.106 +639144.283|219815.912|96.518 +639139.446|219820.322|96.610 +639129.930|219828.994|96.116 +639115.315|219842.329|96.692 +639110.484|219846.733|96.524 +639105.616|219851.174|96.646 +639085.865|219869.206|98.731 +639070.811|219882.962|101.151 +639065.843|219887.497|101.910 +639060.826|219892.084|102.724 +639055.824|219896.653|103.440 +639050.826|219901.213|103.766 +639045.918|219905.691|103.806 +639040.968|219910.202|103.800 +639036.082|219914.658|103.702 +639031.154|219919.151|103.586 +639026.213|219923.659|103.593 +639021.226|219928.203|103.568 +639016.282|219932.711|103.644 +639011.275|219937.280|103.867 +639006.264|219941.852|104.150 +639001.271|219946.409|104.327 +638996.236|219951.008|104.894 +638991.228|219955.577|105.242 +638986.229|219960.140|105.552 +638981.224|219964.706|105.943 +638976.165|219969.327|106.433 +638971.129|219973.923|106.720 +638966.155|219978.462|106.942 +638961.068|219983.104|107.326 +638956.072|219987.667|107.817 +638951.015|219992.278|107.951 +638946.011|219996.844|108.110 +638941.030|220001.386|108.064 +638936.010|220005.961|107.896 +638930.984|220010.545|107.835 +638926.001|220015.084|107.354 +638921.069|220019.576|106.842 +638916.040|220024.154|106.330 +638911.047|220028.705|105.970 +638906.048|220033.259|105.699 +638901.040|220037.828|105.580 +638895.975|220042.449|105.574 +638890.909|220047.066|105.559 +638885.892|220051.641|105.604 +638880.826|220056.262|105.696 +638875.760|220060.883|105.775 +638870.707|220065.491|105.751 +638865.641|220070.112|105.918 +638855.479|220079.387|106.723 +638850.453|220083.972|106.464 +638840.339|220093.189|106.135 +638830.153|220102.497|107.707 +638825.051|220107.152|107.976 +638819.979|220111.779|108.549 +638814.901|220116.408|108.539 +638809.801|220121.060|108.850 +638804.763|220125.656|109.045 +638799.627|220130.344|109.286 +638794.589|220134.937|109.530 +638789.505|220139.573|109.750 +638784.405|220144.231|110.313 +638779.330|220148.858|110.460 +638774.256|220153.487|110.707 +638769.193|220158.102|110.691 +638764.072|220162.775|110.914 +638759.006|220167.392|110.999 +638753.941|220172.013|111.191 +638748.832|220176.671|111.240 +638743.772|220181.282|111.325 +638738.713|220185.897|111.481 +638733.607|220190.554|111.606 +638728.493|220195.221|111.993 +638723.421|220199.851|112.548 +638718.297|220204.529|113.297 +638713.237|220209.150|113.745 +638708.135|220213.804|114.029 +638703.036|220218.456|114.294 +638697.982|220223.064|114.614 +638687.805|220232.342|114.681 +638682.767|220236.936|114.690 +638677.679|220241.578|114.806 +638672.577|220246.235|115.522 +638667.484|220250.883|115.955 +638662.400|220255.519|116.080 +638657.325|220260.146|115.873 +638652.238|220264.785|116.147 +638647.157|220269.421|116.382 +638642.121|220274.012|116.528 +638637.040|220278.648|116.790 +638631.914|220283.323|117.001 +638626.884|220287.914|117.202 +638621.758|220292.586|117.409 +638616.683|220297.219|117.690 +638611.654|220301.806|117.985 +638606.530|220306.482|118.324 +638601.458|220311.109|118.494 +638596.432|220315.693|118.784 +638591.311|220320.363|119.134 +638586.242|220324.990|119.512 +638581.177|220329.613|119.869 +638576.108|220334.237|120.283 +638571.039|220338.864|120.732 +638565.973|220343.485|121.079 +638560.907|220348.106|121.256 +638555.842|220352.726|121.484 +638550.779|220357.350|121.999 +638545.716|220361.968|122.335 +638540.656|220366.589|122.801 +638535.594|220371.207|123.118 +638530.531|220375.824|123.341 +638525.471|220380.439|123.588 +638520.408|220385.057|123.816 +638515.352|220389.671|124.173 +638510.341|220394.243|124.575 +638505.284|220398.858|124.825 +638500.225|220403.473|125.130 +638495.168|220408.087|125.364 +638490.102|220412.705|125.371 +638485.091|220417.274|125.654 +638480.031|220421.892|125.797 +638474.975|220426.506|126.066 +638469.967|220431.075|126.407 +638464.910|220435.687|126.745 +638459.851|220440.302|126.962 +638454.846|220444.871|127.318 +638449.841|220449.437|127.739 +638444.784|220454.045|128.013 +638439.783|220458.608|128.486 +638434.778|220463.174|128.827 +638429.724|220467.783|129.196 +638424.771|220472.300|129.620 +638419.721|220476.908|130.034 +638414.707|220481.477|130.162 +638409.690|220486.049|130.302 +638404.679|220490.618|130.549 +638399.707|220495.151|130.613 +638394.687|220499.726|130.705 +638389.643|220504.319|130.363 +638384.675|220508.848|130.549 +638379.642|220513.433|130.467 +638374.644|220517.983|130.159 +638369.651|220522.531|130.022 +638364.658|220527.078|129.860 +638334.672|220554.389|128.425 +638319.697|220568.031|127.983 +638284.648|220599.929|124.371 +638274.605|220609.058|122.609 +638269.548|220613.657|121.637 +638264.641|220618.125|121.372 +638259.645|220622.676|121.213 +638254.689|220627.190|120.985 +638249.758|220631.686|121.036 +638244.796|220636.203|120.820 +638239.897|220640.669|120.744 +638234.926|220645.195|120.469 +638225.169|220654.089|120.920 +638220.256|220658.566|120.786 +638210.417|220667.528|120.512 +638205.461|220672.039|120.061 +638195.671|220680.957|119.924 +638190.809|220685.389|119.970 +638185.929|220689.839|120.354 +638156.681|220716.491|120.091 +638151.697|220721.017|118.848 +638137.350|220734.111|120.817 +638132.568|220738.476|121.335 +638118.358|220751.445|123.331 +638113.612|220755.776|123.798 +638089.731|220777.548|124.825 +638085.001|220781.861|125.112 +638080.240|220786.199|125.212 +638061.309|220803.444|125.855 +638056.584|220807.748|125.938 +638051.875|220812.040|126.160 +638047.169|220816.325|126.419 +638042.518|220820.565|126.718 +638037.781|220824.881|126.791 +638033.115|220829.133|127.026 +638028.460|220833.373|127.358 +638009.806|220850.368|128.288 +638005.225|220854.544|128.516 +638000.556|220858.796|128.851 +637991.287|220867.239|129.050 +637986.605|220871.503|129.037 +637982.003|220875.694|129.229 +637977.412|220879.873|129.211 +637968.128|220888.328|129.196 +637963.571|220892.480|129.434 +637958.969|220896.674|129.702 +637954.415|220900.822|129.985 +637949.822|220905.001|129.769 +637945.268|220909.149|129.778 +637940.611|220913.386|129.525 +637936.078|220917.513|129.424 +637931.454|220921.719|129.110 +637926.828|220925.928|128.797 +637917.684|220934.249|128.300 +637913.105|220938.416|128.056 +637908.530|220942.577|127.565 +637876.462|220971.737|124.057 +637840.383|221004.549|120.549 +637831.449|221012.675|119.631 +637827.027|221016.698|119.290 +637822.653|221020.676|119.223 +637814.057|221028.506|119.607 +637805.608|221036.205|120.256 +637775.970|221063.204|121.298 +637767.621|221070.806|121.472 +637751.107|221085.848|122.329 +637747.126|221089.481|123.115 +637743.030|221093.212|123.170 +637730.661|221104.471|123.069 +637726.631|221108.141|123.249 +637714.531|221119.160|123.575 +637710.474|221122.854|123.466 +637658.963|221169.732|122.335 +637655.253|221173.113|122.755 +637635.965|221190.657|121.670 +637621.088|221204.205|122.070 +637613.806|221210.835|122.438 +637610.176|221214.142|122.667 +637606.491|221217.495|122.505 +637602.898|221220.765|122.701 +637599.331|221224.014|123.002 +637595.863|221227.178|123.484 +637592.376|221230.357|123.892 +637578.215|221243.250|124.465 +637775.689|221061.345|121.131 +637788.283|221049.830|120.357 +637792.621|221045.864|120.384 +637796.964|221041.896|120.448 +637801.177|221038.043|120.162 +637805.550|221034.047|120.158 +637822.759|221018.310|119.180 +637827.176|221014.272|119.229 +637831.632|221010.206|119.476 +637836.143|221006.088|119.762 +637840.694|221001.936|120.530 +637849.786|220993.640|121.588 +637863.405|220981.210|122.996 +637867.922|220977.086|123.210 +637877.032|220968.768|124.127 +637881.662|220964.547|124.743 +637886.265|220960.346|125.236 +637900.051|220947.764|126.767 +637904.678|220943.543|127.224 +637909.277|220939.343|127.553 +637918.528|220930.900|128.294 +637923.127|220926.696|128.422 +637927.721|220922.502|128.812 +637932.347|220918.278|129.129 +637936.990|220914.038|129.278 +637941.638|220909.792|129.473 +637946.265|220905.568|129.565 +637950.901|220901.334|129.741 +637955.564|220897.073|129.802 +637960.103|220892.918|129.443 +637964.729|220888.694|129.312 +637969.414|220884.411|129.269 +637974.038|220880.190|129.159 +637978.665|220875.965|129.086 +637983.304|220871.723|128.812 +637988.013|220867.425|128.976 +638002.028|220854.623|128.595 +638006.688|220850.359|128.236 +638011.401|220846.058|128.196 +638034.818|220824.655|126.742 +638039.506|220820.376|126.657 +638044.258|220816.029|126.370 +638048.973|220811.723|126.181 +638053.676|220807.425|125.904 +638058.453|220803.063|125.822 +638077.484|220785.674|125.185 +638082.276|220781.294|124.965 +638087.092|220776.896|124.929 +638091.898|220772.504|124.852 +638101.497|220763.738|124.618 +638106.303|220759.343|124.221 +638111.092|220754.966|123.682 +638115.877|220750.592|123.530 +638125.506|220741.786|122.557 +638130.233|220737.461|121.564 +638135.028|220733.072|120.738 +638149.396|220719.926|118.534 +638183.887|220688.443|120.204 +638188.776|220683.975|119.930 +638193.665|220679.509|119.662 +638203.501|220670.524|119.777 +638218.388|220656.939|120.457 +638243.198|220634.283|120.823 +638248.161|220629.754|121.094 +638253.208|220625.145|121.265 +638258.143|220620.640|121.244 +638263.129|220616.086|121.301 +638268.119|220611.530|121.460 +638283.328|220597.670|124.383 +638303.485|220579.285|126.434 +638318.606|220565.493|127.974 +638323.623|220560.911|128.251 +638358.800|220528.810|129.687 +638363.845|220524.204|129.891 +638368.889|220519.605|130.074 +638373.879|220515.048|130.232 +638378.963|220510.409|130.403 +638383.995|220505.816|130.513 +638389.018|220501.228|130.418 +638394.056|220496.632|130.738 +638399.076|220492.048|130.662 +638404.142|220487.424|130.558 +638409.202|220482.800|130.354 +638414.216|220478.219|130.260 +638419.273|220473.601|130.010 +638424.320|220468.990|129.543 +638429.322|220464.415|129.187 +638434.372|220459.800|128.803 +638439.426|220455.185|128.425 +638444.473|220450.570|127.977 +638449.527|220445.953|127.654 +638454.578|220441.338|127.251 +638459.631|220436.720|126.879 +638464.685|220432.100|126.626 +638469.741|220427.482|126.319 +638474.795|220422.864|126.011 +638479.852|220418.243|125.764 +638484.911|220413.623|125.605 +638489.968|220409.005|125.322 +638495.031|220404.381|125.300 +638500.087|220399.760|125.017 +638505.141|220395.142|124.718 +638510.246|220390.476|124.453 +638515.254|220385.901|124.008 +638520.360|220381.237|123.749 +638525.419|220376.614|123.493 +638530.479|220371.993|123.286 +638535.588|220367.326|123.005 +638540.647|220362.703|122.606 +638545.707|220358.076|122.137 +638550.815|220353.406|121.750 +638555.878|220348.779|121.314 +638560.990|220344.110|121.119 +638566.055|220339.486|120.985 +638571.167|220334.810|120.561 +638576.233|220330.180|120.119 +638581.347|220325.505|119.677 +638586.413|220320.878|119.253 +638591.531|220316.202|118.875 +638596.648|220311.523|118.586 +638601.720|220306.891|118.363 +638606.792|220302.258|118.104 +638611.913|220297.576|117.748 +638616.988|220292.940|117.464 +638622.062|220288.304|117.187 +638627.186|220283.625|117.068 +638632.264|220278.986|116.809 +638637.342|220274.347|116.614 +638642.420|220269.708|116.440 +638647.501|220265.066|116.138 +638652.585|220260.421|115.870 +638657.654|220255.797|116.281 +638662.738|220251.152|116.044 +638667.825|220246.500|115.687 +638672.925|220241.840|114.989 +638677.966|220237.231|114.687 +638683.062|220232.577|114.306 +638688.149|220227.929|114.203 +638698.260|220218.703|114.690 +638703.350|220214.054|114.565 +638708.443|220209.400|114.450 +638713.542|220204.740|114.130 +638718.614|220200.094|113.279 +638723.692|220195.446|112.423 +638728.810|220190.768|111.871 +638733.869|220186.144|111.618 +638738.923|220181.526|111.511 +638744.025|220176.860|111.402 +638749.079|220172.245|111.405 +638754.145|220167.615|111.185 +638759.201|220162.997|111.161 +638764.267|220158.367|110.981 +638769.324|220153.747|111.008 +638774.350|220149.153|110.716 +638779.370|220144.566|110.618 +638784.466|220139.902|109.993 +638789.493|220135.309|109.832 +638794.525|220130.710|109.631 +638799.560|220126.107|109.344 +638804.601|220121.499|109.067 +638809.594|220116.936|108.817 +638814.632|220112.330|108.619 +638819.671|220107.728|108.485 +638824.636|220103.186|108.009 +638829.690|220098.565|107.686 +638849.745|220080.229|106.336 +638854.738|220075.666|106.372 +638869.747|220061.947|105.632 +638874.706|220057.414|105.589 +638879.707|220052.848|105.653 +638884.688|220048.295|105.415 +638889.656|220043.753|105.336 +638894.615|220039.224|105.403 +638899.586|220034.682|105.367 +638904.503|220030.193|105.424 +638909.453|220025.672|105.653 +638914.378|220021.180|106.177 +638919.261|220016.726|106.674 +638924.147|220012.264|107.110 +638929.030|220007.811|107.613 +638933.944|220003.321|107.793 +638938.872|219998.822|107.848 +638943.740|219994.375|108.037 +638948.684|219989.855|107.954 +638953.600|219985.366|107.726 +638958.544|219980.842|107.232 +638963.476|219976.334|106.900 +638968.407|219971.823|106.592 +638973.290|219967.358|106.296 +638978.243|219962.829|105.857 +638983.145|219958.348|105.476 +638988.049|219953.861|105.098 +638992.953|219949.381|104.772 +638997.912|219944.842|104.385 +639002.774|219940.401|104.071 +639007.666|219935.930|103.922 +639012.524|219931.486|103.650 +639017.435|219926.999|103.419 +639022.278|219922.574|103.355 +639027.158|219918.114|103.413 +639031.998|219913.692|103.404 +639036.835|219909.275|103.480 +639041.645|219904.880|103.364 +639046.506|219900.436|103.279 +639051.347|219896.013|102.983 +639056.230|219891.542|102.361 +639061.186|219887.009|101.633 +639070.961|219878.060|100.161 +639075.892|219873.546|99.316 +639080.742|219869.108|98.771 +639100.075|219851.412|96.997 +639104.876|219847.023|96.960 +639119.332|219833.785|95.525 +639138.047|219816.686|96.789 +639161.532|219795.219|97.411 +639166.202|219790.951|97.509 +639170.835|219786.715|97.545 +639198.840|219761.105|97.503 +639212.528|219748.602|99.011 +639217.009|219744.512|99.520 +639221.575|219740.339|99.847 +639226.116|219736.191|100.337 +639230.618|219732.079|100.776 +639235.120|219727.967|101.224 +639239.646|219723.834|101.547 +639244.194|219719.677|101.767 +639248.678|219715.577|102.066 +639253.164|219711.478|102.370 +639257.697|219707.336|102.440 +639262.238|219703.181|102.483 +639266.707|219699.097|102.654 +639271.196|219694.994|102.748 +639275.720|219690.858|102.666 +639280.273|219686.691|102.700 +639284.769|219682.583|102.812 +639289.259|219678.474|102.687 +639293.697|219674.417|102.870 +639298.180|219670.314|102.812 +639302.694|219666.184|102.626 +639307.193|219662.070|102.538 +639311.717|219657.933|102.352 +639316.157|219653.870|102.084 +639320.659|219649.747|101.776 +639325.143|219645.647|101.593 +639329.560|219641.605|101.496 +639334.037|219637.509|101.386 +639338.490|219633.434|101.148 +639342.907|219629.392|101.112 +639347.278|219625.399|101.075 +639351.603|219621.443|101.267 +639355.931|219617.486|101.456 +639360.253|219613.536|101.703 +639364.462|219609.693|102.245 +639368.745|219605.776|102.450 +639367.629|219604.154|102.507 +639363.411|219607.998|102.227 +639359.174|219611.857|101.794 +639354.895|219615.755|101.581 +639350.579|219619.687|101.319 +639346.308|219623.576|101.087 +639341.938|219627.563|101.115 +639337.515|219631.593|101.151 +639333.120|219635.604|101.337 +639328.642|219639.688|101.441 +639324.256|219643.687|101.621 +639319.827|219647.729|101.782 +639315.331|219651.831|102.035 +639310.854|219655.916|102.215 +639306.361|219660.012|102.486 +639301.890|219664.090|102.675 +639297.382|219668.205|102.818 +639292.886|219672.305|102.910 +639288.408|219676.386|102.928 +639283.986|219680.419|102.940 +639279.499|219684.509|102.776 +639274.958|219688.651|102.913 +639270.456|219692.754|102.858 +639265.948|219696.866|102.864 +639261.476|219700.938|102.675 +639256.935|219705.080|102.626 +639252.415|219709.198|102.468 +639247.900|219713.313|102.297 +639243.414|219717.400|101.986 +639238.909|219721.506|101.797 +639234.389|219725.624|101.428 +639229.871|219729.738|101.047 +639225.315|219733.887|100.612 +639220.828|219737.974|100.093 +639216.271|219742.122|99.688 +639211.711|219746.277|99.319 +639207.200|219750.383|98.682 +639202.604|219754.567|98.249 +639197.959|219758.804|98.134 +639188.669|219767.268|97.664 +639165.126|219788.736|97.664 +639160.423|219793.021|97.445 +639155.695|219797.328|97.058 +639141.421|219810.340|96.963 +639136.737|219814.610|96.719 +639127.132|219823.364|96.488 +639122.371|219827.704|96.472 +639098.198|219849.751|96.860 +639093.315|219854.210|97.155 +639083.454|219863.211|98.140 +639073.564|219872.242|99.130 +639068.605|219876.771|99.764 +639058.677|219885.839|101.230 +639053.669|219890.414|101.986 +639048.686|219894.965|102.581 +639043.745|219899.476|102.888 +639038.777|219904.005|103.017 +639033.812|219908.537|103.169 +639028.910|219913.006|103.209 +639023.966|219917.517|103.254 +639018.977|219922.065|103.254 +639014.030|219926.576|103.358 +639009.025|219931.145|103.571 +639004.066|219935.671|103.833 +638999.061|219940.237|104.086 +638994.066|219944.793|104.300 +638989.012|219949.405|104.626 +638983.998|219953.980|105.053 +638978.996|219958.549|105.434 +638973.940|219963.164|105.885 +638968.880|219967.785|106.409 +638963.872|219972.354|106.479 +638958.882|219976.904|106.842 +638953.786|219981.562|107.372 +638948.781|219986.124|107.482 +638943.761|219990.709|107.799 +638938.781|219995.247|107.713 +638933.764|219999.822|107.564 +638928.744|220004.397|107.430 +638923.800|220008.905|107.052 +638918.761|220013.493|106.641 +638913.830|220017.985|106.132 +638908.807|220022.560|105.586 +638903.814|220027.111|105.251 +638898.748|220031.729|105.184 +638893.686|220036.343|105.141 +638888.669|220040.918|105.153 +638883.591|220045.554|105.354 +638878.528|220050.172|105.394 +638873.471|220054.784|105.376 +638868.381|220059.429|105.808 +638858.262|220068.661|106.013 +638853.150|220073.325|106.208 +638848.093|220077.936|106.345 +638842.982|220082.603|106.641 +638827.693|220096.560|107.710 +638822.630|220101.181|108.125 +638817.525|220105.844|108.515 +638812.441|220110.483|108.619 +638807.348|220115.134|108.905 +638802.255|220119.783|109.216 +638797.219|220124.382|109.439 +638792.080|220129.073|109.795 +638786.999|220133.712|110.033 +638781.970|220138.302|110.219 +638776.843|220142.981|110.490 +638771.762|220147.620|110.813 +638766.684|220152.259|111.203 +638761.576|220156.919|111.219 +638756.516|220161.537|111.289 +638751.456|220166.155|111.377 +638746.345|220170.818|111.533 +638741.297|220175.424|111.435 +638736.186|220180.087|111.670 +638731.135|220184.696|111.691 +638726.036|220189.350|111.783 +638720.915|220194.029|112.401 +638715.831|220198.680|113.489 +638710.702|220203.371|114.520 +638705.611|220208.019|114.620 +638700.524|220212.655|114.526 +638695.443|220217.291|114.352 +638690.374|220221.909|113.791 +638685.351|220226.484|113.215 +638680.200|220231.193|113.913 +638675.095|220235.863|114.779 +638670.056|220240.459|114.913 +638664.966|220245.107|115.309 +638659.870|220249.765|116.044 +638654.786|220254.407|116.291 +638649.714|220259.031|116.044 +638644.639|220263.661|115.958 +638639.558|220268.300|116.251 +638634.477|220272.939|116.510 +638629.402|220277.572|116.678 +638624.373|220282.162|116.922 +638619.249|220286.841|117.138 +638614.223|220291.428|117.367 +638609.148|220296.061|117.680 +638604.073|220300.694|118.052 +638599.004|220305.324|118.272 +638593.932|220309.954|118.494 +638588.864|220314.581|118.802 +638583.844|220319.168|119.140 +638578.732|220323.834|119.540 +638573.663|220328.464|120.040 +638568.646|220333.045|120.527 +638563.535|220337.715|120.802 +638558.469|220342.336|120.997 +638553.406|220346.960|121.161 +638548.346|220351.583|121.667 +638543.284|220356.204|122.021 +638538.227|220360.825|122.496 +638533.167|220365.446|122.984 +638528.108|220370.064|123.155 +638523.051|220374.681|123.484 +638517.988|220379.302|123.609 +638512.983|220383.874|123.999 +638507.878|220388.534|124.334 +638502.873|220393.106|124.709 +638497.862|220397.681|124.868 +638492.803|220402.296|125.044 +638487.746|220406.914|125.200 +638482.738|220411.486|125.505 +638477.678|220416.104|125.642 +638472.674|220420.676|125.956 +638467.620|220425.290|126.309 +638462.612|220429.862|126.559 +638457.601|220434.434|126.730 +638452.554|220439.046|127.157 +638447.555|220443.612|127.647 +638442.547|220448.187|127.885 +638437.548|220452.753|128.312 +638432.550|220457.322|128.748 +638427.548|220461.891|129.120 +638422.497|220466.502|129.516 +638417.502|220471.068|130.004 +638412.494|220475.640|130.211 +638407.483|220480.218|130.357 +638402.515|220484.754|130.436 +638397.507|220489.326|130.668 +638392.490|220493.904|130.787 +638387.500|220498.458|130.446 +638382.483|220503.036|130.604 +638372.464|220512.180|130.284 +638367.475|220516.731|130.104 +638362.485|220521.284|129.970 +638357.441|220525.884|129.741 +638322.562|220557.702|128.257 +638317.594|220562.234|127.961 +638307.578|220571.369|127.062 +638282.618|220594.119|124.331 +638262.620|220612.340|121.228 +638257.682|220616.845|121.146 +638252.757|220621.344|121.231 +638247.798|220625.864|120.963 +638242.842|220630.388|120.750 +638237.898|220634.899|120.686 +638233.015|220639.358|120.796 +638218.199|220652.873|119.988 +638198.551|220670.804|119.710 +638183.970|220684.115|119.832 +638135.585|220728.287|120.421 +638130.824|220732.639|121.113 +638126.164|220736.903|122.240 +638121.415|220741.250|123.030 +638116.636|220745.611|123.188 +638111.863|220749.973|123.417 +638107.099|220754.326|123.722 +638102.408|220758.611|124.258 +638092.895|220767.301|124.694 +638088.101|220771.678|124.831 +638078.594|220780.359|125.057 +638073.821|220784.714|125.069 +638054.960|220801.939|125.852 +638050.296|220806.200|126.005 +638045.639|220810.452|126.230 +638040.927|220814.755|126.450 +638036.288|220818.992|126.837 +638031.594|220823.278|126.867 +638003.732|220848.725|128.086 +637999.123|220852.935|128.477 +637989.818|220861.430|128.406 +637985.279|220865.578|128.964 +637980.689|220869.772|129.205 +637976.022|220874.027|129.001 +637971.405|220878.245|129.107 +637966.814|220882.433|129.110 +637962.224|220886.624|129.129 +637957.661|220890.794|129.613 +637953.135|220894.927|129.744 +637948.523|220899.136|129.696 +637943.887|220903.367|129.501 +637939.321|220907.534|129.464 +637934.737|220911.716|129.333 +637930.122|220915.925|129.053 +637925.480|220920.158|128.632 +637920.914|220924.325|128.394 +637916.352|220928.486|128.193 +637907.171|220936.859|127.544 +637902.623|220941.007|127.212 +637898.057|220945.170|126.803 +637893.427|220949.389|126.069 +637888.810|220953.598|125.425 +637879.769|220961.843|124.718 +637875.213|220965.994|124.218 +637870.634|220970.167|123.618 +637866.081|220974.319|123.176 +637852.602|220986.611|122.124 +637848.076|220990.735|121.393 +637843.544|220994.868|120.911 +637838.993|220999.017|120.360 +637834.543|221003.070|119.835 +637830.050|221007.167|119.372 +637825.670|221011.163|119.229 +637821.278|221015.171|119.046 +637817.002|221019.078|119.433 +637786.945|221046.523|120.320 +637782.730|221050.375|120.631 +637778.502|221054.234|120.658 +637774.366|221058.014|121.125 +637757.715|221073.223|121.899 +637745.483|221084.400|123.146 +637741.298|221088.216|123.027 +637737.187|221091.972|123.011 +637732.983|221095.803|122.615 +637728.924|221099.512|122.856 +637724.925|221103.164|123.158 +637708.612|221118.053|123.112 +637668.994|221154.215|123.588 +637657.039|221165.112|122.262 +637649.221|221172.244|121.926 +637641.522|221179.266|121.701 +637618.997|221199.825|121.682 +637611.767|221206.430|122.438 +637608.107|221209.771|122.341 +637604.458|221213.099|122.304 +637600.816|221216.425|122.509 +637597.332|221219.610|122.917 +637593.790|221222.841|123.121 +637590.236|221226.090|123.484 +637579.696|221235.716|124.075 +637576.246|221238.867|124.456 +637572.799|221242.016|124.663 +637569.385|221245.140|125.194 +637784.525|221046.608|120.207 +637788.796|221042.701|120.168 +637793.029|221038.823|119.973 +637818.721|221015.308|119.268 +637823.025|221011.367|119.019 +637827.459|221007.310|119.189 +637836.396|220999.148|120.152 +637840.880|220995.048|120.619 +637845.403|220990.915|121.058 +637849.960|220986.751|121.686 +637863.533|220974.349|122.941 +637867.989|220970.274|123.142 +637872.555|220966.104|123.676 +637877.139|220961.913|124.069 +637900.157|220940.885|126.888 +637904.769|220936.670|127.294 +637909.362|220932.472|127.617 +637913.950|220928.278|127.946 +637918.577|220924.048|128.239 +637923.152|220919.866|128.525 +637927.785|220915.632|128.894 +637932.415|220911.399|129.281 +637937.060|220907.153|129.461 +637941.616|220902.983|129.458 +637946.234|220898.758|129.537 +637950.843|220894.540|129.598 +637955.430|220890.346|129.528 +637959.969|220886.188|129.199 +637964.647|220881.906|129.114 +637969.265|220877.681|128.989 +637973.816|220873.515|128.769 +637978.610|220869.132|129.150 +637983.207|220864.923|128.958 +637987.833|220860.686|128.653 +637997.191|220852.124|128.422 +638001.815|220847.890|128.147 +638006.533|220843.568|127.855 +638011.163|220839.331|127.644 +638015.942|220834.961|127.782 +638039.445|220813.442|126.489 +638044.136|220809.144|126.154 +638048.851|220804.828|125.995 +638067.859|220787.430|125.172 +638072.632|220783.056|124.810 +638082.258|220774.253|125.066 +638087.031|220769.883|124.764 +638091.822|220765.500|124.596 +638106.224|220752.311|123.691 +638110.994|220747.943|123.441 +638115.813|220743.533|123.185 +638130.184|220730.359|121.049 +638144.541|220717.195|118.427 +638183.966|220681.134|119.525 +638188.874|220676.644|119.454 +638193.869|220672.075|119.817 +638218.552|220649.489|119.488 +638233.521|220635.804|120.439 +638238.535|220631.220|120.722 +638243.503|220626.678|121.088 +638248.496|220622.109|121.213 +638253.470|220617.559|121.149 +638258.445|220613.005|121.109 +638268.573|220603.754|122.691 +638273.614|220599.152|123.548 +638283.673|220589.959|124.532 +638288.720|220585.347|124.993 +638319.018|220557.662|128.300 +638354.268|220525.426|129.650 +638359.312|220520.815|129.888 +638364.357|220516.206|130.116 +638369.349|220511.640|130.372 +638384.477|220497.799|130.525 +638389.503|220493.203|130.607 +638394.581|220488.561|130.811 +638399.589|220483.977|130.586 +638404.645|220479.347|130.378 +638409.659|220474.759|130.299 +638414.667|220470.175|130.113 +638419.715|220465.558|129.680 +638424.759|220460.937|129.217 +638429.806|220456.313|128.897 +638434.805|220451.735|128.473 +638439.853|220447.114|128.059 +638444.903|220442.490|127.727 +638449.951|220437.869|127.291 +638454.995|220433.246|126.834 +638460.098|220428.576|126.562 +638465.151|220423.949|126.379 +638470.202|220419.325|125.974 +638475.255|220414.702|125.669 +638480.309|220410.075|125.425 +638485.362|220405.448|125.169 +638490.468|220400.775|125.020 +638495.521|220396.148|124.813 +638500.578|220391.521|124.590 +638505.680|220386.852|124.359 +638510.731|220382.225|123.947 +638515.788|220377.595|123.618 +638520.893|220372.923|123.444 +638525.947|220368.296|123.179 +638531.006|220363.666|122.914 +638536.109|220358.990|122.472 +638541.165|220354.360|121.926 +638546.222|220349.727|121.573 +638551.330|220345.052|121.158 +638556.393|220340.419|120.960 +638561.453|220335.786|120.753 +638566.564|220331.107|120.521 +638571.578|220326.514|120.091 +638576.693|220321.829|119.491 +638582.283|220316.711|119.046 +638586.867|220312.511|118.723 +638591.933|220307.872|118.464 +638597.051|220303.190|118.202 +638602.071|220298.594|117.964 +638607.191|220293.906|117.665 +638612.263|220289.264|117.336 +638617.335|220284.619|117.080 +638622.456|220279.931|116.830 +638627.531|220275.286|116.638 +638632.602|220270.641|116.446 +638637.729|220265.950|116.114 +638642.807|220261.305|115.983 +638647.873|220256.672|116.379 +638652.948|220252.026|116.345 +638658.032|220247.372|115.955 +638663.113|220242.721|115.696 +638668.212|220238.045|114.843 +638673.245|220233.440|114.788 +638678.362|220228.743|113.419 +638683.477|220224.055|112.374 +638688.500|220219.462|112.813 +638693.569|220214.829|113.304 +638698.638|220210.199|113.889 +638703.658|220205.608|114.370 +638708.687|220201.015|114.712 +638713.814|220196.312|113.581 +638718.901|220191.648|112.453 +638724.015|220186.964|111.844 +638729.060|220182.349|111.883 +638734.107|220177.731|111.898 +638739.164|220173.107|111.752 +638744.214|220168.487|111.709 +638749.274|220163.860|111.581 +638754.334|220159.230|111.435 +638759.384|220154.609|111.478 +638764.398|220150.025|111.402 +638769.470|220145.383|111.112 +638774.509|220140.768|110.612 +638779.568|220136.141|110.624 +638784.600|220131.533|110.292 +638789.678|220126.887|110.067 +638794.720|220122.273|109.686 +638799.752|220117.664|109.460 +638804.809|220113.034|108.917 +638809.798|220108.471|108.725 +638814.892|220103.811|108.451 +638819.878|220099.245|108.332 +638824.941|220094.612|107.863 +638829.994|220089.985|107.570 +638834.996|220085.407|107.329 +638840.035|220080.792|106.650 +638845.097|220076.147|105.629 +638850.062|220071.612|106.058 +638855.083|220067.019|105.744 +638860.093|220062.434|105.589 +638865.077|220057.878|105.818 +638875.056|220048.746|105.540 +638880.052|220044.174|105.092 +638885.057|220039.596|105.153 +638890.010|220035.063|105.248 +638894.984|220030.516|105.171 +638899.958|220025.965|105.074 +638904.911|220021.436|105.257 +638909.852|220016.918|105.598 +638914.720|220012.474|106.229 +638919.652|220007.966|106.702 +638924.550|220003.492|107.022 +638929.497|219998.972|107.369 +638934.407|219994.482|107.592 +638939.342|219989.968|107.576 +638944.298|219985.433|107.387 +638949.242|219980.909|107.342 +638954.155|219976.414|107.128 +638959.120|219971.863|106.442 +638964.101|219967.303|106.110 +638969.017|219962.804|105.973 +638973.976|219958.266|105.470 +638978.929|219953.730|105.046 +638983.876|219949.201|104.711 +638988.792|219944.699|104.251 +638993.681|219940.225|104.065 +638998.616|219935.707|103.931 +639003.530|219931.209|103.577 +639008.431|219926.725|103.376 +639013.283|219922.284|103.181 +639018.236|219917.752|103.017 +639023.080|219913.320|102.956 +639027.926|219908.888|102.907 +639032.787|219904.438|102.748 +639037.664|219899.973|102.483 +639042.553|219895.498|102.169 +639047.454|219891.008|101.776 +639062.201|219877.500|99.722 +639067.074|219873.034|99.277 +639076.788|219864.143|98.771 +639091.382|219850.778|96.960 +639110.746|219833.057|95.665 +639115.391|219828.817|96.430 +639120.146|219824.467|96.436 +639129.562|219815.860|96.814 +639134.295|219811.532|97.027 +639139.010|219807.222|97.058 +639143.796|219802.842|96.637 +639148.462|219798.578|97.024 +639153.050|219794.390|97.622 +639157.762|219790.080|97.731 +639171.700|219777.342|98.515 +639176.403|219773.038|98.451 +639181.067|219768.774|98.341 +639185.733|219764.504|98.240 +639190.378|219760.255|98.280 +639194.960|219756.073|98.743 +639199.562|219751.864|98.777 +639204.168|219747.652|99.109 +639208.697|219743.515|99.612 +639213.235|219739.370|100.084 +639217.740|219735.255|100.471 +639222.279|219731.110|100.956 +639226.823|219726.959|101.432 +639231.335|219722.838|101.825 +639235.830|219718.726|102.017 +639240.363|219714.587|102.322 +639244.886|219710.451|102.675 +639249.394|219706.333|102.861 +639253.856|219702.248|103.017 +639258.386|219698.109|103.114 +639262.918|219693.967|103.227 +639267.411|219689.858|103.279 +639271.931|219685.722|103.209 +639276.387|219681.647|103.215 +639280.886|219677.532|103.300 +639285.342|219673.457|103.352 +639289.847|219669.336|103.163 +639294.294|219665.267|103.029 +639298.805|219661.137|102.855 +639303.286|219657.037|102.593 +639307.760|219652.941|102.373 +639312.253|219648.829|102.096 +639316.731|219644.733|101.916 +639321.162|219640.676|101.724 +639325.582|219636.634|101.614 +639330.014|219632.577|101.456 +639334.382|219628.584|101.389 +639338.755|219624.582|101.310 +639343.114|219620.595|101.316 +639347.451|219616.627|101.435 +639351.749|219612.701|101.773 +639355.989|219608.827|102.154 +639360.259|219604.926|102.407 +639364.523|219601.027|102.687 +639366.029|219596.937|102.885 +639361.713|219600.875|102.578 +639357.379|219604.831|102.376 +639353.008|219608.821|102.120 +639348.677|219612.774|101.688 +639344.358|219616.718|101.462 +639339.950|219620.742|101.425 +639335.488|219624.817|101.410 +639331.062|219628.859|101.502 +639326.612|219632.928|101.489 +639322.125|219637.027|101.666 +639317.596|219641.166|101.816 +639313.113|219645.260|102.008 +639308.577|219649.405|102.230 +639304.051|219653.544|102.434 +639299.506|219657.699|102.751 +639294.928|219661.884|103.001 +639290.365|219666.053|103.184 +639285.857|219670.174|103.373 +639281.261|219674.374|103.516 +639276.771|219678.474|103.388 +639272.224|219682.628|103.309 +639267.652|219686.804|103.367 +639263.125|219690.940|103.489 +639258.611|219695.064|103.294 +639254.024|219699.252|103.227 +639249.449|219703.431|103.108 +639244.932|219707.555|102.974 +639240.427|219711.664|102.501 +639235.861|219715.836|102.389 +639231.274|219720.021|102.126 +639226.763|219724.139|101.745 +639222.251|219728.254|101.358 +639217.646|219732.457|100.959 +639213.117|219736.590|100.423 +639208.581|219740.729|99.941 +639203.994|219744.914|99.469 +639199.385|219749.121|99.155 +639194.804|219753.303|98.978 +639190.193|219757.515|98.701 +639185.502|219761.800|98.621 +639180.850|219766.049|98.627 +639176.135|219770.359|98.740 +639171.429|219774.660|98.813 +639166.753|219778.930|98.719 +639162.114|219783.164|98.414 +639157.436|219787.437|98.051 +639133.923|219808.904|96.957 +639119.640|219821.950|96.564 +639056.495|219879.685|100.063 +639046.616|219888.725|101.322 +639041.700|219893.221|101.800 +639036.713|219897.781|102.117 +639031.827|219902.249|102.428 +639026.859|219906.791|102.654 +639021.952|219911.275|102.782 +639017.051|219915.755|102.910 +639012.098|219920.281|103.071 +639007.148|219924.808|103.248 +639002.195|219929.337|103.489 +638997.199|219933.903|103.675 +638992.249|219938.429|103.943 +638987.256|219942.992|104.175 +638982.300|219947.525|104.544 +638977.265|219952.130|104.797 +638972.294|219956.678|105.370 +638967.228|219961.314|105.973 +638962.263|219965.852|106.107 +638957.246|219970.436|106.290 +638952.226|219975.033|107.037 +638947.172|219979.650|107.186 +638942.182|219984.210|107.195 +638937.187|219988.779|107.326 +638932.194|219993.339|107.415 +638927.186|219997.911|107.180 +638922.197|220002.468|106.778 +638917.262|220006.973|106.333 +638912.284|220011.514|105.836 +638907.316|220016.050|105.248 +638902.263|220020.664|105.083 +638897.252|220025.243|104.982 +638892.213|220029.848|105.242 +638887.166|220034.460|105.086 +638882.161|220039.032|104.992 +638877.062|220043.695|105.513 +638866.915|220052.967|105.394 +638856.786|220062.227|105.772 +638851.675|220066.900|106.019 +638846.566|220071.569|106.211 +638841.525|220076.175|106.211 +638836.371|220080.899|107.186 +638831.272|220085.557|107.360 +638826.169|220090.223|107.671 +638821.009|220094.941|108.143 +638815.958|220099.556|108.457 +638810.826|220104.247|108.594 +638805.732|220108.898|108.881 +638800.633|220113.559|109.314 +638795.497|220118.256|109.640 +638790.361|220122.946|109.948 +638785.271|220127.601|110.408 +638780.144|220132.285|110.655 +638775.018|220136.970|110.957 +638769.915|220141.628|110.838 +638764.788|220146.315|111.267 +638759.710|220150.958|111.679 +638754.608|220155.618|111.691 +638749.454|220160.324|111.749 +638744.400|220164.939|111.786 +638739.298|220169.599|111.880 +638734.144|220174.308|112.090 +638729.096|220178.920|112.103 +638723.957|220183.611|111.972 +638718.855|220188.271|112.203 +638713.728|220192.965|113.157 +638708.547|220197.714|114.440 +638703.463|220202.353|114.297 +638698.418|220206.946|113.032 +638693.304|220211.610|112.423 +638677.993|220225.594|112.636 +638672.809|220230.352|114.675 +638667.725|220234.994|114.724 +638662.589|220239.691|115.205 +638657.502|220244.342|115.611 +638652.366|220249.039|116.184 +638647.236|220253.727|116.486 +638642.164|220258.354|116.324 +638637.095|220262.984|116.126 +638631.969|220267.666|116.303 +638626.894|220272.305|116.568 +638621.773|220276.983|116.699 +638616.698|220281.620|117.034 +638611.577|220286.298|117.211 +638606.505|220290.934|117.586 +638601.385|220295.613|117.888 +638596.316|220300.246|118.086 +638591.247|220304.876|118.348 +638586.133|220309.551|118.625 +638581.070|220314.178|118.894 +638576.004|220318.808|119.336 +638570.941|220323.441|119.924 +638565.876|220328.068|120.347 +638560.813|220332.695|120.591 +638555.704|220337.364|120.860 +638550.690|220341.946|121.018 +638545.582|220346.615|121.317 +638540.522|220351.239|121.689 +638535.466|220355.863|122.188 +638530.412|220360.487|122.694 +638525.355|220365.107|123.008 +638520.344|220369.686|123.292 +638515.242|220374.349|123.499 +638510.185|220378.967|123.819 +638505.181|220383.542|124.209 +638500.127|220388.163|124.459 +638495.070|220392.780|124.663 +638490.059|220397.358|124.764 +638485.006|220401.976|125.035 +638480.001|220406.551|125.261 +638474.944|220411.172|125.468 +638469.943|220415.744|125.867 +638464.944|220420.316|126.294 +638459.887|220424.934|126.428 +638454.879|220429.509|126.678 +638449.929|220434.035|127.102 +638444.882|220438.647|127.541 +638439.883|220443.219|127.910 +638434.930|220447.742|128.309 +638429.886|220452.354|128.693 +638424.936|220456.880|129.089 +638419.937|220461.446|129.488 +638414.990|220465.969|129.961 +638409.985|220470.541|130.223 +638405.020|220475.073|130.263 +638400.012|220479.648|130.442 +638395.056|220484.178|130.744 +638390.036|220488.762|130.708 +638385.107|220493.261|130.616 +638380.078|220497.851|130.442 +638370.130|220506.934|130.482 +638365.094|220511.531|130.305 +638360.150|220516.042|130.046 +638355.155|220520.598|129.818 +638350.156|220525.161|129.507 +638340.232|220534.223|129.458 +638335.288|220538.737|129.360 +638325.339|220547.814|129.092 +638315.342|220556.934|128.208 +638310.358|220561.481|127.681 +638280.518|220588.694|124.395 +638250.715|220615.873|121.201 +638245.829|220620.332|121.192 +638240.885|220624.846|121.061 +638235.959|220629.339|120.652 +638216.245|220647.325|119.159 +638211.380|220651.769|119.534 +638153.020|220705.055|119.342 +638148.195|220709.465|119.393 +638133.824|220722.593|120.168 +638129.124|220726.894|120.942 +638119.705|220735.507|122.344 +638110.284|220744.121|123.353 +638105.520|220748.477|123.642 +638086.628|220765.737|124.740 +638072.352|220778.777|124.898 +638067.655|220783.071|125.084 +638062.918|220787.396|124.996 +638044.185|220804.520|126.011 +638039.531|220808.775|126.258 +638016.250|220830.053|127.285 +638006.926|220838.573|127.550 +637997.730|220846.982|128.047 +637993.164|220851.155|128.385 +637970.225|220872.122|129.235 +637965.598|220876.343|128.986 +637961.032|220880.516|129.120 +637956.460|220884.692|129.245 +637951.907|220888.855|129.479 +637947.325|220893.037|129.281 +637942.802|220897.173|129.437 +637938.251|220901.331|129.455 +637933.682|220905.504|129.391 +637929.147|220909.646|129.239 +637924.560|220913.831|128.815 +637919.924|220918.061|128.443 +637915.358|220922.231|128.187 +637910.786|220926.404|127.922 +637901.624|220934.765|127.096 +637897.045|220938.940|126.590 +637892.501|220943.089|126.291 +637883.339|220951.446|125.096 +637878.782|220955.604|124.532 +637874.222|220959.767|124.246 +637865.203|220967.997|123.203 +637860.695|220972.112|122.990 +637842.639|220988.583|120.942 +637838.128|220992.698|120.299 +637833.729|220996.712|120.003 +637824.856|221004.811|119.339 +637820.406|221008.874|119.101 +637811.796|221016.741|119.339 +637807.474|221020.691|119.268 +637803.109|221024.675|119.015 +637798.927|221028.500|119.665 +637781.916|221044.048|120.268 +637773.519|221051.726|120.802 +637769.371|221055.517|121.210 +637765.173|221059.355|121.390 +637752.725|221070.733|121.981 +637748.684|221074.433|122.682 +637744.590|221078.173|122.947 +637740.451|221081.956|123.005 +637736.306|221085.748|123.048 +637732.185|221089.515|122.987 +637728.088|221093.261|123.045 +637723.961|221097.031|122.996 +637719.856|221100.783|122.826 +637699.699|221119.215|123.103 +637675.967|221140.916|123.508 +637632.841|221180.315|120.607 +637629.095|221183.741|120.924 +637621.768|221190.443|121.417 +637607.201|221203.772|122.216 +637603.538|221207.119|122.106 +637599.956|221210.399|122.320 +637592.888|221216.867|122.932 +637585.999|221223.173|123.853 +637578.898|221229.665|123.603 +637572.073|221235.911|124.429 +637568.708|221238.992|124.727 +637561.865|221245.253|125.136 +637778.893|221045.075|120.433 +637791.557|221033.465|120.125 +637795.785|221029.585|119.671 +637799.945|221025.769|119.150 +637804.148|221021.913|118.851 +637808.516|221017.914|119.110 +637817.176|221009.983|119.314 +637821.467|221006.048|119.009 +637825.905|221001.985|119.442 +637830.383|220997.889|119.829 +637839.194|220989.821|120.479 +637852.782|220977.391|122.466 +637857.263|220973.288|122.765 +637866.191|220965.114|123.234 +637870.711|220960.974|123.527 +637879.885|220952.583|124.886 +637884.384|220948.462|124.865 +637889.014|220944.232|125.840 +637893.623|220940.016|126.459 +637898.134|220935.883|126.572 +637902.794|220931.619|127.257 +637907.354|220927.446|127.675 +637911.944|220923.243|128.016 +637916.574|220919.003|128.327 +637921.131|220914.831|128.525 +637925.803|220910.554|129.126 +637930.375|220906.369|129.159 +637934.969|220902.160|129.354 +637939.568|220897.945|129.309 +637944.098|220893.793|128.858 +637953.388|220885.286|129.403 +637957.914|220881.135|128.989 +637962.507|220876.923|129.013 +637967.168|220872.655|128.845 +637990.293|220851.469|128.467 +637994.954|220847.195|128.105 +638041.762|220804.298|126.029 +638046.507|220799.948|125.752 +638056.011|220791.240|125.337 +638060.714|220786.930|125.148 +638065.524|220782.523|125.063 +638075.076|220773.769|124.779 +638079.850|220769.395|124.840 +638084.638|220765.009|124.657 +638103.828|220747.422|123.606 +638108.641|220743.011|123.316 +638113.442|220738.607|122.969 +638118.215|220734.227|122.384 +638127.743|220725.488|121.085 +638132.498|220721.121|119.970 +638142.005|220712.391|118.129 +638151.911|220703.329|119.372 +638161.832|220694.256|120.436 +638176.423|220680.881|119.390 +638181.312|220676.397|119.168 +638205.991|220653.793|119.137 +638210.883|220649.313|119.043 +638215.916|220644.710|119.945 +638235.801|220626.504|120.759 +638240.864|220621.871|121.125 +638245.801|220617.348|121.201 +638250.785|220612.785|121.286 +638260.874|220603.562|122.917 +638265.848|220599.005|122.993 +638311.032|220557.671|127.876 +638346.148|220525.524|129.543 +638351.183|220520.912|129.687 +638356.173|220516.343|129.885 +638361.211|220511.732|130.122 +638366.249|220507.120|130.378 +638381.325|220493.313|130.692 +638386.336|220488.722|130.549 +638391.411|220484.074|130.808 +638396.370|220479.533|130.638 +638401.420|220474.903|130.354 +638406.428|220470.315|130.272 +638411.436|220465.725|130.193 +638416.481|220461.101|129.790 +638421.470|220456.526|129.272 +638426.518|220451.899|129.016 +638431.513|220447.318|128.605 +638436.552|220442.697|128.096 +638441.547|220438.116|127.742 +638446.595|220433.493|127.422 +638451.588|220428.914|126.879 +638456.635|220424.288|126.572 +638461.686|220419.658|126.425 +638466.687|220415.073|126.114 +638471.729|220410.450|125.621 +638476.776|220405.823|125.233 +638481.830|220401.193|125.127 +638486.877|220396.566|124.782 +638491.931|220391.936|124.633 +638496.981|220387.306|124.462 +638502.035|220382.676|124.307 +638507.086|220378.046|123.996 +638512.133|220373.416|123.664 +638517.184|220368.786|123.283 +638522.237|220364.156|123.115 +638527.291|220359.523|122.737 +638532.390|220354.848|122.304 +638537.395|220350.258|121.789 +638542.494|220345.582|121.353 +638547.551|220340.946|121.103 +638552.608|220336.310|120.774 +638557.667|220331.677|120.677 +638562.724|220327.038|120.341 +638567.784|220322.402|120.064 +638572.843|220317.763|119.567 +638577.955|220313.075|119.058 +638582.963|220308.485|118.799 +638588.025|220303.843|118.458 +638593.091|220299.200|118.138 +638598.157|220294.558|117.860 +638603.220|220289.916|117.757 +638608.289|220285.268|117.345 +638613.357|220280.623|117.031 +638618.426|220275.978|116.854 +638623.495|220271.332|116.608 +638628.567|220266.684|116.394 +638633.636|220262.039|116.269 +638638.702|220257.400|116.537 +638643.722|220252.804|116.617 +638648.848|220248.104|116.245 +638653.878|220243.492|115.861 +638658.965|220238.826|115.218 +638664.049|220234.162|114.794 +638669.075|220229.560|114.818 +638674.193|220224.856|113.346 +638699.503|220201.667|113.176 +638704.487|220197.120|114.678 +638709.559|220192.462|113.691 +638714.630|220187.802|112.694 +638719.690|220183.163|112.231 +638724.732|220178.542|112.206 +638729.767|220173.927|112.337 +638734.814|220169.300|112.255 +638739.868|220164.668|112.069 +638744.915|220160.044|112.045 +638749.917|220155.456|111.965 +638754.919|220150.875|111.969 +638759.991|220146.221|111.551 +638765.008|220141.622|111.274 +638770.052|220137.001|111.453 +638775.078|220132.389|111.082 +638780.102|220127.784|110.853 +638785.131|220123.172|110.521 +638790.166|220118.554|110.137 +638795.211|220113.924|109.634 +638800.203|220109.346|109.237 +638805.245|220104.719|108.847 +638810.283|220100.099|108.588 +638815.327|220095.475|108.287 +638820.369|220090.848|108.009 +638825.325|220086.303|107.656 +638830.385|220081.664|107.235 +638835.432|220077.034|106.988 +638840.480|220072.401|106.153 +638845.478|220067.817|106.010 +638850.465|220063.248|106.089 +638855.500|220058.627|105.513 +638860.432|220054.107|105.705 +638865.485|220049.471|104.992 +638870.496|220044.875|104.858 +638875.413|220040.376|105.324 +638880.439|220035.767|105.071 +638885.425|220031.192|104.729 +638890.415|220026.620|104.943 +638900.297|220017.568|104.925 +638905.262|220013.017|104.943 +638910.145|220008.546|105.360 +638915.080|220004.025|105.751 +638920.008|219999.514|106.208 +638924.870|219995.064|106.884 +638929.786|219990.562|107.012 +638934.767|219985.996|106.967 +638939.668|219981.501|106.790 +638944.645|219976.941|106.857 +638949.555|219972.436|106.616 +638954.554|219967.852|106.046 +638959.526|219963.292|105.781 +638964.500|219958.732|105.513 +638969.465|219954.172|104.885 +638974.476|219949.573|104.333 +638979.341|219945.117|104.281 +638984.333|219940.535|103.949 +638989.237|219936.037|103.596 +638994.215|219931.474|103.480 +638999.110|219926.987|103.260 +639004.100|219922.409|103.077 +639008.952|219917.962|102.870 +639013.905|219913.417|102.645 +639018.812|219908.918|102.428 +639023.732|219904.407|102.145 +639028.651|219899.896|101.889 +639033.586|219895.367|101.523 +639038.490|219890.868|101.041 +639048.323|219881.846|100.008 +639053.221|219877.350|99.667 +639087.341|219846.053|97.222 +639101.980|219832.621|96.000 +639116.278|219819.520|96.360 +639125.749|219810.846|96.991 +639130.531|219806.463|96.856 +639144.619|219793.561|97.945 +639149.291|219789.278|98.268 +639153.982|219784.983|98.505 +639158.649|219780.710|98.905 +639163.276|219776.470|99.243 +639168.006|219772.136|99.280 +639172.654|219767.872|99.207 +639177.354|219763.565|99.167 +639182.048|219759.264|99.179 +639186.700|219755.000|99.164 +639191.308|219750.779|99.420 +639195.895|219746.576|99.816 +639200.507|219742.351|100.087 +639205.073|219738.169|100.362 +639209.617|219734.009|100.764 +639214.205|219729.808|101.227 +639218.701|219725.691|101.648 +639223.193|219721.579|102.099 +639227.750|219717.403|102.483 +639232.273|219713.261|102.800 +639236.760|219709.149|103.035 +639241.292|219705.001|103.330 +639245.788|219700.880|103.553 +639250.369|219696.680|103.602 +639254.896|219692.531|103.693 +639259.367|219688.435|103.827 +639263.851|219684.323|103.897 +639268.414|219680.141|103.849 +639272.922|219676.008|103.836 +639277.442|219671.863|103.779 +639281.928|219667.751|103.657 +639286.442|219663.609|103.410 +639291.005|219659.424|103.184 +639295.541|219655.260|102.858 +639300.030|219651.142|102.535 +639304.487|219647.055|102.401 +639308.970|219642.943|102.160 +639313.405|219638.874|101.913 +639317.864|219634.787|101.828 +639322.296|219630.721|101.636 +639326.749|219626.640|101.621 +639331.090|219622.656|101.654 +639335.442|219618.669|101.663 +639339.776|219614.697|101.782 +639344.123|219610.714|101.846 +639348.363|219606.828|102.191 +639352.599|219602.947|102.568 +639356.888|219599.015|102.703 +639361.170|219595.093|102.892 +639361.237|219592.852|102.828 +639356.928|219596.787|102.770 +639352.596|219600.741|102.581 +639348.235|219604.724|102.309 +639343.958|219608.623|101.883 +639339.575|219612.628|101.742 +639335.186|219616.636|101.645 +639330.797|219620.644|101.569 +639326.387|219624.671|101.605 +639321.894|219628.776|101.566 +639317.428|219632.854|101.654 +639312.963|219636.936|101.773 +639308.480|219641.032|101.998 +639303.944|219645.178|102.251 +639299.427|219649.308|102.440 +639294.846|219653.496|102.709 +639290.259|219657.687|103.023 +639285.677|219661.875|103.327 +639281.121|219666.041|103.541 +639276.579|219670.189|103.687 +639271.989|219674.387|103.849 +639267.420|219678.559|103.913 +639262.863|219682.726|103.940 +639258.309|219686.883|103.961 +639253.743|219691.053|103.788 +639249.178|219695.223|103.632 +639244.590|219699.411|103.617 +639240.027|219703.580|103.495 +639235.452|219707.756|103.166 +639230.871|219711.935|102.873 +639226.290|219716.120|102.629 +639221.733|219720.277|102.227 +639217.146|219724.462|101.742 +639212.556|219728.650|101.282 +639208.014|219732.796|100.865 +639203.378|219737.023|100.395 +639198.687|219741.312|100.292 +639194.079|219745.521|100.008 +639189.449|219749.745|99.560 +639184.782|219754.004|99.335 +639180.085|219758.298|99.338 +639175.385|219762.593|99.377 +639170.652|219766.921|99.335 +639165.909|219771.252|99.356 +639161.179|219775.574|99.335 +639156.506|219779.838|98.950 +639151.833|219784.106|98.597 +639147.094|219788.437|98.374 +639142.385|219792.735|97.957 +639128.214|219805.676|97.109 +639123.435|219810.041|96.893 +639118.647|219814.415|96.765 +639113.925|219818.725|96.527 +639099.414|219831.987|96.649 +639050.569|219876.655|99.200 +639045.653|219881.154|99.676 +639040.679|219885.705|100.234 +639030.776|219894.767|101.124 +639025.844|219899.278|101.456 +639020.854|219903.840|101.877 +639015.975|219908.306|102.251 +639011.022|219912.835|102.443 +639006.056|219917.377|102.773 +639001.109|219921.900|102.974 +638996.169|219926.417|103.129 +638991.231|219930.931|103.321 +638986.299|219935.439|103.462 +638981.240|219940.069|103.897 +638976.293|219944.592|104.248 +638971.327|219949.134|104.342 +638966.335|219953.700|104.733 +638961.324|219958.287|105.333 +638956.359|219962.826|105.513 +638951.308|219967.449|106.089 +638946.322|219972.012|106.555 +638941.283|219976.618|106.610 +638936.355|219981.120|106.537 +638931.322|219985.722|106.592 +638926.336|219990.282|106.680 +638921.389|219994.799|106.372 +638916.433|219999.322|105.674 +638911.498|220003.824|105.242 +638906.512|220008.381|104.906 +638901.513|220012.947|104.690 +638896.484|220017.546|104.848 +638891.476|220022.124|104.812 +638886.428|220026.733|104.641 +638881.399|220031.332|104.909 +638876.364|220035.941|105.281 +638871.316|220040.553|105.242 +638866.263|220045.173|105.278 +638861.209|220049.791|105.342 +638851.138|220058.999|105.738 +638846.045|220063.657|105.812 +638840.973|220068.299|106.266 +638835.911|220072.929|106.644 +638830.793|220077.613|107.147 +638825.742|220082.237|107.442 +638820.634|220086.913|107.890 +638815.544|220091.570|108.128 +638810.451|220096.231|108.433 +638805.357|220100.891|108.756 +638800.261|220105.558|109.192 +638795.165|220110.224|109.692 +638790.029|220114.927|110.115 +638784.939|220119.588|110.579 +638779.864|220124.233|110.868 +638774.731|220128.933|111.344 +638769.662|220133.569|111.591 +638764.551|220138.247|111.755 +638759.461|220142.902|111.578 +638754.392|220147.538|111.889 +638749.283|220152.216|112.167 +638744.187|220156.877|112.173 +638739.088|220161.540|112.246 +638733.991|220166.204|112.346 +638728.892|220170.867|112.465 +638723.802|220175.521|112.459 +638718.669|220180.218|112.395 +638713.618|220184.839|112.657 +638708.452|220189.573|113.489 +638703.328|220194.273|114.642 +638698.278|220198.878|113.675 +638672.800|220222.174|112.980 +638667.673|220226.886|114.910 +638662.549|220231.571|114.873 +638657.471|220236.219|115.123 +638652.390|220240.868|115.434 +638647.257|220245.571|116.105 +638642.128|220250.268|116.598 +638637.056|220254.910|116.803 +638631.944|220259.582|116.507 +638626.830|220264.258|116.452 +638621.758|220268.900|116.672 +638616.643|220273.579|116.720 +638611.526|220278.264|117.016 +638606.457|220282.903|117.306 +638601.342|220287.584|117.687 +638596.228|220292.263|117.815 +638591.162|220296.899|118.135 +638586.050|220301.578|118.467 +638580.945|220306.250|118.720 +638575.882|220310.883|119.061 +638570.774|220315.562|119.573 +638565.665|220320.241|120.046 +638560.609|220324.871|120.344 +638555.500|220329.543|120.604 +638550.443|220334.170|120.747 +638545.387|220338.800|121.003 +638540.281|220343.470|121.250 +638535.228|220348.097|121.695 +638530.177|220352.723|122.155 +638525.078|220357.393|122.618 +638520.024|220362.017|123.027 +638514.974|220366.641|123.277 +638509.875|220371.307|123.572 +638504.827|220375.931|123.953 +638499.776|220380.552|124.221 +638494.723|220385.176|124.423 +638489.669|220389.799|124.532 +638484.619|220394.420|124.706 +638479.568|220399.044|124.953 +638474.518|220403.665|125.179 +638469.473|220408.285|125.587 +638464.432|220412.900|126.163 +638459.430|220417.478|126.376 +638454.383|220422.099|126.629 +638449.335|220426.717|126.980 +638444.345|220431.292|127.486 +638439.298|220435.913|127.791 +638434.302|220440.488|128.156 +638429.307|220445.060|128.577 +638424.268|220449.677|129.016 +638419.269|220454.256|129.324 +638414.277|220458.828|129.796 +638409.284|220463.400|130.196 +638404.276|220467.984|130.284 +638399.265|220472.568|130.345 +638394.315|220477.100|130.680 +638389.308|220481.685|130.817 +638384.284|220486.278|130.668 +638379.319|220490.822|130.750 +638369.319|220499.970|130.516 +638364.387|220504.481|130.388 +638359.355|220509.086|130.193 +638354.368|220513.646|130.022 +638349.367|220518.215|129.635 +638344.377|220522.781|129.437 +638329.439|220536.442|128.836 +638324.473|220540.990|129.117 +638319.499|220545.537|128.601 +638309.511|220554.666|127.830 +638264.632|220595.677|122.926 +638259.652|220600.234|122.740 +638244.756|220613.846|121.347 +638239.806|220618.375|121.094 +638234.920|220622.844|121.079 +638229.967|220627.373|120.863 +638215.254|220640.830|120.399 +638210.283|220645.372|119.604 +638205.299|220649.922|118.735 +638200.423|220654.391|118.955 +638195.479|220658.908|118.564 +638190.681|220663.303|119.128 +638161.573|220689.952|120.244 +638156.647|220694.454|119.750 +638146.951|220703.320|119.403 +638132.467|220716.582|119.918 +638127.728|220720.923|120.341 +638113.582|220733.892|122.615 +638108.839|220738.235|123.045 +638104.069|220742.603|123.246 +638099.372|220746.904|123.688 +638085.162|220759.916|124.484 +638080.392|220764.283|124.782 +638075.692|220768.584|124.886 +638070.907|220772.958|124.743 +638061.491|220781.572|124.932 +637991.680|220845.464|127.964 +637987.145|220849.618|128.461 +637978.016|220857.976|129.181 +637968.777|220866.425|128.958 +637964.172|220870.634|128.821 +637959.609|220874.810|128.952 +637955.031|220878.998|129.007 +637950.474|220883.168|128.906 +637945.963|220887.295|129.101 +637932.332|220899.764|129.239 +637927.794|220903.916|129.053 +637923.255|220908.064|128.900 +637914.120|220916.416|128.306 +637909.597|220920.549|128.016 +637905.046|220924.706|127.599 +637900.471|220928.885|127.068 +637895.909|220933.055|126.617 +637891.303|220937.261|125.968 +637886.801|220941.376|125.636 +637882.314|220945.475|125.410 +637877.764|220949.633|124.849 +637859.777|220966.068|123.222 +637855.260|220970.195|122.710 +637846.257|220978.421|121.622 +637841.800|220982.490|121.222 +637837.332|220986.572|120.524 +637832.876|220990.644|120.165 +637824.052|220998.709|119.451 +637819.687|221002.695|119.107 +637815.316|221006.694|118.997 +637811.052|221010.596|119.186 +637806.718|221014.558|119.043 +637789.862|221029.987|119.966 +637777.262|221041.518|120.512 +637773.086|221045.340|120.756 +637764.777|221052.945|121.234 +637740.107|221075.525|122.518 +637736.053|221079.231|122.731 +637732.017|221082.925|123.027 +637723.843|221090.399|122.981 +637719.789|221094.105|123.018 +637715.717|221097.830|122.990 +637703.549|221108.952|122.740 +637667.863|221141.578|122.484 +637663.888|221145.211|122.167 +637648.298|221159.461|121.469 +637636.505|221170.226|120.073 +637632.847|221173.576|120.512 +637625.246|221180.522|120.076 +637621.618|221183.845|120.664 +637614.410|221190.443|121.417 +637603.544|221200.383|122.103 +637599.923|221203.696|122.149 +637596.347|221206.967|122.384 +637582.369|221219.759|123.615 +637578.858|221222.972|123.935 +637575.438|221226.102|124.197 +637568.556|221232.399|124.599 +637565.188|221235.481|125.090 +637558.208|221241.860|124.788 +637776.515|221040.506|120.536 +637789.015|221029.024|119.738 +637810.287|221009.496|119.046 +637814.582|221005.554|118.991 +637818.968|221001.534|119.159 +637823.360|220997.502|119.390 +637827.725|220993.503|119.741 +637832.144|220989.452|120.137 +637836.613|220985.355|120.549 +637841.096|220981.247|121.317 +637845.571|220977.144|121.536 +637859.043|220964.800|123.127 +637877.090|220948.258|124.758 +637899.877|220927.370|127.093 +637904.452|220923.179|127.620 +637908.997|220919.012|127.992 +637913.593|220914.800|128.403 +637918.241|220910.539|128.854 +637922.758|220906.394|128.867 +637927.285|220902.242|128.949 +637931.805|220898.091|128.736 +637936.395|220893.879|128.635 +637945.637|220885.402|129.178 +637950.187|220881.226|128.906 +637954.772|220877.020|129.165 +637959.280|220872.878|128.675 +637963.980|220868.568|128.754 +637968.594|220864.334|128.946 +637977.805|220855.876|128.665 +637987.029|220847.406|128.217 +637991.656|220843.157|127.949 +638062.037|220778.524|124.977 +638066.813|220774.141|125.011 +638081.145|220760.982|124.517 +638100.274|220743.414|123.408 +638105.038|220739.037|123.124 +638109.836|220734.629|122.731 +638114.630|220730.225|122.323 +638119.410|220725.833|121.811 +638128.935|220717.073|120.091 +638148.372|220699.224|119.284 +638192.455|220658.758|118.671 +638197.381|220654.232|118.412 +638202.361|220649.666|118.677 +638227.349|220626.754|121.039 +638232.341|220622.176|121.116 +638237.267|220617.653|121.042 +638242.296|220613.044|121.603 +638262.352|220594.650|122.978 +638267.363|220590.059|123.517 +638272.410|220585.430|123.969 +638302.625|220557.738|127.803 +638307.661|220553.118|127.702 +638317.747|220543.870|128.483 +638322.773|220539.261|129.046 +638327.738|220534.702|128.714 +638332.798|220530.066|129.132 +638347.928|220516.191|129.808 +638352.948|220511.582|129.744 +638363.076|220502.295|130.299 +638368.112|220497.677|130.567 +638373.114|220493.087|130.220 +638378.201|220488.421|130.653 +638383.224|220483.815|130.747 +638388.293|220479.164|130.842 +638393.346|220474.525|130.677 +638398.394|220469.892|130.351 +638403.450|220465.250|130.278 +638408.504|220460.611|130.165 +638413.548|220455.981|129.775 +638418.587|220451.351|129.330 +638423.631|220446.718|128.998 +638428.673|220442.088|128.553 +638433.717|220437.458|128.138 +638438.758|220432.825|127.751 +638443.855|220428.146|127.462 +638448.896|220423.516|127.017 +638453.941|220418.883|126.581 +638459.037|220414.205|126.370 +638464.084|220409.569|126.078 +638469.126|220404.939|125.499 +638474.219|220400.260|125.072 +638479.269|220395.624|124.865 +638484.320|220390.988|124.569 +638489.419|220386.306|124.435 +638494.522|220381.625|124.307 +638499.572|220376.986|124.133 +638504.669|220372.304|123.810 +638509.768|220367.625|123.466 +638514.818|220362.986|123.088 +638519.918|220358.304|122.804 +638525.014|220353.620|122.280 +638530.068|220348.980|121.887 +638535.167|220344.296|121.390 +638540.272|220339.608|121.036 +638545.378|220334.923|120.896 +638550.434|220330.278|120.634 +638555.589|220325.547|120.509 +638560.645|220320.905|120.177 +638565.754|220316.214|119.845 +638570.813|220311.566|119.421 +638575.922|220306.872|118.933 +638580.985|220302.224|118.659 +638586.090|220297.536|118.348 +638591.156|220292.885|117.912 +638596.267|220288.188|117.632 +638601.333|220283.540|117.510 +638606.402|220278.885|117.168 +638611.516|220274.188|116.909 +638616.585|220269.537|116.729 +638621.654|220264.883|116.595 +638626.769|220260.192|116.675 +638631.831|220255.550|116.973 +638636.858|220250.935|116.751 +638641.984|220246.226|116.199 +638647.065|220241.557|115.718 +638652.143|220236.893|115.370 +638657.224|220232.227|115.038 +638662.253|220227.609|114.855 +638667.341|220222.939|114.465 +638672.470|220218.209|112.481 +638697.662|220195.114|114.605 +638702.752|220190.441|114.376 +638707.821|220185.778|113.413 +638712.884|220181.133|112.791 +638717.922|220176.509|112.773 +638722.964|220171.888|112.752 +638728.008|220167.258|112.636 +638733.007|220162.674|112.542 +638738.048|220158.050|112.560 +638743.050|220153.463|112.484 +638748.058|220148.867|112.249 +638753.112|220144.231|112.133 +638758.068|220139.689|112.115 +638763.118|220135.056|112.097 +638768.083|220130.499|111.898 +638773.106|220125.888|111.578 +638778.136|220121.273|111.213 +638783.116|220116.701|110.868 +638788.157|220112.074|110.384 +638793.150|220107.490|109.917 +638798.152|220102.897|109.387 +638803.193|220098.270|109.006 +638808.192|220093.682|108.607 +638813.191|220089.089|108.192 +638818.135|220084.557|107.985 +638823.152|220079.948|107.436 +638828.144|220075.367|107.244 +638838.117|220066.214|106.506 +638843.137|220061.605|106.083 +638848.090|220057.061|105.930 +638858.079|220047.895|105.299 +638863.023|220043.360|105.333 +638877.872|220029.735|104.864 +638882.847|220025.169|104.659 +638887.775|220020.646|104.449 +638892.735|220016.102|104.495 +638897.645|220011.597|104.556 +638902.555|220007.095|104.647 +638907.459|220002.599|104.833 +638912.348|219998.118|105.184 +638917.161|219993.711|105.848 +638922.096|219989.191|106.287 +638926.915|219984.771|106.385 +638931.844|219980.254|106.403 +638936.742|219975.758|106.247 +638941.655|219971.256|106.467 +638946.526|219966.785|106.144 +638951.509|219962.207|105.693 +638956.401|219957.717|105.248 +638961.370|219953.157|105.025 +638966.280|219948.646|104.461 +638971.221|219944.114|104.111 +638976.091|219939.642|103.986 +638981.038|219935.104|103.644 +638985.933|219930.611|103.346 +638990.877|219926.073|103.093 +638995.711|219921.641|102.980 +639000.649|219917.108|102.824 +639005.553|219912.610|102.578 +639010.418|219908.141|102.251 +639015.341|219903.624|101.925 +639020.281|219899.086|101.444 +639025.186|219894.584|100.913 +639035.006|219885.571|100.237 +639039.856|219881.115|99.822 +639054.596|219867.581|98.472 +639078.882|219845.297|97.454 +639112.627|219814.348|96.302 +639122.051|219805.716|97.225 +639126.852|219801.318|97.292 +639140.979|219788.373|98.393 +639145.679|219784.072|98.859 +639150.404|219779.744|99.185 +639155.076|219775.462|99.530 +639159.752|219771.182|99.880 +639164.528|219766.802|99.914 +639169.198|219762.520|100.014 +639173.941|219758.173|99.993 +639178.692|219753.818|99.953 +639183.319|219749.575|100.066 +639188.010|219745.277|100.420 +639192.674|219741.004|100.654 +639197.300|219736.767|100.828 +639201.927|219732.524|101.008 +639206.576|219728.266|101.389 +639211.093|219724.133|101.959 +639215.637|219719.966|102.364 +639220.249|219715.745|102.721 +639224.839|219711.542|103.193 +639229.366|219707.393|103.471 +639233.953|219703.190|103.715 +639238.543|219698.984|103.940 +639243.106|219694.802|104.074 +639247.675|219690.614|104.178 +639252.201|219686.466|104.266 +639256.779|219682.269|104.361 +639261.373|219678.059|104.400 +639265.935|219673.871|104.330 +639270.483|219669.702|104.114 +639275.073|219665.493|103.949 +639279.673|219661.271|103.754 +639284.245|219657.077|103.471 +639288.771|219652.923|103.172 +639293.358|219648.713|102.843 +639297.879|219644.568|102.629 +639302.463|219640.362|102.370 +639306.937|219636.256|102.151 +639311.457|219632.111|102.005 +639315.911|219628.026|101.950 +639320.303|219624.000|101.953 +639324.753|219619.919|101.950 +639329.188|219615.856|102.038 +639333.580|219611.826|102.096 +639337.960|219607.812|102.221 +639342.273|219603.859|102.453 +639346.561|219599.933|102.818 +639350.902|219595.952|102.937 +639355.190|219592.023|103.081 +639359.512|219588.058|103.071 +639356.242|219588.704|103.041 +639351.944|219592.639|102.943 +639347.540|219596.675|102.888 +639343.181|219600.661|102.614 +639338.829|219604.645|102.325 +639334.412|219608.687|102.111 +639330.017|219612.710|102.072 +639325.582|219616.773|101.983 +639321.138|219620.839|101.950 +639316.651|219624.948|101.901 +639312.155|219629.066|101.922 +639307.641|219633.202|102.041 +639303.130|219637.335|102.178 +639298.552|219641.529|102.407 +639294.026|219645.674|102.654 +639289.445|219649.875|102.953 +639284.818|219654.114|103.236 +639280.234|219658.318|103.586 +639275.634|219662.530|103.769 +639271.084|219666.703|104.001 +639266.441|219670.951|104.175 +639261.793|219675.213|104.425 +639257.200|219679.419|104.397 +639252.652|219683.585|104.419 +639248.038|219687.807|104.254 +639243.453|219692.004|104.230 +639238.851|219696.223|104.062 +639234.258|219700.423|103.839 +639229.673|219704.620|103.596 +639225.050|219708.850|103.285 +639220.490|219713.023|102.943 +639215.890|219717.232|102.535 +639211.233|219721.494|102.191 +639206.673|219725.663|101.587 +639202.034|219729.906|101.154 +639197.355|219734.188|100.990 +639192.677|219738.468|100.828 +639188.010|219742.738|100.612 +639183.316|219747.033|100.295 +639178.662|219751.288|100.042 +639173.910|219755.637|100.093 +639169.131|219760.014|100.048 +639164.455|219764.291|99.978 +639159.667|219768.677|100.023 +639154.927|219773.014|99.786 +639150.270|219777.272|99.353 +639145.487|219781.646|99.088 +639140.800|219785.931|98.554 +639136.133|219790.193|97.890 +639126.632|219798.885|97.390 +639121.865|219803.247|97.128 +639117.053|219807.652|97.183 +639112.444|219811.855|95.842 +639107.521|219816.369|96.363 +639097.893|219825.181|96.287 +639092.998|219829.667|96.683 +639088.106|219834.148|97.085 +639073.490|219847.535|97.667 +639034.183|219883.538|99.847 +639029.255|219888.055|100.145 +639019.379|219897.101|100.932 +639014.432|219901.637|101.471 +639009.443|219906.212|101.989 +639004.478|219910.759|102.325 +638999.525|219915.295|102.575 +638994.636|219919.772|102.754 +638989.655|219924.335|102.895 +638984.723|219928.852|103.062 +638979.770|219933.388|103.440 +638974.787|219937.954|103.678 +638969.864|219942.462|103.867 +638964.872|219947.034|104.242 +638959.876|219951.615|104.726 +638954.917|219956.156|104.864 +638949.921|219960.735|105.403 +638944.935|219965.304|105.863 +638939.936|219969.882|106.022 +638935.007|219974.393|105.991 +638930.021|219978.959|106.065 +638925.043|219983.515|106.092 +638920.130|219988.014|105.988 +638915.165|219992.553|105.376 +638910.245|219997.052|104.833 +638905.308|220001.569|104.507 +638900.312|220006.138|104.284 +638895.301|220010.725|104.260 +638890.339|220015.269|104.275 +638885.343|220019.838|104.096 +638880.262|220024.496|104.431 +638875.263|220029.077|104.955 +638870.188|220033.725|105.257 +638865.193|220038.300|105.245 +638860.170|220042.894|104.946 +638855.147|220047.499|105.339 +638850.087|220052.138|106.214 +638845.003|220056.792|106.189 +638839.989|220061.386|106.549 +638834.902|220066.043|106.628 +638829.845|220070.676|106.991 +638824.849|220075.251|107.226 +638819.753|220079.921|107.570 +638814.700|220084.551|107.988 +638809.603|220089.217|108.387 +638804.507|220093.887|108.847 +638799.459|220098.514|109.329 +638794.378|220103.168|109.652 +638789.279|220107.840|110.277 +638784.192|220112.501|110.777 +638779.117|220117.152|111.115 +638774.036|220121.806|111.578 +638768.964|220126.452|111.932 +638763.859|220131.127|112.084 +638758.793|220135.766|112.444 +638753.703|220140.424|112.319 +638748.655|220145.044|112.359 +638743.559|220149.708|112.447 +638738.460|220154.380|112.688 +638733.370|220159.038|112.700 +638728.276|220163.701|112.813 +638723.192|220168.356|112.807 +638718.105|220173.010|112.828 +638713.015|220177.670|112.987 +638707.928|220182.328|113.105 +638702.819|220187.012|113.895 +638697.665|220191.740|114.684 +638692.627|220196.336|113.447 +638667.142|220219.666|113.809 +638662.040|220224.351|115.056 +638656.971|220228.990|114.986 +638651.848|220233.684|115.294 +638646.721|220238.377|115.708 +638641.652|220243.020|115.885 +638636.525|220247.720|116.550 +638631.405|220252.410|116.955 +638626.339|220257.050|117.092 +638621.233|220261.719|116.800 +638616.122|220266.398|116.793 +638611.059|220271.034|116.912 +638605.948|220275.716|117.107 +638600.836|220280.394|117.345 +638595.773|220285.030|117.546 +638590.665|220289.709|117.812 +638585.557|220294.391|118.208 +638580.454|220299.063|118.586 +638575.349|220303.742|118.830 +638570.243|220308.418|119.247 +638565.187|220313.051|119.720 +638560.084|220317.726|120.073 +638554.982|220322.399|120.366 +638549.925|220327.029|120.482 +638544.826|220331.698|120.768 +638539.724|220336.371|120.911 +638534.673|220340.998|121.244 +638529.577|220345.667|121.686 +638524.481|220350.337|122.054 +638519.479|220354.918|122.518 +638514.386|220359.584|122.880 +638509.341|220364.208|123.350 +638504.294|220368.829|123.712 +638499.249|220373.453|124.014 +638494.199|220378.074|124.115 +638489.151|220382.697|124.289 +638484.101|220387.321|124.404 +638479.059|220391.939|124.731 +638474.009|220396.563|124.907 +638468.967|220401.181|125.307 +638463.932|220405.798|125.910 +638458.939|220410.373|126.245 +638453.895|220414.991|126.511 +638448.902|220419.566|126.885 +638443.867|220424.181|127.431 +638438.822|220428.802|127.657 +638433.833|220433.377|128.077 +638428.840|220437.949|128.412 +638423.805|220442.566|128.870 +638418.864|220447.096|129.248 +638413.826|220451.710|129.632 +638408.836|220456.282|130.031 +638403.886|220460.815|130.290 +638398.878|220465.402|130.275 +638393.928|220469.934|130.503 +638388.939|220474.510|130.863 +638383.967|220479.060|130.683 +638378.960|220483.644|130.790 +638373.979|220488.201|130.479 +638369.023|220492.740|130.686 +638364.037|220497.303|130.311 +638359.068|220501.850|130.339 +638354.146|220506.358|130.327 +638349.153|220510.924|129.973 +638344.218|220515.444|129.775 +638339.256|220519.980|129.232 +638329.338|220529.060|129.046 +638304.619|220551.676|127.769 +638274.876|220578.876|124.426 +638269.945|220583.387|124.130 +638264.961|220587.941|123.237 +638260.036|220592.446|123.103 +638255.073|220596.985|122.539 +638250.209|220601.441|122.579 +638235.362|220615.020|121.119 +638230.525|220619.445|121.045 +638225.621|220623.941|121.314 +638201.112|220646.356|119.086 +638152.746|220690.647|119.668 +638147.799|220695.170|118.991 +638138.188|220703.966|118.930 +638128.666|220712.693|119.698 +638114.548|220725.647|122.057 +638109.805|220729.993|122.441 +638105.041|220734.358|122.652 +638100.347|220738.656|123.078 +638095.544|220743.060|123.383 +638071.943|220764.680|124.325 +638067.295|220768.941|124.819 +638053.152|220781.898|125.258 +638048.431|220786.223|125.270 +638039.110|220794.764|125.877 +638025.104|220807.593|126.227 +637988.132|220841.465|127.782 +637969.817|220858.247|128.775 +637965.190|220862.484|128.452 +637960.654|220866.639|128.726 +637956.061|220870.848|128.946 +637951.562|220874.969|129.171 +637946.969|220879.172|128.839 +637942.363|220883.390|128.757 +637937.907|220887.472|128.995 +637933.301|220891.687|128.644 +637924.221|220899.999|128.516 +637919.717|220904.126|128.528 +637915.227|220908.235|128.367 +637910.713|220912.371|128.373 +637906.147|220916.544|127.827 +637901.617|220920.689|127.501 +637892.437|220929.080|125.989 +637874.402|220945.579|124.496 +637865.258|220953.936|122.950 +637834.132|220982.417|120.597 +637829.691|220986.477|120.052 +637825.295|220990.497|119.756 +637820.931|220994.490|119.381 +637816.514|220998.532|119.012 +637807.885|221006.432|118.848 +637799.375|221014.223|118.827 +637786.689|221025.845|119.287 +637782.578|221029.615|119.781 +637774.247|221037.251|120.299 +637770.172|221040.985|120.759 +637761.921|221048.550|121.231 +637757.749|221052.369|121.283 +637753.695|221056.084|121.652 +637749.504|221059.919|121.408 +637741.399|221067.347|121.984 +637737.296|221071.105|122.182 +637733.224|221074.833|122.307 +637729.183|221078.539|122.573 +637725.187|221082.200|122.813 +637721.142|221085.903|122.865 +637717.076|221089.628|122.838 +637713.053|221093.310|122.789 +637708.910|221097.098|122.454 +637704.899|221100.771|122.484 +637642.019|221158.324|120.640 +637630.683|221168.702|120.652 +637615.818|221182.318|120.905 +637612.179|221185.649|121.036 +637608.597|221188.932|121.408 +637604.925|221192.297|121.430 +637601.364|221195.558|121.692 +637597.844|221198.783|122.121 +637590.767|221205.269|122.655 +637587.219|221208.518|122.804 +637583.799|221211.655|123.441 +637576.819|221218.052|123.795 +637573.341|221221.234|123.840 +637569.915|221224.374|124.087 +637563.146|221230.577|124.709 +637559.845|221233.603|125.249 +637779.892|221030.149|119.924 +637784.089|221026.293|119.570 +637805.258|221006.859|118.854 +637818.236|220994.954|119.229 +637822.641|220990.915|119.525 +637827.060|220986.861|119.918 +637831.541|220982.758|120.375 +637835.970|220978.699|120.850 +637844.864|220970.545|121.548 +637853.837|220962.322|122.484 +637858.369|220958.167|123.100 +637862.685|220954.205|122.856 +637889.989|220929.181|126.142 +637899.060|220920.869|126.986 +637903.696|220916.620|127.580 +637908.323|220912.383|128.440 +637917.242|220904.193|128.065 +637926.392|220895.802|128.507 +637930.915|220891.654|128.601 +637935.557|220887.395|128.827 +637940.074|220883.247|128.644 +637944.631|220879.068|128.693 +637949.218|220874.859|128.970 +637958.408|220866.422|128.751 +637962.898|220862.301|128.473 +637967.525|220858.055|128.449 +637976.751|220849.585|128.306 +637981.332|220845.376|128.056 +637985.992|220841.102|128.315 +638022.986|220807.123|126.066 +638041.701|220789.942|125.480 +638046.443|220785.583|125.230 +638074.793|220759.553|124.331 +638093.767|220742.124|123.161 +638098.516|220737.763|122.746 +638103.350|220733.325|122.652 +638112.911|220724.541|122.036 +638127.136|220711.462|119.616 +638136.591|220702.759|117.805 +638146.516|220693.670|119.235 +638151.432|220689.159|119.619 +638161.131|220680.256|119.235 +638166.035|220675.757|119.592 +638170.918|220671.271|119.326 +638175.743|220666.839|118.961 +638180.647|220662.337|118.924 +638185.539|220657.844|118.781 +638190.443|220653.345|118.781 +638195.375|220648.819|119.083 +638200.337|220644.268|119.223 +638210.316|220635.124|120.661 +638225.145|220621.521|121.387 +638230.083|220616.982|120.930 +638235.066|220612.417|121.506 +638250.032|220598.688|122.600 +638265.004|220584.957|123.481 +638325.248|220529.715|128.650 +638330.310|220525.073|129.168 +638335.303|220520.489|129.373 +638345.328|220511.287|129.729 +638350.388|220506.651|130.327 +638360.379|220497.473|130.321 +638365.414|220492.855|130.589 +638370.474|220488.207|130.528 +638375.451|220483.641|130.671 +638380.517|220478.990|130.744 +638385.534|220474.382|130.833 +638390.545|220469.782|130.796 +638395.586|220465.149|130.442 +638400.640|220460.507|130.360 +638405.642|220455.911|130.193 +638410.683|220451.281|129.818 +638415.725|220446.648|129.467 +638420.766|220442.015|129.095 +638425.804|220437.382|128.650 +638430.846|220432.752|128.263 +638435.887|220428.116|127.919 +638440.929|220423.483|127.580 +638445.973|220418.850|127.218 +638451.011|220414.217|126.739 +638456.102|220409.538|126.422 +638461.100|220404.945|126.145 +638466.184|220400.272|125.526 +638471.226|220395.636|125.014 +638476.273|220391.000|124.752 +638481.321|220386.361|124.572 +638486.417|220381.679|124.304 +638491.468|220377.040|124.231 +638496.518|220372.401|124.045 +638501.614|220367.720|123.789 +638506.662|220363.081|123.459 +638511.755|220358.399|122.957 +638516.803|220353.760|122.496 +638521.853|220349.118|122.082 +638526.949|220344.433|121.692 +638532.049|220339.745|121.320 +638537.102|220335.103|120.991 +638542.205|220330.415|120.802 +638547.307|220325.727|120.661 +638552.364|220321.085|120.424 +638557.466|220316.394|120.186 +638562.572|220311.703|119.884 +638567.628|220307.055|119.448 +638572.737|220302.361|118.936 +638577.845|220297.667|118.634 +638582.905|220293.016|118.305 +638588.010|220288.325|117.943 +638593.119|220283.628|117.607 +638598.181|220278.980|117.498 +638603.296|220274.283|117.281 +638608.407|220269.586|117.098 +638613.470|220264.935|117.062 +638618.582|220260.244|117.187 +638623.644|220255.599|117.293 +638628.759|220250.896|117.031 +638633.834|220246.232|116.611 +638638.958|220241.523|116.111 +638644.029|220236.863|115.870 +638649.107|220232.196|115.526 +638654.182|220227.533|115.218 +638659.257|220222.869|115.105 +638664.344|220218.194|114.523 +638669.462|220213.478|112.980 +638674.552|220208.800|112.505 +638689.762|220194.840|113.319 +638694.794|220190.234|114.706 +638699.845|220185.589|114.142 +638704.953|220180.892|113.444 +638709.997|220176.256|113.218 +638715.036|220171.626|113.127 +638720.126|220166.950|113.063 +638725.167|220162.318|113.005 +638730.209|220157.685|112.965 +638735.299|220153.009|112.956 +638740.307|220148.403|112.685 +638745.360|220143.758|112.478 +638750.396|220139.134|112.727 +638755.440|220134.501|112.795 +638760.457|220129.887|112.465 +638765.520|220125.235|112.240 +638770.540|220120.618|111.950 +638775.612|220115.954|111.600 +638780.586|220111.379|111.341 +638785.625|220106.746|110.856 +638790.675|220102.098|110.231 +638795.723|220097.456|109.695 +638800.724|220092.853|109.161 +638805.732|220088.248|108.579 +638810.783|220083.603|108.171 +638815.785|220079.003|107.756 +638820.789|220074.404|107.396 +638825.791|220069.804|107.092 +638830.735|220065.257|106.921 +638835.746|220060.648|106.555 +638840.687|220056.113|106.561 +638845.695|220051.507|106.299 +638850.657|220046.947|106.052 +638855.674|220042.330|105.723 +638860.645|220037.761|105.418 +638875.559|220024.051|104.726 +638880.524|220019.485|104.614 +638885.477|220014.931|104.144 +638890.467|220010.341|103.797 +638895.362|220005.848|104.065 +638900.324|220001.288|104.092 +638905.180|219996.829|104.291 +638910.123|219992.291|104.586 +638914.927|219987.883|105.327 +638919.810|219983.400|105.778 +638924.733|219978.879|105.833 +638929.631|219974.377|105.650 +638934.547|219969.860|105.812 +638939.454|219965.349|105.589 +638944.362|219960.838|105.415 +638949.296|219956.300|104.964 +638954.222|219951.770|104.669 +638959.105|219947.281|104.348 +638964.046|219942.733|103.940 +638968.938|219938.237|103.590 +638973.851|219933.720|103.526 +638978.755|219929.209|103.123 +638983.657|219924.704|102.785 +638988.539|219920.214|102.623 +638993.419|219915.728|102.529 +638998.321|219911.223|102.273 +639003.173|219906.764|102.056 +639008.108|219902.225|101.578 +639013.003|219897.720|101.038 +639017.953|219893.166|100.505 +639022.839|219888.671|100.112 +639027.712|219884.190|99.862 +639047.244|219866.228|98.469 +639071.573|219843.859|97.332 +639100.441|219817.323|96.911 +639114.748|219804.177|97.189 +639133.646|219786.821|98.469 +639138.343|219782.509|98.920 +639142.991|219778.241|99.386 +639147.694|219773.922|99.837 +639152.403|219769.600|100.264 +639157.106|219765.275|100.410 +639161.870|219760.898|100.532 +639166.564|219756.585|100.478 +639171.289|219752.242|100.554 +639176.025|219747.889|100.596 +639180.683|219743.610|100.825 +639185.380|219739.297|101.133 +639190.037|219735.018|101.395 +639194.725|219730.711|101.499 +639199.407|219726.407|101.648 +639204.058|219722.137|102.002 +639208.630|219717.940|102.535 +639213.232|219713.712|102.907 +639217.871|219709.451|103.370 +639222.447|219705.251|103.650 +639227.015|219701.054|103.961 +639231.661|219696.786|104.163 +639236.245|219692.574|104.425 +639240.847|219688.346|104.614 +639245.428|219684.134|104.650 +639250.065|219679.873|104.690 +639254.667|219675.642|104.653 +639259.288|219671.390|104.525 +639263.945|219667.108|104.242 +639268.590|219662.835|104.041 +639273.199|219658.598|103.794 +639277.807|219654.358|103.553 +639282.386|219650.146|103.236 +639287.003|219645.897|102.998 +639291.658|219641.617|102.602 +639296.227|219637.411|102.395 +639300.796|219633.211|102.215 +639305.313|219629.057|102.056 +639309.863|219624.872|102.017 +639314.329|219620.769|102.160 +639318.815|219616.645|102.215 +639323.259|219612.561|102.245 +639327.691|219608.486|102.343 +639332.120|219604.417|102.477 +639336.536|219600.357|102.687 +639340.965|219596.291|102.867 +639345.354|219592.255|102.995 +639349.762|219588.201|103.044 +639354.105|219584.211|103.181 +639352.752|219582.492|103.266 +639348.357|219586.522|103.154 +639343.964|219590.548|103.032 +639339.572|219594.575|102.931 +639335.189|219598.595|102.815 +639330.773|219602.640|102.611 +639326.341|219606.703|102.504 +639321.863|219610.808|102.386 +639317.377|219614.923|102.331 +639312.896|219619.032|102.264 +639308.431|219623.125|102.133 +639303.886|219627.295|102.175 +639299.317|219631.486|102.349 +639294.706|219635.720|102.507 +639290.146|219639.901|102.672 +639285.510|219644.156|102.998 +639280.932|219648.357|103.309 +639276.259|219652.648|103.608 +639271.599|219656.925|103.855 +639266.944|219661.195|104.105 +639262.348|219665.413|104.342 +639257.636|219669.738|104.665 +639252.963|219674.024|104.803 +639248.291|219678.312|104.961 +639243.682|219682.540|104.803 +639239.003|219686.829|104.754 +639234.407|219691.044|104.565 +639229.771|219695.290|104.318 +639225.083|219699.591|104.111 +639220.465|219703.821|103.794 +639215.817|219708.079|103.388 +639211.169|219712.337|102.989 +639206.533|219716.586|102.550 +639201.900|219720.829|102.084 +639197.191|219725.148|101.803 +639192.475|219729.473|101.575 +639187.733|219733.826|101.547 +639182.981|219738.184|101.276 +639178.235|219742.537|100.983 +639173.529|219746.853|100.767 +639168.710|219751.276|100.670 +639163.995|219755.601|100.551 +639159.152|219760.051|100.645 +639154.391|219764.419|100.545 +639149.651|219768.765|100.331 +639144.841|219773.176|99.938 +639140.099|219777.522|99.456 +639135.371|219781.856|98.893 +639130.653|219786.181|98.292 +639111.466|219803.777|97.076 +639096.930|219817.116|96.789 +639092.096|219821.553|96.774 +639077.544|219834.901|96.113 +639062.758|219848.483|97.036 +639038.054|219871.175|98.765 +639028.124|219880.298|99.517 +639023.144|219884.873|99.859 +639018.215|219889.402|100.231 +639013.234|219893.977|100.639 +639008.284|219898.528|101.246 +639003.249|219903.155|101.773 +638998.336|219907.666|102.117 +638993.346|219912.250|102.343 +638988.451|219916.746|102.602 +638983.483|219921.306|102.669 +638978.554|219925.832|102.867 +638973.543|219930.434|103.376 +638968.624|219934.951|103.532 +638963.646|219939.523|103.818 +638958.712|219944.059|104.193 +638953.679|219948.680|104.586 +638948.778|219953.182|104.699 +638943.798|219957.757|105.132 +638938.833|219962.320|105.473 +638933.834|219966.907|105.662 +638928.930|219971.406|105.421 +638923.931|219975.999|105.699 +638919.014|219980.510|105.632 +638914.095|219985.021|105.120 +638909.185|219989.520|104.492 +638904.247|219994.049|104.178 +638899.297|219998.591|104.050 +638894.353|220003.129|103.855 +638884.374|220012.295|104.559 +638879.366|220016.891|104.626 +638874.370|220021.481|105.144 +638869.353|220026.093|105.415 +638864.361|220030.674|105.385 +638859.380|220035.249|105.821 +638834.338|220058.246|106.699 +638829.287|220062.882|107.022 +638824.304|220067.451|107.070 +638819.262|220072.084|107.369 +638814.215|220076.717|107.753 +638809.164|220081.353|108.201 +638804.111|220085.995|108.780 +638799.063|220090.631|109.320 +638794.016|220095.267|109.881 +638788.968|220099.907|110.527 +638783.878|220104.582|111.152 +638778.800|220109.246|111.563 +638773.786|220113.848|111.786 +638768.714|220118.505|112.200 +638763.658|220123.145|112.386 +638758.598|220127.790|112.676 +638753.541|220132.432|112.944 +638748.491|220137.065|113.084 +638743.425|220141.707|112.633 +638738.332|220146.383|112.761 +638733.275|220151.025|113.176 +638728.188|220155.691|113.261 +638723.110|220160.352|113.203 +638718.075|220164.972|113.261 +638712.985|220169.642|113.480 +638707.903|220174.302|113.511 +638702.822|220178.969|113.685 +638697.726|220183.647|114.215 +638692.587|220188.369|114.730 +638687.592|220192.944|113.861 +638682.498|220197.604|112.959 +638677.417|220202.271|113.230 +638672.333|220206.937|113.605 +638667.197|220211.656|114.236 +638662.110|220216.331|115.044 +638656.987|220221.031|115.300 +638651.872|220225.728|115.455 +638646.797|220230.386|115.815 +638641.679|220235.083|116.099 +638636.565|220239.780|116.388 +638631.499|220244.431|116.711 +638626.385|220249.128|117.059 +638621.270|220253.822|117.418 +638616.165|220258.506|117.488 +638611.108|220263.142|117.281 +638605.957|220267.870|117.324 +638600.851|220272.555|117.309 +638595.792|220277.200|117.635 +638590.638|220281.927|117.827 +638585.535|220286.612|118.010 +638580.485|220291.248|118.354 +638575.334|220295.979|118.729 +638570.231|220300.663|119.012 +638565.129|220305.348|119.570 +638560.029|220310.030|119.854 +638554.930|220314.712|120.186 +638549.834|220319.390|120.329 +638544.735|220324.069|120.588 +638539.638|220328.748|120.799 +638534.542|220333.426|121.058 +638529.446|220338.102|121.384 +638524.353|220342.781|121.637 +638519.308|220347.411|122.042 +638514.215|220352.086|122.347 +638509.128|220356.759|123.030 +638504.038|220361.435|123.386 +638498.950|220366.107|123.795 +638493.906|220370.734|124.011 +638488.862|220375.364|124.157 +638483.768|220380.040|124.221 +638478.681|220384.709|124.548 +638473.679|220389.296|124.621 +638468.595|220393.966|125.069 +638463.517|220398.632|125.666 +638458.531|220403.214|126.209 +638453.444|220407.883|126.443 +638448.405|220412.504|126.818 +638443.419|220417.079|127.330 +638438.380|220421.700|127.632 +638433.342|220426.318|128.010 +638428.304|220430.938|128.306 +638423.268|220435.556|128.751 +638418.282|220440.131|129.156 +638408.254|220449.324|129.872 +638403.264|220453.899|130.208 +638398.266|220458.480|130.369 +638393.264|220463.064|130.470 +638388.326|220467.594|130.897 +638383.312|220472.184|130.778 +638378.353|220476.728|130.814 +638363.403|220490.423|130.586 +638358.422|220494.986|130.321 +638353.454|220499.537|130.302 +638348.483|220504.090|130.272 +638343.551|220508.608|130.104 +638338.589|220513.149|129.482 +638333.602|220517.715|129.309 +638328.671|220522.232|129.223 +638323.702|220526.777|128.644 +638284.282|220562.871|126.471 +638264.464|220581.001|123.853 +638249.782|220594.442|122.761 +638244.823|220598.981|122.280 +638239.983|220603.419|122.627 +638225.313|220616.848|121.576 +638215.559|220625.779|121.140 +638210.661|220630.260|120.500 +638200.868|220639.221|119.332 +638195.982|220643.692|118.909 +638191.114|220648.148|118.714 +638167.026|220670.222|119.055 +638162.289|220674.565|119.290 +638143.044|220692.192|119.089 +638138.271|220696.566|119.095 +638128.737|220705.305|119.284 +638114.664|220718.222|121.600 +638109.991|220722.507|122.115 +638100.533|220731.179|122.704 +638095.803|220735.513|122.819 +638091.036|220739.881|122.649 +638081.733|220748.412|123.795 +638077.033|220752.713|123.844 +638067.645|220761.315|124.438 +638062.964|220765.600|124.666 +638053.631|220774.147|125.032 +638039.616|220786.976|125.447 +638020.999|220804.026|126.227 +638007.179|220816.682|126.971 +638002.638|220820.842|127.346 +637979.631|220841.904|127.873 +637975.056|220846.095|128.120 +637970.548|220850.225|128.492 +637965.885|220854.489|128.248 +637961.325|220858.665|128.342 +637956.887|220862.734|128.885 +637943.208|220875.252|128.723 +637938.645|220879.425|128.598 +637934.088|220883.595|128.531 +637929.610|220887.694|128.638 +637916.004|220900.139|128.102 +637907.171|220908.232|128.608 +637897.963|220916.644|127.376 +637879.916|220933.143|125.599 +637870.869|220941.412|124.447 +637861.871|220949.636|123.392 +637857.415|220953.711|123.118 +637822.074|220986.020|119.930 +637791.984|221013.543|118.884 +637779.508|221024.967|119.625 +637775.363|221028.765|119.966 +637767.115|221036.315|120.408 +637763.083|221040.012|121.070 +637754.923|221047.483|121.512 +637750.717|221051.329|121.170 +637742.679|221058.690|121.786 +637738.659|221062.372|122.097 +637734.575|221066.112|122.128 +637730.539|221069.806|122.167 +637726.525|221073.485|122.545 +637722.459|221077.207|122.478 +637714.506|221084.486|122.722 +637706.432|221091.874|122.496 +637702.406|221095.559|122.445 +637698.428|221099.198|122.390 +637659.310|221134.991|121.490 +637655.479|221138.496|121.551 +637647.606|221145.693|120.421 +637643.805|221149.170|120.433 +637639.983|221152.663|120.152 +637625.163|221166.230|120.408 +637617.805|221172.963|120.710 +637614.154|221176.307|120.771 +637606.900|221182.945|120.920 +637603.330|221186.213|121.128 +637596.421|221192.547|122.243 +637592.858|221195.808|122.298 +637575.572|221211.636|123.716 +637572.201|221214.724|123.944 +637568.775|221217.863|124.170 +637565.404|221220.948|124.423 +637558.802|221226.995|125.258 +637552.109|221233.125|125.587 +637791.411|221011.782|118.650 +637795.669|221007.868|118.891 +637804.246|220999.983|118.985 +637812.838|220992.082|118.961 +637830.495|220975.861|120.497 +637834.875|220971.837|120.753 +637857.275|220951.266|123.133 +637861.722|220947.179|123.344 +637866.221|220943.046|123.856 +637870.778|220938.861|124.435 +637875.350|220934.667|125.108 +637879.876|220930.510|125.563 +637898.094|220913.779|127.437 +637902.700|220909.551|128.181 +637907.226|220905.388|128.236 +637911.676|220901.294|127.858 +637916.184|220897.149|127.839 +637925.300|220888.770|128.437 +637929.790|220884.640|128.074 +637934.387|220880.416|128.348 +637938.986|220876.188|128.684 +637943.570|220871.976|128.632 +637952.742|220863.545|128.925 +637957.283|220859.366|128.684 +637961.822|220855.187|128.126 +637966.366|220851.002|127.946 +637971.021|220846.726|128.144 +637975.593|220842.523|127.839 +637980.186|220838.298|127.684 +637989.449|220829.785|127.608 +638017.274|220804.197|126.434 +638021.934|220799.909|126.251 +638040.634|220782.712|125.325 +638073.650|220752.351|123.789 +638078.396|220747.989|123.697 +638083.068|220743.685|123.066 +638087.820|220739.311|122.704 +638092.581|220734.937|122.768 +638097.440|220730.472|122.883 +638102.143|220726.147|122.557 +638106.940|220721.733|122.192 +638111.662|220717.387|121.643 +638116.444|220712.989|121.195 +638125.902|220704.274|119.442 +638130.718|220699.849|119.308 +638135.528|220695.423|119.156 +638140.371|220690.970|118.884 +638145.223|220686.514|119.110 +638150.109|220682.021|119.272 +638159.814|220673.099|118.997 +638164.663|220668.640|118.894 +638169.485|220664.205|118.513 +638174.438|220659.658|118.955 +638179.312|220655.174|118.644 +638184.128|220650.742|118.272 +638203.955|220632.539|120.213 +638208.896|220627.998|120.259 +638213.886|220623.420|120.808 +638233.704|220605.220|122.481 +638238.623|220600.697|122.435 +638243.585|220596.137|122.353 +638248.538|220591.586|122.783 +638253.534|220587.002|123.121 +638258.530|220582.412|123.536 +638263.483|220577.864|124.075 +638308.532|220536.497|127.812 +638318.542|220527.304|128.440 +638323.550|220522.705|128.842 +638328.558|220518.108|129.290 +638333.584|220513.487|129.345 +638343.630|220504.264|130.144 +638348.653|220499.649|130.199 +638353.679|220495.032|130.378 +638358.690|220490.426|130.290 +638363.677|220485.848|130.625 +638373.723|220476.619|131.015 +638378.725|220472.022|130.811 +638383.785|220467.371|130.869 +638388.792|220462.769|130.836 +638393.782|220458.178|130.467 +638398.836|220453.536|130.427 +638403.825|220448.946|130.083 +638408.818|220444.353|129.744 +638413.859|220439.720|129.437 +638418.849|220435.129|129.074 +638423.884|220430.496|128.641 +638428.923|220425.863|128.263 +638433.964|220421.227|127.961 +638438.999|220416.594|127.529 +638444.038|220411.958|127.157 +638449.076|220407.325|126.730 +638454.117|220402.689|126.379 +638459.156|220398.053|125.947 +638464.191|220393.420|125.383 +638469.275|220388.742|124.852 +638474.271|220384.148|124.535 +638479.367|220379.464|124.441 +638484.411|220374.824|124.063 +638489.462|220370.182|124.051 +638494.555|220365.501|123.844 +638499.645|220360.816|123.469 +638504.644|220356.219|123.158 +638509.734|220351.535|122.600 +638514.828|220346.850|122.118 +638519.875|220342.208|121.795 +638524.971|220337.520|121.466 +638530.022|220332.878|121.173 +638535.072|220328.233|120.899 +638540.172|220323.542|120.683 +638545.271|220318.854|120.491 +638550.325|220314.209|120.256 +638555.378|220309.561|120.027 +638560.481|220304.870|119.695 +638565.534|220300.221|119.406 +638570.640|220295.525|118.927 +638575.745|220290.828|118.537 +638580.802|220286.176|118.211 +638585.904|220281.485|117.943 +638590.964|220276.831|117.690 +638596.023|220272.180|117.522 +638601.132|220267.486|117.565 +638606.240|220262.792|117.449 +638611.297|220258.147|117.754 +638616.357|220253.496|117.629 +638621.471|220248.792|117.354 +638626.537|220244.132|117.080 +638631.652|220239.432|116.922 +638636.766|220234.726|116.608 +638641.789|220230.108|116.376 +638646.910|220225.399|116.056 +638652.030|220220.690|115.833 +638657.105|220216.023|115.538 +638662.177|220211.360|115.404 +638667.258|220206.687|115.001 +638672.336|220202.018|114.754 +638677.463|220197.306|114.599 +638682.544|220192.630|114.334 +638687.625|220187.960|114.184 +638692.694|220183.303|114.352 +638697.784|220178.621|113.968 +638702.819|220173.994|113.889 +638707.949|220169.279|113.837 +638712.985|220164.646|113.721 +638718.072|220159.967|113.584 +638723.107|220155.341|113.624 +638728.151|220150.705|113.465 +638733.254|220146.008|113.087 +638738.301|220141.366|112.901 +638743.321|220136.760|113.398 +638748.415|220132.075|113.307 +638753.422|220127.470|113.051 +638758.479|220122.818|112.837 +638763.539|220118.167|112.615 +638768.605|220113.507|112.322 +638773.667|220108.849|112.109 +638778.690|220104.232|111.801 +638783.774|220099.550|111.264 +638788.822|220094.902|110.624 +638793.872|220090.257|110.033 +638798.926|220085.602|109.359 +638804.031|220080.902|108.725 +638809.039|220076.294|108.171 +638814.102|220071.633|107.561 +638819.150|220066.991|107.238 +638824.139|220062.404|107.076 +638829.171|220057.777|107.015 +638834.152|220053.196|107.028 +638839.166|220048.593|107.296 +638844.088|220044.067|107.470 +638849.081|220039.480|107.418 +638854.125|220034.835|106.699 +638859.167|220030.193|106.065 +638864.108|220025.651|106.138 +638869.128|220021.036|105.876 +638874.105|220016.455|105.559 +638879.119|220011.837|104.818 +638884.130|220007.223|104.187 +638889.065|220002.687|103.943 +638894.042|219998.109|103.779 +638898.977|219993.577|104.105 +638903.915|219989.035|103.894 +638908.785|219984.561|104.406 +638913.705|219980.047|104.967 +638918.585|219975.566|105.424 +638923.465|219971.080|105.403 +638928.396|219966.547|105.357 +638933.328|219962.012|105.324 +638938.235|219957.498|105.098 +638943.216|219952.916|104.675 +638948.129|219948.396|104.428 +638953.027|219943.891|104.370 +638957.971|219939.344|103.931 +638962.912|219934.796|103.522 +638967.798|219930.303|103.221 +638972.739|219925.756|102.879 +638977.631|219921.257|102.593 +638982.504|219916.773|102.471 +638987.390|219912.280|102.282 +638992.282|219907.782|102.078 +638997.199|219903.258|101.685 +639002.060|219898.787|101.377 +639011.906|219889.722|100.231 +639016.785|219885.232|99.850 +639021.687|219880.721|99.341 +639060.469|219845.044|96.988 +639103.455|219805.521|97.314 +639112.877|219796.855|97.487 +639126.943|219783.932|98.515 +639131.628|219779.628|99.021 +639136.200|219775.428|99.627 +639140.885|219771.124|100.142 +639145.554|219766.833|100.465 +639150.172|219762.587|100.813 +639154.854|219758.286|101.090 +639159.539|219753.976|101.060 +639164.202|219749.691|101.179 +639168.890|219745.378|101.160 +639173.538|219741.104|101.404 +639178.132|219736.883|101.700 +639182.798|219732.591|101.867 +639187.422|219728.342|102.020 +639192.055|219724.081|102.114 +639196.682|219719.826|102.282 +639201.281|219715.602|102.636 +639205.817|219711.435|103.068 +639210.352|219707.265|103.504 +639214.948|219703.044|103.919 +639219.508|219698.853|104.263 +639224.041|219694.686|104.483 +639228.631|219690.465|104.672 +639233.206|219686.262|104.982 +639237.760|219682.074|105.138 +639242.344|219677.858|105.141 +639246.946|219673.625|105.074 +639251.582|219669.357|104.836 +639256.164|219665.142|104.647 +639260.818|219660.860|104.364 +639265.423|219656.620|104.086 +639270.017|219652.389|103.894 +639274.641|219648.134|103.565 +639279.207|219643.931|103.300 +639283.779|219639.725|103.029 +639288.390|219635.479|102.834 +639292.962|219631.269|102.596 +639297.488|219627.106|102.358 +639302.045|219622.915|102.261 +639306.517|219618.800|102.334 +639310.976|219614.704|102.498 +639315.447|219610.589|102.599 +639319.891|219606.501|102.620 +639324.311|219602.438|102.776 +639328.782|219598.327|102.931 +639333.159|219594.300|103.071 +639337.558|219590.256|103.129 +639342.002|219586.168|103.227 +639346.397|219582.126|103.330 +639350.801|219578.079|103.416 +639347.640|219578.118|103.404 +639343.306|219582.093|103.257 +639338.966|219586.071|103.154 +639334.616|219590.054|103.096 +639330.267|219594.041|103.062 +639325.884|219598.058|102.971 +639321.510|219602.067|102.837 +639317.090|219606.117|102.703 +639312.664|219610.171|102.599 +639308.303|219614.167|102.468 +639303.880|219618.221|102.389 +639299.461|219622.272|102.312 +639294.959|219626.402|102.425 +639290.393|219630.587|102.605 +639285.876|219634.732|102.831 +639281.374|219638.859|102.992 +639276.789|219643.065|103.340 +639272.220|219647.256|103.626 +639267.609|219651.487|103.900 +639263.012|219655.705|104.117 +639258.401|219659.936|104.434 +639253.847|219664.115|104.739 +639249.208|219668.370|104.970 +639244.542|219672.649|105.110 +639239.979|219676.834|105.251 +639235.385|219681.043|105.296 +639230.807|219685.237|105.007 +639226.174|219689.483|104.757 +639221.587|219693.687|104.550 +639217.000|219697.890|104.348 +639212.416|219702.087|103.873 +639207.804|219706.311|103.559 +639203.235|219710.496|103.026 +639198.584|219714.751|102.669 +639193.917|219719.028|102.434 +639189.287|219723.267|102.297 +639184.563|219727.596|102.145 +639179.884|219731.884|102.032 +639175.160|219736.209|101.910 +639170.472|219740.504|101.590 +639165.772|219744.808|101.355 +639161.041|219749.145|101.340 +639156.244|219753.540|101.139 +639151.526|219757.862|101.078 +639146.746|219762.239|100.785 +639142.040|219766.546|100.365 +639137.328|219770.865|100.017 +639132.543|219775.242|99.487 +639127.830|219779.555|98.829 +639123.039|219783.944|98.707 +639108.652|219797.118|97.515 +639103.839|219801.525|97.277 +639094.138|219810.416|97.049 +639089.322|219814.827|96.869 +639084.384|219819.353|96.899 +639079.468|219823.864|97.155 +639069.693|219832.819|96.930 +639064.892|219837.208|96.030 +639015.036|219882.946|99.374 +639010.052|219887.515|99.770 +639004.993|219892.161|100.444 +638994.937|219901.390|101.380 +638989.963|219905.953|101.849 +638984.925|219910.574|102.056 +638979.929|219915.155|102.349 +638974.955|219919.718|102.486 +638969.925|219924.332|102.721 +638964.884|219928.956|103.090 +638959.852|219933.571|103.391 +638954.816|219938.192|103.766 +638949.778|219942.815|104.208 +638944.788|219947.390|104.220 +638939.720|219952.039|104.544 +638934.706|219956.638|104.858 +638929.649|219961.277|105.126 +638924.669|219965.843|105.168 +638919.639|219970.455|105.220 +638914.625|219975.048|105.123 +638909.675|219979.577|104.382 +638904.704|219984.128|103.870 +638899.791|219988.627|103.303 +638894.713|219993.284|103.458 +638889.732|219997.844|103.087 +638884.606|220002.553|103.894 +638879.552|220007.192|104.446 +638874.477|220011.853|105.275 +638869.372|220016.541|105.982 +638864.339|220021.158|106.409 +638859.264|220025.813|106.793 +638854.199|220030.461|107.119 +638849.115|220035.127|107.704 +638844.079|220039.745|107.717 +638839.102|220044.305|107.628 +638834.051|220048.935|107.250 +638829.040|220053.525|106.979 +638824.011|220058.140|107.006 +638818.976|220062.760|107.156 +638813.938|220067.384|107.363 +638808.838|220072.066|107.820 +638803.772|220076.720|108.546 +638798.661|220081.420|109.326 +638793.568|220086.096|109.820 +638788.505|220090.750|110.658 +638783.415|220095.426|111.228 +638778.319|220100.108|111.975 +638773.292|220104.725|112.377 +638768.236|220109.364|112.535 +638763.179|220114.007|112.697 +638758.116|220118.652|112.990 +638753.020|220123.330|113.127 +638748.009|220127.930|113.422 +638742.959|220132.563|113.621 +638737.868|220137.235|113.715 +638732.903|220141.783|113.191 +638727.810|220146.459|113.392 +638722.756|220151.098|113.809 +638717.721|220155.722|113.895 +638712.637|220160.385|113.968 +638707.602|220165.003|114.062 +638702.566|220169.627|114.267 +638697.491|220174.281|114.203 +638692.471|220178.883|113.989 +638687.396|220183.541|114.062 +638682.300|220188.223|114.703 +638677.268|220192.840|114.998 +638672.193|220197.501|115.175 +638667.121|220202.155|115.300 +638662.092|220206.770|115.596 +638657.020|220211.424|115.812 +638651.951|220216.078|115.992 +638646.876|220220.736|116.379 +638641.811|220225.387|116.571 +638636.742|220230.041|116.851 +638631.676|220234.689|117.107 +638626.564|220239.383|117.315 +638621.550|220243.983|117.397 +638616.442|220248.671|117.528 +638611.382|220253.316|117.796 +638606.323|220257.961|117.991 +638601.269|220262.594|117.705 +638596.164|220267.279|117.812 +638591.107|220271.915|117.778 +638585.867|220276.724|117.924 +638580.954|220281.235|118.068 +638575.946|220285.832|118.247 +638570.841|220290.517|118.656 +638565.787|220295.159|119.015 +638560.734|220299.798|119.424 +638555.634|220304.480|119.784 +638550.584|220309.119|120.107 +638545.533|220313.755|120.329 +638540.483|220318.388|120.527 +638535.435|220323.024|120.725 +638530.385|220327.657|120.966 +638525.291|220332.335|121.295 +638520.244|220336.968|121.582 +638515.196|220341.601|121.862 +638510.106|220346.277|122.170 +638505.065|220350.907|122.688 +638500.023|220355.537|123.082 +638494.979|220360.167|123.435 +638489.938|220364.797|123.716 +638484.893|220369.426|123.904 +638479.806|220374.099|124.212 +638474.807|220378.683|124.356 +638469.717|220383.356|124.627 +638464.682|220387.983|125.026 +638459.698|220392.561|125.651 +638454.617|220397.227|126.197 +638449.579|220401.857|126.547 +638444.592|220406.438|126.946 +638439.560|220411.065|127.367 +638434.528|220415.692|127.818 +638429.538|220420.276|128.153 +638424.500|220424.903|128.431 +638419.516|220429.487|128.842 +638414.484|220434.111|129.306 +638409.495|220438.695|129.574 +638404.505|220443.280|129.891 +638399.470|220447.907|130.205 +638394.477|220452.494|130.403 +638389.530|220457.038|130.638 +638384.537|220461.626|130.854 +638379.533|220466.222|130.866 +638374.574|220470.776|130.842 +638369.572|220475.369|130.942 +638364.604|220479.929|130.811 +638359.574|220484.541|130.497 +638354.603|220489.106|130.324 +638349.629|220493.672|130.174 +638344.627|220498.266|130.400 +638334.703|220507.373|129.808 +638329.719|220511.948|129.604 +638324.760|220516.496|129.080 +638304.841|220534.769|127.562 +638294.923|220543.867|126.925 +638265.199|220571.134|124.325 +638260.282|220575.648|124.167 +638250.367|220584.738|122.978 +638240.544|220593.754|122.460 +638235.685|220598.213|122.585 +638230.823|220602.681|122.649 +638225.907|220607.189|122.170 +638211.203|220620.677|120.890 +638206.281|220625.194|120.454 +638186.652|220643.192|118.275 +638167.324|220660.944|118.534 +638138.451|220687.455|118.647 +638133.684|220691.842|119.110 +638128.938|220696.203|119.354 +638114.777|220709.218|120.860 +638105.456|220717.792|122.073 +638100.695|220722.166|122.283 +638096.050|220726.436|122.646 +638091.292|220730.807|122.896 +638086.540|220735.169|122.853 +638081.867|220739.467|123.039 +638072.537|220748.041|123.612 +638058.532|220760.915|124.468 +638053.850|220765.216|124.700 +638049.199|220769.493|124.795 +638021.325|220795.108|126.023 +638016.716|220799.342|126.212 +637998.294|220816.270|126.840 +637984.529|220828.923|127.419 +637975.343|220837.362|127.620 +637970.807|220841.529|127.806 +637966.229|220845.735|127.724 +637961.697|220849.902|127.958 +637957.207|220854.029|128.470 +637952.720|220858.153|128.708 +637948.182|220862.326|128.943 +637943.598|220866.532|128.629 +637939.096|220870.665|128.534 +637934.554|220874.841|128.498 +637929.961|220879.056|128.196 +637925.435|220883.211|128.019 +637920.924|220887.353|127.937 +637916.464|220891.452|128.187 +637911.859|220895.677|127.608 +637902.928|220903.879|127.559 +637898.347|220908.082|127.184 +637889.297|220916.385|126.309 +637880.306|220924.639|125.557 +637875.780|220928.793|125.331 +637871.247|220932.951|124.819 +637866.727|220937.096|124.130 +637862.201|220941.245|123.441 +637857.748|220945.332|123.149 +637853.264|220949.444|122.734 +637818.026|220981.786|119.963 +637809.202|220989.882|118.967 +637800.616|220997.761|118.473 +637792.127|221005.558|118.531 +637787.939|221009.410|118.845 +637779.511|221017.152|118.781 +637775.482|221020.859|119.400 +637771.330|221024.675|119.701 +637767.213|221028.460|119.939 +637750.863|221043.490|121.070 +637738.699|221054.664|121.664 +637734.687|221058.349|121.774 +637730.621|221062.080|121.890 +637718.612|221073.107|122.228 +637714.613|221076.780|122.231 +637710.654|221080.420|122.411 +637706.637|221084.105|122.365 +637702.641|221087.771|122.198 +637698.681|221091.405|122.213 +637690.775|221098.662|121.862 +637640.632|221144.672|120.149 +637632.887|221151.770|118.979 +637629.400|221154.974|119.643 +637622.103|221161.679|120.113 +637604.150|221178.166|120.738 +637600.645|221181.388|120.975 +637593.842|221187.642|122.073 +637590.343|221190.855|122.164 +637586.841|221194.071|122.237 +637580.059|221200.304|123.075 +637576.697|221203.391|123.316 +637573.292|221206.519|123.597 +637566.578|221212.685|123.947 +637563.197|221215.791|124.145 +637556.699|221221.765|124.947 +637553.398|221224.795|125.066 +637550.170|221227.763|125.462 +637798.284|220997.410|118.668 +637806.888|220989.495|118.958 +637815.584|220981.497|119.546 +637819.949|220977.485|119.936 +637824.283|220973.496|119.948 +637833.056|220965.431|120.826 +637837.454|220961.383|120.963 +637855.352|220944.936|123.039 +637859.750|220940.891|123.283 +637864.292|220936.718|124.051 +637873.314|220928.425|125.041 +637877.816|220924.285|125.395 +637882.290|220920.168|125.627 +637886.856|220915.974|126.376 +637891.388|220911.810|126.672 +637895.954|220907.610|127.209 +637904.879|220899.399|127.440 +637914.017|220890.998|128.105 +637918.452|220886.911|127.708 +637922.978|220882.744|127.852 +637927.577|220878.517|128.144 +637932.177|220874.286|128.473 +637936.743|220870.086|128.617 +637941.266|220865.922|128.544 +637945.881|220861.676|128.717 +637950.447|220857.476|128.620 +637955.000|220853.279|128.492 +637959.511|220849.122|127.785 +637964.074|220844.922|127.724 +637968.710|220840.654|127.839 +637977.946|220832.147|127.562 +637982.512|220827.941|127.285 +637987.123|220823.692|126.989 +637991.741|220819.437|126.757 +638005.695|220806.587|126.489 +638019.670|220793.709|125.867 +638024.272|220789.466|125.313 +638057.206|220759.132|124.435 +638061.988|220754.728|124.225 +638066.704|220750.382|123.904 +638076.085|220741.731|122.954 +638080.886|220737.312|122.950 +638085.671|220732.904|122.853 +638090.457|220728.497|122.789 +638095.266|220724.065|122.548 +638104.810|220715.272|121.871 +638109.528|220710.922|121.314 +638128.648|220693.292|119.253 +638133.458|220688.858|118.714 +638143.218|220679.875|118.869 +638148.131|220675.355|119.311 +638152.977|220670.890|119.159 +638162.664|220661.962|118.391 +638167.538|220657.475|118.558 +638177.240|220648.538|118.037 +638197.006|220630.354|119.412 +638202.066|220625.709|120.677 +638211.938|220616.626|121.277 +638221.893|220607.473|122.399 +638226.809|220602.946|122.316 +638231.747|220598.402|122.499 +638236.731|220593.815|122.728 +638241.653|220589.282|122.780 +638246.646|220584.689|123.161 +638251.583|220580.147|123.463 +638261.538|220570.985|123.990 +638271.569|220561.762|124.980 +638281.515|220552.612|125.675 +638306.545|220529.587|127.693 +638321.502|220515.828|128.699 +638331.566|220506.575|129.787 +638346.559|220492.776|130.436 +638351.531|220488.201|130.519 +638356.481|220483.638|130.284 +638361.513|220479.011|130.628 +638366.539|220474.388|130.948 +638371.544|220469.782|130.866 +638376.503|220465.213|130.897 +638381.557|220460.562|130.854 +638386.558|220455.956|130.839 +638391.551|220451.357|130.534 +638396.544|220446.757|130.308 +638401.582|220442.118|130.034 +638406.572|220437.519|129.723 +638411.610|220432.877|129.507 +638416.596|220428.283|129.110 +638421.626|220423.647|128.629 +638426.664|220419.008|128.294 +638431.654|220414.409|128.028 +638436.686|220409.773|127.532 +638441.718|220405.134|127.138 +638446.705|220400.537|126.712 +638451.743|220395.895|126.337 +638456.775|220391.259|125.791 +638461.804|220386.620|125.224 +638466.843|220381.978|124.764 +638471.881|220377.336|124.404 +638476.923|220372.691|124.157 +638481.964|220368.046|123.877 +638487.005|220363.401|123.624 +638492.050|220358.755|123.383 +638497.094|220354.110|123.142 +638502.136|220349.462|122.822 +638507.177|220344.817|122.344 +638512.267|220340.126|121.875 +638517.312|220335.478|121.698 +638522.359|220330.830|121.369 +638527.452|220326.136|121.100 +638532.454|220321.530|120.829 +638537.550|220316.836|120.646 +638542.647|220312.139|120.347 +638547.694|220307.488|120.104 +638552.793|220302.791|119.860 +638557.893|220298.094|119.439 +638562.943|220293.437|119.040 +638568.046|220288.740|118.741 +638573.099|220284.082|118.406 +638578.202|220279.382|118.220 +638583.258|220274.725|118.086 +638588.355|220270.034|118.055 +638593.408|220265.380|118.022 +638598.511|220260.680|118.049 +638603.613|220255.986|118.147 +638608.670|220251.325|118.001 +638613.784|220246.613|117.479 +638618.883|220241.919|117.699 +638623.943|220237.262|117.635 +638629.006|220232.598|117.482 +638634.117|220227.892|117.269 +638639.183|220223.223|116.918 +638644.249|220218.556|116.775 +638649.367|220213.841|116.440 +638654.390|220209.214|116.211 +638659.507|220204.499|115.977 +638664.582|220199.823|115.660 +638669.657|220195.151|115.465 +638674.732|220190.475|115.236 +638679.853|220185.760|115.148 +638684.882|220181.127|114.919 +638690.006|220176.408|114.843 +638695.081|220171.736|114.773 +638700.162|220167.054|114.568 +638705.243|220162.375|114.428 +638710.324|220157.694|114.294 +638715.408|220153.018|114.248 +638720.507|220148.324|113.834 +638725.548|220143.685|113.685 +638730.629|220139.009|113.733 +638735.707|220134.343|113.913 +638740.749|220129.704|113.852 +638745.845|220125.013|113.688 +638750.908|220120.356|113.334 +638756.004|220115.668|113.233 +638761.061|220111.010|112.999 +638766.114|220106.362|112.877 +638771.168|220101.714|112.810 +638776.249|220097.035|112.310 +638781.303|220092.378|111.496 +638786.399|220087.681|110.813 +638791.498|220082.984|110.134 +638796.567|220078.311|109.265 +638801.678|220073.602|108.524 +638806.750|220068.930|107.720 +638811.795|220064.284|107.363 +638816.827|220059.655|107.256 +638821.871|220055.009|106.955 +638826.895|220050.392|107.043 +638831.851|220045.835|107.363 +638836.855|220041.235|107.717 +638841.827|220036.666|107.899 +638846.804|220032.085|107.985 +638851.867|220027.425|107.649 +638856.826|220022.865|107.457 +638861.928|220018.162|106.692 +638866.924|220013.563|106.113 +638871.959|220008.924|105.659 +638877.031|220004.248|104.830 +638882.030|219999.645|104.342 +638887.117|219994.958|103.431 +638892.122|219990.346|102.937 +638897.072|219985.795|103.123 +638901.997|219981.269|103.571 +638906.914|219976.755|104.150 +638911.833|219972.235|104.678 +638916.732|219967.733|104.955 +638921.709|219963.155|104.925 +638926.641|219958.616|104.873 +638931.591|219954.059|104.693 +638936.553|219949.494|104.397 +638941.478|219944.955|104.010 +638946.425|219940.404|103.943 +638951.390|219935.835|103.718 +638956.331|219931.285|103.297 +638961.257|219926.752|103.047 +638966.192|219922.211|102.754 +638971.084|219917.706|102.434 +638976.003|219913.180|102.322 +638980.941|219908.635|102.084 +638985.848|219904.115|101.712 +638990.765|219899.589|101.294 +638995.681|219895.062|100.910 +639000.622|219890.512|100.340 +639005.578|219885.946|99.691 +639030.002|219863.464|98.252 +639039.719|219854.521|98.106 +639054.300|219841.097|97.301 +639063.914|219832.252|97.100 +639073.524|219823.410|96.997 +639078.300|219819.018|97.033 +639083.076|219814.622|97.070 +639092.656|219805.817|97.039 +639097.323|219801.531|97.561 +639106.772|219792.847|97.862 +639116.181|219784.200|98.167 +639120.783|219779.979|99.188 +639125.493|219775.650|99.200 +639130.125|219771.399|99.716 +639134.761|219767.137|100.212 +639139.370|219762.907|100.599 +639144.015|219758.643|101.087 +639148.694|219754.345|101.371 +639153.336|219750.081|101.584 +639157.990|219745.801|101.727 +639162.663|219741.504|101.785 +639167.259|219737.282|102.032 +639171.892|219733.027|102.367 +639176.577|219728.720|102.410 +639181.149|219724.520|102.550 +639185.822|219720.226|102.706 +639190.458|219715.964|102.800 +639195.021|219711.770|103.035 +639199.580|219707.582|103.321 +639204.171|219703.364|103.727 +639208.709|219699.197|104.163 +639213.202|219695.073|104.589 +639217.780|219690.864|104.821 +639222.312|219686.697|105.034 +639226.836|219682.546|105.336 +639231.316|219678.428|105.598 +639235.910|219674.204|105.531 +639240.524|219669.958|105.376 +639245.096|219665.755|105.205 +639249.674|219661.542|105.004 +639254.237|219657.345|104.644 +639258.824|219653.124|104.446 +639263.436|219648.881|104.150 +639267.984|219644.699|103.943 +639272.556|219640.490|103.617 +639277.082|219636.326|103.294 +639281.636|219632.135|103.117 +639286.202|219627.938|102.901 +639290.716|219623.784|102.703 +639295.215|219619.647|102.611 +639299.707|219615.514|102.565 +639304.182|219611.403|102.639 +639308.583|219607.358|102.821 +639313.052|219603.252|102.962 +639317.471|219599.189|103.090 +639321.882|219595.135|103.285 +639326.280|219591.094|103.315 +639330.666|219587.061|103.407 +639335.119|219582.968|103.446 +639339.511|219578.929|103.541 +639343.910|219574.887|103.638 +639348.271|219570.876|103.669 +639346.470|219569.361|103.681 +639342.169|219573.312|103.611 +639337.811|219577.314|103.602 +639333.467|219581.300|103.519 +639329.087|219585.324|103.388 +639324.695|219589.356|103.334 +639320.306|219593.386|103.279 +639315.923|219597.409|103.205 +639311.558|219601.417|103.071 +639307.160|219605.450|102.849 +639302.746|219609.504|102.730 +639298.321|219613.567|102.684 +639293.895|219617.633|102.669 +639289.408|219621.754|102.709 +639284.900|219625.896|102.888 +639280.444|219629.989|103.081 +639275.933|219634.135|103.312 +639271.364|219638.335|103.596 +639266.795|219642.532|103.900 +639262.232|219646.726|104.205 +639257.685|219650.908|104.455 +639253.143|219655.077|104.678 +639248.592|219659.259|104.982 +639243.956|219663.523|105.232 +639239.378|219667.730|105.446 +639234.812|219671.924|105.626 +639230.286|219676.078|105.604 +639225.674|219680.315|105.531 +639221.148|219684.469|105.263 +639216.570|219688.670|105.016 +639212.059|219692.809|104.693 +639207.456|219697.033|104.333 +639202.930|219701.185|103.855 +639198.337|219705.400|103.468 +639193.722|219709.640|103.239 +639189.059|219713.922|103.004 +639184.435|219718.168|102.855 +639179.753|219722.469|102.764 +639175.035|219726.803|102.617 +639170.371|219731.086|102.468 +639165.665|219735.405|102.273 +639160.980|219739.708|101.989 +639156.274|219744.030|101.834 +639151.571|219748.350|101.681 +639146.822|219752.711|101.526 +639142.122|219757.024|101.084 +639137.410|219761.349|100.727 +639132.719|219765.656|100.249 +639127.989|219769.996|99.722 +639123.252|219774.343|99.249 +639118.449|219778.759|99.243 +639104.181|219791.854|98.006 +639094.564|219800.687|97.548 +639089.730|219805.122|97.161 +639084.920|219809.541|96.991 +639080.031|219814.031|97.033 +639060.418|219832.057|97.198 +639045.562|219845.715|97.750 +639035.592|219854.883|98.265 +639025.637|219864.030|98.374 +639000.543|219887.104|99.840 +638995.455|219891.786|100.398 +638990.423|219896.416|100.947 +638985.354|219901.079|101.407 +638980.289|219905.739|101.895 +638975.305|219910.321|102.120 +638970.224|219914.993|102.376 +638965.244|219919.571|102.626 +638960.163|219924.247|102.949 +638955.142|219928.859|103.166 +638950.058|219933.534|103.571 +638944.993|219938.195|103.852 +638940.003|219942.782|103.894 +638934.892|219947.479|104.193 +638929.829|219952.136|104.531 +638924.784|219956.775|104.720 +638919.709|219961.436|104.742 +638914.638|219966.099|104.766 +638909.608|219970.717|104.385 +638904.637|219975.280|103.894 +638899.620|219979.882|103.382 +638894.551|219984.539|103.452 +638889.546|219989.130|102.319 +638884.295|219993.970|103.952 +638879.186|219998.673|104.605 +638874.078|220003.373|105.281 +638868.939|220008.104|105.830 +638863.800|220012.834|106.397 +638858.652|220017.571|107.110 +638853.571|220022.243|107.631 +638848.459|220026.946|107.994 +638843.323|220031.668|108.113 +638838.312|220036.267|107.814 +638833.256|220040.912|107.546 +638828.208|220045.545|107.174 +638823.149|220050.191|106.976 +638818.074|220054.854|107.012 +638812.990|220059.523|107.177 +638807.915|220064.187|107.272 +638802.794|220068.902|108.137 +638797.686|220073.602|108.838 +638792.565|220078.311|109.750 +638787.456|220083.018|110.603 +638782.351|220087.715|111.435 +638777.209|220092.445|112.124 +638772.122|220097.127|112.828 +638767.013|220101.821|113.032 +638761.914|220106.505|113.130 +638756.861|220111.151|113.322 +638751.764|220115.832|113.453 +638746.711|220120.481|113.727 +638741.611|220125.168|114.008 +638736.521|220129.841|114.084 +638731.437|220134.514|114.136 +638726.414|220139.128|113.919 +638721.330|220143.795|113.941 +638716.246|220148.467|114.081 +638711.150|220153.152|114.489 +638706.023|220157.861|114.550 +638700.988|220162.491|114.809 +638695.903|220167.164|115.074 +638690.829|220171.830|115.184 +638685.751|220176.494|115.334 +638680.679|220181.154|115.443 +638675.607|220185.815|115.556 +638670.584|220190.432|115.684 +638665.509|220195.099|115.995 +638660.486|220199.710|116.129 +638655.463|220204.328|116.406 +638650.394|220208.989|116.708 +638645.325|220213.646|116.894 +638640.305|220218.261|117.229 +638635.242|220222.912|117.373 +638630.228|220227.523|117.583 +638625.165|220232.175|117.827 +638620.109|220236.823|117.909 +638615.147|220241.383|117.991 +638610.090|220246.028|118.055 +638605.033|220250.673|118.214 +638600.025|220255.276|118.278 +638594.972|220259.918|118.226 +638589.918|220264.557|118.077 +638584.919|220269.150|118.174 +638579.866|220273.792|118.235 +638574.812|220278.437|118.400 +638569.759|220283.080|118.570 +638564.708|220287.725|118.775 +638559.703|220292.324|119.046 +638554.653|220296.969|119.470 +638549.602|220301.611|119.896 +638544.604|220306.208|120.128 +638539.553|220310.847|120.393 +638534.509|220315.486|120.658 +638529.555|220320.037|120.844 +638524.511|220324.676|121.143 +638519.464|220329.315|121.396 +638514.468|220333.908|121.719 +638509.469|220338.501|121.917 +638504.428|220343.134|122.292 +638499.438|220347.725|122.795 +638494.442|220352.318|123.018 +638489.447|220356.908|123.228 +638484.454|220361.499|123.487 +638479.462|220366.086|123.767 +638474.469|220370.676|123.981 +638469.479|220375.263|124.404 +638464.490|220379.854|124.770 +638459.503|220384.438|125.249 +638454.520|220389.022|125.764 +638449.533|220393.603|126.279 +638444.550|220398.187|126.733 +638439.563|220402.769|127.129 +638434.577|220407.353|127.556 +638429.547|220411.977|128.025 +638424.604|220416.518|128.312 +638419.571|220421.142|128.669 +638414.591|220425.723|129.174 +638409.650|220430.262|129.525 +638404.612|220434.892|129.723 +638399.619|220439.476|129.982 +638394.678|220444.017|130.269 +638389.692|220448.601|130.610 +638384.696|220453.189|130.799 +638379.691|220457.785|130.732 +638374.747|220462.327|131.049 +638364.774|220471.483|130.887 +638359.803|220476.046|130.680 +638349.869|220485.162|130.564 +638344.904|220489.725|130.531 +638339.930|220494.288|130.409 +638329.999|220503.399|129.744 +638325.019|220507.974|129.568 +638305.140|220526.207|127.775 +638295.194|220535.332|127.364 +638285.249|220544.455|126.428 +638250.492|220576.340|123.709 +638240.592|220585.420|122.758 +638235.676|220589.934|122.737 +638220.893|220603.504|122.429 +638215.986|220608.009|122.067 +638211.027|220612.551|121.207 +638206.156|220617.019|120.796 +638191.309|220630.631|118.845 +638186.469|220635.069|118.415 +638176.715|220644.021|117.812 +638171.878|220648.468|118.418 +638162.234|220657.326|118.552 +638152.633|220666.144|118.732 +638133.446|220683.764|119.000 +638123.869|220692.558|119.183 +638114.484|220701.193|120.637 +638109.699|220705.591|121.000 +638105.026|220709.886|121.518 +638090.850|220722.916|122.606 +638086.135|220727.247|122.816 +638081.444|220731.554|122.862 +638076.710|220735.903|122.969 +638072.010|220740.216|122.996 +638058.069|220753.036|124.313 +638048.766|220761.577|124.496 +638034.815|220774.391|124.913 +638025.616|220782.843|125.291 +638016.415|220791.298|125.724 +638002.656|220803.938|126.440 +637998.072|220808.147|126.523 +637988.925|220816.551|126.843 +637966.171|220837.448|127.440 +637961.633|220841.617|127.623 +637957.155|220845.735|128.196 +637952.675|220849.853|128.464 +637943.619|220858.168|128.449 +637939.138|220862.283|128.480 +637934.627|220866.425|128.617 +637930.113|220870.570|128.461 +637925.596|220874.716|128.318 +637921.076|220878.861|127.885 +637916.541|220883.022|127.684 +637912.036|220887.158|127.373 +637907.643|220891.193|127.748 +637894.275|220903.462|127.001 +637863.011|220932.134|124.005 +637858.522|220936.252|123.493 +637854.108|220940.300|123.161 +637849.689|220944.354|122.795 +637832.041|220960.542|121.237 +637818.898|220972.596|120.122 +637810.202|220980.573|119.467 +637788.750|221000.260|118.324 +637780.468|221007.868|118.939 +637776.207|221011.772|118.458 +637768.072|221019.255|119.348 +637764.009|221022.989|119.835 +637759.897|221026.766|119.872 +637747.791|221037.888|120.631 +637739.781|221045.252|121.314 +637731.755|221052.628|121.737 +637727.759|221056.301|121.926 +637711.763|221070.992|122.088 +637707.773|221074.659|122.134 +637703.811|221078.295|122.103 +637699.806|221081.971|121.902 +637695.844|221085.610|121.893 +637691.875|221089.253|121.643 +637680.094|221100.067|121.317 +637656.789|221121.458|120.369 +637645.469|221131.852|120.369 +637626.760|221149.024|119.470 +637619.525|221155.672|119.985 +637612.398|221162.222|120.332 +637608.844|221165.486|120.555 +637601.706|221172.043|120.716 +637598.198|221175.267|120.942 +637594.705|221178.477|121.237 +637591.358|221181.559|121.887 +637587.874|221184.759|122.030 +637584.436|221187.920|122.356 +637577.602|221194.199|122.786 +637574.216|221197.308|122.938 +637570.830|221200.423|123.289 +637567.501|221203.483|123.661 +637547.823|221221.570|125.374 +637801.853|220985.822|118.894 +637806.248|220981.783|119.646 +637810.494|220977.869|119.683 +637814.768|220973.931|119.628 +637827.786|220961.947|120.564 +637849.905|220941.592|122.886 +637854.334|220937.517|123.283 +637858.772|220933.430|123.478 +637863.271|220929.293|124.292 +637872.302|220920.981|125.112 +637876.779|220916.864|125.608 +637894.820|220900.255|126.937 +637899.243|220896.180|126.968 +637903.760|220892.019|127.279 +637908.283|220887.853|127.367 +637912.795|220883.698|127.382 +637917.293|220879.556|127.644 +637921.868|220875.347|128.086 +637926.404|220871.168|128.327 +637930.961|220866.974|128.409 +637935.475|220862.813|128.571 +637939.977|220858.662|128.373 +637944.546|220854.453|128.284 +637949.093|220850.265|128.388 +637953.604|220846.107|128.297 +637958.091|220841.968|127.766 +637962.651|220837.762|127.404 +637967.250|220833.525|127.599 +637971.807|220829.328|127.559 +637976.434|220825.067|127.675 +637990.153|220812.424|126.757 +637994.731|220808.199|126.309 +637999.404|220803.901|126.471 +638004.003|220799.659|126.203 +638013.254|220791.136|125.700 +638017.954|220786.805|125.474 +638022.575|220782.544|125.054 +638036.614|220769.611|124.810 +638041.350|220765.247|124.575 +638050.750|220756.587|124.368 +638055.438|220752.268|124.188 +638060.114|220747.958|123.959 +638064.820|220743.618|123.219 +638069.514|220739.293|123.146 +638074.232|220734.946|122.890 +638078.981|220730.569|122.521 +638083.748|220726.180|122.697 +638088.509|220721.791|122.457 +638102.704|220708.709|121.512 +638107.480|220704.305|121.052 +638112.213|220699.943|120.652 +638126.457|220686.803|118.668 +638136.107|220677.915|118.756 +638140.971|220673.435|118.741 +638150.664|220664.507|118.442 +638174.960|220642.122|117.769 +638179.873|220637.599|117.918 +638184.866|220633.006|118.436 +638189.755|220628.510|118.884 +638194.729|220623.935|119.265 +638199.722|220619.348|120.366 +638209.612|220610.246|121.250 +638224.514|220596.539|122.713 +638234.411|220587.429|122.899 +638239.321|220582.906|122.868 +638249.246|220573.774|123.551 +638259.194|220564.615|124.097 +638269.170|220555.440|125.066 +638284.142|220541.666|126.373 +638294.146|220532.467|127.492 +638304.116|220523.287|127.605 +638309.136|220518.669|128.251 +638324.187|220504.822|129.519 +638339.241|220490.969|130.439 +638344.209|220486.394|130.531 +638349.208|220481.788|130.287 +638354.231|220477.164|130.567 +638359.254|220472.541|130.845 +638364.265|220467.926|130.955 +638374.278|220458.706|131.019 +638379.222|220454.152|130.759 +638384.272|220449.501|130.802 +638389.265|220444.901|130.634 +638394.200|220440.351|130.193 +638399.238|220435.708|129.985 +638404.225|220431.112|129.711 +638409.214|220426.516|129.525 +638414.243|220421.880|129.101 +638419.224|220417.286|128.623 +638424.259|220412.647|128.321 +638429.291|220408.008|127.974 +638434.272|220403.415|127.477 +638439.301|220398.779|127.023 +638444.333|220394.140|126.654 +638449.314|220389.546|126.142 +638454.346|220384.907|125.624 +638459.375|220380.268|125.133 +638464.410|220375.629|124.709 +638469.443|220370.987|124.231 +638474.478|220366.345|123.801 +638479.516|220361.700|123.551 +638484.558|220357.058|123.338 +638489.599|220352.412|123.112 +638494.641|220347.767|122.905 +638499.728|220343.076|122.588 +638504.766|220338.431|122.070 +638509.807|220333.786|121.838 +638514.852|220329.138|121.618 +638519.893|220324.490|121.241 +638524.938|220319.842|121.021 +638529.982|220315.193|120.768 +638535.030|220310.542|120.539 +638540.074|220305.894|120.277 +638545.122|220301.243|119.966 +638550.120|220296.634|119.589 +638555.217|220291.937|119.265 +638560.267|220287.283|118.930 +638565.269|220282.674|118.863 +638570.320|220278.020|118.729 +638575.419|220273.320|118.421 +638580.424|220268.711|118.299 +638585.523|220264.014|118.272 +638590.519|220259.415|118.500 +638595.569|220254.767|118.662 +638600.623|220250.106|118.391 +638605.676|220245.452|118.308 +638610.730|220240.798|118.369 +638615.787|220236.140|118.223 +638620.840|220231.486|118.235 +638625.897|220226.826|118.077 +638630.957|220222.165|117.897 +638635.971|220217.544|117.711 +638641.033|220212.881|117.485 +638646.096|220208.211|117.223 +638651.113|220203.591|117.028 +638656.182|220198.918|116.748 +638661.251|220194.245|116.467 +638666.274|220189.615|116.199 +638671.343|220184.949|116.080 +638676.363|220180.322|115.980 +638681.389|220175.692|115.772 +638686.464|220171.017|115.623 +638691.487|220166.387|115.492 +638696.519|220161.751|115.245 +638701.551|220157.115|115.053 +638706.532|220152.524|114.959 +638711.625|220147.827|114.477 +638716.615|220143.228|114.285 +638721.644|220138.595|114.276 +638726.664|220133.971|114.477 +638731.650|220129.375|114.401 +638736.686|220124.733|114.352 +638741.733|220120.081|114.102 +638746.732|220115.473|113.886 +638751.773|220110.824|113.785 +638756.772|220106.219|113.657 +638761.774|220101.607|113.489 +638766.815|220096.959|113.483 +638771.845|220092.320|112.916 +638776.886|220087.666|112.185 +638781.930|220083.008|111.463 +638786.981|220078.348|110.694 +638792.047|220073.666|109.731 +638797.122|220068.981|108.732 +638802.191|220064.300|107.869 +638807.259|220059.621|107.049 +638812.231|220055.040|107.058 +638817.263|220050.401|106.860 +638822.231|220045.823|106.936 +638827.236|220041.214|107.214 +638832.198|220036.645|107.409 +638837.139|220032.098|107.912 +638842.156|220027.474|108.027 +638847.139|220022.880|108.009 +638852.150|220018.260|107.662 +638857.131|220013.666|107.147 +638862.169|220009.015|106.534 +638867.162|220004.406|105.952 +638872.200|219999.758|105.431 +638877.263|219995.086|104.693 +638882.277|219990.459|103.974 +638887.318|219985.807|103.568 +638892.396|219981.114|102.227 +638897.261|219976.642|103.306 +638902.211|219972.079|103.422 +638907.118|219967.565|104.053 +638912.044|219963.033|104.498 +638917.012|219958.452|104.495 +638921.986|219953.867|104.464 +638926.930|219949.311|104.291 +638931.929|219944.702|104.068 +638936.946|219940.075|103.705 +638941.881|219935.528|103.696 +638946.849|219930.946|103.379 +638951.869|219926.316|103.081 +638956.831|219921.741|102.892 +638961.799|219917.160|102.687 +638966.734|219912.610|102.367 +638971.760|219907.974|102.126 +638981.706|219898.799|101.392 +638986.641|219894.248|100.779 +638991.658|219889.618|100.316 +638996.641|219885.019|99.773 +639001.637|219880.410|99.164 +639011.506|219871.306|98.637 +639026.304|219857.663|97.929 +639031.193|219853.155|97.954 +639060.475|219826.168|97.558 +639065.331|219821.694|97.628 +639075.063|219812.720|97.344 +639079.900|219808.261|97.265 +639084.768|219803.777|97.350 +639099.136|219790.540|97.990 +639103.958|219786.093|97.789 +639108.732|219781.701|98.289 +639118.083|219773.093|99.612 +639122.865|219768.689|99.770 +639127.568|219764.358|100.127 +639132.250|219760.045|100.621 +639136.935|219755.735|101.133 +639141.632|219751.410|101.572 +639146.320|219747.091|101.773 +639151.023|219742.759|101.895 +639155.704|219738.447|102.160 +639160.389|219734.131|102.425 +639165.016|219729.869|102.767 +639169.728|219725.526|102.888 +639174.407|219721.216|102.953 +639179.055|219716.934|103.205 +639183.682|219712.670|103.318 +639188.358|219708.363|103.443 +639192.960|219704.120|103.718 +639197.535|219699.908|103.888 +639202.168|219695.640|104.327 +639206.701|219691.465|104.754 +639211.251|219687.277|105.120 +639215.805|219683.083|105.473 +639220.386|219678.861|105.684 +639224.998|219674.609|105.735 +639229.579|219670.388|105.702 +639234.181|219666.142|105.571 +639238.796|219661.887|105.400 +639243.420|219657.623|105.205 +639248.010|219653.389|104.931 +639252.610|219649.146|104.632 +639257.200|219644.912|104.406 +639261.808|219640.660|104.105 +639266.368|219636.454|103.818 +639270.922|219632.251|103.571 +639275.476|219628.054|103.361 +639280.014|219623.866|103.245 +639284.525|219619.705|103.032 +639289.015|219615.566|102.953 +639293.453|219611.476|102.885 +639297.918|219607.358|102.965 +639302.332|219603.292|103.062 +639306.788|219599.186|103.221 +639311.137|219595.175|103.404 +639315.581|219591.082|103.407 +639319.961|219587.043|103.486 +639324.302|219583.041|103.510 +639328.679|219579.005|103.632 +639333.068|219574.964|103.730 +639337.433|219570.937|103.696 +639341.782|219566.929|103.751 +639340.615|219565.527|103.577 +639336.195|219569.584|103.593 +639331.742|219573.671|103.547 +639327.286|219577.759|103.526 +639322.848|219581.831|103.434 +639318.373|219585.940|103.300 +639313.868|219590.073|103.318 +639309.379|219594.197|103.294 +639304.962|219598.250|103.175 +639300.460|219602.377|102.977 +639295.983|219606.489|102.937 +639291.472|219610.628|102.828 +639286.891|219614.835|102.840 +639282.413|219618.946|102.855 +639277.792|219623.189|103.099 +639273.242|219627.368|103.269 +639268.633|219631.602|103.498 +639264.021|219635.838|103.772 +639259.416|219640.069|104.028 +639254.804|219644.306|104.336 +639250.162|219648.573|104.571 +639245.514|219652.843|104.861 +639240.914|219657.068|105.174 +639236.288|219661.317|105.388 +639231.676|219665.553|105.549 +639227.076|219669.778|105.668 +639222.492|219673.987|105.714 +639217.935|219678.169|105.629 +639213.370|219682.357|105.321 +639208.758|219686.588|105.004 +639204.253|219690.718|104.672 +639199.724|219694.872|104.205 +639195.121|219699.094|103.888 +639190.543|219703.300|103.748 +639185.931|219707.531|103.507 +639181.308|219711.773|103.358 +639176.681|219716.022|103.263 +639172.075|219720.250|103.050 +639167.454|219724.490|102.931 +639162.739|219728.821|102.812 +639158.152|219733.030|102.544 +639153.522|219737.279|102.230 +639148.840|219741.577|101.962 +639144.192|219745.844|101.816 +639139.510|219750.139|101.563 +639134.859|219754.406|101.142 +639130.223|219758.658|100.633 +639125.535|219762.956|100.161 +639120.829|219767.278|99.831 +639116.160|219771.560|99.578 +639102.120|219784.435|97.826 +639097.317|219788.848|97.887 +639092.501|219793.271|98.064 +639087.770|219797.611|97.664 +639063.679|219819.743|98.033 +639044.196|219837.647|98.652 +639029.660|219850.985|97.710 +639024.808|219855.441|97.768 +639014.886|219864.564|98.484 +639000.027|219878.219|99.008 +638984.976|219892.060|100.596 +638979.950|219896.684|101.148 +638974.933|219901.298|101.648 +638969.870|219905.953|102.139 +638964.899|219910.519|102.303 +638959.864|219915.149|102.626 +638954.856|219919.751|102.736 +638949.799|219924.399|102.885 +638944.773|219929.020|103.221 +638939.753|219933.635|103.541 +638934.721|219938.256|103.516 +638929.698|219942.873|103.928 +638924.605|219947.555|104.102 +638919.560|219952.191|104.294 +638914.534|219956.806|104.327 +638909.477|219961.451|104.202 +638904.503|219966.014|103.751 +638899.486|219970.619|103.248 +638894.438|219975.252|103.068 +638889.452|219979.824|102.255 +638884.273|219984.597|103.626 +638879.159|219989.304|104.321 +638873.998|219994.052|105.028 +638868.844|219998.792|105.702 +638863.763|220003.465|106.125 +638858.637|220008.180|106.574 +638853.495|220012.910|107.232 +638848.371|220017.623|107.762 +638843.220|220022.359|108.024 +638838.151|220027.013|107.884 +638833.052|220031.695|107.525 +638827.949|220036.380|107.192 +638822.890|220041.028|106.979 +638817.781|220045.719|106.756 +638812.654|220050.434|106.842 +638807.521|220055.156|107.083 +638802.343|220059.917|107.281 +638797.216|220064.638|108.201 +638791.986|220069.460|109.320 +638786.807|220074.233|110.466 +638781.653|220078.979|111.277 +638776.459|220083.764|112.057 +638771.311|220088.504|112.883 +638766.175|220093.234|113.584 +638761.027|220097.968|113.712 +638755.882|220102.699|113.819 +638750.835|220107.341|113.928 +638745.693|220112.068|114.035 +638740.551|220116.796|114.178 +638735.448|220121.486|114.486 +638730.309|220126.214|114.642 +638725.180|220130.929|114.678 +638720.096|220135.605|114.754 +638714.984|220140.299|114.407 +638709.848|220145.023|114.632 +638704.752|220149.711|115.102 +638699.619|220154.429|115.324 +638694.492|220159.145|115.495 +638689.362|220163.863|115.751 +638684.239|220168.575|115.888 +638679.118|220173.287|116.077 +638674.046|220177.948|116.166 +638668.880|220182.700|116.309 +638663.762|220187.406|116.437 +638658.690|220192.069|116.656 +638653.570|220196.781|117.016 +638648.452|220201.487|117.287 +638643.338|220206.191|117.525 +638638.223|220210.897|117.787 +638633.112|220215.597|118.061 +638628.049|220220.251|118.220 +638622.943|220224.948|118.314 +638617.838|220229.642|118.372 +638612.781|220234.287|118.382 +638607.676|220238.981|118.516 +638602.622|220243.629|118.488 +638597.569|220248.271|118.394 +638592.463|220252.971|118.872 +638587.413|220257.613|118.802 +638582.368|220262.246|118.452 +638577.315|220266.892|118.400 +638572.212|220271.582|118.644 +638567.208|220276.185|118.887 +638562.108|220280.876|119.006 +638557.058|220285.521|119.168 +638552.053|220290.120|119.256 +638547.005|220294.766|119.537 +638541.955|220299.411|119.832 +638536.907|220304.056|120.332 +638531.860|220308.698|120.515 +638526.812|220313.340|120.786 +638521.814|220317.936|120.994 +638516.769|220322.579|121.320 +638511.773|220327.175|121.594 +638506.726|220331.814|121.765 +638501.685|220336.453|122.192 +638496.738|220341.004|122.524 +638491.696|220345.643|122.838 +638486.704|220350.236|123.033 +638481.708|220354.830|123.216 +638476.666|220359.469|123.459 +638471.720|220364.016|123.740 +638466.733|220368.607|124.243 +638461.747|220373.197|124.691 +638456.757|220377.787|125.118 +638451.822|220382.332|125.636 +638446.839|220386.919|126.191 +638441.855|220391.506|126.709 +638436.914|220396.054|126.983 +638431.980|220400.595|127.498 +638426.996|220405.183|127.931 +638422.061|220409.724|128.364 +638417.121|220414.272|128.659 +638412.140|220418.856|129.123 +638407.254|220423.355|129.583 +638402.310|220427.902|129.781 +638397.363|220432.453|129.930 +638392.423|220437.001|130.183 +638387.442|220441.585|130.644 +638382.541|220446.093|130.784 +638377.588|220450.650|130.805 +638372.635|220455.203|130.863 +638367.746|220459.702|131.302 +638357.858|220468.791|130.900 +638352.887|220473.363|130.699 +638347.913|220477.932|130.497 +638343.008|220482.447|130.674 +638338.034|220487.019|130.525 +638328.165|220496.086|129.988 +638323.230|220500.622|129.790 +638318.274|220505.176|129.272 +638303.418|220518.821|128.160 +638293.561|220527.880|127.565 +638288.601|220532.434|127.263 +638254.086|220564.139|124.090 +638244.219|220573.207|123.423 +638239.309|220577.721|123.417 +638224.630|220591.215|123.045 +638219.668|220595.771|122.554 +638214.794|220600.255|122.533 +638209.871|220604.775|122.003 +638204.955|220609.292|121.588 +638200.036|220613.803|120.683 +638190.084|220622.935|118.817 +638185.244|220627.388|118.808 +638180.382|220631.857|118.628 +638170.586|220640.851|117.662 +638160.954|220649.715|118.357 +638127.182|220680.765|117.699 +638113.106|220693.737|120.262 +638108.379|220698.090|120.701 +638080.097|220724.117|122.664 +638075.366|220728.466|122.795 +638070.645|220732.807|123.008 +638065.951|220737.123|123.078 +638061.232|220741.463|123.350 +638047.230|220754.341|124.298 +638037.906|220762.912|124.374 +638033.285|220767.164|124.743 +638028.631|220771.440|124.883 +638023.955|220775.741|124.886 +638019.322|220779.999|125.212 +638005.454|220792.749|125.468 +638000.882|220796.958|125.931 +637991.723|220805.383|126.462 +637987.196|220809.543|126.620 +637968.945|220826.329|127.404 +637964.382|220830.517|127.111 +637959.874|220834.665|127.474 +637955.381|220838.798|127.955 +637950.907|220842.913|128.251 +637946.399|220847.058|128.348 +637937.328|220855.394|128.288 +637932.881|220859.485|128.507 +637928.367|220863.630|128.361 +637923.810|220867.815|128.272 +637919.278|220871.979|128.050 +637914.715|220876.167|127.379 +637910.252|220880.266|127.315 +637905.693|220884.451|127.013 +637901.243|220888.545|127.062 +637896.832|220892.595|127.068 +637878.916|220909.052|126.041 +637870.001|220917.235|125.200 +637860.963|220925.526|123.810 +637852.139|220933.631|123.365 +637847.759|220937.651|122.957 +637830.163|220953.805|121.372 +637825.783|220957.826|121.058 +637821.415|220961.837|120.564 +637812.741|220969.801|119.963 +637795.382|220985.733|118.217 +637787.070|220993.378|118.610 +637782.840|220997.264|118.476 +637778.606|221001.153|118.336 +637770.291|221008.798|118.601 +637766.228|221012.537|119.067 +637749.997|221027.467|120.463 +637745.907|221031.222|120.393 +637741.942|221034.870|120.905 +637737.918|221038.570|121.164 +637733.938|221042.231|121.387 +637729.981|221045.870|121.743 +637725.927|221049.592|121.679 +637717.893|221056.974|121.911 +637713.833|221060.702|121.622 +637702.046|221071.538|122.124 +637698.011|221075.241|121.783 +637690.098|221082.501|121.390 +637686.248|221086.043|121.667 +637678.336|221093.304|121.134 +637670.563|221100.445|121.021 +637639.858|221128.633|119.491 +637628.620|221138.950|119.110 +637625.060|221142.227|119.467 +637617.818|221148.881|119.951 +637614.300|221152.118|120.296 +637610.658|221155.462|120.165 +637600.133|221165.139|120.975 +637596.530|221168.446|120.835 +637586.249|221177.898|121.890 +637582.842|221181.031|122.121 +637579.443|221184.155|122.396 +637576.075|221187.252|122.597 +637569.327|221193.452|123.188 +637562.697|221199.548|123.642 +637556.022|221205.680|123.965 +637552.782|221208.661|124.301 +637546.421|221214.511|125.236 +637543.227|221217.446|125.364 +637810.217|220969.911|119.643 +637814.566|220965.903|120.000 +637818.956|220961.864|120.573 +637823.305|220957.856|120.978 +637827.673|220953.830|121.237 +637832.044|220949.800|121.530 +637849.634|220933.597|123.203 +637858.473|220925.450|123.737 +637863.011|220921.271|124.545 +637876.490|220908.863|126.370 +637889.837|220896.555|126.578 +637894.314|220892.428|126.943 +637898.783|220888.310|126.983 +637903.245|220884.192|127.023 +637907.781|220880.013|127.199 +637912.240|220875.901|127.251 +637916.839|220871.665|127.855 +637925.910|220863.307|128.376 +637930.449|220859.119|128.409 +637934.944|220854.974|128.483 +637948.538|220842.434|128.278 +637953.056|220838.265|127.967 +637957.551|220834.110|127.535 +637962.041|220829.965|127.065 +637966.592|220825.771|126.992 +637971.219|220821.504|127.105 +637985.005|220808.781|126.657 +637989.577|220804.563|126.495 +637994.140|220800.351|126.291 +637998.776|220796.071|125.928 +638003.357|220791.840|125.547 +638007.996|220787.564|125.557 +638012.656|220783.263|125.407 +638017.295|220778.981|125.133 +638021.944|220774.689|124.935 +638026.580|220770.410|124.670 +638040.652|220757.428|124.444 +638050.061|220748.745|123.999 +638054.679|220744.478|123.344 +638059.413|220740.110|123.179 +638064.101|220735.785|123.075 +638068.825|220731.426|122.883 +638073.607|220727.012|122.792 +638078.277|220722.706|122.576 +638083.068|220718.277|122.222 +638097.281|220705.161|121.454 +638102.057|220700.751|121.015 +638116.350|220687.556|119.875 +638125.820|220678.805|118.388 +638130.687|220674.319|118.833 +638135.543|220669.841|118.738 +638145.159|220660.965|118.241 +638149.990|220656.506|117.994 +638164.599|220643.031|118.010 +638169.443|220638.559|117.491 +638179.327|220629.452|118.464 +638184.226|220624.935|118.546 +638189.215|220620.341|119.076 +638194.193|220615.760|120.052 +638199.197|220611.152|120.841 +638209.180|220601.965|122.252 +638219.101|220592.824|123.185 +638223.962|220588.337|123.133 +638228.940|220583.750|123.338 +638243.787|220570.058|123.630 +638258.716|220556.300|124.621 +638293.670|220524.088|127.196 +638298.742|220519.419|127.846 +638303.753|220514.804|128.358 +638313.754|220505.590|129.211 +638318.804|220500.939|129.711 +638323.839|220496.300|130.049 +638328.863|220491.667|130.238 +638333.849|220487.073|130.610 +638338.869|220482.447|130.750 +638343.880|220477.829|130.772 +638353.905|220468.587|130.988 +638363.966|220459.312|131.064 +638374.007|220450.052|130.839 +638379.011|220445.441|130.887 +638384.059|220440.786|130.872 +638389.033|220436.193|130.357 +638394.114|220431.505|130.086 +638399.153|220426.857|129.918 +638404.142|220422.258|129.696 +638409.171|220417.615|129.333 +638414.195|220412.976|128.803 +638419.227|220408.334|128.492 +638424.259|220403.692|128.111 +638429.331|220399.010|127.629 +638434.357|220394.368|127.093 +638439.395|220389.723|126.876 +638444.422|220385.081|126.373 +638449.445|220380.442|125.706 +638454.526|220375.754|125.270 +638459.558|220371.112|124.828 +638464.639|220366.421|124.429 +638469.671|220361.776|123.956 +638474.704|220357.131|123.478 +638479.791|220352.440|123.207 +638484.878|220347.746|123.033 +638489.919|220343.095|122.880 +638495.006|220338.404|122.542 +638500.045|220333.753|122.207 +638505.132|220329.059|121.838 +638510.173|220324.407|121.548 +638515.263|220319.713|121.329 +638520.354|220315.017|121.027 +638525.395|220310.365|120.759 +638530.488|220305.665|120.488 +638535.578|220300.968|120.094 +638540.626|220296.311|119.808 +638545.719|220291.611|119.491 +638550.767|220286.957|119.442 +638555.860|220282.260|119.336 +638560.956|220277.560|119.314 +638566.007|220272.902|119.034 +638571.057|220268.245|118.860 +638576.153|220263.542|118.659 +638581.201|220258.891|118.973 +638586.291|220254.197|118.964 +638591.390|220249.494|118.814 +638596.395|220244.882|118.735 +638601.491|220240.182|118.778 +638606.545|220235.521|118.756 +638611.596|220230.864|118.753 +638616.652|220226.204|118.607 +638621.752|220221.501|118.613 +638626.763|220216.877|118.394 +638631.865|220212.171|118.339 +638636.928|220207.504|118.098 +638641.939|220202.877|117.903 +638647.004|220198.205|117.629 +638652.070|220193.529|117.290 +638657.136|220188.860|117.135 +638662.208|220184.178|116.742 +638667.225|220179.554|116.708 +638672.248|220174.918|116.443 +638677.314|220170.248|116.434 +638682.337|220165.612|116.233 +638687.360|220160.979|116.117 +638692.438|220156.292|115.827 +638697.421|220151.698|115.632 +638702.509|220147.001|115.205 +638707.547|220142.353|114.898 +638712.512|220137.781|115.205 +638717.590|220133.096|115.071 +638722.574|220128.503|115.035 +638727.557|220123.907|114.934 +638732.595|220119.264|114.797 +638737.588|220114.659|114.617 +638742.632|220110.008|114.410 +638747.628|220105.402|114.236 +638752.627|220100.793|114.087 +638757.623|220096.185|113.962 +638762.573|220091.622|113.864 +638767.650|220086.934|113.227 +638772.643|220082.326|112.496 +638777.681|220077.674|111.840 +638782.692|220073.044|110.902 +638787.770|220068.351|109.716 +638792.812|220063.690|108.445 +638797.844|220059.042|107.415 +638802.834|220054.436|107.031 +638807.869|220049.791|106.756 +638812.801|220045.247|106.628 +638817.763|220040.675|106.784 +638822.722|220036.106|106.994 +638827.681|220031.537|107.192 +638832.594|220027.010|107.403 +638837.544|220022.454|107.802 +638842.470|220017.912|107.875 +638847.420|220013.346|107.656 +638852.470|220008.683|106.848 +638857.445|220004.092|106.409 +638862.413|219999.511|106.098 +638867.336|219994.970|105.790 +638872.380|219990.312|105.211 +638877.351|219985.722|104.412 +638882.368|219981.089|103.666 +638887.330|219976.508|103.071 +638892.311|219971.918|102.852 +638897.240|219967.376|103.212 +638902.125|219962.877|103.516 +638906.999|219958.391|103.992 +638911.900|219953.874|104.172 +638916.866|219949.298|104.224 +638921.764|219944.778|103.971 +638926.750|219940.182|103.855 +638931.661|219935.656|103.574 +638936.605|219931.096|103.455 +638941.515|219926.566|103.209 +638946.538|219921.933|102.870 +638951.393|219917.456|102.748 +638956.353|219912.884|102.602 +638976.165|219894.605|101.203 +638981.081|219890.067|100.700 +638991.060|219880.855|99.444 +639025.454|219849.138|98.371 +639030.389|219844.587|98.051 +639059.534|219817.728|98.676 +639064.392|219813.248|98.371 +639098.320|219781.972|98.192 +639112.593|219768.829|99.600 +639117.293|219764.504|100.267 +639122.070|219760.103|100.438 +639126.809|219755.738|100.868 +639131.503|219751.416|101.291 +639136.249|219747.045|101.709 +639140.958|219742.708|102.053 +639145.689|219738.349|102.291 +639150.410|219734.003|102.611 +639155.137|219729.647|102.898 +639159.822|219725.331|103.154 +639164.519|219721.003|103.358 +639169.216|219716.675|103.583 +639173.919|219712.343|103.785 +639178.650|219707.982|103.846 +639183.325|219703.672|103.946 +639187.940|219699.420|104.135 +639192.643|219695.089|104.412 +639197.267|219690.828|104.583 +639201.866|219686.591|104.903 +639206.487|219682.336|105.412 +639211.041|219678.142|105.744 +639215.674|219673.875|105.933 +639220.292|219669.616|105.933 +639224.952|219665.319|106.004 +639229.548|219661.082|105.894 +639234.160|219656.830|105.714 +639238.839|219652.514|105.467 +639243.481|219648.232|105.178 +639248.117|219643.952|104.922 +639252.725|219639.700|104.586 +639257.368|219635.418|104.358 +639261.979|219631.166|104.053 +639266.569|219626.932|103.870 +639271.135|219622.717|103.571 +639275.677|219618.529|103.425 +639280.215|219614.344|103.321 +639284.745|219610.168|103.273 +639289.219|219606.041|103.263 +639293.691|219601.920|103.300 +639298.095|219597.860|103.419 +639302.551|219593.752|103.553 +639307.023|219589.634|103.647 +639311.457|219585.543|103.663 +639315.840|219581.505|103.711 +639320.269|219577.423|103.806 +639324.643|219573.391|103.928 +639329.005|219569.368|103.879 +639333.406|219565.311|103.900 +639337.768|219561.290|103.891 +639337.689|219558.913|103.858 +639333.214|219563.034|103.894 +639328.694|219567.194|103.919 +639324.186|219571.343|103.903 +639319.654|219575.512|103.785 +639315.060|219579.737|103.711 +639310.570|219583.870|103.672 +639305.968|219588.107|103.690 +639301.445|219592.267|103.590 +639296.888|219596.461|103.425 +639292.273|219600.707|103.312 +639287.695|219604.923|103.288 +639283.117|219609.135|103.282 +639278.496|219613.387|103.254 +639273.799|219617.712|103.370 +639269.194|219621.952|103.568 +639264.491|219626.283|103.769 +639259.757|219630.645|104.141 +639255.106|219634.927|104.385 +639250.421|219639.243|104.556 +639245.703|219643.590|104.925 +639240.957|219647.960|105.199 +639236.257|219652.289|105.528 +639231.533|219656.638|105.726 +639226.817|219660.981|105.912 +639222.123|219665.304|106.001 +639217.463|219669.592|105.921 +639212.748|219673.932|105.879 +639208.072|219678.230|105.632 +639203.482|219682.455|105.220 +639198.843|219686.719|104.800 +639194.179|219691.001|104.528 +639189.495|219695.311|104.422 +639184.843|219699.581|104.111 +639180.076|219703.964|103.922 +639175.398|219708.262|103.809 +639170.704|219712.578|103.812 +639165.964|219716.934|103.516 +639161.258|219721.259|103.337 +639156.567|219725.566|103.068 +639151.830|219729.918|102.806 +639147.164|219734.204|102.434 +639142.430|219738.553|102.178 +639137.752|219742.854|101.928 +639133.061|219747.161|101.432 +639128.315|219751.519|100.990 +639123.627|219755.823|100.517 +639118.884|219760.182|100.404 +639114.163|219764.522|100.191 +639109.506|219768.796|99.551 +639104.766|219773.145|98.807 +639100.182|219777.345|97.692 +639095.342|219781.798|97.999 +639090.544|219786.212|98.054 +639085.670|219790.699|98.643 +639061.637|219812.797|98.609 +639056.781|219817.265|98.880 +639047.134|219826.135|99.045 +639032.720|219839.381|98.265 +639013.356|219857.182|98.128 +639008.486|219861.662|98.393 +638998.689|219870.675|98.667 +638993.803|219875.168|98.734 +638974.058|219893.349|101.038 +638969.102|219897.912|101.456 +638964.149|219902.469|101.880 +638949.330|219916.103|102.526 +638944.420|219920.620|102.663 +638939.451|219925.192|102.928 +638934.529|219929.721|103.263 +638929.539|219934.308|103.303 +638924.644|219938.813|103.440 +638919.633|219943.425|103.769 +638914.689|219947.970|103.928 +638909.724|219952.535|103.849 +638904.783|219957.074|103.538 +638899.910|219961.551|103.065 +638894.908|219966.148|102.901 +638890.022|219970.631|102.053 +638884.974|219975.283|102.995 +638879.884|219979.974|103.910 +638874.809|219984.649|104.739 +638869.762|219989.297|105.275 +638864.723|219993.936|105.757 +638859.706|219998.551|106.010 +638854.689|220003.169|106.311 +638849.611|220007.845|106.799 +638844.518|220012.532|107.491 +638839.522|220017.132|107.653 +638834.451|220021.795|107.561 +638829.495|220026.343|107.201 +638824.429|220030.997|107.073 +638819.418|220035.597|106.830 +638814.410|220040.199|106.607 +638809.344|220044.853|106.513 +638804.260|220049.526|106.717 +638799.173|220054.205|107.031 +638794.068|220058.902|107.622 +638788.977|220063.593|108.789 +638783.796|220068.369|109.978 +638778.672|220073.090|111.109 +638773.561|220077.799|112.106 +638768.422|220082.530|112.813 +638763.322|220087.224|113.691 +638758.208|220091.930|114.099 +638753.112|220096.612|114.175 +638748.067|220101.251|114.264 +638742.919|220105.981|114.492 +638737.820|220110.672|114.779 +638732.769|220115.317|115.068 +638727.639|220120.033|115.105 +638722.552|220124.708|115.224 +638717.471|220129.378|115.266 +638712.335|220134.099|115.492 +638707.260|220138.763|115.510 +638702.192|220143.417|115.294 +638697.059|220148.138|115.577 +638691.923|220152.863|116.038 +638686.842|220157.538|116.336 +638681.718|220162.244|116.480 +638676.597|220166.954|116.635 +638671.526|220171.614|116.751 +638666.408|220176.320|116.925 +638661.242|220181.072|117.147 +638656.173|220185.729|117.293 +638651.058|220190.435|117.552 +638645.941|220195.141|117.885 +638640.826|220199.842|118.113 +638635.718|220204.538|118.253 +638630.606|220209.239|118.500 +638625.501|220213.929|118.555 +638620.395|220218.626|118.747 +638615.241|220223.363|118.906 +638610.184|220228.008|118.970 +638605.082|220232.699|119.025 +638599.934|220237.430|119.006 +638594.883|220242.072|118.939 +638589.784|220246.756|118.891 +638579.589|220256.129|119.192 +638574.492|220260.814|119.122 +638569.344|220265.541|119.061 +638564.294|220270.186|119.189 +638559.194|220274.874|119.412 +638554.049|220279.605|119.582 +638549.002|220284.244|119.564 +638543.902|220288.929|119.713 +638538.806|220293.613|119.744 +638533.713|220298.298|120.006 +638528.665|220302.940|120.360 +638523.572|220307.625|120.732 +638518.479|220312.307|120.975 +638513.435|220316.946|121.344 +638508.344|220321.628|121.527 +638503.300|220326.267|121.747 +638498.213|220330.948|122.216 +638493.171|220335.584|122.524 +638488.081|220340.263|122.841 +638477.995|220349.535|123.100 +638472.957|220354.168|123.453 +638467.922|220358.801|123.962 +638462.890|220363.434|124.490 +638457.903|220368.021|124.892 +638452.865|220372.654|125.212 +638447.832|220377.284|125.678 +638442.852|220381.868|126.273 +638437.823|220386.498|126.800 +638432.836|220391.089|127.108 +638427.853|220395.673|127.565 +638422.872|220400.257|128.065 +638417.889|220404.844|128.446 +638412.899|220409.432|128.723 +638407.922|220414.016|129.229 +638402.987|220418.554|129.690 +638398.043|220423.102|129.882 +638393.051|220427.695|130.001 +638388.107|220432.243|130.217 +638383.178|220436.778|130.781 +638378.231|220441.329|130.903 +638373.272|220445.886|130.848 +638368.337|220450.427|131.244 +638363.384|220454.981|131.284 +638358.477|220459.492|131.381 +638353.551|220464.018|131.067 +638348.589|220468.581|131.012 +638343.670|220473.098|130.951 +638338.750|220477.622|130.872 +638333.825|220482.148|130.683 +638323.943|220491.225|129.970 +638309.212|220504.755|129.071 +638299.337|220513.823|128.050 +638294.429|220518.328|127.730 +638279.674|220531.879|126.401 +638255.144|220554.410|124.514 +638235.652|220572.320|123.758 +638225.907|220581.275|123.569 +638211.319|220594.677|122.707 +638201.572|220603.626|121.701 +638196.628|220608.162|121.045 +638186.835|220617.144|119.290 +638177.072|220626.108|118.503 +638167.303|220635.078|117.290 +638157.754|220643.863|117.845 +638143.364|220657.094|118.189 +638133.796|220665.891|118.296 +638124.253|220674.669|118.711 +638114.829|220683.344|119.762 +638110.095|220687.699|120.137 +638105.361|220692.055|120.515 +638095.977|220700.693|121.173 +638086.595|220709.325|121.929 +638081.840|220713.702|122.210 +638067.789|220726.638|122.880 +638058.352|220735.324|123.008 +638053.673|220739.631|123.228 +638049.007|220743.929|123.533 +638044.432|220748.147|124.161 +638021.142|220769.587|124.932 +638016.527|220773.836|125.023 +638007.271|220782.358|125.410 +637993.497|220795.041|126.038 +637988.931|220799.244|126.242 +637979.732|220807.715|126.553 +637975.157|220811.921|126.416 +637970.582|220816.133|126.617 +637966.019|220820.330|126.617 +637961.499|220824.494|126.876 +637957.000|220828.639|127.291 +637952.507|220832.778|127.754 +637948.008|220836.920|127.888 +637925.462|220857.671|128.220 +637920.933|220861.841|128.275 +637916.422|220865.986|127.891 +637911.831|220870.205|127.337 +637907.348|220874.326|127.157 +637902.843|220878.474|127.135 +637898.338|220882.616|126.864 +637893.860|220886.737|126.764 +637884.960|220894.921|126.383 +637880.419|220899.094|125.995 +637858.080|220919.628|123.917 +637844.787|220931.845|122.853 +637831.559|220944.006|121.765 +637827.191|220948.023|121.490 +637809.738|220964.065|119.909 +637805.343|220968.104|119.336 +637788.085|220983.969|117.872 +637783.903|220987.815|117.958 +637779.706|220991.683|118.217 +637767.161|221003.223|118.107 +637759.084|221010.669|119.278 +637746.803|221021.977|119.887 +637742.917|221025.565|120.747 +637738.823|221029.335|120.902 +637734.791|221033.051|120.872 +637730.777|221036.751|121.180 +637722.791|221044.109|121.554 +637718.780|221047.800|121.689 +637714.708|221051.549|121.554 +637710.757|221055.188|121.756 +637690.787|221073.568|121.064 +637686.858|221077.186|121.210 +637675.105|221088.003|120.741 +637671.216|221091.584|120.668 +637648.005|221112.942|119.717 +637621.786|221137.079|119.272 +637603.803|221153.645|120.268 +637600.246|221156.922|120.488 +637596.777|221160.122|120.847 +637593.312|221163.313|121.024 +637589.819|221166.532|121.314 +637582.955|221172.860|121.969 +637579.553|221175.996|122.429 +637576.130|221179.151|122.606 +637569.147|221185.576|122.484 +637565.938|221188.538|123.094 +637562.600|221191.617|123.426 +637555.900|221197.789|123.828 +637546.162|221206.769|124.959 +637542.968|221209.710|125.081 +637782.907|220986.703|117.876 +637787.110|220982.826|117.927 +637791.374|220978.900|118.025 +637795.614|220974.989|118.037 +637800.085|220970.880|119.208 +637804.353|220966.948|119.128 +637808.708|220962.937|119.784 +637821.766|220950.916|121.018 +637826.161|220946.868|121.433 +637830.523|220942.851|121.701 +637834.897|220938.821|122.057 +637843.730|220930.686|122.743 +637856.982|220918.485|123.932 +637861.426|220914.392|124.246 +637866.020|220910.167|125.121 +637888.356|220889.596|126.690 +637892.778|220885.518|126.483 +637897.237|220881.409|126.797 +637901.688|220877.307|126.779 +637906.226|220873.125|127.004 +637910.792|220868.918|127.407 +637915.300|220864.770|127.775 +637919.851|220860.579|128.144 +637924.392|220856.391|128.181 +637946.954|220835.589|127.779 +637951.498|220831.398|127.644 +637956.015|220827.231|127.346 +637960.484|220823.107|126.764 +637965.028|220818.916|126.684 +637969.603|220814.694|126.483 +637974.175|220810.476|126.297 +637992.549|220793.529|125.922 +638006.420|220780.731|125.371 +638011.029|220776.482|125.227 +638015.656|220772.211|124.880 +638020.313|220767.917|124.764 +638039.003|220750.677|124.234 +638043.639|220746.395|123.703 +638048.288|220742.103|123.280 +638052.969|220737.784|123.106 +638057.712|220733.410|123.054 +638067.124|220724.729|122.798 +638081.304|220711.647|122.076 +638090.752|220702.930|121.509 +638095.474|220698.568|121.042 +638104.956|220689.821|120.433 +638114.460|220681.045|119.680 +638123.942|220672.295|118.769 +638152.804|220645.670|117.967 +638157.604|220641.239|117.507 +638162.472|220636.755|117.674 +638167.321|220632.274|117.260 +638172.201|220627.782|117.595 +638177.163|220623.213|118.324 +638187.063|220614.102|119.622 +638196.988|220604.970|121.366 +638201.913|220600.435|121.899 +638206.848|220595.893|122.579 +638211.856|220591.282|123.051 +638221.658|220582.244|123.344 +638236.420|220568.638|123.792 +638241.406|220564.045|124.237 +638251.227|220554.992|124.508 +638256.177|220550.429|124.566 +638266.132|220541.261|125.493 +638281.036|220527.533|126.794 +638295.950|220513.795|127.900 +638315.948|220495.376|129.687 +638320.932|220490.783|130.001 +638335.913|220476.975|130.854 +638340.920|220472.355|130.906 +638345.877|220467.780|130.927 +638350.884|220463.165|130.979 +638360.836|220453.981|130.979 +638365.847|220449.360|131.201 +638370.879|220444.715|130.930 +638375.869|220440.110|130.799 +638380.865|220435.501|130.763 +638385.845|220430.902|130.461 +638390.871|220426.260|130.089 +638395.858|220421.657|129.891 +638400.844|220417.055|129.738 +638405.870|220412.412|129.363 +638410.891|220407.776|128.873 +638415.871|220403.177|128.537 +638420.897|220398.535|128.184 +638425.920|220393.896|127.693 +638430.895|220389.299|127.202 +638435.973|220384.612|126.858 +638440.950|220380.015|126.389 +638446.019|220375.330|125.825 +638451.045|220370.685|125.334 +638456.074|220366.043|124.980 +638461.106|220361.395|124.670 +638466.178|220356.710|124.036 +638471.208|220352.062|123.539 +638476.240|220347.417|123.109 +638481.324|220342.723|122.929 +638486.362|220338.075|122.853 +638491.446|220333.381|122.554 +638496.527|220328.687|122.277 +638501.563|220324.039|121.856 +638506.647|220319.345|121.487 +638511.734|220314.648|121.317 +638516.772|220309.996|120.997 +638521.859|220305.299|120.707 +638526.946|220300.602|120.332 +638531.988|220295.948|120.012 +638537.078|220291.248|119.887 +638542.168|220286.551|119.832 +638547.258|220281.854|119.710 +638552.348|220277.157|119.774 +638557.442|220272.457|119.595 +638562.486|220267.800|119.403 +638567.579|220263.100|119.281 +638572.670|220258.406|119.509 +638577.763|220253.706|119.393 +638582.853|220249.006|119.076 +638587.946|220244.309|119.095 +638592.991|220239.655|119.186 +638598.084|220234.958|119.265 +638603.177|220230.255|119.223 +638608.273|220225.554|119.195 +638613.324|220220.891|119.000 +638618.423|220216.188|118.939 +638623.522|220211.479|118.778 +638628.576|220206.815|118.689 +638633.678|220202.106|118.500 +638638.781|220197.400|118.427 +638643.837|220192.731|118.235 +638648.949|220188.009|117.869 +638654.012|220183.337|117.613 +638659.120|220178.621|117.437 +638664.183|220173.949|117.315 +638669.297|220169.227|117.053 +638674.360|220164.552|116.928 +638679.426|220159.876|116.775 +638684.498|220155.197|116.574 +638689.567|220150.516|116.416 +638694.700|220145.773|115.879 +638699.729|220141.131|115.629 +638704.785|220136.467|115.910 +638709.860|220131.783|115.809 +638714.893|220127.137|115.620 +638719.967|220122.450|115.553 +638725.000|220117.801|115.361 +638730.032|220113.153|115.263 +638735.073|220108.499|115.047 +638740.121|220103.835|114.681 +638745.168|220099.172|114.407 +638750.210|220094.515|114.236 +638755.202|220089.906|114.181 +638760.265|220085.227|113.736 +638765.349|220080.524|112.962 +638770.388|220075.861|112.182 +638775.490|220071.142|111.261 +638780.510|220066.494|110.140 +638785.594|220061.788|108.875 +638790.660|220057.100|107.945 +638795.720|220052.422|107.186 +638800.755|220047.767|106.823 +638805.748|220043.153|106.442 +638810.713|220038.568|106.473 +638815.672|220033.990|106.619 +638820.671|220029.382|106.927 +638825.633|220024.801|107.064 +638830.537|220020.277|107.369 +638835.514|220015.681|107.363 +638840.443|220011.130|107.381 +638845.472|220006.482|106.778 +638850.443|220001.889|106.339 +638855.445|219997.265|106.132 +638860.410|219992.681|105.848 +638865.373|219988.093|105.583 +638870.353|219983.491|105.174 +638875.315|219978.904|104.480 +638880.338|219974.256|103.657 +638885.304|219969.662|102.974 +638890.333|219965.011|102.212 +638895.142|219960.576|102.776 +638900.065|219956.035|103.193 +638904.914|219951.560|103.379 +638909.809|219947.043|103.611 +638914.729|219942.501|103.614 +638919.624|219937.981|103.422 +638924.568|219933.412|103.212 +638929.460|219928.895|103.081 +638934.361|219924.369|102.907 +638939.268|219919.833|102.663 +638958.907|219901.689|101.550 +638963.820|219897.153|101.422 +638968.703|219892.639|101.145 +638988.408|219874.421|98.890 +639007.876|219856.438|98.313 +639027.252|219838.546|98.109 +639051.149|219816.494|99.301 +639055.949|219812.062|99.362 +639060.780|219807.600|99.225 +639075.158|219794.326|99.426 +639089.718|219780.869|98.195 +639099.322|219771.999|97.978 +639108.546|219763.504|100.078 +639113.218|219759.197|100.578 +639117.943|219754.836|100.740 +639122.722|219750.425|100.895 +639127.391|219746.118|101.438 +639132.082|219741.793|101.877 +639136.788|219737.453|102.224 +639141.461|219733.140|102.486 +639146.182|219728.784|102.764 +639150.849|219724.478|103.105 +639155.521|219720.168|103.419 +639160.203|219715.846|103.681 +639164.888|219711.523|103.943 +639169.564|219707.208|104.001 +639174.255|219702.876|104.263 +639178.973|219698.524|104.400 +639183.609|219694.244|104.726 +639188.291|219689.922|104.809 +639192.954|219685.622|105.025 +639197.587|219681.342|105.126 +639202.208|219677.081|105.616 +639206.853|219672.796|105.973 +639211.452|219668.547|106.043 +639216.104|219664.255|106.138 +639220.822|219659.899|106.144 +639225.452|219655.623|106.098 +639230.121|219651.307|105.863 +639234.843|219646.945|105.638 +639239.543|219642.599|105.281 +639244.249|219638.252|104.928 +639248.937|219633.918|104.684 +639253.582|219629.627|104.419 +639258.255|219625.308|104.050 +639262.894|219621.022|103.864 +639267.548|219616.721|103.632 +639272.187|219612.436|103.489 +639276.789|219608.184|103.556 +639281.361|219603.965|103.556 +639285.882|219599.790|103.553 +639290.457|219595.562|103.562 +639295.013|219591.356|103.687 +639299.540|219587.177|103.718 +639304.005|219583.053|103.821 +639308.541|219578.868|103.852 +639313.009|219574.741|103.977 +639317.550|219570.547|104.007 +639321.988|219566.448|104.050 +639326.445|219562.333|104.035 +639330.907|219558.212|104.016 +639335.375|219554.085|103.974 +639333.245|219553.164|103.995 +639328.819|219557.236|104.028 +639324.408|219561.299|104.028 +639319.946|219565.405|104.025 +639315.484|219569.514|104.053 +639311.037|219573.607|104.031 +639306.556|219577.731|103.928 +639302.079|219581.852|103.830 +639297.595|219585.979|103.788 +639293.057|219590.155|103.766 +639288.591|219594.264|103.663 +639284.004|219598.488|103.681 +639279.487|219602.646|103.623 +639274.903|219606.867|103.660 +639270.334|219611.073|103.635 +639265.743|219615.298|103.742 +639261.074|219619.602|104.019 +639256.410|219623.896|104.281 +639251.756|219628.185|104.528 +639247.087|219632.486|104.879 +639242.341|219636.860|105.114 +639237.677|219641.154|105.476 +639232.962|219645.501|105.876 +639228.229|219649.862|106.113 +639223.468|219654.248|106.263 +639218.786|219658.558|106.266 +639214.098|219662.874|106.327 +639209.401|219667.196|106.180 +639204.716|219671.506|105.970 +639200.059|219675.789|105.626 +639195.374|219680.099|105.181 +639190.671|219684.430|105.144 +639186.002|219688.727|104.925 +639181.219|219693.135|104.812 +639176.510|219697.469|104.565 +639171.780|219701.825|104.467 +639167.025|219706.205|104.242 +639162.251|219710.603|104.156 +639157.515|219714.962|103.849 +639152.781|219719.320|103.553 +639148.008|219723.712|103.199 +639143.244|219728.099|102.809 +639138.507|219732.460|102.578 +639133.698|219736.886|102.200 +639128.931|219741.272|101.867 +639124.203|219745.622|101.307 +639119.378|219750.066|101.075 +639114.547|219754.516|100.913 +639109.756|219758.926|100.496 +639090.590|219776.556|98.286 +639051.164|219812.897|99.764 +639046.324|219817.353|99.252 +638982.200|219876.433|99.298 +638957.163|219899.528|101.380 +638947.199|219908.714|101.974 +638932.234|219922.513|102.861 +638927.180|219927.173|103.062 +638922.236|219931.727|103.157 +638917.244|219936.329|103.306 +638912.251|219940.929|103.452 +638907.286|219945.507|103.379 +638902.333|219950.067|103.196 +638897.343|219954.660|102.895 +638892.405|219959.204|102.553 +638887.553|219963.664|101.325 +638882.356|219968.473|103.367 +638877.345|219973.097|103.958 +638872.270|219977.782|104.757 +638867.217|219982.449|105.385 +638862.206|219987.066|105.516 +638857.183|219991.699|105.863 +638852.214|219996.280|106.144 +638847.149|220000.947|106.449 +638842.180|220005.534|106.839 +638837.105|220010.213|107.348 +638832.128|220014.797|107.256 +638827.157|220019.375|107.119 +638822.100|220024.033|106.875 +638817.178|220028.568|106.784 +638812.170|220033.180|106.558 +638807.153|220037.800|106.479 +638802.126|220042.430|106.540 +638797.039|220047.121|106.845 +638792.044|220051.730|107.293 +638786.923|220056.457|108.213 +638781.839|220061.154|109.353 +638776.758|220065.851|110.560 +638771.649|220070.566|111.484 +638766.596|220075.233|112.380 +638761.500|220079.936|113.221 +638756.416|220084.630|113.922 +638751.359|220089.290|114.200 +638746.318|220093.939|114.264 +638741.264|220098.596|114.559 +638736.204|220103.262|114.968 +638731.108|220107.962|115.291 +638726.115|220112.562|115.449 +638721.028|220117.250|115.593 +638715.944|220121.938|115.785 +638710.912|220126.574|115.839 +638705.877|220131.216|116.056 +638700.796|220135.897|116.242 +638695.730|220140.567|116.144 +638690.655|220145.240|116.202 +638685.571|220149.930|116.665 +638680.493|220154.612|116.940 +638675.421|220159.288|117.110 +638670.352|220163.957|117.178 +638665.283|220168.630|117.385 +638660.169|220173.345|117.528 +638655.100|220178.018|117.781 +638649.985|220182.730|117.946 +638644.919|220187.400|118.205 +638639.854|220192.072|118.528 +638634.745|220196.778|118.692 +638629.640|220201.484|118.820 +638624.580|220206.151|119.058 +638619.478|220210.851|119.144 +638614.375|220215.554|119.186 +638609.273|220220.254|119.284 +638604.171|220224.957|119.427 +638599.071|220229.654|119.439 +638594.024|220234.305|119.372 +638588.925|220238.999|119.253 +638583.783|220243.739|119.214 +638578.738|220248.384|119.186 +638573.639|220253.087|119.525 +638568.543|220257.787|119.713 +638563.446|220262.478|119.479 +638558.350|220267.175|119.689 +638553.254|220271.872|119.735 +638548.157|220276.566|119.820 +638543.064|220281.260|119.814 +638537.968|220285.957|120.006 +638532.875|220290.651|120.055 +638527.827|220295.299|120.122 +638522.688|220300.039|120.421 +638517.644|220304.690|120.765 +638512.554|220309.384|121.109 +638507.464|220314.078|121.237 +638502.373|220318.769|121.564 +638497.335|220323.417|122.027 +638492.248|220328.108|122.335 +638487.161|220332.799|122.582 +638482.071|220337.489|122.758 +638476.983|220342.177|122.981 +638471.945|220346.822|123.335 +638466.913|220351.465|123.813 +638461.835|220356.149|124.435 +638456.757|220360.834|124.953 +638451.719|220365.479|125.182 +638446.686|220370.121|125.578 +638441.611|220374.800|126.126 +638436.634|220379.387|126.718 +638431.553|220384.069|127.023 +638426.521|220388.705|127.416 +638421.495|220393.338|127.907 +638416.468|220397.971|128.406 +638411.485|220402.564|128.696 +638406.453|220407.200|129.068 +638401.475|220411.788|129.559 +638396.492|220416.381|129.885 +638391.499|220420.977|129.988 +638386.510|220425.574|130.220 +638381.532|220430.161|130.692 +638376.539|220434.757|130.836 +638371.541|220439.363|130.833 +638361.601|220448.516|131.159 +638356.639|220453.082|131.049 +638351.640|220457.688|131.116 +638346.669|220462.260|130.912 +638341.707|220466.826|130.848 +638336.751|220471.391|130.903 +638331.831|220475.918|130.820 +638326.863|220480.490|130.750 +638321.898|220485.053|129.943 +638316.975|220489.585|129.903 +638292.204|220512.366|127.660 +638277.446|220525.942|126.882 +638267.518|220535.064|125.599 +638257.731|220544.068|125.017 +638247.938|220553.078|124.456 +638243.076|220557.552|124.374 +638238.215|220562.027|124.298 +638233.329|220566.523|123.972 +638223.615|220575.466|124.057 +638199.243|220597.881|122.195 +638194.351|220602.376|121.521 +638174.743|220620.387|117.872 +638155.452|220638.139|117.452 +638150.676|220642.540|117.720 +638131.638|220660.072|118.241 +638126.804|220664.516|117.641 +638112.741|220677.482|119.396 +638103.350|220686.133|119.951 +638098.659|220690.461|120.664 +638094.017|220694.737|121.024 +638089.326|220699.059|121.372 +638084.629|220703.387|121.670 +638079.962|220707.685|121.859 +638075.256|220712.016|122.155 +638070.614|220716.290|122.167 +638065.896|220720.630|122.393 +638061.229|220724.925|122.649 +638051.924|220733.489|123.030 +638047.297|220737.748|123.267 +638042.603|220742.067|123.389 +638037.979|220746.325|123.664 +638019.520|220763.314|124.523 +638010.285|220771.815|125.005 +638001.004|220780.350|124.907 +637973.639|220805.538|126.255 +637969.097|220809.714|126.352 +637964.562|220813.887|126.492 +637960.020|220818.069|126.602 +637955.619|220822.122|127.318 +637951.065|220826.313|127.385 +637946.591|220830.431|127.669 +637942.098|220834.564|127.846 +637937.608|220838.701|128.044 +637915.120|220859.384|127.940 +637906.046|220867.718|127.184 +637901.563|220871.842|126.986 +637897.076|220875.969|126.800 +637892.614|220880.071|126.779 +637888.115|220884.207|126.565 +637883.723|220888.246|126.703 +637879.221|220892.385|126.221 +637834.796|220933.198|122.213 +637830.419|220937.221|121.859 +637826.057|220941.229|121.597 +637804.295|220961.224|119.799 +637799.976|220965.193|119.360 +637791.331|220973.133|118.525 +637782.764|220981.006|117.888 +637778.591|220984.846|118.007 +637774.409|220988.690|118.107 +637770.258|220992.509|118.110 +637766.137|220996.301|118.281 +637762.001|221000.105|118.400 +637753.914|221007.551|119.299 +637745.770|221015.046|119.732 +637741.832|221018.679|120.576 +637725.665|221033.557|121.012 +637721.767|221037.147|121.622 +637709.718|221048.233|121.713 +637705.722|221051.906|121.478 +637693.811|221062.857|121.213 +637685.922|221070.114|121.100 +637643.058|221109.510|118.580 +637627.946|221123.403|118.007 +637624.267|221126.786|118.083 +637617.104|221133.385|119.049 +637595.899|221152.907|120.954 +637588.926|221159.326|121.542 +637585.390|221162.576|121.460 +637581.915|221165.773|121.628 +637568.266|221178.337|122.707 +637564.904|221181.431|122.926 +637561.579|221184.491|123.100 +637554.968|221190.578|123.831 +637551.728|221193.562|124.343 +637541.855|221202.645|124.977 +637538.505|221205.723|124.724 +637535.320|221208.658|125.075 +637774.878|220985.718|117.985 +637778.996|220981.908|117.616 +637783.245|220977.988|117.903 +637787.482|220974.072|117.900 +637791.844|220970.051|118.519 +637804.871|220958.036|119.973 +637809.190|220954.052|120.213 +637813.518|220950.056|120.256 +637817.974|220945.948|120.978 +637826.704|220937.892|121.558 +637831.059|220933.871|121.829 +637835.448|220929.821|122.030 +637848.762|220917.537|123.277 +637857.687|220909.308|124.106 +637880.077|220888.651|126.230 +637884.509|220884.561|126.343 +637889.029|220880.385|126.428 +637893.488|220876.267|126.468 +637897.990|220872.113|126.754 +637902.422|220868.016|126.681 +637907.028|220863.773|127.318 +637911.597|220859.558|127.791 +637916.102|220855.401|127.897 +637934.155|220838.725|127.873 +637938.663|220834.558|127.812 +637943.195|220830.370|127.605 +637947.719|220826.192|127.346 +637952.263|220821.991|127.263 +637956.792|220817.803|126.767 +637961.325|220813.612|126.315 +637965.863|220809.424|126.221 +637970.441|220805.197|126.078 +637975.077|220800.917|126.014 +637988.891|220788.165|125.621 +637998.093|220779.670|125.166 +638012.004|220766.826|124.700 +638021.300|220758.245|124.392 +638035.327|220745.291|123.609 +638039.988|220740.988|123.280 +638044.676|220736.659|123.142 +638049.434|220732.270|123.197 +638063.506|220719.274|122.326 +638073.013|220710.498|122.155 +638077.719|220706.155|121.905 +638082.511|220701.729|121.606 +638087.204|220697.395|121.305 +638091.987|220692.975|120.942 +638096.723|220688.605|120.610 +638111.003|220675.413|119.515 +638115.783|220670.999|119.189 +638125.271|220662.221|117.577 +638130.108|220657.762|117.799 +638134.964|220653.281|117.793 +638144.629|220644.357|117.421 +638149.481|220639.882|117.424 +638164.048|220626.437|117.235 +638168.958|220621.908|117.452 +638178.864|220612.788|119.293 +638188.862|220603.586|121.262 +638198.731|220594.488|122.079 +638203.669|220589.941|122.810 +638213.587|220580.803|123.856 +638218.503|220576.267|123.944 +638223.389|220571.753|123.722 +638233.292|220562.621|124.313 +638238.242|220558.055|124.337 +638243.168|220553.514|124.691 +638248.115|220548.948|124.718 +638258.009|220539.819|124.898 +638267.979|220530.636|126.151 +638277.930|220521.461|126.693 +638282.877|220516.898|126.959 +638307.856|220493.877|129.580 +638312.873|220489.250|129.671 +638317.871|220484.644|130.257 +638327.829|220475.464|130.924 +638332.779|220470.895|130.845 +638337.787|220466.277|130.881 +638342.786|220461.662|130.875 +638347.748|220457.087|131.034 +638352.759|220452.466|131.250 +638357.706|220447.903|131.174 +638367.740|220438.644|131.061 +638372.675|220434.087|130.845 +638377.707|220429.445|130.610 +638382.696|220424.839|130.540 +638387.671|220420.246|130.107 +638392.703|220415.601|129.967 +638397.687|220411.001|129.778 +638402.661|220406.408|129.367 +638407.684|220401.769|128.949 +638412.658|220397.172|128.592 +638417.685|220392.533|128.251 +638422.702|220387.897|127.660 +638427.679|220383.301|127.309 +638432.705|220378.662|126.901 +638437.731|220374.020|126.541 +638442.751|220369.381|126.032 +638447.774|220364.742|125.468 +638452.804|220360.097|125.160 +638457.830|220355.454|124.782 +638462.853|220350.812|124.173 +638467.879|220346.170|123.548 +638472.908|220341.525|123.207 +638477.989|220336.837|122.874 +638482.976|220332.232|122.667 +638488.057|220327.541|122.502 +638493.092|220322.893|122.265 +638498.128|220318.247|121.975 +638503.160|220313.596|121.475 +638508.244|220308.902|121.222 +638513.279|220304.254|120.948 +638518.318|220299.603|120.622 +638523.405|220294.909|120.411 +638528.443|220290.258|120.293 +638533.530|220285.561|120.223 +638538.620|220280.867|120.061 +638543.613|220276.258|119.970 +638548.700|220271.561|119.872 +638553.790|220266.867|119.881 +638558.832|220262.213|119.762 +638563.922|220257.522|119.927 +638569.012|220252.822|119.720 +638574.056|220248.165|119.403 +638579.140|220243.477|119.500 +638584.231|220238.777|119.442 +638589.275|220234.125|119.521 +638594.365|220229.432|119.589 +638599.407|220224.777|119.692 +638604.454|220220.120|119.540 +638609.550|220215.420|119.454 +638614.644|220210.717|119.390 +638619.694|220206.059|119.265 +638624.790|220201.353|119.150 +638629.841|220196.693|119.043 +638634.898|220192.026|118.799 +638640.000|220187.314|118.595 +638645.057|220182.648|118.421 +638650.116|220177.978|118.165 +638655.225|220173.263|117.958 +638660.288|220168.587|117.690 +638665.347|220163.915|117.504 +638670.453|220159.205|117.498 +638675.518|220154.530|117.293 +638680.593|220149.842|116.876 +638685.665|220145.160|116.605 +638690.725|220140.494|116.659 +638695.791|220135.818|116.620 +638700.863|220131.139|116.480 +638705.941|220126.449|116.190 +638711.015|220121.764|115.989 +638716.087|220117.082|115.919 +638721.120|220112.434|115.702 +638726.204|220107.740|115.419 +638731.291|220103.043|115.184 +638736.335|220098.383|114.843 +638741.432|220093.676|114.462 +638746.476|220089.019|114.221 +638751.527|220084.356|113.922 +638756.635|220079.634|113.459 +638761.670|220074.980|112.651 +638766.754|220070.277|111.865 +638771.857|220065.559|110.914 +638776.919|220060.874|109.853 +638782.040|220056.131|108.671 +638787.170|220051.388|107.503 +638792.217|220046.722|106.887 +638797.301|220042.025|106.494 +638802.270|220037.438|106.394 +638807.290|220032.805|106.330 +638812.295|220028.187|106.461 +638817.315|220023.557|106.458 +638822.320|220018.936|106.619 +638827.230|220014.410|106.845 +638832.235|220009.795|107.073 +638837.233|220005.178|106.793 +638842.244|220000.548|106.388 +638847.258|219995.918|105.976 +638852.260|219991.297|105.757 +638857.271|219986.670|105.449 +638862.224|219982.095|105.290 +638867.229|219977.474|105.135 +638872.185|219972.896|104.477 +638877.245|219968.214|103.742 +638882.271|219963.569|102.940 +638887.178|219959.043|102.931 +638892.152|219954.450|102.748 +638897.096|219949.887|102.898 +638901.997|219945.363|103.013 +638906.905|219940.837|103.111 +638911.870|219936.256|103.135 +638916.747|219931.754|103.081 +638921.691|219927.188|102.867 +638926.558|219922.695|102.946 +638941.381|219909.004|101.736 +638951.241|219899.893|100.983 +638970.803|219881.831|99.981 +638985.470|219868.285|99.249 +639009.665|219845.950|98.627 +639038.228|219819.612|100.764 +639043.096|219815.113|100.231 +639052.682|219806.265|100.026 +639086.131|219775.370|98.490 +639090.852|219771.011|98.563 +639095.710|219766.519|98.070 +639104.797|219758.155|100.066 +639109.408|219753.906|100.926 +639114.066|219749.608|101.182 +639118.741|219745.292|101.325 +639123.402|219740.995|101.605 +639127.974|219736.779|102.136 +639132.576|219732.533|102.486 +639137.227|219728.239|102.846 +639141.836|219723.990|103.199 +639146.445|219719.738|103.547 +639151.059|219715.480|103.882 +639155.646|219711.249|104.108 +639160.270|219706.982|104.419 +639164.931|219702.681|104.522 +639169.460|219698.502|104.830 +639174.084|219694.235|104.903 +639178.695|219689.977|105.059 +639183.304|219685.725|105.251 +639187.873|219681.507|105.394 +639192.503|219677.233|105.504 +639197.054|219673.033|105.781 +639201.598|219668.839|106.113 +639206.121|219664.670|106.321 +639210.706|219660.436|106.455 +639215.262|219656.230|106.497 +639219.828|219652.014|106.510 +639224.425|219647.768|106.363 +639229.088|219643.458|106.156 +639233.678|219639.216|105.815 +639238.321|219634.927|105.491 +639242.868|219630.724|105.153 +639247.522|219626.423|104.824 +639252.104|219622.189|104.626 +639256.697|219617.944|104.376 +639261.281|219613.707|103.952 +639265.804|219609.528|103.852 +639270.355|219605.328|103.907 +639274.860|219601.167|103.934 +639279.383|219596.992|103.900 +639283.858|219592.859|103.873 +639288.332|219588.728|103.870 +639292.855|219584.550|103.885 +639297.321|219580.429|103.964 +639301.792|219576.299|104.016 +639306.209|219572.224|104.120 +639310.638|219568.133|104.169 +639315.115|219564.000|104.260 +639319.580|219559.876|104.172 +639324.027|219555.770|104.190 +639328.502|219551.637|104.102 +639332.940|219547.538|103.952 +639329.307|219547.769|103.964 +639324.908|219551.823|104.132 +639320.525|219555.859|104.230 +639316.154|219559.882|104.294 +639311.802|219563.890|104.297 +639307.413|219567.929|104.230 +639303.021|219571.977|104.214 +639298.598|219576.046|104.096 +639294.172|219580.121|104.019 +639289.698|219584.239|103.943 +639285.266|219588.320|103.919 +639280.791|219592.441|103.891 +639276.338|219596.541|104.013 +639271.818|219600.704|103.986 +639267.283|219604.880|104.050 +639262.778|219609.028|103.986 +639258.236|219613.213|104.129 +639253.646|219617.444|104.544 +639249.046|219621.680|104.763 +639244.398|219625.963|104.992 +639239.781|219630.221|105.360 +639235.175|219634.464|105.684 +639230.527|219638.749|105.994 +639225.824|219643.084|106.336 +639221.203|219647.342|106.543 +639216.564|219651.615|106.586 +639211.934|219655.879|106.607 +639207.289|219660.155|106.442 +639202.695|219664.383|106.293 +639198.117|219668.595|106.068 +639193.466|219672.875|105.711 +639188.839|219677.133|105.510 +639184.151|219681.446|105.388 +639179.470|219685.759|105.266 +639174.794|219690.059|105.104 +639170.118|219694.366|104.986 +639165.354|219698.752|104.800 +639160.642|219703.087|104.620 +639155.951|219707.406|104.339 +639151.221|219711.758|104.010 +639146.518|219716.086|103.833 +639141.808|219720.415|103.388 +639137.057|219724.788|102.943 +639132.332|219729.135|102.632 +639127.580|219733.503|102.197 +639122.835|219737.870|101.758 +639118.071|219742.253|101.428 +639113.249|219746.691|101.191 +639108.479|219751.081|100.938 +639103.718|219755.457|100.325 +639094.308|219764.099|98.347 +639089.447|219768.576|98.445 +639084.482|219773.157|98.960 +639069.586|219786.892|100.313 +639064.740|219791.351|100.078 +639059.820|219795.880|100.045 +639049.990|219804.933|100.002 +639010.631|219841.167|98.725 +639000.677|219850.333|98.557 +638985.738|219864.094|98.954 +638960.601|219887.262|100.319 +638950.552|219896.522|100.697 +638935.434|219910.458|101.877 +638930.396|219915.103|102.337 +638925.321|219919.785|102.727 +638920.328|219924.384|102.824 +638915.293|219929.023|102.879 +638910.251|219933.665|102.998 +638905.237|219938.283|102.888 +638900.227|219942.898|102.779 +638895.216|219947.512|102.687 +638890.174|219952.151|102.401 +638885.145|219956.790|103.093 +638880.119|219961.414|102.703 +638875.023|219966.120|103.660 +638869.908|219970.842|104.361 +638864.812|219975.542|104.882 +638859.789|219980.169|105.120 +638854.720|219984.838|105.382 +638849.654|219989.511|105.662 +638844.594|219994.171|105.882 +638839.538|219998.832|106.101 +638834.524|220003.455|106.446 +638829.427|220008.149|106.622 +638824.401|220012.779|106.543 +638819.393|220017.391|106.281 +638814.370|220022.018|106.226 +638809.344|220026.651|106.241 +638804.294|220031.302|105.952 +638799.249|220035.953|106.299 +638794.174|220040.632|106.406 +638789.124|220045.289|106.897 +638784.061|220049.965|107.653 +638778.934|220054.702|108.716 +638773.807|220059.441|109.865 +638768.751|220064.114|110.746 +638763.642|220068.832|111.719 +638758.546|220073.538|112.557 +638753.462|220078.232|113.273 +638748.390|220082.911|113.797 +638743.379|220087.535|114.160 +638738.277|220092.241|114.517 +638733.217|220096.910|114.971 +638728.170|220101.565|115.260 +638723.122|220106.219|115.553 +638718.075|220110.873|115.885 +638713.036|220115.521|116.126 +638707.955|220120.206|116.254 +638702.920|220124.848|116.473 +638697.888|220129.487|116.684 +638692.813|220134.169|116.812 +638687.787|220138.802|116.940 +638682.712|220143.481|117.107 +638677.692|220148.108|117.135 +638672.662|220152.747|117.482 +638667.594|220157.416|117.601 +638662.574|220162.049|117.821 +638657.505|220166.722|118.034 +638652.436|220171.394|118.278 +638647.419|220176.021|118.500 +638642.356|220180.691|118.726 +638637.296|220185.357|118.860 +638632.282|220189.978|119.012 +638627.223|220194.645|119.290 +638622.166|220199.305|119.424 +638617.158|220203.920|119.485 +638612.056|220208.626|119.622 +638607.051|220213.237|119.677 +638602.001|220217.895|119.710 +638596.947|220222.552|119.832 +638591.899|220227.203|119.762 +638586.852|220231.855|119.698 +638581.801|220236.509|119.701 +638576.754|220241.160|119.604 +638571.712|220245.808|119.759 +638566.616|220250.509|119.906 +638561.614|220255.117|120.030 +638556.521|220259.814|120.134 +638551.474|220264.462|119.921 +638546.426|220269.117|120.040 +638541.379|220273.768|120.052 +638536.334|220278.419|120.140 +638531.290|220283.070|120.363 +638526.197|220287.764|120.415 +638521.149|220292.416|120.533 +638516.105|220297.067|120.664 +638511.063|220301.718|120.908 +638506.022|220306.369|121.292 +638500.980|220311.018|121.548 +638495.942|220315.669|122.033 +638490.901|220320.317|122.246 +638485.859|220324.962|122.387 +638480.821|220329.610|122.664 +638475.780|220334.259|122.795 +638470.744|220338.904|123.136 +638465.709|220343.549|123.594 +638460.683|220348.191|124.298 +638455.654|220352.833|124.849 +638450.618|220357.475|125.197 +638445.635|220362.075|125.617 +638440.606|220366.714|126.120 +638435.579|220371.356|126.654 +638430.596|220375.955|126.968 +638425.567|220380.597|127.309 +638420.537|220385.240|127.711 +638415.514|220389.879|128.236 +638410.488|220394.518|128.672 +638405.502|220399.120|128.903 +638400.521|220403.717|129.293 +638395.498|220408.356|129.760 +638390.509|220412.958|129.918 +638385.519|220417.561|130.089 +638380.496|220422.197|130.616 +638375.555|220426.756|130.808 +638370.511|220431.408|130.808 +638360.519|220440.622|131.006 +638355.533|220445.227|131.238 +638350.577|220449.796|131.217 +638345.563|220454.417|131.040 +638340.594|220458.995|130.848 +638335.638|220463.567|130.854 +638330.627|220468.185|130.830 +638325.705|220472.723|130.656 +638315.701|220481.941|130.193 +638305.777|220491.088|129.571 +638300.827|220495.647|129.156 +638285.834|220509.452|127.404 +638270.960|220523.156|126.361 +638266.071|220527.664|126.370 +638261.069|220532.266|125.553 +638256.107|220536.841|125.294 +638251.212|220541.355|125.276 +638246.243|220545.930|125.017 +638241.376|220550.420|124.801 +638226.614|220564.026|124.185 +638207.009|220582.089|123.045 +638202.123|220586.594|122.844 +638197.192|220591.135|122.207 +638192.309|220595.631|121.612 +638182.470|220604.687|120.283 +638177.550|220609.213|119.433 +638162.804|220622.789|117.223 +638153.169|220631.674|117.354 +638148.363|220636.103|117.348 +638115.011|220666.878|118.988 +638110.278|220671.249|119.320 +638091.438|220688.638|120.713 +638086.738|220692.975|120.981 +638058.614|220718.923|122.371 +638044.590|220731.865|122.990 +638039.942|220736.150|123.075 +638035.312|220740.424|123.304 +638030.627|220744.746|123.508 +638026.040|220748.973|123.740 +638021.453|220753.210|124.316 +638016.771|220757.529|124.240 +638002.970|220770.261|124.801 +637998.395|220774.479|124.871 +637984.694|220787.119|125.633 +637975.526|220795.577|125.788 +637970.966|220799.784|126.047 +637966.388|220804.002|125.895 +637961.819|220808.217|126.136 +637957.271|220812.411|126.200 +637952.900|220816.450|127.093 +637948.356|220820.644|127.215 +637943.869|220824.783|127.391 +637939.379|220828.923|127.593 +637934.826|220833.123|127.708 +637930.330|220837.274|127.882 +637925.870|220841.386|128.001 +637916.827|220849.722|127.855 +637912.325|220853.874|127.779 +637907.884|220857.967|127.788 +637894.257|220870.522|126.742 +637889.803|220874.621|126.492 +637885.301|220878.770|126.251 +637880.864|220882.860|126.111 +637871.918|220891.108|125.776 +637867.477|220895.195|125.407 +637858.467|220903.492|124.316 +637854.035|220907.576|124.057 +637849.548|220911.703|123.542 +637831.867|220927.992|122.003 +637827.417|220932.088|121.524 +637818.617|220940.193|120.872 +637814.298|220944.171|120.616 +637809.909|220948.215|120.268 +637805.611|220952.178|120.137 +637788.210|220968.198|118.308 +637779.655|220976.083|117.717 +637775.415|220979.991|117.766 +637771.172|220983.898|117.571 +637767.014|220987.736|117.787 +637758.800|220995.316|118.260 +637754.749|220999.056|118.790 +637746.547|221006.624|119.156 +637742.551|221010.315|119.726 +637734.526|221017.716|120.518 +637726.442|221025.165|120.860 +637710.379|221039.963|121.244 +637706.399|221043.630|121.295 +637698.419|221050.982|121.356 +637686.346|221062.089|120.680 +637674.477|221073.019|120.329 +637670.600|221076.585|120.293 +637666.613|221080.252|119.799 +637662.544|221083.992|118.970 +637651.023|221094.602|119.034 +637631.896|221112.207|118.278 +637628.108|221115.694|118.104 +637624.285|221119.205|117.601 +637620.664|221122.546|118.125 +637617.019|221125.908|118.348 +637609.887|221132.486|119.250 +637606.348|221135.747|119.720 +637599.234|221142.306|120.320 +637595.689|221145.574|120.579 +637592.163|221148.823|120.920 +637581.620|221158.540|121.521 +637578.151|221161.734|121.710 +637574.682|221164.932|122.118 +637567.827|221171.250|122.658 +637564.319|221174.478|122.533 +637560.930|221177.602|122.868 +637547.592|221189.898|124.100 +637544.391|221192.848|124.581 +637541.051|221195.927|124.737 +637537.701|221199.011|124.682 +637534.394|221202.053|124.593 +637773.114|220979.485|117.778 +637777.320|220975.599|117.601 +637781.569|220971.679|117.891 +637785.854|220967.726|118.132 +637790.170|220963.745|118.537 +637794.575|220959.685|119.147 +637820.717|220935.569|120.850 +637825.155|220931.476|121.268 +637834.040|220923.283|122.234 +637856.342|220902.718|124.176 +637860.841|220898.566|124.572 +637874.347|220886.109|125.672 +637878.861|220881.949|125.956 +637883.326|220877.825|125.992 +637887.895|220873.612|126.355 +637892.397|220869.458|126.651 +637901.459|220861.097|127.059 +637906.052|220856.864|127.657 +637910.582|220852.682|127.614 +637915.090|220848.521|127.757 +637919.695|220844.269|127.919 +637924.212|220840.100|127.861 +637928.733|220835.927|127.830 +637933.268|220831.736|127.635 +637937.809|220827.542|127.468 +637942.348|220823.348|127.318 +637946.896|220819.151|127.236 +637951.446|220814.944|126.882 +637955.973|220810.759|126.386 +637960.517|220806.553|126.038 +637965.071|220802.341|125.745 +637978.982|220789.481|125.648 +637992.847|220776.661|125.078 +637997.441|220772.416|124.846 +638002.122|220768.081|124.575 +638006.789|220763.768|124.535 +638011.425|220759.483|124.298 +638016.125|220755.136|124.203 +638020.773|220750.839|124.090 +638025.485|220746.483|123.746 +638030.137|220742.179|123.350 +638034.840|220737.833|123.328 +638044.218|220729.158|122.801 +638049.019|220724.720|122.847 +638067.904|220707.255|121.905 +638072.678|220702.842|121.847 +638077.362|220698.504|121.082 +638086.933|220689.656|120.832 +638091.712|220685.236|120.491 +638096.458|220680.847|120.268 +638101.173|220676.480|119.406 +638105.986|220672.033|119.393 +638110.738|220667.631|118.875 +638144.525|220636.389|117.178 +638149.378|220631.906|117.239 +638159.122|220622.896|116.885 +638164.057|220618.339|117.376 +638169.040|220613.745|118.345 +638174.012|220609.161|119.259 +638178.998|220604.562|119.884 +638193.888|220590.828|122.256 +638203.800|220581.680|123.200 +638218.653|220567.964|124.197 +638228.510|220558.863|124.901 +638233.509|220554.245|124.959 +638258.252|220531.385|125.669 +638278.129|220513.036|127.190 +638283.112|220508.434|127.382 +638308.057|220485.409|129.927 +638318.060|220476.171|130.619 +638323.029|220471.583|130.827 +638328.027|220466.963|130.808 +638332.980|220462.382|130.878 +638337.933|220457.803|130.933 +638342.935|220453.180|131.043 +638347.934|220448.559|131.137 +638352.924|220443.947|131.070 +638367.886|220430.109|130.863 +638372.870|220425.501|130.729 +638377.856|220420.889|130.723 +638382.824|220416.293|130.284 +638387.802|220411.687|130.074 +638392.831|220407.039|129.921 +638397.799|220402.439|129.491 +638402.768|220397.840|129.083 +638407.791|220393.192|128.830 +638412.814|220388.547|128.519 +638417.776|220383.950|127.946 +638422.796|220379.305|127.513 +638427.813|220374.660|127.126 +638432.790|220370.057|126.849 +638437.807|220365.412|126.416 +638442.828|220360.767|125.941 +638447.799|220356.165|125.468 +638452.819|220351.516|125.044 +638457.839|220346.871|124.538 +638462.859|220342.223|123.926 +638467.876|220337.575|123.271 +638472.905|220332.924|122.972 +638477.931|220328.272|122.691 +638483.009|220323.575|122.448 +638488.039|220318.924|122.283 +638493.071|220314.270|122.082 +638498.097|220309.615|121.698 +638503.129|220304.961|121.487 +638508.158|220300.307|121.058 +638513.240|220295.607|120.817 +638518.275|220290.953|120.719 +638523.307|220286.295|120.579 +638528.391|220281.598|120.594 +638533.378|220276.983|120.277 +638538.459|220272.283|120.226 +638543.543|220267.583|120.192 +638548.578|220262.926|120.079 +638553.613|220258.275|120.320 +638558.697|220253.572|120.162 +638563.736|220248.908|119.829 +638568.820|220244.214|120.137 +638573.852|220239.557|119.854 +638578.891|220234.900|119.902 +638583.975|220230.200|119.991 +638589.062|220225.497|119.948 +638594.051|220220.885|120.034 +638599.138|220216.182|119.966 +638604.226|220211.476|119.863 +638609.267|220206.812|119.802 +638614.311|220202.149|119.671 +638619.402|220197.440|119.607 +638624.449|220192.773|119.409 +638629.497|220188.104|119.247 +638634.541|220183.440|119.211 +638639.592|220178.771|119.076 +638644.691|220174.049|118.802 +638649.744|220169.377|118.622 +638654.801|220164.698|118.363 +638659.858|220160.022|118.174 +638664.914|220155.341|117.927 +638669.977|220150.659|117.690 +638675.083|220145.938|117.546 +638680.093|220141.301|117.449 +638685.153|220136.623|117.324 +638690.216|220131.941|117.184 +638695.239|220127.293|116.900 +638700.305|220122.611|116.772 +638705.377|220117.920|116.537 +638710.403|220113.272|116.321 +638715.478|220108.581|116.089 +638720.562|220103.878|115.718 +638725.603|220099.215|115.303 +638730.690|220094.509|114.980 +638735.738|220089.836|114.495 +638740.791|220085.163|114.020 +638745.894|220080.442|113.538 +638750.905|220075.803|113.005 +638755.980|220071.106|112.282 +638761.061|220066.400|111.520 +638766.154|220061.681|110.573 +638771.253|220056.957|109.631 +638776.310|220052.275|108.686 +638781.418|220047.542|107.707 +638786.472|220042.860|106.900 +638791.504|220038.206|106.476 +638801.614|220028.854|105.824 +638816.598|220015.010|105.961 +638821.609|220010.377|106.019 +638826.578|220005.784|106.055 +638831.585|220001.160|106.241 +638836.602|219996.518|105.708 +638841.589|219991.910|105.595 +638846.603|219987.267|105.141 +638851.602|219982.647|104.955 +638856.604|219978.020|104.757 +638861.553|219973.445|104.611 +638866.570|219968.803|104.297 +638871.557|219964.188|103.803 +638876.565|219959.552|103.132 +638881.661|219954.831|102.041 +638886.599|219950.265|101.706 +638891.543|219945.702|102.352 +638901.388|219936.607|102.608 +638906.295|219932.068|102.651 +638916.174|219922.942|102.721 +638926.049|219913.811|102.404 +638931.011|219909.211|101.581 +638960.565|219881.880|99.987 +638980.139|219863.777|99.063 +639013.893|219832.596|100.609 +639032.995|219814.955|101.700 +639037.875|219810.434|101.035 +639042.651|219806.021|101.179 +639047.521|219801.516|100.663 +639052.371|219797.026|100.310 +639057.089|219792.668|100.590 +639066.645|219783.834|100.362 +639071.454|219779.390|100.069 +639076.237|219774.971|99.987 +639095.336|219757.323|98.786 +639099.880|219753.141|100.084 +639104.492|219748.892|100.947 +639109.125|219744.616|101.331 +639113.791|219740.309|101.535 +639118.452|219736.008|101.791 +639123.082|219731.738|102.248 +639127.715|219727.465|102.706 +639132.320|219723.213|103.029 +639136.929|219718.964|103.367 +639141.568|219714.684|103.830 +639146.128|219710.478|104.184 +639150.681|219706.275|104.577 +639155.305|219702.008|104.876 +639159.917|219697.753|104.961 +639164.501|219693.522|105.226 +639169.109|219689.267|105.357 +639173.727|219685.003|105.464 +639178.302|219680.778|105.540 +639182.874|219676.557|105.650 +639187.504|219672.280|105.732 +639192.040|219668.096|106.092 +639196.545|219663.941|106.357 +639201.062|219659.771|106.567 +639205.634|219655.550|106.772 +639210.172|219651.359|106.884 +639214.699|219647.177|106.817 +639219.274|219642.953|106.781 +639223.879|219638.697|106.589 +639228.451|219634.470|106.321 +639233.032|219630.236|106.040 +639237.601|219626.012|105.577 +639242.201|219621.760|105.232 +639246.785|219617.523|105.010 +639251.345|219613.308|104.656 +639255.886|219609.107|104.419 +639260.355|219604.980|104.327 +639264.869|219600.814|104.294 +639269.386|219596.638|104.239 +639273.854|219592.514|104.214 +639278.338|219588.369|104.111 +639282.754|219584.291|104.129 +639287.223|219580.167|104.150 +639291.642|219576.082|104.172 +639296.108|219571.958|104.251 +639300.463|219567.938|104.373 +639304.877|219563.863|104.483 +639309.257|219559.818|104.522 +639313.667|219555.743|104.434 +639318.069|219551.677|104.397 +639322.503|219547.580|104.233 +639326.957|219543.463|103.995 +639327.828|219540.134|103.794 +639323.467|219544.157|104.028 +639319.105|219548.181|104.272 +639314.725|219552.219|104.379 +639310.345|219556.258|104.510 +639305.998|219560.263|104.480 +639301.603|219564.314|104.464 +639297.232|219568.343|104.358 +639292.859|219572.373|104.272 +639288.482|219576.408|104.217 +639284.108|219580.438|104.163 +639279.661|219584.537|104.239 +639275.244|219588.607|104.178 +639270.803|219592.703|104.260 +639266.326|219596.830|104.294 +639261.842|219600.963|104.367 +639257.358|219605.099|104.480 +639252.878|219609.229|104.577 +639248.373|219613.384|104.824 +639243.807|219617.596|105.159 +639239.250|219621.802|105.464 +639234.648|219626.045|105.757 +639230.082|219630.261|106.153 +639225.525|219634.464|106.531 +639220.907|219638.722|106.705 +639216.293|219642.983|106.900 +639211.760|219647.159|106.924 +639207.194|219651.365|106.866 +639202.644|219655.562|106.766 +639198.062|219659.781|106.552 +639193.536|219663.950|106.345 +639188.995|219668.132|105.943 +639184.407|219672.357|105.808 +639179.771|219676.630|105.702 +639175.117|219680.922|105.723 +639170.509|219685.164|105.476 +639165.888|219689.425|105.345 +639161.206|219693.738|105.272 +639156.604|219697.981|105.068 +639151.897|219702.315|104.888 +639147.277|219706.570|104.510 +639142.607|219710.871|104.138 +639137.901|219715.205|103.705 +639133.286|219719.451|103.334 +639128.577|219723.789|102.943 +639123.880|219728.117|102.511 +639119.183|219732.439|102.069 +639114.453|219736.798|101.870 +639109.701|219741.174|101.502 +639104.940|219745.561|101.209 +639100.255|219749.870|100.429 +639085.978|219763.010|98.966 +639071.296|219776.562|100.157 +639061.500|219785.596|100.462 +639056.611|219790.101|100.231 +639046.702|219799.245|101.136 +639036.844|219808.337|101.432 +639007.419|219835.452|100.221 +639002.576|219839.899|99.051 +638997.519|219844.569|99.642 +638927.229|219909.397|101.526 +638922.087|219914.149|102.550 +638917.033|219918.809|102.779 +638911.977|219923.470|102.572 +638901.894|219932.763|102.392 +638896.846|219937.414|102.148 +638891.805|219942.066|102.395 +638886.751|219946.720|102.251 +638881.750|219951.325|101.581 +638871.463|219960.832|103.458 +638866.351|219965.553|104.135 +638861.236|219970.272|104.312 +638856.177|219974.938|104.443 +638851.111|219979.611|104.675 +638846.021|219984.305|104.669 +638840.955|219988.977|104.967 +638835.840|219993.696|105.324 +638830.769|219998.377|105.754 +638825.688|220003.059|105.741 +638815.532|220012.426|105.741 +638810.445|220017.114|105.876 +638795.290|220031.080|105.744 +638790.172|220035.801|106.452 +638785.085|220040.495|106.817 +638779.937|220045.247|107.406 +638774.819|220049.974|108.320 +638769.699|220054.705|109.335 +638764.596|220059.417|110.152 +638759.494|220064.129|111.042 +638754.398|220068.835|111.871 +638749.308|220073.535|112.657 +638744.239|220078.211|113.115 +638739.118|220082.938|113.745 +638734.049|220087.617|114.303 +638728.938|220092.332|114.855 +638723.881|220096.999|115.303 +638718.828|220101.659|115.730 +638713.780|220106.316|116.132 +638708.693|220111.007|116.348 +638703.658|220115.649|116.559 +638698.567|220120.343|116.940 +638693.541|220124.976|116.989 +638688.509|220129.615|117.235 +638683.434|220134.297|117.409 +638678.408|220138.933|117.647 +638673.336|220143.606|117.760 +638668.267|220148.278|117.882 +638663.299|220152.856|117.891 +638658.224|220157.541|118.342 +638653.158|220162.211|118.488 +638648.135|220166.841|118.805 +638643.121|220171.468|118.979 +638638.061|220176.131|119.083 +638633.044|220180.755|119.293 +638627.982|220185.424|119.604 +638622.977|220190.036|119.540 +638617.920|220194.700|119.738 +638612.912|220199.314|119.820 +638607.908|220203.929|119.921 +638602.854|220208.586|120.000 +638597.803|220213.241|120.104 +638592.847|220217.806|120.076 +638587.800|220222.458|119.985 +638582.749|220227.112|120.015 +638577.748|220231.721|120.037 +638572.700|220236.372|119.997 +638567.698|220240.983|120.180 +638562.657|220245.629|120.104 +638557.609|220250.280|120.122 +638552.656|220254.849|120.360 +638547.612|220259.500|120.430 +638542.564|220264.148|120.223 +638537.566|220268.757|120.357 +638532.518|220273.405|120.351 +638527.522|220278.014|120.607 +638522.524|220282.622|120.625 +638517.479|220287.271|120.695 +638512.435|220291.922|120.939 +638507.439|220296.530|121.128 +638502.398|220301.179|121.490 +638497.402|220305.784|121.756 +638492.409|220310.390|121.945 +638487.368|220315.038|122.234 +638482.372|220319.640|122.371 +638477.334|220324.289|122.609 +638472.344|220328.891|122.917 +638467.352|220333.494|123.182 +638462.320|220338.139|123.746 +638457.339|220342.735|124.441 +638452.359|220347.335|125.002 +638447.326|220351.977|125.416 +638442.346|220356.573|125.944 +638437.366|220361.169|126.413 +638432.336|220365.808|126.858 +638427.395|220370.365|127.102 +638422.363|220375.007|127.416 +638417.383|220379.601|127.891 +638412.405|220384.194|128.403 +638407.425|220388.790|128.800 +638402.435|220393.390|128.998 +638397.406|220398.029|129.345 +638392.429|220402.622|129.808 +638387.488|220407.176|130.049 +638382.495|220411.779|130.174 +638377.518|220416.372|130.619 +638372.525|220420.977|130.720 +638367.530|220425.580|130.857 +638352.576|220439.363|130.891 +638347.641|220443.914|131.293 +638342.630|220448.531|131.144 +638337.665|220453.106|131.034 +638332.700|220457.681|130.900 +638327.738|220462.253|130.869 +638322.770|220466.829|130.808 +638317.795|220471.413|130.631 +638312.812|220476.000|130.333 +638307.828|220480.593|130.037 +638302.839|220485.187|129.720 +638282.917|220503.523|127.900 +638277.958|220508.089|127.510 +638253.144|220530.940|125.806 +638243.281|220540.026|125.532 +638238.370|220544.550|125.401 +638233.387|220549.137|125.008 +638208.841|220571.744|123.880 +638203.888|220576.307|123.453 +638198.950|220580.848|122.722 +638194.049|220585.359|122.420 +638189.105|220589.910|121.689 +638174.316|220603.516|119.695 +638169.403|220608.034|118.955 +638159.546|220617.098|117.303 +638154.590|220621.655|116.275 +638149.807|220626.069|116.922 +638140.173|220634.950|117.178 +638135.387|220639.364|117.397 +638125.719|220648.270|116.992 +638106.788|220665.741|119.159 +638102.042|220670.118|119.409 +638097.290|220674.498|119.616 +638092.566|220678.860|120.049 +638087.842|220683.219|120.527 +638078.475|220691.860|121.369 +638069.044|220700.556|121.753 +638064.323|220704.911|121.923 +638059.647|220709.227|122.076 +638045.575|220722.212|122.673 +638040.905|220726.522|122.957 +638031.569|220735.135|123.207 +638026.945|220739.406|123.493 +638022.285|220743.703|123.542 +638017.661|220747.971|123.877 +638013.019|220752.256|124.093 +638003.781|220760.784|124.526 +637994.603|220769.249|124.791 +637985.398|220777.747|125.264 +637976.266|220786.171|125.636 +637971.652|220790.426|125.520 +637962.474|220798.894|125.694 +637957.978|220803.045|126.090 +637948.941|220811.387|126.629 +637944.439|220815.542|127.020 +637939.971|220819.669|127.330 +637935.411|220823.875|127.398 +637930.924|220828.014|127.629 +637926.416|220832.175|127.742 +637921.932|220836.311|127.711 +637917.397|220840.493|127.702 +637912.904|220844.635|127.669 +637908.408|220848.783|127.629 +637903.903|220852.938|127.559 +637899.341|220857.141|127.181 +637894.842|220861.286|126.904 +637890.312|220865.462|126.748 +637881.354|220873.719|126.239 +637876.816|220877.898|125.825 +637872.363|220882.004|125.630 +637867.882|220886.134|125.294 +637858.924|220894.385|124.459 +637854.453|220898.505|124.243 +637849.945|220902.657|123.584 +637845.479|220906.772|123.185 +637832.187|220919.019|122.121 +637805.806|220943.326|120.049 +637801.396|220947.386|119.634 +637792.663|220955.433|119.031 +637788.378|220959.383|118.778 +637779.639|220967.433|117.766 +637775.323|220971.408|117.434 +637771.081|220975.321|117.473 +637762.778|220982.987|117.967 +637758.654|220986.791|118.122 +637754.551|220990.580|118.644 +637750.415|220994.396|118.766 +637746.276|220998.215|118.887 +637734.130|221009.432|120.122 +637730.027|221013.220|120.226 +637726.040|221016.905|120.640 +637722.011|221020.624|120.875 +637713.921|221028.094|121.231 +637701.830|221039.256|121.372 +637693.609|221046.834|120.622 +637685.627|221054.201|120.509 +637642.357|221094.114|118.894 +637638.526|221097.650|118.921 +637608.475|221125.381|118.604 +637604.894|221128.694|119.098 +637601.398|221131.928|119.948 +637597.859|221135.198|120.204 +637587.085|221145.147|120.655 +637580.071|221151.627|121.311 +637576.606|221154.831|121.710 +637573.100|221158.068|121.759 +637569.754|221161.164|122.423 +637552.587|221177.017|123.423 +637539.264|221189.328|124.548 +637532.556|221195.518|124.587 +637529.355|221198.475|124.895 +637767.755|220975.989|117.574 +637776.165|220968.210|117.473 +637780.441|220964.260|117.659 +637789.204|220956.165|118.656 +637793.590|220952.117|119.201 +637797.997|220948.045|119.628 +637802.274|220944.091|119.674 +637806.672|220940.028|120.088 +637833.144|220915.571|122.201 +637841.947|220907.436|122.609 +637850.984|220899.094|123.816 +637855.504|220894.918|124.337 +637859.915|220890.840|124.279 +637868.992|220882.458|125.355 +637873.497|220878.294|125.593 +637878.005|220874.128|125.889 +637882.519|220869.958|126.236 +637887.033|220865.788|126.596 +637891.580|220861.585|126.895 +637896.067|220857.437|126.867 +637905.150|220849.045|127.492 +637909.695|220844.842|127.577 +637914.218|220840.657|127.553 +637918.753|220836.466|127.608 +637923.319|220832.242|127.583 +637927.894|220828.011|127.626 +637932.369|220823.872|127.367 +637936.916|220819.663|127.282 +637941.482|220815.438|127.017 +637945.951|220811.299|126.477 +637955.104|220802.838|126.151 +637959.639|220798.644|125.749 +637964.199|220794.428|125.520 +637968.835|220790.143|125.480 +637978.016|220781.657|125.179 +637991.912|220768.816|124.874 +637996.554|220764.524|124.673 +638005.795|220755.981|123.978 +638010.437|220751.689|123.810 +638015.147|220747.337|123.789 +638019.810|220743.024|123.469 +638024.437|220738.747|123.234 +638043.261|220721.346|122.679 +638057.401|220708.276|122.057 +638062.156|220703.881|121.814 +638066.920|220699.477|121.682 +638071.635|220695.121|121.542 +638081.069|220686.395|120.594 +638085.885|220681.945|120.546 +638090.585|220677.595|119.957 +638095.361|220673.179|119.619 +638100.149|220668.750|119.393 +638104.929|220664.333|119.110 +638114.341|220655.616|117.303 +638138.573|220633.222|117.065 +638143.398|220628.763|116.873 +638153.099|220619.796|116.574 +638167.964|220606.089|118.683 +638182.860|220592.355|120.966 +638187.807|220587.792|121.786 +638197.710|220578.654|122.649 +638202.706|220574.051|123.597 +638207.640|220569.495|123.923 +638217.568|220560.335|124.813 +638222.457|220555.815|124.721 +638227.428|220551.228|125.047 +638242.263|220537.530|125.858 +638277.040|220505.422|127.675 +638287.020|220496.211|128.318 +638301.991|220482.392|129.653 +638307.027|220477.747|130.110 +638312.001|220473.153|130.424 +638316.972|220468.566|130.680 +638321.983|220463.939|130.851 +638326.982|220459.321|130.863 +638331.938|220454.743|130.976 +638336.986|220450.080|131.067 +638341.939|220445.505|131.156 +638346.934|220440.890|131.220 +638351.909|220436.291|130.866 +638356.926|220431.664|131.375 +638366.883|220422.459|130.918 +638371.861|220417.856|130.689 +638376.893|220413.208|130.613 +638381.858|220408.615|130.177 +638386.842|220404.009|130.080 +638391.862|220399.367|129.784 +638396.833|220394.771|129.382 +638401.804|220390.174|129.010 +638406.831|220385.529|128.839 +638411.848|220380.890|128.428 +638416.813|220376.297|127.879 +638421.830|220371.655|127.449 +638426.853|220367.012|127.181 +638431.873|220362.370|126.855 +638436.847|220357.771|126.471 +638441.864|220353.129|125.953 +638446.881|220348.487|125.441 +638451.901|220343.845|124.953 +638456.918|220339.202|124.435 +638461.939|220334.557|123.761 +638466.910|220329.955|123.228 +638471.985|220325.264|122.896 +638477.011|220320.616|122.579 +638481.994|220316.010|122.393 +638487.072|220311.319|122.176 +638492.102|220306.668|121.954 +638497.134|220302.017|121.710 +638502.163|220297.369|121.494 +638507.195|220292.717|121.183 +638512.228|220288.063|121.042 +638517.260|220283.412|120.725 +638522.295|220278.760|120.698 +638527.330|220274.109|120.646 +638532.411|220269.412|120.472 +638537.398|220264.804|120.475 +638542.433|220260.152|120.631 +638547.517|220255.458|120.567 +638552.504|220250.847|120.387 +638557.588|220246.147|120.198 +638563.007|220241.142|120.168 +638567.607|220236.893|120.250 +638572.694|220232.193|120.201 +638577.729|220227.542|120.256 +638582.719|220222.930|120.177 +638587.806|220218.230|120.110 +638592.844|220213.579|120.216 +638597.834|220208.967|120.262 +638602.875|220204.307|120.094 +638607.917|220199.649|120.012 +638612.958|220194.992|120.000 +638618.003|220190.329|119.826 +638623.044|220185.671|119.881 +638628.046|220181.051|119.668 +638633.142|220176.338|119.464 +638638.144|220171.711|119.238 +638643.197|220167.045|119.076 +638648.248|220162.375|118.884 +638653.256|220157.745|118.659 +638658.315|220153.070|118.400 +638663.326|220148.434|118.110 +638668.328|220143.816|118.196 +638673.391|220139.134|117.918 +638678.451|220134.456|117.772 +638683.468|220129.823|117.607 +638688.530|220125.138|117.424 +638693.547|220120.499|117.281 +638698.570|220115.851|116.949 +638703.594|220111.202|116.733 +638708.623|220106.551|116.446 +638713.652|220101.894|116.120 +638718.693|220097.230|115.672 +638723.738|220092.558|115.129 +638728.791|220087.879|114.538 +638733.848|220083.194|113.886 +638738.905|220078.513|113.331 +638743.974|220073.819|112.599 +638748.997|220069.164|111.880 +638754.072|220064.461|111.146 +638759.110|220059.792|110.289 +638764.151|220055.122|109.475 +638769.242|220050.407|108.677 +638774.295|220045.725|107.790 +638779.334|220041.059|107.171 +638784.366|220036.401|106.714 +638794.470|220027.050|106.061 +638799.429|220022.463|106.058 +638804.464|220017.805|105.726 +638809.506|220013.139|105.333 +638814.517|220008.506|105.400 +638829.531|219994.619|105.318 +638834.545|219989.980|104.842 +638839.611|219985.289|104.333 +638844.613|219980.662|104.102 +638849.605|219976.045|103.974 +638854.592|219971.433|103.964 +638859.572|219966.828|104.041 +638864.577|219962.198|103.873 +638869.570|219957.577|103.327 +638874.626|219952.892|102.636 +638889.580|219939.057|102.102 +638894.545|219934.467|102.029 +638899.519|219929.864|101.889 +638904.442|219925.314|101.819 +638909.325|219920.806|102.636 +638934.322|219897.656|99.487 +638939.305|219893.041|99.039 +638997.930|219838.839|99.706 +639002.795|219834.340|99.392 +639026.499|219812.464|103.303 +639031.401|219807.920|102.428 +639050.804|219789.958|100.840 +639055.620|219785.502|100.423 +639074.816|219767.729|99.770 +639079.605|219763.294|99.322 +639098.393|219745.923|100.575 +639102.962|219741.705|101.374 +639107.579|219737.435|101.840 +639112.218|219733.146|102.191 +639116.879|219728.836|102.422 +639121.536|219724.529|102.690 +639126.126|219720.287|103.093 +639130.714|219716.047|103.519 +639135.310|219711.795|103.888 +639139.913|219707.543|104.263 +639144.448|219703.352|104.742 +639149.054|219699.091|105.104 +639153.641|219694.848|105.303 +639158.234|219690.602|105.476 +639162.794|219686.384|105.574 +639167.396|219682.122|105.723 +639171.962|219677.901|105.830 +639176.492|219673.707|105.851 +639181.061|219669.482|105.973 +639185.617|219665.267|106.177 +639190.104|219661.119|106.503 +639194.606|219656.955|106.759 +639199.120|219652.779|106.967 +639203.659|219648.582|107.067 +639208.139|219644.434|107.211 +639212.669|219640.243|107.104 +639217.207|219636.040|106.967 +639221.755|219631.830|106.814 +639226.321|219627.600|106.567 +639230.859|219623.396|106.220 +639235.422|219619.169|105.772 +639239.960|219614.963|105.473 +639244.514|219610.747|105.126 +639249.050|219606.544|104.885 +639253.509|219602.417|104.806 +639257.989|219598.266|104.626 +639262.412|219594.172|104.513 +639266.874|219590.042|104.483 +639271.352|219585.897|104.382 +639275.765|219581.813|104.376 +639280.173|219577.731|104.397 +639284.537|219573.693|104.409 +639288.902|219569.651|104.440 +639293.307|219565.576|104.544 +639297.671|219561.537|104.611 +639302.048|219557.489|104.644 +639306.443|219553.420|104.589 +639310.799|219549.385|104.492 +639315.197|219545.310|104.214 +639319.586|219541.247|104.010 +639323.982|219537.178|103.794 +639321.604|219536.751|103.696 +639317.157|219540.850|103.843 +639312.686|219544.971|104.138 +639308.269|219549.043|104.440 +639303.798|219553.161|104.513 +639299.384|219557.227|104.586 +639294.986|219561.281|104.601 +639290.573|219565.344|104.458 +639286.156|219569.410|104.342 +639281.715|219573.501|104.364 +639277.283|219577.582|104.370 +639272.812|219581.700|104.321 +639268.374|219585.787|104.388 +639263.887|219589.923|104.467 +639259.391|219594.062|104.595 +639254.850|219598.250|104.739 +639250.415|219602.335|104.864 +639245.880|219606.514|105.007 +639241.375|219610.665|105.278 +639236.812|219614.874|105.623 +639232.188|219619.138|106.028 +639227.683|219623.293|106.378 +639223.096|219627.520|106.628 +639218.554|219631.705|106.939 +639214.013|219635.890|107.000 +639209.456|219640.090|107.165 +639204.939|219644.251|107.134 +639200.431|219648.402|107.058 +639195.886|219652.587|106.924 +639191.363|219656.751|106.702 +639186.895|219660.863|106.446 +639182.387|219665.011|106.156 +639177.866|219669.174|105.970 +639173.276|219673.399|105.888 +639168.747|219677.575|105.790 +639164.169|219681.790|105.677 +639159.594|219686.009|105.586 +639154.979|219690.261|105.443 +639150.416|219694.464|105.303 +639145.826|219698.694|105.056 +639141.251|219702.904|104.714 +639136.688|219707.107|104.333 +639132.146|219711.289|103.818 +639127.480|219715.583|103.474 +639122.899|219719.802|102.931 +639118.324|219724.017|102.672 +639113.663|219728.309|102.340 +639108.988|219732.616|102.117 +639104.345|219736.889|101.703 +639099.737|219741.132|101.075 +639095.131|219745.362|100.100 +639071.451|219767.192|99.904 +639052.154|219784.993|100.898 +639047.262|219789.510|101.447 +639042.364|219794.033|102.066 +639037.439|219798.581|102.578 +639032.635|219803.009|102.553 +639027.703|219807.560|103.145 +639022.784|219812.105|103.693 +638998.863|219834.111|99.889 +638989.201|219843.008|99.045 +638949.653|219879.466|98.643 +638939.619|219888.719|98.908 +638909.203|219916.807|102.623 +638899.254|219925.966|101.572 +638894.158|219930.672|101.852 +638889.120|219935.320|102.059 +638884.008|219940.036|102.544 +638878.997|219944.650|101.971 +638873.861|219949.396|102.834 +638868.728|219954.133|103.120 +638863.696|219958.775|103.425 +638858.579|219963.496|103.641 +638853.507|219968.172|103.355 +638848.447|219972.838|103.501 +638843.354|219977.532|103.498 +638838.230|219982.263|103.903 +638827.934|219991.769|104.870 +638817.744|220001.166|105.214 +638812.618|220005.894|105.226 +638802.407|220015.312|105.391 +638797.311|220020.021|105.769 +638792.181|220024.758|105.946 +638781.924|220034.228|106.372 +638776.761|220039.004|107.183 +638771.616|220043.759|107.774 +638766.468|220048.517|108.469 +638761.320|220053.278|109.241 +638756.123|220058.085|110.073 +638750.981|220062.840|110.883 +638745.790|220067.640|111.731 +638740.663|220072.380|112.407 +638735.482|220077.171|113.200 +638730.367|220081.899|113.764 +638725.189|220086.687|114.684 +638720.077|220091.412|115.288 +638714.920|220096.179|115.928 +638709.778|220100.931|116.303 +638704.642|220105.673|116.605 +638699.555|220110.373|116.922 +638694.422|220115.113|117.269 +638689.292|220119.850|117.513 +638684.166|220124.586|117.842 +638679.051|220129.308|117.845 +638673.979|220133.989|117.991 +638668.862|220138.711|118.104 +638663.744|220143.438|118.314 +638658.684|220148.108|118.244 +638653.561|220152.844|118.781 +638648.446|220157.566|119.009 +638643.380|220162.241|119.238 +638638.272|220166.960|119.470 +638633.163|220171.675|119.585 +638628.101|220176.351|119.906 +638622.998|220181.060|119.951 +638617.899|220185.769|120.018 +638612.845|220190.432|120.076 +638607.743|220195.141|120.162 +638602.644|220199.851|120.305 +638597.593|220204.511|120.326 +638592.497|220209.217|120.390 +638587.401|220213.917|120.290 +638582.353|220218.578|120.354 +638577.257|220223.284|120.488 +638572.209|220227.938|120.311 +638567.162|220232.595|120.427 +638562.072|220237.295|120.235 +638557.030|220241.947|120.247 +638551.983|220246.604|120.226 +638546.890|220251.307|120.555 +638541.842|220255.971|120.878 +638536.798|220260.625|120.783 +638531.753|220265.279|120.677 +638526.709|220269.933|120.671 +638521.713|220274.548|120.750 +638516.620|220279.245|120.768 +638511.624|220283.860|121.137 +638506.583|220288.517|121.195 +638501.538|220293.171|121.426 +638496.546|220297.783|121.631 +638491.553|220302.395|121.875 +638486.512|220307.049|122.118 +638481.519|220311.658|122.289 +638476.481|220316.312|122.551 +638471.491|220320.920|122.890 +638466.501|220325.529|123.188 +638461.518|220330.135|123.716 +638456.534|220334.740|124.295 +638451.554|220339.343|124.834 +638446.570|220343.948|125.264 +638441.590|220348.551|125.806 +638436.613|220353.153|126.358 +638431.629|220357.756|126.757 +638426.694|220362.312|127.117 +638421.711|220366.918|127.404 +638416.776|220371.475|127.708 +638411.802|220376.074|128.251 +638406.828|220380.671|128.781 +638401.890|220385.233|128.964 +638396.952|220389.793|129.190 +638391.975|220394.393|129.607 +638387.040|220398.949|129.930 +638382.108|220403.506|130.299 +638377.167|220408.069|130.458 +638372.230|220412.629|130.634 +638367.283|220417.195|130.717 +638357.398|220426.324|131.055 +638352.457|220430.886|131.259 +638337.641|220444.563|131.159 +638332.676|220449.141|131.025 +638327.811|220453.634|130.930 +638322.843|220458.215|130.811 +638317.929|220462.750|130.769 +638312.958|220467.338|130.628 +638308.026|220471.888|130.330 +638303.137|220476.396|130.037 +638298.139|220481.002|129.555 +638293.189|220485.568|129.083 +638288.236|220490.134|128.669 +638283.283|220494.700|128.263 +638278.369|220499.241|128.425 +638248.721|220526.576|125.925 +638243.842|220531.081|126.084 +638238.873|220535.665|125.770 +638234.009|220540.151|125.578 +638229.028|220544.745|125.206 +638219.250|220553.767|124.965 +638204.455|220567.407|123.630 +638189.730|220580.982|122.326 +638135.683|220630.802|116.684 +638116.459|220648.557|117.287 +638097.479|220666.101|119.424 +638092.688|220670.530|119.692 +638087.927|220674.925|119.826 +638083.126|220679.360|120.064 +638069.008|220692.408|121.551 +638059.522|220701.165|121.512 +638050.110|220709.852|122.152 +638040.658|220718.573|122.545 +638026.613|220731.533|123.173 +638017.271|220740.149|123.472 +638012.571|220744.487|123.609 +638007.935|220748.763|123.877 +638003.238|220753.094|123.749 +637975.544|220778.652|125.252 +637961.718|220791.402|125.419 +637957.128|220795.635|125.520 +637952.623|220799.799|126.166 +637943.576|220808.144|126.672 +637939.001|220812.369|126.922 +637934.493|220816.529|127.312 +637929.949|220820.723|127.465 +637925.447|220824.875|127.614 +637907.363|220841.550|127.632 +637902.791|220845.763|127.446 +637889.252|220858.241|126.913 +637880.166|220866.611|126.230 +637875.703|220870.723|125.953 +637871.186|220874.886|125.666 +637862.155|220883.204|124.910 +637853.221|220891.437|124.221 +637848.707|220895.592|123.798 +637835.259|220907.976|122.359 +637830.824|220912.063|122.179 +637804.295|220936.499|119.823 +637799.939|220940.513|119.665 +637791.319|220948.456|119.372 +637778.146|220960.587|117.845 +637769.523|220968.527|117.232 +637765.350|220972.380|117.367 +637752.911|220983.856|118.247 +637748.797|220987.657|118.705 +637744.639|220991.491|118.744 +637740.594|220995.228|119.314 +637724.318|221010.245|120.329 +637716.174|221017.753|120.664 +637708.054|221025.239|120.920 +637704.052|221028.927|121.100 +637700.028|221032.636|121.192 +637695.962|221036.382|121.113 +637663.629|221066.149|118.991 +637647.871|221080.657|118.156 +637636.392|221091.237|118.491 +637624.791|221101.914|117.583 +637606.275|221118.983|118.363 +637591.961|221132.187|120.061 +637588.371|221135.497|120.360 +637584.741|221138.841|120.512 +637581.309|221142.011|121.024 +637574.271|221148.503|121.820 +637570.695|221151.795|121.600 +637567.282|221154.946|122.219 +637563.819|221158.135|122.466 +637556.958|221164.462|123.008 +637553.444|221167.702|123.066 +637543.394|221176.968|124.179 +637539.981|221180.114|124.258 +637536.619|221183.214|124.340 +637533.348|221186.228|124.770 +637529.989|221189.325|124.880 +637526.713|221192.342|124.916 +637763.710|220971.670|117.321 +637767.895|220967.796|117.290 +637772.120|220963.885|117.217 +637780.798|220955.866|118.004 +637785.193|220951.803|118.583 +637793.892|220943.762|119.345 +637833.577|220907.073|122.176 +637851.572|220890.447|124.185 +637860.628|220882.074|124.822 +637869.656|220873.731|125.681 +637874.149|220869.577|125.892 +637887.825|220856.931|126.922 +637901.419|220844.361|127.382 +637906.037|220840.093|127.888 +637910.512|220835.948|127.583 +637915.090|220831.715|127.611 +637924.157|220823.320|127.498 +637928.723|220819.093|127.205 +637937.831|220810.662|126.818 +637942.403|220806.425|126.611 +637946.954|220802.210|126.306 +637951.532|220797.970|126.163 +637956.149|220793.694|125.992 +637960.694|220789.478|125.374 +637965.318|220785.196|125.255 +637988.510|220763.717|124.523 +638002.482|220750.778|123.938 +638007.155|220746.447|123.658 +638011.873|220742.079|123.716 +638016.518|220737.775|123.261 +638040.088|220715.945|122.341 +638054.283|220702.799|121.823 +638059.013|220698.416|121.420 +638063.814|220693.972|121.579 +638068.572|220689.568|121.436 +638078.051|220680.783|120.479 +638082.834|220676.352|120.183 +638087.598|220671.935|119.753 +638092.410|220667.482|119.717 +638097.162|220663.074|119.229 +638111.378|220649.883|116.559 +638121.141|220640.851|117.059 +638125.948|220636.398|116.659 +638135.665|220627.404|116.428 +638140.593|220622.844|116.800 +638160.259|220604.662|118.488 +638165.224|220600.072|118.872 +638170.196|220595.482|119.857 +638175.112|220590.934|120.332 +638180.105|220586.323|121.119 +638195.000|220572.558|122.853 +638199.993|220567.946|123.840 +638209.887|220558.796|124.325 +638219.777|220549.649|124.926 +638224.734|220545.062|125.108 +638229.717|220540.456|125.654 +638234.661|220535.881|125.752 +638239.669|220531.251|126.075 +638244.613|220526.676|126.258 +638249.584|220522.074|126.175 +638259.569|220512.844|127.282 +638274.590|220498.951|128.227 +638279.506|220494.401|128.211 +638284.542|220489.747|128.583 +638289.528|220485.135|128.943 +638294.566|220480.478|129.452 +638299.596|220475.826|129.830 +638304.582|220471.218|130.333 +638309.599|220466.579|130.574 +638314.613|220461.943|130.808 +638319.615|220457.316|130.891 +638324.614|220452.692|130.939 +638329.612|220448.065|131.043 +638334.614|220443.438|131.186 +638339.656|220438.775|131.220 +638344.642|220434.160|131.156 +638349.635|220429.539|131.217 +638364.677|220415.619|130.854 +638369.700|220410.968|130.619 +638374.680|220406.359|130.531 +638379.749|220401.665|130.324 +638384.769|220397.017|130.065 +638389.740|220392.415|129.726 +638394.800|220387.727|129.266 +638399.823|220383.075|129.077 +638404.846|220378.424|128.900 +638409.903|220373.739|128.345 +638414.914|220369.094|127.830 +638419.934|220364.446|127.529 +638425.003|220359.755|127.239 +638430.020|220355.107|126.885 +638435.037|220350.459|126.504 +638440.100|220345.771|125.959 +638445.110|220341.123|125.319 +638450.176|220336.432|124.880 +638455.245|220331.738|124.447 +638460.262|220327.087|123.892 +638465.282|220322.435|123.380 +638470.354|220317.738|123.030 +638475.377|220313.087|122.637 +638480.452|220308.387|122.454 +638485.530|220303.690|122.448 +638490.553|220299.033|121.905 +638495.582|220294.378|121.747 +638500.657|220289.678|121.515 +638505.690|220285.021|121.311 +638510.768|220280.321|121.283 +638515.846|220275.618|120.985 +638520.878|220270.964|120.957 +638525.956|220266.261|120.853 +638530.988|220261.609|121.173 +638536.020|220256.952|121.116 +638541.101|220252.246|120.838 +638546.182|220247.537|120.268 +638551.215|220242.882|120.460 +638556.290|220238.185|120.408 +638561.325|220233.528|120.421 +638566.357|220228.874|120.555 +638571.438|220224.171|120.607 +638576.473|220219.513|120.579 +638581.509|220214.853|120.500 +638586.593|220210.147|120.405 +638591.628|220205.489|120.500 +638596.666|220200.826|120.430 +638601.705|220196.160|120.280 +638606.792|220191.453|120.195 +638611.782|220186.836|120.283 +638616.823|220182.166|120.104 +638621.864|220177.503|120.046 +638626.909|220172.833|119.966 +638631.956|220168.157|119.695 +638636.955|220163.531|119.573 +638642.003|220158.861|119.470 +638647.007|220154.225|119.171 +638652.018|220149.586|118.827 +638657.078|220144.895|118.391 +638672.096|220130.999|118.183 +638677.106|220126.357|117.970 +638682.066|220121.770|117.961 +638687.083|220117.128|117.711 +638692.051|220112.528|117.519 +638697.077|220107.877|117.132 +638702.106|220103.217|116.708 +638707.090|220098.605|116.336 +638712.122|220093.948|115.980 +638717.078|220089.351|115.221 +638722.177|220084.618|113.663 +638727.155|220080.012|113.596 +638732.166|220075.370|112.913 +638737.183|220070.722|112.209 +638742.163|220066.104|111.347 +638747.201|220061.432|110.365 +638752.176|220056.823|109.743 +638757.211|220052.156|108.991 +638762.192|220047.542|108.354 +638767.172|220042.930|107.814 +638772.162|220038.306|107.150 +638777.160|220033.673|106.421 +638782.132|220029.071|106.132 +638787.060|220024.508|105.827 +638792.038|220019.899|105.519 +638801.889|220010.786|105.190 +638831.607|219983.284|103.949 +638836.508|219978.745|103.684 +638841.498|219974.121|102.986 +638851.376|219964.980|102.870 +638856.207|219960.515|103.017 +638861.136|219955.958|103.151 +638866.046|219951.414|102.983 +638871.036|219946.793|102.471 +638875.946|219942.248|102.364 +638890.723|219928.575|101.718 +638895.661|219924.003|101.413 +638900.550|219919.486|101.675 +638925.147|219896.714|100.276 +638954.600|219869.447|98.246 +638969.218|219855.923|98.149 +638978.944|219846.922|98.085 +638993.179|219833.788|100.691 +639051.142|219780.177|101.255 +639056.010|219775.669|100.822 +639060.866|219771.173|100.496 +639065.706|219766.695|100.319 +639070.500|219762.258|100.142 +639075.414|219757.707|99.517 +639094.369|219740.187|100.639 +639099.014|219735.901|101.581 +639103.623|219731.643|102.120 +639108.366|219727.263|102.456 +639113.060|219722.926|102.797 +639117.711|219718.625|103.096 +639122.396|219714.297|103.522 +639127.044|219710.006|103.888 +639131.689|219705.711|104.281 +639136.368|219701.392|104.793 +639140.967|219697.140|105.187 +639145.576|219692.882|105.537 +639150.273|219688.538|105.668 +639154.915|219684.247|105.860 +639159.575|219679.937|105.952 +639164.230|219675.633|106.104 +639168.844|219671.369|106.217 +639173.474|219667.084|106.241 +639178.119|219662.792|106.519 +639182.676|219658.580|106.717 +639187.266|219654.337|107.028 +639191.826|219650.121|107.256 +639196.407|219645.888|107.384 +639200.992|219641.645|107.494 +639205.558|219637.423|107.454 +639210.181|219633.147|107.403 +639214.766|219628.904|107.296 +639219.316|219624.692|107.128 +639223.885|219620.464|106.881 +639228.512|219616.179|106.610 +639233.118|219611.915|106.214 +639237.687|219607.684|105.763 +639242.249|219603.456|105.363 +639246.739|219599.305|105.373 +639251.259|219595.123|105.254 +639255.795|219590.923|105.062 +639260.254|219586.796|105.022 +639264.768|219582.620|104.736 +639269.188|219578.530|104.669 +639273.589|219574.461|104.733 +639278.012|219570.367|104.693 +639282.434|219566.274|104.681 +639286.836|219562.205|104.790 +639291.210|219558.160|104.809 +639295.577|219554.118|104.861 +639299.921|219550.101|104.800 +639304.289|219546.056|104.635 +639308.687|219541.987|104.361 +639313.088|219537.909|104.071 +639317.486|219533.840|103.833 +639317.520|219531.423|103.666 +639313.061|219535.544|103.885 +639308.577|219539.686|104.242 +639304.066|219543.856|104.522 +639299.512|219548.062|104.763 +639295.004|219552.223|104.806 +639290.515|219556.368|104.772 +639286.071|219560.470|104.800 +639281.535|219564.658|104.778 +639277.058|219568.791|104.748 +639272.483|219573.013|104.711 +639267.950|219577.198|104.736 +639263.418|219581.386|104.787 +639258.812|219585.638|104.964 +639254.210|219589.890|105.147 +639249.568|219594.175|105.290 +639244.983|219598.409|105.427 +639240.366|219602.676|105.495 +639235.699|219606.989|105.842 +639231.011|219611.323|106.324 +639226.305|219615.670|106.656 +639221.666|219619.955|106.918 +639216.988|219624.277|107.153 +639212.324|219628.587|107.342 +639207.673|219632.882|107.473 +639203.043|219637.155|107.497 +639198.376|219641.465|107.482 +639193.731|219645.754|107.360 +639189.138|219649.990|107.238 +639184.517|219654.258|107.025 +639179.869|219658.543|106.680 +639175.239|219662.813|106.534 +639170.640|219667.056|106.244 +639165.882|219671.451|106.318 +639161.273|219675.703|106.098 +639156.604|219680.007|105.973 +639151.876|219684.372|105.921 +639147.231|219688.654|105.687 +639142.589|219692.931|105.449 +639137.864|219697.283|105.104 +639133.210|219701.572|104.669 +639128.611|219705.812|104.230 +639123.908|219710.146|103.809 +639119.256|219714.428|103.388 +639114.547|219718.769|103.044 +639109.850|219723.100|102.648 +639105.193|219727.391|102.322 +639100.484|219731.732|102.023 +639095.854|219735.993|101.215 +639091.245|219740.233|100.270 +639077.130|219753.235|98.801 +639072.216|219757.780|99.670 +639067.388|219762.239|100.322 +639062.554|219766.702|100.365 +639057.738|219771.146|100.636 +639052.898|219775.617|101.118 +639048.018|219780.125|101.569 +639043.151|219784.624|102.319 +638990.350|219833.319|101.090 +638985.690|219837.604|99.712 +638976.158|219846.376|98.256 +638971.330|219850.833|98.283 +638966.499|219855.286|97.957 +638956.721|219864.311|98.338 +638932.026|219887.116|100.368 +638897.529|219918.956|101.325 +638892.616|219923.488|101.200 +638887.611|219928.109|101.541 +638882.664|219932.678|101.855 +638877.693|219937.265|101.913 +638872.721|219941.852|102.002 +638867.732|219946.458|102.325 +638862.742|219951.066|102.690 +638852.845|219960.195|102.556 +638847.862|219964.791|102.364 +638837.867|219974.012|102.367 +638832.835|219978.660|102.876 +638812.660|219997.292|104.577 +638807.640|220001.925|104.495 +638797.494|220011.292|105.138 +638792.504|220015.897|105.367 +638787.411|220020.597|105.726 +638767.050|220039.388|107.406 +638761.969|220044.079|107.781 +638756.888|220048.770|108.238 +638751.792|220053.476|108.978 +638746.653|220058.225|109.698 +638741.563|220062.928|110.484 +638736.469|220067.634|111.359 +638731.334|220072.377|112.215 +638726.207|220077.117|113.011 +638721.074|220081.859|113.965 +638715.941|220086.602|114.968 +638710.820|220091.336|115.839 +638705.724|220096.039|116.275 +638700.579|220100.790|116.772 +638695.492|220105.484|117.110 +638690.399|220110.187|117.635 +638685.278|220114.909|117.720 +638680.203|220119.594|117.955 +638675.089|220124.306|117.924 +638669.971|220129.027|118.092 +638654.676|220143.130|118.330 +638649.552|220147.861|118.854 +638644.435|220152.585|119.238 +638639.323|220157.304|119.503 +638634.212|220162.016|119.732 +638629.106|220166.725|119.866 +638624.001|220171.434|119.973 +638618.896|220176.143|120.177 +638613.796|220180.846|120.143 +638608.648|220185.592|120.235 +638603.549|220190.295|120.299 +638598.450|220194.998|120.351 +638593.350|220199.701|120.500 +638588.254|220204.398|120.479 +638583.158|220209.098|120.561 +638578.016|220213.841|120.564 +638572.919|220218.538|120.597 +638567.826|220223.238|120.664 +638562.733|220227.932|120.582 +638557.640|220232.626|120.506 +638552.547|220237.323|120.509 +638547.459|220242.014|120.539 +638542.318|220246.756|120.716 +638537.273|220251.411|120.917 +638532.131|220256.153|121.140 +638527.041|220260.847|121.061 +638521.996|220265.496|120.969 +638516.858|220270.235|121.021 +638511.767|220274.932|121.292 +638506.723|220279.583|121.359 +638501.633|220284.277|121.512 +638496.546|220288.971|121.686 +638491.455|220293.665|121.939 +638486.420|220298.316|122.362 +638481.333|220303.007|122.780 +638476.292|220307.659|122.740 +638471.204|220312.350|122.960 +638466.120|220317.040|123.298 +638461.088|220321.686|123.789 +638456.059|220326.331|124.365 +638451.030|220330.976|124.825 +638445.994|220335.621|125.121 +638440.968|220340.263|125.712 +638435.942|220344.902|126.306 +638430.962|220349.502|126.706 +638425.932|220354.141|127.154 +638420.903|220358.783|127.480 +638415.920|220363.382|127.760 +638410.891|220368.024|128.153 +638405.916|220372.618|128.708 +638400.933|220377.217|128.970 +638395.946|220381.820|129.162 +638391.011|220386.373|129.424 +638386.031|220390.973|129.805 +638381.054|220395.569|130.165 +638376.110|220400.129|130.308 +638371.123|220404.732|130.500 +638366.182|220409.291|130.665 +638356.319|220418.396|131.445 +638346.410|220427.534|131.302 +638336.550|220436.629|131.296 +638331.591|220441.201|131.208 +638326.674|220445.733|131.086 +638321.709|220450.311|130.997 +638316.841|220454.798|130.942 +638311.873|220459.379|130.817 +638306.950|220463.921|130.653 +638302.016|220468.468|130.366 +638297.069|220473.025|129.909 +638292.168|220477.539|129.504 +638287.221|220482.099|129.098 +638282.323|220486.610|128.812 +638277.370|220491.173|128.416 +638272.474|220495.687|128.172 +638252.842|220513.780|126.925 +638233.228|220531.855|125.834 +638228.361|220536.344|125.593 +638213.712|220549.847|125.185 +638208.780|220554.386|124.328 +638203.858|220558.918|123.673 +638198.990|220563.405|123.639 +638169.531|220590.532|119.835 +638149.920|220608.588|117.363 +638135.406|220621.966|116.803 +638125.655|220630.951|115.998 +638116.188|220639.696|116.992 +638111.372|220644.137|116.992 +638106.556|220648.578|117.007 +638092.520|220661.553|119.430 +638087.735|220665.970|119.765 +638083.032|220670.313|119.960 +638078.252|220674.721|119.979 +638073.522|220679.089|120.396 +638064.171|220687.724|121.396 +638059.428|220692.098|121.387 +638049.900|220700.885|121.457 +638040.521|220709.550|122.003 +638026.464|220722.538|122.813 +638021.767|220726.878|122.920 +638012.422|220735.507|123.197 +638007.706|220739.860|123.228 +637998.373|220748.480|123.691 +637993.725|220752.774|123.895 +637970.624|220774.116|125.127 +637961.383|220782.648|125.157 +637956.756|220786.921|125.322 +637947.679|220795.312|126.178 +637943.080|220799.558|126.251 +637938.550|220803.740|126.471 +637924.849|220816.392|126.818 +637920.369|220820.531|127.096 +637911.292|220828.916|127.590 +637906.726|220833.132|127.401 +637902.187|220837.320|127.398 +637897.570|220841.578|126.962 +637870.321|220866.718|125.678 +637861.234|220875.100|125.130 +637856.650|220879.318|124.261 +637852.145|220883.476|124.112 +637811.677|220920.786|120.168 +637807.279|220924.843|120.003 +637785.296|220945.119|118.473 +637780.904|220949.172|118.196 +637767.859|220961.203|117.397 +637763.528|220965.196|117.010 +637759.303|220969.097|117.141 +637746.828|220980.628|118.336 +637742.655|220984.484|118.522 +637738.500|220988.321|118.817 +637730.252|220995.941|119.491 +637722.038|221003.534|120.125 +637717.972|221007.292|120.402 +637713.860|221011.090|120.732 +637709.718|221014.912|120.466 +637705.615|221018.704|120.622 +637697.496|221026.208|120.908 +637693.451|221029.948|121.125 +637681.213|221041.244|120.530 +637668.841|221052.655|119.281 +637660.752|221060.123|118.833 +637644.762|221074.878|117.842 +637633.158|221085.604|118.263 +637629.232|221089.228|118.125 +637617.516|221100.040|117.174 +637613.788|221103.487|117.680 +637606.354|221110.360|118.150 +637598.966|221117.191|118.653 +637595.268|221120.608|118.906 +637591.766|221123.854|119.726 +637584.567|221130.514|120.408 +637577.361|221137.173|120.911 +637573.920|221140.362|121.582 +637563.182|221150.286|122.082 +637559.811|221153.407|122.655 +637542.492|221169.418|123.892 +637539.042|221172.607|124.017 +637535.579|221175.807|124.103 +637528.871|221182.007|124.517 +637525.527|221185.094|124.679 +637522.202|221188.170|124.907 +637743.344|220981.673|118.330 +637747.468|220977.857|118.205 +637751.561|220974.066|117.714 +637755.725|220970.213|117.303 +637759.861|220966.385|117.028 +637764.125|220962.437|116.903 +637777.055|220950.492|117.751 +637781.389|220946.487|118.034 +637785.793|220942.421|118.412 +637803.304|220926.245|119.656 +637807.660|220922.219|119.646 +637812.116|220918.104|120.180 +637825.463|220905.778|121.524 +637829.938|220901.648|121.972 +637843.425|220889.191|123.264 +637847.915|220885.045|123.615 +637852.474|220880.836|124.103 +637857.022|220876.636|124.542 +637861.588|220872.421|125.121 +637866.111|220868.245|125.465 +637870.613|220864.081|125.742 +637879.672|220855.711|126.066 +637902.489|220834.628|127.416 +637907.012|220830.447|127.398 +637911.581|220826.222|127.370 +637929.805|220809.363|126.840 +637938.940|220800.911|126.358 +637943.509|220796.684|126.145 +637957.247|220783.971|125.166 +637961.858|220779.700|124.993 +637971.121|220771.132|124.593 +637985.108|220758.194|124.258 +637989.696|220753.945|123.676 +637994.408|220749.589|123.615 +637999.084|220745.264|123.670 +638003.784|220740.911|123.237 +638008.502|220736.550|123.271 +638013.178|220732.221|123.051 +638060.574|220688.373|121.308 +638070.041|220679.607|120.213 +638074.793|220675.212|120.043 +638079.597|220670.768|119.902 +638084.382|220666.339|119.622 +638089.237|220661.849|119.552 +638098.680|220653.098|117.988 +638103.444|220648.685|117.174 +638108.284|220644.207|117.022 +638113.131|220639.724|116.943 +638117.950|220635.264|116.650 +638127.691|220626.255|116.608 +638132.534|220621.774|116.583 +638147.278|220608.152|117.290 +638157.126|220599.054|118.101 +638167.065|220589.880|119.473 +638172.012|220585.317|120.238 +638176.968|220580.739|120.643 +638181.970|220576.124|121.539 +638186.978|220571.506|122.579 +638196.933|220562.313|123.600 +638201.904|220557.720|123.834 +638206.836|220553.163|124.197 +638216.760|220543.998|125.148 +638221.722|220539.414|125.389 +638226.675|220534.836|125.587 +638231.653|220530.239|126.096 +638236.648|220525.622|126.258 +638241.595|220521.050|126.462 +638266.503|220498.040|128.272 +638271.514|220493.407|128.214 +638276.452|220488.841|128.537 +638281.484|220484.193|128.842 +638286.471|220479.588|129.220 +638291.448|220474.988|129.498 +638296.484|220470.334|129.958 +638301.510|220465.686|130.382 +638306.481|220461.089|130.680 +638311.492|220456.456|130.866 +638316.445|220451.872|130.964 +638321.493|220447.202|131.046 +638326.491|220442.579|131.110 +638331.441|220437.997|131.220 +638336.486|220433.331|131.320 +638341.472|220428.716|131.229 +638346.468|220424.096|131.378 +638351.488|220419.444|131.092 +638356.481|220414.827|131.226 +638366.472|220405.576|130.610 +638371.443|220400.970|130.318 +638376.475|220396.313|130.369 +638381.499|220391.665|130.138 +638386.461|220387.065|129.687 +638391.527|220382.374|129.351 +638396.501|220377.769|129.153 +638401.521|220373.118|128.982 +638406.587|220368.430|128.629 +638411.595|220363.788|128.025 +638416.612|220359.139|127.751 +638421.629|220354.491|127.379 +638426.646|220349.846|127.041 +638431.715|220345.152|126.739 +638436.725|220340.507|126.145 +638441.736|220335.862|125.526 +638446.802|220331.171|125.057 +638451.871|220326.474|124.749 +638456.891|220321.826|124.316 +638461.908|220317.174|123.773 +638466.977|220312.481|123.350 +638472.000|220307.826|122.993 +638477.075|220303.129|122.844 +638482.153|220298.432|122.926 +638487.173|220293.778|122.341 +638492.248|220289.078|122.009 +638497.323|220284.378|121.762 +638502.352|220279.721|121.606 +638507.430|220275.021|121.466 +638512.505|220270.321|121.308 +638517.583|220265.621|121.173 +638522.615|220260.966|121.399 +638527.742|220256.224|121.411 +638532.771|220251.566|121.158 +638537.852|220246.863|120.933 +638542.930|220242.160|120.850 +638547.959|220237.506|120.637 +638553.040|220232.803|120.597 +638558.118|220228.103|120.597 +638563.151|220223.448|120.741 +638568.232|220218.748|120.841 +638573.313|220214.042|120.725 +638578.397|220209.339|120.664 +638583.432|220204.679|120.640 +638588.516|220199.973|120.579 +638593.551|220195.309|120.436 +638598.636|220190.606|120.469 +638603.723|220185.897|120.326 +638608.764|220181.230|120.207 +638613.802|220176.570|120.283 +638618.893|220171.858|120.134 +638623.931|220167.194|120.131 +638628.975|220162.525|120.009 +638634.072|220157.803|119.771 +638639.073|220153.173|119.546 +638644.176|220148.449|119.204 +638649.242|220143.752|118.595 +638654.249|220139.113|118.290 +638669.407|220125.086|118.110 +638674.461|220120.401|117.991 +638679.469|220115.765|117.946 +638684.525|220111.081|117.894 +638689.542|220106.429|117.623 +638694.568|220101.769|117.211 +638699.601|220097.105|116.766 +638704.685|220092.390|116.269 +638709.677|220087.760|115.681 +638714.743|220083.054|114.654 +638719.824|220078.336|113.450 +638724.847|220073.672|112.493 +638729.916|220068.969|111.694 +638734.945|220064.297|110.734 +638739.981|220059.624|109.829 +638745.050|220054.921|109.186 +638750.033|220050.297|108.415 +638755.099|220045.600|107.957 +638765.096|220036.331|107.034 +638770.104|220031.680|106.095 +638775.106|220027.047|106.061 +638785.036|220017.845|105.726 +638790.026|220013.221|105.293 +638794.997|220008.613|105.114 +638799.920|220004.053|104.973 +638809.868|219994.827|104.086 +638814.852|219990.209|103.900 +638819.817|219985.606|103.370 +638829.659|219976.493|103.510 +638834.652|219971.857|102.718 +638844.530|219962.697|101.989 +638854.336|219953.621|102.282 +638859.225|219949.094|102.331 +638864.120|219944.559|102.322 +638869.058|219939.981|101.874 +638873.971|219935.427|101.736 +638883.758|219926.362|101.468 +638888.681|219921.802|101.310 +638893.551|219917.288|101.215 +638908.084|219903.834|101.880 +638922.764|219890.219|100.365 +638927.653|219885.693|100.292 +638932.481|219881.221|100.359 +638937.345|219876.713|100.109 +638942.249|219872.166|99.517 +638956.825|219858.648|98.304 +639004.026|219815.012|105.110 +639008.824|219810.562|104.906 +639013.676|219806.070|104.717 +639018.456|219801.638|104.339 +639023.211|219797.230|104.184 +639028.084|219792.710|103.532 +639032.787|219788.355|103.803 +639037.670|219783.825|103.157 +639042.483|219779.360|102.660 +639047.369|219774.824|101.688 +639052.130|219770.408|101.279 +639056.973|219765.915|100.685 +639061.750|219761.486|100.581 +639066.501|219757.082|100.337 +639085.457|219739.519|100.267 +639090.062|219735.258|100.779 +639094.634|219731.034|101.538 +639099.280|219726.736|102.142 +639103.910|219722.454|102.544 +639108.533|219718.177|103.001 +639113.169|219713.883|103.370 +639117.793|219709.609|103.858 +639122.426|219705.321|104.288 +639127.020|219701.069|104.659 +639131.622|219696.811|105.010 +639136.276|219692.501|105.357 +639140.879|219688.243|105.735 +639145.497|219683.966|106.022 +639150.136|219679.675|106.214 +639154.799|219675.353|106.263 +639159.395|219671.098|106.439 +639164.013|219666.821|106.513 +639168.613|219662.560|106.699 +639173.206|219658.308|106.951 +639177.769|219654.084|107.101 +639182.417|219649.777|107.348 +639186.980|219645.555|107.543 +639191.561|219641.310|107.637 +639196.151|219637.061|107.713 +639200.790|219632.760|107.799 +639205.381|219628.508|107.637 +639209.956|219624.268|107.564 +639214.607|219619.955|107.372 +639219.219|219615.682|107.159 +639223.830|219611.406|106.955 +639228.421|219607.148|106.610 +639233.090|219602.819|106.156 +639237.662|219598.580|105.967 +639242.234|219594.340|105.787 +639246.800|219590.109|105.671 +639251.336|219585.903|105.467 +639255.892|219581.678|105.181 +639260.461|219577.448|105.120 +639264.930|219573.303|105.053 +639269.410|219569.151|104.961 +639273.876|219565.015|104.955 +639278.396|219560.827|104.961 +639282.803|219556.743|105.022 +639287.278|219552.597|105.022 +639291.722|219548.480|104.949 +639296.202|219544.325|104.711 +639300.646|219540.201|104.422 +639305.084|219536.089|104.190 +639309.595|219531.904|103.873 +639314.045|219527.777|103.620 +639315.880|219523.666|103.440 +639311.512|219527.704|103.711 +639307.102|219531.783|103.961 +639302.688|219535.864|104.254 +639298.287|219539.930|104.492 +639293.870|219544.014|104.836 +639289.442|219548.108|105.013 +639284.979|219552.232|105.110 +639280.609|219556.267|105.034 +639276.174|219560.367|105.040 +639271.739|219564.463|105.065 +639267.301|219568.560|105.114 +639262.869|219572.656|105.162 +639258.325|219576.853|105.272 +639253.829|219581.011|105.431 +639249.315|219585.184|105.699 +639244.776|219589.378|105.845 +639240.256|219593.553|105.921 +639235.666|219597.799|106.122 +639231.051|219602.064|106.464 +639226.436|219606.331|106.839 +639221.855|219610.567|107.058 +639217.274|219614.801|107.290 +639212.592|219619.129|107.549 +639207.990|219623.384|107.689 +639203.390|219627.633|107.814 +639198.751|219631.919|107.899 +639194.149|219636.171|107.811 +639189.549|219640.417|107.717 +639184.947|219644.672|107.674 +639180.326|219648.936|107.457 +639175.708|219653.200|107.232 +639171.082|219657.470|107.076 +639166.430|219661.765|106.811 +639161.770|219666.066|106.595 +639157.091|219670.388|106.513 +639152.379|219674.740|106.354 +639147.703|219679.062|106.305 +639143.000|219683.406|106.125 +639138.328|219687.719|105.778 +639133.667|219692.019|105.382 +639128.995|219696.335|105.071 +639124.240|219700.724|104.665 +639119.585|219705.022|104.291 +639114.895|219709.350|103.830 +639110.152|219713.727|103.382 +639105.458|219718.061|102.974 +639100.731|219722.423|102.474 +639096.003|219726.788|101.995 +639091.315|219731.113|101.261 +639086.597|219735.459|100.389 +639081.909|219739.785|99.688 +639067.346|219753.248|100.033 +639062.432|219757.798|100.627 +639057.601|219762.261|100.648 +639052.663|219766.830|101.112 +639047.762|219771.365|101.703 +639042.736|219776.022|102.538 +639037.804|219780.585|103.053 +639032.858|219785.166|103.730 +639023.043|219794.243|104.205 +639018.148|219798.770|104.224 +639013.192|219803.354|104.708 +639008.278|219807.895|104.912 +639003.377|219812.428|105.053 +638998.458|219816.978|105.357 +638974.683|219838.875|99.170 +638969.809|219843.368|98.359 +638964.850|219847.958|98.719 +638959.907|219852.527|98.954 +638945.011|219866.304|99.591 +638935.090|219875.482|100.237 +638930.082|219880.112|100.365 +638925.144|219884.675|100.322 +638920.194|219889.250|100.423 +638915.259|219893.809|100.395 +638895.304|219912.265|101.282 +638890.394|219916.801|101.151 +638885.364|219921.452|101.258 +638880.515|219925.923|100.523 +638870.432|219935.256|101.672 +638865.452|219939.862|101.889 +638855.467|219949.094|102.178 +638850.492|219953.688|101.895 +638845.530|219958.275|102.035 +638840.519|219962.908|102.197 +638835.536|219967.519|102.672 +638830.485|219972.189|102.797 +638815.492|219986.051|103.248 +638810.539|219990.636|103.519 +638805.470|219995.326|104.065 +638800.471|219999.947|104.355 +638785.384|220013.907|105.440 +638780.367|220018.540|105.449 +638765.300|220032.475|106.699 +638760.277|220037.121|106.942 +638755.190|220041.827|107.525 +638750.155|220046.484|108.055 +638745.126|220051.135|108.555 +638740.036|220055.848|109.344 +638734.997|220060.514|110.118 +638729.913|220065.220|110.926 +638724.875|220069.887|111.877 +638719.791|220074.596|112.828 +638714.701|220079.314|114.035 +638709.656|220083.990|115.321 +638704.596|220088.672|115.995 +638699.549|220093.341|116.531 +638694.495|220098.020|117.220 +638689.457|220102.680|117.650 +638684.428|220107.331|117.933 +638679.362|220112.010|117.946 +638674.345|220116.646|117.973 +638669.325|220121.285|118.098 +638654.237|220135.227|118.208 +638649.174|220139.909|118.418 +638644.097|220144.606|119.058 +638639.080|220149.248|119.464 +638634.017|220153.929|119.811 +638628.960|220158.602|119.991 +638623.903|220163.275|120.146 +638618.853|220167.941|120.177 +638613.851|220172.565|120.247 +638608.801|220177.228|120.293 +638603.704|220181.941|120.357 +638598.703|220186.561|120.466 +638593.609|220191.267|120.515 +638588.565|220195.928|120.485 +638583.517|220200.594|120.640 +638578.473|220205.255|120.661 +638573.380|220209.961|120.823 +638568.335|220214.624|121.018 +638563.245|220219.324|120.890 +638558.204|220223.982|120.799 +638553.162|220228.639|120.750 +638548.072|220233.345|120.856 +638543.031|220238.003|120.893 +638537.995|220242.657|120.957 +638532.905|220247.357|121.012 +638527.818|220252.063|121.420 +638522.780|220256.723|121.612 +638517.690|220261.420|121.554 +638512.651|220266.078|121.353 +638507.564|220270.778|121.509 +638502.477|220275.478|121.689 +638497.439|220280.135|121.875 +638492.400|220284.792|122.036 +638487.319|220289.493|122.387 +638482.241|220294.193|122.993 +638477.200|220298.847|122.920 +638472.116|220303.547|123.045 +638467.084|220308.198|123.414 +638462.054|220312.852|123.847 +638456.979|220317.546|124.325 +638451.950|220322.198|124.801 +638446.918|220326.849|124.996 +638441.843|220331.543|125.419 +638436.823|220336.191|126.026 +638431.800|220340.839|126.535 +638426.725|220345.530|126.892 +638421.699|220350.178|127.282 +638416.673|220354.827|127.647 +638411.598|220359.517|127.964 +638406.626|220364.117|128.522 +638401.603|220368.762|128.918 +638396.522|220373.453|129.062 +638391.536|220378.058|129.232 +638386.510|220382.704|129.525 +638381.486|220387.346|129.933 +638376.509|220391.945|130.372 +638371.471|220396.599|130.378 +638366.435|220401.248|130.570 +638361.440|220405.859|130.534 +638356.426|220410.498|131.140 +638346.440|220419.719|131.305 +638341.390|220424.379|131.217 +638336.452|220428.942|131.497 +638331.438|220433.566|131.250 +638326.433|220438.186|131.171 +638321.471|220442.768|131.061 +638316.466|220447.388|131.028 +638311.498|220451.973|130.875 +638306.481|220456.602|130.735 +638301.507|220461.190|130.525 +638296.520|220465.789|130.156 +638291.528|220470.395|129.699 +638286.535|220475.000|129.309 +638281.545|220479.603|129.034 +638276.559|220484.205|128.775 +638271.615|220488.765|128.498 +638266.616|220493.374|128.202 +638251.769|220507.071|127.462 +638231.991|220525.323|126.489 +638227.050|220529.874|125.956 +638217.202|220538.963|125.325 +638212.301|220543.486|125.343 +638207.354|220548.046|124.871 +638192.537|220561.698|122.838 +638187.667|220566.197|122.780 +638177.785|220575.301|121.295 +638167.852|220584.451|119.464 +638162.966|220588.953|118.942 +638153.212|220597.951|118.168 +638148.290|220602.489|117.851 +638143.288|220607.083|115.894 +638133.705|220615.937|116.556 +638119.175|220629.351|116.425 +638114.420|220633.740|116.510 +638109.601|220638.194|116.894 +638104.840|220642.589|116.958 +638100.055|220647.014|117.226 +638076.509|220668.783|119.985 +638071.739|220673.188|120.073 +638066.999|220677.568|120.433 +638062.302|220681.905|120.756 +638052.869|220690.619|121.113 +638038.708|220703.695|121.347 +638029.323|220712.364|121.887 +638010.651|220729.603|122.819 +638006.042|220733.861|123.237 +638001.397|220738.153|123.423 +637996.715|220742.472|123.365 +637992.088|220746.745|123.731 +637987.446|220751.028|123.645 +637982.783|220755.331|123.786 +637964.385|220772.324|124.862 +637959.755|220776.597|124.971 +637941.537|220793.422|126.251 +637936.999|220797.616|126.386 +637932.421|220801.841|126.617 +637927.891|220806.023|126.852 +637923.341|220810.223|126.974 +637914.163|220818.690|126.818 +637909.609|220822.897|126.965 +637905.132|220827.033|127.291 +637896.009|220835.448|127.017 +637887.018|220843.745|127.004 +637868.775|220860.561|125.758 +637859.738|220868.894|125.176 +637855.190|220873.085|124.767 +637850.630|220877.288|124.304 +637846.092|220881.470|123.706 +637837.058|220889.794|122.835 +637832.534|220893.964|122.393 +637828.039|220898.106|121.856 +637823.537|220902.258|121.576 +637819.013|220906.424|120.945 +637814.554|220910.533|120.671 +637810.168|220914.578|120.539 +637805.636|220918.750|119.668 +637801.292|220922.761|119.787 +637783.614|220939.056|118.406 +637774.836|220947.146|117.641 +637770.514|220951.132|117.501 +637761.842|220959.130|117.117 +637757.532|220963.102|116.836 +637749.159|220970.835|117.504 +637745.020|220974.660|118.086 +637728.497|220989.924|119.680 +637724.284|220993.811|119.494 +637716.104|221001.367|120.302 +637712.062|221005.100|120.698 +637707.935|221008.907|120.738 +637703.811|221012.714|120.799 +637699.711|221016.497|120.738 +637691.427|221024.141|120.533 +637683.286|221031.658|120.558 +637679.177|221035.446|120.317 +637642.756|221069.029|118.153 +637619.223|221090.743|117.525 +637607.698|221101.378|117.635 +637589.270|221118.404|119.476 +637571.357|221134.961|121.682 +637567.775|221138.271|122.027 +637564.045|221141.709|121.820 +637560.576|221144.915|122.207 +637557.034|221148.189|122.740 +637549.945|221154.736|122.984 +637546.467|221157.946|123.179 +637539.578|221164.307|123.850 +637536.088|221167.532|124.014 +637532.626|221170.729|124.304 +637525.743|221177.081|124.462 +637743.639|220973.566|117.927 +637747.788|220969.713|117.461 +637751.976|220965.830|117.193 +637756.151|220961.956|116.882 +637760.428|220957.993|117.074 +637764.728|220954.007|117.147 +637769.066|220949.989|117.415 +637773.376|220945.996|117.574 +637777.750|220941.946|117.818 +637782.166|220937.861|118.278 +637790.932|220929.744|118.948 +637808.608|220913.377|120.256 +637813.082|220909.234|120.655 +637817.514|220905.132|120.853 +637822.016|220900.965|121.442 +637826.478|220896.835|121.859 +637835.515|220888.471|122.801 +637840.045|220884.277|123.100 +637844.537|220880.117|123.487 +637849.079|220875.920|124.164 +637862.710|220863.301|125.294 +637867.224|220859.119|125.663 +637871.762|220854.916|125.892 +637885.463|220842.233|126.919 +637889.989|220838.039|126.873 +637894.574|220833.787|126.913 +637903.654|220825.375|127.099 +637912.770|220816.926|126.998 +637931.037|220800.000|126.568 +637935.658|220795.718|126.373 +637940.230|220791.481|126.203 +637958.600|220774.455|124.947 +637963.263|220770.133|124.828 +637972.508|220761.565|124.383 +637981.829|220752.927|123.883 +637986.517|220748.583|123.658 +637991.195|220744.252|123.734 +637995.874|220739.915|123.505 +638005.274|220731.203|123.030 +638009.941|220726.878|122.743 +638014.650|220722.514|122.441 +638019.380|220718.131|122.307 +638033.581|220704.972|121.701 +638038.293|220700.601|121.131 +638047.843|220691.756|120.981 +638052.649|220687.309|121.180 +638057.441|220682.868|120.920 +638062.159|220678.491|120.463 +638066.935|220674.066|120.107 +638071.684|220669.661|119.525 +638076.588|220665.120|119.854 +638081.346|220660.715|119.781 +638095.669|220647.423|117.638 +638100.475|220642.970|117.202 +638105.291|220638.501|116.897 +638110.116|220634.033|116.662 +638119.833|220625.032|116.394 +638129.596|220615.989|116.202 +638139.283|220607.006|115.358 +638149.378|220597.692|118.080 +638154.349|220593.095|118.525 +638159.253|220588.557|118.830 +638164.234|220583.951|119.439 +638169.245|220579.318|119.909 +638179.199|220570.116|121.256 +638189.194|220560.878|122.697 +638199.139|220551.682|123.776 +638204.132|220547.064|124.313 +638209.146|220542.431|125.160 +638214.117|220537.832|125.535 +638229.025|220524.037|126.224 +638233.993|220519.440|126.706 +638238.968|220514.835|126.712 +638243.924|220510.247|127.105 +638253.930|220500.994|127.986 +638258.902|220496.391|128.056 +638263.882|220491.780|128.281 +638268.860|220487.171|128.498 +638273.886|220482.520|128.745 +638278.863|220477.914|129.019 +638283.844|220473.309|129.345 +638288.867|220468.663|129.650 +638293.850|220464.058|130.101 +638298.876|220459.413|130.506 +638303.838|220454.819|130.720 +638308.843|220450.189|130.884 +638313.845|220445.563|131.006 +638318.844|220440.936|131.101 +638323.839|220436.315|131.156 +638328.832|220431.694|131.220 +638333.782|220427.113|131.381 +638338.805|220422.462|131.150 +638343.798|220417.841|131.296 +638348.769|220413.239|131.006 +638353.811|220408.575|131.186 +638358.779|220403.973|130.845 +638363.793|220399.327|130.488 +638368.770|220394.719|130.378 +638373.754|220390.107|130.427 +638378.771|220385.459|130.144 +638383.779|220380.820|129.647 +638388.747|220376.217|129.379 +638393.767|220371.569|129.168 +638398.790|220366.918|129.086 +638403.804|220362.273|128.708 +638408.812|220357.631|128.245 +638413.826|220352.986|127.821 +638418.837|220348.340|127.410 +638423.854|220343.695|127.081 +638428.868|220339.050|126.693 +638433.885|220334.402|126.346 +638438.899|220329.757|125.855 +638443.910|220325.112|125.224 +638448.930|220320.460|125.026 +638453.995|220315.766|124.703 +638459.012|220311.118|124.243 +638464.029|220306.470|123.770 +638469.053|220301.819|123.466 +638474.073|220297.164|123.200 +638479.148|220292.467|123.066 +638484.171|220287.816|122.868 +638489.194|220283.162|122.420 +638494.266|220278.465|122.036 +638499.292|220273.811|121.935 +638504.318|220269.153|121.753 +638509.393|220264.456|121.686 +638514.471|220259.759|121.829 +638519.451|220255.148|121.722 +638524.526|220250.448|121.594 +638529.601|220245.748|121.289 +638534.633|220241.090|121.161 +638539.705|220236.396|121.137 +638544.735|220231.739|121.073 +638549.809|220227.039|121.100 +638554.887|220222.342|121.094 +638559.920|220217.681|120.963 +638564.952|220213.027|121.003 +638570.030|220208.324|120.905 +638575.111|220203.618|120.774 +638580.143|220198.961|120.719 +638585.227|220194.251|120.518 +638590.260|220189.594|120.613 +638595.295|220184.934|120.521 +638600.379|220180.228|120.427 +638605.466|220175.518|120.329 +638610.501|220170.855|120.320 +638615.540|220166.192|120.256 +638620.627|220161.485|120.256 +638625.671|220156.816|120.085 +638630.716|220152.143|119.887 +638635.766|220147.465|119.543 +638640.820|220142.783|119.180 +638645.880|220138.092|118.647 +638650.936|220133.404|118.253 +638666.085|220119.386|118.199 +638671.148|220114.699|117.882 +638676.198|220110.026|117.924 +638681.203|220105.393|117.946 +638686.263|220100.711|117.818 +638691.295|220096.048|117.272 +638696.382|220091.332|116.611 +638701.420|220086.663|116.041 +638706.511|220081.945|115.425 +638711.598|220077.220|114.014 +638716.676|220072.505|112.816 +638721.760|220067.787|111.630 +638731.907|220058.374|109.908 +638736.945|220053.705|108.963 +638742.014|220049.005|108.314 +638772.134|220021.103|105.796 +638777.163|220016.443|105.373 +638787.158|220007.189|104.918 +638792.150|220002.562|104.443 +638797.082|219997.996|104.187 +638802.069|219993.379|103.907 +638807.055|219988.761|103.638 +638816.973|219979.577|103.303 +638821.908|219975.011|103.187 +638826.910|219970.378|102.876 +638836.828|219961.192|102.203 +638841.702|219956.684|102.358 +638846.658|219952.093|102.126 +638876.114|219924.829|101.328 +638881.033|219920.275|101.176 +638885.901|219915.767|101.090 +638890.827|219911.201|100.435 +638910.267|219893.218|100.807 +638915.122|219888.722|100.523 +638919.953|219884.251|100.478 +638929.618|219875.308|100.490 +638939.281|219866.368|100.609 +638949.016|219857.343|99.301 +638953.871|219852.847|99.222 +638981.840|219827.040|105.312 +638986.561|219822.675|105.641 +638991.313|219818.280|105.741 +638996.102|219813.848|105.568 +639000.856|219809.444|105.290 +639005.599|219805.055|105.156 +639010.403|219800.608|104.949 +639015.118|219796.240|104.690 +639019.907|219791.808|104.647 +639029.395|219783.021|104.169 +639034.196|219778.570|103.739 +639038.990|219774.123|103.023 +639043.785|219769.676|102.346 +639048.616|219765.196|101.444 +639053.377|219760.782|101.072 +639058.089|219756.418|101.054 +639062.813|219752.041|100.657 +639067.577|219747.621|99.993 +639081.592|219734.649|100.097 +639086.140|219730.449|100.990 +639090.666|219726.270|101.730 +639095.247|219722.036|102.419 +639099.804|219717.824|102.959 +639104.382|219713.590|103.376 +639108.969|219709.347|103.748 +639113.550|219705.114|104.172 +639118.086|219700.919|104.598 +639122.676|219696.674|104.982 +639127.230|219692.464|105.321 +639131.777|219688.255|105.687 +639136.328|219684.049|106.074 +639140.897|219679.824|106.351 +639145.481|219675.581|106.558 +639150.047|219671.354|106.586 +639154.647|219667.099|106.738 +639159.210|219662.874|106.820 +639163.748|219658.677|107.067 +639168.287|219654.477|107.336 +639172.840|219650.265|107.531 +639177.348|219646.095|107.720 +639181.862|219641.916|107.875 +639186.450|219637.673|107.948 +639190.979|219633.479|108.052 +639195.523|219629.270|108.101 +639200.053|219625.079|107.985 +639204.625|219620.842|107.915 +639209.166|219616.639|107.768 +639213.723|219612.418|107.558 +639218.283|219608.193|107.348 +639222.800|219604.008|107.122 +639227.375|219599.771|106.881 +639231.972|219595.510|106.540 +639236.507|219591.310|106.284 +639241.036|219587.113|106.074 +639245.514|219582.965|105.891 +639250.065|219578.749|105.623 +639254.579|219574.567|105.559 +639259.050|219570.428|105.473 +639263.528|219566.283|105.379 +639267.953|219562.183|105.303 +639272.443|219558.026|105.193 +639276.853|219553.945|105.239 +639281.316|219549.812|105.287 +639285.775|219545.681|105.129 +639290.210|219541.573|104.854 +639294.700|219537.412|104.577 +639299.110|219533.325|104.217 +639303.563|219529.198|103.913 +639308.053|219525.040|103.708 +639312.463|219520.953|103.410 +639312.741|219517.917|103.157 +639308.467|219521.864|103.465 +639304.164|219525.842|103.708 +639299.845|219529.832|104.028 +639295.483|219533.864|104.333 +639291.118|219537.897|104.669 +639286.766|219541.920|104.973 +639282.422|219545.931|105.245 +639278.073|219549.952|105.327 +639273.708|219553.978|105.232 +639269.319|219558.032|105.284 +639264.917|219562.098|105.406 +639260.528|219566.152|105.510 +639256.148|219570.197|105.565 +639251.713|219574.293|105.662 +639247.269|219578.399|105.830 +639242.761|219582.565|106.086 +639238.226|219586.750|106.226 +639233.733|219590.905|106.449 +639229.213|219595.081|106.830 +639224.672|219599.281|107.092 +639220.142|219603.463|107.290 +639215.573|219607.684|107.457 +639211.056|219611.857|107.646 +639206.487|219616.078|107.860 +639201.930|219620.288|108.027 +639197.346|219624.521|108.094 +639192.762|219628.755|108.171 +639188.202|219632.967|108.146 +639183.661|219637.158|108.024 +639179.067|219641.398|107.933 +639174.483|219645.632|107.817 +639169.908|219649.850|107.643 +639165.303|219654.102|107.393 +639160.721|219658.330|107.019 +639156.098|219662.594|106.891 +639151.471|219666.867|106.830 +639146.807|219671.174|106.689 +639142.125|219675.493|106.665 +639137.489|219679.769|106.400 +639132.820|219684.076|106.040 +639128.160|219688.371|105.635 +639123.539|219692.632|105.312 +639118.827|219696.978|104.958 +639114.139|219701.297|104.452 +639109.439|219705.632|104.059 +639104.733|219709.972|103.711 +639100.039|219714.300|103.291 +639095.308|219718.659|102.806 +639090.608|219722.990|102.145 +639085.932|219727.294|101.310 +639076.520|219735.965|99.780 +639066.800|219744.939|100.051 +639061.875|219749.496|100.703 +639056.986|219754.016|101.124 +639052.106|219758.524|101.511 +639047.201|219763.050|101.377 +639042.273|219767.610|102.169 +639037.231|219772.273|103.096 +639032.315|219776.824|103.888 +639027.347|219781.417|104.367 +639022.470|219785.919|104.537 +639012.640|219794.996|104.824 +639007.715|219799.550|105.104 +639002.813|219804.073|105.208 +638997.894|219808.618|105.476 +638992.929|219813.205|105.763 +638988.000|219817.756|105.766 +638983.132|219822.248|105.708 +638949.260|219853.439|99.420 +638939.168|219862.775|101.047 +638929.286|219871.897|100.895 +638924.318|219876.482|100.651 +638919.368|219881.051|100.721 +638914.424|219885.613|100.755 +638909.413|219890.240|100.532 +638884.578|219913.164|100.429 +638879.561|219917.800|100.895 +638874.629|219922.348|100.508 +638854.592|219940.862|101.544 +638849.669|219945.403|101.163 +638844.604|219950.088|101.907 +638839.599|219954.706|101.947 +638834.615|219959.308|101.791 +638829.562|219963.984|102.529 +638824.630|219968.531|102.358 +638819.561|219973.216|102.754 +638809.558|219982.458|103.175 +638804.495|219987.136|103.602 +638799.496|219991.754|103.827 +638794.458|219996.408|103.995 +638789.486|220000.996|103.934 +638774.411|220014.928|104.888 +638769.373|220019.589|105.306 +638759.332|220028.879|106.372 +638749.274|220038.181|107.171 +638744.227|220042.842|107.092 +638739.225|220047.475|107.976 +638734.193|220052.129|108.582 +638729.151|220056.802|109.460 +638719.026|220066.177|111.274 +638713.978|220070.853|112.447 +638708.879|220075.583|113.846 +638703.831|220080.265|115.263 +638698.778|220084.938|115.827 +638693.727|220089.613|116.425 +638688.716|220094.256|117.324 +638683.681|220098.913|117.717 +638678.658|220103.552|117.815 +638673.693|220108.139|117.717 +638668.633|220112.815|117.668 +638663.607|220117.460|117.979 +638648.565|220131.359|118.144 +638643.493|220136.053|118.634 +638638.470|220140.698|119.131 +638633.456|220145.337|119.464 +638628.393|220150.019|119.808 +638623.385|220154.649|119.997 +638618.332|220159.318|120.125 +638613.281|220163.985|120.158 +638608.279|220168.606|120.204 +638603.229|220173.272|120.262 +638598.181|220177.935|120.329 +638593.183|220182.556|120.357 +638588.132|220187.223|120.521 +638583.088|220191.883|120.509 +638578.092|220196.501|120.604 +638572.999|220201.210|120.744 +638568.000|220205.825|120.808 +638562.959|220210.485|120.808 +638557.917|220215.146|120.924 +638552.873|220219.806|121.106 +638547.831|220224.466|121.250 +638542.790|220229.127|121.393 +638537.749|220233.784|121.356 +638532.710|220238.438|121.362 +638527.626|220243.135|121.426 +638522.588|220247.793|121.323 +638517.549|220252.453|121.786 +638512.511|220257.110|122.088 +638507.473|220261.765|122.039 +638502.383|220266.465|121.884 +638497.347|220271.122|122.106 +638492.309|220275.776|122.289 +638487.228|220280.477|122.624 +638482.196|220285.134|123.085 +638477.157|220289.788|123.207 +638472.122|220294.442|123.347 +638467.044|220299.139|123.676 +638462.012|220303.791|123.956 +638456.982|220308.445|124.371 +638451.953|220313.093|124.819 +638446.924|220317.744|125.081 +638441.846|220322.441|125.368 +638436.823|220327.090|125.928 +638431.849|220331.692|126.453 +638426.771|220336.386|126.727 +638421.744|220341.034|127.090 +638416.767|220345.637|127.443 +638411.695|220350.328|127.812 +638406.672|220354.976|128.239 +638401.701|220359.575|128.778 +638396.675|220364.224|129.034 +638391.642|220368.878|129.199 +638386.613|220373.532|129.406 +638381.584|220378.186|129.620 +638376.567|220382.832|130.125 +638371.586|220387.440|130.394 +638366.542|220392.101|130.305 +638361.562|220396.709|130.598 +638351.503|220406.018|131.089 +638341.533|220415.241|131.503 +638336.477|220419.914|131.272 +638331.484|220424.531|131.320 +638326.479|220429.158|131.262 +638321.477|220433.782|131.192 +638316.472|220438.409|131.140 +638311.465|220443.039|131.061 +638306.493|220447.632|130.854 +638301.482|220452.265|130.753 +638296.459|220456.907|130.506 +638291.473|220461.513|130.119 +638286.437|220466.164|129.751 +638281.500|220470.727|129.431 +638276.464|220475.381|129.138 +638271.475|220479.990|128.851 +638266.534|220484.553|128.629 +638261.544|220489.164|128.406 +638256.600|220493.736|128.150 +638251.605|220498.351|127.910 +638246.664|220502.917|127.785 +638231.717|220516.724|126.605 +638226.773|220521.296|126.547 +638221.795|220525.893|126.120 +638216.864|220530.447|125.703 +638211.898|220535.034|125.508 +638191.952|220553.447|122.908 +638187.075|220557.955|122.761 +638182.116|220562.536|122.289 +638177.118|220567.148|121.423 +638167.172|220576.325|119.878 +638162.231|220580.885|119.250 +638157.303|220585.436|118.769 +638152.392|220589.974|118.528 +638147.457|220594.531|118.043 +638137.475|220603.733|115.693 +638127.773|220612.703|115.690 +638123.006|220617.120|116.467 +638118.145|220621.615|116.406 +638103.691|220634.981|116.675 +638098.909|220639.410|116.961 +638065.686|220670.170|120.244 +638060.894|220674.602|120.168 +638056.139|220679.000|120.421 +638051.461|220683.331|120.890 +638041.993|220692.091|121.417 +638032.499|220700.870|121.411 +638027.817|220705.204|121.564 +638018.393|220713.927|122.185 +638013.687|220718.283|122.210 +638008.993|220722.626|122.338 +638004.378|220726.900|122.704 +637999.696|220731.237|123.301 +637990.382|220739.854|123.508 +637985.745|220744.148|123.770 +637981.058|220748.483|123.731 +637976.464|220752.735|123.990 +637967.250|220761.263|124.377 +637962.590|220765.576|124.566 +637958.039|220769.788|124.859 +637948.868|220778.283|125.639 +637935.146|220790.981|126.239 +637930.610|220795.181|126.379 +637926.026|220799.421|126.575 +637921.484|220803.624|126.730 +637916.946|220807.827|126.910 +637898.697|220824.707|126.992 +637885.088|220837.292|126.748 +637871.396|220849.948|125.938 +637866.843|220854.157|125.681 +637862.313|220858.342|125.300 +637857.793|220862.518|124.990 +637853.252|220866.715|124.581 +637848.716|220870.906|124.243 +637844.178|220875.100|123.895 +637839.539|220879.376|122.774 +637835.116|220883.470|122.826 +637826.045|220891.846|121.814 +637821.613|220895.942|121.341 +637817.160|220900.060|121.320 +637812.668|220904.205|120.588 +637808.214|220908.323|120.344 +637794.928|220920.600|119.339 +637790.496|220924.697|119.034 +637781.709|220932.814|118.354 +637777.305|220936.883|118.001 +637772.897|220940.958|117.638 +637768.514|220945.009|117.431 +637764.162|220949.029|117.129 +637759.839|220953.028|117.001 +637751.305|220960.923|117.077 +637742.914|220968.692|117.641 +637738.769|220972.532|118.183 +637730.448|220980.235|118.680 +637714.001|220995.469|120.256 +637709.843|220999.315|120.354 +637705.686|221003.159|120.235 +637701.616|221006.926|120.527 +637697.468|221010.764|120.469 +637693.362|221014.558|120.399 +637685.072|221022.218|120.183 +637680.972|221026.004|119.957 +637668.655|221037.379|119.314 +637660.398|221045.002|118.540 +637648.118|221056.340|117.632 +637628.233|221074.717|117.339 +637608.756|221092.715|117.348 +637604.946|221096.239|117.519 +637601.145|221099.753|117.735 +637593.674|221106.666|118.528 +637589.971|221110.095|118.951 +637586.362|221113.439|119.555 +637579.044|221120.211|120.381 +637571.747|221126.963|121.134 +637560.863|221137.033|122.042 +637557.318|221140.313|122.341 +637542.913|221153.630|122.795 +637535.927|221160.094|123.697 +637532.355|221163.395|123.569 +637528.898|221166.596|124.072 +637521.943|221173.027|124.359 +637518.541|221176.173|124.697 +637739.665|220969.125|117.193 +637743.981|220965.135|117.501 +637748.190|220961.233|117.083 +637752.479|220957.262|117.059 +637756.825|220953.245|117.309 +637761.046|220949.331|117.004 +637765.433|220945.274|117.251 +637769.816|220941.223|117.491 +637774.196|220937.169|117.757 +637778.588|220933.109|118.086 +637783.029|220929.004|118.430 +637787.439|220924.926|118.647 +637791.862|220920.835|118.939 +637796.324|220916.711|119.467 +637800.792|220912.578|119.781 +637805.273|220908.436|120.180 +637814.283|220900.109|121.033 +637818.745|220895.982|121.140 +637823.256|220891.812|121.524 +637827.813|220887.603|122.173 +637832.321|220883.433|122.594 +637836.847|220879.248|122.859 +637841.432|220875.011|123.459 +637845.994|220870.796|123.978 +637850.554|220866.578|124.231 +637855.151|220862.329|124.697 +637859.689|220858.135|125.154 +637864.237|220853.928|125.398 +637868.793|220849.713|125.724 +637873.393|220845.461|126.017 +637877.956|220841.240|126.142 +637887.161|220832.729|126.895 +637914.568|220807.361|127.032 +637919.128|220803.133|126.709 +637923.664|220798.930|126.584 +637928.230|220794.696|126.349 +637932.869|220790.399|126.267 +637955.829|220769.112|124.980 +637960.487|220764.792|124.481 +637969.682|220756.261|123.731 +637974.413|220751.878|123.780 +637979.089|220747.547|123.798 +637983.792|220743.191|123.691 +637993.161|220734.504|123.283 +637997.870|220730.137|122.938 +638002.552|220725.799|122.746 +638007.207|220721.480|122.024 +638011.983|220717.055|122.216 +638021.392|220708.331|121.585 +638045.221|220686.251|121.122 +638049.924|220681.887|120.539 +638054.713|220677.446|120.247 +638059.529|220672.983|120.174 +638064.296|220668.567|120.137 +638069.087|220664.126|119.921 +638073.940|220659.630|119.811 +638078.694|220655.217|119.329 +638088.229|220646.371|118.177 +638097.848|220637.444|116.979 +638102.667|220632.978|116.656 +638117.255|220619.457|116.175 +638122.168|220614.910|116.345 +638127.011|220610.417|115.925 +638141.950|220596.600|117.677 +638146.857|220592.059|117.946 +638151.822|220587.463|118.375 +638156.778|220582.878|118.689 +638166.785|220573.622|119.960 +638171.787|220569.001|120.866 +638191.721|220550.563|123.203 +638196.692|220545.970|124.033 +638206.735|220536.683|125.294 +638211.706|220532.080|125.685 +638226.672|220518.230|126.541 +638241.592|220504.423|127.748 +638246.576|220499.808|127.900 +638251.605|220495.151|128.089 +638256.536|220490.585|128.306 +638261.566|220485.930|128.531 +638266.592|220481.276|128.766 +638271.566|220476.671|128.995 +638276.592|220472.016|129.299 +638281.567|220467.408|129.601 +638286.587|220462.759|129.891 +638291.610|220458.105|130.275 +638296.627|220453.460|130.604 +638301.635|220448.821|130.802 +638306.640|220444.182|131.022 +638311.635|220439.552|131.076 +638316.680|220434.876|131.208 +638321.624|220430.295|131.253 +638326.662|220425.626|131.299 +638331.645|220421.005|131.253 +638336.635|220416.381|131.329 +638351.671|220402.439|131.189 +638361.650|220393.180|130.522 +638366.618|220388.571|130.260 +638371.663|220383.898|130.674 +638376.661|220379.256|130.016 +638381.669|220374.608|129.632 +638386.686|220369.954|129.434 +638391.658|220365.345|129.266 +638396.675|220360.691|129.019 +638406.690|220351.394|128.147 +638411.701|220346.743|127.775 +638416.761|220342.049|127.398 +638421.726|220337.441|127.059 +638426.789|220332.744|126.681 +638431.803|220328.092|126.422 +638436.811|220323.441|125.846 +638441.870|220318.744|125.319 +638446.891|220314.090|125.099 +638451.904|220309.436|124.795 +638456.967|220304.739|124.380 +638461.984|220300.081|123.929 +638467.004|220295.424|123.734 +638472.073|220290.724|123.459 +638477.093|220286.067|123.322 +638482.116|220281.409|123.142 +638487.185|220276.706|122.865 +638492.205|220272.046|122.505 +638497.231|220267.388|122.344 +638502.303|220262.685|122.320 +638507.329|220258.025|122.329 +638512.353|220253.364|122.012 +638517.424|220248.658|121.594 +638522.451|220243.998|121.747 +638527.474|220239.344|121.698 +638532.546|220234.638|121.664 +638537.572|220229.977|121.609 +638542.601|220225.317|121.457 +638547.676|220220.608|121.213 +638552.705|220215.944|121.103 +638557.734|220211.281|120.927 +638562.812|220206.572|120.780 +638567.793|220201.951|120.689 +638572.874|220197.242|120.588 +638577.952|220192.532|120.594 +638582.935|220187.909|120.472 +638588.016|220183.199|120.448 +638593.052|220178.530|120.299 +638598.084|220173.863|120.253 +638603.165|220169.154|120.329 +638608.203|220164.482|120.198 +638613.239|220159.815|120.168 +638618.274|220155.142|120.131 +638623.315|220150.470|120.012 +638628.363|220145.785|119.671 +638633.410|220141.100|119.320 +638638.464|220136.412|118.918 +638643.520|220131.719|118.482 +638648.574|220127.031|118.159 +638663.662|220113.046|118.220 +638668.666|220108.404|118.080 +638673.735|220103.701|117.586 +638678.740|220099.062|117.540 +638683.754|220094.414|117.357 +638688.835|220089.699|116.739 +638693.874|220085.020|116.077 +638698.915|220080.338|115.355 +638703.972|220075.641|114.453 +638709.071|220070.893|112.749 +638719.230|220061.450|110.429 +638724.302|220056.735|109.494 +638729.371|220052.031|108.786 +638734.397|220047.362|107.979 +638749.521|220033.329|106.799 +638754.517|220028.696|106.708 +638759.555|220024.020|106.013 +638764.593|220019.342|105.345 +638774.676|220009.978|104.047 +638779.657|220005.367|104.385 +638784.722|220000.663|103.513 +638789.636|219996.116|104.181 +638794.671|219991.443|103.794 +638809.628|219977.563|102.331 +638819.595|219968.321|102.032 +638839.382|219949.978|101.813 +638849.307|219940.773|101.212 +638854.214|219936.223|101.038 +638859.158|219931.638|101.026 +638864.031|219927.124|101.288 +638878.860|219913.372|100.496 +638883.697|219908.888|100.685 +638888.504|219904.447|101.745 +638898.215|219895.452|102.373 +638908.081|219886.293|101.093 +638912.964|219881.767|100.977 +638917.865|219877.219|100.727 +638922.739|219872.702|100.770 +638961.290|219836.976|101.407 +638966.027|219832.596|102.379 +638970.462|219828.521|105.080 +638989.481|219810.901|105.997 +638994.212|219806.515|105.885 +638999.000|219802.074|105.717 +639003.761|219797.657|105.403 +639022.814|219779.991|104.754 +639027.615|219775.541|104.300 +639032.443|219771.060|103.657 +639037.274|219766.574|102.678 +639042.096|219762.099|101.803 +639046.808|219757.734|101.749 +639051.557|219753.330|101.453 +639056.303|219748.932|101.206 +639061.036|219744.543|100.734 +639065.788|219740.135|100.154 +639079.727|219727.236|100.758 +639084.262|219723.045|101.727 +639088.709|219718.939|102.632 +639093.239|219714.751|103.330 +639097.811|219710.524|103.766 +639102.410|219706.269|104.044 +639106.939|219702.078|104.449 +639111.505|219697.853|104.955 +639116.047|219693.653|105.318 +639120.573|219689.465|105.495 +639125.096|219685.280|105.988 +639129.610|219681.104|106.257 +639134.112|219676.941|106.628 +639138.636|219672.753|106.863 +639143.195|219668.531|106.915 +639147.737|219664.325|107.070 +639152.257|219660.140|107.092 +639156.704|219656.025|107.268 +639161.243|219651.825|107.506 +639165.714|219647.686|107.854 +639170.167|219643.565|108.037 +639174.639|219639.426|108.140 +639179.165|219635.235|108.238 +639183.639|219631.093|108.347 +639188.123|219626.941|108.430 +639192.585|219622.808|108.369 +639197.057|219618.666|108.268 +639201.574|219614.478|108.213 +639206.067|219610.318|108.046 +639210.520|219606.191|107.845 +639215.012|219602.027|107.704 +639219.478|219597.888|107.476 +639223.940|219593.755|107.278 +639228.479|219589.548|106.976 +639232.910|219585.437|106.702 +639237.351|219581.322|106.415 +639241.783|219577.213|106.199 +639246.200|219573.123|106.083 +639250.628|219569.020|105.921 +639255.039|219564.936|105.885 +639259.458|219560.839|105.802 +639263.808|219556.810|105.586 +639268.176|219552.765|105.552 +639272.528|219548.733|105.613 +639276.860|219544.721|105.540 +639281.227|219540.674|105.309 +639285.620|219536.601|104.976 +639290.021|219532.520|104.620 +639294.425|219528.436|104.263 +639298.775|219524.400|103.949 +639303.115|219520.380|103.715 +639307.474|219516.341|103.398 +639308.818|219512.583|103.105 +639304.429|219516.646|103.495 +639300.027|219520.718|103.705 +639295.663|219524.757|104.001 +639291.243|219528.847|104.339 +639286.836|219532.926|104.653 +639282.407|219537.025|105.083 +639278.015|219541.091|105.354 +639273.644|219545.133|105.534 +639269.252|219549.193|105.595 +639264.930|219553.186|105.565 +639260.537|219557.249|105.665 +639256.139|219561.318|105.808 +639251.701|219565.423|105.915 +639247.282|219569.508|105.949 +639242.880|219573.580|106.159 +639238.442|219577.682|106.324 +639234.050|219581.749|106.546 +639229.545|219585.918|106.842 +639225.101|219590.030|107.104 +639220.609|219594.184|107.369 +639216.140|219598.318|107.531 +639211.660|219602.463|107.781 +639207.194|219606.593|107.970 +639202.689|219610.759|108.113 +639198.191|219614.920|108.256 +639193.713|219619.059|108.293 +639189.229|219623.208|108.393 +639184.755|219627.347|108.463 +639180.268|219631.492|108.320 +639175.785|219635.634|108.183 +639171.243|219639.831|108.116 +639166.763|219643.974|107.997 +639162.303|219648.094|107.784 +639157.765|219652.285|107.448 +639153.254|219656.452|107.262 +639148.746|219660.616|107.086 +639144.219|219664.801|107.031 +639139.605|219669.068|106.939 +639135.094|219673.237|106.827 +639130.574|219677.410|106.491 +639126.023|219681.613|106.058 +639121.457|219685.835|105.738 +639116.900|219690.041|105.363 +639112.310|219694.284|105.220 +639107.692|219698.551|104.955 +639103.181|219702.715|104.342 +639098.630|219706.918|103.995 +639093.973|219711.222|103.711 +639089.410|219715.434|103.160 +639084.850|219719.637|102.242 +639080.318|219723.816|101.157 +639071.125|219732.302|99.883 +639066.352|219736.718|100.145 +639061.554|219741.159|100.596 +639056.769|219745.591|101.005 +639051.978|219750.029|101.477 +639047.162|219754.485|101.776 +639042.413|219758.874|101.654 +639037.582|219763.349|102.148 +639032.605|219767.966|103.373 +639027.758|219772.456|104.044 +639022.878|219776.976|104.623 +639003.508|219794.899|105.388 +638998.586|219799.455|105.708 +638993.721|219803.957|105.988 +638988.896|219808.417|105.961 +638984.013|219812.937|106.052 +638979.142|219817.439|106.037 +638974.281|219821.934|105.997 +638964.738|219830.734|104.025 +638960.147|219834.949|101.703 +638925.656|219866.844|101.544 +638920.779|219871.346|100.947 +638915.799|219875.951|100.877 +638910.828|219880.551|101.212 +638905.811|219885.190|101.087 +638895.725|219894.532|102.401 +638885.809|219903.694|101.627 +638880.835|219908.291|101.200 +638875.791|219912.954|101.486 +638870.713|219917.654|101.681 +638860.746|219926.865|101.148 +638850.608|219936.244|101.499 +638835.380|219950.341|102.581 +638825.139|219959.829|104.028 +638810.082|219973.737|102.867 +638805.013|219978.425|102.754 +638799.883|219983.180|103.510 +638794.827|219987.853|103.282 +638789.691|219992.611|104.181 +638779.605|220001.934|103.522 +638774.509|220006.650|103.974 +638769.409|220011.374|104.544 +638764.295|220016.111|105.382 +638759.153|220020.869|105.979 +638748.963|220030.290|106.510 +638743.824|220035.045|107.162 +638733.656|220044.448|107.640 +638728.526|220049.194|108.308 +638723.400|220053.943|109.015 +638718.267|220058.694|109.890 +638713.140|220063.440|110.673 +638702.822|220073.014|113.919 +638697.705|220077.757|114.867 +638692.593|220082.490|115.733 +638687.445|220087.251|116.373 +638682.352|220091.966|116.998 +638677.271|220096.666|117.360 +638672.205|220101.348|117.449 +638667.149|220106.018|117.248 +638662.016|220110.767|117.882 +638646.834|220124.797|118.049 +638641.768|220129.484|118.397 +638636.696|220134.175|118.875 +638631.633|220138.857|119.198 +638626.570|220143.539|119.573 +638621.511|220148.217|119.927 +638616.411|220152.933|120.061 +638611.410|220157.553|120.052 +638606.313|220162.263|120.155 +638601.266|220166.926|120.162 +638596.264|220171.547|120.204 +638591.171|220176.256|120.259 +638586.123|220180.919|120.354 +638581.128|220185.537|120.387 +638576.035|220190.246|120.582 +638570.993|220194.904|120.479 +638565.994|220199.518|120.561 +638560.904|220204.228|120.756 +638555.863|220208.885|120.872 +638550.867|220213.506|121.100 +638545.780|220218.209|121.289 +638540.739|220222.866|121.451 +638535.746|220227.481|121.622 +638530.708|220232.138|121.759 +638525.669|220236.796|121.881 +638520.634|220241.450|122.009 +638515.599|220246.104|122.146 +638510.606|220250.716|122.131 +638505.571|220255.370|122.292 +638500.581|220259.982|122.521 +638495.592|220264.593|122.512 +638490.556|220269.248|122.768 +638485.524|220273.902|123.036 +638480.537|220278.514|123.258 +638475.548|220283.122|123.402 +638470.561|220287.731|123.487 +638465.529|220292.385|123.728 +638460.546|220296.994|123.978 +638455.611|220301.557|124.319 +638450.585|220306.208|124.773 +638445.601|220310.813|125.041 +638440.666|220315.376|125.307 +638435.643|220320.024|125.813 +638430.718|220324.581|126.395 +638425.734|220329.187|126.623 +638420.711|220333.835|126.980 +638415.780|220338.395|127.288 +638410.802|220342.997|127.693 +638405.828|220347.600|128.096 +638400.902|220352.156|128.577 +638395.928|220356.756|128.964 +638390.947|220361.361|129.181 +638385.970|220365.964|129.488 +638381.029|220370.524|129.589 +638376.094|220375.084|129.821 +638371.126|220379.680|130.318 +638366.128|220384.295|130.183 +638361.184|220388.861|130.226 +638351.281|220398.014|131.055 +638346.346|220402.574|131.296 +638341.396|220407.146|131.214 +638336.458|220411.708|131.439 +638331.459|220416.323|131.454 +638326.549|220420.855|131.317 +638321.593|220425.431|131.253 +638316.637|220430.009|131.195 +638311.678|220434.587|131.098 +638306.719|220439.165|131.073 +638301.805|220443.703|130.997 +638296.831|220448.291|130.769 +638291.896|220452.844|130.406 +638286.916|220457.441|130.144 +638281.981|220461.994|129.842 +638277.040|220466.551|129.522 +638272.054|220471.154|129.245 +638267.113|220475.713|128.986 +638262.169|220480.273|128.711 +638257.225|220484.836|128.458 +638252.278|220489.402|128.217 +638247.286|220494.011|127.989 +638242.385|220498.534|127.782 +638237.435|220503.100|127.590 +638227.553|220512.216|126.885 +638217.680|220521.327|126.428 +638212.691|220525.929|125.889 +638207.787|220530.459|125.813 +638202.788|220535.067|125.249 +638197.890|220539.584|124.764 +638177.992|220557.921|122.015 +638173.045|220562.481|121.180 +638158.183|220576.182|119.284 +638153.249|220580.733|118.766 +638148.287|220585.305|117.997 +638143.388|220589.825|117.918 +638138.448|220594.382|117.443 +638128.487|220603.556|115.373 +638109.174|220621.402|116.364 +638104.331|220625.877|116.513 +638099.491|220630.348|116.711 +638080.356|220648.042|118.759 +638070.864|220656.817|119.659 +638066.064|220661.252|119.884 +638061.248|220665.702|119.997 +638056.481|220670.103|120.137 +638051.707|220674.514|120.244 +638046.956|220678.906|120.533 +638042.192|220683.307|120.738 +638032.682|220692.091|120.985 +638023.157|220700.888|121.189 +638018.466|220705.225|121.676 +638013.741|220709.596|121.920 +638009.020|220713.961|122.198 +638004.320|220718.301|122.320 +637999.629|220722.639|122.505 +637994.911|220727.003|122.847 +637976.236|220744.264|123.770 +637966.836|220752.948|123.901 +637962.197|220757.240|124.234 +637957.536|220761.546|124.447 +637948.395|220770.002|125.441 +637943.726|220774.318|125.642 +637934.533|220782.815|126.081 +637929.915|220787.083|126.340 +637925.313|220791.338|126.407 +637920.716|220795.583|126.532 +637916.150|220799.805|126.846 +637911.517|220804.084|126.785 +637907.012|220808.251|127.202 +637902.331|220812.570|126.901 +637897.783|220816.776|127.090 +637888.581|220825.268|126.651 +637884.043|220829.462|126.672 +637874.886|220837.914|126.319 +637870.330|220842.123|126.297 +637865.736|220846.363|125.800 +637861.180|220850.566|125.544 +637856.580|220854.809|125.078 +637842.916|220867.419|123.981 +637833.818|220875.813|123.246 +637829.218|220880.053|122.652 +637824.735|220884.192|122.420 +637815.630|220892.589|121.298 +637811.119|220896.753|121.003 +637802.185|220904.995|120.393 +637793.233|220913.255|119.512 +637788.747|220917.394|119.186 +637779.837|220925.614|118.397 +637775.433|220929.677|118.043 +637766.579|220937.849|117.397 +637762.180|220941.906|116.879 +637757.892|220945.868|117.162 +637753.625|220949.813|117.315 +637749.257|220953.842|117.001 +637744.962|220957.811|117.059 +637736.492|220965.635|117.290 +637732.389|220969.433|118.049 +637728.244|220973.270|118.622 +637724.047|220977.147|118.711 +637719.892|220980.988|119.031 +637715.909|220984.679|119.899 +637703.442|220996.197|120.229 +637699.288|221000.035|120.366 +637695.200|221003.814|120.591 +637682.740|221015.320|120.247 +637657.826|221038.333|118.421 +637629.501|221064.503|116.784 +637621.817|221071.617|117.586 +637610.094|221082.456|117.647 +637602.486|221089.494|118.010 +637594.915|221096.501|118.357 +637591.059|221100.064|118.378 +637587.383|221103.466|118.705 +637580.178|221110.147|120.158 +637569.181|221120.324|120.948 +637561.972|221127.002|121.859 +637558.284|221130.410|122.015 +637551.088|221137.070|122.414 +637543.983|221143.647|122.996 +637536.890|221150.210|123.472 +637533.318|221153.511|123.530 +637526.359|221159.954|124.151 +637512.390|221172.872|124.340 +637720.316|220978.305|118.912 +637732.810|220966.711|117.839 +637745.520|220954.921|117.184 +637758.450|220942.930|116.982 +637762.784|220938.913|116.982 +637767.249|220934.783|117.638 +637771.614|220930.738|117.839 +637776.052|220926.629|118.156 +637780.490|220922.518|118.497 +637784.986|220918.357|118.887 +637789.442|220914.230|119.116 +637793.880|220910.121|119.509 +637807.391|220897.612|120.838 +637811.863|220893.470|120.985 +637816.490|220889.194|121.960 +637825.475|220880.870|122.326 +637834.546|220872.469|122.954 +637839.173|220868.193|123.795 +637843.745|220863.959|124.097 +637848.314|220859.729|124.398 +637852.919|220855.465|124.938 +637857.443|220851.274|125.041 +637862.057|220847.003|125.669 +637866.666|220842.739|126.011 +637871.305|220838.441|126.273 +637875.865|220834.217|126.376 +637880.419|220829.995|126.480 +637885.024|220825.728|126.620 +637889.675|220821.424|127.029 +637898.850|220812.917|126.885 +637917.260|220795.864|126.605 +637921.835|220791.627|126.395 +637926.477|220787.326|126.325 +637944.966|220770.197|125.410 +637949.572|220765.932|125.191 +637954.177|220761.662|124.666 +637958.798|220757.377|124.264 +637963.434|220753.082|123.965 +637991.585|220727.003|122.813 +637996.258|220722.675|122.548 +638000.973|220718.304|122.268 +638005.713|220713.915|122.155 +638010.422|220709.553|121.844 +638015.150|220705.173|121.692 +638038.973|220683.103|120.756 +638043.731|220678.695|120.561 +638048.467|220674.306|120.229 +638053.308|220669.829|120.329 +638072.528|220652.022|119.470 +638091.566|220634.365|116.894 +638096.440|220629.848|116.635 +638101.228|220625.413|116.486 +638106.102|220620.899|116.251 +638110.948|220616.412|116.230 +638115.847|220611.877|116.269 +638130.392|220598.396|115.087 +638135.531|220593.668|117.498 +638140.447|220589.121|117.824 +638145.382|220584.552|117.918 +638155.251|220575.426|118.625 +638165.197|220566.230|119.759 +638175.234|220556.961|121.506 +638180.291|220552.295|122.594 +638185.280|220547.680|123.021 +638195.302|220538.417|124.438 +638205.290|220529.188|125.645 +638210.262|220524.588|126.053 +638215.266|220519.958|126.303 +638220.216|220515.377|126.544 +638225.212|220510.756|126.745 +638235.179|220501.539|127.571 +638240.172|220496.922|127.843 +638245.198|220492.267|127.958 +638250.184|220487.656|128.190 +638255.165|220483.047|128.412 +638260.148|220478.435|128.702 +638265.126|220473.830|128.934 +638270.161|220469.176|129.293 +638275.141|220464.567|129.601 +638280.165|220459.922|129.866 +638285.185|220455.280|130.125 +638290.205|220450.634|130.461 +638295.228|220445.989|130.827 +638300.190|220441.396|131.040 +638305.192|220436.769|131.113 +638310.236|220432.100|131.144 +638315.232|220427.476|131.192 +638320.228|220422.849|131.296 +638325.260|220418.192|131.171 +638330.259|220413.565|131.351 +638340.280|220404.290|131.302 +638355.316|220390.366|130.979 +638360.361|220385.688|130.247 +638365.390|220381.030|130.180 +638370.376|220376.416|130.318 +638375.387|220371.770|129.876 +638380.410|220367.119|129.671 +638385.431|220362.468|129.507 +638390.448|220357.823|129.178 +638395.465|220353.171|128.940 +638400.482|220348.526|128.574 +638405.538|220343.838|128.068 +638410.552|220339.190|127.678 +638415.566|220334.542|127.269 +638420.583|220329.894|126.919 +638425.600|220325.246|126.559 +638430.620|220320.594|126.309 +638435.683|220315.903|125.755 +638440.697|220311.255|125.249 +638445.717|220306.604|124.977 +638450.786|220301.907|124.709 +638455.757|220297.298|124.209 +638460.826|220292.605|123.856 +638465.849|220287.950|123.652 +638470.875|220283.296|123.438 +638475.950|220278.596|123.362 +638480.976|220273.942|123.267 +638486.003|220269.287|123.106 +638491.077|220264.587|122.944 +638496.104|220259.933|122.694 +638501.130|220255.276|122.502 +638506.205|220250.576|122.329 +638511.234|220245.921|122.335 +638516.263|220241.264|122.195 +638521.335|220236.567|122.085 +638526.364|220231.907|121.875 +638531.396|220227.249|121.707 +638536.426|220222.589|121.472 +638541.458|220217.931|121.393 +638546.490|220213.268|121.177 +638551.522|220208.608|120.954 +638556.555|220203.947|120.860 +638561.590|220199.284|120.686 +638566.628|220194.617|120.421 +638571.661|220189.957|120.363 +638576.696|220185.296|120.466 +638581.734|220180.630|120.229 +638586.721|220176.015|120.293 +638591.762|220171.346|120.104 +638596.801|220166.682|120.064 +638601.744|220162.104|119.997 +638606.783|220157.438|119.982 +638611.824|220152.771|119.963 +638616.817|220148.147|119.902 +638621.864|220143.475|119.713 +638626.866|220138.839|119.412 +638631.874|220134.200|119.083 +638636.888|220129.554|118.549 +638641.899|220124.906|118.129 +638646.904|220120.270|117.982 +638651.902|220115.634|117.973 +638656.901|220111.004|118.055 +638661.927|220106.341|117.415 +638666.941|220101.690|117.132 +638671.894|220097.102|117.287 +638676.911|220092.451|116.998 +638681.895|220087.827|116.504 +638686.884|220083.197|115.894 +638691.926|220078.519|115.242 +638696.943|220073.855|114.139 +638701.957|220069.195|113.185 +638712.046|220059.813|110.377 +638717.078|220055.134|109.298 +638722.043|220050.529|108.707 +638727.060|220045.871|108.085 +638732.028|220041.263|107.567 +638742.041|220031.976|106.958 +638747.031|220027.343|106.186 +638752.033|220022.707|106.086 +638756.973|220018.122|105.449 +638761.990|220013.471|105.168 +638767.001|220008.814|104.242 +638776.880|219999.667|104.751 +638791.754|219985.878|104.211 +638796.799|219981.190|103.111 +638801.669|219976.685|103.766 +638821.460|219958.345|103.806 +638826.428|219953.736|103.330 +638831.424|219949.106|103.141 +638836.319|219944.568|103.041 +638856.177|219926.149|101.407 +638860.898|219921.802|103.888 +638880.786|219903.344|101.459 +638895.463|219889.753|102.099 +638905.314|219880.615|101.480 +638910.224|219876.061|101.133 +638919.987|219867.021|101.544 +638953.993|219835.535|103.495 +638973.089|219817.871|106.141 +638977.887|219813.427|106.232 +638982.745|219808.923|106.241 +638987.567|219804.454|106.177 +638992.389|219799.986|106.135 +638997.242|219795.487|105.891 +639002.064|219791.015|105.531 +639006.913|219786.520|105.360 +639016.569|219777.565|105.031 +639021.363|219773.112|104.589 +639026.228|219768.594|104.041 +639031.157|219764.010|102.700 +639035.994|219759.517|102.066 +639040.752|219755.107|102.373 +639045.607|219750.599|101.675 +639050.350|219746.198|101.441 +639055.163|219741.729|101.096 +639059.942|219737.294|100.676 +639069.443|219728.480|100.289 +639074.128|219724.139|100.593 +639078.715|219719.896|101.547 +639083.214|219715.739|102.776 +639087.761|219711.533|103.681 +639092.370|219707.268|104.205 +639096.936|219703.041|104.690 +639101.544|219698.771|105.220 +639106.116|219694.540|105.696 +639110.777|219690.218|105.616 +639115.346|219685.981|105.812 +639119.939|219681.726|106.196 +639124.496|219677.505|106.513 +639129.059|219673.277|106.811 +639133.634|219669.040|107.046 +639138.172|219664.831|107.211 +639142.732|219660.607|107.275 +639147.283|219656.385|107.400 +639151.812|219652.188|107.671 +639156.311|219648.018|107.854 +639160.807|219643.852|108.055 +639165.315|219639.673|108.223 +639169.838|219635.479|108.308 +639174.309|219631.337|108.430 +639178.784|219627.185|108.533 +639183.261|219623.037|108.655 +639187.769|219618.855|108.616 +639192.241|219614.707|108.512 +639196.709|219610.561|108.457 +639201.147|219606.447|108.317 +639205.646|219602.271|108.128 +639210.148|219598.092|107.945 +639214.598|219593.965|107.790 +639219.027|219589.853|107.503 +639223.486|219585.717|107.345 +639227.933|219581.590|107.003 +639232.365|219577.475|106.750 +639236.784|219573.376|106.598 +639241.213|219569.267|106.421 +639245.587|219565.207|106.275 +639249.955|219561.156|106.183 +639254.326|219557.099|106.092 +639258.651|219553.085|105.982 +639262.982|219549.071|105.882 +639267.295|219545.069|105.876 +639271.644|219541.033|105.708 +639275.960|219537.028|105.479 +639280.307|219532.993|105.114 +639284.662|219528.948|104.729 +639288.978|219524.940|104.306 +639293.322|219520.907|104.022 +639297.552|219516.981|103.797 +639301.847|219512.995|103.538 +639306.136|219509.011|103.074 +639302.481|219510.465|103.187 +639298.086|219514.528|103.611 +639293.642|219518.633|103.800 +639289.186|219522.751|104.083 +639284.760|219526.842|104.473 +639280.237|219531.024|104.867 +639275.762|219535.160|105.293 +639271.221|219539.357|105.562 +639266.749|219543.487|105.760 +639262.296|219547.599|105.888 +639257.822|219551.729|105.891 +639253.369|219555.844|106.058 +639248.836|219560.028|106.132 +639244.362|219564.162|106.193 +639239.817|219568.359|106.369 +639235.321|219572.510|106.574 +639230.792|219576.695|106.723 +639226.189|219580.950|107.000 +639221.581|219585.208|107.332 +639217.045|219589.399|107.567 +639212.477|219593.617|107.738 +639207.901|219597.848|107.970 +639203.342|219602.057|108.128 +639198.736|219606.312|108.283 +639194.179|219610.522|108.472 +639189.601|219614.749|108.521 +639185.026|219618.974|108.588 +639180.415|219623.232|108.582 +639175.870|219627.426|108.494 +639171.331|219631.617|108.408 +639166.753|219635.838|108.265 +639162.175|219640.066|108.155 +639157.612|219644.275|107.963 +639153.050|219648.488|107.796 +639148.496|219652.688|107.589 +639143.909|219656.918|107.293 +639139.324|219661.152|107.311 +639134.710|219665.413|107.226 +639130.074|219669.690|106.988 +639125.560|219673.853|106.619 +639120.905|219678.151|106.531 +639116.321|219682.375|106.007 +639111.746|219686.600|105.766 +639107.080|219690.910|105.799 +639102.392|219695.241|105.991 +639097.871|219699.402|105.126 +639093.303|219703.617|104.592 +639088.670|219707.887|104.144 +639084.131|219712.069|103.431 +639079.593|219716.248|102.398 +639075.063|219720.418|101.300 +639070.516|219724.602|100.328 +639056.321|219737.721|100.965 +639051.597|219742.089|101.294 +639046.842|219746.481|101.502 +639042.081|219750.882|101.809 +639037.247|219755.357|102.648 +639032.595|219759.648|102.209 +639027.728|219764.153|102.995 +639022.860|219768.661|104.187 +639018.026|219773.133|104.809 +639013.244|219777.552|105.077 +639003.700|219786.373|105.534 +638998.894|219790.814|105.677 +638994.108|219795.240|106.092 +638989.305|219799.678|106.272 +638984.525|219804.091|106.284 +638979.755|219808.496|106.266 +638974.930|219812.952|106.293 +638970.175|219817.341|106.180 +638951.122|219834.916|104.519 +638931.856|219852.692|103.269 +638917.451|219865.978|101.642 +638912.574|219870.480|101.535 +638907.712|219874.967|101.288 +638902.775|219879.527|101.319 +638892.933|219888.625|102.136 +638883.085|219897.720|102.148 +638878.132|219902.295|102.014 +638873.294|219906.757|101.669 +638868.238|219911.439|102.660 +638853.452|219925.091|102.221 +638848.423|219929.739|102.526 +638843.457|219934.330|102.706 +638838.401|219939.005|103.382 +638833.399|219943.629|103.498 +638828.416|219948.229|103.373 +638823.414|219952.852|103.553 +638818.388|219957.498|104.025 +638813.340|219962.161|104.196 +638808.384|219966.736|103.867 +638803.324|219971.418|104.300 +638798.301|219976.054|104.242 +638788.249|219985.338|104.321 +638783.162|219990.041|104.592 +638778.136|219994.686|104.696 +638773.061|219999.371|104.833 +638762.929|220008.735|104.989 +638752.819|220018.089|105.714 +638747.686|220022.841|106.232 +638737.533|220032.238|107.119 +638732.431|220036.953|107.220 +638727.328|220041.674|107.430 +638722.257|220046.368|107.942 +638717.066|220051.178|108.981 +638712.003|220055.866|109.451 +638701.667|220065.452|111.987 +638696.571|220070.179|113.407 +638691.392|220074.980|114.617 +638686.281|220079.717|115.492 +638681.194|220084.426|115.986 +638676.052|220089.187|116.580 +638670.919|220093.935|117.080 +638665.865|220098.608|116.906 +638660.748|220103.342|117.114 +638655.621|220108.087|117.616 +638650.549|220112.778|117.946 +638645.404|220117.533|117.775 +638640.293|220122.258|117.964 +638635.227|220126.945|118.281 +638630.060|220131.731|118.936 +638624.949|220136.458|119.302 +638619.844|220141.183|119.637 +638614.741|220145.898|119.735 +638609.642|220150.613|119.866 +638604.549|220155.322|119.860 +638599.452|220160.035|119.915 +638594.310|220164.786|119.945 +638589.217|220169.496|119.988 +638584.121|220174.211|120.183 +638579.031|220178.917|120.241 +638573.938|220183.623|120.256 +638568.850|220188.326|120.186 +638563.708|220193.081|120.363 +638558.667|220197.744|120.591 +638553.577|220202.454|120.872 +638548.438|220207.205|121.018 +638543.351|220211.909|121.173 +638538.264|220216.615|121.372 +638533.177|220221.318|121.472 +638528.092|220226.021|121.661 +638523.005|220230.724|121.850 +638517.921|220235.427|122.112 +638512.843|220240.124|122.195 +638507.759|220244.827|122.499 +638502.675|220249.524|122.408 +638497.591|220254.224|122.502 +638492.510|220258.927|122.819 +638487.429|220263.627|123.036 +638482.345|220268.324|123.127 +638477.313|220272.981|123.225 +638472.232|220277.678|123.368 +638467.148|220282.378|123.429 +638462.115|220287.033|123.661 +638457.037|220291.730|123.917 +638451.962|220296.427|124.362 +638446.936|220301.078|124.804 +638441.907|220305.729|125.035 +638436.832|220310.423|125.343 +638431.861|220315.029|125.934 +638426.789|220319.723|126.395 +638421.763|220324.371|126.718 +638416.785|220328.976|127.032 +638411.762|220333.625|127.394 +638406.742|220338.273|127.839 +638401.768|220342.872|128.288 +638396.748|220347.520|128.708 +638391.770|220352.123|128.973 +638386.790|220356.728|129.229 +638381.767|220361.377|129.537 +638376.841|220365.936|129.891 +638371.812|220370.591|129.997 +638366.832|220375.196|130.208 +638361.891|220379.765|130.205 +638356.898|220384.383|130.110 +638351.997|220388.928|131.015 +638342.033|220398.145|131.393 +638337.089|220402.717|131.409 +638322.197|220416.488|131.339 +638317.247|220421.066|131.290 +638312.336|220425.604|131.186 +638307.386|220430.182|131.174 +638302.430|220434.764|131.162 +638297.520|220439.305|131.055 +638292.549|220443.898|130.845 +638287.617|220448.455|130.494 +638282.640|220453.055|130.196 +638277.760|220457.563|129.997 +638272.779|220462.168|129.717 +638267.842|220466.728|129.424 +638262.901|220471.294|129.092 +638258.006|220475.817|128.787 +638253.065|220480.383|128.531 +638248.121|220484.952|128.260 +638243.223|220489.478|128.016 +638238.276|220494.050|127.779 +638233.384|220498.570|127.669 +638223.517|220507.690|127.059 +638213.681|220516.776|126.413 +638208.780|220521.306|126.309 +638203.830|220525.878|125.675 +638198.950|220530.386|125.322 +638193.964|220534.985|124.353 +638189.054|220539.517|123.746 +638174.173|220553.252|121.576 +638164.267|220562.393|119.811 +638159.354|220566.928|119.412 +638154.443|220571.464|119.086 +638149.509|220576.020|118.522 +638144.641|220580.519|118.202 +638139.700|220585.082|117.644 +638134.848|220589.569|117.513 +638129.855|220594.165|116.092 +638125.018|220598.640|116.166 +638120.163|220603.129|116.096 +638115.295|220607.631|115.931 +638110.479|220612.087|116.266 +638105.666|220616.537|116.214 +638100.832|220621.009|116.437 +638091.246|220629.879|116.766 +638081.715|220638.703|117.632 +638067.527|220651.849|119.488 +638053.271|220665.037|120.128 +638043.685|220673.907|120.378 +638038.948|220678.284|120.408 +638034.139|220682.731|120.262 +638029.430|220687.096|120.899 +638015.229|220700.230|121.262 +638010.529|220704.579|121.682 +638005.878|220708.883|122.094 +638001.126|220713.275|122.161 +637996.423|220717.622|122.240 +637991.753|220721.941|122.576 +637987.062|220726.281|122.761 +637973.044|220739.244|123.508 +637968.390|220743.548|123.685 +637963.705|220747.876|123.697 +637959.082|220752.155|124.103 +637954.470|220756.423|124.618 +637949.861|220760.684|124.834 +637940.623|220769.230|125.517 +637931.375|220777.780|125.880 +637926.812|220781.998|126.154 +637922.243|220786.226|126.404 +637917.592|220790.524|126.486 +637912.999|220794.773|126.611 +637903.858|220803.225|126.919 +637899.222|220807.507|126.858 +637894.674|220811.707|126.745 +637890.105|220815.935|127.117 +637862.551|220841.380|125.773 +637857.927|220845.647|125.404 +637848.747|220854.123|124.535 +637844.224|220858.302|124.511 +637839.600|220862.566|123.959 +637834.976|220866.834|123.444 +637821.330|220879.428|122.137 +637816.880|220883.540|122.091 +637807.836|220891.885|121.317 +637803.292|220896.079|120.841 +637798.823|220900.203|120.530 +637794.224|220904.446|119.814 +637789.713|220908.610|119.323 +637780.828|220916.815|118.842 +637776.372|220920.927|118.442 +637767.466|220929.147|117.732 +637763.015|220933.256|117.427 +637758.602|220937.331|117.062 +637754.326|220941.287|117.388 +637745.624|220949.325|117.123 +637741.326|220953.293|117.156 +637732.715|220961.252|117.181 +637711.855|220980.552|119.174 +637707.807|220984.301|119.982 +637699.416|220992.058|120.058 +637695.313|220995.853|120.427 +637691.034|220999.800|120.018 +637686.919|221003.604|120.128 +637682.777|221007.432|120.125 +637678.692|221011.205|120.405 +637657.725|221030.542|118.513 +637625.163|221060.577|116.818 +637605.616|221078.630|117.754 +637594.220|221089.158|118.598 +637586.591|221096.208|118.942 +637579.221|221103.018|119.747 +637575.609|221106.361|120.536 +637564.578|221116.554|121.606 +637557.239|221123.332|122.012 +637549.978|221130.035|122.362 +637546.406|221133.339|122.765 +637542.904|221136.579|123.240 +637539.194|221139.996|122.954 +637535.723|221143.202|123.365 +637532.141|221146.513|123.572 +637528.587|221149.795|123.688 +637525.039|221153.066|123.655 +637521.540|221156.300|123.996 +637731.207|220960.365|117.016 +637739.656|220952.528|116.504 +637744.039|220948.471|116.900 +637752.796|220940.364|117.470 +637757.078|220936.392|117.196 +637765.844|220928.278|117.671 +637770.282|220924.170|117.958 +637774.753|220920.030|118.433 +637779.197|220915.919|118.802 +637783.672|220911.776|119.070 +637792.609|220903.507|119.896 +637801.698|220895.095|120.817 +637815.237|220882.567|122.134 +637824.314|220874.161|122.438 +637833.403|220865.749|123.133 +637842.669|220857.178|124.365 +637847.232|220852.956|124.621 +637856.440|220844.434|125.398 +637861.103|220840.118|125.739 +637870.324|220831.580|126.456 +637879.559|220823.028|126.776 +637888.816|220814.457|127.007 +637893.345|220810.257|126.718 +637907.311|220797.315|127.053 +637916.486|220788.796|126.465 +637921.122|220784.495|126.343 +637925.742|220780.209|126.136 +637930.394|220775.890|125.840 +637934.996|220771.620|125.538 +637944.317|220762.970|125.139 +637948.968|220758.651|124.575 +637958.316|220749.976|124.118 +637967.686|220741.280|123.536 +637972.392|220736.912|123.423 +637981.801|220728.183|122.874 +637991.268|220719.399|122.451 +637995.987|220715.019|122.161 +638000.772|220710.578|122.024 +638005.494|220706.198|121.783 +638010.206|220701.821|121.140 +638014.991|220697.383|121.049 +638034.133|220679.625|120.506 +638038.945|220675.163|120.332 +638043.764|220670.691|120.250 +638048.580|220666.226|120.143 +638053.372|220661.779|119.881 +638063.019|220652.827|119.512 +638077.417|220639.462|118.275 +638082.172|220635.042|117.388 +638087.028|220630.534|116.934 +638091.856|220626.053|116.675 +638096.705|220621.554|116.641 +638101.561|220617.050|116.211 +638106.453|220612.511|116.169 +638111.354|220607.966|116.208 +638116.231|220603.443|116.028 +638131.081|220589.691|117.281 +638136.003|220585.125|117.217 +638145.912|220575.950|118.205 +638160.860|220562.109|119.585 +638165.922|220557.427|120.610 +638170.830|220552.883|121.091 +638175.947|220548.152|122.289 +638180.909|220543.559|122.923 +638185.939|220538.908|123.773 +638200.919|220525.039|125.465 +638210.917|220515.780|126.349 +638225.849|220501.948|127.437 +638230.793|220497.367|127.644 +638235.825|220492.703|127.800 +638240.812|220488.085|127.974 +638245.801|220483.458|128.278 +638250.791|220478.838|128.553 +638255.781|220474.217|128.906 +638260.810|220469.557|129.156 +638265.793|220464.942|129.498 +638270.819|220460.288|129.799 +638275.788|220455.682|129.985 +638280.808|220451.031|130.281 +638285.825|220446.383|130.537 +638290.845|220441.737|130.839 +638295.856|220437.095|131.070 +638300.858|220432.456|131.214 +638305.850|220427.829|131.192 +638310.895|220423.154|131.253 +638315.887|220418.527|131.293 +638320.868|220413.909|131.101 +638325.909|220409.236|131.174 +638330.938|220404.573|131.098 +638335.931|220399.946|131.232 +638356.017|220381.317|130.311 +638361.040|220376.656|130.165 +638366.064|220371.999|130.022 +638371.093|220367.336|130.049 +638376.113|220362.681|129.872 +638381.127|220358.030|129.476 +638386.141|220353.376|129.150 +638391.158|220348.721|128.897 +638396.224|220344.024|128.644 +638401.237|220339.370|128.278 +638406.248|220334.719|127.812 +638411.308|220330.025|127.324 +638416.322|220325.371|126.913 +638421.339|220320.716|126.636 +638426.402|220316.016|126.248 +638431.465|220311.319|125.794 +638436.479|220306.665|125.209 +638441.544|220301.965|124.944 +638446.613|220297.265|124.657 +638451.630|220292.608|124.173 +638456.699|220287.904|123.816 +638461.768|220283.201|123.557 +638466.791|220278.541|123.328 +638471.866|220273.838|123.240 +638476.938|220269.135|123.124 +638481.964|220264.474|122.981 +638487.039|220259.768|123.005 +638492.111|220255.065|122.792 +638497.137|220250.402|122.643 +638502.215|220245.699|122.661 +638507.287|220240.993|122.417 +638512.316|220236.329|122.201 +638517.388|220231.626|121.990 +638522.463|220226.917|121.783 +638527.492|220222.253|121.612 +638532.570|220217.544|121.439 +638537.648|220212.835|121.292 +638542.631|220208.214|121.125 +638547.709|220203.502|120.954 +638552.790|220198.790|120.732 +638557.777|220194.166|120.576 +638562.861|220189.451|120.296 +638567.896|220184.778|120.098 +638572.932|220180.112|120.110 +638577.967|220175.445|120.082 +638583.051|220170.730|119.945 +638588.041|220166.103|119.854 +638593.128|220161.388|119.808 +638598.166|220156.718|119.765 +638603.156|220152.091|119.817 +638608.194|220147.422|119.805 +638613.239|220142.740|119.564 +638618.283|220138.065|119.439 +638623.330|220133.383|119.241 +638628.293|220128.777|118.772 +638633.355|220124.074|118.150 +638638.418|220119.380|117.699 +638643.374|220114.787|117.543 +638648.376|220110.154|117.577 +638653.436|220105.463|117.272 +638658.407|220100.854|116.867 +638663.427|220096.200|116.528 +638668.386|220091.604|116.464 +638673.403|220086.956|116.257 +638678.441|220082.280|115.614 +638683.379|220077.702|115.160 +638688.427|220073.014|114.364 +638693.450|220068.347|113.200 +638698.473|220063.681|112.100 +638703.511|220058.999|110.822 +638708.510|220054.351|109.436 +638713.536|220049.685|108.518 +638718.511|220045.067|107.790 +638723.461|220040.483|107.585 +638733.421|220031.244|106.961 +638738.393|220026.639|106.525 +638748.317|220017.437|105.952 +638753.246|220012.868|105.546 +638758.235|220008.238|104.949 +638763.164|220003.678|105.327 +638773.000|219994.561|105.013 +638777.919|219990.002|104.876 +638787.761|219980.885|104.690 +638792.678|219976.331|104.687 +638797.615|219971.753|104.434 +638802.532|219967.199|104.473 +638807.409|219962.682|104.455 +638812.334|219958.119|104.449 +638817.226|219953.587|104.281 +638822.131|219949.039|103.958 +638827.020|219944.510|103.913 +638831.918|219939.972|103.757 +638836.816|219935.433|103.632 +638841.702|219930.901|103.111 +638851.483|219921.842|103.190 +638856.326|219917.355|103.242 +638861.185|219912.856|103.154 +638870.975|219903.776|102.288 +638880.674|219894.794|102.492 +638885.563|219890.268|102.733 +638890.409|219885.775|102.434 +638895.344|219881.197|101.770 +638900.202|219876.692|101.407 +638905.070|219872.181|101.465 +638909.880|219867.731|101.657 +638914.641|219863.329|102.306 +638924.202|219854.484|103.273 +638948.035|219832.438|105.662 +638952.808|219828.024|106.290 +638962.324|219819.213|106.607 +638967.185|219814.711|106.546 +638971.922|219810.325|106.717 +638976.747|219805.853|106.592 +638981.547|219801.409|106.695 +638986.321|219796.987|106.644 +638991.121|219792.536|106.400 +638995.925|219788.080|106.135 +639000.789|219783.572|105.848 +639005.541|219779.171|105.680 +639010.360|219774.706|105.403 +639015.228|219770.192|104.812 +639020.050|219765.720|104.202 +639024.988|219761.133|103.145 +639029.752|219756.722|103.041 +639034.470|219752.358|103.288 +639039.316|219747.862|102.645 +639044.190|219743.342|101.834 +639048.988|219738.895|101.593 +639053.739|219734.493|101.358 +639058.589|219729.997|100.816 +639068.044|219721.244|100.810 +639072.634|219717.004|101.752 +639077.212|219712.779|102.794 +639081.732|219708.607|103.888 +639086.347|219704.348|104.711 +639090.968|219700.072|105.147 +639095.531|219695.860|105.991 +639100.173|219691.565|106.330 +639104.836|219687.249|106.244 +639109.530|219682.900|106.281 +639114.154|219678.623|106.488 +639118.695|219674.423|106.891 +639123.338|219670.129|107.015 +639127.958|219665.852|107.272 +639132.530|219661.625|107.561 +639137.157|219657.342|107.521 +639141.754|219653.087|107.680 +639146.329|219648.853|107.982 +639150.885|219644.638|108.128 +639155.436|219640.426|108.314 +639159.993|219636.210|108.491 +639164.501|219632.038|108.671 +639169.091|219627.789|108.686 +639173.608|219623.610|108.856 +639178.156|219619.398|108.866 +639182.701|219615.191|108.908 +639187.215|219611.012|108.860 +639191.747|219606.815|108.738 +639196.282|219602.612|108.616 +639200.836|219598.397|108.418 +639205.323|219594.239|108.314 +639209.846|219590.048|108.061 +639214.360|219585.866|107.857 +639218.893|219581.666|107.579 +639223.376|219577.515|107.332 +639227.851|219573.367|107.128 +639232.346|219569.200|106.848 +639236.772|219565.100|106.689 +639241.231|219560.970|106.638 +639245.654|219556.874|106.531 +639250.034|219552.820|106.415 +639254.414|219548.763|106.302 +639258.791|219544.709|106.229 +639263.186|219540.637|106.071 +639267.545|219536.598|105.872 +639271.934|219532.532|105.546 +639276.344|219528.442|105.120 +639280.758|219524.352|104.720 +639285.117|219520.313|104.348 +639289.417|219516.326|104.028 +639293.764|219512.300|103.760 +639298.101|219508.279|103.309 +639302.420|219504.274|102.956 +639300.597|219503.717|103.010 +639296.220|219507.767|103.349 +639291.780|219511.882|103.782 +639287.430|219515.909|104.038 +639283.017|219519.996|104.382 +639278.548|219524.132|104.757 +639274.074|219528.277|105.199 +639269.614|219532.407|105.571 +639265.119|219536.571|105.906 +639260.705|219540.652|106.092 +639256.255|219544.773|106.241 +639251.805|219548.891|106.400 +639247.327|219553.033|106.461 +639242.847|219557.179|106.561 +639238.308|219561.376|106.702 +639233.831|219565.521|106.830 +639229.286|219569.727|107.055 +639224.757|219573.915|107.217 +639220.218|219578.118|107.457 +639215.625|219582.370|107.747 +639211.044|219586.613|107.988 +639206.469|219590.847|108.213 +639201.848|219595.120|108.433 +639197.252|219599.375|108.552 +639192.695|219603.594|108.750 +639188.056|219607.885|108.863 +639183.481|219612.119|108.930 +639178.878|219616.374|108.884 +639174.276|219620.629|108.847 +639169.689|219624.872|108.759 +639165.056|219629.154|108.655 +639160.429|219633.434|108.536 +639155.863|219637.655|108.390 +639151.202|219641.965|108.210 +639146.597|219646.223|108.027 +639141.946|219650.521|107.820 +639137.355|219654.764|107.592 +639132.625|219659.137|107.598 +639127.980|219663.435|107.430 +639123.350|219667.711|107.177 +639118.680|219672.027|106.887 +639114.044|219676.307|106.702 +639109.387|219680.611|106.375 +639104.641|219684.994|106.287 +639099.941|219689.337|106.260 +639095.265|219693.656|106.092 +639090.632|219697.929|105.354 +639085.990|219702.212|104.995 +639081.324|219706.513|104.153 +639076.727|219710.752|103.202 +639072.146|219714.971|102.145 +639067.516|219719.235|101.075 +639062.844|219723.548|100.657 +639058.098|219727.931|100.407 +639053.185|219732.485|101.358 +639048.384|219736.923|101.535 +639043.498|219741.443|102.008 +639038.652|219745.935|102.937 +639033.738|219750.486|103.672 +639028.932|219754.927|103.663 +639024.317|219759.179|102.636 +639019.352|219763.782|103.846 +639014.438|219768.335|104.711 +639009.540|219772.868|105.129 +639004.697|219777.345|105.522 +638999.878|219781.801|105.775 +638995.053|219786.267|106.104 +638990.213|219790.741|106.199 +638985.351|219795.237|106.479 +638980.505|219799.718|106.656 +638975.695|219804.162|106.577 +638970.861|219808.633|106.732 +638966.015|219813.107|106.592 +638961.202|219817.558|106.604 +638956.423|219821.968|106.345 +638951.564|219826.461|106.400 +638922.873|219852.939|103.346 +638908.423|219866.271|101.816 +638903.573|219870.748|101.483 +638898.748|219875.204|101.413 +638893.792|219879.792|101.724 +638888.900|219884.321|102.370 +638883.950|219888.899|102.681 +638879.159|219893.322|102.361 +638874.233|219897.876|102.453 +638869.362|219902.380|102.538 +638864.428|219906.940|102.779 +638859.517|219911.482|102.809 +638854.574|219916.054|103.218 +638849.666|219920.589|103.254 +638834.890|219934.250|103.638 +638829.988|219938.780|103.715 +638825.029|219943.367|103.971 +638820.082|219947.939|104.065 +638815.187|219952.465|104.193 +638810.192|219957.083|104.367 +638805.303|219961.603|104.449 +638800.325|219966.203|104.446 +638795.351|219970.799|104.422 +638790.407|219975.371|104.693 +638785.433|219979.967|104.723 +638775.493|219989.157|104.803 +638770.558|219993.720|105.068 +638765.508|219998.396|105.656 +638760.573|220002.949|105.251 +638755.550|220007.595|105.479 +638750.609|220012.154|105.226 +638745.607|220016.778|105.927 +638740.554|220021.445|106.001 +638735.552|220026.078|106.872 +638730.550|220030.695|106.930 +638725.494|220035.368|107.162 +638720.473|220040.004|107.595 +638715.469|220044.631|107.854 +638710.415|220049.300|108.186 +638705.361|220053.982|109.448 +638700.265|220058.707|110.774 +638695.175|220063.422|112.036 +638690.097|220068.122|113.087 +638685.025|220072.819|114.169 +638679.975|220077.491|114.879 +638674.927|220082.161|115.541 +638669.889|220086.818|116.068 +638664.820|220091.500|116.160 +638659.754|220096.176|116.251 +638654.728|220100.824|116.644 +638649.656|220105.512|117.013 +638644.590|220110.191|117.217 +638639.579|220114.817|117.330 +638634.468|220119.545|117.671 +638629.399|220124.230|118.162 +638624.376|220128.875|118.784 +638619.267|220133.596|119.168 +638614.214|220138.266|119.351 +638609.163|220142.929|119.512 +638604.064|220147.638|119.656 +638599.020|220152.299|119.659 +638593.975|220156.956|119.677 +638588.882|220161.659|119.713 +638583.837|220166.316|119.768 +638578.744|220171.020|119.848 +638573.654|220175.723|119.970 +638568.610|220180.380|120.034 +638563.519|220185.083|120.198 +638558.429|220189.783|120.351 +638553.339|220194.489|120.716 +638548.301|220199.144|120.814 +638543.165|220203.886|120.991 +638538.126|220208.541|121.158 +638533.042|220213.237|121.350 +638527.958|220217.934|121.554 +638522.874|220222.631|121.661 +638517.790|220227.325|121.829 +638512.706|220232.022|122.109 +638507.628|220236.713|122.341 +638502.547|220241.407|122.518 +638497.466|220246.101|122.731 +638492.385|220250.795|122.743 +638487.304|220255.486|122.865 +638482.226|220260.180|123.097 +638477.093|220264.913|122.996 +638472.061|220269.562|123.155 +638466.983|220274.256|123.252 +638461.902|220278.946|123.386 +638456.824|220283.637|123.639 +638451.749|220288.328|123.920 +638446.677|220293.016|124.395 +638441.648|220297.664|124.636 +638436.573|220302.352|124.904 +638431.507|220307.037|125.459 +638426.487|220311.679|126.108 +638421.418|220316.364|126.471 +638416.346|220321.052|126.748 +638411.323|220325.694|127.102 +638406.258|220330.378|127.593 +638401.241|220335.014|128.099 +638396.220|220339.654|128.498 +638391.149|220344.341|128.745 +638386.122|220348.983|128.976 +638381.099|220353.626|129.251 +638376.079|220358.265|129.659 +638371.007|220362.953|129.924 +638366.024|220367.555|130.061 +638360.982|220372.206|129.976 +638355.950|220376.854|130.101 +638345.904|220386.139|130.805 +638340.936|220390.732|131.308 +638330.905|220399.992|131.366 +638325.958|220404.558|131.418 +638320.907|220409.221|131.247 +638315.915|220413.830|131.375 +638310.956|220418.405|131.247 +638305.957|220423.023|131.232 +638301.001|220427.595|131.229 +638295.999|220432.215|131.208 +638291.031|220436.797|131.028 +638286.056|220441.387|130.753 +638281.076|220445.980|130.461 +638276.102|220450.570|130.226 +638271.124|220455.161|130.037 +638266.189|220459.715|129.766 +638261.243|220464.274|129.397 +638256.253|220468.880|129.074 +638251.306|220473.440|128.769 +638246.365|220477.999|128.541 +638241.412|220482.568|128.196 +638236.465|220487.131|127.980 +638231.515|220491.700|127.708 +638226.617|220496.217|127.571 +638221.661|220500.789|127.291 +638201.916|220518.998|125.800 +638196.981|220523.549|125.371 +638192.053|220528.087|124.514 +638177.224|220541.758|122.798 +638172.271|220546.314|121.862 +638167.269|220550.923|120.957 +638157.418|220560.003|119.857 +638152.526|220564.508|119.214 +638147.607|220569.046|118.814 +638142.709|220573.561|118.177 +638137.747|220578.130|117.434 +638128.112|220587.030|117.879 +638118.206|220596.149|115.882 +638108.580|220605.037|116.172 +638103.764|220609.484|116.092 +638098.918|220613.959|116.187 +638094.108|220618.400|116.208 +638089.332|220622.813|116.541 +638084.553|220627.230|116.845 +638079.767|220631.649|117.138 +638070.315|220640.388|118.321 +638065.622|220644.728|118.988 +638060.848|220649.139|119.433 +638056.115|220653.513|119.796 +638041.859|220666.680|120.152 +638032.407|220675.407|120.402 +638027.628|220679.817|120.518 +638022.898|220684.188|120.637 +638018.192|220688.534|120.972 +638004.009|220701.638|121.222 +637990.019|220714.570|121.978 +637976.047|220727.497|122.960 +637971.395|220731.795|123.164 +637966.750|220736.089|123.399 +637957.481|220744.660|124.066 +637952.925|220748.879|124.612 +637943.613|220757.486|124.761 +637939.081|220761.680|125.176 +637929.808|220770.248|125.380 +637925.279|220774.439|125.870 +637920.713|220778.661|126.148 +637916.132|220782.895|126.334 +637906.961|220791.371|126.401 +637902.398|220795.593|126.754 +637888.654|220808.288|126.706 +637884.046|220812.546|126.562 +637879.562|220816.694|126.870 +637874.987|220820.918|126.678 +637870.351|220825.198|126.443 +637861.198|220833.647|125.864 +637856.641|220837.853|125.578 +637852.023|220842.117|125.255 +637847.488|220846.302|124.846 +637842.898|220850.536|124.456 +637824.649|220867.379|122.868 +637820.129|220871.549|122.417 +637793.044|220896.549|120.399 +637788.500|220900.737|119.732 +637779.609|220908.948|119.192 +637775.137|220913.072|118.708 +637770.632|220917.229|118.324 +637766.152|220921.362|117.836 +637761.684|220925.486|117.424 +637757.279|220929.552|117.101 +637748.544|220937.621|116.870 +637744.167|220941.659|116.748 +637739.921|220945.585|117.013 +637714.482|220969.109|118.586 +637710.303|220972.974|119.022 +637706.228|220976.748|119.701 +637702.001|220980.652|119.707 +637680.936|221000.114|119.567 +637647.395|221031.094|117.693 +637623.011|221053.634|117.415 +637614.879|221061.144|116.781 +637611.027|221064.707|117.147 +637603.346|221071.824|118.208 +637599.298|221075.561|117.827 +637580.342|221093.108|119.710 +637569.022|221103.584|120.604 +637565.297|221107.035|120.963 +637561.686|221110.378|121.579 +637535.966|221134.171|123.002 +637532.382|221137.490|123.176 +637528.700|221140.895|123.197 +637525.073|221144.248|123.246 +637521.565|221147.491|123.545 +637517.968|221150.822|123.709 +637514.499|221154.032|123.978 +637507.382|221160.610|124.075 +637711.084|220970.143|118.878 +637727.604|220954.833|116.888 +637731.941|220950.818|117.037 +637736.220|220946.856|116.934 +637740.521|220942.878|116.937 +637744.831|220938.892|117.001 +637753.472|220930.897|117.046 +637757.840|220926.855|117.202 +637762.305|220922.725|117.616 +637766.691|220918.674|117.891 +637771.166|220914.538|118.391 +637775.686|220910.362|118.875 +637780.081|220906.296|119.012 +637793.639|220893.769|120.680 +637798.193|220889.566|121.454 +637807.126|220881.303|121.667 +637811.674|220877.099|122.234 +637820.647|220868.800|122.499 +637834.290|220856.190|123.661 +637843.510|220847.671|124.685 +637848.085|220843.443|125.029 +637852.648|220839.225|125.337 +637857.232|220834.982|125.523 +637861.865|220830.703|125.989 +637871.022|220822.235|126.373 +637875.627|220817.974|126.465 +637880.211|220813.734|126.760 +637889.413|220805.218|126.709 +637893.952|220801.015|126.495 +637898.582|220796.729|126.541 +637903.233|220792.429|126.733 +637917.028|220779.655|126.175 +637921.713|220775.314|126.050 +637926.288|220771.074|125.566 +637930.897|220766.807|125.291 +637935.584|220762.467|125.230 +637940.166|220758.224|124.828 +637958.835|220740.927|123.676 +637963.462|220736.641|123.310 +637968.207|220732.246|123.118 +637986.998|220714.842|122.173 +638001.165|220701.720|121.369 +638015.454|220688.486|120.546 +638020.206|220684.087|120.573 +638025.022|220679.628|120.381 +638029.807|220675.199|120.341 +638034.648|220670.719|120.381 +638039.378|220666.333|119.970 +638044.197|220661.874|119.875 +638048.982|220657.442|119.518 +638058.669|220648.474|119.421 +638063.436|220644.058|118.982 +638077.811|220630.729|117.129 +638082.623|220626.273|116.684 +638087.500|220621.753|116.419 +638097.232|220612.743|116.144 +638102.112|220608.223|115.964 +638107.029|220603.675|116.105 +638116.804|220594.628|115.946 +638126.816|220585.381|117.674 +638131.681|220580.873|117.013 +638136.600|220576.322|117.376 +638141.578|220571.723|117.830 +638156.550|220557.891|119.875 +638161.545|220553.270|120.198 +638166.587|220548.616|121.027 +638176.618|220539.356|122.758 +638181.598|220534.756|123.588 +638191.638|220525.475|124.679 +638196.655|220520.842|125.520 +638201.624|220516.249|125.831 +638221.634|220497.751|127.327 +638226.632|220493.127|127.605 +638231.576|220488.555|127.797 +638236.612|220483.897|127.992 +638241.607|220479.277|128.321 +638246.600|220474.662|128.611 +638251.586|220470.050|128.882 +638256.573|220465.436|129.193 +638261.608|220460.775|129.571 +638266.641|220456.121|129.906 +638271.612|220451.518|130.104 +638276.632|220446.870|130.351 +638281.603|220442.268|130.634 +638286.620|220437.626|130.854 +638291.680|220432.941|131.086 +638296.639|220428.351|131.244 +638301.687|220423.678|131.296 +638306.630|220419.097|131.268 +638311.675|220414.424|131.302 +638316.677|220409.794|131.525 +638321.666|220405.170|131.512 +638326.699|220400.510|131.396 +638336.720|220391.226|131.363 +638341.750|220386.568|131.259 +638346.703|220381.972|130.586 +638356.746|220372.663|130.055 +638361.766|220368.009|129.845 +638366.807|220363.343|130.083 +638371.824|220358.691|129.787 +638376.799|220354.083|129.537 +638381.861|220349.389|129.184 +638386.881|220344.735|128.949 +638391.853|220340.126|128.696 +638401.935|220330.781|127.992 +638406.946|220326.133|127.489 +638411.960|220321.484|126.989 +638417.026|220316.787|126.657 +638422.043|220312.133|126.319 +638427.063|220307.482|125.907 +638432.120|220302.788|125.212 +638437.140|220298.134|124.737 +638442.163|220293.479|124.551 +638447.232|220288.779|124.212 +638452.255|220284.122|123.795 +638457.327|220279.422|123.551 +638462.353|220274.765|123.402 +638467.379|220270.107|123.243 +638472.454|220265.404|123.142 +638477.532|220260.701|123.216 +638482.561|220256.044|123.085 +638487.636|220251.341|122.902 +638492.711|220246.638|122.835 +638497.740|220241.980|122.630 +638502.815|220237.274|122.423 +638507.845|220232.614|122.213 +638512.919|220227.914|121.975 +638517.997|220223.208|121.829 +638523.027|220218.544|121.652 +638528.108|220213.841|121.521 +638533.140|220209.174|121.289 +638538.221|220204.468|121.164 +638543.253|220199.802|120.933 +638548.337|220195.093|120.707 +638553.418|220190.384|120.634 +638558.457|220185.714|120.271 +638563.541|220181.002|120.155 +638568.579|220176.335|119.976 +638573.621|220171.663|119.689 +638578.708|220166.950|119.680 +638583.746|220162.284|119.656 +638588.787|220157.614|119.558 +638593.826|220152.945|119.552 +638598.870|220148.275|119.448 +638603.909|220143.606|119.464 +638609.005|220138.884|119.290 +638614.007|220134.248|119.022 +638619.060|220129.564|118.680 +638624.117|220124.876|118.278 +638629.177|220120.185|117.851 +638634.236|220115.491|117.495 +638639.302|220110.791|117.031 +638644.313|220106.143|116.815 +638649.373|220101.449|116.595 +638654.393|220096.795|116.233 +638659.410|220092.140|115.974 +638664.475|220087.440|115.754 +638669.496|220082.786|115.565 +638674.534|220078.107|114.925 +638679.624|220073.383|114.312 +638684.626|220068.738|113.532 +638689.701|220064.019|112.343 +638694.779|220059.298|111.152 +638699.811|220054.619|110.015 +638704.919|220049.861|108.399 +638714.981|220040.525|107.537 +638730.002|220026.593|106.601 +638734.991|220021.969|106.650 +638745.019|220012.654|105.254 +638749.954|220008.085|105.546 +638754.953|220003.455|105.601 +638764.855|219994.278|105.705 +638769.839|219989.651|105.312 +638779.788|219980.428|104.955 +638784.704|219975.871|104.961 +638789.675|219971.259|104.885 +638794.552|219966.739|104.812 +638799.533|219962.121|104.699 +638804.467|219957.546|104.553 +638809.411|219952.959|104.324 +638814.349|219948.384|104.214 +638819.238|219943.849|104.135 +638824.182|219939.264|103.989 +638829.089|219934.714|103.745 +638834.036|219930.130|103.660 +638838.898|219925.618|103.446 +638843.851|219921.028|103.334 +638848.697|219916.535|103.343 +638853.610|219911.979|103.181 +638858.481|219907.462|102.995 +638863.398|219902.902|102.855 +638868.253|219898.400|102.861 +638873.182|219893.834|102.678 +638877.991|219889.375|102.724 +638892.683|219875.744|101.813 +638897.529|219871.251|101.614 +638902.382|219866.755|101.852 +638907.136|219862.351|102.099 +638911.940|219857.907|102.812 +638921.444|219849.110|103.879 +638926.193|219844.718|104.690 +638930.914|219840.351|105.315 +638935.654|219835.964|105.778 +638940.448|219831.523|106.196 +638949.924|219822.748|106.799 +638954.798|219818.228|106.595 +638959.474|219813.894|106.830 +638964.283|219809.438|106.811 +638969.084|219804.988|106.875 +638973.793|219800.623|106.912 +638978.566|219796.200|106.857 +638983.349|219791.762|106.732 +638988.158|219787.303|106.449 +638992.901|219782.905|106.308 +638997.744|219778.409|105.790 +639002.496|219774.002|105.632 +639007.239|219769.600|105.208 +639012.101|219765.086|104.641 +639016.947|219760.581|103.516 +639021.674|219756.198|103.638 +639026.313|219751.903|104.083 +639031.013|219747.548|104.108 +639035.759|219743.153|104.181 +639040.520|219738.730|103.455 +639045.376|219734.213|102.431 +639050.185|219729.748|101.785 +639054.943|219725.331|101.197 +639059.695|219720.920|100.996 +639064.304|219716.656|101.489 +639068.809|219712.496|102.669 +639073.320|219708.326|103.812 +639077.892|219704.096|104.559 +639082.415|219699.914|105.318 +639087.057|219695.613|105.620 +639091.632|219691.379|106.065 +639096.226|219687.124|106.385 +639100.840|219682.848|106.595 +639105.479|219678.550|106.686 +639110.054|219674.310|106.866 +639114.663|219670.043|107.162 +639119.195|219665.846|107.643 +639123.813|219661.567|107.622 +639128.394|219657.321|107.832 +639133.021|219653.032|107.802 +639137.547|219648.838|108.073 +639142.089|219644.632|108.287 +639146.643|219640.414|108.436 +639151.202|219636.186|108.561 +639155.762|219631.961|108.725 +639160.279|219627.776|108.841 +639164.858|219623.534|108.930 +639169.390|219619.334|109.009 +639173.922|219615.130|109.094 +639178.421|219610.961|109.122 +639182.981|219606.733|109.094 +639187.504|219602.539|109.015 +639192.049|219598.321|108.829 +639196.584|219594.117|108.728 +639201.150|219589.884|108.491 +639205.701|219585.662|108.341 +639210.230|219581.456|108.055 +639214.756|219577.259|107.823 +639219.234|219573.107|107.595 +639223.769|219568.895|107.336 +639228.302|219564.695|107.137 +639232.785|219560.534|106.942 +639237.248|219556.398|106.872 +639241.686|219552.277|106.680 +639246.111|219548.175|106.589 +639250.549|219544.060|106.442 +639255.039|219539.896|106.314 +639259.440|219535.812|106.144 +639263.875|219531.697|105.821 +639268.301|219527.589|105.552 +639272.778|219523.434|105.062 +639277.183|219519.344|104.696 +639281.605|219515.241|104.278 +639286.022|219511.138|103.894 +639290.435|219507.042|103.550 +639294.812|219502.979|103.160 +639299.198|219498.907|102.745 +639298.894|219496.798|102.581 +639294.602|219500.766|103.001 +639290.268|219504.768|103.385 +639285.940|219508.770|103.763 +639281.617|219512.766|104.147 +639277.241|219516.811|104.559 +639272.928|219520.798|104.928 +639268.502|219524.888|105.370 +639264.137|219528.924|105.796 +639259.760|219532.968|106.037 +639255.405|219536.992|106.205 +639250.988|219541.073|106.424 +639246.593|219545.130|106.564 +639242.195|219549.193|106.735 +639237.766|219553.286|106.836 +639233.389|219557.325|106.930 +639228.902|219561.470|107.095 +639224.461|219565.573|107.308 +639220.020|219569.675|107.546 +639215.476|219573.876|107.817 +639210.998|219578.012|108.015 +639206.518|219582.151|108.250 +639201.943|219586.378|108.466 +639197.468|219590.512|108.725 +639192.917|219594.718|108.866 +639188.361|219598.924|109.045 +639183.825|219603.115|109.140 +639179.296|219607.297|109.219 +639174.736|219611.506|109.216 +639170.137|219615.752|109.155 +639165.592|219619.946|109.094 +639161.057|219624.134|109.003 +639156.475|219628.362|108.902 +639151.858|219632.623|108.741 +639147.292|219636.838|108.588 +639142.674|219641.099|108.466 +639138.014|219645.400|108.317 +639133.423|219649.634|108.058 +639128.821|219653.883|107.906 +639124.115|219658.226|107.787 +639119.439|219662.545|107.811 +639114.831|219666.797|107.433 +639110.179|219671.089|107.034 +639105.513|219675.399|106.747 +639100.810|219679.745|106.711 +639096.094|219684.098|106.446 +639091.425|219688.414|106.241 +639086.737|219692.739|105.833 +639082.034|219697.079|105.543 +639077.377|219701.377|104.967 +639072.701|219705.690|104.211 +639068.105|219709.923|103.251 +639063.499|219714.163|102.023 +639058.802|219718.494|101.087 +639053.986|219722.950|101.660 +639049.109|219727.462|101.992 +639044.150|219732.055|102.943 +639039.185|219736.660|103.995 +639034.342|219741.138|104.190 +639029.605|219745.506|103.638 +639024.735|219750.011|103.733 +639019.882|219754.500|104.086 +639015.118|219758.893|103.422 +639010.110|219763.535|104.620 +639005.182|219768.101|105.266 +639000.229|219772.685|105.760 +638995.373|219777.171|105.900 +638990.423|219781.753|106.412 +638985.519|219786.288|106.616 +638980.621|219790.817|106.799 +638975.729|219795.338|106.955 +638970.803|219799.894|107.028 +638965.945|219804.381|106.939 +638961.040|219808.910|106.878 +638956.197|219813.388|106.747 +638946.392|219822.450|106.699 +638941.457|219827.006|106.564 +638936.653|219831.438|106.135 +638931.746|219835.971|105.793 +638926.903|219840.442|105.357 +638917.247|219849.342|103.721 +638907.499|219858.337|102.535 +638902.619|219862.842|102.041 +638897.755|219867.331|101.843 +638892.777|219871.934|101.843 +638887.809|219876.530|102.251 +638877.854|219885.738|102.876 +638872.956|219890.262|102.666 +638867.966|219894.876|102.943 +638863.044|219899.427|103.032 +638853.110|219908.608|103.212 +638848.090|219913.250|103.404 +638843.186|219917.785|103.440 +638838.181|219922.409|103.498 +638833.222|219926.993|103.638 +638828.211|219931.626|103.849 +638823.213|219936.247|103.949 +638818.260|219940.828|104.114 +638813.261|219945.449|104.263 +638808.311|219950.024|104.440 +638803.315|219954.645|104.632 +638798.329|219959.256|104.745 +638793.336|219963.871|104.952 +638788.310|219968.516|105.007 +638783.372|219973.082|105.171 +638768.419|219986.902|105.159 +638763.420|219991.526|105.662 +638758.397|219996.171|105.842 +638753.450|220000.743|105.668 +638743.474|220009.969|105.882 +638738.487|220014.575|105.620 +638728.493|220023.825|106.348 +638723.479|220028.467|106.665 +638718.459|220033.113|107.119 +638713.463|220037.733|107.159 +638698.327|220051.760|109.600 +638693.240|220056.475|110.707 +638688.158|220061.188|111.844 +638683.129|220065.854|112.987 +638678.027|220070.582|113.724 +638673.025|220075.215|114.401 +638667.981|220079.887|115.013 +638662.903|220084.584|115.330 +638657.925|220089.190|115.596 +638652.856|220093.881|115.830 +638647.833|220098.529|116.111 +638642.813|220103.174|116.406 +638637.744|220107.868|116.781 +638632.715|220112.522|117.385 +638627.643|220117.219|117.973 +638622.593|220121.889|117.943 +638617.582|220126.528|118.253 +638612.568|220131.167|118.671 +638607.511|220135.849|119.015 +638602.503|220140.482|119.314 +638597.459|220145.148|119.336 +638592.411|220149.815|119.387 +638587.367|220154.481|119.427 +638582.323|220159.145|119.464 +638577.275|220163.811|119.579 +638572.234|220168.474|119.637 +638567.189|220173.141|119.774 +638562.145|220177.807|119.991 +638557.103|220182.471|120.238 +638552.013|220187.180|120.436 +638547.021|220191.801|120.634 +638541.933|220196.504|120.725 +638536.846|220201.210|120.988 +638531.808|220205.870|121.149 +638526.724|220210.574|121.378 +638521.689|220215.234|121.554 +638516.605|220219.937|121.759 +638511.569|220224.594|121.917 +638506.488|220229.294|122.134 +638501.459|220233.949|122.362 +638496.378|220238.649|122.588 +638491.297|220243.349|122.758 +638486.262|220248.003|122.691 +638481.184|220252.703|122.987 +638476.103|220257.400|123.109 +638471.070|220262.054|123.240 +638465.989|220266.751|123.146 +638460.911|220271.451|123.298 +638455.879|220276.103|123.432 +638450.801|220280.800|123.688 +638445.775|220285.454|124.072 +638440.749|220290.105|124.322 +638435.720|220294.756|124.618 +638430.651|220299.450|125.051 +638425.634|220304.099|125.730 +638420.614|220308.744|126.215 +638415.542|220313.438|126.572 +638410.519|220318.086|126.919 +638405.502|220322.731|127.407 +638400.439|220327.419|127.934 +638395.468|220332.021|128.355 +638385.373|220341.360|128.864 +638380.346|220346.012|129.071 +638375.326|220350.657|129.440 +638370.255|220355.348|129.656 +638365.277|220359.950|129.952 +638360.187|220364.653|129.775 +638355.167|220369.298|130.095 +638350.199|220373.898|130.574 +638345.166|220378.549|130.677 +638340.128|220383.207|130.665 +638335.114|220387.846|131.198 +638330.115|220392.463|131.098 +638325.138|220397.069|131.390 +638320.100|220401.726|131.436 +638315.107|220406.341|131.491 +638310.117|220410.956|131.589 +638305.103|220415.585|131.296 +638300.108|220420.203|131.326 +638295.155|220424.781|131.308 +638290.141|220429.411|131.137 +638285.172|220434.002|130.933 +638280.152|220438.641|130.665 +638275.178|220443.234|130.427 +638270.204|220447.827|130.229 +638265.226|220452.427|130.001 +638260.246|220457.026|129.744 +638255.253|220461.635|129.382 +638250.261|220466.246|129.022 +638245.317|220470.812|128.742 +638240.318|220475.427|128.400 +638235.374|220479.993|128.150 +638230.382|220484.605|127.940 +638225.435|220489.177|127.715 +638220.479|220493.752|127.434 +638215.516|220498.333|127.105 +638200.606|220512.101|125.971 +638185.704|220525.850|124.157 +638180.745|220530.434|124.081 +638165.803|220544.208|121.271 +638160.808|220548.814|120.460 +638155.913|220553.334|120.207 +638150.911|220557.946|119.406 +638136.088|220571.625|117.568 +638121.452|220585.143|116.922 +638116.447|220589.758|115.879 +638101.893|220603.205|115.891 +638097.095|220607.640|115.974 +638092.246|220612.124|116.047 +638082.605|220621.039|116.345 +638073.053|220629.876|117.059 +638058.812|220643.058|118.930 +638049.272|220651.882|119.451 +638034.992|220665.089|120.018 +638020.715|220678.287|120.418 +638016.006|220682.643|120.695 +638011.266|220687.023|120.783 +638001.839|220695.737|121.036 +637987.733|220708.767|121.609 +637964.519|220730.225|123.344 +637959.865|220734.523|123.527 +637955.259|220738.778|123.728 +637950.639|220743.051|124.151 +637946.100|220747.248|124.822 +637936.776|220755.856|124.916 +637932.198|220760.086|125.054 +637927.593|220764.344|125.328 +637923.014|220768.575|125.813 +637918.446|220772.797|126.059 +637913.828|220777.064|126.319 +637895.448|220794.035|126.565 +637890.910|220798.229|126.794 +637881.717|220806.715|126.605 +637877.182|220810.903|126.608 +637872.619|220815.112|126.480 +637868.077|220819.303|126.489 +637858.924|220827.749|125.867 +637854.376|220831.943|125.624 +637845.284|220840.334|125.209 +637840.761|220844.504|124.892 +637836.192|220848.716|124.340 +637831.629|220852.923|123.837 +637827.097|220857.104|123.539 +637822.552|220861.295|123.188 +637813.579|220869.571|122.640 +637804.596|220877.858|122.124 +637786.634|220894.421|120.326 +637782.117|220898.582|119.811 +637768.807|220910.859|118.805 +637764.344|220914.974|118.385 +637755.469|220923.152|117.370 +637746.767|220931.186|117.266 +637738.058|220939.218|116.714 +637733.770|220943.177|116.784 +637721.023|220954.948|116.915 +637687.943|220985.517|119.710 +637683.801|220989.339|119.683 +637679.625|220993.195|119.750 +637675.455|220997.041|119.628 +637629.830|221039.089|116.217 +637614.047|221053.658|117.065 +637610.039|221057.352|117.001 +637606.299|221060.812|117.830 +637602.474|221064.344|118.101 +637594.705|221071.510|118.424 +637590.843|221075.073|118.586 +637575.770|221088.994|119.991 +637568.330|221095.864|120.719 +637564.630|221099.281|121.180 +637549.807|221112.960|122.185 +637546.125|221116.359|122.350 +637538.868|221123.055|122.923 +637531.574|221129.785|123.188 +637527.914|221133.162|123.286 +637520.678|221139.834|123.438 +637517.066|221143.166|123.344 +637513.475|221146.476|123.557 +637509.927|221149.753|123.722 +637502.920|221156.214|124.033 +637704.098|220967.945|119.162 +637708.209|220964.123|118.449 +637724.854|220948.663|116.355 +637733.489|220940.662|116.492 +637737.824|220936.645|116.669 +637746.620|220928.498|117.196 +637750.997|220924.441|117.138 +637755.432|220920.338|117.632 +637759.873|220916.227|117.918 +637768.819|220907.945|118.900 +637773.339|220903.760|119.406 +637777.798|220899.630|119.625 +637782.285|220895.479|119.994 +637786.784|220891.312|120.469 +637791.362|220887.078|121.094 +637804.926|220874.521|122.271 +637809.403|220870.375|122.478 +637813.917|220866.194|122.630 +637823.037|220857.748|123.210 +637827.615|220853.511|123.783 +637832.153|220849.311|124.151 +637836.725|220845.077|124.459 +637845.876|220836.607|125.160 +637850.448|220832.370|125.258 +637854.986|220828.167|125.477 +637859.649|220823.848|125.849 +637868.800|220815.371|126.227 +637877.959|220806.888|126.450 +637882.580|220802.606|126.693 +637887.146|220798.375|126.620 +637891.766|220794.096|126.602 +637900.993|220785.549|126.541 +637905.568|220781.310|126.306 +637924.014|220764.210|125.526 +637942.558|220747.026|124.676 +637951.839|220738.421|124.090 +637956.463|220734.130|123.383 +637965.796|220725.476|122.911 +637970.490|220721.127|122.722 +637984.572|220708.069|121.561 +637989.281|220703.707|121.530 +637994.009|220699.324|121.323 +637998.718|220694.960|120.981 +638003.497|220690.531|120.820 +638008.240|220686.139|120.756 +638013.034|220681.698|120.725 +638017.795|220677.284|120.482 +638022.575|220672.855|120.408 +638027.320|220668.457|120.064 +638032.121|220664.007|119.805 +638046.520|220650.666|119.479 +638065.689|220632.890|117.723 +638075.268|220624.002|116.461 +638084.958|220615.026|116.199 +638089.832|220610.509|115.913 +638094.703|220605.991|115.635 +638099.628|220601.432|115.855 +638104.520|220596.899|115.809 +638114.365|220587.789|116.318 +638124.055|220578.797|115.010 +638129.233|220574.033|117.357 +638134.162|220569.470|117.318 +638154.133|220551.008|120.110 +638159.137|220546.378|120.533 +638164.142|220541.758|121.512 +638169.184|220537.097|122.426 +638174.198|220532.464|123.075 +638199.243|220509.309|126.126 +638209.268|220500.030|126.812 +638214.233|220495.440|127.199 +638219.238|220490.807|127.538 +638224.228|220486.189|127.727 +638229.223|220481.566|127.983 +638234.259|220476.905|128.214 +638239.248|220472.288|128.458 +638244.241|220467.667|128.809 +638249.276|220463.009|129.086 +638254.269|220458.395|129.473 +638259.301|220453.743|129.793 +638264.330|220449.095|130.077 +638269.350|220444.453|130.272 +638274.373|220439.808|130.549 +638279.342|220435.215|130.738 +638284.401|220430.536|130.936 +638289.415|220425.900|131.159 +638294.423|220421.267|131.329 +638299.425|220416.643|131.372 +638314.455|220402.738|131.354 +638319.456|220398.111|131.570 +638324.477|220393.463|131.220 +638334.495|220384.191|131.055 +638344.502|220374.931|130.705 +638349.504|220370.292|129.994 +638354.539|220365.635|130.034 +638359.562|220360.987|129.748 +638364.600|220356.326|129.876 +638369.617|220351.681|129.552 +638374.641|220347.030|129.367 +638379.661|220342.382|129.068 +638384.729|220337.691|128.800 +638389.704|220333.085|128.537 +638394.773|220328.394|128.275 +638399.790|220323.746|127.867 +638404.801|220319.104|127.269 +638409.863|220314.413|126.834 +638414.883|220309.765|126.477 +638419.907|220305.114|126.166 +638424.920|220300.468|125.553 +638429.983|220295.774|124.913 +638435.003|220291.126|124.529 +638440.075|220286.429|124.228 +638445.101|220281.778|123.880 +638450.124|220277.124|123.588 +638455.199|220272.427|123.411 +638460.229|220267.772|123.210 +638465.258|220263.118|123.164 +638470.339|220258.421|123.240 +638475.368|220253.767|123.121 +638480.394|220249.109|122.795 +638485.475|220244.412|122.783 +638490.550|220239.712|122.640 +638495.582|220235.058|122.484 +638500.612|220230.401|122.332 +638505.687|220225.704|122.152 +638510.719|220221.046|121.939 +638515.800|220216.343|121.716 +638520.832|220211.683|121.475 +638525.867|220207.023|121.192 +638530.948|220202.320|120.933 +638536.033|220197.613|120.674 +638541.022|220192.996|120.536 +638546.106|220188.287|120.268 +638551.145|220183.626|120.140 +638556.232|220178.917|119.976 +638561.273|220174.250|119.698 +638566.311|220169.587|119.573 +638571.353|220164.917|119.363 +638576.443|220160.211|119.372 +638581.481|220155.548|119.375 +638586.526|220150.881|119.256 +638591.570|220146.212|119.125 +638596.612|220141.548|119.186 +638601.659|220136.879|119.025 +638606.710|220132.203|118.750 +638611.721|220127.561|118.290 +638616.774|220122.885|118.098 +638621.867|220118.170|118.138 +638626.830|220113.580|117.921 +638631.944|220108.840|117.363 +638636.979|220104.177|116.519 +638642.006|220099.522|115.995 +638647.074|220094.832|115.678 +638652.094|220090.183|115.388 +638657.115|220085.541|115.227 +638662.193|220080.841|114.791 +638667.185|220076.217|114.215 +638672.224|220071.554|113.727 +638677.274|220066.875|113.020 +638682.337|220062.181|112.136 +638687.406|220057.484|111.161 +638692.487|220052.769|110.027 +638697.531|220048.090|108.777 +638702.594|220043.403|108.174 +638707.614|220038.751|107.515 +638712.610|220034.134|107.436 +638717.639|220029.473|106.738 +638722.695|220024.795|106.449 +638727.700|220020.165|106.308 +638732.638|220015.602|106.470 +638737.689|220010.920|105.620 +638742.666|220006.324|106.004 +638752.584|219997.152|105.894 +638757.552|219992.556|105.708 +638767.501|219983.354|105.333 +638772.445|219978.785|105.607 +638777.413|219974.188|105.559 +638782.342|219969.632|105.421 +638787.322|219965.023|105.281 +638792.263|219960.451|105.037 +638797.204|219955.882|104.864 +638802.145|219951.313|104.693 +638807.083|219946.747|104.601 +638811.987|219942.209|104.336 +638816.934|219937.631|104.172 +638821.865|219933.071|104.220 +638826.779|219928.526|103.949 +638831.683|219923.988|103.815 +638836.587|219919.452|103.711 +638841.498|219914.914|103.580 +638846.411|219910.369|103.440 +638851.318|219905.828|103.364 +638856.192|219901.320|103.169 +638861.051|219896.830|103.178 +638865.930|219892.316|102.995 +638870.862|219887.753|102.788 +638875.708|219883.273|102.980 +638885.450|219874.260|102.465 +638890.351|219869.727|102.215 +638895.188|219865.253|102.123 +638900.007|219860.800|102.242 +638904.792|219856.380|102.675 +638909.550|219851.991|103.416 +638914.314|219847.593|104.068 +638928.524|219834.483|106.013 +638933.285|219830.085|106.311 +638938.058|219825.671|106.497 +638942.810|219821.282|106.909 +638947.574|219816.878|106.827 +638952.366|219812.449|106.921 +638957.087|219808.090|107.247 +638961.860|219803.671|107.116 +638966.612|219799.282|107.229 +638971.327|219794.920|107.226 +638976.125|219790.485|107.006 +638980.855|219786.111|106.945 +638985.616|219781.704|106.668 +638995.230|219772.801|105.482 +638999.957|219768.430|105.540 +639004.700|219764.038|105.138 +639009.568|219759.523|104.199 +639014.347|219755.095|103.593 +639018.983|219750.812|104.068 +639033.132|219737.718|103.492 +639037.743|219733.460|104.202 +639042.459|219729.095|103.861 +639047.302|219724.599|102.651 +639052.133|219720.122|101.901 +639056.836|219715.766|101.398 +639061.359|219711.594|102.462 +639065.858|219707.448|103.718 +639070.357|219703.300|104.629 +639074.905|219699.100|105.226 +639079.474|219694.881|105.693 +639084.018|219690.681|106.004 +639088.624|219686.423|106.272 +639093.229|219682.168|106.543 +639097.804|219677.938|106.702 +639102.337|219673.747|106.839 +639106.912|219669.519|107.052 +639111.459|219665.316|107.439 +639116.016|219661.100|107.482 +639125.087|219652.721|108.192 +639129.601|219648.546|108.241 +639134.140|219644.348|108.454 +639138.690|219640.142|108.622 +639143.198|219635.973|108.762 +639147.716|219631.800|108.881 +639152.233|219627.624|109.006 +639156.753|219623.442|109.128 +639161.267|219619.269|109.301 +639165.769|219615.106|109.277 +639170.249|219610.961|109.387 +639174.751|219606.797|109.399 +639179.268|219602.618|109.350 +639183.795|219598.430|109.274 +639188.284|219594.279|109.143 +639192.799|219590.100|108.890 +639197.331|219585.906|108.832 +639201.866|219581.706|108.512 +639206.332|219577.573|108.314 +639210.858|219573.385|108.094 +639215.326|219569.249|107.915 +639219.825|219565.085|107.613 +639224.312|219560.931|107.384 +639228.792|219556.785|107.223 +639233.227|219552.680|107.037 +639237.650|219548.589|106.942 +639242.051|219544.517|106.723 +639246.492|219540.405|106.577 +639250.942|219536.288|106.394 +639255.353|219532.206|106.196 +639259.763|219528.122|105.994 +639264.201|219524.016|105.696 +639268.615|219519.929|105.281 +639273.068|219515.802|104.928 +639277.469|219511.724|104.364 +639281.889|219507.633|103.989 +639286.324|219503.528|103.556 +639290.704|219499.471|103.163 +639295.111|219495.386|102.654 +639292.508|219495.283|102.733 +639288.207|219499.260|103.218 +639283.876|219503.262|103.602 +639279.548|219507.264|104.007 +639275.211|219511.276|104.473 +639270.824|219515.329|104.946 +639266.466|219519.359|105.318 +639262.104|219523.388|105.705 +639257.767|219527.396|106.007 +639253.393|219531.441|106.257 +639249.050|219535.452|106.378 +639244.697|219539.473|106.555 +639240.344|219543.493|106.756 +639235.949|219547.553|106.930 +639231.621|219551.549|107.034 +639227.232|219555.606|107.226 +639222.800|219559.699|107.381 +639218.350|219563.811|107.653 +639213.903|219567.920|107.936 +639209.480|219572.004|108.113 +639205.055|219576.094|108.332 +639200.595|219580.212|108.463 +639196.109|219584.358|108.780 +639191.613|219588.512|108.890 +639187.145|219592.639|109.143 +639182.658|219596.784|109.244 +639178.177|219600.920|109.323 +639173.663|219605.090|109.329 +639169.152|219609.254|109.341 +639164.702|219613.362|109.317 +639160.197|219617.520|109.326 +639155.729|219621.644|109.140 +639151.157|219625.865|109.015 +639146.624|219630.047|108.939 +639142.110|219634.214|108.802 +639137.599|219638.377|108.655 +639133.039|219642.587|108.515 +639128.489|219646.784|108.329 +639123.923|219650.999|108.259 +639110.240|219663.621|107.467 +639105.677|219667.824|107.125 +639101.051|219672.091|106.906 +639096.427|219676.359|106.686 +639091.849|219680.580|106.497 +639087.176|219684.890|106.308 +639082.552|219689.154|106.132 +639077.925|219693.418|105.677 +639073.280|219697.701|105.357 +639068.678|219701.941|104.760 +639064.075|219706.177|103.846 +639059.509|219710.377|102.687 +639054.940|219714.578|101.538 +639050.121|219719.031|102.139 +639045.193|219723.594|103.190 +639040.343|219728.080|104.071 +639035.619|219732.430|103.385 +639016.423|219750.151|103.736 +639011.628|219754.577|103.678 +639006.751|219759.085|104.242 +639001.789|219763.675|105.117 +638996.885|219768.207|105.604 +638982.230|219781.747|106.787 +638977.332|219786.270|106.942 +638972.440|219790.787|107.104 +638967.545|219795.307|107.311 +638962.674|219799.803|107.323 +638957.822|219804.277|107.226 +638952.933|219808.788|107.046 +638948.050|219813.293|106.830 +638943.185|219817.783|106.912 +638938.260|219822.325|106.665 +638933.383|219826.823|106.473 +638928.524|219831.304|106.119 +638923.623|219835.821|105.729 +638913.894|219844.782|104.318 +638909.023|219849.272|103.699 +638904.174|219853.734|102.870 +638899.230|219858.294|102.480 +638894.313|219862.827|102.315 +638889.336|219867.423|102.303 +638884.340|219872.035|102.498 +638879.329|219876.664|102.870 +638874.291|219881.319|103.084 +638869.393|219885.833|102.843 +638864.364|219890.478|103.007 +638859.341|219895.117|103.129 +638854.314|219899.756|103.318 +638849.346|219904.346|103.440 +638844.332|219908.973|103.535 +638839.276|219913.640|103.599 +638834.310|219918.224|103.772 +638829.254|219922.894|103.916 +638824.255|219927.508|103.967 +638819.183|219932.196|104.373 +638814.187|219936.805|104.446 +638809.149|219941.456|104.480 +638804.096|219946.122|104.729 +638799.112|219950.722|104.751 +638794.025|219955.419|104.882 +638788.980|219960.079|105.135 +638783.997|219964.679|105.245 +638778.904|219969.385|105.565 +638773.875|219974.027|105.711 +638768.809|219978.703|105.699 +638763.810|219983.314|105.467 +638758.793|219987.941|105.482 +638753.712|219992.635|105.805 +638748.652|219997.308|105.839 +638728.444|220015.971|106.601 +638723.400|220020.625|106.513 +638708.184|220034.679|107.153 +638703.115|220039.367|107.713 +638697.991|220044.104|108.415 +638692.932|220048.779|108.902 +638687.854|220053.479|109.826 +638682.718|220058.237|111.063 +638677.646|220062.928|112.017 +638672.583|220067.613|112.855 +638667.487|220072.322|113.413 +638662.439|220076.992|114.066 +638657.352|220081.692|114.544 +638652.274|220086.386|114.919 +638647.245|220091.031|115.196 +638642.173|220095.716|115.458 +638637.153|220100.355|115.705 +638632.051|220105.082|117.040 +638626.973|220109.776|117.647 +638621.953|220114.415|118.132 +638616.896|220119.082|118.135 +638611.797|220123.791|118.196 +638606.789|220128.415|118.257 +638601.729|220133.090|118.668 +638596.673|220137.763|118.945 +638591.625|220142.420|118.887 +638586.575|220147.084|119.040 +638581.524|220151.747|119.162 +638576.525|220156.362|119.186 +638571.432|220161.065|119.220 +638566.433|220165.676|119.262 +638561.340|220170.379|119.345 +638556.293|220175.043|119.625 +638551.294|220179.658|119.848 +638546.249|220184.318|120.009 +638541.159|220189.018|120.155 +638536.164|220193.630|120.393 +638531.125|220198.284|120.482 +638526.084|220202.941|120.780 +638521.042|220207.599|121.140 +638516.004|220212.256|121.515 +638510.966|220216.907|121.710 +638505.976|220221.516|121.948 +638500.895|220226.210|122.134 +638495.906|220230.818|122.417 +638490.870|220235.467|122.536 +638485.835|220240.118|122.661 +638480.800|220244.766|122.774 +638475.764|220249.414|122.789 +638470.778|220254.020|123.176 +638465.745|220258.668|123.295 +638460.707|220263.319|123.197 +638455.669|220267.967|123.167 +638450.685|220272.570|123.362 +638445.653|220277.218|123.627 +638440.624|220281.866|123.990 +638435.640|220286.469|124.279 +638430.611|220291.114|124.563 +638425.588|220295.756|125.078 +638420.617|220300.356|125.715 +638415.597|220304.995|126.325 +638410.616|220309.597|126.593 +638405.593|220314.239|127.013 +638400.573|220318.878|127.535 +638395.605|220323.472|128.074 +638390.627|220328.071|128.400 +638385.598|220332.713|128.577 +638380.621|220337.313|128.851 +638375.643|220341.909|129.147 +638370.617|220346.551|129.464 +638365.689|220351.108|129.772 +638360.644|220355.765|129.540 +638355.664|220360.368|129.766 +638350.692|220364.964|130.177 +638340.777|220374.130|130.601 +638330.822|220383.331|131.208 +638325.830|220387.940|131.268 +638315.896|220397.118|131.390 +638310.962|220401.680|131.662 +638295.996|220415.500|131.342 +638291.037|220420.078|131.268 +638286.069|220424.662|131.076 +638281.100|220429.250|130.887 +638276.129|220433.840|130.683 +638271.155|220438.430|130.455 +638266.180|220443.024|130.257 +638261.203|220447.617|130.077 +638256.213|220452.223|129.705 +638251.269|220456.782|129.370 +638246.280|220461.388|129.086 +638241.281|220465.999|128.699 +638236.331|220470.565|128.403 +638231.342|220475.174|128.224 +638226.395|220479.740|127.977 +638221.396|220484.355|127.739 +638216.489|220488.884|127.468 +638211.520|220493.465|127.087 +638206.552|220498.049|126.703 +638171.793|220530.108|123.158 +638166.788|220534.720|122.143 +638161.792|220539.322|121.265 +638151.822|220548.506|119.421 +638141.925|220557.635|118.467 +638136.948|220562.222|117.507 +638132.007|220566.785|117.434 +638127.054|220571.342|116.361 +638121.930|220576.054|114.584 +638117.325|220580.336|116.854 +638097.741|220598.408|115.657 +638092.807|220602.962|115.407 +638087.988|220607.418|115.785 +638078.350|220616.321|116.144 +638073.495|220620.808|116.233 +638049.671|220642.848|119.086 +638030.573|220660.496|119.802 +638025.790|220664.912|119.869 +638021.026|220669.314|120.107 +638011.541|220678.080|120.567 +638006.819|220682.445|120.783 +638002.061|220686.840|120.774 +637997.325|220691.217|120.924 +637992.597|220695.588|121.149 +637987.931|220699.900|121.500 +637969.149|220717.268|122.524 +637955.140|220730.219|123.414 +637941.309|220743.011|124.615 +637936.666|220747.306|124.935 +637927.404|220755.868|125.145 +637922.810|220760.114|125.520 +637918.183|220764.390|125.712 +637899.783|220781.395|126.340 +637895.238|220785.598|126.489 +637886.006|220794.126|126.605 +637881.467|220798.321|126.553 +637876.880|220802.557|126.544 +637867.718|220811.022|126.334 +637858.540|220819.492|125.858 +637853.977|220823.707|125.791 +637849.369|220827.959|125.493 +637844.861|220832.120|125.227 +637840.264|220836.366|125.029 +637822.010|220853.209|123.581 +637812.869|220861.643|122.652 +637808.461|220865.715|122.819 +637790.399|220882.385|121.399 +637776.887|220894.848|119.982 +637772.452|220898.941|119.649 +637763.521|220907.180|118.735 +637759.059|220911.298|118.330 +637754.615|220915.394|117.793 +637750.156|220919.509|117.193 +637737.062|220931.598|116.912 +637728.402|220939.593|116.412 +637715.656|220951.373|116.809 +637703.272|220962.831|118.305 +637695.002|220970.478|119.134 +637686.629|220978.214|119.083 +637682.502|220982.030|119.348 +637678.278|220985.928|119.195 +637674.178|220989.717|119.372 +637640.775|221020.529|116.751 +637624.459|221035.580|115.827 +637620.421|221039.308|115.803 +637608.771|221050.077|116.888 +637597.311|221060.669|117.976 +637589.639|221067.758|118.476 +637578.419|221078.134|120.046 +637570.827|221085.150|120.338 +637567.056|221088.631|120.503 +637563.411|221092.002|120.966 +637559.634|221095.486|120.920 +637555.955|221098.887|121.265 +637552.322|221102.249|121.789 +637548.649|221105.642|122.185 +637544.949|221109.056|122.070 +637537.615|221115.828|122.335 +637533.915|221119.248|122.451 +637530.401|221122.497|122.880 +637526.755|221125.862|123.039 +637523.125|221129.212|123.051 +637515.990|221135.802|123.182 +637512.415|221139.106|123.432 +637508.714|221142.514|122.841 +637705.469|220958.128|118.113 +637713.741|220950.459|116.891 +637717.981|220946.536|116.775 +637722.154|220942.668|116.129 +637739.692|220926.462|117.187 +637748.455|220918.357|117.318 +637752.936|220914.221|117.769 +637757.364|220910.131|118.238 +637775.363|220893.507|119.982 +637779.911|220889.304|120.396 +637788.945|220880.961|121.244 +637793.489|220876.764|121.707 +637798.031|220872.570|122.185 +637811.564|220860.061|122.743 +637816.161|220855.812|123.075 +637825.247|220847.418|123.764 +637829.834|220843.181|124.106 +637834.461|220838.908|124.410 +637839.082|220834.638|124.999 +637848.268|220826.149|125.364 +637852.849|220821.915|125.502 +637857.458|220817.657|125.828 +637862.088|220813.375|126.020 +637866.727|220809.089|126.279 +637871.244|220804.907|125.858 +637875.911|220800.597|126.315 +637880.629|220796.236|126.535 +637885.204|220792.005|126.498 +637889.819|220787.732|126.437 +637894.412|220783.480|126.264 +637899.066|220779.173|126.184 +637917.583|220762.034|125.712 +637922.237|220757.724|125.410 +637936.176|220744.816|124.764 +637954.763|220727.601|123.389 +637959.484|220723.227|123.005 +637968.853|220714.552|122.448 +637987.702|220697.096|121.274 +637992.427|220692.722|121.015 +637997.160|220688.339|120.844 +638001.930|220683.923|120.594 +638006.728|220679.485|120.558 +638016.265|220670.655|120.140 +638021.044|220666.232|120.021 +638025.824|220661.803|119.570 +638040.238|220648.462|119.262 +638045.087|220643.973|119.031 +638059.407|220630.702|117.370 +638064.219|220626.242|116.891 +638069.014|220621.798|116.278 +638073.845|220617.327|115.977 +638078.694|220612.837|115.867 +638083.593|220608.305|115.757 +638088.439|220603.818|115.650 +638093.297|220599.316|115.236 +638098.199|220594.787|115.657 +638108.059|220585.673|116.227 +638113.039|220581.071|116.556 +638117.904|220576.566|116.321 +638122.753|220572.070|115.455 +638127.786|220567.431|116.848 +638132.726|220562.862|116.918 +638137.753|220558.223|117.882 +638142.794|220553.572|119.031 +638147.811|220548.936|119.497 +638152.828|220544.306|120.512 +638162.813|220535.086|121.618 +638172.899|220525.774|123.493 +638177.864|220521.184|123.624 +638182.872|220516.560|124.264 +638202.928|220498.031|126.450 +638207.906|220493.432|126.937 +638212.919|220488.799|127.334 +638217.970|220484.129|127.614 +638222.917|220479.554|127.858 +638227.916|220474.936|128.123 +638232.902|220470.325|128.291 +638237.898|220465.704|128.635 +638242.939|220461.046|128.946 +638247.880|220456.478|129.263 +638252.915|220451.820|129.586 +638257.951|220447.163|129.943 +638262.934|220442.554|130.266 +638267.954|220437.909|130.479 +638272.968|220433.270|130.625 +638277.936|220428.674|130.823 +638282.993|220423.992|130.982 +638287.961|220419.399|131.208 +638292.969|220414.763|131.369 +638308.008|220400.839|131.509 +638312.986|220396.231|131.211 +638318.033|220391.558|131.366 +638333.026|220377.671|130.887 +638348.053|220363.754|130.189 +638353.073|220359.103|129.857 +638358.099|220354.449|129.696 +638363.125|220349.791|129.559 +638368.157|220345.134|129.583 +638373.178|220340.483|129.245 +638378.198|220335.831|128.982 +638383.215|220331.183|128.617 +638388.241|220326.529|128.467 +638393.261|220321.878|128.199 +638398.275|220317.229|127.733 +638403.289|220312.581|127.132 +638408.306|220307.930|126.660 +638413.326|220303.279|126.367 +638418.343|220298.627|125.864 +638423.357|220293.979|125.148 +638428.377|220289.325|124.651 +638433.400|220284.671|124.340 +638438.469|220279.971|123.941 +638443.446|220275.359|123.575 +638448.521|220270.659|123.322 +638453.547|220266.002|122.981 +638458.586|220261.344|123.459 +638463.661|220256.644|123.402 +638468.690|220251.987|123.161 +638473.719|220247.329|123.002 +638478.797|220242.626|122.807 +638483.826|220237.969|122.691 +638488.859|220233.309|122.554 +638493.936|220228.606|122.384 +638498.966|220223.945|122.140 +638503.995|220219.288|121.981 +638509.076|220214.582|121.689 +638514.108|220209.918|121.277 +638519.144|220205.252|120.875 +638524.179|220200.588|120.533 +638529.214|220195.922|120.332 +638534.249|220191.255|120.070 +638539.337|220186.546|119.902 +638544.326|220181.925|119.753 +638549.364|220177.259|119.622 +638554.406|220172.589|119.369 +638559.402|220167.965|119.180 +638564.489|220163.253|119.058 +638569.530|220158.584|118.942 +638574.523|220153.963|119.006 +638579.567|220149.290|118.851 +638584.612|220144.621|118.811 +638589.656|220139.951|118.784 +638594.701|220135.282|118.723 +638599.702|220130.646|118.455 +638604.759|220125.961|118.046 +638609.800|220121.297|118.275 +638614.805|220116.661|118.058 +638629.905|220102.665|116.617 +638634.998|220097.934|115.416 +638640.018|220093.283|115.120 +638645.038|220088.632|114.821 +638650.107|220083.935|114.511 +638655.136|220079.275|114.093 +638660.172|220074.608|113.584 +638665.216|220069.929|112.913 +638670.215|220065.293|112.258 +638675.268|220060.606|111.499 +638695.422|220041.909|108.418 +638720.498|220018.677|106.814 +638735.488|220004.790|105.949 +638740.471|220000.179|106.189 +638745.415|219995.604|106.336 +638750.432|219990.956|106.098 +638755.416|219986.338|105.708 +638765.368|219977.130|105.933 +638770.333|219972.530|105.876 +638775.310|219967.922|105.674 +638780.294|219963.304|105.443 +638785.271|219958.695|105.330 +638790.264|219954.072|105.043 +638795.244|219949.457|104.909 +638800.231|219944.839|104.784 +638805.120|219940.313|104.684 +638810.103|219935.698|104.608 +638815.038|219931.129|104.598 +638820.046|219926.490|104.303 +638824.993|219921.912|104.211 +638829.952|219917.316|103.974 +638834.905|219912.732|103.879 +638839.809|219908.190|103.788 +638844.768|219903.597|103.650 +638849.642|219899.080|103.407 +638854.601|219894.489|103.337 +638859.530|219889.923|103.111 +638864.440|219885.379|103.102 +638869.308|219880.871|103.035 +638874.212|219876.332|103.129 +638879.110|219871.794|102.821 +638884.039|219867.231|102.730 +638888.931|219862.699|102.541 +638893.804|219858.187|102.559 +638898.648|219853.707|102.895 +638903.479|219849.242|103.367 +638908.285|219844.798|104.062 +638913.114|219840.338|104.601 +638917.878|219835.937|105.269 +638922.639|219831.536|105.964 +638927.427|219827.110|106.433 +638932.285|219822.614|106.717 +638937.065|219818.192|106.866 +638941.896|219813.723|107.012 +638946.675|219809.297|107.186 +638951.500|219804.838|107.436 +638956.246|219800.449|107.945 +638961.050|219795.999|107.573 +638965.868|219791.537|107.515 +638970.721|219787.038|107.198 +638975.491|219782.621|107.186 +638980.319|219778.147|106.744 +638985.126|219773.694|106.500 +638989.972|219769.201|105.970 +638994.745|219764.781|105.668 +638999.613|219760.270|105.059 +639004.511|219755.726|103.882 +639009.226|219751.364|104.105 +639037.649|219725.069|103.544 +639042.251|219720.817|104.013 +639047.180|219716.239|102.568 +639051.965|219711.807|101.837 +639056.455|219707.668|103.135 +639060.975|219703.501|104.217 +639065.557|219699.271|104.906 +639070.113|219695.064|105.452 +639074.728|219690.800|105.930 +639079.312|219686.566|106.324 +639083.872|219682.351|106.546 +639088.502|219678.072|106.656 +639093.104|219673.820|106.973 +639097.692|219669.577|107.080 +639102.261|219665.352|107.314 +639106.817|219661.140|107.637 +639111.356|219656.946|107.796 +639120.448|219648.543|108.360 +639124.932|219644.397|108.588 +639129.467|219640.206|108.817 +639133.975|219636.037|108.939 +639138.486|219631.867|109.058 +639143.003|219627.691|109.167 +639147.475|219623.555|109.250 +639151.998|219619.370|109.350 +639156.479|219615.228|109.433 +639160.956|219611.089|109.545 +639165.406|219606.971|109.539 +639169.905|219602.810|109.567 +639174.373|219598.677|109.506 +639178.854|219594.532|109.384 +639183.335|219590.384|109.286 +639187.782|219586.269|109.122 +639192.287|219582.099|108.942 +639196.749|219577.969|108.728 +639201.211|219573.842|108.552 +639205.622|219569.758|108.384 +639210.108|219565.606|108.113 +639214.543|219561.498|107.857 +639218.975|219557.398|107.653 +639223.413|219553.289|107.433 +639227.838|219549.193|107.293 +639232.218|219545.139|107.140 +639236.614|219541.073|106.939 +639241.015|219537.001|106.738 +639245.361|219532.977|106.561 +639249.720|219528.942|106.342 +639254.082|219524.903|106.122 +639258.456|219520.855|105.872 +639262.839|219516.799|105.598 +639267.200|219512.760|105.193 +639271.586|219508.694|104.681 +639275.966|219504.637|104.236 +639280.292|219500.632|103.827 +639284.620|219496.621|103.410 +639288.985|219492.579|102.858 +639293.325|219488.559|102.437 +639291.133|219488.598|102.492 +639286.735|219492.658|102.922 +639282.379|219496.682|103.410 +639277.932|219500.787|103.870 +639273.498|219504.887|104.303 +639269.112|219508.935|104.754 +639264.674|219513.034|105.235 +639260.220|219517.146|105.574 +639255.780|219521.246|105.866 +639251.308|219525.370|106.065 +639246.879|219529.460|106.345 +639242.423|219533.572|106.510 +639237.958|219537.693|106.750 +639233.505|219541.804|106.958 +639229.049|219545.916|107.189 +639224.562|219550.055|107.332 +639220.029|219554.240|107.488 +639215.589|219558.337|107.704 +639211.038|219562.537|107.976 +639206.545|219566.682|108.253 +639201.970|219570.907|108.442 +639197.441|219575.086|108.677 +639192.933|219579.246|108.820 +639188.370|219583.458|109.012 +639183.865|219587.613|109.173 +639179.278|219591.847|109.265 +639174.730|219596.044|109.433 +639170.155|219600.262|109.478 +639165.647|219604.420|109.472 +639161.087|219608.626|109.484 +639156.497|219612.856|109.405 +639151.961|219617.041|109.329 +639147.429|219621.220|109.237 +639142.802|219625.487|109.137 +639138.224|219629.706|109.058 +639133.646|219633.930|109.015 +639129.040|219638.176|108.841 +639124.426|219642.428|108.735 +639119.823|219646.674|108.591 +639115.279|219650.859|108.110 +639110.649|219655.126|107.851 +639106.058|219659.363|107.689 +639101.441|219663.621|107.400 +639096.771|219667.928|107.134 +639092.138|219672.204|106.976 +639087.520|219676.468|106.750 +639082.790|219680.830|106.604 +639078.178|219685.085|106.369 +639073.542|219689.364|105.991 +639068.830|219693.708|105.455 +639064.225|219697.954|104.903 +639059.622|219702.194|104.330 +639055.020|219706.430|103.419 +639050.505|219710.579|101.916 +639045.629|219715.093|102.599 +639040.691|219719.671|104.071 +639036.094|219723.898|102.834 +639007.300|219750.498|104.135 +639002.536|219754.897|103.885 +638997.534|219759.530|105.074 +638992.706|219763.995|105.741 +638982.913|219773.051|106.708 +638978.115|219777.482|106.845 +638973.181|219782.045|107.317 +638968.362|219786.492|107.287 +638963.506|219790.979|107.570 +638958.642|219795.469|107.549 +638953.768|219799.971|107.640 +638948.979|219804.390|107.467 +638944.103|219808.892|107.223 +638939.268|219813.348|107.022 +638934.389|219817.856|106.857 +638929.551|219822.319|106.738 +638924.681|219826.811|106.494 +638919.844|219831.274|106.007 +638915.043|219835.693|105.153 +638910.175|219840.180|104.510 +638905.341|219844.636|103.986 +638900.537|219849.062|103.212 +638895.636|219853.582|102.892 +638890.753|219858.087|102.434 +638885.788|219862.677|102.794 +638880.853|219867.231|102.867 +638875.873|219871.833|102.959 +638870.981|219876.351|103.145 +638866.028|219880.923|103.007 +638861.051|219885.519|103.129 +638856.076|219890.112|103.260 +638851.099|219894.715|103.483 +638846.134|219899.299|103.556 +638841.104|219903.944|103.855 +638836.145|219908.525|103.946 +638831.140|219913.149|104.031 +638826.181|219917.727|104.172 +638821.128|219922.397|104.303 +638816.169|219926.975|104.501 +638811.124|219931.635|104.589 +638806.132|219936.247|104.702 +638801.133|219940.862|104.867 +638796.104|219945.507|104.876 +638791.068|219950.158|104.964 +638786.024|219954.818|105.214 +638780.982|219959.476|105.476 +638775.947|219964.127|105.653 +638770.912|219968.781|105.924 +638765.895|219973.411|105.921 +638760.856|219978.069|106.272 +638755.791|219982.747|106.348 +638750.801|219987.350|106.040 +638740.694|219996.683|105.967 +638735.668|220001.325|106.299 +638730.611|220005.997|106.391 +638720.501|220015.337|106.668 +638705.285|220029.394|107.329 +638700.253|220034.039|107.168 +638695.123|220038.788|108.034 +638685.007|220048.136|108.957 +638674.759|220057.625|110.950 +638669.700|220062.306|111.706 +638664.555|220067.064|112.298 +638659.452|220071.789|113.124 +638654.411|220076.449|113.621 +638649.278|220081.195|114.151 +638644.200|220085.886|114.474 +638639.128|220090.574|114.767 +638634.053|220095.267|115.202 +638628.969|220099.971|115.934 +638613.690|220114.107|118.135 +638608.590|220118.813|118.083 +638603.537|220123.480|118.116 +638598.486|220128.146|118.196 +638593.384|220132.862|118.464 +638588.284|220137.571|118.613 +638583.234|220142.234|118.653 +638578.186|220146.895|118.714 +638573.093|220151.601|118.790 +638568.049|220156.255|118.662 +638562.953|220160.961|118.833 +638557.859|220165.670|119.061 +638552.815|220170.328|119.177 +638547.770|220174.988|119.384 +638542.677|220179.691|119.567 +638537.636|220184.348|119.637 +638532.546|220189.052|119.817 +638527.458|220193.752|120.088 +638522.417|220198.409|120.326 +638517.330|220203.112|120.610 +638512.243|220207.812|120.985 +638507.204|220212.469|121.521 +638502.120|220217.169|121.829 +638497.042|220221.860|122.112 +638492.007|220226.515|122.320 +638486.923|220231.209|122.527 +638481.842|220235.902|122.618 +638476.807|220240.554|122.765 +638471.726|220245.245|122.822 +638466.645|220249.939|123.039 +638461.661|220254.544|123.304 +638456.580|220259.238|123.545 +638451.493|220263.932|123.176 +638446.506|220268.537|123.197 +638441.425|220273.228|123.417 +638436.399|220277.877|123.837 +638431.370|220282.522|124.194 +638426.344|220287.170|124.584 +638421.321|220291.812|125.090 +638416.304|220296.454|125.852 +638411.284|220301.096|126.331 +638406.261|220305.738|126.700 +638401.286|220310.338|127.126 +638396.269|220314.977|127.715 +638391.249|220319.616|128.156 +638386.272|220324.215|128.385 +638376.265|220333.460|128.876 +638371.245|220338.102|129.220 +638366.225|220342.741|129.620 +638361.269|220347.310|129.251 +638356.243|220351.949|129.546 +638351.262|220356.549|129.787 +638346.297|220361.139|130.378 +638341.244|220365.796|130.065 +638336.315|220370.350|130.391 +638331.347|220374.940|130.924 +638326.348|220379.552|130.860 +638321.413|220384.109|131.098 +638316.421|220388.714|131.150 +638311.425|220393.326|131.171 +638306.493|220397.880|131.482 +638286.620|220416.216|131.220 +638281.649|220420.801|131.000 +638276.681|220425.382|130.820 +638271.755|220429.923|130.638 +638266.784|220434.507|130.485 +638261.813|220439.095|130.330 +638256.872|220443.648|129.991 +638251.882|220448.251|129.653 +638246.981|220452.768|129.266 +638241.991|220457.371|128.970 +638237.044|220461.927|128.693 +638232.101|220466.487|128.455 +638227.154|220471.050|128.202 +638222.259|220475.564|128.044 +638217.299|220480.136|127.730 +638212.389|220484.665|127.422 +638207.421|220489.244|127.056 +638202.443|220493.831|126.581 +638197.509|220498.375|126.102 +638182.616|220512.098|124.392 +638177.721|220516.609|123.962 +638172.792|220521.153|123.719 +638162.841|220530.312|121.792 +638152.929|220539.441|120.472 +638147.991|220543.989|119.802 +638143.071|220548.524|119.351 +638128.179|220562.234|116.946 +638118.175|220571.433|114.367 +638113.369|220575.871|114.754 +638108.699|220580.202|116.425 +638103.807|220584.710|116.038 +638094.062|220593.693|115.282 +638089.225|220598.158|115.489 +638084.382|220602.629|115.647 +638079.566|220607.073|115.638 +638074.766|220611.502|115.794 +638069.956|220615.943|115.858 +638060.409|220624.761|116.702 +638055.648|220629.159|117.239 +638050.973|220633.484|118.071 +638046.233|220637.867|118.787 +638027.177|220655.457|119.503 +638017.710|220664.199|120.027 +638008.264|220672.919|120.436 +637998.794|220681.661|120.722 +637994.021|220686.062|120.625 +637989.363|220690.360|121.042 +637984.676|220694.685|121.244 +637979.918|220699.071|121.323 +637975.251|220703.375|121.362 +637961.325|220716.235|122.761 +637956.692|220720.511|123.094 +637952.062|220724.784|123.466 +637924.377|220750.339|125.297 +637919.750|220754.603|125.489 +637915.108|220758.888|125.578 +637910.524|220763.116|125.752 +637896.735|220775.835|126.130 +637883.003|220788.500|126.419 +637873.728|220797.046|126.090 +637864.651|220805.416|126.126 +637860.064|220809.647|126.175 +637850.902|220818.087|125.560 +637841.675|220826.588|124.962 +637832.601|220834.948|124.459 +637828.039|220839.152|124.237 +637818.940|220847.534|123.734 +637809.903|220855.861|123.094 +637805.328|220860.073|122.658 +637787.281|220876.697|121.366 +637773.787|220889.124|120.326 +637769.304|220893.251|119.747 +637760.333|220901.511|118.918 +637755.895|220905.598|118.647 +637751.393|220909.740|118.074 +637747.020|220913.773|117.894 +637738.196|220921.899|117.245 +637729.347|220930.046|116.306 +637725.010|220934.042|116.175 +637720.688|220938.026|116.114 +637716.402|220941.979|116.245 +637712.163|220945.893|116.611 +637707.978|220949.755|117.013 +637699.769|220957.335|118.098 +637687.291|220968.850|119.055 +637654.165|220999.398|119.884 +637645.689|221007.197|118.555 +637628.778|221022.757|115.891 +637620.741|221030.167|115.992 +637612.740|221037.546|116.080 +637593.513|221055.301|118.296 +637589.660|221058.855|118.482 +637578.258|221069.374|119.320 +637574.502|221072.842|119.723 +637570.772|221076.290|120.238 +637563.298|221083.184|120.841 +637559.509|221086.677|120.744 +637555.858|221090.048|121.189 +637552.157|221093.465|121.457 +637548.521|221096.824|121.987 +637541.200|221103.575|122.274 +637537.454|221107.026|122.210 +637533.793|221110.403|122.271 +637530.194|221113.722|122.377 +637526.606|221117.032|122.749 +637522.897|221120.449|122.460 +637519.465|221123.619|123.024 +637505.200|221136.771|123.380 +637494.526|221146.607|123.060 +637704.893|220950.236|117.519 +637713.071|220942.647|116.102 +637717.308|220938.724|115.974 +637721.578|220934.771|116.038 +637725.842|220930.820|115.836 +637739.015|220918.641|117.153 +637743.496|220914.504|117.812 +637756.788|220902.212|118.735 +637770.191|220889.825|120.134 +637774.668|220885.682|120.445 +637779.225|220881.473|120.914 +637783.715|220877.322|121.326 +637788.207|220873.164|121.524 +637797.248|220864.807|122.259 +637801.780|220860.616|122.454 +637824.479|220839.624|123.978 +637842.834|220822.653|125.297 +637852.011|220814.164|125.669 +637870.409|220797.141|126.078 +637874.978|220792.910|125.980 +637884.247|220784.333|126.035 +637888.862|220780.069|126.261 +637893.455|220775.820|126.087 +637898.121|220771.504|126.087 +637912.060|220758.614|125.776 +637916.653|220754.359|125.398 +637921.344|220750.022|125.322 +637949.340|220724.114|123.624 +637954.034|220719.770|123.368 +637958.673|220715.473|122.771 +637968.076|220706.771|122.085 +637972.795|220702.403|121.716 +637977.522|220698.029|121.436 +637982.259|220693.646|121.219 +637986.983|220689.272|120.960 +637991.726|220684.886|120.817 +638001.239|220676.083|120.472 +638025.165|220653.946|119.311 +638029.969|220649.505|119.034 +638034.754|220645.079|119.025 +638049.141|220631.762|117.787 +638058.736|220622.871|116.547 +638063.537|220618.427|115.952 +638073.239|220609.451|115.663 +638078.140|220604.922|115.538 +638082.995|220600.429|115.501 +638087.902|220595.890|115.483 +638092.764|220591.391|115.096 +638102.649|220582.263|115.818 +638107.590|220577.697|116.220 +638117.270|220568.729|114.715 +638122.406|220564.005|116.601 +638127.316|220559.470|116.812 +638132.309|220554.858|117.412 +638137.283|220550.271|118.327 +638142.352|220545.595|119.296 +638147.342|220540.993|119.976 +638157.257|220531.836|120.771 +638162.329|220527.161|121.957 +638187.356|220504.066|125.380 +638197.314|220494.870|126.203 +638202.337|220490.231|126.639 +638207.311|220485.638|127.081 +638212.322|220481.008|127.462 +638217.281|220476.427|127.772 +638222.283|220471.809|128.065 +638227.321|220467.152|128.278 +638232.265|220462.586|128.473 +638237.307|220457.925|128.778 +638242.293|220453.317|129.010 +638247.335|220448.662|129.354 +638252.324|220444.057|129.690 +638257.320|220439.448|130.113 +638262.349|220434.806|130.372 +638267.366|220430.170|130.510 +638272.383|220425.537|130.662 +638277.400|220420.904|130.839 +638282.371|220416.317|131.064 +638287.382|220411.687|131.229 +638297.422|220402.421|131.909 +638312.422|220388.556|131.156 +638322.416|220379.323|131.281 +638342.475|220360.779|130.171 +638347.471|220356.165|130.311 +638352.485|220351.526|129.757 +638357.505|220346.883|129.357 +638362.549|220342.226|129.583 +638367.575|220337.578|129.321 +638372.605|220332.930|129.211 +638377.622|220328.291|128.723 +638382.648|220323.642|128.470 +638387.674|220318.997|128.245 +638392.697|220314.352|127.922 +638397.760|220309.667|127.385 +638402.777|220305.025|126.818 +638407.800|220300.380|126.440 +638412.826|220295.735|126.050 +638417.889|220291.047|125.319 +638422.909|220286.402|124.773 +638427.935|220281.754|124.301 +638433.007|220277.060|123.865 +638438.036|220272.411|123.499 +638443.062|220267.760|123.060 +638448.149|220263.066|123.380 +638453.142|220258.458|123.630 +638458.220|220253.764|123.365 +638463.249|220249.113|122.908 +638468.281|220244.458|122.637 +638473.366|220239.764|122.728 +638478.398|220235.110|122.633 +638483.433|220230.459|122.502 +638488.514|220225.762|122.326 +638493.549|220221.107|122.146 +638498.585|220216.453|121.932 +638503.666|220211.756|121.527 +638508.701|220207.096|121.003 +638513.739|220202.435|120.546 +638518.827|220197.735|120.341 +638523.868|220193.075|120.024 +638528.909|220188.415|119.744 +638533.951|220183.754|119.564 +638538.992|220179.094|119.461 +638544.034|220174.433|119.305 +638549.127|220169.724|119.003 +638554.171|220165.067|118.967 +638559.219|220160.400|118.744 +638564.263|220155.737|118.604 +638569.262|220151.119|118.574 +638574.309|220146.459|118.522 +638579.354|220141.795|118.519 +638584.356|220137.174|118.470 +638589.403|220132.511|118.406 +638594.460|220127.838|118.147 +638599.458|220123.218|118.180 +638604.512|220118.548|118.089 +638614.525|220109.297|117.955 +638624.601|220099.964|115.913 +638629.682|220095.258|115.193 +638634.712|220090.607|114.703 +638639.692|220085.998|114.315 +638644.721|220081.347|113.968 +638649.757|220076.690|113.477 +638654.749|220072.069|112.907 +638659.794|220067.400|112.356 +638664.796|220062.770|111.670 +638669.852|220058.088|110.935 +638684.943|220044.116|108.829 +638689.957|220039.480|108.293 +638699.970|220030.220|107.619 +638704.968|220025.596|107.448 +638719.949|220011.743|106.668 +638724.905|220007.165|106.592 +638729.916|220002.532|106.415 +638734.887|219997.935|106.159 +638739.828|219993.370|106.382 +638744.806|219988.770|106.113 +638749.765|219984.189|106.110 +638754.712|219979.617|106.314 +638759.674|219975.033|106.318 +638764.609|219970.473|106.086 +638774.512|219961.317|105.845 +638779.501|219956.705|105.616 +638784.393|219952.182|105.421 +638789.337|219947.610|105.168 +638794.321|219943.004|105.120 +638799.261|219938.438|104.998 +638804.202|219933.872|104.900 +638809.103|219929.340|104.733 +638814.056|219924.762|104.553 +638818.961|219920.230|104.422 +638823.911|219915.655|104.339 +638828.809|219911.128|104.327 +638833.774|219906.538|104.126 +638838.684|219901.999|104.025 +638843.610|219897.446|103.766 +638848.526|219892.901|103.660 +638853.458|219888.341|103.431 +638858.380|219883.791|103.297 +638863.315|219879.228|103.068 +638868.207|219874.711|103.330 +638873.102|219870.184|103.081 +638878.031|219865.631|103.013 +638882.893|219861.141|103.163 +638887.791|219856.612|102.949 +638892.671|219852.104|102.971 +638897.505|219847.641|103.410 +638902.284|219843.234|103.971 +638907.094|219838.796|104.662 +638911.873|219834.392|105.242 +638916.674|219829.963|106.049 +638921.465|219825.543|106.513 +638926.266|219821.112|106.906 +638931.100|219816.646|107.022 +638935.949|219812.166|107.040 +638940.768|219807.719|107.332 +638945.538|219803.314|107.631 +638950.375|219798.846|107.805 +638955.173|219794.414|107.918 +638960.056|219789.900|107.735 +638964.847|219785.468|107.546 +638969.709|219780.975|107.220 +638974.549|219776.501|107.083 +638979.411|219772.005|106.811 +638984.230|219767.549|106.510 +638989.094|219763.044|105.885 +638994.023|219758.481|105.187 +638998.964|219753.900|104.062 +639003.743|219749.480|104.181 +639037.125|219718.604|104.016 +639041.947|219714.136|103.312 +639046.848|219709.588|102.105 +639051.380|219705.415|103.462 +639055.983|219701.169|104.339 +639060.576|219696.927|104.949 +639065.236|219692.623|105.452 +639069.793|219688.417|106.007 +639074.408|219684.155|106.516 +639079.065|219679.849|106.753 +639083.683|219675.581|106.939 +639088.310|219671.305|107.101 +639092.989|219666.977|107.253 +639097.558|219662.755|107.494 +639102.142|219658.519|107.665 +639106.753|219654.255|107.979 +639111.280|219650.079|108.539 +639115.806|219645.894|108.789 +639120.421|219641.627|108.838 +639125.023|219637.372|108.981 +639129.574|219633.165|109.152 +639134.143|219628.938|109.210 +639138.727|219624.701|109.222 +639143.253|219620.516|109.292 +639147.780|219616.331|109.384 +639152.321|219612.128|109.396 +639156.902|219607.894|109.506 +639161.404|219603.728|109.490 +639165.909|219599.564|109.500 +639170.426|219595.385|109.445 +639174.959|219591.191|109.326 +639179.488|219587.000|109.244 +639183.972|219582.852|109.158 +639188.470|219578.691|109.018 +639192.920|219574.570|108.878 +639197.432|219570.398|108.710 +639201.964|219566.204|108.442 +639206.387|219562.110|108.241 +639210.879|219557.953|107.970 +639215.311|219553.850|107.765 +639219.749|219549.741|107.534 +639224.193|219545.630|107.317 +639228.628|219541.527|107.159 +639233.035|219537.446|106.897 +639237.427|219533.380|106.735 +639241.841|219529.295|106.479 +639246.206|219525.254|106.238 +639250.567|219521.218|106.034 +639254.950|219517.161|105.748 +639259.334|219513.104|105.473 +639263.695|219509.063|105.062 +639268.069|219505.015|104.635 +639272.425|219500.979|104.300 +639276.808|219496.923|103.867 +639289.896|219484.798|102.242 +639288.869|219483.594|102.081 +639284.455|219487.663|102.572 +639280.020|219491.759|103.202 +639275.500|219495.929|103.763 +639271.059|219500.025|104.214 +639266.603|219504.134|104.507 +639262.138|219508.255|104.882 +639257.697|219512.352|105.394 +639253.204|219516.497|105.699 +639248.772|219520.581|105.958 +639244.313|219524.693|106.125 +639239.790|219528.863|106.369 +639235.269|219533.032|106.634 +639230.795|219537.159|106.945 +639226.302|219541.298|107.098 +639221.800|219545.450|107.332 +639217.259|219549.635|107.512 +639212.708|219553.829|107.774 +639208.130|219558.053|107.945 +639203.585|219562.241|108.210 +639199.041|219566.432|108.509 +639194.469|219570.648|108.710 +639189.851|219574.906|108.899 +639185.310|219579.088|108.957 +639180.701|219583.337|109.137 +639176.175|219587.506|109.173 +639171.545|219591.773|109.237 +639166.961|219595.998|109.350 +639162.343|219600.253|109.381 +639157.780|219604.459|109.430 +639153.138|219608.733|109.344 +639148.548|219612.963|109.295 +639143.954|219617.197|109.280 +639139.321|219621.464|109.213 +639134.731|219625.692|109.216 +639130.095|219629.962|109.207 +639125.486|219634.205|109.055 +639120.829|219638.496|108.924 +639116.208|219642.751|108.878 +639111.621|219646.976|108.668 +639106.976|219651.252|108.207 +639102.370|219655.486|107.802 +639097.789|219659.707|107.604 +639093.071|219664.048|107.311 +639088.432|219668.324|107.201 +639083.796|219672.594|107.073 +639079.062|219676.953|106.951 +639074.405|219681.239|106.674 +639069.763|219685.512|106.308 +639065.108|219689.791|105.717 +639060.503|219694.028|105.147 +639055.852|219698.304|104.565 +639051.207|219702.578|103.949 +639046.671|219706.735|102.572 +639041.889|219711.142|102.578 +639036.951|219715.711|104.056 +639003.566|219746.469|103.986 +638998.869|219750.791|103.577 +638993.870|219755.409|104.714 +638989.015|219759.895|105.574 +638984.089|219764.443|106.257 +638979.252|219768.905|106.662 +638974.424|219773.355|107.003 +638969.621|219777.784|107.211 +638964.762|219782.262|107.479 +638959.916|219786.730|107.686 +638955.072|219791.195|107.878 +638950.260|219795.627|107.854 +638945.447|219800.062|107.854 +638940.677|219804.454|107.540 +638935.849|219808.898|107.281 +638931.005|219813.360|107.183 +638926.238|219817.750|106.878 +638921.407|219822.197|106.702 +638916.570|219826.647|106.171 +638911.791|219831.042|105.580 +638906.966|219835.480|104.949 +638902.180|219839.884|104.449 +638897.361|219844.313|103.772 +638892.521|219848.769|103.349 +638887.629|219853.268|102.940 +638882.713|219857.800|103.260 +638877.854|219862.278|103.071 +638872.929|219866.816|103.068 +638867.988|219871.370|103.248 +638863.059|219875.912|103.318 +638858.134|219880.450|103.388 +638853.211|219884.986|103.452 +638848.234|219889.573|103.638 +638843.311|219894.111|103.782 +638838.325|219898.708|104.096 +638833.359|219903.286|104.236 +638828.440|219907.818|104.403 +638823.432|219912.436|104.544 +638818.528|219916.953|104.586 +638813.535|219921.552|104.574 +638808.585|219926.115|104.665 +638803.577|219930.733|104.909 +638798.594|219935.326|104.897 +638793.641|219939.892|105.120 +638788.602|219944.534|105.223 +638783.659|219949.091|105.376 +638778.614|219953.742|105.650 +638773.618|219958.348|105.918 +638768.592|219962.978|105.976 +638763.557|219967.620|106.199 +638758.574|219972.216|106.436 +638748.558|219981.443|106.244 +638743.495|219986.106|106.290 +638738.478|219990.736|106.415 +638733.443|219995.372|106.074 +638728.414|220000.014|106.449 +638718.312|220009.326|106.397 +638713.228|220014.020|107.015 +638708.175|220018.683|107.153 +638698.013|220028.056|107.628 +638692.956|220032.722|107.936 +638682.794|220042.101|108.704 +638677.734|220046.771|109.158 +638662.455|220060.883|111.200 +638657.310|220065.635|111.752 +638652.259|220070.298|112.414 +638647.163|220075.004|113.032 +638642.030|220079.744|113.499 +638636.992|220084.392|113.956 +638631.865|220089.126|114.346 +638626.781|220093.820|114.986 +638621.700|220098.511|115.535 +638596.197|220122.059|118.244 +638591.150|220126.708|117.988 +638585.995|220131.459|118.220 +638580.899|220136.163|118.202 +638575.846|220140.820|118.275 +638570.701|220145.563|118.211 +638565.604|220150.263|118.278 +638560.554|220154.920|118.412 +638555.454|220159.623|118.650 +638550.309|220164.369|118.811 +638545.262|220169.023|118.939 +638540.120|220173.766|119.076 +638535.027|220178.466|119.241 +638529.933|220183.163|119.457 +638524.840|220187.860|119.671 +638519.747|220192.557|119.863 +638514.657|220197.257|120.241 +638509.567|220201.951|120.469 +638504.477|220206.648|120.927 +638499.389|220211.345|121.423 +638494.305|220216.039|121.951 +638489.221|220220.729|122.143 +638484.134|220225.420|122.332 +638479.050|220230.111|122.445 +638473.963|220234.799|122.582 +638468.876|220239.490|122.484 +638463.834|220244.135|122.329 +638458.753|220248.823|122.719 +638453.675|220253.514|123.441 +638448.594|220258.202|123.676 +638443.507|220262.890|123.597 +638438.414|220267.580|123.057 +638433.385|220272.223|123.606 +638428.307|220276.910|123.978 +638423.232|220281.595|124.502 +638418.203|220286.234|124.938 +638413.137|220290.916|125.712 +638408.065|220295.598|126.200 +638403.039|220300.237|126.596 +638397.967|220304.918|127.077 +638392.947|220309.551|127.684 +638387.924|220314.187|128.102 +638382.849|220318.872|128.358 +638377.817|220323.511|128.553 +638372.793|220328.147|128.918 +638367.764|220332.786|129.156 +638362.738|220337.425|129.501 +638357.736|220342.037|129.211 +638352.707|220346.676|129.491 +638347.742|220351.266|130.119 +638342.710|220355.909|130.321 +638337.711|220360.517|130.226 +638332.740|220365.110|130.677 +638327.738|220369.719|130.577 +638322.773|220374.309|131.153 +638317.780|220378.915|131.220 +638302.845|220392.695|131.445 +638282.954|220411.035|131.052 +638277.940|220415.656|130.939 +638272.962|220420.243|130.677 +638268.043|220424.781|130.570 +638263.071|220429.366|130.430 +638258.091|220433.956|130.235 +638253.150|220438.510|129.894 +638248.154|220443.112|129.507 +638243.208|220447.672|129.156 +638238.215|220452.271|128.879 +638233.314|220456.788|128.605 +638228.373|220461.342|128.422 +638223.423|220465.905|128.178 +638218.479|220470.465|128.031 +638213.560|220474.994|127.623 +638208.600|220479.566|127.340 +638203.632|220484.144|126.989 +638198.746|220488.643|126.514 +638193.757|220493.240|125.968 +638183.936|220502.286|125.151 +638178.974|220506.855|124.474 +638174.012|220511.424|123.859 +638169.129|220515.926|123.603 +638164.194|220520.473|123.338 +638159.137|220525.109|121.317 +638154.206|220529.651|120.664 +638149.271|220534.202|120.521 +638139.405|220543.288|119.348 +638134.470|220547.820|117.845 +638129.477|220552.417|117.263 +638119.647|220561.469|116.327 +638100.189|220579.410|115.742 +638095.340|220583.884|115.794 +638090.405|220588.426|115.108 +638080.752|220597.332|115.318 +638075.997|220601.718|115.434 +638071.129|220606.208|115.452 +638066.390|220610.585|115.721 +638061.531|220615.065|115.843 +638056.776|220619.454|116.035 +638052.006|220623.859|116.519 +638047.306|220628.202|117.181 +638042.612|220632.539|117.924 +638033.142|220641.284|118.732 +638028.381|220645.679|118.945 +638023.644|220650.044|119.022 +637999.967|220671.895|119.960 +637995.322|220676.184|120.424 +637985.913|220684.865|120.905 +637981.225|220689.190|121.119 +637971.825|220697.858|121.411 +637967.189|220702.141|122.021 +637962.535|220706.435|122.536 +637957.881|220710.730|122.719 +637948.648|220719.252|123.630 +637934.826|220732.014|124.935 +637930.150|220736.321|124.746 +637911.703|220753.338|125.505 +637907.140|220757.547|125.809 +637902.517|220761.808|125.755 +637897.932|220766.039|125.953 +637879.547|220782.983|125.776 +637875.024|220787.159|126.133 +637870.442|220791.380|126.169 +637865.846|220795.614|125.843 +637861.329|220799.781|125.989 +637856.769|220803.984|125.922 +637852.154|220808.233|125.553 +637842.986|220816.679|124.956 +637820.269|220837.606|124.020 +637797.592|220858.494|122.469 +637793.121|220862.615|122.338 +637788.585|220866.788|121.917 +637770.639|220883.314|120.360 +637766.237|220887.371|120.201 +637757.267|220895.622|119.122 +637752.823|220899.716|118.808 +637744.033|220907.811|118.235 +637735.007|220916.114|116.858 +637730.609|220920.165|116.382 +637717.573|220932.174|115.839 +637709.014|220940.062|115.955 +637700.702|220947.737|116.781 +637696.593|220951.532|117.549 +637688.227|220959.252|118.202 +637680.024|220966.823|119.183 +637671.508|220974.666|118.567 +637663.181|220982.341|118.650 +637633.942|221009.236|116.446 +637629.781|221013.065|116.080 +637609.686|221031.563|116.169 +637594.116|221045.910|117.431 +637590.343|221049.388|117.940 +637582.650|221056.481|118.595 +637578.821|221060.004|118.918 +637575.033|221063.497|119.183 +637560.058|221077.301|120.881 +637556.251|221080.807|120.924 +637552.554|221084.211|121.204 +637548.777|221087.686|121.189 +637526.795|221107.934|122.466 +637523.159|221111.284|122.655 +637519.471|221114.673|122.460 +637515.883|221117.977|122.655 +637512.293|221121.284|122.844 +637498.119|221134.330|123.008 +637699.099|220946.673|116.632 +637707.362|220939.032|115.803 +637711.638|220935.082|115.839 +637715.942|220931.107|115.775 +637720.185|220927.187|115.693 +637724.541|220923.167|115.913 +637728.893|220919.150|116.138 +637737.808|220910.935|117.409 +637751.058|220898.716|118.784 +637755.533|220894.589|119.235 +637764.475|220886.338|119.921 +637768.935|220882.226|120.369 +637773.403|220878.108|120.872 +637777.896|220873.963|121.271 +637782.352|220869.851|121.512 +637786.869|220865.681|121.826 +637791.414|220861.494|122.286 +637795.891|220857.360|122.432 +637800.347|220853.246|122.502 +637804.862|220849.082|122.880 +637813.948|220840.700|123.469 +637818.599|220836.411|124.118 +637827.716|220828.002|124.761 +637836.735|220819.675|124.651 +637841.346|220815.417|124.929 +637845.958|220811.165|125.215 +637850.527|220806.943|125.294 +637855.126|220802.701|125.569 +637859.805|220798.388|126.017 +637864.371|220794.169|125.852 +637868.955|220789.935|125.816 +637873.591|220785.659|126.087 +637878.224|220781.380|126.081 +637882.781|220777.167|125.941 +637887.432|220772.870|126.090 +637892.041|220768.612|125.980 +637896.661|220764.335|125.685 +637901.294|220760.053|125.782 +637910.582|220751.467|125.538 +637924.615|220738.494|125.355 +637943.220|220721.279|123.908 +637957.244|220708.304|122.707 +637961.925|220703.973|122.371 +637966.665|220699.590|122.128 +637971.322|220695.277|121.317 +637976.108|220690.854|121.433 +637980.829|220686.486|121.106 +637985.553|220682.115|120.808 +637990.366|220677.668|120.805 +637995.033|220673.346|120.128 +637999.818|220668.917|119.601 +638004.668|220664.440|119.945 +638019.011|220651.172|119.180 +638023.794|220646.749|118.711 +638052.567|220620.125|116.004 +638057.410|220615.644|115.742 +638062.278|220611.146|115.675 +638072.025|220602.133|115.306 +638076.936|220597.594|115.266 +638081.794|220593.104|115.209 +638086.714|220588.560|115.291 +638091.600|220584.040|115.096 +638096.580|220579.449|115.757 +638101.314|220575.048|113.749 +638106.459|220570.321|116.016 +638116.374|220561.164|116.251 +638121.306|220556.611|116.629 +638126.313|220551.990|117.321 +638131.294|220547.393|117.781 +638136.299|220542.779|118.497 +638146.345|220533.516|119.973 +638151.344|220528.904|120.792 +638156.376|220524.262|121.478 +638161.454|220519.586|122.713 +638171.439|220510.375|123.965 +638181.458|220501.134|125.221 +638186.478|220496.498|125.483 +638191.458|220491.901|125.877 +638196.497|220487.253|126.437 +638201.477|220482.654|126.916 +638206.494|220478.027|127.251 +638211.508|220473.397|127.614 +638216.464|220468.819|127.907 +638221.512|220464.158|128.163 +638226.465|220459.586|128.425 +638231.503|220454.932|128.620 +638236.490|220450.327|128.793 +638241.488|220445.712|129.126 +638246.530|220441.058|129.476 +638251.522|220436.446|129.857 +638256.561|220431.792|130.226 +638261.584|220427.153|130.391 +638266.558|220422.556|130.577 +638271.575|220417.920|130.741 +638276.592|220413.284|130.918 +638281.606|220408.651|131.064 +638301.665|220390.107|131.204 +638306.646|220385.502|130.845 +638316.701|220376.208|131.147 +638321.688|220371.594|131.025 +638336.729|220357.679|130.330 +638341.768|220353.022|130.311 +638346.748|220348.417|130.077 +638351.765|220343.771|129.534 +638361.836|220334.460|129.476 +638366.859|220329.815|129.126 +638371.885|220325.163|128.885 +638376.908|220320.515|128.504 +638381.938|220315.864|128.288 +638386.964|220311.213|128.111 +638392.033|220306.525|127.641 +638397.050|220301.877|127.081 +638402.070|220297.231|126.523 +638407.096|220292.580|126.239 +638412.165|220287.889|125.672 +638417.182|220283.241|124.938 +638422.253|220278.547|124.453 +638427.280|220273.893|124.005 +638432.355|220269.199|123.441 +638437.396|220264.542|123.722 +638442.480|220259.842|123.856 +638447.512|220255.187|123.615 +638452.538|220250.533|122.960 +638457.613|220245.833|122.188 +638462.649|220241.176|122.219 +638467.736|220236.475|122.374 +638472.823|220231.779|122.512 +638477.858|220227.121|122.399 +638482.894|220222.464|122.201 +638487.978|220217.761|121.926 +638493.013|220213.100|121.597 +638498.094|220208.397|121.128 +638503.178|220203.691|120.707 +638508.219|220199.028|120.290 +638513.261|220194.364|119.973 +638518.348|220189.658|119.707 +638523.389|220184.992|119.448 +638528.434|220180.328|119.208 +638533.527|220175.619|118.997 +638538.568|220170.956|118.958 +638543.613|220166.289|118.805 +638548.709|220161.577|118.574 +638553.757|220156.910|118.415 +638558.804|220152.241|118.238 +638563.900|220147.532|118.189 +638568.899|220142.911|118.165 +638573.998|220138.196|118.010 +638579.046|220133.526|117.924 +638584.048|220128.902|117.946 +638589.150|220124.184|117.735 +638604.259|220110.221|117.784 +638609.340|220105.512|116.797 +638614.372|220100.848|115.940 +638639.634|220077.464|112.987 +638644.670|220072.807|112.554 +638649.763|220068.094|111.929 +638654.758|220063.474|111.423 +638674.973|220044.765|109.039 +638684.995|220035.493|107.997 +638690.033|220030.836|107.973 +638695.035|220026.209|107.707 +638700.049|220021.573|107.320 +638705.026|220016.979|107.628 +638715.014|220007.738|106.805 +638725.049|219998.460|106.229 +638730.005|219993.879|106.205 +638739.920|219984.719|106.208 +638749.838|219975.554|106.257 +638754.782|219970.991|106.567 +638759.762|219966.386|106.311 +638764.688|219961.832|106.220 +638769.665|219957.232|106.095 +638774.606|219952.666|105.879 +638779.547|219948.098|105.647 +638784.485|219943.535|105.510 +638789.435|219938.957|105.242 +638794.372|219934.391|105.141 +638799.316|219929.822|105.007 +638804.211|219925.295|104.912 +638809.109|219920.769|104.815 +638814.047|219916.209|104.848 +638818.942|219911.686|104.848 +638823.889|219907.114|104.803 +638828.751|219902.618|104.665 +638833.658|219898.086|104.608 +638838.602|219893.511|104.156 +638843.528|219888.957|103.919 +638848.410|219884.443|103.681 +638853.342|219879.883|103.468 +638858.216|219875.378|103.376 +638863.077|219870.888|103.431 +638867.966|219866.368|103.248 +638872.852|219861.854|103.117 +638882.512|219852.933|103.556 +638887.422|219848.391|103.245 +638892.180|219844.005|103.974 +638896.977|219839.576|104.330 +638901.790|219835.138|105.013 +638906.533|219830.761|105.446 +638911.355|219826.314|106.080 +638916.098|219821.938|106.531 +638920.895|219817.509|106.945 +638925.671|219813.098|107.156 +638930.484|219808.654|107.451 +638935.257|219804.247|107.710 +638940.034|219799.839|107.970 +638944.837|219795.402|108.003 +638949.586|219791.012|108.107 +638954.411|219786.553|108.000 +638959.169|219782.158|108.070 +638964.027|219777.665|107.750 +638968.849|219773.203|107.360 +638973.690|219768.725|106.854 +638978.505|219764.272|106.577 +638983.349|219759.792|106.110 +638988.229|219755.272|105.382 +638993.148|219750.715|104.047 +638997.924|219746.307|104.202 +639031.291|219715.495|103.151 +639035.899|219711.252|103.958 +639040.846|219706.668|102.428 +639045.409|219702.468|103.574 +639050.030|219698.213|104.342 +639054.572|219694.031|104.976 +639059.208|219689.761|105.656 +639063.801|219685.530|106.305 +639068.428|219681.263|106.735 +639073.067|219676.983|107.095 +639077.724|219672.689|107.357 +639082.360|219668.412|107.461 +639087.021|219664.112|107.430 +639091.635|219659.854|107.695 +639096.241|219655.605|108.034 +639100.886|219651.322|108.155 +639105.461|219647.104|108.421 +639109.981|219642.937|109.033 +639114.565|219638.707|109.259 +639119.189|219634.439|109.268 +639123.804|219630.181|109.362 +639128.361|219625.978|109.518 +639133.009|219621.687|109.433 +639137.550|219617.496|109.430 +639142.135|219613.265|109.469 +639146.728|219609.022|109.478 +639151.282|219604.822|109.463 +639155.826|219600.628|109.509 +639160.340|219596.461|109.463 +639164.897|219592.255|109.472 +639169.481|219588.021|109.359 +639174.002|219583.849|109.338 +639178.531|219579.670|109.289 +639183.072|219575.473|109.180 +639187.574|219571.315|109.036 +639192.140|219567.100|108.856 +639196.609|219562.976|108.671 +639201.144|219558.782|108.402 +639205.625|219554.646|108.192 +639210.169|219550.449|107.945 +639214.656|219546.303|107.732 +639219.103|219542.198|107.506 +639223.599|219538.043|107.290 +639228.046|219533.934|107.095 +639232.514|219529.811|106.817 +639236.973|219525.690|106.595 +639241.402|219521.599|106.302 +639245.822|219517.518|106.071 +639250.247|219513.427|105.815 +639254.652|219509.358|105.449 +639259.111|219505.237|105.077 +639263.515|219501.168|104.760 +639267.871|219497.145|104.437 +639281.172|219484.843|102.721 +639285.540|219480.811|102.434 +639285.848|219478.336|102.191 +639281.496|219482.359|102.645 +639277.103|219486.416|103.056 +639272.675|219490.510|103.672 +639268.215|219494.627|104.205 +639263.781|219498.724|104.641 +639259.388|219502.778|104.888 +639254.929|219506.896|105.245 +639250.476|219511.007|105.583 +639246.029|219515.116|105.918 +639241.558|219519.240|106.132 +639237.135|219523.324|106.391 +639232.648|219527.467|106.717 +639228.183|219531.588|106.973 +639223.672|219535.751|107.220 +639219.173|219539.906|107.427 +639214.622|219544.106|107.659 +639210.136|219548.245|107.845 +639205.582|219552.451|108.137 +639201.056|219556.627|108.296 +639196.514|219560.818|108.564 +639191.939|219565.042|108.774 +639187.367|219569.261|108.969 +639182.807|219573.470|109.140 +639178.217|219577.704|109.216 +639173.633|219581.931|109.268 +639169.058|219586.150|109.289 +639164.489|219590.365|109.317 +639159.859|219594.639|109.411 +639155.250|219598.887|109.405 +639150.654|219603.127|109.362 +639146.045|219607.379|109.396 +639141.394|219611.668|109.405 +639136.743|219615.959|109.439 +639132.149|219620.193|109.445 +639127.449|219624.530|109.515 +639122.786|219628.831|109.387 +639118.165|219633.092|109.323 +639113.486|219637.405|109.323 +639108.814|219641.712|109.006 +639104.227|219645.933|108.485 +639099.560|219650.234|108.174 +639094.866|219654.559|108.043 +639090.251|219658.811|107.753 +639085.524|219663.164|107.546 +639080.833|219667.492|107.473 +639076.148|219671.808|107.348 +639071.387|219676.194|107.104 +639066.754|219680.461|106.702 +639062.079|219684.765|106.250 +639057.385|219689.084|105.610 +639052.749|219693.348|104.922 +639048.058|219697.664|104.278 +639043.394|219701.956|103.477 +639038.765|219706.214|102.440 +639033.714|219710.890|103.998 +639000.207|219741.763|102.992 +638995.215|219746.380|104.071 +638990.332|219750.888|104.355 +638985.345|219755.497|105.461 +638980.392|219760.075|106.348 +638975.515|219764.574|106.686 +638970.654|219769.061|106.927 +638965.701|219773.633|107.534 +638960.821|219778.138|107.997 +638955.923|219782.658|108.241 +638951.119|219787.087|108.134 +638946.206|219791.616|108.146 +638936.464|219800.592|107.927 +638931.639|219805.039|107.662 +638926.769|219809.523|107.378 +638921.950|219813.961|107.101 +638917.079|219818.448|106.863 +638912.236|219822.907|106.394 +638907.405|219827.357|105.854 +638902.574|219831.804|105.299 +638897.691|219836.297|104.769 +638892.902|219840.704|104.303 +638888.028|219845.191|103.742 +638883.182|219849.653|103.376 +638873.340|219858.727|103.236 +638868.421|219863.259|103.172 +638863.480|219867.816|103.364 +638858.496|219872.412|103.529 +638853.623|219876.908|103.593 +638848.657|219881.486|103.620 +638843.674|219886.080|103.852 +638838.739|219890.637|104.153 +638833.737|219895.251|104.662 +638828.769|219899.832|104.836 +638823.810|219904.407|104.943 +638818.857|219908.973|105.019 +638813.919|219913.527|104.940 +638808.966|219918.093|105.046 +638803.986|219922.680|104.928 +638799.042|219927.240|104.989 +638794.098|219931.797|105.065 +638789.102|219936.405|105.263 +638784.104|219941.017|105.491 +638779.114|219945.616|105.626 +638774.167|219950.179|105.866 +638769.129|219954.828|106.089 +638764.188|219959.384|106.336 +638759.159|219964.023|106.525 +638754.184|219968.611|106.622 +638749.231|219973.173|106.427 +638739.252|219982.369|106.467 +638724.226|219996.204|106.525 +638719.172|220000.852|106.510 +638714.204|220005.431|106.769 +638709.178|220010.060|107.171 +638704.130|220014.709|107.201 +638694.069|220023.975|107.552 +638689.076|220028.568|107.506 +638684.019|220033.228|107.835 +638678.969|220037.880|108.073 +638673.949|220042.510|108.719 +638668.898|220047.164|109.061 +638663.851|220051.812|109.362 +638648.675|220065.812|111.514 +638643.627|220070.463|112.057 +638628.415|220084.487|113.550 +638623.373|220089.135|114.212 +638618.335|220093.780|114.907 +638613.248|220098.471|115.675 +638603.140|220107.792|117.004 +638593.009|220117.128|117.744 +638587.958|220121.773|117.528 +638582.902|220126.430|117.696 +638577.894|220131.039|117.723 +638572.791|220135.739|117.885 +638567.738|220140.393|118.034 +638562.736|220144.996|118.013 +638557.637|220149.693|118.122 +638552.583|220154.344|118.250 +638547.533|220158.995|118.382 +638542.436|220163.689|118.589 +638537.386|220168.340|118.817 +638532.338|220172.986|118.881 +638527.245|220177.676|118.982 +638522.198|220182.325|119.247 +638517.150|220186.973|119.424 +638512.057|220191.664|119.771 +638507.012|220196.312|120.131 +638501.971|220200.960|120.466 +638496.314|220206.172|120.820 +638491.843|220210.290|121.210 +638486.755|220214.978|121.722 +638481.717|220219.620|121.969 +638476.679|220224.262|122.167 +638471.592|220228.944|122.274 +638466.501|220233.629|122.140 +638461.460|220238.268|122.009 +638456.419|220242.907|122.051 +638451.331|220247.592|122.283 +638446.305|220252.228|123.216 +638441.227|220256.909|123.780 +638436.195|220261.545|124.042 +638431.151|220266.184|123.874 +638426.067|220270.866|123.904 +638421.037|220275.502|124.383 +638416.008|220280.135|124.877 +638410.985|220284.768|125.526 +638405.913|220289.444|126.087 +638400.884|220294.077|126.450 +638395.861|220298.707|127.020 +638390.838|220303.337|127.510 +638385.815|220307.966|127.986 +638375.753|220317.232|128.422 +638370.727|220321.862|128.842 +638365.701|220326.492|129.165 +638360.662|220331.128|129.254 +638355.615|220335.767|129.159 +638350.583|220340.400|129.388 +638345.611|220344.978|129.985 +638340.576|220349.611|130.238 +638335.544|220354.241|130.531 +638320.526|220368.058|131.086 +638300.522|220386.453|131.186 +638285.566|220400.208|131.427 +638280.546|220404.823|131.204 +638275.568|220409.398|130.964 +638270.542|220414.016|130.735 +638265.568|220418.588|130.616 +638260.590|220423.163|130.439 +638255.607|220427.744|130.211 +638250.660|220432.285|129.894 +638245.615|220436.922|129.510 +638240.662|220441.469|129.178 +638235.664|220446.062|128.867 +638230.714|220450.610|128.614 +638225.724|220455.197|128.458 +638220.768|220459.751|128.193 +638215.812|220464.305|127.946 +638210.847|220468.865|127.611 +638205.888|220473.421|127.385 +638200.919|220477.987|127.071 +638195.933|220482.565|126.572 +638190.986|220487.107|126.002 +638186.051|220491.639|125.621 +638181.114|220496.175|125.246 +638171.214|220505.267|124.313 +638166.258|220509.815|123.844 +638156.275|220518.977|122.213 +638146.375|220528.057|120.652 +638141.383|220532.638|119.966 +638131.422|220541.773|118.028 +638126.539|220546.257|117.610 +638121.583|220550.807|116.982 +638116.700|220555.291|116.614 +638111.759|220559.829|116.211 +638106.959|220564.243|116.236 +638102.051|220568.754|116.214 +638096.982|220573.384|113.816 +638092.310|220577.709|115.961 +638087.381|220582.226|114.925 +638082.520|220586.694|114.980 +638077.698|220591.129|114.949 +638072.836|220595.601|115.007 +638068.033|220600.017|115.193 +638063.220|220604.446|115.297 +638058.407|220608.869|115.443 +638053.628|220613.264|115.480 +638048.833|220617.677|115.785 +638039.339|220626.416|116.845 +638029.920|220635.094|118.141 +638025.220|220639.416|118.513 +638020.441|220643.814|118.634 +638015.738|220648.148|119.366 +637982.716|220678.528|120.841 +637978.025|220682.847|121.064 +637973.343|220687.154|121.369 +637968.713|220691.418|121.689 +637963.983|220695.776|122.012 +637959.365|220700.028|122.463 +637954.683|220704.332|122.490 +637940.839|220717.082|123.667 +637936.191|220721.361|123.978 +637931.643|220725.552|124.645 +637904.044|220750.955|125.910 +637899.399|220755.228|126.050 +637894.805|220759.452|125.907 +637890.230|220763.659|125.916 +637881.016|220772.135|125.886 +637876.414|220776.366|125.788 +637871.860|220780.554|125.998 +637867.294|220784.754|125.852 +637862.725|220788.954|125.709 +637858.177|220793.136|125.712 +637853.578|220797.363|125.432 +637844.437|220805.764|125.008 +637839.935|220809.909|125.051 +637835.372|220814.100|124.788 +637826.353|220822.394|124.645 +637821.827|220826.551|124.371 +637812.722|220834.918|123.597 +637799.177|220847.363|122.679 +637794.718|220851.459|122.633 +637790.228|220855.590|122.429 +637785.760|220859.695|122.097 +637781.279|220863.810|121.719 +637776.841|220867.885|121.341 +637772.379|220871.988|121.100 +637767.877|220876.121|120.686 +637758.907|220884.357|119.582 +637754.509|220888.401|119.494 +637750.092|220892.455|119.098 +637745.645|220896.539|118.555 +637741.350|220900.493|118.781 +637736.818|220904.650|117.876 +637723.428|220916.937|115.812 +637710.553|220928.775|115.650 +637706.198|220932.774|115.257 +637701.982|220936.654|115.526 +637697.849|220940.458|115.961 +637685.523|220951.815|117.650 +637677.144|220959.520|117.869 +637664.678|220970.987|118.177 +637660.551|220974.785|118.275 +637652.220|220982.448|117.964 +637627.166|221005.481|115.827 +637622.972|221009.337|115.337 +637618.839|221013.132|114.916 +637614.895|221016.768|115.294 +637610.813|221020.523|115.111 +637603.102|221027.637|116.227 +637599.066|221031.347|116.071 +637595.186|221034.925|116.547 +637591.373|221038.439|117.104 +637587.444|221042.057|117.196 +637583.646|221045.557|117.623 +637579.876|221049.037|118.378 +637568.409|221059.602|119.223 +637564.657|221063.061|119.662 +637560.954|221066.472|120.101 +637553.444|221073.394|120.802 +637542.297|221083.660|121.460 +637523.747|221100.741|122.057 +637520.096|221104.103|122.188 +637516.447|221107.458|122.353 +637512.896|221110.732|122.676 +637509.187|221114.143|122.426 +637501.911|221120.833|122.298 +637498.348|221124.116|122.423 +637494.803|221127.380|122.633 +637491.237|221130.660|122.569 +637689.263|220945.710|116.733 +637693.366|220941.918|116.160 +637705.890|220930.348|115.041 +637710.157|220926.416|115.288 +637718.765|220918.476|115.452 +637727.531|220910.402|116.187 +637732.103|220906.199|117.260 +637741.006|220897.999|118.308 +637745.395|220893.952|118.574 +637749.836|220889.864|119.101 +637754.304|220885.750|119.531 +637767.648|220873.454|120.664 +637772.141|220869.318|121.058 +637781.084|220861.073|121.701 +637785.552|220856.958|122.030 +637794.553|220848.661|122.566 +637799.012|220844.550|122.652 +637812.573|220832.053|123.450 +637826.192|220819.501|124.228 +637830.782|220815.274|124.618 +637849.027|220798.452|125.236 +637853.578|220794.258|125.230 +637862.786|220785.766|125.630 +637867.394|220781.520|125.733 +637871.973|220777.295|125.675 +637885.783|220764.561|125.785 +637890.428|220760.278|125.907 +637895.073|220755.999|126.047 +637904.306|220747.483|125.736 +637922.896|220730.335|125.169 +637932.119|220721.819|124.365 +637936.761|220717.530|123.700 +637946.109|220708.910|123.469 +637950.785|220704.591|123.078 +637955.396|220700.336|122.579 +637960.139|220695.959|122.338 +637969.475|220687.340|121.515 +637974.197|220682.984|121.155 +637978.933|220678.613|120.914 +637997.910|220661.099|119.646 +638002.595|220656.774|119.110 +638016.994|220643.494|118.692 +638026.616|220634.615|118.199 +638045.688|220617.001|115.559 +638065.100|220599.097|115.151 +638069.959|220594.613|115.038 +638074.857|220590.096|114.861 +638079.716|220585.615|114.785 +638084.632|220581.086|114.803 +638089.640|220576.478|115.687 +638099.494|220567.401|116.077 +638104.407|220562.871|116.190 +638129.246|220539.993|117.888 +638139.383|220530.678|120.189 +638144.327|220526.121|120.378 +638169.479|220502.984|124.377 +638179.449|220493.803|125.054 +638184.494|220489.158|125.575 +638189.471|220484.574|125.910 +638194.516|220479.932|126.507 +638199.548|220475.299|126.983 +638204.516|220470.724|127.312 +638209.573|220466.064|127.611 +638214.532|220461.495|127.885 +638219.537|220456.886|128.172 +638224.581|220452.238|128.364 +638229.528|220447.681|128.598 +638234.573|220443.036|128.830 +638239.571|220438.430|129.171 +638244.616|220433.782|129.488 +638249.666|220429.131|129.936 +638254.653|220424.537|130.186 +638259.682|220419.901|130.382 +638264.665|220415.308|130.647 +638269.686|220410.681|130.759 +638279.729|220401.424|131.186 +638294.746|220387.574|131.128 +638299.797|220382.917|131.125 +638314.897|220368.994|131.058 +638324.931|220359.737|130.854 +638329.960|220355.098|130.464 +638334.953|220350.489|130.424 +638339.985|220345.847|130.098 +638345.020|220341.202|129.927 +638349.988|220336.612|129.257 +638355.027|220331.963|129.138 +638360.117|220327.269|129.184 +638365.109|220322.667|129.144 +638370.184|220317.982|128.723 +638375.211|220313.343|128.361 +638380.246|220308.698|128.129 +638385.278|220304.056|127.925 +638390.301|220299.414|127.401 +638395.327|220294.775|126.904 +638400.399|220290.090|126.358 +638405.428|220285.448|125.941 +638410.458|220280.806|125.438 +638415.530|220276.118|124.788 +638420.559|220271.476|124.285 +638425.594|220266.828|123.999 +638430.690|220262.134|124.264 +638435.726|220257.488|123.990 +638440.758|220252.840|123.606 +638445.833|220248.149|122.527 +638450.917|220243.455|122.088 +638455.955|220238.807|121.878 +638461.045|220234.113|121.801 +638466.090|220229.462|121.881 +638471.180|220224.768|121.948 +638476.270|220220.077|121.914 +638481.312|220215.423|121.701 +638486.402|220210.726|121.277 +638491.492|220206.029|120.914 +638496.530|220201.378|120.521 +638501.578|220196.720|120.226 +638506.671|220192.020|119.826 +638511.764|220187.317|119.528 +638516.812|220182.660|119.229 +638521.908|220177.957|118.900 +638526.959|220173.303|118.857 +638532.055|220168.599|118.631 +638537.154|220163.896|118.522 +638542.205|220159.239|118.406 +638547.255|220154.579|118.263 +638552.358|220149.872|118.101 +638557.411|220145.212|118.004 +638562.465|220140.549|117.793 +638567.518|220135.891|117.866 +638572.575|220131.225|117.690 +638577.680|220126.516|117.522 +638582.740|220121.849|117.333 +638587.803|220117.180|117.162 +638592.863|220112.513|117.068 +638597.928|220107.837|116.729 +638603.009|220103.144|115.974 +638608.081|220098.462|115.629 +638613.162|220093.771|115.087 +638618.256|220089.062|114.151 +638623.346|220084.359|113.459 +638628.384|220079.701|112.941 +638633.474|220075.001|112.441 +638638.567|220070.292|111.859 +638648.723|220060.901|110.469 +638653.768|220056.241|110.131 +638658.824|220051.571|109.594 +638663.869|220046.914|109.375 +638668.968|220042.202|108.985 +638673.988|220037.563|108.351 +638679.078|220032.863|108.280 +638684.086|220028.239|107.991 +638699.208|220014.276|107.320 +638704.212|220009.658|107.259 +638709.220|220005.037|107.162 +638714.225|220000.417|107.107 +638719.297|219995.735|106.805 +638734.232|219981.952|106.747 +638744.208|219972.744|106.753 +638749.173|219968.166|106.805 +638754.187|219963.539|106.839 +638759.131|219958.976|106.570 +638764.164|219954.331|106.424 +638769.101|219949.768|106.250 +638774.097|219945.156|106.010 +638779.087|219940.551|105.879 +638784.037|219935.979|105.644 +638788.987|219931.410|105.482 +638793.946|219926.832|105.214 +638798.883|219922.275|105.245 +638803.821|219917.718|105.299 +638808.756|219913.167|105.427 +638813.645|219908.659|105.543 +638818.595|219904.090|105.522 +638823.493|219899.570|105.562 +638828.409|219895.035|105.440 +638833.420|219890.402|104.800 +638838.328|219885.866|104.300 +638843.275|219881.297|103.931 +638848.157|219876.789|103.748 +638853.086|219872.242|103.654 +638857.966|219867.737|103.577 +638862.907|219863.174|103.379 +638867.784|219858.675|103.385 +638872.654|219854.182|103.468 +638877.476|219849.732|103.577 +638882.353|219845.233|103.644 +638887.129|219840.835|104.260 +638891.963|219836.379|104.757 +638896.752|219831.969|105.266 +638901.537|219827.561|105.808 +638906.316|219823.157|106.406 +638911.108|219818.740|106.897 +638915.866|219814.357|107.287 +638920.685|219809.913|107.579 +638925.455|219805.515|107.866 +638930.240|219801.104|108.070 +638935.077|219796.642|108.250 +638939.838|219792.250|108.259 +638944.651|219787.806|108.265 +638949.501|219783.325|107.601 +638954.204|219779.000|108.582 +638959.010|219774.559|108.317 +638963.893|219770.045|107.467 +638968.755|219765.546|106.805 +638973.559|219761.115|106.659 +638978.393|219756.649|106.290 +638983.276|219752.132|105.223 +638988.195|219747.575|103.903 +638992.910|219743.226|104.153 +639026.143|219712.529|103.373 +639030.794|219708.241|103.882 +639035.665|219703.727|102.523 +639040.237|219699.520|103.632 +639044.821|219695.296|104.309 +639049.411|219691.065|104.958 +639053.995|219686.838|105.644 +639058.601|219682.595|106.223 +639063.152|219678.398|106.817 +639067.797|219674.115|107.159 +639072.381|219669.888|107.579 +639077.005|219665.617|107.741 +639081.714|219661.271|107.720 +639086.298|219657.040|107.872 +639090.876|219652.816|108.067 +639095.500|219648.549|108.326 +639100.100|219644.303|108.424 +639104.641|219640.115|108.908 +639109.173|219635.939|109.475 +639113.852|219631.614|109.152 +639118.382|219627.435|109.451 +639122.960|219623.211|109.475 +639127.547|219618.971|109.457 +639132.149|219614.722|109.378 +639136.715|219610.503|109.244 +639141.324|219606.245|109.167 +639145.881|219602.039|109.131 +639150.431|219597.839|109.146 +639154.994|219593.624|109.113 +639159.551|219589.414|109.125 +639164.065|219585.251|109.131 +639168.591|219581.069|109.076 +639173.130|219576.878|108.972 +639177.662|219572.690|108.914 +639182.204|219568.496|108.838 +639186.767|219564.280|108.680 +639191.281|219560.108|108.506 +639195.798|219555.938|108.360 +639200.333|219551.747|108.128 +639204.866|219547.559|107.930 +639209.364|219543.402|107.671 +639213.863|219539.244|107.424 +639218.362|219535.087|107.195 +639222.873|219530.920|106.942 +639227.375|219526.756|106.741 +639231.898|219522.581|106.473 +639236.324|219518.490|106.189 +639240.799|219514.351|105.930 +639245.307|219510.187|105.546 +639249.757|219506.073|105.196 +639254.195|219501.970|104.940 +639258.636|219497.867|104.693 +639263.104|219493.734|104.318 +639272.041|219485.468|103.160 +639276.408|219481.433|102.849 +639280.865|219477.312|102.379 +639282.645|219473.514|102.035 +639278.289|219477.522|102.465 +639273.924|219481.542|102.983 +639269.569|219485.550|103.215 +639260.675|219493.737|104.370 +639256.310|219497.758|104.726 +639251.906|219501.808|105.025 +639247.477|219505.884|105.217 +639243.069|219509.941|105.583 +639238.616|219514.037|105.930 +639234.133|219518.161|106.205 +639229.707|219522.233|106.461 +639225.278|219526.311|106.772 +639220.816|219530.414|106.997 +639216.354|219534.520|107.241 +639211.900|219538.613|107.461 +639207.405|219542.752|107.674 +639202.906|219546.892|107.912 +639198.471|219550.970|108.101 +639193.939|219555.136|108.280 +639189.461|219559.254|108.475 +639184.935|219563.418|108.668 +639180.424|219567.569|108.820 +639175.922|219571.708|108.930 +639171.438|219575.829|108.960 +639166.891|219580.011|109.070 +639162.355|219584.184|109.158 +639157.841|219588.329|109.125 +639153.287|219592.517|109.067 +639148.767|219596.672|109.119 +639144.201|219600.869|109.152 +639139.596|219605.105|109.164 +639135.018|219609.315|109.311 +639130.455|219613.512|109.408 +639125.800|219617.788|109.454 +639121.198|219622.019|109.518 +639116.611|219626.237|109.521 +639107.381|219634.717|109.295 +639102.821|219638.911|108.899 +639098.201|219643.157|108.567 +639093.562|219647.424|108.372 +639088.987|219651.630|108.094 +639084.351|219655.894|107.915 +639079.650|219660.219|107.848 +639074.950|219664.545|107.799 +639070.324|219668.800|107.616 +639065.636|219673.106|107.201 +639061.000|219677.368|106.781 +639056.394|219681.598|106.174 +639051.740|219685.875|105.577 +639047.101|219690.133|104.876 +639042.456|219694.400|104.239 +639037.814|219698.661|103.583 +639033.226|219702.870|102.578 +639028.176|219707.537|104.102 +639023.631|219711.703|102.818 +638994.760|219738.273|102.983 +638989.750|219742.900|104.169 +638984.870|219747.389|104.382 +638979.859|219752.019|105.668 +638974.900|219756.594|106.570 +638970.026|219761.081|106.845 +638965.122|219765.598|107.028 +638960.129|219770.204|107.933 +638955.176|219774.770|108.552 +638950.241|219779.311|108.643 +638945.486|219783.676|107.704 +638940.488|219788.284|108.393 +638935.638|219792.744|108.265 +638930.679|219797.307|108.244 +638925.793|219801.799|108.058 +638920.862|219806.335|107.863 +638916.037|219810.773|107.607 +638911.077|219815.332|107.259 +638906.234|219819.780|106.753 +638901.345|219824.275|106.257 +638896.471|219828.753|105.616 +638891.540|219833.282|105.056 +638886.648|219837.778|104.598 +638881.725|219842.301|103.998 +638876.818|219846.809|103.702 +638871.850|219851.381|103.590 +638866.884|219855.950|103.449 +638861.904|219860.531|103.465 +638856.866|219865.167|103.620 +638851.925|219869.718|103.827 +638846.908|219874.336|103.815 +638841.863|219878.984|104.144 +638836.813|219883.632|104.541 +638831.765|219888.283|104.982 +638826.696|219892.956|105.671 +638821.618|219897.632|105.964 +638816.632|219902.219|105.815 +638811.588|219906.861|105.784 +638806.604|219911.445|105.613 +638801.566|219916.081|105.571 +638796.491|219920.748|105.394 +638791.495|219925.344|105.440 +638786.448|219929.992|105.601 +638781.351|219934.683|105.775 +638776.298|219939.338|106.058 +638771.208|219944.025|106.244 +638766.160|219948.674|106.519 +638761.085|219953.343|106.534 +638756.041|219957.988|106.827 +638750.966|219962.658|106.903 +638745.894|219967.324|106.964 +638740.865|219971.957|107.165 +638735.829|219976.587|106.750 +638730.754|219981.260|106.970 +638710.549|219999.859|106.668 +638705.413|220004.595|107.290 +638690.188|220018.616|107.890 +638685.138|220023.267|108.009 +638674.939|220032.661|108.390 +638669.889|220037.313|108.610 +638664.786|220042.016|108.972 +638659.638|220046.758|109.332 +638654.597|220051.404|109.497 +638644.389|220060.816|110.688 +638639.290|220065.516|111.252 +638634.148|220070.259|111.804 +638629.055|220074.953|112.313 +638623.967|220079.643|112.831 +638618.877|220084.337|113.453 +638613.781|220089.037|114.309 +638608.648|220093.771|114.974 +638598.498|220103.128|115.843 +638593.420|220107.807|116.400 +638588.306|220112.519|116.742 +638583.286|220117.146|117.129 +638573.118|220126.513|117.555 +638568.107|220131.127|117.741 +638563.004|220135.821|117.623 +638557.948|220140.479|117.796 +638552.894|220145.133|117.885 +638547.840|220149.787|118.077 +638542.738|220154.484|118.211 +638537.733|220159.093|118.296 +638532.637|220163.787|118.333 +638527.586|220168.435|118.400 +638522.533|220173.089|118.647 +638517.437|220177.783|118.766 +638512.386|220182.437|119.226 +638507.339|220187.089|119.482 +638502.242|220191.783|119.817 +638497.198|220196.431|120.198 +638492.156|220201.076|120.561 +638487.063|220205.767|120.856 +638482.068|220210.369|121.180 +638476.977|220215.060|121.545 +638471.936|220219.705|121.771 +638466.892|220224.347|121.747 +638461.847|220228.990|121.753 +638456.757|220233.677|121.719 +638451.761|220238.277|121.814 +638446.720|220242.919|121.966 +638441.681|220247.561|122.344 +638436.658|220252.200|123.621 +638431.626|220256.839|124.060 +638426.591|220261.478|124.380 +638421.592|220266.078|124.188 +638416.557|220270.717|124.499 +638411.528|220275.353|125.044 +638406.547|220279.943|125.633 +638401.521|220284.579|126.148 +638396.537|220289.169|126.507 +638391.557|220293.760|127.050 +638386.534|220298.390|127.617 +638381.553|220302.980|127.986 +638376.564|220307.573|128.132 +638371.532|220312.209|128.455 +638366.600|220316.754|128.809 +638361.571|220321.387|129.193 +638356.569|220325.989|128.964 +638351.579|220330.583|129.117 +638346.608|220335.164|129.711 +638341.606|220339.763|129.623 +638336.626|220344.351|130.025 +638331.648|220348.938|130.412 +638326.702|220353.488|130.534 +638316.765|220362.639|130.814 +638311.772|220367.232|130.982 +638306.774|220371.831|131.040 +638301.805|220376.400|130.769 +638291.924|220385.502|131.354 +638286.971|220390.058|131.461 +638267.089|220408.346|130.814 +638262.154|220412.882|130.586 +638257.170|220417.466|130.314 +638252.239|220422.002|130.141 +638247.246|220426.592|129.805 +638242.296|220431.142|129.452 +638237.346|220435.690|129.126 +638232.399|220440.238|128.888 +638227.446|220444.795|128.553 +638222.496|220449.345|128.336 +638217.543|220453.899|128.102 +638212.587|220458.456|127.839 +638207.674|220462.973|127.553 +638202.712|220467.536|127.279 +638197.743|220472.102|126.949 +638192.803|220476.640|126.443 +638187.819|220481.221|126.008 +638182.936|220485.711|125.657 +638177.938|220490.304|125.108 +638168.059|220499.384|124.407 +638163.091|220503.944|123.801 +638158.141|220508.495|123.420 +638153.139|220513.079|121.969 +638148.158|220517.654|121.338 +638133.303|220531.300|119.592 +638128.328|220535.866|118.677 +638123.329|220540.450|117.568 +638118.425|220544.952|116.995 +638098.808|220562.990|115.833 +638088.832|220572.137|113.474 +638084.108|220576.499|114.730 +638079.249|220580.970|114.803 +638074.388|220585.445|114.849 +638069.575|220589.874|114.922 +638064.707|220594.351|114.962 +638059.888|220598.786|115.035 +638045.413|220612.106|115.172 +638040.597|220616.537|115.334 +638035.843|220620.920|116.013 +638002.619|220651.519|118.827 +637983.697|220668.933|119.756 +637974.367|220677.522|120.899 +637969.731|220681.792|121.515 +637965.053|220686.096|121.847 +637960.386|220690.391|122.283 +637955.689|220694.710|122.518 +637951.071|220698.962|122.957 +637932.424|220716.116|124.066 +637927.839|220720.334|124.484 +637909.317|220737.370|125.419 +637890.843|220754.353|125.703 +637886.225|220758.596|125.749 +637881.601|220762.848|125.767 +637854.029|220788.183|125.297 +637840.340|220800.759|124.886 +637835.720|220804.999|124.572 +637826.704|220813.286|124.666 +637795.044|220842.361|122.920 +637781.566|220854.733|122.024 +637777.122|220858.814|121.841 +637763.671|220871.162|120.555 +637750.363|220883.381|119.662 +637745.934|220887.444|119.198 +637741.481|220891.532|118.878 +637732.612|220899.673|117.988 +637723.748|220907.802|116.723 +637714.991|220915.836|115.821 +637697.806|220931.619|115.062 +637693.603|220935.484|115.413 +637689.464|220939.291|115.833 +637685.410|220943.025|116.409 +637681.384|220946.734|117.117 +637677.327|220950.468|117.702 +637664.793|220961.983|117.671 +637660.551|220965.876|117.257 +637656.439|220969.652|117.199 +637652.303|220973.447|117.065 +637644.088|220980.991|117.086 +637615.163|221007.514|114.459 +637607.272|221014.766|115.010 +637603.355|221018.362|115.324 +637591.806|221028.975|116.272 +637580.306|221039.546|117.303 +637569.120|221049.830|118.839 +637565.371|221053.277|119.070 +637561.637|221056.709|119.585 +637554.319|221063.439|120.607 +637546.833|221070.312|120.808 +637539.487|221077.061|121.390 +637524.799|221090.545|121.658 +637521.184|221093.864|121.920 +637517.557|221097.193|121.945 +637513.975|221100.482|122.149 +637506.788|221107.081|122.301 +637499.701|221113.585|122.475 +637492.496|221120.196|122.243 +637687.928|220938.002|115.791 +637692.000|220934.237|115.065 +637696.231|220930.333|115.093 +637700.577|220926.325|115.196 +637709.130|220918.436|115.273 +637717.942|220910.323|116.150 +637731.301|220898.024|117.845 +637735.800|220893.885|118.595 +637740.232|220889.797|118.796 +637744.639|220885.737|119.144 +637749.117|220881.616|119.601 +637762.537|220869.251|120.552 +637767.011|220865.130|120.829 +637771.605|220860.899|121.484 +637776.046|220856.806|121.637 +637789.646|220844.278|122.606 +637794.133|220840.142|122.813 +637798.622|220836.000|122.804 +637816.865|220819.193|123.892 +637821.424|220814.990|124.081 +637825.966|220810.802|124.194 +637830.541|220806.590|124.508 +637835.150|220802.341|124.755 +637848.826|220789.728|124.785 +637853.480|220785.443|125.078 +637867.285|220772.714|125.221 +637871.951|220768.417|125.685 +637876.554|220764.171|125.505 +637881.174|220759.910|125.764 +637890.447|220751.360|125.587 +637899.840|220742.701|125.947 +637904.412|220738.482|125.697 +637909.015|220734.230|125.337 +637927.596|220717.082|124.173 +637946.286|220699.833|123.014 +637950.986|220695.496|122.777 +637955.649|220691.189|122.310 +637960.353|220686.849|122.137 +637965.013|220682.548|121.673 +637974.407|220673.870|120.628 +637983.825|220665.174|119.799 +638007.548|220643.281|118.159 +638031.368|220621.286|116.150 +638036.156|220616.864|115.330 +638040.981|220612.414|115.236 +638045.834|220607.936|114.986 +638055.533|220598.993|114.888 +638060.394|220594.506|114.773 +638065.253|220590.026|114.636 +638070.120|220585.539|114.611 +638075.006|220581.034|114.770 +638079.743|220576.645|113.200 +638094.745|220562.847|115.650 +638099.637|220558.342|115.995 +638104.633|220553.739|116.440 +638119.483|220540.063|117.559 +638124.463|220535.476|117.997 +638144.473|220517.066|120.960 +638154.504|220507.843|123.011 +638174.512|220489.420|124.892 +638179.510|220484.821|125.416 +638184.503|220480.225|125.910 +638189.474|220475.643|126.200 +638194.510|220471.007|126.687 +638199.490|220466.423|127.138 +638204.504|220461.805|127.449 +638209.515|220457.188|127.769 +638214.468|220452.625|127.995 +638219.515|220447.974|128.211 +638224.517|220443.368|128.480 +638229.516|220438.763|128.781 +638234.509|220434.160|129.016 +638239.510|220429.558|129.373 +638244.555|220424.912|129.717 +638249.590|220420.276|129.946 +638254.583|220415.683|130.253 +638259.618|220411.047|130.537 +638264.647|220406.417|130.766 +638279.677|220392.582|131.485 +638294.713|220378.723|130.866 +638309.782|220364.842|131.049 +638319.804|220355.604|130.473 +638324.858|220350.949|130.567 +638329.844|220346.350|130.336 +638339.909|220337.072|129.665 +638344.944|220332.430|129.437 +638349.979|220327.788|129.232 +638355.011|220323.149|128.906 +638360.068|220318.497|129.226 +638365.097|220313.858|128.854 +638370.130|220309.219|128.525 +638375.159|220304.583|128.163 +638380.194|220299.941|127.995 +638385.226|220295.302|127.620 +638390.249|220290.666|127.071 +638395.324|220285.984|126.562 +638400.354|220281.345|126.081 +638405.386|220276.706|125.630 +638410.415|220272.067|125.057 +638415.493|220267.382|124.542 +638420.537|220262.734|124.673 +638425.576|220258.092|124.404 +638430.657|220253.404|124.008 +638435.686|220248.762|123.115 +638440.761|220244.074|122.039 +638445.802|220239.426|121.820 +638450.847|220234.781|121.695 +638455.937|220230.087|121.570 +638460.981|220225.442|121.527 +638466.026|220220.793|121.460 +638471.119|220216.100|121.317 +638476.164|220211.451|121.149 +638481.208|220206.803|120.881 +638486.301|220202.106|120.628 +638491.346|220197.455|120.280 +638496.436|220192.761|119.915 +638501.483|220188.107|119.616 +638506.583|220183.407|119.208 +638511.633|220178.749|118.717 +638516.729|220174.049|118.409 +638521.783|220169.392|118.144 +638526.837|220164.735|118.007 +638531.936|220160.038|117.973 +638536.987|220155.383|117.952 +638542.040|220150.729|117.882 +638547.142|220146.029|117.815 +638552.199|220141.369|117.656 +638557.256|220136.708|117.470 +638562.312|220132.048|117.345 +638577.543|220118.015|116.867 +638582.557|220113.394|116.714 +638592.698|220104.043|115.916 +638597.767|220099.370|115.638 +638602.851|220094.679|114.965 +638607.935|220089.988|114.331 +638612.976|220085.337|113.675 +638618.070|220080.637|112.929 +638623.114|220075.983|112.285 +638628.201|220071.295|111.944 +638633.300|220066.595|111.356 +638638.354|220061.934|110.707 +638643.399|220057.289|110.402 +638648.449|220052.635|109.990 +638653.515|220047.962|109.292 +638663.674|220038.602|108.521 +638668.673|220033.999|108.393 +638673.766|220029.309|108.287 +638678.786|220024.682|107.799 +638693.895|220010.774|107.567 +638703.956|220001.508|107.412 +638708.998|219996.863|106.811 +638714.018|219992.251|107.442 +638719.010|219987.648|106.918 +638724.052|219983.009|107.201 +638729.060|219978.401|107.265 +638734.052|219973.801|106.884 +638739.048|219969.208|107.192 +638744.028|219964.624|107.046 +638749.052|219959.997|106.988 +638754.023|219955.422|107.028 +638759.009|219950.832|106.857 +638764.045|219946.193|106.717 +638768.992|219941.639|106.522 +638773.990|219937.033|106.269 +638778.995|219932.425|106.022 +638784.000|219927.816|105.790 +638788.947|219923.259|105.687 +638793.879|219918.724|105.818 +638798.868|219914.131|105.857 +638803.803|219909.592|106.013 +638808.735|219905.054|106.199 +638813.633|219900.546|106.247 +638818.577|219895.998|106.345 +638823.560|219891.405|105.997 +638828.565|219886.793|105.470 +638833.469|219882.273|105.022 +638838.474|219877.661|104.571 +638843.445|219873.080|103.989 +638848.371|219868.545|103.931 +638853.306|219864.000|103.803 +638858.188|219859.507|103.757 +638863.132|219854.954|103.590 +638868.009|219850.464|103.620 +638872.926|219845.944|103.794 +638877.763|219841.497|104.284 +638882.627|219837.022|104.501 +638887.398|219832.642|105.193 +638892.235|219828.195|105.699 +638897.026|219823.791|106.214 +638901.866|219819.344|106.738 +638906.655|219814.942|107.268 +638911.455|219810.532|107.744 +638916.232|219806.137|107.979 +638921.066|219801.693|108.171 +638925.900|219797.246|108.375 +638930.661|219792.863|108.375 +638935.510|219788.400|108.503 +638940.393|219783.898|107.951 +638945.130|219779.549|108.643 +638954.685|219770.755|108.597 +638959.611|219766.211|107.814 +638964.491|219761.709|107.040 +638969.304|219757.277|106.830 +638974.095|219752.864|106.439 +638979.042|219748.295|105.263 +638984.004|219743.713|104.007 +638988.728|219739.367|104.217 +639021.946|219708.796|103.821 +639026.685|219704.431|103.736 +639031.577|219699.917|102.629 +639036.079|219695.790|103.900 +639040.676|219691.568|104.531 +639045.278|219687.341|105.135 +639049.871|219683.119|105.787 +639054.480|219678.888|106.375 +639059.043|219674.697|106.948 +639063.618|219670.494|107.445 +639068.227|219666.258|107.735 +639072.838|219662.015|108.021 +639077.419|219657.799|108.189 +639082.080|219653.514|108.216 +639086.658|219649.305|108.445 +639091.254|219645.077|108.582 +639095.774|219640.919|108.893 +639100.365|219636.698|109.113 +639104.922|219632.507|109.241 +639114.020|219624.140|109.640 +639118.613|219619.916|109.606 +639123.219|219615.676|109.515 +639127.736|219611.515|109.372 +639132.351|219607.266|109.265 +639136.923|219603.060|109.149 +639141.434|219598.909|109.109 +639145.954|219594.745|109.021 +639150.520|219590.545|109.000 +639155.073|219586.357|109.070 +639159.536|219582.251|109.097 +639164.025|219578.118|108.991 +639168.567|219573.936|108.884 +639173.090|219569.776|108.917 +639177.540|219565.679|108.817 +639182.045|219561.534|108.707 +639186.529|219557.404|108.451 +639191.046|219553.247|108.320 +639195.530|219549.117|108.110 +639200.010|219544.993|107.954 +639204.457|219540.899|107.717 +639208.947|219536.763|107.534 +639213.403|219532.660|107.290 +639217.856|219528.561|107.086 +639222.270|219524.495|106.833 +639226.738|219520.383|106.601 +639231.213|219516.262|106.348 +639235.620|219512.199|105.924 +639240.058|219508.115|105.650 +639244.502|219504.021|105.354 +639248.845|219500.022|105.074 +639253.280|219495.938|104.864 +639257.712|219491.854|104.440 +639262.141|219487.775|104.056 +639266.554|219483.706|103.507 +639275.354|219475.599|102.629 +639279.795|219471.502|102.026 +639280.420|219468.594|101.828 +639275.997|219472.663|102.322 +639271.568|219476.742|102.892 +639267.164|219480.792|103.349 +639262.750|219484.849|103.629 +639258.288|219488.955|104.163 +639249.495|219497.041|104.922 +639245.060|219501.120|105.141 +639240.622|219505.198|105.391 +639236.181|219509.279|105.668 +639231.685|219513.415|106.001 +639227.232|219517.512|106.406 +639222.760|219521.624|106.656 +639218.347|219525.680|106.887 +639213.888|219529.780|107.119 +639209.389|219533.913|107.299 +639204.893|219538.046|107.503 +639200.403|219542.173|107.686 +639195.917|219546.294|107.869 +639191.436|219550.412|108.046 +639186.910|219554.576|108.232 +639182.384|219558.736|108.418 +639177.869|219562.881|108.561 +639173.368|219567.018|108.661 +639168.875|219571.148|108.741 +639164.348|219575.305|108.747 +639159.807|219579.478|108.847 +639155.284|219583.632|108.860 +639150.770|219587.781|108.847 +639146.259|219591.926|108.850 +639141.690|219596.123|108.899 +639137.112|219600.329|109.021 +639132.546|219604.523|109.106 +639127.919|219608.775|109.259 +639123.304|219613.015|109.375 +639118.741|219617.209|109.509 +639114.123|219621.455|109.682 +639104.915|219629.907|109.323 +639100.353|219634.095|109.216 +639095.753|219638.313|109.036 +639091.120|219642.562|108.780 +639086.539|219646.766|108.539 +639081.909|219651.011|108.293 +639077.258|219655.282|108.204 +639072.561|219659.592|108.110 +639067.940|219663.834|107.884 +639063.286|219668.102|107.549 +639058.644|219672.357|107.134 +639054.032|219676.584|106.558 +639049.378|219680.845|105.924 +639044.729|219685.106|105.275 +639040.066|219689.380|104.745 +639035.409|219693.650|104.178 +639030.843|219697.826|102.992 +639026.018|219702.258|103.263 +639021.114|219706.772|104.132 +638987.506|219737.624|104.031 +638982.724|219742.010|103.852 +638977.719|219746.621|105.046 +638972.742|219751.209|106.433 +638967.807|219755.744|106.781 +638962.912|219760.243|107.235 +638957.971|219764.787|107.692 +638952.975|219769.384|108.619 +638943.197|219778.363|108.832 +638938.394|219782.768|108.287 +638933.471|219787.285|108.311 +638928.521|219791.832|108.616 +638923.635|219796.316|108.402 +638918.740|219800.809|108.271 +638913.851|219805.298|108.143 +638908.926|219809.813|107.875 +638904.037|219814.296|107.339 +638899.141|219818.783|106.833 +638894.265|219823.251|106.199 +638889.370|219827.741|105.735 +638884.481|219832.221|105.217 +638879.558|219836.733|104.577 +638874.599|219841.283|104.300 +638869.667|219845.803|103.766 +638864.687|219850.372|103.724 +638859.712|219854.941|103.675 +638854.732|219859.513|103.690 +638849.672|219864.162|104.041 +638844.664|219868.758|103.916 +638839.647|219873.373|104.422 +638834.566|219878.045|105.132 +638829.507|219882.696|105.653 +638824.468|219887.323|105.943 +638819.424|219891.962|106.382 +638814.340|219896.635|106.753 +638809.344|219901.222|106.695 +638804.348|219905.806|106.647 +638799.328|219910.412|106.330 +638794.293|219915.033|106.217 +638789.264|219919.644|106.034 +638784.219|219924.277|106.101 +638779.178|219928.907|106.150 +638774.070|219933.601|106.476 +638769.028|219938.228|106.564 +638763.972|219942.876|106.930 +638758.872|219947.561|107.232 +638753.846|219952.176|107.220 +638748.771|219956.836|107.284 +638743.693|219961.497|107.357 +638738.630|219966.145|107.265 +638733.562|219970.799|107.302 +638728.499|219975.444|107.229 +638723.433|219980.096|107.278 +638718.334|219984.771|107.052 +638713.317|219989.380|107.165 +638708.196|219994.080|107.348 +638703.139|219998.722|107.348 +638698.080|220003.367|107.421 +638692.965|220008.064|107.646 +638687.906|220012.712|107.774 +638682.800|220017.400|107.906 +638677.716|220022.060|107.622 +638672.650|220026.718|108.006 +638667.545|220031.406|108.223 +638662.436|220036.100|108.591 +638657.377|220040.748|108.981 +638647.224|220050.075|109.554 +638637.016|220059.459|110.582 +638631.914|220064.147|111.075 +638626.820|220068.826|111.429 +638621.721|220073.514|112.029 +638616.634|220078.189|112.401 +638586.102|220106.259|116.089 +638575.916|220115.616|116.605 +638570.893|220120.231|116.955 +638565.787|220124.915|116.717 +638560.718|220129.573|117.117 +638555.659|220134.215|117.123 +638550.550|220138.906|117.190 +638545.487|220143.554|117.367 +638540.473|220148.156|117.501 +638535.368|220152.844|117.586 +638530.311|220157.489|117.702 +638525.300|220162.086|117.668 +638520.195|220166.771|117.793 +638515.138|220171.416|117.940 +638510.082|220176.061|118.318 +638505.028|220180.706|118.769 +638499.972|220185.354|119.290 +638494.921|220189.996|119.707 +638489.874|220194.632|120.122 +638484.820|220199.272|120.338 +638479.772|220203.911|120.616 +638474.722|220208.550|120.896 +638469.671|220213.186|121.082 +638464.624|220217.822|121.146 +638459.573|220222.458|121.301 +638449.475|220231.727|121.524 +638444.428|220236.363|121.679 +638439.429|220240.953|121.865 +638434.388|220245.586|122.338 +638429.355|220250.219|123.356 +638424.326|220254.846|124.292 +638419.285|220259.476|124.648 +638414.292|220264.063|124.889 +638409.245|220268.696|124.996 +638404.212|220273.320|125.581 +638399.223|220277.904|125.974 +638394.191|220282.531|126.443 +638389.204|220287.112|126.977 +638384.220|220291.693|127.477 +638379.188|220296.317|127.919 +638374.193|220300.904|128.062 +638369.206|220305.485|128.385 +638364.171|220310.112|128.760 +638359.181|220314.693|129.037 +638354.173|220319.290|128.836 +638349.187|220323.874|129.165 +638344.206|220328.455|129.656 +638334.221|220337.630|130.065 +638329.271|220342.174|130.153 +638324.281|220346.761|130.455 +638319.280|220351.355|130.503 +638314.284|220355.942|130.689 +638299.367|220369.646|130.772 +638294.368|220374.236|130.976 +638289.406|220378.793|130.964 +638274.514|220392.469|130.985 +638259.539|220406.216|130.598 +638254.595|220410.751|130.287 +638249.605|220415.329|130.043 +638244.661|220419.865|129.824 +638239.663|220424.452|129.485 +638234.707|220429.000|129.129 +638229.754|220433.541|128.873 +638224.798|220438.089|128.571 +638219.842|220442.640|128.294 +638214.882|220447.187|128.062 +638209.920|220451.741|127.785 +638204.958|220456.295|127.529 +638199.990|220460.854|127.215 +638195.064|220465.372|126.885 +638190.075|220469.947|126.404 +638185.183|220474.433|126.002 +638180.205|220479.002|125.700 +638175.258|220483.538|125.258 +638170.296|220488.085|124.688 +638165.380|220492.599|124.651 +638150.515|220506.227|122.929 +638130.663|220524.418|119.997 +638125.686|220528.977|119.107 +638105.874|220547.134|116.409 +638096.099|220556.102|115.839 +638091.142|220560.649|115.401 +638086.235|220565.142|114.578 +638076.402|220574.161|113.721 +638071.690|220578.501|114.684 +638066.856|220582.936|114.626 +638061.991|220587.405|114.724 +638057.169|220591.833|114.806 +638052.387|220596.226|114.815 +638047.516|220600.694|114.523 +638042.719|220605.101|114.861 +638037.915|220609.518|115.157 +638033.188|220613.858|115.294 +638018.941|220626.959|116.858 +638009.477|220635.661|117.565 +638004.789|220639.967|118.113 +638000.071|220644.305|118.421 +637981.189|220661.666|119.729 +637967.220|220674.523|121.149 +637962.526|220678.845|121.728 +637957.902|220683.097|122.128 +637953.193|220687.428|122.301 +637943.918|220695.959|122.966 +637934.603|220704.524|123.447 +637930.034|220708.731|123.962 +637906.900|220730.003|125.206 +637893.114|220742.679|125.611 +637888.532|220746.892|125.870 +637883.851|220751.189|125.529 +637874.710|220759.590|125.672 +637870.049|220763.869|125.526 +637851.664|220780.758|124.904 +637842.529|220789.149|124.770 +637837.920|220793.383|124.493 +637828.791|220801.762|123.959 +637815.194|220814.256|123.825 +637806.072|220822.628|122.987 +637801.539|220826.789|122.761 +637797.101|220830.870|123.048 +637792.636|220834.973|122.938 +637788.140|220839.100|122.701 +637774.650|220851.484|121.801 +637765.692|220859.707|121.164 +637761.239|220863.795|121.003 +637756.782|220867.885|120.579 +637752.271|220872.027|120.165 +637747.830|220876.103|119.875 +637738.985|220884.219|119.034 +637730.100|220892.373|118.065 +637725.647|220896.454|117.580 +637712.306|220908.692|115.815 +637703.656|220916.635|115.513 +637699.358|220920.582|115.145 +637695.136|220924.462|115.398 +637690.802|220928.440|115.148 +637686.593|220932.311|115.239 +637682.551|220936.036|116.120 +637678.442|220939.815|116.473 +637674.346|220943.582|116.894 +637670.265|220947.341|117.382 +637666.092|220951.175|117.473 +637661.864|220955.055|117.110 +637657.625|220958.944|116.714 +637649.310|220966.583|116.458 +637645.192|220970.368|116.409 +637641.028|220974.191|116.184 +637636.987|220977.906|116.281 +637632.835|220981.719|116.141 +637628.845|220985.389|116.254 +637612.176|221000.681|114.099 +637608.363|221004.195|114.812 +637600.468|221011.452|114.931 +637596.579|221015.031|115.141 +637592.790|221018.518|115.788 +637588.923|221022.078|116.105 +637585.018|221025.668|116.291 +637581.178|221029.201|116.528 +637577.474|221032.612|117.120 +637569.793|221039.674|117.449 +637566.194|221042.993|118.266 +637540.395|221066.737|121.042 +637536.704|221070.133|121.158 +637532.992|221073.543|121.210 +637529.261|221076.972|121.192 +637525.661|221080.282|121.283 +637522.022|221083.629|121.439 +637518.434|221086.927|121.600 +637514.777|221090.286|121.512 +637507.669|221096.824|121.935 +637493.364|221109.967|121.771 +637486.336|221116.429|121.817 +637482.980|221119.513|122.143 +637479.551|221122.668|122.405 +637687.522|220928.909|114.910 +637696.011|220921.103|114.803 +637704.564|220913.243|115.056 +637708.916|220909.244|115.212 +637713.437|220905.101|116.169 +637717.893|220901.011|116.858 +637740.009|220880.705|119.110 +637744.474|220876.602|119.479 +637748.946|220872.500|119.902 +637753.414|220868.397|120.326 +637757.864|220864.310|120.683 +637762.363|220860.177|121.058 +637766.832|220856.071|121.301 +637771.306|220851.962|121.588 +637775.820|220847.817|121.835 +637784.848|220839.527|122.676 +637793.846|220831.257|122.911 +637798.351|220827.115|122.957 +637807.346|220818.846|123.024 +637811.960|220814.609|123.453 +637834.814|220793.605|124.148 +637843.992|220785.174|124.435 +637848.658|220780.886|124.773 +637853.288|220776.631|124.929 +637867.215|220763.835|125.422 +637871.881|220759.547|125.584 +637881.135|220751.037|125.486 +637885.795|220746.754|125.663 +637899.700|220733.962|125.246 +637909.094|220725.327|125.325 +637922.972|220712.547|124.060 +637932.351|220703.918|123.569 +637936.953|220699.681|122.929 +637941.677|220695.331|122.801 +637946.414|220690.979|122.755 +637951.084|220686.678|122.298 +637955.845|220682.298|122.118 +637960.535|220677.982|121.820 +637965.187|220673.697|121.277 +637979.363|220660.645|119.842 +637998.309|220643.204|118.205 +638007.859|220634.411|117.315 +638022.194|220621.219|116.315 +638026.955|220616.833|115.626 +638031.807|220612.365|115.297 +638036.571|220607.982|115.044 +638041.436|220603.507|114.824 +638046.245|220599.082|114.572 +638051.147|220594.577|114.690 +638056.029|220590.087|114.696 +638060.888|220585.615|114.511 +638065.804|220581.101|114.840 +638085.437|220563.057|115.279 +638090.380|220558.513|115.559 +638095.321|220553.974|115.830 +638100.280|220549.423|116.303 +638105.246|220544.858|116.422 +638110.196|220540.313|116.864 +638125.253|220526.505|119.564 +638150.316|220503.508|123.286 +638155.318|220498.915|123.648 +638165.276|220489.768|124.462 +638170.266|220485.187|124.755 +638175.267|220480.593|125.249 +638180.269|220476.003|125.739 +638185.253|220471.425|126.081 +638190.285|220466.801|126.474 +638195.272|220462.223|126.916 +638200.298|220457.605|127.294 +638205.312|220453.000|127.544 +638210.277|220448.440|127.818 +638215.288|220443.834|128.092 +638220.296|220439.235|128.364 +638225.304|220434.636|128.650 +638230.308|220430.036|128.955 +638235.307|220425.446|129.211 +638240.312|220420.849|129.540 +638245.353|220416.210|129.796 +638250.343|220411.620|130.040 +638255.387|220406.984|130.372 +638260.371|220402.400|130.595 +638275.410|220388.568|131.241 +638285.398|220379.369|130.583 +638300.428|220365.537|130.619 +638310.495|220356.274|130.729 +638315.442|220351.721|130.513 +638320.493|220347.072|130.479 +638325.537|220342.427|130.369 +638330.527|220337.831|130.098 +638350.625|220319.320|128.867 +638355.621|220314.721|128.763 +638360.675|220310.073|128.970 +638365.707|220305.437|128.519 +638370.739|220300.801|128.138 +638375.781|220296.158|127.995 +638380.819|220291.519|127.742 +638385.848|220286.886|127.205 +638390.877|220282.250|126.669 +638395.910|220277.611|126.194 +638400.945|220272.972|125.764 +638405.980|220268.336|125.267 +638411.022|220263.694|125.105 +638416.060|220259.052|124.801 +638421.147|220254.367|124.377 +638426.176|220249.728|123.517 +638431.209|220245.086|122.576 +638436.293|220240.398|121.890 +638441.337|220235.753|121.655 +638446.385|220231.105|121.497 +638451.478|220226.414|121.308 +638461.576|220217.121|121.100 +638466.672|220212.430|120.988 +638471.720|220207.782|120.860 +638476.770|220203.133|120.594 +638481.866|220198.439|120.290 +638486.917|220193.791|120.137 +638492.016|220189.094|119.680 +638497.064|220184.443|119.174 +638502.117|220179.786|118.674 +638507.220|220175.086|118.211 +638512.322|220170.386|117.912 +638517.330|220165.774|117.702 +638522.432|220161.077|117.595 +638527.489|220156.423|117.540 +638532.549|220151.768|117.455 +638537.654|220147.068|117.321 +638542.714|220142.408|117.135 +638547.773|220137.751|117.001 +638552.833|220133.093|116.964 +638557.939|220128.396|117.031 +638573.142|220114.397|116.092 +638583.228|220105.113|115.843 +638588.306|220100.431|115.273 +638593.387|220095.749|114.782 +638598.474|220091.064|114.175 +638603.561|220086.373|113.569 +638608.654|220081.676|112.837 +638618.780|220072.350|112.066 +638634.014|220058.307|110.679 +638639.122|220053.595|110.015 +638644.170|220048.941|109.631 +638649.217|220044.293|109.387 +638654.316|220039.596|109.088 +638664.427|220030.278|108.439 +638674.485|220021.012|108.000 +638679.545|220016.352|107.756 +638684.586|220011.712|107.887 +638689.649|220007.043|107.579 +638694.660|220002.431|107.476 +638699.717|219997.774|107.369 +638704.718|219993.171|107.488 +638709.787|219988.502|107.238 +638714.740|219983.945|107.403 +638729.767|219970.110|107.555 +638734.790|219965.483|107.448 +638739.801|219960.872|107.543 +638744.827|219956.242|107.439 +638749.789|219951.676|107.595 +638754.760|219947.101|107.643 +638759.802|219942.456|107.421 +638764.813|219937.838|106.988 +638769.848|219933.199|106.900 +638774.810|219928.630|106.564 +638779.794|219924.040|106.570 +638784.786|219919.440|106.503 +638789.761|219914.865|106.714 +638794.738|219910.284|106.875 +638799.670|219905.745|107.034 +638804.653|219901.161|107.195 +638809.536|219896.669|107.409 +638814.541|219892.060|107.345 +638819.503|219887.482|106.671 +638824.505|219882.870|106.177 +638829.491|219878.277|105.866 +638834.524|219873.632|105.095 +638839.501|219869.041|104.446 +638844.442|219864.494|104.248 +638849.395|219859.928|103.931 +638854.327|219855.386|103.858 +638859.255|219850.848|103.836 +638864.190|219846.306|103.818 +638869.030|219841.856|104.245 +638873.861|219837.415|104.784 +638878.796|219832.871|104.793 +638883.594|219828.463|105.671 +638888.434|219824.013|106.165 +638893.216|219819.618|106.753 +638898.047|219815.177|107.332 +638902.842|219810.770|107.826 +638907.694|219806.307|108.253 +638912.528|219801.860|108.418 +638917.381|219797.395|108.457 +638922.203|219792.957|108.756 +638927.015|219788.525|108.747 +638931.886|219784.042|108.683 +638936.705|219779.604|108.671 +638951.226|219766.229|108.223 +638956.078|219761.755|107.643 +638960.973|219757.244|107.156 +638965.795|219752.797|106.860 +638970.657|219748.316|106.318 +638975.628|219743.723|104.943 +638980.535|219739.193|104.105 +638985.406|219734.704|103.608 +639018.544|219704.217|104.153 +639023.467|219699.676|103.148 +639028.121|219695.396|103.340 +639032.714|219691.184|104.336 +639037.338|219686.932|104.763 +639041.938|219682.708|105.379 +639046.589|219678.437|106.007 +639051.139|219674.256|106.625 +639055.696|219670.071|107.241 +639060.323|219665.819|107.717 +639064.932|219661.582|108.003 +639069.552|219657.336|108.241 +639074.185|219653.075|108.408 +639078.837|219648.796|108.485 +639083.427|219644.574|108.643 +639088.014|219640.356|108.829 +639092.592|219636.146|109.103 +639097.189|219631.919|109.274 +639101.770|219627.709|109.564 +639110.914|219619.294|109.682 +639115.522|219615.054|109.558 +639120.134|219610.808|109.436 +639124.715|219606.590|109.219 +639129.327|219602.344|109.125 +639133.853|219598.180|108.994 +639138.480|219593.919|108.866 +639143.012|219589.747|108.716 +639147.578|219585.546|108.695 +639152.059|219581.422|108.610 +639156.631|219577.216|108.594 +639161.166|219573.040|108.521 +639165.632|219568.932|108.564 +639170.115|219564.805|108.536 +639174.623|219560.656|108.393 +639179.134|219556.505|108.268 +639183.648|219552.347|108.119 +639188.123|219548.230|107.960 +639192.604|219544.106|107.771 +639197.087|219539.976|107.582 +639201.562|219535.858|107.476 +639206.048|219531.725|107.314 +639210.495|219527.631|107.119 +639214.948|219523.532|106.915 +639219.414|219519.423|106.680 +639223.833|219515.351|106.418 +639228.311|219511.227|106.150 +639232.776|219507.112|105.714 +639237.205|219503.034|105.482 +639241.640|219498.953|105.242 +639246.023|219494.914|105.010 +639254.865|219486.770|104.257 +639259.291|219482.691|103.885 +639268.093|219474.581|102.946 +639272.492|219470.527|102.532 +639276.920|219466.446|101.989 +639275.253|219466.147|101.898 +639270.846|219470.195|102.325 +639266.292|219474.379|102.983 +639261.830|219478.476|103.471 +639257.401|219482.542|103.827 +639252.930|219486.648|104.147 +639248.449|219490.763|104.550 +639243.987|219494.856|104.873 +639239.546|219498.934|105.126 +639235.056|219503.055|105.382 +639230.573|219507.167|105.613 +639226.068|219511.306|105.997 +639221.569|219515.436|106.363 +639217.097|219519.539|106.604 +639212.635|219523.632|106.820 +639208.133|219527.765|107.009 +639203.579|219531.944|107.217 +639199.096|219536.056|107.342 +639194.621|219540.162|107.448 +639190.132|219544.282|107.659 +639185.602|219548.440|107.820 +639181.067|219552.597|108.030 +639176.513|219556.779|108.104 +639171.996|219560.922|108.256 +639167.494|219565.052|108.360 +639162.962|219569.209|108.375 +639158.432|219573.360|108.381 +639153.903|219577.515|108.405 +639149.386|219581.657|108.396 +639144.850|219585.818|108.494 +639140.220|219590.064|108.582 +639135.627|219594.279|108.774 +639131.049|219598.482|108.911 +639126.526|219602.630|109.030 +639121.890|219606.885|109.247 +639117.272|219611.122|109.375 +639112.633|219615.377|109.646 +639108.049|219619.580|109.615 +639103.449|219623.799|109.399 +639098.859|219628.011|109.454 +639094.314|219632.178|109.237 +639089.669|219636.442|109.058 +639085.073|219640.657|108.896 +639080.507|219644.842|108.552 +639075.856|219649.109|108.451 +639071.198|219653.383|108.418 +639066.581|219657.616|108.152 +639061.954|219661.859|107.948 +639057.309|219666.120|107.573 +639052.740|219670.305|107.019 +639048.137|219674.521|106.372 +639043.535|219678.736|105.744 +639038.914|219682.970|105.251 +639034.272|219687.222|104.565 +639029.587|219691.516|104.202 +639025.103|219695.613|102.782 +639020.224|219700.100|103.449 +639015.408|219704.525|104.050 +638981.919|219735.261|104.220 +638977.119|219739.666|104.181 +638972.102|219744.290|105.488 +638967.152|219748.846|106.683 +638962.214|219753.382|107.058 +638957.322|219757.878|107.503 +638952.460|219762.340|107.701 +638947.532|219766.875|108.515 +638932.895|219780.308|108.649 +638928.015|219784.788|108.762 +638923.096|219789.303|108.799 +638918.170|219793.823|108.924 +638913.309|219798.282|108.518 +638908.410|219802.775|108.448 +638903.531|219807.249|108.232 +638898.687|219811.690|107.732 +638893.798|219816.168|107.177 +638888.922|219820.636|106.534 +638884.026|219825.120|106.065 +638879.177|219829.561|105.193 +638874.230|219834.093|104.769 +638869.332|219838.583|104.373 +638864.394|219843.109|103.903 +638859.420|219847.675|103.830 +638854.439|219852.247|103.836 +638849.453|219856.822|103.919 +638844.387|219861.476|104.352 +638839.419|219866.036|104.315 +638834.332|219870.712|105.043 +638829.245|219875.393|105.842 +638824.179|219880.048|106.430 +638819.137|219884.681|106.823 +638814.072|219889.335|107.488 +638809.006|219893.986|107.659 +638804.007|219898.574|107.646 +638798.981|219903.182|107.387 +638793.958|219907.791|107.125 +638788.923|219912.411|107.055 +638783.896|219917.020|106.836 +638778.815|219921.684|106.772 +638773.777|219926.307|106.796 +638768.678|219930.989|107.003 +638763.630|219935.622|107.195 +638758.525|219940.313|107.567 +638753.438|219944.982|107.707 +638748.360|219949.643|107.762 +638743.306|219954.276|107.476 +638738.225|219958.942|107.619 +638733.159|219963.591|107.589 +638728.036|219968.294|107.689 +638723.012|219972.902|107.784 +638712.811|219982.260|107.430 +638707.748|219986.908|107.500 +638702.652|219991.580|107.259 +638692.426|220000.968|107.564 +638687.314|220005.662|107.756 +638682.206|220010.350|107.884 +638677.103|220015.035|107.976 +638661.793|220029.089|108.442 +638656.636|220033.826|108.805 +638651.534|220038.511|109.055 +638646.443|220043.183|109.100 +638641.295|220047.911|109.402 +638636.190|220052.598|109.817 +638631.078|220057.298|110.548 +638620.840|220066.705|111.313 +638605.469|220080.823|112.572 +638600.327|220085.553|113.325 +638595.185|220090.278|114.002 +638590.098|220094.957|114.654 +638584.968|220099.669|115.196 +638579.845|220104.375|115.474 +638574.770|220109.038|115.900 +638569.655|220113.729|115.943 +638564.531|220118.438|116.452 +638559.463|220123.093|116.760 +638549.243|220132.468|116.781 +638544.183|220137.114|116.845 +638539.071|220141.807|117.016 +638534.009|220146.453|117.211 +638528.949|220151.098|117.345 +638523.844|220155.786|117.443 +638518.735|220160.470|117.522 +638513.678|220165.116|117.674 +638508.573|220169.800|117.824 +638503.468|220174.488|118.144 +638498.460|220179.091|118.607 +638493.123|220183.992|118.985 +638488.258|220188.463|119.604 +638483.208|220193.105|120.098 +638478.154|220197.741|120.247 +638473.055|220202.426|120.579 +638468.004|220207.062|120.774 +638462.954|220211.698|120.853 +638457.857|220216.377|121.006 +638452.852|220220.970|121.131 +638447.756|220225.649|121.271 +638442.706|220230.282|121.472 +638437.658|220234.918|121.643 +638432.614|220239.551|122.033 +638427.578|220244.184|122.914 +638422.589|220248.768|123.652 +638417.557|220253.398|124.435 +638412.518|220258.025|124.944 +638407.477|220262.655|125.273 +638402.481|220267.242|125.459 +638397.491|220271.823|125.874 +638392.456|220276.450|126.364 +638387.470|220281.031|126.809 +638382.486|220285.612|127.434 +638377.500|220290.194|127.785 +638372.504|220294.778|127.934 +638367.466|220299.405|128.263 +638362.479|220303.986|128.638 +638357.526|220308.527|128.669 +638352.527|220313.115|128.763 +638347.526|220317.699|128.781 +638342.563|220322.265|129.787 +638337.577|220326.840|130.217 +638332.618|220331.387|130.122 +638322.620|220340.559|130.354 +638317.716|220345.058|130.488 +638312.711|220349.648|130.534 +638307.758|220354.193|130.659 +638287.882|220372.426|131.034 +638258.088|220399.739|130.516 +638253.095|220404.311|130.235 +638248.148|220408.846|129.927 +638243.201|220413.376|129.684 +638238.206|220417.954|129.440 +638233.253|220422.492|129.147 +638228.300|220427.034|128.876 +638223.344|220431.572|128.614 +638218.385|220436.117|128.321 +638213.374|220440.707|128.041 +638208.454|220445.215|127.727 +638203.492|220449.763|127.477 +638198.576|220454.268|127.251 +638193.598|220458.828|126.895 +638188.654|220463.357|126.401 +638183.674|220467.917|126.096 +638178.733|220472.443|125.712 +638173.786|220476.975|125.258 +638168.827|220481.514|124.731 +638163.880|220486.046|124.392 +638144.065|220504.191|122.441 +638134.156|220513.259|120.917 +638119.212|220526.926|118.135 +638114.188|220531.522|117.376 +638104.377|220540.511|116.824 +638099.494|220544.986|116.562 +638094.587|220549.478|116.117 +638084.736|220558.503|115.410 +638079.904|220562.932|115.306 +638070.175|220571.848|114.998 +638065.216|220576.386|114.251 +638060.477|220580.742|115.029 +638055.575|220585.228|114.434 +638050.756|220589.648|114.578 +638045.904|220594.095|114.443 +638041.088|220598.512|114.654 +638036.318|220602.892|114.831 +638031.533|220607.278|114.919 +638026.689|220611.719|114.953 +638021.986|220616.041|115.718 +638003.134|220633.353|117.808 +637998.425|220637.675|118.199 +637974.922|220659.240|119.982 +637960.947|220672.066|121.478 +637956.256|220676.370|121.777 +637946.935|220684.913|122.173 +637937.675|220693.411|123.030 +637932.991|220697.706|123.109 +637923.825|220706.115|124.029 +637919.134|220710.416|124.112 +637914.599|220714.580|124.584 +637909.966|220718.826|124.767 +637900.770|220727.259|125.319 +637891.513|220735.739|125.240 +637886.966|220739.909|125.416 +637882.382|220744.112|125.380 +637877.733|220748.370|125.288 +637873.189|220752.536|125.535 +637864.029|220760.928|125.380 +637845.650|220777.759|124.654 +637831.967|220790.289|123.840 +637827.459|220794.419|123.904 +637822.921|220798.577|123.831 +637813.929|220806.815|123.633 +637809.324|220811.031|123.246 +637804.801|220815.170|123.057 +637795.897|220823.329|122.957 +637791.450|220827.402|122.972 +637782.495|220835.604|122.707 +637778.003|220839.716|122.262 +637773.525|220843.812|121.917 +637764.564|220852.017|121.268 +637760.156|220856.050|121.094 +637755.679|220860.152|120.826 +637751.278|220864.179|120.463 +637742.420|220872.287|119.774 +637738.016|220876.319|119.457 +637733.578|220880.379|119.259 +637729.219|220884.372|118.942 +637724.748|220888.459|118.366 +637720.356|220892.480|117.943 +637707.027|220904.665|115.833 +637702.677|220908.646|115.452 +637693.890|220916.684|114.346 +637685.456|220924.414|114.721 +637681.308|220928.217|115.132 +637677.269|220931.927|115.809 +637673.115|220935.737|116.208 +637664.922|220943.250|116.861 +637660.715|220947.103|116.839 +637656.472|220950.986|116.431 +637652.214|220954.881|115.964 +637648.087|220958.667|116.105 +637643.915|220962.483|115.839 +637635.697|220970.015|115.666 +637631.546|220973.816|115.538 +637627.507|220977.519|115.675 +637610.765|220992.829|113.236 +637603.068|220999.897|114.629 +637599.133|221003.506|114.867 +637595.211|221007.106|115.172 +637587.478|221014.199|115.824 +637583.528|221017.820|115.833 +637575.850|221024.861|116.577 +637568.406|221031.697|117.876 +637564.700|221035.102|118.482 +637553.547|221045.337|119.823 +637534.906|221062.424|120.664 +637520.239|221075.866|121.030 +637516.621|221079.182|121.289 +637513.079|221082.428|121.445 +637509.418|221085.784|121.554 +637505.825|221089.076|121.527 +637502.240|221092.359|121.551 +637495.114|221098.887|121.582 +637491.557|221102.143|121.332 +637488.122|221105.294|121.750 +637481.240|221111.604|122.173 +637477.740|221114.810|122.179 +637689.083|220918.778|114.410 +637693.381|220914.824|114.730 +637697.724|220910.832|115.032 +637702.001|220906.903|115.279 +637706.463|220902.803|115.946 +637715.396|220894.604|117.638 +637737.348|220874.429|119.573 +637741.740|220870.391|119.835 +637746.215|220866.279|120.527 +637750.601|220862.243|120.543 +637755.088|220858.122|120.817 +637759.462|220854.099|121.064 +637768.353|220845.924|121.573 +637772.842|220841.797|121.966 +637777.405|220837.606|122.478 +637781.913|220833.461|122.734 +637795.266|220821.178|123.011 +637799.768|220817.038|123.042 +637804.264|220812.902|123.066 +637826.926|220792.054|123.673 +637845.242|220775.217|124.548 +637854.398|220766.789|124.535 +637859.073|220762.494|124.971 +637868.315|220753.996|125.294 +637872.948|220749.735|125.249 +637877.508|220745.538|125.093 +637882.229|220741.198|125.343 +637910.018|220715.637|124.484 +637914.654|220711.373|124.331 +637919.308|220707.091|123.975 +637924.011|220702.766|123.981 +637937.968|220689.915|122.728 +637947.362|220681.274|122.103 +637956.747|220672.636|121.494 +637970.890|220659.615|120.119 +637975.583|220655.293|119.531 +637994.569|220637.816|117.775 +638018.408|220615.867|115.480 +638023.212|220611.444|115.099 +638027.994|220607.043|114.568 +638032.901|220602.532|114.672 +638037.744|220598.079|114.654 +638042.606|220593.607|114.431 +638047.480|220589.124|114.315 +638052.360|220584.637|114.279 +638057.276|220580.123|114.547 +638062.089|220575.682|113.566 +638067.100|220571.092|114.715 +638072.050|220566.544|114.971 +638076.948|220562.045|115.193 +638081.916|220557.482|115.657 +638086.851|220552.950|115.843 +638091.834|220548.372|116.059 +638096.726|220543.879|116.352 +638101.707|220539.301|116.611 +638121.738|220520.925|119.467 +638126.758|220516.319|120.280 +638131.803|220511.692|120.896 +638136.735|220507.157|120.905 +638141.825|220502.493|122.073 +638161.865|220484.099|124.304 +638166.855|220479.514|124.621 +638171.906|220474.878|125.069 +638176.862|220470.331|125.593 +638181.903|220465.701|126.029 +638186.880|220461.129|126.309 +638191.919|220456.505|126.776 +638196.942|220451.890|127.114 +638201.959|220447.282|127.367 +638206.976|220442.673|127.675 +638211.938|220438.116|127.925 +638217.001|220433.465|128.300 +638222.009|220428.866|128.586 +638227.013|220424.269|128.830 +638232.061|220419.630|129.104 +638237.063|220415.037|129.373 +638242.107|220410.407|129.638 +638247.152|220405.780|129.888 +638252.147|220401.196|130.189 +638257.192|220396.569|130.522 +638262.224|220391.951|130.686 +638272.267|220382.731|130.759 +638282.323|220373.505|131.195 +638287.385|220368.856|131.214 +638297.392|220359.664|130.894 +638302.446|220355.025|130.763 +638307.450|220350.428|130.699 +638312.507|220345.786|130.686 +638317.503|220341.196|130.388 +638327.610|220331.918|130.385 +638332.596|220327.334|129.918 +638347.666|220313.486|128.943 +638357.806|220304.172|128.708 +638362.802|220299.584|128.516 +638367.840|220294.955|128.163 +638372.882|220290.322|127.916 +638377.926|220285.689|127.724 +638382.962|220281.059|127.276 +638388.043|220276.389|126.696 +638393.078|220271.759|126.224 +638398.116|220267.126|125.739 +638403.161|220262.493|125.587 +638408.202|220257.860|125.221 +638413.292|220253.182|124.813 +638418.325|220248.552|123.941 +638423.366|220243.916|123.371 +638428.404|220239.283|122.661 +638433.443|220234.647|121.859 +638438.539|220229.962|121.564 +638443.590|220225.323|121.314 +638448.640|220220.684|121.155 +638453.739|220215.999|120.966 +638458.793|220211.360|120.835 +638463.847|220206.721|120.735 +638468.897|220202.079|120.558 +638473.999|220197.394|120.259 +638479.053|220192.752|120.082 +638484.107|220188.104|119.610 +638489.209|220183.413|119.022 +638494.214|220178.813|118.604 +638499.319|220174.119|118.180 +638504.379|220169.471|117.894 +638509.390|220164.869|117.732 +638514.498|220160.178|117.586 +638519.558|220155.530|117.394 +638524.572|220150.927|117.303 +638529.680|220146.236|117.217 +638534.743|220141.585|117.059 +638539.760|220136.976|116.861 +638544.872|220132.285|116.833 +638565.053|220113.744|115.824 +638570.115|220109.099|116.022 +638580.226|220099.806|115.056 +638585.258|220095.182|114.690 +638590.348|220090.500|114.038 +638595.395|220085.855|113.224 +638600.489|220081.173|112.648 +638615.622|220067.265|111.365 +638625.717|220057.990|110.661 +638630.777|220053.336|110.021 +638635.833|220048.691|109.594 +638640.890|220044.046|109.198 +638645.880|220039.465|109.311 +638650.894|220034.859|108.893 +638655.944|220030.223|108.789 +638660.952|220025.624|108.582 +638665.972|220021.006|108.110 +638670.986|220016.403|107.884 +638675.997|220011.801|107.723 +638686.019|220002.602|107.552 +638691.027|219998.006|107.582 +638701.012|219988.837|107.381 +638706.008|219984.253|107.649 +638715.950|219975.130|107.540 +638720.876|219970.616|108.219 +638725.862|219966.038|107.994 +638730.846|219961.460|107.823 +638735.823|219956.891|107.759 +638740.807|219952.316|107.659 +638745.714|219947.814|107.973 +638750.691|219943.248|108.021 +638755.623|219938.719|108.018 +638760.625|219934.129|107.777 +638765.584|219929.572|107.494 +638770.531|219925.030|107.384 +638775.487|219920.480|107.195 +638780.419|219915.953|107.332 +638785.350|219911.430|107.503 +638790.236|219906.946|107.656 +638795.174|219902.414|107.793 +638800.054|219897.943|108.098 +638804.992|219893.413|108.262 +638809.905|219888.899|108.168 +638814.901|219884.312|107.744 +638819.881|219879.731|106.955 +638824.822|219875.189|106.647 +638829.824|219870.587|105.732 +638834.761|219866.048|105.019 +638839.733|219861.476|104.513 +638844.686|219856.929|104.239 +638849.593|219852.421|103.977 +638854.531|219847.888|103.916 +638859.408|219843.414|104.016 +638864.266|219838.961|104.324 +638869.161|219834.471|104.739 +638873.980|219830.051|105.001 +638878.796|219825.641|105.751 +638883.615|219821.227|106.467 +638888.455|219816.789|107.003 +638893.241|219812.406|107.610 +638898.084|219807.969|108.152 +638902.894|219803.561|108.567 +638907.722|219799.132|108.817 +638912.550|219794.704|109.088 +638917.414|219790.238|109.055 +638922.312|219785.742|108.780 +638927.116|219781.332|108.896 +638932.048|219776.806|108.783 +638941.734|219767.915|108.893 +638946.614|219763.428|108.088 +638951.546|219758.896|107.701 +638956.343|219754.494|107.622 +638961.245|219749.986|107.128 +638966.179|219745.451|106.418 +638971.151|219740.870|105.083 +638976.116|219736.304|104.220 +638981.029|219731.784|103.401 +639010.004|219705.159|102.581 +639014.551|219701.002|104.214 +639019.498|219696.442|103.053 +639024.186|219692.144|103.742 +639028.849|219687.868|104.592 +639033.595|219683.515|104.918 +639038.256|219679.239|105.479 +639042.913|219674.969|106.068 +639047.610|219670.659|106.735 +639052.218|219666.434|107.357 +639056.946|219662.100|107.866 +639061.600|219657.827|108.195 +639066.264|219653.544|108.491 +639071.003|219649.192|108.631 +639075.655|219644.922|108.722 +639080.364|219640.596|108.792 +639085.027|219636.314|109.149 +639089.672|219632.047|109.329 +639094.330|219627.773|109.469 +639098.978|219623.503|109.664 +639103.596|219619.263|109.765 +639108.232|219615.002|109.777 +639112.950|219610.665|109.615 +639117.589|219606.401|109.356 +639122.231|219602.134|109.094 +639126.898|219597.845|109.015 +639131.585|219593.535|108.832 +639136.197|219589.292|108.518 +639140.836|219585.028|108.372 +639145.469|219580.773|108.287 +639150.056|219576.558|108.192 +639154.574|219572.409|108.232 +639159.130|219568.221|108.335 +639163.724|219564.003|108.274 +639168.274|219559.821|108.180 +639172.834|219555.630|108.055 +639177.363|219551.467|107.854 +639181.929|219547.269|107.741 +639186.501|219543.069|107.619 +639190.994|219538.936|107.390 +639195.520|219534.776|107.278 +639199.995|219530.664|107.183 +639204.539|219526.488|107.028 +639209.026|219522.364|106.915 +639213.528|219518.225|106.750 +639218.006|219514.110|106.476 +639222.498|219509.977|106.132 +639226.945|219505.887|105.781 +639231.432|219501.760|105.510 +639235.861|219497.688|105.299 +639240.363|219493.548|105.007 +639249.199|219485.422|104.281 +639253.606|219481.369|104.007 +639258.044|219477.287|103.614 +639262.488|219473.200|103.196 +639271.340|219465.056|102.130 +639272.614|219462.123|101.825 +639268.151|219466.217|102.261 +639263.656|219470.338|102.873 +639259.151|219474.474|103.324 +639254.667|219478.583|103.678 +639250.177|219482.701|104.086 +639245.712|219486.791|104.394 +639241.207|219490.924|104.681 +639236.736|219495.021|105.068 +639232.188|219499.190|105.336 +639227.701|219503.302|105.586 +639223.172|219507.453|105.821 +639218.627|219511.620|106.159 +639214.080|219515.790|106.516 +639209.569|219519.923|106.723 +639205.021|219524.089|106.860 +639200.480|219528.250|106.997 +639195.908|219532.441|107.058 +639191.320|219536.641|107.204 +639186.794|219540.786|107.314 +639182.201|219544.999|107.546 +639177.586|219549.223|107.628 +639172.959|219553.466|107.808 +639168.393|219557.648|107.945 +639163.785|219561.872|108.082 +639159.139|219566.124|108.140 +639154.567|219570.312|108.104 +639149.956|219574.534|108.018 +639145.329|219578.771|108.034 +639140.635|219583.071|108.171 +639135.999|219587.320|108.293 +639131.336|219591.594|108.591 +639126.593|219595.940|108.789 +639121.908|219600.235|108.969 +639117.220|219604.529|109.180 +639112.468|219608.885|109.503 +639107.784|219613.177|109.457 +639103.026|219617.538|109.868 +639098.374|219621.790|109.643 +639093.668|219626.097|109.466 +639089.002|219630.367|109.384 +639084.302|219634.665|109.204 +639079.644|219638.923|108.780 +639074.932|219643.239|108.732 +639070.183|219647.582|108.610 +639065.486|219651.880|108.485 +639060.823|219656.144|108.174 +639056.062|219660.500|107.869 +639051.377|219664.782|107.396 +639046.720|219669.034|106.750 +639042.014|219673.338|106.132 +639037.353|219677.596|105.537 +639032.644|219681.900|104.952 +639027.908|219686.228|104.556 +639023.244|219690.489|104.016 +639013.649|219699.271|103.836 +639008.882|219703.626|103.373 +638974.900|219734.749|104.537 +638970.011|219739.230|104.818 +638964.978|219743.851|106.223 +638960.019|219748.401|107.110 +638955.078|219752.931|107.506 +638950.220|219757.381|107.674 +638945.300|219761.889|107.963 +638940.357|219766.418|108.463 +638935.480|219770.890|108.872 +638930.573|219775.376|108.725 +638925.684|219779.857|108.890 +638920.791|219784.334|109.073 +638915.924|219788.787|108.680 +638910.968|219793.329|109.061 +638906.121|219797.761|108.930 +638901.248|219802.223|108.649 +638896.377|219806.673|108.320 +638891.540|219811.096|107.732 +638886.700|219815.518|107.174 +638881.807|219819.990|106.647 +638876.998|219824.382|105.839 +638872.124|219828.835|105.144 +638867.272|219833.273|104.757 +638862.315|219837.802|104.422 +638857.417|219842.280|104.004 +638852.443|219846.834|103.903 +638847.505|219851.354|103.955 +638842.491|219855.947|104.306 +638837.532|219860.492|104.644 +638832.503|219865.103|105.242 +638827.465|219869.724|105.985 +638822.365|219874.406|106.906 +638817.345|219879.005|107.521 +638812.322|219883.617|108.253 +638807.284|219888.232|108.610 +638802.282|219892.807|108.576 +638797.289|219897.376|108.472 +638792.303|219901.939|108.302 +638787.319|219906.498|108.131 +638782.336|219911.058|107.970 +638777.361|219915.612|107.750 +638772.326|219920.217|107.665 +638767.276|219924.841|107.814 +638762.283|219929.413|107.884 +638757.226|219934.046|108.180 +638752.185|219938.661|108.317 +638747.162|219943.260|108.244 +638742.151|219947.842|107.966 +638737.137|219952.432|107.793 +638732.050|219957.092|107.963 +638727.018|219961.701|108.088 +638721.940|219966.355|108.253 +638706.821|219980.190|107.686 +638686.583|219998.719|107.549 +638681.471|220003.404|107.662 +638671.294|220012.724|107.994 +638666.179|220017.412|108.293 +638661.132|220022.033|108.241 +638650.918|220031.390|108.674 +638640.704|220040.751|109.268 +638635.620|220045.405|109.125 +638630.512|220050.090|109.570 +638625.403|220054.772|110.103 +638620.261|220059.487|110.341 +638615.186|220064.144|111.371 +638610.059|220068.838|111.295 +638604.920|220073.547|111.572 +638589.586|220087.608|113.249 +638584.493|220092.280|113.892 +638569.192|220106.310|115.446 +638564.074|220110.998|115.443 +638543.637|220129.725|116.781 +638538.575|220134.364|116.803 +638533.460|220139.046|116.879 +638528.345|220143.734|117.074 +638523.234|220148.412|117.114 +638518.122|220153.094|117.254 +638513.014|220157.779|117.455 +638507.951|220162.415|117.623 +638502.840|220167.097|117.796 +638497.731|220171.775|118.007 +638492.678|220176.408|118.372 +638487.520|220181.136|118.759 +638482.415|220185.818|119.290 +638477.358|220190.451|119.707 +638472.256|220195.129|120.006 +638467.154|220199.805|120.351 +638462.048|220204.481|120.576 +638456.946|220209.153|120.698 +638451.844|220213.829|120.887 +638446.790|220218.459|121.058 +638441.691|220223.131|121.247 +638436.637|220227.761|121.506 +638431.586|220232.388|121.887 +638426.499|220237.058|122.804 +638421.458|220241.685|123.362 +638416.414|220246.308|123.877 +638411.329|220250.972|124.651 +638406.291|220255.593|125.297 +638401.244|220260.216|125.502 +638396.199|220264.840|125.779 +638391.158|220269.461|126.233 +638386.122|220274.079|126.782 +638381.084|220278.700|127.273 +638376.043|220283.317|127.650 +638370.998|220287.941|127.818 +638365.954|220292.562|128.105 +638360.918|220297.180|128.571 +638355.904|220301.767|128.318 +638350.869|220306.388|128.754 +638345.864|220310.972|128.748 +638340.841|220315.583|129.498 +638335.846|220320.165|129.717 +638330.847|220324.749|129.833 +638320.804|220333.957|130.241 +638315.805|220338.538|130.467 +638310.806|220343.122|130.631 +638305.847|220347.667|130.686 +638280.954|220370.481|131.147 +638270.944|220379.646|130.747 +638261.038|220388.720|130.549 +638246.115|220402.385|129.857 +638241.168|220406.914|129.623 +638236.218|220411.446|129.363 +638231.262|220415.985|129.043 +638226.309|220420.520|128.824 +638221.353|220425.059|128.537 +638216.391|220429.600|128.278 +638211.429|220434.145|127.995 +638206.506|220438.653|127.629 +638201.538|220443.200|127.376 +638196.616|220447.708|127.065 +638191.635|220452.265|126.712 +638186.704|220456.779|126.376 +638181.720|220461.339|126.047 +638176.779|220465.865|125.657 +638171.832|220470.392|125.233 +638166.873|220474.927|124.740 +638161.975|220479.411|124.395 +638157.025|220483.943|124.048 +638142.203|220497.504|122.441 +638127.356|220511.080|120.439 +638122.449|220515.575|120.241 +638117.493|220520.102|119.128 +638107.590|220529.157|117.595 +638102.637|220533.690|117.110 +638092.834|220542.660|116.315 +638087.988|220547.095|116.022 +638083.090|220551.578|115.730 +638078.207|220556.050|115.593 +638073.367|220560.485|115.416 +638068.508|220564.932|115.108 +638063.622|220569.406|115.032 +638058.495|220574.073|112.465 +638044.246|220587.152|114.273 +638039.430|220591.565|114.480 +638034.645|220595.951|114.559 +638029.801|220600.389|114.578 +638020.252|220609.140|115.001 +638015.564|220613.444|115.535 +638006.057|220622.164|116.358 +637982.579|220643.704|118.610 +637977.872|220648.020|119.098 +637968.546|220656.579|119.976 +637963.894|220660.849|120.530 +637959.271|220665.089|120.963 +637954.583|220669.390|121.274 +637945.317|220677.888|122.048 +637940.693|220682.131|122.509 +637936.045|220686.395|122.816 +637917.610|220703.299|123.959 +637912.950|220707.575|124.258 +637908.366|220711.775|124.438 +637889.974|220728.634|124.968 +637876.151|220741.301|125.054 +637871.582|220745.486|125.163 +637866.968|220749.714|125.005 +637844.114|220770.645|124.386 +637807.879|220803.831|123.179 +637798.897|220812.055|122.886 +637794.419|220816.161|122.966 +637790.021|220820.187|122.966 +637781.133|220828.328|122.771 +637776.674|220832.416|122.761 +637749.936|220856.882|120.613 +637745.502|220860.942|120.335 +637723.559|220881.025|118.711 +637719.103|220885.097|117.967 +637714.778|220889.060|117.869 +637705.847|220897.219|116.181 +637701.458|220901.233|115.611 +637697.115|220905.208|115.266 +637680.027|220920.853|114.486 +637675.967|220924.581|115.068 +637671.947|220928.272|115.846 +637667.854|220932.027|116.294 +637659.600|220939.593|116.696 +637655.311|220943.515|116.071 +637642.833|220954.930|115.605 +637634.533|220962.523|115.074 +637630.427|220966.284|115.135 +637626.383|220969.984|115.263 +637605.936|220988.684|114.014 +637598.103|220995.865|114.626 +637586.441|221006.548|115.568 +637578.760|221013.586|116.269 +637574.981|221017.055|116.772 +637560.030|221030.761|118.930 +637556.278|221034.200|119.168 +637545.046|221044.487|119.835 +637530.215|221058.069|120.472 +637526.499|221061.470|120.518 +637522.827|221064.832|120.546 +637519.184|221068.167|120.695 +637515.527|221071.513|120.802 +637508.358|221078.079|121.195 +637501.137|221084.693|121.423 +637497.626|221087.906|121.533 +637494.008|221091.213|121.448 +637490.478|221094.447|121.500 +637486.933|221097.690|121.512 +637480.072|221103.978|122.201 +637473.141|221110.321|122.277 +637685.291|220913.584|114.492 +637689.571|220909.661|114.709 +637707.045|220893.659|116.940 +637715.832|220885.609|117.952 +637720.258|220881.555|118.519 +637746.675|220857.345|120.433 +637764.408|220841.087|121.298 +637769.014|220836.872|121.990 +637782.376|220824.622|122.643 +637791.374|220816.371|122.856 +637795.815|220812.296|122.819 +637800.311|220808.178|123.075 +637818.270|220791.697|122.871 +637827.347|220783.376|122.978 +637831.995|220779.115|123.420 +637836.500|220774.982|123.338 +637845.748|220766.509|124.029 +637850.377|220762.269|124.438 +637873.430|220741.131|125.127 +637878.072|220736.870|125.145 +637882.668|220732.648|124.929 +637887.307|220728.390|124.965 +637901.236|220715.601|125.017 +637915.154|220702.814|124.200 +637928.982|220690.101|122.609 +637938.422|220681.433|122.542 +637943.095|220677.138|122.051 +637947.685|220672.916|121.332 +637952.409|220668.579|121.219 +637957.109|220664.257|120.966 +637961.852|220659.901|120.668 +637966.540|220655.592|119.991 +637980.613|220642.653|118.470 +637985.276|220638.361|117.641 +637994.737|220629.665|116.678 +638004.311|220620.872|116.248 +638009.124|220616.449|115.879 +638013.879|220612.078|115.471 +638023.425|220603.303|114.547 +638028.268|220598.856|114.483 +638033.121|220594.403|114.523 +638038.016|220589.910|114.507 +638042.841|220585.478|114.361 +638052.585|220576.532|114.072 +638062.446|220567.492|114.867 +638067.389|220562.960|115.437 +638072.330|220558.427|115.590 +638077.241|220553.925|115.925 +638082.148|220549.417|115.809 +638102.021|220531.199|117.440 +638106.977|220526.658|117.943 +638121.991|220512.902|120.146 +638132.013|220503.725|121.618 +638136.991|220499.162|122.051 +638157.037|220480.788|124.127 +638162.039|220476.201|124.511 +638166.989|220471.663|124.849 +638172.040|220467.033|125.307 +638177.038|220462.452|125.712 +638182.077|220457.831|126.099 +638187.060|220453.259|126.413 +638192.041|220448.693|126.733 +638197.119|220444.039|127.096 +638202.096|220439.473|127.428 +638207.116|220434.870|127.730 +638212.185|220430.222|128.074 +638217.150|220425.668|128.364 +638222.207|220421.032|128.617 +638227.215|220416.439|128.894 +638232.265|220411.806|129.120 +638237.316|220407.176|129.391 +638242.314|220402.586|129.668 +638247.362|220397.956|129.943 +638252.406|220393.329|130.250 +638257.393|220388.751|130.415 +638262.468|220384.093|130.476 +638267.506|220379.467|130.817 +638272.542|220374.849|131.098 +638277.574|220370.231|131.351 +638302.705|220347.146|130.695 +638307.764|220342.500|130.699 +638317.862|220333.222|130.403 +638322.867|220328.626|130.327 +638327.902|220323.996|129.830 +638332.956|220319.354|129.839 +638337.991|220314.727|129.354 +638343.048|220310.085|129.434 +638348.120|220305.418|128.684 +638353.164|220300.782|128.440 +638358.224|220296.137|128.650 +638363.308|220291.465|128.214 +638368.356|220286.829|128.031 +638373.394|220282.196|127.681 +638378.487|220277.517|127.419 +638383.522|220272.887|126.931 +638388.607|220268.211|126.431 +638393.648|220263.578|126.029 +638398.741|220258.900|125.709 +638403.783|220254.264|125.334 +638408.867|220249.585|124.709 +638413.905|220244.952|123.929 +638418.995|220240.270|123.508 +638424.088|220235.589|123.054 +638429.127|220230.949|122.167 +638434.223|220226.268|121.591 +638439.319|220221.580|121.195 +638444.373|220216.938|121.045 +638449.475|220212.253|120.847 +638454.575|220207.565|120.619 +638459.628|220202.923|120.402 +638464.731|220198.235|120.125 +638469.833|220193.544|119.817 +638474.890|220188.899|119.451 +638479.995|220184.205|119.095 +638485.100|220179.514|118.717 +638490.160|220174.863|118.318 +638495.262|220170.175|117.973 +638500.371|220165.481|117.772 +638505.431|220160.830|117.559 +638510.542|220156.136|117.367 +638515.650|220151.442|117.117 +638520.716|220146.791|116.992 +638525.779|220142.140|116.937 +638530.891|220137.446|116.870 +638535.956|220132.795|116.772 +638541.068|220128.101|116.763 +638551.215|220118.774|115.873 +638561.407|220109.407|115.370 +638566.485|220104.738|114.892 +638581.737|220090.720|113.517 +638586.828|220086.035|112.877 +638591.869|220081.402|112.447 +638596.956|220076.726|112.133 +638607.103|220067.396|111.082 +638617.241|220058.082|110.515 +638622.236|220053.491|110.326 +638627.336|220048.807|109.960 +638632.383|220044.171|109.768 +638647.501|220030.281|108.826 +638652.573|220025.617|108.241 +638657.599|220021.009|108.713 +638662.613|220016.400|108.427 +638667.673|220011.755|108.229 +638672.717|220007.113|107.430 +638687.732|219993.333|107.604 +638697.751|219984.137|107.662 +638702.749|219979.550|107.924 +638717.709|219965.828|108.591 +638722.634|219961.305|108.539 +638727.673|219956.675|108.265 +638732.656|219952.097|108.101 +638737.643|219947.518|107.939 +638742.547|219943.023|108.347 +638747.506|219938.472|108.625 +638752.487|219933.900|108.640 +638757.427|219929.361|108.536 +638762.371|219924.823|108.436 +638767.318|219920.278|108.314 +638772.259|219915.746|108.344 +638777.197|219911.211|108.372 +638782.116|219906.700|108.695 +638787.039|219902.185|109.012 +638791.934|219897.690|109.030 +638796.933|219893.102|109.045 +638801.779|219888.655|109.152 +638806.744|219884.096|109.021 +638811.691|219879.551|108.585 +638816.672|219874.967|107.784 +638821.649|219870.389|107.080 +638826.663|219865.774|106.022 +638831.668|219861.165|105.101 +638836.615|219856.624|104.882 +638841.543|219852.091|104.342 +638846.493|219847.544|104.132 +638851.422|219843.021|104.178 +638856.277|219838.567|104.489 +638861.127|219834.120|104.870 +638865.982|219829.667|105.232 +638870.826|219825.226|105.702 +638875.647|219820.807|106.378 +638880.421|219816.436|107.092 +638885.264|219811.995|107.592 +638890.040|219807.618|108.265 +638894.841|219803.220|108.762 +638899.654|219798.806|109.137 +638904.533|219794.329|109.362 +638909.358|219789.897|109.228 +638914.226|219785.428|109.170 +638919.042|219781.006|109.167 +638923.916|219776.531|109.103 +638928.774|219772.066|108.792 +638933.639|219767.604|108.881 +638938.531|219763.105|108.338 +638943.350|219758.676|108.021 +638948.214|219754.211|107.787 +638953.061|219749.758|107.707 +638957.962|219745.253|107.220 +638962.875|219740.733|106.299 +638967.883|219736.115|104.687 +638972.723|219731.668|104.406 +639006.422|219700.740|103.821 +639011.223|219696.335|103.678 +639016.118|219691.833|102.888 +639020.650|219687.697|104.342 +639025.356|219683.387|104.903 +639030.059|219679.077|105.184 +639034.781|219674.752|105.680 +639039.432|219670.494|106.330 +639044.089|219666.233|106.955 +639048.704|219662.006|107.537 +639053.383|219657.720|108.024 +639058.043|219653.450|108.347 +639062.743|219649.143|108.732 +639067.437|219644.842|108.872 +639072.091|219640.572|108.945 +639076.843|219636.216|109.070 +639081.476|219631.967|109.317 +639086.112|219627.722|109.573 +639090.812|219623.412|109.759 +639095.454|219619.154|109.695 +639100.072|219614.920|109.804 +639109.475|219606.291|109.689 +639114.178|219601.975|109.362 +639118.891|219597.647|108.994 +639123.600|219593.325|108.683 +639128.248|219589.061|108.445 +639132.936|219584.757|108.299 +639137.599|219580.478|108.021 +639142.244|219576.216|107.887 +639146.838|219572.001|107.768 +639151.443|219567.780|107.893 +639156.061|219563.546|107.970 +639160.609|219559.370|107.872 +639165.223|219555.136|107.723 +639169.844|219550.897|107.567 +639174.459|219546.663|107.464 +639178.982|219542.512|107.311 +639183.566|219538.305|107.144 +639188.153|219534.096|106.982 +639192.664|219529.957|106.951 +639197.194|219525.802|106.866 +639201.720|219521.651|106.811 +639206.204|219517.539|106.741 +639210.718|219513.394|106.510 +639215.250|219509.233|106.226 +639219.789|219505.067|105.933 +639224.278|219500.946|105.641 +639228.744|219496.849|105.504 +639242.237|219484.459|104.455 +639246.672|219480.390|104.291 +639260.031|219468.122|103.148 +639264.521|219463.995|102.553 +639268.953|219459.923|102.002 +639266.542|219460.188|102.187 +639262.144|219464.220|102.562 +639253.201|219472.426|103.593 +639244.295|219480.591|104.288 +639239.863|219484.651|104.431 +639235.340|219488.800|104.787 +639226.327|219497.060|105.406 +639221.886|219501.132|105.690 +639217.359|219505.280|105.903 +639212.827|219509.435|106.159 +639208.292|219513.589|106.449 +639203.732|219517.768|106.634 +639199.248|219521.877|106.711 +639194.725|219526.019|106.750 +639190.202|219530.164|106.805 +639185.627|219534.352|106.869 +639181.027|219538.567|107.101 +639176.452|219542.761|107.223 +639171.883|219546.946|107.332 +639167.259|219551.183|107.482 +639162.636|219555.420|107.656 +639158.024|219559.644|107.771 +639153.376|219563.902|107.848 +639148.767|219568.121|107.720 +639144.152|219572.345|107.640 +639139.498|219576.610|107.799 +639134.844|219580.874|107.991 +639130.095|219585.226|108.171 +639125.380|219589.548|108.463 +639120.680|219593.855|108.707 +639115.907|219598.232|109.103 +639111.155|219602.588|109.384 +639106.449|219606.904|109.743 +639092.345|219619.818|109.652 +639087.557|219624.204|109.679 +639082.863|219628.499|109.457 +639078.236|219632.736|109.161 +639073.426|219637.137|109.058 +639068.726|219641.441|108.936 +639063.972|219645.796|108.878 +639059.217|219650.146|108.497 +639054.498|219654.462|108.210 +639049.801|219658.759|107.829 +639045.083|219663.075|107.256 +639040.377|219667.376|106.616 +639035.628|219671.717|105.936 +639030.907|219676.036|105.427 +639026.128|219680.406|104.989 +639021.309|219684.817|104.833 +639016.673|219689.047|103.425 +639011.878|219693.434|103.123 +639006.901|219698.003|104.147 +638977.801|219724.636|102.840 +638972.772|219729.260|104.132 +638967.853|219733.768|104.242 +638962.735|219738.474|105.903 +638957.685|219743.113|107.110 +638952.725|219747.664|107.656 +638947.760|219752.214|107.866 +638942.859|219756.704|107.997 +638937.888|219761.261|108.329 +638932.962|219765.775|108.698 +638928.030|219770.295|108.771 +638923.117|219774.797|109.109 +638918.131|219779.366|109.262 +638913.229|219783.856|109.158 +638908.267|219788.397|109.158 +638903.336|219792.914|109.335 +638898.389|219797.447|109.253 +638893.512|219801.909|109.018 +638888.577|219806.420|108.408 +638883.746|219810.837|107.756 +638878.808|219815.351|107.204 +638873.934|219819.807|106.525 +638869.058|219824.266|105.891 +638864.102|219828.799|105.525 +638859.167|219833.313|105.007 +638854.272|219837.790|104.571 +638849.328|219842.313|104.160 +638844.299|219846.919|104.132 +638839.334|219851.470|104.486 +638834.259|219856.121|104.992 +638829.296|219860.672|105.382 +638824.188|219865.362|106.351 +638819.125|219870.011|107.406 +638814.041|219874.677|108.207 +638808.963|219879.338|108.997 +638803.983|219883.903|109.277 +638798.929|219888.530|109.295 +638793.973|219893.069|109.338 +638788.974|219897.647|109.323 +638783.985|219902.216|109.247 +638779.010|219906.767|108.975 +638774.036|219911.320|108.744 +638769.053|219915.880|108.628 +638764.014|219920.498|108.640 +638759.019|219925.070|108.725 +638753.977|219929.691|108.850 +638749.000|219934.247|108.765 +638743.983|219938.841|108.576 +638738.978|219943.419|108.223 +638734.013|219947.957|108.009 +638728.968|219952.575|108.271 +638723.875|219957.239|108.591 +638718.846|219961.844|108.750 +638713.832|219966.428|108.628 +638708.815|219971.019|108.604 +638703.783|219975.615|108.040 +638698.781|219980.190|107.796 +638693.724|219984.817|107.704 +638688.686|219989.422|107.296 +638678.576|219998.679|108.006 +638673.510|220003.315|108.204 +638668.505|220007.896|108.198 +638663.439|220012.532|108.421 +638658.383|220017.162|108.530 +638653.344|220021.768|108.262 +638648.245|220026.434|108.329 +638643.164|220031.092|109.064 +638638.113|220035.716|109.244 +638628.003|220044.972|109.817 +638617.862|220054.253|110.128 +638607.731|220063.526|110.310 +638602.607|220068.229|111.536 +638597.569|220072.840|111.694 +638592.475|220077.504|112.097 +638587.388|220082.164|112.441 +638582.295|220086.831|113.014 +638567.028|220100.821|114.831 +638546.725|220119.414|116.132 +638536.584|220128.698|116.672 +638531.470|220133.380|116.751 +638526.453|220137.967|116.702 +638521.338|220142.649|116.870 +638516.272|220147.285|117.040 +638511.210|220151.921|117.129 +638506.098|220156.599|117.354 +638501.035|220161.232|117.580 +638495.973|220165.868|117.793 +638490.867|220170.541|118.065 +638485.807|220175.174|118.397 +638480.748|220179.810|118.769 +638475.639|220184.486|119.058 +638470.583|220189.116|119.406 +638465.526|220193.749|119.741 +638460.421|220198.421|120.012 +638455.367|220203.048|120.390 +638450.310|220207.678|120.683 +638445.208|220212.347|120.905 +638440.203|220216.932|121.058 +638435.101|220221.601|121.375 +638430.053|220226.225|121.817 +638425.012|220230.849|122.768 +638419.967|220235.473|123.316 +638414.871|220240.136|123.703 +638409.879|220244.714|124.401 +638404.795|220249.375|125.176 +638399.753|220253.992|125.575 +638394.706|220258.613|125.867 +638389.661|220263.231|126.224 +638384.623|220267.849|126.675 +638379.584|220272.463|127.199 +638374.540|220277.081|127.492 +638369.493|220281.702|127.663 +638364.500|220286.274|128.071 +638359.462|220290.888|128.467 +638354.402|220295.512|128.312 +638349.351|220300.130|128.492 +638344.362|220304.696|129.016 +638339.375|220309.259|129.577 +638334.319|220313.883|129.589 +638324.318|220323.027|130.022 +638319.310|220327.605|130.116 +638314.263|220332.223|130.360 +638309.304|220336.755|130.510 +638304.247|220341.379|130.567 +638289.327|220355.022|131.168 +638269.344|220373.285|131.107 +638264.345|220377.848|130.683 +638254.369|220386.962|130.314 +638249.380|220391.518|130.180 +638244.424|220396.045|129.839 +638239.425|220400.611|129.577 +638234.466|220405.137|129.266 +638229.461|220409.709|128.989 +638224.505|220414.235|128.751 +638219.500|220418.807|128.537 +638214.535|220423.343|128.269 +638209.570|220427.878|127.995 +638204.589|220432.423|127.593 +638199.664|220436.922|127.269 +638194.689|220441.463|127.010 +638189.758|220445.965|126.690 +638184.777|220450.516|126.376 +638179.839|220455.024|126.056 +638174.890|220459.541|125.636 +638169.940|220464.061|125.209 +638165.035|220468.538|124.804 +638160.037|220473.101|124.471 +638155.181|220477.533|124.148 +638150.213|220482.069|123.652 +638140.313|220491.103|122.685 +638125.539|220504.584|121.015 +638120.583|220509.104|120.372 +638110.644|220518.166|118.452 +638105.758|220522.625|118.159 +638095.919|220531.602|116.976 +638086.107|220540.557|116.224 +638081.270|220544.976|116.068 +638076.390|220549.436|115.983 +638071.504|220553.898|115.870 +638052.079|220571.640|115.013 +638047.285|220576.020|114.974 +638037.565|220584.893|114.276 +638032.734|220589.310|114.404 +638027.973|220593.659|114.312 +638018.417|220602.398|114.739 +638013.699|220606.714|115.059 +638008.932|220611.072|115.398 +638004.223|220615.382|115.812 +637990.004|220628.382|116.452 +637980.686|220636.907|117.458 +637966.732|220649.681|119.555 +637962.066|220653.955|120.034 +637952.760|220662.468|120.896 +637948.142|220666.689|121.430 +637943.464|220670.966|121.539 +637934.155|220679.482|122.140 +637929.516|220683.725|122.576 +637924.910|220687.937|122.899 +637897.155|220713.312|124.453 +637874.137|220734.349|124.694 +637869.531|220738.555|124.609 +637864.941|220742.749|124.636 +637860.335|220746.956|124.596 +637837.326|220767.962|123.319 +637832.717|220772.169|123.094 +637828.142|220776.344|122.801 +637823.570|220780.520|122.539 +637810.077|220792.849|122.847 +637801.082|220801.067|122.768 +637792.145|220809.229|122.819 +637787.674|220813.314|122.713 +637783.190|220817.410|122.554 +637751.957|220845.915|120.768 +637725.598|220869.982|119.723 +637712.345|220882.071|118.110 +637707.975|220886.054|117.601 +637699.126|220894.119|116.138 +637694.710|220898.146|115.477 +637690.302|220902.160|114.645 +637681.686|220910.024|113.968 +637677.543|220913.813|114.413 +637673.337|220917.653|114.358 +637669.234|220921.405|114.776 +637665.263|220925.044|115.806 +637661.163|220928.793|116.025 +637652.848|220936.386|115.989 +637648.645|220940.227|115.797 +637644.424|220944.079|115.300 +637640.227|220947.911|114.937 +637636.145|220951.644|114.864 +637632.052|220955.384|114.757 +637627.980|220959.109|114.748 +637623.914|220962.828|114.791 +637615.782|220970.256|114.474 +637607.448|220977.863|113.355 +637599.697|220984.962|114.322 +637595.774|220988.547|114.410 +637591.873|220992.119|114.587 +637584.198|220999.141|115.300 +637580.342|221002.668|115.489 +637576.514|221006.176|116.013 +637572.792|221009.584|116.556 +637568.955|221013.095|116.854 +637561.618|221019.819|118.189 +637557.882|221023.242|118.708 +637554.160|221026.650|119.073 +637550.356|221030.128|119.128 +637542.962|221036.891|119.698 +637539.252|221040.287|119.945 +637531.791|221047.108|119.899 +637528.121|221050.464|120.134 +637524.418|221053.850|120.238 +637520.754|221057.203|120.305 +637517.124|221060.519|120.308 +637513.478|221063.851|120.265 +637509.833|221067.185|120.439 +637502.719|221073.693|120.875 +637499.192|221076.920|121.122 +637478.054|221096.245|121.490 +637474.668|221099.342|121.728 +637684.389|220905.129|114.453 +637701.979|220889.041|116.976 +637706.359|220885.033|117.516 +637710.815|220880.958|118.208 +637715.201|220876.944|118.574 +637728.415|220864.846|119.582 +637750.479|220844.638|120.704 +637755.039|220840.468|121.366 +637759.391|220836.479|121.256 +637768.374|220828.255|122.003 +637772.900|220824.110|122.341 +637777.381|220820.007|122.435 +637781.794|220815.962|122.478 +637786.266|220811.866|122.579 +637790.728|220807.779|122.643 +637804.215|220795.416|122.694 +637808.729|220791.280|122.560 +637813.186|220787.192|122.420 +637822.266|220778.871|122.542 +637831.410|220770.495|122.832 +637836.061|220766.237|123.014 +637845.290|220757.791|123.920 +637854.605|220749.260|124.560 +637863.798|220740.838|124.557 +637873.064|220732.346|124.468 +637877.669|220728.128|124.581 +637886.978|220719.606|124.535 +637891.632|220715.345|124.709 +637896.271|220711.093|124.490 +637914.828|220694.085|123.453 +637919.436|220689.857|122.798 +637928.739|220681.335|122.387 +637933.466|220677.004|122.231 +637938.111|220672.746|121.862 +637942.799|220668.445|121.475 +637952.141|220659.883|120.832 +637956.856|220655.558|120.329 +637961.553|220651.248|119.707 +637970.926|220642.653|118.680 +637975.626|220638.340|118.104 +637994.551|220620.985|116.126 +637999.337|220616.601|115.879 +638004.104|220612.231|115.504 +638008.874|220607.860|115.175 +638018.484|220599.048|114.334 +638028.125|220590.218|114.209 +638033.026|220585.728|114.236 +638037.836|220581.327|114.325 +638042.539|220576.999|112.734 +638052.546|220567.858|114.672 +638067.240|220554.416|115.526 +638072.190|220549.887|115.742 +638077.088|220545.403|115.961 +638082.005|220540.898|115.949 +638091.895|220531.855|116.961 +638096.848|220527.325|117.357 +638116.798|220509.092|120.204 +638136.777|220490.829|122.487 +638151.746|220477.140|123.941 +638156.748|220472.562|124.270 +638161.750|220467.987|124.618 +638166.748|220463.415|124.974 +638171.747|220458.843|125.386 +638176.697|220454.316|125.788 +638181.741|220449.702|126.221 +638186.719|220445.148|126.450 +638191.705|220440.588|126.834 +638196.722|220435.995|127.056 +638201.745|220431.399|127.361 +638206.726|220426.845|127.739 +638211.743|220422.251|128.053 +638216.760|220417.664|128.370 +638221.771|220413.080|128.629 +638226.776|220408.499|128.864 +638231.777|220403.921|129.080 +638236.788|220399.337|129.434 +638241.839|220394.716|129.717 +638246.844|220390.138|130.040 +638251.888|220385.520|130.293 +638256.924|220380.911|130.436 +638261.904|220376.352|130.491 +638266.951|220371.734|130.875 +638282.042|220357.923|131.400 +638287.053|220353.333|131.250 +638302.113|220339.532|130.540 +638307.127|220334.941|130.522 +638312.181|220330.311|130.330 +638317.201|220325.718|130.525 +638322.233|220321.100|129.897 +638327.238|220316.516|129.760 +638332.285|220311.892|129.464 +638342.393|220302.632|129.232 +638347.419|220298.021|128.446 +638352.472|220293.391|128.336 +638357.538|220288.758|128.577 +638362.577|220284.137|128.102 +638367.621|220279.513|127.800 +638372.672|220274.886|127.611 +638377.719|220270.263|127.355 +638382.760|220265.639|126.843 +638387.802|220261.015|126.361 +638392.849|220256.391|125.983 +638397.943|220251.722|125.639 +638402.941|220247.140|125.279 +638408.028|220242.471|124.538 +638413.122|220237.801|123.883 +638418.120|220233.217|123.429 +638423.220|220228.545|123.021 +638428.261|220223.915|122.067 +638433.312|220219.285|121.448 +638438.414|220214.606|121.100 +638443.519|220209.930|120.863 +638448.576|220205.297|120.640 +638453.681|220200.619|120.341 +638458.787|220195.937|119.893 +638463.847|220191.304|119.692 +638468.955|220186.622|119.418 +638474.015|220181.983|119.046 +638479.077|220177.347|118.750 +638484.186|220172.662|118.406 +638489.297|220167.978|118.092 +638494.357|220163.342|117.833 +638499.472|220158.657|117.507 +638504.586|220153.972|117.312 +638509.652|220149.330|117.104 +638514.767|220144.645|116.982 +638519.835|220140.003|116.836 +638524.904|220135.361|116.699 +638530.019|220130.676|116.690 +638535.136|220125.988|116.623 +638560.624|220102.628|114.684 +638570.786|220093.320|114.203 +638575.885|220088.638|113.273 +638586.066|220079.305|112.444 +638591.208|220074.596|112.097 +638596.258|220069.963|111.560 +638601.351|220065.296|111.264 +638606.496|220060.584|110.966 +638616.652|220051.273|110.143 +638626.805|220041.967|109.686 +638631.959|220037.236|109.314 +638637.007|220032.613|109.311 +638642.073|220027.967|108.890 +638647.169|220023.301|108.966 +638652.280|220018.613|108.671 +638657.340|220013.974|108.512 +638662.412|220009.323|108.149 +638667.466|220004.696|108.241 +638677.591|219995.418|108.055 +638682.617|219990.809|107.762 +638687.683|219986.167|107.729 +638692.749|219981.525|107.674 +638707.788|219967.760|108.774 +638712.799|219963.173|108.966 +638717.809|219958.586|109.128 +638722.851|219953.965|108.872 +638727.898|219949.335|108.536 +638732.903|219944.745|108.168 +638737.908|219940.164|108.518 +638742.873|219935.619|108.783 +638747.835|219931.077|109.106 +638752.865|219926.472|109.201 +638757.857|219921.897|109.143 +638762.847|219917.325|109.131 +638767.779|219912.808|109.271 +638772.759|219908.248|109.454 +638777.736|219903.688|109.676 +638782.680|219899.162|109.768 +638787.676|219894.587|109.814 +638792.629|219890.048|109.811 +638797.588|219885.504|109.740 +638802.495|219881.011|109.777 +638807.537|219876.387|109.408 +638812.535|219871.797|108.442 +638817.583|219867.158|107.518 +638822.588|219862.564|106.613 +638827.620|219857.938|105.431 +638832.619|219853.356|105.208 +638837.553|219848.830|104.647 +638842.513|219844.279|104.367 +638847.447|219839.762|104.416 +638852.330|219835.297|104.976 +638857.167|219830.868|105.504 +638862.014|219826.436|105.979 +638866.866|219821.995|106.385 +638871.716|219817.558|106.842 +638876.541|219813.147|107.567 +638881.387|219808.715|108.076 +638886.163|219804.347|108.792 +638890.961|219799.958|109.326 +638895.816|219795.514|109.768 +638900.711|219791.028|109.472 +638905.554|219786.593|109.640 +638910.383|219782.167|109.527 +638915.241|219777.720|109.625 +638920.093|219773.270|109.362 +638925.016|219768.753|108.936 +638929.820|219764.352|108.735 +638934.742|219759.837|108.393 +638939.610|219755.375|108.128 +638944.414|219750.974|108.009 +638949.245|219746.548|108.085 +638954.109|219742.086|107.515 +638959.096|219737.499|106.043 +638964.079|219732.917|104.662 +638968.910|219728.489|104.473 +639002.344|219697.844|104.156 +639007.224|219693.363|103.455 +639012.037|219688.944|102.916 +639016.545|219684.829|104.528 +639021.211|219680.559|105.053 +639025.859|219676.298|105.357 +639030.590|219671.966|105.808 +639035.198|219667.748|106.418 +639039.801|219663.536|107.080 +639044.419|219659.308|107.640 +639049.012|219655.102|108.058 +639053.651|219650.853|108.515 +639058.324|219646.574|108.783 +639062.938|219642.346|109.091 +639067.596|219638.079|109.167 +639072.232|219633.827|109.384 +639076.901|219629.550|109.423 +639081.482|219625.350|109.707 +639086.137|219621.086|109.875 +639090.745|219616.862|110.012 +639095.378|219612.613|110.045 +639109.308|219599.835|109.460 +639114.035|219595.495|109.000 +639118.717|219591.194|108.549 +639123.335|219586.958|108.213 +639127.928|219582.745|108.027 +639132.588|219578.469|107.784 +639137.203|219574.232|107.525 +639141.799|219570.017|107.387 +639146.371|219565.826|107.427 +639150.940|219561.638|107.494 +639155.476|219557.477|107.476 +639160.029|219553.301|107.390 +639164.608|219549.101|107.186 +639169.177|219544.910|107.055 +639173.752|219540.713|106.915 +639178.290|219536.550|106.714 +639182.816|219532.401|106.607 +639187.334|219528.256|106.558 +639191.860|219524.105|106.485 +639196.392|219519.950|106.403 +639200.861|219515.854|106.409 +639205.399|219511.687|106.324 +639209.877|219507.578|106.055 +639214.406|219503.424|105.802 +639218.932|219499.273|105.595 +639223.428|219495.146|105.296 +639227.939|219491.003|104.943 +639232.465|219486.849|104.537 +639236.946|219482.737|104.382 +639245.877|219474.541|103.775 +639254.844|219466.311|103.084 +639263.787|219458.103|102.346 +639255.072|219463.977|102.800 +639237.312|219480.213|104.315 +639232.889|219484.252|104.416 +639228.415|219488.342|104.787 +639219.408|219496.575|105.373 +639214.967|219500.632|105.635 +639210.437|219504.774|105.863 +639205.951|219508.874|106.141 +639201.504|219512.937|106.247 +639196.974|219517.073|106.257 +639192.497|219521.160|106.281 +639188.016|219525.251|106.345 +639183.481|219529.396|106.452 +639179.009|219533.480|106.525 +639174.422|219537.671|106.668 +639169.832|219541.865|106.860 +639165.296|219546.011|107.049 +639160.718|219550.193|107.220 +639156.149|219554.365|107.351 +639151.559|219558.556|107.348 +639146.981|219562.738|107.296 +639142.397|219566.923|107.302 +639137.803|219571.117|107.369 +639133.131|219575.390|107.628 +639128.480|219579.639|107.796 +639123.807|219583.910|108.098 +639119.098|219588.213|108.344 +639114.355|219592.551|108.826 +639109.618|219596.882|109.289 +639095.412|219609.876|110.225 +639090.800|219614.085|110.027 +639086.070|219618.407|109.978 +639081.376|219622.692|109.716 +639076.721|219626.944|109.539 +639071.939|219631.315|109.558 +639067.297|219635.552|109.335 +639062.542|219639.895|109.213 +639057.827|219644.202|108.872 +639053.148|219648.472|108.628 +639048.442|219652.767|108.244 +639043.705|219657.089|107.753 +639039.018|219661.369|107.281 +639034.314|219665.654|106.580 +639029.605|219669.952|105.955 +639024.869|219674.271|105.501 +639020.077|219678.645|105.120 +639015.347|219682.964|104.672 +639010.714|219687.176|103.190 +639005.852|219691.620|103.340 +639000.850|219696.204|104.178 +638966.627|219727.483|104.653 +638961.696|219731.991|104.821 +638956.560|219736.700|106.220 +638951.497|219741.348|107.912 +638946.483|219745.929|108.046 +638941.588|219750.407|108.082 +638936.635|219754.933|108.195 +638931.703|219759.444|108.573 +638926.683|219764.035|108.896 +638921.724|219768.567|109.131 +638916.686|219773.179|109.676 +638911.748|219777.693|109.820 +638906.740|219782.271|109.743 +638896.874|219791.284|109.622 +638891.890|219795.840|109.832 +638886.934|219800.361|109.375 +638882.064|219804.805|108.597 +638877.123|219809.310|108.000 +638872.206|219813.793|107.214 +638867.256|219818.310|106.747 +638862.303|219822.831|106.330 +638857.362|219827.339|105.775 +638852.361|219831.904|105.379 +638847.478|219836.361|104.797 +638842.412|219840.985|104.562 +638837.407|219845.560|104.757 +638832.338|219850.196|105.141 +638827.279|219854.822|105.443 +638822.170|219859.501|106.342 +638817.004|219864.235|107.378 +638811.898|219868.913|108.360 +638806.796|219873.592|109.356 +638801.685|219878.268|109.926 +638796.622|219882.895|109.981 +638791.559|219887.521|110.088 +638786.548|219892.100|110.131 +638781.498|219896.714|110.124 +638776.459|219901.320|110.027 +638771.421|219905.922|109.908 +638766.346|219910.555|109.670 +638761.366|219915.103|109.472 +638756.275|219919.754|109.460 +638751.237|219924.357|109.436 +638746.211|219928.950|109.314 +638741.157|219933.562|108.872 +638736.137|219938.149|108.655 +638731.081|219942.767|108.308 +638726.021|219947.400|108.762 +638720.922|219952.069|109.131 +638715.837|219956.717|109.268 +638710.769|219961.353|109.234 +638705.764|219965.928|108.978 +638695.690|219975.127|107.893 +638685.543|219984.408|108.119 +638680.487|219989.029|107.991 +638675.375|219993.708|108.049 +638670.294|219998.356|108.421 +638660.126|220007.656|108.512 +638655.063|220012.285|108.622 +638649.961|220016.952|108.622 +638644.846|220021.637|108.975 +638639.793|220026.258|109.000 +638634.684|220030.930|109.219 +638624.531|220040.217|109.457 +638614.369|220049.520|110.143 +638604.168|220058.859|110.810 +638599.071|220063.519|110.993 +638593.966|220068.195|111.652 +638588.861|220072.871|112.307 +638583.828|220077.476|112.295 +638578.732|220082.140|112.737 +638568.594|220091.427|113.870 +638553.342|220105.387|114.949 +638532.978|220124.028|116.592 +638527.955|220128.619|116.556 +638522.838|220133.304|116.699 +638517.769|220137.940|116.800 +638512.697|220142.579|116.976 +638507.631|220147.212|117.065 +638502.562|220151.848|117.217 +638497.494|220156.487|117.427 +638492.379|220161.168|117.784 +638487.319|220165.798|118.049 +638482.253|220170.434|118.357 +638477.191|220175.067|118.656 +638472.079|220179.746|118.964 +638467.065|220184.333|119.220 +638461.954|220189.009|119.479 +638456.894|220193.642|119.726 +638451.883|220198.229|120.137 +638446.778|220202.902|120.604 +638441.718|220207.532|120.789 +638436.707|220212.116|120.988 +638431.605|220216.788|121.536 +638426.554|220221.412|122.216 +638421.510|220226.039|123.161 +638416.456|220230.663|123.426 +638411.409|220235.284|123.926 +638406.413|220239.862|124.676 +638401.320|220244.525|125.240 +638396.318|220249.103|125.493 +638391.271|220253.724|125.944 +638386.226|220258.342|126.367 +638381.227|220262.917|126.773 +638376.137|220267.577|127.300 +638371.135|220272.155|127.498 +638366.085|220276.773|127.748 +638361.040|220281.391|128.111 +638356.042|220285.966|128.422 +638345.931|220295.214|128.507 +638335.891|220304.406|129.293 +638330.838|220309.027|129.409 +638315.832|220322.761|130.104 +638300.812|220336.502|130.586 +638280.814|220354.796|131.052 +638255.866|220377.604|130.586 +638250.864|220382.173|130.235 +638245.917|220386.696|130.001 +638240.912|220391.268|129.644 +638235.908|220395.840|129.376 +638230.903|220400.416|129.077 +638225.941|220404.948|128.784 +638220.985|220409.477|128.580 +638215.977|220414.055|128.361 +638211.002|220418.600|127.986 +638206.031|220423.141|127.663 +638201.054|220427.689|127.288 +638196.030|220432.279|126.995 +638191.056|220436.824|126.764 +638186.121|220441.332|126.431 +638181.147|220445.880|126.224 +638176.200|220450.397|125.831 +638171.250|220454.920|125.401 +638166.255|220459.483|125.029 +638161.305|220464.006|124.697 +638156.348|220468.532|124.304 +638151.441|220473.016|123.969 +638146.473|220477.551|123.511 +638136.591|220486.580|122.761 +638126.704|220495.605|121.597 +638106.888|220513.692|118.790 +638101.987|220518.169|118.327 +638092.170|220527.133|117.403 +638082.297|220536.143|116.102 +638077.448|220540.584|116.272 +638067.700|220549.490|115.855 +638048.156|220567.343|114.465 +638043.310|220571.771|113.992 +638033.700|220580.562|114.245 +638028.863|220584.985|114.349 +638024.059|220589.380|114.328 +638019.222|220593.796|114.081 +638014.467|220598.152|114.492 +638000.239|220611.173|115.364 +637995.499|220615.513|115.958 +637986.056|220624.151|116.336 +637976.733|220632.683|117.290 +637972.051|220636.971|118.001 +637962.760|220645.475|119.265 +637958.134|220649.712|119.671 +637953.534|220653.924|120.296 +637948.855|220658.204|120.728 +637944.238|220662.431|121.259 +637939.586|220666.683|121.558 +637934.926|220670.947|121.820 +637911.780|220692.122|123.353 +637893.373|220708.956|124.423 +637870.336|220730.012|124.560 +637865.718|220734.227|124.417 +637838.137|220759.419|123.170 +637833.516|220763.637|122.865 +637828.923|220767.831|122.432 +637810.820|220784.367|122.219 +637806.413|220788.399|122.365 +637801.942|220792.487|122.454 +637797.421|220796.617|122.588 +637788.536|220804.740|122.624 +637784.041|220808.842|122.402 +637779.624|220812.884|122.597 +637775.128|220816.990|122.405 +637748.449|220841.352|121.088 +637744.072|220845.351|121.116 +637730.667|220857.580|119.436 +637713.196|220873.536|118.641 +637708.740|220877.599|117.949 +637700.013|220885.564|117.004 +637695.545|220889.633|116.083 +637691.208|220893.589|115.556 +637686.788|220897.618|114.657 +637682.499|220901.532|114.395 +637674.066|220909.241|114.349 +637669.850|220913.087|114.251 +637665.769|220916.821|114.532 +637661.721|220920.530|115.202 +637657.704|220924.209|115.794 +637645.207|220935.615|115.431 +637640.973|220939.474|114.888 +637636.834|220943.250|114.788 +637632.710|220947.011|114.535 +637616.327|220961.962|114.175 +637612.304|220965.635|114.212 +637604.083|220973.127|113.371 +637592.428|220983.776|114.273 +637584.646|220990.884|114.748 +637580.842|220994.359|115.141 +637573.338|221001.223|116.391 +637569.574|221004.661|116.757 +637565.794|221008.115|117.068 +637558.400|221014.878|118.180 +637554.721|221018.243|118.711 +637551.027|221021.614|118.991 +637539.889|221031.786|119.649 +637536.210|221035.148|119.802 +637532.504|221038.531|119.869 +637528.767|221041.939|119.829 +637525.113|221045.276|119.909 +637517.782|221051.960|119.832 +637514.091|221055.328|119.811 +637510.494|221058.614|119.948 +637506.904|221061.891|119.927 +637503.368|221065.122|120.326 +637499.793|221068.386|120.579 +637496.336|221071.544|120.890 +637492.852|221074.726|121.106 +637489.286|221077.981|121.225 +637482.322|221084.336|121.317 +637471.949|221093.800|121.606 +637468.474|221096.973|121.521 +637465.033|221100.110|121.381 +637696.301|220886.408|116.336 +637709.538|220874.304|118.205 +637718.350|220866.245|119.153 +637722.690|220862.271|119.095 +637727.113|220858.223|119.464 +637731.450|220854.251|119.418 +637771.635|220817.480|122.137 +637776.146|220813.350|122.411 +637780.612|220809.263|122.448 +637785.132|220805.124|122.539 +637789.634|220801.000|122.548 +637798.616|220792.773|122.505 +637812.101|220780.417|122.076 +637816.666|220776.238|122.277 +637825.731|220767.932|122.073 +637830.386|220763.677|122.539 +637834.970|220759.483|122.920 +637839.630|220755.219|123.197 +637844.297|220750.951|123.517 +637853.611|220742.429|124.441 +637867.513|220729.701|124.538 +637872.116|220725.482|124.322 +637876.761|220721.224|124.383 +637881.437|220716.945|124.651 +637886.097|220712.672|124.551 +637895.363|220704.177|124.023 +637900.112|220699.830|124.212 +637918.653|220682.819|122.545 +637923.328|220678.534|122.347 +637927.955|220674.288|121.838 +637932.689|220669.951|121.722 +637937.425|220665.610|121.658 +637942.116|220661.310|121.280 +637946.783|220657.027|120.762 +637951.492|220652.708|120.204 +637956.158|220648.423|119.723 +637960.846|220644.119|119.040 +637965.546|220639.809|118.433 +637979.653|220626.858|116.422 +637984.444|220622.466|116.181 +637989.187|220618.116|115.971 +637998.751|220609.344|115.050 +638003.582|220604.915|114.815 +638008.395|220600.508|114.815 +638018.042|220591.663|114.297 +638022.910|220587.203|114.428 +638027.756|220582.766|114.392 +638032.532|220578.376|113.413 +638037.397|220573.920|113.566 +638042.371|220569.376|114.248 +638047.254|220564.901|114.200 +638052.207|220560.369|114.788 +638057.105|220555.882|114.928 +638067.018|220546.814|115.876 +638071.907|220542.340|116.010 +638076.869|220537.798|116.403 +638091.706|220524.216|117.296 +638101.686|220515.088|118.427 +638106.696|220510.513|119.494 +638141.617|220478.569|123.118 +638146.644|220473.970|123.670 +638151.606|220469.432|124.081 +638156.595|220464.863|124.313 +638161.594|220460.288|124.666 +638166.596|220455.709|125.084 +638171.592|220451.137|125.459 +638176.587|220446.568|125.880 +638181.626|220441.957|126.261 +638186.551|220437.449|126.465 +638191.574|220432.849|126.715 +638196.591|220428.256|126.956 +638201.617|220423.657|127.291 +638206.638|220419.063|127.638 +638211.612|220414.510|128.019 +638216.678|220409.877|128.355 +638221.637|220405.335|128.601 +638226.642|220400.754|128.845 +638231.692|220396.130|129.101 +638236.697|220391.549|129.394 +638241.702|220386.971|129.729 +638246.755|220382.350|130.080 +638276.876|220354.790|131.317 +638281.875|220350.209|130.936 +638332.130|220304.178|129.278 +638347.218|220290.352|128.278 +638352.320|220285.679|128.199 +638357.334|220281.089|128.406 +638362.375|220276.468|127.934 +638367.420|220271.848|127.583 +638372.467|220267.221|127.370 +638377.512|220262.600|126.946 +638382.605|220257.933|126.602 +638387.601|220253.352|126.184 +638392.694|220248.686|125.739 +638397.738|220244.059|125.343 +638402.786|220239.435|124.956 +638407.833|220234.808|124.432 +638412.872|220230.184|123.627 +638417.971|220225.512|123.234 +638423.022|220220.882|122.798 +638428.066|220216.252|121.871 +638433.165|220211.576|121.286 +638438.219|220206.943|120.814 +638443.324|220202.268|120.692 +638448.381|220197.635|120.375 +638453.486|220192.956|119.866 +638458.543|220188.320|119.476 +638463.606|220183.684|119.180 +638468.714|220179.002|118.927 +638473.774|220174.366|118.689 +638478.885|220169.685|118.430 +638483.997|220165.000|118.156 +638489.063|220160.358|117.769 +638494.122|220155.722|117.473 +638499.234|220151.040|117.281 +638504.303|220146.398|117.098 +638509.417|220141.713|116.967 +638514.532|220137.028|116.845 +638519.601|220132.386|116.708 +638524.670|220127.747|116.605 +638529.784|220123.068|116.818 +638565.400|220090.418|113.395 +638575.577|220081.091|112.630 +638580.616|220076.473|112.343 +638585.752|220071.767|112.109 +638590.845|220067.104|111.789 +638595.892|220062.477|111.435 +638601.004|220057.789|110.627 +638611.135|220048.511|110.493 +638626.394|220034.539|109.686 +638631.520|220029.842|108.917 +638641.622|220020.604|108.914 +638651.777|220011.310|108.796 +638656.843|220006.674|108.573 +638661.912|220002.035|108.317 +638666.981|219997.396|108.128 +638672.031|219992.778|108.296 +638682.102|219983.567|108.354 +638687.153|219978.940|107.738 +638692.148|219974.374|108.110 +638702.173|219965.218|109.167 +638707.178|219960.643|109.430 +638712.186|219956.065|109.658 +638717.218|219951.456|109.484 +638722.266|219946.839|109.167 +638727.277|219942.248|108.680 +638732.318|219937.631|108.488 +638737.271|219933.107|108.954 +638742.276|219928.535|109.369 +638747.244|219923.994|109.585 +638752.215|219919.449|109.844 +638757.199|219914.890|109.893 +638762.182|219910.333|109.996 +638767.154|219905.788|110.268 +638772.137|219901.234|110.429 +638777.075|219896.720|110.566 +638782.077|219892.145|110.536 +638787.033|219887.607|110.457 +638791.989|219883.074|110.438 +638796.954|219878.533|110.341 +638801.941|219873.967|110.039 +638806.958|219869.368|109.378 +638812.023|219864.722|108.256 +638817.086|219860.077|107.198 +638822.115|219855.463|106.052 +638827.123|219850.878|105.714 +638832.094|219846.325|105.278 +638837.041|219841.798|105.141 +638841.930|219837.327|105.117 +638846.886|219832.798|105.427 +638851.739|219828.363|105.796 +638856.640|219823.885|106.214 +638861.425|219819.514|106.790 +638866.327|219815.037|107.232 +638871.173|219810.608|107.717 +638875.995|219806.210|108.469 +638880.832|219801.793|109.082 +638885.660|219797.383|109.771 +638890.446|219793.009|109.972 +638895.429|219788.449|109.743 +638905.134|219779.573|109.929 +638914.866|219770.673|109.987 +638919.755|219766.193|109.414 +638924.641|219761.718|108.933 +638929.561|219757.213|108.600 +638934.416|219752.769|108.427 +638939.272|219748.328|108.283 +638948.964|219739.452|107.805 +638953.939|219734.886|106.418 +638958.980|219730.260|104.949 +638963.820|219725.828|104.687 +638968.849|219721.207|103.029 +638973.702|219716.763|102.733 +638997.427|219695.083|104.184 +639002.259|219690.657|103.495 +639007.126|219686.198|102.919 +639011.640|219682.089|104.510 +639016.298|219677.840|105.120 +639020.986|219673.558|105.507 +639025.618|219669.327|105.952 +639030.294|219665.057|106.452 +639034.900|219660.853|107.107 +639039.517|219656.635|107.680 +639044.175|219652.383|108.021 +639048.796|219648.165|108.613 +639053.410|219643.949|108.930 +639058.083|219639.679|109.210 +639062.701|219635.461|109.530 +639067.309|219631.248|109.622 +639072.006|219626.957|109.807 +639076.633|219622.723|109.807 +639081.242|219618.511|109.948 +639085.850|219614.298|110.106 +639090.468|219610.080|110.243 +639104.470|219597.266|109.527 +639109.131|219592.999|109.177 +639113.837|219588.689|108.597 +639118.513|219584.409|108.223 +639123.121|219580.191|107.951 +639127.727|219575.976|107.729 +639132.351|219571.745|107.427 +639136.953|219567.536|107.275 +639141.549|219563.329|107.180 +639146.091|219559.178|107.122 +639150.617|219555.039|107.171 +639155.153|219550.891|107.183 +639159.716|219546.718|107.064 +639164.239|219542.579|106.909 +639168.829|219538.378|106.689 +639173.337|219534.255|106.394 +639177.909|219530.073|106.324 +639182.429|219525.940|106.263 +639186.907|219521.843|106.177 +639191.372|219517.759|106.180 +639195.807|219513.702|106.098 +639200.284|219509.608|106.077 +639204.789|219505.487|105.940 +639209.291|219501.373|105.839 +639213.775|219497.267|105.583 +639218.277|219493.146|105.248 +639227.220|219484.959|104.461 +639231.688|219480.872|104.367 +639236.102|219476.836|104.306 +639249.446|219464.623|103.492 +639255.335|219457.283|103.184 +639246.373|219465.482|104.028 +639241.993|219469.487|104.114 +639237.647|219473.453|103.800 +639233.166|219477.549|104.163 +639228.689|219481.643|104.281 +639224.278|219485.675|104.339 +639215.232|219493.951|105.141 +639210.767|219498.035|105.534 +639206.256|219502.159|105.668 +639201.754|219506.274|105.781 +639197.258|219510.383|105.866 +639192.829|219514.430|105.903 +639188.309|219518.563|105.900 +639183.837|219522.648|105.927 +639179.357|219526.741|106.016 +639174.776|219530.929|106.113 +639170.298|219535.023|106.235 +639165.696|219539.232|106.500 +639161.148|219543.389|106.753 +639156.582|219547.562|106.860 +639152.025|219551.729|106.951 +639147.493|219555.868|106.909 +639142.955|219560.016|106.933 +639138.358|219564.216|107.009 +639133.753|219568.426|107.156 +639129.132|219572.650|107.406 +639124.508|219576.881|107.713 +639119.854|219581.136|107.921 +639115.178|219585.412|108.277 +639110.481|219589.710|108.796 +639105.790|219594.002|109.289 +639101.105|219598.281|109.466 +639096.427|219602.560|109.945 +639091.736|219606.849|110.225 +639087.033|219611.140|110.274 +639082.455|219615.319|109.911 +639077.770|219619.596|109.905 +639073.109|219623.851|109.768 +639068.431|219628.124|109.762 +639063.734|219632.409|109.573 +639059.086|219636.652|109.417 +639054.422|219640.904|109.042 +639049.747|219645.171|108.777 +639045.050|219649.454|108.341 +639040.414|219653.681|107.838 +639035.781|219657.906|107.339 +639031.044|219662.222|106.860 +639026.396|219666.459|106.153 +639021.708|219670.732|105.708 +639016.932|219675.088|105.214 +639012.247|219679.361|104.797 +639007.550|219683.637|103.757 +639002.856|219687.914|103.068 +638997.930|219692.425|104.059 +638993.233|219696.698|102.715 +638963.887|219723.511|104.239 +638958.992|219727.983|104.489 +638953.911|219732.640|105.848 +638948.787|219737.343|107.610 +638938.924|219746.356|108.192 +638934.014|219750.840|108.335 +638929.052|219755.372|108.549 +638924.132|219759.871|108.850 +638919.103|219764.467|109.259 +638914.083|219769.061|110.054 +638904.256|219778.031|109.929 +638894.286|219787.138|110.271 +638889.357|219791.637|110.003 +638884.404|219796.157|109.929 +638879.479|219800.647|109.216 +638874.584|219805.109|108.668 +638869.652|219809.605|107.997 +638864.711|219814.110|107.457 +638859.764|219818.621|106.958 +638854.833|219823.117|106.324 +638849.886|219827.628|105.857 +638844.875|219832.200|105.577 +638839.916|219836.726|105.269 +638834.877|219841.326|105.293 +638829.833|219845.931|105.397 +638824.764|219850.567|105.818 +638819.634|219855.258|106.397 +638814.556|219859.910|107.528 +638809.341|219864.683|108.594 +638804.230|219869.361|109.664 +638799.124|219874.031|110.182 +638794.086|219878.637|110.518 +638789.026|219883.257|110.554 +638783.921|219887.918|110.573 +638778.855|219892.548|110.758 +638773.807|219897.156|110.746 +638768.778|219901.743|110.496 +638763.746|219906.337|110.329 +638758.668|219910.973|110.155 +638753.584|219915.612|110.051 +638748.555|219920.202|109.920 +638743.492|219924.823|109.597 +638738.481|219929.395|109.225 +638733.379|219934.046|108.783 +638728.310|219938.670|108.573 +638723.247|219943.294|109.000 +638718.093|219948.003|109.423 +638712.997|219952.654|109.713 +638707.922|219957.284|109.701 +638702.862|219961.899|109.475 +638697.812|219966.501|109.091 +638692.727|219971.134|108.491 +638682.602|219980.373|108.287 +638677.478|219985.052|108.433 +638667.319|219994.314|108.052 +638662.193|219998.996|108.351 +638657.087|220003.657|108.308 +638651.973|220008.323|108.411 +638646.852|220012.999|108.695 +638641.789|220017.623|108.887 +638636.672|220022.292|109.170 +638631.563|220026.956|109.314 +638626.458|220031.619|109.509 +638621.358|220036.270|109.487 +638616.247|220040.940|109.865 +638606.042|220050.258|110.252 +638600.934|220054.924|110.725 +638595.822|220059.594|111.255 +638585.630|220068.899|111.764 +638580.527|220073.566|112.331 +638575.385|220078.260|112.633 +638570.289|220082.911|112.983 +638565.205|220087.553|113.069 +638560.103|220092.219|113.989 +638539.760|220110.800|115.385 +638534.624|220115.494|116.068 +638524.514|220124.726|116.742 +638519.396|220129.396|116.586 +638514.322|220134.026|116.659 +638509.250|220138.656|116.769 +638504.175|220143.289|117.065 +638499.106|220147.916|117.132 +638494.034|220152.549|117.415 +638488.633|220157.477|117.659 +638483.896|220161.802|117.869 +638478.828|220166.432|118.205 +638473.759|220171.059|118.403 +638468.693|220175.686|118.714 +638463.627|220180.313|119.037 +638458.561|220184.940|119.348 +638453.496|220189.564|119.784 +638448.482|220194.145|120.314 +638443.370|220198.814|120.570 +638438.356|220203.392|120.713 +638433.296|220208.013|121.164 +638428.240|220212.634|121.737 +638423.235|220217.212|122.630 +638418.181|220221.830|123.213 +638413.125|220226.448|123.539 +638408.126|220231.017|124.243 +638403.075|220235.631|124.801 +638398.071|220240.203|125.212 +638393.017|220244.818|125.569 +638388.015|220249.387|125.950 +638382.965|220253.998|126.456 +638377.963|220258.570|126.794 +638372.961|220263.139|127.148 +638367.953|220267.708|127.398 +638362.906|220272.320|127.748 +638357.910|220276.886|128.333 +638352.887|220281.464|128.010 +638347.876|220286.039|128.150 +638342.877|220290.605|128.589 +638327.878|220304.309|129.720 +638297.919|220331.662|130.830 +638282.981|220345.301|131.372 +638243.058|220381.716|129.967 +638238.096|220386.242|129.589 +638233.085|220390.811|129.251 +638228.120|220395.338|128.934 +638223.109|220399.907|128.669 +638218.147|220404.433|128.446 +638213.176|220408.965|128.144 +638208.146|220413.546|127.739 +638203.209|220418.048|127.291 +638198.237|220422.584|127.059 +638193.257|220427.125|126.757 +638188.282|220431.661|126.568 +638183.357|220436.153|126.398 +638178.370|220440.701|126.090 +638173.426|220445.209|125.764 +638168.467|220449.729|125.300 +638163.466|220454.289|124.910 +638158.558|220458.764|124.560 +638153.608|220463.275|124.292 +638148.649|220467.798|123.959 +638143.690|220472.318|123.636 +638138.752|220476.820|123.051 +638114.033|220499.348|120.933 +638109.053|220503.886|120.125 +638104.167|220508.339|119.826 +638099.156|220512.899|118.817 +638084.361|220526.377|116.912 +638069.651|220539.792|116.099 +638059.903|220548.683|115.788 +638054.999|220553.148|115.199 +638050.125|220557.595|114.873 +638045.240|220562.048|114.504 +638040.378|220566.480|114.376 +638035.535|220570.900|113.986 +638025.857|220579.727|113.813 +638006.780|220597.143|114.745 +638002.031|220601.480|114.892 +637978.327|220623.133|116.138 +637973.633|220627.428|116.778 +637969.024|220631.640|117.348 +637955.113|220644.375|119.488 +637950.447|220648.642|120.015 +637945.820|220652.873|120.497 +637936.520|220661.374|121.167 +637931.902|220665.598|121.725 +637927.178|220669.911|121.591 +637917.991|220678.311|122.469 +637908.759|220686.751|123.091 +637904.108|220691.000|123.200 +637899.533|220695.185|123.813 +637890.428|220703.506|124.414 +637885.747|220707.783|124.398 +637871.912|220720.417|124.209 +637848.994|220741.344|124.045 +637839.722|220749.802|123.170 +637825.942|220762.372|122.185 +637821.351|220766.563|121.814 +637816.840|220770.681|121.923 +637798.878|220787.089|122.143 +637790.009|220795.190|122.280 +637785.522|220799.290|122.350 +637781.081|220803.347|122.426 +637776.631|220807.410|122.481 +637772.205|220811.451|122.402 +637767.737|220815.527|122.124 +637741.039|220839.889|120.658 +637727.784|220851.984|119.771 +637710.191|220868.035|118.446 +637705.713|220872.116|117.650 +637697.017|220880.047|116.897 +637688.129|220888.145|115.562 +637683.761|220892.129|114.919 +637675.081|220900.045|114.212 +637670.697|220904.041|113.563 +637666.592|220907.796|113.971 +637662.471|220911.563|114.322 +637658.265|220915.404|114.300 +637654.247|220919.080|115.160 +637650.236|220922.752|115.797 +637641.741|220930.503|115.017 +637637.599|220934.289|114.879 +637629.217|220941.940|114.239 +637620.963|220949.480|113.995 +637616.967|220953.138|114.355 +637612.910|220956.841|114.233 +637608.844|220960.557|114.093 +637600.450|220968.210|112.740 +637592.848|220975.178|114.358 +637588.855|220978.823|114.379 +637584.890|220982.451|114.520 +637573.454|220992.917|115.824 +637569.687|220996.368|116.388 +637565.886|220999.846|116.836 +637550.868|221013.589|118.580 +637539.633|221023.867|119.256 +637535.887|221027.290|119.357 +637528.420|221034.114|119.491 +637524.637|221037.568|119.284 +637520.903|221040.981|119.278 +637517.264|221044.304|119.232 +637513.457|221047.782|118.961 +637509.891|221051.046|119.430 +637506.367|221054.268|119.662 +637502.765|221057.560|119.802 +637499.247|221060.781|120.274 +637495.699|221064.027|120.430 +637492.161|221067.258|120.445 +637488.668|221070.456|120.835 +637485.187|221073.641|121.073 +637481.663|221076.860|120.966 +637474.750|221083.181|121.280 +637471.266|221086.363|121.359 +637467.847|221089.487|121.475 +637683.075|220890.721|114.956 +637687.455|220886.725|115.647 +637691.854|220882.711|116.230 +637696.240|220878.712|116.995 +637700.605|220874.728|117.458 +637722.495|220854.742|119.372 +637744.676|220834.491|121.490 +637762.244|220818.437|121.567 +637766.804|220814.274|122.051 +637771.269|220810.196|122.313 +637775.759|220806.090|122.478 +637780.151|220802.079|122.393 +637784.595|220798.013|122.347 +637789.070|220793.922|122.204 +637797.979|220785.778|122.021 +637802.405|220781.727|121.652 +637811.406|220773.501|121.521 +637815.978|220769.322|121.750 +637820.489|220765.198|121.649 +637834.336|220752.552|122.691 +637838.932|220748.355|122.868 +637843.632|220744.069|123.670 +637848.265|220739.832|123.834 +637857.473|220731.423|124.148 +637866.791|220722.907|124.322 +637876.087|220714.412|124.429 +637885.317|220705.972|124.218 +637890.008|220701.690|124.285 +637899.222|220693.256|123.456 +637903.910|220688.967|123.249 +637908.536|220684.737|122.993 +637927.132|220667.720|121.384 +637936.526|220659.130|120.975 +637945.969|220650.492|120.277 +637950.636|220646.222|119.744 +637959.972|220637.672|118.388 +637964.708|220633.335|117.684 +637978.805|220620.427|115.870 +637983.621|220616.025|115.794 +637988.352|220611.694|115.084 +637993.189|220607.275|115.193 +638002.793|220598.490|114.584 +638007.652|220594.049|114.550 +638017.335|220585.195|114.264 +638022.206|220580.745|114.389 +638026.781|220576.535|112.097 +638036.772|220567.428|114.123 +638041.686|220562.941|114.288 +638046.636|220558.421|114.797 +638051.555|220553.931|115.056 +638066.420|220540.359|116.153 +638081.215|220526.847|116.845 +638091.161|220517.767|117.967 +638101.173|220508.635|119.387 +638106.218|220504.036|120.296 +638121.184|220490.371|121.600 +638131.181|220481.246|122.329 +638136.168|220476.695|122.877 +638141.197|220472.105|123.386 +638146.168|220467.566|123.868 +638151.173|220462.997|124.179 +638156.169|220458.434|124.420 +638161.167|220453.868|124.749 +638166.215|220449.260|125.096 +638171.217|220444.694|125.520 +638176.209|220440.137|125.874 +638181.251|220435.532|126.264 +638186.277|220430.944|126.483 +638191.291|220426.360|126.599 +638196.268|220421.816|126.904 +638201.291|220417.228|127.157 +638206.318|220412.638|127.556 +638211.344|220408.051|127.952 +638216.416|220403.418|128.358 +638221.381|220398.885|128.620 +638226.434|220394.268|128.854 +638231.448|220389.690|129.223 +638236.502|220385.072|129.516 +638241.555|220380.454|129.839 +638296.819|220329.906|130.820 +638311.919|220316.083|129.952 +638316.920|220311.502|129.677 +638321.989|220306.869|129.808 +638326.988|220302.291|129.479 +638332.045|220297.664|129.452 +638342.082|220288.471|128.605 +638347.123|220283.854|128.129 +638352.177|220279.230|127.971 +638357.246|220274.597|128.315 +638362.287|220269.979|127.785 +638367.335|220265.358|127.483 +638372.382|220260.735|127.184 +638377.430|220256.114|126.864 +638382.480|220251.490|126.623 +638387.521|220246.872|126.029 +638392.566|220242.251|125.486 +638397.616|220237.628|125.224 +638402.664|220233.004|124.807 +638407.711|220228.380|124.252 +638412.756|220223.756|123.542 +638417.806|220219.129|123.176 +638422.906|220214.460|122.633 +638427.953|220209.833|121.804 +638433.007|220205.203|121.219 +638438.064|220200.570|120.741 +638443.123|220195.940|120.555 +638448.180|220191.307|120.271 +638453.288|220186.631|119.787 +638458.348|220181.998|119.445 +638463.411|220177.362|119.092 +638468.519|220172.684|118.766 +638473.536|220168.090|118.430 +638478.648|220163.409|118.098 +638483.713|220158.773|117.854 +638488.776|220154.143|117.726 +638493.842|220149.501|117.394 +638498.960|220144.816|117.037 +638504.028|220140.180|116.931 +638509.097|220135.541|116.800 +638514.166|220130.899|116.592 +638519.235|220126.266|116.675 +638524.301|220121.633|116.854 +638539.538|220107.673|115.233 +638549.700|220098.370|114.581 +638554.784|220093.713|114.133 +638559.831|220089.086|113.294 +638580.183|220070.454|112.170 +638585.276|220065.790|111.828 +638590.324|220061.169|111.459 +638600.473|220051.873|110.697 +638610.672|220042.537|110.182 +638615.729|220037.907|109.829 +638620.773|220033.286|109.780 +638625.842|220028.638|109.195 +638630.886|220024.017|109.186 +638635.983|220019.351|109.198 +638641.042|220014.715|108.905 +638646.102|220010.082|108.765 +638651.165|220005.443|108.524 +638656.167|220000.865|108.604 +638661.223|219996.229|108.512 +638666.289|219991.593|108.366 +638676.357|219982.372|108.384 +638681.371|219977.782|108.372 +638691.417|219968.589|108.914 +638696.406|219964.023|109.335 +638701.399|219959.454|109.737 +638706.407|219954.876|109.960 +638711.424|219950.280|109.963 +638716.465|219945.662|109.689 +638721.470|219941.072|109.231 +638726.524|219936.439|108.811 +638731.507|219931.876|108.753 +638736.506|219927.304|109.213 +638741.502|219922.735|109.725 +638746.415|219918.239|110.033 +638751.426|219913.655|110.359 +638756.403|219909.098|110.487 +638761.384|219904.542|110.621 +638766.355|219899.991|110.877 +638771.332|219895.434|111.054 +638776.276|219890.911|111.100 +638781.242|219886.357|110.859 +638786.286|219881.739|110.899 +638791.199|219877.237|110.786 +638796.223|219872.638|110.576 +638801.227|219868.048|110.024 +638806.275|219863.415|109.045 +638811.341|219858.764|107.912 +638816.342|219854.170|107.003 +638821.393|219849.537|106.162 +638826.352|219844.993|105.805 +638831.336|219840.430|105.751 +638836.279|219835.897|105.604 +638841.196|219831.402|105.799 +638846.109|219826.903|106.004 +638850.989|219822.440|106.589 +638855.875|219817.972|107.128 +638860.767|219813.501|107.616 +638865.623|219809.057|107.985 +638870.484|219804.616|108.792 +638875.330|219800.181|109.253 +638880.131|219795.798|110.192 +638885.032|219791.308|110.185 +638889.918|219786.840|110.371 +638899.715|219777.863|110.100 +638904.671|219773.322|109.728 +638914.415|219764.397|109.667 +638919.414|219759.813|109.024 +638924.281|219755.351|108.671 +638929.253|219750.797|108.347 +638934.090|219746.365|108.305 +638943.850|219737.422|108.034 +638948.897|219732.783|106.424 +638953.914|219728.175|105.110 +638958.751|219723.743|104.854 +638963.811|219719.092|103.300 +638992.606|219692.736|104.175 +638997.473|219688.270|103.538 +639002.335|219683.814|102.986 +639006.931|219679.620|104.321 +639011.616|219675.344|105.056 +639016.289|219671.067|105.516 +639021.004|219666.760|106.058 +639025.670|219662.493|106.589 +639030.328|219658.235|107.208 +639035.003|219653.962|107.717 +639039.645|219649.716|108.128 +639044.318|219645.446|108.677 +639048.963|219641.200|109.109 +639053.636|219636.924|109.356 +639058.305|219632.653|109.655 +639062.984|219628.374|109.911 +639067.635|219624.116|110.030 +639072.363|219619.788|110.009 +639076.968|219615.575|110.158 +639081.641|219611.296|110.198 +639086.289|219607.044|110.432 +639090.907|219602.816|110.539 +639095.589|219598.531|110.304 +639100.319|219594.194|109.789 +639105.071|219589.835|109.183 +639109.774|219585.522|108.588 +639114.440|219581.246|108.229 +639119.174|219576.905|107.811 +639123.795|219572.675|107.494 +639128.416|219568.441|107.195 +639133.079|219564.168|106.964 +639137.691|219559.943|106.759 +639142.281|219555.740|106.689 +639146.826|219551.579|106.628 +639151.410|219547.382|106.634 +639155.973|219543.203|106.516 +639160.545|219539.015|106.345 +639165.098|219534.843|106.040 +639169.682|219530.643|105.860 +639174.212|219526.497|105.726 +639178.735|219522.352|105.629 +639183.243|219518.225|105.656 +639187.690|219514.156|105.741 +639192.177|219510.047|105.644 +639196.724|219505.881|105.501 +639201.196|219501.790|105.525 +639205.631|219497.727|105.476 +639210.136|219493.597|105.098 +639219.170|219485.319|104.294 +639223.574|219481.283|104.224 +639228.067|219477.165|103.989 +639236.903|219469.070|103.562 +639245.642|219461.075|103.699 +639245.587|219459.392|103.013 +639236.623|219467.573|103.391 +639227.616|219475.791|103.800 +639223.065|219479.942|104.016 +639218.530|219484.078|104.172 +639204.817|219496.599|105.333 +639200.278|219500.739|105.342 +639195.743|219504.875|105.354 +639191.128|219509.084|105.516 +639186.593|219513.220|105.568 +639182.033|219517.378|105.488 +639177.467|219521.541|105.470 +639172.886|219525.720|105.546 +639168.293|219529.911|105.711 +639163.650|219534.148|105.888 +639158.993|219538.400|106.171 +639154.354|219542.630|106.363 +639149.685|219546.892|106.479 +639145.088|219551.083|106.491 +639140.434|219555.328|106.564 +639135.722|219559.629|106.705 +639131.058|219563.881|106.860 +639126.364|219568.167|107.229 +639121.649|219572.470|107.457 +639116.915|219576.792|107.817 +639112.167|219581.127|108.274 +639107.415|219585.467|108.789 +639102.626|219589.841|109.259 +639097.804|219594.248|109.942 +639093.022|219598.622|110.438 +639088.307|219602.923|110.533 +639083.631|219607.187|110.420 +639078.977|219611.436|110.216 +639074.207|219615.786|110.094 +639069.540|219620.047|109.999 +639064.801|219624.372|110.051 +639060.058|219628.697|109.823 +639055.382|219632.961|109.515 +639050.649|219637.277|109.271 +639045.982|219641.532|108.945 +639041.291|219645.805|108.448 +639036.555|219650.124|107.945 +639031.864|219654.401|107.500 +639027.179|219658.668|107.006 +639022.470|219662.960|106.363 +639017.791|219667.221|105.854 +639013.030|219671.561|105.248 +639008.327|219675.847|104.608 +639003.581|219680.169|103.903 +638998.933|219684.399|102.892 +638993.971|219688.938|103.779 +638989.161|219693.327|103.590 +638959.967|219719.979|104.339 +638955.030|219724.487|104.528 +638950.037|219729.059|105.595 +638944.953|219733.713|107.003 +638939.973|219738.273|108.058 +638930.161|219747.231|108.271 +638925.202|219751.757|108.427 +638920.273|219756.259|108.796 +638915.332|219760.776|109.301 +638910.315|219765.363|110.064 +638905.439|219769.811|109.655 +638900.531|219774.291|109.957 +638895.600|219778.796|110.076 +638885.718|219787.815|110.106 +638880.789|219792.314|110.268 +638875.870|219796.798|109.926 +638870.996|219801.239|109.192 +638866.122|219805.679|108.448 +638861.212|219810.154|108.049 +638856.323|219814.610|107.461 +638851.422|219819.078|107.022 +638846.487|219823.574|106.433 +638841.583|219828.046|106.037 +638836.563|219832.627|105.845 +638831.619|219837.138|105.882 +638826.578|219841.740|105.961 +638821.576|219846.309|106.174 +638816.541|219850.903|106.232 +638811.444|219855.572|107.555 +638806.366|219860.220|108.722 +638801.197|219864.951|109.887 +638796.174|219869.544|110.551 +638791.090|219874.189|110.844 +638786.067|219878.774|110.999 +638781.062|219883.343|110.996 +638775.996|219887.970|111.161 +638770.991|219892.538|111.200 +638765.956|219897.132|111.033 +638760.924|219901.722|110.841 +638755.888|219906.315|110.722 +638750.856|219910.906|110.588 +638745.891|219915.435|110.216 +638740.825|219920.053|109.878 +638735.823|219924.613|109.369 +638730.773|219929.215|108.878 +638725.737|219933.815|108.890 +638720.678|219938.435|109.265 +638715.572|219943.102|109.682 +638710.464|219947.771|110.188 +638705.395|219952.398|110.115 +638700.326|219957.022|110.018 +638695.279|219961.625|109.612 +638690.234|219966.227|109.210 +638680.090|219975.475|108.421 +638675.028|219980.099|108.390 +638664.853|219989.383|108.268 +638649.504|220003.401|108.756 +638644.398|220008.061|108.732 +638639.281|220012.737|109.018 +638634.166|220017.406|109.262 +638623.952|220026.733|109.539 +638613.696|220036.103|109.887 +638608.593|220040.760|110.064 +638603.485|220045.430|110.454 +638598.337|220050.130|110.661 +638582.984|220064.160|111.804 +638577.888|220068.814|112.042 +638572.740|220073.523|112.673 +638521.585|220120.267|116.772 +638516.464|220124.943|116.787 +638511.344|220129.612|116.638 +638506.223|220134.288|116.754 +638501.151|220138.921|116.882 +638496.030|220143.597|117.089 +638490.913|220148.275|117.449 +638485.798|220152.945|117.717 +638480.681|220157.621|117.982 +638475.563|220162.293|118.269 +638470.497|220166.923|118.574 +638465.383|220171.596|118.854 +638460.268|220176.268|119.168 +638455.202|220180.895|119.573 +638450.091|220185.568|119.936 +638444.982|220190.237|120.399 +638439.917|220194.861|120.564 +638434.808|220199.528|120.872 +638429.752|220204.151|121.490 +638424.698|220208.775|122.204 +638419.644|220213.396|122.908 +638414.539|220218.059|123.210 +638409.485|220222.677|123.755 +638404.441|220227.292|124.545 +638399.387|220231.910|124.959 +638394.334|220236.527|125.300 +638389.280|220241.142|125.630 +638384.233|220245.757|126.145 +638379.188|220250.368|126.715 +638374.135|220254.986|126.949 +638369.081|220259.601|127.212 +638364.079|220264.170|127.568 +638359.029|220268.784|127.897 +638353.969|220273.405|127.913 +638348.958|220277.977|127.998 +638343.898|220282.595|128.077 +638333.901|220291.727|128.946 +638328.896|220296.299|129.193 +638323.879|220300.874|129.226 +638318.874|220305.446|129.464 +638308.852|220314.593|129.775 +638298.895|220323.688|130.485 +638293.939|220328.214|130.827 +638239.199|220378.147|129.729 +638234.192|220382.710|129.446 +638229.226|220387.236|129.080 +638224.310|220391.720|128.772 +638219.299|220396.289|128.556 +638214.328|220400.818|128.214 +638209.350|220405.356|127.794 +638204.416|220409.855|127.388 +638199.438|220414.394|127.047 +638194.455|220418.935|126.712 +638189.529|220423.428|126.489 +638184.552|220427.963|126.285 +638179.626|220432.459|126.114 +638174.685|220436.964|125.803 +638169.735|220441.472|125.441 +638164.779|220445.989|125.005 +638159.829|220450.503|124.685 +638154.876|220455.018|124.380 +638149.926|220459.532|124.121 +638145.019|220464.006|123.819 +638140.057|220468.529|123.487 +638135.168|220472.982|122.929 +638115.493|220490.920|121.817 +638110.506|220495.462|120.902 +638105.596|220499.933|120.341 +638100.658|220504.435|120.027 +638090.768|220513.439|118.369 +638080.904|220522.424|117.144 +638051.595|220549.146|115.465 +638046.712|220553.596|115.099 +638041.823|220558.052|114.690 +638036.995|220562.454|114.428 +638032.109|220566.910|114.102 +638027.238|220571.351|113.944 +638022.230|220575.898|112.292 +638012.891|220584.448|114.556 +638008.109|220588.810|114.404 +638003.336|220593.168|114.733 +637998.495|220597.579|114.559 +637993.795|220601.870|114.715 +637979.567|220614.861|115.474 +637974.861|220619.153|115.684 +637970.137|220623.469|116.114 +637965.507|220627.699|116.894 +637960.846|220631.954|117.467 +637942.388|220648.825|120.424 +637937.779|220653.028|120.722 +637933.097|220657.298|120.863 +637928.489|220661.511|121.515 +637914.553|220674.224|122.152 +637909.932|220678.446|122.432 +637905.418|220682.566|123.127 +637882.424|220703.552|124.310 +637877.782|220707.783|124.267 +637873.119|220712.035|124.115 +637854.745|220728.786|123.883 +637850.185|220732.944|123.856 +637831.775|220749.711|122.362 +637822.616|220758.059|122.015 +637813.487|220766.377|121.344 +637808.967|220770.495|121.167 +637804.444|220774.619|120.972 +637786.766|220790.752|122.124 +637782.349|220794.782|122.332 +637777.896|220798.842|122.353 +637755.642|220819.126|121.478 +637733.404|220839.383|119.896 +637724.669|220847.345|119.683 +637715.884|220855.346|119.070 +637702.726|220867.330|117.744 +637689.589|220879.291|116.230 +637672.234|220895.092|114.300 +637667.875|220899.060|113.779 +637659.566|220906.638|114.200 +637655.393|220910.441|114.093 +637651.343|220914.142|114.800 +637647.292|220917.842|115.288 +637643.211|220921.567|115.644 +637634.783|220929.245|114.748 +637630.549|220933.100|114.477 +637626.437|220936.849|114.297 +637618.180|220944.375|114.081 +637609.993|220951.839|113.986 +637605.988|220955.494|114.126 +637601.913|220959.210|113.962 +637597.655|220963.077|112.837 +637589.934|220970.134|114.200 +637586.021|220973.706|114.340 +637578.245|220980.805|115.093 +637574.405|220984.310|115.574 +637570.638|220987.754|116.141 +637566.818|220991.241|116.510 +637563.027|220994.704|116.998 +637559.375|220998.044|117.845 +637555.565|221001.519|118.065 +637551.767|221004.988|118.339 +637540.410|221015.348|118.753 +637536.567|221018.850|118.683 +637532.867|221022.227|118.991 +637529.057|221025.702|118.860 +637525.329|221029.097|118.869 +637521.504|221032.584|118.720 +637517.755|221036.001|118.665 +637514.027|221039.400|118.494 +637506.800|221045.995|119.086 +637503.136|221049.339|119.195 +637492.529|221059.020|120.247 +637489.021|221062.220|120.384 +637485.473|221065.457|120.585 +637481.904|221068.712|120.710 +637478.387|221071.919|120.634 +637474.930|221075.073|121.006 +637471.474|221078.228|121.177 +637467.965|221081.422|120.972 +637464.479|221084.601|121.061 +637457.520|221090.944|120.908 +637677.303|220888.700|114.450 +637681.710|220884.674|115.257 +637686.084|220880.678|115.946 +637690.464|220876.676|116.681 +637703.518|220864.737|118.125 +637712.281|220856.720|119.086 +637751.902|220820.464|121.399 +637756.353|220816.392|121.542 +637760.827|220812.296|121.832 +637774.183|220800.073|122.457 +637778.560|220796.059|122.048 +637783.059|220791.938|122.024 +637787.512|220787.863|122.036 +637796.309|220779.801|121.536 +637800.799|220775.683|121.265 +637805.252|220771.605|121.061 +637809.763|220767.475|121.219 +637814.271|220763.351|121.369 +637818.800|220759.202|121.375 +637828.005|220750.781|122.006 +637832.611|220746.568|122.518 +637837.268|220742.313|123.054 +637855.794|220725.360|124.002 +637860.384|220721.157|123.975 +637864.993|220716.936|124.081 +637874.265|220708.450|124.063 +637878.916|220704.195|124.188 +637888.142|220695.743|123.706 +637892.763|220691.506|123.383 +637897.423|220687.239|123.335 +637906.692|220678.744|122.615 +637911.368|220674.462|122.384 +637915.934|220670.277|121.759 +637920.637|220665.970|121.756 +637929.994|220657.396|121.103 +637944.000|220644.561|119.872 +637957.975|220631.738|117.473 +637962.632|220627.471|116.906 +637967.311|220623.176|116.166 +637972.072|220618.814|115.660 +637976.812|220614.471|115.370 +637986.340|220605.744|114.861 +638005.637|220588.072|114.398 +638015.336|220579.193|114.297 +638020.066|220574.847|112.883 +638025.031|220570.314|113.837 +638029.945|220565.819|113.977 +638039.814|220556.793|114.700 +638044.727|220552.298|114.919 +638049.677|220547.774|115.492 +638054.609|220543.266|115.928 +638059.544|220538.749|115.989 +638079.325|220520.659|117.382 +638084.284|220516.124|117.818 +638089.320|220511.528|118.537 +638094.291|220506.983|119.159 +638099.351|220502.365|120.219 +638104.276|220497.860|120.488 +638119.248|220484.175|121.932 +638129.227|220475.046|122.569 +638134.250|220470.456|122.999 +638139.219|220465.911|123.453 +638144.230|220461.330|123.840 +638149.228|220456.758|124.136 +638154.221|220452.192|124.377 +638159.259|220447.583|124.621 +638164.252|220443.018|124.947 +638169.303|220438.400|125.416 +638174.292|220433.837|125.749 +638179.318|220429.241|125.968 +638184.341|220424.644|126.197 +638189.368|220420.048|126.498 +638194.427|220415.418|126.651 +638199.405|220410.867|126.983 +638204.480|220406.228|127.404 +638209.500|220401.638|127.748 +638214.529|220397.041|128.254 +638219.592|220392.411|128.614 +638224.590|220387.836|128.790 +638229.647|220383.213|129.107 +638234.707|220378.592|129.510 +638239.702|220374.026|129.680 +638269.935|220346.405|130.933 +638290.058|220328.010|130.887 +638295.103|220323.392|130.494 +638300.160|220318.769|130.308 +638315.275|220304.946|129.772 +638320.316|220300.328|129.336 +638325.373|220295.707|129.202 +638330.423|220291.087|128.955 +638345.611|220277.191|127.989 +638355.734|220267.940|128.178 +638360.775|220263.325|127.657 +638365.823|220258.708|127.306 +638370.922|220254.044|127.114 +638375.976|220249.423|126.989 +638381.020|220244.806|126.514 +638386.061|220240.191|125.874 +638391.106|220235.570|125.444 +638396.156|220230.949|125.041 +638401.253|220226.286|124.709 +638406.255|220221.708|124.237 +638411.348|220217.044|123.466 +638416.398|220212.421|123.085 +638421.452|220207.797|122.661 +638426.502|220203.173|121.899 +638431.556|220198.546|121.286 +638436.613|220193.919|120.774 +638441.669|220189.289|120.494 +638446.778|220184.617|120.290 +638451.837|220179.987|119.936 +638456.900|220175.357|119.424 +638461.960|220170.724|119.083 +638467.026|220166.091|118.729 +638472.137|220161.415|118.476 +638477.203|220156.782|118.153 +638482.269|220152.146|117.882 +638487.328|220147.516|117.626 +638492.446|220142.835|117.257 +638497.466|220138.244|116.982 +638502.584|220133.563|116.803 +638507.653|220128.930|116.742 +638512.721|220124.297|116.766 +638527.952|220110.355|115.282 +638533.027|220105.713|115.154 +638543.134|220096.468|114.675 +638553.269|220087.187|113.261 +638558.313|220082.569|112.685 +638568.430|220073.319|112.456 +638573.468|220068.713|112.356 +638578.561|220064.050|111.969 +638583.615|220059.423|111.386 +638588.656|220054.814|111.252 +638593.707|220050.191|110.877 +638603.820|220040.937|110.006 +638608.807|220036.380|110.243 +638623.983|220022.509|109.430 +638629.039|220017.885|109.234 +638634.056|220013.300|108.948 +638639.052|220008.741|109.173 +638644.124|220004.102|108.792 +638649.132|219999.523|108.750 +638654.185|219994.912|108.878 +638659.212|219990.315|108.543 +638669.221|219981.174|108.863 +638674.220|219976.612|109.155 +638679.261|219972.000|108.661 +638684.211|219967.483|109.036 +638689.198|219962.932|109.567 +638694.151|219958.415|109.914 +638699.153|219953.846|110.219 +638704.121|219949.308|110.301 +638709.095|219944.766|110.344 +638714.100|219940.191|109.914 +638719.111|219935.607|109.436 +638724.119|219931.026|109.036 +638729.102|219926.475|109.055 +638734.007|219921.997|109.494 +638738.954|219917.483|110.051 +638743.870|219913.000|110.399 +638748.826|219908.477|110.856 +638753.758|219903.975|111.008 +638758.689|219899.470|111.170 +638763.627|219894.959|111.249 +638768.565|219890.451|111.380 +638773.515|219885.930|111.395 +638778.483|219881.386|111.179 +638783.439|219876.860|111.173 +638788.407|219872.321|111.024 +638793.394|219867.758|110.685 +638798.350|219863.226|110.192 +638803.358|219858.639|109.149 +638808.433|219853.990|107.970 +638813.453|219849.391|106.909 +638818.412|219844.855|106.552 +638823.353|219840.341|106.433 +638828.294|219835.824|106.324 +638833.231|219831.316|106.308 +638838.154|219826.820|106.439 +638843.031|219822.367|106.592 +638847.862|219817.960|107.192 +638852.702|219813.543|107.707 +638857.530|219809.142|108.372 +638862.419|219804.677|108.466 +638867.238|219800.284|109.228 +638872.054|219795.892|110.021 +638876.858|219791.512|110.490 +638881.783|219787.010|110.316 +638896.450|219773.608|110.021 +638901.339|219769.137|109.829 +638911.077|219760.237|109.451 +638916.015|219755.723|108.954 +638920.904|219751.254|108.866 +638925.784|219746.792|108.488 +638930.682|219742.314|108.384 +638935.577|219737.840|107.954 +638940.500|219733.332|107.317 +638945.508|219728.745|106.052 +638950.497|219724.176|104.995 +638955.353|219719.738|104.982 +638984.653|219692.943|102.828 +638989.320|219688.694|104.031 +638994.184|219684.238|103.437 +638999.049|219679.794|103.254 +639003.691|219675.563|104.309 +639008.367|219671.296|105.101 +639013.082|219666.995|105.668 +639017.797|219662.691|106.220 +639022.519|219658.385|106.766 +639027.133|219654.175|107.354 +639031.870|219649.850|107.805 +639036.555|219645.574|108.283 +639041.236|219641.304|108.808 +639045.906|219637.039|109.405 +639050.600|219632.754|109.554 +639055.324|219628.438|109.832 +639060.009|219624.162|110.082 +639064.721|219619.855|110.164 +639069.449|219615.536|110.173 +639074.167|219611.223|110.246 +639078.824|219606.968|110.417 +639083.512|219602.685|110.725 +639088.218|219598.385|110.637 +639092.964|219594.041|110.332 +639097.753|219589.661|109.801 +639102.568|219585.254|109.155 +639107.299|219580.926|108.716 +639112.054|219576.573|108.180 +639116.858|219572.175|107.662 +639121.524|219567.908|107.387 +639126.209|219563.622|107.037 +639130.945|219559.291|106.711 +639135.615|219555.021|106.497 +639140.269|219550.766|106.391 +639144.884|219546.544|106.238 +639149.535|219542.292|106.193 +639154.171|219538.055|105.982 +639158.768|219533.852|105.714 +639163.352|219529.661|105.546 +639167.991|219525.418|105.373 +639172.572|219521.230|105.266 +639177.101|219517.088|105.162 +639181.652|219512.931|105.263 +639186.172|219508.801|105.266 +639190.720|219504.640|105.135 +639195.261|219500.489|105.062 +639199.748|219496.389|105.028 +639208.828|219488.086|104.486 +639213.388|219483.911|104.132 +639226.833|219471.618|103.635 +639231.395|219467.442|103.111 +639235.815|219463.404|103.068 +639237.373|219460.191|102.739 +639232.968|219464.205|102.693 +639228.442|219468.341|103.026 +639223.977|219472.420|103.327 +639214.942|219480.671|104.010 +639210.501|219484.721|103.989 +639205.942|219488.888|104.336 +639201.394|219493.042|104.650 +639196.871|219497.169|104.851 +639192.347|219501.299|104.818 +639187.858|219505.396|104.891 +639183.307|219509.550|105.040 +639178.744|219513.714|104.995 +639174.227|219517.835|105.004 +639169.652|219522.008|105.056 +639165.068|219526.196|105.199 +639160.484|219530.377|105.345 +639155.835|219534.620|105.589 +639151.260|219538.799|105.744 +639146.630|219543.027|105.943 +639142.025|219547.230|106.025 +639137.343|219551.503|106.263 +639132.735|219555.712|106.403 +639128.062|219559.977|106.644 +639123.374|219564.259|106.988 +639118.650|219568.575|107.293 +639113.953|219572.864|107.735 +639109.201|219577.207|108.238 +639104.449|219581.550|108.777 +639099.703|219585.885|109.301 +639094.900|219590.271|109.893 +639090.120|219594.632|110.356 +639085.375|219598.964|110.661 +639080.681|219603.243|110.676 +639075.996|219607.510|110.335 +639071.290|219611.796|110.152 +639066.556|219616.112|110.149 +639061.780|219620.467|110.137 +639057.077|219624.750|109.981 +639052.395|219629.017|109.731 +639047.607|219633.382|109.524 +639042.943|219637.628|109.173 +639038.210|219641.934|108.640 +639033.482|219646.238|108.082 +639028.791|219650.512|107.646 +639024.073|219654.803|107.043 +639019.352|219659.101|106.488 +639014.576|219663.450|105.985 +639009.863|219667.739|105.406 +639005.118|219672.055|104.699 +639000.436|219676.313|103.913 +638995.736|219680.589|102.919 +638990.768|219685.125|103.501 +638985.848|219689.617|104.108 +638981.179|219693.854|102.565 +638956.630|219716.254|103.992 +638951.631|219720.823|105.050 +638946.663|219725.352|105.150 +638941.673|219729.912|106.214 +638936.562|219734.588|107.512 +638931.621|219739.102|108.296 +638926.625|219743.659|108.360 +638921.730|219748.124|108.427 +638916.756|219752.659|108.753 +638911.788|219757.192|109.073 +638901.839|219766.272|109.911 +638891.954|219775.285|109.887 +638886.928|219779.872|110.457 +638877.013|219788.912|110.445 +638872.093|219793.399|110.560 +638867.174|219797.877|109.807 +638862.315|219802.293|108.917 +638857.393|219806.777|108.655 +638852.455|219811.276|108.107 +638847.569|219815.723|107.531 +638842.628|219820.218|107.000 +638837.657|219824.751|106.814 +638832.683|219829.283|106.677 +638827.699|219833.825|106.653 +638822.658|219838.424|106.750 +638817.732|219842.911|106.671 +638812.676|219847.529|107.022 +638807.579|219852.183|107.814 +638802.465|219856.859|108.878 +638797.347|219861.534|109.990 +638792.291|219866.152|110.509 +638787.228|219870.776|111.115 +638782.211|219875.351|111.249 +638777.200|219879.920|111.304 +638772.131|219884.544|111.511 +638767.077|219889.152|111.584 +638762.045|219893.739|111.414 +638757.053|219898.290|111.356 +638752.033|219902.862|111.060 +638747.000|219907.446|110.914 +638741.989|219912.012|110.545 +638736.942|219916.609|110.003 +638731.998|219921.107|109.372 +638726.932|219925.722|109.045 +638721.894|219930.315|109.091 +638716.779|219934.985|109.561 +638711.713|219939.609|110.076 +638706.617|219944.257|110.365 +638701.539|219948.887|110.405 +638696.519|219953.462|110.310 +638691.463|219958.071|110.060 +638686.421|219962.661|109.554 +638681.371|219967.260|109.173 +638676.317|219971.863|108.896 +638671.251|219976.484|108.878 +638661.077|219985.756|108.741 +638650.948|219994.991|108.796 +638645.840|219999.648|108.783 +638640.719|220004.318|109.055 +638635.663|220008.927|108.988 +638630.502|220013.633|109.146 +638625.437|220018.257|109.442 +638620.328|220022.911|109.564 +638615.214|220027.580|109.948 +638610.126|220032.213|109.600 +638605.012|220036.883|110.091 +638599.852|220041.592|110.505 +638589.662|220050.882|110.585 +638584.554|220055.546|111.066 +638579.454|220060.197|111.341 +638574.288|220064.918|112.350 +638564.108|220074.203|112.599 +638558.969|220078.887|112.761 +638538.547|220097.532|114.916 +638533.463|220102.168|115.117 +638507.918|220125.476|116.751 +638502.843|220130.103|116.766 +638497.722|220134.773|116.839 +638492.598|220139.445|117.138 +638487.527|220144.075|117.531 +638482.412|220148.742|117.735 +638477.291|220153.411|118.010 +638472.219|220158.038|118.330 +638467.102|220162.708|118.659 +638462.033|220167.331|119.003 +638456.918|220172.001|119.393 +638451.804|220176.668|119.899 +638446.738|220181.291|120.201 +638441.627|220185.955|120.427 +638436.512|220190.618|120.619 +638431.449|220195.239|121.125 +638426.393|220199.857|121.798 +638421.290|220204.517|122.576 +638416.231|220209.135|123.014 +638411.171|220213.750|123.344 +638406.075|220218.407|124.060 +638401.021|220223.019|124.657 +638395.964|220227.633|124.968 +638390.911|220232.245|125.328 +638385.860|220236.856|125.794 +638380.810|220241.465|126.343 +638375.759|220246.074|126.834 +638370.751|220250.643|127.041 +638365.695|220255.254|127.196 +638360.641|220259.866|127.477 +638355.642|220264.429|128.010 +638350.570|220269.050|127.745 +638345.511|220273.667|127.888 +638340.518|220278.230|128.498 +638335.458|220282.848|128.617 +638330.451|220287.423|128.836 +638320.386|220296.610|129.303 +638315.369|220301.188|129.342 +638310.383|220305.748|130.068 +638300.348|220314.904|130.199 +638295.335|220319.482|130.345 +638290.327|220324.057|130.598 +638285.361|220328.586|130.842 +638235.429|220374.139|129.604 +638230.415|220378.708|129.266 +638225.499|220383.191|128.928 +638220.488|220387.763|128.662 +638215.522|220392.290|128.425 +638210.539|220396.831|127.949 +638205.555|220401.373|127.498 +638200.624|220405.868|127.148 +638195.589|220410.459|126.727 +638190.712|220414.906|126.532 +638185.725|220419.450|126.191 +638180.739|220423.998|125.877 +638175.813|220428.494|125.739 +638170.827|220433.038|125.505 +638165.877|220437.552|125.115 +638160.924|220442.070|124.749 +638155.971|220446.584|124.432 +638151.030|220451.089|124.270 +638146.125|220455.563|124.008 +638141.163|220460.083|123.679 +638136.195|220464.616|123.267 +638131.269|220469.105|122.874 +638126.292|220473.644|122.451 +638121.354|220478.143|121.981 +638111.528|220487.107|121.643 +638106.565|220491.627|121.018 +638101.606|220496.144|120.479 +638091.731|220505.145|119.390 +638067.100|220527.588|116.745 +638057.304|220536.518|115.977 +638052.448|220540.947|115.806 +638028.061|220563.185|114.364 +638013.574|220576.401|114.218 +638008.761|220580.790|114.224 +638003.872|220585.250|114.020 +637994.374|220593.924|114.709 +637980.040|220607.009|115.026 +637975.273|220611.362|115.120 +637970.521|220615.702|115.346 +637956.457|220628.562|117.147 +637951.855|220632.774|118.150 +637928.638|220654.001|120.762 +637919.311|220662.523|121.344 +637914.639|220666.790|121.594 +637910.091|220670.950|122.359 +637905.415|220675.221|122.289 +637896.232|220683.615|123.307 +637886.999|220692.049|123.746 +637877.803|220700.446|124.161 +637873.128|220704.713|123.901 +637868.489|220708.947|123.914 +637859.302|220717.335|123.920 +637854.614|220721.611|123.685 +637850.076|220725.757|123.767 +637840.804|220734.212|123.127 +637831.583|220742.624|122.597 +637826.938|220746.855|121.875 +637822.266|220751.113|121.308 +637817.794|220755.197|121.341 +637808.681|220763.515|121.061 +637804.179|220767.624|120.978 +637799.649|220771.757|120.762 +637773.165|220795.949|122.246 +637768.767|220799.963|122.313 +637759.806|220808.138|121.637 +637755.353|220812.201|121.478 +637750.939|220816.228|121.283 +637746.504|220820.272|120.991 +637724.364|220840.468|119.509 +637711.269|220852.414|118.833 +637689.418|220872.335|116.583 +637685.081|220876.289|116.062 +637676.242|220884.338|114.553 +637671.990|220888.215|114.251 +637663.452|220896.003|113.544 +637655.244|220903.504|114.181 +637651.068|220907.314|114.081 +637647.048|220910.993|114.681 +637643.040|220914.657|115.370 +637638.895|220918.436|115.202 +637630.577|220926.017|114.584 +637626.401|220929.821|114.343 +637622.222|220933.628|113.867 +637618.226|220937.273|113.995 +637614.044|220941.083|113.544 +637610.128|220944.661|114.035 +637602.020|220952.053|113.645 +637582.281|220970.070|114.846 +637578.431|220973.584|115.266 +637570.817|220980.539|116.047 +637563.057|220987.623|116.486 +637559.427|220990.942|117.418 +637555.660|220994.380|117.808 +637551.862|220997.849|118.080 +637540.490|221008.225|118.394 +637532.891|221015.153|118.183 +637529.233|221018.493|118.653 +637525.423|221021.965|118.537 +637521.690|221025.373|118.519 +637517.907|221028.820|118.321 +637514.240|221032.164|118.382 +637510.479|221035.590|118.089 +637506.934|221038.830|118.644 +637503.341|221042.109|118.820 +637499.683|221045.447|118.948 +637482.038|221061.552|120.415 +637478.542|221064.744|120.613 +637474.976|221067.999|120.759 +637471.532|221071.141|120.975 +637461.040|221080.709|121.073 +637457.587|221083.858|121.100 +637675.099|220883.201|114.413 +637688.254|220871.208|116.355 +637692.619|220867.224|116.803 +637701.427|220859.189|117.872 +637710.288|220851.103|118.802 +637727.829|220835.086|119.753 +637732.371|220830.949|120.494 +637745.633|220818.837|121.058 +637750.113|220814.746|121.332 +637754.563|220810.683|121.466 +637759.013|220806.620|121.618 +637767.984|220798.430|122.094 +637772.449|220794.349|122.134 +637781.340|220786.226|122.027 +637790.219|220778.106|121.381 +637794.669|220774.037|121.137 +637799.122|220769.965|120.927 +637803.667|220765.817|120.948 +637808.217|220761.659|121.042 +637812.683|220757.578|120.951 +637817.285|220753.375|121.082 +637821.857|220749.199|121.350 +637826.512|220744.956|121.817 +637840.389|220732.285|122.908 +637845.043|220728.040|123.176 +637849.686|220723.803|123.712 +637854.258|220719.627|123.533 +637858.930|220715.360|123.691 +637863.493|220711.187|123.505 +637868.138|220706.938|123.545 +637872.823|220702.659|123.831 +637891.291|220685.764|123.222 +637895.963|220681.490|123.225 +637919.183|220660.240|121.603 +637923.898|220655.924|121.347 +637928.513|220651.699|120.732 +637956.418|220626.139|116.778 +637961.099|220621.850|116.013 +637965.812|220617.534|115.486 +637970.551|220613.194|115.181 +637975.297|220608.853|114.928 +637980.122|220604.443|114.904 +637989.696|220595.686|114.742 +637994.484|220591.303|114.517 +638008.983|220578.047|114.596 +638013.824|220573.622|114.465 +638028.351|220560.338|114.206 +638033.246|220555.867|114.617 +638038.177|220551.359|114.962 +638043.109|220546.854|115.340 +638048.031|220542.358|115.635 +638077.689|220515.271|117.958 +638082.639|220510.747|118.278 +638087.561|220506.255|118.857 +638097.598|220497.095|120.588 +638117.486|220478.926|121.594 +638122.488|220474.357|122.259 +638127.472|220469.806|122.752 +638132.437|220465.274|123.057 +638137.454|220460.690|123.453 +638142.419|220456.154|123.853 +638147.418|220451.589|124.130 +638152.414|220447.023|124.392 +638157.400|220442.466|124.560 +638162.396|220437.903|124.880 +638167.443|220433.294|125.258 +638172.436|220428.732|125.605 +638177.407|220424.187|125.727 +638182.430|220419.600|125.907 +638187.469|220414.994|126.340 +638192.501|220410.398|126.733 +638197.518|220405.814|126.922 +638202.501|220401.263|127.358 +638207.579|220396.627|127.806 +638212.609|220392.034|128.288 +638217.674|220387.407|128.632 +638222.682|220382.829|128.903 +638227.690|220378.257|129.156 +638232.747|220373.633|129.507 +638278.116|220332.137|131.000 +638283.082|220327.593|130.875 +638288.132|220322.966|130.570 +638293.186|220318.342|130.314 +638298.197|220313.755|130.177 +638303.247|220309.128|129.949 +638308.310|220304.498|129.927 +638313.351|220299.877|129.440 +638323.428|220290.660|129.488 +638338.570|220276.795|128.473 +638343.612|220272.174|127.992 +638348.711|220267.507|127.739 +638353.728|220262.917|127.922 +638358.821|220258.253|127.553 +638363.872|220253.630|127.315 +638368.923|220249.006|127.102 +638374.022|220244.336|126.913 +638379.069|220239.712|126.523 +638384.114|220235.092|125.934 +638389.207|220230.425|125.404 +638394.303|220225.759|125.035 +638399.357|220221.132|124.718 +638404.453|220216.462|124.313 +638409.498|220211.838|123.514 +638414.551|220207.209|123.118 +638419.654|220202.539|122.725 +638424.753|220197.863|122.073 +638429.806|220193.233|121.451 +638434.909|220188.558|120.817 +638440.017|220183.879|120.539 +638445.077|220179.246|120.311 +638450.185|220174.570|120.104 +638455.297|220169.892|119.677 +638460.360|220165.253|119.244 +638465.468|220160.571|118.781 +638470.534|220155.932|118.442 +638475.648|220151.250|118.055 +638480.763|220146.568|117.805 +638485.826|220141.932|117.574 +638490.943|220137.248|117.162 +638496.012|220132.606|116.946 +638501.130|220127.921|116.836 +638506.196|220123.285|116.925 +638516.449|220113.891|115.629 +638521.527|220109.240|115.187 +638526.648|220104.555|115.129 +638531.723|220099.913|115.132 +638536.801|220095.261|114.867 +638541.933|220090.558|114.355 +638552.120|220081.219|112.795 +638557.256|220076.516|112.471 +638562.343|220071.859|112.218 +638577.623|220057.868|111.237 +638592.951|220043.838|110.637 +638598.020|220039.190|109.859 +638603.150|220034.499|110.152 +638608.197|220029.882|110.097 +638613.299|220025.212|109.838 +638628.561|220011.243|109.305 +638633.617|220006.613|109.167 +638638.671|220001.989|109.116 +638643.773|219997.320|109.082 +638648.836|219992.687|108.939 +638653.896|219988.054|108.838 +638658.949|219983.433|108.911 +638663.957|219978.852|108.994 +638669.008|219974.234|109.173 +638674.061|219969.613|109.344 +638679.066|219965.035|109.518 +638684.105|219960.430|109.935 +638689.106|219955.858|110.228 +638694.111|219951.280|110.423 +638699.168|219946.653|110.585 +638704.194|219942.056|110.536 +638709.232|219937.445|110.301 +638714.240|219932.854|109.811 +638719.300|219928.218|109.301 +638724.351|219923.598|109.030 +638729.310|219919.062|109.359 +638734.250|219914.548|109.993 +638739.191|219910.034|110.609 +638744.202|219905.453|110.941 +638749.113|219900.966|111.331 +638754.087|219896.419|111.560 +638759.061|219891.868|111.752 +638763.999|219887.351|111.850 +638768.998|219882.776|111.795 +638773.914|219878.277|111.603 +638778.928|219873.687|111.447 +638783.848|219869.185|111.289 +638788.898|219864.555|110.722 +638793.854|219860.016|110.216 +638798.896|219855.392|109.295 +638803.940|219850.766|108.418 +638808.978|219846.145|107.147 +638813.901|219841.637|107.140 +638818.808|219837.150|107.339 +638823.731|219832.648|107.418 +638828.672|219828.125|107.287 +638833.603|219823.614|107.329 +638838.462|219819.170|107.604 +638843.372|219814.680|107.860 +638848.173|219810.294|108.283 +638853.034|219805.853|109.061 +638857.926|219801.379|109.079 +638862.745|219796.977|109.823 +638867.491|219792.646|110.795 +638872.410|219788.141|110.600 +638882.112|219779.268|110.682 +638887.035|219774.754|110.094 +638896.788|219765.830|109.875 +638906.542|219756.899|109.338 +638911.401|219752.449|109.055 +638916.280|219747.981|108.625 +638921.139|219743.531|108.396 +638925.970|219739.111|108.415 +638930.862|219734.627|107.976 +638935.858|219730.043|106.738 +638940.747|219725.563|106.010 +638945.678|219721.036|104.976 +638950.467|219716.656|105.095 +638955.533|219711.999|103.105 +638979.380|219690.187|103.818 +638984.169|219685.814|104.092 +638988.994|219681.394|103.419 +638993.803|219676.993|103.215 +638998.446|219672.756|103.894 +639003.060|219668.547|104.763 +639007.724|219664.295|105.653 +639012.378|219660.046|106.253 +639017.002|219655.824|106.759 +639021.684|219651.551|107.204 +639026.298|219647.336|107.774 +639030.980|219643.062|108.253 +639035.607|219638.838|108.783 +639040.225|219634.622|109.372 +639044.876|219630.376|109.771 +639049.515|219626.134|109.926 +639054.145|219621.906|110.167 +639058.830|219617.627|110.402 +639063.490|219613.362|110.475 +639068.156|219609.098|110.542 +639072.805|219604.852|110.746 +639077.395|219600.655|110.993 +639082.052|219596.397|110.874 +639086.755|219592.093|110.493 +639091.489|219587.762|110.265 +639096.158|219583.489|109.823 +639100.877|219579.167|109.137 +639105.620|219574.827|108.634 +639110.310|219570.529|108.158 +639115.017|219566.219|107.619 +639119.710|219561.921|107.177 +639124.383|219557.648|106.897 +639129.016|219553.408|106.561 +639133.631|219549.187|106.366 +639138.261|219544.950|106.101 +639142.884|219540.722|105.906 +639147.502|219536.498|105.748 +639152.092|219532.298|105.498 +639156.677|219528.104|105.290 +639161.294|219523.879|105.205 +639165.839|219519.725|104.995 +639170.411|219515.543|104.925 +639174.940|219511.398|104.824 +639179.457|219507.271|104.818 +639183.996|219503.119|104.714 +639188.519|219498.983|104.711 +639193.015|219494.871|104.608 +639197.532|219490.738|104.403 +639202.052|219486.605|104.217 +639224.489|219466.080|103.367 +639228.997|219461.950|102.846 +639233.511|219457.823|102.587 +639231.712|219457.359|102.620 +639227.235|219461.450|102.928 +639218.341|219469.573|103.321 +639213.885|219473.639|103.340 +639209.432|219477.708|103.620 +639204.994|219481.756|103.574 +639200.419|219485.938|103.983 +639191.412|219494.164|104.416 +639186.913|219498.273|104.513 +639182.420|219502.372|104.586 +639177.894|219506.505|104.595 +639173.358|219510.645|104.675 +639168.829|219514.778|104.726 +639164.291|219518.926|104.867 +639159.691|219523.123|105.062 +639155.156|219527.265|105.229 +639150.532|219531.490|105.336 +639145.935|219535.684|105.580 +639141.348|219539.875|105.808 +639136.718|219544.106|106.022 +639132.027|219548.391|106.305 +639127.394|219552.622|106.577 +639122.749|219556.865|106.933 +639118.065|219561.144|107.256 +639113.319|219565.481|107.671 +639108.616|219569.779|108.143 +639103.907|219574.086|108.695 +639099.155|219578.429|109.222 +639094.372|219582.800|109.954 +639089.672|219587.095|110.249 +639084.914|219591.441|110.588 +639080.175|219595.772|110.871 +639075.463|219600.073|110.987 +639070.814|219604.316|110.749 +639066.111|219608.601|110.533 +639061.448|219612.860|110.426 +639056.729|219617.163|110.359 +639052.045|219621.440|110.115 +639047.363|219625.707|109.844 +639042.617|219630.035|109.682 +639037.963|219634.281|109.280 +639033.296|219638.533|108.661 +639028.569|219642.840|108.094 +639023.872|219647.125|107.698 +639019.154|219651.423|107.098 +639014.414|219655.745|106.686 +639009.760|219659.985|106.016 +639005.002|219664.322|105.403 +639000.338|219668.565|104.473 +638995.617|219672.866|103.626 +638990.856|219677.206|103.053 +638985.933|219681.705|103.650 +638980.996|219686.216|104.047 +638976.265|219690.526|103.318 +638951.717|219712.947|104.409 +638946.754|219717.485|105.199 +638941.838|219721.972|105.278 +638936.815|219726.568|106.223 +638931.764|219731.189|107.052 +638926.723|219735.804|108.238 +638921.776|219740.321|108.311 +638916.835|219744.829|108.344 +638911.897|219749.340|108.777 +638906.835|219753.970|109.478 +638901.888|219758.487|109.667 +638882.042|219776.608|110.304 +638872.023|219785.758|110.780 +638867.058|219790.293|110.893 +638862.130|219794.783|110.213 +638857.268|219799.209|109.366 +638852.288|219803.753|109.210 +638847.353|219808.252|108.634 +638842.351|219812.815|108.241 +638837.441|219817.289|107.902 +638832.430|219821.861|107.637 +638827.437|219826.418|107.704 +638822.396|219831.021|107.799 +638817.354|219835.623|107.893 +638812.383|219840.155|107.308 +638807.351|219844.749|107.372 +638802.221|219849.446|108.564 +638797.088|219854.140|109.295 +638791.998|219858.794|110.134 +638786.874|219863.479|110.850 +638781.821|219868.093|111.356 +638776.743|219872.736|111.655 +638771.683|219877.353|111.719 +638766.614|219881.983|111.962 +638761.573|219886.583|111.871 +638756.534|219891.182|111.783 +638751.505|219895.766|111.566 +638746.433|219900.396|111.338 +638741.419|219904.965|110.944 +638736.408|219909.537|110.573 +638731.376|219914.121|109.817 +638726.371|219918.681|109.341 +638721.296|219923.308|109.183 +638716.194|219927.965|109.478 +638711.125|219932.595|110.079 +638705.971|219937.298|110.469 +638700.933|219941.898|110.667 +638695.806|219946.574|110.746 +638690.752|219951.179|110.426 +638685.690|219955.797|110.332 +638680.636|219960.402|110.051 +638675.534|219965.051|109.765 +638665.381|219974.307|109.298 +638660.321|219978.916|109.167 +638655.216|219983.573|109.055 +638650.104|219988.234|109.070 +638645.044|219992.848|109.064 +638639.936|219997.509|109.103 +638634.770|220002.224|109.366 +638629.707|220006.842|109.509 +638624.605|220011.493|109.487 +638619.493|220016.160|109.771 +638614.439|220020.771|109.811 +638609.294|220025.462|109.750 +638604.180|220030.129|110.192 +638599.129|220034.740|110.320 +638593.981|220039.434|110.460 +638588.879|220044.091|110.694 +638583.792|220048.731|110.569 +638578.686|220053.391|111.002 +638573.575|220058.060|111.776 +638558.252|220072.039|112.240 +638553.159|220076.690|112.630 +638532.747|220095.328|114.568 +638527.657|220099.977|115.184 +638522.530|220104.652|115.297 +638502.163|220123.248|117.001 +638497.091|220127.872|116.937 +638491.971|220132.542|117.004 +638486.899|220137.171|117.211 +638481.827|220141.801|117.659 +638476.761|220146.425|117.927 +638471.640|220151.098|118.211 +638466.620|220155.682|118.659 +638461.503|220160.352|119.061 +638456.437|220164.978|119.567 +638451.371|220169.602|119.918 +638446.305|220174.223|120.171 +638441.243|220178.847|120.439 +638436.177|220183.468|120.710 +638431.117|220188.088|121.173 +638426.057|220192.709|121.789 +638421.001|220197.327|122.515 +638415.941|220201.945|122.856 +638410.884|220206.562|123.277 +638405.834|220211.177|123.917 +638400.829|220215.746|124.493 +638395.772|220220.361|124.801 +638390.719|220224.975|125.154 +638385.714|220229.544|125.569 +638380.666|220234.153|126.160 +638375.668|220238.719|126.754 +638370.611|220243.334|126.901 +638365.603|220247.902|127.065 +638360.550|220252.514|127.394 +638355.548|220257.080|127.733 +638350.479|220261.698|127.599 +638345.468|220266.270|127.702 +638340.463|220270.833|128.059 +638315.421|220293.668|129.242 +638305.396|220302.806|129.616 +638300.440|220307.326|130.010 +638295.472|220311.856|130.107 +638290.458|220316.425|130.275 +638285.493|220320.954|130.433 +638280.539|220325.471|130.918 +638275.571|220330.001|131.076 +638265.604|220339.081|130.884 +638230.766|220370.807|129.397 +638225.806|220375.327|129.120 +638220.789|220379.893|128.784 +638215.873|220384.368|128.537 +638210.850|220388.943|128.153 +638205.921|220393.430|127.760 +638200.935|220397.968|127.321 +638195.951|220402.503|126.922 +638191.013|220406.999|126.538 +638185.975|220411.586|126.139 +638181.031|220416.085|125.764 +638176.100|220420.578|125.560 +638171.122|220425.110|125.416 +638166.181|220429.612|125.139 +638161.231|220434.117|124.822 +638156.339|220438.574|124.599 +638151.347|220443.121|124.386 +638146.436|220447.590|124.060 +638141.477|220452.104|123.746 +638136.561|220456.581|123.374 +638131.635|220461.062|122.972 +638126.716|220465.542|122.637 +638121.790|220470.026|122.277 +638116.862|220474.513|121.923 +638097.181|220492.432|120.640 +638092.304|220496.873|120.454 +638087.332|220501.390|119.403 +638082.392|220505.886|118.665 +638072.534|220514.853|117.552 +638062.686|220523.811|116.227 +638057.816|220528.249|116.324 +638052.942|220532.687|115.952 +638043.191|220541.563|115.315 +638038.345|220545.979|115.276 +638033.444|220550.438|114.797 +638028.588|220554.864|114.736 +638018.868|220563.709|113.803 +638014.013|220568.132|113.828 +638009.267|220572.460|114.358 +638004.146|220577.102|111.874 +637985.316|220594.290|114.660 +637980.515|220598.661|114.495 +637975.830|220602.934|114.824 +637971.063|220607.281|114.949 +637966.290|220611.630|115.053 +637961.590|220615.916|115.321 +637882.802|220687.803|123.054 +637873.591|220696.200|123.411 +637864.392|220704.585|123.612 +637841.291|220725.629|123.063 +637832.038|220734.053|122.326 +637827.472|220738.211|122.064 +637822.830|220742.435|121.670 +637818.200|220746.651|121.353 +637813.591|220750.845|120.914 +637809.089|220754.944|120.820 +637804.545|220759.090|121.045 +637800.034|220763.198|120.939 +637786.659|220775.393|121.570 +637768.892|220791.588|122.158 +637764.411|220795.672|122.073 +637755.423|220803.856|121.551 +637750.994|220807.891|121.530 +637746.575|220811.915|121.317 +637715.598|220840.115|119.396 +637706.844|220848.088|118.958 +637702.388|220852.142|118.253 +637671.633|220880.114|114.154 +637667.436|220883.939|114.367 +637663.141|220887.850|113.898 +637658.847|220891.757|113.453 +637654.589|220895.634|113.194 +637650.626|220899.252|114.062 +637646.451|220903.056|114.209 +637642.415|220906.741|114.757 +637638.416|220910.390|115.257 +637634.213|220914.221|115.081 +637625.816|220921.871|114.367 +637621.673|220925.651|114.273 +637617.501|220929.449|113.846 +637601.218|220944.296|113.614 +637592.809|220951.946|112.005 +637585.402|220958.728|114.251 +637573.942|220969.198|115.876 +637570.113|220972.691|116.190 +637566.178|220976.281|116.275 +637558.650|220983.152|117.040 +637539.746|221000.406|118.138 +637535.930|221003.884|117.946 +637532.132|221007.347|118.065 +637528.343|221010.803|118.013 +637524.631|221014.189|118.065 +637520.900|221017.588|118.065 +637517.206|221020.959|118.214 +637513.433|221024.397|118.068 +637509.702|221027.799|117.885 +637506.126|221031.060|118.119 +637502.478|221034.389|118.281 +637498.766|221037.775|118.202 +637491.840|221044.103|119.390 +637488.158|221047.458|119.262 +637481.206|221053.804|119.991 +637477.801|221056.916|120.527 +637474.247|221060.153|120.320 +637470.727|221063.366|120.445 +637463.808|221069.678|120.780 +637460.318|221072.858|120.652 +637671.938|220877.569|114.251 +637685.090|220865.566|115.980 +637733.849|220821.043|121.015 +637738.199|220817.066|120.844 +637742.652|220812.997|120.969 +637747.138|220808.897|121.298 +637751.582|220804.834|121.417 +637756.048|220800.756|121.655 +637760.556|220796.635|121.893 +637764.981|220792.590|121.975 +637773.924|220784.412|121.862 +637778.399|220780.319|121.725 +637782.858|220776.241|121.509 +637787.311|220772.169|121.283 +637796.278|220763.963|120.939 +637800.799|220759.830|120.844 +637805.261|220755.749|120.732 +637809.830|220751.573|120.661 +637823.665|220738.933|121.622 +637832.986|220730.420|122.460 +637837.600|220726.208|122.783 +637842.270|220721.938|122.880 +637860.786|220705.015|123.066 +637865.480|220700.729|123.405 +637870.119|220696.496|123.414 +637884.034|220683.780|122.947 +637916.690|220653.927|121.326 +637939.955|220632.643|118.723 +637958.600|220615.571|115.425 +637963.309|220611.264|114.870 +637972.846|220602.550|114.696 +637977.638|220598.170|114.431 +637987.202|220589.428|114.224 +638001.348|220576.471|111.033 +638006.310|220571.951|112.246 +638016.247|220562.899|114.072 +638035.852|220545.001|115.093 +638040.692|220540.578|115.123 +638050.552|220531.583|115.925 +638060.391|220522.598|116.245 +638065.326|220518.096|116.784 +638075.308|220508.995|118.153 +638095.202|220490.850|120.716 +638100.207|220486.290|121.753 +638114.993|220472.784|121.801 +638119.964|220468.246|122.146 +638124.939|220463.710|122.530 +638129.904|220459.178|122.868 +638134.912|220454.606|123.200 +638139.877|220450.077|123.591 +638144.879|220445.511|123.908 +638149.829|220440.991|124.197 +638154.821|220436.434|124.453 +638159.811|220431.880|124.721 +638164.795|220427.329|124.941 +638169.784|220422.776|125.255 +638174.804|220418.192|125.392 +638179.785|220413.647|125.642 +638184.768|220409.096|126.011 +638189.806|220404.500|126.459 +638194.836|220399.910|126.852 +638199.862|220395.322|127.221 +638204.891|220390.735|127.675 +638209.865|220386.197|128.074 +638214.882|220381.615|128.449 +638219.893|220377.043|128.748 +638224.953|220372.426|129.062 +638229.958|220367.857|129.342 +638265.114|220335.776|130.897 +638275.145|220326.611|130.644 +638280.165|220322.027|130.641 +638285.218|220317.409|130.327 +638290.226|220312.834|130.104 +638295.289|220308.210|130.016 +638300.303|220303.632|129.924 +638315.366|220289.867|129.147 +638320.423|220285.247|128.979 +638330.490|220276.054|128.693 +638335.541|220271.436|128.443 +638345.633|220262.213|127.583 +638350.692|220257.592|127.541 +638355.752|220252.971|127.535 +638360.806|220248.354|127.291 +638365.856|220243.739|127.004 +638370.910|220239.121|126.837 +638375.963|220234.506|126.602 +638381.008|220229.892|125.953 +638386.055|220225.277|125.456 +638391.106|220220.659|124.980 +638396.205|220215.999|124.651 +638401.262|220211.381|124.380 +638406.309|220206.764|123.755 +638411.363|220202.143|123.146 +638416.417|220197.522|122.761 +638421.522|220192.855|122.402 +638426.579|220188.235|121.750 +638431.635|220183.608|121.140 +638436.741|220178.941|120.701 +638441.852|220174.272|120.411 +638446.915|220169.645|120.146 +638451.978|220165.018|119.893 +638457.089|220160.345|119.473 +638462.155|220155.716|118.961 +638467.269|220151.040|118.586 +638472.384|220146.364|118.104 +638477.453|220141.731|117.784 +638482.519|220137.104|117.458 +638487.636|220132.426|117.211 +638492.708|220127.793|116.979 +638497.826|220123.123|117.068 +638502.904|220118.478|116.419 +638513.108|220109.148|115.318 +638518.183|220104.515|115.294 +638523.258|220099.876|115.178 +638528.345|220095.228|114.568 +638533.472|220090.543|114.398 +638538.501|220085.950|114.386 +638548.740|220076.586|112.968 +638553.830|220071.932|112.542 +638558.929|220067.272|111.953 +638564.001|220062.642|112.356 +638574.197|220053.327|111.554 +638579.247|220048.706|111.136 +638584.346|220044.049|110.807 +638589.449|220039.385|110.463 +638594.545|220034.728|110.316 +638599.641|220030.077|110.256 +638609.791|220020.805|110.033 +638614.894|220016.141|109.893 +638619.950|220011.520|109.728 +638625.053|220006.857|109.649 +638635.181|219997.603|109.189 +638640.277|219992.949|109.335 +638645.340|219988.322|109.201 +638650.348|219983.750|109.295 +638660.455|219974.521|109.521 +638670.556|219965.297|109.972 +638675.561|219960.728|110.192 +638680.566|219956.163|110.426 +638685.626|219951.542|110.563 +638690.633|219946.967|110.731 +638695.650|219942.386|110.819 +638700.674|219937.798|110.816 +638705.669|219933.232|110.551 +638710.717|219928.618|110.201 +638715.789|219923.979|109.597 +638720.836|219919.364|109.341 +638725.811|219914.822|109.503 +638730.751|219910.318|110.173 +638735.732|219905.779|110.950 +638740.700|219901.244|111.243 +638745.653|219896.723|111.725 +638750.633|219892.176|111.859 +638755.617|219887.625|111.996 +638760.607|219883.068|112.075 +638765.553|219878.551|112.109 +638770.564|219873.973|111.975 +638775.536|219869.428|111.755 +638780.565|219864.832|111.453 +638785.576|219860.248|110.856 +638790.602|219855.648|110.106 +638795.589|219851.086|109.295 +638800.660|219846.447|108.686 +638805.650|219841.878|107.939 +638810.646|219837.315|107.732 +638815.483|219832.907|108.695 +638820.424|219828.393|108.558 +638825.425|219823.821|108.329 +638830.305|219819.365|108.411 +638835.225|219814.875|108.582 +638840.117|219810.410|109.030 +638845.024|219805.932|109.378 +638849.889|219801.491|109.667 +638854.759|219797.047|109.914 +638859.539|219792.692|111.018 +638864.437|219788.217|111.027 +638869.335|219783.746|111.072 +638874.248|219779.256|110.981 +638879.229|219774.700|110.347 +638884.109|219770.240|110.170 +638889.056|219765.720|109.887 +638898.840|219756.777|109.490 +638903.732|219752.309|109.347 +638908.645|219747.819|109.045 +638913.552|219743.326|108.399 +638918.454|219738.849|108.265 +638923.318|219734.402|108.024 +638928.347|219729.796|106.909 +638933.215|219725.346|106.354 +638938.223|219720.759|105.482 +638943.078|219716.321|105.083 +638947.952|219711.868|104.937 +638972.275|219689.630|103.151 +638976.856|219685.460|104.589 +638981.755|219680.973|103.724 +638986.634|219676.502|103.023 +638991.322|219672.223|103.373 +638996.074|219667.888|104.004 +639000.677|219663.691|104.979 +639005.337|219659.442|105.909 +639010.004|219655.181|106.449 +639014.673|219650.917|106.982 +639019.352|219646.647|107.479 +639024.040|219642.367|107.921 +639028.666|219638.143|108.442 +639033.354|219633.863|108.914 +639037.957|219629.663|109.618 +639042.645|219625.381|109.804 +639047.320|219621.110|110.076 +639051.953|219616.877|110.310 +639056.635|219612.600|110.566 +639061.298|219608.336|110.649 +639065.950|219604.087|110.826 +639070.592|219599.848|111.082 +639075.289|219595.553|111.018 +639079.949|219591.292|110.896 +639084.649|219586.994|110.557 +639089.340|219582.700|110.280 +639094.068|219578.374|109.832 +639098.792|219574.046|109.128 +639103.538|219569.706|108.628 +639108.241|219565.399|108.101 +639112.941|219561.095|107.613 +639117.589|219556.840|107.168 +639122.268|219552.561|106.866 +639126.916|219548.309|106.485 +639131.503|219544.112|106.159 +639136.103|219539.902|105.802 +639140.733|219535.669|105.595 +639145.372|219531.426|105.345 +639149.916|219527.265|105.077 +639154.503|219523.071|104.894 +639159.078|219518.890|104.781 +639163.608|219514.747|104.662 +639168.158|219510.584|104.452 +639172.685|219506.445|104.391 +639177.162|219502.351|104.333 +639181.710|219498.194|104.208 +639186.258|219494.036|104.102 +639190.756|219489.921|104.004 +639195.225|219485.834|103.812 +639199.736|219481.707|103.684 +639208.743|219473.468|103.053 +639222.568|219458.414|102.974 +639218.140|219462.447|102.809 +639213.723|219466.470|102.605 +639209.236|219470.557|102.754 +639204.661|219474.730|103.117 +639195.615|219482.984|103.666 +639191.147|219487.056|103.812 +639186.605|219491.195|103.830 +639182.042|219495.356|103.986 +639177.534|219499.465|104.132 +639172.977|219503.616|104.288 +639168.454|219507.740|104.306 +639163.900|219511.891|104.483 +639159.307|219516.079|104.635 +639154.717|219520.264|104.787 +639150.191|219524.391|104.891 +639145.588|219528.585|105.144 +639140.928|219532.837|105.464 +639136.285|219537.074|105.726 +639131.695|219541.259|105.988 +639127.038|219545.505|106.363 +639122.338|219549.793|106.717 +639117.687|219554.039|107.125 +639112.990|219558.322|107.512 +639108.338|219562.567|107.963 +639103.577|219566.911|108.482 +639098.859|219571.218|109.091 +639094.086|219575.573|109.731 +639089.352|219579.895|110.192 +639084.591|219584.239|110.530 +639079.882|219588.536|110.893 +639075.213|219592.795|111.033 +639070.473|219597.120|111.024 +639065.831|219601.350|111.042 +639061.125|219605.639|110.853 +639056.416|219609.930|110.707 +639051.780|219614.152|110.432 +639047.092|219618.422|110.185 +639042.410|219622.689|109.929 +639037.731|219626.954|109.661 +639033.034|219631.230|109.195 +639028.368|219635.476|108.555 +639023.729|219639.700|108.064 +639018.977|219644.028|107.680 +639014.295|219648.290|107.171 +639009.568|219652.593|106.653 +639004.849|219656.888|106.080 +639000.226|219661.094|105.223 +638995.532|219665.364|104.160 +638990.829|219669.641|103.495 +638986.095|219673.954|103.081 +638981.203|219678.416|103.462 +638976.229|219682.967|104.486 +638971.419|219687.347|103.964 +638947.032|219709.585|104.547 +638942.070|219714.117|105.324 +638937.168|219718.586|105.275 +638932.133|219723.188|106.311 +638927.134|219727.754|106.720 +638922.148|219732.308|107.439 +638917.167|219736.855|108.162 +638912.193|219741.394|108.460 +638907.179|219745.975|109.125 +638902.275|219750.450|109.335 +638897.273|219755.009|109.527 +638892.299|219759.551|109.966 +638887.330|219764.080|109.945 +638882.368|219768.610|110.326 +638872.380|219777.723|110.905 +638867.396|219782.268|111.127 +638862.450|219786.779|111.060 +638857.481|219791.311|111.203 +638852.592|219795.758|110.164 +638847.615|219800.294|109.963 +638842.677|219804.792|109.856 +638837.724|219809.304|109.475 +638832.765|219813.821|109.140 +638827.803|219818.344|108.875 +638822.771|219822.931|108.856 +638817.769|219827.494|109.042 +638812.740|219832.078|109.024 +638807.811|219836.559|107.933 +638802.757|219841.173|108.256 +638797.664|219845.825|109.006 +638792.595|219850.452|109.558 +638787.450|219855.155|110.466 +638782.327|219859.833|111.185 +638777.288|219864.433|111.520 +638772.198|219869.078|111.914 +638767.126|219873.705|112.145 +638762.024|219878.359|112.173 +638756.976|219882.959|112.136 +638751.932|219887.558|112.084 +638746.851|219892.188|111.929 +638741.877|219896.720|111.652 +638736.771|219901.372|111.200 +638731.763|219905.931|110.743 +638726.737|219910.503|109.841 +638721.680|219915.112|109.411 +638716.636|219919.715|109.536 +638711.525|219924.384|109.960 +638706.410|219929.057|110.490 +638701.317|219933.708|110.725 +638696.230|219938.353|110.920 +638691.152|219942.986|110.972 +638686.040|219947.646|110.801 +638680.977|219952.267|110.704 +638675.918|219956.879|110.493 +638670.818|219961.530|110.210 +638665.762|219966.145|110.039 +638660.656|219970.799|109.844 +638655.554|219975.453|109.661 +638650.452|219980.108|109.484 +638640.296|219989.368|109.152 +638635.175|219994.046|109.457 +638624.909|220003.413|109.579 +638619.804|220008.073|109.637 +638614.686|220012.746|110.012 +638604.439|220022.097|109.987 +638599.324|220026.770|110.499 +638594.179|220031.464|110.475 +638589.092|220036.103|110.268 +638583.935|220040.812|110.649 +638578.836|220045.469|110.877 +638573.739|220050.120|111.051 +638563.474|220059.502|112.392 +638558.399|220064.126|111.868 +638553.254|220068.829|112.371 +638548.157|220073.483|112.846 +638532.780|220087.535|114.498 +638527.745|220092.128|114.553 +638512.401|220106.140|115.516 +638507.275|220110.821|115.763 +638491.989|220124.781|117.046 +638486.868|220129.457|117.199 +638481.793|220134.087|117.360 +638476.441|220138.979|117.720 +638471.607|220143.392|118.019 +638466.535|220148.025|118.561 +638461.417|220152.698|118.958 +638456.303|220157.374|119.488 +638451.234|220162.001|119.832 +638446.119|220166.670|120.125 +638441.054|220171.297|120.421 +638435.988|220175.921|120.796 +638430.879|220180.590|121.201 +638425.817|220185.214|121.823 +638420.760|220189.838|122.347 +638415.697|220194.459|122.713 +638410.592|220199.122|123.170 +638405.584|220203.697|123.676 +638400.485|220208.358|124.298 +638395.474|220212.933|124.606 +638390.417|220217.550|124.913 +638385.363|220222.168|125.328 +638380.313|220226.780|125.861 +638375.311|220231.352|126.468 +638370.258|220235.966|126.721 +638360.196|220245.153|127.282 +638355.136|220249.771|127.434 +638350.122|220254.346|127.474 +638345.108|220258.921|127.516 +638340.055|220263.536|127.779 +638335.059|220268.105|128.309 +638330.051|220272.677|128.522 +638325.053|220277.246|128.973 +638319.990|220281.866|129.071 +638314.970|220286.448|128.952 +638304.954|220295.595|129.461 +638299.998|220300.124|129.784 +638294.987|220304.702|129.927 +638289.970|220309.280|130.022 +638285.008|220313.813|130.226 +638279.991|220318.391|130.375 +638265.040|220332.046|130.845 +638230.125|220363.897|129.400 +638225.166|220368.424|129.117 +638220.204|220372.947|128.827 +638215.193|220377.522|128.522 +638210.222|220382.054|128.184 +638205.248|220386.590|127.797 +638200.267|220391.131|127.382 +638195.284|220395.676|126.962 +638190.309|220400.214|126.687 +638185.356|220404.725|126.136 +638180.364|220409.279|125.675 +638175.429|220413.781|125.407 +638170.455|220418.323|125.264 +638165.517|220422.824|125.026 +638160.585|220427.326|124.865 +638155.590|220431.883|124.560 +638150.640|220436.394|124.276 +638145.690|220440.911|123.972 +638140.779|220445.389|123.652 +638135.814|220449.915|123.261 +638130.901|220454.399|122.929 +638125.935|220458.928|122.609 +638121.013|220463.415|122.256 +638116.090|220467.908|121.926 +638111.165|220472.397|121.618 +638106.267|220476.869|121.603 +638081.642|220499.317|119.177 +638076.756|220503.770|118.510 +638071.836|220508.254|118.028 +638066.880|220512.771|117.208 +638061.921|220517.288|116.428 +638047.358|220530.581|116.254 +638042.487|220535.019|115.519 +638037.568|220539.505|115.254 +638032.758|220543.891|115.132 +638027.884|220548.338|114.895 +638008.383|220566.117|112.938 +638003.570|220570.510|112.932 +637998.888|220574.795|113.995 +637993.948|220579.288|112.621 +637979.799|220592.224|114.306 +637974.986|220596.619|114.413 +637970.265|220600.926|114.477 +637965.528|220605.251|114.815 +637960.770|220609.591|114.657 +637951.455|220618.101|115.852 +637946.856|220622.307|116.876 +637942.308|220626.468|117.933 +637909.905|220656.064|121.155 +637900.572|220664.580|121.463 +637891.379|220672.971|122.100 +637882.211|220681.344|122.950 +637872.939|220689.802|122.899 +637863.697|220698.233|123.109 +637854.462|220706.661|123.115 +637849.939|220710.788|123.258 +637840.663|220719.243|122.862 +637836.009|220723.489|122.579 +637831.458|220727.637|122.652 +637826.761|220731.914|121.887 +637822.135|220736.132|121.561 +637817.566|220740.296|121.298 +637812.939|220744.514|121.003 +637803.786|220752.860|120.497 +637799.326|220756.926|120.661 +637790.344|220765.122|120.942 +637785.845|220769.227|120.930 +637772.553|220781.361|121.814 +637768.112|220785.415|121.896 +637763.710|220789.430|121.951 +637759.269|220793.480|121.804 +637754.780|220797.574|121.695 +637750.327|220801.631|121.539 +637723.635|220825.963|120.046 +637714.766|220834.046|119.421 +637701.443|220846.183|117.933 +637683.767|220862.283|116.022 +637679.387|220866.273|115.535 +637674.916|220870.342|114.657 +637666.308|220878.187|114.017 +637657.817|220885.929|113.764 +637653.513|220889.852|113.520 +637649.325|220893.671|113.575 +637641.187|220901.102|114.349 +637637.163|220904.781|115.187 +637633.100|220908.488|115.401 +637624.630|220916.193|114.568 +637620.445|220920.003|114.279 +637616.336|220923.746|114.117 +637612.188|220927.522|114.032 +637603.803|220935.152|113.063 +637599.822|220938.779|113.304 +637591.428|220946.411|111.950 +637576.240|220960.282|115.327 +637564.752|220970.758|116.647 +637556.995|220977.827|116.882 +637545.632|220988.187|117.790 +637530.440|221002.025|117.921 +637526.627|221005.497|117.766 +637522.869|221008.919|117.632 +637519.184|221012.278|117.799 +637511.765|221019.036|117.979 +637508.047|221022.422|117.839 +637504.456|221025.693|118.004 +637500.786|221029.033|118.083 +637497.123|221032.371|117.985 +637493.727|221035.471|118.723 +637490.198|221038.689|119.153 +637486.558|221042.003|119.183 +637483.160|221045.105|119.723 +637472.659|221054.673|120.253 +637462.168|221064.223|120.110 +637458.742|221067.347|120.405 +637451.890|221073.586|120.442 +637448.428|221076.738|120.235 +637669.774|220872.930|114.203 +637674.038|220869.034|114.349 +637678.485|220864.980|115.379 +637691.555|220853.047|116.583 +637700.309|220845.053|117.452 +637726.973|220820.720|120.765 +637731.383|220816.691|120.887 +637735.797|220812.658|121.049 +637740.238|220808.598|121.113 +637744.746|220804.484|121.527 +637749.159|220800.448|121.481 +637753.606|220796.385|121.625 +637758.102|220792.276|121.783 +637762.580|220788.186|121.862 +637767.033|220784.114|121.823 +637771.468|220780.057|121.722 +637780.404|220771.888|121.350 +637784.803|220767.859|120.826 +637789.301|220763.747|120.844 +637793.813|220759.623|120.680 +637798.333|220755.490|120.570 +637802.832|220751.375|120.378 +637807.391|220747.212|120.533 +637811.985|220743.014|120.902 +637816.645|220738.759|121.100 +637821.278|220734.526|121.466 +637825.926|220730.283|121.932 +637835.162|220721.849|122.292 +637839.837|220717.579|122.710 +637844.501|220713.321|123.057 +637849.134|220709.084|122.969 +637853.761|220704.856|123.161 +637872.308|220687.891|122.853 +637877.066|220683.545|123.039 +637890.959|220670.826|121.911 +637900.292|220662.288|121.594 +637914.376|220649.401|120.994 +637919.086|220645.091|120.716 +637923.746|220640.821|120.098 +637928.507|220636.465|119.842 +637933.137|220632.223|119.049 +637937.773|220627.974|118.290 +637951.745|220615.163|115.477 +637956.442|220610.862|114.837 +637961.206|220606.500|114.312 +637970.792|220597.731|114.154 +637975.641|220593.299|114.355 +637980.454|220588.898|114.279 +637989.863|220580.272|112.511 +637994.990|220575.609|114.584 +638004.457|220566.931|112.569 +638019.252|220553.422|114.541 +638024.117|220548.972|114.270 +638029.067|220544.452|114.751 +638038.948|220535.424|115.687 +638043.932|220530.873|116.129 +638048.754|220526.463|116.062 +638053.728|220521.915|116.041 +638073.595|220503.773|118.269 +638078.582|220499.223|118.988 +638103.481|220476.482|121.381 +638108.428|220471.958|121.426 +638113.393|220467.420|121.713 +638118.407|220462.839|121.996 +638123.320|220458.349|122.292 +638128.334|220453.768|122.664 +638133.299|220449.235|123.024 +638138.301|220444.663|123.325 +638143.312|220440.088|123.743 +638148.302|220435.526|123.969 +638153.252|220431.002|124.316 +638158.247|220426.439|124.657 +638163.283|220421.837|124.953 +638168.260|220417.289|125.127 +638173.225|220412.751|125.209 +638178.261|220408.151|125.563 +638183.247|220403.595|125.959 +638188.285|220398.992|126.471 +638193.272|220394.438|126.962 +638198.341|220389.808|127.282 +638203.364|220385.221|127.654 +638208.381|220380.637|128.019 +638213.398|220376.053|128.385 +638218.406|220371.478|128.693 +638223.463|220366.857|129.004 +638228.467|220362.288|129.281 +638233.515|220357.679|129.516 +638258.603|220334.755|130.348 +638273.681|220320.978|130.628 +638278.683|220316.400|130.321 +638283.694|220311.819|130.165 +638288.705|220307.238|130.007 +638293.762|220302.614|129.872 +638298.773|220298.033|129.754 +638303.784|220293.455|129.613 +638308.779|220288.883|129.184 +638318.883|220279.641|128.769 +638328.948|220270.439|128.565 +638333.995|220265.825|128.175 +638344.042|220256.635|127.462 +638349.141|220251.972|127.276 +638354.158|220247.387|127.492 +638359.205|220242.770|127.196 +638364.302|220238.109|126.901 +638374.406|220228.868|126.483 +638379.447|220224.253|125.870 +638384.495|220219.635|125.294 +638389.542|220215.018|124.880 +638394.593|220210.397|124.587 +638399.646|220205.776|124.292 +638404.743|220201.109|123.795 +638409.793|220196.489|123.264 +638414.847|220191.865|122.777 +638419.900|220187.241|122.377 +638425.006|220182.572|121.990 +638430.059|220177.945|121.384 +638435.116|220173.318|120.942 +638440.176|220168.688|120.497 +638445.284|220164.015|120.216 +638450.347|220159.385|119.787 +638455.410|220154.755|119.595 +638460.472|220150.122|119.092 +638465.584|220145.447|118.613 +638470.650|220140.808|118.022 +638475.712|220136.178|117.693 +638480.827|220131.499|117.370 +638485.896|220126.866|117.229 +638501.160|220112.900|115.940 +638506.232|220108.258|115.666 +638516.431|220098.934|115.224 +638521.515|220094.277|114.416 +638526.639|220089.595|114.425 +638546.981|220070.984|112.737 +638552.071|220066.327|112.279 +638572.432|220047.703|111.179 +638577.488|220043.080|110.655 +638592.713|220029.159|110.402 +638597.809|220024.499|110.249 +638602.851|220019.893|110.347 +638607.908|220015.276|110.146 +638618.021|220006.034|109.747 +638633.240|219992.132|109.463 +638648.345|219978.340|109.753 +638653.384|219973.740|110.121 +638663.445|219964.554|110.341 +638668.447|219959.991|110.594 +638673.504|219955.373|110.701 +638678.509|219950.804|110.896 +638683.522|219946.226|110.978 +638688.536|219941.648|111.060 +638693.557|219937.067|111.100 +638698.580|219932.477|111.051 +638703.630|219927.859|110.673 +638708.632|219923.287|110.283 +638713.695|219918.657|109.780 +638718.693|219914.091|109.576 +638723.707|219909.516|109.865 +638728.639|219905.017|110.612 +638733.580|219900.515|111.264 +638738.539|219895.989|111.670 +638743.455|219891.502|111.965 +638748.433|219886.961|112.173 +638753.416|219882.407|112.264 +638758.357|219877.899|112.362 +638763.310|219873.373|112.279 +638768.321|219868.795|112.136 +638773.295|219864.250|111.904 +638778.242|219859.727|111.423 +638783.296|219855.103|110.871 +638788.255|219850.567|110.338 +638793.303|219845.950|109.405 +638798.280|219841.396|108.756 +638803.273|219836.830|108.485 +638808.195|219832.337|108.530 +638813.017|219827.945|109.637 +638817.991|219823.404|109.664 +638822.944|219818.877|109.430 +638827.861|219814.391|109.588 +638832.722|219809.953|109.835 +638837.630|219805.472|110.112 +638842.546|219800.986|110.332 +638847.426|219796.529|110.448 +638852.236|219792.146|111.271 +638857.164|219787.644|111.414 +638862.078|219783.158|111.289 +638866.985|219778.674|111.231 +638871.914|219774.166|110.563 +638881.756|219765.174|110.350 +638891.558|219756.216|109.740 +638896.417|219751.779|109.823 +638901.342|219747.277|109.399 +638906.268|219742.772|108.975 +638911.151|219738.309|108.552 +638916.058|219733.820|107.945 +638921.026|219729.275|107.272 +638925.930|219724.791|106.775 +638930.862|219720.280|106.092 +638935.812|219715.748|105.284 +638940.655|219711.325|105.363 +638945.624|219706.775|104.108 +638969.782|219684.710|103.934 +638974.555|219680.355|104.321 +638979.502|219675.828|103.480 +638984.327|219671.421|103.187 +638989.122|219667.047|103.498 +638993.764|219662.819|104.211 +638998.455|219658.549|105.266 +639003.121|219654.300|106.153 +639007.791|219650.042|106.689 +639012.512|219645.738|107.226 +639017.182|219641.480|107.771 +639021.869|219637.207|108.223 +639026.557|219632.934|108.686 +639031.172|219628.727|109.317 +639035.924|219624.396|109.722 +639040.578|219620.150|110.118 +639045.202|219615.932|110.402 +639049.942|219611.607|110.606 +639054.575|219607.382|110.880 +639059.223|219603.139|111.060 +639063.935|219598.842|111.179 +639068.595|219594.587|111.313 +639073.268|219590.320|111.103 +639077.968|219586.028|111.051 +639082.659|219581.742|110.777 +639087.374|219577.433|110.380 +639096.856|219568.767|109.356 +639101.587|219564.439|108.652 +639106.339|219560.099|108.158 +639111.085|219555.761|107.720 +639115.727|219551.518|107.320 +639120.421|219547.227|106.933 +639125.127|219542.926|106.510 +639129.778|219538.677|106.138 +639134.417|219534.437|105.851 +639139.017|219530.237|105.537 +639143.668|219525.988|105.232 +639148.304|219521.755|105.046 +639152.888|219517.567|104.876 +639157.426|219513.421|104.696 +639162.023|219509.224|104.504 +639166.564|219505.076|104.358 +639171.091|219500.943|104.303 +639175.647|219496.782|104.126 +639180.137|219492.683|104.038 +639184.691|219488.522|103.900 +639189.196|219484.410|103.785 +639202.717|219472.057|102.980 +639207.130|219468.030|102.892 +639211.675|219463.876|102.416 +639216.152|219459.786|102.285 +639215.031|219458.743|102.184 +639210.453|219462.925|102.529 +639205.942|219467.040|102.559 +639201.455|219471.133|102.748 +639187.623|219483.761|103.766 +639183.030|219487.955|103.806 +639178.461|219492.125|104.007 +639173.855|219496.328|104.144 +639169.256|219500.522|104.263 +639164.675|219504.707|104.330 +639160.042|219508.932|104.403 +639155.378|219513.190|104.665 +639150.733|219517.430|104.858 +639146.036|219521.715|105.059 +639141.391|219525.958|105.303 +639136.679|219530.259|105.638 +639131.991|219534.538|105.879 +639127.245|219538.869|106.177 +639122.530|219543.176|106.616 +639117.808|219547.489|107.110 +639113.014|219551.866|107.479 +639108.265|219556.206|107.912 +639103.529|219560.531|108.287 +639098.707|219564.936|108.884 +639084.344|219578.054|110.573 +639079.544|219582.434|110.871 +639074.795|219586.769|111.182 +639070.040|219591.103|111.237 +639065.297|219595.431|111.264 +639060.588|219599.720|111.075 +639055.876|219604.017|110.950 +639051.124|219608.348|110.771 +639046.455|219612.600|110.402 +639041.712|219616.923|110.192 +639036.991|219621.223|109.865 +639032.284|219625.512|109.469 +639027.563|219629.809|108.860 +639022.863|219634.089|108.436 +639018.130|219638.402|107.927 +639013.393|219642.715|107.448 +639008.662|219647.022|106.951 +639003.911|219651.350|106.275 +638999.214|219655.623|105.559 +638994.504|219659.906|104.598 +638989.841|219664.148|103.672 +638985.059|219668.504|103.242 +638980.218|219672.917|103.251 +638975.339|219677.371|103.553 +638970.428|219681.851|103.763 +638965.631|219686.222|103.513 +638946.294|219703.846|102.736 +638941.128|219708.582|105.077 +638936.272|219713.011|105.050 +638931.347|219717.507|105.592 +638926.345|219722.079|106.397 +638921.407|219726.590|107.125 +638916.396|219731.165|107.671 +638911.483|219735.648|108.250 +638906.487|219740.211|108.771 +638901.516|219744.753|109.506 +638891.683|219753.720|109.737 +638886.751|219758.219|109.832 +638881.826|219762.712|109.871 +638871.895|219771.776|110.768 +638866.924|219776.312|110.880 +638861.959|219780.844|111.423 +638857.006|219785.358|111.402 +638852.086|219789.848|111.575 +638847.216|219794.280|110.829 +638842.296|219798.764|110.569 +638837.371|219803.253|110.402 +638832.448|219807.740|110.204 +638827.480|219812.269|110.003 +638822.551|219816.762|109.911 +638817.552|219821.322|110.082 +638812.621|219825.818|110.067 +638807.665|219830.332|109.305 +638802.815|219834.739|108.418 +638797.786|219839.326|108.466 +638792.726|219843.953|109.448 +638787.685|219848.559|110.256 +638782.634|219853.170|110.664 +638777.621|219857.749|111.240 +638772.567|219862.363|111.773 +638767.529|219866.960|112.133 +638762.502|219871.547|112.420 +638757.504|219876.104|112.365 +638752.505|219880.660|112.362 +638747.461|219885.260|112.331 +638742.483|219889.795|112.081 +638737.463|219894.373|111.795 +638732.449|219898.939|111.432 +638727.459|219903.484|110.740 +638722.470|219908.022|110.006 +638717.453|219912.594|109.701 +638712.411|219917.188|109.759 +638707.291|219921.860|110.286 +638702.228|219926.478|110.740 +638697.126|219931.132|111.094 +638692.045|219935.765|111.194 +638686.970|219940.392|111.179 +638681.901|219945.007|111.082 +638676.878|219949.588|111.078 +638671.818|219954.197|110.899 +638666.752|219958.811|110.795 +638661.693|219963.420|110.646 +638656.584|219968.074|110.524 +638651.534|219972.674|110.237 +638646.431|219977.322|110.057 +638615.878|220005.165|110.045 +638610.770|220009.823|110.176 +638605.710|220014.437|110.335 +638600.556|220019.134|110.435 +638595.453|220023.789|110.554 +638590.354|220028.434|110.594 +638580.149|220037.739|110.920 +638559.655|220056.424|111.780 +638539.126|220075.148|113.124 +638528.885|220084.499|114.453 +638523.752|220089.174|114.514 +638518.674|220093.804|114.425 +638513.532|220098.495|115.166 +638503.273|220107.853|115.711 +638482.808|220126.522|117.348 +638477.685|220131.191|117.531 +638472.616|220135.818|117.851 +638467.492|220140.491|118.266 +638462.371|220145.163|118.741 +638457.299|220149.790|119.400 +638452.182|220154.460|119.680 +638447.064|220159.126|120.052 +638441.950|220163.793|120.366 +638436.881|220168.417|120.765 +638431.769|220173.080|121.201 +638426.658|220177.743|121.817 +638421.592|220182.364|122.140 +638416.484|220187.025|122.545 +638411.372|220191.688|122.908 +638406.267|220196.345|123.490 +638401.210|220200.960|124.090 +638396.102|220205.621|124.377 +638391.042|220210.235|124.639 +638385.936|220214.893|125.017 +638380.883|220219.504|125.553 +638375.784|220224.155|126.108 +638370.733|220228.767|126.684 +638365.667|220233.382|126.709 +638360.611|220237.993|126.962 +638355.511|220242.648|127.376 +638350.491|220247.220|127.312 +638345.428|220251.834|127.440 +638340.314|220256.495|127.364 +638335.321|220261.055|128.144 +638320.240|220274.810|128.760 +638310.157|220284.000|128.943 +638305.158|220288.563|129.424 +638300.096|220293.178|129.613 +638295.082|220297.753|129.772 +638290.065|220302.328|129.903 +638285.044|220306.903|130.013 +638280.073|220311.435|130.098 +638275.056|220316.010|130.278 +638270.042|220320.582|130.510 +638265.056|220325.127|130.394 +638255.086|220334.213|130.253 +638230.098|220356.978|129.351 +638225.093|220361.538|129.147 +638220.082|220366.104|128.879 +638215.117|220370.627|128.574 +638210.094|220375.199|128.208 +638205.168|220379.686|127.861 +638200.191|220384.218|127.532 +638195.214|220388.754|127.196 +638190.230|220393.292|126.824 +638185.228|220397.846|126.245 +638180.278|220402.351|125.797 +638175.283|220406.899|125.368 +638170.394|220411.355|125.115 +638165.407|220415.896|124.877 +638160.469|220420.395|124.676 +638155.516|220424.906|124.337 +638150.566|220429.414|124.045 +638145.659|220433.883|123.731 +638140.700|220438.400|123.399 +638135.735|220442.923|123.027 +638130.821|220447.398|122.737 +638125.902|220451.878|122.414 +638120.937|220456.401|122.143 +638116.066|220460.839|121.868 +638111.095|220465.366|121.603 +638106.218|220469.806|121.326 +638101.305|220474.284|121.219 +638081.645|220492.185|119.491 +638076.722|220496.669|118.927 +638071.772|220501.170|118.171 +638066.856|220505.642|117.299 +638047.343|220523.418|116.470 +638042.484|220527.847|116.278 +638037.595|220532.297|115.861 +638032.734|220536.725|115.696 +638027.881|220541.142|115.239 +638022.980|220545.604|114.800 +638018.152|220550.003|114.590 +638008.465|220558.827|113.992 +637998.809|220567.620|113.380 +637989.257|220576.331|113.666 +637984.392|220580.757|112.968 +637974.992|220589.340|114.154 +637970.240|220593.671|114.383 +637965.446|220598.045|114.288 +637960.691|220602.379|114.154 +637956.006|220606.659|114.559 +637951.318|220610.938|114.943 +637914.416|220644.661|120.588 +637905.120|220653.147|121.103 +637895.820|220661.633|121.344 +637886.600|220670.048|121.838 +637877.401|220678.449|122.533 +637872.872|220682.582|122.874 +637868.266|220686.785|123.063 +637854.395|220699.437|122.786 +637849.838|220703.595|123.033 +637836.015|220716.198|122.380 +637831.364|220720.438|122.161 +637822.180|220728.808|121.582 +637817.547|220733.032|121.222 +637812.975|220737.199|120.957 +637808.382|220741.384|120.604 +637803.813|220745.550|120.396 +637799.299|220749.668|120.524 +637794.821|220753.756|120.585 +637790.326|220757.855|120.567 +637785.836|220761.952|120.610 +637781.416|220765.987|121.042 +637776.963|220770.050|121.311 +637772.571|220774.061|121.652 +637768.118|220778.124|121.667 +637763.723|220782.136|121.743 +637759.239|220786.223|121.640 +637754.777|220790.295|121.667 +637750.360|220794.322|121.695 +637745.941|220798.351|121.457 +637728.210|220814.518|120.933 +637701.437|220838.905|117.589 +637696.932|220843.004|116.647 +637692.622|220846.936|116.681 +637679.418|220858.964|115.093 +637675.059|220862.932|114.736 +637653.427|220882.647|112.999 +637649.285|220886.429|113.261 +637645.119|220890.230|113.428 +637641.028|220893.967|113.965 +637636.980|220897.664|114.462 +637632.997|220901.307|115.254 +637628.778|220905.156|114.998 +637624.532|220909.024|114.657 +637616.190|220916.635|114.187 +637612.051|220920.408|113.904 +637607.857|220924.234|113.614 +637599.563|220931.796|113.060 +637595.589|220935.426|113.319 +637591.218|220939.401|111.889 +637575.944|220953.379|115.300 +637572.046|220956.939|115.730 +637564.295|220964.019|116.364 +637548.853|220978.125|117.354 +637545.016|220981.628|117.464 +637541.215|220985.099|117.723 +637537.369|220988.611|117.808 +637521.982|221002.647|117.239 +637518.117|221006.173|117.110 +637514.445|221009.526|117.324 +637510.735|221012.912|117.415 +637507.001|221016.320|117.418 +637499.671|221023.013|117.790 +637495.961|221026.400|117.708 +637488.933|221032.825|118.677 +637485.339|221036.108|118.869 +637464.180|221055.429|119.945 +637460.726|221058.581|119.924 +637457.182|221061.815|119.985 +637446.776|221071.309|119.863 +637664.205|220870.997|113.755 +637672.791|220863.164|114.544 +637690.211|220847.278|116.574 +637694.454|220843.401|116.217 +637707.926|220831.129|118.897 +637712.355|220827.091|119.543 +637721.191|220819.029|120.271 +637725.613|220814.996|120.692 +637730.021|220810.973|120.792 +637743.264|220798.884|121.347 +637747.727|220794.812|121.545 +637752.165|220790.761|121.646 +637756.575|220786.732|121.625 +637761.034|220782.663|121.597 +637765.494|220778.591|121.591 +637769.886|220774.580|121.521 +637774.345|220770.501|121.289 +637783.190|220762.418|120.735 +637787.665|220758.334|120.616 +637792.121|220754.262|120.418 +637801.189|220745.983|120.381 +637805.733|220741.832|120.457 +637810.290|220737.674|120.619 +637838.088|220712.312|122.676 +637847.308|220703.893|122.780 +637865.852|220686.968|122.908 +637870.540|220682.688|122.923 +637889.044|220665.781|121.612 +637907.838|220648.624|121.146 +637912.465|220644.393|120.600 +637940.419|220618.830|116.412 +637945.058|220614.584|115.303 +637949.785|220610.265|114.843 +637954.503|220605.952|114.328 +637959.289|220601.584|114.306 +637968.890|220592.818|114.206 +637973.752|220588.377|114.108 +637983.237|220579.705|112.840 +637997.855|220566.367|113.371 +638002.753|220561.902|113.657 +638007.655|220557.431|114.023 +638012.574|220552.944|114.556 +638017.487|220548.463|114.639 +638032.316|220534.939|115.891 +638042.128|220525.987|116.208 +638066.850|220503.435|117.476 +638076.878|220494.294|118.891 +638081.831|220489.777|119.299 +638101.777|220471.590|121.146 +638106.745|220467.057|121.366 +638111.710|220462.528|121.591 +638116.727|220457.950|121.905 +638121.690|220453.426|122.131 +638126.694|220448.858|122.380 +638131.663|220444.328|122.743 +638136.668|220439.762|123.030 +638141.627|220435.239|123.389 +638146.674|220430.637|123.658 +638151.676|220426.071|124.033 +638156.675|220421.514|124.362 +638161.661|220416.963|124.584 +638166.687|220412.376|124.746 +638171.735|220407.773|125.200 +638176.724|220403.226|125.550 +638181.766|220398.629|125.992 +638186.758|220394.076|126.501 +638191.797|220389.482|126.980 +638196.872|220384.852|127.349 +638201.846|220380.317|127.684 +638206.912|220375.696|127.995 +638211.932|220371.115|128.382 +638216.943|220366.546|128.669 +638221.999|220361.928|128.949 +638227.004|220357.359|129.235 +638232.046|220352.754|129.367 +638267.253|220320.600|130.497 +638272.310|220315.977|130.238 +638277.327|220311.395|130.129 +638282.341|220306.811|130.013 +638287.404|220302.184|129.936 +638292.418|220297.603|129.863 +638297.428|220293.025|129.659 +638302.531|220288.362|129.473 +638307.539|220283.784|129.263 +638317.649|220274.542|128.912 +638332.801|220260.692|127.937 +638337.812|220256.111|127.922 +638342.853|220251.499|127.315 +638347.958|220246.836|127.239 +638352.978|220242.251|127.492 +638358.072|220237.591|127.065 +638363.122|220232.973|126.760 +638368.179|220228.353|126.700 +638373.278|220223.692|126.392 +638378.323|220219.077|125.758 +638383.370|220214.460|125.191 +638388.469|220209.799|124.734 +638393.523|220205.179|124.401 +638398.625|220200.512|124.194 +638403.679|220195.891|123.773 +638408.778|220191.228|123.194 +638413.832|220186.604|122.704 +638418.937|220181.934|122.295 +638423.997|220177.311|122.073 +638429.054|220172.684|121.490 +638434.159|220168.014|121.000 +638439.267|220163.342|120.561 +638444.330|220158.715|120.210 +638449.442|220154.039|119.784 +638454.507|220149.412|119.601 +638459.619|220144.734|119.043 +638464.734|220140.055|118.488 +638469.802|220135.419|117.970 +638474.914|220130.746|117.738 +638479.983|220126.113|117.452 +638495.299|220112.105|115.995 +638500.423|220107.423|115.849 +638505.495|220102.787|115.788 +638515.708|220093.442|114.407 +638520.786|220088.803|114.389 +638530.988|220079.479|114.291 +638536.133|220074.773|113.404 +638556.546|220056.107|111.795 +638561.596|220051.486|111.341 +638566.692|220046.829|110.987 +638571.789|220042.168|110.697 +638576.870|220037.526|110.893 +638581.960|220032.878|110.899 +638587.059|220028.217|110.673 +638592.107|220023.603|110.527 +638597.148|220018.997|110.630 +638602.244|220014.337|110.515 +638607.301|220009.707|110.207 +638612.406|220005.037|109.951 +638622.492|219995.817|110.240 +638627.564|219991.175|109.783 +638632.606|219986.566|110.021 +638642.694|219977.343|110.390 +638652.738|219968.163|110.765 +638657.742|219963.584|110.838 +638662.793|219958.970|111.018 +638667.804|219954.386|111.030 +638672.809|219949.811|111.167 +638677.868|219945.184|111.249 +638682.834|219940.642|111.292 +638687.848|219936.058|111.335 +638692.871|219931.465|111.304 +638697.857|219926.899|111.060 +638702.908|219922.275|110.640 +638707.922|219917.688|110.115 +638712.924|219913.109|109.792 +638717.898|219908.559|109.884 +638722.848|219904.036|110.344 +638727.776|219899.537|111.133 +638732.681|219895.059|111.597 +638737.631|219890.536|112.075 +638742.553|219886.037|112.313 +638747.534|219881.483|112.441 +638752.468|219876.969|112.526 +638757.415|219872.446|112.508 +638762.365|219867.920|112.468 +638767.346|219863.360|112.078 +638772.329|219858.797|111.703 +638777.291|219854.256|111.075 +638782.290|219849.677|110.582 +638787.231|219845.154|110.243 +638792.254|219840.555|109.582 +638797.213|219836.013|109.122 +638802.151|219831.493|108.927 +638806.948|219827.122|110.271 +638811.847|219822.645|110.545 +638816.766|219818.146|110.591 +638821.643|219813.687|110.627 +638826.514|219809.233|110.725 +638831.436|219804.732|110.813 +638836.304|219800.281|110.996 +638841.184|219795.819|111.082 +638845.996|219791.424|111.819 +638850.901|219786.937|111.691 +638855.793|219782.463|111.722 +638865.644|219773.444|110.783 +638875.401|219764.516|110.371 +638880.293|219760.042|110.106 +638885.179|219755.567|109.899 +638890.013|219751.151|110.188 +638894.829|219746.743|110.201 +638904.692|219737.712|108.829 +638909.630|219733.189|108.323 +638914.534|219728.696|107.747 +638919.447|219724.197|107.128 +638924.333|219719.720|106.375 +638929.292|219715.175|105.461 +638934.160|219710.722|105.321 +638938.997|219706.293|105.028 +638963.204|219684.143|103.937 +638968.011|219679.745|104.038 +638972.848|219675.319|103.586 +638977.707|219670.872|103.355 +638982.489|219666.495|103.343 +638987.229|219662.164|103.654 +638991.904|219657.900|104.446 +638996.495|219653.709|105.470 +639001.222|219649.396|106.250 +639005.880|219645.141|106.845 +639010.552|219640.874|107.339 +639015.261|219636.573|107.933 +639019.897|219632.336|108.369 +639024.570|219628.069|108.893 +639029.197|219623.842|109.402 +639033.903|219619.541|109.750 +639038.530|219615.313|110.292 +639043.218|219611.031|110.475 +639047.881|219606.770|110.819 +639052.612|219602.445|111.066 +639057.275|219598.177|111.127 +639061.911|219593.944|111.392 +639066.645|219589.609|111.359 +639071.326|219585.330|111.380 +639076.011|219581.041|111.091 +639080.754|219576.698|110.771 +639094.964|219563.692|109.521 +639099.770|219559.285|108.649 +639104.461|219554.987|108.171 +639109.195|219550.656|107.793 +639113.922|219546.328|107.451 +639118.619|219542.027|107.040 +639123.286|219537.754|106.534 +639127.989|219533.450|106.144 +639132.683|219529.152|105.815 +639137.322|219524.903|105.531 +639141.958|219520.660|105.287 +639146.609|219516.405|104.995 +639151.242|219512.163|104.815 +639155.857|219507.941|104.498 +639160.441|219503.747|104.358 +639165.022|219499.553|104.248 +639169.594|219495.371|104.199 +639174.151|219491.201|103.995 +639178.738|219487.001|103.657 +639183.191|219482.932|103.775 +639187.727|219478.778|103.730 +639196.929|219470.353|102.803 +639205.902|219462.139|102.340 +639210.459|219457.966|102.044 +639206.554|219459.880|102.175 +639202.052|219463.983|102.419 +639183.831|219480.591|103.635 +639179.305|219484.715|103.839 +639174.742|219488.873|103.992 +639170.192|219493.018|104.108 +639165.595|219497.206|104.211 +639161.014|219501.382|104.257 +639156.424|219505.564|104.376 +639151.800|219509.779|104.696 +639147.136|219514.028|104.970 +639142.491|219518.265|105.181 +639137.794|219522.544|105.397 +639133.192|219526.738|105.693 +639128.425|219531.088|106.086 +639123.709|219535.385|106.479 +639118.997|219539.683|106.897 +639114.279|219543.987|107.381 +639109.539|219548.306|107.707 +639104.784|219552.643|108.155 +639100.042|219556.968|108.570 +639095.183|219561.400|109.369 +639090.507|219565.661|109.448 +639085.655|219570.090|110.283 +639080.821|219574.503|110.743 +639076.069|219578.841|111.051 +639071.311|219583.184|111.414 +639066.547|219587.531|111.530 +639061.826|219591.834|111.408 +639057.123|219596.117|111.185 +639052.304|219600.512|111.097 +639047.592|219604.807|110.969 +639042.876|219609.101|110.573 +639038.134|219613.426|110.374 +639033.440|219617.700|109.856 +639028.642|219622.071|109.396 +639023.933|219626.359|109.027 +639019.205|219630.663|108.451 +639014.414|219635.028|107.985 +639009.696|219639.325|107.400 +639004.913|219643.678|106.884 +639000.152|219648.015|106.266 +638995.416|219652.328|105.488 +638990.716|219656.601|104.458 +638985.933|219660.954|103.654 +638981.090|219665.364|103.294 +638976.229|219669.799|103.452 +638971.279|219674.313|103.535 +638966.326|219678.840|104.419 +638961.461|219683.272|103.937 +638941.920|219701.084|103.218 +638936.763|219705.808|105.107 +638931.844|219710.292|105.171 +638926.887|219714.818|105.583 +638921.816|219719.454|106.546 +638916.780|219724.051|107.250 +638911.800|219728.601|107.963 +638906.792|219733.173|108.521 +638901.754|219737.776|109.384 +638886.764|219751.458|110.304 +638881.817|219755.966|110.091 +638871.831|219765.077|110.539 +638866.833|219769.640|110.874 +638861.828|219774.206|111.280 +638851.818|219783.341|111.773 +638846.844|219787.879|111.990 +638841.839|219792.439|111.603 +638836.910|219796.932|111.441 +638831.951|219801.452|111.136 +638827.007|219805.960|111.155 +638821.990|219810.535|110.984 +638817.004|219815.080|110.975 +638811.993|219819.648|110.777 +638807.015|219824.184|110.737 +638802.120|219828.634|109.332 +638797.155|219833.160|109.198 +638792.105|219837.772|109.494 +638787.030|219842.405|110.115 +638782.010|219846.989|110.670 +638776.965|219851.592|111.018 +638771.848|219856.267|111.685 +638766.849|219860.830|112.148 +638761.774|219865.463|112.407 +638756.754|219870.041|112.615 +638751.706|219874.647|112.587 +638746.708|219879.200|112.545 +638741.672|219883.791|112.401 +638736.649|219888.372|112.161 +638731.684|219892.895|111.764 +638726.682|219897.452|111.216 +638721.690|219901.996|110.527 +638716.694|219906.547|109.917 +638711.659|219911.140|109.917 +638706.608|219915.752|110.134 +638701.494|219920.422|110.643 +638696.437|219925.042|111.066 +638691.344|219929.694|111.365 +638686.269|219934.327|111.399 +638681.291|219938.865|111.405 +638676.219|219943.495|111.423 +638671.160|219948.113|111.301 +638666.097|219952.731|111.191 +638661.037|219957.345|111.106 +638655.978|219961.963|110.993 +638650.918|219966.578|110.929 +638640.814|219975.792|110.533 +638635.718|219980.440|110.289 +638625.607|219989.666|110.164 +638615.451|219998.932|110.121 +638610.352|220003.586|110.091 +638605.237|220008.256|110.371 +638600.178|220012.874|110.591 +638595.075|220017.534|110.761 +638584.932|220026.791|110.752 +638579.826|220031.451|111.042 +638569.640|220040.748|111.139 +638564.556|220045.384|110.874 +638559.453|220050.047|111.350 +638554.354|220054.705|111.758 +638549.203|220059.408|112.316 +638544.113|220064.056|112.505 +638539.023|220068.704|112.791 +638528.775|220078.071|114.322 +638518.570|220087.382|114.218 +638513.486|220092.021|114.379 +638498.188|220105.999|115.888 +638487.984|220115.320|116.638 +638477.782|220124.638|117.577 +638472.661|220129.314|117.766 +638467.596|220133.941|118.055 +638462.524|220138.574|118.555 +638457.406|220143.249|119.165 +638452.337|220147.879|119.610 +638447.220|220152.552|119.851 +638442.105|220157.221|120.229 +638437.039|220161.848|120.594 +638431.977|220166.475|121.109 +638426.868|220171.145|121.634 +638421.805|220175.768|122.051 +638416.694|220180.432|122.323 +638411.634|220185.056|122.697 +638406.578|220189.676|123.264 +638401.475|220194.340|123.895 +638396.416|220198.958|124.182 +638391.359|220203.575|124.438 +638386.253|220208.239|124.746 +638381.200|220212.853|125.200 +638376.149|220217.468|125.782 +638371.102|220222.083|126.419 +638365.996|220226.743|126.657 +638360.986|220231.318|126.745 +638355.932|220235.933|127.126 +638350.869|220240.551|127.126 +638345.809|220245.171|127.184 +638340.750|220249.789|127.385 +638330.694|220258.970|128.123 +638310.520|220277.386|129.071 +638305.509|220281.961|129.245 +638300.498|220286.533|129.424 +638295.487|220291.105|129.650 +638290.473|220295.680|129.824 +638285.456|220300.258|129.891 +638280.439|220304.836|130.004 +638275.422|220309.417|130.083 +638270.402|220313.995|130.174 +638265.431|220318.531|130.308 +638260.404|220323.118|130.269 +638245.381|220336.816|129.711 +638240.397|220341.363|129.687 +638230.403|220350.477|129.333 +638225.401|220355.037|129.144 +638220.396|220359.600|128.891 +638215.434|220364.123|128.611 +638210.469|220368.652|128.306 +638205.449|220373.227|127.971 +638200.481|220377.757|127.678 +638195.461|220382.332|127.416 +638190.526|220386.831|127.001 +638185.533|220391.378|126.483 +638180.534|220395.932|125.968 +638175.545|220400.480|125.581 +638170.607|220404.981|125.270 +638165.596|220409.547|124.663 +638160.646|220414.058|124.282 +638155.711|220418.560|124.109 +638150.710|220423.120|123.746 +638145.805|220427.589|123.456 +638140.804|220432.148|123.142 +638135.899|220436.620|122.902 +638130.946|220441.137|122.643 +638126.033|220445.614|122.353 +638121.068|220450.141|122.039 +638116.161|220454.618|121.859 +638111.244|220459.099|121.634 +638106.331|220463.579|121.423 +638101.405|220468.069|121.167 +638096.489|220472.553|120.991 +638081.709|220486.019|119.415 +638076.768|220490.521|119.131 +638071.861|220494.992|118.238 +638062.116|220503.880|118.223 +638052.293|220512.832|117.080 +638047.367|220517.319|116.681 +638042.545|220521.720|116.778 +638032.804|220530.599|116.205 +638018.176|220543.931|115.001 +638013.345|220548.335|114.764 +638003.570|220557.242|113.846 +637993.878|220566.078|113.310 +637984.380|220574.746|113.642 +637979.384|220579.291|112.276 +637970.121|220587.761|114.157 +637965.336|220592.126|114.114 +637955.826|220600.795|114.212 +637951.050|220605.150|114.309 +637946.359|220609.433|114.669 +637941.751|220613.642|115.294 +637937.127|220617.869|116.534 +637932.567|220622.036|117.513 +637914.151|220638.855|120.268 +637909.506|220643.095|120.689 +637895.537|220655.835|121.177 +637890.925|220660.042|121.234 +637886.195|220664.348|120.869 +637877.060|220672.688|121.963 +637872.485|220676.864|122.320 +637849.515|220697.806|122.524 +637840.285|220706.219|122.362 +637826.490|220718.789|121.676 +637817.380|220727.092|121.256 +637812.725|220731.331|120.786 +637799.089|220743.758|120.250 +637790.082|220751.970|120.375 +637785.635|220756.023|120.360 +637781.215|220760.056|120.783 +637776.811|220764.073|121.036 +637767.987|220772.123|121.484 +637763.552|220776.168|121.603 +637759.141|220780.188|121.612 +637754.722|220784.217|121.594 +637750.318|220788.232|121.664 +637745.898|220792.264|121.664 +637728.296|220808.303|120.966 +637723.797|220812.399|120.399 +637719.423|220816.383|120.238 +637714.985|220820.425|119.762 +637675.355|220856.501|114.846 +637666.720|220864.368|114.038 +637662.425|220868.278|113.782 +637658.057|220872.256|113.191 +637653.778|220876.151|112.801 +637649.584|220879.974|112.828 +637645.521|220883.683|113.459 +637641.367|220887.472|113.444 +637637.328|220891.160|113.974 +637633.332|220894.808|114.712 +637629.360|220898.435|115.330 +637625.136|220902.282|115.065 +637621.012|220906.040|114.797 +637612.612|220913.685|114.120 +637608.518|220917.415|114.044 +637604.324|220921.234|113.538 +637600.188|220924.999|113.081 +637596.134|220928.690|113.008 +637591.940|220932.506|112.334 +637588.087|220936.026|113.142 +637580.150|220943.262|113.575 +637576.365|220946.722|114.468 +637564.773|220957.295|115.791 +637549.356|220971.356|116.894 +637545.467|220974.901|117.001 +637541.669|220978.363|117.278 +637534.058|220985.304|117.586 +637518.672|220999.318|117.062 +637514.877|221002.775|117.016 +637511.095|221006.222|117.022 +637507.334|221009.648|117.132 +637503.688|221012.973|117.272 +637500.000|221016.335|117.479 +637496.303|221019.706|117.656 +637492.612|221023.071|117.665 +637485.491|221029.567|118.513 +637481.843|221032.892|118.513 +637478.286|221036.135|118.872 +637471.227|221042.573|119.412 +637453.594|221058.642|119.985 +637449.964|221061.949|119.741 +637446.639|221064.978|120.040 +637661.770|220867.193|113.788 +637666.101|220863.237|113.983 +637670.377|220859.329|114.187 +637683.584|220847.272|115.727 +637701.498|220830.922|118.677 +637705.878|220826.920|118.796 +637723.742|220810.601|120.457 +637728.213|220806.517|120.890 +637737.138|220798.363|121.469 +637741.600|220794.288|121.655 +637746.017|220790.246|121.628 +637750.455|220786.189|121.460 +637754.896|220782.130|121.591 +637759.343|220778.064|121.503 +637763.854|220773.940|121.512 +637768.276|220769.895|121.329 +637772.754|220765.798|121.189 +637781.642|220757.666|120.591 +637786.104|220753.585|120.411 +637790.618|220749.455|120.259 +637795.090|220745.368|120.162 +637799.674|220741.177|120.152 +637808.742|220732.883|120.204 +637818.062|220724.373|121.210 +637827.322|220715.912|121.661 +637832.007|220711.635|122.100 +637845.857|220698.974|122.347 +637850.509|220694.719|122.377 +637864.456|220681.969|122.554 +637873.652|220673.547|121.829 +637882.915|220665.074|121.247 +637892.272|220656.512|121.033 +637901.654|220647.932|121.064 +637906.369|220643.616|120.780 +637911.027|220639.355|120.439 +637915.654|220635.118|119.918 +637943.525|220609.579|114.928 +637952.955|220600.944|113.858 +637957.753|220596.555|113.965 +637967.366|220587.764|113.992 +637976.803|220579.117|112.350 +637981.792|220574.569|113.666 +637986.556|220570.208|113.246 +637991.454|220565.730|113.517 +638001.153|220556.864|113.758 +638006.140|220552.313|114.410 +638011.020|220547.851|114.648 +638015.927|220543.367|115.145 +638030.701|220529.870|116.428 +638050.366|220511.893|117.254 +638085.065|220480.191|119.598 +638100.055|220466.499|121.052 +638105.023|220461.955|121.332 +638110.037|220457.374|121.588 +638114.947|220452.887|121.795 +638119.949|220448.315|121.990 +638124.951|220443.743|122.210 +638129.959|220439.165|122.512 +638134.951|220434.602|122.701 +638139.898|220430.079|122.935 +638144.946|220425.467|123.240 +638149.945|220420.901|123.554 +638154.940|220416.335|123.886 +638159.970|220411.739|124.093 +638164.977|220407.164|124.648 +638170.037|220402.546|125.279 +638175.018|220397.992|125.569 +638180.059|220393.390|126.032 +638185.097|220388.784|126.544 +638190.133|220384.185|127.032 +638195.208|220379.549|127.446 +638200.173|220375.013|127.666 +638205.239|220370.384|128.004 +638210.249|220365.805|128.300 +638215.306|220361.182|128.614 +638220.357|220356.570|128.854 +638225.358|220352.001|129.092 +638230.403|220347.392|129.266 +638260.621|220319.784|130.327 +638265.632|220315.199|130.125 +638270.652|220310.612|130.135 +638275.715|220305.985|130.031 +638280.725|220301.401|129.903 +638285.788|220296.774|129.805 +638290.799|220292.190|129.741 +638295.853|220287.569|129.519 +638300.909|220282.948|129.333 +638305.914|220278.370|129.120 +638310.971|220273.747|129.022 +638316.018|220269.129|128.662 +638321.026|220264.551|128.547 +638326.080|220259.930|128.336 +638331.133|220255.309|128.141 +638341.222|220246.077|127.303 +638346.273|220241.459|127.038 +638351.332|220236.835|127.093 +638356.389|220232.211|127.007 +638361.437|220227.594|126.663 +638366.490|220222.973|126.547 +638371.541|220218.355|126.221 +638376.585|220213.737|125.630 +638381.630|220209.120|125.011 +638386.726|220204.456|124.633 +638391.780|220199.835|124.289 +638396.833|220195.215|124.087 +638401.932|220190.548|123.722 +638406.983|220185.924|123.158 +638412.037|220181.300|122.615 +638417.139|220176.631|122.158 +638422.199|220172.007|121.932 +638427.304|220167.338|121.634 +638432.361|220162.708|121.052 +638437.420|220158.078|120.527 +638442.529|220153.405|120.223 +638447.589|220148.775|119.829 +638452.651|220144.145|119.613 +638457.763|220139.467|119.089 +638462.829|220134.831|118.479 +638467.897|220130.195|118.013 +638473.006|220125.522|117.772 +638493.339|220106.920|116.092 +638498.411|220102.281|115.846 +638503.483|220097.645|115.812 +638513.648|220088.336|114.322 +638518.723|220083.697|114.325 +638533.975|220069.740|113.017 +638544.152|220060.432|112.203 +638559.429|220046.454|111.066 +638564.510|220041.812|111.213 +638569.588|220037.172|111.475 +638574.696|220032.500|110.847 +638579.777|220027.858|111.066 +638584.825|220023.240|110.865 +638589.918|220018.583|110.749 +638594.966|220013.971|110.655 +638600.010|220009.359|110.640 +638605.109|220004.696|110.432 +638610.160|220000.081|110.374 +638615.229|219995.442|109.850 +638620.316|219990.797|110.103 +638625.367|219986.185|110.152 +638635.446|219976.977|110.652 +638640.439|219972.418|110.896 +638645.480|219967.812|111.158 +638650.491|219963.237|111.152 +638655.539|219958.625|111.319 +638660.589|219954.011|111.444 +638665.545|219949.484|111.603 +638670.608|219944.858|111.560 +638675.622|219940.276|111.594 +638680.639|219935.692|111.581 +638685.662|219931.099|111.469 +638690.633|219926.557|111.490 +638695.678|219921.946|111.130 +638700.732|219917.322|110.652 +638705.739|219912.741|110.185 +638710.778|219908.135|110.039 +638715.758|219903.584|110.070 +638720.693|219899.080|110.743 +638725.634|219894.572|111.341 +638730.584|219890.057|111.862 +638735.537|219885.534|112.298 +638740.508|219880.993|112.502 +638745.491|219876.442|112.612 +638750.426|219871.931|112.697 +638755.370|219867.414|112.727 +638760.338|219862.872|112.474 +638765.355|219858.285|112.231 +638770.345|219853.722|111.795 +638775.310|219849.174|111.100 +638780.303|219844.609|110.701 +638785.301|219840.037|110.271 +638790.267|219835.492|109.695 +638795.211|219830.975|109.420 +638800.142|219826.470|109.807 +638804.900|219822.133|111.036 +638809.853|219817.609|111.228 +638814.703|219813.184|111.527 +638819.640|219808.666|111.395 +638824.499|219804.232|111.624 +638829.427|219799.730|111.664 +638834.243|219795.328|111.853 +638839.151|219790.848|112.136 +638843.991|219786.425|112.151 +638848.953|219781.887|111.935 +638853.799|219777.458|111.935 +638858.719|219772.962|111.737 +638863.641|219768.454|111.069 +638868.597|219763.922|110.609 +638873.435|219759.499|110.347 +638878.360|219754.994|110.207 +638883.161|219750.611|110.344 +638902.723|219732.716|108.838 +638907.548|219728.306|108.488 +638912.537|219723.737|107.613 +638917.420|219719.265|106.836 +638922.349|219714.754|106.132 +638927.223|219710.292|105.516 +638932.017|219705.912|105.562 +638936.964|219701.383|104.452 +638960.812|219679.593|104.937 +638965.628|219675.188|104.608 +638970.517|219670.711|103.775 +638975.284|219666.349|103.501 +638980.075|219661.969|103.434 +638984.769|219657.677|103.708 +638989.390|219653.465|104.544 +638994.038|219649.225|105.522 +638998.607|219645.056|106.366 +639003.267|219640.801|106.933 +639007.925|219636.552|107.543 +639012.552|219632.324|108.015 +639017.230|219628.054|108.506 +639021.805|219623.875|109.030 +639026.460|219619.626|109.375 +639031.093|219615.395|109.875 +639035.720|219611.168|110.414 +639040.346|219606.943|110.667 +639044.973|219602.716|110.917 +639049.618|219598.470|111.082 +639054.267|219594.224|111.255 +639058.906|219589.984|111.484 +639063.523|219585.763|111.566 +639068.160|219581.523|111.539 +639072.893|219577.195|111.267 +639077.590|219572.897|110.929 +639082.235|219568.645|110.624 +639086.963|219564.320|110.173 +639096.351|219555.728|109.128 +639101.069|219551.406|108.491 +639105.766|219547.108|108.030 +639110.438|219542.835|107.717 +639115.077|219538.589|107.348 +639119.729|219534.331|106.921 +639124.374|219530.082|106.564 +639129.031|219525.818|106.147 +639133.701|219521.547|105.714 +639138.309|219517.329|105.330 +639142.948|219513.086|105.107 +639147.545|219508.880|104.854 +639152.138|219504.680|104.635 +639156.686|219500.519|104.425 +639161.279|219496.316|104.245 +639165.815|219492.171|104.141 +639170.414|219487.964|103.983 +639174.904|219483.859|103.876 +639179.476|219479.674|103.629 +639184.042|219475.495|103.178 +639188.589|219471.338|103.108 +639202.189|219458.893|102.194 +639199.794|219459.185|101.645 +639195.258|219463.327|102.343 +639186.285|219471.517|103.047 +639181.759|219475.647|103.504 +639172.834|219483.792|103.846 +639168.369|219487.861|103.785 +639163.791|219492.040|104.071 +639159.292|219496.145|104.233 +639154.796|219500.248|104.400 +639150.251|219504.390|104.568 +639145.695|219508.551|104.836 +639141.147|219512.699|105.065 +639136.545|219516.899|105.348 +639131.906|219521.136|105.848 +639127.337|219525.306|106.275 +639122.673|219529.564|106.677 +639118.028|219533.800|107.003 +639113.377|219538.049|107.409 +639108.789|219542.234|107.741 +639104.105|219546.511|108.085 +639099.408|219550.799|108.524 +639094.668|219555.130|109.234 +639089.977|219559.410|109.689 +639085.250|219563.726|110.088 +639080.565|219568.002|110.573 +639075.856|219572.297|110.908 +639071.101|219576.637|111.267 +639066.376|219580.944|111.441 +639061.725|219585.184|111.514 +639057.056|219589.439|111.411 +639052.359|219593.715|111.188 +639047.717|219597.946|110.950 +639043.017|219602.225|110.768 +639038.332|219606.492|110.515 +639033.650|219610.753|110.259 +639028.968|219615.018|109.704 +639024.271|219619.291|109.250 +639019.565|219623.576|108.875 +639014.850|219627.871|108.259 +639010.171|219632.126|107.723 +639005.441|219636.433|107.229 +639000.713|219640.740|106.732 +638996.007|219645.019|106.080 +638991.301|219649.298|105.101 +638986.638|219653.538|104.178 +638981.883|219657.866|103.556 +638977.079|219662.243|103.309 +638972.153|219666.733|103.571 +638967.255|219671.198|103.678 +638962.266|219675.758|104.848 +638957.413|219680.178|104.321 +638932.798|219702.620|104.982 +638927.832|219707.150|105.449 +638922.846|219711.697|105.720 +638917.820|219716.284|106.342 +638912.839|219720.832|107.028 +638907.722|219725.508|108.076 +638902.680|219730.110|108.945 +638897.642|219734.710|109.426 +638877.680|219752.909|110.027 +638872.731|219757.423|110.310 +638867.653|219762.056|110.481 +638862.620|219766.647|111.136 +638852.525|219775.858|111.944 +638847.530|219780.411|111.935 +638842.513|219784.983|112.121 +638837.447|219789.607|112.374 +638832.472|219794.140|112.221 +638827.462|219798.703|111.956 +638822.429|219803.290|111.938 +638817.464|219807.816|111.773 +638812.383|219812.446|111.789 +638807.375|219817.009|111.597 +638802.346|219821.587|111.115 +638797.433|219826.055|109.945 +638792.431|219830.609|109.695 +638787.341|219835.254|109.954 +638782.229|219839.915|110.448 +638777.145|219844.557|110.725 +638772.082|219849.178|111.319 +638766.974|219853.838|111.901 +638761.884|219858.480|112.334 +638756.815|219863.107|112.578 +638751.706|219867.761|112.700 +638746.650|219872.373|112.822 +638741.621|219876.954|112.618 +638736.543|219881.581|112.450 +638731.522|219886.153|112.164 +638726.472|219890.755|111.679 +638721.473|219895.303|111.100 +638716.481|219899.848|110.472 +638711.421|219904.459|110.155 +638706.346|219909.080|109.993 +638701.237|219913.743|110.417 +638696.120|219918.416|111.033 +638691.066|219923.025|111.402 +638685.936|219927.700|111.533 +638680.852|219932.336|111.716 +638675.832|219936.911|111.667 +638670.718|219941.575|111.630 +638665.643|219946.202|111.776 +638660.580|219950.816|111.731 +638655.475|219955.471|111.621 +638650.424|219960.070|111.368 +638645.361|219964.688|111.417 +638635.257|219973.893|111.054 +638614.976|219992.373|110.195 +638609.867|219997.030|110.350 +638604.811|220001.642|110.454 +638599.702|220006.299|110.704 +638594.643|220010.914|110.908 +638589.546|220015.559|110.947 +638584.450|220020.207|110.993 +638579.409|220024.801|110.853 +638574.315|220029.443|110.832 +638569.259|220034.057|111.234 +638559.130|220043.287|111.045 +638554.040|220047.929|111.085 +638548.990|220052.534|111.395 +638543.884|220057.195|112.118 +638538.791|220061.843|112.551 +638533.701|220066.485|112.761 +638518.479|220080.372|113.941 +638513.392|220085.014|114.319 +638508.357|220089.610|114.764 +638498.188|220098.888|115.800 +638472.853|220122.002|117.604 +638467.827|220126.586|118.031 +638462.761|220131.207|118.196 +638457.690|220135.836|118.808 +638452.621|220140.463|119.509 +638447.552|220145.087|119.747 +638442.532|220149.665|120.094 +638437.466|220154.286|120.408 +638432.449|220158.864|120.914 +638427.389|220163.485|121.466 +638422.372|220168.060|121.774 +638417.310|220172.678|122.003 +638412.247|220177.295|122.390 +638407.190|220181.913|122.868 +638402.179|220186.485|123.414 +638397.126|220191.097|124.036 +638392.115|220195.669|124.167 +638387.055|220200.283|124.407 +638382.047|220204.852|124.773 +638376.997|220209.461|125.343 +638371.946|220214.073|125.877 +638366.944|220218.636|126.440 +638361.885|220223.250|126.584 +638356.877|220227.816|126.828 +638351.872|220232.382|127.178 +638346.803|220237.003|126.965 +638341.789|220241.572|127.035 +638316.671|220264.502|128.629 +638311.660|220269.074|128.797 +638306.649|220273.649|128.949 +638301.638|220278.221|129.126 +638296.627|220282.793|129.370 +638291.619|220287.368|129.571 +638286.602|220291.946|129.659 +638281.634|220296.479|129.766 +638276.620|220301.054|129.915 +638271.645|220305.595|129.918 +638266.622|220310.176|129.976 +638261.599|220314.760|129.973 +638256.634|220319.293|130.211 +638241.638|220332.972|130.119 +638231.619|220342.104|129.235 +638226.623|220346.661|129.080 +638221.667|220351.181|128.824 +638216.617|220355.784|128.656 +638211.658|220360.307|128.403 +638206.641|220364.882|128.044 +638201.624|220369.454|127.748 +638196.655|220373.986|127.465 +638191.635|220378.561|127.199 +638186.661|220383.100|126.888 +638181.662|220387.654|126.300 +638176.618|220392.250|125.803 +638171.674|220396.755|125.383 +638166.636|220401.348|125.035 +638161.661|220405.881|124.285 +638156.644|220410.450|123.676 +638151.661|220414.997|123.496 +638146.705|220419.514|123.136 +638141.703|220424.074|122.795 +638136.759|220428.582|122.609 +638131.812|220433.096|122.423 +638126.865|220437.604|122.292 +638121.903|220442.131|121.984 +638116.999|220446.602|121.814 +638112.040|220451.125|121.594 +638107.126|220455.606|121.393 +638102.155|220460.138|121.097 +638097.232|220464.628|120.844 +638082.401|220478.143|119.159 +638077.490|220482.620|119.159 +638067.594|220491.642|117.988 +638057.855|220500.530|118.491 +638028.448|220527.338|116.504 +638023.544|220531.809|115.967 +638008.916|220545.141|114.855 +637999.141|220554.050|113.928 +637994.268|220558.497|113.822 +637989.388|220562.944|113.288 +637984.542|220567.364|113.063 +637979.799|220571.692|113.294 +637974.748|220576.285|111.517 +637955.912|220593.498|113.712 +637941.723|220606.461|114.660 +637914.111|220631.726|119.799 +637904.812|220640.224|120.585 +637881.491|220661.523|121.021 +637876.855|220665.760|121.271 +637826.185|220712.028|121.707 +637821.565|220716.244|121.384 +637816.962|220720.447|121.164 +637812.347|220724.653|120.628 +637807.782|220728.817|120.399 +637798.641|220737.165|120.204 +637794.111|220741.295|119.960 +637789.634|220745.386|120.024 +637785.211|220749.427|120.402 +637780.673|220753.573|120.430 +637776.280|220757.587|120.728 +637767.420|220765.682|121.231 +637762.997|220769.724|121.402 +637758.541|220773.790|121.426 +637754.091|220777.856|121.487 +637749.665|220781.895|121.426 +637740.847|220789.948|121.542 +637736.428|220793.986|121.567 +637727.497|220802.131|120.692 +637714.296|220814.176|120.003 +637709.749|220818.322|119.250 +637700.925|220826.371|118.400 +637696.557|220830.358|118.351 +637678.741|220846.589|114.953 +637665.775|220858.418|113.852 +637661.499|220862.323|113.657 +637657.140|220866.297|113.105 +637652.845|220870.214|112.871 +637648.621|220874.070|112.740 +637644.457|220877.877|112.892 +637640.431|220881.559|113.459 +637636.386|220885.256|113.947 +637632.253|220889.032|114.288 +637624.194|220896.399|115.230 +637620.104|220900.136|115.327 +637615.794|220904.059|114.483 +637611.603|220907.881|113.934 +637607.515|220911.615|114.099 +637603.367|220915.394|113.560 +637599.146|220919.241|112.944 +637595.104|220922.932|113.127 +637591.026|220926.654|112.941 +637575.139|220941.159|113.718 +637571.345|220944.634|114.340 +637567.562|220948.090|115.041 +637552.157|220962.166|116.324 +637548.280|220965.705|116.461 +637544.455|220969.201|116.598 +637536.860|220976.135|116.928 +637513.948|220997.047|116.638 +637510.196|221000.473|116.754 +637502.829|221007.197|116.937 +637499.171|221010.538|117.251 +637495.489|221013.903|117.479 +637491.813|221017.256|117.327 +637488.262|221020.502|117.879 +637481.023|221027.113|118.058 +637470.468|221036.757|119.363 +637459.919|221046.392|119.744 +637449.333|221056.054|119.695 +637445.916|221059.175|119.838 +637442.371|221062.409|119.729 +637658.816|220862.944|113.535 +637663.169|220858.973|113.834 +637667.369|220855.132|113.691 +637680.482|220843.169|114.779 +637685.115|220838.950|116.294 +637703.006|220822.634|118.744 +637707.447|220818.581|119.208 +637711.882|220814.536|119.640 +637716.384|220810.430|120.183 +637720.810|220806.389|120.378 +637725.296|220802.292|120.634 +637729.750|220798.232|120.994 +637734.242|220794.130|121.320 +637738.705|220790.057|121.515 +637747.574|220781.953|121.417 +637752.037|220777.878|121.393 +637756.493|220773.805|121.372 +637760.992|220769.697|121.323 +637765.430|220765.643|121.225 +637769.907|220761.549|121.091 +637778.774|220753.445|120.384 +637783.312|220749.299|120.351 +637787.796|220745.203|120.027 +637792.289|220741.097|119.774 +637796.836|220736.943|119.851 +637801.399|220732.776|120.040 +637806.032|220728.546|120.357 +637810.650|220724.330|120.317 +637815.295|220720.093|121.036 +637833.860|220703.147|122.045 +637866.306|220673.486|121.433 +637870.951|220669.241|121.204 +637880.288|220660.706|121.113 +637884.933|220656.457|120.954 +637894.311|220647.880|120.594 +637899.060|220643.543|120.847 +637903.721|220639.279|120.515 +637913.023|220630.769|119.802 +637922.320|220622.259|118.388 +637940.809|220605.318|114.584 +637945.472|220601.044|113.672 +637955.040|220592.300|113.648 +637964.672|220583.497|113.831 +637974.066|220574.890|111.880 +637979.046|220570.348|113.136 +637988.739|220561.494|113.215 +637993.588|220557.062|113.526 +637998.507|220552.572|114.032 +638003.436|220548.070|114.651 +638008.328|220543.602|115.001 +638018.106|220534.668|115.309 +638023.041|220530.166|116.096 +638027.994|220525.640|116.245 +638047.614|220507.715|117.150 +638067.331|220489.698|118.022 +638072.312|220485.153|118.689 +638077.241|220480.648|118.900 +638082.227|220476.094|119.211 +638087.159|220471.590|119.503 +638097.187|220462.439|120.853 +638102.149|220457.904|121.076 +638107.071|220453.408|121.399 +638112.076|220448.836|121.600 +638117.032|220444.307|121.817 +638122.028|220439.741|121.981 +638126.981|220435.218|122.213 +638131.977|220430.655|122.414 +638136.963|220426.095|122.579 +638141.956|220421.535|122.816 +638147.003|220416.927|123.142 +638151.993|220412.367|123.411 +638156.986|220407.807|123.743 +638162.051|220403.183|124.423 +638167.114|220398.562|125.127 +638172.149|220393.963|125.514 +638177.136|220389.409|125.901 +638182.174|220384.810|126.425 +638187.216|220380.207|127.007 +638192.230|220375.626|127.251 +638197.295|220370.999|127.547 +638202.255|220366.467|127.772 +638207.317|220361.843|128.117 +638212.380|220357.219|128.501 +638217.373|220352.650|128.626 +638222.420|220348.033|128.861 +638227.416|220343.464|129.056 +638232.457|220338.855|129.251 +638252.605|220320.430|130.049 +638257.622|220315.839|129.921 +638262.687|220311.200|129.903 +638267.710|220306.607|129.955 +638272.773|220301.974|129.894 +638277.787|220297.387|129.812 +638282.801|220292.800|129.708 +638287.861|220288.170|129.620 +638292.914|220283.543|129.473 +638297.968|220278.916|129.260 +638303.022|220274.292|129.056 +638308.072|220269.668|128.845 +638313.080|220265.084|128.717 +638318.179|220260.418|128.449 +638323.230|220255.794|128.220 +638338.369|220241.931|127.209 +638343.420|220237.308|126.956 +638348.470|220232.684|126.690 +638353.533|220228.054|126.968 +638358.629|220223.390|126.632 +638368.731|220214.143|126.203 +638373.775|220209.522|125.569 +638378.865|220204.859|124.923 +638383.916|220200.235|124.551 +638388.966|220195.608|124.237 +638394.020|220190.984|124.093 +638399.073|220186.357|123.728 +638404.170|220181.688|123.152 +638409.269|220177.018|122.569 +638414.274|220172.431|122.140 +638419.379|220167.758|121.893 +638424.485|220163.086|121.649 +638429.541|220158.453|121.137 +638434.598|220153.823|120.625 +638439.706|220149.144|120.226 +638444.766|220144.511|119.866 +638449.878|220139.832|119.604 +638454.986|220135.154|119.198 +638460.052|220130.512|118.470 +638465.118|220125.876|118.199 +638480.416|220111.858|116.300 +638485.484|220107.219|116.242 +638490.553|220102.580|116.120 +638510.957|220083.892|114.270 +638531.238|220065.324|112.852 +638541.458|220055.963|112.087 +638546.505|220051.343|111.554 +638556.680|220042.028|111.167 +638571.844|220028.150|110.990 +638576.888|220023.536|110.813 +638581.975|220018.881|110.883 +638587.074|220014.212|110.548 +638592.101|220009.615|110.978 +638597.194|220004.955|110.908 +638602.199|220000.371|110.640 +638632.447|219972.686|111.310 +638642.475|219963.511|111.853 +638647.532|219958.881|111.770 +638652.579|219954.264|111.914 +638657.581|219949.686|112.014 +638662.589|219945.101|111.999 +638667.606|219940.508|111.886 +638672.617|219935.918|111.874 +638677.634|219931.327|111.859 +638682.651|219926.734|111.822 +638687.683|219922.125|111.554 +638692.666|219917.560|111.356 +638697.732|219912.917|110.685 +638702.737|219908.330|110.222 +638707.708|219903.780|110.307 +638712.728|219899.186|110.429 +638717.666|219894.672|111.018 +638722.607|219890.152|111.578 +638727.548|219885.638|112.164 +638732.507|219881.099|112.493 +638737.472|219876.555|112.740 +638742.453|219871.998|112.852 +638747.430|219867.444|112.999 +638752.383|219862.906|112.843 +638757.397|219858.315|112.606 +638762.368|219853.762|112.310 +638767.361|219849.187|111.819 +638772.415|219844.554|111.203 +638777.398|219839.988|110.877 +638782.385|219835.422|110.563 +638787.383|219830.838|110.115 +638792.358|219826.284|109.999 +638797.170|219821.889|111.121 +638802.075|219817.405|111.786 +638806.970|219812.928|112.039 +638811.923|219808.395|112.246 +638816.787|219803.945|112.353 +638821.759|219799.391|112.371 +638826.654|219794.914|112.715 +638831.540|219790.439|112.651 +638836.490|219785.907|112.496 +638841.400|219781.408|112.264 +638846.359|219776.870|112.087 +638851.266|219772.374|111.944 +638866.116|219758.765|110.545 +638871.036|219754.260|110.408 +638875.910|219749.794|110.262 +638880.765|219745.356|110.752 +638890.537|219736.407|110.405 +638895.523|219731.829|109.420 +638900.422|219727.343|109.213 +638905.399|219722.780|108.396 +638910.398|219718.193|107.436 +638915.348|219713.654|106.525 +638920.328|219709.085|105.799 +638925.165|219704.656|105.848 +638930.121|219700.112|105.007 +638954.323|219677.950|104.516 +638959.099|219673.579|104.800 +638964.037|219669.053|103.955 +638968.822|219664.673|103.879 +638973.647|219660.253|103.529 +638978.469|219655.846|103.608 +638983.141|219651.575|104.038 +638987.851|219647.275|104.925 +638992.459|219643.065|105.818 +638997.083|219638.841|106.610 +639001.753|219634.577|107.128 +639006.422|219630.306|107.625 +639011.083|219626.048|108.219 +639015.746|219621.787|108.799 +639020.382|219617.550|109.247 +639025.036|219613.295|109.570 +639029.663|219609.068|110.112 +639034.314|219604.816|110.502 +639038.978|219600.552|110.822 +639043.608|219596.318|111.051 +639048.256|219592.066|111.194 +639052.889|219587.826|111.441 +639057.549|219583.565|111.545 +639062.164|219579.344|111.633 +639066.861|219575.043|111.551 +639071.543|219570.757|111.289 +639076.194|219566.496|110.914 +639080.906|219562.183|110.521 +639094.988|219549.284|109.192 +639099.703|219544.965|108.597 +639104.339|219540.716|108.177 +639108.963|219536.483|107.860 +639113.596|219532.240|107.518 +639118.214|219528.012|107.278 +639122.853|219523.763|106.942 +639127.471|219519.536|106.476 +639132.052|219515.339|105.955 +639136.679|219511.099|105.485 +639141.296|219506.868|105.086 +639145.853|219502.695|104.757 +639150.392|219498.541|104.568 +639154.869|219494.441|104.449 +639159.417|219490.278|104.239 +639163.928|219486.151|104.254 +639168.442|219482.018|103.995 +639172.926|219477.912|103.666 +639186.425|219465.549|102.785 +639190.891|219461.459|102.617 +639193.045|219457.295|102.017 +639188.437|219461.511|102.590 +639179.229|219469.932|103.495 +639174.623|219474.145|103.858 +639170.115|219478.263|103.748 +639165.479|219482.502|104.053 +639160.938|219486.651|104.153 +639156.341|219490.851|104.284 +639151.782|219495.021|104.525 +639147.139|219499.263|104.693 +639142.546|219503.461|104.870 +639137.916|219507.697|105.287 +639133.237|219511.977|105.714 +639128.586|219516.232|106.293 +639123.868|219520.545|106.708 +639119.247|219524.769|107.162 +639114.614|219529.006|107.433 +639109.932|219533.285|107.720 +639105.251|219537.568|108.034 +639100.602|219541.820|108.475 +639095.902|219546.117|108.945 +639091.175|219550.442|109.594 +639081.757|219559.056|110.466 +639077.096|219563.317|110.807 +639072.335|219567.673|111.185 +639067.647|219571.961|111.463 +639063.033|219576.183|111.621 +639058.333|219580.478|111.703 +639053.669|219584.742|111.594 +639049.082|219588.930|111.322 +639044.388|219593.221|111.127 +639039.743|219597.464|110.941 +639035.177|219601.634|110.603 +639030.507|219605.901|110.304 +639025.865|219610.141|109.838 +639021.275|219614.332|109.375 +639016.572|219618.626|109.006 +639011.945|219622.851|108.485 +639007.327|219627.066|107.912 +639002.661|219631.327|107.348 +638998.034|219635.555|106.863 +638993.374|219639.807|106.272 +638988.719|219644.053|105.318 +638984.147|219648.223|104.470 +638979.450|219652.511|103.827 +638974.766|219656.787|103.449 +638969.941|219661.201|103.745 +638965.073|219665.654|104.016 +638960.358|219669.964|103.937 +638955.383|219674.524|105.059 +638950.787|219678.712|103.754 +638931.487|219696.354|103.736 +638926.430|219700.996|105.330 +638921.550|219705.458|105.568 +638916.622|219709.969|106.214 +638911.678|219714.498|107.040 +638906.719|219719.040|108.003 +638901.699|219723.639|109.131 +638896.776|219728.141|109.472 +638891.829|219732.674|110.082 +638881.957|219741.702|110.758 +638877.046|219746.192|110.713 +638872.221|219750.599|110.380 +638867.241|219755.156|110.566 +638862.255|219759.722|111.286 +638857.289|219764.263|111.828 +638847.371|219773.334|112.042 +638842.439|219777.845|112.383 +638837.428|219782.426|112.575 +638832.472|219786.959|112.755 +638827.516|219791.494|112.980 +638822.548|219796.036|112.852 +638817.583|219800.571|112.691 +638812.621|219805.106|112.557 +638807.677|219809.621|112.215 +638802.715|219814.159|112.130 +638797.783|219818.664|111.719 +638792.888|219823.123|110.359 +638787.877|219827.704|110.301 +638782.845|219832.307|110.509 +638777.797|219836.928|110.941 +638772.765|219841.527|111.185 +638767.666|219846.197|111.722 +638762.615|219850.820|112.295 +638757.537|219855.466|112.639 +638752.471|219860.099|112.871 +638747.415|219864.719|113.023 +638742.325|219869.374|113.026 +638737.280|219873.985|113.090 +638732.281|219878.554|112.609 +638727.222|219883.175|112.258 +638722.174|219887.784|111.789 +638717.133|219892.386|111.194 +638712.098|219896.982|110.551 +638707.029|219901.612|110.393 +638701.963|219906.239|110.222 +638696.861|219910.903|110.618 +638691.694|219915.633|111.338 +638686.613|219920.275|111.499 +638681.523|219924.930|111.822 +638676.405|219929.602|111.847 +638671.285|219934.281|111.965 +638666.219|219938.911|111.996 +638661.056|219943.626|112.087 +638655.990|219948.256|112.212 +638650.891|219952.916|112.103 +638645.739|219957.620|112.011 +638640.686|219962.237|112.008 +638635.544|219966.931|111.825 +638630.460|219971.573|111.475 +638620.237|219980.909|110.941 +638610.020|219990.233|110.292 +638604.856|219994.955|110.694 +638599.718|219999.648|110.603 +638594.609|220004.321|111.008 +638589.467|220009.018|111.030 +638584.334|220013.703|110.804 +638579.235|220018.366|111.112 +638574.047|220023.106|111.200 +638568.905|220027.806|111.362 +638558.673|220037.157|111.746 +638553.507|220041.869|111.231 +638543.275|220051.224|111.868 +638538.142|220055.915|111.978 +638527.864|220065.312|112.926 +638522.728|220070.015|113.575 +638517.647|220074.657|113.736 +638512.517|220079.345|114.081 +638507.336|220084.084|114.690 +638502.255|220088.736|115.376 +638497.128|220093.420|115.839 +638492.010|220098.096|115.779 +638481.815|220107.417|116.358 +638461.347|220126.132|118.293 +638456.281|220130.768|118.741 +638451.167|220135.443|119.418 +638446.055|220140.116|119.686 +638440.993|220144.746|119.936 +638435.881|220149.415|120.290 +638430.776|220154.088|120.832 +638425.716|220158.715|121.402 +638420.656|220163.339|121.652 +638415.551|220168.008|121.951 +638410.494|220172.629|122.289 +638405.438|220177.253|122.716 +638400.338|220181.916|123.298 +638395.337|220186.494|123.886 +638390.280|220191.115|124.011 +638385.226|220195.733|124.301 +638380.218|220200.311|124.621 +638375.171|220204.926|125.139 +638370.126|220209.543|125.678 +638365.131|220214.112|126.303 +638360.074|220218.730|126.450 +638355.069|220223.305|126.675 +638350.065|220227.880|126.855 +638345.054|220232.458|126.794 +638340.046|220237.033|126.974 +638325.092|220250.701|128.025 +638320.087|220255.273|128.227 +638315.080|220259.842|128.449 +638310.123|220264.368|128.690 +638305.116|220268.937|128.851 +638300.156|220273.463|129.098 +638295.149|220278.035|129.266 +638290.189|220282.561|129.504 +638285.224|220287.094|129.620 +638280.256|220291.626|129.659 +638275.340|220296.116|129.769 +638270.323|220300.694|129.830 +638265.400|220305.187|129.906 +638260.426|220309.725|129.882 +638255.448|220314.267|129.863 +638250.529|220318.756|130.040 +638230.705|220336.837|129.184 +638225.755|220341.351|128.970 +638220.805|220345.865|128.772 +638215.855|220350.379|128.583 +638210.902|220354.900|128.403 +638205.985|220359.380|128.083 +638201.020|220363.907|127.769 +638196.107|220368.390|127.519 +638191.193|220372.871|127.337 +638186.219|220377.406|126.986 +638181.278|220381.911|126.498 +638176.331|220386.419|125.934 +638171.390|220390.924|125.514 +638166.453|220395.426|125.169 +638161.490|220399.946|124.523 +638156.522|220404.472|123.877 +638151.560|220408.996|123.319 +638146.610|220413.507|122.990 +638141.715|220417.972|122.743 +638136.817|220422.440|122.463 +638131.873|220426.948|122.274 +638126.975|220431.417|122.106 +638122.031|220435.928|121.948 +638117.176|220440.357|121.737 +638112.223|220444.871|121.564 +638107.364|220449.306|121.372 +638102.441|220453.792|121.055 +638097.525|220458.276|120.838 +638092.670|220462.708|120.750 +638082.779|220471.718|119.372 +638077.871|220476.189|118.860 +638072.995|220480.636|118.714 +638068.121|220485.086|118.577 +638063.235|220489.542|118.375 +638033.995|220516.206|117.074 +638029.137|220520.638|116.876 +638004.765|220542.858|115.120 +637990.162|220556.169|113.624 +637985.279|220560.619|113.057 +637980.479|220564.999|112.791 +637975.675|220569.382|112.907 +637970.877|220573.759|113.115 +637965.982|220578.218|112.179 +637942.348|220599.792|113.998 +637928.446|220612.496|116.733 +637923.935|220616.623|118.046 +637909.996|220629.351|119.918 +637905.330|220633.609|120.183 +637900.676|220637.858|120.552 +637891.291|220646.414|120.509 +637886.655|220650.645|120.719 +637882.007|220654.884|120.878 +637877.358|220659.124|121.045 +637868.038|220667.625|120.957 +637840.310|220692.917|121.692 +637817.212|220713.976|121.073 +637812.527|220718.240|120.402 +637807.983|220722.383|120.283 +637798.756|220730.792|119.878 +637785.211|220743.146|119.948 +637780.734|220747.233|120.308 +637776.210|220751.354|120.171 +637771.779|220755.402|120.530 +637762.973|220763.439|121.338 +637754.085|220771.544|121.506 +637749.668|220775.570|121.484 +637745.194|220779.648|121.451 +637740.759|220783.696|121.631 +637736.361|220787.707|121.762 +637722.971|220799.909|120.725 +637705.189|220816.106|119.153 +637700.772|220820.129|118.833 +637692.000|220828.124|118.284 +637678.497|220840.407|115.361 +637673.983|220844.516|114.447 +637665.354|220852.383|114.117 +637661.020|220856.330|113.648 +637656.768|220860.207|113.578 +637652.394|220864.185|112.968 +637648.148|220868.056|112.718 +637643.921|220871.912|112.819 +637635.691|220879.419|113.380 +637631.601|220883.156|113.901 +637627.632|220886.780|114.757 +637623.658|220890.410|115.355 +637619.467|220894.232|115.239 +637615.285|220898.045|114.934 +637611.078|220901.880|114.544 +637606.839|220905.744|114.035 +637602.809|220909.420|114.233 +637594.378|220917.104|113.041 +637590.355|220920.774|113.090 +637586.051|220924.691|111.938 +637574.481|220935.267|113.874 +637570.570|220938.840|114.239 +637555.190|220952.891|116.001 +637547.482|220959.926|116.437 +637543.583|220963.483|116.266 +637539.667|220967.055|116.263 +637528.249|220977.479|116.580 +637520.650|220984.414|116.766 +637516.859|220987.873|116.699 +637513.045|220991.351|116.556 +637509.327|220994.743|116.589 +637501.853|221001.562|116.556 +637498.266|221004.838|117.138 +637494.605|221008.182|117.229 +637490.847|221011.605|116.967 +637487.278|221014.869|117.437 +637480.240|221021.297|118.174 +637473.132|221027.787|118.680 +637469.617|221030.996|118.994 +637455.615|221043.776|119.753 +637448.595|221050.180|119.726 +637445.069|221053.396|119.665 +637438.165|221059.693|119.525 +637656.357|220858.665|113.462 +637660.618|220854.764|113.599 +637664.961|220850.789|113.895 +637669.308|220846.814|114.230 +637673.584|220842.898|114.258 +637678.055|220838.813|115.224 +637695.965|220822.449|118.503 +637700.373|220818.416|118.793 +637704.768|220814.396|119.031 +637713.787|220806.151|120.219 +637722.669|220798.022|120.820 +637731.679|220789.783|121.618 +637740.536|220781.669|121.469 +637744.980|220777.603|121.350 +637749.446|220773.513|121.384 +637753.905|220769.428|121.399 +637758.389|220765.323|121.274 +637762.878|220761.211|121.216 +637771.678|220753.146|120.162 +637785.229|220740.735|119.781 +637789.771|220736.577|119.826 +637794.349|220732.386|119.811 +637798.903|220728.216|119.677 +637808.147|220719.758|120.256 +637812.744|220715.549|120.442 +637817.425|220711.266|120.838 +637826.737|220702.750|121.408 +637836.024|220694.246|121.643 +637840.670|220689.994|121.640 +637868.492|220664.531|120.805 +637873.253|220660.179|121.052 +637877.883|220655.939|120.796 +637887.264|220647.356|120.463 +637892.007|220643.019|120.674 +637896.762|220638.669|120.649 +637906.098|220630.116|119.845 +637910.774|220625.834|119.345 +637929.336|220608.820|115.724 +637943.424|220595.909|113.749 +637948.164|220591.571|113.428 +637962.337|220578.584|111.478 +637967.354|220574.009|112.971 +637972.197|220569.580|113.148 +637981.792|220560.799|112.889 +637986.666|220556.342|112.996 +637991.561|220551.868|113.718 +637996.563|220547.302|114.523 +638001.409|220542.870|114.910 +638011.233|220533.891|115.608 +638026.061|220520.339|117.098 +638035.864|220511.375|117.498 +638045.648|220502.423|117.415 +638055.505|220493.413|118.089 +638060.385|220488.951|118.232 +638065.369|220484.391|118.485 +638070.239|220479.938|118.604 +638075.201|220475.396|118.711 +638080.133|220470.888|119.000 +638090.112|220461.772|120.375 +638095.087|220457.224|120.698 +638100.046|220452.689|120.911 +638105.005|220448.156|121.149 +638109.958|220443.624|121.366 +638114.911|220439.095|121.600 +638119.858|220434.572|121.780 +638124.799|220430.054|121.935 +638129.788|220425.491|122.121 +638134.729|220420.971|122.320 +638139.719|220416.411|122.551 +638144.702|220411.852|122.774 +638149.698|220407.286|123.152 +638154.751|220402.668|123.670 +638159.710|220398.136|124.289 +638164.770|220393.515|124.990 +638169.808|220388.909|125.459 +638174.835|220384.313|125.825 +638179.870|220379.710|126.319 +638184.860|220375.154|126.901 +638189.880|220370.563|127.266 +638194.881|220365.988|127.419 +638199.889|220361.410|127.721 +638204.943|220356.786|127.992 +638209.948|220352.214|128.263 +638214.949|220347.642|128.492 +638219.994|220343.031|128.708 +638224.987|220338.465|128.891 +638230.028|220333.859|129.101 +638235.063|220329.257|129.217 +638245.106|220320.076|130.022 +638250.120|220315.492|129.830 +638255.134|220310.902|129.751 +638260.157|220306.311|129.775 +638265.178|220301.721|129.824 +638270.192|220297.134|129.760 +638275.202|220292.550|129.677 +638280.213|220287.965|129.571 +638285.273|220283.339|129.510 +638290.281|220278.757|129.351 +638295.331|220274.137|129.147 +638300.336|220269.555|128.964 +638305.387|220264.935|128.723 +638310.437|220260.314|128.547 +638315.442|220255.736|128.333 +638320.493|220251.115|128.129 +638325.540|220246.497|127.864 +638335.641|220237.253|127.544 +638340.677|220232.644|126.828 +638345.730|220228.020|126.693 +638350.790|220223.393|126.910 +638355.886|220218.730|126.599 +638360.937|220214.112|126.410 +638365.981|220209.491|126.029 +638371.071|220204.831|125.438 +638376.067|220200.256|124.862 +638381.160|220195.593|124.371 +638386.214|220190.972|124.170 +638391.264|220186.348|123.950 +638396.364|220181.681|123.667 +638401.414|220177.061|123.100 +638406.462|220172.437|122.487 +638411.564|220167.767|122.091 +638416.618|220163.140|121.841 +638421.674|220158.514|121.579 +638426.780|220153.841|121.131 +638431.833|220149.211|120.585 +638436.893|220144.581|120.168 +638442.002|220139.909|119.814 +638447.061|220135.276|119.564 +638452.121|220130.646|119.217 +638462.292|220121.328|117.732 +638472.475|220112.007|116.739 +638477.544|220107.368|116.480 +638482.610|220102.732|116.233 +638487.685|220098.087|115.687 +638502.953|220084.112|114.706 +638508.030|220079.464|114.261 +638523.267|220065.516|113.169 +638528.403|220060.816|112.657 +638533.497|220056.149|111.914 +638538.526|220051.550|111.898 +638548.755|220042.186|111.060 +638553.769|220037.608|111.844 +638558.841|220032.972|112.087 +638568.981|220023.691|111.380 +638574.078|220019.025|111.027 +638579.110|220014.425|111.207 +638584.161|220009.801|110.862 +638589.245|220005.153|111.039 +638594.228|220000.593|111.228 +638599.330|219995.924|110.966 +638604.387|219991.294|110.630 +638619.438|219977.532|111.496 +638624.480|219972.920|111.636 +638634.501|219963.758|112.225 +638639.537|219959.150|112.484 +638644.538|219954.575|112.535 +638649.595|219949.948|112.465 +638654.603|219945.363|112.404 +638659.617|219940.779|112.331 +638664.637|219936.180|112.112 +638669.648|219931.596|112.127 +638674.668|219927.002|112.026 +638679.691|219922.406|111.901 +638684.675|219917.843|111.642 +638689.707|219913.237|111.426 +638694.721|219908.644|110.810 +638699.774|219904.014|110.332 +638704.749|219899.464|110.380 +638709.702|219894.934|110.737 +638714.637|219890.423|111.356 +638719.547|219885.936|111.697 +638724.485|219881.422|112.289 +638729.438|219876.896|112.703 +638734.403|219872.355|112.938 +638739.331|219867.847|113.078 +638744.272|219863.326|113.063 +638749.262|219858.760|113.066 +638754.166|219854.274|112.980 +638759.186|219849.674|112.663 +638764.176|219845.105|112.200 +638769.184|219840.518|111.527 +638774.109|219836.007|111.310 +638779.093|219831.447|111.018 +638784.079|219826.878|110.691 +638789.008|219822.367|110.536 +638793.848|219817.951|111.874 +638798.716|219813.504|112.426 +638803.626|219809.011|112.490 +638808.524|219804.530|112.721 +638813.422|219800.053|112.965 +638818.327|219795.566|113.179 +638823.246|219791.064|113.249 +638828.150|219786.575|113.005 +638833.109|219782.036|112.746 +638838.011|219777.549|112.602 +638842.985|219772.993|112.255 +638847.859|219768.533|111.972 +638862.703|219754.936|110.618 +638867.582|219750.468|110.387 +638872.453|219746.015|110.707 +638877.315|219741.568|110.710 +638882.219|219737.081|110.789 +638887.090|219732.619|110.329 +638892.055|219728.074|109.945 +638896.959|219723.581|109.274 +638901.866|219719.086|109.018 +638906.822|219714.541|107.985 +638911.775|219709.999|107.037 +638916.777|219705.415|106.135 +638921.654|219700.950|105.863 +638926.656|219696.360|104.635 +638931.688|219691.739|102.870 +638946.166|219678.495|103.233 +638950.747|219674.320|104.976 +638955.639|219669.836|104.400 +638960.480|219665.401|104.251 +638965.295|219660.991|103.967 +638970.203|219656.495|103.739 +638974.933|219652.164|103.754 +638979.731|219647.771|103.989 +638984.385|219643.519|104.928 +638989.030|219639.274|105.918 +638993.721|219634.985|106.604 +638998.388|219630.715|107.113 +639003.063|219626.438|107.579 +639007.715|219622.183|108.232 +639012.332|219617.962|108.780 +639017.008|219613.686|109.295 +639021.702|219609.391|109.701 +639026.344|219605.142|110.128 +639031.007|219600.875|110.448 +639035.659|219596.620|110.847 +639040.282|219592.386|111.118 +639044.970|219588.094|111.319 +639049.609|219583.849|111.530 +639054.261|219579.591|111.694 +639058.942|219575.302|111.673 +639063.636|219571.004|111.627 +639068.309|219566.722|111.402 +639073.003|219562.421|111.082 +639077.721|219558.093|110.640 +639082.458|219553.753|110.131 +639087.185|219549.418|109.686 +639091.846|219545.148|109.378 +639096.546|219540.838|108.853 +639101.243|219536.531|108.390 +639105.906|219532.258|108.128 +639110.524|219528.027|107.875 +639115.148|219523.791|107.604 +639119.799|219519.527|107.204 +639124.517|219515.198|106.732 +639129.141|219510.959|106.253 +639133.795|219506.691|105.632 +639138.425|219502.446|105.178 +639143.019|219498.236|104.934 +639147.575|219494.060|104.644 +639152.114|219489.903|104.483 +639156.652|219485.745|104.327 +639161.145|219481.628|104.163 +639174.690|219469.219|103.736 +639179.217|219465.068|103.221 +639185.267|219456.875|102.468 +639180.607|219461.133|103.065 +639176.001|219465.339|103.407 +639166.827|219473.721|103.983 +639162.239|219477.912|104.309 +639157.622|219482.128|104.281 +639153.007|219486.340|104.519 +639148.423|219490.528|104.623 +639143.808|219494.743|104.912 +639139.154|219498.992|105.156 +639134.448|219503.293|105.440 +639129.781|219507.557|106.080 +639125.081|219511.855|106.656 +639120.299|219516.226|107.156 +639115.574|219520.542|107.625 +639110.877|219524.833|107.988 +639106.241|219529.067|108.314 +639101.499|219533.398|108.396 +639096.796|219537.696|108.869 +639092.083|219542.003|109.414 +639077.843|219555.014|110.649 +639073.076|219559.370|111.042 +639068.315|219563.723|111.420 +639063.591|219568.039|111.600 +639058.872|219572.348|111.780 +639054.151|219576.661|111.685 +639049.494|219580.913|111.530 +639044.778|219585.217|111.438 +639040.100|219589.487|111.139 +639035.415|219593.761|110.890 +639030.706|219598.058|110.499 +639026.042|219602.313|110.140 +639021.370|219606.578|109.871 +639016.639|219610.891|109.341 +639011.957|219615.164|108.832 +639007.291|219619.419|108.241 +639002.573|219623.723|107.668 +638997.906|219627.978|107.104 +638993.169|219632.300|106.680 +638988.460|219636.594|106.089 +638983.818|219640.825|105.037 +638979.155|219645.074|104.135 +638974.421|219649.393|103.745 +638969.590|219653.806|103.715 +638964.774|219658.205|103.949 +638959.913|219662.649|104.181 +638955.082|219667.059|104.217 +638950.171|219671.552|104.873 +638945.422|219675.877|103.961 +638931.118|219688.932|102.901 +638926.095|219693.534|104.193 +638921.066|219698.140|105.559 +638916.101|219702.684|106.485 +638911.084|219707.278|107.470 +638906.176|219711.767|108.396 +638901.165|219716.348|109.018 +638896.337|219720.756|108.966 +638891.345|219725.328|109.926 +638886.440|219729.808|110.158 +638881.524|219734.301|110.533 +638876.589|219738.812|110.679 +638871.676|219743.299|110.658 +638866.827|219747.728|110.542 +638861.925|219752.202|110.448 +638846.996|219765.854|112.002 +638842.061|219770.359|111.880 +638827.178|219783.962|112.935 +638822.222|219788.489|113.130 +638817.287|219793.000|113.163 +638812.328|219797.526|112.971 +638807.418|219802.010|112.801 +638802.459|219806.536|112.627 +638797.490|219811.077|112.606 +638792.544|219815.592|112.346 +638787.703|219819.999|110.963 +638782.744|219824.525|110.868 +638777.767|219829.076|111.021 +638772.716|219833.694|111.475 +638767.684|219838.290|111.731 +638762.673|219842.874|112.380 +638757.626|219847.492|112.935 +638752.602|219852.082|113.209 +638747.555|219856.691|113.227 +638742.565|219861.248|113.136 +638737.576|219865.807|113.127 +638732.547|219870.398|112.971 +638727.523|219874.985|112.779 +638722.516|219879.554|112.377 +638717.523|219884.111|111.825 +638712.521|219888.674|111.377 +638707.471|219893.282|110.950 +638702.469|219897.851|110.515 +638697.397|219902.487|110.454 +638692.298|219907.154|110.835 +638687.232|219911.790|111.459 +638682.096|219916.490|111.758 +638677.012|219921.141|112.029 +638671.943|219925.777|112.087 +638666.865|219930.422|112.301 +638661.805|219935.049|112.279 +638656.682|219939.734|112.526 +638651.570|219944.409|112.618 +638646.501|219949.045|112.840 +638641.396|219953.715|112.859 +638636.348|219958.327|112.700 +638631.261|219962.975|112.444 +638621.087|219972.274|111.944 +638616.046|219976.880|111.728 +638600.748|219990.858|110.853 +638595.642|219995.531|111.118 +638590.549|220000.188|111.139 +638585.413|220004.882|111.069 +638580.268|220009.588|111.225 +638570.091|220018.894|111.188 +638559.789|220028.324|112.282 +638554.711|220032.963|112.063 +638549.538|220037.694|111.837 +638544.408|220042.382|111.767 +638539.321|220047.033|111.917 +638534.192|220051.727|111.984 +638523.923|220061.121|112.599 +638513.611|220070.554|113.221 +638503.346|220079.951|114.422 +638498.216|220084.648|114.962 +638487.972|220094.021|115.550 +638482.845|220098.715|116.214 +638477.776|220103.348|116.181 +638457.260|220122.130|118.424 +638447.083|220131.444|119.457 +638441.971|220136.120|119.720 +638436.814|220140.841|119.927 +638431.751|220145.471|120.347 +638421.540|220154.819|121.481 +638416.432|220159.492|121.710 +638411.326|220164.165|121.945 +638406.224|220168.834|122.323 +638401.167|220173.461|122.777 +638396.068|220178.128|123.380 +638390.972|220182.794|123.847 +638385.915|220187.421|124.014 +638380.813|220192.087|124.225 +638375.713|220196.754|124.663 +638370.666|220201.372|125.172 +638365.573|220206.035|125.712 +638360.483|220210.695|126.300 +638355.475|220215.277|126.428 +638350.378|220219.940|126.797 +638345.319|220224.567|126.648 +638340.262|220229.191|126.706 +638335.227|220233.802|127.474 +638330.170|220238.426|127.605 +638325.165|220243.004|127.733 +638320.112|220247.628|127.928 +638315.064|220252.252|128.184 +638310.059|220256.830|128.412 +638305.006|220261.454|128.577 +638300.004|220266.035|128.839 +638294.999|220270.616|129.004 +638289.994|220275.197|129.208 +638284.987|220279.779|129.394 +638279.976|220284.366|129.467 +638275.010|220288.907|129.519 +638269.999|220293.495|129.623 +638264.986|220298.082|129.726 +638260.017|220302.629|129.757 +638255.040|220307.180|129.684 +638250.017|220311.776|129.638 +638245.091|220316.281|129.690 +638240.062|220320.884|129.589 +638235.063|220325.453|129.168 +638230.122|220329.973|129.028 +638225.127|220334.539|128.784 +638220.134|220339.108|128.589 +638215.138|220343.677|128.403 +638210.192|220348.200|128.266 +638205.232|220352.733|127.986 +638200.276|220357.265|127.754 +638195.311|220361.806|127.434 +638190.312|220366.378|127.334 +638185.393|220370.877|127.017 +638180.406|220375.434|126.523 +638175.466|220379.951|125.992 +638170.482|220384.505|125.590 +638165.547|220389.016|125.221 +638160.582|220393.551|124.517 +638155.568|220398.133|123.840 +638150.655|220402.622|123.255 +638145.653|220407.194|122.804 +638140.758|220411.672|122.493 +638135.817|220416.192|122.271 +638130.919|220420.670|122.030 +638125.981|220425.184|121.899 +638121.089|220429.661|121.743 +638116.191|220434.142|121.564 +638111.293|220438.622|121.411 +638106.386|220443.106|121.219 +638101.469|220447.602|120.911 +638096.562|220452.091|120.747 +638091.655|220456.578|120.607 +638086.738|220461.071|119.893 +638081.776|220465.603|119.268 +638076.890|220470.072|118.939 +638071.964|220474.577|118.729 +638067.088|220479.039|118.546 +638062.217|220483.495|118.452 +638057.319|220487.973|118.132 +638052.491|220492.389|118.037 +638047.635|220496.833|118.156 +638042.771|220501.280|117.766 +638037.888|220505.745|117.696 +638033.078|220510.150|117.842 +638018.505|220523.473|116.763 +638008.749|220532.388|115.715 +637999.053|220541.252|114.873 +637989.309|220550.155|113.773 +637984.474|220554.575|113.172 +637979.634|220559.000|112.947 +637974.867|220563.362|112.950 +637970.091|220567.733|112.889 +637965.324|220572.094|112.929 +637960.572|220576.444|113.081 +637941.644|220593.763|113.803 +637932.308|220602.312|114.837 +637909.335|220623.365|119.089 +637904.739|220627.574|119.805 +637900.157|220631.768|120.308 +637886.124|220644.607|120.265 +637881.479|220648.859|120.732 +637876.862|220653.080|120.750 +637867.550|220661.596|120.634 +637862.957|220665.799|120.853 +637858.305|220670.054|120.728 +637844.635|220682.563|121.603 +637826.237|220699.388|121.256 +637807.785|220716.253|120.046 +637803.182|220720.459|119.854 +637798.625|220724.626|119.659 +637794.102|220728.765|119.686 +637789.554|220732.923|119.592 +637785.004|220737.083|119.485 +637767.225|220753.353|120.524 +637758.416|220761.415|121.289 +637753.972|220765.481|121.344 +637749.525|220769.550|121.387 +637745.075|220773.623|121.445 +637740.664|220777.655|121.469 +637736.288|220781.660|121.679 +637722.873|220793.919|120.680 +637714.016|220802.018|120.198 +637709.569|220806.078|119.653 +637700.739|220814.149|118.927 +637696.325|220818.181|118.610 +637687.462|220826.283|117.848 +637673.965|220838.600|114.919 +637669.490|220842.684|114.197 +637665.147|220846.653|113.883 +637660.855|220850.576|113.569 +637656.518|220854.538|113.328 +637652.239|220858.455|113.358 +637647.837|220862.472|112.599 +637643.601|220866.349|112.630 +637639.370|220870.217|112.706 +637635.301|220873.945|113.300 +637631.189|220877.709|113.697 +637627.169|220881.397|114.526 +637623.024|220885.189|114.806 +637619.015|220888.862|115.474 +637614.809|220892.702|115.263 +637606.378|220900.395|114.602 +637602.181|220904.227|114.264 +637597.999|220908.040|113.785 +637593.772|220911.898|113.346 +637589.675|220915.638|113.035 +637585.161|220919.744|111.179 +637581.531|220923.075|112.916 +637577.441|220926.809|112.694 +637565.712|220937.535|114.169 +637561.850|220941.068|114.742 +637554.160|220948.103|115.818 +637550.286|220951.641|116.147 +637542.495|220958.758|116.217 +637534.656|220965.918|116.144 +637526.941|220972.965|116.412 +637519.303|220979.942|116.403 +637515.441|220983.469|116.455 +637511.610|220986.968|116.431 +637507.858|220990.397|116.525 +637500.354|220997.249|116.531 +637496.717|221000.577|117.107 +637493.008|221003.963|117.205 +637489.320|221007.331|117.193 +637482.123|221013.909|117.885 +637475.012|221020.410|118.525 +637471.407|221023.702|118.674 +637460.864|221033.340|119.601 +637457.307|221036.589|119.558 +637453.768|221039.817|119.409 +637446.791|221046.191|119.698 +637439.802|221052.573|119.585 +637650.282|220857.818|112.977 +637654.564|220853.895|113.209 +637658.810|220850.006|113.276 +637667.464|220842.084|113.992 +637671.840|220838.079|114.501 +637685.383|220825.701|117.665 +637689.684|220821.760|117.647 +637698.550|220813.643|118.720 +637702.942|220809.626|118.948 +637711.846|220801.478|120.088 +637716.235|220797.455|120.116 +637720.712|220793.358|120.619 +637725.272|220789.186|121.301 +637729.701|220785.129|121.606 +637734.133|220781.072|121.661 +637738.473|220777.091|121.536 +637742.911|220773.022|121.411 +637747.373|220768.935|121.423 +637751.817|220764.863|121.356 +637756.221|220760.824|121.103 +637760.644|220756.770|120.954 +637782.907|220736.358|119.622 +637787.451|220732.191|119.412 +637791.947|220728.070|119.226 +637796.568|220723.839|119.473 +637801.213|220719.584|119.899 +637805.794|220715.390|119.960 +637810.388|220711.181|120.128 +637815.066|220706.899|120.515 +637824.369|220698.379|121.052 +637828.941|220694.188|120.884 +637856.702|220668.735|120.430 +637861.426|220664.403|120.738 +637880.123|220647.258|120.530 +637889.538|220638.623|120.506 +637894.208|220634.338|120.268 +637908.308|220621.396|119.268 +637922.179|220608.649|116.434 +637941.010|220591.355|113.837 +637955.000|220578.495|110.512 +637960.133|220573.811|112.868 +637969.798|220564.947|112.727 +637974.678|220560.472|112.868 +637979.525|220556.028|112.758 +637984.462|220551.505|113.422 +637989.406|220546.982|114.145 +637999.266|220537.948|115.096 +638023.870|220515.405|117.034 +638033.752|220506.352|117.757 +638038.692|220501.823|117.967 +638043.563|220497.357|117.979 +638068.279|220474.702|118.692 +638073.202|220470.187|118.903 +638078.164|220465.640|119.055 +638083.148|220461.074|119.448 +638088.137|220456.502|119.948 +638093.191|220451.875|120.646 +638098.138|220447.340|120.747 +638103.136|220442.758|120.936 +638108.089|220438.217|121.186 +638113.085|220433.642|121.359 +638118.035|220429.103|121.625 +638123.012|220424.541|121.692 +638128.051|220419.923|121.905 +638132.986|220415.396|122.091 +638138.018|220410.788|122.289 +638142.959|220406.259|122.609 +638148.006|220401.635|123.060 +638153.005|220397.054|123.584 +638158.058|220392.427|124.206 +638163.115|220387.797|124.935 +638168.111|220383.222|125.493 +638173.134|220378.619|125.861 +638178.163|220374.014|126.328 +638183.186|220369.408|126.782 +638188.203|220364.812|127.163 +638193.214|220360.221|127.462 +638198.207|220355.643|127.568 +638203.205|220351.062|127.809 +638208.253|220346.438|128.053 +638213.294|220341.818|128.254 +638218.284|220337.243|128.467 +638223.322|220332.628|128.665 +638228.358|220328.013|128.861 +638233.341|220323.444|129.056 +638238.434|220318.781|129.470 +638243.454|220314.178|129.534 +638248.471|220309.579|129.534 +638253.537|220304.934|129.571 +638258.509|220300.377|129.684 +638263.568|220295.738|129.662 +638268.625|220291.102|129.562 +638273.584|220286.554|129.449 +638278.638|220281.921|129.391 +638283.691|220277.285|129.315 +638288.693|220272.701|129.129 +638293.737|220268.071|128.909 +638298.788|220263.441|128.748 +638303.787|220258.857|128.568 +638308.831|220254.227|128.376 +638313.876|220249.600|128.096 +638318.920|220244.973|127.907 +638328.963|220235.762|127.474 +638334.062|220231.087|127.495 +638339.092|220226.469|126.754 +638344.087|220221.885|126.507 +638349.190|220217.209|126.693 +638354.234|220212.582|126.376 +638359.279|220207.955|126.184 +638364.314|220203.335|125.511 +638369.398|220198.665|124.962 +638374.442|220194.038|124.572 +638379.533|220189.366|124.136 +638384.580|220184.736|123.950 +638389.628|220180.106|123.758 +638394.721|220175.433|123.316 +638399.811|220170.760|122.701 +638404.859|220166.128|122.286 +638409.955|220161.452|122.021 +638415.005|220156.819|121.707 +638420.056|220152.186|121.417 +638430.255|220142.826|120.396 +638435.308|220138.186|119.887 +638440.410|220133.508|119.738 +638445.467|220128.869|119.454 +638450.524|220124.230|119.080 +638455.629|220119.539|118.287 +638465.745|220110.255|117.217 +638470.854|220105.573|117.357 +638486.051|220091.622|115.766 +638496.189|220082.320|114.858 +638511.411|220068.347|113.364 +638521.567|220059.027|112.514 +638531.765|220049.672|112.142 +638536.795|220045.061|112.081 +638541.866|220040.409|112.072 +638552.013|220031.107|112.206 +638557.085|220026.459|112.350 +638572.301|220012.499|111.426 +638577.339|220007.881|111.347 +638582.420|220003.221|111.359 +638597.541|219989.368|111.124 +638602.574|219984.756|111.283 +638622.642|219966.389|112.511 +638627.674|219961.780|112.752 +638632.612|219957.257|112.983 +638637.650|219952.645|113.136 +638642.646|219948.070|113.215 +638647.654|219943.477|113.044 +638652.674|219938.874|112.731 +638657.685|219934.284|112.630 +638662.695|219929.694|112.526 +638667.667|219925.137|112.359 +638672.681|219920.544|112.285 +638677.710|219915.935|112.017 +638682.696|219911.363|111.661 +638687.689|219906.785|111.274 +638692.691|219902.198|110.774 +638697.720|219897.589|110.640 +638702.676|219893.051|110.886 +638707.626|219888.521|111.261 +638712.561|219884.004|111.825 +638717.462|219879.517|112.218 +638722.409|219874.991|112.657 +638727.310|219870.507|113.075 +638732.284|219865.948|113.157 +638737.210|219861.437|113.264 +638742.139|219856.923|113.389 +638747.119|219852.363|113.477 +638752.014|219847.876|113.419 +638756.970|219843.335|113.264 +638761.917|219838.796|112.679 +638766.913|219834.215|112.118 +638771.842|219829.698|111.828 +638776.852|219825.098|111.164 +638781.717|219820.642|111.115 +638786.576|219816.201|112.203 +638791.394|219811.791|112.666 +638796.305|219807.295|112.724 +638801.215|219802.796|112.767 +638806.061|219798.358|112.987 +638810.963|219793.868|113.176 +638815.815|219789.424|113.377 +638820.692|219784.956|113.358 +638825.587|219780.469|113.185 +638840.379|219766.906|111.819 +638855.052|219753.455|110.972 +638859.990|219748.929|110.615 +638864.824|219744.500|110.774 +638869.679|219740.050|110.761 +638874.538|219735.600|110.765 +638879.433|219731.113|110.454 +638884.304|219726.651|110.399 +638889.269|219722.088|109.164 +638894.149|219717.616|109.073 +638898.962|219713.209|109.186 +638903.796|219708.777|109.119 +638908.673|219704.306|108.738 +638913.638|219699.746|107.689 +638918.597|219695.195|106.729 +638923.522|219690.672|105.708 +638928.509|219686.088|104.230 +638942.896|219672.908|104.431 +638947.647|219668.562|104.876 +638952.509|219664.106|104.519 +638957.300|219659.717|104.361 +638962.150|219655.276|104.156 +638966.947|219650.880|103.995 +638971.733|219646.497|103.949 +638976.488|219642.145|104.135 +638981.160|219637.875|104.912 +638985.790|219633.647|105.991 +638990.438|219629.398|106.619 +638995.166|219625.073|107.052 +638999.826|219620.812|107.616 +639004.481|219616.554|108.219 +639009.190|219612.247|108.808 +639013.807|219608.025|109.372 +639018.480|219603.752|109.887 +639023.186|219599.445|110.216 +639027.859|219595.169|110.451 +639032.498|219590.926|110.917 +639037.155|219586.668|111.301 +639041.843|219582.373|111.478 +639046.491|219578.121|111.627 +639051.188|219573.824|111.813 +639055.849|219569.557|111.914 +639060.546|219565.256|111.822 +639065.258|219560.940|111.658 +639069.943|219556.645|111.371 +639074.652|219552.332|110.990 +639079.398|219547.983|110.704 +639088.798|219539.366|109.841 +639093.562|219534.998|109.244 +639098.243|219530.707|108.835 +639102.888|219526.452|108.668 +639107.494|219522.233|108.466 +639112.170|219517.951|108.186 +639116.842|219513.665|107.646 +639121.533|219509.364|107.046 +639126.279|219505.012|106.442 +639130.982|219500.702|105.827 +639135.594|219496.474|105.458 +639140.190|219492.265|105.199 +639144.796|219488.047|104.918 +639149.398|219483.828|104.659 +639158.548|219475.446|104.251 +639167.534|219467.220|104.251 +639176.272|219456.469|103.160 +639158.024|219473.176|104.169 +639148.865|219481.558|104.580 +639144.226|219485.806|104.998 +639139.629|219490.016|105.226 +639134.926|219494.320|105.488 +639130.327|219498.532|105.775 +639125.617|219502.845|106.394 +639120.856|219507.207|107.052 +639116.056|219511.605|107.683 +639111.313|219515.951|108.302 +639106.625|219520.243|108.640 +639101.922|219524.547|108.811 +639097.219|219528.850|108.991 +639092.504|219533.169|109.271 +639087.691|219537.577|109.841 +639082.909|219541.954|110.271 +639078.181|219546.285|110.707 +639073.423|219550.641|111.042 +639068.617|219555.042|111.399 +639063.883|219559.373|111.652 +639059.119|219563.732|111.798 +639054.373|219568.072|111.847 +639049.667|219572.376|111.703 +639044.909|219576.725|111.560 +639040.215|219581.017|111.371 +639035.485|219585.339|111.103 +639030.764|219589.655|110.801 +639026.067|219593.947|110.359 +639021.342|219598.266|110.109 +639016.593|219602.606|109.716 +639011.906|219606.888|109.265 +639007.132|219611.247|108.728 +639002.432|219615.542|108.058 +638997.714|219619.849|107.506 +638992.947|219624.204|106.973 +638988.229|219628.514|106.452 +638983.486|219632.848|105.787 +638978.810|219637.113|104.647 +638974.071|219641.441|103.961 +638969.227|219645.869|104.022 +638964.344|219650.338|104.047 +638959.446|219654.818|104.193 +638954.582|219659.268|104.477 +638949.653|219663.780|104.550 +638944.724|219668.291|105.013 +638939.909|219672.689|104.284 +638935.163|219677.020|103.394 +638930.109|219681.653|104.513 +638925.071|219686.277|105.940 +638920.029|219690.898|107.043 +638915.019|219695.491|107.973 +638910.011|219700.078|108.902 +638905.064|219704.605|108.994 +638900.184|219709.067|108.957 +638895.347|219713.486|108.597 +638890.449|219717.967|108.372 +638885.477|219722.521|109.183 +638880.421|219727.157|110.335 +638870.554|219736.185|110.652 +638865.644|219740.675|110.664 +638860.721|219745.177|110.780 +638855.817|219749.666|110.789 +638850.873|219754.189|111.164 +638845.881|219758.761|111.588 +638840.885|219763.337|112.081 +638835.959|219767.838|111.908 +638821.067|219781.472|113.221 +638816.065|219786.050|113.459 +638811.146|219790.549|113.389 +638806.193|219795.078|113.203 +638801.294|219799.556|112.944 +638796.341|219804.085|112.773 +638791.382|219808.618|112.685 +638786.472|219813.110|112.642 +638781.574|219817.579|111.389 +638776.645|219822.087|111.557 +638771.613|219826.692|111.831 +638766.626|219831.258|112.203 +638761.576|219835.882|112.746 +638756.577|219840.460|113.331 +638751.566|219845.044|113.496 +638746.558|219849.629|113.672 +638741.627|219854.140|113.535 +638736.643|219858.696|113.444 +638731.669|219863.244|113.276 +638726.701|219867.786|113.044 +638721.732|219872.327|112.816 +638716.782|219876.853|112.395 +638711.781|219881.425|111.993 +638706.840|219885.940|111.447 +638701.835|219890.512|111.085 +638696.830|219895.087|110.789 +638691.865|219899.622|110.603 +638686.756|219904.298|111.146 +638681.752|219908.879|111.642 +638676.661|219913.536|111.987 +638671.620|219918.145|112.362 +638666.606|219922.732|112.380 +638661.531|219927.374|112.606 +638656.511|219931.964|112.746 +638651.442|219936.600|112.916 +638646.367|219941.243|113.267 +638641.305|219945.872|113.444 +638636.263|219950.481|113.203 +638631.213|219955.099|113.206 +638626.168|219959.707|113.060 +638621.084|219964.353|112.798 +638605.942|219978.187|111.755 +638600.897|219982.799|111.716 +638595.819|219987.438|111.383 +638565.370|220015.279|111.652 +638555.180|220024.606|112.404 +638550.050|220029.290|112.285 +638539.894|220038.575|112.093 +638534.810|220043.223|112.209 +638499.100|220075.891|114.014 +638493.967|220080.591|114.800 +638458.180|220113.339|117.741 +638448.006|220122.654|118.973 +638442.895|220127.332|119.482 +638437.835|220131.962|119.747 +638432.723|220136.635|119.906 +638427.618|220141.308|120.335 +638422.558|220145.938|120.902 +638417.456|220150.610|121.487 +638412.396|220155.237|121.658 +638407.340|220159.864|121.914 +638402.237|220164.533|122.225 +638397.135|220169.200|122.664 +638392.084|220173.824|123.200 +638387.034|220178.445|123.685 +638381.934|220183.111|123.892 +638376.881|220187.735|124.093 +638371.830|220192.356|124.542 +638366.737|220197.016|124.980 +638361.690|220201.637|125.502 +638356.648|220206.251|126.126 +638351.552|220210.915|126.379 +638346.538|220215.496|126.227 +638341.442|220220.160|126.517 +638336.397|220224.774|126.949 +638331.353|220229.392|127.370 +638326.296|220234.016|127.422 +638321.246|220238.637|127.611 +638316.192|220243.257|127.833 +638311.141|220247.878|128.089 +638306.137|220252.456|128.260 +638301.086|220257.077|128.513 +638296.029|220261.701|128.690 +638291.070|220266.236|128.873 +638286.020|220270.860|129.101 +638281.009|220275.441|129.245 +638275.995|220280.025|129.299 +638270.981|220284.613|129.345 +638265.970|220289.194|129.537 +638260.950|220293.784|129.537 +638255.933|220298.371|129.595 +638250.959|220302.922|129.559 +638245.975|220307.476|129.418 +638240.952|220312.069|129.406 +638235.972|220316.623|129.382 +638230.976|220321.189|129.059 +638225.980|220325.755|128.812 +638220.985|220330.321|128.583 +638215.986|220334.890|128.327 +638211.033|220339.413|128.120 +638205.985|220344.027|127.907 +638201.026|220348.560|127.647 +638196.076|220353.086|127.532 +638191.071|220357.661|127.330 +638186.097|220362.203|126.940 +638181.077|220366.790|126.623 +638176.145|220371.295|126.215 +638171.113|220375.894|125.785 +638166.178|220380.402|125.413 +638161.173|220384.974|124.776 +638156.163|220389.546|124.142 +638151.203|220394.079|123.539 +638146.196|220398.651|123.005 +638141.240|220403.180|122.551 +638136.283|220407.706|122.152 +638131.337|220412.227|121.875 +638126.405|220416.735|121.811 +638121.458|220421.255|121.615 +638116.569|220425.726|121.512 +638111.619|220430.252|121.311 +638106.712|220434.736|121.100 +638101.804|220439.220|120.908 +638096.900|220443.703|120.762 +638091.993|220448.187|120.619 +638087.037|220452.716|119.966 +638082.096|220457.230|119.543 +638077.201|220461.699|119.122 +638072.284|220466.195|118.979 +638067.402|220470.657|118.750 +638062.519|220475.119|118.528 +638052.735|220484.065|118.464 +638047.910|220488.479|118.397 +638043.036|220492.932|118.375 +638023.541|220510.753|117.583 +638018.643|220515.225|117.031 +637999.114|220533.065|115.282 +637994.259|220537.500|114.828 +637989.345|220541.989|114.322 +637984.520|220546.397|113.788 +637974.767|220555.303|112.770 +637969.923|220559.729|112.584 +637965.184|220564.066|112.822 +637960.380|220568.455|112.599 +637955.656|220572.780|112.977 +637918.278|220607.022|116.726 +637876.645|220645.161|120.302 +637872.024|220649.395|120.610 +637867.394|220653.632|120.576 +637862.652|220657.969|120.152 +637853.441|220666.403|120.463 +637848.856|220670.600|120.475 +637821.357|220695.770|120.658 +637812.183|220704.165|120.326 +637807.583|220708.368|119.838 +637789.408|220725.001|119.363 +637784.925|220729.103|119.345 +637780.398|220733.246|119.396 +637775.997|220737.278|119.881 +637767.118|220745.407|120.186 +637749.522|220761.525|121.298 +637745.084|220765.588|121.414 +637740.671|220769.627|121.402 +637736.294|220773.635|121.603 +637714.135|220793.904|120.378 +637700.708|220806.181|118.817 +637687.538|220818.224|117.720 +637678.866|220826.158|117.461 +637665.321|220838.524|114.142 +637660.913|220842.553|113.514 +637656.631|220846.470|113.267 +637652.330|220850.405|113.182 +637648.036|220854.334|112.923 +637639.544|220862.103|112.642 +637635.316|220865.974|112.724 +637631.229|220869.717|113.008 +637627.157|220873.451|113.590 +637623.069|220877.194|114.130 +637615.041|220884.558|115.407 +637606.638|220892.245|114.824 +637602.468|220896.064|114.575 +637598.289|220899.886|114.312 +637594.028|220903.785|113.706 +637585.682|220911.417|112.874 +637581.211|220915.495|110.975 +637573.451|220922.615|112.538 +637569.583|220926.163|113.044 +637565.578|220929.833|113.203 +637561.734|220933.359|113.837 +637557.839|220936.932|114.258 +637554.062|220940.394|114.974 +637546.266|220947.542|115.620 +637542.343|220951.132|115.541 +637534.488|220958.326|115.376 +637526.688|220965.470|115.489 +637522.866|220968.972|115.672 +637519.047|220972.471|115.864 +637515.246|220975.952|115.943 +637507.641|220982.920|116.111 +637503.834|220986.407|116.199 +637500.098|220989.830|116.361 +637492.740|220996.572|116.967 +637488.966|221000.031|117.013 +637485.281|221003.406|117.217 +637481.761|221006.637|117.857 +637470.928|221016.564|118.583 +637467.301|221019.886|118.644 +637463.668|221023.218|118.891 +637453.042|221032.950|119.339 +637445.965|221039.433|119.430 +637442.390|221042.707|119.360 +637438.848|221045.950|119.223 +637435.312|221049.187|119.131 +637648.801|220851.469|113.057 +637657.384|220843.602|113.395 +637661.697|220839.652|113.572 +637679.613|220823.262|117.443 +637683.950|220819.288|117.598 +637692.725|220811.247|118.223 +637697.142|220807.202|118.570 +637701.598|220803.121|119.153 +637710.504|220794.965|120.079 +637714.900|220790.935|120.158 +637728.296|220778.664|121.329 +637737.104|220770.590|121.503 +637741.536|220766.524|121.353 +637745.938|220762.488|121.338 +637750.360|220758.434|121.164 +637763.579|220746.306|120.515 +637781.291|220730.054|119.217 +637785.802|220725.915|119.113 +637790.365|220721.733|119.031 +637794.873|220717.600|119.244 +637799.464|220713.394|119.354 +637804.045|220709.194|119.448 +637808.632|220704.991|119.579 +637813.301|220700.714|120.226 +637817.895|220696.505|120.448 +637822.528|220692.259|120.634 +637827.130|220688.038|120.674 +637831.772|220683.786|120.951 +637840.923|220675.394|120.451 +637845.491|220671.210|120.332 +637850.164|220666.924|120.277 +637854.809|220662.669|120.369 +637859.442|220658.426|120.396 +637864.087|220654.168|120.207 +637868.806|220649.849|120.512 +637873.417|220645.622|120.475 +637878.126|220641.306|120.448 +637882.799|220637.026|120.515 +637896.814|220624.179|119.842 +637906.028|220615.721|118.241 +637924.551|220598.716|115.111 +637943.342|220581.476|112.593 +637948.115|220577.102|112.551 +637952.955|220572.668|112.688 +637957.731|220568.294|112.700 +637962.541|220563.883|112.630 +637967.345|220559.482|112.535 +637972.203|220555.029|112.511 +637977.065|220550.576|112.929 +637982.003|220546.061|113.569 +637986.895|220541.581|113.892 +637991.814|220537.076|114.471 +638001.668|220528.060|115.422 +638016.475|220514.505|117.159 +638026.253|220505.550|117.342 +638031.210|220501.015|118.107 +638060.684|220474.013|118.537 +638065.615|220469.496|118.805 +638070.575|220464.951|118.909 +638075.488|220460.449|119.064 +638080.471|220455.889|119.436 +638085.458|220451.323|119.906 +638090.457|220446.748|120.524 +638095.462|220442.164|120.744 +638100.402|220437.638|120.835 +638105.398|220433.063|121.000 +638110.345|220428.530|121.195 +638115.335|220423.961|121.341 +638120.275|220419.435|121.524 +638125.311|220414.823|121.716 +638130.276|220410.273|121.692 +638135.278|220405.695|122.091 +638140.276|220401.117|122.524 +638145.269|220396.545|122.911 +638150.320|220391.924|123.432 +638155.373|220387.297|124.069 +638160.378|220382.719|124.715 +638165.428|220378.095|125.401 +638170.406|220373.538|125.776 +638175.478|220368.896|126.181 +638180.501|220364.297|126.605 +638185.515|220359.706|126.925 +638190.523|220355.119|127.239 +638195.531|220350.535|127.519 +638200.566|220345.920|127.577 +638205.565|220341.339|127.833 +638210.606|220336.718|128.035 +638215.650|220332.098|128.300 +638220.643|220327.526|128.531 +638225.681|220322.908|128.815 +638230.720|220318.293|129.059 +638235.706|220313.727|129.296 +638240.772|220309.082|129.296 +638245.795|220304.477|129.424 +638250.815|220299.877|129.501 +638255.881|220295.235|129.531 +638260.846|220290.684|129.519 +638265.903|220286.048|129.431 +638270.957|220281.412|129.330 +638275.916|220276.865|129.251 +638280.972|220272.232|129.162 +638286.020|220267.605|128.964 +638291.019|220263.018|128.748 +638296.069|220258.388|128.598 +638301.117|220253.761|128.412 +638306.115|220249.177|128.208 +638311.160|220244.550|127.992 +638316.204|220239.923|127.699 +638321.252|220235.296|127.507 +638326.299|220230.666|127.352 +638331.301|220226.082|127.288 +638336.336|220221.461|126.776 +638341.426|220216.791|126.459 +638346.422|220212.210|126.105 +638351.476|220207.577|126.282 +638356.520|220202.950|125.992 +638361.555|220198.330|125.307 +638366.646|220193.660|124.852 +638371.687|220189.033|124.356 +638376.732|220184.406|124.014 +638381.782|220179.776|123.862 +638386.875|220175.104|123.496 +638391.920|220170.474|122.975 +638396.964|220165.844|122.466 +638402.015|220161.214|122.094 +638407.111|220156.535|121.856 +638412.165|220151.902|121.597 +638417.264|220147.227|121.372 +638427.414|220137.912|120.238 +638432.470|220133.273|119.829 +638437.524|220128.637|119.680 +638442.629|220123.958|119.406 +638447.686|220119.316|118.985 +638452.795|220114.628|118.330 +638462.911|220105.347|117.519 +638473.137|220095.962|116.193 +638478.157|220091.354|115.611 +638483.268|220086.666|115.416 +638493.409|220077.363|114.663 +638498.533|220072.660|113.919 +638508.683|220063.349|113.151 +638513.758|220058.694|112.959 +638523.959|220049.337|112.328 +638534.152|220039.995|112.377 +638549.374|220026.041|112.481 +638554.449|220021.390|112.548 +638559.523|220016.742|112.654 +638564.617|220012.063|112.118 +638574.791|220002.736|111.743 +638579.875|219998.076|111.740 +638595.075|219984.128|111.789 +638605.164|219974.880|112.602 +638610.200|219970.260|112.645 +638615.281|219965.602|112.828 +638620.301|219961.000|113.282 +638625.333|219956.385|113.480 +638630.377|219951.755|113.435 +638635.425|219947.125|113.398 +638640.463|219942.504|113.529 +638645.517|219937.868|113.447 +638650.534|219933.260|113.105 +638655.551|219928.657|112.886 +638660.614|219924.009|112.706 +638665.628|219919.410|112.590 +638670.693|219914.761|112.435 +638675.674|219910.186|112.130 +638680.703|219905.569|111.837 +638685.766|219900.917|111.100 +638690.798|219896.300|110.890 +638695.812|219891.703|110.978 +638700.762|219887.162|111.289 +638705.758|219882.581|111.642 +638710.689|219878.064|112.234 +638715.636|219873.528|112.639 +638720.626|219868.956|113.142 +638725.545|219864.445|113.279 +638730.511|219859.888|113.471 +638735.473|219855.338|113.700 +638740.401|219850.817|113.785 +638745.382|219846.251|113.883 +638750.316|219841.722|113.916 +638755.321|219837.129|113.761 +638760.320|219832.535|113.093 +638765.310|219827.954|112.599 +638770.278|219823.388|111.859 +638775.231|219818.844|111.853 +638780.111|219814.369|112.133 +638785.003|219809.886|112.834 +638789.858|219805.433|112.883 +638794.811|219800.888|112.968 +638799.655|219796.447|113.188 +638804.547|219791.960|113.453 +638809.448|219787.465|113.617 +638814.319|219782.999|113.642 +638819.208|219778.513|113.499 +638829.089|219769.430|112.264 +638834.006|219764.918|111.965 +638838.885|219760.441|112.020 +638848.727|219751.401|111.002 +638858.454|219742.476|110.725 +638863.300|219738.029|110.768 +638868.158|219733.570|110.731 +638873.063|219729.068|110.338 +638877.854|219724.670|110.490 +638882.972|219719.957|108.357 +638887.836|219715.489|107.985 +638897.502|219706.619|107.845 +638902.321|219702.197|107.899 +638906.981|219697.929|108.878 +638911.733|219693.571|109.128 +638916.607|219689.099|108.841 +638921.532|219684.570|107.781 +638926.470|219680.028|106.677 +638931.395|219675.499|105.702 +638936.266|219671.022|104.806 +638940.978|219666.700|105.138 +638945.782|219662.289|104.806 +638950.583|219657.885|104.900 +638955.344|219653.508|104.547 +638960.138|219649.106|104.361 +638964.936|219644.699|104.166 +638969.648|219640.374|104.251 +638974.369|219636.040|104.291 +638978.993|219631.800|105.037 +638983.586|219627.594|106.013 +638988.219|219623.345|106.699 +638992.849|219619.096|107.073 +638997.513|219614.819|107.585 +639002.097|219610.619|108.314 +639006.709|219606.389|108.853 +639011.320|219602.161|109.423 +639015.950|219597.915|109.878 +639020.565|219593.678|110.115 +639025.201|219589.426|110.566 +639029.840|219585.168|110.993 +639034.409|219580.977|111.258 +639039.088|219576.686|111.493 +639043.730|219572.425|111.642 +639048.332|219568.197|111.752 +639052.919|219563.988|111.969 +639057.613|219559.675|111.859 +639062.265|219555.408|111.749 +639066.879|219551.165|111.551 +639071.573|219546.852|111.222 +639076.231|219542.576|110.838 +639080.885|219538.296|110.478 +639085.551|219534.008|110.097 +639090.242|219529.695|109.582 +639094.875|219525.443|109.448 +639099.475|219521.215|109.210 +639104.080|219516.985|108.985 +639108.750|219512.693|108.698 +639113.401|219508.417|107.966 +639118.043|219504.146|107.320 +639122.752|219499.815|106.622 +639127.446|219495.502|106.037 +639132.046|219491.275|105.705 +639136.581|219487.108|105.464 +639141.208|219482.856|105.034 +639150.428|219474.379|104.156 +639154.869|219470.304|104.495 +639152.979|219469.234|104.534 +639148.593|219473.246|104.409 +639143.936|219477.510|105.190 +639139.462|219481.600|105.016 +639134.944|219485.733|105.367 +639130.400|219489.894|105.623 +639125.828|219494.079|106.043 +639121.186|219498.331|106.610 +639116.519|219502.607|107.326 +639111.859|219506.877|108.034 +639107.153|219511.184|108.738 +639102.514|219515.433|109.106 +639097.899|219519.655|109.350 +639093.293|219523.870|109.582 +639088.651|219528.116|109.737 +639083.994|219532.380|110.015 +639079.254|219536.717|110.496 +639074.579|219541.000|110.932 +639069.882|219545.300|111.234 +639065.194|219549.592|111.493 +639060.469|219553.914|111.685 +639055.809|219558.184|111.837 +639051.118|219562.476|111.883 +639046.476|219566.725|111.652 +639041.819|219570.983|111.530 +639037.058|219575.339|111.435 +639032.440|219579.563|111.109 +639027.761|219583.846|110.874 +639023.067|219588.137|110.432 +639018.361|219592.438|110.060 +639013.655|219596.742|109.716 +639008.967|219601.030|109.292 +639004.310|219605.285|108.646 +638999.579|219609.610|108.189 +638994.898|219613.890|107.418 +638990.185|219618.197|106.857 +638985.409|219622.561|106.394 +638980.737|219626.832|105.595 +638976.024|219631.135|104.717 +638971.215|219635.534|104.190 +638966.384|219639.956|104.193 +638961.534|219644.394|104.324 +638956.642|219648.875|104.449 +638951.683|219653.416|104.717 +638946.779|219657.909|104.989 +638941.865|219662.405|104.982 +638936.952|219666.907|105.363 +638931.904|219671.534|106.046 +638926.903|219676.124|107.189 +638921.825|219680.778|108.180 +638916.829|219685.359|108.969 +638911.836|219689.931|109.012 +638907.082|219694.272|107.942 +638892.192|219707.899|107.899 +638887.266|219712.410|107.890 +638882.295|219716.961|107.884 +638877.065|219721.774|110.530 +638872.075|219726.340|110.347 +638867.101|219730.894|110.457 +638862.111|219735.463|110.740 +638857.137|219740.019|110.938 +638852.141|219744.594|110.899 +638847.127|219749.182|111.030 +638842.068|219753.821|111.630 +638837.047|219758.420|111.923 +638832.052|219762.992|111.993 +638827.010|219767.607|112.060 +638816.818|219776.952|113.837 +638811.859|219781.490|113.685 +638806.839|219786.087|113.678 +638801.840|219790.662|113.468 +638796.799|219795.274|113.224 +638791.800|219799.849|113.057 +638786.804|219804.418|112.865 +638781.741|219809.054|112.910 +638776.807|219813.565|112.118 +638771.747|219818.198|112.173 +638766.672|219822.843|112.420 +638761.622|219827.473|113.002 +638756.531|219832.136|113.496 +638751.447|219836.797|114.005 +638746.400|219841.417|114.053 +638741.355|219846.035|114.126 +638736.338|219850.625|113.883 +638731.266|219855.267|113.739 +638726.249|219859.858|113.535 +638721.235|219864.445|113.310 +638716.231|219869.023|112.974 +638711.232|219873.595|112.572 +638706.187|219878.210|112.142 +638701.143|219882.824|111.731 +638696.153|219887.387|111.210 +638691.097|219892.017|111.021 +638686.071|219896.623|111.097 +638680.962|219901.308|111.725 +638675.869|219905.977|112.154 +638670.788|219910.634|112.441 +638665.716|219915.280|112.624 +638660.644|219919.928|112.843 +638655.578|219924.573|113.020 +638650.516|219929.209|113.121 +638645.441|219933.860|113.523 +638640.390|219938.487|113.517 +638635.288|219943.163|113.602 +638630.231|219947.796|113.742 +638625.184|219952.420|113.752 +638620.142|219957.034|113.660 +638615.067|219961.682|113.319 +638609.986|219966.334|113.066 +638604.997|219970.903|112.956 +638599.919|219975.554|112.724 +638584.749|219989.435|111.557 +638579.698|219994.068|111.892 +638574.666|219998.673|111.734 +638559.432|220012.636|112.715 +638554.348|220017.296|112.892 +638539.169|220031.198|112.590 +638529.077|220040.437|112.087 +638523.996|220045.094|112.340 +638518.958|220049.712|112.801 +638493.632|220072.923|113.755 +638488.545|220077.595|115.105 +638483.473|220082.243|115.404 +638473.335|220091.534|115.964 +638432.931|220128.585|119.838 +638427.825|220133.264|119.976 +638422.817|220137.854|120.354 +638417.764|220142.490|121.009 +638412.710|220147.123|121.451 +638407.654|220151.756|121.664 +638402.603|220156.386|121.954 +638397.549|220161.019|122.256 +638392.545|220165.606|122.515 +638387.497|220170.233|123.066 +638382.453|220174.860|123.624 +638377.448|220179.447|123.810 +638372.400|220184.074|124.087 +638367.353|220188.701|124.459 +638362.357|220193.282|124.904 +638357.316|220197.906|125.489 +638352.277|220202.527|126.123 +638347.276|220207.108|126.331 +638342.222|220211.738|126.279 +638337.223|220216.322|126.520 +638332.185|220220.940|127.117 +638327.134|220225.570|127.227 +638322.130|220230.154|127.291 +638317.131|220234.735|127.510 +638312.083|220239.362|127.736 +638307.085|220243.943|127.992 +638302.034|220248.570|128.160 +638297.032|220253.151|128.394 +638292.027|220257.735|128.525 +638287.026|220262.320|128.717 +638282.024|220266.904|128.912 +638277.022|220271.488|129.126 +638271.962|220276.121|129.174 +638267.000|220280.665|129.281 +638261.989|220285.256|129.321 +638256.978|220289.846|129.421 +638252.010|220294.397|129.437 +638246.990|220298.996|129.360 +638242.013|220303.553|129.269 +638236.983|220308.155|129.104 +638232.006|220312.715|129.025 +638227.023|220317.278|128.894 +638221.978|220321.896|128.577 +638217.034|220326.422|128.352 +638211.990|220331.040|128.080 +638206.991|220335.615|127.839 +638201.995|220340.190|127.632 +638197.000|220344.762|127.498 +638192.044|220349.297|127.239 +638187.036|220353.882|126.971 +638182.022|220358.472|126.629 +638177.051|220363.023|126.273 +638172.027|220367.619|125.889 +638167.059|220372.167|125.599 +638162.060|220376.739|124.999 +638157.056|220381.317|124.313 +638152.048|220385.898|123.661 +638147.046|220390.473|123.142 +638142.047|220395.048|122.670 +638137.055|220399.617|122.313 +638132.102|220404.149|121.893 +638127.103|220408.724|121.551 +638122.171|220413.239|121.454 +638117.233|220417.762|121.311 +638112.293|220422.285|121.137 +638107.349|220426.811|120.975 +638102.405|220431.341|120.838 +638097.513|220435.818|120.792 +638092.566|220440.351|120.649 +638087.619|220444.874|120.049 +638082.663|220449.412|119.899 +638077.707|220453.945|119.287 +638072.784|220458.450|119.055 +638067.865|220462.955|118.863 +638062.948|220467.456|118.729 +638058.081|220471.913|118.631 +638053.189|220476.396|118.769 +638033.697|220494.248|118.485 +638023.861|220503.249|117.684 +638018.996|220507.702|117.357 +638014.101|220512.180|116.821 +638009.188|220516.679|116.541 +637994.533|220530.090|115.428 +637989.632|220534.570|114.596 +637984.715|220539.066|114.056 +637979.902|220543.471|113.593 +637974.962|220547.994|112.913 +637970.097|220552.444|112.496 +637960.569|220561.170|112.548 +637955.805|220565.535|112.606 +637913.560|220604.236|116.690 +637899.847|220616.812|119.329 +637881.223|220633.862|120.341 +637876.578|220638.114|120.463 +637867.218|220646.676|120.314 +637853.322|220659.392|120.195 +637848.680|220663.638|120.134 +637844.089|220667.838|120.098 +637839.463|220672.072|120.180 +637821.101|220688.876|120.326 +637816.517|220693.070|120.152 +637807.306|220701.491|119.625 +637793.621|220714.013|119.150 +637780.081|220726.400|119.140 +637775.634|220730.472|119.345 +637758.020|220746.605|121.015 +637753.530|220750.714|121.061 +637749.120|220754.752|121.283 +637744.737|220758.764|121.390 +637740.302|220762.820|121.524 +637735.916|220766.838|121.649 +637718.182|220783.056|120.841 +637704.881|220795.215|119.793 +637700.480|220799.241|119.479 +637674.145|220823.317|117.110 +637669.679|220827.392|116.138 +637656.347|220839.566|113.428 +637652.123|220843.431|113.459 +637647.816|220847.369|113.102 +637643.555|220851.267|112.987 +637634.957|220859.125|112.221 +637630.613|220863.091|111.310 +637622.761|220870.296|113.584 +637618.793|220873.935|114.413 +637614.837|220877.563|115.303 +637606.644|220885.058|115.401 +637602.486|220888.859|115.212 +637598.320|220892.665|114.751 +637594.135|220896.491|114.465 +637585.725|220904.172|113.105 +637577.352|220911.819|111.975 +637573.442|220915.398|112.523 +637569.458|220919.043|112.520 +637565.453|220922.707|112.456 +637561.606|220926.230|113.072 +637550.106|220936.761|114.486 +637546.244|220940.294|114.861 +637530.687|220954.522|114.925 +637519.224|220965.010|115.230 +637515.438|220968.472|115.361 +637511.649|220971.941|115.486 +637507.910|220975.361|115.605 +637504.191|220978.763|115.830 +637500.442|220982.195|116.144 +637496.748|220985.572|116.278 +637493.145|220988.873|116.769 +637489.439|220992.262|116.870 +637485.732|220995.655|116.982 +637482.084|220998.992|117.327 +637478.548|221002.232|117.699 +637474.948|221005.524|118.049 +637471.422|221008.755|118.476 +637449.955|221028.390|119.278 +637446.413|221031.630|119.317 +637442.893|221034.849|119.232 +637439.348|221038.089|119.086 +637435.809|221041.323|118.961 +637428.786|221047.742|118.766 +637646.094|220847.387|112.953 +637654.799|220839.399|113.630 +637668.192|220827.121|116.172 +637672.612|220823.067|116.675 +637699.263|220798.610|119.153 +637717.216|220782.136|120.808 +637726.168|220773.918|121.387 +637735.084|220765.731|121.588 +637739.528|220761.650|121.512 +637743.959|220757.578|121.378 +637752.856|220749.403|121.100 +637770.614|220733.078|119.680 +637775.031|220729.018|119.019 +637784.123|220720.663|118.921 +637788.649|220716.506|118.933 +637793.255|220712.278|119.113 +637802.417|220703.866|119.284 +637807.077|220699.586|119.576 +637816.386|220691.043|120.140 +637821.007|220686.800|120.253 +637839.456|220669.850|119.832 +637844.120|220665.565|120.018 +637848.753|220661.310|120.040 +637853.483|220656.960|120.070 +637862.798|220648.404|120.198 +637867.465|220644.116|119.857 +637872.195|220639.772|120.299 +637876.852|220635.493|120.271 +637881.571|220631.156|120.024 +637886.195|220626.904|119.805 +637904.897|220609.710|118.525 +637918.622|220597.067|115.035 +637937.139|220580.013|110.899 +637942.189|220575.392|112.929 +637951.803|220566.559|112.691 +637956.564|220562.182|112.639 +637961.422|220557.717|112.599 +637966.211|220553.316|112.410 +637971.103|220548.826|112.673 +637980.927|220539.810|113.596 +637985.788|220535.345|114.114 +637995.630|220526.313|114.971 +638010.440|220512.722|116.726 +638015.351|220508.214|116.995 +638035.056|220490.124|118.580 +638044.862|220481.121|118.869 +638049.824|220476.561|118.930 +638054.661|220472.114|118.772 +638059.611|220467.566|118.756 +638064.521|220463.058|118.863 +638069.483|220458.501|119.009 +638074.400|220453.984|119.238 +638079.374|220449.418|119.573 +638084.348|220444.852|119.960 +638089.329|220440.280|120.448 +638094.297|220435.721|120.805 +638099.281|220431.142|120.853 +638104.267|220426.561|120.966 +638109.199|220422.032|121.049 +638114.185|220417.451|121.204 +638119.172|220412.870|121.423 +638124.149|220408.301|121.521 +638129.145|220403.713|121.893 +638134.183|220399.090|122.216 +638139.222|220394.463|122.588 +638144.214|220389.879|123.011 +638149.253|220385.255|123.472 +638154.255|220380.664|124.081 +638159.302|220376.035|124.721 +638164.343|220371.408|125.325 +638169.379|220366.790|125.877 +638174.387|220362.187|126.145 +638179.401|220357.585|126.492 +638184.460|220352.940|126.843 +638189.465|220348.346|127.129 +638194.467|220343.753|127.382 +638199.508|220339.126|127.583 +638204.501|220334.545|127.757 +638209.539|220329.918|127.971 +638214.584|220325.291|128.297 +638219.573|220320.713|128.547 +638224.612|220316.089|128.803 +638229.677|220311.438|128.806 +638234.661|220306.863|129.056 +638239.733|220302.209|129.178 +638244.756|220297.600|129.290 +638249.770|220292.995|129.330 +638254.833|220288.350|129.391 +638259.840|220283.750|129.293 +638264.848|220279.154|129.232 +638269.902|220274.512|129.144 +638274.956|220269.872|129.074 +638279.954|220265.279|128.909 +638285.002|220260.646|128.696 +638290.046|220256.010|128.522 +638295.094|220251.374|128.339 +638300.138|220246.741|128.120 +638305.137|220242.151|127.943 +638310.178|220237.518|127.687 +638315.272|220232.842|127.486 +638320.267|220228.252|127.269 +638325.360|220223.573|127.187 +638330.362|220218.983|127.084 +638335.401|220214.353|126.730 +638340.485|220209.680|126.291 +638345.526|220205.047|125.986 +638350.577|220200.411|126.020 +638355.609|220195.785|125.340 +638360.647|220191.155|124.855 +638365.686|220186.525|124.328 +638370.730|220181.889|124.051 +638375.774|220177.256|123.795 +638380.822|220172.620|123.523 +638385.909|220167.944|122.914 +638390.905|220163.351|122.457 +638396.001|220158.669|122.121 +638401.049|220154.033|121.881 +638406.099|220149.394|121.649 +638411.195|220144.712|121.463 +638416.246|220140.070|120.951 +638421.293|220135.428|120.317 +638426.393|220130.743|120.015 +638431.446|220126.101|119.802 +638436.500|220121.459|119.476 +638466.946|220093.475|116.135 +638472.055|220088.781|115.907 +638477.118|220084.130|115.708 +638482.135|220079.525|115.562 +638497.353|220065.528|113.395 +638507.494|220056.213|113.038 +638522.667|220042.278|112.395 +638527.733|220037.627|112.569 +638537.816|220028.376|113.078 +638542.884|220023.719|113.133 +638547.965|220019.052|112.895 +638553.004|220014.422|112.490 +638558.067|220009.777|112.883 +638573.279|219995.802|112.060 +638583.347|219986.563|111.996 +638588.412|219981.918|112.395 +638593.378|219977.368|112.956 +638598.450|219972.713|113.200 +638603.476|219968.105|113.438 +638608.508|219963.490|113.560 +638613.531|219958.881|113.831 +638618.515|219954.309|114.005 +638623.553|219949.689|114.062 +638628.597|219945.059|114.011 +638633.599|219940.465|113.864 +638638.650|219935.829|113.742 +638643.658|219931.233|113.563 +638648.672|219926.630|113.316 +638653.725|219921.991|113.264 +638658.690|219917.435|113.090 +638663.759|219912.780|112.813 +638668.785|219908.166|112.532 +638673.812|219903.551|112.261 +638678.850|219898.921|111.801 +638683.843|219894.337|111.402 +638688.878|219889.713|111.124 +638693.831|219885.171|111.368 +638698.817|219880.599|111.844 +638703.764|219876.064|112.197 +638708.751|219871.492|112.673 +638713.692|219866.963|113.130 +638718.642|219862.424|113.483 +638723.604|219857.870|113.685 +638728.566|219853.317|113.880 +638733.528|219848.766|114.120 +638738.509|219844.197|114.160 +638743.440|219839.671|114.212 +638748.430|219835.093|114.187 +638753.401|219830.527|113.797 +638758.433|219825.906|113.355 +638763.438|219821.304|112.654 +638768.397|219816.753|112.554 +638773.369|219812.190|112.325 +638778.258|219807.709|113.051 +638783.165|219803.208|113.041 +638788.097|219798.681|113.288 +638793.004|219794.179|113.346 +638797.890|219789.699|113.630 +638802.824|219785.172|113.916 +638807.704|219780.695|113.816 +638812.633|219776.169|113.706 +638822.588|219767.019|112.188 +638827.458|219762.550|112.285 +638832.427|219757.987|111.956 +638837.270|219753.543|111.886 +638842.275|219748.941|111.255 +638847.130|219744.485|111.142 +638852.071|219739.949|110.746 +638856.914|219735.502|110.780 +638861.843|219730.979|110.539 +638866.674|219726.544|110.332 +638871.591|219722.030|110.252 +638876.577|219717.443|109.161 +638881.597|219712.825|107.872 +638896.103|219699.511|107.951 +638900.934|219695.080|107.948 +638905.756|219690.654|108.018 +638910.514|219686.289|108.226 +638915.232|219681.967|109.146 +638920.042|219677.553|109.000 +638924.949|219673.042|108.488 +638929.835|219668.550|107.433 +638934.803|219663.978|106.165 +638939.659|219659.515|105.415 +638944.444|219655.123|105.235 +638949.299|219650.661|104.912 +638954.091|219646.263|104.726 +638958.828|219641.913|104.601 +638963.619|219637.515|104.455 +638968.359|219633.162|104.358 +638973.050|219628.859|104.611 +638977.692|219624.604|105.239 +638982.291|219620.391|106.156 +638986.921|219616.148|106.891 +638991.536|219611.918|107.375 +638996.114|219607.721|108.125 +639000.735|219603.484|108.600 +639005.337|219599.265|109.222 +639009.940|219595.044|109.521 +639014.554|219590.813|110.079 +639019.166|219586.583|110.350 +639023.765|219582.364|110.719 +639028.368|219578.143|111.075 +639032.995|219573.900|111.298 +639037.567|219569.706|111.569 +639042.206|219565.448|111.740 +639046.799|219561.232|111.923 +639051.362|219557.044|111.981 +639056.004|219552.783|111.904 +639060.604|219548.562|111.801 +639065.221|219544.319|111.591 +639069.842|219540.076|111.411 +639074.493|219535.803|111.063 +639079.126|219531.548|110.554 +639083.713|219527.332|110.335 +639088.359|219523.068|110.100 +639092.943|219518.859|109.942 +639097.490|219514.683|109.734 +639102.059|219510.486|109.423 +639106.683|219506.234|108.829 +639111.383|219501.915|108.119 +639115.995|219497.672|107.360 +639120.594|219493.445|106.717 +639129.790|219484.996|105.784 +639134.320|219480.835|105.583 +639155.354|219459.392|105.053 +639150.849|219463.522|105.263 +639141.882|219471.737|105.254 +639137.337|219475.903|105.464 +639132.917|219479.954|105.318 +639128.281|219484.203|105.781 +639123.670|219488.434|106.153 +639119.083|219492.643|106.695 +639114.422|219496.919|107.378 +639109.807|219501.156|108.125 +639105.092|219505.481|108.887 +639100.468|219509.724|109.463 +639095.845|219513.967|109.777 +639091.288|219518.143|110.021 +639086.673|219522.370|110.033 +639082.040|219526.622|110.475 +639077.419|219530.856|110.569 +639072.789|219535.105|111.039 +639068.077|219539.427|111.423 +639063.466|219543.652|111.536 +639058.845|219547.885|111.725 +639054.191|219552.149|111.837 +639049.551|219556.395|111.883 +639044.943|219560.614|111.749 +639040.350|219564.817|111.551 +639035.701|219569.075|111.417 +639031.114|219573.272|111.219 +639026.493|219577.497|110.917 +639021.839|219581.755|110.542 +639017.236|219585.967|110.170 +639012.616|219590.195|109.942 +639008.001|219594.413|109.344 +639003.350|219598.671|109.027 +638998.732|219602.893|108.475 +638994.075|219607.151|107.884 +638989.481|219611.351|107.214 +638984.812|219615.621|106.714 +638980.209|219619.827|105.775 +638975.579|219624.058|105.037 +638970.876|219628.362|104.480 +638966.103|219632.729|104.403 +638961.312|219637.119|104.507 +638956.450|219641.575|104.772 +638951.713|219645.912|104.873 +638946.818|219650.396|105.065 +638941.963|219654.843|105.360 +638937.095|219659.305|105.787 +638932.118|219663.877|107.064 +638927.083|219668.498|108.445 +638922.163|219673.009|108.985 +638917.341|219677.422|108.829 +638912.580|219681.772|107.811 +638898.017|219695.110|107.848 +638893.091|219699.618|107.808 +638888.205|219704.092|107.869 +638883.271|219708.613|107.976 +638878.412|219713.063|107.872 +638873.230|219717.827|110.109 +638868.323|219722.323|110.094 +638863.324|219726.901|110.429 +638858.414|219731.396|110.472 +638853.431|219735.962|110.752 +638848.490|219740.489|110.697 +638843.479|219745.082|111.280 +638838.532|219749.614|111.325 +638833.497|219754.229|111.761 +638823.548|219763.343|112.026 +638818.552|219767.924|112.670 +638808.436|219777.196|113.825 +638803.410|219781.801|113.895 +638798.451|219786.340|113.803 +638793.452|219790.918|113.663 +638788.468|219795.478|113.355 +638783.470|219800.053|113.230 +638778.471|219804.631|113.151 +638773.426|219809.249|113.038 +638768.467|219813.787|112.563 +638763.392|219818.438|112.846 +638758.321|219823.084|113.136 +638753.227|219827.753|113.712 +638748.149|219832.407|114.148 +638743.102|219837.034|114.273 +638738.024|219841.682|114.172 +638732.986|219846.294|114.215 +638727.917|219850.939|114.090 +638722.857|219855.569|113.831 +638717.846|219860.153|113.593 +638712.802|219864.771|113.203 +638707.754|219869.389|112.813 +638702.716|219873.997|112.334 +638697.623|219878.661|111.993 +638692.633|219883.224|111.517 +638687.537|219887.887|111.200 +638682.459|219892.538|111.353 +638677.375|219897.196|111.658 +638672.224|219901.917|112.295 +638667.094|219906.617|112.624 +638662.013|219911.272|112.987 +638656.901|219915.953|113.102 +638651.790|219920.635|113.276 +638646.681|219925.314|113.407 +638641.570|219929.995|113.630 +638636.510|219934.628|113.797 +638631.402|219939.307|114.044 +638626.250|219944.028|114.251 +638621.200|219948.649|114.328 +638616.070|219953.346|114.169 +638610.986|219958.001|114.056 +638605.911|219962.646|113.773 +638600.778|219967.343|113.666 +638595.703|219971.988|113.419 +638590.628|219976.630|113.185 +638585.517|219981.306|112.642 +638580.445|219985.948|112.334 +638570.228|219995.299|112.362 +638565.135|219999.969|112.731 +638554.918|220009.326|113.081 +638534.521|220027.998|112.901 +638529.452|220032.640|112.746 +638524.380|220037.279|112.566 +638519.262|220041.967|112.496 +638514.181|220046.621|112.874 +638503.986|220055.954|113.051 +638498.917|220060.599|113.108 +638483.631|220074.614|115.434 +638473.497|220083.898|116.016 +638463.319|220093.219|116.336 +638448.134|220107.142|118.202 +638438.015|220116.411|118.769 +638432.958|220121.051|119.506 +638427.901|220125.680|119.832 +638422.845|220130.313|120.030 +638417.791|220134.943|120.351 +638412.786|220139.531|121.058 +638407.736|220144.161|121.475 +638402.682|220148.790|121.618 +638397.629|220153.417|121.853 +638392.627|220158.002|122.128 +638387.576|220162.628|122.448 +638382.578|220167.210|122.990 +638377.533|220171.833|123.542 +638372.534|220176.411|123.786 +638367.533|220180.993|124.036 +638362.534|220185.574|124.340 +638357.538|220190.152|124.804 +638352.497|220194.770|125.291 +638347.559|220199.299|125.989 +638342.509|220203.926|126.023 +638337.510|220208.504|126.325 +638332.572|220213.030|126.919 +638327.570|220217.611|127.013 +638322.568|220222.193|127.120 +638317.612|220226.728|127.230 +638312.614|220231.309|127.422 +638307.615|220235.893|127.626 +638302.616|220240.474|127.858 +638297.666|220245.010|128.123 +638292.710|220249.551|128.248 +638287.711|220254.133|128.480 +638282.755|220258.674|128.617 +638277.757|220263.255|128.824 +638272.801|220267.797|128.973 +638267.842|220272.341|129.107 +638262.882|220276.886|129.190 +638257.871|220281.476|129.211 +638252.955|220285.981|129.257 +638247.938|220290.578|129.245 +638243.015|220295.086|129.190 +638238.041|220299.642|129.117 +638233.061|220304.202|128.970 +638228.080|220308.765|128.809 +638223.106|220313.319|128.815 +638218.165|220317.845|128.580 +638213.218|220322.374|128.294 +638208.219|220326.949|127.949 +638203.276|220331.479|127.763 +638198.323|220336.014|127.468 +638193.373|220340.547|127.276 +638188.368|220345.128|126.986 +638183.461|220349.621|126.767 +638178.495|220354.168|126.419 +638173.533|220358.710|126.154 +638168.562|220363.260|125.797 +638163.575|220367.826|125.267 +638158.625|220372.356|124.618 +638153.627|220376.928|124.017 +638148.674|220381.457|123.453 +638143.678|220386.032|122.972 +638138.737|220390.555|122.603 +638133.799|220395.075|122.304 +638128.807|220399.644|121.978 +638123.906|220404.134|121.606 +638118.916|220408.703|121.372 +638114.027|220413.178|121.222 +638109.089|220417.701|121.073 +638104.203|220422.178|120.985 +638099.265|220426.699|120.917 +638094.376|220431.176|120.860 +638089.420|220435.715|120.622 +638084.470|220440.244|119.973 +638079.551|220444.749|119.671 +638074.631|220449.254|119.387 +638069.712|220453.759|119.162 +638064.841|220458.218|118.955 +638059.928|220462.720|118.827 +638055.063|220467.173|118.741 +638045.297|220476.122|118.726 +638040.466|220480.551|119.031 +638035.547|220485.053|118.519 +638030.722|220489.472|118.455 +638016.021|220502.929|117.281 +638011.169|220507.373|117.077 +638006.280|220511.845|116.601 +638001.388|220516.325|116.102 +637996.511|220520.790|115.779 +637991.570|220525.308|114.974 +637986.706|220529.758|114.413 +637976.925|220538.710|113.368 +637972.042|220543.181|113.148 +637967.211|220547.601|112.578 +637962.367|220552.039|112.334 +637957.558|220556.443|112.386 +637947.944|220565.249|112.206 +637943.308|220569.507|112.892 +637938.422|220573.981|112.453 +637928.797|220582.799|111.633 +637924.340|220586.905|113.675 +637901.337|220608.046|118.622 +637896.704|220612.298|119.064 +637878.035|220629.424|120.043 +637868.733|220637.956|120.192 +637859.345|220646.560|119.863 +637854.675|220650.843|119.881 +637850.042|220655.092|119.835 +637845.415|220659.335|119.860 +637840.682|220663.672|119.549 +637836.003|220667.960|119.290 +637831.477|220672.112|119.689 +637817.685|220684.764|119.957 +637813.027|220689.031|119.634 +637799.241|220701.665|119.012 +637790.015|220710.123|118.485 +637785.522|220714.244|118.671 +637776.482|220722.535|118.763 +637767.569|220730.716|119.634 +637749.909|220746.922|121.055 +637736.653|220759.077|121.338 +637732.240|220763.128|121.573 +637727.848|220767.158|121.676 +637723.352|220771.276|121.259 +637714.458|220779.426|120.738 +637705.527|220787.610|120.110 +637692.241|220799.781|118.979 +637683.383|220807.894|117.900 +637661.325|220828.097|115.425 +637656.924|220832.126|114.800 +637652.553|220836.131|114.090 +637648.081|220840.221|113.185 +637643.781|220844.160|112.862 +637639.522|220848.064|112.755 +637630.714|220856.123|110.765 +637622.777|220863.420|112.852 +637610.822|220874.405|115.099 +637602.575|220881.970|115.169 +637598.530|220885.679|115.462 +637594.269|220889.581|114.584 +637590.093|220893.406|114.334 +637585.881|220897.265|113.706 +637581.729|220901.069|113.139 +637577.630|220904.827|113.044 +637573.189|220908.881|111.283 +637569.510|220912.270|112.572 +637565.413|220916.022|112.319 +637561.451|220919.659|112.423 +637557.754|220923.057|113.441 +637553.779|220926.706|113.511 +637549.999|220930.174|113.980 +637546.101|220933.756|114.395 +637538.252|220940.952|114.398 +637534.378|220944.506|114.514 +637530.498|220948.063|114.410 +637526.743|220951.510|114.605 +637522.961|220954.982|114.916 +637515.304|220962.002|114.995 +637511.537|220965.461|115.184 +637507.782|220968.902|115.233 +637504.084|220972.298|115.507 +637500.360|220975.718|115.696 +637496.656|220979.113|115.983 +637493.121|220982.365|116.717 +637489.390|220985.785|116.702 +637485.696|220989.171|116.635 +637482.084|220992.488|117.104 +637474.945|220999.044|117.775 +637467.874|221005.533|118.546 +637464.378|221008.746|118.881 +637453.643|221018.591|119.028 +637450.119|221021.822|119.104 +637446.535|221025.107|118.964 +637443.066|221028.290|119.058 +637439.491|221031.569|118.973 +637436.019|221034.751|118.878 +637425.446|221044.441|118.095 +637644.253|220841.749|113.005 +637648.499|220837.850|113.099 +637653.065|220833.674|114.471 +637657.399|220829.697|114.773 +637661.877|220825.597|115.772 +637666.272|220821.568|116.163 +637670.615|220817.584|116.580 +637675.004|220813.561|116.976 +637679.457|220809.479|117.467 +637683.868|220805.435|118.025 +637697.209|220793.206|119.339 +637706.121|220785.031|120.098 +637715.046|220776.844|120.725 +637719.536|220772.729|121.082 +637728.539|220764.472|121.731 +637732.919|220760.449|121.585 +637741.792|220752.305|121.393 +637746.242|220748.217|121.134 +637750.692|220744.130|120.887 +637759.556|220735.992|120.494 +637763.997|220731.914|119.957 +637768.435|220727.832|119.433 +637781.928|220715.439|118.622 +637786.488|220711.257|118.531 +637790.987|220707.124|118.424 +637795.608|220702.887|118.720 +637800.241|220698.636|118.833 +637804.895|220694.368|119.393 +637809.491|220690.150|119.336 +637818.806|220681.603|119.723 +637828.017|220673.148|119.549 +637832.614|220668.924|119.302 +637846.683|220656.012|119.738 +637851.313|220651.760|119.771 +637855.971|220647.484|119.668 +637860.722|220643.125|119.875 +637865.410|220638.821|120.034 +637874.768|220630.229|119.921 +637912.002|220596.000|115.507 +637916.665|220591.715|114.617 +637925.852|220583.256|112.225 +637930.650|220578.849|111.972 +637935.450|220574.445|112.508 +637945.045|220565.639|112.468 +637949.874|220561.204|112.551 +637959.481|220552.383|112.365 +637964.321|220547.939|112.206 +637969.225|220543.440|112.987 +637974.123|220538.947|113.343 +637978.973|220534.497|113.730 +637983.932|220529.950|114.242 +638003.531|220511.973|115.873 +638008.490|220507.431|116.967 +638013.406|220502.917|117.336 +638018.313|220498.415|117.644 +638023.288|220493.852|118.125 +638028.204|220489.344|118.564 +638042.917|220475.838|118.872 +638047.763|220471.388|118.756 +638052.707|220466.847|118.702 +638057.572|220462.382|118.817 +638062.528|220457.834|118.891 +638067.438|220453.326|119.043 +638072.361|220448.809|119.342 +638077.317|220444.261|119.525 +638082.297|220439.692|119.963 +638087.259|220435.141|120.262 +638092.240|220430.569|120.805 +638097.223|220425.994|120.884 +638102.158|220421.468|120.954 +638107.138|220416.896|121.039 +638112.073|220412.367|121.180 +638117.051|220407.798|121.292 +638121.985|220403.268|121.500 +638126.981|220398.684|121.862 +638132.016|220394.064|122.195 +638137.006|220389.488|122.548 +638142.041|220384.868|122.941 +638146.979|220380.335|123.350 +638152.020|220375.715|123.865 +638157.062|220371.091|124.453 +638162.097|220366.473|124.990 +638167.132|220361.855|125.563 +638172.162|220357.244|126.105 +638177.166|220352.650|126.337 +638182.174|220348.054|126.675 +638187.176|220343.464|126.925 +638192.220|220338.834|127.157 +638197.213|220334.249|127.340 +638202.261|220329.613|127.660 +638207.302|220324.980|127.931 +638212.298|220320.393|128.248 +638217.333|220315.769|128.495 +638222.362|220311.149|128.629 +638227.385|220306.534|128.729 +638232.415|220301.913|128.909 +638237.438|220297.298|129.050 +638242.458|220292.687|129.156 +638247.520|220288.036|129.226 +638252.528|220283.430|129.184 +638257.588|220278.782|129.171 +638262.593|220274.179|129.120 +638267.643|220269.537|128.995 +638272.697|220264.895|128.894 +638277.696|220260.299|128.723 +638282.740|220255.660|128.519 +638287.785|220251.024|128.327 +638292.783|220246.427|128.199 +638297.828|220241.788|128.001 +638302.872|220237.152|127.803 +638307.914|220232.519|127.480 +638312.958|220227.880|127.324 +638318.048|220223.198|127.163 +638323.047|220218.605|126.998 +638328.140|220213.923|126.879 +638333.185|220209.284|126.840 +638338.214|220204.657|126.117 +638343.258|220200.018|125.995 +638348.348|220195.340|125.749 +638353.378|220190.710|124.944 +638358.416|220186.077|124.444 +638363.506|220181.395|124.121 +638368.551|220176.756|123.880 +638373.644|220172.074|123.627 +638378.685|220167.438|123.289 +638383.724|220162.799|122.551 +638388.817|220158.117|122.201 +638393.864|220153.475|122.012 +638398.912|220148.836|121.768 +638404.008|220144.148|121.509 +638409.059|220139.506|121.234 +638414.152|220134.818|120.509 +638419.202|220130.173|120.134 +638424.302|220125.485|120.018 +638449.664|220102.156|117.808 +638454.724|220097.502|117.178 +638459.784|220092.844|116.592 +638464.892|220088.150|116.361 +638469.909|220083.533|115.788 +638475.014|220078.842|115.885 +638480.077|220074.184|115.547 +638490.224|220064.845|113.934 +638495.348|220060.130|113.224 +638500.368|220055.515|113.051 +638515.577|220041.534|112.666 +638520.649|220036.871|112.484 +638525.709|220032.226|112.990 +638535.786|220022.969|113.538 +638540.854|220018.311|113.563 +638545.890|220013.681|113.191 +638555.991|220004.397|113.148 +638586.200|219976.624|113.334 +638591.220|219972.006|113.575 +638601.214|219962.816|114.050 +638606.286|219958.153|114.251 +638611.212|219953.624|114.471 +638616.290|219948.951|114.568 +638621.279|219944.364|114.568 +638626.272|219939.767|114.471 +638631.280|219935.159|114.154 +638636.281|219930.556|114.029 +638641.286|219925.951|113.843 +638646.294|219921.339|113.587 +638651.305|219916.731|113.395 +638656.310|219912.125|113.294 +638661.278|219907.550|113.054 +638666.301|219902.926|112.709 +638671.285|219898.339|112.307 +638676.332|219893.688|111.685 +638681.313|219889.106|111.423 +638686.281|219884.531|111.338 +638691.267|219879.950|111.746 +638696.156|219875.454|112.176 +638701.140|219870.876|112.648 +638706.084|219866.332|113.014 +638710.979|219861.830|113.361 +638715.923|219857.285|113.764 +638720.873|219852.735|114.047 +638725.832|219848.172|114.258 +638730.709|219843.688|114.322 +638735.686|219839.110|114.337 +638740.618|219834.572|114.334 +638745.562|219830.021|114.224 +638750.557|219825.424|114.108 +638755.574|219820.801|113.194 +638760.524|219816.244|113.108 +638765.444|219811.718|112.859 +638770.354|219807.203|113.282 +638775.252|219802.699|113.294 +638780.239|219798.111|113.444 +638785.128|219793.615|113.617 +638790.023|219789.114|113.745 +638794.951|219784.581|114.053 +638799.868|219780.058|113.995 +638804.772|219775.547|114.096 +638809.728|219770.984|113.697 +638814.770|219766.333|112.474 +638819.732|219761.764|112.109 +638824.670|219757.219|111.987 +638829.568|219752.714|111.831 +638834.542|219748.133|111.423 +638844.396|219739.059|110.701 +638849.340|219734.509|110.664 +638854.241|219730.001|110.618 +638859.158|219725.474|110.448 +638864.047|219720.975|110.140 +638868.936|219716.477|110.252 +638874.117|219711.691|107.936 +638883.850|219702.733|107.890 +638888.714|219698.259|107.945 +638893.594|219693.769|107.878 +638898.462|219689.291|107.939 +638903.348|219684.792|107.860 +638908.164|219680.364|107.976 +638913.046|219675.874|107.997 +638917.887|219671.418|107.960 +638922.578|219667.111|109.100 +638927.461|219662.618|108.802 +638932.508|219657.961|107.293 +638937.473|219653.380|106.074 +638942.380|219648.860|105.668 +638947.233|219644.394|105.363 +638952.061|219639.953|105.254 +638956.916|219635.485|104.976 +638961.781|219631.007|104.656 +638966.557|219626.615|104.641 +638971.364|219622.196|104.772 +638976.052|219617.892|105.412 +638980.651|219613.667|106.318 +638985.385|219609.321|107.009 +638990.018|219605.066|107.701 +638994.675|219600.786|108.241 +638999.375|219596.470|108.856 +639004.011|219592.209|109.237 +639008.675|219587.927|109.780 +639013.369|219583.614|110.149 +639017.983|219579.368|110.377 +639022.668|219575.064|110.829 +639027.344|219570.767|111.039 +639031.958|219566.524|111.338 +639036.622|219562.235|111.648 +639041.270|219557.962|111.770 +639045.866|219553.737|111.929 +639050.588|219549.394|111.935 +639055.239|219545.118|111.810 +639059.842|219540.881|111.679 +639064.542|219536.556|111.581 +639069.178|219532.292|111.310 +639073.859|219527.979|110.783 +639078.520|219523.693|110.704 +639083.150|219519.432|110.536 +639087.740|219515.208|110.320 +639092.315|219510.998|110.216 +639097.003|219506.679|109.768 +639101.663|219502.391|109.244 +639106.311|219498.108|108.521 +639111.024|219493.765|107.750 +639115.672|219489.482|107.076 +639120.335|219485.188|106.354 +639124.926|219480.963|106.074 +639138.529|219468.445|105.394 +639147.429|219460.255|105.391 +639140.745|219463.507|105.714 +639136.157|219467.717|105.613 +639131.598|219471.901|105.656 +639127.041|219476.080|105.690 +639122.350|219480.387|106.202 +639117.696|219484.663|106.552 +639112.956|219489.019|107.384 +639108.253|219493.341|108.043 +639103.532|219497.681|108.850 +639098.792|219502.034|109.487 +639094.077|219506.365|110.021 +639089.438|219510.626|110.445 +639084.789|219514.891|110.374 +639080.126|219519.173|110.682 +639075.505|219523.413|110.783 +639070.808|219527.726|111.054 +639066.099|219532.051|111.420 +639061.463|219536.306|111.679 +639056.797|219540.588|111.844 +639052.112|219544.889|111.844 +639047.470|219549.153|111.920 +639042.846|219553.396|111.889 +639038.152|219557.706|111.722 +639033.574|219561.903|111.450 +639028.938|219566.158|111.261 +639024.314|219570.401|111.002 +639019.654|219574.677|110.682 +639015.060|219578.890|110.268 +639010.412|219583.154|109.905 +639005.761|219587.421|109.561 +639001.180|219591.621|109.116 +638996.498|219595.916|108.680 +638991.889|219600.143|108.122 +638987.293|219604.356|107.473 +638982.648|219608.614|106.836 +638978.024|219612.853|106.071 +638973.452|219617.044|105.296 +638968.752|219621.354|104.726 +638964.027|219625.689|104.687 +638959.282|219630.047|104.821 +638954.457|219634.482|105.205 +638949.705|219638.844|105.418 +638944.855|219643.300|105.665 +638940.055|219647.710|105.949 +638935.218|219652.154|106.528 +638930.286|219656.699|107.866 +638925.373|219661.219|109.088 +638920.599|219665.596|108.546 +638906.323|219678.696|107.802 +638901.473|219683.150|107.915 +638896.691|219687.542|107.915 +638891.854|219691.983|107.982 +638886.977|219696.460|107.997 +638882.213|219700.834|107.924 +638877.287|219705.354|107.970 +638872.468|219709.780|107.997 +638867.342|219714.507|110.252 +638862.498|219718.955|110.121 +638857.606|219723.450|110.451 +638852.684|219727.967|110.627 +638842.918|219736.938|110.832 +638837.959|219741.498|111.447 +638833.055|219745.999|111.578 +638823.185|219755.064|112.051 +638818.247|219759.600|112.136 +638808.259|219768.783|113.511 +638798.323|219777.912|114.023 +638793.388|219782.445|114.236 +638788.453|219786.971|113.941 +638783.515|219791.503|113.724 +638778.575|219796.039|113.575 +638773.631|219800.577|113.471 +638768.629|219805.167|113.474 +638763.719|219809.672|113.032 +638758.689|219814.293|113.389 +638753.691|219818.883|113.468 +638748.649|219823.516|114.047 +638743.638|219828.119|114.306 +638738.603|219832.746|114.340 +638733.610|219837.330|114.443 +638728.581|219841.948|114.431 +638723.610|219846.511|114.312 +638718.547|219851.156|114.151 +638713.548|219855.743|113.819 +638708.556|219860.324|113.441 +638703.511|219864.951|113.078 +638698.519|219869.529|112.676 +638693.480|219874.153|112.279 +638688.451|219878.765|111.761 +638683.462|219883.340|111.365 +638678.335|219888.046|111.581 +638673.254|219892.709|111.877 +638668.154|219897.394|112.523 +638663.028|219902.103|112.901 +638657.953|219906.764|113.215 +638652.893|219911.409|113.383 +638647.779|219916.106|113.657 +638642.673|219920.793|113.825 +638637.559|219925.487|114.157 +638632.462|219930.166|114.242 +638627.357|219934.851|114.477 +638622.251|219939.539|114.828 +638617.119|219944.251|114.794 +638612.028|219948.920|114.828 +638606.954|219953.578|114.663 +638601.836|219958.269|114.325 +638596.746|219962.941|114.465 +638581.463|219976.956|113.176 +638571.222|219986.347|112.761 +638566.092|219991.056|112.883 +638540.455|220014.590|113.739 +638525.066|220028.708|113.176 +638514.843|220038.084|112.654 +638509.725|220042.781|112.782 +638499.484|220052.184|113.352 +638489.249|220061.581|113.870 +638473.850|220075.730|115.593 +638468.742|220080.418|115.629 +638458.473|220089.845|116.330 +638453.361|220094.542|117.107 +638448.256|220099.236|117.821 +638443.157|220103.918|117.967 +638427.847|220117.978|119.198 +638422.747|220122.663|119.976 +638417.599|220127.390|120.143 +638412.549|220132.026|120.488 +638407.455|220136.708|121.100 +638402.359|220141.390|121.487 +638397.263|220146.069|121.686 +638392.212|220150.702|121.823 +638387.119|220155.380|122.149 +638382.026|220160.059|122.496 +638376.985|220164.689|123.085 +638371.943|220169.319|123.502 +638366.850|220173.994|123.825 +638361.808|220178.624|124.133 +638356.764|220183.257|124.389 +638351.726|220187.884|124.910 +638346.696|220192.508|125.663 +638341.655|220197.138|125.907 +638336.614|220201.765|126.242 +638331.624|220206.346|126.678 +638326.580|220210.979|126.739 +638321.581|220215.566|126.895 +638316.585|220220.150|127.084 +638311.541|220224.783|127.224 +638306.545|220229.364|127.431 +638301.546|220233.949|127.617 +638296.554|220238.530|127.873 +638291.555|220243.114|128.038 +638286.556|220247.698|128.217 +638281.652|220252.194|128.394 +638276.653|220256.778|128.598 +638271.655|220261.362|128.760 +638266.699|220265.907|128.876 +638261.739|220270.452|128.940 +638256.783|220274.996|129.086 +638251.818|220279.547|129.040 +638246.859|220284.098|129.123 +638241.936|220288.609|129.031 +638236.919|220293.208|128.976 +638232.040|220297.679|128.848 +638227.062|220302.239|128.699 +638222.131|220306.759|128.522 +638217.156|220311.319|128.528 +638212.218|220315.846|128.300 +638207.323|220320.329|128.041 +638202.322|220324.910|127.654 +638197.417|220329.403|127.330 +638192.467|220333.939|127.074 +638187.523|220338.471|126.895 +638182.616|220342.967|126.632 +638177.660|220347.508|126.389 +638172.747|220352.010|126.066 +638167.766|220356.570|125.547 +638162.880|220361.044|125.011 +638157.897|220365.610|124.517 +638153.002|220370.091|123.981 +638148.061|220374.614|123.511 +638143.123|220379.140|123.072 +638138.188|220383.661|122.743 +638133.251|220388.184|122.411 +638128.343|220392.677|121.896 +638123.409|220397.200|121.649 +638118.526|220401.674|121.475 +638113.637|220406.152|121.295 +638108.754|220410.626|121.183 +638103.825|220415.147|121.100 +638098.982|220419.584|120.972 +638094.096|220424.062|120.890 +638089.247|220428.506|120.722 +638084.306|220433.029|120.116 +638079.438|220437.488|119.811 +638074.528|220441.990|119.582 +638069.669|220446.443|119.439 +638064.796|220450.909|119.140 +638059.928|220455.368|118.970 +638055.072|220459.818|118.924 +638050.202|220464.283|118.744 +638030.868|220482.008|118.784 +638026.022|220486.446|118.513 +638021.169|220490.893|118.199 +638016.320|220495.337|117.958 +638001.708|220508.717|116.409 +637991.930|220517.669|115.090 +637982.234|220526.548|114.209 +637977.421|220530.956|113.675 +637972.606|220535.369|113.560 +637967.802|220539.770|113.176 +637958.134|220548.625|112.398 +637953.315|220553.041|112.359 +637948.557|220557.403|112.444 +637943.848|220561.722|112.535 +637939.087|220566.084|112.624 +637929.604|220574.774|112.816 +637920.277|220583.329|113.837 +637911.027|220591.815|115.096 +637897.381|220604.348|118.476 +637878.815|220621.369|119.750 +637874.161|220625.633|119.777 +637864.862|220634.155|119.942 +637855.507|220642.726|119.811 +637850.822|220647.011|119.436 +637832.330|220663.952|119.339 +637827.697|220668.198|119.378 +637823.046|220672.459|119.329 +637818.565|220676.568|119.710 +637813.911|220680.829|119.390 +637804.663|220689.296|118.869 +637800.043|220693.527|118.506 +637795.477|220697.709|118.497 +637786.330|220706.091|118.424 +637781.840|220710.206|118.616 +637777.268|220714.391|118.656 +637772.784|220718.499|118.628 +637768.337|220722.581|119.101 +637759.565|220730.627|120.488 +637750.708|220738.747|120.899 +637746.242|220742.838|121.070 +637732.907|220755.057|121.186 +637719.633|220767.216|121.259 +637710.742|220775.357|120.732 +637701.796|220783.547|120.021 +637692.890|220791.697|119.083 +637684.026|220799.808|118.199 +637679.634|220803.831|117.970 +637661.974|220819.992|116.123 +637657.558|220824.030|115.401 +637653.135|220828.075|114.675 +637648.615|220832.205|113.496 +637644.268|220836.183|113.182 +637639.992|220840.100|112.965 +637635.688|220844.038|112.651 +637631.387|220847.976|112.356 +637626.806|220852.157|110.792 +637622.963|220855.693|112.407 +637618.842|220859.470|112.758 +637602.821|220874.170|115.401 +637598.661|220877.983|115.401 +637594.589|220881.714|115.330 +637590.447|220885.509|115.209 +637586.109|220889.474|114.245 +637577.691|220897.177|113.057 +637573.615|220900.910|112.840 +637569.418|220904.751|112.118 +637565.419|220908.418|112.258 +637557.482|220915.693|112.627 +637553.547|220919.299|112.865 +637549.676|220922.850|113.386 +637545.772|220926.434|113.758 +637541.974|220929.915|114.157 +637538.030|220933.530|114.184 +637534.196|220937.044|114.453 +637526.259|220944.311|113.934 +637518.651|220951.288|114.593 +637514.868|220954.756|114.696 +637511.080|220958.228|114.797 +637507.239|220961.749|114.913 +637503.566|220965.117|115.288 +637499.808|220968.564|115.538 +637492.526|220975.239|116.379 +637488.829|220978.631|116.693 +637485.138|220982.015|116.827 +637481.505|220985.343|116.998 +637477.856|220988.687|117.123 +637470.681|220995.267|117.857 +637467.191|220998.468|118.208 +637463.585|221001.775|118.528 +637460.099|221004.972|118.912 +637456.487|221008.279|118.820 +637452.893|221011.574|118.808 +637442.274|221021.300|118.860 +637438.805|221024.480|118.961 +637435.266|221027.720|118.811 +637431.731|221030.960|118.683 +637638.383|220839.261|112.740 +637642.634|220835.354|113.096 +637646.874|220831.452|113.182 +637651.327|220827.362|114.056 +637655.759|220823.296|115.093 +637660.209|220819.209|115.745 +637664.595|220815.179|116.379 +637673.346|220807.135|117.083 +637682.131|220799.061|118.049 +637686.575|220794.977|118.570 +637690.945|220790.960|119.000 +637695.341|220786.921|119.317 +637699.843|220782.785|119.939 +637708.755|220774.589|120.530 +637713.168|220770.532|120.771 +637744.136|220742.042|120.969 +637748.611|220737.924|120.881 +637761.833|220725.748|119.601 +637775.208|220713.431|118.446 +637779.752|220709.252|118.583 +637784.248|220705.113|118.467 +637788.792|220700.931|118.354 +637793.340|220696.746|118.275 +637797.952|220692.503|118.287 +637807.196|220684.005|118.808 +637816.499|220675.452|119.464 +637821.104|220671.213|119.253 +637825.686|220666.997|119.229 +637830.328|220662.730|119.253 +637834.970|220658.460|119.025 +637839.645|220654.162|119.314 +637844.333|220649.855|119.390 +637848.951|220645.606|119.046 +637853.727|220641.223|119.717 +637867.766|220628.312|119.747 +637872.472|220623.987|119.744 +637891.227|220606.735|118.820 +637895.909|220602.425|118.418 +637914.361|220585.420|114.273 +637919.034|220581.117|113.483 +637928.519|220572.393|112.959 +637933.274|220568.013|112.474 +637938.017|220563.655|112.240 +637942.860|220559.201|112.447 +637952.449|220550.384|112.136 +637957.347|220545.882|112.453 +637962.184|220541.435|112.697 +637967.128|220536.896|113.428 +637971.993|220532.425|113.553 +637981.756|220523.454|114.157 +637986.700|220518.916|114.617 +637991.595|220514.417|115.111 +638001.498|220505.328|116.306 +638011.416|220496.220|117.818 +638016.287|220491.743|117.830 +638021.194|220487.235|118.202 +638026.150|220482.681|118.613 +638031.106|220478.131|119.037 +638036.031|220473.604|119.229 +638045.797|220464.622|118.869 +638050.686|220460.126|118.781 +638055.645|220455.569|118.906 +638060.553|220451.055|119.064 +638065.472|220446.535|119.326 +638070.419|220441.987|119.439 +638075.372|220437.437|119.604 +638080.340|220432.874|119.979 +638085.284|220428.326|120.155 +638090.271|220423.748|120.799 +638095.209|220419.210|120.936 +638100.186|220414.634|121.006 +638105.169|220410.053|121.173 +638110.138|220405.484|121.210 +638115.118|220400.909|121.387 +638120.044|220396.380|121.536 +638125.021|220391.808|121.734 +638130.008|220387.227|122.088 +638135.052|220382.594|122.585 +638140.029|220378.019|122.908 +638145.056|220373.401|123.261 +638150.088|220368.780|123.746 +638155.068|220364.205|124.182 +638160.094|220359.591|124.648 +638165.121|220354.973|125.163 +638170.144|220350.358|125.703 +638175.164|220345.747|126.209 +638180.166|220341.150|126.480 +638185.164|220336.560|126.736 +638190.203|220331.927|126.928 +638195.195|220327.343|127.172 +638200.240|220322.707|127.526 +638205.239|220318.119|127.913 +638210.274|220313.493|128.175 +638215.297|220308.875|128.281 +638220.271|220304.306|128.400 +638225.297|220299.688|128.598 +638230.318|220295.073|128.720 +638235.338|220290.462|128.870 +638240.400|220285.811|128.949 +638245.411|220281.208|128.955 +638250.422|220276.602|129.025 +638255.476|220271.957|129.010 +638260.474|220267.361|128.870 +638265.522|220262.719|128.784 +638270.524|220258.122|128.681 +638275.568|220253.486|128.534 +638280.607|220248.853|128.266 +638285.648|220244.214|128.120 +638290.644|220239.624|127.916 +638295.731|220234.945|127.721 +638300.726|220230.355|127.559 +638305.765|220225.719|127.334 +638310.855|220221.040|127.187 +638315.893|220216.407|127.020 +638320.935|220211.774|126.800 +638325.973|220207.138|126.645 +638331.018|220202.505|126.556 +638336.096|220197.830|126.081 +638341.134|220193.197|125.864 +638346.172|220188.564|125.566 +638351.247|220183.894|124.804 +638356.282|220179.261|124.380 +638361.321|220174.628|124.017 +638366.408|220169.950|123.758 +638371.449|220165.314|123.478 +638376.485|220160.681|122.798 +638381.572|220155.999|122.313 +638386.662|220151.317|122.128 +638391.706|220146.681|121.762 +638396.800|220141.996|121.634 +638401.890|220137.315|121.439 +638406.934|220132.676|120.866 +638412.027|220127.988|120.433 +638437.369|220104.674|117.982 +638442.468|220099.983|117.522 +638447.564|220095.301|117.714 +638462.786|220081.292|115.836 +638472.948|220071.947|115.477 +638478.011|220067.290|115.010 +638483.080|220062.626|114.331 +638493.260|220053.263|113.499 +638498.329|220048.599|113.127 +638503.440|220043.902|113.118 +638508.509|220039.239|112.798 +638528.693|220020.698|113.995 +638533.765|220016.035|113.718 +638538.828|220011.383|113.941 +638543.906|220006.714|113.560 +638548.980|220002.044|113.325 +638553.955|219997.472|113.313 +638559.024|219992.818|113.444 +638574.142|219978.922|113.572 +638579.186|219974.280|113.124 +638594.161|219960.527|114.657 +638599.190|219955.900|114.666 +638604.207|219951.292|114.962 +638609.182|219946.723|115.190 +638614.217|219942.090|115.117 +638619.207|219937.503|115.059 +638624.199|219932.912|114.977 +638629.253|219928.261|114.648 +638634.206|219923.707|114.480 +638639.211|219919.102|114.258 +638644.228|219914.487|113.901 +638649.235|219909.882|113.712 +638654.195|219905.319|113.535 +638659.169|219900.747|113.209 +638664.201|219896.114|112.697 +638669.197|219891.514|112.097 +638674.177|219886.933|111.780 +638679.155|219882.352|111.514 +638684.111|219877.798|111.624 +638689.036|219873.275|112.218 +638693.925|219868.782|112.599 +638698.863|219864.247|113.005 +638703.706|219859.797|113.398 +638708.644|219855.261|113.837 +638713.539|219850.766|114.197 +638718.450|219846.255|114.389 +638723.363|219841.737|114.538 +638728.289|219837.208|114.568 +638733.223|219832.673|114.520 +638738.112|219828.177|114.453 +638743.050|219823.635|114.404 +638747.991|219819.088|113.791 +638752.880|219814.595|113.800 +638757.790|219810.075|113.584 +638762.710|219805.551|113.325 +638767.568|219801.086|113.739 +638772.466|219796.584|113.761 +638777.300|219792.140|113.950 +638782.189|219787.647|114.102 +638787.036|219783.194|114.230 +638791.937|219778.689|114.306 +638796.796|219774.221|114.322 +638801.694|219769.716|113.986 +638806.653|219765.147|113.066 +638811.569|219760.621|112.606 +638816.440|219756.137|112.151 +638821.326|219751.647|112.069 +638826.181|219747.179|111.828 +638835.938|219738.203|111.453 +638840.879|219733.658|110.975 +638845.698|219729.226|110.758 +638850.605|219724.712|110.637 +638860.316|219715.779|110.076 +638865.248|219711.237|109.411 +638879.906|219697.750|107.963 +638884.734|219693.309|107.884 +638889.552|219688.877|107.896 +638894.374|219684.442|107.899 +638899.151|219680.053|107.924 +638903.973|219675.621|107.991 +638908.761|219671.217|107.945 +638913.589|219666.779|108.000 +638918.371|219662.384|108.064 +638923.010|219658.125|109.207 +638927.887|219653.636|108.594 +638932.791|219649.119|107.439 +638937.763|219644.537|106.546 +638942.566|219640.112|106.202 +638947.434|219635.628|105.787 +638952.229|219631.215|105.568 +638957.057|219626.768|105.135 +638961.903|219622.302|104.940 +638966.612|219617.971|105.062 +638971.297|219613.664|105.690 +638975.994|219609.348|106.257 +638980.679|219605.041|106.915 +638985.360|219600.738|107.616 +638989.954|219596.519|108.247 +638994.599|219592.246|108.856 +638999.348|219587.881|109.155 +639003.962|219583.635|109.667 +639008.656|219579.319|110.021 +639013.366|219574.988|110.289 +639018.002|219570.724|110.719 +639022.668|219566.432|110.981 +639027.335|219562.138|111.243 +639032.016|219557.831|111.441 +639036.683|219553.539|111.743 +639041.319|219549.272|111.935 +639045.997|219544.968|111.908 +639050.716|219540.625|111.950 +639055.364|219536.345|111.831 +639060.070|219532.011|111.697 +639064.788|219527.668|111.511 +639069.488|219523.340|111.161 +639074.167|219519.030|110.963 +639078.818|219514.750|110.941 +639083.534|219510.407|110.585 +639088.142|219506.164|110.563 +639092.836|219501.839|110.079 +639097.585|219497.465|109.609 +639102.282|219493.134|108.884 +639106.985|219488.800|108.162 +639111.786|219484.371|107.204 +639121.164|219475.727|106.034 +639125.715|219471.539|105.979 +639130.296|219467.323|106.037 +639134.853|219463.126|105.967 +639139.407|219458.935|105.955 +639137.648|219457.109|105.857 +639133.064|219461.316|106.010 +639128.434|219465.562|106.153 +639109.798|219482.664|107.317 +639104.946|219487.120|108.232 +639100.179|219491.500|109.006 +639095.424|219495.868|109.750 +639090.672|219500.230|110.204 +639085.923|219504.588|110.673 +639081.242|219508.883|110.795 +639076.496|219513.239|111.011 +639071.777|219517.567|111.091 +639067.084|219521.874|111.344 +639062.295|219526.266|111.591 +639057.577|219530.597|111.752 +639052.825|219534.956|111.825 +639048.070|219539.314|111.932 +639043.337|219543.655|111.929 +639038.630|219547.964|111.780 +639033.891|219552.311|111.566 +639029.206|219556.606|111.335 +639024.475|219560.937|111.082 +639019.748|219565.271|110.838 +639015.033|219569.590|110.533 +639010.281|219573.943|110.152 +639005.569|219578.262|109.859 +639000.872|219582.565|109.494 +638996.096|219586.939|109.000 +638991.356|219591.280|108.594 +638986.650|219595.586|108.000 +638981.947|219599.893|107.393 +638977.265|219604.179|106.647 +638972.473|219608.568|106.004 +638967.734|219612.908|105.680 +638962.967|219617.276|105.226 +638958.154|219621.687|105.095 +638953.262|219626.179|105.571 +638948.361|219630.675|105.775 +638943.481|219635.153|106.226 +638938.570|219639.658|106.546 +638933.654|219644.172|107.314 +638928.674|219648.750|108.235 +638923.721|219653.297|108.997 +638914.183|219662.033|107.784 +638909.288|219666.520|107.790 +638904.445|219670.961|107.811 +638899.553|219675.447|107.832 +638894.667|219679.928|107.854 +638889.827|219684.366|107.912 +638884.892|219688.892|107.970 +638880.067|219693.315|107.945 +638875.148|219697.829|107.948 +638870.271|219702.297|107.985 +638865.159|219707.000|109.655 +638860.310|219711.447|109.564 +638850.480|219720.466|110.124 +638845.524|219725.014|110.606 +638840.586|219729.546|110.963 +638835.627|219734.100|111.539 +638825.770|219743.140|111.780 +638820.869|219747.636|111.932 +638815.913|219752.184|112.142 +638810.975|219756.716|112.697 +638805.982|219761.300|113.346 +638801.102|219765.778|113.416 +638796.088|219770.384|114.343 +638791.187|219774.876|114.200 +638786.252|219779.406|114.404 +638781.360|219783.886|114.172 +638776.401|219788.434|114.181 +638771.503|219792.924|114.066 +638766.565|219797.450|113.867 +638761.664|219801.946|113.858 +638756.687|219806.505|113.608 +638751.752|219811.035|114.014 +638746.796|219815.579|114.126 +638741.791|219820.173|114.309 +638736.844|219824.708|114.352 +638731.843|219829.298|114.556 +638726.899|219833.831|114.629 +638721.921|219838.397|114.572 +638716.947|219842.957|114.474 +638711.976|219847.516|114.392 +638707.017|219852.058|114.136 +638702.121|219856.545|113.727 +638697.092|219861.153|113.157 +638692.145|219865.686|112.782 +638687.208|219870.209|112.298 +638682.227|219874.775|111.728 +638677.262|219879.331|111.688 +638672.190|219883.986|111.807 +638667.207|219888.564|112.127 +638662.110|219893.249|112.740 +638657.072|219897.879|113.252 +638652.040|219902.499|113.651 +638646.980|219907.145|113.797 +638641.966|219911.750|114.026 +638636.897|219916.407|114.419 +638631.837|219921.056|114.672 +638626.823|219925.658|114.968 +638621.773|219930.297|115.160 +638616.728|219934.927|115.245 +638611.684|219939.557|115.318 +638606.591|219944.233|115.474 +638601.562|219948.847|115.321 +638596.548|219953.450|114.888 +638591.461|219958.116|114.940 +638586.443|219962.719|114.572 +638576.333|219971.985|113.300 +638571.286|219976.624|113.755 +638566.205|219981.287|113.782 +638561.136|219985.939|113.590 +638556.055|219990.602|113.700 +638550.983|219995.256|113.614 +638540.775|220004.629|113.980 +638535.709|220009.280|113.834 +638530.638|220013.934|113.776 +638520.451|220023.283|113.733 +638515.337|220027.980|113.678 +638505.162|220037.313|113.139 +638494.976|220046.664|113.374 +638489.855|220051.367|113.691 +638484.789|220056.018|113.834 +638479.672|220060.718|114.084 +638469.437|220070.124|115.321 +638438.835|220098.242|117.848 +638423.476|220112.352|119.348 +638418.425|220116.994|119.720 +638413.277|220121.724|120.131 +638408.227|220126.363|120.677 +638403.130|220131.048|121.018 +638398.034|220135.730|121.457 +638392.938|220140.408|121.719 +638387.842|220145.090|121.942 +638382.742|220149.769|122.097 +638377.649|220154.451|122.332 +638372.608|220159.084|122.914 +638367.520|220163.759|123.548 +638362.427|220168.435|123.813 +638357.383|220173.068|124.112 +638352.296|220177.743|124.590 +638347.212|220182.416|125.176 +638342.176|220187.043|125.678 +638332.051|220196.345|126.456 +638327.003|220200.978|126.465 +638321.910|220205.654|126.602 +638311.821|220214.920|127.010 +638306.728|220219.596|127.148 +638301.687|220224.232|127.327 +638296.642|220228.868|127.504 +638291.595|220233.504|127.632 +638286.550|220238.140|127.827 +638281.506|220242.776|128.007 +638276.461|220247.412|128.211 +638271.466|220252.005|128.452 +638266.464|220256.601|128.550 +638261.416|220261.241|128.681 +638256.411|220265.837|128.772 +638251.407|220270.436|128.867 +638246.353|220275.082|128.918 +638241.385|220279.641|128.864 +638236.325|220284.290|128.864 +638231.354|220288.859|128.739 +638226.328|220293.473|128.534 +638221.353|220298.042|128.434 +638216.373|220302.617|128.260 +638211.344|220307.232|128.126 +638206.372|220311.801|128.129 +638201.374|220316.388|127.754 +638196.372|220320.981|127.361 +638191.422|220325.526|127.050 +638186.429|220330.110|126.831 +638181.476|220334.658|126.568 +638176.478|220339.248|126.373 +638171.500|220343.814|125.803 +638166.526|220348.383|125.291 +638161.548|220352.949|124.819 +638156.614|220357.475|124.325 +638151.642|220362.041|123.987 +638146.662|220366.613|123.566 +638141.678|220371.185|123.179 +638136.744|220375.718|122.789 +638131.800|220380.253|122.368 +638126.816|220384.828|122.060 +638121.946|220389.303|121.987 +638116.965|220393.878|121.756 +638112.076|220398.367|121.530 +638107.141|220402.900|121.347 +638102.256|220407.386|121.195 +638097.321|220411.919|121.067 +638092.435|220416.405|120.985 +638087.534|220420.907|120.728 +638082.599|220425.434|120.165 +638077.698|220429.935|119.994 +638072.772|220434.456|119.607 +638067.904|220438.927|119.317 +638063.012|220443.420|119.336 +638058.151|220447.885|119.156 +638053.280|220452.357|118.936 +638048.428|220456.816|118.927 +638043.578|220461.269|118.961 +638038.747|220465.713|119.174 +638024.178|220479.088|118.400 +638009.666|220492.414|117.915 +637995.085|220505.794|116.233 +637990.144|220510.327|115.318 +637985.368|220514.713|115.023 +637980.439|220519.233|114.291 +637975.605|220523.668|114.002 +637970.737|220528.136|113.432 +637951.498|220545.802|112.167 +637946.676|220550.225|111.743 +637941.976|220554.547|112.270 +637937.194|220558.942|112.167 +637932.479|220563.274|112.231 +637927.791|220567.583|112.517 +637918.348|220576.264|112.621 +637909.189|220584.698|114.486 +637904.547|220588.971|115.148 +637891.007|220601.444|118.510 +637886.362|220605.717|118.839 +637881.760|220609.951|119.147 +637867.867|220622.719|119.579 +637853.950|220635.511|119.680 +637849.301|220639.782|119.491 +637844.641|220644.061|119.241 +637840.039|220648.289|119.070 +637835.320|220652.623|118.823 +637830.767|220656.808|118.988 +637826.182|220661.023|118.988 +637821.604|220665.229|119.055 +637807.818|220677.891|118.436 +637803.182|220682.149|118.229 +637798.583|220686.373|117.964 +637794.078|220690.516|117.976 +637789.494|220694.725|117.848 +637784.989|220698.870|118.193 +637780.532|220702.964|118.269 +637776.040|220707.094|118.424 +637771.516|220711.248|118.135 +637754.009|220727.357|120.454 +637749.574|220731.438|120.738 +637736.327|220743.615|121.192 +637723.077|220755.792|121.228 +637718.676|220759.836|121.277 +637714.202|220763.945|120.957 +637709.785|220768.002|120.692 +637705.384|220772.044|120.524 +637700.940|220776.122|120.177 +637696.490|220780.209|119.802 +637691.997|220784.333|119.241 +637687.580|220788.387|118.567 +637683.179|220792.429|118.257 +637678.793|220796.455|118.043 +637669.960|220804.566|117.104 +637661.154|220812.649|116.156 +637656.701|220816.734|115.471 +637652.236|220820.830|114.501 +637647.786|220824.908|113.648 +637643.473|220828.868|113.215 +637639.141|220832.848|112.947 +637634.865|220836.774|112.731 +637630.567|220840.721|112.420 +637626.224|220844.708|111.920 +637617.943|220852.322|112.374 +637609.856|220859.765|113.517 +637597.884|220870.784|115.669 +637593.677|220874.643|115.446 +637589.511|220878.465|115.187 +637581.138|220886.146|114.319 +637576.843|220890.078|113.566 +637568.528|220897.707|112.831 +637564.368|220901.520|112.261 +637560.354|220905.208|112.328 +637556.312|220908.917|112.301 +637548.607|220916.004|113.651 +637544.516|220919.756|113.221 +637524.872|220937.797|113.608 +637521.025|220941.327|113.855 +637517.166|220944.869|113.840 +637513.393|220948.337|114.181 +637509.677|220951.754|114.773 +637502.030|220958.777|115.105 +637498.314|220962.191|115.291 +637490.978|220968.936|116.294 +637487.265|220972.343|116.531 +637483.526|220975.782|116.659 +637479.837|220979.168|116.803 +637476.216|220982.496|117.217 +637461.787|220995.752|118.357 +637458.160|220999.084|118.595 +637454.585|221002.366|118.625 +637440.256|221015.521|118.766 +637436.723|221018.765|118.805 +637433.157|221022.035|118.747 +637429.612|221025.287|118.570 +637426.058|221028.549|118.369 +637418.856|221035.154|117.455 +637636.398|220833.220|112.752 +637640.678|220829.285|113.005 +637645.036|220825.280|113.657 +637649.508|220821.178|114.614 +637653.711|220817.310|114.568 +637658.219|220813.173|115.760 +637662.645|220809.110|116.577 +637666.967|220805.136|116.662 +637671.344|220801.109|117.046 +637675.788|220797.031|117.766 +637680.116|220793.051|117.952 +637684.602|220788.930|118.683 +637697.858|220776.744|119.747 +637702.314|220772.653|120.418 +637706.716|220768.602|120.582 +637715.665|220760.376|121.189 +637724.492|220752.259|121.515 +637733.343|220744.112|121.247 +637742.204|220735.961|121.079 +637746.599|220731.914|120.832 +637768.593|220711.654|118.263 +637777.649|220703.323|118.318 +637782.093|220699.230|117.900 +637786.686|220695.005|118.068 +637795.794|220686.626|117.985 +637800.341|220682.441|117.955 +637804.993|220678.168|118.235 +637809.629|220673.901|118.479 +637818.904|220665.376|119.003 +637828.087|220656.920|118.784 +637837.423|220648.325|118.961 +637846.787|220639.708|119.409 +637865.560|220622.426|119.576 +637870.211|220618.144|119.546 +637879.593|220609.503|119.098 +637884.250|220605.211|118.857 +637902.715|220588.179|115.443 +637907.348|220583.906|114.724 +637935.734|220557.744|112.048 +637940.504|220553.355|112.075 +637945.320|220548.917|111.719 +637950.206|220544.425|112.298 +637969.667|220526.518|113.502 +637979.528|220517.450|114.547 +637989.370|220508.397|115.574 +637994.341|220503.828|116.358 +637999.269|220499.296|116.806 +638009.145|220490.213|117.988 +638014.080|220485.677|118.592 +638023.940|220476.604|118.948 +638028.881|220472.056|119.275 +638033.755|220467.566|118.994 +638038.680|220463.034|119.241 +638043.563|220458.535|119.083 +638048.507|220453.984|119.058 +638053.402|220449.476|119.089 +638058.309|220444.959|119.244 +638063.314|220440.357|119.430 +638068.218|220435.843|119.610 +638073.229|220431.231|119.906 +638078.188|220426.668|120.223 +638083.132|220422.120|120.390 +638088.155|220417.500|120.927 +638093.093|220412.955|121.085 +638098.065|220408.377|121.140 +638103.005|220403.832|121.381 +638107.986|220399.248|121.594 +638112.963|220394.667|121.783 +638117.989|220390.043|121.972 +638122.976|220385.453|122.362 +638127.932|220380.890|122.365 +638132.946|220376.275|122.533 +638137.926|220371.697|122.886 +638142.953|220367.070|123.298 +638147.985|220362.443|123.761 +638153.002|220357.829|124.112 +638158.022|220353.208|124.532 +638162.993|220348.636|124.962 +638168.059|220343.979|125.413 +638173.082|220339.358|125.995 +638178.096|220334.746|126.489 +638183.134|220330.110|126.687 +638188.127|220325.514|126.959 +638193.162|220320.878|127.178 +638198.158|220316.281|127.550 +638203.202|220311.642|128.001 +638208.216|220307.025|127.977 +638213.191|220302.443|128.123 +638218.214|220297.820|128.300 +638223.234|220293.199|128.422 +638228.251|220288.578|128.608 +638233.268|220283.963|128.733 +638238.276|220279.349|128.806 +638243.284|220274.740|128.803 +638248.334|220270.089|128.772 +638253.336|220265.480|128.766 +638258.332|220260.878|128.638 +638263.376|220256.233|128.528 +638268.372|220251.630|128.446 +638273.407|220246.991|128.166 +638278.403|220242.392|128.047 +638283.392|220237.792|127.827 +638288.431|220233.150|127.675 +638293.469|220228.511|127.477 +638298.507|220223.869|127.309 +638303.546|220219.227|127.199 +638308.584|220214.585|127.053 +638313.623|220209.943|126.943 +638318.658|220205.307|126.660 +638323.693|220200.664|126.483 +638328.732|220196.025|126.379 +638333.761|220191.389|125.904 +638338.802|220186.747|125.953 +638343.834|220182.108|125.550 +638348.906|220177.430|124.877 +638353.890|220172.836|124.322 +638358.971|220168.154|123.895 +638364.006|220163.512|123.594 +638369.041|220158.873|123.179 +638374.122|220154.188|122.536 +638379.158|220149.546|122.192 +638384.199|220144.901|121.878 +638389.286|220140.213|121.747 +638394.328|220135.568|121.484 +638399.369|220130.923|121.283 +638404.459|220126.235|120.823 +638409.546|220121.541|120.305 +638419.635|220112.245|119.488 +638424.728|220107.551|119.357 +638429.776|220102.900|118.747 +638434.872|220098.200|118.013 +638440.447|220093.064|117.754 +638460.268|220074.794|116.312 +638465.377|220070.082|115.422 +638470.476|220065.385|115.516 +638475.542|220060.712|114.520 +638480.650|220056.000|114.008 +638485.716|220051.334|113.584 +638495.884|220041.964|113.246 +638500.993|220037.258|113.148 +638511.094|220027.964|114.059 +638516.153|220023.304|114.035 +638521.213|220018.647|114.093 +638531.393|220009.268|113.819 +638536.450|220004.614|114.056 +638541.571|219999.895|113.736 +638546.618|219995.250|114.264 +638551.641|219990.623|114.114 +638556.753|219985.917|114.206 +638561.773|219981.293|114.181 +638566.848|219976.618|114.023 +638571.938|219971.933|113.572 +638576.931|219967.346|114.383 +638581.990|219962.691|114.693 +638587.047|219958.040|115.065 +638592.061|219953.432|115.382 +638597.130|219948.765|115.471 +638602.150|219944.147|115.657 +638607.182|219939.514|115.608 +638612.217|219934.878|115.498 +638617.253|219930.248|115.468 +638622.288|219925.609|115.382 +638627.342|219920.958|115.065 +638632.346|219916.350|114.794 +638637.403|219911.692|114.440 +638642.417|219907.074|114.099 +638647.465|219902.426|113.995 +638652.482|219897.805|113.651 +638657.511|219893.172|113.136 +638662.543|219888.539|112.666 +638667.578|219883.900|112.167 +638672.550|219879.319|111.932 +638677.564|219874.708|111.868 +638682.507|219870.157|112.100 +638687.436|219865.628|112.593 +638692.362|219861.098|113.124 +638697.284|219856.575|113.730 +638702.222|219852.034|114.111 +638707.160|219847.492|114.471 +638712.119|219842.929|114.629 +638717.035|219838.406|114.696 +638721.958|219833.874|114.696 +638726.890|219829.335|114.654 +638731.839|219824.778|114.379 +638736.792|219820.215|114.093 +638741.706|219815.695|114.328 +638746.650|219811.148|114.242 +638751.548|219806.637|114.120 +638756.510|219802.065|113.846 +638761.387|219797.581|114.059 +638766.276|219793.082|114.120 +638771.107|219788.635|114.306 +638776.048|219784.090|114.395 +638780.879|219779.646|114.626 +638785.823|219775.093|114.212 +638795.585|219766.101|113.749 +638810.228|219752.617|112.849 +638815.199|219748.033|112.340 +638820.052|219743.567|112.106 +638824.901|219739.102|111.901 +638829.732|219734.655|111.908 +638834.627|219730.147|111.377 +638839.492|219725.666|111.121 +638844.372|219721.167|110.755 +638854.022|219712.282|110.252 +638858.911|219707.777|109.506 +638863.739|219703.330|109.298 +638868.713|219698.737|107.878 +638878.330|219689.889|107.966 +638883.100|219685.497|107.936 +638887.867|219681.110|107.976 +638892.643|219676.712|107.948 +638897.419|219672.317|107.966 +638902.193|219667.925|108.018 +638906.926|219663.566|108.003 +638911.702|219659.174|108.085 +638916.439|219654.809|108.079 +638921.035|219650.594|109.198 +638925.854|219646.150|108.619 +638930.691|219641.694|107.951 +638935.550|219637.216|107.162 +638940.369|219632.775|106.686 +638945.139|219628.383|106.244 +638949.946|219623.960|105.943 +638954.661|219619.620|105.583 +638959.455|219615.210|105.415 +638964.128|219610.915|105.766 +638968.773|219606.642|105.970 +638973.440|219602.353|106.403 +638978.003|219598.165|107.201 +638982.623|219593.922|107.970 +638987.229|219589.692|108.506 +638991.847|219585.446|108.963 +638996.440|219581.224|109.280 +639001.052|219576.988|109.820 +639005.709|219572.705|110.057 +639010.321|219568.465|110.304 +639014.899|219564.259|110.774 +639019.526|219560.007|110.963 +639024.137|219555.767|111.258 +639028.767|219551.509|111.456 +639033.336|219547.309|111.725 +639037.963|219543.057|111.984 +639042.565|219538.820|112.081 +639047.201|219534.556|112.008 +639051.847|219530.283|111.911 +639056.483|219526.019|111.874 +639061.088|219521.782|111.758 +639065.706|219517.530|111.575 +639070.385|219513.226|111.362 +639075.005|219508.971|111.210 +639079.702|219504.646|110.652 +639088.919|219496.167|110.335 +639093.623|219491.835|109.820 +639103.053|219483.146|108.174 +639117.040|219470.265|106.519 +639121.576|219466.092|106.516 +639126.178|219461.855|106.446 +639130.766|219457.634|106.217 +639128.318|219457.451|106.162 +639123.773|219461.633|106.421 +639119.259|219465.781|106.534 +639100.801|219482.768|108.332 +639096.107|219487.090|109.286 +639091.431|219491.390|109.871 +639086.777|219495.676|110.380 +639082.186|219499.897|110.548 +639072.856|219508.478|111.234 +639068.227|219512.739|111.423 +639063.551|219517.036|111.591 +639058.872|219521.340|111.813 +639054.227|219525.607|111.837 +639049.579|219529.881|111.923 +639044.940|219534.145|111.981 +639040.209|219538.491|111.984 +639035.561|219542.761|111.837 +639030.934|219547.010|111.554 +639026.262|219551.302|111.286 +639021.583|219555.600|111.051 +639016.904|219559.894|110.841 +639012.210|219564.204|110.423 +639007.559|219568.474|110.076 +639002.795|219572.851|109.829 +638998.095|219577.167|109.518 +638993.425|219581.453|109.000 +638988.619|219585.869|108.771 +638983.964|219590.143|108.195 +638979.219|219594.495|107.570 +638974.552|219598.775|106.753 +638969.822|219603.115|106.046 +638964.972|219607.571|105.842 +638960.242|219611.915|105.516 +638955.313|219616.444|105.543 +638950.452|219620.915|105.833 +638945.541|219625.430|106.141 +638940.616|219629.962|106.595 +638935.638|219634.537|107.076 +638930.694|219639.088|107.738 +638925.702|219643.684|108.421 +638920.724|219648.265|109.033 +638901.223|219666.172|107.835 +638896.331|219670.668|107.896 +638891.357|219675.240|107.881 +638886.425|219679.772|107.936 +638881.454|219684.338|107.909 +638876.531|219688.865|107.936 +638871.557|219693.440|108.027 +638866.592|219697.999|108.043 +638861.422|219702.770|109.844 +638856.485|219707.305|109.686 +638851.480|219711.908|110.161 +638846.435|219716.550|110.579 +638841.437|219721.140|110.606 +638836.435|219725.742|111.152 +638831.369|219730.406|111.877 +638821.396|219739.571|111.956 +638816.355|219744.207|112.090 +638811.331|219748.825|112.535 +638806.235|219753.516|113.276 +638791.157|219767.384|114.145 +638781.153|219776.580|114.529 +638776.142|219781.183|114.590 +638771.165|219785.758|114.364 +638766.172|219790.345|114.294 +638761.143|219794.966|114.111 +638756.153|219799.550|114.047 +638751.170|219804.128|113.959 +638746.098|219808.791|114.334 +638741.112|219813.376|114.343 +638736.076|219818.003|114.358 +638731.077|219822.599|114.556 +638726.097|219827.174|114.535 +638721.001|219831.862|114.806 +638716.033|219836.428|114.724 +638711.012|219841.042|114.696 +638706.002|219845.645|114.575 +638701.049|219850.196|114.325 +638696.013|219854.816|113.892 +638691.094|219859.334|113.227 +638686.122|219863.896|112.627 +638681.090|219868.514|112.164 +638676.137|219873.059|111.950 +638671.074|219877.707|112.011 +638666.054|219882.319|112.145 +638661.013|219886.951|112.657 +638655.926|219891.627|113.206 +638650.894|219896.251|113.675 +638645.819|219900.911|114.059 +638640.808|219905.517|114.282 +638635.794|219910.122|114.562 +638630.731|219914.771|114.870 +638625.720|219919.379|115.236 +638620.670|219924.015|115.431 +638615.671|219928.606|115.547 +638610.632|219933.232|115.608 +638605.591|219937.862|115.733 +638600.598|219942.447|115.876 +638595.566|219947.064|115.824 +638590.543|219951.676|115.657 +638585.569|219956.242|115.443 +638580.555|219960.841|115.093 +638570.530|219970.037|114.239 +638565.504|219974.649|114.191 +638560.471|219979.276|114.401 +638555.436|219983.896|114.626 +638550.413|219988.508|114.596 +638530.336|220006.939|114.248 +638525.270|220011.591|114.133 +638520.250|220016.199|114.191 +638510.173|220025.447|113.840 +638484.997|220048.560|113.660 +638479.928|220053.217|113.995 +638474.911|220057.829|114.334 +638469.836|220062.498|115.489 +638464.770|220067.153|115.958 +638459.710|220071.801|116.178 +638454.651|220076.449|116.559 +638439.527|220090.345|117.424 +638434.476|220094.990|118.232 +638424.369|220104.277|119.305 +638419.315|220108.919|119.512 +638414.265|220113.559|119.677 +638409.263|220118.155|120.280 +638404.215|220122.794|120.701 +638399.122|220127.476|121.122 +638394.120|220132.069|121.387 +638389.027|220136.748|121.664 +638383.980|220141.384|121.756 +638378.984|220145.974|122.207 +638373.940|220150.610|122.481 +638368.898|220155.243|122.978 +638363.860|220159.873|123.505 +638358.818|220164.506|123.773 +638353.777|220169.136|124.194 +638348.787|220173.723|124.691 +638343.712|220178.393|125.441 +638338.671|220183.020|125.764 +638333.675|220187.610|125.785 +638328.591|220192.279|126.285 +638323.596|220196.870|126.395 +638318.554|220201.500|126.581 +638313.516|220206.130|126.837 +638308.520|220210.717|126.977 +638303.473|220215.350|127.077 +638298.425|220219.986|127.187 +638293.426|220224.576|127.297 +638288.382|220229.206|127.516 +638283.338|220233.839|127.696 +638278.339|220238.429|127.858 +638273.291|220243.062|128.071 +638268.290|220247.656|128.187 +638263.245|220252.289|128.379 +638258.240|220256.885|128.483 +638253.235|220261.478|128.598 +638248.182|220266.117|128.650 +638243.174|220270.717|128.723 +638238.209|220275.274|128.717 +638233.146|220279.922|128.656 +638228.126|220284.527|128.605 +638223.149|220289.096|128.391 +638218.119|220293.708|128.233 +638213.096|220298.320|128.144 +638208.110|220302.895|127.925 +638203.077|220307.512|127.736 +638198.149|220312.036|127.736 +638193.095|220316.669|127.294 +638188.100|220321.256|127.004 +638183.098|220325.843|126.693 +638178.102|220330.424|126.544 +638173.131|220334.984|126.026 +638168.102|220339.596|125.441 +638163.078|220344.201|124.971 +638158.107|220348.761|124.590 +638153.084|220353.367|124.197 +638148.104|220357.935|123.767 +638143.120|220362.504|123.338 +638138.185|220367.034|122.920 +638133.171|220371.636|122.780 +638128.255|220376.144|122.716 +638123.287|220380.704|122.597 +638118.288|220385.288|122.140 +638113.353|220389.815|121.920 +638108.419|220394.344|121.725 +638103.484|220398.873|121.545 +638098.543|220403.406|121.326 +638093.611|220407.932|121.228 +638088.677|220412.461|121.149 +638083.766|220416.966|120.811 +638078.850|220421.474|120.475 +638073.915|220426.004|120.439 +638068.996|220430.518|120.110 +638064.073|220435.032|119.802 +638059.154|220439.543|119.528 +638054.283|220444.014|119.281 +638049.385|220448.510|119.275 +638044.532|220452.963|119.275 +638039.689|220457.410|119.354 +638034.837|220461.866|119.390 +638029.981|220466.323|119.412 +638025.117|220470.788|119.378 +638010.529|220484.172|118.580 +638005.643|220488.649|118.025 +638000.729|220493.151|117.281 +637995.831|220497.641|116.690 +637986.023|220506.629|115.090 +637971.447|220519.998|113.889 +637952.160|220537.689|112.578 +637947.386|220542.072|112.496 +637937.828|220550.844|112.316 +637933.024|220555.251|112.078 +637904.888|220581.129|114.206 +637895.902|220589.413|116.955 +637877.456|220606.385|118.891 +637872.832|220610.633|119.083 +637858.915|220623.429|119.433 +637854.245|220627.721|119.387 +637849.634|220631.957|119.424 +637840.337|220640.498|119.083 +637835.637|220644.811|118.610 +637798.860|220678.601|117.729 +637794.352|220682.746|118.016 +637789.753|220686.974|117.772 +637780.697|220695.295|117.918 +637776.238|220699.398|118.247 +637762.845|220711.711|118.708 +637758.419|220715.781|119.022 +637745.267|220727.881|120.433 +637740.933|220731.871|121.015 +637732.121|220739.973|121.448 +637701.144|220768.429|120.393 +637696.712|220772.498|119.851 +637683.438|220784.684|118.708 +637679.052|220788.713|118.473 +637674.654|220792.752|117.936 +637670.219|220796.821|117.263 +637665.885|220800.802|117.086 +637661.511|220804.819|116.754 +637657.097|220808.870|115.989 +637652.687|220812.914|115.276 +637648.313|220816.929|114.751 +637643.951|220820.934|114.312 +637639.696|220824.841|114.151 +637635.152|220829.005|112.657 +637630.927|220832.888|112.676 +637626.620|220836.841|112.331 +637622.374|220840.740|112.063 +637617.729|220844.992|109.957 +637614.023|220848.418|112.191 +637609.969|220852.148|112.599 +637606.019|220855.785|113.493 +637581.668|220878.194|114.934 +637577.474|220882.046|114.370 +637569.056|220889.776|112.923 +637565.023|220893.485|112.871 +637556.931|220900.929|112.941 +637552.743|220904.772|112.060 +637548.835|220908.372|112.380 +637544.876|220912.014|112.499 +637537.073|220919.198|113.032 +637533.251|220922.716|113.328 +637521.443|220933.582|113.282 +637517.645|220937.075|113.508 +637510.037|220944.079|114.145 +637506.282|220947.536|114.355 +637498.857|220954.378|115.355 +637495.047|220957.881|115.385 +637487.759|220964.592|116.364 +637484.022|220968.034|116.492 +637480.231|220971.523|116.422 +637476.689|220974.782|116.934 +637472.970|220978.205|116.958 +637469.297|220981.585|117.187 +637458.584|220991.451|118.253 +637454.981|220994.768|118.375 +637451.378|220998.084|118.506 +637447.772|221001.400|118.430 +637436.976|221011.330|118.357 +637433.441|221014.583|118.394 +637429.923|221017.823|118.500 +637419.207|221027.671|117.702 +637634.652|220827.609|112.862 +637652.284|220811.396|115.526 +637656.674|220807.361|116.147 +637665.449|220799.290|116.970 +637674.285|220791.161|117.936 +637678.705|220787.095|118.330 +637683.136|220783.020|118.796 +637692.079|220774.793|119.707 +637700.903|220766.673|120.360 +637718.725|220750.269|121.250 +637723.114|220746.227|121.170 +637731.987|220738.058|121.308 +637740.936|220729.820|121.372 +637758.401|220713.711|118.787 +637762.845|220709.617|118.610 +637776.311|220697.212|118.052 +637780.825|220693.052|117.751 +637785.345|220688.888|117.805 +637794.532|220680.430|117.940 +637799.052|220676.266|117.741 +637803.630|220672.051|117.918 +637808.260|220667.793|118.116 +637817.569|220659.228|118.891 +637822.205|220654.961|118.894 +637826.783|220650.742|118.570 +637831.309|220646.576|118.223 +637845.397|220633.618|119.296 +637850.064|220629.324|119.290 +637859.375|220620.753|119.232 +637868.723|220612.148|119.156 +637873.384|220607.857|118.875 +637878.050|220603.559|118.680 +637901.124|220582.290|115.017 +637905.705|220578.059|113.575 +637910.301|220573.817|112.609 +637915.050|220569.446|112.377 +637924.590|220560.664|112.285 +637934.094|220551.917|111.999 +637948.609|220538.560|112.596 +637953.424|220534.129|112.673 +637958.347|220529.605|113.224 +637968.030|220520.696|113.523 +637972.974|220516.151|114.346 +637977.872|220511.649|114.828 +637982.740|220507.172|115.084 +637997.535|220493.569|116.882 +638027.095|220466.390|119.354 +638031.956|220461.915|119.421 +638036.906|220457.358|119.436 +638041.753|220452.899|119.403 +638046.693|220448.352|119.369 +638051.579|220443.853|119.314 +638056.545|220439.287|119.570 +638061.513|220434.715|119.890 +638066.469|220430.155|120.122 +638071.443|220425.583|120.561 +638076.393|220421.029|120.792 +638081.383|220416.439|120.948 +638086.327|220411.888|121.167 +638091.307|220407.307|121.292 +638096.233|220402.772|121.359 +638101.216|220398.187|121.579 +638106.200|220393.603|121.789 +638111.174|220389.025|121.963 +638116.148|220384.450|122.149 +638121.135|220379.866|122.496 +638126.161|220375.239|122.813 +638131.126|220370.673|122.957 +638136.131|220366.068|123.060 +638141.096|220361.499|123.264 +638146.113|220356.884|123.606 +638151.139|220352.263|124.054 +638156.111|220347.688|124.468 +638161.173|220343.034|124.868 +638166.194|220338.416|125.358 +638171.211|220333.804|125.855 +638176.279|220329.144|126.465 +638181.266|220324.557|126.575 +638186.268|220319.957|126.962 +638191.309|220315.318|127.266 +638196.314|220310.716|127.775 +638201.371|220306.055|127.654 +638206.354|220301.471|127.897 +638211.383|220296.844|128.108 +638216.403|220292.224|128.227 +638221.423|220287.600|128.409 +638226.443|220282.982|128.562 +638231.503|220278.322|128.644 +638236.517|220273.710|128.714 +638241.522|220269.101|128.696 +638246.524|220264.493|128.635 +638251.574|220259.845|128.571 +638256.570|220255.242|128.455 +638261.569|220250.640|128.336 +638266.613|220245.994|128.205 +638271.655|220241.352|128.065 +638276.644|220236.756|127.812 +638281.686|220232.111|127.690 +638286.727|220227.469|127.510 +638291.720|220222.872|127.337 +638296.758|220218.230|127.199 +638301.799|220213.588|127.053 +638306.841|220208.946|126.992 +638311.879|220204.304|126.834 +638316.914|220199.665|126.593 +638321.956|220195.026|126.450 +638326.991|220190.387|126.248 +638332.033|220185.744|126.187 +638337.062|220181.108|125.712 +638342.100|220176.469|125.572 +638347.129|220171.833|124.898 +638352.158|220167.197|124.304 +638357.240|220162.513|123.856 +638362.278|220157.874|123.563 +638367.313|220153.231|123.115 +638372.397|220148.547|122.661 +638377.387|220143.947|122.237 +638382.474|220139.259|121.871 +638387.567|220134.572|121.737 +638392.560|220129.972|121.564 +638397.650|220125.281|121.250 +638402.691|220120.636|120.677 +638407.736|220115.988|120.226 +638412.829|220111.294|119.741 +638417.877|220106.646|119.622 +638433.068|220092.643|118.116 +638458.421|220069.283|116.416 +638473.609|220055.281|114.212 +638483.732|220045.954|113.657 +638488.843|220041.248|113.438 +638493.854|220036.633|113.474 +638498.960|220031.936|113.703 +638519.192|220013.313|114.227 +638524.255|220008.646|114.136 +638529.299|220004.013|114.901 +638534.365|219999.347|114.806 +638539.416|219994.702|115.291 +638549.550|219985.369|115.141 +638554.638|219980.678|114.504 +638559.685|219976.036|115.084 +638574.843|219962.070|115.059 +638579.857|219957.455|115.318 +638584.904|219952.810|115.849 +638589.924|219948.186|115.958 +638594.941|219943.562|116.083 +638600.022|219938.880|115.961 +638605.052|219934.247|115.946 +638610.084|219929.608|115.830 +638615.131|219924.957|115.510 +638620.157|219920.327|115.657 +638625.202|219915.676|115.422 +638630.262|219911.012|114.983 +638635.266|219906.401|114.733 +638640.323|219901.737|114.419 +638645.389|219897.065|114.002 +638650.403|219892.441|113.675 +638655.472|219887.768|113.282 +638660.473|219883.154|112.499 +638665.539|219878.481|112.243 +638670.553|219873.860|112.090 +638675.561|219869.249|112.078 +638680.554|219864.649|112.307 +638685.519|219860.083|112.959 +638690.475|219855.520|113.694 +638695.398|219850.991|114.264 +638700.381|219846.404|114.642 +638705.337|219841.841|114.788 +638710.302|219837.263|114.788 +638715.267|219832.691|114.864 +638720.245|219828.104|114.794 +638725.237|219823.501|114.532 +638730.194|219818.935|114.767 +638735.128|219814.391|114.712 +638740.161|219809.749|114.108 +638745.068|219805.228|114.413 +638750.033|219800.650|114.056 +638754.949|219796.124|114.337 +638759.887|219791.573|114.361 +638764.770|219787.074|114.465 +638769.714|219782.521|114.483 +638774.591|219778.028|114.706 +638779.522|219773.483|114.392 +638789.398|219764.379|113.730 +638809.076|219746.234|112.517 +638814.041|219741.656|112.093 +638818.866|219737.212|112.112 +638823.795|219732.671|112.087 +638833.554|219723.670|111.655 +638838.514|219719.092|110.554 +638843.396|219714.593|110.621 +638848.240|219710.131|110.612 +638853.114|219705.638|110.393 +638857.969|219701.160|109.920 +638872.734|219687.536|107.863 +638877.540|219683.107|107.909 +638882.365|219678.663|107.866 +638887.178|219674.225|107.906 +638891.945|219669.833|107.960 +638896.773|219665.386|107.951 +638901.552|219660.981|107.948 +638906.335|219656.574|107.951 +638911.114|219652.170|107.997 +638915.851|219647.805|108.015 +638920.502|219643.532|109.079 +638925.318|219639.088|108.536 +638930.146|219634.634|107.945 +638934.974|219630.178|107.363 +638939.747|219625.774|106.860 +638944.615|219621.281|106.415 +638949.373|219616.892|106.077 +638954.134|219612.500|105.744 +638958.864|219608.138|105.656 +638963.503|219603.868|105.894 +638968.200|219599.540|106.074 +638972.827|219595.279|106.750 +638977.375|219591.094|107.634 +638981.971|219586.866|108.216 +638986.564|219582.636|108.817 +638991.167|219578.393|109.027 +638995.827|219574.101|109.545 +639000.421|219569.870|109.856 +639004.987|219565.664|110.042 +639009.626|219561.391|110.417 +639014.164|219557.212|110.819 +639018.794|219552.945|110.963 +639023.400|219548.702|111.292 +639027.975|219544.487|111.505 +639032.501|219540.314|111.719 +639037.067|219536.108|112.020 +639041.678|219531.856|112.063 +639046.266|219527.628|111.972 +639050.850|219523.401|111.920 +639055.486|219519.127|111.877 +639060.043|219514.927|111.743 +639064.602|219510.721|111.597 +639069.208|219506.475|111.517 +639073.875|219502.168|110.804 +639082.951|219493.795|110.627 +639092.269|219485.197|109.481 +639096.924|219480.899|108.698 +639115.297|219463.943|106.881 +639119.848|219459.743|106.506 +639118.534|219458.780|106.439 +639113.931|219463.010|106.784 +639109.399|219467.174|107.040 +639090.986|219484.109|109.298 +639086.298|219488.422|109.990 +639081.684|219492.668|110.585 +639077.118|219496.862|110.908 +639072.546|219501.062|111.011 +639067.882|219505.350|111.386 +639063.304|219509.557|111.566 +639058.732|219513.757|111.746 +639054.130|219517.984|111.816 +639049.497|219522.239|111.798 +639044.900|219526.464|111.889 +639040.310|219530.685|111.969 +639035.692|219534.928|111.926 +639031.126|219539.122|111.581 +639026.545|219543.331|111.365 +639021.918|219547.580|111.121 +639017.294|219551.826|110.874 +639012.719|219556.029|110.664 +639008.080|219560.291|110.249 +639003.478|219564.518|109.923 +638998.857|219568.764|109.725 +638994.166|219573.071|109.362 +638989.536|219577.323|108.939 +638984.882|219581.596|108.680 +638980.231|219585.869|108.113 +638975.592|219590.128|107.457 +638970.983|219594.352|106.592 +638966.332|219598.622|106.043 +638961.586|219602.981|105.818 +638956.825|219607.358|105.717 +638952.034|219611.765|105.863 +638947.218|219616.191|106.180 +638942.356|219620.662|106.513 +638937.470|219625.161|107.055 +638932.551|219629.688|107.515 +638927.671|219634.177|108.070 +638922.791|219638.670|108.683 +638917.905|219643.163|108.969 +638903.482|219656.409|107.863 +638898.602|219660.896|107.835 +638893.725|219665.380|107.808 +638888.842|219669.866|107.848 +638883.969|219674.347|107.829 +638879.040|219678.876|107.887 +638874.163|219683.360|107.970 +638869.198|219687.926|107.973 +638864.288|219692.437|107.948 +638859.185|219697.137|109.170 +638854.220|219701.712|110.140 +638844.253|219710.877|110.743 +638839.269|219715.462|110.685 +638834.277|219720.055|111.146 +638824.258|219729.272|112.060 +638819.259|219733.865|112.225 +638814.288|219738.437|112.191 +638809.256|219743.064|112.285 +638804.230|219747.688|112.804 +638784.034|219766.269|114.315 +638773.996|219775.498|114.642 +638768.943|219780.143|114.703 +638763.969|219784.715|114.477 +638758.924|219789.351|114.465 +638753.895|219793.975|114.364 +638748.878|219798.581|114.087 +638743.769|219803.281|114.370 +638738.746|219807.898|114.242 +638733.671|219812.568|114.751 +638728.633|219817.201|114.873 +638723.567|219821.858|114.767 +638718.492|219826.522|114.782 +638713.460|219831.152|114.931 +638708.394|219835.806|114.870 +638703.331|219840.460|114.831 +638698.327|219845.060|114.690 +638693.240|219849.735|114.361 +638688.219|219854.341|113.761 +638683.215|219858.937|112.974 +638678.204|219863.540|112.276 +638673.159|219868.179|112.087 +638668.051|219872.876|112.127 +638662.936|219877.585|112.322 +638657.861|219882.255|112.682 +638652.768|219886.948|113.416 +638647.647|219891.664|113.825 +638642.530|219896.373|114.212 +638637.421|219901.076|114.511 +638632.307|219905.785|114.983 +638627.256|219910.433|115.196 +638622.102|219915.179|115.605 +638617.061|219919.818|115.711 +638611.974|219924.500|115.824 +638606.838|219929.224|115.998 +638601.763|219933.897|115.971 +638596.679|219938.576|116.129 +638591.601|219943.245|116.190 +638586.535|219947.902|115.974 +638581.466|219952.566|115.867 +638576.388|219957.239|116.028 +638540.952|219989.828|114.910 +638535.831|219994.543|115.163 +638530.763|219999.210|115.404 +638520.622|220008.527|114.194 +638515.590|220013.160|114.852 +638510.490|220017.851|114.535 +638495.326|220031.790|113.581 +638490.264|220036.450|113.797 +638485.201|220041.110|114.014 +638475.039|220050.462|114.026 +638464.907|220059.792|115.437 +638459.845|220064.461|116.409 +638454.837|220069.070|116.720 +638444.681|220078.424|117.781 +638439.679|220083.027|117.684 +638429.584|220092.317|118.132 +638424.533|220096.974|119.244 +638419.486|220101.620|119.625 +638414.487|220106.222|119.707 +638409.440|220110.864|119.860 +638404.395|220115.509|120.378 +638399.400|220120.109|120.823 +638394.361|220124.754|121.329 +638389.366|220129.350|121.576 +638384.370|220133.947|121.868 +638379.328|220138.589|121.996 +638374.336|220143.182|122.414 +638369.349|220147.779|122.893 +638364.311|220152.415|123.207 +638359.321|220157.008|123.594 +638354.332|220161.601|123.938 +638349.303|220166.237|124.496 +638344.365|220170.782|125.014 +638339.336|220175.415|125.529 +638334.349|220180.005|125.846 +638329.359|220184.595|126.096 +638324.370|220189.189|126.267 +638319.380|220193.782|126.416 +638309.401|220202.966|126.785 +638304.408|220207.562|126.885 +638299.416|220212.155|127.029 +638294.423|220216.749|127.154 +638289.479|220221.299|127.239 +638284.487|220225.893|127.440 +638279.497|220230.486|127.608 +638274.504|220235.083|127.757 +638269.561|220239.633|127.971 +638264.617|220244.184|128.156 +638259.621|220248.780|128.272 +638254.671|220253.334|128.382 +638249.721|220257.891|128.513 +638244.722|220262.490|128.595 +638239.766|220267.050|128.635 +638234.807|220271.613|128.617 +638229.848|220276.176|128.611 +638224.883|220280.742|128.495 +638219.915|220285.314|128.352 +638214.989|220289.843|128.166 +638210.018|220294.415|128.068 +638205.040|220298.996|127.861 +638200.057|220303.577|127.602 +638195.095|220308.143|127.733 +638190.151|220312.688|127.404 +638185.204|220317.239|127.041 +638180.205|220321.835|126.669 +638175.210|220326.425|126.401 +638170.241|220330.991|125.852 +638165.273|220335.560|125.316 +638160.262|220340.166|124.929 +638155.294|220344.735|124.493 +638150.323|220349.304|124.075 +638145.360|220353.866|123.795 +638140.401|220358.429|123.581 +638135.436|220362.992|123.338 +638130.520|220367.515|123.124 +638125.561|220372.075|123.018 +638120.632|220376.611|122.691 +638115.661|220381.180|122.496 +638110.735|220385.712|122.271 +638105.809|220390.241|122.079 +638100.835|220394.816|121.932 +638095.949|220399.312|121.710 +638091.021|220403.845|121.576 +638086.138|220408.337|121.445 +638081.218|220412.861|121.478 +638076.271|220417.411|121.228 +638071.379|220421.913|121.049 +638066.463|220426.430|120.692 +638061.546|220430.954|120.317 +638056.621|220435.480|119.924 +638051.701|220440.003|119.592 +638046.806|220444.508|119.564 +638041.972|220448.955|119.649 +638037.074|220453.460|119.640 +638032.225|220457.922|119.631 +638027.308|220462.446|119.470 +638022.474|220466.893|119.186 +638017.570|220471.404|119.192 +638007.828|220480.362|118.567 +638002.945|220484.848|117.976 +637954.150|220529.700|112.953 +637949.331|220534.135|112.822 +637944.509|220538.566|112.319 +637939.763|220542.934|112.435 +637930.116|220551.804|111.911 +637915.733|220565.014|110.737 +637911.216|220569.184|112.279 +637906.580|220573.451|112.968 +637888.420|220590.194|117.766 +637879.132|220598.740|118.418 +637874.466|220603.029|118.631 +637869.815|220607.308|118.939 +637865.179|220611.572|119.046 +637860.561|220615.821|119.275 +637837.362|220637.148|119.089 +637832.635|220641.491|118.735 +637827.929|220645.811|117.940 +637823.454|220649.931|118.586 +637809.680|220662.596|118.500 +637805.051|220666.851|118.287 +637800.424|220671.100|117.812 +637795.864|220675.291|117.751 +637786.747|220683.676|117.708 +637782.264|220687.800|117.863 +637777.753|220691.948|117.872 +637773.245|220696.090|117.936 +637711.446|220752.936|120.899 +637702.665|220761.010|120.600 +637693.765|220769.185|119.790 +637689.330|220773.260|119.491 +637684.941|220777.289|119.195 +637680.521|220781.349|118.759 +637676.160|220785.357|118.369 +637671.770|220789.393|118.125 +637667.317|220793.477|117.345 +637662.943|220797.498|116.967 +637658.603|220801.484|116.778 +637654.196|220805.532|116.038 +637649.892|220809.485|115.812 +637645.420|220813.588|114.809 +637636.508|220821.766|112.785 +637632.290|220825.640|112.575 +637627.958|220829.621|112.084 +637623.776|220833.464|112.075 +637619.598|220837.305|112.093 +637614.928|220841.578|109.884 +637611.261|220844.970|112.285 +637607.198|220848.710|112.633 +637595.281|220859.683|114.760 +637587.115|220867.190|115.181 +637583.076|220870.900|115.269 +637578.977|220874.670|115.315 +637570.595|220882.360|114.224 +637566.355|220886.249|113.264 +637562.207|220890.053|112.731 +637558.168|220893.766|112.685 +637550.243|220901.051|113.057 +637546.083|220904.864|112.087 +637542.181|220908.451|112.456 +637538.329|220911.993|112.831 +637522.723|220926.337|113.148 +637518.882|220929.863|113.185 +637515.085|220933.353|113.416 +637511.351|220936.788|113.907 +637507.593|220940.245|114.315 +637496.501|220950.443|115.483 +637485.348|220960.700|116.272 +637481.675|220964.074|116.461 +637478.057|220967.403|116.653 +637474.452|220970.716|117.120 +637470.730|220974.136|117.147 +637456.386|220987.321|118.211 +637452.774|220990.641|118.299 +637445.590|220997.240|118.461 +637431.383|221010.288|118.305 +637427.881|221013.510|118.476 +637424.458|221016.652|118.552 +637420.840|221019.975|118.113 +637417.116|221023.388|117.296 +637634.192|220822.409|112.648 +637647.600|220810.071|115.763 +637651.980|220806.035|116.092 +637665.077|220793.965|117.275 +637669.548|220789.847|117.891 +637673.974|220785.769|118.308 +637678.333|220781.749|118.415 +637687.257|220773.528|119.457 +637691.668|220769.459|119.640 +637696.136|220765.344|120.125 +637700.653|220761.184|120.610 +637709.529|220753.000|120.866 +637713.997|220748.879|121.183 +637718.362|220744.855|120.954 +637722.873|220740.695|121.268 +637753.841|220712.117|119.308 +637758.261|220708.039|118.988 +637767.142|220699.836|118.061 +637780.712|220687.315|117.610 +637785.281|220683.103|117.659 +637794.383|220674.712|117.598 +637798.970|220670.478|117.525 +637803.609|220666.202|117.781 +637822.229|220649.032|118.503 +637826.832|220644.786|118.351 +637831.498|220640.483|118.598 +637840.901|220631.811|119.009 +637845.574|220627.498|119.061 +637850.192|220623.237|118.778 +637864.228|220610.286|118.930 +637868.906|220605.970|118.787 +637878.227|220597.366|118.327 +637887.551|220588.755|117.629 +637896.698|220580.294|115.385 +637953.702|220527.673|112.898 +637958.515|220523.235|112.999 +637968.287|220514.225|113.694 +637978.086|220505.194|114.745 +637987.971|220496.086|116.260 +637992.817|220491.618|116.434 +637997.785|220487.043|117.293 +638007.603|220477.990|118.074 +638012.580|220473.406|119.131 +638017.512|220468.859|119.381 +638022.367|220464.381|119.387 +638027.284|220459.846|119.537 +638032.203|220455.307|119.753 +638037.104|220450.787|119.805 +638041.987|220446.279|119.726 +638046.882|220441.765|119.762 +638051.777|220437.248|119.863 +638056.746|220432.670|120.186 +638061.668|220428.128|120.600 +638066.691|220423.498|121.100 +638071.596|220418.978|121.366 +638076.579|220414.378|121.509 +638081.520|220409.825|121.716 +638086.433|220405.289|121.667 +638091.414|220400.696|121.859 +638096.397|220396.100|122.085 +638101.366|220391.518|122.185 +638106.291|220386.974|122.390 +638111.311|220382.344|122.563 +638116.276|220377.766|122.701 +638121.245|220373.182|122.935 +638126.265|220368.555|123.216 +638131.266|220363.940|123.307 +638136.277|220359.319|123.533 +638141.236|220354.744|123.761 +638146.241|220350.130|123.978 +638151.252|220345.509|124.282 +638156.260|220340.891|124.606 +638161.326|220336.221|125.127 +638166.331|220331.607|125.477 +638171.345|220326.986|125.998 +638176.407|220322.323|126.584 +638181.400|220317.717|126.876 +638186.438|220313.072|127.196 +638191.437|220308.466|127.632 +638196.439|220303.852|127.422 +638201.471|220299.216|127.678 +638206.449|220294.625|127.922 +638211.472|220289.995|128.096 +638216.489|220285.369|128.242 +638221.509|220280.742|128.425 +638226.568|220276.078|128.507 +638231.576|220271.457|128.580 +638236.581|220266.843|128.568 +638241.629|220262.188|128.534 +638246.627|220257.577|128.467 +638251.675|220252.923|128.419 +638256.668|220248.314|128.275 +638261.709|220243.666|128.108 +638266.747|220239.018|127.967 +638271.786|220234.369|127.800 +638276.775|220229.767|127.590 +638281.859|220225.076|127.367 +638286.849|220220.473|127.172 +638291.887|220215.825|127.032 +638296.971|220211.134|126.931 +638301.964|220206.532|126.815 +638307.002|220201.884|126.736 +638312.086|220197.193|126.590 +638317.076|220192.590|126.486 +638322.108|220187.945|126.288 +638327.192|220183.257|126.120 +638332.173|220178.658|125.700 +638337.214|220174.010|125.782 +638342.292|220169.325|125.377 +638347.269|220164.728|124.724 +638352.299|220160.086|124.145 +638357.331|220155.441|123.719 +638362.363|220150.796|123.383 +638367.399|220146.148|123.024 +638372.483|220141.457|122.664 +638377.518|220136.809|122.262 +638382.553|220132.161|121.902 +638387.595|220127.512|121.686 +638392.633|220122.861|121.423 +638397.720|220118.167|121.009 +638402.758|220113.513|120.451 +638407.800|220108.862|119.997 +638412.844|220104.207|119.777 +638433.074|220085.535|118.065 +638453.267|220066.900|116.858 +638463.377|220057.567|115.742 +638473.503|220048.212|114.139 +638478.559|220043.549|114.041 +638483.616|220038.882|113.843 +638503.733|220020.335|114.535 +638513.788|220011.063|115.020 +638518.805|220006.439|114.858 +638523.859|220001.779|115.087 +638533.859|219992.562|115.882 +638538.873|219987.938|115.833 +638543.939|219983.262|115.669 +638548.941|219978.654|116.025 +638558.987|219969.385|115.672 +638569.012|219960.146|115.943 +638573.977|219955.574|116.138 +638579.046|219950.899|116.083 +638584.011|219946.327|116.309 +638589.031|219941.700|116.379 +638594.060|219937.064|116.251 +638599.038|219932.477|116.248 +638604.064|219927.844|116.269 +638609.044|219923.250|116.214 +638614.089|219918.599|115.955 +638619.078|219913.999|115.827 +638624.083|219909.385|115.483 +638629.134|219904.724|115.172 +638634.145|219900.104|114.791 +638639.150|219895.486|114.514 +638644.170|219890.856|114.069 +638649.141|219886.269|113.654 +638654.170|219881.630|113.148 +638659.215|219876.972|112.423 +638664.174|219872.403|112.343 +638669.185|219867.783|112.237 +638674.141|219863.214|112.258 +638679.112|219858.639|112.782 +638684.004|219854.134|113.718 +638688.914|219849.616|114.456 +638693.898|219845.026|114.779 +638698.802|219840.506|114.931 +638703.813|219835.888|114.965 +638708.772|219831.319|115.059 +638713.747|219826.732|114.974 +638718.745|219822.120|114.620 +638723.674|219817.585|115.193 +638728.651|219812.995|115.145 +638733.601|219808.432|114.892 +638738.594|219803.826|114.712 +638743.596|219799.215|114.495 +638748.552|219794.646|114.264 +638753.508|219790.080|114.605 +638758.442|219785.532|114.660 +638763.386|219780.972|114.623 +638768.315|219776.431|114.800 +638773.265|219771.868|114.754 +638783.256|219762.651|113.840 +638803.068|219744.378|112.627 +638808.021|219739.809|112.285 +638812.883|219735.328|112.380 +638817.808|219730.787|112.362 +638822.761|219726.221|112.118 +638827.666|219721.698|111.880 +638832.698|219717.050|110.975 +638852.437|219698.841|109.457 +638857.305|219694.351|109.305 +638867.241|219685.180|107.823 +638872.097|219680.705|107.884 +638876.964|219676.218|107.854 +638881.823|219671.741|107.924 +638886.636|219667.303|107.979 +638891.506|219662.813|108.006 +638896.337|219658.360|107.954 +638901.162|219653.913|108.006 +638905.987|219649.466|108.052 +638910.824|219645.007|108.049 +638915.470|219640.731|109.113 +638920.276|219636.302|109.006 +638925.150|219631.803|108.415 +638930.003|219627.328|108.015 +638934.876|219622.830|107.491 +638939.710|219618.367|106.918 +638944.523|219613.929|106.546 +638949.339|219609.488|106.189 +638954.100|219605.096|105.876 +638958.925|219600.649|105.845 +638963.622|219596.321|106.040 +638968.285|219592.026|106.464 +638972.873|219587.808|107.433 +638977.466|219583.580|108.037 +638982.108|219579.307|108.646 +638986.759|219575.022|108.890 +638991.392|219570.754|109.250 +638996.022|219566.490|109.658 +639000.677|219562.205|109.935 +639005.282|219557.959|110.198 +639009.921|219553.689|110.600 +639014.539|219549.434|110.822 +639019.111|219545.221|111.048 +639023.732|219540.963|111.298 +639028.298|219536.757|111.584 +639032.861|219532.557|111.920 +639037.481|219528.296|111.920 +639042.081|219524.056|112.048 +639046.674|219519.825|111.956 +639051.258|219515.598|111.923 +639055.885|219511.334|111.962 +639060.451|219507.121|111.783 +639065.023|219502.909|111.612 +639069.662|219498.629|111.350 +639074.268|219494.377|111.002 +639088.054|219481.658|109.469 +639097.265|219473.160|108.475 +639101.919|219468.860|107.464 +639106.400|219464.729|107.427 +639110.966|219460.520|106.970 +639109.859|219459.395|106.851 +639105.223|219463.669|107.424 +639100.612|219467.915|107.604 +639091.215|219476.577|109.009 +639086.566|219480.856|109.469 +639081.857|219485.200|110.298 +639072.543|219493.777|110.890 +639067.928|219498.026|111.274 +639063.280|219502.308|111.584 +639058.662|219506.560|111.734 +639053.992|219510.858|111.923 +639049.417|219515.070|111.871 +639044.833|219519.286|111.889 +639040.139|219523.608|111.996 +639035.525|219527.851|111.941 +639030.983|219532.026|111.761 +639026.316|219536.315|111.447 +639021.751|219540.515|111.164 +639017.127|219544.764|110.917 +639012.500|219549.019|110.737 +639007.894|219553.253|110.426 +639003.301|219557.474|110.051 +638998.653|219561.744|109.713 +638994.038|219565.987|109.506 +638989.408|219570.245|109.106 +638984.775|219574.503|108.725 +638980.127|219578.774|108.460 +638975.531|219582.998|107.866 +638970.913|219587.238|107.092 +638966.353|219591.426|106.275 +638961.677|219595.724|105.927 +638956.926|219600.091|105.760 +638952.238|219604.407|105.876 +638947.410|219608.848|106.290 +638942.640|219613.244|106.699 +638937.872|219617.630|107.092 +638932.999|219622.119|107.582 +638928.186|219626.551|108.021 +638923.379|219630.974|108.433 +638918.573|219635.400|108.884 +638913.781|219639.810|108.893 +638904.347|219648.479|107.805 +638899.504|219652.935|107.881 +638894.725|219657.327|107.842 +638889.900|219661.768|107.842 +638885.072|219666.209|107.863 +638880.244|219670.650|107.896 +638875.376|219675.127|107.899 +638870.560|219679.556|107.896 +638865.690|219684.040|107.960 +638860.889|219688.456|107.890 +638855.817|219693.132|109.298 +638850.959|219697.603|109.350 +638841.016|219706.759|110.655 +638831.208|219715.785|110.923 +638821.311|219724.901|112.112 +638816.318|219729.498|112.289 +638811.429|219733.996|112.410 +638806.506|219738.520|112.395 +638801.572|219743.061|112.551 +638796.549|219747.691|113.142 +638776.636|219766.019|114.462 +638766.715|219775.148|114.700 +638761.728|219779.738|114.645 +638756.775|219784.292|114.736 +638751.755|219788.912|114.559 +638746.830|219793.442|114.410 +638741.791|219798.078|114.471 +638736.786|219802.680|114.700 +638731.739|219807.325|114.922 +638726.694|219811.971|115.178 +638721.705|219816.561|115.321 +638716.657|219821.203|115.077 +638711.649|219825.808|114.928 +638706.620|219830.438|115.077 +638701.561|219835.090|115.004 +638696.501|219839.744|114.965 +638691.499|219844.346|114.843 +638686.461|219848.979|114.575 +638681.456|219853.576|113.843 +638676.463|219858.160|112.916 +638671.440|219862.775|112.444 +638666.344|219867.459|112.328 +638661.290|219872.108|112.353 +638656.225|219876.771|112.609 +638651.083|219881.505|113.322 +638645.962|219886.220|113.785 +638640.887|219890.890|114.285 +638635.782|219895.586|114.556 +638630.664|219900.299|115.105 +638625.613|219904.944|115.318 +638620.453|219909.696|115.861 +638615.360|219914.380|116.086 +638610.276|219919.062|116.220 +638605.192|219923.735|116.315 +638600.062|219928.453|116.412 +638594.975|219933.135|116.699 +638589.860|219937.838|116.534 +638584.785|219942.504|116.611 +638579.677|219947.204|116.403 +638574.608|219951.862|116.348 +638569.500|219956.559|116.153 +638554.165|219970.662|115.913 +638549.096|219975.322|116.010 +638538.831|219984.762|115.885 +638533.759|219989.428|116.184 +638528.653|219994.125|116.150 +638523.557|219998.810|115.742 +638518.470|220003.480|114.928 +638513.377|220008.162|114.389 +638508.259|220012.868|114.730 +638503.205|220017.516|114.520 +638487.898|220031.589|114.069 +638477.691|220040.976|113.941 +638472.637|220045.625|113.913 +638452.200|220064.443|116.699 +638431.858|220083.164|118.016 +638421.668|220092.549|119.211 +638416.621|220097.194|119.680 +638411.576|220101.833|119.829 +638406.486|220106.518|119.976 +638401.396|220111.205|120.415 +638396.355|220115.845|120.902 +638391.267|220120.529|121.359 +638386.226|220125.165|121.820 +638381.185|220129.804|121.957 +638376.146|220134.440|122.210 +638371.111|220139.076|122.783 +638366.073|220143.712|122.984 +638361.037|220148.345|123.392 +638356.002|220152.981|123.722 +638351.019|220157.569|124.191 +638345.989|220162.199|124.776 +638340.960|220166.829|125.358 +638335.977|220171.416|125.642 +638330.938|220176.049|125.809 +638326.001|220180.593|126.078 +638321.014|220185.184|126.267 +638315.976|220189.817|126.376 +638311.032|220194.364|126.462 +638306.039|220198.958|126.562 +638301.050|220203.548|126.666 +638296.057|220208.141|126.748 +638291.064|220212.735|126.837 +638286.123|220217.285|126.965 +638281.180|220221.833|127.169 +638276.193|220226.423|127.388 +638271.252|220230.971|127.629 +638266.263|220235.561|127.812 +638261.319|220240.112|127.977 +638256.372|220244.665|128.086 +638251.428|220249.213|128.284 +638246.478|220253.767|128.391 +638241.528|220258.324|128.452 +638236.621|220262.838|128.473 +638231.665|220267.398|128.477 +638226.706|220271.960|128.458 +638221.743|220276.523|128.379 +638216.778|220281.092|128.294 +638211.904|220285.576|128.111 +638206.933|220290.148|127.961 +638202.005|220294.680|127.760 +638197.067|220299.222|127.443 +638192.135|220303.754|127.269 +638187.228|220308.271|127.489 +638182.278|220312.822|127.071 +638177.383|220317.324|126.800 +638172.424|220321.881|126.306 +638167.455|220326.447|125.727 +638162.545|220330.961|125.337 +638157.580|220335.527|124.880 +638152.673|220340.038|124.599 +638147.762|220344.552|124.313 +638142.858|220349.063|124.142 +638137.945|220353.583|123.853 +638133.031|220358.100|123.621 +638128.118|220362.620|123.414 +638123.211|220367.134|123.316 +638118.285|220371.661|123.039 +638113.372|220376.181|122.902 +638108.461|220380.698|122.847 +638103.588|220385.182|122.667 +638098.711|220389.665|122.499 +638093.785|220394.195|122.350 +638088.902|220398.687|122.149 +638083.977|220403.220|122.024 +638079.146|220407.664|121.926 +638074.208|220412.205|121.740 +638069.358|220416.661|121.512 +638064.466|220421.163|121.338 +638059.556|220425.677|121.018 +638054.627|220430.207|120.555 +638049.760|220434.684|120.229 +638044.904|220439.150|120.073 +638040.061|220443.606|120.043 +638035.218|220448.062|120.064 +638030.368|220452.521|120.037 +638025.498|220457.002|119.808 +638020.609|220461.498|119.454 +638015.802|220465.920|119.439 +638006.054|220474.881|118.717 +638001.196|220479.350|118.308 +637991.421|220488.326|116.678 +637986.532|220492.825|116.537 +637981.689|220497.275|115.977 +637976.803|220501.768|115.498 +637947.764|220528.459|112.791 +637938.090|220537.353|111.911 +637933.305|220541.758|112.100 +637928.470|220546.205|111.557 +637923.731|220550.566|111.770 +637918.830|220555.074|110.777 +637914.206|220559.336|111.530 +637904.839|220567.967|112.511 +637900.304|220572.155|113.910 +637877.380|220593.299|118.101 +637872.716|220597.591|118.305 +637868.114|220601.831|118.595 +637844.885|220623.219|118.854 +637826.280|220640.345|118.324 +637821.626|220644.631|118.150 +637807.800|220657.356|117.991 +637798.619|220665.808|117.702 +637789.469|220674.230|117.684 +637784.888|220678.446|117.528 +637780.301|220682.670|117.339 +637775.799|220686.818|117.674 +637766.822|220695.085|117.973 +637762.424|220699.138|118.366 +637753.484|220707.371|118.979 +637736.062|220723.434|121.445 +637731.652|220727.497|121.588 +637709.453|220747.928|121.006 +637705.027|220752.000|120.649 +637700.623|220756.054|120.692 +637696.200|220760.120|120.134 +637691.784|220764.186|119.884 +637687.334|220768.279|119.494 +637678.500|220776.405|118.848 +637674.169|220780.392|118.595 +637669.695|220784.507|117.915 +637652.220|220800.582|116.483 +637643.476|220808.623|115.358 +637625.925|220824.756|112.621 +637621.667|220828.673|112.240 +637617.336|220832.659|111.773 +637612.993|220836.649|111.042 +637609.113|220840.234|112.206 +637604.967|220844.050|112.410 +637600.977|220847.729|113.096 +637589.035|220858.741|114.867 +637580.940|220866.197|115.352 +637576.828|220869.982|115.096 +637572.832|220873.661|115.373 +637568.547|220877.602|114.389 +637564.389|220881.424|113.767 +637560.143|220885.326|112.779 +637552.042|220892.781|112.322 +637548.073|220896.433|112.359 +637544.013|220900.167|112.026 +637540.072|220903.800|112.206 +637536.183|220907.381|112.392 +637532.312|220910.947|112.673 +637528.407|220914.544|112.822 +637524.512|220918.132|112.804 +637516.752|220925.273|112.721 +637509.321|220932.128|114.029 +637505.502|220935.645|114.160 +637498.037|220942.525|114.745 +637494.337|220945.935|115.181 +637483.394|220956.018|116.336 +637479.709|220959.411|116.452 +637476.061|220962.773|116.723 +637468.807|220969.457|117.248 +637461.577|220976.117|117.696 +637458.050|220979.369|118.074 +637454.496|220982.640|118.156 +637450.897|220985.956|118.263 +637443.780|220992.506|118.238 +637433.112|221002.330|118.189 +637429.558|221005.600|118.147 +637426.135|221008.752|118.186 +637634.865|220814.643|113.288 +637643.750|220806.468|115.212 +637648.185|220802.390|116.038 +637656.875|220794.386|116.922 +637665.577|220786.372|117.443 +637670.021|220782.282|118.202 +637674.370|220778.277|118.500 +637678.799|220774.199|118.964 +637683.203|220770.142|119.345 +637692.049|220761.994|119.805 +637714.202|220741.585|121.024 +637718.591|220737.540|120.951 +637740.701|220717.152|120.098 +637753.942|220704.939|118.958 +637767.338|220692.582|117.976 +637771.867|220688.406|117.763 +637776.390|220684.237|117.513 +637780.910|220680.067|117.284 +637785.440|220675.891|117.409 +637794.660|220667.396|117.479 +637799.247|220663.166|117.412 +637803.883|220658.896|117.659 +637808.495|220654.647|117.778 +637817.666|220646.188|117.470 +637822.391|220641.836|118.052 +637831.678|220633.277|118.281 +637855.120|220611.664|118.787 +637869.114|220598.755|118.412 +637873.811|220594.421|118.113 +637878.477|220590.117|117.943 +637892.330|220577.319|115.471 +637896.844|220573.143|113.925 +637901.480|220568.861|112.892 +637906.159|220564.542|112.517 +637915.385|220556.013|110.137 +637920.305|220551.484|110.853 +637925.179|220546.994|111.648 +637929.991|220542.562|111.990 +637939.660|220533.650|112.377 +637944.512|220529.179|112.740 +637949.334|220524.732|112.892 +637958.987|220515.834|113.355 +637963.879|220511.323|113.377 +637968.783|220506.809|114.315 +637988.400|220488.741|116.382 +638003.195|220475.113|118.510 +638017.871|220461.589|119.430 +638022.797|220457.051|119.671 +638027.735|220452.497|120.058 +638032.639|220447.977|120.140 +638037.537|220443.463|120.183 +638042.423|220438.955|120.152 +638047.312|220434.447|120.168 +638052.293|220429.859|120.625 +638057.209|220425.327|120.969 +638062.171|220420.755|121.301 +638067.112|220416.201|121.475 +638072.062|220411.638|121.747 +638077.003|220407.085|121.954 +638081.934|220402.537|122.121 +638086.854|220398.002|122.143 +638091.795|220393.448|122.451 +638096.766|220388.864|122.569 +638101.692|220384.322|122.765 +638106.657|220379.747|122.868 +638111.622|220375.169|123.011 +638116.581|220370.597|123.106 +638121.546|220366.019|123.301 +638126.509|220361.447|123.469 +638131.468|220356.875|123.676 +638136.430|220352.300|123.914 +638141.438|220347.685|124.157 +638146.446|220343.070|124.426 +638151.389|220338.511|124.523 +638156.397|220333.896|124.898 +638161.408|220329.278|125.316 +638166.413|220324.666|125.709 +638171.430|220320.046|126.270 +638176.487|220315.388|126.800 +638181.531|220310.740|127.175 +638186.463|220306.189|127.355 +638191.477|220301.563|127.276 +638196.500|220296.927|127.452 +638201.529|220292.288|127.730 +638206.555|220287.655|127.955 +638211.572|220283.025|128.114 +638216.592|220278.395|128.272 +638221.603|220273.771|128.379 +638226.611|220269.150|128.437 +638231.616|220264.532|128.446 +638236.666|220259.872|128.422 +638241.668|220255.257|128.437 +638246.713|220250.603|128.315 +638251.705|220245.994|128.163 +638256.698|220241.386|128.004 +638261.736|220236.732|127.861 +638266.778|220232.080|127.730 +638271.761|220227.478|127.452 +638276.797|220222.830|127.209 +638281.783|220218.227|126.937 +638286.867|220213.533|126.797 +638291.909|220208.882|126.703 +638296.898|220204.276|126.645 +638301.936|220199.628|126.507 +638306.975|220194.977|126.486 +638312.013|220190.329|126.373 +638317.049|220185.677|126.282 +638322.133|220180.987|126.169 +638327.168|220176.338|126.023 +638332.197|220171.696|125.681 +638337.232|220167.048|125.471 +638342.310|220162.357|125.191 +638347.340|220157.715|124.633 +638352.366|220153.070|124.029 +638357.447|220148.379|123.658 +638362.525|220143.688|123.210 +638367.560|220139.040|122.926 +638372.595|220134.389|122.588 +638377.679|220129.695|122.262 +638382.718|220125.043|122.115 +638387.802|220120.350|121.558 +638392.840|220115.695|121.113 +638397.924|220110.998|120.552 +638402.966|220106.344|120.287 +638408.056|220101.644|119.893 +638413.097|220096.990|119.781 +638418.142|220092.335|119.601 +638423.235|220087.635|119.345 +638438.417|220073.611|117.930 +638448.515|220064.284|117.065 +638463.676|220050.288|115.967 +638473.850|220040.882|114.157 +638478.901|220036.221|114.367 +638494.058|220022.237|114.739 +638499.115|220017.574|114.727 +638519.278|219998.972|115.431 +638524.316|219994.330|116.147 +638534.374|219985.052|116.501 +638539.437|219980.379|116.425 +638544.460|219975.740|116.105 +638549.462|219971.128|116.477 +638554.519|219966.462|116.568 +638579.558|219943.343|116.498 +638584.514|219938.771|116.894 +638589.540|219934.129|116.769 +638594.560|219929.496|116.827 +638599.547|219924.887|116.577 +638604.527|219920.288|116.516 +638609.517|219915.679|116.315 +638614.510|219911.067|116.089 +638619.499|219906.459|115.971 +638624.510|219901.829|115.471 +638629.518|219897.199|115.065 +638634.480|219892.615|114.678 +638639.485|219887.991|114.440 +638644.511|219883.346|113.861 +638649.491|219878.743|113.352 +638654.530|219874.086|112.691 +638659.489|219869.505|112.535 +638664.448|219864.924|112.441 +638669.389|219860.364|112.676 +638674.299|219855.834|113.322 +638679.191|219851.326|114.258 +638684.108|219846.791|114.834 +638689.058|219842.222|114.931 +638693.959|219837.699|115.096 +638698.915|219833.121|115.163 +638703.825|219828.588|115.233 +638708.815|219823.977|114.931 +638713.710|219819.463|115.263 +638718.617|219814.930|115.419 +638723.579|219810.349|115.529 +638728.481|219805.820|115.230 +638733.434|219801.245|114.925 +638738.335|219796.718|114.727 +638743.327|219792.104|114.565 +638748.216|219787.590|114.541 +638753.108|219783.072|114.526 +638758.034|219778.528|114.684 +638762.920|219774.014|114.736 +638772.741|219764.943|114.443 +638797.451|219742.110|112.636 +638802.386|219737.550|112.438 +638807.241|219733.070|112.578 +638812.124|219728.559|112.468 +638817.077|219723.984|112.188 +638821.972|219719.464|112.029 +638826.962|219714.849|111.453 +638831.893|219710.286|110.579 +638836.822|219705.738|110.658 +638841.647|219701.282|110.789 +638846.664|219696.640|109.698 +638851.498|219692.178|109.817 +638871.252|219673.917|107.845 +638876.111|219669.431|107.887 +638880.972|219664.944|107.936 +638885.803|219660.479|107.835 +638890.674|219655.983|107.863 +638895.499|219651.527|107.872 +638900.379|219647.022|107.875 +638905.210|219642.562|107.884 +638910.032|219638.109|107.976 +638914.729|219633.781|109.039 +638939.061|219611.296|107.278 +638943.944|219606.785|106.759 +638948.836|219602.259|106.193 +638953.679|219597.787|106.022 +638958.498|219593.337|106.028 +638963.262|219588.942|106.113 +638967.923|219584.644|106.903 +638972.586|219580.343|107.695 +638977.271|219576.024|108.338 +638981.995|219571.663|108.732 +638986.699|219567.322|108.963 +638991.359|219563.025|109.490 +638996.068|219558.678|109.707 +639000.768|219554.341|110.009 +639005.453|219550.019|110.417 +639010.116|219545.715|110.670 +639014.835|219541.359|110.905 +639019.455|219537.095|111.139 +639024.116|219532.795|111.463 +639028.727|219528.539|111.786 +639033.363|219524.260|111.975 +639038.036|219519.944|111.969 +639042.703|219515.637|112.023 +639047.329|219511.364|112.029 +639051.984|219507.066|111.904 +639056.635|219502.769|111.810 +639061.323|219498.437|111.530 +639065.965|219494.149|111.246 +639070.604|219489.860|110.990 +639075.289|219485.532|110.798 +639079.974|219481.201|110.057 +639103.294|219459.642|107.375 +639099.453|219460.484|107.732 +639094.641|219464.922|108.479 +639075.679|219482.399|110.460 +639070.994|219486.718|110.920 +639066.291|219491.049|111.225 +639061.506|219495.459|111.453 +639056.815|219499.779|111.737 +639052.100|219504.125|111.898 +639047.400|219508.450|111.981 +639042.666|219512.812|112.005 +639037.996|219517.113|111.959 +639033.275|219521.462|111.950 +639028.575|219525.793|111.831 +639023.963|219530.039|111.499 +639019.254|219534.376|111.173 +639014.588|219538.677|110.914 +639009.915|219542.978|110.685 +639005.203|219547.318|110.435 +639000.512|219551.637|110.057 +638995.864|219555.917|109.737 +638991.103|219560.303|109.518 +638986.494|219564.546|108.991 +638981.745|219568.916|108.713 +638977.055|219573.235|108.421 +638972.370|219577.548|107.781 +638967.691|219581.855|107.095 +638963.089|219586.089|106.241 +638958.291|219590.505|106.049 +638953.515|219594.910|106.083 +638948.717|219599.329|106.275 +638943.850|219603.819|106.647 +638938.997|219608.294|107.293 +638934.145|219612.771|107.628 +638929.283|219617.255|108.046 +638924.492|219621.671|108.347 +638919.597|219626.185|108.719 +638914.817|219630.593|108.988 +638910.081|219634.948|107.842 +638900.510|219643.763|107.808 +638895.676|219648.223|107.851 +638890.845|219652.673|107.863 +638886.020|219657.117|107.857 +638881.192|219661.570|107.915 +638876.367|219666.014|107.945 +638871.548|219670.455|107.960 +638866.683|219674.938|107.994 +638861.880|219679.364|107.921 +638856.966|219683.890|107.988 +638852.001|219688.481|109.362 +638847.094|219693.004|109.445 +638842.113|219697.603|110.606 +638837.264|219702.072|110.676 +638832.418|219706.537|110.719 +638827.513|219711.057|110.880 +638822.524|219715.666|111.871 +638817.604|219720.198|112.228 +638812.703|219724.718|112.478 +638807.814|219729.223|112.618 +638802.937|219733.719|112.685 +638798.042|219738.230|112.484 +638793.135|219742.756|112.901 +638788.109|219747.392|113.557 +638773.292|219761.054|114.599 +638768.367|219765.595|114.870 +638763.411|219770.164|115.004 +638758.491|219774.693|114.736 +638753.608|219779.195|114.648 +638748.625|219783.786|114.584 +638743.687|219788.336|114.632 +638738.743|219792.893|114.727 +638733.744|219797.502|114.962 +638728.798|219802.061|115.145 +638713.847|219815.842|115.541 +638708.912|219820.386|115.123 +638703.892|219825.013|115.178 +638698.918|219829.597|115.309 +638693.959|219834.166|115.245 +638688.911|219838.817|115.132 +638683.958|219843.380|115.026 +638678.969|219847.977|114.800 +638673.979|219852.567|113.898 +638669.084|219857.072|113.014 +638664.064|219861.696|112.572 +638659.010|219866.353|112.651 +638654.003|219870.968|112.749 +638648.931|219875.646|113.172 +638643.889|219880.301|113.947 +638638.823|219884.973|114.395 +638633.715|219889.686|114.776 +638628.704|219894.306|115.163 +638623.599|219899.015|115.580 +638618.505|219903.712|115.839 +638613.461|219908.364|116.108 +638608.371|219913.058|116.358 +638603.284|219917.749|116.605 +638598.206|219922.430|116.726 +638593.128|219927.112|116.873 +638588.105|219931.739|116.876 +638582.981|219936.463|117.037 +638552.464|219964.587|116.705 +638537.206|219978.648|116.266 +638532.073|219983.384|117.083 +638521.896|219992.757|116.068 +638516.809|219997.439|115.382 +638511.712|220002.133|115.090 +638501.508|220011.539|115.062 +638486.161|220025.681|114.824 +638481.059|220030.382|114.797 +638475.965|220035.075|114.468 +638470.863|220039.775|114.568 +638465.709|220044.533|115.257 +638445.303|220063.364|117.559 +638435.019|220072.843|117.860 +638419.699|220086.977|119.473 +638414.655|220091.625|119.683 +638409.519|220096.362|119.832 +638404.383|220101.098|120.000 +638399.342|220105.747|120.293 +638394.209|220110.480|120.610 +638389.076|220115.214|121.241 +638384.041|220119.859|121.747 +638378.960|220124.550|122.298 +638373.830|220129.280|122.469 +638368.795|220133.922|122.868 +638363.713|220138.607|123.057 +638358.587|220143.338|123.499 +638353.554|220147.977|123.877 +638348.480|220152.658|124.459 +638343.405|220157.340|124.938 +638338.378|220161.979|125.371 +638333.297|220166.661|125.557 +638328.268|220171.300|125.886 +638323.236|220175.939|126.008 +638318.152|220180.627|126.093 +638313.120|220185.266|126.209 +638308.084|220189.908|126.325 +638303.046|220194.550|126.392 +638298.011|220199.192|126.440 +638293.018|220203.789|126.511 +638287.983|220208.428|126.614 +638282.944|220213.067|126.687 +638277.955|220217.660|126.882 +638272.923|220222.296|127.123 +638267.939|220226.890|127.413 +638262.953|220231.480|127.684 +638257.963|220236.076|127.855 +638252.973|220240.673|127.986 +638247.981|220245.272|128.114 +638243.037|220249.826|128.278 +638238.087|220254.383|128.333 +638233.088|220258.985|128.379 +638228.135|220263.545|128.400 +638223.127|220268.153|128.364 +638218.168|220272.722|128.288 +638213.252|220277.246|128.193 +638208.287|220281.818|128.102 +638203.364|220286.347|127.925 +638198.387|220290.928|127.672 +638193.455|220295.467|127.413 +638188.523|220300.005|127.199 +638183.549|220304.586|127.084 +638178.693|220309.058|127.361 +638173.731|220313.621|126.776 +638168.772|220318.183|126.230 +638163.859|220322.704|125.755 +638158.903|220327.263|125.361 +638153.995|220331.777|125.035 +638149.045|220336.334|124.779 +638144.193|220340.800|124.593 +638139.237|220345.359|124.365 +638134.382|220349.828|124.200 +638129.465|220354.354|123.889 +638124.558|220358.871|123.719 +638119.693|220363.349|123.539 +638114.783|220367.866|123.405 +638109.921|220372.343|123.289 +638105.014|220376.861|123.249 +638100.146|220381.341|123.124 +638095.269|220385.831|122.914 +638090.402|220390.308|122.859 +638085.516|220394.807|122.585 +638080.697|220399.242|122.585 +638075.808|220403.741|122.353 +638070.965|220408.200|122.118 +638066.067|220412.708|121.832 +638061.266|220417.125|121.588 +638056.371|220421.630|121.411 +638051.567|220426.052|121.198 +638046.654|220430.573|120.902 +638041.838|220435.004|120.613 +638037.004|220439.457|120.652 +638032.206|220443.874|120.604 +638027.360|220448.333|120.579 +638022.584|220452.728|120.329 +638017.682|220457.236|119.826 +638012.888|220461.650|119.451 +638008.078|220466.076|119.427 +638003.226|220470.541|119.040 +637993.551|220479.435|117.748 +637983.813|220488.390|116.467 +637959.670|220510.598|113.706 +637954.827|220515.054|113.300 +637950.062|220519.437|113.148 +637940.516|220528.225|112.801 +637930.942|220537.027|111.969 +637916.537|220550.265|110.426 +637907.329|220558.744|111.825 +637902.712|220562.996|112.630 +637898.085|220567.254|113.020 +637884.600|220579.690|117.007 +637880.007|220583.918|117.641 +637875.402|220588.157|117.869 +637870.778|220592.409|117.991 +637856.897|220605.178|118.409 +637852.264|220609.442|118.531 +637838.393|220622.195|118.260 +637833.717|220626.492|117.879 +637815.301|220643.424|117.772 +637810.662|220647.688|117.415 +637806.133|220651.855|117.461 +637801.548|220656.070|117.495 +637796.906|220660.337|117.187 +637792.410|220664.473|117.187 +637787.848|220668.664|117.120 +637783.355|220672.804|117.455 +637778.786|220677.004|117.379 +637774.318|220681.113|117.623 +637765.381|220689.336|118.132 +637738.988|220713.623|120.369 +637716.957|220733.889|121.012 +637708.170|220741.966|120.829 +637703.747|220746.032|120.738 +637694.850|220754.207|120.113 +637690.479|220758.224|119.823 +637686.096|220762.253|119.765 +637681.707|220766.286|119.433 +637672.895|220774.382|118.665 +637668.509|220778.414|118.412 +637664.123|220782.443|117.912 +637655.433|220790.429|117.409 +637651.129|220794.386|117.388 +637646.694|220798.455|116.504 +637642.314|220802.478|115.897 +637637.809|220806.608|114.495 +637633.408|220810.650|113.840 +637629.043|220814.658|113.148 +637624.828|220818.532|112.932 +637616.272|220826.390|112.221 +637611.959|220830.352|111.606 +637607.396|220834.531|109.881 +637599.703|220841.630|112.779 +637575.658|220863.764|115.199 +637571.653|220867.449|115.419 +637567.507|220871.259|115.044 +637563.338|220875.088|114.352 +637559.214|220878.876|113.880 +637546.839|220890.245|112.337 +637538.880|220897.564|112.112 +637534.912|220901.215|112.182 +637531.062|220904.757|112.322 +637527.167|220908.341|112.502 +637523.262|220911.932|112.654 +637511.793|220922.487|113.331 +637508.059|220925.922|113.584 +637500.597|220932.789|114.364 +637489.521|220942.985|115.535 +637478.533|220953.098|116.501 +637474.872|220956.463|116.510 +637471.303|220959.749|117.095 +637467.700|220963.065|117.336 +637464.061|220966.412|117.464 +637460.504|220969.686|117.702 +637456.916|220972.983|117.839 +637449.754|220979.573|117.973 +637442.609|220986.142|118.019 +637425.071|221002.269|118.141 +637414.449|221012.025|117.214 +637410.971|221015.220|116.897 +637632.079|220809.738|113.526 +637636.459|220805.697|114.328 +637640.958|220801.554|115.702 +637645.298|220797.546|116.367 +637653.933|220789.573|117.028 +637658.298|220785.543|117.370 +637666.961|220777.545|118.034 +637680.192|220765.332|119.485 +637684.508|220761.342|119.457 +637693.295|220753.228|119.973 +637702.223|220744.987|120.783 +637706.597|220740.945|120.890 +637711.035|220736.845|121.067 +637715.345|220732.862|120.875 +637719.822|220728.725|121.036 +637724.303|220724.586|121.250 +637746.227|220704.314|119.674 +637759.449|220692.082|118.314 +637763.918|220687.952|118.037 +637768.380|220683.828|117.748 +637772.842|220679.704|117.464 +637777.366|220675.519|117.281 +637781.931|220671.301|117.348 +637786.455|220667.119|117.190 +637791.002|220662.922|117.171 +637795.593|220658.676|117.165 +637800.189|220654.430|117.190 +637804.791|220650.181|117.272 +637809.376|220645.945|117.272 +637823.336|220633.055|117.741 +637827.956|220628.790|117.735 +637832.617|220624.487|117.674 +637837.256|220620.204|117.827 +637860.756|220598.515|118.318 +637870.083|220589.901|117.909 +637874.783|220585.564|117.973 +637884.052|220576.993|116.580 +637888.572|220572.805|115.102 +637902.434|220559.985|112.429 +637907.150|220555.629|111.984 +637911.719|220551.395|110.496 +637916.519|220546.967|110.719 +637921.463|220542.410|111.667 +637931.006|220533.601|111.807 +637940.760|220524.607|112.932 +637970.006|220497.626|114.928 +637979.936|220488.479|116.821 +637989.714|220479.456|117.592 +638009.413|220461.284|119.476 +638014.354|220456.727|119.838 +638019.252|220452.210|120.271 +638024.196|220447.650|120.747 +638029.097|220443.127|120.835 +638033.992|220438.607|120.881 +638038.875|220434.099|120.844 +638043.819|220429.536|120.945 +638048.729|220425.007|121.198 +638053.676|220420.441|121.402 +638058.575|220415.921|121.618 +638063.531|220411.349|121.954 +638068.423|220406.835|122.158 +638073.376|220402.266|122.527 +638078.362|220397.663|122.795 +638083.279|220393.125|122.822 +638088.198|220388.583|122.920 +638093.127|220384.036|123.121 +638098.095|220379.451|123.277 +638103.011|220374.913|123.429 +638107.967|220370.338|123.475 +638112.924|220365.766|123.560 +638117.880|220361.188|123.700 +638122.839|220356.613|123.862 +638127.798|220352.038|124.066 +638132.806|220347.417|124.322 +638137.759|220342.845|124.502 +638142.757|220338.233|124.712 +638147.704|220333.667|124.855 +638152.700|220329.056|125.081 +638157.699|220324.444|125.380 +638162.707|220319.826|125.816 +638167.715|220315.205|126.337 +638172.725|220310.588|126.892 +638177.718|220305.979|127.251 +638182.720|220301.361|127.017 +638187.648|220296.817|127.160 +638192.678|220292.178|127.404 +638197.704|220287.542|127.666 +638202.678|220282.955|127.882 +638207.692|220278.331|127.964 +638212.663|220273.747|128.138 +638217.671|220269.126|128.214 +638222.682|220264.505|128.309 +638227.638|220259.933|128.309 +638232.689|220255.273|128.345 +638237.688|220250.661|128.263 +638242.683|220246.049|128.178 +638247.673|220241.444|127.992 +638252.665|220236.838|127.870 +638257.658|220232.230|127.760 +638262.690|220227.584|127.465 +638267.674|220222.985|127.172 +638272.660|220218.379|126.943 +638277.693|220213.734|126.672 +638282.731|220209.089|126.498 +638287.769|220204.438|126.422 +638292.759|220199.832|126.355 +638297.797|220195.184|126.303 +638302.836|220190.536|126.230 +638307.874|220185.888|126.166 +638312.909|220181.240|126.090 +638317.945|220176.594|125.986 +638322.980|220171.949|125.892 +638328.015|220167.301|125.861 +638333.090|220162.616|125.480 +638338.125|220157.971|125.288 +638343.155|220153.326|124.932 +638348.230|220148.641|124.490 +638353.256|220143.996|123.834 +638358.288|220139.351|123.493 +638363.369|220134.663|123.106 +638368.401|220130.015|122.853 +638373.485|220125.321|122.643 +638378.521|220120.673|122.134 +638383.556|220116.024|121.679 +638388.637|220111.330|120.975 +638393.721|220106.633|120.613 +638398.763|220101.982|120.207 +638403.850|220097.285|120.046 +638408.940|220092.588|119.756 +638413.981|220087.934|119.646 +638419.071|220083.237|119.479 +638434.250|220069.222|118.025 +638444.388|220059.862|117.714 +638454.596|220050.431|115.907 +638459.643|220045.777|116.062 +638469.860|220036.337|114.556 +638474.911|220031.677|114.614 +638480.004|220026.983|115.026 +638485.109|220022.268|114.687 +638490.160|220017.610|114.852 +638500.310|220008.250|115.196 +638505.373|220003.574|114.888 +638510.414|219998.929|115.455 +638515.510|219994.229|115.736 +638540.754|219970.951|117.129 +638560.944|219952.325|117.281 +638581.122|219933.705|117.040 +638586.139|219929.075|117.138 +638591.168|219924.436|117.043 +638596.197|219919.794|116.897 +638601.232|219915.149|116.726 +638606.271|219910.497|116.489 +638611.309|219905.846|116.324 +638616.311|219901.228|115.949 +638621.349|219896.577|115.830 +638626.366|219891.947|115.324 +638631.371|219887.326|115.032 +638636.440|219882.642|114.489 +638641.408|219878.054|114.096 +638646.453|219873.394|113.313 +638651.476|219868.758|112.901 +638656.426|219864.192|112.950 +638661.431|219859.571|112.871 +638666.307|219855.078|113.343 +638671.242|219850.534|114.349 +638676.091|219846.066|115.181 +638681.041|219841.500|115.273 +638685.997|219836.925|115.303 +638690.905|219832.398|115.394 +638695.861|219827.826|115.452 +638700.792|219823.276|115.276 +638705.700|219818.749|115.404 +638710.555|219814.272|115.629 +638725.305|219800.659|115.288 +638730.242|219796.103|115.202 +638735.144|219791.579|114.986 +638740.042|219787.059|114.834 +638744.940|219782.539|114.703 +638749.823|219778.034|114.773 +638754.712|219773.523|114.794 +638759.601|219769.012|114.843 +638764.444|219764.544|114.885 +638769.388|219759.975|113.910 +638788.953|219741.915|113.014 +638793.805|219737.435|112.648 +638803.477|219728.510|112.791 +638818.022|219715.087|112.164 +638822.926|219710.554|111.490 +638827.852|219706.004|110.676 +638832.640|219701.584|110.673 +638837.483|219697.116|110.652 +638842.372|219692.598|109.847 +638847.167|219688.173|109.859 +638857.021|219679.065|107.777 +638861.816|219674.640|107.887 +638866.631|219670.196|107.860 +638871.389|219665.806|107.924 +638876.156|219661.411|107.939 +638880.924|219657.010|107.966 +638885.755|219652.551|107.893 +638890.479|219648.195|107.936 +638895.295|219643.751|108.034 +638900.038|219639.377|107.970 +638904.817|219634.967|108.009 +638909.511|219630.639|108.710 +638914.205|219626.313|109.082 +638919.027|219621.860|108.853 +638923.824|219617.432|108.491 +638928.567|219613.052|108.195 +638933.419|219608.568|107.842 +638938.186|219604.164|107.427 +638943.024|219599.692|106.878 +638947.855|219595.227|106.412 +638952.600|219590.844|106.241 +638957.334|219586.473|106.153 +638962.034|219582.136|106.345 +638966.649|219577.881|107.107 +638971.291|219573.601|107.713 +638975.890|219569.355|108.262 +638980.615|219564.997|108.671 +638985.245|219560.726|109.067 +638989.859|219556.468|109.564 +638994.565|219552.128|109.820 +638999.177|219547.870|110.039 +639003.810|219543.594|110.463 +639008.480|219539.287|110.688 +639013.094|219535.026|110.941 +639017.773|219530.707|111.136 +639022.385|219526.455|111.466 +639026.999|219522.197|111.773 +639031.647|219517.905|111.904 +639036.296|219513.613|112.033 +639040.971|219509.297|112.054 +639045.610|219505.012|111.987 +639050.310|219500.672|111.889 +639054.995|219496.343|111.615 +639059.668|219492.027|111.429 +639073.798|219478.973|110.371 +639078.471|219474.654|110.274 +639097.369|219457.186|107.893 +639095.232|219456.469|108.055 +639090.507|219460.822|108.600 +639085.753|219465.205|109.088 +639081.050|219469.539|109.579 +639071.576|219478.269|110.466 +639066.888|219482.585|110.658 +639062.146|219486.956|110.917 +639057.354|219491.369|111.469 +639052.633|219495.719|111.652 +639047.912|219500.068|111.862 +639043.154|219504.445|111.993 +639038.408|219508.816|112.090 +639033.696|219513.153|112.008 +639028.999|219517.475|111.850 +639024.262|219521.831|111.639 +639019.586|219526.132|111.380 +639014.835|219530.502|110.999 +639010.156|219534.809|110.807 +639005.395|219539.186|110.509 +639000.637|219543.566|110.222 +638995.943|219547.882|109.853 +638991.139|219552.302|109.582 +638986.388|219556.673|109.286 +638981.630|219561.046|108.738 +638976.902|219565.396|108.351 +638972.141|219569.773|107.842 +638967.395|219574.138|107.259 +638962.689|219578.460|106.409 +638957.849|219582.916|106.165 +638953.036|219587.342|106.077 +638948.123|219591.865|106.354 +638943.197|219596.406|106.778 +638938.266|219600.948|107.244 +638933.340|219605.489|107.729 +638928.436|219610.004|108.073 +638923.489|219614.560|108.396 +638918.600|219619.062|108.692 +638913.674|219623.598|108.917 +638908.855|219628.033|108.750 +638894.265|219641.456|107.875 +638889.385|219645.949|107.857 +638884.465|219650.478|107.823 +638879.592|219654.965|107.820 +638874.663|219659.500|107.887 +638869.743|219664.026|107.890 +638864.827|219668.553|107.909 +638859.962|219673.033|107.933 +638855.006|219677.596|107.930 +638850.090|219682.122|108.021 +638844.972|219686.850|109.887 +638840.028|219691.398|109.844 +638825.172|219705.083|110.612 +638820.180|219709.682|111.575 +638815.181|219714.291|112.206 +638810.216|219718.866|112.584 +638800.356|219727.943|112.727 +638790.474|219737.041|112.731 +638785.530|219741.595|113.038 +638780.519|219746.210|113.547 +638765.669|219759.883|113.947 +638760.680|219764.486|114.919 +638755.748|219769.024|114.773 +638750.804|219773.575|114.779 +638745.872|219778.113|114.687 +638740.929|219782.667|114.782 +638735.973|219787.230|114.992 +638730.974|219791.832|115.209 +638726.039|219796.377|115.257 +638721.046|219800.976|115.462 +638706.160|219814.680|115.669 +638701.268|219819.179|115.321 +638696.297|219823.754|115.355 +638691.325|219828.332|115.465 +638686.318|219832.944|115.425 +638681.358|219837.507|115.404 +638676.408|219842.067|115.315 +638671.410|219846.669|115.212 +638666.533|219851.156|114.120 +638661.586|219855.706|113.294 +638656.612|219860.288|112.886 +638651.653|219864.853|112.971 +638646.599|219869.511|113.108 +638641.609|219874.116|113.791 +638636.537|219878.795|114.328 +638631.517|219883.422|114.785 +638626.510|219888.040|115.145 +638621.444|219892.712|115.657 +638616.442|219897.324|116.016 +638611.398|219901.975|116.269 +638606.362|219906.614|116.379 +638601.363|219911.223|116.736 +638596.328|219915.865|116.970 +638591.293|219920.504|117.168 +638586.270|219925.137|117.242 +638581.237|219929.773|117.440 +638576.230|219934.385|117.214 +638571.158|219939.060|117.363 +638566.144|219943.678|117.226 +638561.115|219948.314|117.555 +638551.001|219957.632|117.333 +638510.591|219994.851|115.510 +638505.592|219999.453|115.135 +638500.474|220004.172|115.711 +638480.178|220022.871|115.154 +638475.170|220027.486|115.279 +638470.074|220032.177|115.001 +638439.560|220060.319|118.061 +638434.467|220065.013|117.994 +638429.425|220069.661|118.385 +638419.242|220079.055|119.494 +638414.198|220083.703|119.564 +638409.062|220088.437|119.781 +638403.972|220093.131|120.058 +638398.930|220097.776|120.195 +638393.843|220102.467|120.561 +638388.759|220107.155|120.945 +638383.672|220111.846|121.250 +638378.591|220116.533|121.881 +638373.510|220121.218|122.463 +638368.478|220125.860|122.911 +638363.393|220130.545|123.124 +638358.312|220135.230|123.456 +638353.234|220139.915|123.844 +638348.160|220144.593|124.420 +638343.082|220149.275|124.846 +638338.052|220153.914|125.215 +638327.942|220163.232|125.712 +638322.864|220167.917|125.904 +638317.826|220172.559|125.874 +638312.742|220177.244|125.916 +638307.703|220181.883|125.998 +638302.668|220186.525|126.044 +638297.581|220191.213|126.105 +638292.594|220195.815|126.194 +638287.556|220200.460|126.239 +638282.469|220205.151|126.315 +638277.479|220209.751|126.422 +638272.447|220214.393|126.669 +638267.415|220219.035|126.910 +638262.431|220223.634|127.190 +638257.402|220228.273|127.489 +638252.367|220232.918|127.705 +638247.374|220237.524|127.818 +638242.339|220242.169|128.016 +638237.346|220246.772|128.163 +638232.305|220251.423|128.260 +638227.303|220256.031|128.260 +638222.350|220260.600|128.257 +638217.296|220265.261|128.196 +638212.334|220269.833|128.117 +638207.320|220274.454|127.971 +638202.309|220279.074|127.882 +638197.338|220283.656|127.736 +638192.318|220288.285|127.550 +638187.335|220292.876|127.218 +638182.406|220297.420|127.041 +638177.389|220302.044|127.017 +638172.482|220306.574|127.227 +638167.474|220311.185|126.657 +638162.515|220315.754|126.148 +638157.504|220320.369|125.645 +638152.548|220324.935|125.258 +638147.659|220329.443|125.154 +638142.712|220334.003|124.974 +638137.768|220338.559|124.840 +638132.815|220343.125|124.636 +638127.908|220347.648|124.420 +638122.994|220352.175|124.164 +638118.038|220356.744|123.987 +638113.180|220361.221|123.862 +638108.220|220365.793|123.725 +638103.371|220370.265|123.752 +638098.458|220374.794|123.639 +638093.581|220379.287|123.414 +638088.664|220383.822|123.292 +638083.788|220388.315|123.115 +638078.929|220392.796|123.179 +638074.046|220397.294|122.987 +638069.154|220401.802|122.722 +638064.256|220406.320|122.405 +638059.401|220410.794|122.079 +638054.484|220415.320|121.658 +638049.635|220419.792|121.442 +638044.785|220424.260|121.277 +638039.933|220428.735|121.076 +638035.093|220433.197|121.045 +638030.249|220437.662|121.006 +638025.397|220442.137|120.893 +638020.593|220446.565|120.811 +638010.901|220455.493|119.933 +638006.097|220459.922|119.945 +637996.410|220468.843|118.857 +637986.730|220477.765|117.949 +637977.077|220486.653|116.589 +637952.891|220508.925|113.560 +637938.556|220522.138|112.819 +637933.801|220526.518|112.429 +637929.034|220530.913|112.325 +637900.798|220556.946|112.426 +637896.155|220561.231|112.666 +637878.099|220577.919|117.363 +637864.200|220590.736|117.815 +637859.631|220594.951|117.988 +637854.983|220599.237|117.973 +637836.506|220616.269|117.598 +637827.316|220624.743|117.531 +637822.744|220628.958|117.516 +637804.420|220645.847|117.132 +637799.921|220649.998|117.354 +637795.288|220654.266|116.772 +637786.299|220662.556|117.074 +637781.825|220666.683|117.208 +637777.265|220670.886|117.171 +637772.790|220675.013|117.345 +637768.331|220679.125|117.632 +637763.966|220683.155|118.180 +637759.544|220687.239|118.680 +637750.689|220695.405|119.140 +637741.999|220703.424|119.997 +637737.562|220707.517|120.219 +637724.501|220719.569|121.231 +637720.075|220723.647|121.042 +637711.288|220731.749|121.042 +637706.896|220735.797|120.805 +637702.522|220739.829|120.689 +637689.321|220751.994|119.784 +637667.479|220772.117|118.394 +637663.129|220776.125|118.068 +637654.449|220784.120|117.312 +637641.403|220796.138|116.083 +637637.017|220800.177|115.452 +637632.555|220804.282|114.248 +637628.248|220808.248|113.797 +637623.780|220812.357|112.618 +637615.269|220820.199|112.072 +637610.993|220824.140|111.609 +637606.747|220828.051|111.313 +637602.596|220831.876|111.228 +637570.680|220861.311|115.227 +637562.573|220868.775|114.803 +637558.424|220872.591|114.428 +637554.276|220876.404|113.627 +637541.721|220887.950|111.088 +637537.990|220891.391|112.145 +637533.982|220895.083|111.804 +637526.237|220902.218|112.316 +637522.339|220905.808|112.267 +637518.492|220909.353|112.438 +637503.316|220923.341|113.678 +637499.537|220926.824|113.965 +637492.090|220933.686|114.602 +637488.475|220937.020|115.163 +637484.797|220940.412|115.681 +637477.551|220947.091|116.352 +637473.854|220950.498|116.614 +637470.245|220953.824|117.031 +637466.624|220957.158|117.199 +637463.000|220960.499|117.357 +637459.398|220963.818|117.620 +637455.816|220967.116|117.760 +637452.250|220970.402|117.976 +637445.051|220977.031|117.970 +637441.448|220980.347|117.872 +637437.876|220983.639|117.897 +637423.788|220996.609|117.668 +637420.371|220999.757|117.936 +637413.306|221006.259|117.421 +637409.752|221009.529|117.007 +637406.313|221012.693|116.836 +637629.674|220804.657|114.239 +637634.057|220800.616|115.059 +637638.422|220796.592|115.806 +637642.881|220792.484|116.778 +637647.182|220788.512|117.031 +637664.458|220772.568|118.290 +637668.832|220768.529|118.479 +637681.978|220756.398|119.570 +637695.118|220744.270|120.293 +637712.733|220728.009|121.076 +637717.085|220723.989|120.841 +637734.642|220707.770|120.317 +637743.365|220699.705|119.589 +637752.247|220691.500|119.220 +637756.651|220687.428|118.570 +637765.439|220679.308|117.751 +637769.968|220675.120|117.577 +637774.436|220670.993|117.339 +637778.868|220666.897|116.922 +637783.449|220662.669|117.083 +637787.970|220658.493|116.915 +637792.578|220654.238|116.998 +637797.132|220650.032|117.068 +637801.676|220645.835|117.107 +637810.814|220637.395|116.909 +637843.233|220607.445|117.467 +637847.933|220603.105|117.766 +637880.492|220573.003|116.455 +637889.544|220564.615|113.563 +637894.144|220560.357|112.630 +637908.162|220547.384|110.777 +637913.032|220542.892|111.523 +637917.757|220538.527|111.575 +637927.355|220529.660|111.761 +637937.084|220520.675|112.697 +637941.900|220516.228|112.816 +637946.749|220511.747|113.249 +637951.623|220507.248|113.483 +637961.380|220498.241|114.572 +637966.321|220493.685|115.446 +637985.959|220475.558|117.967 +637990.848|220471.044|118.638 +638005.542|220457.477|119.723 +638010.504|220452.896|120.299 +638015.403|220448.376|120.744 +638020.301|220443.850|120.792 +638025.205|220439.317|120.917 +638030.109|220434.788|121.049 +638035.004|220430.265|121.140 +638039.906|220425.738|121.301 +638044.843|220421.176|121.384 +638049.799|220416.597|121.698 +638054.707|220412.068|121.987 +638059.663|220407.490|122.341 +638064.619|220402.915|122.728 +638069.572|220398.343|123.121 +638074.503|220393.786|123.316 +638079.475|220389.193|123.426 +638084.385|220384.654|123.459 +638089.356|220380.064|123.624 +638094.328|220375.471|123.828 +638099.247|220370.929|123.999 +638104.246|220366.308|124.045 +638109.147|220361.779|124.063 +638114.146|220357.161|124.124 +638119.102|220352.583|124.273 +638124.061|220348.002|124.514 +638129.072|220343.375|124.810 +638134.022|220338.803|124.980 +638139.021|220334.185|125.185 +638144.013|220329.574|125.334 +638148.945|220325.017|125.374 +638153.938|220320.405|125.566 +638158.948|220315.779|126.087 +638163.953|220311.161|126.538 +638169.010|220306.491|127.129 +638173.966|220301.913|126.904 +638178.989|220297.271|127.050 +638183.915|220292.720|127.160 +638188.944|220288.075|127.446 +638193.967|220283.436|127.675 +638198.984|220278.800|127.849 +638203.995|220274.170|127.913 +638208.957|220269.586|128.028 +638213.968|220264.956|128.160 +638218.973|220260.332|128.208 +638223.978|220255.708|128.281 +638229.022|220251.045|128.236 +638234.018|220246.427|128.166 +638239.010|220241.816|128.047 +638244.000|220237.204|127.855 +638249.038|220232.547|127.727 +638254.022|220227.938|127.483 +638259.051|220223.287|127.199 +638263.989|220218.724|126.928 +638269.018|220214.076|126.632 +638274.047|220209.421|126.386 +638279.037|220204.813|126.248 +638284.072|220200.158|126.166 +638289.110|220195.501|126.145 +638294.100|220190.893|126.081 +638299.132|220186.238|125.992 +638304.171|220181.584|125.986 +638309.203|220176.933|125.922 +638314.238|220172.278|125.864 +638319.228|220167.670|125.883 +638324.306|220162.976|125.712 +638329.335|220158.328|125.505 +638334.319|220153.719|125.352 +638339.393|220149.028|125.087 +638344.423|220144.377|124.807 +638349.449|220139.729|124.356 +638354.475|220135.081|123.770 +638359.550|220130.387|123.392 +638364.585|220125.732|123.252 +638369.614|220121.081|122.746 +638374.692|220116.384|122.210 +638379.676|220111.775|121.591 +638384.757|220107.075|121.219 +638389.841|220102.375|120.914 +638394.876|220097.718|120.527 +638399.915|220093.061|120.320 +638410.040|220083.700|119.768 +638415.078|220079.043|119.622 +638440.383|220055.643|117.888 +638465.733|220032.198|115.391 +638470.827|220027.489|115.492 +638486.027|220013.444|115.291 +638491.120|220008.741|115.580 +638496.168|220004.077|115.745 +638501.227|219999.395|115.358 +638506.321|219994.692|115.614 +638516.397|219985.390|116.742 +638531.576|219971.372|117.684 +638541.693|219962.024|117.586 +638546.755|219957.345|117.415 +638551.803|219952.682|117.671 +638566.985|219938.658|117.711 +638577.123|219929.297|117.528 +638582.149|219924.655|117.370 +638587.221|219919.974|117.351 +638592.241|219915.338|117.373 +638597.285|219910.674|116.925 +638602.375|219905.974|116.641 +638607.414|219901.320|116.400 +638612.455|219896.662|116.163 +638617.500|219892.002|115.922 +638622.565|219887.320|115.352 +638627.619|219882.651|115.007 +638632.682|219877.975|114.602 +638637.748|219873.290|114.126 +638642.780|219868.639|113.496 +638647.852|219863.951|113.054 +638652.853|219859.334|113.017 +638657.831|219854.740|113.331 +638662.775|219850.183|114.178 +638667.697|219845.648|115.352 +638672.684|219841.045|115.568 +638677.682|219836.431|115.617 +638682.693|219831.804|115.580 +638687.649|219827.226|115.596 +638692.621|219822.636|115.446 +638697.583|219818.054|115.495 +638702.527|219813.491|115.739 +638717.401|219799.757|115.553 +638722.378|219795.161|115.513 +638727.304|219790.610|115.507 +638732.245|219786.047|115.379 +638737.195|219781.475|115.163 +638742.181|219776.867|114.590 +638747.058|219772.365|114.718 +638751.987|219767.814|114.824 +638756.894|219763.285|114.681 +638761.832|219758.719|114.212 +638766.757|219754.168|113.925 +638776.590|219745.085|113.630 +638781.491|219740.556|113.176 +638786.384|219736.039|112.886 +638791.297|219731.500|112.868 +638801.069|219722.475|112.505 +638805.912|219718.004|112.755 +638810.819|219713.468|112.438 +638815.718|219708.942|111.807 +638820.686|219704.345|110.987 +638825.553|219699.850|110.701 +638835.234|219690.910|110.673 +638840.153|219686.362|110.003 +638845.055|219681.827|109.106 +638854.863|219672.762|107.832 +638859.658|219668.333|107.939 +638864.434|219663.923|107.823 +638869.237|219659.488|107.915 +638874.050|219655.044|107.939 +638878.781|219650.673|107.872 +638883.591|219646.235|107.973 +638888.370|219641.822|107.963 +638893.100|219637.454|107.954 +638897.877|219633.043|107.997 +638902.607|219628.676|108.034 +638907.304|219624.344|108.722 +638911.995|219620.013|109.082 +638916.780|219615.594|108.777 +638921.511|219611.223|108.533 +638926.302|219606.797|108.241 +638931.091|219602.374|107.982 +638935.855|219597.973|107.589 +638940.661|219593.532|106.912 +638945.435|219589.125|106.510 +638950.208|219584.717|106.150 +638954.920|219580.368|106.205 +638959.586|219576.064|106.281 +638964.162|219571.849|106.982 +638968.801|219567.572|107.601 +638973.394|219563.339|108.189 +638978.021|219559.071|108.576 +638982.629|219554.822|109.106 +638987.208|219550.604|109.527 +638991.859|219546.312|109.795 +638996.458|219542.070|110.103 +639001.052|219537.833|110.457 +639005.681|219533.563|110.615 +639010.287|219529.317|110.935 +639014.856|219525.101|111.179 +639019.419|219520.895|111.481 +639024.021|219516.652|111.871 +639028.624|219512.403|111.956 +639033.174|219508.206|112.087 +639037.841|219503.899|112.130 +639042.440|219499.654|112.020 +639047.052|219495.395|111.828 +639051.664|219491.140|111.682 +639061.006|219482.512|111.048 +639065.575|219478.296|110.926 +639074.950|219469.634|109.963 +639084.216|219461.078|109.161 +639088.880|219456.768|108.631 +639084.808|219457.978|108.936 +639080.150|219462.276|109.454 +639061.454|219479.521|111.030 +639052.167|219488.089|111.630 +639047.461|219492.427|111.734 +639042.794|219496.731|111.932 +639038.143|219501.016|112.051 +639033.458|219505.338|112.106 +639028.810|219509.621|111.962 +639024.152|219513.912|111.889 +639019.489|219518.207|111.563 +639014.835|219522.492|111.191 +639010.211|219526.753|110.975 +639005.505|219531.088|110.661 +639000.774|219535.443|110.502 +638996.144|219539.707|110.064 +638991.392|219544.084|109.762 +638986.689|219548.416|109.490 +638981.965|219552.765|109.052 +638977.253|219557.105|108.558 +638972.525|219561.461|108.177 +638967.801|219565.807|107.445 +638963.101|219570.136|106.915 +638958.312|219574.543|106.302 +638953.509|219578.969|106.162 +638948.684|219583.416|106.180 +638943.764|219587.954|106.534 +638938.884|219592.456|106.997 +638933.877|219597.077|107.686 +638928.981|219601.591|107.979 +638924.041|219606.148|108.256 +638919.149|219610.659|108.579 +638914.214|219615.210|108.875 +638909.300|219619.742|109.042 +638899.638|219628.633|107.820 +638894.704|219633.181|107.832 +638889.808|219637.695|107.948 +638884.843|219642.270|107.869 +638879.915|219646.814|107.930 +638874.986|219651.359|108.003 +638870.024|219655.931|107.954 +638865.110|219660.460|107.960 +638860.139|219665.041|108.052 +638855.189|219669.604|107.994 +638850.236|219674.167|107.982 +638845.213|219678.800|108.180 +638840.053|219683.573|110.030 +638835.002|219688.231|110.539 +638829.985|219692.861|110.819 +638825.011|219697.442|110.710 +638820.009|219702.053|110.883 +638814.898|219706.772|111.661 +638809.841|219711.441|112.429 +638804.790|219716.096|112.694 +638789.779|219729.933|112.880 +638784.759|219734.560|112.965 +638779.730|219739.196|113.194 +638774.688|219743.851|113.596 +638769.613|219748.529|113.855 +638764.609|219753.144|113.953 +638759.573|219757.789|114.383 +638754.498|219762.468|114.751 +638749.506|219767.070|114.779 +638744.504|219771.679|114.416 +638739.417|219776.370|115.010 +638734.418|219780.978|115.202 +638729.361|219785.642|115.526 +638724.317|219790.293|115.766 +638719.309|219794.908|115.586 +638714.283|219799.541|115.666 +638699.226|219813.421|115.785 +638694.230|219818.024|115.568 +638689.173|219822.684|115.544 +638684.156|219827.308|115.638 +638679.152|219831.920|115.614 +638674.086|219836.589|115.806 +638669.044|219841.231|115.669 +638664.067|219845.809|115.291 +638659.105|219850.372|114.035 +638654.158|219854.920|113.191 +638649.120|219859.559|113.081 +638644.057|219864.223|113.313 +638638.991|219868.892|113.694 +638633.913|219873.574|114.294 +638628.844|219878.246|114.764 +638623.782|219882.913|115.205 +638618.758|219887.546|115.888 +638613.717|219892.188|116.016 +638608.666|219896.842|116.391 +638603.631|219901.481|116.525 +638598.590|219906.126|116.766 +638593.554|219910.766|117.001 +638588.510|219915.414|117.385 +638583.444|219920.080|117.303 +638578.452|219924.680|117.723 +638573.438|219929.297|117.626 +638563.388|219938.554|117.933 +638558.338|219943.202|117.623 +638553.318|219947.829|117.751 +638543.244|219957.107|117.827 +638533.219|219966.340|117.854 +638528.172|219970.985|117.562 +638518.159|219980.208|117.455 +638513.124|219984.838|116.681 +638493.013|220003.358|116.291 +638487.969|220007.997|115.870 +638462.810|220031.165|115.495 +638452.749|220040.437|116.175 +638417.508|220072.919|119.311 +638412.463|220077.568|119.723 +638407.422|220082.216|119.951 +638397.385|220091.461|120.427 +638392.346|220096.106|120.719 +638387.354|220100.705|120.997 +638382.315|220105.347|121.308 +638377.277|220109.989|121.695 +638372.245|220114.631|122.329 +638367.261|220119.225|122.902 +638362.180|220123.910|123.341 +638357.197|220128.503|123.792 +638352.162|220133.142|123.941 +638347.132|220137.775|124.511 +638342.149|220142.368|124.761 +638337.120|220147.004|125.145 +638332.084|220151.643|125.316 +638327.101|220156.234|125.621 +638322.066|220160.873|125.685 +638317.033|220165.509|125.910 +638312.041|220170.105|125.837 +638307.002|220174.744|125.840 +638302.013|220179.341|125.864 +638296.971|220183.983|125.910 +638291.979|220188.579|125.922 +638286.986|220193.176|125.992 +638281.945|220197.818|126.038 +638276.952|220202.414|126.151 +638271.959|220207.010|126.282 +638266.970|220211.607|126.474 +638261.934|220216.246|126.742 +638256.948|220220.836|127.065 +638251.958|220225.433|127.285 +638246.969|220230.026|127.547 +638242.022|220234.583|127.687 +638236.983|220239.225|127.858 +638232.037|220243.779|128.074 +638227.038|220248.381|128.147 +638222.085|220252.941|128.205 +638217.077|220257.549|128.156 +638212.069|220262.161|128.126 +638207.104|220266.730|128.053 +638202.133|220271.305|127.885 +638197.119|220275.920|127.812 +638192.153|220280.492|127.788 +638187.170|220285.076|127.501 +638182.189|220289.660|127.266 +638177.209|220294.241|127.099 +638172.229|220298.826|126.965 +638167.294|220303.367|126.828 +638162.283|220307.982|126.989 +638157.318|220312.548|126.413 +638152.346|220317.120|125.822 +638147.354|220321.713|125.666 +638142.419|220326.258|125.642 +638137.475|220330.805|125.557 +638132.571|220335.319|125.346 +638127.566|220339.922|125.133 +638122.647|220344.448|124.798 +638117.688|220349.014|124.599 +638112.777|220353.531|124.435 +638107.827|220358.088|124.429 +638102.923|220362.605|124.371 +638098.013|220367.122|124.307 +638093.044|220371.694|124.136 +638088.165|220376.184|123.908 +638083.245|220380.713|123.792 +638078.374|220385.194|123.737 +638073.452|220389.726|123.645 +638068.560|220394.225|123.392 +638063.662|220398.733|123.106 +638058.754|220403.247|122.722 +638053.838|220407.770|122.298 +638048.928|220412.284|121.999 +638044.020|220416.802|121.716 +638039.165|220421.270|121.512 +638034.264|220425.781|121.369 +638029.411|220430.246|121.237 +638024.562|220434.709|121.173 +638019.697|220439.186|120.994 +638014.823|220443.670|120.744 +638010.011|220448.099|120.664 +638005.109|220452.607|120.207 +638000.269|220457.060|119.912 +637990.506|220466.036|118.674 +637985.648|220470.504|118.290 +637966.223|220488.366|115.980 +637951.669|220501.747|113.995 +637942.013|220510.628|113.096 +637937.182|220515.069|112.478 +637927.693|220523.805|112.270 +637918.089|220532.647|111.652 +637903.809|220545.793|110.374 +637894.668|220554.236|112.630 +637889.983|220558.552|112.606 +637862.716|220583.720|117.836 +637858.101|220587.969|117.696 +637853.410|220592.288|117.412 +637844.150|220600.819|117.385 +637839.496|220605.104|117.077 +637821.168|220621.990|117.303 +637816.551|220626.245|117.016 +637811.887|220630.537|116.480 +637807.340|220634.725|116.376 +637802.819|220638.895|116.757 +637798.333|220643.031|117.056 +637793.773|220647.231|116.934 +637789.128|220651.504|116.330 +637784.696|220655.595|116.998 +637780.218|220659.719|117.132 +637775.707|220663.873|117.083 +637758.002|220680.198|118.409 +637744.834|220692.341|119.744 +637740.451|220696.383|119.976 +637731.734|220704.418|120.747 +637709.730|220724.690|120.704 +637705.390|220728.689|120.741 +637701.037|220732.700|120.741 +637696.648|220736.742|120.561 +637692.256|220740.786|120.387 +637687.843|220744.846|119.869 +637683.481|220748.864|119.637 +637679.147|220752.856|119.552 +637674.788|220756.868|119.113 +637661.782|220768.843|118.269 +637653.025|220776.899|117.141 +637640.202|220788.710|116.486 +637635.883|220792.682|115.940 +637631.543|220796.678|115.294 +637627.236|220800.637|114.605 +637622.847|220804.676|113.779 +637618.299|220808.848|112.002 +637614.087|220812.728|111.813 +637605.708|220820.443|111.237 +637601.358|220824.442|110.234 +637589.608|220835.293|112.798 +637585.731|220838.877|113.764 +637581.793|220842.514|114.218 +637569.845|220853.538|115.087 +637561.801|220860.954|114.916 +637553.678|220868.440|114.242 +637549.497|220872.290|113.520 +637545.412|220876.051|112.795 +637541.337|220879.803|112.121 +637529.514|220890.703|111.938 +637525.622|220894.293|111.880 +637521.845|220897.780|112.331 +637510.339|220908.393|112.557 +637506.700|220911.755|113.185 +637502.960|220915.209|113.608 +637499.183|220918.689|113.691 +637495.455|220922.131|113.971 +637491.792|220925.511|114.322 +637480.938|220935.536|115.952 +637477.298|220938.895|116.211 +637473.613|220942.293|116.303 +637470.081|220945.554|116.809 +637462.909|220952.172|117.403 +637441.405|220972.005|117.833 +637434.273|220978.583|117.720 +637430.725|220981.853|117.653 +637427.268|220985.041|117.741 +637420.231|220991.528|117.473 +637416.759|220994.731|117.531 +637409.663|221001.269|116.705 +637402.775|221007.615|116.312 +637635.719|220790.652|115.980 +637640.062|220786.644|116.650 +637644.390|220782.651|116.766 +637648.715|220778.655|117.156 +637657.393|220770.645|117.860 +637661.776|220766.600|118.327 +637679.262|220750.455|119.464 +637692.469|220738.260|120.277 +637696.898|220734.172|120.640 +637701.242|220730.161|120.579 +637723.346|220709.745|121.262 +637736.419|220697.657|120.027 +637740.863|220693.551|119.845 +637754.051|220681.353|118.592 +637758.517|220677.226|118.308 +637776.308|220660.779|116.894 +637780.849|220656.585|117.129 +637785.354|220652.422|116.876 +637789.902|220648.218|116.891 +637794.501|220643.973|116.925 +637812.689|220627.166|116.327 +637817.352|220622.862|116.879 +637835.793|220605.836|116.675 +637840.447|220601.544|116.943 +637845.153|220597.204|117.263 +637854.504|220588.575|117.592 +637863.822|220579.974|117.434 +637872.997|220571.497|116.367 +637882.013|220563.152|113.883 +637886.548|220558.958|112.828 +637895.872|220550.344|112.221 +637900.721|220545.872|112.767 +637914.776|220532.891|111.606 +637924.353|220524.052|112.008 +637929.138|220519.638|112.209 +637934.009|220515.146|112.737 +637948.447|220501.826|113.486 +637953.318|220497.339|114.108 +637958.243|220492.798|114.840 +637972.919|220479.267|116.821 +637977.854|220474.723|117.766 +637982.765|220470.197|118.561 +637987.666|220465.676|118.884 +638002.324|220452.155|120.058 +638007.243|220447.620|120.692 +638012.099|220443.139|120.753 +638016.969|220438.644|120.981 +638021.843|220434.148|121.250 +638026.787|220429.585|121.317 +638031.636|220425.110|121.405 +638036.586|220420.545|121.564 +638041.442|220416.064|121.762 +638046.392|220411.498|121.996 +638051.299|220406.972|122.298 +638056.267|220402.388|122.777 +638061.223|220397.816|123.164 +638066.124|220393.295|123.484 +638071.059|220388.745|123.685 +638076.034|220384.154|123.831 +638080.947|220379.619|123.883 +638085.866|220375.081|123.984 +638090.835|220370.493|124.148 +638095.809|220365.903|124.429 +638100.768|220361.331|124.502 +638105.721|220356.759|124.581 +638110.668|220352.190|124.606 +638115.624|220347.618|124.727 +638120.586|220343.040|124.999 +638125.594|220338.419|125.258 +638130.556|220333.844|125.575 +638135.549|220329.235|125.678 +638140.538|220324.633|125.788 +638145.473|220320.076|125.837 +638150.460|220315.477|125.925 +638155.477|220310.850|126.529 +638160.494|220306.226|127.148 +638165.447|220301.651|126.885 +638170.424|220297.058|126.965 +638175.450|220292.419|127.117 +638180.431|220287.825|127.334 +638185.460|220283.183|127.574 +638190.434|220278.593|127.730 +638195.403|220274.009|127.839 +638200.465|220269.336|127.931 +638205.434|220264.752|128.028 +638210.441|220260.128|128.065 +638215.498|220255.462|128.153 +638220.451|220250.890|128.096 +638225.456|220246.272|128.068 +638230.497|220241.614|127.946 +638235.444|220237.049|127.763 +638240.483|220232.394|127.602 +638245.524|220227.740|127.437 +638250.514|220223.134|127.242 +638255.546|220218.483|126.946 +638260.532|220213.881|126.626 +638265.568|220209.232|126.386 +638270.606|220204.578|126.239 +638275.596|220199.973|126.072 +638280.634|220195.318|125.974 +638285.627|220190.710|125.919 +638290.668|220186.058|125.867 +638295.706|220181.404|125.840 +638300.745|220176.753|125.770 +638305.737|220172.147|125.776 +638310.779|220167.493|125.831 +638315.811|220162.848|125.572 +638320.849|220158.197|125.672 +638325.885|220153.545|125.550 +638330.917|220148.900|125.319 +638335.949|220144.252|125.057 +638340.981|220139.607|124.807 +638345.968|220135.001|124.532 +638351.043|220130.310|124.029 +638356.078|220125.662|123.911 +638361.062|220121.057|123.420 +638366.143|220116.366|122.862 +638371.175|220111.715|122.332 +638376.210|220107.063|121.722 +638381.249|220102.409|121.408 +638386.287|220097.755|121.161 +638391.325|220093.103|120.905 +638396.412|220088.403|120.582 +638401.454|220083.746|120.235 +638406.450|220079.134|120.006 +638411.540|220074.434|119.814 +638416.584|220069.777|119.430 +638436.762|220051.138|118.110 +638451.920|220037.133|116.498 +638487.228|220004.541|116.367 +638492.230|219999.929|116.647 +638502.349|219990.581|116.077 +638507.396|219985.926|116.428 +638517.418|219976.688|117.888 +638527.535|219967.352|117.821 +638532.530|219962.740|118.168 +638537.590|219958.071|118.113 +638542.656|219953.395|117.997 +638547.612|219948.820|118.199 +638557.750|219939.459|117.836 +638562.706|219934.884|118.110 +638567.781|219930.194|117.796 +638572.798|219925.558|117.796 +638577.812|219920.928|117.906 +638582.899|219916.228|117.525 +638587.876|219911.625|117.406 +638592.960|219906.928|117.117 +638597.998|219902.271|116.870 +638602.991|219897.656|116.583 +638608.036|219892.996|116.303 +638613.074|219888.338|116.099 +638618.121|219883.672|115.812 +638623.193|219878.981|115.154 +638628.210|219874.345|114.687 +638633.279|219869.657|114.160 +638638.302|219865.012|113.645 +638643.313|219860.382|113.392 +638648.370|219855.709|113.215 +638653.344|219851.116|113.602 +638658.261|219846.587|114.837 +638663.253|219841.981|115.647 +638668.231|219837.388|115.998 +638673.242|219832.755|115.864 +638678.252|219828.125|115.748 +638683.263|219823.495|115.693 +638688.293|219818.847|115.410 +638693.267|219814.257|115.897 +638708.251|219800.416|115.992 +638713.256|219795.789|115.571 +638718.270|219791.159|115.647 +638723.220|219786.587|115.940 +638728.218|219781.969|115.681 +638733.208|219777.357|115.541 +638738.219|219772.727|115.227 +638743.248|219768.076|114.721 +638748.232|219763.474|114.757 +638753.163|219758.917|114.852 +638758.183|219754.278|114.541 +638763.164|219749.672|114.157 +638768.190|219745.027|113.867 +638773.125|219740.464|113.529 +638778.111|219735.856|113.200 +638783.089|219731.256|113.014 +638788.066|219726.657|112.846 +638802.873|219712.977|112.743 +638812.834|219703.769|111.712 +638817.769|219699.203|111.191 +638822.777|219694.574|110.518 +638827.660|219690.062|110.545 +638832.646|219685.451|110.131 +638837.511|219680.958|109.957 +638842.631|219676.209|108.015 +638852.412|219667.169|107.790 +638857.268|219662.688|107.829 +638862.169|219658.159|107.884 +638866.982|219653.715|107.912 +638871.844|219649.222|107.936 +638876.717|219644.720|107.912 +638881.536|219640.267|107.936 +638886.361|219635.811|107.942 +638891.177|219631.361|108.043 +638896.020|219626.886|107.954 +638900.793|219622.476|108.046 +638905.530|219618.108|108.805 +638910.282|219613.722|109.094 +638915.119|219609.251|108.774 +638919.969|219604.767|108.399 +638924.745|219600.354|108.216 +638929.600|219595.864|107.854 +638934.373|219591.450|107.375 +638939.195|219586.988|106.942 +638944.051|219582.492|106.290 +638948.778|219578.121|106.223 +638953.539|219573.723|106.302 +638958.245|219569.377|106.427 +638962.884|219565.091|107.003 +638967.527|219560.806|107.604 +638972.108|219556.575|108.262 +638976.741|219552.296|108.610 +638981.337|219548.053|109.210 +638985.976|219543.764|109.521 +638990.630|219539.467|109.780 +638995.221|219535.224|110.124 +638999.820|219530.978|110.448 +639004.484|219526.671|110.697 +639009.056|219522.443|110.893 +639013.612|219518.234|111.216 +639018.221|219513.976|111.533 +639022.793|219509.752|111.789 +639027.386|219505.509|111.941 +639031.983|219501.263|112.084 +639036.622|219496.971|111.990 +639041.212|219492.728|111.923 +639045.769|219488.513|111.749 +639050.393|219484.237|111.533 +639055.017|219479.960|111.319 +639059.649|219475.675|110.795 +639068.982|219467.037|109.743 +639078.108|219458.600|109.390 +639077.264|219456.664|109.231 +639072.668|219460.901|109.716 +639068.044|219465.159|110.088 +639058.915|219473.563|110.222 +639054.203|219477.909|111.176 +639049.600|219482.146|111.231 +639044.989|219486.395|111.661 +639040.377|219490.644|111.828 +639035.741|219494.914|111.853 +639031.151|219499.141|111.932 +639026.539|219503.387|111.850 +639021.994|219507.572|111.694 +639017.352|219511.849|111.551 +639012.802|219516.034|111.152 +639008.233|219520.237|110.877 +639003.566|219524.534|110.618 +638998.942|219528.789|110.423 +638994.349|219533.017|110.051 +638989.701|219537.296|109.719 +638985.034|219541.591|109.527 +638980.389|219545.867|109.222 +638975.753|219550.132|108.539 +638971.117|219554.399|108.207 +638966.475|219558.669|107.579 +638961.830|219562.942|106.997 +638957.182|219567.219|106.446 +638952.433|219571.590|106.250 +638947.657|219575.991|106.275 +638942.902|219580.368|106.153 +638937.994|219584.891|106.784 +638933.118|219589.390|107.592 +638928.317|219593.813|107.540 +638923.425|219598.324|108.155 +638918.600|219602.768|108.323 +638913.744|219607.245|108.747 +638908.852|219611.753|109.097 +638904.037|219616.185|108.543 +638889.568|219629.505|107.875 +638884.691|219633.994|107.842 +638879.805|219638.496|107.927 +638874.888|219643.023|107.875 +638870.009|219647.518|107.951 +638865.092|219652.051|107.973 +638860.182|219656.571|107.936 +638855.223|219661.137|107.933 +638850.312|219665.660|107.960 +638845.353|219670.229|108.000 +638840.391|219674.801|108.104 +638835.228|219679.574|109.993 +638830.272|219684.140|110.109 +638825.255|219688.764|110.365 +638815.187|219698.042|111.271 +638810.158|219702.681|111.752 +638805.114|219707.332|112.395 +638800.060|219711.990|112.724 +638795.022|219716.632|112.926 +638785.045|219725.819|112.895 +638779.980|219730.488|113.002 +638774.935|219735.139|113.389 +638769.903|219739.775|113.688 +638764.810|219744.469|114.136 +638759.781|219749.108|114.498 +638754.660|219753.824|114.794 +638749.664|219758.426|114.849 +638744.571|219763.117|114.916 +638739.527|219767.768|115.041 +638734.461|219772.438|115.428 +638729.368|219777.129|115.590 +638714.137|219791.159|115.739 +638709.071|219795.825|115.705 +638703.990|219800.507|115.900 +638688.750|219814.543|115.955 +638683.736|219819.158|115.376 +638678.600|219823.894|115.821 +638673.495|219828.597|115.843 +638668.383|219833.313|116.041 +638663.281|219838.016|116.080 +638658.267|219842.630|115.574 +638653.259|219847.236|114.270 +638648.214|219851.878|113.505 +638643.085|219856.606|113.294 +638638.016|219861.281|113.694 +638632.862|219866.033|113.944 +638627.744|219870.754|114.453 +638622.614|219875.485|115.178 +638617.494|219880.212|115.833 +638612.358|219884.946|115.983 +638607.261|219889.646|116.281 +638602.168|219894.343|116.617 +638597.026|219899.086|116.946 +638591.939|219903.780|117.266 +638586.812|219908.501|117.373 +638576.653|219917.870|117.824 +638571.533|219922.589|117.940 +638566.424|219927.298|117.869 +638561.352|219931.971|117.982 +638556.238|219936.689|118.101 +638541.007|219950.725|118.132 +638535.941|219955.398|118.348 +638510.539|219978.803|117.741 +638505.513|219983.427|116.699 +638500.429|219988.106|115.910 +638485.207|220002.139|116.477 +638475.121|220011.426|115.629 +638459.915|220025.444|115.852 +638454.858|220030.107|116.437 +638449.759|220034.810|116.763 +638434.604|220048.791|118.421 +638414.478|220067.351|119.293 +638409.434|220072.002|119.918 +638399.400|220081.256|120.469 +638394.358|220085.904|120.631 +638389.369|220090.506|121.055 +638384.330|220095.152|121.305 +638379.338|220099.754|121.558 +638374.348|220104.357|121.801 +638369.313|220108.999|122.283 +638364.329|220113.598|122.923 +638359.346|220118.198|123.441 +638354.362|220122.794|123.840 +638349.376|220127.390|124.164 +638344.392|220131.987|124.468 +638339.363|220136.626|124.779 +638334.425|220141.177|125.044 +638329.442|220145.773|125.355 +638324.458|220150.369|125.553 +638319.517|220154.923|125.599 +638314.482|220159.562|125.706 +638309.535|220164.119|125.590 +638304.549|220168.718|125.718 +638299.556|220173.318|125.691 +638294.615|220177.875|125.736 +638289.623|220182.474|125.764 +638284.679|220187.031|125.767 +638279.735|220191.588|125.803 +638274.745|220196.187|125.938 +638269.801|220200.744|126.066 +638264.812|220205.343|126.224 +638259.874|220209.897|126.456 +638254.936|220214.451|126.703 +638249.950|220219.044|127.013 +638245.058|220223.558|127.196 +638240.117|220228.112|127.413 +638235.173|220232.672|127.568 +638230.223|220237.231|127.660 +638225.279|220241.788|127.858 +638220.332|220246.351|127.980 +638215.428|220250.871|128.038 +638210.475|220255.437|128.065 +638205.510|220260.009|127.964 +638200.551|220264.581|127.928 +638195.683|220269.065|127.861 +638190.715|220273.643|127.751 +638185.795|220278.175|127.681 +638180.824|220282.756|127.547 +638175.892|220287.298|127.343 +638171.003|220291.803|127.074 +638166.026|220296.390|126.934 +638161.140|220300.889|126.794 +638156.184|220305.458|127.044 +638151.283|220309.975|126.690 +638146.311|220314.550|126.081 +638141.380|220319.095|126.072 +638136.491|220323.600|126.011 +638131.550|220328.150|125.904 +638126.646|220332.668|125.700 +638121.693|220337.233|125.483 +638116.773|220341.763|125.145 +638111.860|220346.286|124.901 +638106.916|220350.843|124.895 +638102.015|220355.360|124.843 +638097.107|220359.880|124.767 +638092.249|220364.361|124.682 +638087.281|220368.936|124.496 +638082.404|220373.428|124.285 +638077.494|220377.955|124.255 +638072.608|220382.454|124.014 +638067.737|220386.943|123.917 +638062.805|220391.485|123.761 +638057.916|220395.987|123.545 +638053.006|220400.510|123.127 +638048.129|220405.000|122.597 +638043.207|220409.532|122.137 +638038.308|220414.046|121.929 +638033.456|220418.515|121.756 +638028.561|220423.026|121.664 +638023.724|220427.482|121.664 +638018.868|220431.956|121.509 +638013.997|220436.443|121.259 +638009.163|220440.893|120.930 +638004.287|220445.389|120.649 +637999.416|220449.872|120.497 +637994.545|220454.356|119.915 +637979.909|220467.831|118.132 +637975.062|220472.294|117.912 +637965.220|220481.346|115.846 +637955.564|220490.237|115.081 +637950.614|220494.791|114.148 +637940.998|220503.652|113.474 +637936.100|220508.156|112.685 +637931.348|220512.533|112.691 +637921.753|220521.367|112.026 +637916.940|220525.795|111.627 +637912.243|220530.123|111.758 +637907.494|220534.497|111.908 +637902.739|220538.874|111.636 +637888.673|220551.834|112.075 +637879.480|220560.314|113.651 +637861.359|220577.032|117.327 +637847.354|220589.928|116.882 +637842.696|220594.217|116.845 +637838.018|220598.521|116.382 +637810.385|220623.969|116.220 +637805.767|220628.220|115.977 +637778.710|220653.147|117.074 +637769.651|220661.489|117.056 +637765.259|220665.537|117.723 +637752.043|220677.717|118.692 +637747.641|220681.774|119.061 +637712.696|220713.973|120.954 +637703.906|220722.066|120.689 +637695.155|220730.121|120.448 +637690.830|220734.102|120.347 +637686.367|220738.208|119.826 +637682.073|220742.161|119.668 +637673.383|220750.162|119.396 +637669.027|220754.167|118.988 +637655.991|220766.164|118.031 +637651.666|220770.142|117.598 +637647.359|220774.107|117.275 +637643.110|220778.018|117.001 +637634.527|220785.915|116.361 +637630.186|220789.905|115.465 +637625.874|220793.870|114.974 +637621.612|220797.790|114.501 +637608.509|220809.830|111.484 +637604.342|220813.667|111.289 +637600.203|220817.477|111.014 +637576.417|220839.395|114.203 +637552.529|220861.384|114.575 +637544.458|220868.803|113.742 +637540.337|220872.588|112.877 +637536.232|220876.362|112.097 +637528.161|220883.777|110.966 +637520.693|220890.660|111.990 +637512.960|220897.774|111.740 +637509.223|220901.215|112.176 +637505.499|220904.647|112.657 +637501.768|220908.082|112.926 +637487.128|220921.567|114.340 +637483.559|220924.855|114.870 +637480.139|220928.007|115.797 +637472.854|220934.713|116.321 +637469.203|220938.072|116.135 +637465.731|220941.272|116.888 +637455.161|220951.007|117.726 +637447.992|220957.603|117.799 +637440.960|220964.074|118.028 +637437.333|220967.409|117.635 +637433.852|220970.609|117.610 +637430.274|220973.901|117.412 +637426.817|220977.077|117.306 +637423.355|220980.265|117.370 +637419.853|220983.487|117.309 +637631.823|220786.330|116.175 +637636.093|220782.389|116.489 +637648.983|220770.486|117.168 +637653.403|220766.408|117.796 +637657.743|220762.403|118.296 +637662.056|220758.419|118.439 +637675.141|220746.337|119.457 +637683.911|220738.238|119.866 +637692.716|220730.106|120.274 +637710.379|220713.796|120.805 +637714.827|220709.685|120.832 +637732.478|220693.375|120.311 +637745.721|220681.131|119.281 +637750.107|220677.077|118.805 +637763.479|220664.714|117.827 +637790.603|220639.647|116.736 +637795.093|220635.493|116.132 +637799.677|220631.259|116.105 +637804.298|220626.992|116.324 +637822.744|220609.948|116.278 +637827.347|220605.693|116.178 +637846.113|220588.353|117.040 +637850.768|220584.052|117.062 +637873.881|220562.664|114.700 +637887.700|220549.871|112.365 +637911.335|220528.017|111.432 +637930.595|220510.229|112.764 +637940.248|220501.314|113.587 +637945.085|220496.845|113.944 +637949.934|220492.368|114.419 +637954.869|220487.814|115.224 +637959.719|220483.337|115.763 +637979.314|220465.250|118.311 +637984.218|220460.720|119.113 +637989.114|220456.200|119.409 +637994.003|220451.686|120.137 +637998.913|220447.154|120.625 +638003.777|220442.658|120.753 +638008.657|220438.150|121.052 +638013.598|220433.590|121.469 +638018.460|220429.097|121.646 +638023.364|220424.565|121.786 +638028.256|220420.042|121.868 +638033.151|220415.521|121.954 +638038.049|220410.992|122.143 +638042.960|220406.460|122.445 +638047.931|220401.869|122.938 +638052.853|220397.322|123.444 +638057.813|220392.744|123.874 +638062.702|220388.227|124.087 +638067.627|220383.676|124.218 +638072.550|220379.128|124.325 +638077.481|220374.572|124.581 +638082.437|220369.990|124.590 +638087.360|220365.443|124.791 +638092.328|220360.855|124.968 +638097.235|220356.320|125.047 +638102.240|220351.696|125.163 +638107.135|220347.170|125.139 +638112.128|220342.555|125.166 +638117.093|220337.971|125.483 +638122.058|220333.384|125.809 +638127.057|220328.766|125.980 +638132.001|220324.197|126.133 +638136.991|220319.589|126.224 +638141.974|220314.983|126.297 +638146.973|220310.365|126.599 +638151.981|220305.741|127.077 +638156.940|220301.157|126.849 +638161.963|220296.515|126.922 +638166.949|220291.910|127.157 +638171.976|220287.264|127.337 +638177.008|220282.616|127.596 +638181.976|220278.026|127.687 +638186.993|220273.390|127.748 +638192.010|220268.757|127.858 +638197.024|220264.127|127.952 +638202.032|220259.497|127.983 +638207.040|220254.870|128.010 +638212.045|220250.246|128.041 +638217.089|220245.583|127.925 +638222.088|220240.965|127.849 +638227.081|220236.351|127.657 +638232.122|220231.693|127.519 +638237.118|220227.075|127.394 +638242.156|220222.418|127.236 +638247.191|220217.767|126.995 +638252.178|220213.155|126.727 +638257.210|220208.504|126.425 +638262.245|220203.850|126.255 +638267.281|220199.195|126.020 +638272.322|220194.538|125.950 +638277.309|220189.929|125.724 +638282.396|220185.226|125.694 +638287.437|220180.569|125.712 +638297.517|220171.257|125.715 +638302.558|220166.600|125.809 +638307.588|220161.952|125.520 +638312.681|220157.249|125.761 +638317.713|220152.597|125.642 +638322.745|220147.946|125.450 +638327.823|220143.252|125.078 +638332.862|220138.598|125.160 +638337.888|220133.950|124.755 +638342.969|220129.253|124.618 +638348.004|220124.601|124.392 +638353.036|220119.950|124.194 +638358.111|220115.253|123.508 +638363.144|220110.602|123.048 +638368.173|220105.948|122.399 +638373.257|220101.248|122.070 +638378.341|220096.548|121.917 +638383.379|220091.893|121.521 +638388.415|220087.236|121.234 +638393.502|220082.533|120.963 +638403.581|220073.215|120.335 +638408.623|220068.555|119.945 +638413.713|220063.852|119.857 +638423.799|220054.528|119.314 +638469.296|220012.462|116.010 +638479.394|220003.135|116.205 +638494.494|219989.188|116.601 +638504.553|219979.894|116.659 +638509.585|219975.252|117.479 +638514.572|219970.650|118.186 +638524.587|219961.396|118.135 +638534.640|219952.112|118.488 +638549.669|219938.228|118.601 +638554.647|219933.623|118.269 +638559.667|219928.987|118.125 +638564.641|219924.393|117.982 +638569.658|219919.760|117.970 +638574.629|219915.170|117.967 +638584.654|219905.907|117.254 +638589.626|219901.320|117.342 +638594.615|219896.708|117.059 +638599.608|219892.097|116.772 +638604.604|219887.482|116.483 +638609.602|219882.864|116.172 +638614.555|219878.289|115.852 +638619.572|219873.650|115.260 +638624.595|219869.008|114.672 +638629.564|219864.418|114.255 +638634.568|219859.794|114.020 +638639.540|219855.200|113.636 +638644.484|219850.638|113.681 +638649.418|219846.084|113.941 +638654.316|219841.573|115.416 +638659.227|219837.043|116.001 +638664.128|219832.520|116.056 +638669.136|219827.893|115.940 +638674.046|219823.361|115.916 +638679.036|219818.749|115.468 +638683.952|219814.217|116.068 +638728.264|219773.300|115.766 +638738.164|219764.156|115.373 +638743.074|219759.621|115.120 +638748.037|219755.037|114.861 +638752.932|219750.517|114.840 +638757.900|219745.929|114.605 +638762.789|219741.412|114.200 +638772.668|219732.283|113.438 +638777.669|219727.660|112.968 +638782.540|219723.161|112.877 +638787.493|219718.589|112.956 +638797.298|219709.536|112.767 +638802.224|219704.982|112.264 +638807.211|219700.374|111.667 +638812.136|219695.820|111.231 +638817.120|219691.215|110.749 +638822.070|219686.640|110.173 +638826.992|219682.095|109.881 +638831.838|219677.621|109.853 +638836.941|219672.893|108.049 +638846.713|219663.868|107.893 +638851.565|219659.387|107.921 +638856.466|219654.861|107.963 +638861.276|219650.423|107.997 +638866.193|219645.885|107.979 +638871.014|219641.432|107.957 +638875.885|219636.933|107.945 +638880.707|219632.480|107.963 +638885.572|219627.990|108.052 +638890.412|219623.521|107.979 +638895.191|219619.108|108.012 +638900.025|219614.646|108.030 +638904.713|219610.327|109.173 +638909.560|219605.852|109.122 +638914.415|219601.362|108.674 +638919.255|219596.891|108.372 +638924.132|219592.383|107.832 +638928.902|219587.982|108.094 +638933.809|219583.449|107.421 +638938.686|219578.941|106.631 +638943.539|219574.458|106.378 +638948.297|219570.069|106.482 +638953.070|219565.661|106.497 +638957.806|219561.293|106.778 +638962.455|219557.008|107.339 +638967.127|219552.701|108.082 +638971.803|219548.388|108.472 +638976.488|219544.069|108.832 +638981.133|219539.787|109.454 +638985.796|219535.483|109.664 +638990.496|219531.149|109.966 +638995.129|219526.872|110.384 +638999.750|219522.611|110.594 +639004.420|219518.301|110.829 +639009.074|219514.010|111.170 +639013.682|219509.758|111.508 +639018.306|219505.494|111.764 +639022.903|219501.251|111.901 +639027.560|219496.953|111.999 +639032.184|219492.683|111.999 +639036.820|219488.406|111.969 +639041.462|219484.118|111.904 +639050.789|219475.504|111.325 +639055.446|219471.203|110.975 +639060.098|219466.909|110.664 +639064.755|219462.605|110.347 +639069.388|219458.326|109.911 +639066.910|219458.493|109.954 +639062.195|219462.840|110.283 +639057.482|219467.186|110.640 +639052.779|219471.527|110.963 +639048.085|219475.855|111.252 +639043.358|219480.213|111.478 +639038.661|219484.538|111.834 +639033.958|219488.873|111.962 +639029.300|219493.155|111.825 +639024.631|219497.456|111.798 +639019.971|219501.748|111.734 +639015.280|219506.064|111.560 +639010.671|219510.306|111.228 +639006.056|219514.549|110.926 +639001.341|219518.890|110.661 +638996.720|219523.141|110.445 +638992.078|219527.412|110.054 +638987.387|219531.728|109.689 +638982.727|219536.016|109.463 +638978.064|219540.308|108.948 +638973.403|219544.590|108.411 +638968.764|219548.861|108.094 +638964.067|219553.180|107.512 +638959.419|219557.456|106.942 +638954.752|219561.748|106.516 +638949.991|219566.131|106.406 +638945.279|219570.468|106.327 +638940.503|219574.866|106.363 +638935.644|219579.347|107.003 +638930.798|219583.812|107.595 +638925.912|219588.317|108.134 +638921.206|219592.645|107.781 +638916.341|219597.129|108.229 +638911.538|219601.554|108.622 +638906.688|219606.023|109.030 +638901.900|219610.427|108.628 +638887.602|219623.589|107.805 +638882.771|219628.033|107.799 +638877.943|219632.480|107.817 +638873.118|219636.920|107.805 +638868.296|219641.364|107.829 +638863.468|219645.808|107.906 +638858.603|219650.286|107.896 +638853.741|219654.764|107.887 +638848.880|219659.241|107.915 +638844.024|219663.709|107.899 +638839.120|219668.227|107.921 +638834.225|219672.738|108.317 +638829.156|219677.419|109.832 +638824.313|219681.876|109.826 +638819.320|219686.478|110.310 +638814.383|219691.029|110.789 +638809.417|219695.601|111.094 +638794.564|219709.292|112.767 +638789.587|219713.877|112.868 +638784.689|219718.385|112.709 +638779.708|219722.972|112.898 +638774.783|219727.510|113.057 +638769.760|219732.140|113.721 +638764.831|219736.682|113.983 +638759.799|219741.318|114.340 +638754.818|219745.905|114.690 +638749.865|219750.468|114.782 +638734.900|219764.251|115.349 +638724.905|219773.459|115.724 +638709.912|219787.263|115.940 +638679.822|219814.970|116.025 +638674.845|219819.545|115.586 +638669.767|219824.220|115.916 +638664.756|219828.829|115.980 +638659.699|219833.483|116.092 +638654.664|219838.116|115.888 +638649.693|219842.679|114.739 +638639.662|219851.899|113.736 +638634.565|219856.587|113.794 +638629.451|219861.296|114.175 +638624.391|219865.954|114.495 +638619.274|219870.669|115.023 +638614.202|219875.339|115.626 +638609.093|219880.042|116.071 +638604.003|219884.729|116.294 +638598.901|219889.426|116.729 +638593.814|219894.108|116.949 +638588.675|219898.839|117.281 +638583.588|219903.520|117.549 +638573.380|219912.917|117.958 +638568.311|219917.581|117.985 +638563.196|219922.284|117.958 +638558.128|219926.954|118.098 +638553.007|219931.666|118.314 +638547.889|219936.375|118.458 +638527.498|219955.135|118.677 +638522.390|219959.835|118.778 +638512.206|219969.202|118.034 +638502.038|219978.541|116.574 +638496.951|219983.220|115.974 +638491.830|219987.938|116.751 +638476.535|220002.005|116.336 +638466.288|220011.435|116.355 +638461.189|220016.126|116.333 +638435.680|220039.617|118.738 +638430.590|220044.299|118.942 +638425.497|220048.987|118.961 +638415.261|220058.408|119.656 +638410.217|220063.053|119.988 +638394.946|220077.107|120.856 +638389.859|220081.792|121.228 +638384.772|220086.477|121.524 +638379.734|220091.113|121.875 +638374.647|220095.795|122.070 +638369.563|220100.477|122.393 +638364.527|220105.113|122.761 +638359.443|220109.791|123.185 +638354.414|220114.427|123.837 +638349.382|220119.060|124.154 +638344.298|220123.736|124.365 +638339.265|220128.369|124.737 +638334.233|220133.002|124.901 +638329.198|220137.635|125.163 +638324.166|220142.268|125.334 +638319.176|220146.858|125.474 +638314.141|220151.491|125.608 +638309.105|220156.127|125.669 +638294.079|220169.953|125.593 +638289.086|220174.549|125.575 +638284.045|220179.188|125.611 +638279.095|220183.742|125.575 +638274.102|220188.341|125.590 +638269.113|220192.932|125.831 +638264.169|220197.485|125.953 +638259.179|220202.079|126.148 +638254.238|220206.629|126.343 +638249.297|220211.177|126.620 +638244.357|220215.725|126.882 +638239.416|220220.275|127.111 +638234.472|220224.829|127.285 +638229.525|220229.383|127.455 +638224.578|220233.936|127.565 +638219.628|220238.493|127.699 +638214.727|220243.004|127.849 +638209.774|220247.564|127.894 +638204.867|220252.081|127.992 +638199.953|220256.601|127.967 +638195.040|220261.125|127.913 +638190.123|220265.651|127.873 +638185.201|220270.180|127.763 +638180.278|220274.707|127.699 +638175.359|220279.236|127.650 +638170.476|220283.729|127.498 +638165.541|220288.267|127.300 +638160.607|220292.809|127.132 +638155.718|220297.308|126.910 +638150.826|220301.809|126.724 +638145.970|220306.281|127.084 +638141.014|220310.838|126.736 +638136.155|220315.306|126.425 +638131.215|220319.854|126.303 +638126.368|220324.313|126.209 +638121.467|220328.821|126.066 +638116.560|220333.335|125.861 +638111.695|220337.809|125.611 +638106.788|220342.327|125.438 +638101.935|220346.792|125.410 +638097.077|220351.263|125.316 +638092.218|220355.732|125.261 +638087.351|220360.212|125.112 +638082.486|220364.687|125.023 +638077.628|220369.161|125.008 +638072.800|220373.602|124.837 +638067.926|220378.086|124.715 +638063.095|220382.530|124.587 +638058.224|220387.013|124.538 +638053.369|220391.479|124.191 +638048.498|220395.956|123.688 +638043.624|220400.437|123.207 +638038.750|220404.920|122.758 +638033.938|220409.346|122.469 +638029.030|220413.860|122.231 +638024.233|220418.274|122.155 +638019.380|220422.742|122.009 +638014.613|220427.125|121.811 +638009.742|220431.606|121.576 +638004.902|220436.059|121.173 +638000.105|220440.466|120.783 +637995.289|220444.898|120.677 +637980.698|220458.312|118.802 +637966.186|220471.654|117.114 +637961.328|220476.116|116.013 +637951.663|220485.001|115.215 +637946.844|220489.433|114.553 +637942.022|220493.864|113.925 +637932.402|220502.710|112.926 +637927.660|220507.077|112.606 +637922.832|220511.525|112.432 +637918.071|220515.908|112.017 +637913.319|220520.281|111.731 +637894.433|220537.679|111.289 +637885.189|220546.205|112.450 +637880.483|220550.539|112.285 +637875.920|220554.751|113.139 +637866.943|220563.039|115.565 +637862.353|220567.276|116.245 +637853.264|220575.658|117.248 +637848.512|220580.031|116.882 +637843.879|220584.299|116.665 +637820.690|220605.653|115.775 +637816.063|220609.917|115.733 +637797.796|220626.745|115.724 +637793.240|220630.945|115.897 +637788.732|220635.100|116.086 +637784.266|220639.218|116.556 +637775.265|220647.511|116.806 +637766.237|220655.829|116.955 +637761.854|220659.871|117.394 +637757.435|220663.946|117.906 +637752.988|220668.046|118.284 +637748.586|220672.106|118.641 +637744.249|220676.105|119.098 +637739.817|220680.192|119.601 +637735.455|220684.212|119.942 +637731.082|220688.245|120.216 +637717.862|220700.425|120.646 +637713.485|220704.457|120.704 +637709.072|220708.523|120.579 +637704.668|220712.580|120.533 +637700.315|220716.588|120.509 +637682.749|220732.767|119.765 +637678.442|220736.733|119.811 +637673.992|220740.829|119.387 +637669.652|220744.825|119.043 +637656.607|220756.837|118.235 +637647.856|220764.887|117.376 +637643.549|220768.852|117.059 +637635.021|220776.707|116.635 +637630.665|220780.715|116.147 +637626.340|220784.693|115.583 +637621.960|220788.722|114.764 +637617.705|220792.639|114.331 +637613.157|220796.815|112.773 +637608.884|220800.744|112.057 +637604.611|220804.679|111.600 +637591.934|220816.346|110.298 +637584.287|220823.418|112.926 +637568.452|220838.027|114.672 +637548.436|220856.473|114.687 +637540.328|220863.938|113.681 +637532.068|220871.537|112.115 +637523.860|220879.090|110.384 +637508.690|220893.080|111.719 +637504.990|220896.494|112.298 +637501.295|220899.901|112.691 +637497.580|220903.334|113.218 +637490.228|220910.112|113.770 +637486.500|220913.550|114.066 +637482.739|220917.016|114.020 +637475.875|220923.359|115.977 +637472.187|220926.760|116.254 +637468.535|220930.125|116.263 +637464.905|220933.472|116.373 +637461.306|220936.788|116.403 +637457.633|220940.172|116.367 +637454.158|220943.381|116.903 +637443.642|220953.077|117.598 +637440.113|220956.329|117.549 +637436.504|220959.655|117.412 +637433.044|220962.843|117.455 +637429.561|220966.052|117.406 +637422.507|220972.548|117.031 +637419.072|220975.715|117.001 +637415.622|220978.894|116.925 +637412.172|220982.073|116.650 +637408.679|220985.288|116.446 +637401.891|220991.537|115.989 +637631.744|220777.652|116.096 +637640.361|220769.709|116.891 +637648.916|220761.818|117.467 +637653.245|220757.828|117.906 +637657.588|220753.823|118.196 +637661.867|220749.876|118.430 +637666.199|220745.883|118.692 +637674.959|220737.805|119.515 +637679.314|220733.788|119.717 +637683.658|220729.780|119.860 +637688.050|220725.732|120.009 +637692.399|220721.718|120.232 +637696.761|220717.695|120.259 +637701.120|220713.671|120.308 +637705.533|220709.605|120.646 +637714.284|220701.528|120.451 +637727.415|220689.409|120.314 +637731.862|220685.307|120.128 +637736.257|220681.247|119.960 +637740.573|220677.260|119.360 +637749.382|220669.128|118.610 +637753.792|220665.053|118.296 +637758.242|220660.944|117.943 +637771.590|220648.618|116.934 +637780.663|220640.245|116.772 +637789.600|220631.991|115.867 +637794.187|220627.757|115.849 +637798.668|220623.621|115.498 +637803.304|220619.345|115.510 +637812.543|220610.819|115.715 +637817.099|220606.613|115.602 +637821.754|220602.319|115.492 +637845.071|220580.803|116.577 +637859.116|220567.839|116.589 +637868.169|220559.464|114.669 +637872.728|220555.245|113.432 +637886.682|220542.352|112.029 +637896.030|220533.717|111.252 +637900.813|220529.304|111.700 +637924.743|220507.224|112.569 +637939.309|220493.791|113.883 +637944.192|220489.286|114.218 +637949.087|220484.775|115.062 +637958.905|220475.726|116.736 +637963.736|220471.269|116.754 +637968.698|220466.697|117.933 +637983.368|220453.170|119.384 +637998.002|220439.674|120.832 +638002.939|220435.120|121.173 +638007.825|220430.612|121.539 +638012.705|220426.113|121.847 +638017.573|220421.621|122.109 +638022.526|220417.052|122.249 +638027.375|220412.577|122.368 +638032.282|220408.048|122.597 +638037.193|220403.518|122.890 +638042.115|220398.980|123.353 +638047.044|220394.435|123.895 +638052.009|220389.854|124.383 +638056.953|220385.294|124.645 +638061.866|220380.759|124.633 +638066.795|220376.211|124.804 +638071.672|220371.712|124.929 +638076.637|220367.128|125.035 +638081.557|220362.590|125.157 +638086.513|220358.015|125.206 +638091.426|220353.479|125.343 +638096.385|220348.904|125.447 +638101.338|220344.335|125.514 +638106.282|220339.769|125.532 +638111.241|220335.197|125.703 +638116.197|220330.622|125.907 +638121.150|220326.053|126.087 +638126.100|220321.484|126.258 +638131.093|220316.879|126.404 +638136.085|220312.270|126.562 +638141.051|220307.692|127.065 +638146.007|220303.117|126.733 +638150.941|220298.560|126.861 +638155.928|220293.961|127.044 +638160.960|220289.316|127.221 +638165.895|220284.762|127.431 +638170.921|220280.126|127.559 +638175.889|220275.539|127.611 +638180.909|220270.906|127.696 +638185.875|220266.319|127.751 +638190.843|220261.731|127.867 +638195.899|220257.062|127.879 +638200.862|220252.481|127.919 +638205.866|220247.857|127.922 +638210.868|220243.236|127.873 +638215.864|220238.621|127.715 +638220.905|220233.964|127.553 +638225.901|220229.349|127.434 +638230.894|220224.735|127.300 +638235.935|220220.077|127.129 +638240.922|220215.469|126.904 +638245.957|220210.817|126.629 +638250.992|220206.166|126.376 +638256.027|220201.512|126.148 +638261.014|220196.903|125.910 +638266.101|220192.206|125.797 +638271.091|220187.595|125.648 +638276.123|220182.943|125.395 +638281.216|220178.240|125.514 +638286.209|220173.632|125.465 +638291.247|220168.974|125.474 +638296.334|220164.277|125.438 +638306.417|220154.966|125.697 +638311.452|220150.314|125.639 +638316.488|220145.663|125.526 +638321.569|220140.969|125.343 +638326.598|220136.321|125.054 +638331.633|220131.670|125.005 +638336.711|220126.979|124.758 +638341.740|220122.328|124.334 +638346.776|220117.676|124.240 +638351.857|220112.982|123.923 +638356.935|220108.289|123.472 +638361.967|220103.637|123.011 +638367.048|220098.940|122.618 +638372.129|220094.243|122.256 +638377.167|220089.589|122.045 +638382.251|220084.892|121.759 +638387.336|220080.192|121.463 +638392.377|220075.535|121.116 +638397.461|220070.835|120.774 +638402.551|220066.132|120.454 +638407.593|220061.474|120.107 +638412.680|220056.774|120.110 +638438.045|220033.335|118.442 +638458.345|220014.572|116.952 +638463.392|220009.908|116.958 +638468.446|220005.239|116.717 +638473.548|220000.526|116.525 +638483.637|219991.212|117.110 +638488.700|219986.533|116.693 +638493.754|219981.866|116.650 +638498.804|219977.200|116.723 +638503.891|219972.506|117.272 +638508.869|219967.919|118.278 +638513.919|219963.255|118.436 +638518.961|219958.604|118.851 +638524.017|219953.931|118.787 +638529.031|219949.301|118.656 +638544.152|219935.336|118.720 +638549.215|219930.657|118.656 +638554.238|219926.018|118.439 +638559.267|219921.370|118.129 +638564.288|219916.731|118.025 +638569.298|219912.101|118.132 +638579.351|219902.813|117.836 +638584.389|219898.153|117.470 +638589.379|219893.538|117.144 +638594.368|219888.927|116.903 +638599.404|219884.272|116.708 +638604.405|219879.652|116.348 +638609.407|219875.025|115.974 +638614.424|219870.383|115.385 +638619.441|219865.743|114.864 +638624.452|219861.110|114.471 +638629.411|219856.526|114.206 +638634.373|219851.939|113.950 +638639.363|219847.330|114.002 +638644.292|219842.777|114.291 +638649.156|219838.296|115.596 +638654.076|219833.755|116.041 +638659.020|219829.189|116.135 +638663.927|219824.650|116.068 +638668.889|219820.066|115.946 +638673.836|219815.497|116.071 +638678.780|219810.931|116.266 +638693.599|219797.236|115.885 +638698.519|219792.689|115.858 +638703.432|219788.150|115.913 +638723.113|219769.963|115.577 +638728.057|219765.394|115.410 +638732.940|219760.880|115.428 +638742.742|219751.821|115.120 +638747.726|219747.213|114.660 +638752.557|219742.750|114.812 +638757.531|219738.151|114.517 +638762.405|219733.646|114.291 +638767.340|219729.083|113.938 +638772.250|219724.545|113.413 +638777.188|219719.976|113.096 +638782.037|219715.495|112.758 +638786.929|219710.975|112.956 +638791.806|219706.470|112.880 +638796.753|219701.892|112.164 +638801.688|219697.326|111.581 +638806.634|219692.751|110.938 +638811.496|219688.258|110.667 +638816.409|219683.713|110.387 +638821.305|219679.187|109.887 +638826.194|219674.670|109.890 +638831.256|219669.976|107.994 +638841.022|219660.951|107.848 +638845.875|219656.470|107.875 +638850.733|219651.978|107.842 +638855.585|219647.497|107.924 +638860.450|219643.001|107.915 +638865.309|219638.512|107.951 +638870.134|219634.055|107.927 +638875.001|219629.557|107.960 +638879.832|219625.094|107.918 +638884.648|219620.644|108.009 +638889.534|219616.127|107.957 +638894.313|219611.710|108.000 +638899.081|219607.315|108.899 +638903.838|219602.920|109.134 +638908.755|219598.372|108.597 +638913.644|219593.849|107.924 +638918.417|219589.445|108.482 +638923.224|219585.001|108.445 +638928.091|219580.502|108.021 +638933.057|219575.909|107.275 +638937.915|219571.416|106.641 +638942.765|219566.935|106.427 +638947.556|219562.510|106.628 +638952.329|219558.102|106.653 +638957.066|219553.731|106.945 +638961.784|219549.376|107.363 +638966.521|219545.005|108.015 +638971.257|219540.631|108.335 +638975.930|219536.321|108.783 +638980.621|219531.993|109.445 +638985.385|219527.595|109.652 +638990.106|219523.236|110.140 +638994.806|219518.899|110.466 +638999.518|219514.546|110.728 +639004.240|219510.187|110.960 +639008.900|219505.887|111.274 +639013.609|219501.540|111.612 +639018.306|219497.203|111.740 +639023.012|219492.853|111.819 +639027.712|219488.513|111.975 +639032.446|219484.139|111.935 +639037.161|219479.784|111.740 +639041.928|219475.379|111.560 +639046.668|219470.996|111.271 +639051.365|219466.656|110.957 +639056.129|219462.251|110.582 +639060.844|219457.893|110.219 +639056.248|219459.216|110.323 +639051.450|219463.638|110.853 +639046.644|219468.070|111.191 +639041.907|219472.435|111.450 +639037.131|219476.836|111.645 +639032.373|219481.225|111.795 +639027.612|219485.611|111.953 +639022.866|219489.982|111.773 +639018.099|219494.374|111.722 +639013.393|219498.709|111.627 +639008.681|219503.052|111.304 +639003.914|219507.438|110.996 +638999.247|219511.739|110.728 +638994.471|219516.134|110.524 +638989.719|219520.511|110.192 +638985.040|219524.821|109.743 +638980.289|219529.198|109.442 +638975.579|219533.529|108.872 +638970.855|219537.879|108.433 +638966.131|219542.228|108.006 +638961.388|219546.593|107.375 +638956.618|219550.985|106.951 +638951.869|219555.359|106.723 +638947.062|219559.788|106.586 +638942.252|219564.219|106.476 +638937.406|219568.685|106.650 +638932.462|219573.248|107.189 +638927.540|219577.789|107.948 +638922.614|219582.331|108.415 +638917.789|219586.778|108.549 +638912.943|219591.243|108.158 +638908.176|219595.632|107.918 +638903.204|219600.219|108.829 +638898.334|219604.712|109.039 +638888.766|219613.518|107.845 +638883.923|219617.980|107.918 +638879.052|219622.467|107.838 +638874.212|219626.926|107.918 +638869.292|219631.462|107.893 +638864.470|219635.906|107.896 +638859.557|219640.432|107.857 +638854.735|219644.876|107.909 +638849.861|219649.366|107.982 +638844.997|219653.849|108.027 +638840.099|219658.363|107.954 +638835.240|219662.841|108.000 +638830.382|219667.318|108.064 +638825.258|219672.058|110.045 +638820.384|219676.548|109.887 +638815.455|219681.092|110.234 +638810.521|219685.643|110.667 +638805.601|219690.178|110.996 +638800.694|219694.702|111.249 +638795.738|219699.277|112.005 +638790.727|219703.900|112.840 +638785.783|219708.457|113.078 +638780.888|219712.968|112.883 +638775.981|219717.491|113.276 +638770.994|219722.091|113.566 +638766.093|219726.611|114.005 +638761.097|219731.217|114.434 +638756.166|219735.764|114.727 +638751.213|219740.327|114.791 +638746.269|219744.887|114.797 +638741.288|219749.477|115.190 +638726.438|219763.166|115.626 +638721.531|219767.683|115.321 +638716.499|219772.325|115.928 +638696.659|219790.607|115.894 +638691.700|219795.176|115.763 +638671.763|219813.552|116.272 +638666.777|219818.149|116.035 +638661.769|219822.767|116.105 +638656.764|219827.375|116.114 +638651.814|219831.938|116.083 +638646.800|219836.559|115.641 +638641.881|219841.082|114.440 +638636.861|219845.703|114.029 +638631.813|219850.357|114.096 +638626.808|219854.972|114.276 +638621.739|219859.647|114.730 +638616.643|219864.347|114.956 +638611.626|219868.974|115.458 +638606.518|219873.687|115.916 +638601.412|219878.396|116.391 +638596.359|219883.056|116.827 +638591.275|219887.747|117.050 +638586.239|219892.389|117.239 +638581.143|219897.089|117.702 +638576.056|219901.783|118.061 +638570.987|219906.456|118.116 +638565.924|219911.122|118.007 +638560.852|219915.795|118.101 +638555.787|219920.467|118.180 +638550.700|219925.158|118.729 +638545.585|219929.874|118.866 +638540.525|219934.537|118.894 +638535.459|219939.210|119.119 +638520.201|219953.270|118.851 +638515.096|219957.976|118.951 +638510.064|219962.609|118.235 +638494.848|219976.618|116.678 +638489.703|219981.360|116.519 +638479.498|219990.767|116.678 +638474.402|219995.464|116.562 +638469.248|220000.215|116.973 +638464.148|220004.918|117.117 +638459.043|220009.628|117.549 +638413.003|220052.086|120.189 +638407.913|220056.774|120.162 +638402.822|220061.468|120.521 +638392.599|220070.899|121.158 +638387.515|220075.590|121.500 +638382.428|220080.277|121.850 +638377.344|220084.968|122.118 +638372.257|220089.656|122.286 +638367.173|220094.344|122.512 +638362.092|220099.032|122.960 +638357.011|220103.717|123.231 +638351.979|220108.359|123.575 +638346.901|220113.043|124.145 +638341.820|220117.728|124.435 +638336.739|220122.413|124.560 +638331.664|220127.095|125.069 +638326.577|220131.783|124.880 +638321.547|220136.419|125.294 +638311.434|220145.745|125.617 +638301.312|220155.075|125.627 +638296.261|220159.724|125.215 +638291.226|220164.363|125.395 +638286.136|220169.051|125.325 +638281.094|220173.696|125.297 +638276.102|220178.298|125.307 +638271.057|220182.940|125.334 +638266.025|220187.579|125.621 +638261.035|220192.179|125.745 +638255.997|220196.821|125.956 +638251.007|220201.420|126.151 +638246.021|220206.017|126.416 +638241.034|220210.613|126.660 +638236.093|220215.167|126.910 +638231.101|220219.763|127.117 +638226.108|220224.366|127.266 +638221.161|220228.923|127.434 +638216.163|220233.528|127.510 +638211.261|220238.045|127.641 +638206.311|220242.605|127.788 +638201.358|220247.168|127.876 +638196.451|220251.691|127.894 +638191.489|220256.260|127.903 +638186.569|220260.792|127.800 +638181.601|220265.368|127.708 +638176.682|220269.900|127.632 +638171.759|220274.432|127.553 +638166.840|220278.965|127.574 +638161.911|220283.503|127.465 +638156.976|220288.048|127.273 +638152.090|220292.547|127.108 +638147.153|220297.094|126.922 +638142.264|220301.596|126.809 +638137.405|220306.074|127.135 +638132.498|220310.591|126.794 +638127.597|220315.105|126.562 +638122.650|220319.662|126.395 +638117.797|220324.130|126.236 +638112.890|220328.647|126.047 +638108.038|220333.116|125.934 +638103.127|220337.636|125.739 +638098.278|220342.104|125.703 +638093.416|220346.579|125.593 +638088.555|220351.059|125.471 +638083.690|220355.537|125.358 +638078.877|220359.969|125.307 +638074.007|220364.455|125.157 +638069.188|220368.893|125.075 +638064.305|220373.389|124.855 +638059.480|220377.833|124.764 +638054.652|220382.280|124.673 +638049.830|220386.721|124.648 +638045.035|220391.137|124.435 +638040.162|220395.621|123.956 +638035.282|220400.111|123.408 +638030.466|220404.546|123.088 +638025.653|220408.974|122.810 +638020.852|220413.397|122.673 +638016.000|220417.865|122.542 +638011.224|220422.261|122.240 +638006.335|220426.759|121.820 +638001.555|220431.161|121.536 +637996.712|220435.620|121.134 +637991.912|220440.040|120.716 +637987.059|220444.505|120.314 +637977.370|220453.417|118.860 +637972.602|220457.803|118.442 +637962.986|220466.655|117.827 +637958.158|220471.096|116.989 +637953.348|220475.525|116.723 +637948.496|220479.984|115.760 +637938.855|220488.850|114.044 +637934.021|220493.297|113.349 +637929.260|220497.677|113.261 +637924.596|220501.972|113.163 +637915.007|220510.790|112.197 +637905.546|220519.492|111.581 +637900.846|220523.814|111.362 +637896.101|220528.182|111.176 +637891.443|220532.467|111.301 +637886.630|220536.890|110.335 +637882.147|220541.026|111.755 +637872.969|220549.484|112.749 +637854.882|220566.157|116.022 +637850.310|220570.369|116.525 +637831.635|220587.545|115.129 +637822.455|220595.994|115.120 +637813.286|220604.434|115.245 +637804.209|220612.788|115.407 +637799.646|220616.989|115.522 +637795.102|220621.170|115.455 +637790.637|220625.279|115.596 +637781.666|220633.542|116.260 +637777.247|220637.611|116.714 +637746.239|220666.165|118.955 +637741.887|220670.176|119.311 +637737.504|220674.212|119.518 +637733.115|220678.250|119.713 +637728.771|220682.252|120.165 +637719.978|220690.345|120.546 +637706.819|220702.455|120.564 +637702.449|220706.475|120.430 +637693.637|220714.583|120.091 +637689.306|220718.566|120.223 +637676.236|220730.591|119.494 +637667.521|220738.607|119.107 +637663.184|220742.594|118.793 +637645.856|220758.526|117.324 +637641.607|220762.433|117.031 +637637.300|220766.396|116.726 +637624.505|220778.158|115.559 +637611.621|220789.999|113.910 +637607.278|220793.986|113.102 +637602.928|220797.982|112.033 +637598.707|220801.862|111.597 +637586.344|220813.231|111.304 +637554.736|220842.337|114.730 +637542.815|220853.304|114.760 +637534.662|220860.789|113.374 +637526.597|220868.199|112.212 +637518.562|220875.578|111.042 +637514.856|220878.995|111.783 +637511.153|220882.406|112.325 +637507.254|220885.990|112.060 +637499.717|220892.925|112.441 +637496.038|220896.314|112.907 +637477.731|220913.163|114.666 +637474.369|220916.266|115.815 +637470.797|220919.558|116.342 +637463.390|220926.364|116.184 +637459.846|220929.626|116.434 +637456.252|220932.933|116.495 +637452.613|220936.282|116.595 +637449.062|220939.547|116.641 +637445.526|220942.802|116.751 +637441.881|220946.149|116.461 +637435.020|220952.467|117.348 +637431.502|220955.701|117.367 +637417.518|220968.552|116.669 +637414.016|220971.773|116.598 +637407.121|220978.107|116.099 +637403.674|220981.277|115.867 +637400.327|220984.353|115.821 +637396.825|220987.571|115.401 +637631.884|220768.785|116.294 +637636.124|220764.872|116.504 +637640.419|220760.903|116.760 +637653.360|220748.961|117.906 +637666.336|220736.982|118.900 +637670.640|220733.011|119.064 +637675.010|220728.975|119.348 +637679.360|220724.961|119.540 +637688.102|220716.887|119.936 +637696.880|220708.785|120.329 +637714.385|220692.616|120.561 +637718.743|220688.589|120.430 +637727.491|220680.509|120.098 +637731.834|220676.492|119.643 +637736.227|220672.435|119.485 +637740.646|220668.347|119.220 +637753.838|220656.152|118.104 +637771.580|220639.757|116.809 +637776.079|220635.600|116.528 +637780.551|220631.464|116.102 +637789.527|220623.167|115.495 +637803.170|220610.563|115.172 +637807.718|220606.360|114.998 +637812.329|220602.102|114.919 +637821.501|220593.638|114.803 +637826.060|220589.425|114.450 +637835.622|220580.617|116.361 +637863.356|220555.004|114.349 +637877.041|220542.349|111.734 +637881.699|220538.051|111.551 +637886.182|220533.894|109.792 +637900.587|220520.614|111.139 +637905.367|220516.206|111.597 +637914.943|220507.373|111.987 +637919.848|220502.856|113.127 +637929.391|220494.047|113.063 +637939.145|220485.062|114.767 +637944.058|220480.532|115.370 +637948.926|220476.046|116.053 +637953.891|220471.474|117.168 +637968.415|220458.078|118.016 +637973.288|220453.585|118.497 +637978.260|220449.004|119.454 +637983.158|220444.493|120.223 +637992.948|220435.465|120.945 +637997.849|220430.944|121.411 +638002.732|220426.439|121.747 +638007.624|220421.928|122.192 +638012.550|220417.387|122.536 +638017.414|220412.900|122.771 +638022.312|220408.380|122.917 +638027.226|220403.848|123.225 +638032.142|220399.312|123.603 +638037.074|220394.768|124.133 +638041.975|220390.244|124.438 +638046.861|220385.739|124.575 +638051.784|220381.195|124.636 +638056.666|220376.693|124.798 +638061.595|220372.145|124.974 +638066.475|220367.643|125.172 +638071.443|220363.059|125.279 +638076.360|220358.524|125.413 +638081.270|220353.991|125.480 +638086.232|220349.413|125.636 +638091.139|220344.887|125.700 +638096.096|220340.315|125.819 +638101.000|220335.789|125.941 +638105.953|220331.217|126.078 +638110.903|220326.651|126.221 +638115.856|220322.082|126.383 +638120.845|220317.476|126.489 +638125.795|220312.910|126.693 +638130.803|220308.293|127.065 +638135.729|220303.745|127.010 +638140.697|220299.161|126.867 +638145.635|220294.604|127.047 +638150.618|220290.008|127.178 +638155.602|220285.408|127.382 +638160.530|220280.861|127.498 +638165.550|220276.231|127.562 +638170.519|220271.643|127.593 +638175.487|220267.059|127.629 +638180.504|220262.432|127.730 +638185.420|220257.897|127.782 +638190.437|220253.270|127.907 +638195.442|220248.652|127.870 +638200.398|220244.077|127.852 +638205.397|220239.469|127.696 +638210.350|220234.897|127.644 +638215.343|220230.288|127.483 +638220.338|220225.679|127.346 +638225.331|220221.071|127.184 +638230.324|220216.465|126.992 +638235.316|220211.857|126.843 +638240.303|220207.254|126.581 +638245.335|220202.606|126.297 +638250.325|220198.004|126.072 +638255.360|220193.355|125.883 +638260.346|220188.753|125.614 +638265.336|220184.150|125.416 +638270.417|220179.459|125.188 +638275.413|220174.851|125.200 +638280.451|220170.200|125.130 +638290.528|220160.903|125.029 +638295.572|220156.252|125.121 +638310.700|220142.301|125.657 +638320.810|220132.968|125.294 +638325.842|220128.323|125.002 +638330.877|220123.678|124.944 +638335.903|220119.036|124.471 +638340.988|220114.345|124.551 +638346.017|220109.703|124.036 +638351.049|220105.058|123.578 +638356.130|220100.367|123.368 +638361.211|220095.676|123.051 +638366.246|220091.028|122.716 +638371.282|220086.383|122.475 +638376.366|220081.689|122.295 +638381.401|220077.040|121.993 +638386.488|220072.346|121.695 +638391.572|220067.649|121.329 +638401.701|220058.301|120.649 +638406.837|220053.562|120.411 +638411.878|220048.910|120.347 +638442.383|220020.753|118.537 +638467.879|219997.219|117.159 +638478.023|219987.859|117.266 +638483.131|219983.147|116.946 +638488.188|219978.480|116.742 +638493.235|219973.823|116.922 +638498.347|219969.104|116.583 +638528.699|219941.127|119.028 +638538.815|219931.791|118.991 +638543.875|219927.124|118.973 +638548.950|219922.439|118.598 +638554.019|219917.761|118.430 +638559.091|219913.079|118.244 +638564.120|219908.440|118.022 +638569.180|219903.770|118.180 +638574.258|219899.083|117.933 +638584.383|219889.734|117.290 +638589.421|219885.086|117.053 +638594.463|219880.432|116.784 +638599.559|219875.726|116.419 +638604.564|219871.105|116.031 +638609.627|219866.429|115.501 +638614.699|219861.748|114.922 +638619.697|219857.136|114.773 +638624.757|219852.463|114.443 +638629.759|219847.849|114.306 +638634.739|219843.252|114.507 +638639.720|219838.662|114.794 +638644.599|219834.169|115.852 +638649.580|219829.576|116.117 +638654.576|219824.967|116.144 +638659.532|219820.395|116.135 +638664.488|219815.823|116.117 +638669.432|219811.263|116.315 +638674.366|219806.713|116.626 +638684.321|219797.526|116.211 +638689.274|219792.951|115.727 +638694.178|219788.428|115.910 +638699.125|219783.865|116.187 +638713.929|219770.204|115.846 +638718.892|219765.623|115.458 +638723.753|219761.142|115.724 +638738.493|219747.536|115.388 +638743.422|219742.988|115.029 +638748.323|219738.465|114.937 +638753.182|219733.981|114.858 +638758.098|219729.446|114.687 +638763.033|219724.889|114.358 +638767.931|219720.366|113.953 +638777.724|219711.325|113.252 +638782.598|219706.827|113.169 +638792.403|219697.774|112.097 +638797.372|219693.181|111.216 +638802.215|219688.709|111.085 +638807.122|219684.177|110.402 +638811.947|219679.730|110.524 +638816.858|219675.191|109.859 +638821.637|219670.781|109.981 +638841.184|219652.731|107.890 +638845.939|219648.344|107.918 +638850.751|219643.903|107.924 +638855.555|219639.472|108.000 +638860.377|219635.025|107.976 +638865.144|219630.623|107.991 +638869.963|219626.179|108.024 +638874.736|219621.778|108.064 +638879.515|219617.368|108.058 +638884.301|219612.951|108.040 +638889.040|219608.580|108.027 +638893.679|219604.307|109.134 +638898.459|219599.896|108.860 +638903.360|219595.370|108.070 +638908.093|219591.005|108.539 +638912.797|219586.668|108.866 +638917.570|219582.264|108.735 +638922.300|219577.899|108.567 +638927.183|219573.388|108.046 +638932.008|219568.923|107.256 +638936.784|219564.512|106.854 +638941.579|219560.080|106.671 +638946.279|219555.743|106.854 +638950.994|219551.387|106.921 +638955.691|219547.056|107.156 +638960.333|219542.774|107.756 +638965.003|219538.464|108.192 +638969.630|219534.197|108.594 +638974.247|219529.932|109.055 +638978.920|219525.626|109.521 +638983.550|219521.352|109.942 +638988.183|219517.076|110.359 +638992.855|219512.766|110.557 +638997.470|219508.505|110.813 +639002.140|219504.198|111.063 +639006.800|219499.894|111.368 +639011.412|219495.639|111.703 +639016.121|219491.290|111.749 +639020.757|219487.010|111.959 +639025.369|219482.755|112.045 +639030.069|219478.415|111.920 +639034.836|219474.011|111.716 +639039.496|219469.704|111.572 +639044.193|219465.363|111.240 +639048.966|219460.953|110.795 +639053.660|219456.619|110.536 +639046.077|219460.441|110.883 +639041.294|219464.845|111.368 +639036.503|219469.256|111.633 +639031.748|219473.633|111.719 +639026.975|219478.025|111.914 +639022.229|219482.393|111.987 +639017.526|219486.718|111.825 +639012.777|219491.086|111.670 +639008.022|219495.463|111.560 +639003.307|219499.797|111.222 +638998.494|219504.223|110.899 +638993.767|219508.569|110.664 +638988.994|219512.961|110.445 +638984.233|219517.338|110.155 +638979.505|219521.681|109.658 +638974.662|219526.138|109.298 +638969.913|219530.502|108.975 +638965.158|219534.873|108.390 +638960.370|219539.275|108.034 +638955.569|219543.691|107.467 +638950.759|219548.111|106.945 +638945.941|219552.543|106.854 +638941.024|219557.066|106.769 +638936.190|219561.513|106.808 +638931.222|219566.091|107.144 +638926.217|219570.703|108.088 +638921.230|219575.296|108.597 +638916.299|219579.837|108.768 +638911.379|219584.364|108.853 +638906.472|219588.881|108.899 +638901.644|219593.319|108.360 +638896.731|219597.836|108.116 +638891.735|219602.438|108.869 +638886.806|219606.974|108.786 +638867.195|219625.015|107.890 +638862.224|219629.587|107.845 +638857.295|219634.122|107.912 +638852.336|219638.685|107.835 +638847.359|219643.266|107.930 +638842.400|219647.829|107.909 +638837.435|219652.398|107.948 +638832.485|219656.955|107.909 +638827.522|219661.521|107.979 +638822.579|219666.069|107.918 +638817.415|219670.836|109.823 +638812.417|219675.438|109.887 +638807.409|219680.053|110.521 +638797.378|219689.288|111.109 +638792.339|219693.930|111.670 +638787.283|219698.591|112.447 +638782.238|219703.239|113.157 +638777.252|219707.829|113.331 +638772.259|219712.426|113.602 +638767.209|219717.077|113.998 +638762.268|219721.625|114.309 +638757.226|219726.270|114.709 +638752.264|219730.839|114.806 +638747.247|219735.456|114.995 +638742.303|219740.004|114.943 +638737.247|219744.658|115.099 +638717.294|219763.026|115.641 +638712.317|219767.601|115.565 +638707.303|219772.221|115.983 +638692.337|219785.992|115.907 +638687.369|219790.561|115.846 +638682.352|219795.179|115.855 +638672.321|219804.421|116.547 +638667.386|219808.962|116.199 +638662.382|219813.574|116.181 +638657.389|219818.173|116.028 +638652.375|219822.791|116.172 +638647.376|219827.396|116.123 +638642.432|219831.950|116.025 +638637.415|219836.568|115.559 +638632.478|219841.106|114.608 +638627.488|219845.700|114.489 +638622.483|219850.311|114.660 +638617.478|219854.926|114.867 +638612.431|219859.574|114.992 +638607.414|219864.201|115.468 +638602.348|219868.874|116.028 +638597.297|219873.528|116.361 +638592.290|219878.143|116.793 +638587.239|219882.800|117.211 +638582.195|219887.448|117.565 +638577.159|219892.090|117.754 +638572.127|219896.726|117.930 +638567.150|219901.314|118.007 +638562.075|219905.989|118.168 +638557.052|219910.619|118.266 +638552.019|219915.255|118.586 +638546.947|219919.931|118.793 +638541.924|219924.558|118.933 +638536.904|219929.185|119.144 +638531.848|219933.842|119.037 +638526.788|219938.502|119.076 +638506.671|219957.028|118.500 +638501.587|219961.704|117.805 +638491.547|219970.945|116.958 +638481.437|219980.257|116.912 +638476.374|219984.927|117.403 +638471.329|219989.569|116.995 +638456.105|220003.608|118.363 +638445.958|220012.953|118.397 +638440.907|220017.607|118.644 +638415.581|220040.952|119.933 +638410.534|220045.603|120.405 +638405.444|220050.294|120.582 +638395.358|220059.591|121.225 +638390.268|220064.281|121.497 +638385.181|220068.969|121.771 +638380.142|220073.614|122.143 +638375.055|220078.302|122.380 +638369.968|220082.990|122.621 +638364.933|220087.632|122.923 +638359.894|220092.274|123.213 +638354.810|220096.962|123.371 +638349.775|220101.601|123.731 +638344.694|220106.286|124.054 +638339.662|220110.925|124.575 +638334.629|220115.564|124.886 +638329.545|220120.249|124.916 +638324.507|220124.888|124.944 +638319.472|220129.527|125.105 +638314.439|220134.166|125.358 +638294.222|220152.789|124.950 +638289.229|220157.392|124.977 +638284.139|220162.083|124.929 +638279.104|220166.728|125.096 +638274.102|220171.334|124.968 +638269.058|220175.985|124.901 +638264.022|220180.627|125.200 +638258.984|220185.272|125.364 +638253.952|220189.914|125.657 +638248.962|220194.514|125.922 +638243.927|220199.159|126.142 +638238.940|220203.758|126.434 +638233.951|220208.358|126.712 +638228.958|220212.960|126.910 +638223.917|220217.611|127.047 +638218.967|220222.174|127.154 +638213.928|220226.819|127.382 +638208.978|220231.385|127.486 +638203.977|220235.994|127.593 +638198.978|220240.602|127.733 +638194.025|220245.168|127.846 +638189.066|220249.740|127.852 +638184.055|220254.358|127.843 +638179.090|220258.936|127.785 +638174.118|220263.514|127.702 +638169.196|220268.053|127.599 +638164.218|220272.640|127.458 +638159.253|220277.218|127.507 +638154.279|220281.802|127.452 +638149.347|220286.347|127.330 +638144.409|220290.895|127.187 +638139.426|220295.488|127.044 +638134.540|220299.993|126.980 +638129.621|220304.528|127.145 +638124.683|220309.079|127.068 +638119.724|220313.645|126.767 +638114.777|220318.205|126.605 +638109.921|220322.676|126.443 +638104.974|220327.239|126.343 +638100.067|220331.759|126.181 +638095.163|220336.279|126.084 +638090.256|220340.800|125.974 +638085.394|220345.280|125.889 +638080.478|220349.809|125.709 +638075.625|220354.284|125.745 +638070.712|220358.810|125.663 +638065.844|220363.297|125.581 +638060.967|220367.790|125.422 +638056.136|220372.243|125.252 +638051.244|220376.751|124.980 +638046.392|220381.216|124.670 +638041.506|220385.721|124.505 +638036.669|220390.177|124.404 +638031.816|220394.649|124.136 +638026.948|220399.132|123.780 +638022.081|220403.616|123.429 +638017.259|220408.057|123.100 +638012.394|220412.541|122.835 +638007.575|220416.978|122.591 +638002.732|220421.438|122.149 +637997.886|220425.903|121.689 +637993.039|220430.365|121.283 +637988.239|220434.785|120.878 +637978.549|220443.706|119.805 +637973.730|220448.144|119.311 +637964.114|220456.999|118.208 +637944.814|220474.772|116.269 +637935.136|220483.672|114.285 +637930.278|220488.143|113.386 +637925.544|220492.508|113.489 +637916.038|220501.262|112.740 +637906.519|220510.028|111.990 +637901.712|220514.454|111.304 +637892.382|220523.055|111.380 +637887.648|220527.414|110.960 +637882.820|220531.855|109.871 +637878.373|220535.966|111.563 +637873.801|220540.182|112.020 +637869.251|220544.385|112.602 +637832.900|220577.925|116.818 +637805.078|220603.547|114.742 +637800.585|220607.689|114.974 +637796.050|220611.871|114.943 +637791.499|220616.065|115.151 +637787.043|220620.174|115.349 +637782.575|220624.298|115.775 +637778.118|220628.406|115.992 +637769.191|220636.636|116.394 +637764.820|220640.672|117.168 +637760.364|220644.783|117.437 +637747.126|220656.991|118.247 +637742.829|220660.956|118.918 +637738.403|220665.037|119.159 +637734.017|220669.082|119.342 +637725.360|220677.068|120.131 +637716.555|220685.182|120.165 +637712.202|220689.196|120.344 +637707.847|220693.207|120.250 +637694.777|220705.250|120.058 +637690.406|220709.279|119.948 +637686.029|220713.312|119.829 +637681.655|220717.341|119.485 +637672.980|220725.333|119.238 +637668.649|220729.320|118.912 +637660.014|220737.275|118.455 +637651.364|220745.240|117.748 +637647.027|220749.235|117.485 +637634.109|220761.132|116.294 +637625.614|220768.959|115.824 +637621.308|220772.918|115.102 +637608.439|220784.763|113.285 +637604.266|220788.607|113.035 +637600.054|220792.487|112.609 +637595.665|220796.522|111.380 +637591.334|220800.500|110.460 +637587.149|220804.350|109.993 +637579.300|220811.592|111.487 +637571.668|220818.636|113.758 +637559.738|220829.627|114.230 +637551.877|220836.869|114.876 +637539.886|220847.906|114.373 +637527.716|220859.101|112.795 +637523.616|220862.868|112.051 +637515.572|220870.263|110.838 +637511.805|220873.737|111.322 +637508.105|220877.148|111.877 +637504.270|220880.681|111.880 +637493.017|220891.050|112.575 +637482.105|220901.108|114.334 +637478.423|220904.501|114.386 +637474.860|220907.784|114.943 +637467.545|220914.526|115.526 +637464.088|220917.714|116.318 +637460.370|220921.134|116.074 +637456.785|220924.438|116.370 +637453.152|220927.782|116.278 +637449.635|220931.022|116.455 +637446.017|220934.353|116.650 +637442.454|220937.633|116.662 +637438.897|220940.909|116.702 +637435.361|220944.168|116.833 +637431.770|220947.472|116.562 +637428.314|220950.654|116.830 +637424.812|220953.879|116.918 +637414.223|220963.623|116.330 +637410.730|220966.836|116.099 +637407.271|220970.018|116.004 +637403.771|220973.236|115.772 +637396.926|220979.537|115.501 +637393.512|220982.679|115.010 +637626.346|220765.646|115.705 +637630.650|220761.677|116.211 +637634.941|220757.721|116.416 +637643.543|220749.790|117.248 +637656.567|220737.781|118.357 +637665.214|220729.807|118.851 +637669.524|220725.833|119.049 +637673.864|220721.831|119.162 +637678.244|220717.792|119.509 +637682.621|220713.757|119.595 +637686.962|220709.752|119.787 +637695.725|220701.668|120.094 +637700.135|220697.599|120.168 +637708.926|220689.491|120.204 +637717.695|220681.399|120.189 +637730.908|220669.204|119.528 +637735.260|220665.184|119.144 +637739.653|220661.130|118.994 +637752.838|220648.950|117.528 +637761.757|220640.720|117.266 +637770.620|220632.533|116.153 +637788.558|220615.971|115.053 +637793.130|220611.755|114.959 +637797.699|220607.537|114.879 +637802.246|220603.340|114.690 +637806.785|220599.149|114.440 +637811.360|220594.927|114.450 +637816.017|220590.629|114.373 +637820.571|220586.423|114.291 +637830.142|220577.605|116.230 +637848.610|220560.549|115.666 +637871.610|220539.289|112.575 +637876.182|220535.058|111.441 +637880.720|220530.855|110.060 +637885.536|220526.417|111.066 +637895.055|220517.633|111.225 +637899.764|220513.283|111.161 +637919.162|220495.398|113.538 +637923.908|220491.014|113.493 +637928.739|220486.558|113.776 +637933.570|220482.105|114.459 +637938.556|220477.512|115.654 +637958.103|220459.489|118.360 +637967.765|220450.570|118.546 +637977.604|220441.503|119.970 +637987.379|220432.487|120.981 +637992.283|220427.963|121.472 +637997.172|220423.452|121.844 +638002.077|220418.932|122.387 +638007.005|220414.382|122.761 +638011.885|220409.883|123.133 +638016.805|220405.344|123.459 +638021.718|220400.809|123.786 +638026.622|220396.285|124.029 +638031.527|220391.759|124.307 +638036.467|220387.202|124.481 +638041.366|220382.682|124.743 +638046.315|220378.113|125.108 +638051.211|220373.599|125.389 +638056.139|220369.052|125.547 +638061.059|220364.507|125.675 +638065.981|220359.969|125.806 +638070.904|220355.424|126.008 +638075.808|220350.895|126.020 +638080.755|220346.329|125.965 +638085.665|220341.796|126.111 +638090.624|220337.221|126.242 +638095.571|220332.655|126.282 +638100.530|220328.080|126.483 +638105.471|220323.517|126.511 +638110.421|220318.948|126.672 +638115.420|220314.337|126.855 +638120.327|220309.811|127.123 +638125.308|220305.211|127.163 +638130.233|220300.663|127.074 +638135.214|220296.067|127.132 +638140.194|220291.468|127.215 +638145.129|220286.914|127.355 +638150.155|220282.275|127.446 +638155.126|220277.688|127.483 +638160.098|220273.097|127.507 +638165.069|220268.510|127.565 +638170.037|220263.923|127.644 +638175.054|220259.293|127.715 +638180.022|220254.706|127.821 +638185.030|220250.082|127.830 +638190.035|220245.458|127.830 +638194.985|220240.886|127.724 +638199.984|220236.268|127.602 +638204.979|220231.654|127.486 +638209.929|220227.082|127.404 +638214.968|220222.427|127.190 +638219.912|220217.858|127.053 +638224.907|220213.247|126.953 +638229.943|220208.592|126.739 +638234.880|220204.029|126.495 +638239.913|220199.381|126.200 +638244.899|220194.776|125.934 +638249.886|220190.167|125.712 +638254.912|220185.519|125.331 +638259.898|220180.913|125.105 +638264.888|220176.305|124.947 +638269.923|220171.654|124.801 +638274.919|220167.042|124.834 +638284.990|220157.736|124.618 +638289.988|220153.125|124.831 +638310.145|220134.514|125.233 +638315.180|220129.862|125.276 +638320.209|220125.217|124.993 +638325.242|220120.566|124.950 +638330.277|220115.918|124.895 +638335.306|220111.269|124.746 +638340.384|220106.579|124.496 +638345.410|220101.933|123.956 +638350.442|220097.282|123.734 +638355.475|220092.634|123.453 +638360.510|220087.983|123.258 +638365.542|220083.335|122.935 +638370.623|220078.638|122.658 +638375.659|220073.986|122.435 +638380.691|220069.335|122.128 +638385.775|220064.638|121.893 +638390.813|220059.984|121.554 +638395.849|220055.326|121.195 +638405.928|220046.015|120.631 +638411.015|220041.315|120.396 +638416.057|220036.657|120.189 +638421.098|220032.000|120.058 +638461.652|219994.531|118.055 +638466.660|219989.901|117.531 +638476.859|219980.483|117.239 +638481.860|219975.862|117.245 +638486.972|219971.137|116.693 +638492.059|219966.440|117.120 +638502.139|219957.141|118.013 +638507.171|219952.499|118.653 +638517.296|219943.157|119.525 +638522.353|219938.487|119.454 +638527.410|219933.818|119.390 +638532.469|219929.139|119.217 +638537.532|219924.466|119.128 +638542.592|219919.791|119.046 +638547.661|219915.109|118.830 +638552.733|219910.424|118.561 +638557.804|219905.739|118.318 +638562.879|219901.052|118.089 +638567.902|219896.416|117.979 +638572.974|219891.734|117.900 +638578.052|219887.043|117.684 +638583.088|219882.395|117.461 +638588.181|219877.692|117.046 +638593.277|219872.982|116.632 +638598.328|219868.316|116.214 +638603.381|219863.646|115.782 +638608.444|219858.971|115.269 +638613.540|219854.265|115.044 +638618.588|219849.604|114.846 +638623.586|219844.990|114.709 +638628.610|219840.354|114.974 +638633.602|219835.751|115.727 +638638.622|219831.124|116.089 +638643.661|219826.473|116.169 +638648.650|219821.867|116.281 +638653.661|219817.241|116.102 +638658.681|219812.608|116.477 +638663.659|219808.014|116.166 +638668.697|219803.363|116.352 +638673.656|219798.788|116.352 +638678.694|219794.134|115.949 +638683.715|219789.498|115.843 +638688.664|219784.929|116.010 +638703.560|219771.182|116.129 +638708.571|219766.552|115.657 +638713.536|219761.971|115.803 +638733.360|219743.665|115.260 +638738.320|219739.087|115.053 +638748.155|219730.010|115.056 +638753.121|219725.422|114.852 +638758.025|219720.893|114.797 +638763.018|219716.284|114.389 +638767.958|219711.719|114.023 +638772.850|219707.198|113.703 +638782.766|219698.042|112.859 +638787.716|219693.464|112.078 +638792.717|219688.843|111.328 +638807.427|219675.252|110.204 +638812.362|219670.695|109.777 +638817.223|219666.206|109.573 +638827.151|219657.028|107.948 +638832.003|219652.548|107.927 +638836.801|219648.119|107.963 +638841.653|219643.638|107.991 +638846.466|219639.197|107.970 +638851.276|219634.759|107.997 +638856.140|219630.267|107.976 +638860.904|219625.868|108.021 +638865.778|219621.370|107.997 +638870.542|219616.974|108.082 +638875.282|219612.600|108.372 +638880.018|219608.236|109.079 +638884.822|219603.798|108.917 +638889.690|219599.302|108.299 +638894.384|219594.971|108.634 +638899.108|219590.615|109.131 +638903.842|219586.244|109.210 +638908.596|219581.852|109.143 +638913.363|219577.451|109.024 +638918.149|219573.031|108.802 +638922.968|219568.581|108.381 +638927.793|219564.125|107.598 +638932.584|219559.699|107.076 +638937.360|219555.292|107.012 +638942.036|219550.979|107.003 +638946.754|219546.629|107.061 +638951.424|219542.323|107.461 +638956.014|219538.095|108.070 +638960.699|219533.779|108.408 +638965.308|219529.530|108.917 +638969.892|219525.306|109.295 +638974.543|219521.017|109.558 +638979.170|219516.753|110.006 +638983.748|219512.534|110.445 +638988.427|219508.218|110.597 +638992.999|219504.003|110.798 +638997.623|219499.742|111.027 +639002.237|219495.487|111.313 +639006.791|219491.290|111.679 +639011.418|219487.020|111.612 +639015.981|219482.816|111.962 +639020.595|219478.558|112.014 +639025.237|219474.276|111.932 +639029.825|219470.045|111.895 +639034.488|219465.741|111.719 +639039.161|219461.425|111.231 +639043.721|219457.222|111.136 +639037.838|219459.947|111.307 +639033.129|219464.291|111.688 +639028.417|219468.637|111.844 +639023.774|219472.913|111.880 +639019.126|219477.196|111.990 +639014.414|219481.536|111.889 +639009.796|219485.791|111.566 +639005.069|219490.150|111.603 +639000.415|219494.435|111.219 +638995.742|219498.739|110.969 +638991.066|219503.043|110.740 +638986.345|219507.395|110.521 +638981.611|219511.754|110.374 +638976.942|219516.052|109.859 +638972.196|219520.423|109.518 +638967.499|219524.751|109.207 +638962.705|219529.167|108.905 +638957.989|219533.505|108.402 +638953.262|219537.860|108.027 +638948.531|219542.213|107.332 +638943.743|219546.623|107.037 +638938.915|219551.070|107.037 +638934.087|219555.520|107.061 +638929.149|219560.074|107.186 +638924.199|219564.646|108.128 +638919.252|219569.206|108.707 +638914.299|219573.775|109.027 +638909.428|219578.265|109.152 +638904.515|219582.794|109.250 +638899.602|219587.323|109.356 +638894.716|219591.825|109.289 +638889.906|219596.251|108.683 +638885.017|219600.753|108.308 +638880.027|219605.358|108.738 +638875.059|219609.940|109.018 +638870.210|219614.402|108.396 +638865.306|219618.916|107.838 +638860.380|219623.454|107.848 +638855.409|219628.039|107.878 +638850.434|219632.623|107.945 +638845.414|219637.247|107.991 +638840.467|219641.806|107.896 +638835.459|219646.424|107.909 +638830.446|219651.045|107.997 +638825.456|219655.641|107.887 +638820.445|219660.259|108.006 +638815.288|219665.023|109.439 +638810.237|219669.680|109.551 +638805.168|219674.359|110.289 +638800.188|219678.943|109.826 +638789.956|219688.386|111.459 +638784.829|219693.123|112.459 +638779.775|219697.780|112.798 +638774.640|219702.523|113.514 +638769.592|219707.174|113.858 +638764.499|219711.874|114.248 +638759.451|219716.528|114.675 +638754.386|219721.198|114.821 +638749.338|219725.849|114.809 +638744.260|219730.534|115.166 +638739.213|219735.185|115.221 +638734.171|219739.830|115.239 +638729.118|219744.491|115.413 +638713.920|219758.502|116.013 +638708.867|219763.157|115.772 +638703.834|219767.796|115.861 +638683.556|219786.486|115.943 +638678.536|219791.113|116.019 +638673.424|219795.819|116.028 +638668.340|219800.504|116.367 +638663.348|219805.103|116.178 +638658.242|219809.803|116.190 +638653.201|219814.446|116.053 +638648.132|219819.115|116.318 +638643.078|219823.769|116.364 +638637.994|219828.448|116.193 +638632.959|219833.084|116.044 +638627.899|219837.738|115.513 +638622.940|219842.301|114.959 +638617.853|219846.983|114.882 +638612.806|219851.631|115.001 +638607.752|219856.289|115.285 +638602.644|219860.995|115.654 +638597.587|219865.655|116.083 +638592.479|219870.364|116.608 +638587.431|219875.015|116.934 +638582.371|219879.682|117.543 +638577.281|219884.370|117.833 +638572.258|219888.997|117.836 +638567.229|219893.627|117.912 +638562.151|219898.302|118.083 +638557.122|219902.935|118.278 +638552.047|219907.611|118.470 +638547.018|219912.247|118.814 +638541.943|219916.919|119.025 +638536.923|219921.546|119.232 +638531.860|219926.210|119.281 +638526.843|219930.831|119.384 +638521.780|219935.494|119.506 +638516.720|219940.151|119.531 +638506.729|219949.344|118.677 +638496.704|219958.561|117.281 +638486.606|219967.861|116.824 +638481.595|219972.475|116.967 +638471.518|219981.760|117.656 +638466.459|219986.420|118.058 +638461.408|219991.074|118.147 +638451.392|220000.301|118.753 +638426.295|220023.423|119.838 +638421.248|220028.071|120.052 +638416.252|220032.674|120.207 +638411.204|220037.322|120.415 +638406.209|220041.924|120.552 +638396.169|220051.175|121.177 +638391.176|220055.777|121.585 +638386.183|220060.377|121.914 +638381.142|220065.022|122.137 +638376.149|220069.622|122.454 +638371.111|220074.264|122.633 +638366.073|220078.903|122.935 +638361.083|220083.502|123.240 +638356.093|220088.099|123.505 +638351.055|220092.738|123.624 +638346.069|220097.334|123.938 +638341.085|220101.927|124.392 +638336.053|220106.563|124.773 +638331.109|220111.117|124.813 +638326.077|220115.753|125.090 +638321.084|220120.350|125.032 +638316.040|220124.992|124.694 +638311.056|220129.585|125.047 +638306.064|220134.181|125.112 +638301.071|220138.781|125.017 +638296.048|220143.392|123.950 +638291.073|220147.980|124.755 +638286.075|220152.579|124.599 +638281.073|220157.179|124.517 +638276.080|220161.775|124.645 +638271.036|220166.417|124.712 +638266.080|220170.980|124.545 +638261.093|220175.570|124.916 +638256.098|220180.170|125.038 +638251.157|220184.717|125.355 +638246.167|220189.311|125.697 +638241.178|220193.907|125.950 +638236.188|220198.500|126.233 +638231.195|220203.097|126.511 +638226.251|220207.650|126.745 +638221.301|220212.204|126.895 +638216.303|220216.810|126.980 +638211.353|220221.363|127.160 +638206.354|220225.966|127.318 +638201.450|220230.480|127.468 +638196.445|220235.086|127.544 +638191.489|220239.648|127.666 +638186.530|220244.211|127.757 +638181.568|220248.780|127.763 +638176.602|220253.349|127.785 +638171.631|220257.924|127.687 +638166.706|220262.454|127.623 +638161.731|220267.032|127.559 +638156.754|220271.613|127.437 +638151.874|220276.103|127.404 +638146.900|220280.681|127.419 +638141.965|220285.219|127.318 +638137.030|220289.761|127.251 +638132.047|220294.345|127.205 +638127.161|220298.844|127.175 +638122.226|220303.385|127.160 +638117.297|220307.918|127.297 +638112.378|220312.444|126.888 +638107.428|220317.001|126.745 +638102.524|220321.509|126.636 +638097.568|220326.069|126.486 +638092.663|220330.583|126.413 +638087.762|220335.094|126.392 +638082.895|220339.571|126.230 +638077.945|220344.125|126.245 +638073.077|220348.606|126.139 +638068.203|220353.089|125.980 +638063.275|220357.622|125.785 +638058.401|220362.105|125.654 +638053.527|220366.589|125.599 +638048.650|220371.075|125.508 +638043.773|220375.565|125.435 +638038.866|220380.076|125.084 +638033.953|220384.596|124.688 +638029.094|220389.065|124.392 +638024.236|220393.530|124.145 +638019.374|220398.005|123.862 +638014.522|220402.467|123.728 +638009.648|220406.950|123.386 +638004.753|220411.449|122.908 +637999.922|220415.893|122.569 +637995.069|220420.353|122.100 +637990.211|220424.821|121.564 +637985.352|220429.289|121.094 +637970.789|220442.676|119.528 +637946.737|220464.796|118.055 +637927.276|220482.672|114.416 +637922.441|220487.119|113.736 +637917.635|220491.542|113.322 +637908.146|220500.271|112.785 +637893.769|220513.494|111.103 +637889.096|220517.794|111.109 +637884.442|220522.080|111.292 +637875.063|220530.715|111.182 +637870.430|220534.982|111.551 +637865.800|220539.249|111.962 +637861.292|220543.404|112.551 +637847.628|220556.001|114.416 +637843.135|220560.146|115.480 +637834.040|220568.525|116.214 +637810.756|220589.944|114.212 +637806.251|220594.089|114.343 +637801.682|220598.298|114.398 +637792.636|220606.628|114.821 +637788.146|220610.761|114.803 +637783.611|220614.940|115.141 +637779.179|220619.022|115.510 +637770.276|220627.227|116.348 +637761.388|220635.417|117.028 +637757.014|220639.446|117.510 +637748.199|220647.566|118.107 +637739.381|220655.689|118.769 +637735.010|220659.716|119.037 +637730.661|220663.724|119.445 +637717.542|220675.806|120.088 +637700.077|220691.884|120.302 +637695.688|220695.923|120.088 +637691.314|220699.946|119.954 +637682.566|220707.996|119.491 +637678.235|220711.983|119.384 +637660.843|220727.985|118.522 +637656.579|220731.911|118.324 +637652.242|220735.897|118.043 +637647.962|220739.838|117.802 +637635.069|220751.695|116.702 +637630.732|220755.685|116.257 +637626.468|220759.605|115.958 +637617.866|220767.514|114.797 +637605.120|220779.237|113.346 +637600.843|220783.169|112.855 +637592.583|220790.768|112.581 +637588.179|220794.815|111.072 +637568.315|220813.131|113.017 +637560.338|220820.483|113.547 +637548.610|220831.300|114.547 +637536.750|220842.224|114.404 +637532.800|220845.860|114.258 +637528.782|220849.558|113.831 +637520.665|220857.022|112.453 +637516.660|220860.707|111.898 +637512.799|220864.264|111.984 +637508.900|220867.855|111.691 +637505.011|220871.436|111.469 +637501.332|220874.829|111.908 +637497.452|220878.401|111.746 +637493.761|220881.805|112.157 +637490.057|220885.219|112.529 +637486.470|220888.529|113.172 +637471.955|220901.913|114.706 +637468.526|220905.080|115.593 +637461.348|220911.697|116.327 +637457.584|220915.160|115.693 +637454.003|220918.464|116.013 +637450.485|220921.707|116.376 +637447.038|220924.886|116.818 +637443.435|220928.205|116.873 +637439.781|220931.570|116.528 +637436.272|220934.801|116.769 +637432.731|220938.066|116.669 +637429.180|220941.333|116.559 +637425.680|220944.558|116.446 +637422.123|220947.831|116.342 +637418.524|220951.145|115.867 +637415.113|220954.287|115.922 +637408.194|220960.654|115.708 +637404.640|220963.925|115.260 +637397.913|220970.124|115.419 +637390.961|220976.522|114.584 +637387.565|220979.646|114.386 +637629.815|220754.463|116.303 +637634.128|220750.482|116.632 +637642.753|220742.524|117.360 +637647.100|220738.513|117.668 +637651.437|220734.507|117.958 +637655.756|220730.521|118.165 +637660.078|220726.531|118.412 +637668.725|220718.545|118.723 +637673.133|220714.479|119.198 +637681.835|220706.445|119.381 +637686.239|220702.378|119.646 +637690.631|220698.325|119.878 +637695.002|220694.289|120.003 +637708.200|220682.100|120.152 +637712.662|220677.982|120.296 +637730.143|220661.828|119.348 +637734.535|220657.765|118.924 +637738.924|220653.711|118.476 +637747.797|220645.512|118.189 +637752.247|220641.400|117.848 +637756.682|220637.297|117.458 +637761.068|220633.244|116.772 +637765.561|220629.092|116.733 +637778.932|220616.733|115.477 +637783.440|220612.563|115.001 +637787.966|220608.381|114.636 +637792.487|220604.205|114.559 +637797.040|220599.996|114.401 +637801.628|220595.759|114.154 +637806.142|220591.586|113.773 +637815.298|220583.131|113.572 +637824.783|220574.393|115.269 +637838.697|220561.554|115.303 +637861.524|220540.456|111.975 +637866.105|220536.223|111.237 +637875.383|220527.655|110.627 +637884.856|220518.916|111.149 +637889.544|220514.588|110.890 +637899.048|220505.822|111.414 +637903.888|220501.359|112.008 +637908.735|220496.894|112.682 +637918.333|220488.043|113.404 +637937.861|220470.047|116.720 +637947.597|220461.077|118.165 +637952.403|220456.642|118.433 +637957.237|220452.183|118.549 +637962.102|220447.699|119.378 +637981.561|220429.756|120.866 +637986.413|220425.281|121.314 +637991.314|220420.761|121.823 +637996.212|220416.244|122.313 +638001.098|220411.739|122.719 +638005.993|220407.228|123.258 +638010.867|220402.732|123.624 +638015.762|220398.215|123.746 +638020.663|220393.695|123.965 +638025.525|220389.211|124.279 +638030.435|220384.682|124.666 +638035.343|220380.155|125.041 +638040.290|220375.593|125.349 +638045.160|220371.100|125.389 +638050.080|220366.558|125.480 +638054.950|220362.066|125.541 +638059.870|220357.527|125.669 +638064.783|220352.992|125.785 +638069.709|220348.450|126.020 +638074.674|220343.869|126.209 +638079.581|220339.340|126.285 +638084.486|220334.816|126.373 +638089.436|220330.247|126.456 +638094.376|220325.688|126.459 +638099.326|220321.122|126.590 +638104.225|220316.601|126.709 +638109.223|220311.990|126.898 +638114.192|220307.409|127.352 +638119.157|220302.824|127.154 +638124.085|220298.274|127.166 +638129.066|220293.680|127.209 +638134.043|220289.087|127.239 +638138.972|220284.539|127.297 +638143.946|220279.946|127.388 +638148.917|220275.359|127.407 +638153.892|220270.772|127.489 +638158.909|220266.142|127.562 +638163.831|220261.600|127.623 +638168.848|220256.970|127.748 +638173.814|220252.389|127.785 +638178.821|220247.765|127.788 +638183.826|220243.148|127.757 +638188.782|220238.573|127.687 +638193.778|220233.961|127.550 +638198.780|220229.346|127.477 +638203.779|220224.732|127.410 +638208.768|220220.126|127.154 +638213.761|220215.514|127.032 +638218.756|220210.906|126.907 +638223.795|220206.255|126.760 +638228.736|220201.692|126.523 +638233.771|220197.046|126.251 +638238.803|220192.398|125.998 +638243.790|220187.796|125.718 +638248.770|220183.193|125.371 +638253.799|220178.551|124.938 +638258.789|220173.943|124.859 +638263.818|220169.300|124.478 +638268.872|220164.640|124.795 +638273.858|220160.035|124.633 +638278.897|220155.386|124.508 +638283.935|220150.738|124.456 +638293.993|220141.448|123.749 +638304.101|220132.133|125.005 +638314.116|220122.885|124.721 +638319.164|220118.234|125.182 +638324.242|220113.546|125.038 +638329.225|220108.944|124.840 +638334.306|220104.256|124.721 +638339.339|220099.611|124.560 +638344.316|220095.011|124.002 +638349.397|220090.321|123.822 +638354.429|220085.672|123.603 +638359.465|220081.027|123.450 +638364.497|220076.379|123.164 +638369.532|220071.731|122.835 +638374.567|220067.083|122.563 +638379.648|220062.389|122.240 +638384.687|220057.740|122.100 +638389.722|220053.089|121.661 +638394.809|220048.392|121.359 +638399.799|220043.784|121.055 +638404.840|220039.129|120.771 +638409.927|220034.432|120.576 +638414.969|220029.778|120.381 +638425.052|220020.475|120.360 +638475.444|219973.945|117.440 +638480.504|219969.272|117.034 +638495.607|219955.337|117.229 +638515.654|219936.856|119.552 +638520.655|219932.239|119.607 +638525.718|219927.566|119.409 +638530.726|219922.945|119.403 +638535.792|219918.270|119.198 +638540.809|219913.640|119.086 +638545.835|219908.998|118.744 +638550.861|219904.356|118.436 +638555.881|219899.720|118.287 +638560.904|219895.077|118.098 +638565.933|219890.432|117.845 +638570.950|219885.799|117.888 +638575.980|219881.154|117.720 +638580.966|219876.546|117.464 +638586.014|219871.882|116.986 +638591.064|219867.216|116.556 +638596.060|219862.598|116.227 +638601.117|219857.925|115.754 +638606.121|219853.298|115.391 +638611.117|219848.684|115.212 +638616.162|219844.026|115.102 +638621.087|219839.482|115.358 +638631.060|219830.277|116.214 +638636.050|219825.671|116.291 +638641.039|219821.066|116.373 +638645.992|219816.491|116.294 +638650.991|219811.876|116.281 +638655.984|219807.264|116.358 +638660.992|219802.641|116.281 +638665.984|219798.029|116.425 +638670.968|219793.423|116.059 +638675.973|219788.806|116.123 +638680.938|219784.218|116.050 +638695.873|219770.429|116.178 +638700.920|219765.763|115.818 +638705.837|219761.224|115.919 +638725.783|219742.802|115.510 +638730.742|219738.221|115.248 +638735.774|219733.573|115.269 +638745.671|219724.432|115.105 +638750.658|219719.823|114.675 +638755.593|219715.269|114.815 +638760.610|219710.633|114.629 +638765.553|219706.065|114.245 +638770.540|219701.459|113.947 +638775.581|219696.796|113.154 +638780.623|219692.135|112.414 +638785.603|219687.530|111.816 +638790.590|219682.921|111.203 +638795.628|219678.258|110.140 +638800.526|219673.737|110.420 +638805.589|219669.053|109.253 +638810.469|219664.551|109.747 +638825.450|219650.701|107.924 +638830.360|219646.165|107.845 +638835.252|219641.648|107.921 +638840.156|219637.122|107.933 +638845.061|219632.592|107.963 +638849.965|219628.063|108.006 +638854.833|219623.567|107.982 +638859.694|219619.077|108.018 +638864.434|219614.710|109.042 +638869.335|219610.183|108.826 +638874.267|219605.624|108.387 +638879.107|219601.158|108.692 +638883.871|219596.763|109.207 +638888.711|219592.295|109.521 +638893.500|219587.872|109.530 +638898.337|219583.404|109.536 +638903.144|219578.966|109.451 +638907.996|219574.482|109.408 +638912.836|219570.014|109.143 +638917.643|219565.570|108.765 +638922.593|219560.992|108.116 +638927.476|219556.474|107.284 +638932.255|219552.058|107.180 +638937.022|219547.654|107.195 +638941.795|219543.243|107.192 +638946.559|219538.845|107.616 +638951.198|219534.565|108.207 +638955.834|219530.286|108.844 +638960.531|219525.949|109.088 +638965.210|219521.633|109.478 +638969.895|219517.305|109.823 +638974.586|219512.976|110.167 +638979.197|219508.715|110.384 +638983.903|219504.369|110.640 +638988.588|219500.044|110.765 +638993.209|219495.773|110.972 +638997.854|219491.485|111.356 +639002.487|219487.205|111.530 +639007.123|219482.926|111.719 +639011.753|219478.650|111.950 +639016.353|219474.401|112.066 +639020.995|219470.109|111.962 +639025.640|219465.818|111.871 +639030.306|219461.505|111.661 +639034.912|219457.250|111.548 +639031.754|219457.311|111.478 +639027.091|219461.605|111.615 +639022.473|219465.860|111.816 +639017.764|219470.195|111.972 +639013.149|219474.440|111.880 +639008.537|219478.683|111.798 +639003.947|219482.908|111.606 +638999.317|219487.169|111.377 +638994.681|219491.436|111.197 +638990.079|219495.670|110.829 +638985.455|219499.922|110.597 +638980.816|219504.192|110.490 +638976.152|219508.481|110.240 +638971.474|219512.787|110.112 +638966.859|219517.033|109.905 +638962.199|219521.319|109.347 +638957.557|219525.589|109.033 +638952.902|219529.871|108.805 +638948.233|219534.163|108.030 +638943.581|219538.439|107.488 +638938.894|219542.752|107.201 +638934.120|219547.145|107.168 +638929.396|219551.497|107.186 +638924.583|219555.929|107.482 +638919.712|219560.416|108.195 +638914.802|219564.945|108.893 +638909.950|219569.413|109.213 +638905.109|219573.872|109.475 +638900.300|219578.301|109.539 +638895.487|219582.733|109.655 +638890.653|219587.180|109.561 +638885.861|219591.594|109.573 +638881.039|219596.031|109.457 +638876.196|219600.485|109.122 +638871.435|219604.865|108.573 +638866.583|219609.330|108.378 +638861.694|219613.835|108.863 +638856.771|219618.367|108.866 +638852.083|219622.674|107.793 +638842.299|219631.681|107.802 +638837.383|219636.207|107.842 +638832.479|219640.721|107.796 +638827.568|219645.242|107.823 +638822.612|219649.804|107.878 +638817.711|219654.315|107.872 +638812.755|219658.881|107.963 +638807.634|219663.609|109.548 +638802.706|219668.147|109.460 +638797.612|219672.844|110.448 +638787.627|219682.043|111.155 +638782.570|219686.704|111.923 +638777.547|219691.334|112.435 +638772.448|219696.040|113.721 +638767.373|219700.718|114.331 +638762.344|219705.348|114.532 +638757.309|219709.987|114.846 +638752.322|219714.578|114.672 +638747.293|219719.211|114.992 +638732.132|219733.173|115.324 +638727.091|219737.816|115.367 +638722.031|219742.473|115.611 +638701.786|219761.115|115.961 +638696.775|219765.729|115.843 +638691.679|219770.423|116.169 +638676.491|219784.407|116.074 +638671.401|219789.095|116.440 +638666.301|219793.795|116.348 +638661.235|219798.459|116.428 +638656.118|219803.177|116.626 +638651.015|219807.880|116.669 +638645.931|219812.559|116.419 +638640.884|219817.210|116.406 +638635.785|219821.907|116.446 +638630.652|219826.638|116.336 +638625.610|219831.280|116.269 +638620.484|219836.001|116.065 +638615.381|219840.695|115.477 +638610.300|219845.377|115.385 +638605.204|219850.071|115.507 +638600.056|219854.819|115.812 +638594.902|219859.568|116.208 +638589.748|219864.323|116.702 +638584.599|219869.069|117.089 +638579.503|219873.769|117.488 +638574.373|219878.493|117.589 +638569.244|219883.224|117.812 +638564.123|219887.942|117.845 +638558.993|219892.666|118.049 +638553.866|219897.391|118.284 +638548.734|219902.124|118.714 +638543.616|219906.843|118.854 +638538.492|219911.567|119.156 +638533.378|219916.279|119.268 +638528.263|219920.992|119.375 +638523.152|219925.701|119.506 +638518.043|219930.407|119.561 +638512.935|219935.116|119.668 +638507.845|219939.801|119.180 +638492.589|219953.840|117.269 +638487.487|219958.540|117.205 +638482.439|219963.185|116.839 +638467.105|219977.322|118.144 +638426.307|220014.928|120.168 +638416.173|220024.267|120.509 +638411.083|220028.958|120.622 +638406.038|220033.606|120.692 +638400.945|220038.300|121.024 +638395.855|220042.994|121.286 +638390.813|220047.639|121.558 +638385.772|220052.288|121.984 +638380.731|220056.936|122.280 +638375.692|220061.581|122.582 +638370.605|220066.269|122.783 +638365.612|220070.868|123.048 +638360.577|220075.513|123.426 +638355.539|220080.155|123.627 +638350.500|220084.798|123.749 +638345.511|220089.397|123.965 +638340.479|220094.036|124.426 +638335.492|220098.632|124.676 +638330.502|220103.229|124.761 +638325.467|220107.871|124.901 +638320.523|220112.425|124.798 +638315.482|220117.070|124.731 +638310.483|220121.672|124.447 +638305.490|220126.272|124.493 +638300.504|220130.868|124.758 +638295.557|220135.425|124.663 +638290.537|220140.040|123.728 +638285.560|220144.633|124.362 +638275.617|220153.795|124.371 +638270.673|220158.352|124.526 +638265.677|220162.955|124.563 +638260.721|220167.520|124.420 +638255.777|220172.077|124.670 +638250.834|220176.634|124.855 +638245.899|220181.185|125.270 +638240.961|220185.738|125.657 +638236.017|220190.292|125.910 +638231.076|220194.849|126.212 +638226.133|220199.406|126.447 +638221.234|220203.920|126.632 +638216.288|220208.480|126.824 +638211.386|220213.000|126.928 +638206.479|220217.520|126.983 +638201.535|220222.077|127.254 +638196.628|220226.597|127.382 +638191.724|220231.120|127.492 +638186.819|220235.640|127.657 +638181.906|220240.167|127.678 +638176.993|220244.693|127.742 +638172.076|220249.222|127.739 +638167.157|220253.758|127.684 +638162.280|220258.247|127.623 +638157.354|220262.786|127.550 +638152.426|220267.324|127.468 +638147.549|220271.820|127.419 +638142.617|220276.362|127.364 +638137.737|220280.861|127.330 +638132.800|220285.405|127.224 +638127.959|220289.867|127.135 +638123.028|220294.412|127.123 +638118.139|220298.914|127.108 +638113.256|220303.416|127.141 +638108.382|220307.906|127.355 +638103.456|220312.441|126.904 +638098.598|220316.918|126.703 +638093.688|220321.439|126.529 +638088.786|220325.953|126.486 +638083.937|220330.421|126.480 +638079.039|220334.935|126.498 +638074.211|220339.382|126.255 +638064.460|220348.362|125.840 +638059.583|220352.854|125.681 +638054.716|220357.338|125.636 +638049.842|220361.828|125.538 +638045.008|220366.281|125.364 +638040.134|220370.771|125.322 +638035.303|220375.221|125.258 +638030.469|220379.677|125.151 +638025.607|220384.151|124.831 +638020.737|220388.635|124.417 +638015.860|220393.128|123.975 +638010.986|220397.611|123.627 +638006.137|220402.080|123.530 +638001.272|220406.557|123.307 +637996.420|220411.026|122.752 +637991.573|220415.488|122.301 +637981.804|220424.480|121.262 +637976.998|220428.905|120.829 +637972.112|220433.404|120.585 +637967.272|220437.857|119.930 +637962.456|220442.295|119.948 +637957.625|220446.742|119.421 +637943.168|220460.053|118.339 +637918.769|220482.489|113.965 +637909.268|220491.234|113.657 +637894.805|220504.535|111.581 +637890.069|220508.897|111.459 +637885.259|220513.317|110.844 +637880.574|220517.633|110.795 +637870.903|220526.524|109.305 +637792.843|220598.438|114.383 +637788.290|220602.636|114.568 +637774.854|220615.017|115.690 +637770.431|220619.089|116.144 +637765.987|220623.185|116.464 +637752.698|220635.432|117.775 +637748.196|220639.577|117.815 +637734.959|220651.769|118.726 +637730.637|220655.756|119.278 +637717.481|220667.872|119.966 +637713.086|220671.923|120.165 +637708.697|220675.961|120.149 +637704.302|220680.009|120.101 +637699.961|220684.005|120.101 +637695.548|220688.068|120.003 +637691.122|220692.140|119.857 +637682.353|220700.211|119.531 +637677.976|220704.238|119.162 +637673.669|220708.203|119.183 +637669.305|220712.217|118.930 +637664.937|220716.238|118.674 +637651.900|220728.235|117.851 +637634.755|220744.005|116.873 +637630.415|220747.998|116.403 +637621.795|220755.926|115.330 +637613.377|220763.671|114.818 +637609.027|220767.667|113.931 +637592.211|220783.138|112.822 +637587.798|220787.189|111.264 +637583.470|220791.164|110.377 +637579.373|220794.931|110.335 +637575.389|220798.601|110.579 +637563.636|220809.431|112.523 +637559.710|220813.049|113.069 +637551.929|220820.217|114.047 +637524.070|220845.839|113.087 +637512.262|220856.696|112.319 +637508.291|220860.347|111.709 +637489.268|220877.849|111.566 +637485.684|220881.150|112.221 +637478.390|220887.868|113.041 +637474.903|220891.084|114.114 +637471.358|220894.348|114.532 +637464.314|220900.837|115.788 +637456.987|220907.579|115.721 +637446.340|220917.379|116.449 +637425.071|220936.941|116.199 +637421.602|220940.132|116.217 +637418.118|220943.336|116.187 +637414.641|220946.533|115.989 +637411.111|220949.776|115.803 +637407.703|220952.912|115.684 +637404.113|220956.207|115.099 +637400.702|220959.344|114.995 +637397.425|220962.358|115.199 +637387.105|220971.840|114.056 +637383.819|220974.864|114.066 +637380.536|220977.885|114.096 +637622.938|220752.808|115.669 +637631.534|220744.871|116.422 +637653.046|220725.001|117.918 +637661.703|220717.006|118.503 +637666.034|220713.004|118.583 +637670.420|220708.953|118.970 +637674.770|220704.933|119.183 +637679.192|220700.851|119.525 +637683.475|220696.892|119.424 +637692.280|220688.757|120.024 +637696.688|220684.685|120.104 +637709.855|220672.517|120.165 +637714.250|220668.451|119.979 +637718.582|220664.446|119.735 +637736.211|220648.142|118.634 +637749.498|220635.859|117.827 +637762.872|220623.490|116.778 +637776.268|220611.097|115.404 +637780.709|220606.985|114.821 +637789.814|220598.569|114.440 +637794.370|220594.357|114.315 +637807.891|220581.845|112.426 +637812.604|220577.493|113.035 +637840.462|220551.737|113.209 +637849.725|220543.169|112.356 +637854.407|220538.838|112.304 +637863.594|220530.334|111.011 +637868.059|220526.188|109.481 +637872.911|220521.714|110.353 +637882.461|220512.890|111.085 +637887.219|220508.492|110.993 +637896.765|220499.671|111.511 +637901.675|220495.141|112.642 +637911.322|220486.232|113.727 +637916.153|220481.773|114.379 +637921.045|220477.259|115.141 +637935.709|220463.723|117.613 +637940.550|220459.254|118.110 +637945.475|220454.707|118.964 +637950.273|220450.272|119.177 +637974.596|220427.805|121.033 +637979.445|220423.327|121.445 +637989.235|220414.284|122.329 +637994.137|220409.758|122.880 +637999.041|220405.228|123.490 +638003.884|220400.754|123.545 +638008.788|220396.221|123.761 +638013.708|220391.677|124.145 +638018.588|220387.172|124.651 +638023.507|220382.624|125.127 +638028.387|220378.113|125.221 +638033.313|220373.563|125.285 +638038.186|220369.058|125.364 +638043.103|220364.513|125.410 +638048.028|220359.962|125.566 +638052.908|220355.454|125.770 +638057.819|220350.913|125.819 +638062.735|220346.371|125.944 +638067.655|220341.824|126.169 +638072.577|220337.276|126.425 +638077.530|220332.698|126.535 +638082.431|220328.169|126.608 +638087.369|220323.603|126.547 +638092.316|220319.031|126.657 +638097.275|220314.450|126.898 +638102.234|220309.868|127.224 +638107.175|220305.299|127.327 +638112.091|220300.755|127.126 +638117.072|220296.149|127.163 +638122.001|220291.596|127.141 +638126.978|220286.993|127.221 +638131.913|220282.436|127.321 +638136.887|220277.837|127.388 +638141.855|220273.244|127.373 +638146.827|220268.647|127.437 +638151.847|220264.008|127.510 +638156.815|220259.415|127.590 +638161.783|220254.824|127.660 +638166.794|220250.192|127.708 +638171.756|220245.607|127.742 +638176.761|220240.980|127.711 +638181.763|220236.363|127.608 +638186.761|220231.742|127.513 +638191.760|220227.121|127.425 +638196.756|220222.506|127.273 +638201.745|220217.892|127.065 +638206.787|220213.234|126.956 +638211.783|220208.620|126.837 +638216.772|220204.005|126.666 +638221.811|220199.351|126.504 +638226.846|220194.696|126.276 +638231.878|220190.045|126.005 +638236.862|220185.437|125.715 +638241.891|220180.788|125.374 +638246.963|220176.098|124.950 +638251.940|220171.492|124.505 +638257.027|220166.792|124.444 +638262.062|220162.138|124.273 +638267.110|220157.477|124.438 +638272.145|220152.826|124.304 +638277.223|220148.129|124.039 +638282.259|220143.478|123.898 +638287.303|220138.817|124.167 +638297.432|220129.463|124.429 +638302.506|220124.769|124.090 +638307.597|220120.069|124.432 +638312.635|220115.418|124.545 +638317.670|220110.764|124.606 +638322.806|220106.024|124.929 +638327.835|220101.373|124.822 +638332.868|220096.724|124.804 +638337.991|220091.988|124.523 +638343.021|220087.340|124.100 +638348.099|220082.643|123.926 +638353.180|220077.949|123.740 +638358.212|220073.297|123.603 +638363.290|220068.604|123.338 +638368.371|220063.907|123.008 +638373.452|220059.210|122.761 +638378.533|220054.513|122.490 +638383.617|220049.813|122.225 +638388.652|220045.158|121.716 +638393.736|220040.458|121.609 +638398.820|220035.755|121.219 +638408.946|220026.398|120.780 +638414.082|220021.655|120.756 +638419.120|220016.998|120.774 +638424.198|220012.304|120.738 +638434.281|220002.986|120.482 +638439.377|219998.274|119.866 +638454.581|219984.213|118.296 +638464.718|219974.844|118.299 +638479.888|219960.820|117.208 +638484.985|219956.111|117.226 +638505.080|219937.561|119.287 +638510.118|219932.909|119.726 +638515.172|219928.243|119.686 +638520.177|219923.616|119.656 +638525.236|219918.937|119.482 +638530.247|219914.307|119.421 +638535.261|219909.674|119.272 +638540.284|219905.032|118.997 +638545.353|219900.344|118.735 +638550.334|219895.742|118.397 +638555.357|219891.103|118.180 +638560.383|219886.464|118.019 +638565.367|219881.861|117.717 +638570.384|219877.228|117.751 +638575.364|219872.632|117.641 +638580.347|219868.029|117.476 +638585.386|219863.375|117.187 +638590.400|219858.739|116.510 +638595.402|219854.118|116.114 +638600.361|219849.537|115.702 +638605.347|219844.932|115.657 +638610.279|219840.384|115.797 +638615.241|219835.806|116.190 +638620.173|219831.255|116.352 +638625.107|219826.699|116.446 +638630.091|219822.099|116.544 +638634.992|219817.576|116.495 +638639.945|219813.004|116.422 +638649.784|219803.927|117.278 +638654.765|219799.327|116.864 +638659.678|219794.789|116.739 +638664.640|219790.208|116.647 +638669.505|219785.715|116.589 +638674.482|219781.116|116.348 +638679.392|219776.586|116.409 +638689.247|219767.485|116.123 +638694.181|219762.928|115.946 +638699.086|219758.405|116.187 +638723.637|219735.731|115.538 +638728.532|219731.214|115.471 +638738.295|219722.204|115.666 +638743.233|219717.641|115.221 +638748.101|219713.145|115.017 +638753.020|219708.604|114.809 +638757.909|219704.089|114.931 +638762.792|219699.578|114.672 +638767.678|219695.067|114.404 +638772.689|219690.431|113.419 +638777.691|219685.801|112.112 +638782.659|219681.208|111.191 +638787.557|219676.685|110.954 +638792.501|219672.116|110.335 +638797.399|219667.590|110.152 +638802.373|219662.990|109.329 +638807.174|219658.561|109.661 +638822.006|219644.854|107.872 +638826.898|219640.337|107.930 +638831.744|219635.866|108.000 +638836.599|219631.382|107.985 +638841.458|219626.899|107.991 +638846.323|219622.406|107.973 +638855.951|219613.524|108.774 +638860.801|219609.046|108.558 +638865.620|219604.599|108.969 +638870.380|219600.210|109.469 +638875.169|219595.791|109.756 +638879.970|219591.362|109.993 +638884.810|219586.894|109.945 +638889.647|219582.425|109.923 +638894.441|219578.003|109.905 +638899.297|219573.519|109.811 +638904.119|219569.063|109.615 +638908.993|219564.564|109.454 +638913.857|219560.065|109.003 +638918.792|219555.505|108.131 +638923.736|219550.936|107.552 +638928.524|219546.517|107.400 +638933.395|219542.021|107.403 +638938.171|219537.613|107.390 +638942.932|219533.224|107.832 +638947.608|219528.914|108.521 +638952.305|219524.586|109.085 +638957.029|219520.228|109.472 +638961.748|219515.878|109.926 +638966.499|219511.495|110.188 +638971.260|219507.103|110.390 +638975.982|219502.747|110.548 +638980.743|219498.358|110.816 +638985.418|219494.042|110.972 +638990.124|219489.702|111.289 +638994.846|219485.346|111.530 +638999.528|219481.030|111.731 +639004.264|219476.656|111.901 +639008.964|219472.322|112.029 +639013.676|219467.973|112.093 +639018.416|219463.596|112.008 +639023.110|219459.264|111.935 +639021.528|219458.292|111.932 +639016.837|219462.611|111.959 +639012.049|219467.025|112.017 +639007.324|219471.377|112.005 +639002.615|219475.711|111.917 +638997.891|219480.064|111.655 +638993.154|219484.426|111.475 +638988.466|219488.742|111.310 +638983.751|219493.085|111.045 +638979.036|219497.425|110.777 +638974.314|219501.772|110.576 +638969.560|219506.152|110.292 +638964.841|219510.498|110.115 +638960.074|219514.887|109.939 +638955.402|219519.188|109.497 +638950.680|219523.535|109.073 +638945.989|219527.851|108.448 +638941.311|219532.154|107.753 +638936.525|219536.559|107.448 +638931.755|219540.954|107.415 +638926.939|219545.392|107.372 +638922.093|219549.857|107.546 +638917.237|219554.335|108.165 +638912.263|219558.925|108.966 +638907.441|219563.369|109.417 +638902.513|219567.911|109.597 +638897.727|219572.324|109.862 +638892.872|219576.799|109.920 +638888.022|219581.267|109.975 +638883.188|219585.717|109.914 +638878.394|219590.137|109.975 +638873.590|219594.562|109.753 +638868.719|219599.046|109.664 +638863.980|219603.408|109.347 +638859.164|219607.843|108.887 +638854.394|219612.235|108.469 +638849.493|219616.752|108.719 +638844.597|219621.260|108.936 +638835.060|219630.038|107.802 +638830.196|219634.522|107.851 +638825.337|219638.996|107.860 +638820.482|219643.471|107.878 +638815.577|219647.988|107.918 +638810.722|219652.462|107.979 +638805.641|219657.156|109.631 +638800.801|219661.612|109.177 +638795.823|219666.206|110.003 +638790.888|219670.756|110.493 +638785.920|219675.338|110.850 +638780.998|219679.873|111.261 +638775.993|219684.494|112.066 +638770.915|219689.185|113.590 +638765.861|219693.848|114.483 +638760.924|219698.399|114.730 +638756.001|219702.937|114.901 +638751.088|219707.461|114.483 +638746.122|219712.039|115.117 +638741.124|219716.644|115.123 +638736.183|219721.198|115.565 +638721.306|219734.908|115.654 +638711.311|219744.116|115.940 +638696.400|219757.859|116.260 +638691.453|219762.413|115.940 +638686.473|219767.000|116.038 +638676.454|219776.236|116.492 +638671.449|219780.847|116.388 +638666.469|219785.435|116.623 +638661.458|219790.046|116.608 +638656.395|219794.710|116.736 +638651.360|219799.346|117.123 +638646.334|219803.979|117.488 +638641.344|219808.569|117.287 +638636.352|219813.159|116.477 +638631.307|219817.804|116.480 +638626.257|219822.453|116.537 +638621.218|219827.092|116.461 +638616.183|219831.728|116.385 +638611.099|219836.409|116.333 +638606.082|219841.021|115.940 +638601.053|219845.654|115.833 +638595.959|219850.342|115.971 +638590.817|219855.078|116.196 +638585.742|219859.757|116.979 +638580.646|219864.454|117.370 +638575.556|219869.142|117.650 +638570.481|219873.815|117.671 +638565.363|219878.527|117.626 +638560.279|219883.209|117.879 +638555.198|219887.887|118.122 +638550.069|219892.615|118.455 +638544.991|219897.290|118.689 +638539.919|219901.963|118.936 +638534.795|219906.684|119.256 +638529.680|219911.393|119.381 +638524.615|219916.060|119.537 +638519.503|219920.763|119.619 +638514.395|219925.469|119.704 +638509.341|219930.123|119.662 +638504.245|219934.811|119.396 +638499.155|219939.493|118.994 +638483.890|219953.529|117.330 +638458.314|219977.087|118.546 +638453.218|219981.784|118.622 +638432.763|220000.633|120.597 +638427.621|220005.367|120.643 +638422.528|220010.057|120.829 +638417.444|220014.739|120.948 +638407.215|220024.157|120.911 +638402.124|220028.845|121.131 +638397.031|220033.533|121.338 +638391.944|220038.224|121.728 +638386.854|220042.909|121.868 +638381.767|220047.597|122.182 +638376.680|220052.284|122.530 +638371.593|220056.969|122.795 +638366.509|220061.651|123.060 +638361.424|220066.336|123.304 +638356.386|220070.975|123.676 +638351.302|220075.657|123.755 +638346.267|220080.296|123.911 +638341.186|220084.977|124.316 +638336.150|220089.613|124.609 +638331.069|220094.295|124.880 +638326.031|220098.931|124.798 +638320.996|220103.570|124.810 +638315.902|220108.255|124.505 +638310.861|220112.894|124.346 +638305.817|220117.536|124.148 +638300.775|220122.178|124.130 +638295.731|220126.820|123.938 +638290.695|220131.459|124.170 +638285.651|220136.102|124.069 +638280.643|220140.710|123.627 +638275.611|220145.346|123.920 +638270.621|220149.943|124.145 +638265.629|220154.542|124.270 +638260.627|220159.145|124.142 +638255.585|220163.790|124.258 +638250.642|220168.343|124.423 +638245.658|220172.934|124.846 +638240.672|220177.530|125.169 +638235.737|220182.078|125.596 +638230.750|220186.671|125.919 +638225.852|220191.182|126.130 +638220.863|220195.779|126.346 +638215.919|220200.332|126.584 +638211.018|220204.846|126.733 +638206.068|220209.406|126.864 +638201.163|220213.923|126.940 +638196.213|220218.480|127.102 +638191.309|220222.997|127.242 +638186.411|220227.511|127.449 +638181.501|220232.031|127.538 +638176.590|220236.555|127.593 +638171.680|220241.075|127.693 +638166.764|220245.601|127.693 +638161.847|220250.131|127.693 +638156.973|220254.617|127.635 +638152.048|220259.150|127.593 +638147.168|220263.645|127.492 +638142.291|220268.135|127.471 +638137.359|220272.674|127.379 +638132.483|220277.166|127.391 +638127.597|220281.662|127.318 +638122.756|220286.118|127.227 +638117.822|220290.663|127.187 +638112.978|220295.119|127.126 +638108.096|220299.618|127.163 +638103.264|220304.068|127.288 +638098.385|220308.561|127.425 +638093.505|220313.051|126.971 +638088.640|220317.528|126.739 +638083.785|220321.996|126.654 +638078.938|220326.462|126.684 +638074.080|220330.930|126.636 +638064.387|220339.855|126.251 +638059.562|220344.296|126.102 +638054.691|220348.779|125.971 +638049.860|220353.223|125.803 +638045.029|220357.670|125.639 +638040.195|220362.120|125.480 +638035.413|220366.525|125.349 +638030.582|220370.972|125.270 +638025.748|220375.422|125.200 +638020.962|220379.829|125.118 +638016.171|220384.240|125.014 +638011.279|220388.736|124.447 +638006.441|220393.189|123.935 +638001.616|220397.627|123.600 +637996.813|220402.049|123.499 +637991.982|220406.493|123.164 +637987.114|220410.968|122.518 +637982.323|220415.378|122.146 +637977.461|220419.850|121.615 +637972.657|220424.269|121.204 +637963.001|220433.154|120.479 +637958.173|220437.595|119.930 +637939.007|220455.228|118.546 +637934.246|220459.611|118.302 +637929.421|220464.046|117.592 +637914.858|220477.433|114.559 +637905.306|220486.226|113.447 +637886.237|220503.776|111.493 +637881.434|220508.196|110.530 +637876.770|220512.494|110.633 +637862.716|220525.442|110.597 +637839.655|220546.702|112.063 +637830.614|220555.047|113.843 +637816.688|220567.876|113.538 +637793.898|220588.877|113.986 +637789.350|220593.074|114.498 +637780.237|220601.468|114.242 +637775.808|220605.552|114.919 +637753.707|220625.941|117.818 +637749.190|220630.098|117.455 +637740.317|220638.279|118.013 +637731.545|220646.368|118.915 +637718.396|220658.493|119.851 +637713.961|220662.578|119.817 +637709.560|220666.634|119.979 +637705.180|220670.670|120.006 +637700.769|220674.733|119.872 +637691.936|220682.871|119.884 +637687.501|220686.956|119.683 +637683.124|220690.985|119.552 +637674.364|220699.053|119.028 +637669.932|220703.131|118.662 +637665.580|220707.142|118.458 +637661.142|220711.227|118.110 +637652.537|220719.155|118.058 +637648.176|220723.166|117.641 +637635.185|220735.129|116.699 +637618.031|220750.918|115.391 +637613.730|220754.877|114.928 +637604.992|220762.918|113.410 +637596.463|220770.764|112.508 +637579.562|220786.327|110.914 +637563.319|220801.301|111.435 +637539.792|220823.012|114.227 +637535.820|220826.673|114.404 +637531.903|220830.288|114.593 +637523.890|220837.667|114.011 +637511.765|220848.829|112.270 +637503.789|220856.172|111.350 +637495.949|220863.395|110.856 +637492.346|220866.724|111.831 +637488.460|220870.302|111.432 +637473.815|220883.814|113.215 +637466.777|220890.319|114.870 +637463.073|220893.732|114.861 +637448.635|220907.049|115.809 +637445.035|220910.365|115.852 +637437.842|220916.995|115.992 +637430.783|220923.505|116.269 +637427.204|220926.803|116.242 +637423.711|220930.022|116.348 +637420.142|220933.311|116.163 +637416.628|220936.551|116.004 +637413.053|220939.843|115.620 +637409.517|220943.098|115.404 +637402.668|220949.410|115.233 +637399.163|220952.635|114.971 +637395.734|220955.796|114.794 +637392.177|220959.066|114.154 +637388.833|220962.148|114.120 +637385.395|220965.315|113.745 +637382.097|220968.354|113.706 +637629.644|220738.171|116.275 +637633.945|220734.206|116.577 +637646.856|220722.297|117.415 +637651.175|220718.313|117.891 +637655.461|220714.357|117.976 +637659.810|220710.346|118.129 +637664.108|220706.380|118.308 +637668.451|220702.372|118.464 +637672.865|220698.303|119.028 +637694.737|220678.122|119.732 +637699.145|220674.056|119.829 +637703.506|220670.030|119.707 +637707.950|220665.927|119.784 +637729.878|220645.682|118.753 +637743.155|220633.420|118.162 +637747.574|220629.339|117.659 +637765.301|220612.962|116.089 +637769.782|220608.823|115.730 +637778.664|220600.615|114.556 +637783.193|220596.433|114.544 +637787.710|220592.263|114.136 +637801.088|220579.894|111.621 +637810.467|220571.244|112.529 +637815.149|220566.931|113.282 +637833.674|220549.829|112.990 +637842.895|220541.313|112.145 +637852.176|220532.742|111.438 +637865.934|220520.022|109.338 +637870.827|220515.517|110.502 +637875.536|220511.171|110.365 +637880.245|220506.824|110.630 +637894.677|220493.520|112.377 +637913.968|220475.735|114.514 +637918.948|220471.151|115.995 +637923.816|220466.667|117.022 +637928.675|220462.189|117.595 +637933.542|220457.703|118.302 +637943.284|220448.723|119.448 +637948.109|220444.273|119.909 +637952.976|220439.777|119.927 +637957.789|220435.343|120.317 +637962.678|220430.832|120.564 +637972.380|220421.886|121.329 +637977.284|220417.359|121.826 +637982.176|220412.848|122.219 +637987.029|220408.377|122.713 +637991.985|220403.808|123.338 +637996.837|220399.330|123.450 +638001.696|220394.847|123.655 +638006.582|220390.342|124.157 +638011.519|220385.788|124.743 +638016.427|220381.265|125.026 +638021.300|220376.766|125.029 +638026.135|220372.304|125.151 +638031.060|220367.759|125.230 +638035.894|220363.297|125.389 +638040.820|220358.752|125.517 +638045.703|220354.250|125.706 +638050.625|220349.706|125.870 +638055.554|220345.161|126.123 +638060.422|220340.669|126.251 +638065.344|220336.127|126.477 +638070.261|220331.592|126.669 +638075.214|220327.023|126.751 +638080.103|220322.509|126.678 +638085.037|220317.952|126.611 +638089.951|220313.422|126.861 +638094.925|220308.835|127.321 +638099.811|220304.324|127.309 +638104.731|220299.783|127.093 +638109.711|220295.186|127.123 +638114.594|220290.678|127.117 +638119.574|220286.082|127.166 +638124.509|220281.528|127.273 +638129.486|220276.938|127.327 +638134.458|220272.347|127.324 +638139.389|220267.797|127.462 +638144.358|220263.213|127.468 +638149.329|220258.625|127.522 +638154.297|220254.038|127.583 +638159.265|220249.457|127.632 +638164.231|220244.873|127.681 +638169.235|220240.249|127.635 +638174.143|220235.717|127.565 +638179.148|220231.096|127.541 +638184.101|220226.521|127.468 +638189.090|220221.909|127.245 +638194.037|220217.340|127.068 +638198.984|220212.768|126.953 +638203.980|220208.153|126.858 +638208.972|220203.542|126.721 +638213.962|220198.930|126.535 +638218.951|220194.322|126.370 +638223.941|220189.713|126.148 +638228.928|220185.104|125.934 +638233.954|220180.459|125.569 +638238.888|220175.899|125.203 +638243.918|220171.251|124.849 +638248.898|220166.646|124.514 +638258.920|220157.389|124.136 +638263.964|220152.728|124.276 +638269.000|220148.077|124.130 +638274.035|220143.426|123.978 +638279.015|220138.823|123.615 +638284.069|220134.163|124.133 +638294.134|220124.861|123.862 +638299.175|220120.209|124.008 +638304.259|220115.512|124.051 +638309.300|220110.861|124.337 +638314.336|220106.210|124.429 +638319.374|220101.559|124.642 +638324.412|220096.907|124.904 +638334.523|220087.568|124.673 +638339.552|220082.923|124.441 +638344.627|220078.229|124.066 +638349.659|220073.581|123.911 +638354.691|220068.933|123.819 +638359.772|220064.239|123.676 +638364.850|220059.545|123.222 +638369.883|220054.897|122.999 +638374.964|220050.200|122.783 +638380.048|220045.503|122.429 +638385.083|220040.851|122.137 +638390.167|220036.154|121.978 +638395.251|220031.454|121.588 +638400.290|220026.800|121.436 +638405.374|220022.103|121.344 +638415.499|220012.752|121.204 +638420.577|220008.061|121.122 +638425.667|220003.358|120.829 +638430.757|219998.655|120.649 +638440.938|219989.249|120.250 +638451.139|219979.815|118.878 +638456.239|219975.100|118.500 +638466.373|219965.745|118.793 +638481.641|219951.636|117.616 +638496.847|219937.603|118.979 +638501.934|219932.909|119.381 +638506.976|219928.255|119.659 +638512.023|219923.592|119.768 +638517.129|219918.879|119.671 +638522.137|219914.252|119.610 +638527.245|219909.531|119.436 +638532.308|219904.855|119.305 +638537.374|219900.177|119.116 +638542.446|219895.489|118.781 +638547.560|219890.761|118.653 +638552.595|219886.104|118.220 +638557.722|219881.364|117.909 +638562.748|219876.716|117.735 +638567.820|219872.028|117.638 +638572.892|219867.341|117.604 +638577.918|219862.695|117.543 +638583.014|219857.983|117.092 +638588.120|219853.259|116.498 +638593.122|219848.635|116.129 +638598.206|219843.935|116.028 +638603.238|219839.281|116.010 +638608.249|219834.657|116.419 +638613.278|219830.009|116.510 +638618.310|219825.357|116.568 +638623.300|219820.749|116.592 +638628.341|219816.088|116.568 +638633.276|219811.529|116.711 +638638.275|219806.917|117.388 +638648.224|219797.721|117.351 +638653.250|219793.073|116.982 +638658.215|219788.483|116.797 +638663.226|219783.850|116.717 +638668.194|219779.259|116.605 +638673.150|219774.678|116.659 +638678.124|219770.079|116.483 +638683.074|219765.501|116.053 +638688.040|219760.913|116.102 +638692.950|219756.375|116.211 +638707.788|219742.659|116.028 +638732.406|219719.902|115.538 +638737.335|219715.346|115.172 +638742.227|219710.826|115.212 +638747.147|219706.275|114.986 +638752.075|219701.718|114.700 +638756.909|219697.253|114.928 +638761.853|219692.681|114.550 +638766.736|219688.167|114.319 +638771.793|219683.482|112.932 +638776.752|219678.885|111.584 +638781.705|219674.301|110.822 +638786.551|219669.818|110.624 +638791.443|219665.297|110.499 +638796.399|219660.707|109.381 +638801.322|219656.153|109.039 +638806.113|219651.725|109.027 +638815.940|219642.636|107.820 +638820.789|219638.152|107.802 +638825.578|219633.729|107.936 +638830.360|219629.310|108.131 +638835.054|219624.978|109.064 +638839.888|219620.510|108.866 +638844.728|219616.033|108.619 +638849.450|219611.674|108.991 +638854.257|219607.233|109.454 +638858.996|219602.856|109.707 +638863.751|219598.464|109.856 +638868.506|219594.072|110.033 +638873.273|219589.664|110.118 +638878.052|219585.248|110.140 +638882.844|219580.819|110.076 +638887.614|219576.408|110.204 +638892.366|219572.019|110.143 +638897.112|219567.630|110.124 +638901.964|219563.144|109.734 +638906.758|219558.709|109.423 +638911.574|219554.256|108.988 +638916.457|219549.732|108.113 +638921.252|219545.297|107.552 +638926.016|219540.893|107.555 +638930.737|219536.528|107.546 +638935.501|219532.130|107.613 +638940.131|219527.851|107.918 +638944.749|219523.586|108.643 +638949.385|219519.310|109.283 +638953.978|219515.067|109.862 +638958.672|219510.730|110.140 +638963.342|219506.417|110.271 +638967.993|219502.119|110.530 +638972.638|219497.828|110.853 +638977.298|219493.524|111.103 +638981.910|219489.263|111.341 +638986.656|219484.877|111.395 +638991.267|219480.616|111.694 +638995.897|219476.336|111.874 +639000.558|219472.033|111.908 +639005.191|219467.750|112.115 +639009.879|219463.416|112.005 +639014.539|219459.109|112.093 +639013.960|219456.902|112.225 +639009.235|219461.261|112.191 +639004.450|219465.674|112.237 +638999.646|219470.106|112.124 +638994.901|219474.480|111.962 +638990.118|219478.891|111.761 +638985.363|219483.274|111.408 +638980.545|219487.718|111.466 +638975.732|219492.155|111.188 +638970.965|219496.551|110.966 +638966.112|219501.025|110.670 +638961.367|219505.399|110.341 +638956.505|219509.880|110.137 +638951.710|219514.299|109.832 +638946.937|219518.697|109.094 +638942.201|219523.056|108.430 +638937.400|219527.482|107.887 +638932.551|219531.953|107.698 +638927.689|219536.437|107.610 +638922.767|219540.975|107.598 +638917.868|219545.496|107.811 +638912.787|219550.189|108.637 +638907.831|219554.768|109.308 +638902.869|219559.349|109.710 +638897.910|219563.927|110.121 +638893.003|219568.456|110.204 +638888.044|219573.028|110.304 +638883.173|219577.518|110.137 +638878.226|219582.084|110.219 +638873.343|219586.589|110.210 +638868.402|219591.142|110.262 +638863.510|219595.657|109.999 +638858.594|219600.189|109.926 +638853.687|219604.715|109.814 +638848.773|219609.242|109.359 +638843.912|219613.722|108.905 +638838.986|219618.264|108.604 +638833.966|219622.900|109.100 +638829.074|219627.411|108.957 +638824.212|219631.885|108.165 +638819.275|219636.439|108.030 +638809.402|219645.546|107.829 +638804.236|219650.323|109.344 +638799.377|219654.803|109.064 +638794.354|219659.439|109.405 +638789.300|219664.112|110.499 +638784.317|219668.705|110.521 +638779.337|219673.305|111.024 +638774.277|219677.980|111.856 +638769.153|219682.717|113.340 +638764.066|219687.423|114.550 +638759.134|219691.971|114.730 +638754.154|219696.570|114.983 +638749.237|219701.099|114.596 +638744.242|219705.711|115.020 +638739.274|219710.295|115.209 +638734.330|219714.855|115.169 +638729.291|219719.506|115.654 +638704.471|219742.406|116.114 +638689.618|219756.104|116.342 +638684.608|219760.727|116.248 +638679.645|219765.303|116.153 +638674.644|219769.923|116.608 +638669.666|219774.514|116.739 +638664.707|219779.089|116.705 +638659.745|219783.664|116.736 +638654.722|219788.300|116.979 +638649.751|219792.884|117.159 +638644.731|219797.520|117.437 +638634.785|219806.691|117.373 +638629.875|219811.215|116.769 +638624.839|219815.857|116.638 +638619.889|219820.426|116.736 +638614.903|219825.022|116.641 +638609.864|219829.670|116.632 +638604.936|219834.212|116.406 +638599.925|219838.833|116.022 +638594.929|219843.441|116.175 +638589.940|219848.041|116.211 +638584.889|219852.704|116.605 +638579.857|219857.355|117.568 +638574.824|219861.997|117.668 +638569.795|219866.637|117.729 +638564.824|219871.218|117.623 +638559.795|219875.863|117.818 +638554.763|219880.505|118.043 +638549.724|219885.156|118.479 +638544.695|219889.795|118.735 +638539.675|219894.428|118.848 +638534.597|219899.113|119.232 +638529.577|219903.746|119.409 +638524.560|219908.373|119.509 +638519.494|219913.045|119.726 +638514.437|219917.712|119.726 +638509.430|219922.333|119.784 +638504.333|219927.030|119.585 +638499.338|219931.635|119.256 +638494.293|219936.287|118.936 +638489.191|219940.993|118.982 +638484.207|219945.580|118.180 +638479.163|219950.228|117.836 +638463.938|219964.279|118.872 +638453.846|219973.588|118.680 +638438.630|219987.636|120.488 +638433.537|219992.333|120.546 +638428.444|219997.033|120.741 +638413.225|220011.078|121.414 +638403.094|220020.421|121.484 +638398.007|220025.115|121.640 +638392.965|220029.766|121.881 +638387.878|220034.460|122.067 +638382.791|220039.154|122.277 +638377.753|220043.802|122.588 +638372.669|220048.496|122.886 +638367.584|220053.187|123.200 +638362.503|220057.878|123.414 +638357.419|220062.568|123.758 +638352.335|220067.256|123.813 +638347.303|220071.901|123.996 +638342.219|220076.589|124.118 +638337.141|220081.277|124.593 +638332.106|220085.922|124.688 +638327.025|220090.610|124.828 +638321.941|220095.298|124.734 +638316.899|220099.946|124.478 +638311.815|220104.637|124.389 +638306.725|220109.328|124.218 +638301.680|220113.979|123.883 +638296.593|220118.670|123.847 +638291.552|220123.318|123.780 +638286.511|220127.966|123.810 +638281.469|220132.615|123.740 +638276.373|220137.312|123.527 +638271.341|220141.951|123.898 +638266.299|220146.596|124.023 +638261.258|220151.244|124.066 +638256.259|220155.850|124.063 +638251.221|220160.498|124.206 +638246.182|220165.140|124.474 +638241.150|220169.782|124.822 +638236.115|220174.424|125.154 +638231.128|220179.024|125.474 +638226.102|220183.660|125.925 +638221.109|220188.262|126.108 +638216.114|220192.868|126.255 +638211.075|220197.513|126.480 +638206.080|220202.118|126.645 +638201.130|220206.681|126.788 +638196.088|220211.329|126.977 +638191.132|220215.898|127.044 +638186.134|220220.507|127.184 +638181.138|220225.113|127.394 +638176.231|220229.636|127.526 +638171.223|220234.250|127.535 +638166.261|220238.822|127.596 +638161.301|220243.394|127.657 +638156.330|220247.976|127.593 +638151.408|220252.511|127.529 +638146.485|220257.046|127.510 +638141.508|220261.634|127.434 +638136.585|220266.172|127.419 +638131.654|220270.714|127.343 +638126.771|220275.216|127.285 +638121.790|220279.803|127.269 +638116.901|220284.308|127.172 +638112.015|220288.813|127.138 +638107.081|220293.360|127.123 +638102.195|220297.862|127.151 +638097.303|220302.367|127.145 +638092.432|220306.860|127.394 +638087.509|220311.395|127.010 +638082.636|220315.882|126.700 +638077.743|220320.390|126.773 +638072.937|220324.819|126.721 +638068.051|220329.324|126.888 +638063.174|220333.817|126.623 +638058.303|220338.303|126.489 +638053.423|220342.799|126.227 +638048.547|220347.292|126.053 +638043.709|220351.748|125.819 +638038.869|220356.204|125.593 +638033.986|220360.703|125.432 +638029.149|220365.162|125.261 +638024.306|220369.622|125.096 +638019.520|220374.032|125.017 +638014.689|220378.482|124.993 +638009.852|220382.941|124.938 +638005.030|220387.379|124.584 +638000.181|220391.845|123.990 +637995.341|220396.301|123.511 +637990.531|220400.733|123.368 +637985.764|220405.125|123.188 +637980.893|220409.605|122.524 +637971.240|220418.493|121.676 +637966.488|220422.870|121.308 +637961.700|220427.284|121.067 +637956.890|220431.712|120.680 +637952.147|220436.077|120.494 +637947.331|220440.512|120.116 +637942.580|220444.892|119.872 +637937.819|220449.275|119.595 +637928.214|220458.117|118.442 +637923.362|220462.577|117.129 +637913.733|220471.434|115.605 +637908.924|220475.857|114.757 +637904.111|220480.282|114.297 +637899.325|220484.681|113.313 +637885.049|220497.818|111.926 +637880.342|220502.149|111.679 +637870.839|220510.891|110.576 +637866.166|220515.197|110.630 +637861.317|220519.650|109.103 +637856.928|220523.704|110.883 +637847.717|220532.193|111.377 +637838.368|220540.795|111.024 +637820.266|220557.485|113.148 +637815.691|220561.698|113.063 +637806.255|220570.369|111.115 +637797.376|220578.559|112.837 +637788.454|220586.786|113.998 +637779.417|220595.113|114.486 +637761.674|220611.463|116.458 +637752.896|220619.555|117.464 +637748.437|220623.664|117.720 +637739.528|220631.872|118.037 +637730.713|220639.989|118.397 +637726.394|220643.976|119.229 +637713.296|220656.040|119.915 +637708.837|220660.145|119.735 +637695.712|220672.231|119.915 +637686.949|220680.296|119.491 +637678.244|220688.309|119.467 +637673.809|220692.390|119.049 +637669.436|220696.414|118.702 +637660.764|220704.393|118.214 +637656.430|220708.386|118.125 +637634.816|220728.271|116.772 +637617.671|220744.048|115.431 +637604.803|220755.883|113.989 +637591.836|220767.801|111.530 +637587.709|220771.602|111.517 +637579.190|220779.432|110.304 +637547.497|220808.632|113.645 +637539.606|220815.898|114.154 +637503.731|220848.902|111.706 +637495.964|220856.047|111.493 +637492.161|220859.549|111.630 +637488.183|220863.207|111.054 +637480.691|220870.104|111.438 +637469.846|220880.102|113.246 +637459.099|220890.002|114.678 +637455.365|220893.437|114.572 +637444.660|220903.297|115.638 +637437.574|220909.823|115.967 +637423.279|220922.978|116.059 +637419.746|220926.227|116.022 +637416.235|220929.458|115.858 +637412.665|220932.741|115.690 +637409.206|220935.923|115.763 +637398.541|220945.728|114.523 +637391.735|220951.989|114.572 +637388.291|220955.159|114.352 +637384.819|220958.350|114.041 +637377.885|220964.720|113.102 +637618.433|220741.055|115.138 +637635.578|220725.217|116.595 +637657.250|220705.201|118.147 +637661.572|220701.205|118.202 +637665.842|220697.258|118.260 +637670.289|220693.152|118.735 +637674.654|220689.123|119.061 +637683.405|220681.036|119.634 +637687.775|220676.995|119.518 +637696.554|220668.884|119.808 +637705.305|220660.795|119.753 +637709.727|220656.707|119.744 +637714.141|220652.629|119.683 +637731.621|220636.459|118.378 +637740.506|220628.242|117.940 +637744.913|220624.167|117.671 +637749.376|220620.040|117.446 +637758.309|220611.780|116.812 +637785.114|220586.978|114.056 +637789.679|220582.756|114.002 +637798.537|220574.554|112.194 +637802.926|220570.488|110.713 +637835.445|220540.450|111.481 +637840.139|220536.110|111.490 +637849.387|220527.560|110.920 +637858.577|220519.056|109.295 +637863.466|220514.554|110.761 +637877.806|220501.314|111.648 +637882.531|220496.946|111.716 +637896.969|220483.623|113.276 +637901.874|220479.100|114.456 +637906.631|220474.708|114.514 +637911.597|220470.130|115.873 +637921.366|220461.120|117.394 +637926.245|220456.618|118.205 +637936.023|220447.596|119.643 +637940.845|220443.146|120.043 +637945.707|220438.659|120.415 +637960.246|220425.232|121.326 +637965.123|220420.731|121.518 +637969.987|220416.241|122.060 +637974.861|220411.739|122.307 +637979.762|220407.216|122.795 +637984.654|220402.702|123.258 +637989.510|220398.215|123.405 +637994.420|220393.682|123.633 +637999.321|220389.159|124.279 +638004.256|220384.602|124.825 +638009.139|220380.094|124.886 +638014.022|220375.583|124.971 +638018.905|220371.072|125.069 +638023.833|220366.522|125.179 +638028.716|220362.011|125.337 +638033.648|220357.454|125.550 +638038.580|220352.900|125.767 +638043.469|220348.389|126.062 +638048.443|220343.796|126.279 +638053.320|220339.291|126.523 +638058.276|220334.713|126.590 +638063.180|220330.180|126.669 +638068.185|220325.566|127.358 +638073.089|220321.030|126.885 +638077.978|220316.513|126.840 +638082.925|220311.944|126.937 +638087.896|220307.354|127.382 +638092.865|220302.764|127.169 +638097.744|220298.252|127.108 +638102.725|220293.653|127.105 +638107.654|220289.099|127.108 +638112.588|220284.543|127.175 +638117.566|220279.943|127.196 +638122.494|220275.389|127.266 +638127.472|220270.793|127.349 +638132.440|220266.203|127.352 +638137.414|220261.609|127.416 +638142.383|220257.016|127.489 +638147.348|220252.432|127.489 +638152.313|220247.845|127.516 +638157.324|220243.215|127.547 +638162.283|220238.633|127.522 +638167.291|220234.013|127.489 +638172.247|220229.435|127.465 +638177.249|220224.817|127.401 +638182.238|220220.205|127.187 +638187.188|220215.636|127.062 +638192.184|220211.022|126.953 +638197.177|220206.410|126.809 +638202.169|220201.798|126.663 +638207.159|220197.190|126.471 +638212.151|220192.581|126.312 +638217.138|220187.976|126.123 +638222.176|220183.321|125.992 +638227.157|220178.722|125.614 +638232.137|220174.119|125.227 +638237.166|220169.474|124.889 +638242.147|220164.872|124.581 +638247.179|220160.224|124.307 +638252.117|220155.661|124.075 +638257.155|220151.009|124.014 +638262.194|220146.358|123.972 +638267.186|220141.750|123.944 +638272.221|220137.098|123.859 +638277.248|220132.453|123.429 +638282.240|220127.845|123.591 +638287.282|220123.190|123.737 +638292.311|220118.545|123.450 +638297.358|220113.891|123.859 +638302.397|220109.240|123.969 +638307.435|220104.588|124.191 +638312.470|220099.940|124.331 +638317.506|220095.292|124.465 +638322.544|220090.644|124.618 +638327.579|220085.995|124.840 +638332.609|220081.350|124.682 +638337.638|220076.705|124.481 +638342.667|220072.060|124.133 +638347.745|220067.369|124.039 +638352.777|220062.721|123.880 +638357.809|220058.076|123.621 +638362.887|220053.382|123.432 +638367.920|220048.734|123.188 +638372.955|220044.085|122.981 +638378.036|220039.391|122.560 +638383.068|220034.740|122.344 +638388.104|220030.092|122.256 +638393.188|220025.395|121.911 +638398.226|220020.744|121.832 +638403.261|220016.092|121.713 +638408.300|220011.441|121.689 +638413.335|220006.790|121.582 +638418.416|220002.099|121.478 +638428.499|219992.781|120.786 +638433.589|219988.078|120.549 +638438.630|219983.424|120.454 +638453.837|219969.370|118.653 +638458.884|219964.709|118.625 +638469.025|219955.346|118.552 +638479.169|219945.979|118.516 +638484.189|219941.352|119.500 +638489.255|219936.674|118.961 +638494.345|219931.974|119.137 +638499.386|219927.322|119.436 +638504.428|219922.668|119.698 +638509.521|219917.968|119.906 +638514.578|219913.298|119.787 +638519.637|219908.626|119.619 +638524.694|219903.956|119.540 +638529.757|219899.278|119.326 +638534.826|219894.599|119.104 +638539.894|219889.917|118.851 +638544.914|219885.284|118.729 +638549.992|219880.593|118.382 +638555.073|219875.902|118.010 +638560.148|219871.218|117.821 +638565.223|219866.533|117.687 +638570.243|219861.900|117.729 +638575.263|219857.267|117.744 +638580.354|219852.567|117.406 +638585.380|219847.922|116.571 +638590.467|219843.228|116.391 +638595.505|219838.577|116.260 +638600.492|219833.974|116.196 +638605.545|219829.314|116.675 +638610.526|219824.717|116.763 +638615.558|219820.075|116.858 +638620.606|219815.418|116.696 +638625.546|219810.858|116.736 +638630.536|219806.259|117.513 +638645.578|219792.378|117.446 +638650.531|219787.806|117.397 +638655.548|219783.176|117.217 +638660.577|219778.531|116.882 +638665.533|219773.959|116.915 +638670.538|219769.338|116.934 +638675.500|219764.757|116.348 +638680.505|219760.136|116.431 +638685.464|219755.561|116.544 +638700.308|219741.863|116.233 +638705.297|219737.255|116.053 +638725.006|219719.064|115.797 +638729.989|219714.462|115.315 +638734.878|219709.951|115.376 +638739.786|219705.421|115.248 +638744.696|219700.889|115.135 +638749.643|219696.320|114.669 +638754.504|219691.839|115.093 +638759.424|219687.298|114.956 +638764.353|219682.741|114.288 +638769.354|219678.117|112.977 +638774.423|219673.423|111.508 +638779.364|219668.861|110.883 +638784.262|219664.340|110.679 +638789.154|219659.820|110.100 +638794.113|219655.239|109.408 +638798.978|219650.743|109.137 +638803.830|219646.272|109.472 +638808.756|219641.718|108.732 +638813.590|219637.256|108.817 +638818.342|219632.876|109.216 +638823.194|219628.401|109.219 +638828.047|219623.918|108.805 +638832.899|219619.440|108.850 +638837.657|219615.051|109.259 +638842.421|219610.659|109.640 +638847.185|219606.267|110.054 +638851.928|219601.893|110.252 +638856.741|219597.449|110.298 +638861.508|219593.051|110.347 +638866.266|219588.661|110.499 +638871.042|219584.254|110.518 +638875.830|219579.834|110.460 +638880.567|219575.467|110.472 +638885.310|219571.087|110.423 +638890.089|219566.679|110.515 +638894.813|219562.318|110.310 +638899.644|219557.858|110.073 +638904.411|219553.454|109.597 +638909.230|219549.001|109.149 +638914.065|219544.532|108.280 +638918.847|219540.110|107.787 +638923.617|219535.705|107.762 +638928.341|219531.347|107.744 +638932.993|219527.052|107.887 +638937.726|219522.687|108.180 +638942.320|219518.448|108.735 +638946.888|219514.235|109.478 +638951.491|219509.992|110.009 +638956.124|219505.716|110.356 +638960.757|219501.443|110.731 +638965.402|219497.157|111.027 +638970.017|219492.899|111.222 +638974.695|219488.580|111.350 +638979.331|219484.301|111.453 +638983.940|219480.049|111.743 +638988.564|219475.782|111.947 +638993.200|219471.502|112.097 +638997.787|219467.265|112.255 +639002.426|219462.986|112.142 +639007.062|219458.707|112.350 +639004.968|219457.597|112.404 +639000.262|219461.928|112.267 +638995.544|219466.272|112.231 +638990.838|219470.603|112.124 +638986.098|219474.962|111.938 +638981.368|219479.317|111.737 +638976.652|219483.655|111.447 +638971.864|219488.062|111.313 +638967.127|219492.421|111.191 +638962.314|219496.849|110.932 +638957.541|219501.242|110.771 +638952.811|219505.591|110.344 +638948.035|219509.986|109.917 +638943.292|219514.345|109.274 +638938.561|219518.694|108.564 +638933.809|219523.062|107.991 +638928.887|219527.592|107.930 +638924.071|219532.026|107.848 +638919.155|219536.553|107.799 +638914.241|219541.076|108.073 +638909.197|219545.730|108.988 +638904.259|219550.278|109.497 +638899.227|219554.917|110.039 +638894.274|219559.477|110.371 +638889.354|219564.009|110.512 +638884.410|219568.560|110.496 +638879.448|219573.129|110.624 +638874.514|219577.670|110.585 +638869.576|219582.218|110.597 +638864.641|219586.759|110.594 +638859.673|219591.331|110.493 +638854.756|219595.858|110.411 +638849.785|219600.433|110.387 +638844.826|219604.999|110.292 +638839.900|219609.531|109.951 +638834.984|219614.051|109.542 +638830.025|219618.614|109.109 +638825.096|219623.147|108.835 +638820.088|219627.758|108.841 +638815.096|219632.358|109.170 +638810.024|219637.030|109.375 +638805.068|219641.593|109.436 +638800.069|219646.193|109.039 +638795.064|219650.798|109.152 +638790.035|219655.431|109.515 +638784.899|219660.168|110.438 +638779.900|219664.773|110.609 +638774.798|219669.473|110.850 +638769.656|219674.219|112.432 +638764.484|219678.992|113.883 +638759.375|219683.704|114.803 +638754.340|219688.343|115.053 +638749.332|219692.952|115.035 +638744.281|219697.603|114.998 +638739.213|219702.270|115.166 +638734.247|219706.842|115.312 +638729.194|219711.496|115.394 +638724.143|219716.144|115.440 +638719.065|219720.823|115.833 +638709.031|219730.061|115.931 +638703.993|219734.701|115.989 +638698.951|219739.343|116.086 +638693.916|219743.979|116.184 +638678.786|219757.914|116.873 +638673.787|219762.514|116.605 +638668.746|219767.159|116.922 +638658.727|219776.382|116.797 +638653.640|219781.073|117.187 +638648.608|219785.715|117.552 +638643.609|219790.321|117.464 +638638.552|219794.981|117.562 +638623.535|219808.816|117.120 +638618.560|219813.397|116.797 +638613.510|219818.054|116.940 +638608.523|219822.648|116.797 +638603.512|219827.262|116.342 +638598.471|219831.908|116.400 +638593.484|219836.504|116.348 +638588.437|219841.158|116.574 +638578.321|219850.488|117.543 +638573.279|219855.136|117.763 +638568.256|219859.766|117.696 +638563.230|219864.399|117.717 +638558.198|219869.035|117.836 +638553.162|219873.680|118.125 +638548.130|219878.320|118.366 +638543.095|219882.962|118.674 +638538.066|219887.598|118.936 +638533.039|219892.231|119.134 +638528.016|219896.867|119.400 +638522.996|219901.490|119.512 +638517.979|219906.117|119.646 +638512.962|219910.741|119.811 +638507.948|219915.362|119.854 +638502.943|219919.974|119.750 +638497.945|219924.579|119.448 +638492.900|219929.224|119.080 +638487.892|219933.836|119.052 +638482.891|219938.448|118.955 +638477.837|219943.105|118.906 +638462.786|219956.973|118.476 +638457.781|219961.585|118.510 +638437.603|219980.196|120.244 +638432.598|219984.811|120.567 +638427.551|219989.465|120.832 +638422.549|219994.077|121.253 +638412.463|220003.376|121.698 +638407.468|220007.979|121.771 +638402.426|220012.627|121.780 +638397.385|220017.275|121.945 +638392.343|220021.923|122.073 +638387.299|220026.572|122.347 +638382.261|220031.217|122.438 +638377.268|220035.822|122.697 +638372.230|220040.467|123.085 +638367.188|220045.113|123.237 +638362.199|220049.715|123.399 +638357.160|220054.357|123.627 +638352.125|220059.002|123.947 +638347.135|220063.602|124.063 +638342.097|220068.244|124.106 +638337.065|220072.889|124.487 +638332.078|220077.485|124.727 +638327.040|220082.128|124.834 +638321.998|220086.773|124.584 +638317.006|220091.372|124.395 +638311.964|220096.017|124.313 +638306.923|220100.662|124.087 +638301.930|220105.265|124.072 +638296.880|220109.913|123.673 +638291.878|220114.522|123.286 +638286.831|220119.170|123.097 +638281.801|220123.812|123.612 +638276.803|220128.421|123.447 +638271.767|220133.066|123.691 +638266.778|220137.671|123.804 +638261.785|220142.280|123.877 +638256.744|220146.928|123.935 +638251.699|220151.582|123.969 +638246.710|220156.185|124.167 +638241.674|220160.833|124.438 +638236.737|220165.393|124.727 +638231.701|220170.038|125.023 +638226.715|220174.641|125.352 +638221.734|220179.240|125.788 +638216.745|220183.843|126.035 +638211.752|220188.451|126.191 +638206.759|220193.060|126.358 +638201.761|220197.668|126.471 +638196.768|220202.277|126.687 +638191.821|220206.840|126.870 +638186.822|220211.454|126.968 +638181.869|220216.023|127.071 +638176.871|220220.635|127.218 +638171.924|220225.201|127.449 +638166.962|220229.779|127.425 +638162.003|220234.354|127.489 +638157.037|220238.932|127.489 +638152.072|220243.513|127.489 +638147.104|220248.094|127.483 +638142.136|220252.679|127.477 +638137.164|220257.266|127.440 +638132.239|220261.811|127.398 +638127.261|220266.398|127.358 +638122.330|220270.948|127.260 +638117.398|220275.496|127.227 +638112.460|220280.050|127.120 +638107.526|220284.600|127.077 +638102.548|220289.194|127.126 +638097.659|220293.705|127.087 +638092.721|220298.256|127.111 +638087.842|220302.760|127.227 +638082.913|220307.308|127.385 +638077.981|220311.853|126.928 +638073.040|220316.409|126.965 +638068.142|220320.930|126.946 +638063.272|220325.419|126.739 +638058.315|220329.991|126.672 +638053.503|220334.432|126.608 +638048.589|220338.965|126.529 +638043.706|220343.464|126.306 +638038.775|220348.011|126.062 +638033.934|220352.473|125.825 +638029.042|220356.985|125.560 +638024.150|220361.496|125.316 +638019.304|220365.964|125.087 +638014.421|220370.466|125.020 +638009.584|220374.931|124.913 +638004.744|220379.393|124.840 +637999.903|220383.859|124.764 +637995.057|220388.324|124.206 +637990.156|220392.838|123.609 +637985.325|220397.291|123.267 +637980.472|220401.769|123.176 +637975.641|220406.222|122.883 +637970.786|220410.696|122.399 +637961.087|220419.636|121.625 +637946.697|220432.901|120.805 +637941.836|220437.382|120.445 +637932.250|220446.221|119.735 +637922.600|220455.106|118.229 +637912.938|220464.009|116.760 +637908.024|220468.529|115.431 +637903.269|220472.912|114.995 +637898.509|220477.305|114.922 +637874.606|220499.326|111.658 +637869.854|220503.703|111.094 +637865.060|220508.120|110.240 +637860.390|220512.430|110.320 +637855.586|220516.849|109.131 +637851.149|220520.955|110.554 +637846.464|220525.277|110.588 +637837.347|220533.696|111.444 +637828.176|220542.160|111.962 +637823.631|220546.357|112.368 +637804.868|220563.648|110.301 +637782.663|220584.168|114.224 +637778.140|220588.337|114.285 +637773.717|220592.425|114.977 +637769.255|220596.546|115.434 +637760.428|220604.696|116.370 +637742.676|220621.082|117.513 +637738.244|220625.169|117.662 +637725.068|220637.331|118.583 +637716.381|220645.356|119.415 +637712.013|220649.386|119.735 +637707.603|220653.455|119.820 +637694.448|220665.589|119.768 +637690.055|220669.640|119.750 +637685.694|220673.666|119.631 +637676.925|220681.750|119.232 +637659.420|220697.886|118.061 +637650.828|220705.814|118.010 +637646.454|220709.843|117.498 +637642.144|220713.818|117.330 +637637.849|220717.777|116.989 +637629.306|220725.656|116.608 +637612.142|220741.475|114.953 +637590.788|220761.150|112.295 +637586.493|220765.103|111.478 +637573.673|220776.902|108.988 +637569.812|220780.471|110.006 +637561.896|220787.774|110.978 +637538.396|220809.455|113.809 +637490.954|220853.151|111.225 +637487.381|220856.449|112.109 +637483.169|220860.320|110.560 +637479.533|220863.673|111.213 +637475.799|220867.120|111.450 +637472.050|220870.574|111.438 +637468.755|220873.622|113.072 +637464.945|220877.130|112.819 +637461.333|220880.461|113.395 +637447.010|220893.674|114.968 +637439.902|220900.228|115.605 +637436.236|220903.608|115.602 +637429.100|220910.182|115.559 +637425.434|220913.557|115.382 +637421.919|220916.800|115.590 +637418.411|220920.030|115.638 +637414.823|220923.338|115.590 +637411.321|220926.562|115.480 +637407.847|220929.766|115.474 +637397.096|220939.660|114.306 +637390.247|220945.969|114.178 +637386.770|220949.172|114.029 +637383.392|220952.281|113.870 +637379.921|220955.476|113.578 +637376.498|220958.627|113.270 +637373.069|220961.785|112.947 +637610.704|220739.997|114.858 +637623.597|220728.107|115.870 +637632.262|220720.118|116.577 +637640.894|220712.156|116.928 +637653.967|220700.102|117.735 +637658.313|220696.090|117.906 +637667.083|220688.004|118.415 +637671.502|220683.926|118.769 +637675.879|220679.890|118.906 +637680.399|220675.724|119.555 +637684.801|220671.664|119.592 +637693.591|220663.553|119.662 +637698.005|220659.478|119.555 +637702.397|220655.427|119.613 +637706.819|220651.349|119.579 +637711.242|220647.264|119.582 +637720.103|220639.087|119.131 +637724.443|220635.075|118.720 +637728.802|220631.052|118.110 +637733.243|220626.949|117.717 +637751.092|220610.469|116.769 +637764.518|220598.073|115.858 +637768.974|220593.955|115.370 +637782.465|220581.501|114.084 +637787.043|220577.273|114.105 +637804.773|220560.869|109.622 +637819.050|220547.713|112.182 +637828.276|220539.191|111.676 +637837.487|220530.684|111.115 +637846.753|220522.129|110.646 +637851.402|220517.834|110.371 +637855.949|220513.625|109.058 +637860.805|220509.153|110.304 +637875.094|220495.974|111.496 +637879.910|220491.533|112.237 +637889.502|220482.687|113.130 +637899.261|220473.693|115.068 +637904.050|220469.276|115.379 +637918.659|220455.816|118.046 +637923.603|220451.259|118.958 +637933.256|220442.356|119.781 +637942.961|220433.404|120.753 +637947.792|220428.948|120.896 +637952.641|220424.473|121.210 +637957.506|220419.987|121.692 +637962.358|220415.512|122.112 +637967.241|220411.004|122.405 +637972.090|220406.533|122.847 +637977.013|220401.991|123.097 +637981.820|220397.557|123.219 +637986.739|220393.018|123.499 +637991.643|220388.498|124.121 +637996.584|220383.941|124.688 +638001.424|220379.473|124.782 +638006.310|220374.965|124.846 +638011.190|220370.460|124.907 +638016.082|220365.946|125.081 +638020.974|220361.432|125.310 +638025.909|220356.878|125.505 +638030.798|220352.370|125.752 +638035.736|220347.813|126.026 +638040.664|220343.262|126.270 +638045.550|220338.757|126.547 +638050.500|220334.188|126.535 +638055.365|220329.699|126.654 +638060.318|220325.130|126.696 +638065.225|220320.597|126.834 +638070.184|220316.022|127.001 +638075.122|220311.466|126.943 +638080.100|220306.872|127.428 +638085.022|220302.328|127.215 +638089.948|220297.780|127.102 +638094.882|220293.226|127.081 +638099.863|220288.627|127.102 +638104.795|220284.076|127.093 +638109.772|220279.483|127.105 +638114.704|220274.932|127.151 +638119.681|220270.336|127.230 +638124.661|220265.742|127.318 +638129.636|220261.149|127.410 +638134.607|220256.562|127.425 +638139.578|220251.972|127.504 +638144.592|220247.345|127.489 +638149.503|220242.812|127.416 +638154.517|220238.185|127.452 +638159.525|220233.559|127.455 +638164.438|220229.023|127.489 +638169.440|220224.402|127.407 +638174.432|220219.788|127.209 +638179.431|220215.170|127.090 +638184.427|220210.555|126.968 +638189.374|220205.986|126.840 +638194.415|220201.329|126.696 +638199.405|220196.717|126.501 +638204.394|220192.106|126.331 +638209.387|220187.494|126.181 +638214.376|220182.882|126.072 +638219.409|220178.231|125.813 +638224.389|220173.632|125.398 +638229.370|220169.026|125.096 +638234.399|220164.378|124.718 +638239.431|220159.730|124.468 +638244.418|220155.121|124.243 +638249.450|220150.470|124.033 +638254.488|220145.816|123.978 +638259.478|220141.207|123.932 +638264.513|220136.556|123.816 +638269.548|220131.904|123.706 +638274.581|220127.253|123.472 +638279.616|220122.602|123.402 +638284.642|220117.957|122.899 +638289.687|220113.299|123.188 +638294.728|220108.645|123.438 +638299.724|220104.034|123.773 +638304.814|220099.337|124.225 +638309.849|220094.688|124.231 +638314.836|220090.080|124.343 +638319.874|220085.432|124.602 +638324.955|220080.738|124.770 +638329.939|220076.135|124.782 +638335.017|220071.444|124.691 +638340.046|220066.796|124.410 +638345.075|220062.148|124.127 +638350.107|220057.500|124.060 +638355.185|220052.809|123.834 +638360.169|220048.203|123.572 +638365.250|220043.509|123.408 +638370.282|220038.858|123.252 +638375.317|220034.207|122.929 +638380.350|220029.555|122.661 +638385.434|220024.862|122.554 +638390.469|220020.207|122.368 +638395.504|220015.556|122.246 +638400.539|220010.902|122.060 +638405.578|220006.250|121.899 +638410.662|220001.553|121.884 +638430.818|219982.924|120.750 +638435.863|219978.267|120.521 +638461.113|219954.928|118.665 +638481.290|219936.296|119.067 +638486.338|219931.632|119.058 +638491.340|219927.014|119.104 +638496.424|219922.321|119.482 +638501.416|219917.712|119.777 +638506.464|219913.052|119.930 +638511.514|219908.388|119.991 +638516.531|219903.749|119.625 +638521.588|219899.083|119.628 +638526.602|219894.447|119.442 +638531.622|219889.811|119.198 +638536.688|219885.129|119.025 +638541.760|219880.444|118.744 +638546.728|219875.851|118.653 +638551.815|219871.151|118.186 +638556.844|219866.502|117.897 +638561.919|219861.818|117.757 +638566.939|219857.179|117.751 +638571.965|219852.536|117.653 +638576.982|219847.900|117.741 +638582.051|219843.213|116.931 +638587.047|219838.598|116.662 +638592.079|219833.950|116.586 +638597.108|219829.305|116.611 +638602.135|219824.665|116.723 +638607.158|219820.026|116.870 +638612.141|219815.424|116.934 +638617.143|219810.800|116.717 +638622.139|219806.195|117.388 +638637.104|219792.372|117.577 +638642.155|219787.708|117.495 +638652.180|219778.446|117.147 +638657.200|219773.806|116.900 +638667.173|219764.598|116.821 +638672.126|219760.029|117.528 +638677.158|219755.372|116.629 +638682.151|219750.764|116.903 +638692.139|219741.534|116.281 +638697.129|219736.926|116.096 +638702.109|219732.323|116.019 +638717.057|219718.516|115.900 +638722.037|219713.913|115.428 +638726.975|219709.350|115.419 +638731.967|219704.742|115.404 +638736.930|219700.157|115.209 +638741.895|219695.567|115.001 +638746.842|219691.001|115.023 +638751.780|219686.438|115.138 +638756.705|219681.888|114.937 +638761.747|219677.224|114.117 +638766.785|219672.561|112.904 +638771.860|219667.861|111.395 +638776.849|219663.249|110.758 +638781.802|219658.671|110.487 +638786.774|219654.075|109.640 +638791.791|219649.436|109.298 +638796.692|219644.906|109.137 +638801.596|219640.377|109.009 +638806.491|219635.854|108.954 +638811.402|219631.318|108.811 +638816.284|219626.810|108.927 +638821.167|219622.302|109.067 +638825.983|219617.855|109.356 +638830.839|219613.375|109.759 +638835.609|219608.970|110.067 +638840.477|219604.481|110.414 +638845.265|219600.055|110.597 +638850.123|219595.571|110.661 +638854.939|219591.121|110.682 +638859.749|219586.680|110.783 +638864.562|219582.236|110.868 +638869.390|219577.777|110.856 +638874.224|219573.312|110.844 +638879.015|219568.886|110.795 +638883.865|219564.408|110.701 +638888.611|219560.022|110.655 +638893.478|219555.527|110.490 +638898.270|219551.098|110.179 +638903.156|219546.578|109.564 +638907.996|219542.103|108.972 +638912.864|219537.604|108.219 +638917.670|219533.166|107.936 +638922.431|219528.768|107.970 +638927.183|219524.385|108.101 +638931.901|219520.029|108.149 +638936.528|219515.765|108.817 +638941.177|219511.480|109.356 +638945.813|219507.207|109.996 +638950.424|219502.951|110.460 +638955.094|219498.645|110.911 +638959.766|219494.332|111.018 +638964.418|219490.040|111.295 +638969.096|219485.724|111.417 +638973.705|219481.472|111.670 +638978.326|219477.208|111.871 +638982.986|219472.907|112.154 +638987.573|219468.674|112.289 +638992.234|219464.373|112.310 +638996.870|219460.093|112.484 +638993.578|219460.627|112.453 +638988.930|219464.912|112.328 +638984.272|219469.207|112.267 +638979.639|219473.477|112.072 +638974.967|219477.784|111.844 +638970.297|219482.088|111.618 +638965.673|219486.352|111.423 +638961.010|219490.650|111.197 +638956.346|219494.947|110.972 +638951.668|219499.260|110.865 +638946.959|219503.601|110.335 +638942.301|219507.889|109.795 +638937.677|219512.147|109.070 +638933.020|219516.439|108.564 +638928.302|219520.785|108.140 +638923.535|219525.181|108.070 +638918.765|219529.579|108.037 +638913.982|219533.992|108.122 +638909.090|219538.506|108.637 +638904.229|219542.996|109.323 +638899.318|219547.529|110.045 +638894.454|219552.018|110.475 +638889.577|219556.520|110.667 +638884.770|219560.952|110.725 +638879.909|219565.436|110.853 +638875.059|219569.907|110.908 +638870.222|219574.369|110.917 +638865.336|219578.874|110.917 +638860.502|219583.334|110.947 +638855.585|219587.866|110.868 +638850.770|219592.304|110.780 +638845.847|219596.845|110.792 +638841.001|219601.314|110.618 +638836.115|219605.816|110.384 +638831.241|219610.308|110.073 +638826.376|219614.789|109.676 +638821.509|219619.276|109.347 +638816.580|219623.820|109.137 +638811.688|219628.328|109.049 +638806.747|219632.885|108.978 +638801.791|219637.457|109.064 +638796.796|219642.066|109.106 +638791.885|219646.592|109.256 +638786.816|219651.267|109.561 +638781.796|219655.903|110.350 +638776.788|219660.524|110.621 +638771.759|219665.166|111.121 +638766.572|219669.964|112.703 +638761.426|219674.719|113.941 +638756.315|219679.440|114.916 +638751.286|219684.082|115.132 +638746.339|219688.642|115.017 +638741.288|219693.296|114.998 +638736.265|219697.932|115.245 +638731.202|219702.602|115.404 +638726.152|219707.259|115.474 +638721.153|219711.871|115.565 +638716.048|219716.580|115.754 +638700.872|219730.577|116.047 +638695.836|219735.222|116.144 +638690.749|219739.916|116.291 +638680.615|219749.264|116.790 +638675.488|219753.994|116.937 +638670.367|219758.722|117.638 +638665.372|219763.318|116.772 +638660.303|219767.994|116.897 +638655.225|219772.679|117.144 +638650.116|219777.385|117.196 +638634.831|219791.470|117.613 +638619.563|219805.536|117.348 +638614.506|219810.191|116.803 +638609.401|219814.897|117.037 +638604.271|219819.621|116.906 +638599.184|219824.309|116.928 +638594.112|219828.978|116.696 +638588.973|219833.715|116.815 +638583.889|219838.400|116.845 +638578.784|219843.109|117.296 +638573.633|219847.858|117.760 +638568.558|219852.533|117.741 +638563.431|219857.255|117.769 +638558.307|219861.979|117.842 +638553.223|219866.664|118.074 +638548.087|219871.398|118.449 +638542.961|219876.125|118.683 +638537.883|219880.804|118.918 +638532.759|219885.528|119.168 +638527.687|219890.204|119.375 +638522.569|219894.919|119.537 +638517.504|219899.589|119.674 +638512.389|219904.301|119.820 +638507.326|219908.967|119.933 +638502.224|219913.667|119.893 +638497.125|219918.364|119.686 +638492.080|219923.006|119.293 +638486.984|219927.700|119.043 +638481.882|219932.403|119.092 +638476.831|219937.055|118.918 +638461.579|219951.106|118.772 +638456.473|219955.809|119.049 +638451.374|219960.509|119.107 +638436.155|219974.542|120.549 +638431.108|219979.196|120.652 +638426.012|219983.893|120.881 +638410.540|219998.155|121.935 +638405.782|220002.538|122.006 +638400.738|220007.186|122.198 +638395.696|220011.834|122.280 +638390.655|220016.480|122.445 +638385.613|220021.125|122.576 +638380.572|220025.770|122.652 +638375.531|220030.418|122.905 +638370.492|220035.063|123.255 +638365.454|220039.708|123.469 +638360.461|220044.308|123.639 +638355.472|220048.907|123.886 +638350.433|220053.549|123.975 +638345.444|220058.149|124.215 +638340.454|220062.745|124.310 +638335.419|220067.387|124.599 +638330.429|220071.984|124.764 +638325.440|220076.583|124.804 +638320.447|220081.180|124.587 +638315.451|220085.782|124.395 +638310.459|220090.382|124.322 +638305.515|220094.935|124.295 +638300.510|220099.541|123.728 +638295.508|220104.146|123.392 +638290.510|220108.749|123.182 +638285.557|220113.312|122.944 +638280.552|220117.917|122.701 +638270.624|220127.064|123.395 +638265.680|220131.615|123.694 +638260.685|220136.214|123.789 +638255.735|220140.771|123.862 +638250.785|220145.328|123.932 +638245.789|220149.927|124.026 +638240.891|220154.438|124.228 +638235.895|220159.038|124.383 +638230.955|220163.589|124.737 +638226.011|220168.139|125.047 +638221.070|220172.690|125.380 +638216.178|220177.195|125.797 +638211.234|220181.749|126.062 +638206.330|220186.263|126.160 +638201.377|220190.822|126.279 +638196.427|220195.379|126.462 +638191.571|220199.851|126.623 +638186.618|220204.410|126.773 +638181.714|220208.928|126.931 +638176.755|220213.490|127.001 +638171.845|220218.011|127.132 +638166.937|220222.531|127.273 +638162.024|220227.051|127.367 +638157.153|220231.535|127.391 +638152.182|220236.110|127.355 +638147.311|220240.593|127.373 +638142.389|220245.126|127.379 +638137.466|220249.655|127.422 +638132.537|220254.191|127.382 +638127.603|220258.732|127.300 +638122.769|220263.182|127.263 +638117.828|220267.727|127.154 +638112.936|220272.229|127.038 +638108.004|220276.767|127.053 +638103.115|220281.269|127.050 +638098.223|220285.771|127.023 +638093.328|220290.273|126.992 +638088.439|220294.775|127.032 +638083.550|220299.274|127.102 +638078.716|220303.724|127.288 +638073.766|220308.280|127.242 +638068.938|220312.721|126.962 +638064.027|220317.239|126.855 +638059.160|220321.719|126.721 +638054.298|220326.194|126.675 +638049.385|220330.714|126.623 +638044.511|220335.200|126.483 +638039.689|220339.635|126.437 +638034.797|220344.137|126.142 +638029.908|220348.636|125.925 +638025.062|220353.092|125.706 +638020.167|220357.594|125.480 +638015.308|220362.066|125.154 +638010.462|220366.525|124.990 +638005.609|220370.987|124.816 +638000.763|220375.446|124.706 +637995.926|220379.899|124.700 +637991.125|220384.316|124.609 +637986.227|220388.821|124.075 +637981.359|220393.292|123.426 +637976.489|220397.773|123.219 +637971.670|220402.208|123.057 +637966.848|220406.643|122.920 +637962.056|220411.053|122.612 +637957.198|220415.521|122.198 +637952.321|220420.005|121.643 +637937.864|220433.304|120.829 +637928.257|220442.137|120.012 +637923.414|220446.587|119.531 +637908.957|220459.879|117.632 +637899.203|220468.840|115.669 +637884.655|220482.212|112.855 +637879.827|220486.650|112.414 +637875.100|220490.999|112.002 +637870.321|220495.394|111.603 +637860.777|220504.173|110.646 +637856.007|220508.559|110.057 +637846.659|220517.166|110.292 +637823.579|220538.420|111.505 +637809.705|220551.191|111.581 +637804.840|220555.660|110.304 +637791.456|220568.001|112.804 +637769.014|220588.679|115.477 +637764.549|220592.790|115.635 +637737.738|220617.482|117.431 +637733.313|220621.558|117.635 +637715.710|220637.770|118.897 +637702.510|220649.922|119.384 +637698.062|220654.016|119.311 +637693.713|220658.021|119.518 +637689.354|220662.035|119.695 +637676.120|220674.212|119.198 +637671.722|220678.260|118.970 +637662.946|220686.331|118.412 +637658.579|220690.348|118.141 +637654.147|220694.423|117.546 +637645.503|220702.375|117.303 +637641.117|220706.411|117.016 +637636.755|220710.422|116.614 +637623.862|220722.282|115.980 +637615.224|220730.222|115.032 +637606.784|220737.991|114.858 +637602.462|220741.966|114.312 +637598.131|220745.941|113.511 +637593.869|220749.860|113.051 +637585.250|220757.785|111.734 +637564.252|220777.103|109.707 +637532.891|220806.038|114.072 +637497.077|220839.011|111.499 +637485.272|220849.878|110.240 +637481.590|220853.276|110.673 +637455.926|220876.941|112.983 +637452.442|220880.156|113.880 +637441.698|220890.062|114.779 +637438.153|220893.333|115.245 +637434.553|220896.649|115.294 +637420.328|220909.756|115.431 +637413.208|220916.315|115.337 +637409.709|220919.540|115.227 +637406.198|220922.771|115.093 +637392.043|220935.801|113.621 +637388.577|220938.992|113.511 +637385.163|220942.135|113.404 +637374.992|220951.501|112.804 +637371.603|220954.625|112.825 +637368.262|220957.701|112.444 +637611.978|220731.161|114.992 +637616.208|220727.253|115.175 +637620.497|220723.300|115.647 +637629.245|220715.232|116.754 +637642.089|220703.372|117.065 +637646.475|220699.324|117.391 +637668.463|220679.037|118.830 +637681.698|220666.820|119.589 +637686.148|220662.712|119.643 +637690.497|220658.694|119.427 +637694.871|220654.656|119.372 +637699.343|220650.529|119.598 +637712.574|220638.309|119.076 +637725.863|220626.029|118.180 +637734.709|220617.857|117.473 +637739.174|220613.730|117.245 +637748.083|220605.498|116.406 +637752.610|220601.319|116.291 +637766.100|220588.852|115.199 +637770.681|220584.625|115.489 +637775.211|220580.437|114.861 +637793.169|220563.834|112.060 +637802.164|220555.516|110.185 +637806.773|220551.264|110.121 +637811.646|220546.781|111.514 +637820.943|220538.201|111.420 +637839.539|220521.034|110.423 +637848.738|220512.533|109.161 +637853.608|220508.047|110.134 +637858.348|220503.676|110.551 +637863.136|220499.262|110.978 +637867.980|220494.800|111.481 +637872.762|220490.390|111.947 +637882.372|220481.529|112.913 +637887.240|220477.045|114.114 +637906.726|220459.096|117.525 +637911.545|220454.652|117.760 +637916.477|220450.113|118.918 +637926.169|220441.177|120.015 +637930.991|220436.729|120.393 +637935.868|220432.234|120.881 +637940.681|220427.796|121.247 +637955.287|220414.330|122.301 +637960.139|220409.855|122.716 +637965.016|220405.356|122.954 +637969.820|220400.922|122.996 +637974.690|220396.432|123.216 +637979.558|220391.942|123.435 +637984.478|220387.410|124.185 +637989.354|220382.914|124.551 +637994.246|220378.400|124.645 +637999.087|220373.934|124.706 +638003.976|220369.423|124.816 +638008.819|220364.955|124.974 +638013.711|220360.441|125.188 +638018.612|220355.924|125.477 +638023.495|220351.419|125.621 +638028.387|220346.905|125.925 +638033.325|220342.354|126.178 +638038.205|220337.852|126.407 +638043.112|220333.326|126.386 +638048.035|220328.781|126.611 +638052.948|220324.249|126.727 +638057.849|220319.729|126.733 +638062.756|220315.202|126.809 +638067.709|220310.633|126.916 +638072.638|220306.089|127.327 +638077.567|220301.538|127.199 +638082.495|220296.991|127.081 +638087.424|220292.443|126.949 +638092.359|220287.886|126.968 +638097.296|220283.332|126.992 +638102.277|220278.739|127.001 +638107.205|220274.192|126.977 +638112.183|220269.595|127.020 +638117.115|220265.044|127.099 +638122.095|220260.454|127.178 +638127.072|220255.861|127.257 +638132.044|220251.274|127.312 +638137.012|220246.689|127.291 +638141.977|220242.108|127.291 +638146.942|220237.524|127.306 +638151.953|220232.903|127.282 +638156.922|220228.319|127.361 +638161.878|220223.747|127.297 +638166.879|220219.132|127.163 +638171.829|220214.563|127.013 +638176.831|220209.946|126.974 +638181.830|220205.334|126.849 +638186.826|220200.722|126.687 +638191.818|220196.114|126.511 +638196.765|220191.551|126.346 +638201.806|220186.897|126.236 +638206.802|220182.288|126.099 +638211.792|220177.682|125.934 +638216.824|220173.037|125.599 +638221.804|220168.438|125.176 +638226.837|220163.793|124.865 +638231.866|220159.148|124.481 +638236.855|220154.545|124.270 +638241.891|220149.897|124.078 +638246.929|220145.246|123.950 +638251.922|220140.640|123.901 +638256.960|220135.992|123.780 +638261.998|220131.341|123.703 +638267.028|220126.699|123.307 +638272.060|220122.053|123.005 +638277.086|220117.411|122.496 +638282.131|220112.757|122.704 +638287.181|220108.103|123.088 +638292.223|220103.451|123.255 +638297.264|220098.803|123.423 +638302.357|220094.109|123.822 +638307.402|220089.455|124.426 +638312.437|220084.810|124.359 +638317.475|220080.165|124.545 +638322.511|220075.519|124.770 +638327.592|220070.832|124.770 +638332.627|220066.186|124.727 +638337.659|220061.544|124.535 +638342.688|220056.899|124.261 +638347.769|220052.211|124.243 +638352.805|220047.566|123.987 +638357.837|220042.921|123.950 +638362.918|220038.230|123.597 +638367.953|220033.585|123.435 +638372.989|220028.937|123.213 +638378.070|220024.243|122.829 +638383.108|220019.598|122.737 +638388.192|220014.904|122.591 +638393.276|220010.213|122.472 +638398.266|220005.604|122.292 +638403.353|220000.913|122.259 +638408.867|219995.823|122.060 +638418.517|219986.917|121.554 +638423.610|219982.214|121.122 +638428.606|219977.602|120.850 +638433.699|219972.902|120.594 +638438.749|219968.239|120.195 +638448.863|219958.897|118.875 +638469.053|219940.270|118.887 +638474.094|219935.619|119.101 +638479.145|219930.959|119.064 +638484.152|219926.338|118.930 +638489.194|219921.690|119.232 +638494.235|219917.041|119.610 +638499.231|219912.436|119.881 +638504.233|219907.824|120.012 +638509.289|219903.158|119.933 +638514.300|219898.531|119.817 +638519.314|219893.904|119.662 +638524.331|219889.274|119.503 +638529.397|219884.598|119.314 +638534.417|219879.965|119.137 +638539.440|219875.326|118.887 +638544.463|219870.687|118.668 +638549.493|219866.042|118.382 +638554.476|219861.440|118.052 +638559.505|219856.795|117.857 +638564.525|219852.162|117.863 +638569.551|219847.522|117.808 +638574.526|219842.932|117.815 +638579.531|219838.308|117.299 +638584.578|219833.645|116.925 +638589.549|219829.058|117.101 +638594.539|219824.449|116.964 +638599.510|219819.862|117.171 +638604.454|219815.299|117.046 +638609.441|219810.696|117.068 +638614.421|219806.100|117.193 +638629.262|219792.405|117.778 +638649.150|219774.044|117.187 +638659.077|219764.879|116.992 +638663.973|219760.362|117.190 +638668.868|219755.848|117.994 +638673.845|219751.251|117.790 +638678.847|219746.624|116.729 +638683.833|219742.022|116.519 +638688.774|219737.459|116.291 +638693.755|219732.863|116.196 +638698.680|219728.315|116.205 +638708.550|219719.204|116.086 +638713.524|219714.608|115.629 +638718.453|219710.060|115.711 +638723.403|219705.488|115.562 +638728.350|219700.923|115.495 +638733.257|219696.390|115.364 +638738.207|219691.824|115.340 +638743.132|219687.271|115.047 +638748.064|219682.723|115.239 +638752.980|219678.181|115.126 +638757.955|219673.588|114.495 +638762.947|219668.967|113.227 +638768.056|219664.243|111.862 +638773.042|219659.631|110.786 +638778.014|219655.038|110.338 +638782.964|219650.463|109.676 +638787.920|219645.885|109.436 +638792.821|219641.358|109.280 +638797.771|219636.789|109.146 +638802.565|219632.367|109.551 +638807.467|219627.844|109.893 +638812.432|219623.259|109.317 +638817.257|219618.809|109.908 +638822.103|219614.335|109.948 +638826.974|219609.842|110.216 +638831.808|219605.380|110.402 +638836.673|219600.893|110.758 +638841.507|219596.434|110.981 +638846.411|219591.908|111.054 +638851.221|219587.470|111.121 +638856.134|219582.934|111.164 +638861.002|219578.441|111.203 +638865.827|219573.988|111.222 +638870.710|219569.480|111.194 +638875.553|219565.009|111.118 +638880.396|219560.537|111.057 +638885.261|219556.045|110.877 +638890.119|219551.558|110.768 +638895.005|219547.047|110.484 +638899.940|219542.484|109.871 +638904.792|219537.997|109.180 +638909.724|219533.441|108.677 +638914.595|219528.939|108.259 +638919.380|219524.519|108.131 +638924.163|219520.106|108.381 +638928.927|219515.707|108.442 +638933.666|219511.337|109.012 +638938.299|219507.060|109.628 +638942.978|219502.747|110.310 +638947.687|219498.401|110.777 +638952.393|219494.057|110.978 +638957.139|219489.674|111.249 +638961.842|219485.334|111.496 +638966.496|219481.039|111.761 +638971.218|219476.681|111.938 +638975.866|219472.389|112.267 +638980.545|219468.073|112.435 +638985.263|219463.715|112.374 +638989.951|219459.383|112.508 +638986.656|219460.093|112.410 +638981.962|219464.412|112.261 +638977.280|219468.719|112.353 +638972.547|219473.072|112.176 +638967.892|219477.354|111.847 +638963.268|219481.606|111.645 +638958.559|219485.938|111.374 +638953.853|219490.266|111.088 +638949.190|219494.554|110.868 +638944.429|219498.934|110.670 +638939.835|219503.153|110.027 +638935.187|219507.426|109.433 +638930.512|219511.721|108.710 +638925.833|219516.021|108.335 +638921.099|219520.380|108.366 +638916.360|219524.739|108.116 +638911.586|219529.134|108.460 +638906.722|219533.611|108.762 +638901.933|219538.022|109.277 +638896.993|219542.576|110.201 +638892.183|219547.004|110.554 +638887.404|219551.403|110.743 +638882.579|219555.847|110.929 +638877.812|219560.230|111.051 +638872.953|219564.701|111.164 +638868.158|219569.115|111.207 +638863.361|219573.528|111.267 +638858.582|219577.929|111.246 +638853.754|219582.370|111.207 +638848.932|219586.808|111.179 +638844.162|219591.194|111.124 +638839.303|219595.663|111.011 +638834.512|219600.073|110.801 +638829.723|219604.474|110.554 +638824.898|219608.912|110.240 +638820.064|219613.359|110.024 +638815.218|219617.816|109.914 +638810.353|219622.293|109.990 +638805.455|219626.807|110.402 +638800.590|219631.279|110.094 +638795.820|219635.665|109.430 +638790.940|219640.151|109.286 +638786.030|219644.672|109.466 +638781.071|219649.237|109.658 +638776.124|219653.794|110.228 +638771.125|219658.397|110.841 +638766.084|219663.048|111.932 +638761.067|219667.675|113.288 +638755.967|219672.378|114.550 +638750.993|219676.962|115.151 +638746.077|219681.485|115.190 +638741.124|219686.042|115.129 +638736.204|219690.572|115.269 +638731.196|219695.177|115.312 +638726.228|219699.752|115.498 +638721.272|219704.312|115.593 +638716.313|219708.878|115.754 +638711.329|219713.462|115.654 +638706.297|219718.098|116.141 +638696.324|219727.276|116.181 +638691.341|219731.863|116.196 +638686.296|219736.505|116.403 +638681.304|219741.101|116.595 +638676.241|219745.765|117.074 +638666.121|219755.086|118.095 +638661.168|219759.636|117.309 +638656.130|219764.269|117.007 +638651.107|219768.896|117.141 +638646.044|219773.563|117.232 +638615.677|219801.531|117.421 +638610.657|219806.149|116.998 +638605.561|219810.846|117.117 +638600.501|219815.506|117.376 +638595.420|219820.185|117.290 +638590.299|219824.897|117.043 +638585.258|219829.542|117.135 +638580.152|219834.248|117.522 +638575.013|219838.982|117.732 +638569.929|219843.667|117.808 +638564.854|219848.339|117.757 +638559.728|219853.064|117.836 +638554.647|219857.742|117.970 +638549.553|219862.436|118.342 +638544.424|219867.161|118.580 +638539.340|219871.846|118.897 +638534.170|219876.613|119.080 +638529.046|219881.331|119.299 +638523.975|219886.004|119.476 +638518.854|219890.722|119.704 +638513.691|219895.477|119.790 +638508.625|219900.143|119.948 +638503.468|219904.895|120.043 +638498.365|219909.595|119.924 +638493.266|219914.289|119.704 +638488.176|219918.974|119.223 +638483.028|219923.710|119.034 +638477.928|219928.407|118.903 +638472.820|219933.114|119.073 +638467.672|219937.856|119.092 +638457.461|219947.262|119.393 +638452.316|219951.999|119.262 +638447.226|219956.687|118.924 +638431.855|219970.854|120.607 +638426.758|219975.551|120.750 +638421.610|219980.294|121.155 +638416.514|219984.994|121.582 +638411.418|219989.691|121.914 +638406.139|219994.552|122.143 +638401.189|219999.112|122.310 +638396.099|220003.803|122.390 +638390.960|220008.536|122.536 +638385.869|220013.224|122.658 +638380.779|220017.912|122.777 +638375.692|220022.603|122.999 +638370.602|220027.291|123.338 +638365.515|220031.979|123.523 +638360.428|220036.666|123.630 +638355.341|220041.351|123.886 +638350.253|220046.039|124.051 +638345.169|220050.724|124.188 +638340.082|220055.409|124.353 +638334.998|220060.093|124.618 +638329.957|220064.736|124.526 +638324.876|220069.417|124.874 +638319.831|220074.062|124.523 +638314.741|220078.747|124.398 +638309.706|220083.389|124.526 +638304.655|220088.035|123.996 +638299.605|220092.683|123.511 +638294.509|220097.374|123.237 +638289.510|220101.976|123.194 +638284.459|220106.624|122.862 +638279.409|220111.276|122.603 +638274.355|220115.927|122.344 +638269.366|220120.526|122.603 +638264.342|220125.162|123.341 +638259.353|220129.762|123.636 +638254.360|220134.364|123.807 +638249.364|220138.970|123.877 +638244.369|220143.575|123.886 +638239.373|220148.181|123.996 +638234.429|220152.741|124.237 +638229.440|220157.340|124.502 +638224.496|220161.897|124.795 +638219.558|220166.451|125.169 +638214.572|220171.050|125.526 +638209.634|220175.607|125.880 +638204.687|220180.167|126.053 +638199.737|220184.729|126.187 +638194.833|220189.250|126.282 +638189.883|220193.813|126.480 +638184.978|220198.336|126.584 +638180.028|220202.899|126.782 +638175.075|220207.465|126.916 +638170.165|220211.991|126.968 +638165.255|220216.517|127.081 +638160.344|220221.043|127.157 +638155.431|220225.570|127.273 +638150.512|220230.105|127.251 +638145.589|220234.641|127.199 +638140.670|220239.176|127.205 +638135.799|220243.666|127.273 +638130.873|220248.204|127.279 +638125.993|220252.700|127.251 +638121.065|220257.245|127.196 +638116.176|220261.750|127.071 +638111.287|220266.255|126.986 +638106.401|220270.756|126.965 +638101.515|220275.261|126.959 +638096.626|220279.766|126.953 +638091.786|220284.226|126.986 +638086.891|220288.737|126.916 +638082.053|220293.196|127.026 +638077.161|220297.704|127.035 +638072.382|220302.111|127.291 +638067.469|220306.638|127.111 +638062.601|220311.121|126.919 +638057.739|220315.602|126.828 +638052.884|220320.079|126.800 +638048.071|220324.514|126.767 +638043.188|220329.013|126.511 +638038.318|220333.500|126.410 +638033.486|220337.950|126.267 +638028.664|220342.394|126.218 +638023.760|220346.911|125.849 +638018.960|220351.334|125.566 +638014.074|220355.835|125.425 +638009.273|220360.258|125.227 +638004.421|220364.729|124.990 +637999.574|220369.192|124.855 +637994.771|220373.621|124.676 +637989.930|220378.080|124.654 +637985.130|220382.505|124.557 +637980.305|220386.949|124.258 +637975.434|220391.430|123.578 +637970.606|220395.880|123.301 +637965.821|220400.288|123.027 +637961.008|220404.722|122.947 +637951.382|220413.589|122.448 +637946.569|220418.021|122.045 +637936.947|220426.884|121.308 +637932.177|220431.277|120.924 +637927.364|220435.708|120.631 +637912.886|220449.037|118.778 +637908.012|220453.521|117.702 +637893.647|220466.740|116.010 +637888.788|220471.205|114.852 +637883.927|220475.677|114.078 +637879.081|220480.133|113.090 +637874.313|220484.519|112.359 +637860.015|220497.680|111.097 +637855.276|220502.042|110.694 +637850.466|220506.468|109.804 +637845.629|220510.915|108.780 +637836.482|220519.352|110.134 +637831.849|220523.619|110.243 +637827.185|220527.914|110.170 +637817.962|220536.415|110.768 +637813.381|220540.636|110.960 +637799.448|220553.468|110.411 +637790.502|220561.722|112.365 +637781.691|220569.854|114.209 +637768.188|220582.302|115.434 +637754.670|220594.759|116.089 +637750.199|220598.880|116.254 +637736.790|220611.237|117.147 +637727.930|220619.403|117.790 +637723.541|220623.450|118.214 +637710.297|220635.655|118.891 +637705.905|220639.705|119.345 +637661.858|220680.268|118.503 +637657.475|220684.301|118.125 +637653.074|220688.355|117.940 +637639.949|220700.437|116.879 +637635.661|220704.384|116.833 +637631.363|220708.340|116.763 +637601.151|220736.153|114.346 +637592.544|220744.069|113.233 +637588.218|220748.047|112.478 +637579.718|220755.871|111.737 +637575.261|220759.964|110.204 +637566.757|220767.783|109.113 +637558.778|220775.134|110.268 +637554.764|220778.832|110.624 +637546.854|220786.113|111.694 +637539.014|220793.337|112.868 +637495.263|220833.571|111.789 +637479.203|220848.326|109.244 +637475.601|220851.648|110.256 +637471.833|220855.114|110.377 +637468.170|220858.488|110.707 +637460.833|220865.243|111.819 +637450.065|220875.161|113.407 +637403.543|220917.955|114.660 +637400.007|220921.207|114.648 +637389.424|220930.933|113.755 +637385.974|220934.103|113.499 +637382.460|220937.334|113.221 +637379.128|220940.397|113.236 +637375.602|220943.634|112.737 +637368.957|220949.749|112.880 +637609.085|220726.872|114.565 +637613.358|220722.931|114.934 +637617.647|220718.972|115.160 +637634.999|220702.964|116.723 +637647.978|220690.988|117.549 +637652.348|220686.953|117.833 +637665.507|220674.812|118.506 +637678.702|220662.636|119.305 +637687.529|220654.488|119.558 +637705.140|220638.224|119.226 +637709.453|220634.237|118.610 +637713.940|220630.098|118.702 +637718.359|220626.014|118.430 +637731.624|220613.761|117.452 +637736.092|220609.634|117.245 +637740.533|220605.531|116.870 +637753.963|220593.123|115.913 +637767.554|220580.574|115.458 +637794.532|220555.629|111.487 +637803.484|220547.345|109.664 +637817.636|220534.278|110.822 +637826.847|220525.765|110.210 +637831.605|220521.370|110.289 +637836.201|220517.121|109.954 +637840.880|220512.799|109.859 +637845.501|220508.525|109.039 +637850.368|220504.039|110.323 +637855.209|220499.573|111.118 +637869.589|220486.299|112.279 +637879.279|220477.359|113.864 +637888.987|220468.404|115.352 +637893.924|220463.851|116.431 +637898.804|220459.355|117.458 +637903.718|220454.819|118.046 +637918.293|220441.372|119.823 +637923.130|220436.906|120.314 +637928.004|220432.407|120.744 +637932.817|220427.963|121.091 +637947.420|220414.488|122.451 +637952.306|220409.974|122.734 +637957.122|220405.530|122.807 +637961.992|220401.031|123.008 +637966.866|220396.529|123.240 +637971.752|220392.021|123.612 +637976.659|220387.492|124.203 +637981.527|220382.999|124.481 +637986.419|220378.479|124.548 +637991.265|220374.005|124.651 +637996.157|220369.487|124.764 +638001.056|220364.964|124.983 +638005.954|220360.441|125.203 +638010.846|220355.924|125.395 +638015.784|220351.367|125.587 +638020.673|220346.853|125.809 +638025.616|220342.287|126.136 +638030.533|220337.745|126.203 +638035.410|220333.244|126.370 +638040.375|220328.656|126.483 +638045.252|220324.154|126.718 +638050.214|220319.573|126.849 +638055.112|220315.047|126.828 +638060.077|220310.463|127.071 +638064.985|220305.930|127.202 +638069.938|220301.358|127.334 +638074.854|220296.814|127.041 +638079.789|220292.254|126.998 +638084.720|220287.697|126.949 +638089.655|220283.144|126.919 +638094.636|220278.541|126.922 +638099.567|220273.987|126.910 +638104.493|220269.434|126.885 +638109.473|220264.834|126.946 +638114.451|220260.238|126.989 +638119.428|220255.641|127.068 +638124.408|220251.042|127.175 +638129.331|220246.497|127.190 +638134.345|220241.864|127.172 +638139.310|220237.277|127.163 +638144.272|220232.693|127.145 +638149.286|220228.063|127.187 +638154.251|220223.479|127.242 +638159.250|220218.861|127.081 +638164.203|220214.283|126.974 +638169.205|220209.662|126.910 +638174.207|220205.044|126.831 +638179.202|220200.430|126.706 +638184.195|220195.815|126.511 +638189.188|220191.203|126.361 +638194.183|220186.589|126.264 +638199.225|220181.931|126.102 +638204.217|220177.317|126.017 +638209.207|220172.708|125.803 +638214.233|220168.063|125.389 +638219.217|220163.461|125.029 +638224.246|220158.809|124.700 +638229.275|220154.161|124.356 +638234.262|220149.555|124.124 +638239.346|220144.859|123.938 +638244.387|220140.201|123.908 +638249.377|220135.593|123.831 +638254.464|220130.896|123.767 +638259.490|220126.247|123.335 +638264.513|220121.605|122.765 +638269.542|220116.957|122.365 +638274.581|220112.300|122.402 +638279.674|220107.600|122.661 +638284.718|220102.942|122.929 +638289.763|220098.285|123.200 +638294.847|220093.591|123.255 +638299.888|220088.937|123.530 +638304.978|220084.240|123.892 +638310.023|220079.585|124.407 +638315.104|220074.892|124.420 +638320.136|220070.243|124.520 +638325.226|220065.549|125.142 +638330.298|220060.859|124.654 +638335.330|220056.210|124.627 +638340.408|220051.519|124.398 +638345.489|220046.829|124.307 +638350.522|220042.180|124.090 +638355.600|220037.486|123.901 +638360.681|220032.792|123.773 +638365.762|220028.099|123.633 +638370.794|220023.450|123.456 +638375.875|220018.753|123.094 +638380.959|220014.056|122.917 +638386.040|220009.362|122.792 +638391.078|220004.708|122.679 +638396.163|220000.011|122.530 +638401.247|219995.317|122.429 +638406.325|219990.623|122.219 +638411.366|219985.966|121.896 +638421.501|219976.599|121.103 +638426.591|219971.893|120.762 +638431.632|219967.236|120.689 +638456.970|219943.824|119.305 +638462.018|219939.161|119.247 +638467.065|219934.500|119.250 +638472.119|219929.831|119.028 +638477.169|219925.164|118.970 +638482.266|219920.458|119.028 +638487.258|219915.850|119.354 +638492.294|219911.201|119.796 +638497.338|219906.544|119.976 +638502.337|219901.929|120.131 +638507.393|219897.257|120.030 +638512.453|219892.584|119.875 +638517.464|219887.954|119.802 +638522.530|219883.276|119.589 +638527.550|219878.637|119.354 +638532.567|219874.007|119.226 +638537.593|219869.364|118.924 +638542.619|219864.722|118.683 +638547.645|219860.080|118.467 +638552.681|219855.432|118.141 +638557.661|219850.833|117.940 +638562.684|219846.194|117.891 +638567.665|219841.600|117.821 +638572.694|219836.958|117.735 +638577.684|219832.346|117.498 +638582.685|219827.729|117.123 +638587.660|219823.138|117.251 +638592.631|219818.551|117.461 +638602.570|219809.374|117.162 +638607.557|219804.771|117.199 +638612.510|219800.199|117.022 +638617.417|219795.676|117.580 +638622.349|219791.122|117.738 +638627.305|219786.547|117.604 +638642.124|219772.868|117.370 +638647.129|219768.247|117.324 +638652.052|219763.702|117.126 +638656.944|219759.188|117.327 +638661.796|219754.717|118.116 +638676.664|219740.982|117.141 +638681.630|219736.395|116.608 +638686.528|219731.872|116.312 +638691.453|219727.327|116.312 +638701.271|219718.266|116.214 +638706.200|219713.712|115.721 +638711.067|219709.219|115.913 +638715.956|219704.705|115.882 +638720.867|219700.170|115.666 +638725.774|219695.640|115.526 +638730.681|219691.111|115.413 +638735.576|219686.591|115.431 +638740.447|219682.095|115.248 +638745.345|219677.575|115.282 +638750.213|219673.079|115.184 +638755.154|219668.513|114.389 +638760.155|219663.886|113.060 +638765.157|219659.256|111.786 +638770.171|219654.617|110.451 +638775.097|219650.070|110.012 +638779.952|219645.586|109.759 +638784.853|219641.060|109.585 +638789.700|219636.585|109.506 +638794.446|219632.211|110.313 +638799.197|219627.831|111.082 +638804.019|219623.381|111.246 +638808.963|219618.815|110.810 +638813.840|219614.310|110.167 +638818.677|219609.845|110.274 +638823.496|219605.398|110.560 +638828.321|219600.948|110.832 +638833.097|219596.541|111.085 +638837.934|219592.078|111.301 +638842.723|219587.659|111.511 +638847.536|219583.218|111.539 +638852.355|219578.771|111.563 +638857.189|219574.308|111.487 +638861.995|219569.870|111.624 +638866.781|219565.451|111.584 +638871.624|219560.979|111.505 +638876.434|219556.542|111.347 +638881.289|219552.058|111.219 +638886.111|219547.605|111.008 +638890.945|219543.139|110.737 +638895.749|219538.705|110.371 +638900.675|219534.151|109.518 +638905.558|219529.643|109.000 +638910.373|219525.196|108.640 +638915.214|219520.731|108.482 +638919.950|219516.360|108.701 +638924.736|219511.946|108.625 +638929.426|219507.621|109.192 +638934.056|219503.357|109.847 +638938.781|219499.001|110.542 +638943.472|219494.676|110.838 +638948.205|219490.311|111.179 +638952.896|219485.986|111.487 +638957.593|219481.655|111.789 +638962.318|219477.299|111.935 +638966.996|219472.983|112.368 +638971.675|219468.668|112.520 +638976.439|219464.275|112.481 +638981.127|219459.950|112.615 +638982.114|219456.695|112.657 +638977.323|219461.112|112.514 +638972.574|219465.482|112.420 +638967.764|219469.911|112.410 +638962.988|219474.312|112.231 +638958.239|219478.680|111.877 +638953.475|219483.066|111.648 +638948.742|219487.425|111.255 +638943.941|219491.845|110.963 +638939.159|219496.246|110.585 +638934.450|219500.580|110.079 +638929.695|219504.954|109.530 +638924.982|219509.288|108.728 +638920.112|219513.775|108.674 +638915.290|219518.219|108.658 +638910.431|219522.690|108.549 +638905.509|219527.229|108.920 +638900.571|219531.780|109.423 +638895.603|219536.364|110.182 +638890.683|219540.899|110.624 +638885.785|219545.410|110.941 +638880.856|219549.952|111.149 +638875.937|219554.487|111.344 +638871.069|219558.974|111.523 +638866.165|219563.488|111.627 +638861.276|219567.993|111.652 +638856.360|219572.519|111.539 +638851.474|219577.024|111.603 +638846.545|219581.560|111.603 +638841.684|219586.040|111.527 +638836.782|219590.551|111.380 +638831.942|219595.010|111.170 +638827.007|219599.555|110.938 +638822.179|219603.996|110.633 +638817.251|219608.534|110.396 +638812.340|219613.058|110.432 +638807.296|219617.712|111.216 +638802.392|219622.232|111.694 +638797.426|219626.804|111.444 +638792.626|219631.221|110.633 +638787.789|219635.668|109.701 +638782.912|219640.157|109.582 +638777.913|219644.763|109.707 +638773.006|219649.286|109.914 +638768.016|219653.886|110.463 +638762.886|219658.622|111.911 +638757.827|219663.292|113.206 +638752.764|219667.971|114.629 +638747.744|219672.597|115.169 +638742.821|219677.130|115.285 +638737.868|219681.693|115.254 +638732.897|219686.274|115.431 +638727.941|219690.840|115.468 +638722.982|219695.409|115.562 +638718.023|219699.978|115.693 +638713.061|219704.550|115.897 +638708.123|219709.097|115.843 +638703.146|219713.681|115.748 +638698.165|219718.275|116.239 +638688.253|219727.401|116.175 +638683.254|219732.009|116.440 +638678.252|219736.618|116.729 +638673.226|219741.260|117.976 +638658.270|219755.037|118.043 +638653.375|219759.536|117.123 +638648.403|219764.117|117.232 +638643.380|219768.741|117.427 +638638.424|219773.304|117.400 +638623.446|219787.096|117.653 +638618.448|219791.695|117.607 +638613.479|219796.267|117.174 +638608.484|219800.867|117.153 +638603.485|219805.469|117.248 +638598.483|219810.075|117.363 +638593.430|219814.729|117.629 +638588.449|219819.313|117.470 +638583.420|219823.940|117.330 +638578.378|219828.582|117.440 +638573.377|219833.191|117.781 +638568.338|219837.830|117.879 +638563.312|219842.457|117.863 +638558.280|219847.090|117.943 +638553.196|219851.771|118.086 +638548.157|219856.410|118.366 +638543.119|219861.053|118.702 +638538.041|219865.728|118.903 +638533.012|219870.361|119.131 +638527.983|219874.991|119.345 +638522.911|219879.664|119.552 +638517.885|219884.294|119.784 +638512.816|219888.960|119.954 +638507.753|219893.624|120.061 +638502.687|219898.287|120.195 +638497.631|219902.941|120.131 +638492.580|219907.590|119.954 +638487.536|219912.229|119.546 +638482.491|219916.871|119.150 +638477.441|219921.522|119.049 +638472.384|219926.173|119.009 +638467.279|219930.876|119.198 +638462.222|219935.534|119.326 +638457.165|219940.188|119.439 +638452.066|219944.885|119.479 +638431.751|219963.594|120.625 +638426.655|219968.288|120.774 +638421.559|219972.981|120.975 +638416.505|219977.636|121.426 +638411.409|219982.333|121.820 +638406.315|219987.024|122.170 +638401.277|219991.663|122.347 +638396.184|219996.354|122.545 +638391.094|220001.041|122.722 +638386.004|220005.726|122.856 +638380.916|220010.414|122.981 +638375.826|220015.099|123.185 +638370.785|220019.744|123.514 +638365.698|220024.429|123.706 +638360.565|220029.156|123.874 +638355.527|220033.795|123.996 +638350.439|220038.480|124.127 +638345.355|220043.162|124.258 +638340.317|220047.801|124.438 +638335.233|220052.483|124.688 +638325.110|220061.803|124.788 +638320.020|220066.488|124.535 +638314.933|220071.170|124.429 +638309.889|220075.812|124.231 +638304.796|220080.497|123.834 +638299.745|220085.142|123.405 +638294.701|220089.784|123.261 +638289.610|220094.472|123.139 +638284.514|220099.163|122.938 +638279.464|220103.808|122.685 +638274.410|220108.459|122.268 +638269.359|220113.107|122.115 +638264.315|220117.750|122.262 +638259.289|220122.379|122.929 +638254.205|220127.061|123.310 +638249.218|220131.652|123.743 +638244.174|220136.297|123.789 +638239.129|220140.942|123.868 +638234.082|220145.584|123.935 +638229.040|220150.226|124.209 +638224.051|220154.819|124.471 +638219.012|220159.458|124.816 +638214.020|220164.055|125.096 +638209.036|220168.645|125.572 +638203.998|220173.284|125.840 +638198.999|220177.884|125.998 +638194.046|220182.443|126.114 +638189.047|220187.046|126.242 +638184.049|220191.648|126.431 +638179.093|220196.208|126.535 +638174.091|220200.814|126.675 +638169.135|220205.374|126.815 +638164.173|220209.940|126.861 +638159.211|220214.509|126.916 +638154.251|220219.071|127.017 +638149.289|220223.640|127.108 +638144.367|220228.167|127.117 +638139.395|220232.742|127.090 +638134.424|220237.317|127.093 +638129.496|220241.852|127.071 +638124.576|220246.382|127.154 +638119.684|220250.880|126.983 +638114.701|220255.468|126.904 +638109.808|220259.966|126.806 +638104.877|220264.505|126.834 +638099.942|220269.046|126.840 +638095.053|220273.545|126.803 +638090.167|220278.041|126.873 +638085.278|220282.540|126.922 +638080.386|220287.042|126.934 +638075.543|220291.498|127.007 +638070.611|220296.040|127.163 +638065.771|220300.493|127.291 +638060.906|220304.970|127.138 +638055.990|220309.490|126.992 +638051.122|220313.971|126.846 +638046.261|220318.442|126.828 +638041.430|220322.886|126.623 +638036.550|220327.376|126.431 +638031.679|220331.857|126.349 +638026.842|220336.307|126.172 +638022.008|220340.754|126.020 +638017.173|220345.201|125.910 +638012.321|220349.666|125.627 +638007.463|220354.132|125.346 +638002.665|220358.545|125.169 +637997.809|220363.013|124.947 +637993.003|220367.433|124.755 +637988.193|220371.856|124.584 +637983.395|220376.272|124.517 +637978.592|220380.692|124.435 +637973.785|220385.112|124.346 +637968.994|220389.519|123.962 +637964.141|220393.981|123.502 +637959.341|220398.395|123.112 +637954.500|220402.845|122.835 +637949.721|220407.243|122.670 +637944.960|220411.623|122.722 +637940.230|220415.976|122.609 +637897.030|220455.688|117.760 +637892.220|220460.111|116.915 +637868.150|220482.230|112.362 +637863.395|220486.601|111.792 +637849.204|220499.656|110.737 +637844.428|220504.045|109.783 +637839.633|220508.449|108.713 +637830.437|220516.919|109.423 +637821.220|220525.408|110.048 +637816.642|220529.627|110.231 +637802.673|220542.474|109.414 +637780.401|220563.011|113.907 +637775.979|220567.090|114.578 +637771.501|220571.214|114.928 +637753.515|220587.776|115.995 +637744.499|220596.076|116.193 +637740.030|220600.191|116.400 +637735.620|220604.254|116.955 +637722.364|220616.464|117.982 +637717.951|220620.530|118.287 +637709.145|220628.638|118.784 +637691.592|220644.799|119.433 +637687.138|220648.895|119.354 +637678.339|220656.994|119.278 +637673.934|220661.047|118.970 +637669.564|220665.068|118.866 +637665.095|220669.180|118.516 +637660.676|220673.246|118.202 +637656.357|220677.217|118.165 +637651.964|220681.262|118.016 +637638.834|220693.338|116.903 +637634.441|220697.377|116.586 +637630.138|220701.336|116.480 +637612.709|220717.366|114.663 +637608.527|220721.212|114.742 +637599.883|220729.164|113.837 +637595.628|220733.078|113.624 +637587.014|220740.997|112.496 +637582.604|220745.044|111.365 +637574.112|220752.853|110.466 +637561.417|220764.530|109.106 +637545.540|220779.170|111.374 +637533.802|220789.993|113.230 +637525.957|220797.226|114.194 +637486.037|220833.970|111.831 +637482.087|220837.603|111.581 +637477.987|220841.371|110.490 +637473.799|220845.217|109.055 +637470.078|220848.646|109.579 +637466.393|220852.045|110.036 +637462.659|220855.486|110.316 +637451.848|220865.456|112.346 +637448.251|220868.772|112.999 +637444.612|220872.128|113.261 +637433.867|220882.031|114.611 +637430.161|220885.445|114.447 +637426.537|220888.782|114.620 +637422.873|220892.153|114.440 +637419.255|220895.485|114.447 +637415.665|220898.789|114.364 +637408.538|220905.354|114.663 +637394.280|220918.479|114.117 +637390.714|220921.762|113.803 +637387.233|220924.962|113.627 +637383.673|220928.239|113.355 +637380.183|220931.451|113.163 +637376.690|220934.664|112.773 +637373.191|220937.886|112.569 +637369.710|220941.086|112.246 +637366.302|220944.223|112.011 +637362.919|220947.338|111.865 +637601.703|220725.394|114.279 +637610.179|220717.579|114.675 +637614.492|220713.604|115.020 +637623.170|220705.603|115.775 +637636.191|220693.603|116.687 +637640.440|220689.680|116.580 +637644.914|220685.560|117.363 +637653.665|220677.491|118.007 +637658.085|220673.419|118.314 +637662.471|220669.375|118.479 +637666.851|220665.336|118.625 +637680.027|220653.187|119.125 +637684.438|220649.118|119.244 +637688.897|220645.009|119.360 +637697.685|220636.901|119.235 +637702.055|220632.866|118.939 +637706.472|220628.790|118.619 +637710.895|220624.706|118.363 +637719.731|220616.556|118.098 +637728.576|220608.387|117.107 +637733.044|220604.266|116.879 +637737.400|220600.243|116.312 +637746.440|220591.903|115.967 +637755.432|220583.607|115.708 +637759.995|220579.398|115.556 +637764.506|220575.234|115.404 +637786.921|220554.532|112.130 +637791.469|220550.335|111.655 +637805.105|220537.743|109.954 +637837.618|220507.742|108.597 +637842.456|220503.289|109.280 +637847.329|220498.802|110.618 +637852.084|220494.419|111.146 +637856.915|220489.966|111.539 +637866.514|220481.124|112.663 +637871.305|220476.710|113.212 +637876.185|220472.217|114.084 +637900.529|220449.796|118.266 +637915.105|220436.367|120.034 +637919.948|220431.904|120.558 +637924.852|220427.387|121.228 +637934.502|220418.490|121.740 +637939.428|220413.955|122.713 +637944.244|220409.514|122.734 +637949.105|220405.030|122.777 +637953.921|220400.586|122.883 +637958.816|220396.075|123.277 +637963.669|220391.607|123.734 +637968.564|220387.093|124.197 +637973.419|220382.615|124.319 +637978.311|220378.104|124.346 +637983.161|220373.633|124.453 +637988.053|220369.122|124.517 +637992.911|220364.644|124.770 +637997.809|220360.127|124.971 +638002.708|220355.610|125.179 +638007.606|220351.093|125.447 +638012.559|220346.530|125.779 +638017.430|220342.037|125.803 +638022.361|220337.489|125.983 +638027.241|220332.991|126.151 +638032.167|220328.446|126.340 +638037.089|220323.911|126.474 +638042.009|220319.375|126.632 +638046.928|220314.837|126.834 +638051.829|220310.316|126.824 +638056.798|220305.738|127.081 +638061.708|220301.209|127.224 +638066.646|220296.655|127.169 +638071.529|220292.150|127.035 +638076.460|220287.603|126.940 +638081.392|220283.049|126.892 +638086.327|220278.501|126.846 +638091.258|220273.951|126.809 +638096.184|220269.406|126.739 +638101.164|220264.816|126.739 +638106.093|220260.268|126.748 +638111.022|220255.721|126.754 +638115.999|220251.130|126.809 +638120.979|220246.540|126.925 +638125.957|220241.950|127.010 +638130.876|220237.411|126.989 +638135.845|220232.830|127.013 +638140.810|220228.249|126.998 +638145.778|220223.668|127.053 +638150.786|220219.047|126.971 +638155.690|220214.518|126.849 +638160.698|220209.897|126.815 +638165.654|220205.322|126.776 +638170.653|220200.710|126.614 +638175.652|220196.096|126.501 +638180.601|220191.527|126.428 +638185.597|220186.915|126.285 +638190.593|220182.303|126.148 +638195.540|220177.740|125.992 +638200.532|220173.129|125.861 +638205.522|220168.523|125.666 +638210.505|220163.924|125.273 +638215.486|220159.321|124.904 +638220.469|220154.722|124.548 +638225.505|220150.074|124.267 +638230.491|220145.468|124.011 +638235.481|220140.863|123.874 +638240.519|220136.211|123.764 +638245.515|220131.603|123.743 +638250.544|220126.958|123.359 +638255.576|220122.312|123.088 +638260.551|220117.716|122.393 +638265.583|220113.071|122.115 +638270.621|220108.420|121.981 +638275.620|220103.808|122.182 +638280.671|220099.154|122.579 +638285.721|220094.496|123.088 +638290.759|220089.845|123.161 +638295.801|220085.197|123.322 +638300.839|220080.546|123.472 +638305.881|220075.897|123.831 +638310.922|220071.249|124.225 +638316.009|220066.555|124.630 +638320.999|220061.956|124.727 +638326.080|220057.265|124.752 +638331.112|220052.620|124.795 +638336.144|220047.978|124.734 +638341.225|220043.287|124.520 +638346.258|220038.642|124.365 +638351.290|220033.996|124.145 +638356.371|220029.309|124.133 +638361.403|220024.660|123.904 +638366.438|220020.015|123.810 +638371.519|220015.324|123.569 +638376.604|220010.630|123.216 +638381.639|220005.982|123.042 +638386.723|220001.288|122.896 +638391.761|219996.640|122.752 +638396.845|219991.946|122.624 +638401.926|219987.258|122.518 +638406.968|219982.601|122.128 +638412.009|219977.944|121.716 +638417.102|219973.244|121.353 +638422.196|219968.541|120.960 +638427.240|219963.886|120.814 +638432.330|219959.186|120.643 +638437.426|219954.480|120.296 +638452.621|219940.453|119.707 +638457.723|219935.744|119.448 +638462.774|219931.084|119.329 +638467.876|219926.374|119.083 +638472.927|219921.711|119.040 +638478.023|219917.008|119.073 +638483.067|219912.357|119.314 +638488.106|219907.708|119.683 +638493.190|219903.021|120.143 +638498.192|219898.406|120.259 +638503.291|219893.700|120.277 +638508.347|219889.033|120.219 +638513.413|219884.358|119.973 +638518.479|219879.685|119.796 +638523.545|219875.006|119.622 +638528.617|219870.322|119.348 +638533.686|219865.637|119.134 +638538.760|219860.949|118.900 +638543.790|219856.307|118.689 +638548.871|219851.610|118.357 +638553.952|219846.916|118.083 +638558.981|219842.274|117.967 +638564.056|219837.589|117.936 +638569.085|219832.944|117.851 +638574.111|219828.302|117.833 +638579.204|219823.596|117.549 +638584.188|219818.993|117.525 +638589.202|219814.366|117.808 +638594.231|219809.724|117.882 +638599.285|219805.055|117.592 +638604.287|219800.437|117.400 +638609.291|219795.813|117.181 +638614.311|219791.177|117.458 +638619.307|219786.568|117.461 +638634.242|219772.776|117.565 +638644.255|219763.529|117.443 +638649.229|219758.935|117.245 +638654.128|219754.418|118.025 +638669.020|219740.665|117.933 +638673.933|219736.130|117.988 +638679.008|219731.436|116.729 +638683.937|219726.882|116.662 +638693.825|219717.751|116.278 +638698.790|219713.160|115.876 +638703.667|219708.658|115.977 +638708.592|219704.114|116.102 +638713.539|219699.542|115.995 +638718.453|219695.006|115.782 +638723.369|219690.462|115.535 +638728.276|219685.932|115.437 +638733.178|219681.406|115.419 +638738.097|219676.862|115.248 +638742.934|219672.393|115.413 +638747.872|219667.833|115.132 +638752.846|219663.231|114.017 +638757.857|219658.592|112.627 +638762.856|219653.968|111.420 +638767.858|219649.341|110.222 +638772.732|219644.836|109.820 +638777.617|219640.325|109.777 +638782.446|219635.866|109.823 +638787.170|219631.510|110.819 +638791.894|219627.158|111.825 +638796.707|219622.714|112.060 +638801.550|219618.242|112.060 +638806.366|219613.792|111.874 +638811.255|219609.272|111.118 +638816.144|219604.758|110.826 +638820.878|219600.387|111.021 +638825.703|219595.934|111.271 +638830.452|219591.551|111.386 +638835.237|219587.131|111.609 +638839.974|219582.760|111.850 +638844.741|219578.359|111.877 +638849.563|219573.906|111.862 +638854.296|219569.532|111.801 +638859.082|219565.116|111.761 +638863.852|219560.708|111.837 +638868.604|219556.322|111.719 +638873.364|219551.924|111.554 +638878.129|219547.522|111.389 +638882.950|219543.069|111.203 +638887.711|219538.671|110.755 +638892.524|219534.221|110.310 +638897.331|219529.777|109.945 +638902.159|219525.312|109.131 +638906.987|219520.849|108.680 +638911.641|219516.549|108.762 +638916.357|219512.193|108.805 +638921.075|219507.834|108.832 +638925.705|219503.561|109.469 +638930.320|219499.303|109.902 +638934.949|219495.030|110.560 +638939.543|219490.790|110.844 +638944.215|219486.477|111.261 +638948.839|219482.207|111.670 +638953.445|219477.955|111.908 +638958.084|219473.675|112.276 +638962.705|219469.405|112.447 +638967.371|219465.095|112.359 +638972.038|219460.788|112.609 +638976.619|219456.555|112.770 +638968.977|219460.459|112.697 +638964.244|219464.818|112.529 +638959.434|219469.250|112.548 +638954.670|219473.642|112.319 +638949.930|219478.004|111.926 +638945.136|219482.420|111.612 +638940.411|219486.770|111.149 +638935.635|219491.168|110.746 +638930.862|219495.566|110.329 +638926.119|219499.931|109.716 +638921.313|219504.357|109.222 +638916.472|219508.816|108.969 +638911.599|219513.306|108.945 +638906.737|219517.786|108.884 +638901.830|219522.309|109.155 +638896.852|219526.903|109.945 +638891.826|219531.539|110.408 +638886.907|219536.074|110.862 +638881.902|219540.692|111.255 +638876.958|219545.252|111.591 +638871.990|219549.830|111.755 +638867.073|219554.362|111.956 +638862.133|219558.916|111.978 +638857.204|219563.457|111.941 +638852.205|219568.063|112.072 +638847.341|219572.550|111.990 +638842.314|219577.180|112.008 +638837.389|219581.721|112.054 +638832.466|219586.253|111.694 +638827.522|219590.807|111.533 +638822.533|219595.404|111.347 +638817.656|219599.896|111.072 +638812.642|219604.517|111.152 +638807.552|219609.214|111.892 +638802.529|219613.844|112.100 +638797.536|219618.447|112.106 +638792.547|219623.043|112.069 +638787.597|219627.603|111.734 +638782.741|219632.068|110.554 +638777.794|219636.622|109.765 +638772.799|219641.224|109.871 +638767.739|219645.891|110.158 +638762.664|219650.576|111.051 +638757.507|219655.340|112.346 +638752.298|219660.149|113.706 +638747.204|219664.855|114.968 +638742.105|219669.555|115.370 +638737.146|219674.128|115.385 +638732.089|219678.788|115.422 +638727.085|219683.400|115.458 +638722.083|219688.008|115.489 +638717.011|219692.684|115.775 +638711.997|219697.308|116.010 +638706.931|219701.980|116.315 +638701.954|219706.564|116.172 +638696.946|219711.179|115.888 +638691.886|219715.843|116.208 +638681.822|219725.127|116.882 +638676.771|219729.781|117.184 +638671.666|219734.493|118.205 +638666.664|219739.102|118.013 +638651.613|219752.973|118.113 +638646.617|219757.573|117.296 +638641.591|219762.206|117.519 +638631.548|219771.463|117.324 +638616.497|219785.340|117.373 +638611.510|219789.936|117.196 +638606.466|219794.588|117.214 +638601.382|219799.282|117.924 +638596.407|219803.866|117.656 +638591.348|219808.532|118.001 +638586.370|219813.120|117.824 +638581.347|219817.747|117.632 +638576.303|219822.401|117.851 +638571.322|219826.991|117.799 +638566.290|219831.630|117.845 +638561.255|219836.275|117.976 +638556.229|219840.908|117.973 +638551.193|219845.553|118.193 +638546.204|219850.153|118.461 +638541.168|219854.801|118.772 +638536.142|219859.437|118.924 +638531.110|219864.076|119.226 +638526.084|219868.712|119.427 +638521.106|219873.306|119.695 +638516.035|219877.981|119.918 +638511.018|219882.608|120.027 +638506.043|219887.195|120.302 +638500.983|219891.862|120.357 +638495.976|219896.477|120.320 +638490.925|219901.134|120.189 +638485.932|219905.733|119.753 +638480.940|219910.333|119.302 +638475.889|219914.987|119.113 +638470.884|219919.602|119.116 +638465.880|219924.216|119.137 +638460.823|219928.877|119.244 +638455.815|219933.495|119.421 +638450.807|219938.115|119.726 +638445.751|219942.782|120.094 +638430.645|219956.711|120.655 +638425.646|219961.320|120.753 +638420.598|219965.977|120.978 +638415.597|219970.592|121.332 +638410.598|219975.203|121.743 +638405.550|219979.858|122.106 +638400.506|219984.512|122.509 +638395.516|219989.115|122.719 +638390.475|219993.763|122.816 +638385.437|219998.411|122.963 +638380.444|220003.013|123.173 +638375.403|220007.662|123.338 +638370.364|220012.310|123.667 +638365.375|220016.912|123.908 +638360.336|220021.558|124.005 +638355.301|220026.203|124.115 +638350.263|220030.848|124.249 +638345.227|220035.490|124.346 +638340.241|220040.089|124.563 +638335.205|220044.735|124.731 +638330.167|220049.377|124.761 +638325.178|220053.976|124.746 +638320.093|220058.664|124.752 +638315.055|220063.309|124.581 +638310.056|220067.912|124.029 +638305.015|220072.560|123.697 +638299.971|220077.208|123.420 +638294.926|220081.856|123.271 +638289.888|220086.501|123.258 +638284.886|220091.110|122.899 +638279.829|220095.767|122.237 +638274.779|220100.422|121.987 +638269.780|220105.030|121.850 +638264.739|220109.678|121.935 +638259.697|220114.324|122.176 +638254.711|220118.920|122.542 +638249.736|220123.510|123.322 +638244.692|220128.158|123.353 +638239.705|220132.755|123.728 +638234.661|220137.400|123.847 +638229.665|220142.006|123.914 +638224.673|220146.605|124.176 +638219.634|220151.250|124.420 +638214.645|220155.850|124.770 +638209.658|220160.446|125.142 +638204.672|220165.042|125.508 +638199.682|220169.642|125.770 +638194.638|220174.290|125.934 +638189.685|220178.856|126.035 +638184.686|220183.462|126.166 +638179.635|220188.116|126.270 +638174.682|220192.679|126.413 +638169.680|220197.290|126.498 +638164.724|220201.853|126.657 +638159.720|220206.468|126.736 +638154.712|220211.080|126.828 +638149.747|220215.655|126.846 +638144.787|220220.227|126.928 +638139.819|220224.802|126.946 +638134.848|220229.383|126.928 +638129.880|220233.961|126.953 +638124.905|220238.542|126.922 +638119.925|220243.129|126.843 +638114.993|220247.671|126.785 +638110.010|220252.261|126.700 +638105.078|220256.806|126.700 +638100.146|220261.350|126.690 +638095.212|220265.895|126.684 +638090.234|220270.482|126.788 +638085.348|220274.984|126.824 +638080.414|220279.532|126.879 +638075.525|220284.034|126.940 +638070.593|220288.578|127.062 +638065.698|220293.089|127.084 +638060.763|220297.637|127.224 +638055.859|220302.154|127.184 +638050.951|220306.671|127.129 +638046.078|220311.164|126.901 +638041.152|220315.699|126.678 +638036.230|220320.232|126.511 +638031.347|220324.727|126.288 +638026.479|220329.211|126.279 +638021.596|220333.710|126.078 +638016.707|220338.212|125.883 +638011.867|220342.668|125.712 +638006.944|220347.203|125.709 +638002.135|220351.632|125.392 +637997.230|220356.149|125.127 +637992.375|220360.621|124.919 +637987.519|220365.092|124.709 +637982.710|220369.521|124.517 +637977.815|220374.029|124.471 +637973.054|220378.412|124.340 +637968.201|220382.883|124.255 +637963.391|220387.315|124.154 +637958.551|220391.771|123.816 +637953.696|220396.240|123.347 +637948.904|220400.653|123.069 +637944.082|220405.094|122.963 +637939.309|220409.489|122.905 +637934.521|220413.900|122.707 +637924.880|220422.776|121.887 +637920.088|220427.183|121.356 +637915.199|220431.682|120.448 +637910.429|220436.074|120.155 +637900.859|220444.886|119.406 +637896.021|220449.333|118.680 +637891.163|220453.798|117.805 +637867.017|220475.985|113.276 +637862.271|220480.346|112.743 +637857.537|220484.702|112.319 +637852.779|220489.073|111.761 +637848.024|220493.447|111.231 +637838.493|220502.207|109.795 +637833.876|220506.459|109.975 +637829.063|220510.881|109.183 +637824.448|220515.127|109.076 +637815.277|220523.570|109.701 +637806.020|220532.089|109.454 +637756.670|220577.550|115.519 +637738.662|220594.125|116.004 +637720.987|220610.399|117.522 +637703.393|220626.596|118.574 +637694.640|220634.655|118.866 +637690.232|220638.712|119.003 +637681.451|220646.792|118.970 +637672.691|220654.851|118.860 +637668.308|220658.880|118.677 +637650.812|220674.977|118.061 +637637.633|220687.096|116.922 +637624.627|220699.053|116.080 +637620.280|220703.049|115.526 +637615.937|220707.045|115.266 +637602.928|220719.002|113.959 +637598.682|220722.910|113.742 +637594.415|220726.833|113.465 +637585.914|220734.651|113.099 +637568.848|220750.336|110.844 +637560.018|220758.440|108.241 +637536.503|220780.100|112.554 +637532.513|220783.769|112.834 +637496.775|220816.639|112.779 +637476.768|220835.015|110.289 +637472.800|220838.664|109.756 +637468.624|220842.492|108.384 +637465.033|220845.799|109.241 +637461.421|220849.128|110.009 +637457.724|220852.532|110.429 +637454.015|220855.943|110.819 +637450.439|220859.235|111.548 +637439.701|220869.123|113.282 +637421.700|220885.682|114.319 +637418.051|220889.035|114.206 +637414.412|220892.382|114.136 +637407.341|220898.883|114.419 +637396.819|220908.561|114.636 +637385.971|220918.522|113.304 +637382.478|220921.734|113.276 +637379.061|220924.874|113.154 +637375.559|220928.092|112.919 +637372.029|220931.336|112.590 +637368.570|220934.515|112.334 +637365.098|220937.703|112.054 +637361.700|220940.827|111.844 +637358.289|220943.960|111.609 +637598.329|220720.980|113.368 +637602.639|220717.003|113.663 +637615.742|220704.911|115.263 +637620.058|220700.928|115.413 +637624.484|220696.843|116.135 +637628.851|220692.814|116.580 +637633.213|220688.787|116.772 +637637.578|220684.758|116.992 +637641.946|220680.722|117.257 +637659.536|220664.486|118.314 +637663.907|220660.450|118.421 +637668.354|220656.344|118.692 +637672.737|220652.297|118.628 +637681.609|220644.101|118.884 +637690.400|220635.984|118.744 +637694.908|220631.820|118.918 +637699.294|220627.763|118.436 +637708.161|220619.573|118.308 +637712.626|220615.449|118.293 +637717.049|220611.359|117.799 +637721.480|220607.265|117.339 +637725.821|220603.248|116.681 +637730.313|220599.097|116.321 +637734.812|220594.939|116.004 +637748.297|220582.479|115.404 +637761.888|220569.924|114.980 +637770.959|220561.542|114.434 +637775.418|220557.415|113.718 +637779.914|220553.261|112.898 +637784.412|220549.100|112.447 +637811.842|220523.756|109.881 +637816.383|220519.562|109.457 +637821.004|220515.292|108.914 +637825.731|220510.930|109.119 +637830.538|220506.495|109.920 +637835.183|220502.207|109.588 +637839.923|220497.833|109.960 +637844.818|220493.322|111.124 +637849.603|220488.908|111.527 +637859.137|220480.112|112.154 +637864.005|220475.625|113.264 +637868.952|220471.071|114.629 +637883.549|220457.614|117.141 +637888.401|220453.143|117.946 +637898.091|220444.206|119.180 +637907.750|220435.294|119.930 +637917.510|220426.296|121.189 +637932.027|220412.903|122.551 +637936.941|220408.371|122.996 +637941.702|220403.976|123.024 +637946.573|220399.480|123.164 +637951.413|220395.014|123.469 +637956.320|220390.488|124.014 +637961.130|220386.047|124.121 +637966.031|220381.524|124.206 +637970.886|220377.043|124.334 +637975.733|220372.569|124.404 +637980.582|220368.094|124.535 +637985.526|220363.529|124.688 +637990.382|220359.051|124.910 +637995.283|220354.528|125.151 +638000.187|220350.002|125.465 +638005.122|220345.448|125.602 +638009.995|220340.949|125.660 +638014.927|220336.395|125.840 +638019.862|220331.845|126.056 +638024.787|220327.297|126.245 +638029.698|220322.765|126.255 +638034.626|220318.217|126.511 +638039.549|220313.672|126.727 +638044.465|220309.137|126.885 +638049.434|220304.553|127.126 +638054.374|220299.990|127.087 +638059.263|220295.476|127.001 +638064.201|220290.916|126.992 +638069.145|220286.353|127.013 +638074.074|220281.802|126.928 +638079.005|220277.249|126.852 +638083.931|220272.698|126.767 +638088.860|220268.150|126.687 +638093.834|220263.557|126.632 +638098.763|220259.006|126.626 +638103.691|220254.459|126.632 +638108.665|220249.865|126.648 +638113.640|220245.272|126.684 +638118.617|220240.679|126.779 +638123.592|220236.088|126.849 +638128.560|220231.501|126.849 +638133.525|220226.917|126.858 +638138.490|220222.333|126.852 +638143.498|220217.709|126.828 +638148.506|220213.091|126.754 +638153.465|220208.516|126.754 +638158.470|220203.898|126.681 +638163.472|220199.284|126.596 +638168.422|220194.718|126.465 +638173.466|220190.064|126.309 +638178.419|220185.495|126.258 +638183.415|220180.883|126.123 +638188.456|220176.232|125.971 +638193.403|220171.666|125.883 +638198.441|220167.018|125.681 +638203.428|220162.415|125.410 +638208.411|220157.816|125.069 +638213.441|220153.173|124.663 +638218.427|220148.571|124.359 +638223.411|220143.972|124.087 +638228.449|220139.323|123.874 +638233.442|220134.718|123.795 +638238.480|220130.067|123.731 +638243.464|220125.467|123.365 +638248.438|220120.874|122.786 +638253.467|220116.232|122.374 +638258.502|220111.583|122.143 +638263.489|220106.981|121.871 +638268.530|220102.333|121.859 +638273.572|220097.681|121.948 +638278.616|220093.030|122.137 +638283.667|220088.376|122.582 +638288.672|220083.764|123.295 +638293.707|220079.119|123.203 +638298.791|220074.428|123.310 +638303.784|220069.826|123.630 +638308.871|220065.135|123.932 +638313.912|220060.487|124.389 +638318.947|220055.845|124.438 +638323.983|220051.199|124.740 +638334.050|220041.915|124.770 +638339.128|220037.227|124.523 +638344.161|220032.585|124.444 +638349.193|220027.940|124.368 +638354.228|220023.298|124.295 +638359.260|220018.653|124.093 +638364.293|220014.011|124.002 +638369.374|220009.320|123.819 +638374.409|220004.675|123.481 +638379.444|220000.026|123.347 +638384.483|219995.378|123.072 +638389.518|219990.733|122.990 +638394.556|219986.085|122.838 +638399.589|219981.440|122.554 +638404.630|219976.785|122.204 +638409.671|219972.131|121.798 +638414.716|219967.477|121.405 +638419.711|219962.865|121.103 +638424.805|219958.162|120.817 +638429.846|219953.511|120.741 +638434.842|219948.902|120.677 +638439.938|219944.199|120.475 +638444.989|219939.539|120.107 +638449.993|219934.918|119.750 +638455.096|219930.209|119.436 +638460.146|219925.551|119.342 +638465.194|219920.891|119.296 +638470.250|219916.228|119.098 +638475.298|219911.570|119.162 +638480.339|219906.922|119.409 +638485.375|219902.280|119.878 +638490.413|219897.638|120.332 +638495.461|219892.983|120.472 +638500.511|219888.320|120.463 +638505.519|219883.699|120.405 +638510.585|219879.027|120.143 +638515.647|219874.354|120.009 +638520.671|219869.721|119.710 +638525.742|219865.045|119.497 +638530.814|219860.367|119.259 +638535.840|219855.731|119.037 +638540.918|219851.049|118.823 +638545.951|219846.404|118.531 +638550.986|219841.762|118.260 +638556.067|219837.077|118.068 +638561.047|219832.484|117.970 +638566.080|219827.845|117.879 +638571.106|219823.209|117.882 +638576.132|219818.579|117.976 +638581.161|219813.940|117.979 +638586.187|219809.307|118.080 +638591.211|219804.677|118.247 +638596.267|219800.016|117.924 +638601.223|219795.450|118.452 +638606.338|219790.726|117.278 +638611.330|219786.123|117.275 +638616.363|219781.481|117.409 +638626.351|219772.276|117.513 +638641.411|219758.393|117.461 +638646.376|219753.821|118.001 +638661.339|219740.028|118.217 +638666.359|219735.399|118.122 +638676.326|219726.206|117.741 +638681.361|219721.561|117.025 +638691.395|219712.301|116.083 +638696.373|219707.713|116.129 +638701.262|219703.209|116.620 +638706.200|219698.658|116.608 +638711.171|219694.071|116.236 +638716.154|219689.474|115.809 +638721.114|219684.902|115.647 +638726.015|219680.382|115.596 +638730.974|219675.810|115.507 +638735.875|219671.293|115.541 +638740.795|219666.754|115.388 +638745.748|219662.185|114.959 +638750.792|219657.525|113.685 +638755.849|219652.852|112.325 +638760.896|219648.192|111.149 +638765.855|219643.614|110.368 +638770.772|219639.078|110.012 +638775.658|219634.574|109.978 +638780.416|219630.197|111.112 +638785.186|219625.807|112.145 +638790.081|219621.293|112.078 +638795.019|219616.734|111.237 +638799.868|219612.268|111.618 +638804.653|219607.861|112.145 +638809.533|219603.359|111.874 +638814.401|219598.866|111.353 +638819.238|219594.410|111.511 +638824.026|219589.996|111.685 +638828.812|219585.586|111.880 +638833.643|219581.136|112.154 +638838.398|219576.750|112.252 +638843.217|219572.309|112.255 +638847.993|219567.904|112.246 +638852.809|219563.467|112.313 +638857.564|219559.081|112.130 +638862.346|219554.673|112.142 +638867.137|219550.253|112.093 +638871.904|219545.858|111.908 +638876.675|219541.460|111.716 +638881.472|219537.034|111.335 +638886.279|219532.599|110.932 +638891.049|219528.198|110.472 +638895.819|219523.797|110.036 +638900.620|219519.362|109.402 +638905.433|219514.921|109.070 +638910.093|219510.623|109.131 +638914.808|219506.274|109.170 +638919.444|219502.004|109.442 +638924.065|219497.742|109.814 +638928.692|219493.481|110.493 +638933.279|219489.254|110.804 +638937.909|219484.987|111.176 +638942.460|219480.796|111.737 +638947.062|219476.550|111.981 +638951.637|219472.334|112.426 +638956.301|219468.037|112.636 +638960.909|219463.788|112.593 +638965.472|219459.581|112.840 +638963.192|219458.905|112.798 +638958.572|219463.157|112.551 +638953.829|219467.521|112.481 +638949.208|219471.773|112.279 +638944.572|219476.038|111.877 +638939.829|219480.399|111.533 +638935.212|219484.645|111.045 +638930.533|219488.952|110.658 +638925.796|219493.308|110.326 +638921.163|219497.569|109.655 +638916.424|219501.927|109.359 +638911.696|219506.277|109.015 +638906.847|219510.739|109.173 +638902.065|219515.144|109.256 +638897.160|219519.661|109.844 +638892.299|219524.141|110.185 +638887.419|219528.634|110.664 +638882.496|219533.172|111.152 +638877.589|219537.693|111.548 +638872.703|219542.192|111.816 +638867.829|219546.678|112.020 +638862.983|219551.144|112.066 +638858.076|219555.658|112.194 +638853.181|219560.166|112.289 +638848.292|219564.668|112.343 +638843.424|219569.148|112.258 +638838.453|219573.723|112.237 +638833.634|219578.158|112.197 +638828.690|219582.709|112.020 +638823.801|219587.208|111.810 +638818.860|219591.755|111.630 +638814.011|219596.217|111.542 +638808.951|219600.878|111.981 +638804.056|219605.383|111.898 +638789.212|219619.044|111.082 +638784.149|219623.710|112.130 +638779.160|219628.301|111.706 +638774.316|219632.751|110.448 +638769.373|219637.295|110.060 +638764.307|219641.962|110.390 +638759.256|219646.619|111.072 +638754.117|219651.359|112.176 +638749.003|219656.077|113.550 +638743.797|219660.881|114.937 +638738.740|219665.541|115.407 +638733.720|219670.162|115.532 +638728.670|219674.813|115.510 +638723.659|219679.422|115.577 +638718.614|219684.067|115.538 +638713.539|219688.743|115.870 +638708.461|219693.418|116.233 +638703.371|219698.109|116.775 +638698.348|219702.733|116.644 +638693.300|219707.378|116.251 +638688.277|219711.999|116.138 +638683.163|219716.711|116.534 +638678.060|219721.414|117.415 +638662.839|219735.435|118.150 +638657.779|219740.092|118.095 +638642.597|219754.068|118.058 +638637.522|219758.737|117.644 +638627.421|219768.040|117.534 +638622.370|219772.691|117.522 +638617.317|219777.348|117.613 +638612.242|219782.018|117.260 +638607.152|219786.706|117.190 +638596.932|219796.133|118.558 +638591.869|219800.790|118.135 +638586.770|219805.490|118.351 +638581.695|219810.160|118.162 +638576.669|219814.793|118.055 +638571.545|219819.511|117.943 +638566.461|219824.190|117.970 +638561.425|219828.829|118.068 +638556.351|219833.505|118.049 +638551.266|219838.189|118.208 +638546.179|219842.874|118.427 +638541.092|219847.565|118.753 +638536.005|219852.250|119.073 +638530.927|219856.932|119.284 +638525.852|219861.607|119.473 +638520.777|219866.283|119.701 +638515.699|219870.962|119.997 +638510.627|219875.634|120.195 +638505.555|219880.310|120.500 +638500.496|219884.970|120.530 +638495.436|219889.631|120.536 +638490.383|219894.285|120.411 +638485.332|219898.933|120.146 +638480.245|219903.615|119.601 +638475.249|219908.214|119.253 +638470.193|219912.869|119.186 +638465.090|219917.569|119.189 +638460.079|219922.189|119.406 +638455.020|219926.850|119.607 +638449.960|219931.513|119.939 +638444.903|219936.171|120.122 +638439.850|219940.828|120.354 +638434.793|219945.485|120.658 +638429.742|219950.140|120.802 +638424.695|219954.791|120.905 +638419.644|219959.442|121.058 +638414.594|219964.100|121.423 +638409.543|219968.751|121.728 +638404.542|219973.362|122.131 +638399.494|219978.014|122.597 +638394.450|219982.665|122.862 +638389.411|219987.304|123.005 +638384.370|219991.949|123.146 +638379.374|219996.552|123.395 +638374.382|220001.154|123.563 +638369.340|220005.799|123.886 +638364.302|220010.441|124.023 +638359.309|220015.041|124.176 +638354.271|220019.683|124.377 +638349.278|220024.282|124.414 +638344.240|220028.925|124.666 +638339.201|220033.564|124.630 +638334.261|220038.117|124.776 +638329.222|220042.759|124.846 +638324.181|220047.399|124.718 +638319.240|220051.952|124.807 +638314.196|220056.594|124.487 +638309.197|220061.197|123.929 +638304.198|220065.796|123.645 +638299.199|220070.399|123.371 +638294.204|220075.001|123.164 +638289.208|220079.601|123.173 +638284.151|220084.252|122.542 +638279.195|220088.818|122.140 +638274.191|220093.423|121.884 +638269.192|220098.029|121.868 +638264.187|220102.634|121.704 +638259.194|220107.237|121.871 +638254.205|220111.839|122.164 +638249.212|220116.442|122.368 +638244.226|220121.041|122.810 +638239.294|220125.592|123.392 +638234.307|220130.192|123.716 +638229.357|220134.754|123.773 +638224.359|220139.363|123.859 +638219.366|220143.965|124.081 +638214.425|220148.522|124.377 +638209.487|220153.076|124.776 +638204.501|220157.675|125.136 +638199.606|220162.189|125.447 +638194.613|220166.795|125.666 +638189.663|220171.358|125.803 +638184.710|220175.924|125.928 +638179.757|220180.490|126.053 +638174.804|220185.056|126.160 +638169.848|220189.625|126.258 +638164.941|220194.148|126.370 +638159.985|220198.717|126.495 +638155.026|220203.289|126.575 +638150.115|220207.815|126.663 +638145.147|220212.396|126.636 +638140.234|220216.926|126.715 +638135.268|220221.504|126.764 +638130.343|220226.039|126.742 +638125.372|220230.623|126.739 +638120.443|220235.165|126.687 +638115.514|220239.709|126.657 +638110.583|220244.254|126.584 +638105.651|220248.802|126.538 +638100.716|220253.349|126.492 +638095.785|220257.894|126.532 +638090.899|220262.396|126.559 +638085.973|220266.937|126.681 +638081.084|220271.445|126.681 +638076.149|220275.993|126.776 +638071.266|220280.495|126.882 +638066.320|220285.055|126.821 +638061.427|220289.566|126.885 +638056.526|220294.080|126.879 +638051.628|220298.597|126.901 +638046.797|220303.053|127.154 +638041.878|220307.585|126.968 +638036.989|220312.090|126.623 +638032.017|220316.669|126.465 +638027.183|220321.125|126.248 +638022.251|220325.666|126.059 +638017.423|220330.116|125.953 +638012.492|220334.661|125.806 +638007.648|220339.126|125.587 +638002.753|220343.634|125.377 +637997.880|220348.127|125.425 +637993.027|220352.598|125.185 +637988.163|220357.079|124.877 +637983.274|220361.587|124.819 +637978.409|220366.068|124.566 +637973.587|220370.512|124.285 +637968.744|220374.974|124.282 +637963.888|220379.448|124.206 +637959.066|220383.892|124.011 +637954.205|220388.373|123.901 +637949.389|220392.811|123.816 +637944.546|220397.273|123.493 +637939.702|220401.735|123.194 +637934.874|220406.185|123.060 +637930.052|220410.626|122.597 +637910.713|220428.439|121.000 +637901.044|220437.339|119.820 +637886.542|220450.695|118.068 +637876.871|220459.599|116.812 +637857.397|220477.515|112.606 +637852.682|220481.858|112.316 +637838.304|220495.096|110.326 +637833.534|220499.488|109.768 +637828.810|220503.840|109.561 +637824.241|220508.056|110.106 +637782.788|220546.275|112.103 +637769.304|220558.717|113.989 +637760.342|220566.986|114.959 +637755.804|220571.171|115.257 +637751.229|220575.386|115.041 +637742.188|220583.720|115.053 +637728.811|220596.058|116.129 +637724.416|220600.109|116.504 +637720.045|220604.144|117.309 +637697.992|220624.478|118.415 +637689.144|220632.634|118.769 +637684.761|220636.676|118.763 +637662.703|220657.000|118.299 +637653.991|220665.028|118.031 +637645.256|220673.075|117.720 +637640.836|220677.147|117.184 +637632.110|220685.185|116.775 +637623.411|220693.195|116.068 +637601.663|220713.220|113.657 +637597.442|220717.113|113.560 +637588.901|220724.979|112.950 +637584.646|220728.896|112.755 +637580.486|220732.734|112.770 +637576.148|220736.723|111.969 +637571.753|220740.768|110.926 +637567.550|220744.639|110.801 +637546.808|220763.741|109.811 +637531.181|220778.152|112.575 +637519.468|220788.948|113.901 +637495.544|220810.973|112.898 +637487.543|220818.337|112.054 +637463.503|220840.444|108.046 +637460.053|220843.629|109.478 +637456.407|220846.991|110.115 +637445.532|220857.016|111.667 +637431.207|220870.220|113.493 +637427.631|220873.515|113.837 +637423.974|220876.883|113.657 +637413.193|220886.810|113.938 +637409.703|220890.026|114.248 +637406.030|220893.406|114.066 +637402.534|220896.628|114.157 +637399.007|220899.874|114.154 +637395.405|220903.190|114.075 +637388.245|220909.777|113.294 +637384.639|220913.093|112.834 +637381.137|220916.318|112.773 +637377.714|220919.470|112.816 +637374.239|220922.667|112.685 +637370.755|220925.874|112.322 +637367.259|220929.092|112.121 +637363.870|220932.210|111.938 +637360.401|220935.399|111.676 +637356.985|220938.544|111.405 +637590.892|220720.706|113.300 +637599.414|220712.845|113.611 +637603.760|220708.840|114.102 +637608.143|220704.802|114.782 +637616.781|220696.834|115.343 +637621.140|220692.817|115.705 +637629.973|220684.676|116.851 +637669.570|220648.151|118.494 +637673.992|220644.073|118.656 +637678.418|220639.989|118.589 +637682.865|220635.886|118.653 +637691.756|220627.681|118.540 +637705.137|220615.337|118.314 +637713.946|220607.198|117.345 +637718.353|220603.132|117.031 +637745.230|220578.315|114.770 +637758.980|220565.630|114.992 +637763.512|220561.448|114.672 +637768.017|220557.284|113.913 +637772.559|220553.090|113.371 +637790.624|220536.393|110.716 +637823.140|220506.370|109.558 +637827.850|220502.024|109.670 +637832.556|220497.680|109.792 +637842.239|220488.759|111.658 +637851.776|220479.959|112.258 +637856.611|220475.503|113.096 +637866.376|220466.505|115.224 +637876.075|220457.566|117.001 +637885.786|220448.611|118.272 +637905.162|220430.743|120.482 +637910.045|220426.244|121.320 +637914.879|220421.785|121.820 +637919.738|220417.301|122.131 +637924.517|220412.891|122.222 +637934.246|220403.918|123.109 +637943.942|220394.972|123.816 +637948.804|220390.488|123.895 +637953.595|220386.062|123.837 +637958.512|220381.527|124.011 +637963.324|220377.086|124.185 +637968.226|220372.563|124.285 +637973.032|220368.128|124.444 +637977.933|220363.605|124.606 +637982.829|220359.085|124.755 +637987.684|220354.604|124.996 +637992.594|220350.078|125.310 +637997.462|220345.582|125.252 +638002.348|220341.074|125.404 +638007.286|220336.517|125.602 +638012.172|220332.009|125.791 +638017.094|220327.465|125.916 +638022.023|220322.920|126.096 +638026.909|220318.412|126.364 +638031.868|220313.834|126.443 +638036.745|220309.335|126.666 +638041.731|220304.736|127.093 +638046.611|220300.228|126.885 +638051.552|220295.668|126.834 +638056.499|220291.102|126.849 +638061.440|220286.539|126.864 +638066.374|220281.985|126.803 +638071.312|220277.428|126.788 +638076.290|220272.832|126.715 +638081.169|220268.327|126.623 +638086.147|220263.734|126.562 +638091.124|220259.140|126.523 +638096.047|220254.593|126.462 +638101.024|220249.999|126.450 +638106.002|220245.406|126.501 +638110.976|220240.816|126.526 +638115.950|220236.223|126.596 +638120.925|220231.632|126.660 +638125.945|220226.999|126.718 +638130.910|220222.418|126.700 +638135.872|220217.834|126.690 +638140.877|220213.213|126.578 +638145.839|220208.629|126.605 +638150.890|220203.962|126.559 +638155.846|220199.384|126.495 +638160.844|220194.767|126.367 +638165.840|220190.149|126.245 +638170.793|220185.574|126.166 +638175.837|220180.913|126.081 +638180.830|220176.299|125.941 +638185.823|220171.684|125.806 +638190.864|220167.027|125.688 +638195.854|220162.418|125.508 +638200.889|220157.764|125.288 +638205.869|220153.161|124.923 +638210.896|220148.513|124.505 +638215.876|220143.911|124.139 +638220.911|220139.259|123.908 +638225.950|220134.602|123.822 +638230.985|220129.951|123.652 +638236.020|220125.296|123.496 +638240.992|220120.697|122.877 +638246.015|220116.055|122.329 +638251.053|220111.401|122.210 +638256.082|220106.752|121.853 +638261.115|220102.098|121.625 +638266.159|220097.441|121.753 +638271.200|220092.783|121.935 +638276.288|220088.086|121.966 +638281.332|220083.429|122.213 +638286.376|220078.772|122.658 +638291.424|220074.114|123.231 +638296.456|220069.463|123.264 +638301.495|220064.812|123.511 +638306.579|220060.118|123.676 +638311.617|220055.467|124.042 +638316.655|220050.815|124.602 +638321.688|220046.167|124.706 +638326.720|220041.519|124.892 +638331.798|220036.828|124.889 +638336.830|220032.180|124.755 +638341.859|220027.535|124.630 +638346.937|220022.841|124.609 +638351.966|220018.193|124.453 +638356.999|220013.544|124.377 +638362.077|220008.853|124.206 +638367.109|220004.202|124.014 +638372.141|219999.551|123.783 +638377.222|219994.857|123.539 +638382.258|219990.206|123.383 +638387.293|219985.551|123.216 +638392.328|219980.900|123.014 +638397.406|219976.206|122.774 +638402.399|219971.592|122.335 +638407.486|219966.888|121.990 +638412.527|219962.228|121.664 +638417.569|219957.568|121.311 +638422.613|219952.907|121.064 +638427.652|219948.250|120.972 +638432.699|219943.586|120.649 +638437.740|219938.929|120.610 +638442.788|219934.266|120.393 +638447.835|219929.599|120.158 +638452.886|219924.933|119.869 +638457.891|219920.306|119.546 +638462.941|219915.639|119.454 +638467.992|219910.970|119.253 +638472.994|219906.352|119.272 +638483.064|219897.056|120.082 +638488.054|219892.450|120.475 +638493.095|219887.793|120.692 +638498.100|219883.169|120.664 +638503.105|219878.542|120.585 +638508.162|219873.872|120.515 +638513.182|219869.230|120.162 +638518.199|219864.594|119.933 +638523.222|219859.955|119.646 +638528.242|219855.316|119.424 +638533.265|219850.674|119.177 +638538.291|219846.029|118.918 +638543.308|219841.393|118.839 +638548.350|219836.733|118.400 +638553.327|219832.133|118.217 +638558.353|219827.491|118.147 +638563.376|219822.849|118.074 +638568.354|219818.249|118.046 +638573.328|219813.656|118.119 +638578.296|219809.069|118.260 +638583.298|219804.451|118.680 +638588.284|219799.843|118.574 +638593.283|219795.225|118.339 +638608.264|219781.375|117.239 +638613.248|219776.772|117.348 +638618.228|219772.176|117.549 +638623.218|219767.567|117.616 +638628.168|219762.995|117.583 +638633.112|219758.426|117.647 +638638.092|219753.827|117.900 +638652.927|219740.126|118.269 +638672.806|219721.759|117.872 +638677.823|219717.120|117.284 +638682.864|219712.456|116.455 +638687.793|219707.902|116.388 +638692.737|219703.340|116.763 +638702.640|219694.189|116.803 +638707.638|219689.569|116.126 +638722.497|219675.834|115.672 +638727.450|219671.259|115.583 +638732.352|219666.733|115.571 +638737.359|219662.106|115.474 +638742.328|219657.510|114.828 +638747.400|219652.813|113.246 +638752.438|219648.149|112.048 +638757.458|219643.504|111.060 +638762.484|219638.859|110.539 +638767.391|219634.324|110.228 +638772.207|219629.883|111.234 +638777.038|219625.423|112.081 +638781.943|219620.894|111.874 +638806.360|219598.336|112.084 +638811.188|219593.877|112.246 +638816.044|219589.396|112.615 +638820.966|219584.842|112.042 +638825.794|219580.383|112.261 +638830.647|219575.899|112.316 +638835.493|219571.425|112.438 +638840.300|219566.984|112.514 +638845.161|219562.494|112.560 +638849.980|219558.041|112.569 +638854.860|219553.533|112.529 +638859.661|219549.098|112.377 +638864.507|219544.621|112.261 +638869.308|219540.183|112.130 +638874.136|219535.721|111.853 +638879.025|219531.200|111.508 +638883.840|219526.747|111.002 +638888.717|219522.242|110.475 +638893.536|219517.789|110.027 +638898.361|219513.336|109.920 +638903.259|219508.807|108.981 +638907.929|219504.500|109.305 +638912.665|219500.129|109.530 +638917.408|219495.752|109.731 +638922.044|219491.479|110.326 +638926.723|219487.163|110.655 +638931.347|219482.896|111.030 +638935.998|219478.607|111.566 +638940.607|219474.355|112.066 +638945.246|219470.079|112.401 +638949.961|219465.726|112.566 +638954.579|219461.465|112.755 +638959.199|219457.201|112.923 +638955.648|219457.932|112.889 +638950.988|219462.227|112.630 +638946.367|219466.485|112.447 +638941.661|219470.819|112.188 +638937.077|219475.041|111.801 +638932.453|219479.302|111.383 +638927.799|219483.588|110.841 +638923.163|219487.855|110.499 +638918.496|219492.155|110.079 +638913.830|219496.450|109.649 +638909.182|219500.736|109.469 +638904.421|219505.122|109.378 +638899.650|219509.520|109.719 +638894.899|219513.900|109.951 +638890.098|219518.329|110.231 +638885.261|219522.791|110.774 +638880.433|219527.244|111.286 +638875.620|219531.682|111.728 +638870.822|219536.108|112.103 +638866.007|219540.549|112.255 +638861.197|219544.980|112.389 +638856.384|219549.418|112.578 +638851.593|219553.835|112.648 +638846.752|219558.297|112.712 +638841.982|219562.692|112.663 +638837.166|219567.130|112.584 +638832.311|219571.605|112.481 +638827.550|219575.994|112.410 +638822.652|219580.508|112.289 +638817.851|219584.931|112.188 +638812.852|219589.542|112.913 +638808.140|219593.880|112.130 +638803.327|219598.311|111.392 +638778.858|219620.867|111.767 +638773.893|219625.445|112.029 +638769.050|219629.901|111.225 +638764.212|219634.351|110.353 +638759.302|219638.883|110.649 +638754.258|219643.535|111.298 +638749.280|219648.131|112.301 +638744.172|219652.849|113.642 +638739.115|219657.522|115.047 +638734.061|219662.182|115.510 +638729.139|219666.721|115.660 +638724.140|219671.329|115.644 +638704.209|219689.703|116.144 +638689.149|219703.586|116.736 +638684.135|219708.204|116.559 +638679.106|219712.846|117.150 +638674.034|219717.522|117.162 +638668.996|219722.170|117.918 +638638.711|219750.087|118.101 +638633.669|219754.729|117.912 +638628.637|219759.362|117.610 +638623.544|219764.053|117.501 +638618.490|219768.710|117.568 +638613.458|219773.343|117.336 +638608.368|219778.034|117.290 +638603.198|219782.804|118.446 +638598.041|219787.562|119.467 +638593.009|219792.192|118.613 +638587.928|219796.874|118.558 +638582.838|219801.562|118.653 +638577.772|219806.228|118.360 +638572.700|219810.898|118.180 +638567.628|219815.570|118.058 +638562.498|219820.295|118.092 +638557.420|219824.973|118.110 +638552.297|219829.692|118.119 +638547.161|219834.428|118.424 +638542.068|219839.125|118.860 +638536.947|219843.840|118.909 +638531.817|219848.571|119.195 +638526.736|219853.250|119.457 +638521.612|219857.974|119.704 +638516.443|219862.738|119.976 +638511.368|219867.414|120.232 +638506.253|219872.129|120.442 +638501.090|219876.887|120.643 +638495.982|219881.593|120.716 +638490.876|219886.296|120.704 +638485.780|219890.990|120.491 +638480.690|219895.675|120.055 +638475.603|219900.360|119.585 +638465.358|219909.793|119.317 +638460.253|219914.499|119.497 +638455.148|219919.202|119.674 +638449.993|219923.954|120.043 +638444.937|219928.615|120.280 +638439.786|219933.360|120.576 +638434.689|219938.057|120.573 +638429.590|219942.754|120.786 +638424.494|219947.454|121.042 +638419.398|219952.151|121.222 +638414.301|219956.848|121.518 +638409.205|219961.542|121.756 +638404.063|219966.282|122.082 +638399.015|219970.939|122.652 +638393.877|219975.676|122.929 +638388.792|219980.358|123.100 +638383.751|219985.006|123.304 +638378.661|219989.694|123.472 +638373.574|219994.382|123.706 +638368.487|219999.072|124.023 +638363.400|220003.757|124.185 +638358.315|220008.445|124.359 +638353.277|220013.087|124.426 +638348.193|220017.772|124.581 +638343.155|220022.411|124.575 +638338.119|220027.053|124.715 +638333.035|220031.738|124.846 +638327.951|220036.423|124.859 +638322.959|220041.019|124.709 +638317.875|220045.704|124.612 +638312.830|220050.346|124.215 +638307.834|220054.945|123.840 +638302.744|220059.633|123.606 +638297.749|220064.233|123.295 +638292.756|220068.832|123.307 +638287.705|220073.483|122.829 +638282.652|220078.132|122.338 +638277.653|220082.737|122.070 +638272.651|220087.343|121.902 +638267.649|220091.948|121.695 +638262.651|220096.554|121.658 +638257.652|220101.159|121.609 +638252.708|220105.713|121.841 +638247.719|220110.309|122.216 +638242.720|220114.909|122.259 +638237.782|220119.459|122.765 +638232.808|220124.044|123.475 +638227.861|220128.597|123.712 +638222.914|220133.154|123.853 +638217.961|220137.714|123.904 +638213.017|220142.268|124.139 +638208.027|220146.861|124.484 +638203.135|220151.366|124.901 +638198.195|220155.917|125.246 +638193.251|220160.470|125.535 +638188.298|220165.033|125.605 +638183.345|220169.593|125.730 +638178.486|220174.065|125.861 +638173.533|220178.624|125.989 +638168.577|220183.187|126.090 +638163.667|220187.707|126.184 +638158.756|220192.231|126.261 +638153.849|220196.748|126.437 +638148.933|220201.274|126.437 +638144.016|220205.800|126.483 +638139.100|220210.327|126.529 +638134.180|220214.853|126.590 +638129.310|220219.340|126.654 +638124.384|220223.872|126.620 +638119.501|220228.365|126.559 +638114.573|220232.903|126.495 +638109.732|220237.356|126.413 +638104.801|220241.898|126.392 +638099.915|220246.394|126.370 +638095.032|220250.890|126.373 +638090.146|220255.388|126.389 +638085.263|220259.884|126.468 +638080.374|220264.383|126.511 +638075.540|220268.833|126.639 +638070.651|220273.335|126.700 +638065.801|220277.800|126.657 +638060.918|220282.296|126.831 +638056.060|220286.765|126.742 +638051.162|220291.276|126.751 +638046.315|220295.735|126.873 +638041.460|220300.206|126.870 +638036.586|220304.693|126.675 +638031.716|220309.173|126.565 +638026.808|220313.688|126.075 +638022.002|220318.113|126.178 +638017.125|220322.600|126.075 +638012.284|220327.056|125.855 +638007.399|220331.552|125.703 +638002.555|220336.008|125.514 +637997.709|220340.467|125.328 +637992.866|220344.927|125.188 +637988.025|220349.383|125.108 +637983.240|220353.784|125.142 +637978.375|220358.262|124.862 +637973.563|220362.690|124.657 +637968.707|220367.159|124.545 +637963.894|220371.588|124.365 +637959.112|220375.986|124.081 +637954.305|220380.411|124.042 +637949.483|220384.849|123.862 +637944.674|220389.275|123.850 +637939.958|220393.615|123.816 +637935.060|220398.120|123.493 +637920.677|220411.355|122.393 +637915.882|220415.768|122.234 +637911.060|220420.203|121.875 +637906.266|220424.614|121.356 +637896.631|220433.471|120.064 +637891.815|220437.900|119.872 +637886.993|220442.335|119.278 +637872.482|220455.676|116.958 +637867.675|220460.092|116.245 +637862.847|220464.533|115.382 +637848.338|220477.862|112.548 +637843.544|220482.276|112.075 +637829.191|220495.468|110.073 +637824.448|220499.829|109.399 +637819.803|220504.106|109.451 +637810.150|220512.972|107.128 +637787.430|220533.906|110.542 +637778.408|220542.221|111.685 +637764.966|220554.608|113.892 +637760.361|220558.848|114.078 +637733.163|220583.884|114.861 +637715.418|220600.231|116.876 +637710.989|220604.309|117.098 +637697.752|220616.498|118.125 +637680.125|220632.722|118.708 +637675.660|220636.831|118.570 +637662.440|220648.999|118.412 +637658.018|220653.068|118.318 +637631.640|220677.330|116.854 +637622.874|220685.389|116.059 +637618.488|220689.424|115.541 +637614.072|220693.484|115.160 +637609.716|220697.489|114.852 +637588.087|220717.381|113.066 +637583.857|220721.273|112.974 +637575.267|220729.170|111.996 +637570.891|220733.191|111.286 +637566.748|220737.004|111.191 +637549.600|220752.768|108.600 +637482.200|220814.880|111.868 +637474.196|220822.244|110.880 +637470.194|220825.926|110.192 +637466.210|220829.593|109.811 +637462.144|220833.333|108.893 +637458.236|220836.930|108.430 +637450.945|220843.654|109.710 +637447.279|220847.034|110.051 +637433.066|220860.146|112.919 +637425.748|220866.888|113.127 +637397.127|220893.254|113.627 +637393.554|220896.543|113.450 +637386.428|220903.102|113.005 +637382.850|220906.397|112.630 +637379.366|220909.603|112.438 +637375.870|220912.822|112.404 +637372.423|220915.998|112.362 +637368.981|220919.165|112.154 +637358.734|220928.601|111.886 +637355.256|220931.799|111.389 +637351.836|220934.947|111.124 +637584.408|220718.841|113.014 +637588.654|220714.912|112.971 +637592.958|220710.937|113.468 +637597.192|220707.024|113.642 +637601.508|220703.034|113.986 +637614.547|220690.985|115.352 +637618.887|220686.974|115.644 +637623.313|220682.886|116.400 +637632.000|220674.855|116.879 +637636.368|220670.819|117.132 +637645.140|220662.712|117.644 +637680.363|220630.144|118.522 +637689.248|220621.926|118.403 +637693.682|220617.824|118.183 +637702.641|220609.539|118.305 +637711.443|220601.389|117.034 +637720.304|220593.190|116.428 +637738.150|220576.673|114.346 +637742.673|220572.488|114.233 +637747.236|220568.269|114.376 +637760.851|220555.672|113.538 +637778.969|220538.911|111.469 +637783.486|220534.729|110.493 +637797.235|220522.019|109.256 +637806.288|220513.643|107.503 +637811.159|220509.150|108.652 +637815.999|220504.688|109.622 +637820.608|220500.427|109.018 +637825.430|220495.977|109.579 +637830.279|220491.505|110.719 +637835.131|220487.031|111.554 +637859.311|220464.719|115.010 +637864.167|220460.242|115.718 +637869.059|220455.731|116.760 +637888.520|220437.775|119.695 +637893.324|220433.340|119.829 +637907.899|220419.889|121.780 +637912.718|220415.442|122.155 +637917.595|220410.940|122.646 +637922.411|220406.493|123.085 +637932.061|220397.584|123.313 +637936.959|220393.061|123.706 +637941.772|220388.617|123.783 +637946.630|220384.130|123.859 +637951.437|220379.689|123.950 +637956.341|220375.160|124.048 +637961.154|220370.716|124.243 +637966.065|220366.180|124.465 +637970.868|220361.742|124.615 +637975.815|220357.177|124.770 +637980.674|220352.690|125.035 +637985.541|220348.194|124.932 +637990.385|220343.720|125.115 +637995.322|220339.160|125.270 +638000.205|220334.652|125.413 +638005.091|220330.141|125.599 +638010.026|220325.581|125.831 +638014.948|220321.036|125.953 +638019.810|220316.547|125.959 +638024.745|220311.990|126.276 +638029.670|220307.442|126.529 +638034.575|220302.910|126.547 +638039.488|220298.374|126.706 +638049.327|220289.285|126.693 +638054.222|220284.765|126.684 +638059.163|220280.199|126.715 +638064.037|220275.694|126.501 +638068.980|220271.128|126.614 +638073.909|220266.575|126.532 +638078.835|220262.027|126.419 +638083.760|220257.473|126.355 +638088.686|220252.923|126.303 +638093.660|220248.329|126.264 +638098.589|220243.775|126.309 +638103.514|220239.225|126.340 +638108.486|220234.634|126.331 +638113.460|220230.041|126.392 +638118.431|220225.448|126.462 +638123.406|220220.854|126.572 +638128.368|220216.270|126.544 +638133.327|220211.689|126.486 +638138.286|220207.111|126.434 +638143.291|220202.490|126.343 +638148.296|220197.872|126.294 +638153.255|220193.294|126.309 +638158.250|220188.683|126.133 +638163.249|220184.068|126.056 +638168.248|220179.453|125.956 +638173.244|220174.842|125.849 +638178.191|220170.273|125.733 +638183.235|220165.618|125.639 +638188.228|220161.007|125.520 +638193.220|220156.398|125.401 +638198.204|220151.796|125.118 +638203.230|220147.154|124.682 +638208.210|220142.554|124.289 +638213.243|220137.906|124.008 +638218.177|220133.352|123.630 +638228.257|220124.047|123.511 +638233.234|220119.447|123.030 +638238.255|220114.811|122.374 +638243.290|220110.160|122.271 +638248.319|220105.515|121.899 +638253.354|220100.867|121.628 +638258.390|220096.218|121.512 +638263.431|220091.567|121.530 +638268.469|220086.913|121.582 +638273.514|220082.262|121.786 +638278.558|220077.607|122.149 +638283.652|220072.910|122.475 +638288.693|220068.259|122.798 +638293.734|220063.608|123.298 +638298.818|220058.917|123.395 +638303.857|220054.269|123.630 +638308.941|220049.578|123.874 +638314.025|220044.887|124.398 +638319.063|220040.242|124.791 +638324.141|220035.554|124.703 +638329.173|220030.912|124.953 +638334.251|220026.224|124.804 +638339.281|220021.579|124.743 +638344.359|220016.894|124.749 +638349.391|220012.249|124.615 +638354.469|220007.561|124.679 +638359.547|220002.873|124.410 +638364.579|219998.225|124.249 +638369.611|219993.580|124.014 +638374.692|219988.886|123.712 +638379.728|219984.238|123.490 +638384.809|219979.547|123.295 +638389.838|219974.902|123.115 +638394.876|219970.250|122.856 +638399.963|219965.553|122.524 +638405.002|219960.899|122.158 +638410.043|219956.245|121.832 +638415.133|219951.542|121.524 +638420.224|219946.842|121.286 +638425.219|219942.230|121.109 +638430.309|219937.530|120.902 +638435.403|219932.830|120.750 +638440.398|219928.215|120.622 +638445.498|219923.509|120.335 +638450.548|219918.846|120.049 +638455.602|219914.176|119.674 +638460.652|219909.516|119.543 +638465.749|219904.810|119.439 +638470.750|219900.192|119.436 +638475.834|219895.501|119.805 +638480.867|219890.862|120.347 +638485.856|219886.257|120.640 +638490.901|219881.605|120.866 +638495.951|219876.942|120.829 +638500.959|219872.318|120.735 +638506.022|219867.645|120.518 +638511.036|219863.012|120.311 +638516.059|219858.376|120.012 +638521.128|219853.698|119.771 +638526.105|219849.101|119.479 +638531.131|219844.459|119.217 +638536.161|219839.817|118.936 +638541.178|219835.184|118.903 +638546.216|219830.533|118.543 +638551.205|219825.924|118.193 +638556.180|219821.334|118.214 +638561.206|219816.695|118.183 +638566.180|219812.105|118.226 +638571.158|219807.511|118.253 +638576.123|219802.930|118.464 +638581.082|219798.358|118.869 +638586.062|219793.762|118.903 +638591.049|219789.156|118.814 +638595.999|219784.590|119.369 +638600.949|219780.021|119.201 +638605.945|219775.407|118.388 +638610.998|219770.734|117.485 +638615.948|219766.165|117.409 +638620.880|219761.614|117.641 +638625.824|219757.055|117.732 +638630.749|219752.510|118.061 +638645.563|219738.837|118.101 +638665.222|219720.692|118.034 +638670.148|219716.141|117.357 +638675.119|219711.554|117.354 +638680.020|219707.028|117.065 +638684.891|219702.532|117.138 +638699.649|219688.904|116.416 +638719.221|219670.839|115.852 +638724.128|219666.309|115.754 +638728.990|219661.820|115.647 +638733.918|219657.269|115.388 +638738.880|219652.685|114.373 +638743.903|219648.037|112.804 +638748.881|219643.431|111.728 +638753.828|219638.862|111.005 +638758.729|219634.336|110.737 +638763.554|219629.886|111.179 +638768.330|219625.484|112.093 +638773.183|219621.004|111.892 +638807.073|219589.725|112.264 +638811.901|219585.269|112.066 +638816.659|219580.880|112.453 +638821.503|219576.411|112.572 +638826.303|219571.983|112.648 +638831.156|219567.505|112.731 +638835.904|219563.122|112.868 +638840.720|219558.678|112.892 +638845.533|219554.234|112.965 +638850.312|219549.824|112.929 +638855.159|219545.352|112.810 +638859.972|219540.905|112.575 +638864.833|219536.419|112.374 +638869.606|219532.011|112.139 +638874.480|219527.509|111.895 +638879.345|219523.017|111.405 +638884.173|219518.551|110.853 +638889.046|219514.049|110.368 +638893.847|219509.611|110.054 +638898.727|219505.100|109.917 +638903.525|219500.669|109.701 +638908.279|219496.279|109.789 +638913.016|219491.906|110.024 +638917.737|219487.544|110.359 +638922.462|219483.185|110.713 +638927.159|219478.848|111.249 +638931.825|219474.544|111.685 +638936.553|219470.179|112.066 +638941.192|219465.894|112.368 +638945.944|219461.508|112.618 +638950.641|219457.173|112.932 +638946.059|219458.493|112.758 +638941.283|219462.885|112.289 +638936.519|219467.272|112.093 +638931.792|219471.618|111.661 +638927.055|219475.974|111.307 +638922.291|219480.357|110.847 +638917.530|219484.734|110.350 +638912.787|219489.098|110.100 +638907.947|219493.551|109.838 +638903.137|219497.977|109.728 +638898.306|219502.424|109.801 +638893.411|219506.932|109.984 +638888.556|219511.401|110.259 +638883.630|219515.939|110.722 +638878.753|219520.432|111.216 +638873.785|219525.010|111.685 +638868.942|219529.472|112.014 +638864.013|219534.008|112.249 +638859.130|219538.503|112.545 +638854.260|219542.990|112.791 +638849.404|219547.462|112.950 +638844.521|219551.957|112.962 +638839.696|219556.395|112.919 +638834.874|219560.833|112.892 +638829.967|219565.350|112.795 +638825.166|219569.770|112.642 +638820.253|219574.290|112.612 +638815.458|219578.704|112.471 +638810.597|219583.175|112.063 +638805.717|219587.668|112.249 +638801.054|219591.947|110.633 +638766.681|219623.598|112.048 +638761.841|219628.051|111.645 +638757.065|219632.440|110.697 +638752.112|219637.003|110.932 +638747.113|219641.605|111.612 +638742.099|219646.229|112.517 +638737.079|219650.862|114.002 +638732.047|219655.504|115.172 +638727.100|219660.058|115.538 +638722.177|219664.590|115.702 +638717.267|219669.114|115.788 +638697.525|219687.289|116.364 +638692.538|219691.885|116.897 +638682.681|219700.959|117.272 +638677.704|219705.543|117.257 +638667.847|219714.617|117.269 +638662.872|219719.201|117.866 +638628.043|219751.266|118.232 +638623.065|219755.854|117.882 +638618.137|219760.389|117.467 +638613.089|219765.040|117.470 +638608.087|219769.649|117.485 +638603.061|219774.288|118.631 +638597.956|219778.997|119.561 +638592.942|219783.615|119.171 +638587.958|219788.205|119.040 +638582.920|219792.847|119.061 +638577.897|219797.474|118.820 +638572.883|219802.092|118.513 +638567.857|219806.722|118.369 +638562.882|219811.303|118.177 +638557.801|219815.985|118.257 +638552.769|219820.624|118.305 +638547.737|219825.257|118.366 +638542.638|219829.960|118.851 +638537.611|219834.593|118.921 +638532.533|219839.272|119.095 +638527.452|219843.956|119.339 +638522.417|219848.595|119.656 +638517.339|219853.277|119.945 +638512.212|219858.005|120.299 +638507.186|219862.638|120.610 +638502.117|219867.307|120.762 +638497.006|219872.019|120.917 +638491.943|219876.683|121.003 +638486.893|219881.337|120.820 +638481.796|219886.031|120.594 +638476.755|219890.670|120.137 +638471.668|219895.355|119.628 +638466.568|219900.052|119.503 +638461.512|219904.712|119.628 +638456.361|219909.461|119.710 +638451.301|219914.124|119.966 +638446.193|219918.834|120.375 +638441.090|219923.537|120.610 +638435.936|219928.289|120.963 +638430.888|219932.940|120.975 +638425.743|219937.682|121.167 +638420.647|219942.379|121.292 +638415.548|219947.080|121.600 +638410.403|219951.819|121.856 +638405.307|219956.519|122.201 +638400.213|219961.216|122.551 +638395.120|219965.910|122.905 +638389.981|219970.647|123.152 +638384.897|219975.335|123.335 +638379.807|219980.022|123.490 +638374.720|219984.713|123.731 +638369.630|219989.404|124.042 +638364.543|219994.095|124.285 +638359.410|219998.826|124.478 +638354.326|220003.513|124.602 +638349.239|220008.198|124.666 +638344.154|220012.883|124.779 +638339.070|220017.571|124.801 +638333.983|220022.256|124.883 +638328.853|220026.983|124.977 +638323.766|220031.671|124.737 +638318.728|220036.310|124.758 +638313.592|220041.040|124.432 +638308.499|220045.731|123.834 +638303.409|220050.419|123.639 +638298.315|220055.107|123.344 +638293.225|220059.798|123.182 +638288.129|220064.489|122.737 +638283.033|220069.183|122.387 +638277.936|220073.877|122.188 +638272.883|220078.531|121.637 +638267.784|220083.228|121.350 +638262.690|220087.919|121.390 +638257.643|220092.570|121.384 +638252.553|220097.261|121.487 +638247.466|220101.955|121.713 +638242.430|220106.600|122.103 +638237.386|220111.251|122.240 +638232.347|220115.899|122.542 +638227.327|220120.532|123.356 +638212.246|220134.443|123.783 +638207.211|220139.089|124.161 +638202.224|220143.691|124.496 +638197.237|220148.291|124.895 +638192.199|220152.936|125.230 +638187.252|220157.502|125.413 +638182.250|220162.113|125.480 +638177.249|220166.725|125.560 +638172.296|220171.294|125.712 +638167.294|220175.909|125.779 +638162.338|220180.478|125.919 +638157.382|220185.050|126.014 +638152.374|220189.664|126.105 +638147.461|220194.197|126.154 +638142.453|220198.814|126.239 +638137.533|220203.350|126.236 +638132.571|220207.928|126.337 +638127.655|220212.460|126.413 +638122.732|220216.999|126.450 +638117.758|220221.586|126.395 +638112.823|220226.134|126.270 +638107.891|220230.681|126.209 +638102.960|220235.229|126.178 +638098.077|220239.731|126.148 +638093.139|220244.281|126.108 +638088.253|220248.786|126.114 +638083.327|220253.331|126.242 +638078.487|220257.793|126.267 +638073.559|220262.338|126.389 +638068.673|220266.843|126.480 +638063.820|220271.320|126.370 +638058.943|220275.816|126.648 +638054.048|220280.330|126.654 +638049.181|220284.817|126.453 +638044.346|220289.276|126.700 +638039.494|220293.751|126.712 +638034.620|220298.243|126.544 +638029.762|220302.724|126.529 +638024.918|220307.186|126.203 +638020.045|220311.679|126.075 +638015.198|220316.144|125.767 +638010.331|220320.634|125.782 +638005.500|220325.087|125.663 +638000.656|220329.552|125.459 +637995.810|220334.021|125.258 +637990.967|220338.483|125.121 +637986.169|220342.906|124.983 +637981.323|220347.371|124.862 +637976.489|220351.830|124.871 +637971.685|220356.259|124.740 +637966.875|220360.694|124.569 +637962.066|220365.126|124.435 +637957.253|220369.561|124.301 +637952.428|220374.011|124.063 +637947.661|220378.406|123.929 +637942.833|220382.853|123.743 +637938.072|220387.242|123.725 +637933.289|220391.653|123.548 +637928.477|220396.090|123.539 +637923.761|220400.437|123.563 +637918.951|220404.869|123.234 +637914.181|220409.264|122.832 +637899.786|220422.529|121.536 +637894.985|220426.951|121.018 +637890.145|220431.408|120.223 +637885.356|220435.818|119.863 +637875.844|220444.581|118.961 +637846.997|220471.135|114.337 +637842.126|220475.616|112.938 +637822.854|220493.352|109.244 +637818.206|220497.638|109.234 +637813.545|220501.932|109.170 +637808.797|220506.306|108.527 +637803.965|220510.747|107.034 +637799.406|220514.954|107.726 +637790.353|220523.311|109.237 +637785.821|220527.493|109.798 +637758.870|220552.362|113.404 +637749.921|220560.616|114.492 +637740.762|220569.059|114.035 +637718.533|220589.566|116.330 +637714.153|220593.604|116.800 +637709.721|220597.689|116.992 +637683.225|220622.124|118.382 +637678.793|220626.209|118.409 +637669.948|220634.359|118.311 +637665.555|220638.410|118.324 +637656.707|220646.563|118.055 +637652.339|220650.587|117.988 +637647.944|220654.638|117.784 +637639.163|220662.727|117.235 +637634.810|220666.738|117.050 +637617.217|220682.944|115.590 +637612.846|220686.968|115.163 +637608.524|220690.948|114.751 +637604.150|220694.978|114.343 +637599.795|220698.986|113.813 +637595.546|220702.903|113.819 +637591.205|220706.902|113.386 +637586.975|220710.797|113.273 +637582.628|220714.802|112.849 +637569.693|220726.714|111.246 +637565.544|220730.536|111.371 +637548.418|220746.303|109.052 +637540.188|220753.881|109.073 +637528.526|220764.640|111.923 +637524.573|220768.282|112.362 +637504.907|220786.400|114.236 +637476.631|220812.408|111.411 +637472.559|220816.151|110.630 +637468.615|220819.779|110.405 +637464.546|220823.521|109.661 +637452.695|220834.418|108.180 +637449.059|220837.774|109.070 +637445.304|220841.230|109.277 +637434.590|220851.109|111.530 +637431.014|220854.404|112.273 +637427.366|220857.766|112.520 +637420.109|220864.447|112.999 +637416.372|220867.888|112.929 +637412.745|220871.226|113.099 +637409.112|220874.569|113.041 +637405.539|220877.861|113.230 +637401.930|220881.181|113.297 +637398.337|220884.488|113.218 +637394.679|220887.853|112.904 +637391.122|220891.126|113.002 +637376.879|220904.230|112.185 +637373.349|220907.479|112.026 +637369.859|220910.688|112.033 +637352.733|220926.447|111.609 +637349.212|220929.680|110.969 +637597.682|220698.879|113.950 +637601.931|220694.957|113.980 +637610.710|220686.861|114.971 +637615.108|220682.804|115.547 +637632.607|220666.662|116.833 +637641.357|220658.585|117.211 +637645.771|220654.513|117.501 +637654.564|220646.396|117.973 +637667.799|220634.179|118.241 +637672.185|220630.132|118.226 +637676.638|220626.020|118.333 +637703.162|220601.529|117.373 +637712.062|220593.309|116.940 +637720.904|220585.137|115.964 +637729.798|220576.919|115.032 +637738.653|220568.736|113.590 +637747.894|220560.210|114.279 +637752.369|220556.074|113.587 +637761.391|220547.738|112.401 +637770.434|220539.374|111.389 +637774.961|220535.186|110.783 +637797.656|220514.192|107.281 +637807.209|220505.374|108.555 +637811.979|220500.972|109.378 +637816.718|220496.592|109.332 +637826.335|220487.723|110.954 +637831.132|220483.294|111.755 +637835.936|220478.859|112.282 +637840.791|220474.382|113.191 +637850.420|220465.494|114.553 +637874.816|220442.990|119.174 +637894.153|220425.138|120.991 +637898.996|220420.663|121.518 +637908.735|220411.675|122.655 +637918.439|220402.714|123.234 +637928.108|220393.783|123.621 +637932.908|220389.348|123.545 +637937.721|220384.901|123.624 +637942.601|220380.396|123.865 +637947.463|220375.903|123.990 +637952.336|220371.402|124.249 +637957.201|220366.909|124.450 +637962.047|220362.431|124.511 +637966.906|220357.945|124.700 +637971.798|220353.427|124.761 +637976.690|220348.907|124.883 +637981.524|220344.442|124.904 +637986.416|220339.922|125.051 +637991.308|220335.405|125.249 +638001.123|220326.337|125.520 +638006.042|220321.792|125.553 +638010.934|220317.275|125.834 +638015.854|220312.731|125.953 +638020.782|220308.180|126.169 +638025.720|220303.617|126.538 +638030.621|220299.091|126.504 +638035.580|220294.510|126.608 +638040.533|220289.934|126.681 +638045.404|220285.433|126.364 +638050.357|220280.858|126.474 +638055.264|220276.325|126.632 +638060.254|220271.717|126.642 +638065.167|220267.172|126.334 +638070.108|220262.609|126.395 +638075.034|220258.055|126.291 +638079.959|220253.505|126.181 +638084.937|220248.908|126.133 +638089.908|220244.312|126.047 +638094.837|220239.758|126.075 +638099.811|220235.162|126.072 +638104.737|220230.611|126.084 +638109.760|220225.972|126.105 +638114.688|220221.421|126.215 +638119.663|220216.825|126.340 +638124.680|220212.189|126.367 +638129.593|220207.650|126.312 +638134.595|220203.024|126.172 +638139.554|220198.439|126.178 +638144.556|220193.816|126.069 +638149.558|220189.189|125.992 +638154.511|220184.608|125.950 +638159.509|220179.987|125.852 +638164.508|220175.366|125.767 +638169.504|220170.748|125.660 +638174.499|220166.128|125.557 +638179.492|220161.510|125.441 +638184.488|220156.892|125.377 +638189.526|220152.235|125.224 +638194.461|220147.669|124.932 +638199.487|220143.018|124.520 +638204.516|220138.366|124.185 +638209.497|220133.758|123.807 +638219.570|220124.443|123.569 +638224.557|220119.831|123.386 +638229.574|220115.189|122.637 +638234.603|220110.538|122.320 +638239.635|220105.884|122.067 +638244.664|220101.232|121.713 +638249.700|220096.575|121.509 +638259.770|220087.263|121.280 +638264.760|220082.649|121.210 +638269.850|220077.946|121.359 +638274.895|220073.285|121.801 +638279.942|220068.622|122.298 +638284.980|220063.964|122.481 +638290.068|220059.264|122.829 +638295.112|220054.607|123.368 +638300.144|220049.953|123.472 +638305.228|220045.256|123.694 +638310.264|220040.605|123.920 +638315.351|220035.908|124.709 +638320.380|220031.256|124.791 +638325.412|220026.605|124.819 +638330.490|220021.911|125.026 +638335.565|220017.217|124.913 +638340.597|220012.569|124.919 +638345.672|220007.875|124.788 +638350.750|220003.181|124.776 +638355.828|219998.487|124.663 +638360.906|219993.790|124.490 +638365.984|219989.093|124.316 +638371.017|219984.439|123.950 +638376.098|219979.739|123.722 +638381.179|219975.042|123.478 +638386.253|219970.348|123.365 +638391.338|219965.648|123.161 +638396.422|219960.945|122.822 +638401.460|219956.284|122.457 +638406.547|219951.578|122.192 +638411.634|219946.872|121.887 +638416.676|219942.209|121.603 +638421.766|219937.506|121.433 +638426.856|219932.800|121.277 +638431.897|219928.133|121.070 +638436.991|219923.427|120.933 +638442.087|219918.712|120.604 +638447.137|219914.042|120.280 +638452.237|219909.324|119.927 +638457.336|219904.609|119.723 +638462.384|219899.942|119.643 +638467.480|219895.230|119.616 +638472.515|219890.576|119.960 +638477.550|219885.927|120.393 +638482.634|219881.227|120.735 +638487.673|219876.573|121.018 +638492.720|219871.907|121.045 +638497.823|219867.188|120.933 +638502.879|219862.513|120.817 +638507.948|219857.825|120.491 +638513.060|219853.097|120.210 +638518.129|219848.412|119.927 +638523.155|219843.767|119.561 +638528.275|219839.034|119.308 +638533.298|219834.392|119.089 +638538.370|219829.704|118.933 +638543.448|219825.010|118.628 +638548.474|219820.365|118.497 +638553.504|219815.717|118.293 +638558.573|219811.032|118.299 +638563.547|219806.435|118.327 +638568.604|219801.769|118.616 +638573.621|219797.133|118.759 +638578.577|219792.555|119.131 +638583.588|219787.928|119.387 +638588.580|219783.313|119.211 +638593.600|219778.674|119.369 +638598.565|219774.090|119.689 +638603.607|219769.426|118.863 +638613.629|219760.154|117.562 +638618.618|219755.546|117.629 +638623.568|219750.974|118.247 +638638.427|219737.246|118.177 +638643.435|219732.619|118.125 +638658.279|219718.900|117.912 +638663.217|219714.334|117.626 +638678.091|219700.590|117.409 +638687.912|219691.513|117.202 +638692.880|219686.920|116.772 +638712.558|219668.729|115.919 +638717.459|219664.200|115.833 +638722.366|219659.665|115.724 +638727.240|219655.160|115.495 +638732.187|219650.582|114.559 +638737.189|219645.949|113.145 +638742.212|219641.297|112.048 +638747.101|219636.777|111.374 +638751.996|219632.254|111.127 +638756.803|219627.813|111.709 +638761.582|219623.403|112.118 +638800.282|219587.634|111.563 +638804.982|219583.297|112.368 +638814.529|219574.479|112.840 +638819.305|219570.069|113.099 +638824.112|219565.628|113.105 +638828.867|219561.232|113.176 +638833.618|219556.843|113.270 +638838.383|219552.442|113.307 +638843.153|219548.031|113.304 +638847.935|219543.612|113.249 +638852.720|219539.189|113.172 +638857.487|219534.782|112.907 +638862.264|219530.365|112.599 +638867.043|219525.949|112.310 +638871.874|219521.480|112.014 +638876.635|219517.079|111.530 +638881.448|219512.632|111.091 +638886.212|219508.231|110.655 +638890.964|219503.842|110.335 +638895.737|219499.434|110.234 +638900.477|219495.054|109.716 +638905.134|219490.759|110.134 +638909.822|219486.431|110.329 +638914.476|219482.137|110.466 +638919.072|219477.897|110.978 +638923.742|219473.587|111.365 +638928.314|219469.372|111.752 +638932.987|219465.059|112.142 +638937.580|219460.819|112.410 +638942.161|219456.594|112.801 +638935.827|219460.075|112.337 +638931.100|219464.428|111.908 +638926.342|219468.811|111.676 +638921.611|219473.166|111.301 +638916.838|219477.565|110.896 +638912.077|219481.951|110.432 +638907.264|219486.386|110.310 +638902.415|219490.854|110.137 +638897.599|219495.292|110.094 +638892.716|219499.794|110.182 +638887.800|219504.326|110.530 +638882.893|219508.855|110.862 +638877.924|219513.437|111.277 +638872.999|219517.981|111.789 +638868.046|219522.547|112.170 +638863.108|219527.101|112.471 +638858.118|219531.706|112.843 +638853.242|219536.202|113.115 +638848.237|219540.817|113.273 +638843.345|219545.325|113.349 +638838.364|219549.915|113.368 +638833.494|219554.408|113.349 +638828.531|219558.980|113.276 +638823.621|219563.506|113.221 +638818.659|219568.078|113.185 +638813.782|219572.571|112.895 +638803.922|219581.657|112.459 +638799.036|219586.156|111.898 +638759.290|219622.793|112.060 +638754.343|219627.353|111.789 +638749.426|219631.879|111.252 +638744.419|219636.500|111.581 +638739.383|219641.142|112.188 +638734.247|219645.888|113.380 +638729.148|219650.597|114.730 +638724.110|219655.248|115.538 +638719.087|219659.878|115.733 +638714.076|219664.499|115.843 +638709.062|219669.123|116.022 +638689.061|219687.566|116.946 +638664.024|219710.646|117.421 +638659.035|219715.245|117.613 +638653.987|219719.899|117.973 +638638.988|219733.725|118.037 +638634.017|219738.309|118.174 +638624.001|219747.542|118.226 +638619.082|219752.065|117.690 +638614.095|219756.658|117.485 +638609.090|219761.270|117.552 +638604.034|219765.933|118.385 +638598.998|219770.582|119.707 +638594.021|219775.163|119.476 +638589.043|219779.744|119.241 +638584.036|219784.362|119.543 +638579.058|219788.943|119.351 +638574.050|219793.551|118.921 +638569.122|219798.090|118.750 +638564.105|219802.708|118.476 +638559.130|219807.292|118.342 +638554.104|219811.919|118.287 +638549.069|219816.558|118.400 +638544.079|219821.154|118.598 +638539.038|219825.799|118.903 +638534.060|219830.384|118.964 +638529.028|219835.023|119.174 +638523.996|219839.662|119.470 +638518.964|219844.295|119.744 +638513.931|219848.934|120.119 +638508.902|219853.570|120.424 +638503.922|219858.157|120.774 +638498.856|219862.823|120.902 +638493.839|219867.447|121.052 +638488.828|219872.062|121.091 +638483.777|219876.713|120.920 +638478.828|219881.273|120.668 +638473.783|219885.912|120.253 +638468.790|219890.509|119.857 +638463.792|219895.111|119.613 +638458.781|219899.729|119.726 +638453.727|219904.383|119.787 +638448.716|219909.001|120.034 +638443.654|219913.664|120.457 +638438.643|219918.282|120.826 +638433.638|219922.897|121.073 +638428.587|219927.548|121.195 +638423.585|219932.156|121.417 +638418.535|219936.808|121.585 +638413.487|219941.462|121.835 +638408.486|219946.068|122.054 +638403.392|219950.765|122.365 +638398.345|219955.416|122.722 +638393.346|219960.018|123.021 +638388.256|219964.709|123.249 +638383.215|219969.354|123.420 +638378.179|219973.993|123.633 +638373.138|219978.639|123.862 +638368.100|219983.284|124.200 +638363.012|219987.972|124.414 +638357.974|219992.611|124.621 +638352.936|219997.253|124.819 +638347.900|220001.892|124.816 +638342.816|220006.577|124.929 +638337.778|220011.216|124.907 +638332.743|220015.855|125.011 +638327.659|220020.536|125.020 +638322.666|220025.133|124.767 +638317.582|220029.818|124.773 +638312.541|220034.457|124.508 +638307.493|220039.099|123.749 +638302.455|220043.741|123.636 +638297.410|220048.383|123.429 +638292.363|220053.028|122.926 +638287.315|220057.676|122.563 +638282.271|220062.322|122.350 +638277.226|220066.967|122.173 +638272.167|220071.621|121.500 +638267.113|220076.272|121.097 +638262.069|220080.920|121.079 +638257.024|220085.566|121.204 +638251.980|220090.214|121.180 +638246.938|220094.856|121.417 +638241.897|220099.498|121.673 +638236.904|220104.094|122.036 +638231.869|220108.734|122.454 +638226.776|220113.424|122.582 +638221.795|220118.012|123.213 +638206.720|220131.895|123.908 +638201.678|220136.537|124.203 +638196.640|220141.180|124.529 +638191.650|220145.776|124.880 +638186.658|220150.372|125.191 +638181.610|220155.021|125.310 +638176.606|220159.626|125.361 +638171.601|220164.235|125.441 +638166.599|220168.840|125.584 +638161.594|220173.449|125.681 +638156.586|220178.057|125.770 +638151.627|220182.623|125.846 +638146.665|220187.189|125.941 +638141.654|220191.804|126.008 +638136.689|220196.376|126.059 +638131.675|220200.991|126.114 +638126.758|220205.517|126.209 +638121.790|220210.092|126.273 +638116.813|220214.673|126.191 +638111.832|220219.257|126.123 +638106.898|220223.799|126.032 +638101.963|220228.340|125.974 +638096.982|220232.922|125.974 +638092.048|220237.466|125.950 +638087.110|220242.011|125.925 +638082.181|220246.549|126.011 +638077.241|220251.094|126.017 +638072.312|220255.632|126.154 +638067.429|220260.128|126.300 +638062.479|220264.682|126.224 +638052.719|220273.670|126.681 +638047.754|220278.239|126.447 +638042.844|220282.759|126.355 +638038.007|220287.213|126.593 +638033.105|220291.724|126.657 +638028.171|220296.265|126.343 +638023.318|220300.731|126.447 +638018.451|220305.211|126.410 +638013.595|220309.676|125.995 +638008.660|220314.218|125.822 +638003.814|220318.677|125.575 +637998.910|220323.188|125.243 +637994.091|220327.623|125.343 +637989.251|220332.079|125.218 +637984.404|220336.538|125.081 +637979.555|220341.004|124.919 +637974.751|220345.423|124.779 +637969.914|220349.874|124.801 +637965.104|220354.299|124.639 +637960.252|220358.765|124.566 +637955.488|220363.151|124.426 +637950.611|220367.634|124.191 +637945.853|220372.017|124.139 +637941.031|220376.452|123.993 +637936.252|220380.850|123.822 +637931.424|220385.291|123.676 +637926.663|220389.674|123.725 +637921.911|220394.048|123.856 +637912.340|220402.854|123.191 +637907.531|220407.277|122.917 +637902.760|220411.663|122.600 +637897.923|220416.113|122.140 +637878.739|220433.755|120.000 +637869.196|220442.536|118.909 +637854.800|220455.776|116.550 +637845.174|220464.628|114.831 +637835.564|220473.464|112.983 +637830.812|220477.835|112.151 +637826.036|220482.227|111.551 +637816.435|220491.054|109.366 +637811.808|220495.315|109.542 +637807.163|220499.595|109.588 +637792.798|220512.799|106.375 +637774.912|220529.294|109.990 +637770.450|220533.412|111.042 +637752.341|220550.097|112.474 +637734.306|220566.712|113.349 +637725.504|220574.829|114.849 +637716.677|220582.964|115.964 +637699.010|220599.243|117.379 +637690.156|220607.396|117.635 +637685.773|220611.435|117.888 +637681.338|220615.522|118.144 +637672.526|220623.636|118.208 +637663.733|220631.732|118.162 +637650.526|220643.890|117.869 +637646.112|220647.953|117.565 +637637.319|220656.049|117.214 +637628.492|220664.169|116.510 +637615.407|220676.214|115.736 +637610.969|220680.293|114.977 +637597.899|220692.317|113.776 +637589.294|220700.236|113.282 +637585.021|220704.171|113.203 +637580.742|220708.109|112.862 +637563.408|220724.053|110.423 +637555.151|220731.655|110.664 +637542.294|220743.478|108.588 +637534.199|220750.942|109.262 +637522.653|220761.601|112.194 +637514.758|220768.883|113.157 +637506.846|220776.177|113.855 +637502.914|220779.798|113.989 +637494.776|220787.293|113.544 +637478.621|220802.164|112.264 +637474.641|220805.831|111.837 +637466.454|220813.359|110.329 +637454.499|220824.363|109.006 +637446.809|220831.449|108.844 +637443.036|220834.924|108.975 +637435.620|220841.764|109.795 +637428.451|220848.375|111.011 +637424.870|220851.679|111.755 +637421.258|220855.010|112.157 +637417.600|220858.378|112.398 +637406.615|220868.504|112.697 +637402.982|220871.851|112.862 +637399.407|220875.142|112.852 +637395.725|220878.535|112.846 +637392.064|220881.906|112.737 +637384.852|220888.548|112.557 +637349.432|220921.158|110.521 +637345.939|220924.377|110.384 +637579.745|220706.615|112.633 +637584.061|220702.634|112.941 +637588.270|220698.748|112.990 +637592.656|220694.701|113.428 +637596.954|220690.735|113.697 +637601.328|220686.703|114.367 +637610.118|220678.595|115.218 +637618.851|220670.536|115.882 +637627.620|220662.447|116.550 +637636.414|220654.333|117.153 +637645.244|220646.185|117.510 +637649.624|220642.141|117.674 +637654.043|220638.062|117.787 +637658.481|220633.966|118.031 +637667.317|220625.809|118.068 +637676.153|220617.653|117.909 +637684.999|220609.484|117.598 +637693.902|220601.261|117.403 +637702.747|220593.092|116.925 +637707.194|220588.983|116.568 +637716.006|220580.839|115.422 +637720.526|220576.666|115.230 +637724.915|220572.610|114.584 +637742.874|220556.016|113.029 +637751.872|220547.701|111.978 +637760.986|220539.283|111.389 +637765.518|220535.098|110.795 +637778.932|220522.692|107.930 +637783.608|220518.376|107.976 +637797.711|220505.364|108.802 +637807.269|220496.550|109.878 +637811.829|220492.334|108.948 +637816.734|220487.817|110.420 +637821.488|220483.434|110.883 +637826.344|220478.960|111.728 +637831.166|220474.513|112.383 +637840.959|220465.490|114.898 +637845.775|220461.053|115.611 +637855.495|220452.091|117.086 +637860.357|220447.611|117.891 +637870.013|220438.708|119.086 +637874.877|220434.221|119.649 +637889.389|220420.837|121.259 +637894.278|220416.329|121.737 +637899.139|220411.849|122.432 +637903.989|220407.374|122.667 +637908.808|220402.927|123.097 +637913.645|220398.465|123.271 +637918.500|220393.984|123.652 +637923.377|220389.485|123.816 +637928.175|220385.057|123.728 +637933.036|220380.570|123.801 +637937.895|220376.086|123.892 +637942.766|220371.594|124.087 +637947.624|220367.110|124.212 +637952.477|220362.629|124.322 +637957.375|220358.112|124.395 +637962.224|220353.635|124.532 +637967.119|220349.118|124.648 +637972.002|220344.613|124.651 +637976.897|220340.092|124.837 +637981.786|220335.581|124.974 +637986.721|220331.028|125.093 +637991.598|220326.529|125.145 +637996.468|220322.030|125.191 +638001.452|220317.434|125.410 +638006.329|220312.935|125.535 +638011.288|220308.363|126.062 +638016.216|220303.812|126.322 +638021.121|220299.286|126.306 +638026.022|220294.763|126.273 +638030.987|220290.181|126.486 +638035.931|220285.618|126.440 +638040.817|220281.107|126.319 +638045.776|220276.532|126.507 +638055.642|220267.425|126.343 +638065.503|220258.321|126.215 +638070.425|220253.776|126.047 +638075.345|220249.234|125.892 +638080.371|220244.595|125.880 +638085.296|220240.048|125.825 +638090.271|220235.457|125.813 +638095.242|220230.867|125.803 +638100.171|220226.320|125.843 +638105.191|220221.687|125.892 +638110.165|220217.096|125.953 +638115.136|220212.509|126.035 +638120.153|220207.879|126.072 +638125.119|220203.295|126.102 +638130.072|220198.717|125.971 +638135.080|220194.093|125.953 +638140.081|220189.472|125.886 +638145.037|220184.897|125.837 +638149.990|220180.322|125.761 +638154.983|220175.707|125.593 +638159.985|220171.090|125.563 +638164.980|220166.475|125.450 +638169.976|220161.860|125.352 +638174.969|220157.249|125.246 +638179.964|220152.634|125.191 +638184.957|220148.025|125.060 +638189.941|220143.420|124.801 +638194.921|220138.817|124.444 +638199.908|220134.212|124.203 +638204.900|220129.597|124.203 +638209.923|220124.955|123.688 +638214.907|220120.353|123.383 +638219.936|220115.704|123.097 +638224.959|220111.062|122.557 +638229.949|220106.454|122.463 +638234.972|220101.812|122.006 +638240.001|220097.163|121.661 +638244.985|220092.558|121.362 +638250.020|220087.910|121.161 +638255.055|220083.258|121.067 +638260.045|220078.650|120.975 +638265.129|220073.953|121.006 +638270.173|220069.298|121.280 +638275.221|220064.641|121.817 +638280.265|220059.984|122.292 +638285.304|220055.336|122.475 +638290.342|220050.684|122.786 +638295.383|220046.030|123.444 +638300.419|220041.385|123.527 +638305.451|220036.737|123.670 +638310.486|220032.088|124.154 +638315.521|220027.443|124.523 +638320.554|220022.798|124.932 +638325.629|220018.110|124.703 +638330.615|220013.508|125.084 +638335.690|220008.820|124.944 +638340.719|220004.175|124.923 +638345.700|219999.575|124.974 +638350.778|219994.887|124.871 +638355.807|219990.242|124.755 +638360.836|219985.594|124.575 +638365.868|219980.946|124.331 +638370.949|219976.252|124.036 +638375.982|219971.604|123.850 +638381.008|219966.959|123.630 +638386.043|219962.307|123.353 +638391.078|219957.659|123.164 +638396.160|219952.962|122.987 +638401.201|219948.305|122.560 +638406.236|219943.650|122.365 +638411.326|219938.950|122.115 +638416.368|219934.293|121.823 +638421.406|219929.636|121.646 +638426.496|219924.936|121.472 +638431.541|219920.275|121.237 +638436.585|219915.615|121.000 +638441.636|219910.948|120.607 +638446.689|219906.279|120.232 +638451.740|219901.612|119.963 +638456.833|219896.909|119.899 +638461.835|219892.289|119.793 +638466.876|219887.634|119.942 +638471.960|219882.943|120.347 +638476.950|219878.338|120.646 +638481.985|219873.690|120.978 +638487.030|219869.035|121.149 +638492.028|219864.418|121.167 +638497.088|219859.745|121.003 +638502.142|219855.075|120.911 +638507.211|219850.388|120.524 +638512.276|219845.706|120.259 +638517.303|219841.061|119.884 +638522.374|219836.370|119.576 +638527.446|219831.682|119.308 +638532.466|219827.040|119.134 +638537.535|219822.355|119.009 +638542.564|219817.707|118.766 +638547.594|219813.062|118.567 +638552.669|219808.371|118.446 +638557.682|219803.738|118.534 +638562.700|219799.105|118.671 +638567.707|219794.478|118.924 +638572.727|219789.839|119.006 +638577.723|219785.227|119.518 +638582.728|219780.604|119.857 +638587.718|219775.995|119.753 +638592.759|219771.335|119.589 +638597.773|219766.702|119.838 +638602.775|219762.078|119.607 +638612.888|219752.723|117.720 +638617.890|219748.100|117.613 +638622.852|219743.518|118.065 +638632.855|219734.274|117.988 +638647.757|219720.506|118.135 +638652.725|219715.913|118.019 +638657.709|219711.307|117.754 +638662.692|219706.702|117.525 +638667.658|219702.111|117.522 +638682.492|219688.404|117.330 +638687.506|219683.768|116.891 +638692.487|219679.163|116.352 +638707.279|219665.489|115.974 +638712.223|219660.920|115.931 +638717.139|219656.376|115.715 +638722.129|219651.764|115.273 +638727.118|219647.147|114.404 +638732.153|219642.483|113.118 +638737.161|219637.850|112.154 +638742.066|219633.315|111.755 +638746.988|219628.767|111.694 +638751.813|219624.311|112.093 +638756.793|219619.702|111.100 +638795.421|219584.016|112.350 +638800.249|219579.557|112.502 +638809.792|219570.742|112.974 +638814.538|219566.359|113.450 +638819.348|219561.915|113.428 +638824.090|219557.532|113.560 +638828.900|219553.091|113.593 +638833.658|219548.693|113.654 +638838.425|219544.289|113.672 +638843.211|219539.866|113.553 +638848.002|219535.440|113.453 +638852.763|219531.036|113.200 +638857.582|219526.580|112.932 +638862.367|219522.157|112.584 +638867.159|219517.728|112.203 +638871.953|219513.293|111.828 +638876.708|219508.895|111.414 +638881.518|219504.445|110.990 +638886.267|219500.056|110.679 +638891.070|219495.615|110.368 +638895.737|219491.302|110.335 +638900.492|219486.904|110.054 +638905.088|219482.658|110.533 +638909.715|219478.385|110.826 +638914.351|219474.099|111.063 +638918.984|219469.823|111.362 +638923.559|219465.595|111.712 +638928.198|219461.310|111.981 +638932.773|219457.082|112.365 +638925.903|219460.014|111.886 +638921.264|219464.284|111.533 +638916.509|219468.664|111.301 +638911.772|219473.026|110.969 +638907.005|219477.418|110.853 +638902.281|219481.768|110.478 +638897.572|219486.105|110.347 +638892.707|219490.589|110.280 +638887.900|219495.018|110.509 +638883.036|219499.501|110.844 +638878.171|219503.985|111.194 +638873.252|219508.520|111.609 +638868.341|219513.050|112.005 +638863.489|219517.524|112.365 +638858.536|219522.090|112.770 +638853.638|219526.607|113.154 +638848.709|219531.149|113.425 +638843.854|219535.626|113.575 +638838.904|219540.186|113.688 +638834.015|219544.691|113.758 +638829.141|219549.181|113.733 +638824.225|219553.710|113.685 +638819.329|219558.218|113.468 +638814.376|219562.784|113.764 +638809.481|219567.289|113.206 +638804.617|219571.769|112.810 +638799.673|219576.323|112.694 +638794.732|219580.874|112.566 +638789.919|219585.299|111.395 +638749.926|219622.153|112.023 +638744.955|219626.731|111.959 +638739.947|219631.349|111.834 +638734.884|219636.015|112.228 +638729.785|219640.718|113.023 +638724.649|219645.458|114.218 +638719.547|219650.167|115.151 +638714.487|219654.834|115.696 +638709.415|219659.512|115.931 +638704.401|219664.130|116.065 +638694.285|219673.454|116.348 +638689.250|219678.093|116.284 +638684.144|219682.802|117.034 +638668.950|219696.808|117.613 +638663.939|219701.422|117.403 +638658.855|219706.107|117.534 +638653.804|219710.765|117.882 +638648.717|219715.452|118.104 +638643.697|219720.079|118.138 +638628.521|219734.060|118.004 +638623.452|219738.730|118.129 +638618.429|219743.357|117.696 +638613.376|219748.017|117.741 +638603.092|219757.515|119.732 +638598.026|219762.184|120.040 +638593.009|219766.811|119.695 +638587.955|219771.469|119.878 +638582.859|219776.169|120.027 +638577.836|219780.799|119.814 +638572.831|219785.410|119.320 +638567.759|219790.083|119.125 +638562.739|219794.710|118.900 +638557.719|219799.334|118.671 +638552.647|219804.012|118.570 +638547.618|219808.645|118.552 +638542.534|219813.336|118.750 +638537.441|219818.033|119.076 +638532.411|219822.669|119.177 +638527.382|219827.308|119.345 +638522.304|219831.990|119.509 +638517.269|219836.635|119.860 +638512.185|219841.326|120.293 +638507.113|219846.002|120.436 +638502.081|219850.647|120.884 +638497.015|219855.319|121.045 +638491.946|219859.992|121.256 +638486.886|219864.658|121.329 +638481.836|219869.310|121.079 +638476.837|219873.921|120.856 +638466.745|219883.218|120.198 +638461.747|219887.823|119.902 +638456.693|219892.484|119.933 +638451.636|219897.144|120.040 +638446.625|219901.765|120.229 +638441.566|219906.434|120.631 +638436.555|219911.058|120.975 +638431.547|219915.676|121.247 +638426.490|219920.339|121.637 +638421.443|219924.994|121.750 +638416.438|219929.608|121.954 +638411.387|219934.266|122.256 +638406.389|219938.877|122.472 +638401.341|219943.532|122.697 +638396.342|219948.143|123.057 +638391.347|219952.749|123.118 +638386.302|219957.403|123.377 +638381.307|219962.009|123.630 +638376.314|219966.614|123.908 +638371.279|219971.259|124.066 +638366.286|219975.865|124.377 +638361.245|219980.510|124.587 +638356.206|219985.158|124.810 +638351.217|219989.761|125.023 +638346.227|219994.360|124.947 +638341.189|219999.005|124.974 +638336.199|220003.605|125.060 +638326.171|220012.849|125.044 +638321.182|220017.449|124.785 +638316.143|220022.091|124.813 +638311.148|220026.693|124.462 +638306.103|220031.342|123.840 +638301.107|220035.944|123.612 +638296.112|220040.547|123.316 +638291.113|220045.152|122.883 +638286.062|220049.803|122.457 +638281.116|220054.366|122.365 +638276.068|220059.018|122.115 +638271.057|220063.632|121.399 +638266.049|220068.244|120.966 +638261.047|220072.852|120.838 +638256.049|220077.461|120.805 +638251.053|220082.070|120.951 +638246.057|220086.675|121.161 +638241.110|220091.235|121.381 +638236.118|220095.837|121.634 +638231.128|220100.440|122.015 +638226.142|220105.039|122.441 +638221.146|220109.645|122.582 +638216.205|220114.199|123.021 +638211.216|220118.801|123.347 +638206.223|220123.404|123.575 +638201.291|220127.954|124.212 +638196.277|220132.572|123.941 +638191.294|220137.168|124.414 +638186.350|220141.728|124.718 +638181.354|220146.334|124.971 +638176.398|220150.903|125.008 +638171.396|220155.511|125.142 +638166.437|220160.080|125.185 +638161.481|220164.649|125.282 +638156.477|220169.261|125.398 +638151.566|220173.790|125.474 +638146.561|220178.402|125.627 +638141.599|220182.977|125.694 +638136.637|220187.549|125.779 +638131.675|220192.124|125.849 +638126.749|220196.662|125.831 +638121.784|220201.237|125.904 +638116.810|220205.822|125.870 +638111.881|220210.363|125.825 +638106.901|220214.954|125.733 +638101.969|220219.498|125.700 +638096.992|220224.085|125.712 +638092.057|220228.630|125.703 +638087.122|220233.181|125.660 +638082.184|220237.731|125.621 +638077.259|220242.270|125.773 +638072.312|220246.827|125.694 +638067.429|220251.328|125.791 +638062.494|220255.876|125.904 +638057.596|220260.396|126.483 +638052.683|220264.923|126.267 +638047.748|220269.470|126.398 +638042.856|220273.981|126.511 +638037.946|220278.504|126.404 +638033.029|220283.034|126.261 +638028.079|220287.597|126.315 +638023.205|220292.086|126.178 +638018.286|220296.619|126.078 +638013.424|220301.099|126.105 +638008.511|220305.629|126.108 +638003.558|220310.188|125.712 +637998.645|220314.712|125.291 +637993.762|220319.211|125.200 +637988.867|220323.722|125.002 +637984.011|220328.193|124.752 +637979.147|220332.680|124.895 +637974.251|220337.188|124.788 +637969.408|220341.650|124.727 +637964.550|220346.124|124.548 +637959.697|220350.596|124.444 +637954.845|220355.067|124.371 +637950.056|220359.481|124.465 +637945.198|220363.955|124.395 +637940.373|220368.402|124.179 +637935.508|220372.886|124.084 +637930.686|220377.327|123.987 +637925.864|220381.768|123.892 +637921.106|220386.154|123.941 +637916.269|220390.610|123.776 +637911.481|220395.024|123.615 +637906.622|220399.495|123.316 +637901.803|220403.936|122.954 +637896.988|220408.371|122.661 +637887.301|220417.289|121.701 +637877.681|220426.147|121.015 +637863.210|220439.457|118.936 +637858.342|220443.932|118.494 +637834.135|220466.182|114.066 +637819.678|220479.466|111.298 +637810.125|220488.253|110.195 +637805.243|220492.737|108.637 +637800.799|220496.836|110.100 +637791.234|220505.627|108.491 +637772.723|220522.668|108.680 +637754.670|220539.304|111.088 +637741.116|220551.789|112.474 +637718.758|220572.384|114.898 +637714.336|220576.456|115.428 +637709.901|220580.541|115.586 +637705.454|220584.637|116.278 +637692.207|220596.838|117.226 +637670.070|220617.214|117.677 +637665.629|220621.301|117.680 +637661.154|220625.419|117.531 +637656.774|220629.449|117.641 +637647.990|220637.532|117.501 +637639.145|220645.670|117.117 +637625.980|220657.780|116.568 +637612.886|220669.826|115.775 +637590.867|220690.071|113.304 +637586.560|220694.030|113.051 +637582.354|220697.901|113.054 +637560.722|220717.789|110.478 +637539.371|220737.418|108.046 +637535.415|220741.061|108.680 +637531.330|220744.819|108.991 +637519.812|220755.432|112.328 +637515.789|220759.132|112.478 +637499.973|220773.684|113.950 +637495.907|220777.423|113.739 +637483.809|220788.536|112.990 +637479.780|220792.237|112.566 +637475.741|220795.946|112.112 +637471.663|220799.692|111.737 +637467.688|220803.344|111.368 +637451.509|220818.197|108.686 +637447.401|220821.970|107.851 +637443.831|220825.259|108.814 +637436.156|220832.315|108.792 +637432.453|220835.717|109.036 +637428.792|220839.088|109.664 +637417.957|220849.058|111.335 +637407.078|220859.064|112.282 +637403.494|220862.359|112.435 +637399.839|220865.721|112.520 +637392.552|220872.415|112.420 +637388.940|220875.734|112.292 +637381.664|220882.421|112.097 +637378.052|220885.737|111.810 +637374.501|220889.002|111.969 +637350.029|220911.487|111.804 +637346.103|220915.084|110.057 +637342.689|220918.220|110.024 +637568.998|220707.231|112.785 +637590.398|220687.458|113.267 +637594.775|220683.417|113.694 +637599.167|220679.366|114.206 +637603.614|220675.260|115.029 +637608.003|220671.207|115.330 +637625.645|220654.915|116.656 +637630.016|220650.879|116.699 +637634.420|220646.810|116.952 +637638.843|220642.726|117.037 +637660.990|220622.265|117.431 +637665.498|220618.101|117.549 +637674.373|220609.896|117.367 +637687.806|220597.484|117.187 +637692.317|220593.315|117.162 +637701.239|220585.067|116.598 +637732.377|220556.260|112.459 +637736.995|220551.993|112.334 +637750.528|220539.478|110.688 +637755.075|220535.272|110.515 +637759.641|220531.053|110.143 +637768.721|220522.650|108.805 +637773.147|220518.550|107.576 +637777.914|220514.152|108.241 +637782.477|220509.930|107.610 +637792.090|220501.064|109.265 +637796.839|220496.675|109.615 +637810.985|220483.611|110.417 +637815.847|220479.124|110.950 +637820.611|220474.726|111.527 +637825.524|220470.200|112.834 +637830.456|220465.652|114.340 +637835.332|220461.156|115.480 +637840.121|220456.734|115.660 +637844.992|220452.241|116.483 +637849.853|220447.760|117.607 +637854.629|220443.347|117.799 +637859.549|220438.814|119.086 +637864.371|220434.358|119.308 +637874.115|220425.370|121.000 +637878.931|220420.923|121.244 +637883.759|220416.466|121.628 +637888.651|220411.949|122.170 +637893.470|220407.499|122.542 +637898.277|220403.061|122.853 +637903.151|220398.562|123.328 +637907.985|220394.097|123.530 +637912.855|220389.601|124.036 +637917.656|220385.163|123.999 +637922.454|220380.732|123.929 +637927.309|220376.245|123.987 +637932.116|220371.807|124.054 +637937.029|220367.268|124.234 +637941.882|220362.785|124.328 +637946.722|220358.313|124.343 +637951.559|220353.845|124.331 +637956.448|220349.328|124.374 +637961.346|220344.805|124.563 +637966.232|220340.291|124.630 +637971.115|220335.780|124.703 +637975.980|220331.287|124.609 +637980.863|220326.773|124.740 +637985.794|220322.222|124.865 +637990.717|220317.674|124.947 +637995.670|220313.099|125.389 +638000.595|220308.549|125.572 +638005.497|220304.028|125.995 +638010.440|220299.459|125.916 +638015.348|220294.924|125.977 +638020.304|220290.346|126.056 +638025.211|220285.814|126.145 +638030.167|220281.239|126.279 +638035.117|220276.666|126.364 +638040.015|220272.140|126.450 +638044.983|220267.547|126.255 +638049.872|220263.033|126.227 +638054.856|220258.427|126.251 +638059.775|220253.883|126.069 +638064.732|220249.298|125.797 +638069.639|220244.763|125.496 +638074.628|220240.157|125.642 +638079.594|220235.567|125.532 +638084.516|220231.020|125.508 +638089.542|220226.377|125.581 +638094.511|220221.787|125.566 +638099.476|220217.200|125.541 +638104.444|220212.610|125.557 +638109.464|220207.974|125.666 +638114.432|220203.389|125.712 +638119.443|220198.763|125.727 +638124.402|220194.181|125.718 +638129.410|220189.558|125.727 +638134.415|220184.940|125.663 +638139.417|220180.319|125.608 +638144.412|220175.704|125.477 +638149.411|220171.093|125.361 +638154.404|220166.478|125.227 +638159.448|220161.824|125.121 +638164.395|220157.252|125.054 +638169.443|220152.594|125.041 +638174.435|220147.986|124.929 +638179.428|220143.374|124.862 +638184.460|220138.726|124.621 +638189.493|220134.078|124.365 +638199.508|220124.827|123.889 +638204.483|220120.231|123.438 +638209.521|220115.579|123.301 +638214.541|220110.940|122.804 +638219.528|220106.335|122.652 +638224.602|220101.647|122.289 +638229.629|220097.002|121.884 +638234.609|220092.402|121.527 +638244.671|220083.109|121.018 +638249.706|220078.461|120.835 +638254.738|220073.813|120.625 +638259.780|220069.161|120.796 +638264.818|220064.510|120.893 +638269.908|220059.813|121.207 +638274.956|220055.156|121.935 +638279.997|220050.504|122.313 +638285.032|220045.856|122.463 +638290.071|220041.211|122.774 +638295.112|220036.560|123.527 +638300.193|220031.872|123.606 +638305.225|220027.227|123.828 +638310.261|220022.582|124.371 +638315.339|220017.897|124.639 +638320.368|220013.255|124.831 +638325.400|220008.613|125.032 +638330.475|220003.928|125.188 +638335.455|219999.328|125.118 +638345.557|219990.002|125.038 +638350.586|219985.359|124.987 +638355.615|219980.717|124.895 +638360.644|219976.072|124.740 +638365.673|219971.427|124.465 +638370.700|219966.785|124.209 +638375.729|219962.137|123.990 +638380.764|219957.488|123.661 +638385.796|219952.840|123.517 +638390.832|219948.192|123.289 +638395.864|219943.544|123.115 +638400.948|219938.847|122.902 +638405.938|219934.241|122.725 +638410.976|219929.587|122.466 +638416.017|219924.933|122.188 +638421.059|219920.275|121.942 +638426.100|219915.618|121.637 +638431.148|219910.958|121.335 +638436.146|219906.340|121.042 +638441.194|219901.676|120.701 +638446.244|219897.010|120.393 +638451.246|219892.392|120.131 +638456.291|219887.735|120.104 +638461.335|219883.077|120.116 +638466.325|219878.472|120.408 +638471.360|219873.827|120.732 +638476.350|219869.221|120.991 +638481.339|219864.619|121.259 +638486.380|219859.964|121.433 +638491.340|219855.386|121.298 +638496.399|219850.720|121.161 +638501.410|219846.093|120.951 +638506.385|219841.503|120.607 +638511.408|219836.867|120.283 +638516.434|219832.228|119.924 +638521.460|219827.589|119.595 +638526.486|219822.949|119.354 +638531.457|219818.362|119.256 +638536.481|219813.726|119.104 +638541.461|219809.130|118.912 +638546.438|219804.536|118.784 +638551.465|219799.897|118.674 +638556.430|219795.319|118.848 +638561.392|219790.741|119.086 +638566.406|219786.120|119.311 +638571.368|219781.545|119.582 +638576.327|219776.970|119.872 +638581.286|219772.401|120.262 +638586.267|219767.805|120.250 +638591.281|219763.175|119.787 +638596.209|219758.627|119.939 +638601.184|219754.040|120.116 +638606.243|219749.358|118.415 +638611.282|219744.707|117.815 +638616.283|219740.092|117.717 +638621.221|219735.539|117.866 +638626.211|219730.936|117.994 +638641.067|219717.232|118.132 +638646.023|219712.657|118.150 +638650.955|219708.107|117.927 +638655.947|219703.498|117.562 +638660.885|219698.947|117.909 +638680.688|219680.672|117.174 +638685.659|219676.081|116.720 +638690.624|219671.497|116.345 +638695.611|219666.898|116.327 +638700.518|219662.368|116.117 +638705.471|219657.799|115.986 +638710.385|219653.264|115.788 +638715.426|219648.607|115.288 +638720.376|219644.035|114.312 +638725.436|219639.359|113.252 +638730.413|219634.763|112.569 +638735.357|219630.200|112.261 +638740.343|219625.597|112.023 +638745.199|219621.117|112.124 +638784.509|219584.842|111.042 +638789.200|219580.529|112.746 +638794.055|219576.049|112.660 +638798.874|219571.605|112.892 +638803.690|219567.167|113.185 +638808.457|219562.772|113.858 +638818.119|219553.859|113.874 +638822.954|219549.403|114.090 +638827.791|219544.938|113.901 +638832.604|219540.497|113.944 +638837.432|219536.041|113.877 +638842.229|219531.615|113.703 +638847.085|219527.134|113.493 +638851.900|219522.690|113.236 +638856.735|219518.225|112.865 +638861.578|219513.757|112.487 +638866.427|219509.279|112.069 +638871.231|219504.847|111.667 +638876.035|219500.412|111.277 +638880.890|219495.929|110.917 +638885.639|219491.549|110.637 +638890.494|219487.068|110.341 +638895.191|219482.737|110.463 +638899.849|219478.442|110.865 +638904.570|219474.087|110.859 +638909.258|219469.765|111.094 +638913.940|219465.449|111.395 +638918.585|219461.166|111.621 +638923.212|219456.902|111.990 +638918.847|219457.567|111.819 +638914.208|219461.834|111.447 +638909.453|219466.205|111.203 +638904.823|219470.463|110.810 +638900.056|219474.852|111.014 +638895.350|219479.183|110.850 +638890.680|219483.475|110.432 +638885.889|219487.882|110.527 +638881.073|219492.320|110.841 +638876.297|219496.718|111.231 +638871.438|219501.190|111.523 +638866.625|219505.622|111.886 +638861.797|219510.069|112.386 +638856.930|219514.549|112.837 +638852.077|219519.018|113.221 +638847.249|219523.462|113.453 +638842.427|219527.902|113.675 +638837.563|219532.380|113.849 +638832.762|219536.797|113.947 +638827.928|219541.247|113.971 +638823.078|219545.712|114.123 +638818.290|219550.113|113.794 +638803.818|219563.427|113.453 +638799.045|219567.816|113.105 +638794.153|219572.318|112.953 +638789.380|219576.704|112.615 +638784.485|219581.209|112.517 +638745.348|219617.215|111.868 +638740.377|219621.796|112.246 +638735.396|219626.377|112.261 +638730.431|219630.949|112.645 +638725.426|219635.561|112.983 +638720.428|219640.164|113.742 +638715.325|219644.867|114.629 +638710.281|219649.518|115.480 +638705.276|219654.123|115.943 +638700.314|219658.692|116.038 +638695.346|219663.267|116.202 +638690.335|219667.876|116.321 +638685.327|219672.485|116.446 +638680.273|219677.142|117.117 +638670.212|219686.405|117.513 +638655.216|219700.203|117.516 +638650.162|219704.854|117.815 +638645.112|219709.506|118.138 +638640.091|219714.126|118.119 +638635.071|219718.744|118.113 +638625.001|219728.010|117.964 +638619.959|219732.646|117.690 +638614.936|219737.270|117.830 +638604.704|219746.701|119.534 +638599.602|219751.404|120.296 +638594.573|219756.030|119.973 +638589.470|219760.727|120.113 +638584.404|219765.391|120.390 +638579.366|219770.027|120.329 +638574.300|219774.687|119.954 +638569.225|219779.357|119.723 +638564.156|219784.020|119.409 +638559.082|219788.687|119.189 +638554.013|219793.350|118.915 +638548.932|219798.023|118.839 +638543.851|219802.705|118.869 +638538.754|219807.395|119.144 +638533.670|219812.074|119.250 +638528.544|219816.792|119.293 +638523.459|219821.474|119.467 +638518.372|219826.159|119.738 +638513.233|219830.890|120.104 +638508.146|219835.574|120.488 +638503.017|219840.299|120.817 +638497.893|219845.017|121.030 +638492.815|219849.690|121.283 +638487.746|219854.359|121.439 +638482.634|219859.059|121.384 +638477.578|219863.713|121.237 +638472.433|219868.444|120.893 +638467.379|219873.092|120.649 +638462.329|219877.740|120.338 +638457.178|219882.480|120.226 +638452.069|219887.180|120.219 +638447.009|219891.840|120.357 +638441.898|219896.547|120.607 +638436.786|219901.253|120.905 +638431.724|219905.913|121.250 +638426.566|219910.662|121.594 +638421.461|219915.365|121.844 +638416.401|219920.022|122.222 +638411.296|219924.722|122.542 +638406.148|219929.462|122.749 +638401.097|219934.113|122.941 +638395.998|219938.807|123.170 +638390.902|219943.498|123.298 +638385.805|219948.189|123.429 +638380.709|219952.880|123.621 +638375.613|219957.571|123.862 +638370.568|219962.219|124.106 +638365.475|219966.910|124.474 +638360.388|219971.592|124.676 +638355.295|219976.279|124.901 +638350.250|219980.925|125.090 +638345.160|219985.606|125.072 +638340.119|219990.248|125.124 +638335.029|219994.933|125.182 +638329.939|219999.618|125.221 +638324.897|220004.257|125.139 +638319.850|220008.899|124.840 +638314.759|220013.584|124.831 +638309.761|220018.180|124.423 +638304.664|220022.868|123.871 +638299.614|220027.510|123.655 +638294.566|220032.155|123.441 +638289.513|220036.801|122.865 +638284.459|220041.449|122.469 +638279.457|220046.051|122.280 +638274.404|220050.700|121.978 +638269.338|220055.354|121.225 +638264.327|220059.962|120.893 +638259.274|220064.614|120.735 +638254.266|220069.219|120.533 +638249.212|220073.870|120.570 +638244.213|220078.473|120.817 +638239.215|220083.072|121.097 +638234.219|220087.675|121.381 +638229.174|220092.320|121.643 +638224.228|220096.877|121.984 +638219.235|220101.479|122.356 +638214.239|220106.079|122.658 +638209.289|220110.639|122.847 +638204.300|220115.238|123.313 +638194.342|220124.406|123.523 +638184.457|220133.514|124.429 +638179.507|220138.074|124.666 +638174.548|220142.640|124.758 +638169.592|220147.205|124.852 +638164.630|220151.774|124.889 +638159.717|220156.298|124.990 +638154.751|220160.870|124.987 +638149.838|220165.393|125.121 +638144.876|220169.962|125.249 +638139.962|220174.488|125.404 +638135.000|220179.057|125.502 +638130.078|220183.590|125.569 +638125.158|220188.119|125.630 +638120.230|220192.657|125.605 +638115.304|220197.193|125.614 +638110.366|220201.737|125.508 +638105.435|220206.276|125.486 +638100.503|220210.817|125.465 +638095.565|220215.362|125.438 +638090.679|220219.861|125.447 +638085.744|220224.405|125.493 +638080.846|220228.913|125.371 +638075.957|220233.415|125.398 +638071.023|220237.960|125.499 +638066.118|220242.474|125.361 +638061.235|220246.970|125.575 +638056.398|220251.432|126.340 +638051.485|220255.952|126.172 +638046.629|220260.424|126.145 +638041.716|220264.944|126.032 +638036.888|220269.394|126.364 +638027.107|220278.395|126.209 +638022.236|220282.881|126.099 +638017.362|220287.365|126.002 +638012.486|220291.855|125.907 +638007.603|220296.351|125.736 +638002.735|220300.831|125.791 +637997.852|220305.324|125.678 +637992.994|220309.795|125.352 +637988.144|220314.258|125.148 +637983.240|220318.769|124.916 +637978.385|220323.240|124.700 +637973.535|220327.702|124.566 +637968.671|220332.180|124.310 +637963.843|220336.624|124.471 +637959.002|220341.080|124.505 +637954.147|220345.551|124.398 +637949.349|220349.968|124.429 +637944.491|220354.439|124.377 +637939.687|220358.862|124.374 +637934.871|220363.297|124.304 +637930.028|220367.756|124.435 +637925.240|220372.164|124.218 +637920.408|220376.608|124.081 +637915.586|220381.049|124.033 +637905.985|220389.888|123.987 +637901.136|220394.347|123.380 +637896.341|220398.757|123.271 +637891.516|220403.198|122.923 +637877.087|220416.469|121.661 +637872.262|220420.910|121.036 +637862.573|220429.823|119.985 +637852.904|220438.714|118.476 +637823.966|220465.332|114.181 +637819.038|220469.858|112.493 +637814.185|220474.318|111.743 +637809.293|220478.813|110.390 +637804.535|220483.193|110.003 +637794.815|220492.127|107.607 +637790.362|220496.239|109.375 +637785.583|220500.637|108.625 +637766.722|220517.995|106.936 +637753.332|220530.349|110.243 +637748.742|220534.580|110.545 +637744.200|220538.768|110.862 +637735.148|220547.110|111.731 +637730.576|220551.319|111.920 +637703.906|220575.914|115.699 +637699.455|220580.019|116.379 +637681.536|220596.524|116.870 +637672.581|220604.769|116.961 +637668.110|220608.890|117.065 +637663.678|220612.971|117.132 +637659.222|220617.077|117.357 +637650.306|220625.282|117.019 +637641.476|220633.417|117.211 +637632.588|220641.598|116.912 +637623.816|220649.678|116.751 +637601.697|220670.030|114.986 +637597.192|220674.172|114.187 +637584.079|220686.239|112.919 +637579.754|220690.223|112.840 +637553.639|220714.247|110.060 +637544.976|220722.215|108.930 +637540.526|220726.302|107.744 +637536.430|220730.079|108.186 +637528.185|220737.674|108.661 +637500.475|220763.232|113.602 +637496.565|220766.838|114.288 +637484.211|220778.204|113.047 +637480.069|220782.014|112.572 +637475.979|220785.775|112.103 +637471.919|220789.512|111.783 +637467.853|220793.252|111.459 +637459.623|220800.820|110.012 +637451.509|220808.281|108.896 +637447.501|220811.970|108.466 +637443.295|220815.831|107.015 +637439.750|220819.108|108.515 +637428.216|220829.727|108.533 +637420.880|220836.494|109.743 +637413.620|220843.187|110.865 +637410.053|220846.479|111.691 +637406.353|220849.884|111.795 +637402.668|220853.279|111.956 +637395.386|220859.988|112.453 +637391.610|220863.463|112.075 +637348.612|220903.047|111.399 +637344.707|220906.628|109.926 +637341.208|220909.850|109.567 +637337.691|220913.084|109.366 +637555.205|220709.904|110.185 +637563.889|220701.909|111.371 +637568.272|220697.870|111.959 +637572.515|220693.957|111.886 +637576.913|220689.906|112.587 +637581.196|220685.959|112.755 +637585.600|220681.902|113.276 +637594.372|220673.819|114.215 +637598.819|220669.722|114.767 +637612.008|220657.570|115.782 +637620.850|220649.422|116.303 +637625.267|220645.353|116.568 +637634.082|220637.224|116.809 +637638.495|220633.155|116.867 +637647.386|220624.959|117.080 +637651.833|220620.856|117.104 +637656.283|220616.754|117.150 +637665.126|220608.597|116.717 +637669.606|220604.467|116.705 +637674.123|220600.304|116.915 +637678.622|220596.155|117.056 +637687.647|220587.831|116.967 +637696.551|220579.617|116.260 +637705.545|220571.320|115.544 +637710.008|220567.199|115.013 +637723.279|220554.937|112.200 +637727.811|220550.758|111.810 +637741.445|220538.176|110.694 +637746.050|220533.924|110.219 +637755.152|220525.521|109.219 +637764.213|220517.148|107.406 +637783.141|220499.704|108.802 +637787.960|220495.263|109.231 +637792.401|220491.152|107.470 +637797.461|220486.506|109.896 +637802.192|220482.145|110.134 +637807.056|220477.664|110.984 +637821.677|220464.207|113.925 +637826.606|220459.669|115.044 +637831.440|220455.219|115.852 +637841.148|220446.276|117.168 +637846.034|220441.777|118.119 +637850.908|220437.287|118.638 +637855.769|220432.813|119.464 +637860.668|220428.302|120.253 +637870.348|220419.377|121.036 +637875.213|220414.897|121.658 +637880.092|220410.401|122.045 +637884.963|220405.914|122.777 +637889.806|220401.449|122.923 +637894.683|220396.956|123.383 +637899.527|220392.491|123.584 +637904.400|220388.001|124.087 +637909.274|220383.505|124.209 +637914.069|220379.083|124.075 +637918.933|220374.599|124.157 +637923.822|220370.094|124.462 +637928.601|220365.684|124.270 +637933.494|220361.172|124.243 +637938.343|220356.701|124.270 +637943.183|220352.236|124.252 +637948.084|220347.716|124.377 +637952.915|220343.259|124.316 +637957.804|220338.754|124.334 +637962.666|220334.268|124.170 +637967.573|220329.744|124.429 +637972.459|220325.240|124.529 +637977.400|220320.686|124.706 +637982.292|220316.175|124.910 +637987.230|220311.624|125.099 +637992.125|220307.113|125.389 +637997.060|220302.562|125.648 +638001.967|220298.036|125.617 +638006.880|220293.510|125.645 +638011.803|220288.971|125.834 +638016.768|220284.393|125.977 +638021.724|220279.824|126.050 +638026.628|220275.301|126.120 +638031.584|220270.732|126.242 +638036.519|220266.178|126.148 +638041.460|220261.625|126.130 +638046.395|220257.074|126.053 +638051.336|220252.517|126.096 +638056.319|220247.921|126.087 +638061.199|220243.416|125.358 +638066.167|220238.832|125.200 +638071.157|220234.232|125.322 +638076.079|220229.694|125.200 +638081.108|220225.055|125.279 +638086.037|220220.510|125.313 +638091.057|220215.880|125.300 +638096.028|220211.296|125.279 +638101.003|220206.712|125.325 +638106.017|220202.082|125.343 +638110.988|220197.495|125.401 +638115.999|220192.868|125.425 +638120.967|220188.283|125.489 +638125.972|220183.663|125.438 +638130.980|220179.042|125.416 +638135.982|220174.427|125.316 +638140.980|220169.813|125.197 +638146.022|220165.155|125.054 +638150.972|220160.586|124.913 +638156.019|220155.929|124.871 +638161.015|220151.314|124.785 +638166.062|220146.660|124.746 +638171.104|220142.003|124.651 +638176.100|220137.394|124.609 +638181.138|220132.743|124.441 +638186.173|220128.091|124.285 +638196.195|220118.838|123.908 +638201.261|220114.159|123.295 +638206.241|220109.560|122.868 +638211.277|220104.911|122.734 +638216.352|220100.224|122.341 +638221.335|220095.624|122.042 +638226.410|220090.936|121.649 +638231.442|220086.288|121.378 +638236.471|220081.643|121.039 +638241.552|220076.955|120.796 +638246.585|220072.307|120.521 +638251.620|220067.659|120.411 +638256.710|220062.962|120.570 +638261.752|220058.310|120.732 +638266.842|220053.613|121.018 +638271.889|220048.959|121.567 +638276.989|220044.262|122.390 +638282.021|220039.617|122.347 +638287.105|220034.926|122.627 +638292.152|220030.275|123.533 +638297.230|220025.590|123.527 +638302.311|220020.902|123.725 +638307.347|220016.257|124.176 +638312.431|220011.572|124.654 +638317.460|220006.930|124.822 +638322.538|220002.245|124.956 +638327.570|219997.603|125.328 +638332.645|219992.918|125.172 +638337.720|219988.234|125.099 +638342.749|219983.595|125.215 +638347.827|219978.907|125.148 +638352.902|219974.222|125.102 +638357.934|219969.577|124.855 +638363.006|219964.892|124.612 +638368.039|219960.247|124.301 +638373.120|219955.556|124.026 +638378.152|219950.908|123.780 +638383.233|219946.217|123.642 +638388.268|219941.572|123.484 +638393.352|219936.878|123.216 +638398.388|219932.227|123.103 +638403.426|219927.578|122.920 +638408.464|219922.927|122.725 +638413.506|219918.270|122.463 +638418.550|219913.612|122.070 +638423.640|219908.912|121.853 +638428.642|219904.295|121.481 +638433.690|219899.634|121.219 +638438.789|219894.925|120.774 +638443.788|219890.307|120.604 +638448.835|219885.650|120.472 +638453.883|219880.993|120.411 +638458.878|219876.381|120.479 +638463.920|219871.733|120.680 +638468.958|219867.082|120.905 +638473.951|219862.479|121.149 +638478.940|219857.874|121.442 +638483.988|219853.216|121.472 +638488.990|219848.601|121.478 +638494.001|219843.975|121.295 +638498.966|219839.390|121.079 +638504.028|219834.715|120.869 +638509.006|219830.115|120.433 +638514.032|219825.476|120.085 +638519.058|219820.831|119.710 +638524.033|219816.241|119.549 +638529.053|219811.605|119.403 +638534.027|219807.011|119.235 +638538.995|219802.424|119.256 +638544.027|219797.779|119.019 +638548.953|219793.234|119.000 +638553.915|219788.653|119.174 +638558.874|219784.078|119.461 +638563.788|219779.546|119.704 +638568.799|219774.925|119.966 +638573.721|219770.380|120.058 +638578.631|219765.854|120.445 +638583.600|219761.267|120.631 +638588.544|219756.701|120.469 +638593.506|219752.120|120.094 +638598.437|219747.569|120.210 +638603.363|219743.025|120.421 +638608.471|219738.291|118.095 +638618.338|219729.181|117.799 +638623.297|219724.602|117.708 +638628.216|219720.064|118.129 +638633.069|219715.590|118.223 +638638.034|219711.005|118.110 +638642.947|219706.467|118.037 +638647.888|219701.904|117.699 +638652.829|219697.344|117.394 +638667.578|219683.729|117.464 +638672.452|219679.233|117.501 +638677.405|219674.655|117.178 +638682.395|219670.046|116.525 +638687.253|219665.560|116.260 +638692.188|219661.006|116.254 +638697.034|219656.531|116.172 +638701.993|219651.953|115.974 +638706.895|219647.424|115.376 +638711.918|219642.779|114.578 +638716.840|219638.231|113.877 +638721.808|219633.641|113.233 +638726.694|219629.127|112.947 +638731.638|219624.561|112.618 +638736.564|219620.010|112.026 +638741.395|219615.554|112.350 +638746.360|219610.967|111.481 +638775.594|219583.980|110.996 +638780.284|219579.664|112.691 +638785.125|219575.192|112.676 +638789.922|219570.770|113.069 +638794.695|219566.365|113.270 +638799.569|219561.869|113.468 +638813.953|219548.598|114.096 +638818.799|219544.124|114.197 +638823.591|219539.704|114.367 +638828.391|219535.269|114.096 +638833.222|219530.810|114.008 +638838.017|219526.385|113.852 +638842.866|219521.907|113.666 +638847.682|219517.460|113.398 +638852.556|219512.964|113.112 +638857.350|219508.538|112.700 +638862.212|219504.052|112.203 +638867.076|219499.565|111.725 +638871.871|219495.139|111.399 +638876.723|219490.665|111.072 +638881.481|219486.273|110.707 +638886.251|219481.875|110.646 +638890.967|219477.528|110.978 +638895.703|219473.160|110.853 +638900.467|219468.768|110.890 +638905.143|219464.458|111.216 +638909.834|219460.136|111.450 +638907.344|219459.676|111.392 +638902.653|219463.989|111.066 +638897.898|219468.366|110.862 +638893.161|219472.724|110.877 +638888.373|219477.129|110.932 +638883.633|219481.490|110.688 +638878.845|219485.901|110.804 +638873.977|219490.382|111.130 +638869.222|219494.761|111.399 +638864.358|219499.242|111.783 +638859.472|219503.744|112.334 +638854.604|219508.228|112.791 +638849.749|219512.696|113.172 +638844.954|219517.113|113.526 +638840.089|219521.590|113.672 +638835.267|219526.031|113.922 +638830.424|219530.487|113.956 +638825.599|219534.931|114.273 +638820.768|219539.378|114.282 +638815.958|219543.804|114.154 +638811.158|219548.220|113.959 +638796.707|219561.513|113.508 +638791.910|219565.929|113.383 +638787.115|219570.337|112.831 +638782.330|219574.738|112.624 +638777.474|219579.210|112.645 +638772.835|219583.462|110.792 +638743.468|219610.500|112.154 +638738.579|219614.999|112.191 +638733.674|219619.516|112.420 +638728.761|219624.040|112.758 +638723.854|219628.560|113.081 +638718.904|219633.117|113.364 +638713.969|219637.667|114.038 +638708.989|219642.255|114.690 +638704.005|219646.845|115.425 +638699.043|219651.417|115.992 +638694.120|219655.949|116.190 +638689.164|219660.512|116.248 +638684.257|219665.029|116.333 +638679.243|219669.644|116.534 +638674.290|219674.207|117.190 +638669.331|219678.773|117.403 +638649.479|219697.042|117.583 +638639.546|219706.189|117.964 +638634.520|219710.816|118.028 +638629.597|219715.346|118.046 +638624.601|219719.942|117.778 +638619.633|219724.511|117.760 +638614.616|219729.132|117.833 +638609.596|219733.753|117.940 +638604.472|219738.486|120.265 +638599.452|219743.107|120.469 +638594.466|219747.694|120.259 +638589.455|219752.309|120.415 +638584.353|219757.009|121.253 +638579.448|219761.517|120.576 +638574.422|219766.141|120.314 +638569.393|219770.768|120.091 +638564.412|219775.349|119.915 +638559.389|219779.966|119.607 +638554.363|219784.590|119.393 +638549.340|219789.211|119.177 +638544.262|219793.884|119.073 +638539.221|219798.526|119.226 +638534.137|219803.204|119.302 +638529.095|219807.844|119.461 +638524.014|219812.522|119.564 +638518.927|219817.204|119.781 +638513.840|219821.889|120.091 +638508.753|219826.574|120.421 +638503.666|219831.255|120.780 +638498.585|219835.934|121.061 +638493.507|219840.610|121.353 +638488.386|219845.322|121.524 +638483.320|219849.982|121.518 +638478.212|219854.685|121.466 +638473.106|219859.379|121.301 +638468.056|219864.027|121.018 +638462.954|219868.721|120.817 +638457.851|219873.415|120.652 +638452.791|219878.070|120.579 +638447.683|219882.770|120.655 +638442.578|219887.473|120.732 +638437.466|219892.176|120.920 +638432.355|219896.882|121.277 +638427.246|219901.588|121.579 +638422.135|219906.291|121.939 +638417.029|219910.994|122.234 +638411.924|219915.694|122.551 +638406.821|219920.391|122.826 +638401.719|219925.088|123.066 +638396.620|219929.782|123.271 +638391.523|219934.473|123.389 +638386.427|219939.167|123.584 +638381.282|219943.900|123.719 +638376.186|219948.591|123.926 +638371.093|219953.279|124.103 +638365.951|219958.013|124.368 +638360.809|219962.749|124.755 +638355.764|219967.391|124.953 +638350.631|219972.119|125.230 +638345.493|219976.846|125.203 +638340.402|219981.531|125.246 +638335.312|219986.216|125.188 +638330.173|219990.943|125.307 +638325.083|219995.628|125.279 +638319.990|220000.310|124.849 +638314.900|220004.995|124.956 +638309.806|220009.679|124.682 +638304.710|220014.364|124.097 +638299.614|220019.052|123.691 +638294.518|220023.740|123.536 +638289.418|220028.428|123.194 +638284.313|220033.119|122.451 +638279.217|220037.809|122.310 +638274.166|220042.455|122.143 +638269.052|220047.155|121.323 +638263.946|220051.849|120.860 +638258.886|220056.503|120.564 +638253.830|220061.154|120.323 +638248.727|220065.848|120.247 +638243.677|220070.496|120.390 +638238.632|220075.141|120.707 +638233.585|220079.787|120.948 +638228.541|220084.432|121.274 +638223.447|220089.120|121.618 +638218.452|220093.719|121.948 +638208.366|220103.000|122.752 +638203.361|220107.606|122.804 +638198.316|220112.248|123.191 +638193.324|220116.841|123.633 +638183.320|220126.046|124.063 +638178.328|220130.643|124.462 +638173.317|220135.251|124.502 +638168.306|220139.860|124.551 +638163.341|220144.426|124.575 +638158.324|220149.040|124.596 +638153.358|220153.606|124.639 +638148.390|220158.175|124.703 +638143.382|220162.784|124.855 +638138.466|220167.307|125.038 +638133.504|220171.873|125.191 +638128.581|220176.399|125.304 +638123.610|220180.974|125.328 +638118.678|220185.510|125.276 +638113.747|220190.042|125.270 +638108.812|220194.581|125.215 +638103.874|220199.122|125.139 +638098.939|220203.661|125.136 +638094.002|220208.202|125.121 +638089.109|220212.698|125.121 +638084.172|220217.240|125.142 +638079.280|220221.738|125.151 +638074.324|220226.295|124.962 +638069.441|220230.791|125.115 +638064.543|220235.293|125.130 +638059.647|220239.798|125.169 +638054.810|220244.251|126.017 +638049.906|220248.762|125.956 +638045.005|220253.270|126.011 +638040.094|220257.784|125.962 +638035.248|220262.240|126.114 +638030.350|220266.748|126.227 +638025.470|220271.235|126.032 +638020.557|220275.755|126.005 +638015.726|220280.196|125.870 +638010.800|220284.722|125.791 +638005.963|220289.172|125.624 +638001.083|220293.659|125.557 +637996.194|220298.152|125.416 +637991.360|220302.599|125.364 +637986.456|220307.107|125.096 +637981.603|220311.569|124.901 +637976.748|220316.031|124.731 +637971.892|220320.494|124.557 +637967.028|220324.965|124.334 +637962.184|220329.421|124.322 +637957.375|220333.841|124.228 +637952.501|220338.325|123.965 +637947.719|220342.723|124.161 +637942.930|220347.127|124.316 +637938.114|220351.556|124.246 +637933.271|220356.012|124.362 +637928.501|220360.398|124.301 +637923.673|220364.836|124.167 +637918.869|220369.253|124.301 +637914.066|220373.675|124.420 +637909.280|220378.074|124.310 +637904.434|220382.527|124.133 +637899.648|220386.928|124.078 +637889.989|220395.804|123.307 +637885.216|220400.193|123.011 +637875.597|220409.032|122.344 +637870.695|220413.531|121.521 +637856.269|220426.790|120.253 +637851.466|220431.200|119.570 +637846.583|220435.681|118.695 +637836.890|220444.581|117.229 +637832.080|220448.998|116.269 +637812.707|220466.777|112.581 +637798.250|220480.051|110.182 +637793.575|220484.348|110.082 +637788.500|220488.997|107.656 +637784.050|220493.096|109.137 +637779.286|220497.473|108.521 +637769.669|220506.300|106.811 +637764.890|220510.686|105.876 +637737.684|220535.732|110.323 +637733.194|220539.868|110.999 +637728.619|220544.077|111.478 +637706.313|220564.609|114.757 +637701.851|220568.717|115.385 +637697.380|220572.832|115.967 +637692.869|220576.977|116.041 +637683.883|220585.244|116.440 +637670.411|220597.628|116.669 +637665.879|220601.794|116.449 +637661.428|220605.888|116.693 +637652.528|220614.072|116.979 +637648.112|220618.129|116.928 +637643.595|220622.283|116.882 +637639.111|220626.404|116.781 +637630.247|220634.551|116.620 +637612.435|220650.919|115.849 +637608.030|220654.967|115.769 +637594.702|220667.211|114.517 +637590.227|220671.316|113.919 +637585.780|220675.404|113.456 +637581.382|220679.445|113.267 +637572.500|220687.599|112.042 +637568.172|220691.573|111.764 +637563.844|220695.551|111.487 +637559.390|220699.638|110.896 +637555.062|220703.613|110.435 +637546.409|220711.562|109.811 +637542.072|220715.543|109.128 +637529.166|220727.396|108.155 +637517.066|220738.534|110.048 +637513.250|220742.057|111.584 +637505.273|220749.403|112.901 +637484.912|220768.130|113.304 +637480.718|220771.983|112.813 +637472.498|220779.536|112.151 +637460.166|220790.868|111.066 +637455.904|220794.776|109.960 +637451.851|220798.500|109.527 +637443.331|220806.312|106.790 +637439.662|220809.696|107.994 +637435.788|220813.262|108.146 +637431.901|220816.834|108.274 +637424.342|220823.790|108.981 +637420.459|220827.359|108.936 +637416.744|220830.782|109.356 +637413.132|220834.107|110.210 +637405.789|220840.868|111.246 +637398.383|220847.683|111.856 +637390.884|220854.575|111.734 +637375.809|220868.428|110.710 +637372.124|220871.814|110.551 +637368.433|220875.207|110.384 +637364.757|220878.587|110.292 +637361.157|220881.894|110.292 +637339.596|220901.712|109.472 +637336.026|220904.992|109.274 +637546.641|220709.185|109.811 +637555.285|220701.217|110.518 +637559.601|220697.236|110.996 +637563.950|220693.228|111.399 +637590.425|220668.826|114.437 +637630.266|220632.082|116.626 +637634.768|220627.931|116.861 +637639.212|220623.828|116.827 +637643.698|220619.689|116.754 +637665.946|220599.161|116.214 +637675.038|220590.776|116.687 +637684.039|220582.467|116.169 +637688.550|220578.303|116.147 +637693.076|220574.128|115.922 +637706.524|220561.707|114.620 +637719.956|220549.295|112.438 +637742.649|220528.346|109.631 +637765.448|220507.294|105.857 +637775.256|220498.275|108.604 +637780.069|220493.837|108.948 +637784.672|220489.588|108.250 +637794.419|220480.618|110.207 +637804.069|220471.730|111.319 +637823.698|220453.670|115.907 +637833.354|220444.776|116.754 +637852.919|220426.766|120.030 +637857.769|220422.300|120.808 +637872.360|220408.862|122.137 +637886.944|220395.423|123.335 +637896.716|220386.422|123.990 +637901.532|220381.978|124.005 +637906.433|220377.464|124.325 +637911.289|220372.987|124.307 +637916.144|220368.509|124.289 +637920.981|220364.050|124.136 +637925.852|220359.560|124.307 +637930.705|220355.089|124.316 +637935.594|220350.581|124.261 +637940.473|220346.079|124.148 +637945.283|220341.644|123.847 +637950.200|220337.112|124.118 +637955.092|220332.604|124.182 +637959.959|220328.114|124.026 +637964.879|220323.581|124.386 +637969.817|220319.028|124.523 +637974.706|220314.523|124.642 +637979.643|220309.972|124.804 +637984.535|220305.467|125.005 +637989.473|220300.913|125.230 +637994.390|220296.384|125.243 +637999.318|220291.839|125.447 +638004.241|220287.301|125.581 +638009.166|220282.763|125.758 +638014.122|220278.194|125.809 +638019.030|220273.670|125.849 +638023.986|220269.101|125.907 +638028.896|220264.575|126.059 +638033.892|220259.970|126.072 +638038.775|220255.468|125.901 +638043.764|220250.868|125.919 +638048.699|220246.318|125.864 +638053.646|220241.758|125.971 +638058.562|220237.219|125.075 +638063.494|220232.672|125.020 +638068.474|220228.078|125.020 +638073.440|220223.500|124.801 +638078.435|220218.898|125.017 +638083.458|220214.265|125.005 +638088.381|220209.726|124.938 +638093.404|220205.099|124.944 +638098.375|220200.518|124.962 +638103.347|220195.937|124.974 +638108.370|220191.310|125.081 +638113.338|220186.732|125.093 +638118.312|220182.151|125.215 +638123.323|220177.536|125.197 +638128.285|220172.964|125.166 +638133.287|220168.356|125.023 +638138.286|220163.747|124.862 +638143.282|220159.141|124.663 +638148.280|220154.536|124.526 +638153.282|220149.927|124.459 +638158.284|220145.319|124.423 +638163.289|220140.707|124.429 +638168.294|220136.099|124.481 +638173.341|220131.447|124.490 +638178.386|220126.799|124.368 +638183.351|220122.218|123.591 +638193.437|220112.925|123.411 +638198.420|220108.331|123.100 +638203.501|220103.646|122.795 +638208.491|220099.050|122.560 +638213.563|220094.371|122.024 +638218.601|220089.729|121.823 +638223.633|220085.090|121.436 +638228.665|220080.451|121.122 +638233.747|220075.766|120.832 +638238.736|220071.170|120.567 +638248.904|220061.797|120.168 +638253.955|220057.146|120.500 +638258.999|220052.501|120.625 +638264.092|220047.810|120.945 +638269.140|220043.165|121.362 +638274.242|220038.471|122.237 +638279.281|220033.829|122.341 +638284.319|220029.190|122.536 +638289.415|220024.502|123.374 +638294.499|220019.820|123.520 +638299.535|220015.181|123.740 +638304.622|220010.499|124.167 +638309.660|220005.860|124.788 +638314.741|220001.182|124.938 +638319.819|219996.503|124.895 +638324.854|219991.867|125.331 +638329.932|219987.188|125.322 +638335.013|219982.510|125.252 +638340.043|219977.874|125.307 +638345.124|219973.195|125.331 +638350.202|219968.516|125.368 +638355.277|219963.837|125.041 +638360.312|219959.198|124.770 +638365.393|219954.514|124.465 +638370.477|219949.829|124.179 +638375.512|219945.187|123.984 +638380.596|219940.502|123.834 +638385.680|219935.817|123.719 +638390.719|219931.172|123.450 +638395.803|219926.487|123.453 +638400.893|219921.799|123.213 +638405.934|219917.151|122.926 +638410.979|219912.500|122.646 +638416.075|219907.806|122.326 +638421.123|219903.152|122.021 +638426.170|219898.497|121.673 +638431.221|219893.843|121.433 +638436.274|219889.186|121.091 +638441.371|219884.489|120.972 +638446.372|219879.880|120.872 +638451.420|219875.229|120.802 +638456.467|219870.578|120.817 +638461.466|219865.972|120.881 +638466.511|219861.330|121.097 +638471.555|219856.685|121.274 +638476.548|219852.085|121.551 +638481.598|219847.434|121.631 +638486.603|219842.826|121.655 +638491.617|219838.205|121.481 +638496.683|219833.535|121.219 +638501.654|219828.951|120.978 +638506.686|219824.312|120.512 +638511.761|219819.636|120.226 +638516.742|219815.043|119.896 +638521.768|219810.413|119.750 +638526.742|219805.829|119.616 +638531.774|219801.190|119.375 +638536.743|219796.615|119.445 +638541.729|219792.021|119.256 +638546.701|219787.440|119.308 +638551.669|219782.865|119.509 +638556.631|219778.293|119.756 +638561.599|219773.718|119.957 +638566.516|219769.192|120.241 +638571.441|219764.656|120.384 +638576.409|219760.081|120.610 +638581.332|219755.549|120.838 +638586.236|219751.029|120.652 +638591.198|219746.454|120.323 +638596.127|219741.915|120.530 +638601.013|219737.416|120.680 +638605.945|219732.872|120.213 +638615.918|219723.664|117.894 +638620.828|219719.137|117.818 +638625.748|219714.605|117.699 +638630.661|219710.079|117.659 +638635.532|219705.592|117.592 +638640.445|219701.066|117.610 +638645.325|219696.567|117.443 +638650.238|219692.044|117.546 +638659.998|219683.049|117.373 +638664.835|219678.593|117.303 +638669.727|219674.085|117.147 +638674.653|219669.543|116.644 +638679.554|219665.029|116.486 +638684.403|219660.558|116.364 +638689.298|219656.050|116.306 +638694.154|219651.575|116.163 +638699.037|219647.073|115.779 +638703.941|219642.550|115.202 +638708.867|219638.006|114.465 +638713.728|219633.522|113.907 +638718.632|219629.002|113.447 +638723.479|219624.533|113.121 +638728.319|219620.074|112.889 +638733.165|219615.606|112.615 +638738.042|219611.110|112.093 +638742.843|219606.690|112.319 +638747.765|219602.146|111.420 +638771.646|219580.151|112.279 +638776.383|219575.793|112.761 +638781.156|219571.398|112.944 +638785.868|219567.060|113.261 +638790.626|219562.677|113.590 +638795.384|219558.294|113.557 +638800.136|219553.920|113.998 +638804.885|219549.546|114.062 +638809.637|219545.169|114.142 +638814.376|219540.808|114.712 +638819.095|219536.461|114.703 +638823.895|219532.036|114.459 +638828.702|219527.607|114.200 +638833.509|219523.178|113.968 +638838.264|219518.792|113.770 +638843.076|219514.354|113.535 +638847.850|219509.953|113.258 +638852.647|219505.524|112.825 +638857.439|219501.104|112.471 +638862.261|219496.654|111.938 +638867.070|219492.216|111.499 +638871.816|219487.839|111.216 +638876.550|219483.472|111.021 +638881.326|219479.067|110.902 +638886.020|219474.742|111.051 +638890.753|219470.377|110.935 +638895.456|219466.043|111.051 +638900.114|219461.749|111.158 +638904.783|219457.445|111.520 +638897.947|219460.407|111.133 +638893.131|219464.830|110.993 +638888.312|219469.256|110.886 +638883.463|219473.712|111.021 +638878.592|219478.186|110.972 +638873.758|219482.627|111.051 +638868.866|219487.123|111.203 +638863.949|219491.643|111.560 +638859.018|219496.179|112.066 +638854.046|219500.751|112.520 +638849.139|219505.262|112.892 +638844.186|219509.816|113.285 +638839.300|219514.308|113.581 +638834.371|219518.835|113.831 +638829.461|219523.349|113.995 +638824.523|219527.887|114.386 +638819.607|219532.407|114.654 +638809.814|219541.405|114.565 +638804.952|219545.867|114.075 +638800.090|219550.330|113.986 +638795.131|219554.890|113.947 +638790.291|219559.334|113.733 +638785.369|219563.851|113.407 +638780.541|219568.285|113.139 +638775.630|219572.793|112.758 +638770.729|219577.295|112.727 +638765.919|219581.703|111.502 +638746.150|219599.869|111.844 +638741.215|219604.407|112.270 +638736.290|219608.931|112.179 +638731.303|219613.515|112.691 +638726.304|219618.108|112.892 +638721.354|219622.662|113.139 +638716.401|219627.213|113.416 +638711.436|219631.779|113.874 +638706.434|219636.375|114.230 +638701.457|219640.953|114.873 +638696.461|219645.546|115.257 +638691.493|219650.118|115.888 +638686.552|219654.657|116.245 +638681.550|219659.253|116.269 +638676.640|219663.767|116.397 +638671.666|219668.339|116.720 +638666.761|219672.844|116.818 +638661.799|219677.404|117.062 +638656.859|219681.943|117.074 +638651.906|219686.496|117.278 +638646.974|219691.029|117.272 +638641.996|219695.598|117.214 +638637.059|219700.136|117.309 +638632.127|219704.669|117.382 +638627.140|219709.253|117.540 +638622.206|219713.785|117.696 +638617.228|219718.357|117.769 +638612.126|219723.066|120.271 +638607.225|219727.562|119.424 +638602.162|219732.226|120.856 +638597.227|219736.758|120.524 +638592.274|219741.309|120.460 +638587.312|219745.871|120.597 +638582.341|219750.443|120.899 +638577.406|219754.979|120.674 +638572.468|219759.514|120.500 +638567.482|219764.099|120.378 +638562.593|219768.591|120.226 +638557.570|219773.206|119.924 +638552.638|219777.738|119.713 +638547.658|219782.316|119.564 +638542.729|219786.846|119.348 +638537.736|219791.433|119.430 +638532.750|219796.017|119.451 +638527.760|219800.605|119.552 +638522.771|219805.198|119.741 +638517.781|219809.785|119.902 +638512.795|219814.369|120.037 +638507.750|219819.008|120.427 +638502.757|219823.602|120.820 +638497.719|219828.235|121.140 +638492.690|219832.862|121.356 +638487.709|219837.443|121.582 +638482.689|219842.057|121.603 +638477.675|219846.666|121.570 +638472.661|219851.272|121.451 +638467.608|219855.917|121.219 +638462.643|219860.483|121.207 +638457.586|219865.128|121.009 +638452.526|219869.779|120.960 +638447.515|219874.388|120.957 +638442.450|219879.045|121.170 +638437.439|219883.650|121.180 +638432.379|219888.305|121.314 +638427.316|219892.962|121.615 +638422.253|219897.616|121.923 +638417.243|219902.228|122.182 +638412.134|219906.925|122.533 +638407.077|219911.576|122.844 +638402.021|219916.228|123.133 +638396.967|219920.876|123.350 +638391.917|219925.521|123.508 +638386.817|219930.209|123.655 +638381.770|219934.851|123.865 +638376.719|219939.493|123.981 +638371.626|219944.178|124.118 +638366.576|219948.823|124.389 +638361.531|219953.465|124.651 +638356.435|219958.150|124.974 +638351.345|219962.832|125.197 +638346.300|219967.471|125.279 +638341.213|219972.146|125.416 +638336.123|219976.828|125.279 +638331.078|219981.464|125.297 +638325.988|219986.143|125.398 +638320.846|219990.867|125.069 +638315.802|219995.503|124.919 +638310.709|220000.182|124.679 +638305.615|220004.864|124.316 +638300.565|220009.503|123.889 +638295.469|220014.187|123.566 +638290.327|220018.912|123.545 +638285.270|220023.554|122.880 +638280.168|220028.242|122.371 +638275.071|220032.927|122.438 +638269.963|220037.617|121.695 +638264.851|220042.311|121.006 +638259.792|220046.960|120.750 +638254.686|220051.650|120.500 +638249.627|220056.299|120.149 +638244.521|220060.990|120.073 +638239.425|220065.677|120.271 +638234.380|220070.320|120.607 +638224.237|220079.646|121.116 +638219.147|220084.331|121.494 +638203.967|220098.300|122.582 +638198.920|220102.945|122.832 +638193.876|220107.588|123.121 +638183.781|220116.875|123.712 +638178.733|220121.523|123.935 +638173.692|220126.162|124.362 +638168.635|220130.813|124.410 +638163.618|220135.428|124.365 +638158.549|220140.088|124.246 +638153.486|220144.746|124.249 +638148.469|220149.360|124.255 +638143.413|220154.012|124.459 +638138.405|220158.620|124.618 +638133.391|220163.232|124.761 +638128.334|220167.886|124.959 +638123.360|220172.461|125.005 +638118.340|220177.079|125.032 +638113.314|220181.700|125.032 +638108.333|220186.281|124.993 +638103.301|220190.911|124.904 +638098.311|220195.498|124.804 +638093.325|220200.085|124.761 +638088.344|220204.666|124.825 +638083.358|220209.254|124.804 +638078.374|220213.838|124.880 +638073.424|220218.389|124.776 +638068.484|220222.933|124.810 +638063.494|220227.523|124.837 +638058.547|220232.071|124.849 +638053.667|220236.567|125.742 +638048.769|220241.072|125.791 +638043.813|220245.632|125.718 +638038.878|220250.170|125.944 +638033.977|220254.681|125.980 +638029.067|220259.195|125.959 +638024.156|220263.712|125.965 +638019.185|220268.284|125.803 +638014.314|220272.762|125.776 +638009.398|220277.285|125.761 +638004.515|220281.775|125.627 +637999.583|220286.307|125.505 +637994.682|220290.815|125.203 +637989.748|220295.354|125.093 +637984.923|220299.792|125.160 +637980.021|220304.297|124.956 +637975.105|220308.817|124.627 +637970.213|220313.316|124.563 +637965.357|220317.781|124.392 +637960.502|220322.246|124.270 +637955.604|220326.751|124.225 +637950.718|220331.241|123.859 +637945.896|220335.679|124.112 +637941.080|220340.105|124.008 +637936.197|220344.594|123.761 +637931.421|220348.990|124.039 +637926.584|220353.443|124.228 +637921.783|220357.856|124.353 +637917.004|220362.251|124.249 +637912.185|220366.686|124.221 +637907.387|220371.097|124.426 +637902.562|220375.538|124.398 +637892.970|220384.356|124.097 +637888.136|220388.800|123.673 +637883.329|220393.216|123.511 +637859.232|220415.363|121.375 +637849.530|220424.275|119.939 +637839.935|220433.087|118.720 +637835.076|220437.549|118.092 +637830.224|220442.006|117.150 +637815.770|220455.277|114.980 +637805.941|220464.293|112.221 +637796.236|220473.199|110.170 +637791.533|220477.524|110.204 +637786.717|220481.947|109.509 +637781.724|220486.522|107.329 +637777.259|220490.637|108.713 +637772.522|220494.992|108.610 +637767.807|220499.323|108.049 +637762.924|220503.801|106.741 +637758.157|220508.181|106.217 +637753.618|220512.360|106.854 +637740.104|220524.805|109.149 +637735.644|220528.910|110.018 +637731.136|220533.065|110.883 +637717.533|220545.583|112.179 +637699.672|220562.027|114.794 +637690.759|220570.226|115.556 +637686.169|220574.448|115.468 +637677.205|220582.692|116.031 +637659.271|220599.188|116.458 +637650.306|220607.430|116.367 +637641.406|220615.614|116.717 +637636.926|220619.735|116.608 +637632.530|220623.776|116.708 +637628.047|220627.897|116.626 +637623.621|220631.970|116.595 +637619.229|220636.008|116.763 +637614.681|220640.181|116.160 +637610.298|220644.213|116.141 +637592.534|220660.535|114.864 +637579.199|220672.785|113.502 +637566.017|220684.898|112.331 +637552.642|220697.176|110.204 +637530.821|220717.219|107.787 +637526.603|220721.096|107.942 +637518.376|220728.668|108.768 +637510.366|220736.047|110.374 +637502.411|220743.365|112.048 +637498.458|220747.001|112.773 +637486.122|220758.334|113.148 +637477.847|220765.929|112.639 +637473.690|220769.749|112.322 +637469.505|220773.586|111.914 +637465.417|220777.338|111.712 +637457.194|220784.885|110.935 +637453.012|220788.719|110.167 +637448.824|220792.560|109.396 +637444.755|220796.294|109.137 +637440.244|220800.421|107.070 +637436.571|220803.804|108.265 +637432.569|220807.474|108.125 +637428.613|220811.110|108.168 +637424.745|220814.661|108.168 +637420.871|220818.221|108.366 +637417.030|220821.751|108.710 +637405.795|220832.080|110.323 +637402.116|220835.461|110.929 +637383.188|220852.843|110.954 +637379.326|220856.385|110.710 +637375.526|220859.872|110.292 +637371.731|220863.356|110.118 +637368.024|220866.757|109.893 +637364.300|220870.177|109.811 +637356.838|220877.026|109.433 +637353.184|220880.379|109.253 +637349.480|220883.777|109.103 +637345.951|220887.018|109.210 +637342.360|220890.315|109.301 +637338.687|220893.684|109.100 +637335.155|220896.927|109.030 +637331.570|220900.218|108.978 +637551.051|220696.231|110.158 +637559.781|220688.202|110.822 +637577.621|220671.798|113.523 +637590.892|220659.588|114.709 +637595.253|220655.573|114.840 +637604.160|220647.380|115.553 +637622.027|220630.939|116.745 +637626.410|220626.904|116.595 +637630.836|220622.829|116.684 +637635.237|220618.775|116.397 +637639.715|220614.651|116.544 +637644.143|220610.573|116.428 +637648.578|220606.488|116.096 +637653.092|220602.334|116.205 +637657.570|220598.210|116.141 +637671.024|220585.820|115.900 +637684.596|220573.320|115.629 +637702.628|220556.711|114.349 +637716.076|220544.309|112.215 +637738.796|220523.348|109.509 +637752.491|220510.711|107.598 +637756.868|220506.660|105.684 +637771.446|220493.249|108.692 +637790.518|220475.683|109.966 +637795.324|220471.257|110.356 +637800.207|220466.765|111.316 +637810.071|220457.697|114.014 +637815.066|220453.106|115.532 +637839.399|220430.707|118.772 +637844.269|220426.223|119.253 +637854.114|220417.167|121.100 +637893.153|220381.213|124.185 +637898.024|220376.726|124.209 +637902.913|220372.221|124.444 +637907.762|220367.750|124.337 +637912.609|220363.285|124.243 +637917.473|220358.801|124.310 +637922.347|220354.308|124.063 +637927.215|220349.819|123.792 +637932.085|220345.335|123.965 +637936.980|220340.821|123.996 +637941.857|220336.325|123.847 +637946.807|220331.765|123.947 +637951.705|220327.251|124.063 +637956.604|220322.740|124.179 +637961.553|220318.180|124.365 +637966.485|220313.636|124.395 +637971.371|220309.131|124.490 +637976.379|220304.522|124.849 +637981.314|220299.975|124.996 +637986.230|220295.442|124.990 +637991.159|220290.901|125.115 +637996.145|220286.307|125.389 +638001.129|220281.720|125.624 +638006.036|220277.197|125.614 +638011.001|220272.622|125.736 +638015.960|220268.053|125.788 +638020.919|220263.481|125.910 +638025.866|220258.924|125.864 +638030.819|220254.361|125.934 +638035.806|220249.765|125.855 +638040.738|220245.217|125.733 +638045.727|220240.621|125.721 +638050.723|220236.015|125.834 +638055.664|220231.458|125.258 +638065.542|220222.351|124.688 +638070.556|220217.727|124.478 +638075.552|220213.125|124.691 +638080.526|220208.541|124.624 +638085.504|220203.953|124.624 +638090.481|220199.360|124.676 +638095.501|220194.730|124.685 +638100.521|220190.100|124.724 +638105.496|220185.510|124.831 +638110.513|220180.883|124.859 +638115.527|220176.256|124.892 +638120.495|220171.675|124.916 +638125.545|220167.014|124.807 +638130.498|220162.442|124.673 +638135.500|220157.828|124.499 +638140.496|220153.216|124.304 +638145.491|220148.608|124.118 +638150.542|220143.947|124.054 +638155.547|220139.329|124.063 +638160.555|220134.712|124.167 +638165.605|220130.051|124.176 +638170.570|220125.476|124.420 +638175.600|220120.831|124.008 +638180.632|220116.186|123.676 +638185.615|220111.586|123.304 +638190.654|220106.935|123.179 +638200.676|220097.688|122.609 +638205.702|220093.045|122.079 +638210.685|220088.443|121.777 +638215.721|220083.798|121.490 +638220.802|220079.110|121.125 +638225.788|220074.504|120.893 +638230.827|220069.856|120.661 +638235.859|220065.211|120.332 +638240.894|220060.563|120.046 +638245.932|220055.915|119.973 +638251.026|220051.218|120.143 +638256.030|220046.606|120.616 +638261.124|220041.909|120.860 +638266.168|220037.258|121.131 +638271.222|220032.604|121.920 +638276.266|220027.952|122.429 +638281.350|220023.264|122.408 +638286.395|220018.616|123.194 +638291.433|220013.971|123.453 +638296.517|220009.280|123.749 +638301.555|220004.638|124.036 +638306.640|219999.950|124.532 +638311.672|219995.308|124.651 +638316.707|219990.669|125.118 +638321.785|219985.981|124.874 +638326.817|219981.342|125.392 +638331.850|219976.703|125.371 +638336.928|219972.018|125.410 +638341.957|219967.379|125.471 +638347.035|219962.694|125.377 +638352.113|219958.007|125.154 +638357.145|219953.364|124.959 +638362.180|219948.716|124.673 +638367.261|219944.025|124.432 +638372.297|219939.380|124.295 +638377.335|219934.732|124.090 +638382.419|219930.041|123.911 +638387.454|219925.393|123.746 +638392.542|219920.699|123.554 +638397.580|219916.051|123.383 +638402.670|219911.351|123.124 +638407.715|219906.696|122.853 +638412.808|219901.993|122.481 +638417.855|219897.336|122.155 +638422.903|219892.679|121.914 +638427.999|219887.973|121.640 +638433.046|219883.315|121.494 +638438.094|219878.658|121.375 +638443.190|219873.958|121.308 +638448.192|219869.343|121.201 +638453.288|219864.643|121.173 +638458.336|219859.986|121.234 +638463.380|219855.335|121.366 +638468.428|219850.680|121.414 +638473.472|219846.026|121.576 +638478.523|219841.372|121.670 +638483.573|219836.711|121.695 +638488.630|219832.048|121.628 +638493.650|219827.418|121.356 +638498.765|219822.696|121.106 +638503.794|219818.054|120.704 +638508.872|219813.370|120.314 +638513.944|219808.688|120.079 +638518.964|219804.055|119.957 +638523.993|219799.416|119.774 +638529.068|219794.734|119.604 +638534.045|219790.141|119.467 +638539.068|219785.511|119.485 +638544.082|219780.887|119.659 +638549.093|219776.263|119.857 +638554.110|219771.639|120.015 +638559.078|219767.058|120.229 +638564.089|219762.437|120.494 +638569.113|219757.807|120.625 +638574.044|219753.257|120.661 +638579.070|219748.624|120.777 +638584.051|219744.027|120.847 +638589.065|219739.401|120.472 +638594.039|219734.816|120.719 +638598.995|219730.241|120.527 +638603.991|219725.636|120.509 +638608.971|219721.036|120.058 +638614.007|219716.385|118.933 +638628.981|219702.559|117.562 +638633.895|219698.027|117.534 +638638.866|219693.440|117.446 +638643.795|219688.892|117.299 +638648.723|219684.347|117.202 +638653.664|219679.788|116.976 +638658.605|219675.228|116.772 +638663.534|219670.680|116.757 +638668.410|219666.184|116.806 +638673.363|219661.612|116.559 +638678.262|219657.095|116.434 +638683.193|219652.542|115.961 +638688.064|219648.046|115.641 +638692.947|219643.541|115.742 +638697.839|219639.027|115.285 +638702.798|219634.446|114.651 +638707.705|219629.916|114.130 +638712.600|219625.399|113.739 +638717.441|219620.931|113.444 +638722.372|219616.380|113.246 +638727.167|219611.951|112.959 +638732.059|219607.437|112.724 +638736.914|219602.957|112.410 +638741.755|219598.491|112.270 +638746.583|219594.038|112.255 +638751.551|219589.448|111.036 +638761.033|219580.703|111.816 +638765.706|219576.402|112.828 +638770.491|219571.989|112.886 +638775.237|219567.615|113.285 +638779.967|219563.250|113.404 +638784.759|219558.834|113.861 +638794.180|219550.147|114.154 +638798.929|219545.767|114.212 +638803.626|219541.436|114.693 +638817.802|219528.363|114.846 +638822.579|219523.952|114.413 +638827.260|219519.633|114.361 +638832.049|219515.214|113.895 +638836.743|219510.885|113.788 +638841.522|219506.478|113.450 +638846.207|219502.159|113.102 +638850.953|219497.779|112.700 +638855.701|219493.402|112.307 +638860.417|219489.053|111.834 +638865.171|219484.666|111.463 +638869.862|219480.341|111.210 +638874.529|219476.041|111.161 +638879.144|219471.786|111.121 +638883.813|219467.482|111.103 +638888.443|219463.215|111.024 +638893.085|219458.938|111.222 +638892.762|219456.546|111.252 +638888.062|219460.868|111.030 +638883.325|219465.223|111.054 +638878.549|219469.615|111.030 +638873.806|219473.977|111.155 +638868.988|219478.409|111.130 +638864.175|219482.838|111.435 +638859.316|219487.312|111.764 +638854.491|219491.750|112.215 +638849.624|219496.231|112.636 +638844.713|219500.751|113.060 +638839.861|219505.216|113.444 +638834.975|219509.715|113.758 +638830.107|219514.193|113.941 +638825.215|219518.691|114.334 +638820.372|219523.148|114.401 +638815.428|219527.698|114.892 +638800.855|219541.100|114.483 +638795.982|219545.578|114.126 +638791.065|219550.098|114.111 +638781.290|219559.087|113.727 +638776.410|219563.573|113.496 +638771.488|219568.097|113.224 +638766.599|219572.589|112.685 +638761.652|219577.140|112.670 +638756.827|219581.566|111.578 +638751.904|219586.092|111.377 +638746.808|219590.789|112.334 +638741.822|219595.373|112.307 +638736.826|219599.970|112.429 +638731.861|219604.535|112.715 +638726.810|219609.184|112.947 +638721.802|219613.792|113.249 +638716.755|219618.437|113.508 +638711.756|219623.037|113.785 +638706.715|219627.676|114.047 +638701.655|219632.333|114.526 +638696.580|219637.006|115.193 +638691.514|219641.669|115.809 +638686.482|219646.302|116.126 +638681.496|219650.880|115.452 +638676.405|219655.571|116.452 +638671.349|219660.223|116.583 +638666.289|219664.880|116.815 +638661.296|219669.470|116.854 +638656.252|219674.112|116.949 +638651.201|219678.757|117.138 +638646.160|219683.396|117.278 +638641.073|219688.072|117.379 +638636.089|219692.659|117.464 +638625.961|219701.977|117.885 +638620.880|219706.650|118.061 +638615.701|219711.426|119.573 +638610.620|219716.108|120.497 +638605.564|219720.759|120.482 +638600.510|219725.404|120.411 +638595.484|219730.028|120.701 +638590.382|219734.725|120.762 +638585.377|219739.324|120.762 +638580.317|219743.979|120.972 +638575.239|219748.642|120.686 +638570.243|219753.235|120.686 +638565.156|219757.911|120.643 +638560.124|219762.532|120.442 +638555.095|219767.153|120.268 +638550.072|219771.767|120.027 +638545.039|219776.391|119.902 +638539.967|219781.052|119.698 +638534.932|219785.678|119.662 +638529.903|219790.302|119.628 +638524.816|219794.978|119.753 +638519.771|219799.614|119.994 +638514.736|219804.241|120.125 +638509.652|219808.916|120.329 +638504.614|219813.549|120.619 +638499.569|219818.188|121.033 +638494.488|219822.861|121.286 +638489.410|219827.531|121.539 +638484.381|219832.154|121.750 +638479.318|219836.809|121.725 +638474.304|219841.414|121.634 +638469.242|219846.066|121.551 +638464.231|219850.671|121.430 +638459.223|219855.271|121.228 +638454.157|219859.928|121.372 +638449.097|219864.579|121.359 +638444.083|219869.188|121.433 +638439.024|219873.836|121.484 +638434.010|219878.448|121.625 +638428.950|219883.096|121.728 +638423.890|219887.750|121.923 +638418.928|219892.313|122.103 +638413.865|219896.964|122.393 +638408.809|219901.618|122.713 +638403.798|219906.224|123.075 +638398.741|219910.875|123.420 +638393.733|219915.478|123.700 +638388.732|219920.077|123.755 +638383.681|219924.719|123.938 +638378.679|219929.319|124.124 +638373.632|219933.958|124.221 +638368.630|219938.554|124.350 +638363.628|219943.154|124.676 +638358.584|219947.793|124.852 +638353.536|219952.432|125.093 +638348.586|219956.982|125.392 +638343.545|219961.618|125.386 +638338.500|219966.255|125.508 +638333.508|219970.842|125.493 +638328.463|219975.478|125.529 +638323.468|219980.068|125.422 +638318.472|219984.658|125.032 +638308.429|219993.885|124.703 +638303.427|219998.478|124.304 +638298.376|220003.114|123.895 +638293.378|220007.710|123.636 +638288.376|220012.304|123.435 +638283.319|220016.946|122.804 +638278.311|220021.542|122.313 +638273.313|220026.139|122.396 +638268.250|220030.784|121.655 +638263.233|220035.389|121.012 +638258.228|220039.989|120.860 +638253.214|220044.591|120.527 +638248.194|220049.200|119.921 +638243.137|220053.845|119.808 +638238.181|220058.402|119.909 +638233.137|220063.041|120.293 +638228.138|220067.637|120.610 +638223.136|220072.237|120.856 +638218.138|220076.833|121.085 +638213.139|220081.430|121.436 +638208.137|220086.029|121.640 +638203.138|220090.622|121.935 +638198.192|220095.170|122.338 +638193.147|220099.806|122.682 +638188.151|220104.399|123.112 +638183.137|220109.002|123.054 +638173.189|220118.149|123.670 +638168.193|220122.739|124.063 +638163.194|220127.336|124.365 +638158.208|220131.911|123.999 +638153.188|220136.519|123.923 +638148.171|220141.128|123.901 +638143.212|220145.688|124.087 +638138.185|220150.302|123.993 +638133.229|220154.856|124.285 +638128.218|220159.462|124.484 +638123.250|220164.024|124.596 +638118.279|220168.590|124.697 +638113.256|220173.205|124.700 +638108.324|220177.734|124.688 +638103.292|220182.358|124.618 +638098.357|220186.891|124.575 +638093.364|220191.475|124.450 +638088.335|220196.096|124.481 +638083.394|220200.634|124.441 +638078.405|220205.215|124.423 +638073.464|220209.754|124.435 +638068.465|220214.344|124.322 +638063.482|220218.922|124.474 +638058.581|220223.424|124.410 +638053.649|220227.962|125.243 +638048.717|220232.492|125.496 +638043.770|220237.036|125.538 +638038.830|220241.575|125.666 +638033.883|220246.119|125.752 +638028.936|220250.667|125.834 +638024.013|220255.184|125.688 +638019.011|220259.777|125.761 +638014.098|220264.295|125.730 +638009.130|220268.858|125.666 +638004.201|220273.384|125.535 +637999.273|220277.907|125.450 +637994.338|220282.439|125.307 +637989.391|220286.981|125.054 +637984.444|220291.522|124.849 +637979.558|220296.009|124.785 +637974.578|220300.584|124.755 +637969.713|220305.053|124.471 +637964.760|220309.600|124.301 +637959.865|220314.093|124.255 +637954.961|220318.598|124.133 +637950.035|220323.118|123.844 +637945.122|220327.629|123.700 +637940.278|220332.079|123.767 +637935.411|220336.548|123.652 +637930.525|220341.040|123.807 +637925.685|220345.487|123.969 +637920.811|220349.962|123.865 +637916.004|220354.378|123.926 +637911.176|220358.813|124.258 +637906.311|220363.282|124.282 +637901.505|220367.698|124.420 +637896.680|220372.130|124.417 +637886.975|220381.039|124.002 +637882.138|220385.480|123.569 +637877.258|220389.961|123.609 +637872.488|220394.341|123.368 +637867.617|220398.812|123.142 +637862.719|220403.305|122.344 +637848.158|220416.664|120.805 +637843.224|220421.188|119.860 +637833.531|220430.082|118.683 +637823.817|220438.994|117.482 +637819.023|220443.392|117.013 +637814.173|220447.839|116.205 +637804.307|220456.880|113.502 +637794.477|220465.887|110.868 +637789.637|220470.325|109.972 +637784.891|220474.683|109.737 +637780.151|220479.033|109.582 +637775.342|220483.443|108.646 +637770.361|220488.003|106.942 +637765.856|220492.148|108.076 +637742.597|220513.515|108.524 +637733.474|220521.903|109.582 +637724.327|220530.309|110.222 +637719.801|220534.470|110.704 +637715.308|220538.600|111.402 +637688.473|220563.274|115.017 +637683.904|220567.474|115.050 +637670.384|220579.891|115.489 +637665.872|220584.037|115.632 +637652.461|220596.357|116.041 +637647.984|220600.468|116.175 +637643.567|220604.525|116.373 +637634.646|220612.718|116.355 +637630.211|220616.793|116.504 +637603.617|220641.211|116.025 +637590.191|220653.531|114.754 +637585.780|220657.579|114.450 +637563.578|220677.946|111.990 +637550.301|220690.125|110.304 +637545.891|220694.170|109.695 +637537.189|220702.153|108.863 +637532.830|220706.152|108.576 +637524.241|220714.034|107.909 +637520.038|220717.893|107.906 +637515.959|220721.642|108.482 +637503.929|220732.709|110.944 +637483.629|220751.375|112.703 +637479.453|220755.210|112.502 +637475.369|220758.965|112.478 +637471.184|220762.805|112.045 +637462.979|220770.343|111.694 +637458.834|220774.150|111.258 +637454.679|220777.963|110.804 +637446.300|220785.653|109.423 +637442.161|220789.448|108.878 +637437.687|220793.544|106.726 +637434.099|220796.854|108.271 +637430.060|220800.564|107.966 +637426.074|220804.225|107.896 +637422.120|220807.858|107.963 +637391.732|220835.799|110.332 +637384.103|220842.812|110.323 +637380.314|220846.290|110.137 +637376.477|220849.814|109.975 +637372.682|220853.300|109.792 +637368.899|220856.775|109.664 +637365.126|220860.241|109.372 +637361.386|220863.673|109.237 +637357.628|220867.126|109.036 +637353.876|220870.574|108.872 +637350.172|220873.972|108.707 +637346.466|220877.377|108.536 +637342.820|220880.723|108.411 +637339.157|220884.091|108.427 +637335.633|220887.331|108.570 +637332.049|220890.626|108.704 +637328.477|220893.906|108.698 +637524.320|220711.394|107.802 +637528.691|220707.371|108.183 +637537.326|220699.422|108.741 +637541.861|220695.255|109.945 +637546.180|220691.278|109.929 +637555.029|220683.136|110.929 +637568.477|220670.768|112.950 +637572.917|220666.680|113.392 +637581.827|220658.478|114.230 +637586.201|220654.452|114.145 +637590.739|220650.276|114.651 +637608.844|220633.622|117.178 +637617.616|220625.532|116.367 +637622.057|220621.442|116.260 +637630.982|220613.221|116.330 +637635.426|220609.125|116.016 +637644.415|220600.846|115.995 +637657.960|220588.368|115.891 +637662.407|220584.268|115.431 +637666.951|220580.083|115.519 +637676.059|220571.692|115.300 +637712.169|220538.405|111.725 +637716.640|220534.278|110.679 +637735.010|220517.355|109.186 +637739.595|220513.131|108.552 +637744.161|220508.922|107.829 +637748.757|220504.685|107.302 +637753.314|220500.485|106.534 +637758.261|220495.943|107.979 +637762.991|220491.591|108.052 +637772.504|220482.840|108.594 +637777.262|220478.460|108.939 +637782.136|220473.982|109.731 +637786.900|220469.599|109.823 +637791.679|220465.204|110.374 +637801.591|220456.103|113.017 +637811.537|220446.971|115.711 +637821.306|220437.994|117.327 +637826.179|220433.514|118.107 +637840.743|220420.121|119.515 +637845.690|220415.573|120.259 +637850.600|220411.059|121.125 +637860.357|220402.089|122.088 +637865.300|220397.544|122.941 +637870.122|220393.109|123.246 +637889.627|220375.166|124.164 +637894.513|220370.670|124.337 +637899.365|220366.202|124.258 +637904.220|220361.733|124.221 +637909.061|220357.274|124.087 +637913.919|220352.800|123.694 +637918.790|220348.319|123.840 +637923.688|220343.808|123.837 +637928.534|220339.346|123.374 +637933.445|220334.826|123.530 +637938.334|220330.327|123.499 +637943.272|220325.779|123.514 +637948.176|220321.268|123.667 +637953.132|220316.705|123.920 +637958.085|220312.151|124.118 +637963.010|220307.616|124.103 +637967.960|220303.062|124.371 +637972.907|220298.509|124.627 +637977.876|220293.940|124.602 +637982.801|220289.404|124.685 +637987.733|220284.866|124.871 +637992.719|220280.278|125.130 +637997.697|220275.700|125.346 +638002.659|220271.131|125.401 +638007.575|220266.608|125.520 +638012.580|220262.003|125.578 +638017.494|220257.479|125.733 +638022.486|220252.886|125.663 +638027.433|220248.332|125.672 +638032.426|220243.736|125.675 +638037.406|220239.149|125.587 +638042.341|220234.607|125.505 +638047.315|220230.026|125.340 +638052.302|220225.436|125.361 +638057.212|220220.909|124.380 +638062.189|220216.325|124.316 +638067.164|220211.747|124.225 +638072.150|220207.157|124.304 +638077.173|220202.533|124.249 +638082.154|220197.949|124.289 +638087.177|220193.322|124.304 +638092.151|220188.744|124.307 +638097.178|220184.114|124.404 +638102.149|220179.539|124.420 +638107.175|220174.912|124.578 +638112.192|220170.294|124.575 +638117.203|220165.679|124.542 +638122.211|220161.065|124.471 +638127.219|220156.456|124.383 +638132.214|220151.851|124.148 +638137.210|220147.251|123.853 +638142.273|220142.591|124.008 +638147.223|220138.031|123.807 +638152.276|220133.377|123.825 +638157.284|220128.768|123.865 +638162.350|220124.105|124.173 +638167.340|220119.508|123.895 +638172.326|220114.915|123.551 +638182.406|220105.631|123.127 +638187.399|220101.031|122.947 +638192.437|220096.392|122.661 +638197.414|220091.805|122.146 +638202.453|220087.166|121.841 +638207.485|220082.527|121.521 +638212.523|220077.885|121.277 +638217.513|220073.291|120.991 +638222.551|220068.649|120.823 +638227.586|220064.010|120.500 +638232.625|220059.371|120.186 +638237.657|220054.732|119.814 +638242.699|220050.090|119.717 +638247.746|220045.445|119.820 +638252.803|220040.793|120.424 +638257.807|220036.191|120.884 +638262.898|220031.503|121.085 +638267.948|220026.858|121.692 +638272.999|220022.213|122.338 +638278.037|220017.574|122.387 +638283.082|220012.935|122.841 +638288.126|220008.296|123.459 +638293.164|220003.660|123.664 +638298.203|219999.024|123.944 +638303.241|219994.388|124.429 +638308.276|219989.752|124.715 +638313.315|219985.119|125.108 +638318.347|219980.486|125.096 +638323.428|219975.810|125.502 +638328.415|219971.220|125.621 +638333.444|219966.590|125.578 +638338.476|219961.957|125.602 +638343.508|219957.321|125.435 +638348.541|219952.688|125.422 +638353.576|219948.049|125.148 +638358.562|219943.455|125.002 +638363.598|219938.819|124.761 +638368.636|219934.177|124.481 +638373.626|219929.584|124.353 +638378.664|219924.942|124.206 +638383.702|219920.303|124.011 +638388.741|219915.661|123.895 +638393.779|219911.022|123.792 +638398.823|219906.373|123.505 +638403.822|219901.768|123.155 +638408.870|219897.120|122.789 +638413.871|219892.511|122.475 +638418.919|219887.860|122.192 +638423.966|219883.212|122.057 +638428.968|219878.606|121.911 +638434.016|219873.958|121.811 +638439.066|219869.307|121.695 +638444.022|219864.744|121.609 +638449.070|219860.096|121.576 +638454.120|219855.441|121.579 +638459.125|219850.827|121.481 +638464.124|219846.221|121.631 +638469.126|219841.609|121.667 +638474.128|219837.001|121.756 +638479.129|219832.389|121.832 +638484.137|219827.774|121.838 +638489.154|219823.148|121.622 +638494.174|219818.515|121.341 +638499.197|219813.885|121.079 +638504.230|219809.243|120.658 +638509.207|219804.649|120.399 +638514.227|219800.019|120.287 +638519.208|219795.429|120.110 +638524.185|219790.839|119.976 +638529.220|219786.194|119.689 +638534.192|219781.612|119.741 +638539.160|219777.034|119.887 +638544.171|219772.414|120.101 +638549.096|219767.875|120.210 +638554.113|219763.254|120.390 +638559.082|219758.676|120.597 +638564.050|219754.095|120.811 +638569.030|219749.505|120.832 +638573.968|219744.951|120.835 +638578.936|219740.376|121.109 +638583.953|219735.746|120.683 +638588.943|219731.147|120.713 +638593.905|219726.572|120.460 +638598.913|219721.954|120.277 +638603.869|219717.385|120.177 +638608.804|219712.834|120.360 +638613.763|219708.262|120.271 +638618.780|219703.638|120.094 +638623.742|219699.060|120.000 +638628.792|219694.397|118.857 +638633.614|219689.959|119.982 +638638.799|219685.158|117.281 +638643.712|219680.629|117.354 +638648.702|219676.029|117.132 +638653.643|219671.473|116.943 +638658.575|219666.925|116.873 +638663.555|219662.332|116.836 +638668.453|219657.818|116.684 +638673.501|219653.157|115.977 +638678.341|219648.701|116.486 +638683.279|219644.147|116.495 +638688.219|219639.591|116.004 +638693.224|219634.973|115.376 +638698.138|219630.434|114.712 +638703.136|219625.826|114.242 +638708.068|219621.275|113.968 +638713.006|219616.721|113.685 +638717.892|219612.213|113.425 +638722.833|219607.657|113.169 +638727.740|219603.130|112.801 +638732.678|219598.577|112.636 +638737.570|219594.066|112.468 +638742.459|219589.558|112.340 +638747.275|219585.117|112.462 +638752.167|219580.609|112.386 +638757.004|219576.152|112.804 +638761.853|219571.681|112.700 +638766.626|219567.286|113.276 +638771.418|219562.872|113.706 +638776.212|219558.453|113.727 +638785.820|219549.598|114.066 +638790.654|219545.145|114.221 +638795.348|219540.820|114.715 +638809.734|219527.558|114.706 +638814.547|219523.117|114.361 +638819.326|219518.710|114.300 +638824.130|219514.275|114.059 +638828.864|219509.907|114.035 +638833.698|219505.442|113.614 +638838.471|219501.034|113.337 +638843.268|219496.606|112.901 +638848.066|219492.174|112.487 +638852.836|219487.766|111.950 +638857.622|219483.347|111.688 +638862.346|219478.985|111.530 +638867.101|219474.599|111.203 +638871.822|219470.237|111.106 +638876.537|219465.888|111.097 +638881.207|219461.578|111.066 +638885.913|219457.237|111.164 +638880.905|219458.115|111.213 +638876.309|219462.343|110.987 +638871.609|219466.662|111.127 +638866.869|219471.021|111.240 +638862.184|219475.330|111.335 +638857.414|219479.720|111.722 +638852.620|219484.127|111.923 +638847.862|219488.507|112.276 +638843.037|219492.948|112.776 +638838.224|219497.377|113.218 +638833.426|219501.790|113.572 +638828.626|219506.207|113.983 +638823.883|219510.565|113.980 +638819.019|219515.043|114.197 +638814.212|219519.463|114.346 +638809.402|219523.888|114.572 +638790.114|219541.622|114.529 +638785.280|219546.066|114.270 +638780.486|219550.470|114.102 +638775.633|219554.932|114.041 +638770.775|219559.401|114.053 +638765.916|219563.860|113.645 +638761.119|219568.270|113.179 +638756.214|219572.772|112.779 +638751.368|219577.231|112.776 +638746.433|219581.767|112.703 +638741.621|219586.189|112.414 +638736.613|219590.795|112.612 +638731.715|219595.300|112.721 +638726.713|219599.899|112.913 +638721.802|219604.420|113.212 +638716.791|219609.028|113.535 +638711.842|219613.582|113.794 +638706.837|219618.187|114.154 +638701.844|219622.781|114.419 +638696.797|219627.426|114.782 +638691.770|219632.053|115.465 +638686.744|219636.680|116.160 +638681.648|219641.368|116.638 +638676.677|219645.943|116.870 +638671.715|219650.502|116.486 +638666.691|219655.123|116.806 +638661.641|219659.768|116.922 +638656.624|219664.380|116.669 +638651.616|219668.986|116.909 +638646.575|219673.625|117.019 +638641.457|219678.337|118.034 +638636.260|219683.128|119.521 +638631.222|219687.764|119.713 +638626.183|219692.400|119.942 +638621.099|219697.076|120.149 +638616.088|219701.685|120.088 +638611.032|219706.330|119.982 +638605.951|219711.005|120.265 +638600.888|219715.663|120.351 +638595.816|219720.326|120.546 +638590.753|219724.983|120.689 +638585.697|219729.635|120.756 +638580.588|219734.332|120.893 +638575.526|219738.989|121.137 +638570.445|219743.665|120.945 +638565.400|219748.307|120.966 +638560.316|219752.982|120.869 +638555.241|219757.649|120.640 +638550.169|219762.315|120.393 +638545.131|219766.948|120.360 +638540.062|219771.612|120.110 +638534.932|219776.330|120.088 +638529.918|219780.939|119.698 +638524.776|219785.672|119.960 +638519.689|219790.354|120.140 +638514.605|219795.036|120.283 +638509.524|219799.711|120.433 +638504.394|219804.433|120.591 +638499.301|219809.124|121.049 +638494.217|219813.802|121.335 +638489.090|219818.524|121.609 +638484.012|219823.196|121.847 +638478.898|219827.902|121.847 +638473.838|219832.557|121.768 +638468.775|219837.214|121.682 +638463.667|219841.914|121.676 +638458.564|219846.608|121.490 +638453.496|219851.275|121.676 +638448.390|219855.972|121.646 +638443.279|219860.675|121.743 +638438.222|219865.329|121.786 +638433.114|219870.032|121.932 +638428.054|219874.686|122.012 +638422.948|219879.386|122.167 +638417.843|219884.083|122.246 +638412.783|219888.741|122.521 +638407.727|219893.398|122.853 +638402.621|219898.098|123.161 +638397.516|219902.795|123.536 +638392.462|219907.449|123.792 +638387.366|219912.140|123.969 +638382.315|219916.788|124.051 +638377.219|219921.479|124.267 +638372.123|219926.170|124.438 +638367.075|219930.812|124.554 +638362.028|219935.461|124.819 +638356.935|219940.148|125.005 +638351.890|219944.790|125.182 +638346.846|219949.433|125.331 +638341.756|219954.117|125.447 +638336.760|219958.714|125.541 +638331.673|219963.399|125.633 +638326.628|219968.038|125.645 +638321.590|219972.674|125.462 +638316.546|219977.313|125.121 +638311.501|219981.952|125.105 +638306.502|219986.548|124.694 +638301.409|219991.233|124.420 +638296.362|219995.875|123.975 +638291.360|220000.471|123.633 +638286.312|220005.117|123.502 +638281.305|220009.716|122.807 +638276.251|220014.364|122.402 +638271.203|220019.009|122.256 +638266.189|220023.615|121.618 +638261.179|220028.220|121.079 +638256.122|220032.872|120.838 +638251.108|220037.480|120.363 +638246.091|220042.092|119.738 +638241.080|220046.701|119.546 +638236.075|220051.306|119.683 +638231.076|220055.909|119.979 +638226.081|220060.508|120.384 +638221.082|220065.110|120.664 +638216.080|220069.713|120.878 +638211.127|220074.273|121.070 +638206.129|220078.875|121.350 +638201.127|220083.478|121.576 +638196.180|220088.035|121.911 +638191.190|220092.628|122.466 +638186.195|220097.227|122.801 +638181.245|220101.784|123.036 +638176.234|220106.396|123.036 +638166.322|220115.515|123.377 +638161.375|220120.072|123.761 +638156.406|220124.644|123.658 +638151.405|220129.247|123.938 +638146.476|220133.779|123.749 +638141.508|220138.351|123.731 +638136.539|220142.920|123.770 +638131.571|220147.492|123.840 +638126.612|220152.055|124.066 +638121.699|220156.578|124.279 +638116.731|220161.150|124.343 +638111.759|220165.725|124.407 +638106.834|220170.258|124.450 +638101.850|220174.842|124.359 +638096.912|220179.380|124.285 +638091.926|220183.971|124.173 +638087.040|220188.466|124.167 +638082.050|220193.054|124.100 +638077.119|220197.592|124.173 +638072.175|220202.140|124.112 +638067.231|220206.687|124.084 +638062.339|220211.189|124.090 +638057.355|220215.776|124.215 +638052.521|220220.230|125.047 +638047.593|220224.765|125.288 +638042.646|220229.319|125.279 +638037.754|220233.821|125.389 +638032.810|220238.368|125.489 +638027.915|220242.873|125.599 +638022.956|220247.436|125.547 +638018.094|220251.908|125.541 +638013.144|220256.461|125.636 +638008.215|220260.994|125.459 +638003.299|220265.520|125.404 +637998.379|220270.046|125.368 +637993.490|220274.539|125.191 +637988.550|220279.087|124.950 +637983.612|220283.625|124.813 +637978.662|220288.179|124.551 +637973.819|220292.632|124.435 +637968.893|220297.164|124.474 +637963.992|220301.672|124.310 +637959.057|220306.208|123.828 +637954.168|220310.707|123.831 +637949.255|220315.224|123.633 +637944.399|220319.689|123.545 +637939.498|220324.200|123.478 +637934.588|220328.717|123.377 +637929.735|220333.183|123.386 +637924.886|220337.642|123.463 +637919.997|220342.138|123.185 +637915.151|220346.603|123.728 +637910.368|220351.004|124.002 +637905.501|220355.482|123.993 +637900.654|220359.944|124.167 +637895.842|220364.370|124.240 +637890.989|220368.838|124.392 +637881.296|220377.751|124.100 +637876.484|220382.176|123.859 +637861.850|220395.633|122.899 +637856.982|220400.108|122.329 +637852.109|220404.585|121.756 +637847.235|220409.066|121.204 +637842.331|220413.571|120.466 +637837.442|220418.064|119.857 +637832.641|220422.477|119.598 +637827.703|220427.012|118.711 +637813.076|220440.439|116.541 +637808.217|220444.898|116.016 +637803.331|220449.382|114.980 +637798.278|220454.009|113.176 +637788.427|220463.043|110.758 +637778.722|220471.952|109.506 +637773.930|220476.351|108.994 +637764.238|220485.245|107.354 +637754.896|220493.837|108.094 +637745.313|220502.633|106.735 +637722.443|220523.677|109.908 +637717.725|220528.014|109.817 +637704.247|220540.423|112.496 +637686.157|220557.065|114.709 +637658.890|220582.129|115.410 +637622.996|220615.123|116.437 +637614.026|220623.365|116.294 +637591.626|220643.939|114.831 +637582.714|220652.123|114.486 +637578.276|220656.198|114.050 +637564.862|220668.512|112.642 +637547.101|220684.819|110.603 +637508.443|220720.328|109.384 +637504.319|220724.123|109.759 +637479.889|220746.587|112.313 +637475.698|220750.430|112.033 +637471.605|220754.192|112.194 +637463.287|220761.824|111.773 +637454.996|220769.432|111.085 +637450.778|220773.296|110.350 +637446.681|220777.058|110.146 +637442.393|220780.987|109.155 +637429.923|220792.417|107.101 +637426.055|220795.974|107.485 +637418.249|220803.142|108.015 +637410.587|220810.183|108.747 +637406.658|220813.789|108.735 +637399.111|220820.723|109.350 +637387.629|220831.266|109.829 +637383.868|220834.720|109.917 +637376.236|220841.724|109.710 +637372.426|220845.220|109.649 +637368.655|220848.680|109.551 +637364.955|220852.078|109.524 +637361.139|220855.577|109.283 +637357.335|220859.067|109.091 +637353.629|220862.466|108.881 +637349.928|220865.861|108.704 +637346.155|220869.324|108.463 +637342.430|220872.744|108.216 +637338.809|220876.063|108.183 +637335.222|220879.358|108.274 +637331.659|220882.628|108.472 +637328.123|220885.878|108.576 +637324.532|220889.172|108.689 +637516.026|220710.791|107.835 +637528.968|220698.858|108.408 +637546.625|220682.588|110.524 +637555.489|220674.419|111.652 +637568.992|220661.980|113.511 +637573.408|220657.908|113.599 +637577.889|220653.778|114.026 +637582.348|220649.669|114.364 +637586.816|220645.551|114.770 +637591.297|220641.415|115.017 +637595.799|220637.267|115.382 +637613.797|220620.674|116.230 +637618.278|220616.537|116.062 +637631.790|220604.074|116.050 +637640.787|220595.771|115.806 +637645.292|220591.611|115.611 +637654.287|220583.311|114.892 +637658.838|220579.114|114.995 +637663.382|220574.920|114.794 +637667.966|220570.689|114.852 +637672.581|220566.434|114.800 +637677.098|220562.265|114.498 +637690.793|220549.625|113.675 +637695.335|220545.431|113.291 +637699.824|220541.282|112.322 +637708.846|220532.943|110.667 +637713.409|220528.731|110.164 +637717.963|220524.521|109.317 +637731.834|220511.717|108.122 +637745.749|220498.869|107.009 +637750.567|220494.428|107.625 +637755.420|220489.957|108.165 +637760.108|220485.632|107.970 +637764.933|220481.185|108.384 +637769.752|220476.741|108.780 +637774.531|220472.336|109.268 +637779.380|220467.868|109.576 +637789.113|220458.904|111.225 +637794.145|220454.280|112.898 +637799.113|220449.705|114.187 +637808.937|220440.661|116.089 +637818.767|220431.612|117.830 +637823.674|220427.089|118.543 +637828.538|220422.605|118.951 +637838.320|220413.595|120.271 +637843.205|220409.093|120.936 +637848.122|220404.564|121.500 +637852.974|220400.092|121.996 +637857.885|220395.569|122.563 +637862.783|220391.055|123.106 +637867.660|220386.559|123.493 +637872.564|220382.036|123.737 +637877.419|220377.562|124.005 +637882.272|220373.084|123.886 +637887.152|220368.582|124.002 +637892.050|220364.068|124.304 +637896.884|220359.606|124.100 +637901.785|220355.086|124.063 +637906.628|220350.617|123.947 +637911.499|220346.121|123.694 +637916.330|220341.659|123.097 +637921.213|220337.160|123.395 +637926.145|220332.610|123.298 +637931.031|220328.099|123.264 +637935.929|220323.584|123.335 +637940.821|220319.070|123.389 +637945.759|220314.517|123.450 +637950.703|220309.957|123.572 +637955.634|220305.406|123.633 +637960.609|220300.825|124.124 +637965.546|220296.271|124.276 +637970.515|220291.690|124.261 +637975.446|220287.139|124.420 +637980.427|220282.549|124.590 +637985.358|220277.998|124.819 +637990.342|220273.408|125.063 +637995.264|220268.867|125.227 +638000.272|220264.246|125.322 +638005.231|220259.674|125.386 +638010.191|220255.099|125.511 +638015.189|220250.490|125.544 +638020.130|220245.930|125.502 +638025.123|220241.328|125.502 +638030.057|220236.774|125.416 +638035.047|220232.172|125.456 +638040.064|220227.542|125.236 +638044.996|220222.994|125.157 +638049.985|220218.389|125.276 +638054.938|220213.814|124.237 +638059.900|220209.232|124.002 +638064.924|220204.599|123.941 +638069.904|220200.009|123.984 +638074.930|220195.376|124.011 +638079.950|220190.749|123.975 +638084.928|220186.165|123.999 +638090.003|220181.486|124.121 +638094.971|220176.908|124.060 +638099.994|220172.278|124.173 +638105.060|220167.612|124.225 +638110.028|220163.034|124.237 +638115.085|220158.373|124.173 +638120.092|220153.756|124.124 +638125.088|220149.150|123.871 +638130.133|220144.496|123.658 +638135.131|220139.887|123.505 +638140.191|220135.227|123.545 +638145.196|220130.612|123.560 +638150.262|220125.946|123.834 +638155.309|220121.294|123.752 +638160.341|220116.652|123.383 +638170.369|220107.405|122.893 +638175.420|220102.750|122.941 +638180.412|220098.148|122.801 +638185.448|220093.506|122.484 +638190.483|220088.861|122.216 +638195.512|220084.221|121.780 +638200.545|220079.582|121.381 +638205.580|220074.937|121.113 +638210.618|220070.292|120.914 +638215.654|220065.650|120.689 +638220.741|220060.959|120.485 +638225.773|220056.317|120.174 +638230.808|220051.675|119.820 +638235.840|220047.033|119.464 +638240.931|220042.342|119.390 +638245.978|220037.691|119.625 +638251.035|220033.036|120.320 +638256.085|220028.388|120.799 +638261.176|220023.697|121.088 +638266.223|220019.049|121.634 +638271.271|220014.401|122.259 +638276.358|220009.716|122.365 +638281.350|220005.117|122.853 +638286.440|220000.432|123.307 +638291.479|219995.790|123.749 +638296.514|219991.151|123.990 +638301.552|219986.512|124.526 +638306.588|219981.876|124.855 +638311.620|219977.240|125.124 +638316.652|219972.600|125.212 +638322.206|219967.486|125.587 +638326.711|219963.335|125.685 +638331.789|219958.653|125.608 +638336.821|219954.014|125.499 +638341.804|219949.420|125.459 +638346.882|219944.739|125.428 +638351.869|219940.142|125.221 +638356.901|219935.503|125.066 +638361.936|219930.861|124.904 +638366.972|219926.216|124.584 +638372.007|219921.574|124.493 +638377.042|219916.935|124.414 +638382.081|219912.287|124.176 +638387.070|219907.687|124.026 +638392.112|219903.039|123.770 +638397.104|219898.433|123.591 +638402.149|219893.782|123.246 +638407.193|219889.128|122.932 +638412.192|219884.519|122.618 +638417.188|219879.914|122.518 +638422.238|219875.256|122.289 +638427.234|219870.654|122.277 +638432.233|219866.042|122.100 +638437.234|219861.434|122.009 +638442.236|219856.822|121.878 +638447.238|219852.213|121.832 +638452.191|219847.650|121.817 +638457.199|219843.039|121.704 +638462.201|219838.433|121.728 +638467.202|219833.825|121.807 +638472.158|219829.262|121.853 +638477.115|219824.699|121.939 +638482.122|219820.084|121.868 +638487.088|219815.509|121.753 +638492.062|219810.925|121.490 +638497.085|219806.298|121.228 +638502.023|219801.748|120.820 +638507.043|219797.121|120.646 +638512.020|219792.536|120.515 +638516.949|219787.992|120.329 +638521.932|219783.402|120.119 +638526.919|219778.808|119.890 +638531.838|219774.279|120.003 +638536.801|219769.710|120.247 +638541.717|219765.181|120.457 +638546.691|219760.602|120.546 +638551.617|219756.067|120.671 +638556.533|219751.541|120.939 +638561.456|219747.008|121.100 +638566.391|219742.464|121.122 +638571.328|219737.916|121.128 +638576.272|219733.359|121.052 +638581.222|219728.803|120.933 +638586.120|219724.289|120.869 +638591.083|219719.720|120.649 +638595.987|219715.199|120.539 +638600.946|219710.630|120.418 +638605.856|219706.107|120.299 +638610.767|219701.581|120.213 +638615.689|219697.049|120.015 +638620.618|219692.507|119.768 +638625.519|219687.993|119.899 +638630.380|219683.515|119.942 +638635.367|219678.919|119.634 +638640.265|219674.405|119.290 +638645.215|219669.842|118.936 +638650.153|219665.288|118.189 +638655.066|219660.759|117.772 +638660.056|219656.160|117.095 +638664.939|219651.661|117.098 +638669.819|219647.165|117.138 +638674.714|219642.657|117.071 +638679.627|219638.131|116.830 +638684.565|219633.577|116.348 +638689.527|219628.999|115.641 +638694.434|219624.475|115.062 +638699.375|219619.919|114.654 +638704.322|219615.362|114.264 +638709.208|219610.857|113.983 +638714.100|219606.349|113.681 +638719.047|219601.792|113.371 +638723.887|219597.330|113.157 +638728.840|219592.767|112.865 +638733.674|219588.311|112.761 +638738.551|219583.821|112.761 +638743.407|219579.350|112.545 +638748.262|219574.878|112.776 +638753.090|219570.428|112.819 +638757.866|219566.033|113.349 +638762.646|219561.638|113.889 +638767.416|219557.249|114.483 +638772.256|219552.786|114.099 +638777.078|219548.348|114.322 +638781.879|219543.926|114.306 +638786.664|219539.521|114.462 +638805.912|219521.791|114.410 +638810.710|219517.372|114.200 +638815.507|219512.949|113.998 +638820.277|219508.557|114.062 +638825.121|219504.091|113.934 +638829.879|219499.705|113.752 +638834.728|219495.234|113.279 +638839.522|219490.817|112.898 +638844.372|219486.343|112.487 +638849.176|219481.914|112.078 +638853.918|219477.543|111.792 +638858.761|219473.078|111.511 +638863.522|219468.692|111.149 +638868.223|219464.361|111.222 +638872.947|219460.008|111.152 +638869.265|219460.112|111.057 +638864.580|219464.419|111.133 +638859.862|219468.756|111.118 +638855.098|219473.139|111.453 +638850.346|219477.507|111.725 +638845.527|219481.942|112.164 +638840.760|219486.328|112.599 +638835.965|219490.738|112.923 +638831.211|219495.112|113.334 +638826.434|219499.504|113.560 +638821.673|219503.881|113.703 +638816.931|219508.240|113.739 +638812.164|219512.626|113.992 +638807.348|219517.052|114.245 +638802.608|219521.410|114.328 +638797.795|219525.836|114.626 +638783.482|219538.994|114.675 +638778.760|219543.331|114.325 +638774.021|219547.687|114.145 +638764.410|219556.523|114.535 +638759.631|219560.909|113.919 +638754.934|219565.225|113.468 +638750.140|219569.627|112.996 +638745.385|219573.994|112.639 +638740.523|219578.466|112.801 +638735.732|219582.870|112.801 +638730.895|219587.317|112.813 +638726.045|219591.773|112.935 +638721.187|219596.242|113.200 +638716.334|219600.707|113.441 +638711.476|219605.176|113.752 +638706.572|219609.687|114.056 +638701.667|219614.198|114.401 +638696.763|219618.709|114.788 +638691.856|219623.223|115.227 +638686.945|219627.743|115.763 +638682.026|219632.269|116.397 +638677.079|219636.820|116.870 +638672.153|219641.352|117.165 +638667.243|219645.866|117.290 +638662.345|219650.371|117.351 +638657.413|219654.901|117.229 +638652.408|219659.512|118.013 +638647.468|219664.057|118.619 +638642.490|219668.635|119.137 +638637.540|219673.189|119.381 +638632.575|219677.752|119.265 +638627.628|219682.305|119.546 +638622.629|219686.902|119.887 +638617.658|219691.474|119.924 +638612.739|219695.994|119.942 +638607.709|219700.618|120.128 +638602.732|219705.196|120.344 +638597.764|219709.765|120.463 +638592.753|219714.373|120.543 +638587.785|219718.942|120.716 +638582.774|219723.551|120.835 +638577.763|219728.156|120.988 +638572.752|219732.765|121.161 +638567.741|219737.374|121.384 +638562.709|219741.997|121.222 +638557.725|219746.576|121.033 +638552.742|219751.154|120.872 +638547.716|219755.771|120.671 +638542.674|219760.404|120.689 +638537.697|219764.976|120.479 +638532.628|219769.634|120.229 +638527.602|219774.251|120.073 +638522.563|219778.884|120.198 +638517.476|219783.560|120.375 +638512.438|219788.193|120.536 +638507.351|219792.869|120.747 +638502.273|219797.535|120.817 +638497.231|219802.174|121.213 +638492.099|219806.893|121.506 +638487.018|219811.565|121.759 +638481.949|219816.226|121.844 +638476.831|219820.932|121.920 +638471.765|219825.586|121.923 +638466.703|219830.237|121.856 +638461.594|219834.934|121.814 +638456.480|219839.634|121.911 +638451.417|219844.289|121.960 +638446.308|219848.982|121.969 +638441.200|219853.679|122.054 +638436.091|219858.373|122.134 +638430.986|219863.070|122.222 +638425.878|219867.764|122.301 +638420.818|219872.416|122.460 +638415.667|219877.152|122.609 +638410.561|219881.846|122.783 +638405.502|219886.500|123.124 +638400.351|219891.234|123.338 +638395.245|219895.931|123.700 +638390.146|219900.622|123.947 +638385.046|219905.307|124.115 +638379.901|219910.040|124.371 +638374.854|219914.679|124.435 +638369.709|219919.410|124.624 +638364.613|219924.094|124.798 +638359.519|219928.779|125.047 +638354.377|219933.507|125.227 +638349.287|219938.188|125.334 +638344.194|219942.867|125.462 +638339.104|219947.549|125.526 +638333.965|219952.270|125.550 +638328.875|219956.949|125.630 +638323.785|219961.628|125.688 +638318.176|219966.782|125.240 +638313.559|219971.025|125.270 +638308.468|219975.700|124.971 +638303.375|219980.379|124.697 +638298.279|219985.061|124.264 +638293.183|219989.739|123.908 +638288.038|219994.467|123.588 +638282.941|219999.149|123.338 +638277.839|220003.833|122.600 +638272.743|220008.515|122.533 +638267.637|220013.203|121.890 +638262.575|220017.848|121.241 +638257.472|220022.536|120.893 +638252.364|220027.227|120.546 +638247.301|220031.878|119.973 +638242.186|220036.572|119.384 +638237.081|220041.263|119.220 +638232.030|220045.908|119.427 +638226.986|220050.547|119.829 +638221.942|220055.186|120.177 +638216.894|220059.828|120.436 +638211.844|220064.470|120.640 +638206.793|220069.116|120.811 +638201.742|220073.758|121.027 +638196.698|220078.400|121.332 +638191.660|220083.033|121.890 +638186.655|220087.635|122.006 +638181.613|220092.277|122.365 +638176.615|220096.877|122.643 +638171.613|220101.476|122.856 +638166.556|220106.128|122.911 +638161.591|220110.693|122.902 +638156.541|220115.339|123.121 +638151.542|220119.941|123.429 +638146.577|220124.504|123.481 +638141.563|220129.116|123.527 +638136.591|220133.688|123.493 +638131.565|220138.308|123.322 +638126.600|220142.874|123.456 +638121.641|220147.437|123.709 +638116.633|220152.046|123.917 +638111.710|220156.572|123.990 +638106.736|220161.147|124.005 +638101.759|220165.725|123.996 +638096.824|220170.261|123.969 +638091.837|220174.848|123.847 +638086.906|220179.380|123.895 +638081.965|220183.925|123.780 +638077.030|220188.463|123.844 +638072.089|220193.008|123.786 +638067.152|220197.546|123.819 +638062.208|220202.094|123.795 +638057.267|220206.639|123.810 +638052.424|220211.098|124.532 +638047.532|220215.603|125.236 +638042.612|220220.123|124.977 +638037.680|220224.661|125.194 +638032.782|220229.163|125.243 +638027.890|220233.665|125.368 +638022.940|220238.216|125.422 +638018.082|220242.684|125.425 +638013.129|220247.241|125.444 +638008.258|220251.719|125.374 +638003.339|220256.242|125.288 +637998.416|220260.768|125.206 +637993.494|220265.294|125.157 +637988.605|220269.790|124.935 +637983.667|220274.329|124.788 +637978.772|220278.828|124.566 +637973.874|220283.332|124.340 +637968.972|220287.837|124.142 +637964.120|220292.297|123.972 +637959.197|220296.823|124.081 +637954.321|220301.307|123.700 +637949.392|220305.836|123.313 +637944.530|220310.304|123.164 +637939.687|220314.757|123.194 +637934.832|220319.223|123.133 +637929.930|220323.731|123.115 +637925.130|220328.144|123.164 +637920.296|220332.594|123.353 +637915.443|220337.051|122.993 +637910.658|220341.458|123.652 +637905.860|220345.871|123.810 +637901.005|220350.337|123.883 +637896.198|220354.759|123.993 +637891.388|220359.185|124.087 +637886.591|220363.599|124.310 +637881.766|220368.034|124.328 +637876.913|220372.496|124.130 +637872.104|220376.915|123.914 +637867.224|220381.399|123.566 +637862.399|220385.837|123.264 +637857.546|220390.293|122.804 +637852.694|220394.752|122.365 +637847.823|220399.224|121.814 +637842.962|220403.692|121.359 +637838.051|220408.200|120.573 +637823.479|220421.584|118.500 +637808.961|220434.925|116.757 +637804.060|220439.427|115.900 +637779.545|220461.933|110.149 +637774.756|220466.335|109.625 +637769.928|220470.770|108.869 +637765.134|220475.180|108.683 +637760.321|220479.603|108.082 +637755.533|220484.004|107.336 +637750.802|220488.357|107.329 +637746.154|220492.633|107.546 +637736.541|220501.466|106.049 +637732.157|220505.517|107.976 +637722.901|220514.036|108.512 +637718.268|220518.300|108.604 +637672.926|220560.070|114.224 +637659.246|220572.658|114.328 +637654.708|220576.831|114.349 +637636.752|220593.360|115.343 +637623.261|220605.778|115.797 +637618.766|220609.914|115.629 +637614.306|220614.017|115.678 +637609.826|220618.141|115.897 +637605.418|220622.198|115.980 +637591.775|220634.737|114.727 +637587.295|220638.861|114.517 +637582.842|220642.955|114.471 +637573.884|220651.190|113.672 +637542.535|220680.006|110.356 +637537.884|220684.270|108.847 +637533.607|220688.208|108.881 +637511.854|220708.212|107.851 +637487.317|220730.819|111.548 +637478.969|220738.500|111.746 +637474.796|220742.341|111.746 +637470.678|220746.133|111.780 +637466.566|220749.918|112.075 +637458.230|220757.587|111.560 +637453.868|220761.595|110.612 +637449.802|220765.338|110.722 +637445.529|220769.264|109.743 +637433.023|220780.761|108.280 +637428.668|220784.757|107.052 +637420.703|220792.093|107.518 +637412.806|220799.363|107.881 +637408.788|220803.063|107.689 +637401.062|220810.177|108.171 +637393.436|220817.203|109.103 +637385.724|220824.305|109.521 +637374.148|220834.958|109.268 +637370.268|220838.527|109.131 +637362.684|220845.507|109.158 +637351.205|220856.065|108.497 +637347.414|220859.555|108.158 +637343.634|220863.030|107.884 +637339.858|220866.504|107.842 +637336.164|220869.903|107.720 +637332.725|220873.076|108.555 +637329.034|220876.471|108.463 +637325.371|220879.843|108.485 +637321.753|220883.174|108.475 +637510.491|220707.347|108.119 +637514.643|220703.512|107.701 +637523.265|220695.563|108.140 +637527.594|220691.570|108.347 +637531.907|220687.593|108.512 +637536.299|220683.545|109.055 +637540.801|220679.403|109.890 +637554.178|220667.076|111.719 +637558.714|220662.901|112.569 +637563.118|220658.841|112.822 +637567.526|220654.778|113.105 +637572.003|220650.651|113.499 +637580.943|220642.412|114.291 +637585.369|220638.328|114.242 +637594.375|220630.028|114.983 +637598.880|220625.874|115.394 +637616.760|220609.384|115.477 +637621.326|220605.174|115.791 +637625.767|220601.078|115.718 +637630.193|220596.991|115.330 +637634.694|220592.839|115.361 +637639.239|220588.648|115.352 +637643.738|220584.497|115.126 +637648.212|220580.364|114.785 +637652.678|220576.240|114.413 +637657.241|220572.030|114.309 +637661.800|220567.824|114.206 +637666.348|220563.630|114.041 +637670.905|220559.427|113.956 +637675.513|220555.172|113.904 +637684.602|220546.784|113.398 +637698.236|220534.196|112.020 +637711.785|220521.677|109.326 +637716.338|220517.468|108.479 +637720.944|220513.216|108.256 +637744.496|220491.493|108.189 +637749.043|220487.290|107.052 +637753.899|220482.818|107.933 +637758.632|220478.454|107.710 +637763.567|220473.912|109.180 +637773.153|220465.076|109.670 +637778.027|220460.586|110.155 +637782.849|220456.142|110.664 +637802.722|220437.860|115.736 +637807.626|220433.343|116.675 +637817.374|220424.364|117.830 +637822.266|220419.859|118.421 +637832.120|220410.785|120.229 +637836.994|220406.292|120.415 +637846.887|220397.182|121.984 +637851.725|220392.722|122.371 +637856.672|220388.163|122.859 +637861.558|220383.661|123.286 +637866.419|220379.180|123.566 +637871.326|220374.657|123.825 +637876.225|220370.140|124.060 +637881.110|220365.635|124.218 +637885.969|220361.154|124.170 +637890.815|220356.683|124.029 +637895.671|220352.202|124.002 +637900.557|220347.694|123.828 +637905.455|220343.177|123.767 +637910.283|220338.721|123.569 +637915.120|220334.256|123.005 +637920.040|220329.720|123.207 +637924.959|220325.182|122.996 +637929.848|220320.674|122.963 +637934.737|220316.163|122.978 +637939.632|220311.648|123.048 +637944.570|220307.095|123.097 +637949.526|220302.526|123.331 +637954.506|220297.935|123.877 +637959.432|220293.394|123.868 +637964.358|220288.849|123.904 +637969.301|220284.293|124.142 +637974.291|220279.693|124.374 +637979.272|220275.100|124.569 +637984.203|220270.555|124.767 +637989.178|220265.968|124.947 +637994.146|220261.387|125.060 +637999.114|220256.806|125.224 +638004.073|220252.231|125.325 +638009.026|220247.662|125.364 +638014.019|220243.059|125.328 +638018.966|220238.496|125.328 +638023.958|220233.891|125.352 +638028.890|220229.340|125.230 +638033.877|220224.741|125.194 +638038.854|220220.150|125.057 +638043.780|220215.606|124.913 +638048.824|220210.955|125.093 +638053.725|220206.422|124.033 +638058.684|220201.847|123.725 +638063.710|220197.208|123.719 +638068.639|220192.660|123.688 +638073.665|220188.021|123.740 +638078.688|220183.385|123.752 +638083.708|220178.755|123.722 +638088.725|220174.125|123.685 +638093.700|220169.535|123.770 +638098.723|220164.899|123.877 +638103.740|220160.272|123.923 +638108.748|220155.648|123.862 +638113.753|220151.028|123.737 +638118.757|220146.410|123.615 +638123.802|220141.753|123.392 +638128.804|220137.138|123.240 +638133.815|220132.511|123.347 +638143.922|220123.187|123.331 +638148.920|220118.573|123.207 +638159.000|220109.267|122.810 +638164.051|220104.607|122.822 +638169.098|220099.949|122.841 +638174.140|220095.295|122.682 +638179.169|220090.650|122.283 +638184.207|220085.998|122.067 +638189.243|220081.350|121.795 +638194.272|220076.705|121.359 +638199.353|220072.014|120.981 +638204.388|220067.366|120.759 +638209.426|220062.715|120.604 +638214.511|220058.021|120.378 +638219.549|220053.370|120.168 +638224.630|220048.679|119.848 +638229.708|220043.988|119.436 +638234.746|220039.337|119.208 +638239.791|220034.682|119.329 +638244.887|220029.982|119.686 +638249.989|220025.282|120.256 +638255.040|220020.625|120.820 +638260.130|220015.931|121.125 +638265.223|220011.234|121.600 +638270.320|220006.540|122.316 +638275.404|220001.846|122.545 +638280.494|219997.155|123.069 +638285.532|219992.510|123.523 +638290.665|219987.776|123.840 +638295.700|219983.134|124.221 +638300.787|219978.447|124.889 +638305.865|219973.762|124.990 +638310.946|219969.074|125.233 +638316.021|219964.392|125.346 +638321.099|219959.710|125.715 +638326.177|219955.023|125.736 +638331.207|219950.380|125.700 +638336.284|219945.696|125.596 +638341.408|219940.965|125.581 +638346.440|219936.323|125.538 +638351.518|219931.632|125.380 +638356.599|219926.944|125.233 +638361.635|219922.296|125.041 +638366.716|219917.605|124.785 +638371.800|219912.914|124.663 +638376.835|219908.263|124.481 +638381.919|219903.572|124.386 +638386.958|219898.921|124.127 +638391.996|219894.267|123.962 +638397.086|219889.567|123.645 +638402.131|219884.909|123.301 +638407.175|219880.252|123.051 +638412.268|219875.552|122.838 +638417.264|219870.937|122.679 +638422.308|219866.283|122.591 +638427.405|219861.577|122.402 +638432.400|219856.965|122.368 +638437.451|219852.305|122.225 +638442.498|219847.647|122.173 +638447.500|219843.030|122.109 +638452.548|219838.366|122.054 +638457.604|219833.697|121.804 +638462.600|219829.088|121.990 +638467.608|219824.467|121.914 +638472.613|219819.847|121.923 +638477.614|219815.229|121.954 +638482.674|219810.559|121.856 +638487.642|219805.972|121.695 +638492.659|219801.336|121.469 +638497.637|219796.740|121.149 +638502.617|219792.140|120.844 +638507.634|219787.507|120.756 +638512.609|219782.917|120.661 +638517.589|219778.318|120.445 +638522.563|219773.721|120.326 +638527.492|219769.173|120.256 +638532.454|219764.595|120.512 +638537.371|219760.060|120.692 +638542.290|219755.515|120.805 +638547.264|219750.928|120.884 +638552.184|219746.387|121.052 +638557.109|219741.842|121.183 +638561.980|219737.346|121.423 +638566.924|219732.783|121.311 +638571.825|219728.254|121.088 +638581.673|219719.162|120.853 +638586.575|219714.639|120.777 +638591.494|219710.094|120.442 +638596.359|219705.601|120.271 +638601.306|219701.035|120.271 +638606.158|219696.555|120.317 +638611.071|219692.019|120.198 +638615.896|219687.563|120.018 +638620.816|219683.019|119.857 +638625.705|219678.504|119.561 +638630.600|219673.984|119.186 +638635.471|219669.485|119.153 +638640.369|219664.959|118.796 +638645.233|219660.469|118.891 +638650.119|219655.955|118.202 +638655.054|219651.392|117.546 +638659.876|219646.942|117.650 +638664.725|219642.462|117.482 +638669.578|219637.981|117.312 +638674.455|219633.479|116.925 +638679.292|219629.008|116.440 +638684.181|219624.491|115.983 +638689.070|219619.974|115.565 +638693.925|219615.487|115.023 +638698.769|219611.009|114.611 +638703.612|219606.538|114.267 +638708.458|219602.060|113.934 +638713.298|219597.589|113.651 +638718.139|219593.118|113.428 +638722.942|219588.683|113.121 +638727.767|219584.227|113.084 +638732.556|219579.804|112.965 +638737.329|219575.396|113.002 +638742.093|219571.004|113.172 +638746.854|219566.609|113.355 +638751.615|219562.217|113.578 +638756.336|219557.861|114.148 +638770.622|219544.676|114.504 +638775.316|219540.341|114.541 +638794.372|219522.751|114.666 +638799.118|219518.368|114.407 +638803.894|219513.958|114.309 +638808.664|219509.553|113.925 +638813.407|219505.173|113.770 +638818.150|219500.800|113.654 +638822.911|219496.404|113.428 +638827.650|219492.030|113.371 +638832.427|219487.620|113.063 +638837.154|219483.255|112.804 +638841.976|219478.802|112.221 +638846.725|219474.416|111.850 +638851.477|219470.027|111.475 +638856.198|219465.671|111.371 +638860.950|219461.285|111.057 +638865.629|219456.966|111.261 +638859.316|219459.694|111.152 +638854.464|219464.163|111.417 +638849.639|219468.600|111.502 +638844.744|219473.112|111.776 +638839.885|219477.586|112.173 +638834.993|219482.094|112.828 +638830.116|219486.587|113.066 +638825.243|219491.073|113.288 +638820.387|219495.545|113.419 +638815.519|219500.025|113.648 +638810.630|219504.527|113.718 +638805.763|219509.011|114.008 +638800.813|219513.568|114.197 +638795.960|219518.036|114.431 +638791.017|219522.590|114.654 +638776.380|219536.062|114.645 +638771.509|219540.543|114.370 +638766.639|219545.026|114.504 +638756.861|219554.027|114.334 +638751.975|219558.517|113.825 +638747.119|219562.985|113.508 +638742.203|219567.511|113.322 +638737.335|219571.986|113.127 +638732.412|219576.518|113.029 +638727.520|219581.023|113.124 +638722.595|219585.555|113.096 +638717.685|219590.079|113.410 +638712.686|219594.681|113.657 +638707.791|219599.189|113.880 +638702.786|219603.801|114.276 +638697.836|219608.361|114.636 +638692.886|219612.920|115.026 +638687.927|219617.489|115.541 +638682.922|219622.098|116.053 +638677.942|219626.688|116.388 +638672.995|219631.245|116.888 +638668.008|219635.842|117.345 +638663.043|219640.414|117.592 +638658.090|219644.973|117.744 +638653.152|219649.518|117.760 +638648.175|219654.105|118.253 +638643.225|219658.662|118.461 +638638.269|219663.228|118.781 +638633.255|219667.849|119.265 +638628.302|219672.411|119.628 +638623.312|219677.005|119.860 +638618.338|219681.586|119.942 +638613.409|219686.124|120.110 +638608.435|219690.703|120.241 +638603.461|219695.284|120.424 +638598.492|219699.859|120.567 +638593.533|219704.425|120.604 +638588.583|219708.981|120.549 +638583.630|219713.538|120.524 +638578.662|219718.116|120.802 +638573.697|219722.688|121.021 +638568.744|219727.248|121.125 +638563.788|219731.811|121.292 +638558.783|219736.423|121.527 +638553.818|219740.992|121.158 +638548.883|219745.533|121.033 +638543.902|219750.120|120.945 +638538.971|219754.659|120.850 +638533.999|219759.237|120.668 +638529.028|219763.812|120.430 +638524.051|219768.396|120.378 +638519.070|219772.980|120.396 +638514.081|219777.577|120.619 +638509.100|219782.167|120.704 +638504.117|219786.757|120.881 +638499.085|219791.390|121.082 +638494.104|219795.981|121.283 +638489.075|219800.614|121.539 +638484.049|219805.244|121.771 +638479.032|219809.867|121.838 +638474.060|219814.442|121.911 +638469.046|219819.060|121.929 +638464.036|219823.678|121.957 +638459.019|219828.299|122.118 +638453.962|219832.956|122.152 +638448.951|219837.568|122.152 +638443.943|219842.179|122.198 +638438.886|219846.837|122.256 +638433.924|219851.409|122.399 +638428.871|219856.063|122.527 +638423.817|219860.717|122.566 +638418.809|219865.332|122.786 +638413.762|219869.980|122.810 +638408.754|219874.592|123.018 +638403.703|219879.246|123.252 +638398.653|219883.900|123.484 +638393.599|219888.555|123.801 +638388.600|219893.163|124.026 +638383.504|219897.857|124.249 +638378.505|219902.463|124.496 +638373.415|219907.151|124.618 +638368.371|219911.799|124.849 +638363.378|219916.398|124.926 +638358.288|219921.086|125.169 +638353.201|219925.774|125.368 +638348.208|219930.373|125.483 +638343.121|219935.058|125.633 +638338.034|219939.740|125.572 +638332.999|219944.382|125.624 +638327.912|219949.064|125.700 +638322.828|219953.749|125.758 +638317.789|219958.385|125.331 +638312.516|219963.240|125.319 +638307.621|219967.748|125.124 +638302.580|219972.384|124.758 +638297.493|219977.069|124.505 +638292.399|219981.754|124.017 +638287.309|219986.438|123.746 +638282.219|219991.126|123.539 +638277.123|219995.814|122.819 +638272.075|220000.459|122.481 +638266.976|220005.147|121.935 +638261.877|220009.841|121.393 +638256.823|220014.489|120.960 +638251.724|220019.183|120.655 +638246.615|220023.883|119.973 +638241.555|220028.537|119.372 +638236.450|220033.234|119.101 +638231.354|220037.928|119.116 +638226.309|220042.577|119.384 +638221.222|220047.264|119.750 +638216.181|220051.910|120.079 +638211.139|220056.558|120.305 +638206.046|220061.249|120.485 +638200.953|220065.940|120.722 +638195.912|220070.585|121.012 +638190.828|220075.273|121.417 +638185.780|220079.924|121.539 +638180.745|220084.563|122.042 +638175.655|220089.251|122.307 +638170.607|220093.899|122.518 +638165.563|220098.547|122.704 +638160.463|220103.241|122.838 +638155.401|220107.901|122.704 +638145.293|220117.207|122.865 +638140.240|220121.861|123.008 +638130.126|220131.173|123.197 +638125.109|220135.794|123.124 +638120.050|220140.451|123.234 +638115.045|220145.063|123.441 +638110.034|220149.674|123.581 +638105.020|220154.292|123.685 +638099.957|220158.956|123.767 +638094.977|220163.540|123.679 +638089.945|220168.173|123.527 +638084.918|220172.800|123.517 +638079.938|220177.384|123.499 +638074.915|220182.008|123.597 +638069.934|220186.595|123.636 +638064.945|220191.185|123.554 +638059.964|220195.775|123.591 +638054.975|220200.366|123.584 +638050.065|220204.898|124.621 +638045.148|220209.424|124.974 +638040.152|220214.027|124.865 +638035.218|220218.568|124.987 +638030.234|220223.159|125.115 +638025.290|220227.709|125.188 +638020.353|220232.257|125.304 +638015.403|220236.814|125.337 +638010.495|220241.334|125.288 +638005.536|220245.897|125.255 +638000.623|220250.420|125.200 +637995.664|220254.986|125.191 +637990.735|220259.521|125.029 +637985.806|220264.057|124.874 +637980.872|220268.598|124.688 +637975.983|220273.100|124.493 +637971.039|220277.648|124.282 +637966.141|220282.156|124.051 +637961.194|220286.707|123.856 +637956.314|220291.202|123.859 +637951.416|220295.707|123.731 +637946.536|220300.197|123.307 +637941.616|220304.723|123.011 +637936.764|220309.192|122.923 +637931.909|220313.660|122.835 +637927.010|220318.171|122.804 +637922.158|220322.637|122.786 +637917.376|220327.041|122.984 +637912.520|220331.509|122.990 +637907.729|220335.929|123.566 +637902.943|220340.336|123.780 +637898.140|220344.759|123.862 +637893.278|220349.236|123.871 +637888.526|220353.610|124.017 +637883.723|220358.033|124.170 +637878.907|220362.468|124.203 +637874.073|220366.918|124.139 +637869.254|220371.353|123.813 +637864.398|220375.821|123.612 +637859.579|220380.253|123.350 +637854.736|220384.709|122.908 +637849.881|220389.178|122.399 +637845.068|220393.600|121.896 +637840.225|220398.056|121.551 +637835.387|220402.506|120.905 +637825.707|220411.407|119.677 +637820.836|220415.884|118.887 +637815.990|220420.340|118.302 +637806.251|220429.286|116.574 +637801.472|220433.678|115.885 +637796.644|220438.119|115.559 +637781.919|220451.631|111.450 +637772.224|220460.537|109.847 +637767.432|220464.942|109.295 +637757.934|220473.674|108.527 +637753.152|220478.067|107.820 +637748.312|220482.514|106.756 +637739.022|220491.069|107.528 +637715.808|220512.433|108.110 +637711.224|220516.654|108.512 +637702.229|220524.945|110.100 +637693.241|220533.226|111.463 +637679.735|220545.671|113.148 +637675.199|220549.847|113.642 +637656.994|220566.599|113.977 +637652.437|220570.793|113.861 +637647.950|220574.923|114.157 +637643.570|220578.959|114.773 +637630.129|220591.334|115.330 +637625.694|220595.412|115.443 +637612.215|220607.814|115.471 +637603.364|220615.958|115.678 +637598.847|220620.113|115.462 +637594.296|220624.298|114.834 +637580.912|220636.606|114.194 +637576.490|220640.675|114.041 +637571.954|220644.841|113.621 +637563.060|220653.022|113.172 +637558.586|220657.134|112.609 +637554.145|220661.218|112.221 +637536.174|220677.726|109.442 +637510.052|220701.748|107.890 +637472.973|220735.891|111.566 +637460.513|220747.358|111.658 +637452.146|220755.051|111.021 +637447.818|220759.029|110.222 +637443.615|220762.891|109.759 +637439.287|220766.862|108.567 +637435.081|220770.730|108.131 +637426.558|220778.554|106.430 +637422.700|220782.111|107.049 +637418.774|220785.729|107.390 +637414.784|220789.399|107.494 +637410.840|220793.029|107.802 +637402.958|220800.287|108.027 +637383.539|220818.157|108.716 +637379.659|220821.729|108.942 +637371.847|220828.916|108.610 +637368.067|220832.391|108.646 +637360.356|220839.487|108.366 +637352.577|220846.638|107.686 +637345.134|220853.486|107.936 +637341.342|220856.973|107.808 +637337.621|220860.396|107.762 +637333.890|220863.828|107.683 +637326.657|220870.488|108.219 +637319.354|220877.209|108.351 +637315.733|220880.541|108.338 +637502.588|220706.484|108.168 +637506.864|220702.531|108.302 +637511.034|220698.675|107.957 +637523.866|220686.809|107.805 +637528.362|220682.664|108.802 +637546.269|220666.138|111.496 +637550.713|220662.035|111.886 +637568.568|220645.545|113.569 +637581.940|220633.192|114.334 +637586.417|220629.056|114.559 +637590.861|220624.950|114.626 +637617.845|220600.017|115.318 +637622.371|220595.832|115.443 +637631.384|220587.502|115.242 +637635.831|220583.387|114.992 +637649.291|220570.936|113.877 +637653.778|220566.788|113.617 +637658.384|220562.533|113.761 +637708.401|220516.267|108.430 +637713.022|220511.994|107.982 +637717.673|220507.693|107.723 +637722.270|220503.444|107.134 +637726.799|220499.247|105.848 +637736.513|220490.292|107.713 +637741.344|220485.836|108.387 +637745.910|220481.605|107.049 +637760.403|220468.234|108.637 +637774.909|220454.847|110.256 +637780.026|220450.141|112.097 +637804.648|220427.442|117.056 +637809.568|220422.907|117.778 +637819.355|220413.876|118.961 +637824.305|220409.310|119.653 +637834.147|220400.230|121.085 +637843.937|220391.195|121.878 +637848.860|220386.654|122.536 +637853.755|220382.140|122.999 +637858.683|220377.589|123.402 +637863.594|220373.054|123.676 +637868.486|220368.536|123.825 +637873.350|220364.047|124.176 +637878.279|220359.496|124.264 +637883.119|220355.025|124.072 +637888.014|220350.501|123.932 +637892.864|220346.021|123.844 +637897.768|220341.488|123.837 +637902.657|220336.971|123.716 +637907.518|220332.482|123.350 +637912.368|220327.995|122.911 +637917.251|220323.484|122.780 +637922.185|220318.927|122.707 +637927.077|220314.407|122.713 +637932.067|220309.798|122.755 +637936.916|220305.321|122.835 +637941.924|220300.697|123.088 +637946.896|220296.107|123.511 +637951.839|220291.544|123.655 +637956.786|220286.975|123.883 +637961.758|220282.382|123.895 +637966.702|220277.819|124.124 +637971.639|220273.259|124.353 +637976.665|220268.620|124.493 +637981.600|220264.063|124.727 +637986.572|220259.473|124.868 +637991.543|220254.882|125.041 +637996.557|220250.252|125.169 +638001.510|220245.674|125.203 +638006.460|220241.105|125.194 +638011.462|220236.485|125.273 +638016.405|220231.919|125.246 +638021.392|220227.310|125.191 +638026.375|220222.705|125.121 +638031.304|220218.154|124.944 +638036.330|220213.509|124.846 +638041.256|220208.958|124.700 +638046.245|220204.350|124.785 +638051.223|220199.747|124.066 +638056.112|220195.224|123.502 +638061.144|220190.585|123.536 +638066.164|220185.949|123.478 +638071.138|220181.355|123.456 +638076.155|220176.725|123.377 +638081.127|220172.138|123.344 +638086.144|220167.508|123.267 +638091.121|220162.915|123.405 +638096.147|220158.276|123.554 +638101.161|220153.649|123.527 +638106.120|220149.071|123.441 +638111.125|220144.450|123.310 +638116.173|220139.790|123.085 +638121.132|220135.215|123.011 +638126.195|220130.542|123.118 +638151.243|220107.417|122.618 +638161.253|220098.181|122.691 +638166.294|220093.524|122.582 +638171.332|220088.876|122.320 +638176.322|220084.267|122.100 +638181.357|220079.619|121.768 +638186.384|220074.974|121.250 +638191.425|220070.320|121.186 +638196.454|220065.671|120.732 +638201.496|220061.020|120.549 +638206.531|220056.369|120.344 +638211.569|220051.718|120.116 +638216.556|220047.112|119.823 +638221.591|220042.464|119.451 +638226.623|220037.813|119.086 +638231.665|220033.161|118.955 +638236.709|220028.504|119.040 +638241.805|220023.804|119.372 +638246.813|220019.189|119.991 +638251.913|220014.486|120.689 +638256.957|220009.832|121.018 +638261.956|220005.223|121.451 +638267.052|220000.529|122.124 +638272.093|219995.878|122.542 +638277.135|219991.230|122.999 +638282.173|219986.582|123.469 +638287.257|219981.894|123.816 +638292.296|219977.249|124.142 +638297.331|219972.604|124.755 +638302.412|219967.916|124.776 +638307.444|219963.274|125.203 +638312.473|219958.634|125.410 +638317.551|219953.947|125.343 +638322.581|219949.308|125.843 +638327.659|219944.620|125.715 +638332.691|219939.978|125.593 +638337.720|219935.336|125.651 +638342.798|219930.648|125.605 +638347.830|219926.003|125.544 +638352.863|219921.357|125.441 +638357.944|219916.663|125.221 +638362.979|219912.015|124.993 +638368.014|219907.367|124.923 +638373.098|219902.673|124.685 +638378.134|219898.022|124.557 +638383.175|219893.368|124.279 +638388.262|219888.671|124.087 +638393.255|219884.062|123.847 +638398.345|219879.359|123.533 +638403.389|219874.702|123.365 +638408.385|219870.087|123.124 +638413.478|219865.384|122.926 +638418.523|219860.729|122.877 +638423.521|219856.112|122.691 +638428.569|219851.454|122.618 +638433.616|219846.794|122.481 +638438.667|219842.134|122.387 +638443.718|219837.473|122.289 +638448.719|219832.859|122.280 +638453.767|219828.201|122.256 +638458.820|219823.538|122.176 +638463.831|219818.911|122.012 +638468.836|219814.293|122.003 +638473.893|219809.627|121.945 +638478.904|219805.003|121.847 +638483.918|219800.376|121.753 +638488.938|219795.743|121.515 +638493.961|219791.104|121.253 +638499.033|219786.425|121.079 +638504.004|219781.838|120.969 +638509.027|219777.199|120.823 +638514.047|219772.566|120.768 +638518.979|219768.015|120.631 +638524.002|219763.382|120.600 +638528.970|219758.798|120.680 +638533.945|219754.211|120.750 +638538.904|219749.636|121.036 +638543.881|219745.045|121.079 +638548.859|219740.452|121.103 +638553.754|219735.938|121.707 +638558.697|219731.375|121.551 +638563.696|219726.760|121.335 +638568.610|219722.225|120.966 +638573.611|219717.610|120.805 +638578.491|219713.108|121.000 +638583.444|219708.533|120.844 +638588.367|219703.992|120.536 +638593.329|219699.411|120.323 +638598.239|219694.878|120.204 +638603.162|219690.334|119.951 +638608.081|219685.792|119.781 +638613.004|219681.248|119.604 +638617.926|219676.706|119.482 +638622.794|219672.216|119.442 +638627.723|219667.666|119.272 +638632.599|219663.164|119.177 +638637.470|219658.671|119.177 +638642.362|219654.154|118.945 +638647.279|219649.612|118.464 +638652.180|219645.086|118.214 +638657.029|219640.612|118.028 +638661.952|219636.067|117.616 +638666.822|219631.568|117.232 +638671.699|219627.066|116.873 +638676.573|219622.564|116.531 +638681.453|219618.059|116.187 +638686.299|219613.582|115.693 +638691.197|219609.059|115.233 +638696.050|219604.578|114.779 +638700.896|219600.101|114.407 +638705.745|219595.623|114.038 +638710.583|219591.158|113.813 +638715.429|219586.683|113.550 +638720.214|219582.267|113.419 +638725.058|219577.795|113.227 +638729.834|219573.388|113.236 +638734.601|219568.990|113.337 +638739.362|219564.600|113.541 +638744.126|219560.202|113.709 +638748.832|219555.862|113.980 +638753.547|219551.515|114.209 +638758.305|219547.126|114.474 +638762.993|219542.801|114.559 +638767.788|219538.375|114.559 +638772.536|219533.995|114.575 +638786.710|219520.913|114.523 +638791.428|219516.561|114.483 +638796.168|219512.184|114.276 +638800.910|219507.807|114.087 +638805.653|219503.424|113.910 +638810.347|219499.090|113.755 +638815.108|219494.694|113.514 +638819.820|219490.342|113.276 +638824.523|219485.995|113.112 +638829.235|219481.646|112.941 +638833.963|219477.272|112.295 +638838.733|219472.865|111.752 +638843.375|219468.579|111.792 +638848.045|219464.266|111.652 +638852.751|219459.917|111.295 +638849.703|219459.673|111.328 +638844.890|219464.105|111.712 +638840.071|219468.539|111.810 +638835.383|219472.855|111.722 +638830.516|219477.336|112.225 +638825.657|219481.814|112.703 +638820.826|219486.264|113.017 +638816.013|219490.695|113.218 +638811.182|219495.142|113.578 +638806.333|219499.605|113.715 +638801.493|219504.061|113.840 +638796.643|219508.529|114.056 +638791.794|219512.992|114.279 +638786.926|219517.472|114.300 +638782.034|219521.977|114.541 +638777.182|219526.439|114.480 +638772.323|219530.914|114.517 +638767.422|219535.425|114.498 +638762.579|219539.881|114.434 +638757.680|219544.389|114.447 +638752.810|219548.870|114.255 +638747.893|219553.393|114.044 +638743.035|219557.861|113.773 +638738.131|219562.372|113.514 +638733.211|219566.899|113.377 +638728.289|219571.428|113.300 +638723.360|219575.963|113.319 +638718.373|219580.554|113.425 +638713.439|219585.095|113.547 +638708.443|219589.698|113.825 +638703.499|219594.251|114.102 +638698.455|219598.897|114.416 +638693.502|219603.459|114.840 +638688.451|219608.114|115.321 +638683.449|219612.719|115.803 +638678.408|219617.361|116.248 +638673.424|219621.952|116.638 +638668.401|219626.579|116.970 +638663.375|219631.212|117.385 +638658.428|219635.762|117.473 +638653.341|219640.453|118.095 +638648.382|219645.016|118.369 +638643.341|219649.661|118.549 +638638.354|219654.251|118.668 +638633.364|219658.845|118.857 +638628.344|219663.466|118.878 +638623.318|219668.092|118.982 +638618.286|219672.725|119.189 +638613.275|219677.337|119.162 +638608.310|219681.909|119.229 +638603.226|219686.591|119.567 +638598.206|219691.212|119.753 +638593.192|219695.829|119.912 +638588.175|219700.450|120.134 +638583.158|219705.068|120.375 +638578.095|219709.728|120.594 +638573.035|219714.389|120.835 +638568.024|219719.006|121.140 +638562.998|219723.630|120.945 +638557.978|219728.254|121.402 +638552.934|219732.896|121.539 +638547.898|219737.532|121.564 +638542.945|219742.086|121.058 +638537.916|219746.713|121.012 +638532.893|219751.334|120.875 +638527.928|219755.899|120.582 +638522.896|219760.532|120.674 +638517.866|219765.162|120.741 +638512.837|219769.792|120.853 +638507.814|219774.413|120.853 +638502.788|219779.043|120.985 +638497.759|219783.673|121.177 +638492.784|219788.251|121.262 +638487.709|219792.924|121.490 +638482.683|219797.550|121.701 +638477.666|219802.168|121.801 +638472.649|219806.789|121.920 +638467.635|219811.404|121.984 +638462.573|219816.061|122.076 +638457.562|219820.676|122.170 +638452.551|219825.287|122.265 +638447.494|219829.945|122.356 +638442.486|219834.553|122.438 +638437.478|219839.162|122.481 +638432.422|219843.816|122.643 +638427.420|219848.422|122.713 +638422.415|219853.027|122.832 +638417.361|219857.678|122.987 +638412.360|219862.281|123.033 +638407.312|219866.932|123.200 +638402.307|219871.538|123.426 +638397.306|219876.143|123.664 +638392.258|219880.791|123.920 +638387.259|219885.394|124.139 +638382.261|219889.996|124.368 +638377.216|219894.642|124.609 +638372.224|219899.238|124.712 +638367.228|219903.837|125.014 +638362.189|219908.477|125.014 +638357.197|219913.073|125.246 +638352.158|219917.712|125.447 +638347.166|219922.305|125.517 +638342.176|219926.899|125.660 +638337.141|219931.535|125.761 +638332.154|219936.125|125.639 +638327.116|219940.761|125.752 +638322.081|219945.394|125.794 +638317.094|219949.981|125.377 +638312.059|219954.617|125.459 +638307.024|219959.247|125.224 +638302.034|219963.837|124.813 +638296.999|219968.473|124.889 +638291.954|219973.109|124.249 +638286.962|219977.700|123.816 +638281.920|219982.339|123.606 +638276.925|219986.932|123.216 +638271.877|219991.571|122.603 +638266.833|219996.213|122.414 +638261.828|220000.813|121.615 +638256.777|220005.458|121.103 +638251.727|220010.100|120.713 +638246.716|220014.706|120.040 +638241.656|220019.357|119.317 +638236.648|220023.962|118.964 +638231.598|220028.611|118.811 +638226.596|220033.213|118.839 +638221.558|220037.855|119.159 +638216.565|220042.452|119.488 +638211.572|220047.051|119.790 +638206.531|220051.690|120.091 +638201.538|220056.290|120.314 +638196.497|220060.932|120.573 +638191.507|220065.528|121.000 +638186.460|220070.173|121.079 +638181.470|220074.770|121.405 +638176.487|220079.366|121.908 +638171.445|220084.011|122.179 +638166.401|220088.659|122.365 +638161.405|220093.265|122.606 +638146.330|220107.149|122.466 +638141.270|220111.809|122.417 +638136.256|220116.430|122.338 +638126.207|220125.690|122.804 +638121.205|220130.298|123.024 +638116.188|220134.922|122.947 +638111.177|220139.537|123.030 +638106.166|220144.154|123.158 +638101.155|220148.769|123.292 +638096.141|220153.393|123.344 +638091.118|220158.020|123.304 +638086.086|220162.653|123.152 +638081.102|220167.243|123.045 +638076.085|220171.864|123.167 +638071.111|220176.448|123.258 +638066.137|220181.029|123.338 +638061.104|220185.665|123.304 +638056.124|220190.256|123.328 +638051.165|220194.828|123.700 +638046.245|220199.366|124.612 +638041.295|220203.926|124.462 +638036.324|220208.507|124.663 +638031.347|220213.094|124.843 +638026.357|220217.691|124.877 +638021.428|220222.232|125.078 +638016.485|220226.786|125.115 +638011.443|220231.431|125.163 +638006.545|220235.945|125.221 +638001.528|220240.563|125.038 +637996.575|220245.126|125.066 +637991.610|220249.701|124.974 +637986.642|220254.276|124.877 +637981.716|220258.814|124.724 +637976.684|220263.444|124.529 +637971.749|220267.992|124.331 +637966.759|220272.585|124.121 +637961.809|220277.142|123.850 +637956.875|220281.687|123.749 +637951.952|220286.222|123.792 +637946.960|220290.815|123.173 +637942.040|220295.348|123.319 +637937.105|220299.889|122.865 +637932.195|220304.412|122.655 +637927.306|220308.917|122.688 +637922.402|220313.432|122.603 +637917.510|220317.940|122.661 +637912.615|220322.451|122.697 +637907.781|220326.904|122.868 +637902.986|220331.326|123.408 +637898.149|220335.783|123.597 +637893.312|220340.242|123.789 +637888.490|220344.683|123.725 +637883.589|220349.197|123.825 +637878.788|220353.623|123.978 +637873.990|220358.042|124.176 +637864.234|220367.028|123.685 +637859.445|220371.438|123.630 +637854.553|220375.940|123.167 +637849.670|220380.433|122.795 +637839.969|220389.363|121.865 +637835.153|220393.798|121.722 +637830.239|220398.315|120.875 +637820.412|220407.353|119.278 +637815.554|220411.824|118.577 +637791.237|220434.203|115.001 +637786.363|220438.689|114.386 +637781.422|220443.228|112.657 +637776.439|220447.809|111.027 +637771.647|220452.219|110.402 +637766.829|220456.654|109.634 +637757.176|220465.539|108.430 +637752.555|220469.803|108.719 +637747.757|220474.223|108.201 +637743.014|220478.591|107.747 +637738.348|220482.892|107.808 +637733.639|220487.229|107.631 +637719.438|220500.308|106.439 +637710.358|220508.690|107.726 +637705.786|220512.911|108.183 +637692.305|220525.359|110.432 +637687.711|220529.593|110.533 +637665.174|220550.393|113.108 +637647.091|220567.071|113.861 +637642.580|220571.232|114.008 +637638.053|220575.402|114.099 +637624.758|220587.667|115.145 +637611.331|220600.045|115.096 +637606.903|220604.129|115.279 +637584.518|220624.755|114.416 +637580.059|220628.864|114.294 +637575.603|220632.969|113.944 +637571.195|220637.032|113.855 +637562.167|220645.344|112.706 +637557.796|220649.374|112.865 +637548.896|220657.570|111.962 +637535.390|220669.999|109.814 +637530.870|220674.160|108.887 +637526.487|220678.196|108.396 +637509.162|220694.161|107.838 +637492.606|220709.441|109.835 +637484.147|220717.237|109.640 +637480.033|220721.029|109.856 +637467.734|220732.377|110.963 +637463.616|220736.172|110.978 +637451.247|220747.568|111.054 +637447.068|220751.415|110.646 +637442.749|220755.386|109.661 +637438.464|220759.327|108.850 +637430.121|220767.008|108.015 +637421.791|220774.674|106.869 +637417.804|220778.350|107.165 +637409.864|220785.668|107.509 +637397.962|220796.635|107.726 +637394.067|220800.226|107.820 +637382.380|220810.994|107.997 +637378.537|220814.539|108.140 +637374.648|220818.120|108.122 +637366.915|220825.244|107.884 +637347.764|220842.882|107.192 +637336.694|220853.084|107.723 +637332.939|220856.544|107.534 +637329.312|220859.890|107.838 +637325.666|220863.246|107.896 +637322.054|220866.578|108.076 +637318.433|220869.915|108.247 +637314.757|220873.301|108.213 +637508.129|220693.106|108.162 +637529.782|220673.115|108.756 +637547.805|220656.503|111.840 +637565.749|220639.946|113.450 +637570.205|220635.834|113.764 +637574.667|220631.717|113.870 +637579.141|220627.586|114.059 +637588.157|220619.265|114.578 +637592.699|220615.074|114.910 +637601.712|220606.756|115.291 +637606.159|220602.651|115.196 +637615.236|220594.266|115.242 +637624.167|220586.015|114.846 +637628.574|220581.943|114.355 +637633.149|220577.715|114.248 +637642.144|220569.406|113.767 +637651.166|220561.070|113.240 +637664.854|220548.427|112.721 +637669.442|220544.193|112.819 +637678.503|220535.814|111.856 +637692.180|220523.165|110.399 +637701.223|220514.789|108.549 +637710.407|220506.291|107.582 +637719.392|220497.964|105.126 +637729.225|220488.899|107.701 +637733.901|220484.574|107.363 +637738.491|220480.325|106.500 +637743.487|220475.726|108.241 +637748.275|220471.300|108.372 +637753.070|220466.871|108.567 +637757.794|220462.500|108.329 +637762.695|220457.980|109.277 +637767.508|220453.539|109.661 +637772.458|220448.976|111.014 +637777.405|220444.414|112.066 +637787.296|220435.297|114.575 +637792.157|220430.810|115.138 +637801.993|220421.733|116.830 +637806.931|220417.177|117.702 +637821.644|220403.601|119.765 +637826.515|220399.105|120.271 +637836.411|220389.973|121.832 +637841.285|220385.468|122.100 +637846.144|220380.985|122.649 +637855.961|220371.920|123.469 +637860.863|220367.390|123.688 +637865.761|220362.864|123.901 +637870.662|220358.338|124.161 +637880.406|220349.331|123.871 +637885.253|220344.850|123.722 +637890.154|220340.321|123.670 +637895.043|220335.801|123.530 +637899.929|220331.287|123.377 +637904.778|220326.797|122.935 +637909.652|220322.292|122.707 +637914.590|220317.729|122.649 +637919.470|220313.218|122.518 +637924.414|220308.649|122.566 +637929.354|220304.080|122.606 +637934.304|220299.508|122.752 +637939.236|220294.958|123.191 +637944.189|220290.376|122.963 +637949.166|220285.780|123.453 +637954.132|220281.196|123.871 +637959.100|220276.602|123.871 +637964.038|220272.043|124.048 +637969.018|220267.440|124.221 +637974.002|220262.838|124.426 +637978.982|220258.238|124.642 +637983.953|220253.645|124.798 +637988.922|220249.055|124.929 +637993.884|220244.470|125.029 +637998.882|220239.850|125.051 +638003.832|220235.275|125.044 +638008.837|220230.651|125.154 +638013.824|220226.042|125.087 +638018.810|220221.434|125.029 +638023.791|220216.828|124.941 +638028.765|220212.229|124.764 +638033.694|220207.675|124.633 +638038.717|220203.030|124.526 +638043.697|220198.427|124.481 +638048.702|220193.800|124.145 +638053.661|220189.207|123.197 +638058.593|220184.644|123.228 +638063.665|220179.956|123.222 +638068.639|220175.357|123.176 +638073.647|220170.724|122.996 +638078.664|220166.085|122.920 +638083.641|220161.482|123.042 +638088.668|220156.837|123.155 +638093.736|220152.152|123.225 +638098.702|220147.562|123.203 +638103.703|220142.935|123.018 +638108.711|220138.302|122.981 +638113.768|220133.630|122.908 +638118.779|220128.997|122.935 +638128.740|220119.776|121.914 +638133.812|220115.089|122.277 +638143.882|220105.780|122.527 +638163.978|220087.199|122.393 +638169.016|220082.539|122.192 +638174.051|220077.879|121.942 +638179.077|220073.227|121.402 +638184.110|220068.573|121.079 +638189.151|220063.910|120.939 +638194.180|220059.255|120.515 +638199.219|220054.595|120.308 +638204.251|220049.938|119.997 +638209.289|220045.280|119.777 +638214.322|220040.623|119.430 +638219.357|220035.965|119.125 +638224.389|220031.308|118.732 +638229.431|220026.648|118.671 +638234.478|220021.981|118.860 +638239.526|220017.318|119.140 +638244.579|220012.651|119.805 +638249.633|220007.985|120.509 +638254.680|220003.321|121.140 +638259.725|219998.661|121.536 +638264.772|219994.004|122.192 +638269.814|219989.346|122.655 +638274.852|219984.689|123.127 +638279.890|219980.035|123.533 +638284.926|219975.380|123.853 +638289.961|219970.729|124.127 +638294.999|219966.078|124.855 +638300.028|219961.426|124.828 +638305.064|219956.778|125.352 +638310.090|219952.130|125.468 +638315.119|219947.482|125.587 +638320.197|219942.788|125.922 +638325.178|219938.182|125.782 +638330.256|219933.488|125.788 +638335.285|219928.837|125.819 +638340.268|219924.229|125.657 +638345.346|219919.532|125.657 +638350.378|219914.877|125.508 +638355.411|219910.223|125.371 +638360.446|219905.569|125.163 +638365.478|219900.911|125.020 +638370.514|219896.254|124.883 +638375.549|219891.597|124.746 +638380.587|219886.939|124.542 +638385.629|219882.276|124.261 +638390.667|219877.612|124.045 +638395.660|219872.995|123.871 +638400.704|219868.328|123.591 +638405.749|219863.665|123.411 +638410.744|219859.041|123.200 +638415.789|219854.374|123.075 +638420.833|219849.711|123.011 +638425.783|219845.133|122.932 +638430.831|219840.466|122.768 +638435.878|219835.800|122.670 +638440.880|219831.176|122.579 +638445.930|219826.506|122.457 +638450.929|219821.883|122.463 +638455.943|219817.247|122.115 +638460.945|219812.623|122.134 +638465.953|219807.993|122.027 +638471.009|219803.317|121.932 +638476.020|219798.684|121.847 +638481.034|219794.051|121.728 +638486.051|219789.412|121.554 +638491.071|219784.770|121.338 +638496.088|219780.128|121.183 +638501.157|219775.443|121.058 +638506.125|219770.850|121.036 +638511.146|219766.208|120.951 +638516.169|219761.566|120.878 +638521.189|219756.927|120.863 +638526.215|219752.275|120.741 +638531.174|219747.694|121.024 +638536.151|219743.095|121.015 +638541.159|219738.468|121.283 +638546.118|219733.887|121.615 +638551.105|219729.278|121.515 +638556.085|219724.673|121.518 +638561.087|219720.046|121.207 +638566.095|219715.413|120.881 +638571.100|219710.783|120.619 +638576.099|219706.165|120.521 +638581.067|219701.569|120.162 +638586.041|219696.963|119.744 +638591.046|219692.336|119.634 +638596.005|219687.752|119.518 +638600.952|219683.180|119.582 +638605.920|219678.587|119.418 +638610.892|219673.987|119.208 +638615.881|219669.373|118.845 +638620.865|219664.761|118.546 +638625.790|219660.210|118.442 +638630.749|219655.623|118.500 +638635.681|219651.063|118.375 +638640.613|219646.503|118.263 +638645.544|219641.947|118.189 +638650.482|219637.378|118.040 +638655.423|219632.809|117.927 +638660.370|219628.237|117.757 +638665.317|219623.656|117.095 +638670.273|219619.074|116.903 +638675.144|219614.566|116.592 +638680.139|219609.946|116.071 +638685.037|219605.410|115.562 +638689.984|219600.835|115.096 +638694.876|219596.306|114.712 +638699.771|219591.776|114.343 +638704.657|219587.259|114.093 +638709.543|219582.739|113.877 +638714.380|219578.265|113.691 +638719.263|219573.751|113.560 +638724.088|219569.291|113.563 +638728.907|219564.835|113.608 +638733.723|219560.385|113.733 +638738.493|219555.978|113.840 +638743.300|219551.534|114.056 +638748.064|219547.132|114.267 +638752.831|219542.728|114.453 +638757.620|219538.299|114.477 +638762.405|219533.877|114.547 +638767.129|219529.509|114.742 +638771.945|219525.056|114.605 +638776.712|219520.648|114.501 +638781.431|219516.283|114.395 +638790.995|219507.438|114.062 +638795.771|219503.022|113.980 +638800.459|219498.690|113.831 +638805.196|219494.313|113.736 +638809.951|219489.918|113.489 +638814.681|219485.544|113.124 +638819.451|219481.134|112.828 +638824.161|219476.784|112.666 +638828.925|219472.377|112.112 +638833.597|219468.061|112.246 +638838.270|219463.745|112.069 +638842.979|219459.386|111.633 +638839.733|219459.152|111.709 +638834.926|219463.590|112.115 +638830.202|219467.951|112.325 +638825.532|219472.258|112.139 +638820.710|219476.711|112.737 +638815.946|219481.109|112.944 +638811.136|219485.547|113.139 +638806.348|219489.967|113.575 +638801.550|219494.396|113.758 +638796.762|219498.812|113.864 +638791.980|219503.226|113.965 +638782.421|219512.047|114.181 +638777.529|219516.561|114.447 +638772.741|219520.980|114.706 +638767.864|219525.485|114.919 +638763.097|219529.881|114.642 +638758.263|219534.337|114.511 +638753.419|219538.805|114.526 +638748.588|219543.261|114.431 +638743.772|219547.702|114.224 +638738.911|219552.186|114.014 +638734.049|219556.666|113.813 +638729.185|219561.156|113.685 +638724.314|219565.646|113.614 +638719.382|219570.197|113.688 +638714.445|219574.753|113.846 +638709.525|219579.295|113.867 +638704.578|219583.861|114.163 +638699.643|219588.415|114.364 +638694.660|219593.014|114.605 +638689.673|219597.620|114.937 +638684.717|219602.195|115.462 +638679.652|219606.873|116.144 +638674.668|219611.476|116.522 +638669.636|219616.121|116.958 +638664.643|219620.733|117.510 +638659.654|219625.338|117.577 +638654.652|219629.953|117.772 +638649.662|219634.558|117.869 +638644.627|219639.203|117.982 +638639.680|219643.769|118.205 +638634.675|219648.384|118.001 +638629.646|219653.026|118.135 +638624.583|219657.702|118.674 +638619.530|219662.368|119.162 +638614.540|219666.974|119.482 +638609.459|219671.665|119.796 +638604.436|219676.304|120.015 +638599.416|219680.937|120.223 +638594.402|219685.558|119.753 +638589.409|219690.163|119.640 +638584.337|219694.842|119.960 +638579.296|219699.496|119.939 +638574.245|219704.156|120.073 +638569.122|219708.887|120.579 +638564.074|219713.544|120.695 +638559.021|219718.208|120.969 +638553.921|219722.917|121.277 +638548.880|219727.568|121.439 +638543.790|219732.262|121.631 +638538.709|219736.947|121.713 +638533.719|219741.543|121.097 +638528.647|219746.219|121.067 +638523.588|219750.882|120.850 +638518.519|219755.558|120.844 +638513.441|219760.243|121.009 +638508.372|219764.915|121.024 +638503.309|219769.585|120.985 +638498.185|219774.309|121.219 +638493.123|219778.979|121.228 +638488.051|219783.658|121.426 +638482.985|219788.330|121.567 +638477.916|219793.006|121.811 +638472.856|219797.672|121.902 +638467.748|219802.382|121.984 +638462.691|219807.045|122.073 +638457.632|219811.711|122.210 +638452.529|219816.421|122.368 +638447.476|219821.081|122.457 +638442.422|219825.741|122.576 +638437.323|219830.445|122.649 +638432.272|219835.102|122.774 +638427.173|219839.805|122.935 +638422.129|219844.456|122.917 +638417.078|219849.114|123.133 +638411.988|219853.807|123.127 +638406.895|219858.507|123.347 +638401.847|219863.165|123.618 +638396.754|219867.862|123.780 +638391.664|219872.559|124.045 +638386.619|219877.213|124.325 +638381.532|219881.904|124.432 +638376.491|219886.555|124.670 +638371.455|219891.200|124.798 +638366.368|219895.894|125.057 +638361.284|219900.579|125.124 +638356.249|219905.227|125.337 +638351.214|219909.869|125.493 +638346.133|219914.557|125.608 +638341.100|219919.196|125.691 +638336.068|219923.838|125.742 +638330.990|219928.520|125.755 +638326.007|219933.117|125.773 +638320.929|219937.801|125.928 +638315.896|219942.437|125.486 +638310.913|219947.034|125.569 +638305.457|219952.063|125.377 +638300.803|219956.348|124.929 +638295.816|219960.945|124.761 +638290.735|219965.630|124.383 +638285.745|219970.226|123.929 +638280.707|219974.868|123.636 +638275.672|219979.510|123.557 +638270.673|219984.110|122.746 +638265.638|219988.755|122.600 +638260.587|219993.403|121.737 +638255.589|219998.006|121.247 +638250.587|220002.614|120.692 +638245.536|220007.265|120.158 +638240.525|220011.877|119.323 +638235.475|220016.531|118.863 +638230.473|220021.140|118.616 +638225.474|220025.749|118.537 +638215.495|220034.957|119.064 +638210.509|220039.559|119.415 +638205.470|220044.207|119.671 +638200.526|220048.767|119.893 +638195.540|220053.367|120.265 +638190.559|220057.966|120.747 +638185.564|220062.575|120.811 +638180.568|220067.180|120.911 +638175.633|220071.734|121.353 +638170.702|220076.284|121.902 +638165.712|220080.881|122.213 +638160.765|220085.441|122.362 +638135.924|220108.325|122.103 +638121.013|220122.059|121.548 +638116.106|220126.589|122.585 +638111.204|220131.106|122.859 +638106.191|220135.727|122.832 +638101.274|220140.256|122.862 +638096.309|220144.831|122.893 +638091.347|220149.403|123.027 +638086.421|220153.939|122.978 +638081.441|220158.529|122.816 +638076.515|220163.064|122.813 +638071.547|220167.642|122.908 +638066.627|220172.178|123.021 +638061.653|220176.759|123.088 +638056.721|220181.304|123.063 +638051.790|220185.848|123.057 +638046.931|220190.332|124.103 +638042.012|220194.867|124.276 +638037.083|220199.409|124.371 +638032.161|220203.947|124.575 +638027.232|220208.489|124.709 +638022.303|220213.030|124.843 +638017.414|220217.535|124.935 +638012.483|220222.080|125.063 +638007.584|220226.591|125.072 +638002.683|220231.108|125.051 +637997.779|220235.625|124.990 +637992.872|220240.145|124.956 +637987.913|220244.714|124.895 +637983.045|220249.198|124.801 +637978.074|220253.776|124.660 +637973.194|220258.272|124.462 +637968.259|220262.816|124.249 +637963.367|220267.321|123.999 +637958.432|220271.866|123.837 +637953.559|220276.356|123.828 +637948.612|220280.912|123.609 +637943.659|220285.469|122.862 +637938.770|220289.971|122.777 +637933.902|220294.458|122.941 +637928.979|220298.987|122.606 +637924.084|220303.498|122.521 +637919.189|220308.006|122.502 +637914.337|220312.478|122.429 +637909.454|220316.979|122.530 +637904.614|220321.436|122.637 +637899.804|220325.870|123.008 +637894.936|220330.360|123.307 +637890.151|220334.771|123.502 +637885.314|220339.230|123.679 +637880.458|220343.704|123.716 +637875.618|220348.164|123.917 +637870.805|220352.598|123.947 +637861.143|220361.499|123.789 +637856.348|220365.912|123.645 +637846.604|220374.885|122.966 +637841.742|220379.357|122.396 +637836.896|220383.819|121.954 +637827.161|220392.777|120.829 +637822.266|220397.282|120.116 +637812.515|220406.252|118.723 +637807.641|220410.733|117.924 +637797.891|220419.697|116.406 +637793.112|220424.099|116.016 +637783.297|220433.121|114.251 +637768.560|220446.660|110.758 +637758.849|220455.594|109.387 +637753.981|220460.065|108.347 +637749.260|220464.415|108.293 +637744.535|220468.764|108.238 +637739.790|220473.132|108.082 +637735.099|220477.451|107.970 +637730.384|220481.794|107.720 +637725.616|220486.180|107.488 +637716.104|220494.931|106.308 +637702.442|220507.529|107.973 +637697.895|220511.720|108.591 +637679.762|220528.438|110.612 +637661.782|220545.013|112.538 +637657.244|220549.195|112.737 +637630.232|220574.082|114.111 +637621.399|220582.223|114.690 +637603.507|220598.704|115.126 +637590.139|220611.008|114.797 +637585.649|220615.141|114.462 +637576.740|220623.341|113.959 +637567.858|220631.515|113.425 +637563.432|220635.588|113.273 +637532.251|220664.266|109.530 +637518.956|220676.495|107.817 +637510.470|220684.307|107.982 +637501.887|220692.210|107.759 +637493.529|220699.910|108.149 +637485.296|220707.499|109.155 +637481.136|220711.334|109.366 +637476.997|220715.144|109.460 +637472.906|220718.911|109.777 +637468.874|220722.632|110.350 +637464.802|220726.388|110.774 +637460.672|220730.195|110.719 +637456.484|220734.050|110.448 +637452.347|220737.860|110.399 +637448.376|220741.524|110.865 +637444.139|220745.422|110.198 +637439.899|220749.324|109.545 +637435.657|220753.225|108.902 +637431.429|220757.115|108.119 +637427.354|220760.870|107.997 +637419.115|220768.450|106.991 +637403.326|220783.004|107.573 +637391.488|220793.913|107.625 +637383.709|220801.082|107.686 +637379.820|220804.663|107.628 +637364.345|220818.922|107.445 +637356.616|220826.039|107.049 +637348.968|220833.083|106.827 +637345.292|220836.472|107.095 +637341.516|220839.950|106.991 +637337.782|220843.391|107.061 +637326.968|220853.364|107.976 +637319.640|220860.113|107.735 +637316.007|220863.463|107.838 +637312.371|220866.809|107.954 +637308.756|220870.141|107.750 +637498.881|220692.591|107.512 +637515.901|220676.854|107.348 +637538.313|220656.171|111.100 +637556.047|220639.791|112.612 +637560.518|220635.661|112.980 +637564.965|220631.552|113.255 +637569.452|220627.410|113.477 +637573.945|220623.258|113.767 +637578.434|220619.110|114.053 +637582.845|220615.035|114.221 +637596.427|220602.486|115.096 +637609.811|220590.108|114.858 +637618.744|220581.842|114.221 +637623.231|220577.697|114.157 +637627.736|220573.530|113.941 +637632.223|220569.379|113.642 +637645.765|220556.848|112.764 +637659.441|220544.202|112.194 +637668.515|220535.805|111.264 +637677.559|220527.435|110.509 +637686.660|220519.013|109.259 +637700.379|220506.325|107.872 +637704.972|220502.079|107.549 +637709.557|220497.839|106.884 +637714.095|220493.636|105.958 +637723.727|220484.751|107.275 +637728.351|220480.474|106.930 +637733.212|220475.994|107.784 +637737.994|220471.577|108.180 +637742.685|220467.240|108.003 +637752.293|220458.370|108.533 +637757.078|220453.957|109.039 +637761.958|220449.452|109.554 +637791.472|220422.245|115.632 +637796.373|220417.722|116.193 +637801.253|220413.223|116.976 +637811.055|220404.180|118.266 +637816.014|220399.608|119.396 +637830.739|220386.023|121.509 +637845.394|220372.496|122.630 +637855.163|220363.480|123.514 +637864.910|220354.479|123.959 +637869.763|220349.995|123.847 +637874.621|220345.506|123.807 +637879.513|220340.982|123.664 +637884.357|220336.508|123.517 +637889.185|220332.046|123.286 +637894.077|220327.526|123.191 +637898.929|220323.039|122.761 +637903.800|220318.537|122.515 +637908.689|220314.020|122.445 +637913.566|220309.512|122.298 +637918.516|220304.940|122.396 +637923.408|220300.420|122.441 +637928.358|220295.848|122.588 +637933.323|220291.266|122.883 +637938.221|220286.737|122.603 +637943.174|220282.165|122.829 +637948.228|220277.502|123.655 +637953.159|220272.948|123.764 +637958.085|220268.397|123.819 +637963.068|220263.795|124.036 +637968.046|220259.198|124.194 +637973.029|220254.596|124.432 +637978.004|220250.003|124.612 +637982.975|220245.412|124.785 +637987.928|220240.837|124.795 +637992.887|220236.256|124.901 +637997.883|220231.638|124.901 +638002.839|220227.063|124.990 +638007.783|220222.494|124.983 +638012.769|220217.886|124.947 +638017.750|220213.283|124.852 +638022.724|220208.687|124.673 +638027.701|220204.087|124.590 +638032.670|220199.497|124.368 +638037.644|220194.901|124.261 +638042.612|220190.307|124.100 +638047.617|220185.680|123.801 +638052.579|220181.090|122.905 +638057.560|220176.488|122.935 +638062.586|220171.846|122.984 +638067.597|220167.213|122.816 +638072.611|220162.580|122.707 +638077.631|220157.944|122.688 +638082.654|220153.301|122.789 +638087.717|220148.626|122.771 +638092.731|220143.993|122.755 +638097.741|220139.363|122.719 +638102.801|220134.687|122.716 +638107.763|220130.106|122.652 +638112.802|220125.449|122.301 +638127.895|220111.498|121.804 +638132.900|220106.874|121.801 +638137.975|220102.189|122.274 +638143.029|220097.520|122.329 +638168.150|220074.306|121.829 +638173.219|220069.618|121.170 +638183.253|220060.346|120.905 +638188.285|220055.695|120.558 +638193.318|220051.041|120.219 +638198.347|220046.390|119.771 +638203.385|220041.735|119.573 +638208.418|220037.081|119.250 +638213.499|220032.384|118.924 +638218.534|220027.730|118.628 +638223.572|220023.072|118.455 +638228.662|220018.369|118.500 +638233.710|220013.709|118.726 +638238.764|220009.049|119.235 +638243.863|220004.342|119.945 +638248.916|219999.682|120.655 +638253.961|219995.025|121.177 +638259.054|219990.325|121.606 +638264.102|219985.670|122.533 +638269.137|219981.019|122.701 +638274.227|219976.322|123.438 +638279.262|219971.674|123.600 +638284.298|219967.026|123.917 +638289.333|219962.377|124.334 +638294.365|219957.729|124.764 +638299.398|219953.084|124.907 +638304.762|219948.134|125.489 +638309.456|219943.797|125.538 +638314.485|219939.152|125.663 +638319.514|219934.510|126.014 +638324.495|219929.904|125.877 +638329.573|219925.213|125.816 +638334.602|219920.568|125.791 +638339.585|219915.962|125.560 +638344.615|219911.314|125.642 +638349.647|219906.666|125.505 +638354.630|219902.060|125.407 +638359.711|219897.363|125.191 +638364.698|219892.755|125.047 +638369.733|219888.101|124.935 +638374.769|219883.449|124.807 +638379.758|219878.835|124.575 +638384.751|219874.223|124.325 +638389.792|219869.563|124.106 +638394.785|219864.948|123.962 +638399.826|219860.288|123.746 +638404.822|219855.673|123.563 +638409.866|219851.009|123.368 +638414.862|219846.392|123.225 +638419.858|219841.777|123.176 +638424.856|219837.156|123.045 +638429.855|219832.535|122.966 +638434.808|219827.954|122.844 +638439.810|219823.327|122.652 +638444.812|219818.701|122.557 +638449.768|219814.116|122.448 +638454.773|219809.489|122.350 +638459.735|219804.899|122.170 +638464.694|219800.315|122.082 +638469.705|219795.679|121.920 +638474.618|219791.134|121.832 +638479.632|219786.498|121.707 +638484.555|219781.945|121.494 +638489.523|219777.354|121.402 +638494.494|219772.755|121.222 +638499.463|219768.162|121.173 +638504.431|219763.568|121.146 +638509.353|219759.014|121.073 +638514.322|219754.421|121.088 +638519.299|219749.816|120.972 +638524.221|219745.268|121.061 +638529.190|219740.675|121.131 +638534.027|219736.209|121.868 +638539.013|219731.598|121.695 +638543.954|219727.029|121.509 +638548.907|219722.445|121.186 +638553.857|219717.863|120.899 +638558.804|219713.291|120.750 +638563.775|219708.689|120.229 +638568.713|219704.123|120.265 +638573.642|219699.569|120.451 +638578.540|219695.040|120.433 +638583.447|219690.501|120.296 +638588.446|219685.875|119.585 +638593.314|219681.376|120.037 +638598.203|219676.859|120.210 +638603.113|219672.317|120.137 +638608.033|219667.769|120.003 +638612.906|219663.258|119.826 +638617.835|219658.702|119.631 +638622.770|219654.136|119.372 +638627.674|219649.597|118.936 +638632.630|219645.010|118.467 +638637.552|219640.453|117.903 +638642.496|219635.878|117.674 +638647.376|219631.370|117.690 +638652.262|219626.850|117.613 +638657.163|219622.318|117.434 +638662.055|219617.791|117.336 +638666.969|219613.250|117.092 +638671.858|219608.726|117.083 +638676.738|219604.209|116.717 +638681.749|219599.573|116.059 +638686.601|219595.081|115.547 +638691.575|219590.475|114.824 +638696.464|219585.952|114.514 +638701.390|219581.398|114.367 +638706.276|219576.875|114.120 +638711.198|219572.327|114.066 +638716.033|219567.853|113.910 +638720.915|219563.339|113.806 +638725.737|219558.879|113.834 +638730.605|219554.377|113.904 +638735.418|219549.930|114.059 +638740.276|219545.441|114.258 +638745.071|219541.012|114.614 +638749.917|219536.528|114.529 +638754.693|219532.112|114.654 +638759.537|219527.637|114.663 +638764.304|219523.230|114.910 +638773.993|219514.269|114.590 +638778.794|219509.825|114.212 +638783.622|219505.362|114.078 +638788.414|219500.928|113.846 +638793.281|219496.426|113.803 +638798.067|219491.997|113.688 +638802.876|219487.544|113.395 +638807.701|219483.072|113.008 +638812.505|219478.625|112.828 +638817.342|219474.145|112.063 +638822.079|219469.762|112.410 +638826.882|219465.318|112.313 +638831.677|219460.877|111.935 +638836.380|219456.521|111.886 +638829.802|219458.682|111.944 +638825.017|219463.102|112.243 +638820.293|219467.461|112.459 +638815.574|219471.810|112.310 +638810.786|219476.230|112.691 +638806.022|219480.628|112.941 +638801.261|219485.020|113.169 +638796.439|219489.473|113.532 +638791.711|219493.835|113.572 +638786.905|219498.270|113.855 +638782.196|219502.613|113.813 +638777.322|219507.112|114.291 +638772.539|219511.526|114.489 +638758.196|219524.760|114.760 +638753.407|219529.173|114.681 +638748.619|219533.593|114.642 +638743.821|219538.019|114.693 +638739.066|219542.402|114.395 +638734.257|219546.837|114.181 +638729.486|219551.232|114.041 +638724.674|219555.670|113.883 +638719.846|219560.126|113.883 +638714.960|219564.631|113.980 +638710.122|219569.096|114.139 +638705.288|219573.555|114.258 +638700.399|219578.067|114.468 +638695.513|219582.578|114.709 +638690.591|219587.125|115.315 +638685.607|219591.728|116.092 +638680.706|219596.254|116.562 +638675.802|219600.777|116.620 +638670.882|219605.319|116.882 +638665.978|219609.845|116.982 +638661.065|219614.380|117.220 +638656.115|219618.946|117.342 +638651.235|219623.445|117.263 +638646.282|219628.017|117.488 +638641.362|219632.562|117.943 +638636.345|219637.192|118.421 +638631.386|219641.773|118.827 +638626.433|219646.342|119.177 +638621.447|219650.944|119.421 +638616.469|219655.538|119.579 +638611.492|219660.131|119.741 +638606.566|219664.676|119.924 +638601.552|219669.303|120.030 +638596.587|219673.887|120.168 +638591.653|219678.434|119.881 +638586.663|219683.037|119.747 +638581.673|219687.642|120.287 +638576.629|219692.297|120.287 +638571.676|219696.866|120.393 +638566.671|219701.486|120.579 +638561.685|219706.086|120.530 +638556.671|219710.707|120.195 +638551.602|219715.388|120.704 +638546.606|219720.003|120.911 +638541.552|219724.670|121.286 +638536.508|219729.330|121.567 +638531.521|219733.935|121.762 +638526.477|219738.587|121.259 +638521.466|219743.211|121.073 +638516.446|219747.844|121.030 +638511.377|219752.525|121.064 +638506.302|219757.210|121.213 +638501.243|219761.880|121.122 +638496.174|219766.561|121.244 +638491.157|219771.188|121.247 +638486.045|219775.910|121.341 +638480.973|219780.591|121.597 +638475.914|219785.267|121.713 +638470.851|219789.940|121.868 +638465.742|219794.658|122.003 +638460.683|219799.327|122.152 +638455.577|219804.040|122.262 +638450.521|219808.712|122.445 +638445.467|219813.379|122.594 +638440.365|219818.091|122.792 +638435.265|219822.797|122.880 +638430.215|219827.461|123.045 +638425.073|219832.209|123.158 +638419.980|219836.912|123.191 +638414.935|219841.570|123.313 +638409.842|219846.270|123.383 +638404.749|219850.976|123.621 +638399.659|219855.676|123.780 +638394.565|219860.379|124.033 +638389.478|219865.076|124.118 +638384.388|219869.776|124.337 +638379.301|219874.476|124.642 +638374.168|219879.216|124.807 +638369.133|219883.867|124.907 +638364.000|219888.604|125.099 +638358.919|219893.297|125.188 +638353.838|219897.988|125.398 +638348.757|219902.679|125.486 +638343.627|219907.416|125.688 +638338.598|219912.058|125.621 +638333.471|219916.791|125.770 +638328.393|219921.479|125.837 +638323.315|219926.167|125.925 +638318.240|219930.855|126.035 +638313.117|219935.582|125.633 +638308.039|219940.270|125.654 +638303.009|219944.909|125.471 +638297.883|219949.637|125.026 +638292.805|219954.325|124.734 +638287.769|219958.967|124.337 +638282.640|219963.697|123.895 +638277.555|219968.388|123.581 +638272.520|219973.033|123.408 +638267.430|219977.727|122.728 +638262.346|219982.418|122.609 +638257.298|219987.069|121.643 +638252.205|219991.766|121.143 +638247.109|219996.463|120.539 +638242.058|220001.121|119.912 +638236.956|220005.824|119.226 +638231.902|220010.481|118.656 +638226.855|220015.141|118.382 +638221.807|220019.799|118.247 +638216.723|220024.493|118.458 +638211.734|220029.101|118.723 +638206.653|220033.795|119.070 +638201.617|220038.447|119.363 +638196.631|220043.052|119.689 +638191.599|220047.703|120.024 +638186.563|220052.352|120.384 +638181.531|220057.003|120.744 +638176.548|220061.608|121.052 +638166.568|220070.826|121.518 +638161.542|220075.471|121.990 +638136.582|220098.514|121.932 +638106.785|220126.025|122.079 +638101.841|220130.594|122.411 +638096.885|220135.172|122.545 +638091.965|220139.713|122.524 +638086.997|220144.301|122.502 +638082.078|220148.842|122.505 +638077.158|220153.384|122.542 +638072.187|220157.974|122.548 +638067.267|220162.516|122.652 +638062.351|220167.057|122.774 +638057.428|220171.602|122.856 +638052.488|220176.165|122.664 +638047.660|220180.627|123.438 +638042.768|220185.150|123.944 +638037.845|220189.698|124.093 +638032.923|220194.242|124.249 +638028.049|220198.744|124.410 +638023.123|220203.292|124.566 +638018.246|220207.800|124.706 +638013.363|220212.308|124.825 +638008.429|220216.865|124.904 +638003.576|220221.342|124.859 +637998.632|220225.908|124.874 +637993.780|220230.389|124.843 +637988.879|220234.915|124.846 +637983.969|220239.447|124.770 +637979.104|220243.937|124.694 +637974.178|220248.482|124.505 +637969.295|220252.990|124.273 +637964.412|220257.495|124.069 +637959.520|220262.009|123.819 +637954.638|220266.517|123.667 +637949.834|220270.955|123.856 +637944.860|220275.542|123.335 +637939.964|220280.053|122.664 +637935.063|220284.576|122.457 +637930.238|220289.032|122.536 +637925.410|220293.491|122.603 +637920.533|220297.990|122.222 +637915.629|220302.517|122.094 +637910.826|220306.951|122.006 +637905.964|220311.444|122.295 +637901.166|220315.873|122.313 +637896.341|220320.329|122.542 +637891.586|220324.724|122.960 +637886.752|220329.190|123.139 +637881.964|220333.612|123.295 +637877.127|220338.078|123.484 +637872.387|220342.458|123.682 +637867.510|220346.960|123.575 +637862.731|220351.376|123.880 +637857.903|220355.832|123.810 +637853.108|220360.258|123.655 +637848.244|220364.745|123.350 +637843.388|220369.222|122.761 +637828.871|220382.615|121.545 +637819.151|220391.579|120.192 +637804.456|220405.119|117.431 +637794.806|220414.010|116.239 +637785.141|220422.919|115.062 +637780.228|220427.442|114.136 +637775.403|220431.886|113.172 +637770.495|220436.403|112.011 +637765.579|220440.930|110.838 +637755.892|220449.854|109.253 +637736.842|220467.420|107.927 +637727.366|220476.155|107.424 +637722.465|220480.666|106.010 +637717.932|220484.858|106.961 +637699.327|220502.030|107.278 +637690.217|220510.446|108.408 +637676.580|220523.043|109.753 +637663.041|220535.546|111.213 +637653.961|220543.928|111.563 +637644.884|220552.307|111.716 +637640.480|220556.379|112.694 +637636.109|220560.418|113.319 +637618.147|220576.999|114.154 +637604.806|220589.316|114.760 +637595.866|220597.564|114.663 +637591.413|220601.672|114.736 +637586.929|220605.808|114.389 +637582.446|220609.945|114.337 +637564.578|220626.422|113.380 +637546.753|220642.857|112.212 +637542.404|220646.865|111.996 +637537.911|220651.007|111.344 +637524.354|220663.486|108.475 +637519.788|220667.689|107.345 +637502.737|220683.426|107.741 +637498.400|220687.425|107.546 +637490.100|220695.088|108.183 +637473.458|220710.450|108.960 +637465.311|220717.975|109.960 +637448.943|220733.069|110.655 +637444.791|220736.897|110.542 +637436.388|220744.633|109.515 +637432.136|220748.547|108.820 +637427.921|220752.430|108.299 +637419.493|220760.181|106.671 +637411.541|220767.514|106.860 +637403.662|220774.784|107.412 +637399.705|220778.429|107.421 +637376.214|220800.082|107.479 +637368.457|220807.230|107.262 +637364.702|220810.692|107.558 +637345.704|220828.203|107.287 +637341.754|220831.836|106.702 +637334.341|220838.670|106.811 +637323.658|220848.530|108.396 +637320.000|220851.901|108.177 +637305.321|220865.422|107.451 +637502.384|220681.042|107.589 +637515.103|220669.268|107.211 +637533.062|220652.684|110.368 +637550.826|220636.267|112.249 +637555.309|220632.122|112.679 +637559.774|220627.992|113.032 +637564.261|220623.844|113.258 +637573.140|220615.632|113.572 +637582.113|220607.336|114.172 +637586.640|220603.148|114.456 +637591.135|220598.993|114.590 +637609.061|220582.406|114.529 +637613.505|220578.291|114.239 +637626.922|220565.867|113.346 +637631.406|220561.716|113.041 +637644.805|220549.301|111.395 +637649.368|220545.077|111.316 +637667.549|220528.246|110.182 +637672.048|220524.076|109.545 +637695.082|220502.743|107.872 +637708.712|220490.100|105.150 +637718.298|220481.240|106.168 +637723.053|220476.841|106.653 +637727.948|220472.321|107.726 +637732.666|220467.956|107.695 +637737.409|220463.567|107.851 +637742.249|220459.093|108.344 +637747.050|220454.652|108.613 +637766.490|220436.690|111.551 +637771.425|220432.133|112.538 +637781.224|220423.084|114.498 +637786.089|220418.585|115.129 +637791.014|220414.037|115.846 +637795.928|220409.496|116.900 +637800.814|220404.981|117.406 +637805.736|220400.434|118.220 +637815.572|220391.345|119.924 +637820.455|220386.834|120.564 +637825.369|220382.292|121.088 +637830.218|220377.808|121.545 +637835.174|220373.227|122.094 +637840.036|220368.732|122.704 +637849.844|220359.664|123.530 +637854.742|220355.134|123.734 +637864.423|220346.173|123.712 +637869.266|220341.690|123.545 +637874.106|220337.209|123.371 +637878.934|220332.735|123.133 +637883.826|220328.208|123.027 +637888.657|220323.734|122.841 +637893.510|220319.238|122.423 +637898.338|220314.770|122.240 +637903.276|220310.201|122.173 +637908.085|220305.744|121.859 +637913.029|220301.169|121.908 +637917.927|220296.637|122.024 +637922.865|220292.071|122.496 +637927.782|220287.520|122.365 +637932.710|220282.958|122.365 +637937.608|220278.428|122.554 +637942.580|220273.832|123.048 +637947.615|220269.178|123.722 +637952.470|220264.682|123.566 +637957.454|220260.073|123.773 +637962.383|220255.510|123.950 +637967.366|220250.905|124.185 +637972.340|220246.299|124.404 +637977.315|220241.700|124.612 +637982.277|220237.109|124.724 +637987.230|220232.525|124.782 +637992.180|220227.944|124.791 +637997.124|220223.369|124.776 +638002.116|220218.748|124.801 +638007.060|220214.170|124.846 +638012.044|220209.562|124.773 +638017.018|220204.956|124.639 +638021.992|220200.347|124.538 +638026.967|220195.745|124.429 +638031.926|220191.152|124.145 +638036.888|220186.555|123.926 +638041.911|220181.910|123.859 +638046.858|220177.326|123.463 +638051.777|220172.766|122.679 +638056.810|220168.115|122.786 +638061.775|220163.521|122.670 +638066.786|220158.882|122.533 +638071.800|220154.243|122.487 +638076.817|220149.604|122.469 +638081.828|220144.965|122.423 +638086.845|220140.326|122.429 +638091.856|220135.690|122.432 +638096.915|220131.008|122.438 +638101.920|220126.382|122.323 +638106.931|220121.736|121.539 +638132.181|220098.386|122.070 +638137.222|220093.719|121.939 +638162.438|220070.387|121.515 +638177.590|220056.363|120.799 +638182.671|220051.663|120.494 +638187.703|220047.005|120.177 +638192.733|220042.348|119.838 +638197.811|220037.645|119.476 +638202.840|220032.991|119.055 +638207.921|220028.288|118.714 +638213.002|220023.584|118.461 +638218.037|220018.924|118.202 +638223.124|220014.218|118.174 +638228.172|220009.551|118.421 +638233.271|220004.839|118.970 +638238.322|220000.173|119.531 +638243.415|219995.464|120.119 +638248.468|219990.800|121.006 +638253.604|219986.051|121.396 +638258.697|219981.348|122.109 +638263.736|219976.691|122.716 +638268.820|219971.994|123.048 +638273.907|219967.294|123.648 +638278.936|219962.640|123.825 +638284.017|219957.946|124.115 +638289.098|219953.249|124.618 +638294.128|219948.600|124.950 +638299.205|219943.903|125.185 +638304.277|219939.216|125.627 +638309.307|219934.567|125.724 +638319.453|219925.183|126.062 +638324.483|219920.528|125.886 +638329.558|219915.831|125.761 +638334.632|219911.137|125.697 +638339.662|219906.483|125.614 +638344.688|219901.832|125.614 +638349.766|219897.135|125.508 +638354.798|219892.478|125.364 +638359.830|219887.820|125.188 +638364.860|219883.166|125.145 +638369.895|219878.505|124.907 +638374.930|219873.848|124.770 +638379.965|219869.188|124.593 +638385.004|219864.524|124.353 +638390.039|219859.867|124.322 +638395.081|219855.200|124.036 +638400.070|219850.580|123.895 +638405.115|219845.913|123.661 +638410.110|219841.286|123.423 +638415.152|219836.623|123.362 +638420.147|219832.002|123.261 +638425.143|219827.378|123.185 +638430.191|219822.712|123.088 +638435.189|219818.088|122.941 +638440.194|219813.458|122.731 +638445.196|219808.834|122.667 +638450.152|219804.250|122.536 +638455.166|219799.611|122.219 +638460.168|219794.984|122.201 +638465.130|219790.394|122.070 +638470.144|219785.758|121.862 +638475.109|219781.164|121.698 +638480.074|219776.571|121.561 +638485.042|219771.975|121.399 +638489.965|219767.424|121.271 +638494.930|219762.831|121.222 +638499.901|219758.231|121.103 +638504.821|219753.684|121.100 +638509.789|219749.090|121.119 +638514.718|219744.530|121.009 +638519.634|219739.986|121.116 +638524.465|219735.527|121.951 +638529.452|219730.915|121.707 +638534.347|219726.386|121.442 +638539.300|219721.798|121.030 +638544.201|219717.266|120.756 +638549.157|219712.679|120.405 +638554.028|219708.180|120.658 +638558.923|219703.650|120.576 +638563.815|219699.124|120.512 +638568.719|219694.592|120.372 +638573.617|219690.059|120.283 +638578.525|219685.521|120.155 +638583.426|219680.986|120.082 +638588.324|219676.453|119.482 +638593.186|219671.963|120.024 +638598.047|219667.465|119.930 +638602.964|219662.920|119.814 +638607.831|219658.415|119.701 +638612.702|219653.913|119.607 +638617.582|219649.396|119.400 +638622.456|219644.888|119.308 +638627.351|219640.359|118.997 +638632.194|219635.878|118.763 +638637.089|219631.352|118.522 +638641.945|219626.856|118.193 +638646.858|219622.308|117.815 +638651.738|219617.794|117.306 +638656.606|219613.289|116.961 +638661.446|219608.812|116.928 +638666.280|219604.340|116.992 +638671.108|219599.875|116.662 +638676.015|219595.334|116.507 +638680.834|219590.877|116.336 +638685.702|219586.375|116.172 +638690.475|219581.959|115.986 +638695.385|219577.411|115.465 +638700.268|219572.888|114.760 +638705.166|219568.356|114.425 +638709.961|219563.921|114.191 +638714.807|219559.437|113.950 +638719.626|219554.981|113.986 +638724.433|219550.537|114.136 +638729.203|219546.126|114.221 +638734.010|219541.686|114.447 +638738.761|219537.293|114.715 +638743.590|219532.831|114.779 +638748.372|219528.408|114.834 +638753.115|219524.022|114.824 +638757.958|219519.542|114.815 +638762.716|219515.144|114.736 +638767.583|219510.639|114.572 +638772.354|219506.228|114.447 +638777.203|219501.738|114.093 +638782.010|219497.288|113.721 +638786.783|219492.875|113.648 +638791.556|219488.461|113.593 +638796.366|219484.014|113.307 +638801.224|219479.515|113.008 +638805.979|219475.120|112.819 +638810.807|219470.652|112.459 +638815.541|219466.275|112.462 +638820.287|219461.886|112.389 +638825.112|219457.420|112.121 +638822.039|219457.024|112.133 +638817.223|219461.468|112.307 +638812.414|219465.909|112.481 +638807.582|219470.368|112.453 +638802.855|219474.733|112.429 +638797.978|219479.238|112.810 +638793.159|219483.688|113.154 +638788.316|219488.160|113.331 +638783.476|219492.628|113.496 +638778.693|219497.044|113.651 +638773.774|219501.589|114.111 +638768.931|219506.060|114.401 +638764.063|219510.556|114.529 +638759.250|219515.000|114.632 +638754.389|219519.487|114.745 +638749.591|219523.916|114.770 +638744.775|219528.357|114.541 +638739.929|219532.831|114.599 +638735.086|219537.303|114.663 +638730.276|219541.737|114.453 +638725.426|219546.212|114.200 +638720.608|219550.656|114.084 +638715.740|219555.149|114.020 +638710.891|219559.629|114.270 +638705.980|219564.165|114.669 +638701.045|219568.727|115.321 +638696.135|219573.263|115.782 +638691.274|219577.750|115.797 +638686.394|219582.255|116.007 +638681.520|219586.756|116.205 +638676.652|219591.249|116.361 +638671.730|219595.794|116.608 +638666.832|219600.317|116.659 +638661.976|219604.801|116.763 +638657.060|219609.339|117.050 +638652.128|219613.899|117.540 +638647.212|219618.440|117.894 +638642.256|219623.015|118.174 +638637.354|219627.542|118.421 +638632.450|219632.071|118.732 +638627.509|219636.631|118.939 +638622.575|219641.191|119.137 +638617.640|219645.748|119.332 +638612.717|219650.292|119.442 +638607.795|219654.837|119.543 +638602.830|219659.421|119.631 +638597.916|219663.953|119.671 +638592.951|219668.541|119.832 +638588.071|219673.039|119.470 +638583.088|219677.645|119.930 +638578.135|219682.217|119.973 +638573.172|219686.798|120.192 +638568.223|219691.367|120.265 +638563.227|219695.979|120.335 +638558.280|219700.548|120.457 +638553.336|219705.110|120.521 +638548.350|219709.710|120.500 +638543.369|219714.306|120.469 +638538.370|219718.918|120.698 +638533.414|219723.496|121.116 +638528.409|219728.117|121.539 +638523.371|219732.768|121.804 +638518.394|219737.361|121.856 +638513.462|219741.903|121.100 +638508.442|219746.536|121.106 +638503.468|219751.126|121.177 +638498.460|219755.744|120.963 +638493.437|219760.380|121.119 +638488.417|219765.013|121.247 +638483.396|219769.643|121.359 +638478.376|219774.279|121.551 +638473.359|219778.906|121.698 +638468.294|219783.581|121.905 +638463.280|219788.211|122.082 +638458.223|219792.878|122.155 +638453.209|219797.508|122.448 +638448.152|219802.171|122.579 +638443.099|219806.838|122.719 +638438.045|219811.501|122.862 +638432.992|219816.162|122.978 +638427.941|219820.825|123.146 +638422.894|219825.482|123.240 +638417.797|219830.185|123.392 +638412.756|219834.840|123.411 +638407.708|219839.497|123.591 +638402.661|219844.154|123.816 +638397.571|219848.851|123.935 +638392.526|219853.509|124.215 +638387.436|219858.206|124.383 +638382.352|219862.900|124.465 +638377.311|219867.554|124.740 +638372.227|219872.245|124.840 +638367.139|219876.939|125.005 +638362.107|219881.584|125.069 +638357.023|219886.278|125.276 +638351.939|219890.966|125.441 +638346.907|219895.611|125.520 +638341.829|219900.299|125.666 +638336.702|219905.029|125.694 +638331.670|219909.671|125.791 +638326.592|219914.359|125.858 +638321.468|219919.087|125.916 +638316.436|219923.729|125.995 +638311.312|219928.453|125.758 +638306.234|219933.138|125.788 +638301.162|219937.817|125.462 +638296.081|219942.501|125.057 +638291.003|219947.186|124.877 +638285.922|219951.871|124.563 +638280.838|219956.556|123.947 +638275.705|219961.286|123.624 +638270.624|219965.971|123.432 +638265.537|219970.662|122.847 +638260.453|219975.350|122.755 +638255.357|219980.044|121.817 +638250.267|219984.735|121.350 +638245.167|219989.432|120.680 +638240.068|219994.129|119.954 +638235.018|219998.786|119.326 +638229.915|220003.486|118.738 +638224.816|220008.186|118.296 +638219.720|220012.886|118.034 +638214.629|220017.583|118.083 +638209.591|220022.234|118.375 +638204.553|220026.885|118.577 +638199.472|220031.576|118.897 +638194.394|220036.267|119.412 +638189.361|220040.912|119.787 +638184.326|220045.564|120.030 +638179.294|220050.209|120.430 +638174.259|220054.857|120.704 +638169.168|220059.557|120.771 +638154.066|220073.502|121.676 +638149.036|220078.150|122.057 +638133.973|220092.049|121.820 +638128.907|220096.721|121.554 +638103.868|220119.834|121.475 +638098.881|220124.440|121.945 +638093.934|220129.009|122.225 +638088.975|220133.587|122.307 +638083.964|220138.214|122.362 +638079.045|220142.752|122.359 +638074.028|220147.382|122.362 +638069.108|220151.924|122.438 +638064.143|220156.508|122.515 +638059.175|220161.095|122.582 +638054.259|220165.634|122.734 +638049.330|220170.181|122.758 +638044.462|220174.683|123.612 +638039.531|220179.234|123.591 +638034.614|220183.775|123.807 +638029.704|220188.311|124.106 +638024.836|220192.807|124.340 +638019.908|220197.354|124.456 +638014.982|220201.905|124.578 +638010.145|220206.367|124.663 +638005.210|220210.924|124.752 +638000.312|220215.444|124.718 +637995.417|220219.961|124.740 +637990.519|220224.485|124.727 +637985.614|220229.011|124.685 +637980.707|220233.537|124.630 +637975.797|220238.070|124.587 +637970.923|220242.565|124.426 +637966.040|220247.073|124.164 +637961.112|220251.618|124.005 +637956.274|220256.080|123.786 +637951.337|220260.637|123.572 +637946.536|220265.069|123.783 +637941.595|220269.623|123.097 +637936.715|220274.121|122.600 +637931.811|220278.645|122.347 +637926.962|220283.119|122.170 +637922.088|220287.621|122.252 +637917.303|220292.035|122.307 +637912.407|220296.549|121.777 +637907.558|220301.023|121.728 +637902.721|220305.488|121.804 +637897.960|220309.887|122.128 +637893.114|220314.361|122.164 +637888.392|220318.723|122.441 +637883.570|220323.176|122.716 +637878.794|220327.586|122.993 +637873.987|220332.024|123.011 +637869.239|220336.404|123.152 +637864.450|220340.830|123.353 +637845.336|220358.472|123.554 +637835.613|220367.433|122.280 +637830.791|220371.883|121.996 +637825.969|220376.327|121.375 +637821.120|220380.796|120.957 +637816.285|220385.252|120.299 +637811.445|220389.711|119.643 +637801.771|220398.629|118.080 +637796.925|220403.098|117.482 +637792.081|220407.563|116.562 +637787.268|220412.001|115.910 +637782.410|220416.479|114.962 +637777.594|220420.916|114.364 +637772.669|220425.452|113.029 +637762.918|220434.434|110.844 +637753.390|220443.225|109.609 +637734.355|220460.784|107.994 +637729.618|220465.152|107.570 +637724.909|220469.502|107.323 +637720.127|220473.909|106.665 +637715.323|220478.335|105.583 +637710.858|220482.471|106.933 +637683.304|220507.928|108.186 +637678.720|220512.162|108.293 +637674.163|220516.371|108.597 +637669.695|220520.504|109.119 +637665.171|220524.683|109.646 +637660.731|220528.791|110.350 +637656.216|220532.964|110.658 +637647.018|220541.456|110.362 +637638.276|220549.545|112.109 +637620.436|220566.029|113.233 +637607.168|220578.291|114.157 +637602.764|220582.360|114.419 +637580.525|220602.888|114.047 +637576.054|220607.015|113.803 +637571.595|220611.133|113.642 +637562.688|220619.351|112.929 +637558.229|220623.466|112.840 +637549.381|220631.631|112.292 +637540.596|220639.739|111.624 +637531.626|220648.008|110.420 +637527.146|220652.138|109.622 +637496.729|220680.201|107.439 +637471.739|220703.290|108.564 +637467.627|220707.088|108.771 +637455.533|220718.274|110.265 +637451.360|220722.126|110.256 +637434.751|220737.455|109.140 +637422.181|220749.050|107.628 +637413.714|220756.852|105.854 +637409.904|220760.379|106.634 +637374.538|220793.047|106.976 +637347.679|220817.855|106.778 +637343.933|220821.315|106.945 +637336.423|220828.249|106.641 +637328.995|220835.110|106.692 +637303.465|220858.686|106.680 +637495.312|220679.058|107.851 +637503.539|220671.438|106.936 +637516.450|220659.499|107.497 +637520.833|220655.448|108.015 +637529.831|220647.146|109.969 +637538.819|220638.846|111.490 +637552.023|220626.642|112.481 +637565.291|220614.376|113.218 +637569.665|220610.329|113.188 +637574.158|220606.180|113.761 +637578.623|220602.050|113.956 +637583.022|220597.984|114.096 +637596.411|220585.600|114.334 +637605.275|220577.395|114.087 +637609.765|220573.244|114.020 +637614.187|220569.147|113.617 +637623.042|220560.951|112.889 +637627.474|220556.848|112.584 +637640.861|220544.449|111.411 +637645.216|220540.414|110.438 +637676.995|220510.994|108.201 +637681.554|220506.773|107.927 +637686.169|220502.502|107.704 +637709.334|220481.066|106.772 +637713.872|220476.860|105.863 +637718.701|220472.403|106.778 +637723.507|220467.962|107.268 +637728.271|220463.561|107.845 +637732.999|220459.187|107.906 +637737.738|220454.804|108.055 +637742.542|220450.366|108.652 +637752.207|220441.439|109.646 +637756.996|220437.016|110.234 +637761.936|220432.456|111.200 +637766.853|220427.918|112.395 +637771.708|220423.437|113.203 +637776.664|220418.865|114.392 +637781.538|220414.363|115.068 +637786.442|220409.837|115.974 +637791.295|220405.356|116.918 +637796.233|220400.793|117.449 +637815.825|220382.704|120.509 +637820.696|220378.202|121.091 +637825.573|220373.694|121.347 +637835.320|220364.687|122.310 +637840.249|220360.133|122.688 +637845.147|220355.607|123.240 +637859.729|220342.122|123.383 +637864.514|220337.694|123.130 +637869.415|220333.158|123.042 +637874.210|220328.723|122.886 +637879.114|220324.188|122.871 +637883.933|220319.726|122.566 +637888.791|220315.230|122.167 +637893.677|220310.707|122.051 +637898.557|220306.193|121.911 +637903.431|220301.681|121.701 +637908.311|220297.167|121.585 +637913.246|220292.608|121.993 +637918.205|220288.023|122.213 +637923.066|220283.525|122.003 +637928.022|220278.943|122.234 +637932.963|220274.374|122.359 +637937.874|220269.833|122.691 +637942.915|220265.176|123.405 +637947.813|220260.649|123.664 +637952.778|220256.059|123.652 +637957.710|220251.499|123.825 +637962.687|220246.894|124.005 +637967.619|220242.337|124.231 +637972.599|220237.731|124.508 +637977.559|220233.144|124.557 +637982.515|220228.560|124.621 +637987.465|220223.982|124.630 +637992.421|220219.398|124.743 +637997.410|220214.783|124.679 +638002.351|220210.211|124.663 +638007.295|220205.642|124.676 +638012.275|220201.033|124.572 +638017.244|220196.434|124.380 +638022.221|220191.831|124.276 +638027.189|220187.235|124.075 +638032.151|220182.639|123.850 +638037.114|220178.048|123.618 +638042.088|220173.446|123.542 +638047.029|220168.868|123.085 +638051.963|220164.293|122.533 +638056.987|220159.641|122.563 +638061.997|220155.002|122.438 +638066.963|220150.403|122.384 +638071.977|220145.761|122.359 +638076.936|220141.167|122.237 +638081.950|220136.525|122.225 +638086.958|220131.889|122.173 +638091.950|220127.262|121.859 +638106.943|220113.376|121.289 +638117.002|220104.061|121.289 +638127.021|220094.786|121.551 +638147.171|220076.132|121.692 +638152.206|220071.466|121.469 +638167.303|220057.478|120.668 +638172.390|220052.769|120.576 +638177.374|220048.151|120.326 +638182.452|220043.448|119.936 +638187.484|220038.785|119.735 +638192.513|220034.124|119.378 +638197.591|220029.421|119.006 +638202.614|220024.764|118.452 +638207.649|220020.098|118.250 +638212.731|220015.391|118.037 +638217.815|220010.682|117.872 +638222.862|220006.013|118.177 +638227.958|220001.297|118.665 +638233.006|219996.628|119.229 +638238.102|219991.919|119.793 +638243.198|219987.207|120.573 +638248.292|219982.497|121.244 +638253.330|219977.837|121.682 +638258.423|219973.131|122.609 +638263.501|219968.428|122.755 +638273.617|219959.070|123.612 +638278.744|219954.328|123.935 +638283.776|219949.673|124.395 +638288.854|219944.976|124.904 +638293.926|219940.279|125.005 +638299.001|219935.582|125.264 +638304.073|219930.892|125.627 +638309.145|219926.195|125.794 +638314.220|219921.498|125.633 +638319.292|219916.804|126.002 +638324.364|219912.104|125.874 +638329.439|219907.407|125.819 +638334.465|219902.749|125.645 +638339.540|219898.052|125.645 +638344.615|219893.352|125.563 +638349.690|219888.652|125.471 +638354.768|219883.949|125.355 +638359.800|219879.289|125.151 +638364.878|219874.586|125.075 +638369.956|219869.880|124.886 +638374.991|219865.219|124.764 +638380.023|219860.556|124.606 +638385.107|219855.850|124.499 +638390.143|219851.183|124.270 +638395.230|219846.471|124.090 +638400.268|219841.804|123.956 +638405.310|219837.135|123.743 +638410.351|219832.465|123.530 +638415.392|219827.799|123.487 +638420.434|219823.126|123.353 +638425.475|219818.454|123.240 +638430.520|219813.781|123.149 +638435.518|219809.145|122.932 +638440.563|219804.469|122.871 +638445.613|219799.788|122.658 +638450.618|219795.149|122.493 +638455.620|219790.510|122.353 +638460.680|219785.822|122.094 +638465.688|219781.180|121.923 +638470.695|219776.537|121.789 +638475.661|219771.935|121.588 +638480.672|219767.287|121.442 +638485.689|219762.639|121.259 +638490.654|219758.036|121.146 +638495.662|219753.394|121.177 +638500.624|219748.798|121.213 +638505.592|219744.189|121.100 +638510.554|219739.593|121.201 +638515.425|219735.088|122.060 +638520.415|219730.461|121.698 +638525.355|219725.880|121.359 +638530.351|219721.247|120.985 +638535.310|219716.644|120.405 +638540.236|219712.078|120.448 +638545.170|219707.503|120.366 +638550.099|219702.940|120.433 +638555.040|219698.359|120.326 +638559.932|219693.824|120.241 +638564.830|219689.285|120.134 +638569.777|219684.698|119.982 +638574.675|219680.156|119.902 +638579.576|219675.615|119.838 +638584.478|219671.073|119.771 +638589.363|219666.541|119.299 +638594.243|219662.021|119.601 +638599.151|219657.470|119.518 +638603.960|219653.014|119.512 +638608.880|219648.454|119.357 +638613.751|219643.937|119.223 +638618.624|219639.420|119.098 +638623.455|219634.942|118.936 +638628.338|219630.416|118.759 +638633.221|219625.887|118.595 +638638.068|219621.391|118.342 +638642.966|219616.852|118.095 +638647.809|219612.363|117.943 +638652.674|219607.849|117.577 +638657.532|219603.344|117.318 +638662.375|219598.848|116.717 +638667.219|219594.361|116.696 +638672.047|219589.881|116.330 +638676.905|219585.376|116.193 +638681.703|219580.932|116.224 +638686.519|219576.466|116.077 +638691.304|219572.028|115.779 +638696.166|219567.520|115.708 +638700.954|219563.083|115.458 +638705.758|219558.629|115.538 +638710.567|219554.170|115.141 +638715.377|219549.708|114.760 +638720.190|219545.243|114.389 +638724.954|219540.829|114.480 +638729.651|219536.480|114.764 +638734.430|219532.048|114.754 +638739.225|219527.604|114.651 +638743.910|219523.263|114.690 +638748.707|219518.816|114.599 +638753.428|219514.439|114.757 +638758.180|219510.035|114.690 +638762.960|219505.603|114.428 +638767.730|219501.181|114.285 +638772.521|219496.737|113.962 +638777.258|219492.344|113.742 +638782.034|219487.916|113.602 +638786.792|219483.502|113.264 +638791.535|219479.104|113.041 +638801.017|219470.313|112.365 +638805.760|219465.921|112.618 +638810.448|219461.578|112.563 +638815.166|219457.204|112.298 +638811.341|219457.472|112.261 +638806.412|219462.026|112.587 +638801.581|219466.485|112.581 +638796.750|219470.941|112.228 +638791.830|219475.495|112.968 +638786.929|219480.018|113.191 +638781.991|219484.581|113.361 +638777.087|219489.114|113.697 +638772.210|219493.618|113.825 +638767.266|219498.184|114.111 +638762.353|219502.723|114.209 +638757.431|219507.271|114.386 +638752.493|219511.833|114.745 +638747.619|219516.332|114.565 +638742.706|219520.871|114.767 +638737.774|219525.424|114.739 +638732.891|219529.935|114.724 +638727.953|219534.495|114.782 +638723.043|219539.025|114.614 +638718.102|219543.591|114.757 +638713.137|219548.178|115.145 +638708.205|219552.735|115.266 +638703.280|219557.282|115.343 +638698.348|219561.836|115.516 +638693.428|219566.380|115.599 +638688.436|219570.995|115.958 +638683.529|219575.528|115.977 +638678.582|219580.097|115.952 +638673.644|219584.656|116.318 +638668.676|219589.247|116.544 +638663.701|219593.843|116.876 +638658.757|219598.409|116.918 +638653.771|219603.021|117.467 +638648.818|219607.596|117.650 +638643.862|219612.174|117.915 +638638.909|219616.752|118.177 +638633.919|219621.360|118.360 +638629.024|219625.884|118.567 +638624.041|219630.489|118.750 +638619.057|219635.092|118.936 +638614.074|219639.694|119.156 +638609.145|219644.245|119.299 +638604.177|219648.835|119.418 +638599.215|219653.416|119.454 +638594.307|219657.952|119.464 +638589.315|219662.560|119.339 +638584.343|219667.154|119.601 +638579.387|219671.729|119.668 +638574.434|219676.304|119.747 +638569.481|219680.879|119.829 +638564.528|219685.451|119.939 +638559.575|219690.029|120.101 +638554.583|219694.641|120.180 +638549.642|219699.203|120.235 +638544.701|219703.769|120.302 +638539.718|219708.372|120.320 +638534.783|219712.932|120.375 +638529.805|219717.531|120.381 +638524.834|219722.134|121.125 +638519.842|219726.748|121.460 +638514.849|219731.366|121.826 +638509.917|219735.926|122.027 +638504.943|219740.510|121.204 +638499.981|219745.097|121.128 +638495.009|219749.691|121.237 +638490.050|219754.275|121.131 +638485.079|219758.868|121.289 +638480.062|219763.504|121.439 +638475.097|219768.094|121.530 +638470.080|219772.734|121.786 +638465.115|219777.321|121.902 +638460.104|219781.951|122.070 +638455.093|219786.587|122.316 +638450.085|219791.217|122.518 +638445.126|219795.798|122.664 +638440.121|219800.425|122.844 +638435.119|219805.049|122.975 +638430.069|219809.718|123.194 +638425.070|219814.333|123.252 +638420.074|219818.954|123.377 +638415.078|219823.571|123.463 +638410.037|219828.229|123.560 +638405.038|219832.849|123.755 +638400.046|219837.464|123.941 +638395.004|219842.124|124.127 +638390.012|219846.739|124.343 +638384.973|219851.400|124.542 +638379.987|219856.008|124.618 +638374.948|219860.662|124.798 +638369.916|219865.314|124.865 +638364.930|219869.922|125.038 +638359.852|219874.616|125.105 +638354.819|219879.267|125.285 +638349.836|219883.876|125.447 +638344.758|219888.567|125.483 +638339.729|219893.215|125.563 +638334.748|219897.818|125.709 +638329.673|219902.509|125.688 +638324.644|219907.154|125.800 +638319.618|219911.802|125.938 +638314.546|219916.487|125.831 +638309.471|219921.178|125.849 +638304.445|219925.820|125.614 +638299.373|219930.501|125.407 +638294.344|219935.144|124.996 +638289.269|219939.834|124.892 +638284.240|219944.477|124.581 +638279.162|219949.167|124.057 +638274.081|219953.855|123.691 +638269.003|219958.546|123.469 +638263.964|219963.197|122.883 +638258.886|219967.888|122.819 +638253.796|219972.585|122.079 +638248.752|219977.236|121.378 +638243.665|219981.933|120.945 +638238.617|219986.591|120.162 +638233.521|219991.294|119.506 +638228.470|219995.954|118.933 +638223.374|220000.657|118.467 +638218.272|220005.367|117.778 +638213.230|220010.024|117.824 +638208.149|220014.724|118.019 +638203.111|220019.381|118.135 +638198.070|220024.039|118.193 +638193.001|220028.729|118.857 +638187.981|220033.375|119.457 +638182.897|220038.075|119.686 +638177.861|220042.729|119.817 +638172.832|220047.380|120.219 +638167.754|220052.074|120.539 +638162.713|220056.732|120.661 +638157.677|220061.386|120.856 +638152.599|220066.083|121.173 +638147.561|220070.737|121.359 +638142.529|220075.391|121.661 +638137.487|220080.049|121.795 +638127.359|220089.400|121.146 +638112.253|220103.354|121.198 +638107.205|220108.020|121.317 +638092.118|220121.953|121.122 +638087.128|220126.567|121.466 +638082.154|220131.170|122.097 +638077.149|220135.797|122.216 +638072.187|220140.381|122.301 +638067.173|220145.011|122.338 +638062.208|220149.598|122.420 +638057.243|220154.188|122.472 +638052.223|220158.824|122.499 +638047.315|220163.363|122.765 +638042.335|220167.969|123.362 +638037.403|220172.525|123.301 +638032.444|220177.106|123.572 +638027.482|220181.694|123.792 +638022.565|220186.238|124.008 +638017.646|220190.786|124.173 +638012.681|220195.373|124.410 +638007.761|220199.921|124.615 +638002.820|220204.484|124.615 +637997.931|220209.001|124.651 +637992.988|220213.570|124.627 +637988.089|220218.093|124.621 +637983.142|220222.665|124.593 +637978.235|220227.197|124.529 +637973.331|220231.730|124.496 +637968.411|220236.271|124.325 +637963.489|220240.816|124.167 +637958.603|220245.327|123.914 +637953.677|220249.878|123.755 +637948.788|220254.392|123.514 +637943.942|220258.869|123.755 +637938.956|220263.469|123.069 +637934.137|220267.916|122.655 +637929.171|220272.500|122.234 +637924.322|220276.980|122.054 +637919.424|220281.501|121.905 +637914.663|220285.902|122.149 +637909.814|220290.379|122.045 +637904.915|220294.903|121.500 +637900.078|220299.371|121.545 +637895.302|220303.785|121.737 +637890.474|220308.247|121.908 +637885.731|220312.627|122.003 +637880.906|220317.089|122.228 +637876.142|220321.494|122.603 +637871.366|220325.910|122.853 +637866.602|220330.308|122.850 +637861.795|220334.749|122.880 +637857.050|220339.135|123.063 +637852.301|220343.525|123.213 +637842.730|220352.364|123.033 +637837.926|220356.802|122.804 +637833.120|220361.233|122.228 +637828.237|220365.738|121.841 +637823.506|220370.109|121.509 +637813.862|220379.003|120.329 +637804.212|220387.910|119.204 +637784.964|220405.652|116.342 +637780.109|220410.126|115.385 +637775.360|220414.506|114.895 +637760.824|220427.896|111.926 +637756.008|220432.337|111.085 +637751.214|220436.754|110.109 +637746.373|220441.213|109.192 +637741.686|220445.538|108.981 +637736.928|220449.927|108.323 +637732.197|220454.289|107.896 +637727.506|220458.620|107.744 +637722.849|220462.918|107.512 +637718.152|220467.252|107.363 +637713.443|220471.596|106.833 +637708.892|220475.802|107.348 +637704.137|220480.185|106.589 +637699.245|220484.687|105.034 +637694.871|220488.741|106.671 +637681.225|220501.347|107.534 +637676.638|220505.587|107.613 +637663.099|220518.096|108.698 +637658.591|220522.260|109.033 +637645.049|220534.769|109.408 +637627.458|220551.030|111.798 +637623.078|220555.081|112.377 +637614.239|220563.249|113.139 +637605.455|220571.366|113.709 +637596.628|220579.519|114.126 +637592.205|220583.604|114.309 +637587.804|220587.667|114.349 +637583.339|220591.788|114.093 +637574.490|220599.953|113.779 +637552.301|220620.427|112.371 +637547.893|220624.493|112.051 +637543.422|220628.614|111.447 +637539.121|220632.585|111.688 +637525.740|220644.917|109.481 +637516.721|220653.226|107.415 +637495.504|220672.816|107.790 +637474.613|220692.107|108.360 +637466.320|220699.763|108.433 +637462.275|220703.503|108.930 +637458.126|220707.331|108.759 +637454.249|220710.919|109.795 +637446.020|220718.518|109.817 +637433.758|220729.838|109.640 +637429.539|220733.721|108.841 +637425.345|220737.586|108.168 +637417.070|220745.221|107.564 +637408.737|220752.902|106.129 +637397.075|220763.677|107.131 +637381.347|220778.192|106.988 +637377.394|220781.840|106.839 +637373.511|220785.424|106.778 +637369.622|220789.015|106.711 +637361.934|220796.111|106.766 +637358.124|220799.628|106.622 +637342.945|220813.637|106.662 +637335.420|220820.580|106.488 +637313.294|220841.005|106.537 +637309.972|220844.080|107.582 +637507.824|220659.258|106.851 +637516.639|220651.096|107.842 +637525.591|220642.811|109.326 +637543.367|220626.352|111.505 +637552.365|220618.022|112.508 +637561.292|220609.747|113.020 +637565.739|220605.629|113.340 +637570.238|220601.459|113.697 +637574.691|220597.332|113.846 +637579.205|220593.150|114.056 +637583.671|220589.011|114.038 +637597.045|220576.609|113.998 +637601.538|220572.442|113.944 +637614.831|220560.107|112.859 +637623.767|220551.813|112.078 +637637.200|220539.350|111.155 +637655.119|220522.711|109.058 +637659.688|220518.474|108.771 +637673.294|220505.846|107.457 +637677.933|220501.548|107.665 +637682.509|220497.303|107.217 +637701.135|220480.029|106.936 +637705.914|220475.607|107.503 +637710.453|220471.391|106.616 +637715.281|220466.920|107.253 +637720.008|220462.543|107.585 +637724.754|220458.145|107.738 +637729.487|220453.759|107.842 +637739.083|220444.874|108.622 +637743.914|220440.399|109.122 +637748.793|220435.885|109.966 +637753.676|220431.368|110.874 +637758.538|220426.869|111.664 +637763.476|220422.300|112.685 +637782.998|220404.241|116.227 +637787.945|220399.666|117.141 +637792.801|220395.173|117.805 +637797.644|220390.683|118.065 +637802.554|220386.145|119.183 +637807.498|220381.567|119.890 +637822.125|220368.024|121.362 +637826.963|220363.544|121.765 +637831.861|220359.008|122.262 +637836.744|220354.488|122.691 +637841.648|220349.944|122.929 +637846.464|220345.481|122.862 +637851.350|220340.949|123.021 +637856.205|220336.450|122.920 +637861.042|220331.963|122.710 +637865.910|220327.452|122.768 +637870.756|220322.960|122.670 +637875.609|220318.458|122.210 +637880.477|220313.941|121.917 +637885.323|220309.448|121.881 +637890.209|220304.918|121.771 +637895.080|220300.401|121.567 +637899.953|220295.881|121.384 +637904.918|220291.282|121.615 +637909.838|220286.725|121.926 +637914.724|220282.196|121.920 +637919.649|220277.630|121.887 +637924.593|220273.045|122.039 +637929.504|220268.498|122.353 +637934.460|220263.908|122.673 +637939.388|220259.345|123.255 +637944.393|220254.709|123.645 +637949.300|220250.161|123.572 +637954.229|220245.592|123.737 +637959.207|220240.983|123.917 +637964.135|220236.415|124.154 +637969.106|220231.809|124.365 +637974.023|220227.252|124.496 +637979.019|220222.622|124.484 +637983.923|220218.078|124.535 +637988.922|220213.445|124.593 +637993.853|220208.870|124.490 +637998.806|220204.282|124.612 +638003.787|220199.665|124.548 +638008.715|220195.096|124.441 +638013.732|220190.441|124.249 +638018.652|220185.882|124.072 +638023.620|220181.273|123.898 +638028.628|220176.631|123.645 +638033.532|220172.080|123.316 +638038.549|220167.429|123.222 +638043.514|220162.823|123.088 +638048.452|220158.245|122.588 +638053.460|220153.606|122.438 +638058.428|220149.004|122.414 +638063.396|220144.401|122.387 +638068.404|220139.759|122.316 +638073.363|220135.166|122.210 +638078.365|220130.533|122.042 +638083.327|220125.927|121.231 +638088.287|220121.334|121.149 +638108.266|220102.827|121.079 +638113.265|220098.197|120.991 +638118.261|220093.567|120.817 +638123.262|220088.934|120.835 +638128.298|220084.276|121.527 +638143.337|220070.347|121.408 +638148.372|220065.680|121.228 +638153.355|220061.063|120.917 +638158.391|220056.396|120.735 +638163.426|220051.730|120.594 +638168.409|220047.112|120.308 +638173.436|220042.452|119.927 +638178.468|220037.788|119.649 +638183.506|220033.122|119.531 +638188.526|220028.464|118.961 +638193.501|220023.850|118.351 +638198.533|220019.186|118.055 +638203.617|220014.477|117.997 +638208.607|220009.853|117.848 +638213.639|220005.190|117.626 +638218.686|220000.520|117.955 +638223.743|219995.845|118.805 +638228.787|219991.175|119.281 +638233.832|219986.505|119.689 +638238.879|219981.839|120.357 +638243.927|219977.172|121.170 +638248.965|219972.509|121.603 +638254.004|219967.849|122.301 +638259.042|219963.188|122.847 +638264.071|219958.531|122.911 +638269.106|219953.874|123.469 +638274.139|219949.216|123.847 +638279.168|219944.562|124.130 +638284.197|219939.908|124.776 +638289.223|219935.253|124.910 +638294.249|219930.599|125.096 +638299.276|219925.948|125.499 +638304.344|219921.254|125.773 +638309.322|219916.645|125.849 +638314.394|219911.948|125.974 +638319.420|219907.294|125.953 +638324.443|219902.640|125.840 +638329.518|219897.940|125.745 +638334.544|219893.282|125.688 +638339.570|219888.625|125.499 +638344.645|219883.925|125.553 +638349.671|219879.267|125.486 +638354.701|219874.607|125.316 +638359.733|219869.944|125.118 +638364.762|219865.286|125.096 +638369.791|219860.623|124.935 +638374.872|219855.917|124.807 +638379.908|219851.253|124.651 +638384.943|219846.584|124.420 +638389.975|219841.923|124.429 +638394.968|219837.299|124.203 +638400.006|219832.630|124.042 +638405.044|219827.957|123.844 +638410.040|219823.330|123.648 +638415.082|219818.661|123.545 +638420.123|219813.988|123.405 +638425.119|219809.364|123.353 +638430.163|219804.692|123.207 +638435.214|219800.013|122.990 +638440.212|219795.383|122.859 +638445.266|219790.702|122.615 +638450.268|219786.075|122.594 +638455.324|219781.387|122.332 +638460.381|219776.705|122.118 +638465.346|219772.106|121.884 +638470.406|219767.421|121.713 +638475.420|219762.776|121.515 +638480.434|219758.131|121.353 +638485.497|219753.443|121.247 +638490.456|219748.852|121.298 +638495.473|219744.207|121.213 +638500.481|219739.574|121.314 +638505.449|219734.981|122.161 +638510.481|219730.321|121.853 +638515.462|219725.706|121.625 +638520.482|219721.049|120.741 +638525.520|219716.382|120.445 +638530.500|219711.770|120.347 +638535.481|219707.159|120.290 +638540.464|219702.547|120.247 +638545.405|219697.969|120.101 +638550.389|219693.357|120.091 +638555.329|219688.779|119.994 +638560.279|219684.198|119.845 +638565.275|219679.571|119.729 +638570.219|219674.990|119.671 +638575.172|219670.403|119.540 +638580.082|219665.858|119.387 +638585.032|219661.274|119.369 +638589.991|219656.681|119.232 +638594.893|219652.145|119.265 +638599.839|219647.567|119.357 +638604.756|219643.013|119.262 +638609.675|219638.457|119.137 +638614.604|219633.891|118.933 +638619.530|219629.331|118.820 +638624.412|219624.808|118.641 +638629.381|219620.202|118.074 +638634.242|219615.703|118.220 +638639.183|219611.128|118.037 +638644.078|219606.593|117.833 +638648.976|219602.057|117.665 +638653.847|219597.543|117.272 +638658.751|219592.999|117.062 +638663.619|219588.491|116.800 +638668.490|219583.977|116.492 +638673.424|219579.405|116.092 +638678.231|219574.955|116.022 +638683.111|219570.434|115.745 +638687.991|219565.914|115.498 +638692.731|219561.528|115.681 +638697.592|219557.029|115.672 +638702.384|219552.588|115.404 +638707.218|219548.111|115.230 +638711.991|219543.691|115.199 +638716.828|219539.211|115.062 +638721.601|219534.791|115.068 +638726.408|219530.341|114.828 +638731.187|219525.912|114.824 +638735.982|219521.474|114.727 +638740.721|219517.085|114.718 +638745.528|219512.635|114.565 +638750.256|219508.258|114.696 +638755.023|219503.842|114.514 +638759.799|219499.419|114.303 +638764.572|219494.996|114.117 +638769.318|219490.601|113.788 +638774.088|219486.181|113.688 +638778.828|219481.792|113.474 +638783.625|219477.348|113.215 +638788.353|219472.965|112.755 +638793.080|219468.588|112.731 +638797.795|219464.220|112.782 +638802.498|219459.865|112.615 +638801.112|219458.222|112.298 +638796.232|219462.727|112.685 +638791.413|219467.177|112.657 +638786.563|219471.652|112.502 +638781.662|219476.184|113.151 +638776.779|219480.692|113.310 +638771.878|219485.218|113.614 +638767.017|219489.705|113.651 +638762.070|219494.277|114.020 +638757.147|219498.824|114.218 +638752.237|219503.357|114.331 +638747.308|219507.911|114.623 +638742.383|219512.458|114.529 +638737.509|219516.954|114.407 +638732.534|219521.550|114.760 +638727.603|219526.104|114.794 +638722.671|219530.658|114.834 +638717.678|219535.266|114.998 +638712.756|219539.811|115.032 +638707.766|219544.420|115.233 +638702.786|219549.019|115.373 +638697.830|219553.594|115.334 +638692.886|219558.154|115.190 +638687.860|219562.799|115.419 +638682.888|219567.389|115.590 +638677.868|219572.025|115.788 +638672.912|219576.600|115.873 +638667.886|219581.246|116.233 +638662.845|219585.906|116.760 +638657.834|219590.533|116.998 +638652.869|219595.114|116.800 +638647.821|219599.781|117.495 +638642.783|219604.435|117.626 +638637.787|219609.050|117.842 +638632.737|219613.713|118.153 +638627.756|219618.312|118.278 +638622.770|219622.921|118.491 +638617.695|219627.606|118.638 +638612.726|219632.193|118.695 +638607.697|219636.838|118.927 +638602.680|219641.471|119.052 +638597.672|219646.095|119.083 +638592.658|219650.725|119.214 +638587.632|219655.361|118.933 +638582.621|219659.991|119.104 +638577.568|219664.654|119.208 +638572.563|219669.278|119.354 +638567.561|219673.896|119.479 +638562.517|219678.553|119.573 +638557.515|219683.171|119.744 +638552.477|219687.828|119.838 +638547.438|219692.480|119.927 +638542.406|219697.125|119.909 +638537.416|219701.733|120.055 +638532.387|219706.378|120.113 +638527.358|219711.024|120.171 +638522.371|219715.629|120.372 +638517.342|219720.274|120.475 +638512.225|219725.008|121.356 +638507.238|219729.616|121.682 +638502.203|219734.271|122.033 +638497.216|219738.870|121.551 +638492.269|219743.436|121.186 +638487.249|219748.072|121.332 +638482.244|219752.693|121.237 +638477.230|219757.326|121.366 +638472.213|219761.956|121.530 +638467.248|219766.543|121.689 +638462.185|219771.222|121.969 +638457.174|219775.852|122.158 +638452.209|219780.439|122.393 +638447.156|219785.105|122.524 +638442.200|219789.684|122.661 +638437.198|219794.304|122.829 +638432.144|219798.974|123.109 +638427.191|219803.552|123.286 +638422.193|219808.164|123.347 +638417.148|219812.824|123.478 +638412.201|219817.396|123.661 +638407.160|219822.050|123.700 +638402.164|219826.665|123.929 +638397.171|219831.280|124.112 +638392.179|219835.891|124.279 +638387.189|219840.500|124.465 +638382.200|219845.108|124.563 +638377.213|219849.714|124.666 +638372.227|219854.323|124.877 +638367.240|219858.925|124.892 +638362.253|219863.531|125.130 +638357.273|219868.133|125.163 +638352.241|219872.781|125.304 +638347.306|219877.338|125.447 +638342.277|219881.983|125.541 +638337.296|219886.583|125.566 +638332.365|219891.139|125.700 +638327.339|219895.782|125.779 +638322.358|219900.381|125.825 +638317.381|219904.980|126.047 +638312.403|219909.574|125.752 +638307.426|219914.170|125.861 +638302.446|219918.767|125.758 +638297.425|219923.400|125.428 +638292.491|219927.953|125.057 +638287.465|219932.592|124.886 +638282.484|219937.189|124.688 +638277.501|219941.785|124.066 +638272.471|219946.427|123.783 +638267.488|219951.027|123.572 +638262.453|219955.672|122.908 +638257.469|219960.271|122.871 +638252.477|219964.874|122.292 +638247.435|219969.522|121.579 +638242.446|219974.128|121.177 +638237.447|219978.736|120.521 +638232.399|219983.390|119.744 +638227.358|219988.042|119.387 +638222.356|219992.656|118.857 +638217.345|219997.274|117.906 +638212.295|220001.931|117.498 +638207.308|220006.540|117.674 +638202.270|220011.194|117.793 +638197.329|220015.757|117.997 +638192.291|220020.411|118.052 +638187.313|220025.011|118.607 +638182.345|220029.610|119.314 +638177.316|220034.256|119.720 +638172.326|220038.864|119.848 +638167.337|220043.479|119.930 +638162.310|220048.130|120.347 +638157.318|220052.745|120.457 +638152.337|220057.353|120.792 +638147.342|220061.971|120.875 +638142.358|220066.583|121.140 +638122.296|220085.124|120.814 +638117.276|220089.760|120.503 +638112.274|220094.384|120.509 +638107.245|220099.035|120.997 +638102.292|220103.616|121.088 +638092.276|220112.873|121.082 +638087.265|220117.506|121.055 +638082.206|220122.181|121.052 +638077.262|220126.753|121.387 +638072.288|220131.359|121.993 +638067.283|220135.986|122.149 +638062.372|220140.527|122.271 +638057.371|220145.154|122.493 +638052.351|220149.793|122.454 +638047.385|220154.384|122.539 +638042.399|220158.998|123.018 +638037.467|220163.555|122.966 +638032.508|220168.142|123.170 +638027.555|220172.723|123.499 +638022.593|220177.314|123.688 +638017.628|220181.907|123.892 +638012.708|220186.455|124.057 +638007.746|220191.045|124.316 +638002.817|220195.602|124.420 +637997.840|220200.204|124.523 +637992.893|220204.776|124.438 +637987.961|220209.336|124.548 +637983.008|220213.914|124.444 +637978.058|220218.486|124.417 +637973.112|220223.061|124.407 +637968.195|220227.603|124.276 +637963.227|220232.196|124.075 +637958.256|220236.786|123.917 +637953.333|220241.337|123.755 +637948.395|220245.897|123.493 +637943.482|220250.438|123.493 +637938.559|220254.989|123.420 +637933.567|220259.598|122.679 +637928.617|220264.170|122.393 +637923.706|220268.705|122.070 +637918.802|220273.237|121.811 +637913.877|220277.791|121.853 +637908.988|220282.308|121.811 +637904.096|220286.829|121.743 +637899.207|220291.346|121.295 +637894.314|220295.869|121.283 +637889.496|220300.325|121.521 +637884.664|220304.790|121.664 +637879.827|220309.262|121.795 +637874.978|220313.745|121.811 +637870.205|220318.159|122.103 +637860.597|220327.047|122.603 +637855.779|220331.503|122.536 +637850.972|220335.944|122.615 +637846.177|220340.379|122.804 +637836.561|220349.264|122.649 +637826.914|220358.176|121.942 +637822.031|220362.684|121.573 +637812.341|220371.630|120.354 +637807.538|220376.065|119.924 +637802.676|220380.558|119.442 +637793.023|220389.467|118.028 +637788.165|220393.957|117.674 +637768.822|220411.809|114.437 +637759.120|220420.761|112.468 +637749.394|220429.734|110.481 +637744.560|220434.197|109.579 +637730.316|220447.352|108.110 +637725.507|220451.790|107.494 +637720.880|220456.069|107.442 +637716.226|220460.370|107.226 +637711.477|220464.756|106.756 +637706.862|220469.023|106.845 +637701.991|220473.513|105.367 +637697.477|220477.695|106.107 +637688.358|220486.132|106.476 +637674.675|220498.787|107.147 +637670.103|220503.021|107.317 +637665.516|220507.260|107.436 +637661.029|220511.415|107.857 +637642.982|220528.112|108.829 +637629.872|220540.258|111.170 +637625.407|220544.391|111.533 +637616.565|220552.572|112.240 +637612.164|220556.647|112.706 +637594.604|220572.896|113.925 +637590.212|220576.959|113.977 +637585.765|220581.068|113.782 +637581.388|220585.116|113.962 +637576.959|220589.212|113.886 +637572.533|220593.303|113.587 +637568.089|220597.408|113.477 +637559.189|220605.632|112.746 +637554.773|220609.713|112.322 +637550.420|220613.736|112.240 +637515.060|220646.390|108.213 +637481.121|220677.766|107.768 +637472.763|220685.493|107.692 +637468.645|220689.303|108.064 +637464.619|220693.030|108.393 +637460.483|220696.852|108.482 +637456.471|220700.562|108.905 +637452.469|220704.268|109.372 +637444.298|220711.815|109.177 +637440.219|220715.582|109.140 +637411.382|220742.201|106.537 +637407.328|220745.944|106.287 +637391.701|220760.388|106.772 +637387.830|220763.966|106.915 +637364.470|220785.546|106.415 +637356.908|220792.532|106.552 +637353.095|220796.056|106.400 +637341.818|220806.474|106.470 +637338.084|220809.921|106.266 +637334.353|220813.369|106.299 +637330.702|220816.746|106.427 +637326.971|220820.190|106.287 +637323.319|220823.564|106.241 +637319.683|220826.923|106.275 +637308.887|220836.902|106.644 +637298.128|220846.836|106.461 +637294.604|220850.094|106.583 +637496.047|220661.809|107.116 +637500.189|220657.966|106.464 +637517.627|220641.836|108.287 +637521.982|220637.809|108.713 +637526.493|220633.643|109.661 +637535.473|220625.343|111.188 +637539.868|220621.274|111.408 +637548.683|220613.118|112.029 +637557.534|220604.928|112.657 +637562.006|220600.791|113.105 +637566.407|220596.719|113.218 +637570.903|220592.559|113.587 +637575.365|220588.429|113.794 +637584.183|220580.263|113.718 +637588.633|220576.139|113.672 +637593.114|220571.991|113.794 +637606.318|220559.753|112.734 +637610.765|220555.635|112.471 +637628.583|220539.118|110.920 +637633.143|220534.897|110.804 +637641.976|220526.697|109.305 +637646.536|220522.476|109.219 +637650.998|220518.337|108.616 +637660.008|220509.985|107.628 +637664.550|220505.776|107.229 +637669.152|220501.512|107.192 +637673.755|220497.254|107.162 +637678.345|220492.999|106.796 +637682.975|220488.707|106.686 +637687.605|220484.412|106.610 +637692.098|220480.240|105.702 +637696.950|220475.759|106.991 +637701.476|220471.553|106.025 +637710.986|220462.753|106.939 +637715.707|220458.379|107.244 +637720.377|220454.051|107.238 +637725.150|220449.635|107.582 +637744.313|220431.895|109.420 +637749.232|220427.351|110.551 +637754.079|220422.867|111.591 +637759.017|220418.304|112.599 +637768.834|220409.227|114.693 +637783.489|220395.673|117.095 +637788.329|220391.192|117.641 +637798.135|220382.124|119.025 +637802.911|220377.699|119.204 +637807.806|220373.169|119.933 +637817.593|220364.114|121.082 +637832.193|220350.599|122.256 +637837.052|220346.100|122.515 +637841.895|220341.613|122.685 +637846.781|220337.087|122.822 +637856.452|220328.126|122.740 +637866.093|220319.183|122.088 +637870.915|220314.715|121.783 +637875.761|220310.222|121.719 +637880.614|220305.726|121.734 +637885.524|220301.172|121.414 +637890.352|220296.698|121.256 +637895.244|220292.166|121.241 +637900.173|220287.603|121.597 +637905.101|220283.034|121.536 +637910.036|220278.465|121.999 +637914.943|220273.917|121.783 +637919.887|220269.339|121.920 +637924.837|220264.755|122.149 +637929.796|220260.165|122.496 +637934.758|220255.571|122.917 +637939.742|220250.957|123.597 +637944.646|220246.412|123.499 +637949.621|220241.803|123.645 +637954.543|220237.247|123.755 +637959.523|220232.635|124.020 +637964.489|220228.036|124.145 +637969.457|220223.433|124.331 +637974.407|220218.846|124.365 +637979.360|220214.259|124.423 +637984.362|220209.626|124.511 +637989.299|220205.047|124.484 +637994.240|220200.472|124.456 +637999.224|220195.855|124.414 +638004.162|220191.277|124.435 +638009.169|220186.634|124.157 +638014.089|220182.075|123.965 +638019.051|220177.475|123.746 +638024.062|220172.830|123.523 +638029.018|220168.237|123.231 +638034.023|220163.595|122.972 +638038.991|220158.989|122.914 +638043.956|220154.390|122.777 +638048.952|220149.754|122.426 +638053.923|220145.145|122.469 +638058.977|220140.457|122.286 +638063.936|220135.858|122.164 +638068.947|220131.216|122.085 +638073.955|220126.564|121.237 +638078.902|220121.974|120.957 +638088.978|220112.632|121.085 +638109.028|220094.042|120.582 +638114.012|220089.418|120.195 +638119.032|220084.767|120.521 +638144.190|220061.450|120.844 +638149.183|220056.820|120.768 +638154.218|220052.147|120.616 +638159.250|220047.481|120.299 +638164.228|220042.860|119.884 +638169.266|220038.191|119.774 +638174.304|220033.518|119.628 +638179.337|220028.851|119.430 +638184.354|220024.191|118.686 +638189.374|220019.531|118.013 +638194.412|220014.861|117.912 +638199.447|220010.192|117.754 +638204.483|220005.519|117.613 +638209.518|220000.849|117.455 +638214.562|219996.177|117.616 +638219.622|219991.495|118.558 +638224.676|219986.819|119.281 +638229.763|219982.104|119.567 +638234.761|219977.477|120.198 +638239.858|219972.762|120.985 +638244.896|219968.096|121.402 +638249.938|219963.429|122.021 +638254.976|219958.766|122.694 +638260.005|219954.102|122.829 +638265.040|219949.439|123.264 +638270.121|219944.736|123.734 +638275.102|219940.118|123.969 +638280.131|219935.461|124.414 +638285.209|219930.757|124.825 +638290.186|219926.143|124.965 +638295.216|219921.485|125.212 +638300.525|219916.569|125.678 +638305.213|219912.223|125.883 +638310.285|219907.519|125.779 +638315.311|219902.865|126.002 +638320.289|219898.250|125.910 +638325.315|219893.590|125.782 +638330.341|219888.930|125.733 +638335.321|219884.312|125.569 +638340.347|219879.652|125.584 +638345.377|219874.988|125.401 +638350.403|219870.325|125.352 +638355.435|219865.661|125.227 +638360.419|219861.040|125.078 +638365.448|219856.374|124.983 +638370.480|219851.707|124.901 +638375.467|219847.087|124.822 +638380.502|219842.414|124.569 +638385.537|219837.748|124.493 +638390.524|219833.121|124.404 +638395.562|219828.448|124.209 +638400.555|219823.818|124.069 +638405.547|219819.188|123.877 +638410.589|219814.513|123.740 +638415.588|219809.880|123.563 +638420.583|219805.247|123.441 +638425.576|219800.614|123.362 +638430.578|219795.975|123.133 +638435.579|219791.336|122.981 +638440.581|219786.696|122.798 +638445.540|219782.097|122.597 +638450.542|219777.458|122.490 +638455.504|219772.852|122.228 +638460.518|219768.201|121.939 +638465.526|219763.556|121.817 +638470.446|219758.993|121.600 +638475.463|219754.342|121.390 +638480.467|219749.700|121.439 +638485.430|219745.097|121.381 +638490.395|219740.495|121.350 +638495.314|219735.941|122.219 +638500.295|219731.320|121.908 +638505.269|219726.706|121.750 +638510.295|219722.036|120.722 +638515.327|219717.367|120.451 +638520.256|219712.798|120.387 +638525.243|219708.171|120.162 +638530.220|219703.553|120.137 +638535.203|219698.932|120.055 +638540.193|219694.305|119.909 +638545.128|219689.730|119.872 +638550.117|219685.103|119.784 +638555.058|219680.519|119.707 +638560.054|219675.886|119.579 +638565.004|219671.296|119.454 +638569.957|219666.703|119.323 +638574.965|219662.057|119.140 +638579.878|219657.501|118.951 +638584.813|219652.926|119.140 +638589.790|219648.305|118.778 +638594.728|219643.730|118.976 +638599.687|219639.130|118.921 +638604.604|219634.570|118.823 +638614.510|219625.381|118.446 +638619.478|219620.772|118.385 +638624.409|219616.200|118.250 +638629.341|219611.625|118.116 +638634.279|219607.044|117.949 +638639.229|219602.454|117.702 +638644.157|219597.882|117.671 +638649.156|219593.243|116.958 +638654.076|219588.683|117.107 +638658.977|219584.135|116.973 +638663.963|219579.505|116.452 +638668.898|219574.927|116.053 +638673.808|219570.373|115.913 +638678.774|219565.765|115.733 +638683.687|219561.208|115.617 +638688.616|219556.636|115.391 +638693.523|219552.085|115.373 +638698.421|219547.541|115.038 +638703.341|219542.978|114.977 +638708.193|219538.479|115.111 +638713.055|219533.971|115.169 +638717.950|219529.430|114.959 +638722.836|219524.900|114.876 +638727.719|219520.371|114.834 +638732.562|219515.878|114.718 +638737.436|219511.361|114.803 +638742.303|219506.844|114.565 +638747.174|219502.327|114.306 +638751.962|219497.883|114.346 +638756.839|219493.359|114.105 +638761.743|219488.809|113.666 +638766.507|219484.389|113.593 +638771.375|219479.875|113.517 +638776.154|219475.440|113.355 +638781.050|219470.896|112.721 +638785.814|219466.479|112.773 +638790.572|219462.069|112.855 +638795.415|219457.579|112.721 +638789.105|219460.502|112.944 +638784.390|219464.864|112.898 +638779.590|219469.305|112.782 +638774.734|219473.803|113.493 +638769.912|219478.266|113.587 +638765.145|219482.676|113.651 +638760.308|219487.154|113.925 +638755.501|219491.601|113.974 +638750.670|219496.069|114.227 +638745.790|219500.589|114.544 +638740.977|219505.045|114.727 +638736.094|219509.560|114.678 +638731.236|219514.058|114.901 +638726.362|219518.563|114.828 +638721.510|219523.056|115.035 +638716.627|219527.573|115.102 +638711.765|219532.069|115.007 +638706.870|219536.598|114.818 +638701.981|219541.122|115.001 +638697.025|219545.709|115.404 +638692.115|219550.253|115.422 +638687.162|219554.838|115.413 +638682.233|219559.398|115.638 +638677.256|219564.006|115.907 +638672.348|219568.545|115.980 +638667.386|219573.138|116.169 +638662.360|219577.792|116.537 +638657.374|219582.410|117.028 +638652.387|219587.025|117.065 +638647.446|219591.594|117.135 +638642.423|219596.245|117.598 +638637.440|219600.860|117.705 +638632.395|219605.526|117.936 +638627.415|219610.138|118.058 +638622.459|219614.719|117.903 +638617.408|219619.398|118.336 +638612.431|219624.000|118.467 +638607.362|219628.691|118.604 +638602.342|219633.339|118.759 +638597.331|219637.975|118.857 +638592.265|219642.663|119.015 +638587.273|219647.281|118.927 +638582.222|219651.953|118.979 +638577.174|219656.623|119.022 +638572.170|219661.256|119.177 +638567.116|219665.931|119.342 +638562.069|219670.604|119.497 +638556.975|219675.316|119.604 +638551.934|219679.983|119.750 +638546.850|219684.686|119.790 +638541.818|219689.340|119.826 +638536.731|219694.043|119.957 +638531.646|219698.743|120.104 +638526.572|219703.437|120.174 +638521.494|219708.134|120.262 +638516.412|219712.831|120.457 +638511.344|219717.522|120.518 +638506.257|219722.228|120.869 +638501.142|219726.968|121.847 +638496.027|219731.698|121.957 +638490.959|219736.386|122.131 +638485.935|219741.022|121.433 +638480.827|219745.747|121.509 +638475.725|219750.462|121.460 +638470.668|219755.140|121.548 +638465.605|219759.819|121.710 +638460.497|219764.544|121.926 +638455.440|219769.222|122.109 +638450.329|219773.953|122.505 +638445.229|219778.671|122.640 +638440.176|219783.344|122.813 +638435.083|219788.053|122.880 +638430.029|219792.728|123.164 +638424.930|219797.444|123.420 +638419.843|219802.150|123.484 +638414.798|219806.813|123.624 +638409.708|219811.522|123.801 +638404.618|219816.229|123.929 +638399.576|219820.895|124.185 +638394.492|219825.595|124.249 +638389.405|219830.298|124.429 +638384.373|219834.956|124.471 +638379.289|219839.656|124.615 +638374.205|219844.359|124.910 +638369.172|219849.010|124.895 +638364.094|219853.707|125.044 +638359.017|219858.401|125.063 +638353.987|219863.055|125.240 +638348.909|219867.749|125.352 +638343.880|219872.397|125.392 +638338.805|219877.091|125.474 +638333.779|219881.739|125.575 +638328.707|219886.433|125.633 +638323.678|219891.082|125.800 +638318.606|219895.772|125.883 +638313.583|219900.418|125.956 +638308.557|219905.060|125.791 +638303.534|219909.705|125.782 +638298.465|219914.390|125.499 +638293.487|219918.989|125.203 +638288.461|219923.631|124.953 +638283.389|219928.322|124.807 +638278.406|219932.922|124.337 +638273.377|219937.567|123.947 +638268.351|219942.215|123.740 +638263.364|219946.817|123.188 +638258.332|219951.469|122.893 +638253.348|219956.074|122.591 +638248.356|219960.680|121.984 +638243.320|219965.334|121.478 +638238.325|219969.943|120.920 +638233.329|219974.557|120.305 +638228.330|219979.172|119.616 +638223.335|219983.787|119.211 +638218.333|219988.404|118.552 +638213.322|219993.028|117.589 +638208.323|219997.646|117.318 +638203.337|220002.258|117.498 +638198.347|220006.872|117.613 +638193.360|220011.484|117.863 +638188.371|220016.099|117.961 +638183.442|220020.661|118.430 +638178.477|220025.261|119.311 +638173.497|220029.869|119.613 +638168.565|220034.429|120.058 +638163.615|220039.001|119.890 +638158.622|220043.616|119.976 +638153.688|220048.176|120.283 +638148.756|220052.739|120.634 +638143.812|220057.305|120.777 +638133.876|220066.491|120.942 +638123.954|220075.650|120.585 +638119.035|220080.192|120.293 +638114.073|220084.776|120.125 +638109.120|220089.354|120.174 +638104.170|220093.929|120.314 +638094.328|220103.028|120.792 +638074.580|220121.273|120.841 +638069.627|220125.851|121.009 +638064.762|220130.353|121.871 +638059.864|220134.882|122.161 +638054.908|220139.464|122.338 +638049.985|220144.011|122.329 +638045.069|220148.553|122.402 +638040.171|220153.082|122.777 +638035.248|220157.630|122.822 +638030.332|220162.174|122.954 +638025.427|220166.710|123.261 +638020.514|220171.248|123.487 +638015.595|220175.796|123.624 +638010.687|220180.334|123.917 +638005.832|220184.824|124.289 +638000.903|220189.378|124.395 +637995.969|220193.938|124.395 +637991.125|220198.412|124.380 +637986.184|220202.975|124.398 +637981.295|220207.495|124.444 +637976.397|220212.021|124.417 +637971.493|220216.551|124.353 +637966.583|220221.086|124.243 +637961.669|220225.625|124.103 +637956.796|220230.123|123.935 +637951.876|220234.668|123.795 +637946.996|220239.176|123.588 +637942.074|220243.724|123.472 +637937.221|220248.207|123.606 +637932.283|220252.764|122.899 +637927.367|220257.299|122.445 +637922.460|220261.829|122.143 +637917.562|220266.352|121.917 +637912.715|220270.830|121.756 +637907.854|220275.322|121.957 +637902.953|220279.846|121.335 +637898.091|220284.338|121.579 +637893.211|220288.843|121.210 +637888.359|220293.327|121.128 +637883.525|220297.792|121.241 +637878.748|220302.209|121.423 +637873.923|220306.665|121.667 +637869.114|220311.109|121.612 +637864.273|220315.583|121.725 +637859.506|220319.991|122.079 +637854.745|220324.392|122.512 +637835.528|220342.144|122.134 +637821.129|220355.442|121.649 +637816.276|220359.920|121.128 +637801.847|220373.236|119.613 +637797.059|220377.656|119.336 +637792.225|220382.115|118.735 +637787.400|220386.562|117.888 +637782.581|220391.012|117.464 +637777.780|220395.438|116.867 +637772.903|220399.931|115.754 +637768.042|220404.411|114.797 +637763.232|220408.849|114.233 +637758.431|220413.275|113.416 +637748.736|220422.209|111.249 +637724.800|220444.285|107.817 +637720.069|220448.650|107.390 +637715.421|220452.945|107.518 +637710.776|220457.233|107.369 +637706.146|220461.510|107.348 +637701.476|220465.823|107.396 +637696.834|220470.108|107.015 +637691.976|220474.577|105.357 +637687.407|220478.801|105.781 +637673.819|220491.365|106.973 +637669.295|220495.544|107.140 +637664.696|220499.793|107.159 +637660.173|220503.969|107.076 +637655.710|220508.096|107.646 +637651.138|220512.320|107.585 +637646.780|220516.353|108.491 +637642.284|220520.507|108.613 +637633.518|220528.618|110.188 +637629.129|220532.678|110.664 +637620.259|220540.874|111.173 +637607.052|220553.084|112.285 +637602.681|220557.123|112.679 +637598.356|220561.122|113.328 +637580.784|220577.358|113.806 +637576.368|220581.437|113.785 +637558.625|220597.814|112.709 +637545.397|220610.021|111.825 +637540.950|220614.123|111.304 +637536.658|220618.086|111.304 +637532.297|220622.109|111.002 +637527.786|220626.267|109.984 +637476.378|220673.712|107.287 +637468.148|220681.320|107.777 +637455.962|220692.585|108.765 +637451.884|220696.356|108.890 +637447.846|220700.089|109.210 +637443.813|220703.817|109.332 +637439.628|220707.682|109.039 +637411.084|220734.038|107.552 +637406.731|220738.046|106.040 +637398.904|220745.282|106.506 +637375.437|220766.960|106.327 +637371.612|220770.492|106.269 +637363.913|220777.606|106.189 +637360.100|220781.127|106.223 +637352.562|220788.091|106.235 +637348.810|220791.560|106.327 +637345.030|220795.050|106.333 +637341.245|220798.546|106.101 +637326.425|220812.238|106.183 +637322.838|220815.551|106.382 +637315.522|220822.308|106.257 +637311.883|220825.670|106.083 +637308.405|220828.886|106.531 +637304.873|220832.150|106.778 +637294.208|220842.005|106.723 +637505.651|220644.162|107.253 +637514.402|220636.063|108.262 +637518.687|220632.091|108.369 +637532.092|220619.701|110.957 +637536.408|220615.702|111.051 +637540.791|220611.645|111.231 +637558.549|220595.208|112.813 +637562.917|220591.163|113.029 +637567.391|220587.021|113.282 +637589.496|220566.544|113.502 +637598.252|220558.421|112.737 +637611.472|220546.159|111.612 +637615.797|220542.148|110.993 +637624.804|220533.799|110.670 +637633.676|220525.570|109.643 +637660.606|220500.588|106.964 +637683.557|220479.322|106.342 +637688.004|220475.186|104.861 +637692.707|220470.837|105.232 +637697.566|220466.353|106.601 +637702.293|220461.976|106.897 +637711.666|220453.298|107.012 +637716.424|220448.894|107.250 +637721.142|220444.526|107.576 +637725.933|220440.094|108.079 +637730.719|220435.669|108.564 +637735.428|220431.310|108.914 +637740.283|220426.820|109.597 +637745.182|220422.294|110.600 +637764.710|220404.250|114.544 +637769.569|220399.760|115.471 +637774.497|220395.207|116.580 +637779.331|220390.735|117.059 +637784.102|220386.322|117.461 +637793.886|220377.278|119.040 +637798.759|220372.770|119.576 +637808.431|220363.821|120.546 +637818.151|220354.827|121.253 +637827.844|220345.859|121.859 +637832.690|220341.373|122.015 +637837.542|220336.880|122.240 +637842.370|220332.408|122.316 +637856.818|220319.025|121.911 +637861.686|220314.514|121.585 +637866.483|220310.070|121.478 +637871.381|220305.531|121.460 +637876.215|220301.054|121.298 +637881.083|220296.543|121.030 +637885.929|220292.053|121.024 +637890.828|220287.517|121.070 +637895.717|220282.994|121.490 +637900.615|220278.456|121.137 +637905.559|220273.884|121.679 +637910.454|220269.351|121.792 +637915.376|220264.791|121.747 +637920.329|220260.207|121.990 +637925.240|220255.663|122.332 +637930.202|220251.072|122.740 +637935.188|220246.461|123.463 +637940.092|220241.916|123.350 +637945.067|220237.314|123.475 +637949.992|220232.751|123.652 +637954.967|220228.148|123.825 +637959.889|220223.592|124.002 +637964.854|220218.995|124.179 +637969.811|220214.408|124.234 +637974.767|220209.818|124.334 +637979.762|220205.191|124.365 +637984.654|220200.658|124.362 +637989.644|220196.038|124.356 +637994.627|220191.423|124.310 +637999.562|220186.851|124.298 +638004.543|220182.239|124.243 +638009.499|220177.649|123.908 +638014.455|220173.056|123.597 +638019.414|220168.459|123.359 +638024.379|220163.857|123.203 +638029.381|220159.224|122.886 +638034.346|220154.621|122.774 +638039.317|220150.019|122.734 +638044.313|220145.389|122.411 +638049.272|220140.792|122.219 +638054.341|220136.099|122.307 +638059.294|220131.508|122.088 +638064.265|220126.897|121.384 +638069.243|220122.279|120.811 +638089.292|220103.707|120.945 +638094.337|220099.032|120.750 +638099.323|220094.411|120.363 +638104.301|220089.793|119.866 +638109.354|220085.115|119.838 +638114.368|220080.469|120.064 +638124.497|220071.097|120.671 +638129.508|220066.455|120.954 +638134.543|220061.788|120.716 +638139.588|220057.116|120.677 +638144.629|220052.446|120.646 +638149.661|220047.783|120.332 +638154.687|220043.122|119.963 +638159.729|220038.453|119.896 +638164.767|220033.783|119.826 +638169.805|220029.114|119.784 +638174.835|220024.453|119.430 +638179.907|220019.750|118.970 +638184.917|220015.099|118.074 +638189.953|220010.432|117.824 +638194.985|220005.769|117.607 +638200.023|220001.102|117.479 +638205.059|219996.436|117.376 +638210.143|219991.724|117.239 +638215.199|219987.048|118.095 +638220.259|219982.372|119.067 +638225.349|219977.660|119.482 +638230.394|219972.994|120.034 +638235.438|219968.327|120.646 +638240.528|219963.621|121.329 +638245.567|219958.958|121.759 +638250.605|219954.297|122.362 +638255.689|219949.594|122.941 +638260.718|219944.937|123.002 +638265.754|219940.279|123.709 +638270.829|219935.579|123.850 +638275.809|219930.968|124.112 +638280.887|219926.271|124.819 +638285.913|219921.616|124.892 +638290.939|219916.962|125.124 +638296.011|219912.265|125.194 +638301.031|219907.620|125.688 +638306.057|219902.966|125.819 +638311.081|219898.311|125.803 +638316.104|219893.660|125.965 +638321.130|219889.003|125.843 +638326.156|219884.345|125.681 +638331.182|219879.691|125.608 +638336.208|219875.031|125.465 +638341.234|219870.376|125.462 +638346.218|219865.762|125.361 +638351.247|219861.101|125.258 +638356.322|219856.395|125.124 +638361.306|219851.781|125.130 +638366.338|219847.117|124.953 +638371.318|219842.502|124.965 +638376.354|219837.839|124.807 +638381.389|219833.172|124.685 +638386.375|219828.552|124.581 +638391.365|219823.928|124.362 +638396.403|219819.258|124.255 +638401.347|219814.677|124.090 +638406.392|219810.005|123.889 +638411.384|219805.378|123.758 +638416.380|219800.748|123.572 +638421.376|219796.118|123.487 +638426.371|219791.485|123.380 +638431.324|219786.892|123.161 +638436.329|219782.249|122.893 +638441.282|219777.659|122.761 +638446.287|219773.017|122.576 +638451.243|219768.421|122.435 +638456.211|219763.812|122.070 +638461.219|219759.167|121.878 +638466.187|219754.561|121.637 +638471.144|219749.965|121.609 +638476.109|219745.362|121.494 +638481.019|219740.809|121.475 +638485.990|219736.209|122.243 +638490.916|219731.643|122.033 +638495.884|219727.035|121.911 +638500.855|219722.417|120.899 +638505.796|219717.836|120.543 +638510.765|219713.227|120.524 +638515.699|219708.652|120.354 +638520.628|219704.083|120.268 +638525.560|219699.511|120.183 +638530.497|219694.930|120.018 +638535.435|219690.352|119.902 +638540.376|219685.771|119.759 +638545.311|219681.196|119.738 +638550.203|219676.660|119.656 +638555.147|219672.079|119.576 +638560.097|219667.489|119.427 +638565.004|219662.935|119.198 +638569.951|219658.351|119.156 +638574.864|219653.794|118.967 +638579.771|219649.247|118.854 +638584.660|219644.714|119.000 +638589.595|219640.133|118.577 +638594.484|219635.607|118.823 +638599.410|219631.038|118.574 +638604.280|219626.521|118.464 +638609.209|219621.952|118.281 +638614.129|219617.389|118.189 +638619.008|219612.863|118.058 +638623.943|219608.288|117.882 +638628.820|219603.767|117.833 +638633.709|219599.235|117.708 +638638.604|219594.693|117.488 +638643.563|219590.094|117.162 +638648.397|219585.613|117.168 +638653.295|219581.072|117.056 +638658.212|219576.512|116.754 +638663.137|219571.943|116.388 +638668.011|219567.420|116.096 +638672.931|219562.860|115.870 +638677.789|219558.352|115.775 +638682.718|219553.783|115.529 +638687.531|219549.321|115.474 +638692.444|219544.764|115.407 +638697.324|219540.241|115.248 +638702.188|219535.730|115.233 +638707.029|219531.243|115.041 +638711.936|219526.689|114.684 +638716.816|219522.166|114.642 +638721.668|219517.670|114.828 +638726.445|219513.242|114.873 +638731.330|219508.712|114.812 +638736.186|219504.210|114.657 +638741.017|219499.733|114.700 +638745.885|219495.216|114.465 +638750.728|219490.729|114.477 +638755.586|219486.224|114.376 +638760.424|219481.737|114.087 +638765.233|219477.278|114.035 +638770.113|219472.752|113.852 +638775.045|219468.168|112.883 +638779.800|219463.766|112.987 +638784.658|219459.261|113.029 +638780.754|219458.938|113.084 +638775.969|219463.364|113.596 +638771.159|219467.811|113.938 +638766.373|219472.237|114.117 +638761.603|219476.644|114.206 +638756.839|219481.045|114.267 +638752.075|219485.450|114.352 +638747.217|219489.940|114.440 +638742.459|219494.338|114.529 +638737.640|219498.791|114.724 +638732.851|219503.217|114.721 +638728.078|219507.624|114.596 +638723.272|219512.062|114.352 +638718.459|219516.512|114.611 +638713.591|219521.014|114.959 +638708.754|219525.485|115.065 +638703.880|219529.987|115.084 +638699.052|219534.453|115.166 +638694.169|219538.964|115.321 +638689.347|219543.420|115.388 +638684.473|219547.925|115.516 +638679.612|219552.418|115.547 +638674.677|219556.980|115.855 +638669.867|219561.424|115.897 +638664.899|219566.021|116.126 +638655.133|219575.043|116.367 +638650.183|219579.624|116.986 +638645.230|219584.202|117.174 +638640.344|219588.719|117.199 +638635.404|219593.285|117.299 +638630.493|219597.827|117.629 +638625.562|219602.384|117.687 +638620.578|219606.989|117.830 +638615.698|219611.500|117.921 +638610.721|219616.103|118.043 +638605.747|219620.699|118.138 +638600.769|219625.301|118.336 +638595.770|219629.925|118.827 +638590.845|219634.473|118.415 +638585.852|219639.091|118.894 +638580.908|219643.657|118.756 +638575.907|219648.280|118.805 +638570.896|219652.913|118.991 +638565.894|219657.534|119.070 +638560.889|219662.161|119.217 +638555.887|219666.785|119.378 +638550.882|219671.412|119.601 +638545.844|219676.069|119.656 +638540.858|219680.684|119.710 +638535.822|219685.341|119.777 +638530.790|219689.995|119.863 +638525.752|219694.659|120.070 +638520.716|219699.316|120.213 +638515.687|219703.971|120.341 +638510.615|219708.661|120.399 +638505.592|219713.307|120.457 +638500.520|219718.001|120.594 +638495.442|219722.697|120.847 +638490.376|219727.398|121.875 +638485.308|219732.085|122.064 +638480.242|219736.773|122.243 +638475.267|219741.367|121.533 +638470.162|219746.088|121.564 +638465.105|219750.767|121.661 +638460.043|219755.448|121.841 +638454.937|219760.173|122.003 +638449.871|219764.864|122.432 +638444.815|219769.542|122.618 +638439.719|219774.258|122.740 +638434.619|219778.973|122.856 +638429.566|219783.652|123.149 +638424.469|219788.367|123.322 +638419.376|219793.082|123.517 +638414.332|219797.749|123.652 +638409.193|219802.500|123.804 +638404.103|219807.210|123.947 +638399.058|219811.879|124.237 +638393.928|219816.625|124.258 +638388.841|219821.331|124.465 +638383.760|219826.031|124.490 +638378.676|219830.737|124.688 +638373.543|219835.483|124.886 +638368.514|219840.137|124.904 +638363.384|219844.880|125.029 +638358.261|219849.623|125.063 +638353.231|219854.277|125.188 +638348.108|219859.013|125.227 +638343.030|219863.710|125.282 +638337.955|219868.404|125.337 +638332.834|219873.144|125.450 +638327.759|219877.838|125.493 +638322.684|219882.532|125.706 +638317.612|219887.226|125.831 +638312.492|219891.962|125.877 +638307.420|219896.650|125.697 +638302.348|219901.341|125.800 +638297.282|219906.026|125.596 +638292.210|219910.714|125.035 +638287.135|219915.405|124.977 +638282.015|219920.138|124.862 +638276.940|219924.829|124.517 +638271.911|219929.474|123.947 +638266.787|219934.211|123.740 +638261.709|219938.905|123.313 +638256.677|219943.553|122.871 +638251.599|219948.250|122.859 +638246.512|219952.947|122.064 +638241.476|219957.598|121.533 +638236.389|219962.298|120.985 +638231.299|219967.001|120.399 +638226.251|219971.659|119.713 +638221.161|219976.365|119.241 +638216.065|219981.071|118.595 +638211.054|219985.695|117.638 +638205.952|219990.407|117.010 +638200.919|219995.064|117.312 +638195.878|219999.728|117.171 +638190.849|220004.382|117.650 +638185.814|220009.042|117.784 +638180.784|220013.697|118.174 +638175.773|220018.339|119.070 +638170.796|220022.950|119.445 +638165.761|220027.608|119.649 +638160.774|220032.226|119.762 +638155.806|220036.831|120.433 +638150.792|220041.467|119.909 +638145.766|220046.124|120.256 +638140.828|220050.696|120.497 +638135.838|220055.314|120.622 +638130.834|220059.944|120.448 +638125.832|220064.574|120.369 +638115.917|220073.749|120.122 +638110.900|220078.388|119.854 +638105.931|220082.984|119.589 +638100.981|220087.568|119.680 +638096.025|220092.152|119.720 +638086.208|220101.248|120.674 +638076.344|220110.379|120.823 +638071.367|220114.982|120.619 +638066.454|220119.533|120.661 +638061.513|220124.108|121.030 +638056.670|220128.594|121.475 +638051.747|220133.160|122.124 +638046.828|220137.711|122.155 +638041.978|220142.204|122.499 +638037.019|220146.797|122.643 +638032.139|220151.311|122.606 +638027.226|220155.859|122.771 +638022.361|220160.364|122.981 +638017.500|220164.869|123.197 +638012.592|220169.413|123.496 +638007.734|220173.912|123.816 +638002.878|220178.411|124.170 +637997.998|220182.928|124.249 +637993.113|220187.448|124.276 +637988.220|220191.975|124.255 +637983.331|220196.501|124.276 +637978.488|220200.985|124.282 +637973.587|220205.520|124.240 +637968.732|220210.013|124.139 +637963.879|220214.505|124.127 +637958.963|220219.053|123.965 +637954.089|220223.561|123.764 +637949.215|220228.069|123.609 +637944.387|220232.534|123.435 +637939.516|220237.042|123.344 +637934.661|220241.538|123.447 +637929.790|220246.040|122.920 +637924.868|220250.591|122.393 +637920.015|220255.077|122.106 +637915.163|220259.567|121.862 +637910.271|220264.093|121.713 +637905.507|220268.504|121.899 +637900.542|220273.091|121.119 +637895.747|220277.529|121.055 +637890.931|220281.988|121.277 +637886.100|220286.457|120.942 +637881.248|220290.946|120.860 +637876.453|220295.384|120.905 +637871.619|220299.862|121.033 +637866.846|220304.281|121.298 +637862.045|220308.722|121.353 +637857.242|220313.169|121.384 +637852.465|220317.595|121.658 +637847.738|220321.972|121.972 +637842.992|220326.370|122.518 +637838.170|220330.830|122.094 +637828.590|220339.693|121.814 +637823.787|220344.137|121.609 +637818.986|220348.578|121.451 +637814.204|220353.001|121.079 +637809.388|220357.454|120.869 +637804.602|220361.880|120.521 +637799.771|220366.345|119.866 +637794.937|220370.810|119.217 +637785.269|220379.744|117.671 +637780.435|220384.209|117.135 +637761.144|220402.031|114.209 +637756.377|220406.435|113.608 +637746.660|220415.409|111.584 +637741.826|220419.871|110.633 +637736.967|220424.358|109.545 +637732.243|220428.722|109.070 +637727.546|220433.066|108.777 +637722.654|220437.583|107.576 +637717.990|220441.899|107.570 +637713.260|220446.270|107.162 +637708.593|220450.589|107.177 +637703.954|220454.886|107.375 +637699.227|220459.248|106.442 +637694.566|220463.564|106.549 +637685.054|220472.345|104.778 +637680.664|220476.424|106.290 +637676.062|220480.682|106.235 +637671.514|220484.894|106.516 +637666.924|220489.143|106.567 +637653.284|220501.771|107.006 +637648.807|220505.919|107.494 +637644.271|220510.116|107.366 +637631.012|220522.403|109.347 +637617.772|220534.671|110.685 +637613.240|220538.865|110.688 +637608.853|220542.928|110.957 +637600.154|220550.990|112.203 +637595.777|220555.044|112.560 +637587.008|220563.167|113.236 +637582.647|220567.202|113.459 +637569.412|220579.449|113.432 +637560.539|220587.655|112.740 +637542.895|220603.974|111.847 +637538.512|220608.021|111.383 +637529.773|220616.108|110.871 +637520.797|220624.392|109.079 +637516.410|220628.446|108.451 +637499.095|220644.454|107.019 +637490.466|220652.434|106.439 +637486.391|220656.210|106.918 +637473.860|220667.805|107.055 +637469.721|220671.636|107.296 +637465.704|220675.361|107.863 +637453.582|220686.578|109.082 +637445.340|220694.195|108.954 +637441.314|220697.919|109.085 +637433.084|220705.518|108.658 +637416.628|220720.718|107.320 +637404.378|220732.026|106.065 +637392.622|220742.893|106.363 +637369.250|220764.494|106.135 +637365.421|220768.029|106.061 +637361.560|220771.599|106.077 +637357.759|220775.116|106.135 +637346.481|220785.537|106.257 +637335.280|220795.891|106.363 +637327.809|220802.792|106.144 +637324.124|220806.200|106.141 +637316.821|220812.945|106.028 +637306.013|220822.936|106.284 +637302.459|220826.219|106.446 +637298.987|220829.432|106.708 +637295.430|220832.717|106.674 +637291.864|220836.012|106.619 +637510.656|220630.674|108.061 +637514.993|220626.657|108.415 +637519.398|220622.579|108.872 +637523.832|220618.473|109.494 +637550.411|220593.860|112.310 +637559.253|220585.667|112.743 +637563.703|220581.546|113.133 +637568.135|220577.438|113.209 +637572.597|220573.305|113.438 +637576.968|220569.248|113.243 +637585.740|220561.109|112.767 +637590.148|220557.022|112.523 +637594.546|220552.941|112.258 +637598.868|220548.927|111.597 +637612.164|220536.588|110.633 +637638.806|220511.860|108.000 +637643.268|220507.718|107.384 +637656.872|220495.096|106.601 +637661.438|220490.859|106.375 +637666.007|220486.622|106.162 +637670.600|220482.364|106.116 +637675.193|220478.106|106.092 +637684.450|220469.520|105.912 +637698.575|220456.435|106.961 +637703.241|220452.110|107.220 +637707.923|220447.769|107.259 +637712.617|220443.417|107.412 +637717.335|220439.043|107.415 +637722.056|220434.669|107.790 +637726.884|220430.201|108.567 +637736.507|220421.294|109.978 +637741.311|220416.847|110.688 +637755.898|220403.351|113.563 +637760.775|220398.843|114.568 +637765.737|220394.252|115.879 +637770.559|220389.790|116.589 +637785.080|220376.345|118.253 +637789.932|220371.856|118.948 +637809.266|220353.946|120.826 +637823.817|220340.464|121.615 +637828.606|220336.026|121.698 +637833.507|220331.488|122.332 +637838.320|220327.023|122.277 +637847.863|220318.168|121.533 +637852.703|220313.675|121.369 +637857.501|220309.228|121.259 +637862.365|220304.717|121.317 +637867.199|220300.234|121.155 +637872.012|220295.768|120.799 +637876.855|220291.276|120.768 +637881.757|220286.731|120.811 +637886.640|220282.211|121.146 +637891.547|220277.660|121.320 +637896.390|220273.164|120.905 +637901.349|220268.577|121.582 +637906.257|220264.026|121.835 +637911.133|220259.506|121.792 +637916.031|220254.965|122.021 +637920.981|220250.377|122.283 +637925.941|220245.784|122.664 +637930.930|220241.166|123.405 +637935.792|220236.658|123.353 +637940.754|220232.056|123.380 +637945.682|220227.490|123.572 +637950.608|220222.927|123.755 +637955.582|220218.319|123.972 +637960.535|220213.725|124.008 +637965.488|220209.132|124.054 +637970.399|220204.581|124.179 +637975.346|220199.994|124.215 +637980.293|220195.410|124.258 +637985.276|220190.786|124.218 +637990.217|220186.205|124.243 +637995.152|220181.630|124.237 +638000.135|220177.012|124.209 +638005.094|220172.409|123.941 +638010.038|220167.819|123.508 +638014.945|220163.265|123.203 +638019.908|220158.663|122.990 +638024.918|220154.015|122.832 +638029.881|220149.415|122.655 +638034.849|220144.807|122.597 +638039.860|220140.158|122.496 +638044.810|220135.568|122.210 +638049.812|220130.929|121.990 +638054.734|220126.360|121.295 +638059.724|220121.730|120.896 +638064.713|220117.103|120.509 +638069.724|220112.458|120.503 +638079.749|220103.168|120.546 +638084.763|220098.520|120.664 +638094.770|220089.235|119.649 +638099.814|220084.557|119.488 +638104.883|220079.863|119.784 +638109.897|220075.218|120.009 +638114.941|220070.542|119.906 +638119.998|220065.857|120.076 +638130.056|220056.536|120.369 +638135.107|220051.858|120.491 +638140.145|220047.185|120.381 +638145.171|220042.525|119.951 +638150.252|220037.813|119.707 +638160.332|220028.467|119.649 +638170.455|220019.086|119.491 +638175.475|220014.425|118.955 +638180.528|220009.728|117.882 +638185.561|220005.062|117.607 +638190.639|220000.353|117.251 +638195.668|219995.686|116.934 +638200.761|219990.971|117.089 +638205.793|219986.301|116.909 +638210.899|219981.580|117.684 +638216.004|219976.859|118.747 +638221.097|219972.143|119.235 +638226.142|219967.474|119.771 +638231.235|219962.761|120.543 +638236.325|219958.049|121.219 +638241.409|219953.343|121.615 +638246.448|219948.680|122.231 +638251.532|219943.974|122.841 +638256.607|219939.271|122.926 +638261.688|219934.567|123.432 +638266.763|219929.864|123.761 +638271.840|219925.164|124.011 +638276.867|219920.507|124.548 +638281.942|219915.807|124.749 +638287.013|219911.107|124.886 +638302.226|219897.019|125.773 +638307.249|219892.359|125.593 +638312.321|219887.662|125.776 +638317.393|219882.962|125.745 +638322.416|219878.301|125.624 +638327.491|219873.598|125.489 +638332.563|219868.895|125.383 +638337.592|219864.232|125.249 +638342.664|219859.532|125.282 +638347.739|219854.826|125.188 +638352.768|219850.165|125.148 +638357.846|219845.456|124.993 +638362.875|219840.796|125.041 +638367.908|219836.132|124.895 +638372.982|219831.426|124.959 +638378.018|219826.756|124.727 +638383.053|219822.090|124.612 +638388.088|219817.417|124.456 +638393.127|219812.751|124.343 +638398.162|219808.078|124.237 +638403.207|219803.403|123.993 +638408.199|219798.773|123.853 +638413.244|219794.097|123.685 +638418.285|219789.421|123.542 +638423.232|219784.834|123.475 +638428.285|219780.149|123.139 +638433.333|219775.474|123.027 +638438.289|219770.877|122.822 +638443.346|219766.193|122.576 +638448.347|219761.553|122.472 +638453.316|219756.948|122.143 +638458.330|219752.300|121.859 +638463.292|219747.703|121.734 +638468.303|219743.058|121.609 +638473.256|219738.471|121.753 +638478.191|219733.905|122.268 +638483.214|219729.248|121.969 +638488.154|219724.663|121.439 +638493.156|219720.021|120.759 +638498.124|219715.416|120.722 +638503.108|219710.798|120.451 +638508.073|219706.199|120.558 +638512.959|219701.669|120.396 +638517.936|219697.058|120.314 +638522.871|219692.483|120.165 +638527.812|219687.901|119.982 +638532.756|219683.320|119.802 +638537.648|219678.788|119.707 +638542.628|219674.173|119.710 +638547.478|219669.677|119.579 +638552.422|219665.096|119.500 +638557.329|219660.549|119.311 +638562.233|219656.001|119.140 +638567.137|219651.456|119.025 +638572.045|219646.906|118.903 +638576.958|219642.352|118.738 +638581.856|219637.817|118.796 +638586.751|219633.281|118.909 +638591.595|219628.791|118.522 +638596.517|219624.229|118.342 +638601.391|219619.711|118.214 +638606.268|219615.188|118.052 +638611.145|219610.668|117.943 +638616.024|219606.148|117.842 +638620.862|219601.664|117.693 +638625.738|219597.144|117.644 +638630.594|219592.642|117.342 +638635.483|219588.113|117.242 +638640.320|219583.632|117.211 +638650.049|219574.610|116.623 +638674.266|219552.162|115.766 +638679.039|219547.739|115.623 +638683.900|219543.231|115.547 +638688.719|219538.766|115.474 +638693.544|219534.297|115.382 +638698.321|219529.868|115.297 +638703.155|219525.391|115.160 +638707.937|219520.959|115.071 +638712.771|219516.475|114.971 +638717.553|219512.044|114.925 +638722.351|219507.600|114.794 +638727.176|219503.125|114.431 +638731.980|219498.672|114.297 +638736.738|219494.265|114.550 +638741.471|219489.882|114.645 +638746.287|219485.413|114.447 +638751.042|219481.009|114.401 +638755.846|219476.559|114.386 +638760.600|219472.154|114.392 +638765.328|219467.771|114.239 +638770.141|219463.312|114.203 +638774.841|219458.957|114.309 +638773.634|219456.753|114.114 +638768.760|219461.258|114.191 +638763.947|219465.708|114.203 +638759.083|219470.207|114.270 +638754.209|219474.715|114.440 +638749.359|219479.195|114.416 +638744.525|219483.664|114.297 +638739.712|219488.114|114.047 +638734.805|219492.649|114.163 +638729.925|219497.163|114.511 +638725.027|219501.693|114.617 +638720.184|219506.173|114.718 +638715.292|219510.696|114.828 +638710.403|219515.217|114.922 +638705.514|219519.740|115.077 +638700.631|219524.257|115.196 +638695.705|219528.811|115.273 +638690.822|219533.325|115.428 +638685.909|219537.869|115.455 +638681.044|219542.368|115.504 +638676.116|219546.928|115.742 +638671.248|219551.427|115.846 +638646.642|219574.189|116.739 +638636.830|219583.263|117.168 +638631.895|219587.826|117.211 +638627.025|219592.328|117.117 +638622.075|219596.906|117.385 +638617.134|219601.478|117.589 +638612.205|219606.038|117.696 +638607.277|219610.595|117.830 +638602.348|219615.152|117.967 +638597.425|219619.705|118.086 +638592.430|219624.329|118.531 +638587.529|219628.862|118.452 +638582.591|219633.427|118.823 +638577.653|219637.993|118.647 +638572.740|219642.535|118.772 +638567.735|219647.165|118.906 +638562.776|219651.749|119.052 +638557.823|219656.330|119.186 +638552.864|219660.917|119.421 +638547.917|219665.493|119.518 +638542.921|219670.110|119.640 +638537.983|219674.673|119.668 +638533.039|219679.239|119.777 +638528.050|219683.848|119.863 +638523.060|219688.462|120.052 +638518.071|219693.071|120.235 +638513.087|219697.676|120.326 +638508.101|219702.285|120.533 +638503.138|219706.866|120.357 +638498.152|219711.475|120.597 +638493.129|219716.117|120.719 +638488.151|219720.713|120.860 +638483.104|219725.386|121.524 +638478.069|219730.040|121.996 +638473.085|219734.649|122.399 +638468.111|219739.236|121.686 +638463.106|219743.860|121.658 +638458.086|219748.499|121.908 +638453.029|219753.171|121.999 +638448.009|219757.814|122.405 +638443.004|219762.437|122.490 +638437.945|219767.116|122.780 +638432.937|219771.740|122.966 +638427.886|219776.412|123.167 +638422.836|219781.079|123.350 +638417.834|219785.700|123.542 +638412.741|219790.409|123.661 +638407.693|219795.072|123.877 +638402.652|219799.730|123.941 +638397.607|219804.393|124.170 +638392.566|219809.051|124.292 +638387.525|219813.708|124.459 +638382.437|219818.411|124.673 +638377.402|219823.062|124.706 +638372.364|219827.720|124.904 +638367.286|219832.410|124.852 +638362.250|219837.062|125.020 +638357.172|219841.753|124.947 +638352.091|219846.447|125.084 +638347.059|219851.095|125.169 +638341.984|219855.786|125.188 +638336.906|219860.477|125.218 +638331.877|219865.122|125.261 +638326.802|219869.813|125.398 +638321.724|219874.503|125.486 +638316.649|219879.194|125.636 +638311.577|219883.882|125.672 +638306.502|219888.567|125.523 +638301.476|219893.209|125.621 +638296.407|219897.888|125.160 +638286.258|219907.260|124.840 +638281.183|219911.945|124.648 +638276.108|219916.633|124.313 +638271.030|219921.318|123.941 +638265.952|219926.006|123.810 +638260.874|219930.696|123.420 +638255.793|219935.384|122.923 +638250.760|219940.029|122.768 +638245.628|219944.766|122.210 +638240.589|219949.414|121.753 +638235.502|219954.108|121.128 +638230.412|219958.805|120.561 +638225.313|219963.505|119.717 +638220.268|219968.160|119.275 +638215.178|219972.860|118.857 +638210.067|219977.569|117.729 +638205.007|219982.235|116.873 +638199.920|219986.935|116.928 +638194.869|219991.596|116.653 +638189.788|219996.293|116.912 +638184.756|220000.944|117.315 +638179.678|220005.641|117.671 +638174.652|220010.289|118.186 +638144.452|220038.215|119.747 +638139.417|220042.869|120.000 +638134.430|220047.481|120.259 +638129.389|220052.141|120.369 +638124.363|220056.777|119.796 +638119.373|220061.395|119.985 +638114.307|220066.071|119.677 +638109.354|220070.649|119.695 +638094.315|220084.542|119.311 +638069.517|220107.472|120.375 +638064.494|220112.114|120.207 +638059.550|220116.686|120.570 +638054.661|220121.209|121.055 +638049.723|220125.778|121.536 +638044.831|220130.304|121.981 +638039.933|220134.834|122.356 +638034.974|220139.421|122.515 +638030.051|220143.969|122.566 +638025.132|220148.516|122.685 +638020.261|220153.018|122.807 +638015.345|220157.563|122.975 +638010.492|220162.052|123.380 +638005.585|220166.591|123.728 +638000.723|220171.087|124.008 +637995.850|220175.592|124.188 +637990.915|220180.151|124.209 +637986.075|220184.626|124.234 +637981.173|220189.155|124.145 +637976.336|220193.627|124.221 +637971.435|220198.156|124.173 +637966.589|220202.633|124.206 +637961.675|220207.175|124.060 +637956.811|220211.668|123.959 +637951.940|220216.167|123.804 +637947.072|220220.662|123.725 +637942.189|220225.177|123.463 +637937.319|220229.672|123.405 +637932.494|220234.132|123.319 +637927.669|220238.591|123.258 +637922.728|220243.151|122.554 +637917.866|220247.637|122.207 +637913.017|220252.118|121.975 +637908.158|220256.605|121.695 +637903.388|220261.015|121.838 +637898.515|220265.514|121.478 +637893.604|220270.043|120.805 +637888.846|220274.445|121.106 +637884.055|220278.873|121.131 +637879.215|220283.342|120.738 +637874.399|220287.792|120.591 +637869.598|220292.227|120.619 +637864.822|220296.643|120.853 +637855.297|220305.449|121.222 +637850.530|220309.856|121.173 +637845.772|220314.251|121.234 +637841.023|220318.644|121.387 +637836.326|220322.987|121.987 +637822.007|220336.212|121.265 +637812.460|220345.033|121.018 +637807.681|220349.444|120.722 +637802.981|220353.787|120.652 +637798.147|220358.252|119.973 +637793.358|220362.675|119.305 +637788.561|220367.110|118.951 +637774.138|220380.427|116.812 +637769.416|220384.795|116.781 +637764.661|220389.187|116.169 +637754.874|220398.209|113.517 +637735.693|220415.918|110.298 +637730.929|220420.319|109.539 +637726.132|220424.748|108.930 +637721.395|220429.122|108.088 +637716.661|220433.496|107.616 +637711.971|220437.833|107.457 +637707.331|220442.121|107.339 +637702.708|220446.398|107.317 +637698.038|220450.714|107.040 +637693.378|220455.024|106.848 +637688.708|220459.337|106.308 +637683.993|220463.692|105.818 +637679.412|220467.932|105.869 +637674.791|220472.199|105.409 +637665.699|220480.615|106.034 +637661.169|220484.809|106.156 +637652.062|220493.233|106.497 +637647.554|220497.406|106.506 +637638.629|220505.669|107.409 +637625.395|220517.928|108.994 +637616.437|220526.219|109.567 +637612.078|220530.258|109.963 +637607.622|220534.378|110.143 +637603.269|220538.411|110.609 +637590.181|220550.536|112.182 +637581.504|220558.567|112.849 +637572.713|220566.700|113.246 +637568.330|220570.756|113.130 +637563.969|220574.789|113.151 +637559.564|220578.861|112.974 +637555.093|220582.991|112.478 +637533.132|220603.288|111.021 +637528.706|220607.378|110.624 +637519.882|220615.526|109.301 +637515.463|220619.610|108.747 +637506.715|220627.687|107.680 +637498.217|220635.551|107.857 +637485.120|220647.642|105.936 +637472.726|220659.112|106.686 +637468.663|220662.876|107.028 +637456.526|220674.120|108.366 +637452.421|220677.921|108.573 +637436.117|220693.012|108.658 +637431.972|220696.843|108.317 +637415.543|220712.031|106.839 +637411.443|220715.820|106.333 +637407.542|220719.438|106.891 +637395.341|220730.713|105.473 +637387.629|220737.854|105.994 +637375.983|220748.635|106.217 +637356.728|220766.454|105.982 +637352.897|220769.995|105.720 +637349.090|220773.519|105.781 +637345.402|220776.933|105.891 +637341.601|220780.450|105.781 +637337.846|220783.922|105.665 +637334.134|220787.363|105.924 +637330.424|220790.792|105.802 +637323.091|220797.580|105.918 +637319.470|220800.936|106.159 +637315.940|220804.203|106.357 +637308.680|220810.921|106.430 +637305.037|220814.289|106.241 +637301.511|220817.557|106.485 +637294.446|220824.098|106.574 +637287.392|220830.626|106.741 +637494.675|220636.441|106.561 +637499.134|220632.320|107.680 +637503.295|220628.458|107.412 +637507.705|220624.380|108.085 +637520.918|220612.151|109.963 +637525.286|220608.107|110.283 +637534.019|220600.020|110.993 +637542.818|220591.870|111.603 +637547.226|220587.792|111.965 +637551.636|220583.704|112.392 +637556.004|220579.657|112.343 +637560.488|220575.508|112.919 +637564.828|220571.485|113.041 +637578.029|220559.247|112.862 +637595.430|220543.102|111.277 +637599.837|220539.011|110.810 +637617.461|220522.659|109.323 +637639.644|220502.070|106.881 +637644.171|220497.872|106.647 +637657.798|220485.235|106.061 +637662.355|220481.011|106.077 +637666.961|220476.744|106.110 +637680.765|220463.945|105.943 +637685.428|220459.626|106.089 +637694.819|220450.933|106.875 +637699.513|220446.584|106.988 +637704.140|220442.295|107.000 +637708.868|220437.918|107.372 +637713.543|220433.587|107.418 +637732.633|220415.921|109.771 +637737.446|220411.465|110.222 +637742.225|220407.045|110.789 +637747.126|220402.513|111.908 +637752.064|220397.956|113.621 +637766.688|220384.432|116.416 +637776.268|220375.562|117.123 +637786.071|220366.500|118.842 +637814.960|220339.745|120.616 +637819.818|220335.249|121.216 +637824.619|220330.805|121.387 +637839.066|220317.412|121.280 +637843.861|220312.968|121.103 +637848.674|220308.509|121.091 +637853.483|220304.050|121.103 +637858.324|220299.566|120.945 +637863.139|220295.098|120.628 +637867.980|220290.611|120.518 +637872.820|220286.124|120.436 +637877.697|220281.610|120.701 +637882.580|220277.087|121.045 +637887.453|220272.570|120.911 +637892.272|220268.102|120.728 +637897.274|220263.475|121.350 +637902.160|220258.951|121.838 +637907.067|220254.404|121.643 +637911.917|220249.908|121.865 +637916.870|220245.324|122.146 +637921.780|220240.776|122.530 +637926.764|220236.165|123.213 +637931.677|220231.611|123.210 +637936.602|220227.051|123.322 +637941.522|220222.491|123.447 +637946.451|220217.925|123.673 +637951.367|220213.372|123.795 +637956.274|220208.824|123.847 +637961.243|220204.225|124.045 +637966.147|220199.680|124.118 +637971.097|220195.093|124.191 +637975.986|220190.563|124.127 +637980.924|220185.985|124.109 +637985.867|220181.404|124.167 +637990.805|220176.829|124.179 +637995.780|220172.220|124.075 +638000.653|220167.703|123.917 +638005.609|220163.104|123.639 +638010.514|220158.559|123.277 +638015.461|220153.969|122.905 +638020.423|220149.370|122.710 +638025.342|220144.810|122.606 +638030.301|220140.210|122.454 +638035.273|220135.602|122.460 +638040.235|220131.005|122.320 +638045.212|220126.382|121.774 +638050.101|220121.843|121.329 +638055.078|220117.222|120.771 +638060.062|220112.595|120.317 +638065.012|220108.002|120.088 +638089.957|220084.859|119.256 +638115.045|220061.599|119.820 +638120.044|220056.960|119.869 +638125.094|220052.281|119.948 +638130.099|220047.639|120.192 +638135.089|220043.012|120.058 +638145.114|220033.713|119.738 +638175.237|220005.757|117.876 +638180.306|220001.047|117.363 +638185.286|219996.427|116.949 +638190.364|219991.715|116.714 +638195.406|219987.039|116.818 +638200.441|219982.369|116.772 +638205.485|219977.694|117.132 +638210.588|219972.972|117.921 +638215.647|219968.294|119.046 +638220.735|219963.578|119.418 +638225.773|219958.909|119.811 +638230.817|219954.239|120.728 +638235.911|219949.530|121.658 +638240.989|219944.821|121.844 +638246.021|219940.157|122.313 +638251.102|219935.451|122.905 +638256.177|219930.748|123.018 +638261.209|219926.088|123.645 +638266.281|219921.385|123.816 +638271.356|219916.685|124.060 +638276.379|219912.024|124.292 +638281.451|219907.324|124.514 +638291.546|219897.970|125.139 +638296.618|219893.267|125.066 +638301.684|219888.576|125.581 +638306.704|219883.916|125.435 +638311.821|219879.173|125.648 +638316.893|219874.470|125.566 +638321.916|219869.809|125.532 +638326.988|219865.103|125.331 +638332.060|219860.400|125.279 +638337.086|219855.740|125.267 +638342.158|219851.034|125.191 +638347.233|219846.331|125.176 +638352.259|219841.664|125.069 +638357.334|219836.958|124.996 +638362.412|219832.252|124.971 +638367.441|219827.585|124.886 +638372.516|219822.876|124.855 +638377.600|219818.161|124.593 +638382.636|219813.491|124.462 +638387.713|219808.779|124.465 +638392.801|219804.061|124.215 +638397.836|219799.388|124.148 +638402.926|219794.667|123.886 +638407.964|219789.991|123.758 +638413.006|219785.316|123.682 +638418.047|219780.637|123.496 +638423.137|219775.913|123.386 +638428.188|219771.225|123.097 +638433.239|219766.534|122.813 +638438.286|219761.852|122.731 +638443.291|219757.204|122.484 +638448.393|219752.467|122.283 +638453.398|219747.822|122.134 +638458.461|219743.119|121.789 +638463.505|219738.440|121.902 +638468.492|219733.820|122.298 +638473.554|219729.120|122.054 +638478.596|219724.432|121.311 +638483.625|219719.762|120.914 +638488.639|219715.108|120.823 +638493.656|219710.454|120.777 +638498.682|219705.787|120.543 +638503.708|219701.121|120.335 +638508.671|219696.515|120.421 +638513.700|219691.849|120.244 +638518.680|219687.228|120.131 +638523.664|219682.601|119.991 +638528.647|219677.974|119.842 +638533.631|219673.347|119.750 +638538.617|219668.723|119.680 +638543.607|219664.093|119.573 +638548.551|219659.503|119.454 +638553.543|219654.870|119.354 +638558.454|219650.310|119.083 +638563.401|219645.717|119.000 +638568.363|219641.112|118.759 +638573.316|219636.515|118.665 +638578.214|219631.967|118.680 +638583.127|219627.408|118.525 +638588.096|219622.793|118.318 +638592.951|219618.291|118.372 +638597.931|219613.664|118.071 +638607.737|219604.566|117.748 +638612.620|219600.030|117.549 +638617.515|219595.486|117.260 +638622.428|219590.926|117.342 +638627.317|219586.391|117.196 +638632.203|219581.852|117.068 +638637.050|219577.353|116.918 +638651.707|219563.747|116.358 +638661.406|219554.746|116.233 +638666.268|219550.232|116.056 +638671.141|219545.709|115.830 +638675.976|219541.219|115.519 +638680.785|219536.754|115.474 +638685.598|219532.289|115.452 +638690.460|219527.774|115.413 +638695.242|219523.337|115.276 +638700.064|219518.862|115.221 +638704.843|219514.424|115.129 +638709.680|219509.934|115.001 +638714.469|219505.487|114.870 +638719.263|219501.040|114.742 +638724.064|219496.584|114.581 +638728.816|219492.171|114.431 +638733.623|219487.708|114.267 +638738.429|219483.246|114.133 +638743.175|219478.842|114.117 +638747.945|219474.413|113.941 +638752.679|219470.018|113.672 +638757.391|219465.650|114.017 +638762.121|219461.264|114.218 +638766.818|219456.902|114.294 +638763.447|219456.814|113.877 +638758.577|219461.313|113.560 +638753.672|219465.851|113.557 +638748.732|219470.423|113.864 +638743.763|219475.023|114.041 +638738.850|219479.567|114.184 +638733.918|219484.130|114.102 +638728.947|219488.729|114.370 +638723.991|219493.314|114.529 +638719.041|219497.895|114.681 +638714.097|219502.470|114.815 +638709.153|219507.045|114.965 +638704.173|219511.650|115.032 +638699.186|219516.265|115.205 +638694.261|219520.822|115.263 +638689.241|219525.467|115.340 +638684.315|219530.027|115.483 +638679.307|219534.657|115.480 +638674.397|219539.198|115.519 +638669.364|219543.856|115.824 +638664.396|219548.455|116.022 +638659.385|219553.091|116.172 +638654.387|219557.715|116.242 +638639.418|219571.568|116.839 +638634.425|219576.189|116.949 +638629.442|219580.798|117.007 +638624.440|219585.427|117.263 +638619.408|219590.085|117.400 +638614.439|219594.678|117.360 +638609.456|219599.293|117.528 +638604.472|219603.901|117.711 +638594.438|219613.192|118.442 +638589.455|219617.797|118.132 +638584.380|219622.503|119.034 +638579.457|219627.051|118.622 +638574.459|219631.675|118.586 +638569.497|219636.265|118.744 +638564.492|219640.898|118.857 +638559.484|219645.528|119.022 +638554.476|219650.164|119.247 +638549.474|219654.794|119.427 +638544.479|219659.418|119.549 +638539.489|219664.036|119.607 +638534.496|219668.656|119.765 +638529.510|219673.271|119.823 +638524.478|219677.928|119.887 +638519.494|219682.546|120.027 +638514.504|219687.161|120.207 +638509.481|219691.812|120.262 +638504.513|219696.408|120.183 +638499.530|219701.026|120.427 +638494.500|219705.680|120.637 +638489.523|219710.289|120.802 +638484.506|219714.931|120.860 +638479.489|219719.576|121.000 +638474.460|219724.234|121.378 +638469.464|219728.864|122.079 +638464.447|219733.512|122.332 +638459.461|219738.123|121.972 +638454.459|219742.750|121.871 +638449.448|219747.389|122.100 +638444.440|219752.028|122.298 +638439.475|219756.625|122.573 +638434.467|219761.261|122.822 +638429.422|219765.930|122.859 +638424.460|219770.527|123.228 +638419.413|219775.199|123.405 +638414.417|219779.826|123.542 +638409.418|219784.450|123.700 +638404.426|219789.074|123.819 +638399.430|219793.698|123.990 +638394.389|219798.367|124.237 +638389.399|219802.988|124.340 +638384.409|219807.606|124.502 +638379.374|219812.266|124.609 +638374.388|219816.884|124.703 +638369.352|219821.544|124.849 +638364.323|219826.199|124.865 +638359.340|219830.810|124.919 +638354.307|219835.468|125.035 +638349.281|219840.122|125.087 +638344.298|219844.731|125.124 +638339.272|219849.385|125.157 +638334.245|219854.036|125.169 +638329.265|219858.645|125.236 +638324.239|219863.299|125.316 +638319.167|219867.993|125.368 +638314.189|219872.601|125.560 +638309.166|219877.244|125.145 +638304.094|219881.941|125.355 +638299.117|219886.546|125.255 +638294.051|219891.231|124.977 +638289.028|219895.879|124.865 +638273.950|219909.824|123.987 +638268.924|219914.472|123.737 +638263.852|219919.166|123.737 +638258.868|219923.774|123.356 +638253.790|219928.468|122.914 +638248.761|219933.120|122.765 +638243.726|219937.774|122.152 +638238.693|219942.428|121.807 +638233.609|219947.128|121.366 +638228.614|219951.743|120.585 +638223.517|219956.446|119.625 +638218.479|219961.106|119.247 +638213.480|219965.727|118.659 +638208.372|219970.442|117.543 +638203.321|219975.109|116.961 +638198.277|219979.775|116.675 +638193.235|219984.439|116.516 +638188.197|219989.102|116.580 +638183.162|219993.763|116.748 +638178.133|219998.423|117.086 +638173.061|220003.120|117.620 +638168.089|220007.729|118.269 +638142.931|220031.015|119.592 +638137.887|220035.679|119.564 +638132.845|220040.342|119.643 +638127.847|220044.966|119.634 +638112.792|220058.890|119.403 +638087.717|220082.082|119.290 +638082.712|220086.715|119.299 +638057.809|220109.758|120.290 +638052.829|220114.369|120.820 +638047.949|220118.890|121.393 +638042.947|220123.519|121.628 +638038.016|220128.088|122.155 +638033.108|220132.627|122.402 +638028.094|220137.266|122.448 +638023.221|220141.774|122.533 +638018.259|220146.364|122.697 +638013.303|220150.951|122.963 +638008.398|220155.493|123.271 +638003.494|220160.035|123.609 +637998.581|220164.582|123.834 +637993.658|220169.136|123.981 +637988.778|220173.650|124.075 +637983.840|220178.216|124.060 +637978.945|220182.742|124.011 +637974.014|220187.305|124.124 +637969.122|220191.831|124.161 +637964.269|220196.318|124.109 +637959.316|220200.899|124.008 +637954.449|220205.398|123.871 +637949.538|220209.943|123.758 +637944.674|220214.441|123.679 +637939.791|220218.953|123.450 +637934.926|220223.454|123.392 +637930.046|220227.965|123.225 +637925.191|220232.455|123.356 +637920.296|220236.975|122.603 +637915.385|220241.514|122.201 +637910.530|220246.001|121.905 +637905.680|220250.484|121.704 +637900.855|220254.946|121.774 +637896.009|220259.427|121.637 +637891.093|220263.969|120.878 +637886.277|220268.419|120.655 +637881.473|220272.869|120.985 +637876.651|220277.325|120.756 +637871.817|220281.790|120.442 +637867.013|220286.234|120.418 +637862.216|220290.672|120.457 +637857.470|220295.061|120.552 +637852.694|220299.481|120.820 +637847.951|220303.870|120.978 +637843.145|220308.317|121.018 +637838.390|220312.715|121.122 +637833.674|220317.080|121.143 +637819.394|220330.284|121.100 +637814.606|220334.710|120.637 +637809.812|220339.138|120.186 +637805.121|220343.482|120.530 +637790.841|220356.668|119.433 +637781.288|220365.488|118.354 +637776.433|220369.963|117.296 +637771.733|220374.303|117.046 +637752.597|220391.957|114.273 +637747.833|220396.353|113.368 +637743.039|220400.775|112.636 +637733.425|220409.636|110.435 +637719.243|220422.724|108.655 +637714.458|220427.137|107.848 +637709.782|220431.453|107.461 +637705.122|220435.760|107.177 +637695.847|220444.328|107.015 +637691.232|220448.592|106.787 +637681.929|220457.185|106.257 +637677.287|220461.470|105.952 +637672.764|220465.652|106.068 +637668.122|220469.934|105.491 +637663.586|220474.132|105.863 +637659.066|220478.310|106.049 +637649.941|220486.741|105.997 +637645.500|220490.850|106.403 +637640.992|220495.017|106.436 +637636.502|220499.168|106.598 +637632.076|220503.264|107.131 +637627.611|220507.394|107.451 +637605.528|220527.822|109.527 +637601.124|220531.894|109.722 +637583.823|220547.909|112.036 +637579.486|220551.920|112.383 +637566.383|220564.036|113.026 +637548.786|220580.284|112.197 +637544.406|220584.329|111.941 +637535.595|220592.464|111.243 +637526.832|220600.554|110.612 +637522.458|220604.592|110.234 +637513.725|220612.651|109.384 +637509.373|220616.669|108.933 +637492.042|220632.664|106.973 +637483.462|220640.583|106.159 +637475.058|220648.346|106.241 +637470.968|220652.129|106.452 +637466.896|220655.899|106.988 +637462.790|220659.694|107.159 +637458.824|220663.364|107.735 +637450.756|220670.826|108.549 +637430.252|220689.766|107.851 +637422.020|220697.368|107.244 +637417.899|220701.168|106.607 +637413.863|220704.896|106.583 +637393.926|220723.306|105.687 +637382.158|220734.178|105.574 +637378.290|220737.754|105.708 +637374.434|220741.317|105.693 +637370.658|220744.804|105.805 +637366.756|220748.409|105.626 +637351.541|220762.464|105.580 +637347.856|220765.871|105.909 +637344.070|220769.368|105.647 +637340.300|220772.851|105.665 +637336.666|220776.207|105.818 +637332.966|220779.627|105.924 +637318.372|220793.112|106.232 +637311.258|220799.689|106.647 +637303.943|220806.443|106.330 +637293.354|220816.225|106.491 +637286.295|220822.744|106.452 +637282.945|220825.844|106.805 +637498.778|220624.346|107.823 +637503.063|220620.372|107.918 +637507.398|220616.358|108.488 +637520.568|220604.153|110.198 +637524.945|220600.097|110.588 +637542.532|220583.790|111.719 +637564.651|220563.280|113.002 +637577.837|220551.042|112.511 +637590.916|220538.890|111.082 +637599.624|220530.797|109.847 +637608.503|220522.552|109.308 +637612.947|220518.425|109.094 +637626.248|220506.066|107.521 +637630.720|220501.914|106.942 +637635.176|220497.775|106.583 +637639.629|220493.639|106.220 +637648.767|220485.159|105.991 +637653.351|220480.904|105.854 +637657.978|220476.613|105.979 +637662.507|220472.403|105.559 +637671.932|220463.674|106.638 +637676.486|220459.443|106.113 +637690.534|220446.413|106.708 +637695.197|220442.088|106.948 +637699.910|220437.720|107.177 +637704.567|220433.395|107.101 +637709.304|220429.006|107.555 +637714.052|220424.601|107.787 +637723.663|220415.701|109.408 +637728.515|220411.205|110.076 +637747.903|220393.256|113.642 +637752.759|220388.760|114.529 +637757.602|220384.276|115.337 +637767.301|220375.291|116.483 +637772.111|220370.832|117.184 +637776.966|220366.330|117.528 +637781.867|220361.797|118.580 +637786.659|220357.353|118.869 +637791.508|220352.861|119.259 +637796.355|220348.365|119.665 +637810.842|220334.929|120.253 +637820.516|220325.959|120.774 +637835.015|220312.508|121.085 +637839.874|220308.000|121.033 +637844.687|220303.535|121.030 +637849.515|220299.054|120.777 +637854.331|220294.580|120.439 +637859.186|220290.078|120.445 +637864.033|220285.576|120.418 +637868.925|220281.040|120.351 +637873.801|220276.517|120.634 +637878.736|220271.942|121.006 +637883.592|220267.434|120.713 +637888.490|220262.893|120.802 +637893.388|220258.354|121.378 +637898.365|220253.739|121.853 +637903.221|220249.231|121.615 +637908.171|220244.641|121.865 +637913.075|220240.093|122.179 +637918.028|220235.503|122.496 +637923.024|220230.876|123.304 +637927.928|220226.326|123.200 +637932.850|220221.760|123.325 +637937.776|220217.191|123.493 +637942.738|220212.588|123.591 +637947.609|220208.071|123.749 +637952.614|220203.429|123.801 +637957.533|220198.866|124.045 +637962.480|220194.276|124.048 +637967.430|220189.682|124.133 +637972.368|220185.101|124.093 +637977.306|220180.520|124.066 +637982.243|220175.939|124.078 +637987.227|220171.315|124.057 +637992.152|220166.746|123.959 +637997.121|220162.132|123.831 +638002.028|220157.578|123.520 +638006.987|220152.972|123.280 +638011.946|220148.370|123.045 +638016.844|220143.819|122.701 +638021.806|220139.214|122.542 +638026.775|220134.605|122.475 +638031.737|220129.999|122.359 +638036.736|220125.360|122.103 +638041.667|220120.776|121.600 +638046.617|220116.186|121.341 +638051.561|220111.596|121.015 +638066.408|220097.813|119.509 +638071.391|220093.186|119.064 +638076.402|220088.541|119.080 +638081.368|220083.938|119.162 +638111.390|220056.098|119.211 +638121.400|220046.819|119.464 +638126.393|220042.189|119.381 +638131.388|220037.557|119.378 +638136.433|220032.878|119.384 +638141.474|220028.202|119.436 +638166.477|220005.001|117.894 +638171.506|220000.334|117.516 +638176.478|219995.717|116.928 +638181.507|219991.050|116.556 +638186.499|219986.420|116.550 +638191.535|219981.748|116.504 +638196.576|219977.075|116.537 +638201.572|219972.445|116.861 +638206.619|219967.769|117.309 +638211.673|219963.094|118.214 +638216.678|219958.464|119.107 +638221.719|219953.794|119.543 +638226.764|219949.125|120.314 +638231.805|219944.458|121.100 +638236.843|219939.792|121.707 +638241.876|219935.128|122.085 +638246.862|219930.511|122.560 +638251.891|219925.850|122.941 +638256.920|219921.190|123.155 +638261.947|219916.532|123.286 +638266.973|219911.875|123.740 +638271.999|219907.215|123.929 +638282.051|219897.903|124.447 +638287.074|219893.249|124.855 +638292.049|219888.634|125.075 +638297.310|219883.760|125.358 +638302.092|219879.325|125.276 +638307.115|219874.668|125.240 +638312.184|219869.971|125.523 +638317.161|219865.353|125.416 +638322.184|219860.693|125.218 +638327.211|219856.033|125.233 +638332.237|219851.372|125.136 +638337.263|219846.709|124.971 +638342.286|219842.051|125.078 +638347.266|219837.434|125.075 +638352.293|219832.770|125.002 +638357.322|219828.107|124.962 +638362.305|219823.486|124.886 +638367.383|219818.777|124.785 +638372.367|219814.153|124.752 +638377.399|219809.486|124.630 +638382.434|219804.817|124.514 +638387.418|219800.193|124.478 +638392.410|219795.560|124.261 +638397.449|219790.887|124.112 +638402.441|219786.258|123.987 +638407.486|219781.576|123.731 +638412.527|219776.900|123.642 +638417.520|219772.267|123.520 +638422.570|219767.585|123.289 +638427.572|219762.946|123.039 +638432.577|219758.304|122.780 +638437.634|219753.616|122.475 +638442.636|219748.977|122.347 +638447.646|219744.329|122.118 +638452.700|219739.644|121.987 +638457.626|219735.085|122.603 +638462.688|219730.391|122.368 +638467.711|219725.733|121.996 +638472.756|219721.045|121.210 +638477.773|219716.394|121.045 +638482.796|219711.737|120.805 +638487.761|219707.131|120.753 +638492.778|219702.480|120.689 +638497.759|219697.862|120.439 +638502.785|219693.202|120.293 +638507.799|219688.557|120.378 +638512.782|219683.933|120.189 +638517.815|219679.269|120.052 +638522.749|219674.694|119.933 +638527.779|219670.034|119.899 +638532.765|219665.407|119.774 +638537.752|219660.786|119.723 +638542.744|219656.156|119.555 +638547.691|219651.569|119.445 +638552.687|219646.939|119.326 +638557.686|219642.300|119.171 +638562.693|219637.658|118.951 +638567.656|219633.059|118.769 +638572.612|219628.459|118.631 +638577.580|219623.863|119.046 +638587.550|219614.609|118.223 +638592.506|219610.016|118.238 +638597.483|219605.401|118.013 +638602.470|219600.777|117.738 +638607.402|219596.205|117.555 +638612.416|219591.557|117.559 +638617.350|219586.982|117.394 +638622.297|219582.392|117.135 +638627.226|219577.823|117.080 +638632.176|219573.232|116.839 +638637.110|219568.657|116.800 +638642.057|219564.070|116.644 +638647.004|219559.486|116.547 +638651.869|219554.972|116.294 +638656.807|219550.394|116.324 +638661.671|219545.883|116.138 +638666.640|219541.277|115.928 +638671.519|219536.751|115.654 +638676.430|219532.197|115.590 +638681.288|219527.695|115.593 +638686.205|219523.138|115.507 +638691.027|219518.667|115.440 +638695.907|219514.144|115.312 +638700.735|219509.666|115.218 +638705.669|219505.091|115.096 +638710.464|219500.644|114.940 +638715.356|219496.109|114.809 +638720.163|219491.653|114.599 +638725.064|219487.105|114.419 +638729.883|219482.637|114.175 +638734.708|219478.165|114.297 +638739.517|219473.703|114.157 +638744.339|219469.234|113.974 +638749.155|219464.769|113.843 +638753.938|219460.331|113.602 +638752.002|219459.124|113.557 +638747.083|219463.672|113.688 +638742.212|219468.177|113.858 +638737.292|219472.727|114.047 +638732.376|219477.272|114.236 +638727.499|219481.777|114.117 +638722.580|219486.328|114.389 +638717.624|219490.909|114.578 +638712.719|219495.441|114.773 +638707.779|219500.010|114.895 +638702.835|219504.579|115.059 +638697.848|219509.191|115.209 +638692.923|219513.744|115.288 +638687.945|219518.347|115.413 +638683.029|219522.888|115.440 +638678.060|219527.479|115.522 +638673.107|219532.057|115.492 +638668.136|219536.653|115.678 +638663.159|219541.256|115.943 +638658.145|219545.892|116.126 +638653.204|219550.458|116.074 +638638.232|219564.305|116.690 +638633.209|219568.941|116.577 +638628.201|219573.574|116.891 +638623.166|219578.231|116.998 +638618.173|219582.846|117.193 +638613.181|219587.464|117.440 +638608.109|219592.151|117.507 +638603.137|219596.748|117.555 +638598.099|219601.405|117.824 +638593.012|219606.111|118.199 +638588.013|219610.729|118.077 +638572.855|219624.744|118.692 +638567.817|219629.401|118.595 +638562.800|219634.037|118.848 +638557.743|219638.716|119.043 +638552.690|219643.388|119.244 +638547.639|219648.055|119.384 +638542.598|219652.718|119.482 +638537.557|219657.376|119.601 +638532.469|219662.076|119.665 +638527.431|219666.733|119.790 +638522.399|219671.384|119.869 +638517.370|219676.033|119.899 +638512.285|219680.729|120.073 +638507.253|219685.384|120.247 +638502.233|219690.020|120.210 +638497.161|219694.711|120.311 +638492.129|219699.362|120.561 +638487.060|219704.047|120.655 +638482.043|219708.680|120.655 +638476.971|219713.371|120.902 +638471.948|219718.016|121.152 +638466.882|219722.697|121.317 +638461.832|219727.373|122.216 +638456.772|219732.049|122.368 +638451.712|219736.724|122.505 +638446.680|219741.373|122.134 +638441.672|219745.999|122.243 +638436.619|219750.669|122.365 +638431.559|219755.351|122.746 +638426.505|219760.023|122.987 +638421.452|219764.696|123.243 +638416.356|219769.405|123.408 +638411.357|219774.026|123.591 +638406.315|219778.686|123.648 +638401.219|219783.395|123.908 +638396.227|219788.010|124.036 +638391.185|219792.671|124.148 +638386.098|219797.374|124.398 +638381.108|219801.985|124.478 +638376.073|219806.637|124.532 +638371.035|219811.294|124.715 +638366.003|219815.945|124.776 +638360.970|219820.596|124.865 +638355.941|219825.245|124.868 +638350.958|219829.850|124.953 +638345.925|219834.498|125.023 +638340.899|219839.144|125.020 +638335.870|219843.792|125.099 +638330.844|219848.434|125.038 +638325.863|219853.036|125.124 +638320.837|219857.681|125.108 +638315.857|219862.284|125.252 +638310.831|219866.929|125.325 +638305.856|219871.522|125.008 +638300.830|219876.168|125.218 +638285.806|219890.045|124.980 +638280.829|219894.642|124.785 +638275.803|219899.284|124.660 +638260.764|219913.164|123.310 +638255.784|219917.764|122.944 +638250.754|219922.409|122.957 +638245.722|219927.054|122.481 +638240.736|219931.657|122.048 +638235.749|219936.262|121.753 +638230.708|219940.910|120.981 +638225.712|219945.519|120.305 +638220.716|219950.128|119.710 +638215.715|219954.739|118.869 +638210.664|219959.400|118.101 +638205.659|219964.014|117.299 +638200.709|219968.586|116.976 +638195.656|219973.247|116.352 +638190.663|219977.858|116.425 +638185.719|219982.427|116.428 +638180.726|219987.042|116.461 +638175.737|219991.654|116.623 +638170.756|219996.259|117.025 +638165.782|220000.865|117.623 +638160.847|220005.431|118.025 +638150.972|220014.581|119.860 +638145.958|220019.211|119.357 +638140.959|220023.831|119.262 +638136.009|220028.406|119.244 +638131.010|220033.027|119.189 +638126.054|220037.608|119.128 +638121.053|220042.232|119.061 +638116.051|220046.856|119.055 +638111.095|220051.437|118.973 +638096.156|220065.245|118.564 +638076.247|220083.655|119.098 +638071.327|220088.202|119.031 +638066.298|220092.847|118.747 +638061.351|220097.425|119.070 +638041.689|220115.628|121.597 +638036.781|220120.170|121.801 +638031.831|220124.748|122.112 +638026.927|220129.286|122.396 +638022.017|220133.828|122.573 +638017.097|220138.378|122.676 +638012.184|220142.923|122.883 +638007.277|220147.462|123.197 +638002.372|220152.000|123.523 +637997.453|220156.548|123.694 +637992.530|220161.101|123.813 +637987.647|220165.615|123.901 +637982.722|220170.172|124.020 +637977.787|220174.735|124.066 +637972.886|220179.264|123.953 +637967.951|220183.827|124.054 +637963.053|220188.357|124.033 +637958.155|220192.883|124.039 +637953.239|220197.427|123.868 +637948.276|220202.012|123.737 +637943.412|220206.511|123.642 +637938.489|220211.058|123.496 +637933.570|220215.603|123.386 +637928.690|220220.114|123.222 +637923.770|220224.661|123.155 +637918.900|220229.163|123.136 +637913.947|220233.732|122.326 +637909.045|220238.262|122.045 +637904.141|220242.794|121.771 +637899.292|220247.275|121.600 +637894.436|220251.764|121.841 +637889.526|220256.297|121.143 +637884.631|220260.817|120.628 +637879.791|220265.291|120.628 +637875.033|220269.696|120.951 +637870.138|220274.213|120.524 +637865.307|220278.675|120.271 +637860.515|220283.107|120.357 +637855.663|220287.594|120.378 +637850.896|220292.001|120.299 +637846.098|220296.436|120.427 +637841.325|220300.852|120.750 +637836.570|220305.251|120.829 +637831.751|220309.704|120.835 +637826.947|220314.142|120.567 +637812.613|220327.394|120.549 +637807.806|220331.835|120.369 +637798.253|220340.662|119.781 +637793.477|220345.076|119.528 +637774.229|220362.858|117.403 +637769.438|220367.284|116.833 +637750.244|220385.008|114.309 +637735.833|220398.315|111.865 +637726.232|220407.173|109.804 +637716.780|220415.902|108.866 +637711.995|220420.322|108.052 +637707.295|220424.662|107.497 +637702.656|220428.951|107.363 +637697.980|220433.276|107.326 +637693.356|220437.549|107.015 +637688.675|220441.878|106.677 +637684.026|220446.175|106.567 +637674.770|220454.734|106.046 +637670.079|220459.068|105.751 +637665.540|220463.268|105.790 +637660.819|220467.624|104.754 +637656.381|220471.739|105.732 +637651.827|220475.951|105.735 +637647.283|220480.154|105.815 +637642.756|220484.345|106.010 +637629.239|220496.854|106.485 +637624.798|220500.966|106.948 +637620.329|220505.102|107.278 +637611.584|220513.204|108.463 +637607.244|220517.224|108.972 +637602.785|220521.351|109.128 +637598.304|220525.497|109.173 +637594.025|220529.462|109.777 +637589.694|220533.473|110.390 +637576.785|220545.434|112.185 +637568.102|220553.471|112.596 +637563.792|220557.458|112.868 +637559.378|220561.539|112.606 +637554.956|220565.630|112.593 +637546.125|220573.789|111.917 +637537.356|220581.894|111.365 +637533.059|220585.868|111.310 +637524.268|220593.991|110.527 +637519.849|220598.076|110.176 +637511.064|220606.186|109.064 +637506.684|220610.234|108.719 +637489.341|220626.255|106.933 +637480.700|220634.237|105.827 +637476.570|220638.059|106.065 +637472.352|220641.958|105.912 +637468.170|220645.829|105.927 +637443.932|220668.268|108.119 +637439.866|220672.026|108.070 +637395.094|220713.400|105.214 +637391.189|220717.015|105.574 +637371.758|220734.983|105.580 +637367.912|220738.543|105.613 +637364.038|220742.124|105.543 +637360.228|220745.645|105.540 +637356.448|220749.141|105.671 +637352.678|220752.628|105.629 +637348.859|220756.157|105.415 +637341.431|220763.031|105.848 +637337.788|220766.399|105.943 +637326.742|220776.616|106.043 +637315.855|220786.686|106.241 +637301.544|220799.918|106.363 +637297.896|220803.289|105.949 +637294.278|220806.632|105.869 +637287.600|220812.817|107.015 +637284.180|220815.981|107.305 +637280.830|220819.084|107.649 +637277.383|220822.275|107.848 +637490.338|220623.185|106.756 +637494.629|220619.214|107.092 +637512.024|220603.120|108.988 +637520.769|220595.028|110.182 +637525.207|220590.925|110.880 +637529.447|220586.996|110.880 +637538.152|220578.937|111.286 +637542.568|220574.850|111.719 +637546.951|220570.790|112.005 +637555.769|220562.630|112.627 +637568.870|220550.493|112.688 +637573.189|220546.485|112.237 +637577.462|220542.520|111.551 +637599.283|220522.278|109.359 +637616.864|220505.971|107.409 +637621.268|220501.881|106.726 +637634.734|220489.396|105.879 +637639.236|220485.226|105.799 +637648.298|220476.826|105.455 +637652.870|220472.592|105.531 +637666.592|220459.876|105.370 +637675.977|220451.192|106.601 +637680.585|220446.919|106.436 +637685.224|220442.618|106.479 +637689.918|220438.272|106.897 +637694.603|220433.931|107.272 +637699.239|220429.634|107.040 +637703.887|220425.327|107.226 +637708.633|220420.932|107.750 +637718.198|220412.077|109.049 +637722.968|220407.664|109.478 +637727.704|220403.278|110.064 +637732.609|220398.748|111.456 +637742.368|220389.717|113.410 +637756.761|220376.397|115.199 +637776.171|220358.432|117.766 +637781.035|220353.930|118.580 +637790.630|220345.042|119.314 +637809.885|220327.205|120.101 +637819.532|220318.266|120.424 +637833.973|220304.882|120.655 +637838.777|220300.426|120.570 +637843.547|220296.000|120.216 +637848.408|220291.492|120.253 +637853.227|220287.027|120.344 +637858.122|220282.491|120.283 +637862.917|220278.044|120.226 +637867.824|220273.497|120.326 +637872.732|220268.952|120.875 +637877.590|220264.447|120.573 +637882.482|220259.912|120.604 +637887.411|220255.349|120.994 +637892.385|220250.746|121.853 +637897.237|220246.244|121.579 +637902.175|220241.666|121.713 +637907.070|220237.134|121.896 +637912.036|220232.534|122.320 +637917.019|220227.923|122.978 +637921.948|220223.357|123.112 +637926.867|220218.797|123.182 +637931.835|220214.192|123.280 +637936.761|220209.629|123.459 +637941.677|220205.072|123.572 +637946.646|220200.466|123.770 +637951.593|220195.882|123.758 +637956.515|220191.322|124.011 +637961.456|220186.741|123.953 +637966.403|220182.157|124.002 +637971.341|220177.579|123.972 +637976.288|220172.992|124.075 +637981.222|220168.417|124.048 +637986.191|220163.811|123.865 +637991.165|220159.199|123.749 +637996.090|220154.633|123.661 +638001.056|220150.028|123.527 +638006.009|220145.432|123.213 +638010.962|220140.841|122.880 +638015.924|220136.239|122.728 +638020.886|220131.636|122.582 +638025.888|220126.997|122.356 +638030.835|220122.407|122.012 +638035.833|220117.771|121.740 +638040.835|220113.132|121.545 +638055.780|220099.251|120.067 +638060.717|220094.658|118.845 +638065.737|220090.004|118.979 +638070.803|220085.307|119.104 +638085.863|220071.338|118.921 +638090.856|220066.702|118.689 +638095.903|220062.023|118.564 +638110.976|220048.045|118.958 +638115.969|220043.412|118.820 +638121.019|220038.730|118.906 +638126.073|220034.045|119.070 +638131.120|220029.363|119.140 +638136.165|220024.685|119.208 +638141.157|220020.055|119.107 +638146.196|220015.379|119.073 +638151.225|220010.713|118.708 +638156.242|220006.049|118.083 +638161.271|220001.383|117.763 +638166.294|219996.716|117.205 +638171.323|219992.050|116.839 +638176.353|219987.380|116.541 +638181.391|219982.705|116.483 +638186.429|219978.032|116.388 +638191.516|219973.314|116.455 +638196.555|219968.641|116.437 +638201.605|219963.962|117.004 +638206.653|219959.287|117.403 +638211.755|219954.565|118.385 +638216.809|219949.890|119.430 +638221.847|219945.220|119.893 +638226.937|219940.508|120.506 +638231.976|219935.842|121.164 +638237.063|219931.129|121.878 +638242.095|219926.466|122.073 +638247.130|219921.805|122.789 +638252.156|219917.142|122.716 +638257.231|219912.436|123.057 +638262.264|219907.779|123.792 +638272.316|219898.461|124.368 +638277.342|219893.803|124.734 +638282.365|219889.146|124.904 +638297.435|219875.168|124.688 +638302.409|219870.556|125.066 +638307.432|219865.896|125.020 +638312.455|219861.242|125.276 +638317.481|219856.578|125.157 +638322.507|219851.915|125.069 +638327.534|219847.254|125.066 +638332.511|219842.637|125.002 +638337.537|219837.976|125.102 +638342.566|219833.313|125.026 +638347.593|219828.646|124.965 +638352.622|219823.983|124.895 +638357.602|219819.365|125.002 +638362.634|219814.695|124.865 +638367.667|219810.026|124.764 +638372.653|219805.399|124.621 +638377.689|219800.729|124.478 +638382.724|219796.057|124.404 +638387.665|219791.473|124.279 +638392.703|219786.797|124.139 +638397.696|219782.164|123.981 +638402.691|219777.531|123.850 +638407.736|219772.849|123.615 +638412.686|219768.259|123.472 +638417.685|219763.617|123.252 +638422.683|219758.981|123.152 +638427.652|219754.366|122.591 +638432.647|219749.730|122.615 +638437.600|219745.137|122.566 +638442.614|219740.483|122.249 +638447.552|219735.911|122.630 +638452.511|219731.308|122.512 +638457.479|219726.696|122.240 +638462.475|219722.051|121.387 +638467.440|219717.446|121.311 +638472.460|219712.788|121.082 +638477.386|219708.216|120.847 +638482.360|219703.602|120.704 +638487.328|219698.990|120.616 +638492.306|219694.375|120.479 +638497.335|219689.709|120.274 +638502.258|219685.140|120.238 +638507.235|219680.522|120.189 +638512.170|219675.941|120.027 +638517.153|219671.320|119.915 +638522.137|219666.696|119.860 +638527.071|219662.118|119.802 +638532.061|219657.491|119.698 +638537.002|219652.907|119.604 +638541.946|219648.320|119.503 +638546.896|219643.727|119.366 +638551.849|219639.130|119.217 +638556.802|219634.534|119.055 +638561.767|219629.928|118.817 +638566.729|219625.323|118.631 +638571.630|219620.775|118.628 +638586.416|219607.056|118.372 +638591.412|219602.420|117.930 +638596.298|219597.885|117.677 +638601.275|219593.267|117.525 +638606.149|219588.747|117.482 +638611.093|219584.156|117.199 +638616.021|219579.584|117.159 +638625.900|219570.419|116.876 +638630.783|219565.887|116.836 +638635.742|219561.284|116.559 +638640.643|219556.740|116.428 +638655.450|219542.999|116.053 +638660.352|219538.455|116.038 +638665.323|219533.840|115.809 +638670.215|219529.298|115.431 +638675.162|219524.711|115.504 +638680.078|219520.151|115.437 +638684.940|219515.637|115.416 +638689.862|219511.074|115.358 +638694.785|219506.505|115.291 +638699.671|219501.970|115.145 +638704.612|219497.389|114.992 +638709.507|219492.847|114.834 +638714.411|219488.294|114.599 +638719.269|219483.783|114.383 +638724.180|219479.229|114.191 +638729.060|219474.703|114.248 +638733.927|219470.185|114.050 +638738.804|219465.656|113.782 +638743.654|219461.160|113.782 +638748.524|219456.640|113.630 +638742.946|219458.566|113.791 +638738.140|219463.010|113.806 +638733.339|219467.454|113.837 +638728.502|219471.932|114.163 +638723.646|219476.425|114.279 +638718.843|219480.869|114.376 +638713.984|219485.368|114.587 +638709.126|219489.863|114.785 +638704.279|219494.350|114.940 +638699.436|219498.831|115.090 +638694.593|219503.311|115.242 +638689.713|219507.828|115.340 +638684.839|219512.336|115.385 +638679.965|219516.847|115.458 +638675.049|219521.395|115.516 +638670.181|219525.897|115.580 +638665.256|219530.457|115.775 +638660.333|219535.013|115.986 +638655.435|219539.546|115.967 +638650.516|219544.097|116.178 +638645.560|219548.684|116.309 +638640.649|219553.231|116.513 +638635.660|219557.843|116.519 +638630.740|219562.400|116.867 +638625.760|219567.008|116.879 +638620.819|219571.577|116.973 +638615.878|219576.152|117.135 +638610.888|219580.770|117.296 +638605.902|219585.385|117.470 +638600.922|219589.993|117.632 +638595.956|219594.587|117.613 +638590.970|219599.204|117.879 +638585.956|219603.850|118.519 +638580.939|219608.489|118.634 +638575.971|219613.088|118.802 +638570.981|219617.703|118.638 +638565.976|219622.336|118.711 +638560.968|219626.969|118.820 +638550.943|219636.247|119.284 +638545.899|219640.916|119.384 +638540.848|219645.586|119.537 +638535.853|219650.210|119.656 +638530.814|219654.867|119.704 +638525.776|219659.531|119.826 +638520.744|219664.185|119.854 +638515.708|219668.842|119.963 +638510.627|219673.542|120.064 +638505.610|219678.181|119.933 +638500.520|219682.894|120.271 +638495.445|219687.588|120.366 +638490.367|219692.284|120.549 +638485.292|219696.978|120.695 +638480.224|219701.666|120.792 +638475.152|219706.360|120.975 +638470.034|219711.094|121.161 +638464.965|219715.788|121.417 +638459.899|219720.475|121.600 +638454.773|219725.218|122.070 +638449.704|219729.912|122.432 +638444.589|219734.646|122.783 +638439.508|219739.340|122.353 +638434.452|219744.018|122.579 +638429.349|219748.740|122.743 +638424.253|219753.455|122.810 +638419.190|219758.140|123.267 +638414.097|219762.852|123.322 +638409.001|219767.567|123.527 +638403.953|219772.237|123.706 +638398.857|219776.952|123.941 +638393.767|219781.661|124.087 +638388.680|219786.367|124.218 +638383.590|219791.076|124.371 +638378.502|219795.783|124.578 +638373.421|219800.483|124.569 +638368.334|219805.186|124.727 +638363.253|219809.886|124.767 +638358.172|219814.589|124.935 +638353.094|219819.283|124.862 +638347.967|219824.028|124.990 +638342.890|219828.722|124.953 +638337.812|219833.419|124.990 +638332.737|219838.113|124.965 +638327.659|219842.807|125.020 +638322.584|219847.501|125.026 +638317.460|219852.241|125.078 +638312.385|219856.935|125.136 +638307.313|219861.620|124.801 +638302.238|219866.313|124.935 +638297.118|219871.050|124.904 +638287.023|219880.386|124.795 +638281.902|219885.123|124.892 +638276.876|219889.768|124.691 +638271.801|219894.459|124.383 +638266.726|219899.147|123.969 +638261.697|219903.795|123.755 +638251.583|219913.134|122.713 +638246.551|219917.785|122.399 +638241.473|219922.479|122.188 +638236.392|219927.176|121.920 +638231.400|219931.785|121.213 +638226.309|219936.485|120.579 +638221.265|219941.142|119.960 +638216.224|219945.799|119.464 +638211.170|219950.463|118.528 +638206.113|219955.126|117.540 +638201.063|219959.793|116.955 +638196.015|219964.456|116.641 +638190.968|219969.120|116.355 +638185.972|219973.737|116.275 +638180.934|219978.401|116.373 +638175.941|219983.015|116.480 +638170.903|219987.679|116.562 +638165.870|219992.336|116.903 +638160.942|219996.896|117.476 +638155.961|220001.505|117.866 +638150.932|220006.156|118.275 +638145.997|220010.722|118.580 +638141.008|220015.337|118.787 +638136.021|220019.948|118.967 +638131.071|220024.523|118.961 +638126.073|220029.141|118.955 +638121.110|220033.725|118.726 +638116.161|220038.300|118.769 +638111.204|220042.881|118.683 +638096.318|220056.634|118.299 +638091.365|220061.215|118.382 +638086.467|220065.744|118.586 +638081.514|220070.323|118.744 +638066.740|220083.981|119.028 +638061.821|220088.528|118.991 +638056.892|220093.082|118.799 +638052.058|220097.563|120.174 +638042.262|220106.633|121.539 +638037.391|220111.135|121.597 +638032.481|220115.677|121.719 +638027.579|220120.209|122.036 +638022.675|220124.745|122.316 +638017.820|220129.237|122.621 +638007.993|220138.324|122.978 +638003.177|220142.777|123.213 +637998.264|220147.318|123.459 +637993.393|220151.823|123.618 +637988.519|220156.331|123.746 +637983.645|220160.836|123.914 +637978.763|220165.350|123.984 +637973.931|220169.816|124.139 +637969.030|220174.345|124.017 +637964.141|220178.865|124.060 +637959.286|220183.352|123.978 +637954.424|220187.845|123.840 +637949.560|220192.337|123.706 +637944.710|220196.821|123.758 +637939.839|220201.320|123.612 +637934.963|220205.825|123.417 +637930.144|220210.278|123.335 +637925.264|220214.786|123.173 +637920.442|220219.242|123.121 +637915.580|220223.735|123.182 +637910.679|220228.255|122.393 +637905.775|220232.784|122.082 +637900.962|220237.228|121.765 +637896.070|220241.749|121.606 +637891.248|220246.205|121.725 +637886.377|220250.704|121.378 +637881.528|220255.181|120.811 +637876.663|220259.674|120.600 +637871.878|220264.097|120.689 +637867.038|220268.571|120.728 +637862.182|220273.052|120.232 +637857.330|220277.535|120.229 +637852.593|220281.918|120.384 +637847.732|220286.411|120.329 +637842.953|220290.824|120.192 +637838.195|220295.220|120.238 +637823.860|220308.472|120.402 +637809.568|220321.676|119.915 +637800.058|220330.461|119.628 +637790.505|220339.279|119.092 +637776.204|220352.477|117.988 +637771.382|220356.920|117.156 +637752.253|220374.562|114.953 +637747.495|220378.951|114.386 +637723.480|220401.089|110.167 +637718.731|220405.466|109.536 +637713.964|220409.861|108.789 +637704.469|220418.618|107.686 +637699.809|220422.919|107.403 +637695.197|220427.180|107.445 +637690.546|220431.472|107.278 +637676.638|220444.313|106.854 +637672.063|220448.537|106.613 +637667.393|220452.844|106.135 +637662.785|220457.099|106.061 +637658.188|220461.339|105.766 +637653.540|220465.628|105.184 +637649.044|220469.779|105.242 +637644.463|220474.010|105.101 +637640.035|220478.103|105.583 +637635.493|220482.297|105.421 +637622.103|220494.675|106.378 +637578.498|220534.997|111.371 +637574.124|220539.036|111.520 +637556.803|220555.041|112.380 +637552.441|220559.070|112.401 +637548.070|220563.106|112.401 +637539.335|220571.165|111.716 +637526.228|220583.259|110.957 +637513.228|220595.253|109.893 +637508.854|220599.286|109.311 +637504.529|220603.276|108.966 +637470.288|220634.862|106.031 +637466.100|220638.727|105.790 +637461.970|220642.540|105.833 +637445.889|220657.411|107.613 +637441.887|220661.112|108.061 +637437.748|220664.934|107.902 +637421.276|220680.134|106.702 +637417.173|220683.917|106.348 +637413.117|220687.663|105.967 +637409.054|220691.409|105.598 +637393.134|220706.106|104.976 +637385.313|220713.330|105.223 +637381.524|220716.832|105.437 +637377.662|220720.398|105.580 +637373.727|220724.031|105.434 +637369.896|220727.567|105.290 +637366.110|220731.066|105.562 +637362.267|220734.617|105.607 +637358.441|220738.150|105.525 +637350.831|220745.176|105.357 +637347.176|220748.556|105.784 +637343.351|220752.082|105.555 +637339.654|220755.499|105.839 +637321.277|220772.477|106.372 +637317.531|220775.930|106.122 +637313.913|220779.271|106.165 +637299.655|220792.444|106.653 +637296.229|220795.611|107.070 +637292.705|220798.866|107.128 +637289.203|220802.100|107.281 +637285.817|220805.227|107.476 +637282.336|220808.443|107.723 +637275.627|220814.646|108.381 +637490.018|220613.974|107.208 +637498.634|220606.004|108.332 +637502.981|220601.980|108.744 +637507.294|220597.987|109.024 +637516.005|220589.922|109.798 +637524.853|220581.741|111.066 +637529.136|220577.770|111.051 +637533.485|220573.743|111.377 +637546.711|220561.500|112.343 +637555.471|220553.383|112.462 +637559.845|220549.332|112.514 +637564.130|220545.357|112.130 +637577.157|220533.278|111.414 +637581.452|220529.288|110.594 +637603.087|220509.208|107.509 +637629.690|220484.534|105.513 +637634.188|220480.365|105.406 +637638.794|220476.098|105.351 +637643.208|220472.001|104.790 +637652.541|220463.366|105.793 +637657.113|220459.129|105.623 +637661.678|220454.896|105.751 +637675.663|220441.954|106.732 +637680.320|220437.644|106.875 +637703.698|220416.006|107.918 +637708.435|220411.626|108.378 +637713.184|220407.231|108.658 +637717.999|220402.784|109.710 +637722.831|220398.322|110.563 +637727.613|220393.896|111.152 +637732.450|220389.431|112.115 +637737.287|220384.962|113.118 +637742.054|220380.555|113.694 +637746.910|220376.068|114.562 +637761.162|220362.876|115.166 +637766.009|220358.399|116.105 +637775.805|220349.352|118.125 +637780.581|220344.930|118.311 +637814.271|220313.755|119.942 +637838.377|220291.431|119.988 +637843.245|220286.923|120.058 +637848.067|220282.461|120.171 +637852.932|220277.956|120.241 +637857.775|220273.472|120.158 +637862.652|220268.958|120.396 +637867.532|220264.444|120.674 +637872.363|220259.966|120.564 +637877.264|220255.431|120.637 +637882.141|220250.917|121.000 +637887.115|220246.324|121.807 +637891.974|220241.822|121.594 +637896.917|220237.244|121.743 +637901.755|220232.763|121.838 +637906.717|220228.176|122.210 +637911.655|220223.610|122.862 +637916.598|220219.035|123.139 +637921.515|220214.484|123.142 +637926.437|220209.924|123.258 +637931.354|220205.374|123.325 +637936.325|220200.774|123.469 +637941.248|220196.217|123.658 +637946.158|220191.670|123.743 +637951.157|220187.043|123.749 +637956.067|220182.498|123.871 +637961.017|220177.914|123.920 +637965.961|220173.336|123.941 +637970.957|220168.712|124.008 +637975.900|220164.134|124.072 +637980.823|220159.571|123.917 +637985.791|220154.972|123.725 +637990.759|220150.369|123.539 +637995.682|220145.809|123.426 +638000.647|220141.210|123.234 +638005.606|220136.617|122.984 +638010.575|220132.011|122.911 +638015.528|220127.424|122.609 +638020.478|220122.837|122.280 +638025.482|220118.201|122.042 +638030.429|220113.613|121.731 +638035.394|220109.017|121.670 +638040.405|220104.375|121.600 +638050.299|220095.200|120.229 +638055.185|220090.662|118.927 +638060.251|220085.971|118.991 +638070.227|220076.736|119.015 +638075.281|220072.054|118.930 +638080.276|220067.427|118.726 +638085.272|220062.797|118.494 +638090.316|220058.124|118.336 +638095.315|220053.495|118.208 +638105.371|220044.183|118.193 +638110.385|220039.544|118.418 +638115.432|220034.871|118.412 +638120.489|220030.189|118.589 +638125.539|220025.514|118.720 +638130.590|220020.841|118.793 +638135.637|220016.169|118.860 +638140.670|220011.505|118.638 +638150.783|220002.136|118.052 +638155.812|219997.475|117.677 +638160.835|219992.815|117.159 +638165.864|219988.154|116.760 +638170.900|219983.491|116.486 +638175.984|219978.782|116.355 +638180.976|219974.158|116.272 +638186.064|219969.446|116.309 +638191.099|219964.782|116.111 +638196.149|219960.110|116.562 +638201.200|219955.440|117.071 +638206.299|219950.728|117.714 +638211.353|219946.058|118.619 +638216.449|219941.346|119.415 +638221.494|219936.686|120.018 +638226.535|219932.022|120.570 +638231.573|219927.365|121.155 +638236.660|219922.662|121.841 +638241.693|219918.005|122.088 +638246.774|219913.305|122.618 +638251.852|219908.608|122.822 +638261.962|219899.256|123.783 +638272.014|219889.954|124.407 +638277.089|219885.260|124.715 +638282.161|219880.563|124.852 +638287.187|219875.912|124.913 +638297.282|219866.563|124.773 +638307.380|219857.212|124.721 +638312.406|219852.564|125.078 +638317.433|219847.910|124.999 +638322.459|219843.255|124.987 +638327.534|219838.555|124.947 +638332.514|219833.944|124.956 +638337.589|219829.244|124.959 +638342.618|219824.589|124.944 +638347.602|219819.975|124.901 +638352.631|219815.317|124.865 +638357.663|219810.657|124.862 +638362.695|219805.996|124.755 +638367.728|219801.336|124.718 +638372.717|219796.715|124.584 +638377.753|219792.052|124.487 +638382.742|219787.431|124.426 +638387.738|219782.804|124.228 +638392.776|219778.138|124.097 +638397.769|219773.514|124.029 +638402.771|219768.881|123.731 +638407.818|219764.205|123.530 +638412.771|219759.615|123.328 +638417.813|219754.945|123.307 +638422.820|219750.300|122.999 +638427.776|219745.710|122.853 +638432.787|219741.062|122.499 +638437.780|219736.435|122.658 +638442.785|219731.799|122.585 +638447.787|219727.163|122.554 +638452.779|219722.527|121.750 +638457.735|219717.936|121.789 +638462.713|219713.322|121.463 +638467.684|219708.713|121.244 +638472.701|219704.062|121.103 +638477.624|219699.499|120.957 +638482.601|219694.887|120.792 +638487.575|219690.276|120.622 +638492.504|219685.707|120.521 +638497.490|219681.086|120.256 +638502.416|219676.520|120.216 +638507.351|219671.945|120.082 +638512.285|219667.376|120.018 +638517.217|219662.801|119.951 +638522.155|219658.226|119.872 +638527.090|219653.654|119.845 +638532.037|219649.070|119.710 +638536.926|219644.541|119.692 +638541.869|219639.956|119.613 +638546.822|219635.366|119.461 +638551.736|219630.812|119.211 +638556.649|219626.256|118.988 +638561.550|219621.717|118.976 +638566.510|219617.121|118.854 +638571.374|219612.613|118.738 +638576.333|219608.016|118.653 +638586.117|219598.948|118.479 +638591.070|219594.352|117.982 +638595.993|219589.789|117.888 +638600.885|219585.257|117.629 +638605.768|219580.731|117.491 +638610.703|219576.155|117.345 +638615.595|219571.620|117.162 +638620.484|219567.088|117.050 +638625.388|219562.543|116.821 +638630.277|219558.011|116.733 +638635.145|219553.500|116.437 +638640.040|219548.961|116.361 +638644.898|219544.459|116.214 +638649.793|219539.921|116.181 +638654.664|219535.407|115.964 +638659.519|219530.908|115.916 +638664.390|219526.394|115.754 +638669.249|219521.892|115.727 +638674.071|219517.423|115.617 +638678.941|219512.909|115.516 +638683.818|219508.389|115.401 +638688.646|219503.915|115.306 +638693.486|219499.428|115.145 +638698.369|219494.902|115.041 +638703.216|219490.412|114.864 +638708.050|219485.931|114.824 +638712.908|219481.426|114.590 +638717.761|219476.928|114.437 +638722.570|219472.471|114.273 +638727.450|219467.945|113.947 +638732.297|219463.455|113.947 +638737.103|219459.002|113.870 +638734.903|219457.518|113.788 +638729.992|219462.062|113.898 +638725.137|219466.549|113.956 +638720.227|219471.088|114.096 +638715.301|219475.644|114.395 +638710.400|219480.177|114.520 +638705.541|219484.670|114.718 +638700.604|219489.235|114.809 +638695.705|219493.765|114.983 +638690.822|219498.276|115.041 +638685.927|219502.805|115.251 +638680.996|219507.365|115.379 +638676.125|219511.867|115.416 +638671.157|219516.460|115.477 +638666.286|219520.962|115.568 +638661.318|219525.555|115.684 +638656.444|219530.060|115.864 +638651.485|219534.648|115.967 +638646.572|219539.189|116.099 +638641.612|219543.776|116.251 +638636.711|219548.309|116.342 +638631.764|219552.881|116.416 +638626.790|219557.480|116.790 +638621.861|219562.037|116.729 +638616.899|219566.627|117.080 +638611.964|219571.190|117.120 +638606.972|219575.808|117.339 +638602.034|219580.374|117.482 +638597.038|219584.995|117.787 +638592.113|219589.548|117.857 +638587.123|219594.163|118.144 +638582.128|219598.787|118.564 +638572.200|219607.964|118.683 +638567.229|219612.558|118.851 +638562.224|219617.188|118.924 +638552.248|219626.411|119.259 +638547.289|219630.995|119.427 +638542.342|219635.567|119.439 +638537.297|219640.237|119.549 +638532.351|219644.812|119.643 +638527.309|219649.478|119.759 +638522.323|219654.087|119.747 +638517.333|219658.705|119.875 +638512.346|219663.316|119.976 +638507.311|219667.974|120.079 +638502.328|219672.582|120.174 +638497.301|219677.233|120.229 +638492.315|219681.848|120.457 +638487.243|219686.539|120.546 +638482.263|219691.148|120.713 +638477.233|219695.799|120.927 +638472.158|219700.496|121.158 +638467.141|219705.135|121.247 +638462.121|219709.780|121.442 +638457.050|219714.474|121.731 +638452.036|219719.116|121.887 +638446.979|219723.792|121.929 +638441.950|219728.446|122.441 +638436.890|219733.128|122.646 +638431.849|219737.788|122.417 +638426.835|219742.427|122.752 +638421.781|219747.106|122.975 +638416.724|219751.785|123.222 +638411.677|219756.454|123.359 +638406.629|219761.124|123.459 +638401.579|219765.796|123.734 +638396.531|219770.469|123.950 +638391.441|219775.178|124.060 +638386.400|219779.842|124.197 +638381.358|219784.505|124.313 +638376.317|219789.168|124.493 +638371.233|219793.871|124.599 +638366.198|219798.529|124.651 +638361.114|219803.232|124.731 +638356.078|219807.889|124.877 +638351.049|219812.541|124.804 +638345.968|219817.241|124.855 +638340.890|219821.938|124.874 +638335.858|219826.589|124.910 +638330.783|219831.283|124.862 +638325.705|219835.980|124.919 +638320.679|219840.628|124.837 +638315.601|219845.325|124.959 +638310.526|219850.019|124.968 +638305.454|219854.707|124.685 +638295.304|219864.094|124.825 +638290.281|219868.734|124.456 +638285.206|219873.434|124.880 +638280.134|219878.124|124.755 +638275.105|219882.773|124.584 +638269.984|219887.506|124.392 +638259.877|219896.845|123.712 +638249.721|219906.230|123.054 +638244.689|219910.878|122.792 +638239.602|219915.572|121.844 +638234.524|219920.269|121.829 +638229.482|219924.924|120.933 +638224.441|219929.581|120.454 +638219.354|219934.281|119.970 +638214.303|219938.938|119.162 +638209.207|219943.644|118.324 +638204.153|219948.311|117.552 +638199.100|219952.974|116.943 +638194.001|219957.684|116.406 +638188.953|219962.350|116.068 +638183.963|219966.968|116.202 +638178.876|219971.674|116.303 +638173.835|219976.334|116.333 +638168.793|219980.998|116.412 +638163.758|219985.658|116.675 +638158.726|219990.315|116.976 +638153.749|219994.924|117.498 +638148.722|219999.578|118.016 +638143.687|220004.239|118.199 +638138.701|220008.856|118.433 +638133.665|220013.514|118.665 +638128.618|220018.183|118.604 +638123.616|220022.807|118.543 +638118.562|220027.480|118.409 +638113.603|220032.067|118.253 +638108.601|220036.691|118.278 +638103.591|220041.324|118.089 +638098.592|220045.951|118.193 +638093.575|220050.587|117.964 +638088.588|220055.204|118.314 +638083.632|220059.789|118.394 +638078.682|220064.370|118.601 +638073.732|220068.951|118.775 +638068.737|220073.572|119.049 +638058.855|220082.713|118.985 +638053.844|220087.349|119.028 +638049.001|220091.842|120.244 +638034.285|220105.469|121.661 +638029.320|220110.062|121.722 +638019.511|220119.139|122.274 +638014.647|220123.641|122.472 +638009.736|220128.186|122.694 +638004.826|220132.731|122.935 +637999.919|220137.272|123.200 +637995.051|220141.777|123.426 +637990.125|220146.334|123.502 +637985.258|220150.839|123.716 +637980.378|220155.353|123.831 +637975.495|220159.870|123.892 +637970.609|220164.390|123.950 +637965.720|220168.913|123.981 +637960.874|220173.394|124.011 +637955.963|220177.932|123.844 +637951.062|220182.468|123.810 +637946.198|220186.964|123.685 +637941.342|220191.456|123.655 +637936.474|220195.955|123.539 +637931.595|220200.466|123.313 +637926.776|220204.923|123.261 +637921.908|220209.427|123.200 +637917.074|220213.896|123.030 +637912.218|220218.386|123.167 +637907.339|220222.894|122.600 +637902.413|220227.444|122.064 +637897.600|220231.891|121.734 +637892.714|220236.411|121.664 +637887.920|220240.843|121.582 +637883.095|220245.309|121.661 +637878.230|220249.798|120.972 +637873.408|220254.255|120.713 +637868.608|220258.695|120.646 +637863.767|220263.170|120.710 +637858.973|220267.602|120.317 +637854.145|220272.067|120.085 +637849.301|220276.538|119.781 +637844.495|220280.986|119.777 +637839.767|220285.362|120.067 +637825.353|220298.685|119.144 +637820.617|220303.068|119.445 +637801.539|220320.707|118.991 +637796.806|220325.084|119.034 +637792.039|220329.491|118.833 +637787.256|220333.908|118.555 +637758.465|220360.478|114.614 +637748.958|220369.256|113.834 +637729.969|220386.788|112.112 +637725.199|220391.192|111.594 +637720.404|220395.612|110.624 +637715.625|220400.019|109.780 +637710.904|220404.381|109.344 +637696.663|220417.521|107.421 +637692.116|220421.727|107.881 +637687.428|220426.058|107.473 +637682.780|220430.353|107.351 +637678.141|220434.636|106.985 +637668.860|220443.210|106.641 +637664.236|220447.480|106.436 +637650.370|220460.284|105.421 +637618.705|220489.558|105.949 +637605.516|220501.762|107.336 +637601.084|220505.861|107.634 +637592.248|220514.033|108.140 +637588.026|220517.944|109.073 +637570.790|220533.903|111.517 +637562.085|220541.953|111.825 +637535.939|220566.114|111.725 +637527.182|220574.201|111.021 +637509.717|220590.322|109.378 +637505.435|220594.278|109.244 +637496.714|220602.325|108.030 +637492.471|220606.244|107.890 +637488.064|220610.304|107.003 +637483.730|220614.306|106.464 +637475.183|220622.195|105.571 +637454.633|220641.193|106.394 +637450.631|220644.890|106.811 +637446.639|220648.581|107.268 +637422.123|220671.213|106.479 +637417.945|220675.062|106.010 +637401.848|220689.918|105.135 +637393.963|220697.197|105.037 +637382.265|220708.002|105.312 +637378.382|220711.590|105.348 +637374.559|220715.116|105.443 +637370.624|220718.746|105.074 +637355.375|220732.828|105.339 +637344.128|220743.216|105.674 +637333.021|220753.475|106.037 +637314.736|220770.358|106.378 +637303.931|220780.334|106.525 +637293.540|220789.935|107.738 +637283.037|220799.637|107.988 +637276.289|220805.874|108.686 +637272.860|220809.037|108.744 +637269.549|220812.098|109.250 +637488.920|220606.787|107.183 +637493.282|220602.751|107.893 +637497.674|220598.691|108.506 +637506.264|220590.742|109.131 +637519.385|220578.602|110.505 +637528.154|220570.491|111.207 +637532.483|220566.483|111.447 +637536.808|220562.475|111.426 +637550.067|220550.204|112.139 +637558.799|220542.114|112.173 +637567.504|220534.043|111.606 +637580.428|220522.052|109.606 +637593.385|220510.028|107.610 +637597.856|220505.886|107.518 +637615.544|220489.484|105.924 +637620.018|220485.336|105.659 +637629.004|220477.012|105.342 +637633.539|220472.809|105.178 +637638.056|220468.624|104.915 +637642.519|220464.488|104.644 +637647.228|220460.132|105.260 +637651.803|220455.895|105.397 +637656.427|220451.613|105.546 +637661.157|220447.242|106.363 +637665.839|220442.908|106.616 +637670.384|220438.695|106.348 +637684.432|220425.684|107.329 +637689.211|220421.261|108.009 +637693.875|220416.939|107.970 +637698.468|220412.678|107.826 +637703.220|220408.279|108.402 +637712.809|220399.410|109.871 +637717.612|220394.966|110.542 +637727.223|220386.072|112.042 +637736.809|220377.202|113.142 +637741.600|220372.764|113.569 +637751.046|220364.010|113.538 +637755.868|220359.542|113.919 +637765.515|220350.620|115.462 +637770.511|220346.009|117.178 +637775.311|220341.565|117.531 +637780.142|220337.093|118.125 +637784.912|220332.671|118.321 +637799.326|220319.317|118.647 +637804.136|220314.861|118.851 +637808.891|220310.451|118.653 +637818.495|220301.547|118.683 +637823.326|220297.073|118.750 +637828.100|220292.647|118.778 +637842.721|220279.102|119.494 +637847.561|220274.618|119.774 +637852.447|220270.095|120.046 +637857.348|220265.557|120.506 +637862.216|220261.049|120.671 +637867.062|220256.556|120.710 +637871.957|220252.020|120.732 +637876.840|220247.497|121.137 +637881.787|220242.919|121.716 +637886.600|220238.457|121.536 +637891.498|220233.918|121.689 +637896.387|220229.389|121.804 +637901.340|220224.802|122.100 +637906.275|220220.236|122.722 +637911.182|220215.688|123.133 +637916.096|220211.137|123.097 +637920.969|220206.620|123.197 +637925.880|220202.070|123.222 +637930.805|220197.507|123.399 +637935.725|220192.950|123.545 +637940.589|220188.442|123.652 +637945.545|220183.849|123.740 +637950.440|220179.310|123.712 +637955.403|220174.714|123.883 +637960.301|220170.172|123.947 +637965.239|220165.597|123.914 +637970.167|220161.028|123.783 +637975.099|220156.456|123.722 +637980.024|220151.890|123.581 +637984.950|220147.321|123.514 +637989.924|220142.713|123.408 +637994.844|220138.150|123.283 +638004.768|220128.951|122.905 +638009.672|220124.400|122.643 +638014.680|220119.755|122.463 +638024.577|220110.575|121.841 +638029.539|220105.978|121.716 +638034.517|220101.363|121.878 +638039.461|220096.776|121.567 +638054.283|220083.008|118.912 +638059.251|220078.403|119.012 +638069.270|220069.116|119.012 +638074.208|220064.531|118.644 +638079.243|220059.862|118.290 +638084.254|220055.217|118.366 +638089.250|220050.584|118.211 +638094.233|220045.960|117.833 +638099.250|220041.315|118.077 +638104.243|220036.685|117.897 +638109.296|220032.000|118.031 +638114.298|220027.364|118.089 +638119.352|220022.682|118.281 +638124.357|220018.043|118.446 +638129.404|220013.368|118.537 +638134.442|220008.695|118.476 +638139.475|220004.025|118.205 +638144.507|219999.359|117.961 +638149.536|219994.692|117.644 +638154.556|219990.032|117.050 +638159.592|219985.362|116.848 +638164.621|219980.696|116.519 +638169.659|219976.026|116.483 +638174.743|219971.311|116.364 +638179.779|219966.642|116.196 +638184.817|219961.972|116.202 +638189.901|219957.257|116.108 +638194.948|219952.584|116.592 +638199.999|219947.909|117.187 +638205.095|219943.193|117.796 +638210.188|219938.478|118.540 +638215.236|219933.808|119.293 +638220.280|219929.142|120.098 +638225.364|219924.433|120.524 +638230.403|219919.769|121.241 +638235.484|219915.066|121.487 +638240.565|219910.360|122.112 +638245.597|219905.703|122.810 +638250.675|219901.000|123.082 +638255.750|219896.300|123.374 +638260.776|219891.645|123.749 +638265.851|219886.945|124.194 +638270.923|219882.245|124.438 +638275.946|219877.591|124.657 +638281.018|219872.891|124.788 +638286.090|219868.191|124.746 +638291.162|219863.488|124.666 +638296.231|219858.785|124.188 +638301.299|219854.091|124.615 +638306.323|219849.434|124.636 +638311.394|219844.737|124.956 +638316.512|219839.991|124.898 +638321.538|219835.330|124.834 +638326.613|219830.627|124.901 +638331.685|219825.924|124.843 +638336.711|219821.264|124.859 +638341.786|219816.561|124.859 +638346.864|219811.855|124.840 +638351.893|219807.191|124.782 +638356.968|219802.485|124.782 +638362.049|219797.776|124.657 +638367.078|219793.113|124.682 +638372.163|219788.400|124.560 +638377.198|219783.731|124.435 +638382.236|219779.061|124.282 +638387.320|219774.346|124.182 +638392.359|219769.673|124.100 +638397.400|219764.998|123.938 +638402.448|219760.316|123.658 +638407.492|219755.640|123.496 +638412.536|219750.959|123.325 +638417.590|219746.277|123.051 +638422.644|219741.592|122.841 +638427.697|219736.907|122.624 +638432.739|219732.238|122.704 +638437.789|219727.556|122.643 +638442.821|219722.886|121.945 +638447.875|219718.205|121.905 +638452.883|219713.569|121.875 +638457.946|219708.875|121.664 +638462.969|219704.217|121.384 +638467.986|219699.569|121.241 +638473.006|219694.915|121.061 +638478.029|219690.258|120.869 +638483.009|219685.643|120.634 +638488.033|219680.989|120.539 +638493.059|219676.331|120.408 +638498.042|219671.713|120.238 +638503.071|219667.053|120.119 +638508.003|219662.481|120.027 +638512.993|219657.857|119.842 +638517.976|219653.240|119.774 +638522.963|219648.622|119.720 +638527.946|219644.004|119.710 +638532.844|219639.463|119.561 +638537.840|219634.833|119.439 +638542.735|219630.297|119.406 +638547.731|219625.670|119.366 +638552.644|219621.117|119.147 +638562.550|219611.939|119.009 +638567.467|219607.379|118.817 +638572.380|219602.826|118.717 +638577.296|219598.272|118.619 +638582.210|219593.721|118.595 +638587.151|219589.137|118.226 +638592.098|219584.550|117.830 +638596.971|219580.036|117.784 +638601.921|219575.445|117.446 +638606.801|219570.922|117.345 +638611.708|219566.374|117.031 +638616.591|219561.848|116.973 +638621.480|219557.319|116.885 +638626.382|219552.774|116.687 +638631.225|219548.288|116.620 +638636.129|219543.743|116.470 +638640.978|219539.247|116.391 +638645.895|219534.693|116.172 +638650.711|219530.228|116.007 +638655.557|219525.738|116.022 +638660.376|219521.273|115.900 +638665.256|219516.747|115.650 +638670.090|219512.269|115.434 +638674.961|219507.755|115.346 +638679.783|219503.287|115.276 +638684.614|219498.809|115.145 +638689.381|219494.393|115.199 +638694.224|219489.903|115.004 +638699.019|219485.459|114.858 +638703.813|219481.015|114.733 +638708.659|219476.525|114.602 +638713.430|219472.103|114.322 +638718.288|219467.598|114.142 +638723.049|219463.187|114.008 +638727.847|219458.740|113.971 +638727.024|219456.579|113.864 +638722.019|219461.203|113.947 +638717.099|219465.754|114.169 +638712.168|219470.310|114.099 +638707.181|219474.922|114.523 +638702.225|219479.506|114.730 +638697.281|219484.075|114.840 +638692.298|219488.681|114.901 +638687.314|219493.289|114.998 +638682.379|219497.849|115.102 +638677.408|219502.446|115.145 +638672.425|219507.051|115.309 +638667.484|219511.620|115.565 +638662.516|219516.213|115.660 +638657.496|219520.852|115.809 +638652.576|219525.400|115.940 +638647.565|219530.033|116.074 +638642.640|219534.587|116.321 +638627.683|219548.412|116.665 +638622.687|219553.030|116.775 +638617.771|219557.572|116.580 +638612.739|219562.226|117.129 +638607.746|219566.841|117.278 +638602.759|219571.452|117.418 +638597.770|219576.067|117.626 +638592.780|219580.679|117.827 +638587.745|219585.336|118.061 +638582.737|219589.969|118.574 +638577.775|219594.553|118.552 +638572.752|219599.195|118.726 +638567.747|219603.822|118.729 +638562.779|219608.416|118.872 +638552.763|219617.675|119.073 +638547.795|219622.266|119.290 +638542.796|219626.886|119.345 +638537.800|219631.504|119.378 +638532.802|219636.122|119.473 +638527.800|219640.743|119.649 +638522.856|219645.309|119.671 +638517.821|219649.960|119.710 +638512.831|219654.565|119.756 +638507.835|219659.183|119.951 +638502.852|219663.789|120.027 +638497.859|219668.400|120.235 +638492.873|219673.006|120.378 +638487.892|219677.608|120.488 +638482.912|219682.208|120.582 +638477.877|219686.859|120.829 +638472.899|219691.462|121.003 +638467.919|219696.061|121.216 +638462.896|219700.700|121.350 +638457.918|219705.303|121.628 +638452.849|219709.984|121.820 +638447.884|219714.572|121.884 +638442.864|219719.208|122.091 +638437.859|219723.831|122.045 +638432.876|219728.440|122.658 +638427.822|219733.109|122.719 +638422.820|219737.724|122.643 +638417.809|219742.357|122.914 +638412.799|219746.987|123.191 +638407.797|219751.608|123.271 +638402.789|219756.235|123.563 +638397.735|219760.907|123.874 +638392.737|219765.528|124.042 +638387.738|219770.143|124.127 +638382.696|219774.800|124.179 +638377.698|219779.421|124.493 +638372.659|219784.072|124.447 +638367.664|219788.687|124.636 +638362.628|219793.338|124.645 +638357.590|219797.992|124.734 +638352.604|219802.595|124.670 +638347.568|219807.249|124.810 +638342.533|219811.897|124.807 +638337.549|219816.503|124.837 +638332.517|219821.151|124.834 +638327.485|219825.796|124.761 +638322.501|219830.399|124.822 +638317.469|219835.044|124.770 +638312.391|219839.735|124.798 +638307.411|219844.334|124.694 +638302.382|219848.976|124.548 +638297.304|219853.667|124.575 +638287.248|219862.951|124.612 +638282.173|219867.642|124.688 +638277.144|219872.284|124.593 +638272.115|219876.930|124.429 +638267.037|219881.617|124.322 +638262.008|219886.260|124.127 +638246.859|219900.235|122.908 +638241.778|219904.923|122.646 +638236.743|219909.571|122.170 +638231.649|219914.262|121.116 +638226.608|219918.910|120.686 +638221.567|219923.561|120.299 +638216.470|219928.258|119.470 +638211.423|219932.915|118.735 +638206.372|219937.570|118.132 +638201.270|219942.273|117.421 +638196.213|219946.936|116.623 +638191.163|219951.597|116.245 +638186.106|219956.260|115.754 +638181.025|219960.957|116.129 +638176.033|219965.569|116.254 +638170.942|219970.272|116.327 +638165.904|219974.926|116.525 +638160.863|219979.583|116.635 +638155.821|219984.241|116.821 +638150.786|219988.895|117.138 +638145.805|219993.501|117.690 +638140.721|219998.204|117.903 +638135.680|220002.858|118.113 +638130.687|220007.473|118.284 +638125.594|220012.179|118.311 +638120.586|220016.803|118.171 +638115.530|220021.472|118.025 +638110.470|220026.145|117.839 +638105.462|220030.769|117.805 +638100.408|220035.435|117.793 +638095.352|220040.105|117.769 +638090.393|220044.686|117.824 +638085.354|220049.343|118.144 +638080.350|220053.967|118.284 +638075.390|220058.548|118.363 +638070.355|220063.205|118.766 +638055.347|220077.065|118.534 +638050.442|220081.606|119.610 +638030.710|220099.858|121.914 +638025.781|220104.408|121.850 +638020.810|220109.002|121.868 +638010.946|220118.118|122.429 +638006.033|220122.657|122.682 +637991.320|220136.254|123.146 +637986.386|220140.811|123.167 +637981.457|220145.364|123.277 +637976.571|220149.879|123.325 +637971.642|220154.432|123.472 +637966.759|220158.943|123.603 +637961.867|220163.464|123.639 +637957.033|220167.929|123.819 +637952.092|220172.495|123.895 +637947.216|220176.994|123.655 +637942.314|220181.523|123.661 +637937.447|220186.016|123.569 +637932.579|220190.509|123.487 +637927.699|220195.013|123.289 +637922.829|220199.512|123.222 +637917.952|220204.014|123.118 +637913.130|220208.470|123.091 +637908.259|220212.969|123.078 +637903.401|220217.450|122.765 +637898.509|220221.961|122.137 +637893.647|220226.448|121.829 +637888.843|220230.882|121.640 +637883.991|220235.363|121.475 +637879.212|220239.776|121.594 +637874.405|220244.217|121.442 +637869.543|220248.698|120.838 +637864.737|220253.139|120.741 +637859.933|220257.574|120.707 +637855.126|220262.012|120.689 +637850.298|220266.465|120.058 +637845.476|220270.918|119.933 +637840.727|220275.301|119.637 +637826.240|220288.663|118.122 +637821.467|220293.071|118.144 +637816.694|220297.478|118.180 +637807.175|220306.269|117.732 +637797.729|220314.995|117.970 +637793.014|220319.351|118.189 +637774.074|220336.846|117.470 +637759.544|220350.236|114.245 +637754.768|220354.644|113.480 +637750.071|220358.981|113.322 +637745.352|220363.337|113.038 +637736.050|220371.938|113.108 +637731.365|220376.263|112.779 +637712.495|220393.673|110.539 +637703.025|220402.412|109.186 +637698.261|220406.804|108.216 +637693.682|220411.035|108.475 +637689.031|220415.332|108.274 +637675.108|220428.189|107.396 +637670.374|220432.557|106.781 +637665.802|220436.781|106.567 +637661.160|220441.067|106.263 +637656.527|220445.343|106.037 +637651.940|220449.583|105.802 +637647.289|220453.871|105.223 +637638.111|220462.351|104.854 +637633.673|220466.457|105.287 +637629.156|220470.629|105.281 +637620.094|220479.005|105.443 +637611.200|220487.229|105.763 +637606.732|220491.362|106.113 +637593.562|220503.545|107.144 +637589.179|220507.599|107.747 +637584.838|220511.619|108.299 +637571.994|220523.509|110.445 +637567.684|220527.499|110.938 +637550.338|220543.541|111.962 +637541.630|220551.584|111.880 +637537.177|220555.696|111.484 +637524.073|220567.797|110.963 +637511.052|220579.821|110.003 +637506.626|220583.902|109.402 +637489.259|220599.929|107.570 +637472.010|220615.846|105.677 +637455.389|220631.204|105.537 +637447.364|220638.632|106.488 +637443.335|220642.366|106.775 +637426.994|220657.469|106.439 +637422.864|220661.282|106.147 +637418.789|220665.050|105.863 +637410.587|220672.627|105.153 +637406.579|220676.327|105.007 +637394.579|220687.419|104.733 +637390.695|220691.012|104.943 +637386.745|220694.664|104.876 +637371.316|220708.938|105.437 +637356.021|220723.081|105.449 +637352.245|220726.574|105.568 +637337.246|220740.439|105.534 +637329.860|220747.269|105.729 +637326.166|220750.683|105.629 +637322.448|220754.121|105.653 +637315.376|220760.669|106.327 +637307.939|220767.539|105.836 +637301.014|220773.952|106.738 +637294.253|220780.215|108.094 +637290.733|220783.471|108.149 +637287.252|220786.692|108.570 +637283.750|220789.929|108.512 +637276.898|220796.269|109.003 +637273.567|220799.354|109.408 +637270.171|220802.496|109.582 +637266.800|220805.614|109.862 +637488.661|220598.274|107.238 +637492.999|220594.263|107.829 +637506.008|220582.220|109.262 +637514.844|220574.048|110.704 +637519.123|220570.083|110.652 +637527.813|220562.033|111.258 +637532.181|220557.985|111.459 +637536.521|220553.968|111.783 +637540.828|220549.975|111.706 +637549.609|220541.840|111.938 +637588.371|220505.861|107.442 +637592.821|220501.734|107.232 +637597.109|220497.751|106.433 +637605.958|220489.542|105.787 +637614.867|220481.279|105.269 +637619.406|220477.073|105.370 +637623.871|220472.931|105.074 +637628.348|220468.782|105.141 +637642.077|220456.063|105.437 +637651.245|220447.568|105.534 +637655.887|220443.274|106.110 +637660.471|220439.028|106.382 +637669.747|220430.435|106.705 +637679.122|220421.767|107.729 +637683.840|220417.399|108.009 +637697.770|220404.503|108.195 +637702.595|220400.047|109.268 +637735.928|220369.219|112.773 +637740.604|220364.888|112.752 +637745.340|220360.505|112.813 +637750.104|220356.094|113.108 +637754.868|220351.687|113.432 +637759.718|220347.203|114.023 +637793.462|220315.995|117.671 +637798.156|220311.645|117.327 +637802.981|220307.177|117.266 +637807.748|220302.760|117.162 +637812.558|220298.310|117.403 +637822.223|220289.364|117.967 +637827.100|220284.856|118.436 +637836.899|220275.792|119.491 +637841.736|220271.317|119.735 +637846.610|220266.806|119.893 +637851.481|220262.301|120.497 +637856.342|220257.799|120.613 +637861.195|220253.307|120.677 +637866.099|220248.768|120.796 +637870.997|220244.239|121.305 +637875.911|220239.691|121.564 +637880.733|220235.226|121.436 +637885.625|220230.696|121.545 +637890.517|220226.167|121.692 +637895.470|220221.583|121.972 +637900.398|220217.029|122.502 +637905.321|220212.472|123.045 +637910.234|220207.925|123.008 +637915.108|220203.411|123.109 +637920.021|220198.863|123.127 +637924.892|220194.352|123.246 +637929.863|220189.753|123.423 +637934.725|220185.251|123.481 +637939.687|220180.657|123.588 +637944.597|220176.113|123.719 +637949.553|220171.526|123.819 +637954.436|220166.999|123.700 +637959.356|220162.442|123.417 +637964.288|220157.877|123.319 +637969.164|220153.356|123.173 +637974.096|220148.790|123.100 +637979.025|220144.225|123.033 +637984.005|220139.613|122.996 +637988.934|220135.050|122.947 +637993.856|220130.487|122.886 +637998.840|220125.876|122.957 +638003.750|220121.325|122.758 +638008.700|220116.741|122.423 +638013.656|220112.147|122.185 +638018.606|220107.560|121.899 +638023.571|220102.961|121.856 +638028.543|220098.358|121.896 +638048.345|220080.003|120.195 +638053.234|220075.462|118.979 +638058.242|220070.822|118.906 +638068.218|220061.587|118.997 +638073.202|220056.966|118.531 +638078.143|220052.385|118.226 +638083.145|220047.752|118.150 +638088.140|220043.125|117.946 +638098.138|220033.865|117.748 +638103.130|220029.239|117.531 +638108.138|220024.606|117.665 +638113.143|220019.970|117.760 +638118.154|220015.334|117.991 +638123.204|220010.658|118.165 +638128.203|220006.031|118.177 +638133.245|220001.361|118.095 +638138.228|219996.744|117.805 +638143.263|219992.077|117.592 +638148.241|219987.463|117.120 +638153.273|219982.799|116.818 +638158.311|219978.133|116.635 +638163.301|219973.512|116.562 +638168.336|219968.845|116.382 +638173.375|219964.179|116.251 +638178.413|219959.512|116.196 +638183.439|219954.852|115.702 +638188.490|219950.182|116.147 +638193.537|219945.513|116.416 +638198.585|219940.843|116.955 +638203.590|219936.219|117.744 +638208.689|219931.507|118.546 +638213.730|219926.844|119.022 +638218.778|219922.180|120.061 +638223.816|219917.520|120.527 +638228.900|219912.817|120.960 +638238.977|219903.505|122.527 +638244.006|219898.851|122.856 +638249.041|219894.200|123.734 +638254.119|219889.506|124.395 +638259.142|219884.848|124.130 +638264.169|219880.197|124.203 +638269.195|219875.543|124.325 +638274.267|219870.849|124.481 +638279.293|219866.195|124.542 +638294.411|219852.195|124.514 +638299.486|219847.498|124.432 +638304.512|219842.844|124.490 +638309.535|219838.196|124.807 +638314.610|219833.496|124.758 +638319.685|219828.796|124.691 +638324.662|219824.187|124.752 +638329.737|219819.484|124.712 +638334.812|219814.790|124.913 +638339.842|219810.133|124.822 +638344.871|219805.475|124.834 +638349.949|219800.772|124.782 +638354.978|219796.115|124.804 +638360.013|219791.451|124.694 +638365.045|219786.791|124.651 +638370.081|219782.128|124.554 +638375.168|219777.415|124.392 +638380.206|219772.749|124.301 +638385.245|219768.082|124.161 +638390.286|219763.413|124.078 +638395.327|219758.743|123.956 +638400.378|219754.065|123.606 +638405.419|219749.392|123.530 +638410.424|219744.753|123.243 +638415.530|219740.022|122.896 +638420.571|219735.350|122.978 +638425.573|219730.714|122.853 +638430.632|219726.026|122.615 +638435.698|219721.326|122.192 +638440.752|219716.644|122.149 +638445.808|219711.959|122.045 +638450.819|219707.314|121.911 +638455.879|219702.623|121.780 +638460.902|219697.966|121.497 +638465.925|219693.312|121.289 +638470.997|219688.609|121.061 +638476.020|219683.951|120.860 +638481.046|219679.294|120.689 +638486.070|219674.637|120.579 +638491.096|219669.979|120.460 +638496.128|219665.316|120.283 +638501.157|219660.655|120.158 +638506.153|219656.022|119.860 +638511.179|219651.365|119.869 +638516.214|219646.702|119.781 +638521.198|219642.081|119.738 +638526.194|219637.454|119.595 +638531.183|219632.827|119.525 +638536.176|219628.200|119.442 +638546.164|219618.946|119.393 +638551.175|219614.301|119.144 +638556.131|219609.708|119.037 +638561.136|219605.069|118.958 +638566.104|219600.463|118.769 +638571.057|219595.876|118.787 +638576.071|219591.228|118.680 +638585.962|219582.062|118.446 +638590.982|219577.402|117.775 +638595.871|219572.879|118.144 +638600.888|219568.225|117.589 +638605.823|219563.646|117.431 +638610.815|219559.023|117.254 +638620.660|219549.894|116.879 +638625.559|219545.352|116.723 +638640.296|219531.697|116.528 +638645.203|219527.150|116.428 +638650.125|219522.587|116.172 +638655.054|219518.018|115.900 +638659.928|219513.498|115.715 +638664.841|219508.944|115.632 +638669.712|219504.433|115.556 +638674.580|219499.922|115.510 +638679.475|219495.380|115.230 +638684.324|219490.884|114.965 +638689.213|219486.352|114.794 +638694.044|219481.878|114.767 +638698.927|219477.354|114.721 +638703.795|219472.840|114.401 +638708.598|219468.387|114.251 +638713.442|219463.894|114.181 +638718.306|219459.386|113.983 +638714.984|219459.075|114.072 +638710.013|219463.669|114.306 +638705.072|219468.235|114.331 +638700.061|219472.868|114.556 +638695.111|219477.446|114.730 +638690.115|219482.060|114.861 +638685.162|219486.642|115.114 +638680.112|219491.311|115.388 +638675.137|219495.908|115.440 +638670.157|219500.510|115.559 +638665.140|219505.146|115.608 +638660.108|219509.797|115.843 +638655.082|219514.442|116.019 +638650.101|219519.048|116.275 +638645.035|219523.730|116.440 +638640.027|219528.360|116.562 +638634.968|219533.035|116.726 +638624.995|219542.249|116.644 +638619.901|219546.956|116.745 +638614.866|219551.613|117.290 +638609.822|219556.276|117.431 +638604.789|219560.925|117.498 +638599.748|219565.585|117.684 +638594.637|219570.312|118.150 +638589.638|219574.930|117.915 +638579.512|219584.294|118.482 +638569.414|219593.627|118.811 +638564.406|219598.253|118.836 +638559.341|219602.935|118.979 +638549.276|219612.235|119.153 +638544.219|219616.910|119.278 +638539.175|219621.571|119.302 +638534.124|219626.240|119.415 +638529.022|219630.956|119.585 +638523.981|219635.619|119.662 +638518.939|219640.279|119.707 +638513.898|219644.940|119.838 +638508.856|219649.600|119.954 +638503.772|219654.303|120.052 +638498.734|219658.961|120.210 +638493.696|219663.621|120.399 +638488.618|219668.315|120.479 +638483.540|219673.009|120.600 +638478.507|219677.666|120.817 +638473.433|219682.354|120.908 +638468.403|219687.005|121.140 +638463.328|219691.702|121.362 +638458.257|219696.390|121.551 +638453.233|219701.038|121.774 +638448.165|219705.723|121.963 +638443.102|219710.405|122.082 +638438.091|219715.038|122.124 +638432.979|219719.762|122.316 +638427.969|219724.395|122.448 +638422.906|219729.077|122.707 +638417.843|219733.765|123.088 +638412.802|219738.422|122.880 +638407.788|219743.058|123.243 +638402.685|219747.780|123.517 +638397.680|219752.406|123.694 +638392.630|219757.079|123.972 +638387.582|219761.742|124.063 +638382.587|219766.363|124.154 +638377.497|219771.066|124.200 +638372.452|219775.733|124.398 +638367.459|219780.347|124.505 +638362.421|219785.008|124.630 +638357.383|219789.665|124.648 +638352.396|219794.274|124.615 +638347.358|219798.931|124.731 +638342.323|219803.585|124.770 +638337.290|219808.240|124.807 +638332.255|219812.891|124.840 +638327.226|219817.542|124.715 +638322.239|219822.148|124.731 +638317.210|219826.796|124.624 +638312.178|219831.450|124.727 +638307.149|219836.099|124.673 +638302.119|219840.744|124.392 +638297.136|219845.349|124.414 +638292.107|219849.997|124.429 +638277.022|219863.939|124.404 +638267.009|219873.193|124.221 +638261.980|219877.841|124.151 +638246.929|219891.740|123.060 +638241.946|219896.345|122.899 +638236.910|219900.994|122.509 +638221.881|219914.865|120.521 +638216.833|219919.519|119.750 +638211.877|219924.091|118.869 +638206.830|219928.749|118.369 +638201.779|219933.412|117.705 +638196.768|219938.033|116.922 +638191.715|219942.696|116.345 +638186.713|219947.317|116.047 +638181.702|219951.941|115.440 +638176.673|219956.598|116.019 +638171.683|219961.213|116.224 +638166.687|219965.831|116.321 +638161.695|219970.449|116.492 +638156.702|219975.063|116.662 +638151.661|219979.724|116.800 +638146.665|219984.338|116.967 +638141.678|219988.950|117.303 +638136.692|219993.562|117.693 +638131.699|219998.176|117.933 +638126.704|220002.794|118.043 +638121.702|220007.415|118.034 +638116.688|220012.042|117.799 +638111.677|220016.672|117.586 +638106.712|220021.256|117.473 +638101.704|220025.883|117.427 +638096.693|220030.510|117.363 +638091.731|220035.094|117.318 +638086.747|220039.702|117.863 +638081.794|220044.283|118.013 +638076.844|220048.859|118.250 +638071.852|220053.476|118.616 +638066.905|220058.048|118.921 +638056.956|220067.235|118.689 +638052.018|220071.804|119.174 +638022.416|220099.184|121.911 +638017.484|220103.738|121.847 +638012.522|220108.325|122.048 +638007.612|220112.867|122.283 +637987.907|220131.072|122.658 +637982.972|220135.632|122.658 +637978.034|220140.192|122.691 +637973.148|220144.709|122.768 +637968.210|220149.269|122.832 +637963.321|220153.789|122.902 +637958.448|220158.294|123.170 +637953.516|220162.854|123.344 +637948.691|220167.313|123.673 +637943.793|220171.839|123.728 +637938.934|220176.326|123.694 +637934.015|220180.871|123.554 +637929.144|220185.367|123.444 +637924.228|220189.911|123.368 +637919.354|220194.410|123.295 +637914.477|220198.915|123.197 +637909.597|220203.423|123.060 +637904.769|220207.882|123.014 +637899.886|220212.390|122.947 +637894.979|220216.916|122.176 +637890.066|220221.452|121.832 +637885.207|220225.939|121.600 +637880.367|220230.407|121.576 +637875.505|220234.897|121.366 +637870.735|220239.304|121.567 +637865.880|220243.791|121.442 +637861.027|220248.265|120.972 +637856.150|220252.770|120.710 +637851.335|220257.217|120.613 +637846.519|220261.664|120.518 +637841.645|220266.163|119.948 +637836.853|220270.586|119.726 +637832.028|220275.042|119.631 +637822.330|220283.985|118.330 +637807.803|220297.390|116.790 +637803.024|220301.797|116.470 +637798.308|220306.156|116.656 +637793.575|220310.533|116.705 +637784.047|220319.326|116.830 +637779.417|220323.603|117.004 +637774.705|220327.955|117.299 +637769.928|220332.357|116.797 +637760.199|220341.315|114.581 +637755.319|220345.804|113.432 +637741.143|220358.877|112.420 +637731.740|220367.552|112.197 +637727.080|220371.853|112.054 +637708.173|220389.284|110.332 +637703.518|220393.576|110.027 +637698.760|220397.959|109.405 +637684.822|220410.815|108.570 +637680.119|220415.150|108.088 +637675.483|220419.429|108.052 +637670.859|220423.690|107.494 +637661.587|220432.240|106.915 +637656.917|220436.541|106.165 +637652.269|220440.826|105.866 +637647.691|220445.051|105.714 +637638.550|220453.481|105.257 +637615.922|220474.363|105.040 +637602.614|220486.653|105.808 +637598.158|220490.765|105.979 +637593.830|220494.767|106.592 +637580.675|220506.919|107.564 +637576.386|220510.881|108.162 +637563.545|220522.756|110.408 +637550.621|220534.695|111.511 +637546.330|220538.661|111.917 +637524.576|220558.726|111.085 +637515.871|220566.751|110.725 +637511.512|220570.772|110.408 +637498.516|220582.753|109.234 +637481.179|220598.728|107.195 +637476.762|220602.791|106.302 +637472.467|220606.747|105.751 +637468.252|220610.637|105.589 +637455.706|220622.207|105.202 +637451.589|220626.011|105.306 +637443.496|220633.484|105.985 +637439.421|220637.246|106.101 +637435.382|220640.976|106.150 +637427.113|220648.602|105.693 +637423.041|220652.358|105.418 +637410.797|220663.650|104.809 +637406.740|220667.387|104.452 +637402.750|220671.072|104.608 +637394.847|220678.366|104.629 +637390.912|220681.996|104.626 +637387.041|220685.572|104.894 +637383.130|220689.184|105.007 +637379.186|220692.820|104.787 +637375.285|220696.420|104.751 +637371.456|220699.952|104.812 +637367.601|220703.512|104.775 +637360.066|220710.474|105.452 +637356.174|220714.061|105.306 +637326.273|220741.655|105.723 +637311.691|220755.112|105.988 +637304.592|220761.668|106.406 +637287.557|220777.417|109.405 +637277.328|220786.866|110.286 +637270.470|220793.194|110.588 +637267.163|220796.248|110.890 +637263.703|220799.436|110.859 +637490.521|220588.188|107.966 +637494.922|220584.119|108.893 +637503.542|220576.133|109.451 +637520.955|220560.006|110.902 +637525.271|220556.004|111.069 +637534.010|220547.909|111.484 +637538.368|220543.870|111.661 +637572.802|220511.906|108.305 +637585.923|220499.729|107.153 +637590.319|220495.647|106.647 +637594.705|220491.578|106.366 +637603.529|220483.388|105.583 +637612.502|220475.067|105.126 +637617.013|220470.882|105.071 +637621.548|220466.679|105.165 +637630.668|220458.227|105.394 +637635.243|220453.987|105.488 +637639.846|220449.720|105.473 +637644.399|220445.502|105.470 +637649.078|220441.167|105.952 +637653.702|220436.885|106.119 +637667.732|220423.894|107.430 +637672.481|220419.499|107.854 +637681.811|220410.855|108.369 +637686.532|220406.484|108.695 +637691.229|220402.132|108.887 +637700.653|220393.402|109.564 +637705.472|220388.946|110.301 +637719.697|220375.775|111.527 +637729.180|220366.988|111.911 +637738.720|220358.152|112.450 +637753.012|220344.911|112.980 +637757.901|220340.394|114.212 +637782.062|220318.025|116.370 +637796.400|220304.733|116.111 +637801.219|220300.264|116.004 +637806.206|220295.659|117.232 +637811.012|220291.202|117.470 +637815.950|220286.633|117.994 +637820.833|220282.113|118.513 +637830.651|220273.030|119.637 +637835.512|220268.522|119.674 +637840.368|220264.026|120.064 +637845.315|220259.445|120.472 +637850.137|220254.980|120.634 +637855.056|220250.423|120.844 +637859.945|220245.894|121.250 +637864.862|220241.340|121.484 +637869.732|220236.826|121.314 +637874.630|220232.288|121.423 +637879.477|220227.798|121.536 +637884.415|220223.220|121.649 +637889.319|220218.678|121.887 +637894.293|220214.073|122.390 +637899.228|220209.507|123.005 +637904.147|220204.947|123.024 +637909.073|220200.384|123.136 +637913.995|220195.824|123.216 +637918.958|220191.225|123.264 +637923.834|220186.708|123.426 +637928.800|220182.105|123.548 +637933.707|220177.558|123.597 +637938.709|220172.925|123.624 +637943.616|220168.377|123.719 +637948.523|220163.823|123.283 +637953.501|220159.209|123.109 +637958.365|220154.694|122.777 +637963.343|220150.080|122.618 +637968.277|220145.505|122.563 +637973.249|220140.896|122.411 +637978.229|220136.278|122.362 +637983.173|220131.700|122.481 +637988.160|220127.080|122.557 +637993.137|220122.465|122.566 +638008.036|220108.651|122.204 +638013.040|220104.012|121.969 +638017.999|220099.413|121.817 +638032.950|220085.560|121.795 +638047.891|220071.703|120.213 +638052.847|220067.104|119.268 +638057.800|220062.517|119.052 +638067.816|220053.239|119.000 +638072.800|220048.618|118.500 +638077.835|220043.951|118.162 +638082.834|220039.318|117.994 +638087.826|220034.691|117.699 +638092.855|220030.031|117.205 +638097.863|220025.392|117.254 +638102.871|220020.756|117.354 +638107.928|220016.074|117.455 +638112.933|220011.438|117.595 +638117.992|220006.759|117.821 +638123.043|220002.081|117.915 +638128.039|219997.454|117.845 +638133.077|219992.787|117.684 +638138.064|219988.167|117.370 +638143.096|219983.500|117.016 +638148.134|219978.834|116.885 +638153.172|219974.164|116.714 +638158.211|219969.498|116.571 +638163.249|219964.831|116.382 +638168.239|219960.207|116.199 +638173.271|219955.544|115.894 +638178.303|219950.877|115.474 +638183.357|219946.205|116.007 +638188.404|219941.532|116.236 +638193.452|219936.863|116.620 +638198.505|219932.190|117.406 +638203.559|219927.520|118.199 +638208.600|219922.854|118.595 +638213.648|219918.191|119.232 +638218.699|219913.527|120.387 +638223.734|219908.864|120.735 +638228.772|219904.206|121.192 +638233.817|219899.549|122.365 +638238.849|219894.892|122.758 +638243.881|219890.234|123.014 +638258.972|219876.274|124.182 +638268.978|219867.008|124.270 +638274.053|219862.308|124.340 +638279.080|219857.651|124.167 +638284.060|219853.039|124.255 +638289.083|219848.388|124.225 +638294.109|219843.737|124.444 +638299.135|219839.076|124.328 +638304.165|219834.422|124.429 +638309.188|219829.774|124.706 +638314.217|219825.117|124.764 +638319.246|219820.459|124.703 +638324.230|219815.845|124.679 +638329.256|219811.187|124.752 +638334.285|219806.533|124.855 +638339.268|219801.918|124.825 +638344.301|219797.255|124.758 +638349.333|219792.594|124.743 +638354.320|219787.977|124.676 +638359.306|219783.359|124.633 +638364.341|219778.692|124.575 +638369.334|219774.072|124.462 +638374.372|219769.402|124.322 +638379.365|219764.778|124.273 +638384.406|219760.106|124.084 +638389.402|219755.479|123.999 +638394.401|219750.849|123.819 +638399.400|219746.216|123.648 +638404.407|219741.577|123.331 +638409.421|219736.926|122.795 +638414.414|219732.308|122.941 +638419.419|219727.675|122.829 +638424.439|219723.024|122.359 +638429.438|219718.400|122.441 +638434.400|219713.803|122.252 +638439.417|219709.155|121.990 +638444.419|219704.528|122.070 +638449.390|219699.926|121.865 +638454.407|219695.278|121.682 +638459.381|219690.672|121.454 +638464.404|219686.021|121.244 +638469.379|219681.415|121.079 +638474.359|219676.804|120.866 +638479.379|219672.155|120.799 +638484.360|219667.544|120.634 +638489.340|219662.935|120.546 +638494.321|219658.321|120.418 +638499.261|219653.749|120.247 +638504.294|219649.088|120.125 +638509.234|219644.513|120.006 +638514.233|219639.883|119.759 +638519.223|219635.265|119.680 +638524.161|219630.693|119.665 +638529.165|219626.060|119.427 +638534.115|219621.476|119.311 +638539.071|219616.889|119.159 +638544.058|219612.274|119.253 +638549.014|219607.687|119.177 +638558.935|219598.500|118.900 +638563.894|219593.910|118.866 +638568.853|219589.320|118.805 +638573.785|219584.754|118.570 +638578.738|219580.170|118.653 +638588.669|219570.971|118.052 +638593.591|219566.414|118.040 +638598.587|219561.787|117.748 +638603.515|219557.224|117.705 +638608.450|219552.658|117.635 +638613.391|219548.083|117.491 +638618.338|219543.496|116.830 +638623.279|219538.921|116.754 +638633.163|219529.774|116.708 +638638.068|219525.232|116.577 +638642.969|219520.697|116.559 +638647.879|219516.149|116.437 +638652.844|219511.550|116.284 +638657.724|219507.033|116.071 +638662.647|219502.476|115.934 +638667.533|219497.950|115.696 +638672.522|219493.329|115.446 +638677.399|219488.818|115.379 +638682.279|219484.298|115.279 +638687.174|219479.765|115.081 +638692.130|219475.175|114.821 +638696.986|219470.679|114.599 +638701.896|219466.132|114.352 +638706.736|219461.651|114.328 +638711.646|219457.103|114.145 +638705.645|219459.694|114.191 +638700.738|219464.227|114.334 +638695.885|219468.710|114.474 +638690.920|219473.297|114.760 +638686.031|219477.812|114.840 +638681.057|219482.408|115.282 +638676.168|219486.925|115.416 +638671.184|219491.528|115.562 +638666.304|219496.033|115.654 +638661.318|219500.641|115.900 +638656.334|219505.247|116.120 +638651.409|219509.794|116.281 +638646.440|219514.382|116.416 +638641.472|219518.972|116.586 +638636.516|219523.550|116.662 +638631.572|219528.116|116.647 +638626.577|219532.727|116.672 +638621.569|219537.351|116.864 +638616.552|219541.990|117.199 +638611.529|219546.629|117.616 +638606.585|219551.198|117.748 +638601.562|219555.837|117.717 +638591.552|219565.079|117.839 +638581.460|219574.403|118.482 +638576.437|219579.042|118.580 +638571.417|219583.681|118.699 +638566.415|219588.296|118.592 +638561.340|219592.983|118.820 +638556.332|219597.610|118.891 +638551.266|219602.292|119.073 +638546.216|219606.953|119.080 +638541.159|219611.622|119.192 +638536.109|219616.289|119.299 +638531.058|219620.952|119.418 +638526.008|219625.612|119.531 +638520.902|219630.328|119.805 +638515.876|219634.967|119.637 +638510.822|219639.633|119.909 +638505.744|219644.321|119.878 +638500.645|219649.030|120.216 +638495.558|219653.727|120.344 +638490.520|219658.378|120.530 +638485.445|219663.063|120.558 +638480.318|219667.797|120.701 +638475.286|219672.445|120.896 +638470.214|219677.127|120.966 +638465.090|219681.857|121.134 +638460.064|219686.496|121.301 +638454.940|219691.230|121.594 +638449.823|219695.957|121.783 +638444.800|219700.593|122.003 +638439.691|219705.312|122.067 +638434.589|219710.018|122.003 +638429.520|219714.703|122.359 +638424.463|219719.369|122.432 +638419.364|219724.072|122.356 +638414.298|219728.754|122.777 +638409.193|219733.469|122.990 +638404.100|219738.169|122.877 +638399.080|219742.811|123.514 +638393.977|219747.523|123.822 +638388.881|219752.227|123.950 +638383.833|219756.887|124.081 +638378.740|219761.590|124.240 +638373.650|219766.290|124.292 +638368.606|219770.947|124.459 +638363.518|219775.644|124.545 +638358.431|219780.338|124.624 +638353.442|219784.947|124.685 +638348.309|219789.680|124.682 +638343.274|219794.329|124.715 +638338.238|219798.977|124.740 +638333.154|219803.671|124.810 +638328.076|219808.356|124.660 +638323.044|219813.001|124.645 +638317.966|219817.686|124.578 +638312.931|219822.334|124.673 +638307.901|219826.976|124.532 +638302.823|219831.658|124.328 +638297.794|219836.300|124.258 +638292.762|219840.942|124.225 +638282.661|219850.266|124.057 +638277.629|219854.911|124.206 +638272.551|219859.599|124.234 +638267.521|219864.241|124.170 +638262.489|219868.883|124.115 +638257.460|219873.525|124.145 +638237.374|219892.048|122.816 +638232.338|219896.690|122.411 +638222.344|219905.895|120.710 +638217.306|219910.543|120.384 +638212.301|219915.149|119.265 +638207.299|219919.757|118.583 +638202.251|219924.408|118.247 +638197.250|219929.020|117.684 +638192.236|219933.638|116.714 +638187.228|219938.252|116.156 +638182.275|219942.821|115.974 +638177.215|219947.485|115.282 +638172.274|219952.048|115.672 +638167.282|219956.659|115.827 +638162.298|219961.265|116.315 +638157.354|219965.828|116.528 +638152.359|219970.442|116.659 +638147.366|219975.054|116.797 +638142.419|219979.623|116.937 +638137.472|219984.192|117.089 +638132.483|219988.804|117.360 +638127.536|219993.373|117.565 +638122.589|219997.942|117.754 +638117.633|220002.517|117.647 +638112.671|220007.098|117.501 +638107.702|220011.679|117.281 +638102.746|220016.257|117.278 +638097.781|220020.841|117.110 +638092.819|220025.422|117.080 +638087.875|220029.988|117.461 +638078.030|220039.087|118.010 +638073.086|220043.656|118.403 +638068.194|220048.179|118.805 +638053.417|220061.825|119.235 +638048.541|220066.339|119.927 +638043.655|220070.856|120.491 +638038.726|220075.413|121.100 +638014.205|220098.062|121.844 +638009.285|220102.607|121.960 +638004.375|220107.142|122.216 +637999.492|220111.650|122.213 +637994.563|220116.201|122.240 +637989.677|220120.712|122.243 +637984.795|220125.220|122.310 +637979.851|220129.786|122.213 +637974.953|220134.309|122.088 +637970.012|220138.869|122.091 +637965.181|220143.335|122.268 +637960.243|220147.891|122.356 +637955.406|220152.360|122.502 +637950.538|220156.859|122.874 +637945.658|220161.367|123.112 +637940.803|220165.856|123.624 +637935.935|220170.349|123.496 +637931.076|220174.836|123.487 +637926.172|220179.362|123.530 +637921.305|220183.858|123.450 +637916.434|220188.354|123.368 +637911.554|220192.859|123.231 +637906.671|220197.363|123.100 +637901.837|220201.826|122.972 +637896.963|220206.325|122.975 +637892.102|220210.811|122.621 +637887.149|220215.377|121.893 +637882.345|220219.809|121.716 +637877.447|220224.329|121.588 +637872.628|220228.776|121.298 +637867.739|220233.290|121.317 +637862.935|220237.725|121.219 +637858.098|220242.191|121.289 +637853.273|220246.644|121.079 +637848.427|220251.115|120.674 +637843.611|220255.559|120.570 +637833.915|220264.505|119.909 +637829.069|220268.973|119.649 +637824.283|220273.393|119.491 +637819.425|220277.874|119.159 +637814.603|220282.321|118.769 +637809.714|220286.826|117.869 +637800.073|220295.717|116.864 +637795.187|220300.218|116.096 +637790.204|220304.803|114.602 +637785.513|220309.140|115.026 +637780.865|220313.444|115.797 +637771.401|220322.188|116.108 +637752.149|220339.940|113.209 +637747.193|220344.500|111.539 +637742.472|220348.859|111.246 +637733.157|220357.472|111.929 +637728.488|220361.782|111.706 +637723.730|220366.174|111.588 +637714.342|220374.840|110.926 +637709.648|220379.177|110.969 +637695.328|220392.378|108.366 +637681.454|220405.198|108.573 +637676.803|220409.493|108.408 +637672.188|220413.751|108.192 +637667.512|220418.070|107.906 +637662.867|220422.355|107.546 +637653.485|220431.008|106.345 +637644.232|220439.543|105.421 +637639.641|220443.786|105.504 +637635.109|220447.977|105.644 +637625.974|220456.407|105.001 +637621.271|220460.742|104.236 +637616.845|220464.838|104.778 +637612.383|220468.962|105.132 +637607.802|220473.187|104.556 +637603.419|220477.244|105.101 +637598.950|220481.374|105.467 +637590.175|220489.487|106.007 +637581.275|220497.711|106.223 +637576.962|220501.704|106.945 +637572.722|220505.630|107.805 +637559.863|220517.535|109.939 +637547.015|220529.419|111.441 +637542.684|220533.421|111.630 +637538.277|220537.490|111.447 +637529.538|220545.562|111.264 +637525.122|220549.637|110.832 +637512.207|220561.564|110.832 +637494.742|220577.678|109.055 +637485.930|220585.798|107.430 +637477.286|220593.775|106.689 +637464.366|220605.693|105.107 +637460.224|220609.521|105.303 +637451.878|220617.229|105.205 +637447.699|220621.088|105.040 +637435.462|220632.396|105.522 +637431.313|220636.228|105.324 +637423.053|220643.854|104.909 +637410.782|220655.183|104.367 +637406.737|220658.917|104.031 +637402.796|220662.562|104.391 +637398.754|220666.293|104.330 +637394.719|220670.021|104.086 +637390.881|220673.572|104.693 +637386.864|220677.281|104.565 +637367.299|220695.353|104.522 +637359.728|220702.357|105.245 +637337.017|220723.340|105.781 +637333.201|220726.863|105.577 +637329.513|220730.274|105.684 +637325.831|220733.675|105.824 +637315.023|220743.670|106.833 +637304.074|220753.783|106.766 +637293.900|220763.204|109.140 +637287.075|220769.520|110.252 +637283.607|220772.729|110.499 +637280.132|220775.939|110.545 +637269.799|220785.488|111.060 +637259.750|220794.782|111.908 +637480.389|220588.532|107.753 +637493.334|220576.566|109.024 +637501.969|220568.583|109.667 +637514.975|220556.559|110.542 +637519.340|220552.526|110.935 +637527.978|220544.531|111.082 +637532.294|220540.542|111.286 +637536.631|220536.527|111.374 +637541.011|220532.477|111.417 +637545.360|220528.450|111.344 +637549.637|220524.485|110.637 +637558.171|220516.575|109.689 +637566.639|220508.720|107.887 +637579.626|220496.681|106.260 +637584.040|220492.596|106.092 +637597.399|220480.228|105.534 +637601.788|220476.158|105.037 +637606.199|220472.071|104.653 +637610.795|220467.825|105.043 +637615.312|220463.643|105.031 +637619.704|220459.571|104.309 +637628.979|220450.997|105.150 +637633.490|220446.824|105.171 +637638.053|220442.603|105.217 +637642.729|220438.281|105.641 +637661.343|220421.075|107.116 +637666.046|220416.728|107.854 +637670.725|220412.403|108.155 +637675.407|220408.072|108.512 +637680.049|220403.777|108.640 +637693.972|220390.884|108.503 +637698.824|220386.410|109.743 +637703.622|220381.975|110.365 +637713.022|220373.282|110.704 +637717.801|220368.863|111.280 +637722.498|220364.516|111.341 +637727.162|220360.194|110.832 +637731.837|220355.866|110.771 +637736.550|220351.501|110.655 +637741.430|220346.996|111.712 +637746.139|220342.638|111.612 +637750.939|220338.200|112.179 +637775.211|220315.775|115.681 +637779.883|220311.444|115.114 +637784.702|220306.988|115.297 +637799.308|220293.491|117.181 +637804.142|220289.020|117.607 +637809.089|220284.454|118.574 +637813.926|220279.980|119.107 +637828.505|220266.495|119.759 +637833.360|220262.006|120.162 +637838.237|220257.495|120.326 +637843.090|220253.008|120.750 +637847.997|220248.466|120.811 +637852.840|220243.989|121.210 +637857.732|220239.459|121.201 +637862.573|220234.979|121.195 +637867.477|220230.440|121.338 +637872.326|220225.957|121.436 +637877.233|220221.415|121.673 +637882.125|220216.889|121.771 +637887.045|220212.341|122.182 +637891.995|220207.766|122.914 +637896.908|220203.219|122.859 +637901.794|220198.699|123.008 +637906.720|220194.142|123.112 +637911.645|220189.582|123.243 +637916.571|220185.025|123.389 +637921.481|220180.481|123.411 +637926.398|220175.933|123.505 +637931.293|220171.401|123.402 +637936.206|220166.856|123.527 +637941.138|220162.290|123.341 +637946.003|220157.782|122.969 +637950.916|220153.228|122.594 +637955.832|220148.675|122.289 +637960.764|220144.109|122.164 +637965.699|220139.540|122.088 +637970.627|220134.977|121.975 +637975.620|220130.359|122.039 +637980.561|220125.784|122.143 +637985.538|220121.179|122.085 +637990.519|220116.570|122.103 +637995.447|220112.007|122.082 +638000.477|220107.353|122.155 +638005.442|220102.756|122.009 +638010.395|220098.169|121.713 +638025.363|220084.316|121.899 +638035.306|220075.105|121.265 +638040.280|220070.490|120.646 +638045.252|220065.879|119.966 +638050.241|220061.255|119.573 +638055.213|220056.643|118.927 +638070.227|220042.738|118.619 +638075.262|220038.069|118.278 +638080.249|220033.448|117.869 +638085.248|220028.818|117.674 +638090.271|220024.161|117.098 +638095.318|220019.485|116.967 +638100.329|220014.846|117.104 +638105.389|220010.164|117.318 +638110.439|220005.488|117.360 +638115.447|220000.852|117.498 +638120.498|219996.177|117.580 +638125.539|219991.507|117.498 +638130.578|219986.838|117.293 +638135.616|219982.171|117.086 +638140.654|219977.505|116.928 +638145.696|219972.835|116.864 +638150.783|219968.123|116.672 +638155.818|219963.459|116.470 +638160.850|219958.793|116.126 +638165.928|219954.090|115.599 +638170.970|219949.420|115.593 +638176.002|219944.754|115.215 +638181.110|219940.033|115.989 +638186.155|219935.366|116.160 +638191.254|219930.651|116.745 +638196.314|219925.978|117.732 +638201.358|219921.312|118.202 +638206.449|219916.602|118.503 +638211.539|219911.893|119.080 +638216.595|219907.230|120.518 +638221.625|219902.569|120.351 +638226.721|219897.866|121.628 +638231.759|219893.209|122.417 +638236.837|219888.509|122.716 +638257.055|219869.806|124.124 +638262.081|219865.152|124.097 +638267.156|219860.452|124.087 +638272.185|219855.798|124.148 +638277.211|219851.144|124.124 +638287.309|219841.792|124.029 +638297.413|219832.441|124.215 +638302.439|219827.784|124.292 +638307.466|219823.132|124.484 +638312.544|219818.435|124.566 +638317.573|219813.778|124.554 +638322.602|219809.121|124.575 +638327.631|219804.463|124.651 +638332.706|219799.763|124.715 +638337.690|219795.149|124.715 +638342.771|219790.449|124.743 +638347.757|219785.828|124.599 +638352.789|219781.167|124.609 +638357.825|219776.507|124.618 +638362.814|219771.886|124.523 +638367.853|219767.220|124.432 +638372.894|219762.550|124.252 +638377.884|219757.929|124.258 +638382.925|219753.260|124.136 +638387.921|219748.633|124.051 +638392.923|219744.000|123.801 +638397.985|219739.303|123.200 +638402.984|219734.676|123.142 +638407.989|219730.034|122.886 +638412.997|219725.395|122.676 +638417.950|219720.802|122.591 +638422.955|219716.166|122.548 +638427.969|219711.517|122.249 +638432.934|219706.915|122.067 +638437.939|219702.279|122.079 +638442.898|219697.682|122.033 +638447.869|219693.074|121.823 +638452.889|219688.420|121.612 +638457.863|219683.811|121.414 +638462.841|219679.196|121.192 +638467.809|219674.591|121.128 +638472.786|219669.979|120.966 +638477.764|219665.368|120.863 +638482.695|219660.799|120.747 +638487.673|219656.184|120.637 +638492.605|219651.612|120.576 +638497.594|219646.988|120.369 +638502.529|219642.416|120.314 +638507.482|219637.826|120.021 +638512.481|219633.190|119.756 +638517.360|219628.670|119.896 +638522.313|219624.079|119.671 +638527.263|219619.489|119.531 +638532.168|219614.947|119.430 +638537.124|219610.354|119.256 +638542.071|219605.770|119.238 +638546.987|219601.213|119.046 +638551.897|219596.659|118.921 +638556.856|219592.066|118.869 +638561.706|219587.573|118.961 +638566.628|219583.010|118.796 +638571.548|219578.454|118.702 +638576.470|219573.891|118.601 +638581.405|219569.316|118.366 +638591.238|219560.199|117.857 +638601.040|219551.119|117.833 +638605.920|219546.596|117.827 +638610.867|219542.012|117.644 +638615.713|219537.519|117.522 +638625.537|219528.411|117.022 +638630.490|219523.821|116.888 +638635.324|219519.344|117.004 +638640.241|219514.787|116.809 +638645.169|219510.215|116.510 +638650.040|219505.701|116.348 +638654.963|219501.141|116.202 +638659.846|219496.615|115.983 +638664.722|219492.094|115.846 +638669.605|219487.568|115.669 +638674.491|219483.039|115.504 +638679.408|219478.479|115.096 +638684.291|219473.953|114.998 +638689.192|219469.411|114.803 +638694.050|219464.906|114.547 +638698.945|219460.371|114.450 +638694.620|219460.819|114.608 +638689.765|219465.309|114.794 +638684.894|219469.817|115.135 +638679.987|219474.358|115.401 +638675.113|219478.863|115.379 +638670.206|219483.402|115.705 +638665.326|219487.916|115.821 +638660.440|219492.436|116.010 +638655.557|219496.950|116.181 +638650.610|219501.528|116.550 +638645.730|219506.042|116.763 +638640.802|219510.602|117.013 +638635.891|219515.144|117.098 +638631.008|219519.655|116.949 +638611.309|219537.876|117.812 +638606.371|219542.445|117.882 +638601.485|219546.959|117.906 +638596.481|219551.589|118.214 +638591.625|219556.075|117.967 +638581.679|219565.277|118.546 +638576.705|219569.877|118.653 +638571.776|219574.433|118.778 +638566.811|219579.027|118.811 +638561.858|219583.605|118.720 +638556.869|219588.219|119.101 +638551.876|219592.834|118.961 +638546.923|219597.415|118.964 +638541.900|219602.064|119.268 +638536.895|219606.690|119.357 +638531.936|219611.275|119.497 +638526.885|219615.944|119.616 +638521.887|219620.565|119.710 +638516.900|219625.170|119.659 +638511.837|219629.855|120.058 +638506.854|219634.461|120.021 +638501.797|219639.136|120.399 +638496.759|219643.797|120.530 +638491.721|219648.454|120.701 +638486.691|219653.102|120.738 +638481.711|219657.708|120.832 +638476.633|219662.402|120.948 +638471.604|219667.050|121.082 +638466.578|219671.695|121.186 +638461.509|219676.380|121.262 +638456.434|219681.074|121.490 +638451.362|219685.762|121.652 +638446.293|219690.450|121.853 +638441.273|219695.089|122.018 +638436.165|219699.810|122.079 +638431.108|219704.486|122.121 +638426.048|219709.161|122.204 +638420.979|219713.852|122.618 +638415.877|219718.567|122.673 +638410.833|219723.228|122.533 +638405.767|219727.913|122.947 +638400.668|219732.628|123.066 +638395.626|219737.285|122.975 +638390.505|219742.025|123.737 +638385.403|219746.746|124.106 +638380.310|219751.452|124.228 +638375.223|219756.155|124.215 +638370.133|219760.862|124.295 +638365.042|219765.568|124.453 +638359.952|219770.271|124.532 +638354.868|219774.971|124.584 +638349.784|219779.668|124.566 +638344.697|219784.371|124.706 +638339.567|219789.110|124.703 +638334.486|219793.807|124.715 +638329.405|219798.501|124.660 +638324.327|219803.195|124.606 +638319.246|219807.886|124.557 +638314.168|219812.580|124.484 +638309.041|219817.317|124.514 +638303.966|219822.005|124.154 +638298.885|219826.702|124.295 +638293.765|219831.429|123.847 +638288.687|219836.120|123.746 +638283.606|219840.817|124.029 +638278.488|219845.550|124.036 +638273.410|219850.241|124.026 +638268.332|219854.935|124.008 +638263.254|219859.626|124.026 +638237.809|219883.126|122.783 +638232.728|219887.817|122.597 +638227.644|219892.511|122.106 +638217.464|219901.902|120.600 +638212.371|219906.602|119.994 +638207.314|219911.259|118.665 +638202.224|219915.959|118.296 +638197.131|219920.662|117.946 +638192.074|219925.326|117.162 +638186.969|219930.035|116.382 +638181.869|219934.741|116.001 +638176.822|219939.405|115.763 +638166.675|219948.777|115.382 +638161.634|219953.438|115.526 +638156.605|219958.092|116.077 +638151.572|219962.746|116.507 +638146.580|219967.358|116.720 +638141.538|219972.012|116.906 +638136.491|219976.673|116.897 +638131.498|219981.284|117.114 +638126.454|219985.942|117.232 +638121.461|219990.556|117.431 +638116.459|219995.174|117.443 +638111.451|219999.795|117.367 +638106.443|220004.416|117.290 +638101.433|220009.042|117.120 +638096.419|220013.669|116.964 +638091.456|220018.247|116.952 +638086.467|220022.859|117.339 +638076.570|220032.003|117.869 +638071.586|220036.609|118.388 +638066.701|220041.126|118.906 +638056.785|220050.285|119.137 +638051.826|220054.863|119.281 +638046.940|220059.380|119.832 +638042.036|220063.910|120.094 +638037.098|220068.475|120.585 +638032.212|220072.990|121.183 +638027.311|220077.519|121.494 +638022.413|220082.045|121.850 +638017.539|220086.547|121.893 +638012.562|220091.137|121.871 +638002.802|220100.147|121.875 +637997.925|220104.652|121.948 +637992.994|220109.206|121.932 +637988.105|220113.717|121.905 +637983.213|220118.234|121.820 +637978.324|220122.748|121.823 +637973.432|220127.262|121.823 +637968.533|220131.783|121.750 +637963.687|220136.257|121.762 +637958.804|220140.768|121.893 +637953.958|220145.243|121.942 +637949.136|220149.696|122.289 +637944.314|220154.152|122.658 +637939.489|220158.608|122.984 +637934.685|220163.049|123.566 +637929.808|220167.548|123.362 +637924.956|220172.031|123.414 +637920.146|220176.472|123.450 +637915.279|220180.962|123.417 +637910.451|220185.421|123.286 +637905.571|220189.923|123.185 +637900.779|220194.343|122.999 +637895.899|220198.848|122.923 +637891.114|220203.264|122.859 +637886.283|220207.724|122.822 +637881.409|220212.216|122.417 +637876.587|220216.663|122.079 +637871.726|220221.150|121.823 +637866.907|220225.594|121.582 +637862.094|220230.035|121.396 +637857.287|220234.473|121.301 +637852.484|220238.905|121.253 +637847.720|220243.303|121.134 +637842.907|220247.744|121.064 +637838.143|220252.142|120.994 +637833.296|220256.611|120.680 +637828.505|220261.033|120.433 +637823.692|220265.468|120.052 +637814.118|220274.304|119.750 +637809.269|220278.776|119.147 +637785.196|220300.965|116.428 +637780.313|220305.458|115.379 +637775.473|220309.908|114.328 +637770.767|220314.251|114.709 +637756.474|220327.422|113.529 +637751.561|220331.939|112.130 +637728.003|220353.659|111.331 +637723.388|220357.914|111.505 +637718.505|220362.404|110.210 +637709.133|220371.045|109.689 +637704.521|220375.303|110.292 +637695.216|220383.880|109.701 +637685.874|220392.491|109.301 +637681.222|220396.776|109.100 +637662.608|220413.930|107.838 +637657.932|220418.237|107.290 +637653.248|220422.550|106.723 +637644.015|220431.060|106.180 +637639.370|220435.337|105.644 +637634.819|220439.534|105.363 +637630.174|220443.813|105.168 +637625.633|220447.998|104.995 +637611.859|220460.687|103.763 +637598.630|220472.900|104.949 +637585.359|220485.150|105.729 +637572.079|220497.397|106.061 +637567.852|220501.308|106.985 +637563.618|220505.221|107.893 +637555.114|220513.079|109.271 +637550.856|220517.017|110.067 +637533.650|220532.894|111.179 +637520.687|220544.845|111.048 +637507.596|220556.906|110.185 +637494.651|220568.836|109.457 +637464.277|220596.792|105.184 +637460.099|220600.648|105.193 +637455.935|220604.489|105.287 +637447.617|220612.154|105.104 +637443.496|220615.955|105.196 +637439.421|220619.713|105.290 +637435.300|220623.514|105.178 +637431.237|220627.260|105.351 +637422.946|220634.899|104.775 +637418.832|220638.687|104.303 +637414.753|220642.449|104.242 +637410.681|220646.201|104.224 +637402.738|220653.528|104.409 +637398.745|220657.213|104.541 +637386.974|220668.070|105.013 +637383.036|220671.700|104.992 +637379.000|220675.419|104.571 +637367.342|220686.169|104.833 +637359.679|220693.237|105.162 +637355.875|220696.746|105.348 +637336.971|220714.180|105.851 +637333.186|220717.670|105.754 +637325.782|220724.498|106.061 +637322.036|220727.951|105.946 +637318.336|220731.362|106.028 +637314.733|220734.684|106.302 +637311.167|220737.976|106.506 +637307.561|220741.301|106.787 +637304.025|220744.569|107.332 +637297.283|220750.802|109.109 +637286.874|220760.409|110.393 +637276.566|220769.922|111.310 +637269.842|220776.128|112.258 +637262.966|220782.471|112.456 +637256.217|220788.695|112.779 +637478.576|220580.754|107.083 +637483.010|220576.660|108.140 +637487.351|220572.649|108.786 +637495.961|220564.685|109.551 +637508.989|220552.633|110.524 +637521.946|220540.639|110.819 +637534.945|220528.606|110.984 +637547.912|220516.590|110.350 +637552.121|220512.683|109.314 +637556.315|220508.784|108.485 +637564.862|220500.856|107.125 +637569.178|220496.851|106.412 +637573.515|220492.828|105.830 +637582.342|220484.650|105.519 +637595.680|220472.294|104.885 +637600.154|220468.151|104.858 +637609.027|220459.928|104.150 +637613.697|220455.609|104.729 +637618.189|220451.448|104.586 +637627.349|220442.972|105.107 +637631.918|220438.744|105.187 +637641.114|220430.237|105.735 +637645.783|220425.918|106.193 +637650.462|220421.593|106.720 +637673.828|220399.992|108.622 +637678.497|220395.676|108.933 +637683.185|220391.342|109.384 +637687.867|220387.013|109.500 +637692.607|220382.633|110.027 +637697.285|220378.305|110.164 +637701.982|220373.959|110.131 +637706.640|220369.652|110.170 +637711.355|220365.296|110.624 +637716.113|220360.895|110.731 +637720.919|220356.457|111.539 +637725.641|220352.092|111.767 +637735.212|220343.250|112.889 +637740.073|220338.760|113.514 +637744.785|220334.399|113.450 +637754.274|220325.624|113.486 +637759.056|220321.204|114.011 +637763.921|220316.708|114.431 +637768.560|220312.407|113.950 +637773.431|220307.909|114.468 +637783.233|220298.862|116.467 +637792.990|220289.858|118.247 +637797.869|220285.350|118.641 +637812.351|220271.960|119.500 +637822.080|220262.969|120.305 +637831.815|220253.971|120.860 +637836.649|220249.500|121.106 +637841.493|220245.019|121.021 +637846.348|220240.526|121.088 +637851.213|220236.027|121.231 +637856.071|220231.535|121.375 +637860.930|220227.042|121.533 +637865.852|220222.491|121.856 +637870.729|220217.983|122.225 +637875.633|220213.448|122.445 +637880.541|220208.912|122.731 +637885.426|220204.392|122.810 +637890.300|220199.884|122.804 +637895.223|220195.330|122.819 +637900.109|220190.813|122.987 +637905.031|220186.257|123.088 +637909.914|220181.742|123.280 +637914.831|220177.195|123.328 +637919.738|220172.656|123.313 +637924.648|220168.115|123.341 +637929.559|220163.570|123.432 +637934.448|220159.047|123.274 +637939.340|220154.512|122.652 +637944.213|220149.997|122.353 +637949.127|220145.450|121.954 +637954.052|220140.890|121.747 +637958.978|220136.330|121.545 +637963.916|220131.761|121.500 +637968.866|220127.183|121.646 +637973.849|220122.572|121.612 +637978.735|220118.051|121.591 +637983.725|220113.437|121.689 +637988.711|220108.825|121.774 +637993.689|220104.219|121.777 +637998.666|220099.614|121.804 +638008.618|220090.409|121.829 +638013.540|220085.852|121.844 +638018.557|220081.213|121.798 +638023.504|220076.632|121.484 +638028.451|220072.054|121.161 +638033.441|220067.430|120.792 +638038.385|220062.855|120.445 +638043.374|220058.234|120.082 +638048.358|220053.616|119.601 +638053.295|220049.044|119.134 +638063.308|220039.782|119.019 +638068.292|220035.167|118.586 +638073.275|220030.552|118.110 +638078.265|220025.931|117.821 +638083.300|220021.268|117.458 +638088.290|220016.650|117.101 +638093.282|220012.026|116.848 +638098.293|220007.393|117.004 +638103.353|220002.715|117.193 +638108.361|219998.085|117.373 +638113.408|219993.415|117.391 +638118.456|219988.746|117.376 +638123.500|219984.079|117.284 +638128.538|219979.416|117.153 +638133.580|219974.752|116.989 +638138.621|219970.086|116.934 +638143.657|219965.425|116.720 +638148.692|219960.765|116.449 +638153.718|219956.108|115.900 +638158.796|219951.405|115.486 +638163.767|219946.796|114.605 +638168.864|219942.084|114.800 +638173.969|219937.369|115.315 +638179.026|219932.699|115.919 +638184.073|219928.033|116.242 +638189.172|219923.323|116.891 +638194.232|219918.654|117.952 +638199.319|219913.951|118.189 +638204.409|219909.248|118.494 +638209.460|219904.587|119.601 +638214.504|219899.930|120.399 +638224.633|219890.576|121.606 +638229.720|219885.882|122.664 +638239.876|219876.491|122.899 +638255.061|219862.458|124.130 +638260.133|219857.761|123.990 +638265.208|219853.067|123.956 +638270.237|219848.416|123.929 +638275.312|219843.719|123.883 +638295.606|219824.949|124.161 +638300.635|219820.298|124.164 +638305.710|219815.607|124.484 +638310.785|219810.913|124.471 +638315.814|219806.259|124.471 +638320.889|219801.565|124.636 +638325.967|219796.868|124.618 +638330.996|219792.219|124.755 +638336.077|219787.519|124.703 +638341.155|219782.819|124.700 +638346.191|219778.162|124.599 +638351.268|219773.462|124.642 +638356.307|219768.805|124.569 +638361.345|219764.141|124.420 +638366.429|219759.435|124.350 +638371.468|219754.775|124.334 +638376.512|219750.108|124.136 +638381.553|219745.442|124.066 +638386.653|219740.720|123.655 +638391.658|219736.087|123.386 +638396.711|219731.409|123.072 +638401.756|219726.739|123.014 +638406.812|219722.057|122.725 +638411.854|219717.394|122.886 +638416.865|219712.755|122.637 +638421.921|219708.073|122.441 +638426.935|219703.431|122.201 +638431.992|219698.752|122.155 +638437.003|219694.113|122.045 +638442.017|219689.474|121.917 +638446.982|219684.875|121.807 +638452.051|219680.181|121.585 +638457.025|219675.578|121.411 +638462.048|219670.927|121.222 +638467.068|219666.282|121.173 +638472.040|219661.679|121.128 +638477.017|219657.074|121.018 +638482.040|219652.423|120.960 +638486.975|219647.857|120.856 +638491.998|219643.209|120.872 +638496.942|219638.633|120.646 +638501.928|219634.016|120.512 +638506.891|219629.419|120.098 +638511.825|219624.853|120.119 +638516.824|219620.224|119.918 +638521.731|219615.682|119.695 +638526.681|219611.098|119.573 +638531.589|219606.556|119.418 +638536.551|219601.963|119.217 +638541.458|219597.418|119.104 +638546.350|219592.895|119.253 +638551.306|219588.308|119.192 +638556.168|219583.809|119.150 +638561.084|219579.258|119.031 +638565.955|219574.750|118.939 +638570.883|219570.187|118.747 +638575.760|219565.673|118.613 +638580.677|219561.123|118.628 +638585.544|219556.618|118.644 +638590.461|219552.064|118.174 +638600.214|219543.039|118.174 +638605.058|219538.555|118.043 +638609.941|219534.035|118.028 +638614.781|219529.558|117.988 +638639.083|219507.060|117.174 +638643.917|219502.583|116.873 +638653.609|219493.609|116.601 +638658.443|219489.132|116.370 +638663.296|219484.642|116.038 +638668.130|219480.165|115.873 +638672.928|219475.724|115.632 +638677.768|219471.243|115.495 +638682.578|219466.787|115.184 +638687.442|219462.282|114.876 +638692.191|219457.887|114.745 +638689.180|219456.835|114.794 +638684.227|219461.410|114.962 +638679.261|219465.997|115.257 +638674.296|219470.585|115.596 +638669.349|219475.157|115.818 +638664.411|219479.717|115.964 +638659.404|219484.343|116.336 +638654.469|219488.900|116.516 +638649.495|219493.494|116.641 +638644.542|219498.072|117.065 +638614.802|219525.540|118.058 +638609.803|219530.158|118.193 +638604.869|219534.712|118.162 +638599.934|219539.268|118.168 +638590.068|219548.379|118.223 +638585.066|219553.000|118.519 +638580.076|219557.608|118.708 +638575.157|219562.150|118.702 +638570.182|219566.743|118.772 +638565.254|219571.294|118.903 +638560.255|219575.909|118.729 +638555.311|219580.478|119.125 +638550.349|219585.059|119.153 +638545.381|219589.646|119.287 +638540.382|219594.264|119.250 +638535.417|219598.848|119.403 +638530.464|219603.420|119.436 +638520.552|219612.579|119.710 +638515.547|219617.203|119.893 +638510.536|219621.836|120.192 +638505.592|219626.405|120.280 +638500.587|219631.029|120.576 +638495.643|219635.601|120.741 +638490.602|219640.258|120.908 +638485.670|219644.815|120.936 +638480.641|219649.463|121.018 +638475.661|219654.066|121.091 +638470.729|219658.619|121.158 +638465.709|219663.258|121.161 +638460.735|219667.855|121.237 +638455.708|219672.500|121.414 +638450.731|219677.099|121.585 +638445.754|219681.699|121.811 +638440.740|219686.329|121.801 +638435.771|219690.925|121.966 +638430.757|219695.555|122.042 +638425.743|219700.191|122.182 +638420.772|219704.784|122.460 +638415.764|219709.411|122.536 +638410.753|219714.044|122.716 +638405.739|219718.677|122.999 +638400.747|219723.289|122.771 +638395.736|219727.922|123.094 +638390.734|219732.539|123.133 +638385.690|219737.203|123.139 +638380.673|219741.842|123.761 +638375.619|219746.518|124.145 +638370.623|219751.129|124.173 +638365.628|219755.747|124.340 +638360.586|219760.407|124.407 +638355.545|219765.065|124.560 +638350.506|219769.719|124.563 +638345.471|219774.373|124.587 +638340.433|219779.025|124.648 +638335.443|219783.633|124.676 +638330.362|219788.330|124.758 +638325.330|219792.978|124.618 +638320.298|219797.627|124.593 +638315.265|219802.272|124.465 +638310.233|219806.920|124.450 +638305.155|219811.611|124.398 +638300.126|219816.253|124.063 +638295.094|219820.901|124.142 +638290.065|219825.549|124.170 +638274.931|219839.525|123.871 +638269.853|219844.215|123.743 +638264.821|219848.864|123.773 +638254.714|219858.203|123.947 +638234.539|219876.829|122.935 +638229.458|219881.520|122.624 +638224.371|219886.211|121.917 +638219.326|219890.859|120.969 +638209.201|219900.204|120.448 +638204.141|219904.862|118.881 +638199.045|219909.562|118.284 +638193.952|219914.262|117.976 +638188.895|219918.922|117.147 +638183.793|219923.631|116.394 +638178.693|219928.334|115.980 +638173.686|219932.955|115.477 +638168.574|219937.667|114.806 +638163.475|219942.376|114.593 +638158.479|219946.994|114.690 +638153.407|219951.688|115.452 +638148.375|219956.342|115.864 +638143.349|219960.994|116.531 +638138.310|219965.651|116.797 +638133.269|219970.311|116.940 +638128.225|219974.972|116.982 +638123.180|219979.635|117.114 +638118.139|219984.296|117.272 +638113.091|219988.959|117.333 +638108.086|219993.583|117.312 +638103.030|219998.252|117.138 +638097.970|220002.925|116.995 +638092.956|220007.555|116.848 +638087.957|220012.176|117.016 +638082.962|220016.793|117.275 +638077.926|220021.454|117.638 +638072.979|220026.026|117.970 +638067.947|220030.680|118.433 +638063.003|220035.252|118.781 +638058.011|220039.870|119.086 +638053.003|220044.500|119.153 +638048.062|220049.066|119.601 +638043.069|220053.684|119.973 +638038.129|220058.256|120.372 +638033.191|220062.821|120.850 +638028.186|220067.448|121.039 +638023.276|220071.987|121.216 +638018.316|220076.571|121.396 +638013.363|220081.152|121.667 +638008.389|220085.745|121.652 +637998.529|220094.853|121.606 +637993.551|220099.452|121.618 +637988.620|220104.009|121.622 +637983.682|220108.572|121.545 +637978.738|220113.138|121.445 +637973.840|220117.661|121.317 +637968.899|220122.227|121.283 +637964.059|220126.699|121.353 +637959.118|220131.264|121.356 +637954.229|220135.785|121.439 +637949.340|220140.302|121.548 +637944.512|220144.764|121.832 +637939.650|220149.263|122.286 +637934.786|220153.762|122.710 +637929.994|220158.197|123.414 +637925.130|220162.689|123.331 +637920.268|220167.182|123.304 +637915.401|220171.678|123.246 +637910.591|220176.122|123.301 +637905.662|220180.676|123.136 +637900.877|220185.095|122.990 +637895.994|220189.603|122.874 +637891.154|220194.072|122.722 +637886.286|220198.570|122.789 +637881.498|220202.993|122.691 +637876.627|220207.495|122.789 +637871.832|220211.921|122.701 +637866.983|220216.401|122.563 +637862.213|220220.806|122.280 +637857.336|220225.308|121.957 +637852.490|220229.779|121.506 +637847.671|220234.229|121.301 +637842.898|220238.637|121.131 +637838.082|220243.084|121.018 +637833.309|220247.494|120.872 +637828.496|220251.941|120.832 +637823.729|220256.342|120.805 +637809.376|220269.589|119.585 +637790.259|220287.237|118.424 +637780.566|220296.171|116.769 +637775.796|220300.572|116.208 +637770.956|220305.034|115.519 +637766.152|220309.460|114.785 +637761.373|220313.867|114.258 +637756.432|220318.409|112.596 +637751.857|220322.643|113.261 +637733.102|220339.964|113.517 +637728.390|220344.311|112.953 +637718.932|220353.031|112.033 +637709.483|220361.752|111.267 +637704.817|220366.058|111.149 +637700.123|220370.387|110.539 +637695.459|220374.690|110.505 +637686.166|220383.267|110.027 +637667.610|220400.394|109.250 +637662.983|220404.664|108.951 +637653.607|220413.306|107.704 +637648.947|220417.603|107.284 +637639.666|220426.162|106.150 +637630.418|220434.693|105.324 +637621.250|220443.152|104.766 +637612.176|220451.531|104.848 +637607.762|220455.612|105.181 +637603.132|220459.879|104.601 +637598.694|220463.982|104.824 +637594.129|220468.194|104.650 +637589.706|220472.281|104.989 +637580.815|220480.493|105.217 +637576.401|220484.571|105.385 +637567.623|220492.685|106.037 +637563.271|220496.708|106.302 +637559.055|220500.610|107.317 +637550.493|220508.534|108.655 +637542.047|220516.353|110.371 +637533.434|220524.311|110.752 +637520.425|220536.320|110.871 +637516.118|220540.298|110.737 +637511.759|220544.318|110.374 +637503.075|220552.328|109.890 +637498.891|220556.199|110.176 +637494.459|220560.283|109.536 +637481.441|220572.287|108.119 +637468.185|220584.494|105.528 +637463.918|220588.429|105.098 +637459.766|220592.263|105.223 +637455.557|220596.152|105.086 +637451.421|220599.969|105.077 +637443.121|220607.634|105.214 +637434.876|220615.239|105.202 +637410.242|220637.956|104.132 +637402.354|220645.237|104.547 +637398.303|220648.974|104.425 +637390.418|220656.253|104.699 +637386.428|220659.932|104.665 +637378.668|220667.098|105.104 +637366.921|220677.930|104.982 +637359.207|220685.054|105.299 +637325.090|220716.527|105.699 +637321.430|220719.908|105.924 +637317.748|220723.306|106.065 +637306.793|220733.416|106.525 +637303.334|220736.614|107.156 +637296.472|220742.963|108.887 +637289.602|220749.312|109.996 +637282.577|220755.798|110.533 +637279.178|220758.937|110.844 +637275.792|220762.068|111.408 +637265.541|220771.532|112.417 +637258.705|220777.838|112.584 +637480.423|220570.647|108.046 +637489.061|220562.664|108.902 +637497.769|220554.617|109.673 +637519.486|220534.537|110.841 +637523.738|220530.599|110.469 +637532.467|220522.525|110.664 +637536.796|220518.517|110.460 +637545.321|220510.613|109.170 +637549.646|220506.605|108.735 +637558.077|220498.784|106.738 +637566.782|220490.722|105.949 +637571.144|220486.680|105.498 +637579.983|220478.493|104.982 +637584.421|220474.382|104.419 +637588.898|220470.242|104.653 +637593.418|220466.057|104.592 +637607.046|220453.457|105.156 +637611.530|220449.303|104.675 +637616.071|220445.102|104.833 +637620.625|220440.890|104.778 +637625.233|220436.629|105.071 +637629.836|220432.374|105.348 +637634.484|220428.076|105.623 +637643.832|220419.444|106.839 +637648.523|220415.110|107.457 +637657.942|220406.411|108.680 +637667.302|220397.745|109.058 +637676.693|220389.062|110.018 +637686.023|220380.421|110.079 +637695.380|220371.761|110.384 +637700.150|220367.348|110.868 +637723.955|220345.329|112.999 +637738.278|220332.082|114.056 +637752.521|220318.894|114.081 +637757.240|220314.520|113.797 +637762.116|220310.015|114.712 +637766.957|220305.534|115.013 +637771.879|220300.996|116.327 +637776.753|220296.488|116.955 +637791.353|220282.991|118.872 +637796.169|220278.535|119.183 +637801.015|220274.048|119.378 +637820.440|220256.080|120.701 +637825.268|220251.612|120.866 +637830.120|220247.116|120.863 +637834.942|220242.657|121.015 +637839.813|220238.149|121.210 +637844.678|220233.647|121.372 +637849.618|220229.075|121.838 +637854.459|220224.597|122.277 +637859.427|220220.001|122.573 +637864.225|220215.560|122.679 +637869.153|220210.997|122.694 +637873.987|220206.523|122.722 +637878.901|220201.972|122.624 +637883.787|220197.449|122.740 +637888.663|220192.932|122.813 +637893.583|220188.378|122.847 +637898.463|220183.861|122.969 +637903.388|220179.301|123.118 +637908.311|220174.747|123.237 +637913.218|220170.203|123.231 +637918.080|220165.701|123.283 +637923.039|220161.110|123.356 +637927.937|220156.575|123.331 +637932.817|220152.046|122.591 +637937.678|220147.541|122.155 +637942.580|220142.996|121.655 +637947.450|220138.482|121.353 +637952.385|220133.913|121.271 +637957.320|220129.341|121.210 +637962.239|220124.784|120.972 +637967.168|220120.218|120.881 +637972.112|220115.643|120.975 +637977.107|220111.020|121.164 +638001.879|220088.089|121.676 +638006.841|220083.493|121.554 +638011.803|220078.900|121.417 +638016.765|220074.300|121.378 +638021.721|220069.710|121.204 +638026.677|220065.117|121.091 +638031.685|220060.478|121.000 +638036.617|220055.902|120.533 +638041.603|220051.282|120.131 +638046.544|220046.701|119.790 +638051.521|220042.083|119.281 +638056.459|220037.505|118.906 +638061.403|220032.920|118.659 +638066.441|220028.251|118.369 +638071.376|220023.676|117.933 +638076.360|220019.052|117.540 +638081.349|220014.428|117.245 +638086.339|220009.801|116.998 +638091.335|220005.174|116.818 +638096.388|220000.496|116.918 +638101.344|219995.902|117.062 +638106.398|219991.227|117.190 +638111.396|219986.594|117.239 +638116.392|219981.967|117.178 +638121.431|219977.297|117.046 +638126.423|219972.674|116.943 +638131.462|219968.004|116.882 +638136.497|219963.338|116.711 +638141.474|219958.723|116.172 +638146.497|219954.062|115.593 +638151.530|219949.396|115.312 +638156.504|219944.781|114.584 +638161.545|219940.112|114.599 +638166.590|219935.439|114.748 +638171.643|219930.764|115.306 +638176.700|219926.091|116.035 +638181.748|219921.421|116.419 +638186.798|219916.749|117.101 +638191.849|219912.082|117.952 +638196.890|219907.416|118.287 +638201.931|219902.752|118.909 +638206.988|219898.089|120.405 +638217.101|219888.725|120.826 +638222.140|219884.068|121.768 +638227.178|219879.414|122.728 +638232.204|219874.759|122.807 +638237.279|219870.062|123.191 +638242.305|219865.405|123.014 +638252.406|219856.057|123.944 +638257.433|219851.403|123.819 +638262.459|219846.745|123.725 +638267.531|219842.048|123.670 +638272.557|219837.391|123.719 +638287.672|219823.391|124.026 +638292.747|219818.691|123.999 +638297.819|219813.997|124.200 +638302.848|219809.337|124.045 +638307.917|219804.646|124.410 +638312.943|219799.992|124.493 +638317.969|219795.338|124.566 +638323.044|219790.638|124.624 +638328.119|219785.934|124.612 +638333.148|219781.280|124.682 +638338.177|219776.617|124.593 +638343.255|219771.917|124.642 +638348.291|219767.250|124.502 +638353.369|219762.547|124.563 +638358.401|219757.884|124.511 +638363.439|219753.217|124.368 +638368.523|219748.505|124.255 +638373.565|219743.832|124.072 +638378.618|219739.148|123.548 +638383.666|219734.466|123.243 +638388.710|219729.793|123.161 +638393.755|219725.121|123.030 +638398.845|219720.405|123.033 +638403.886|219715.739|123.139 +638408.946|219711.048|122.746 +638414.003|219706.363|122.542 +638419.007|219701.727|122.448 +638424.116|219696.997|122.222 +638429.176|219692.309|122.064 +638434.183|219687.670|121.966 +638439.243|219682.982|121.871 +638444.257|219678.340|121.792 +638449.277|219673.689|121.600 +638454.343|219668.995|121.430 +638459.366|219664.340|121.247 +638464.432|219659.649|121.207 +638469.446|219655.007|121.250 +638474.466|219650.359|121.237 +638479.489|219645.708|121.195 +638484.512|219641.057|121.137 +638489.496|219636.439|121.012 +638494.528|219631.779|120.896 +638499.566|219627.109|120.716 +638504.553|219622.491|120.610 +638509.597|219617.816|120.405 +638514.605|219613.177|120.070 +638519.607|219608.544|119.890 +638524.609|219603.908|119.692 +638529.555|219599.326|119.643 +638534.557|219594.693|119.515 +638539.513|219590.103|119.421 +638544.512|219585.473|119.384 +638549.471|219580.883|119.317 +638554.430|219576.290|119.244 +638559.392|219571.690|119.144 +638564.364|219567.088|119.000 +638569.329|219562.488|118.945 +638574.245|219557.934|118.918 +638579.177|219553.366|118.723 +638593.972|219539.659|118.372 +638598.888|219535.111|118.500 +638603.823|219530.539|118.421 +638608.700|219526.022|118.470 +638613.616|219521.468|118.156 +638642.926|219494.316|117.696 +638647.769|219489.827|117.333 +638652.713|219485.249|116.998 +638657.560|219480.756|116.672 +638662.464|219476.208|116.266 +638667.316|219471.712|115.971 +638672.196|219467.189|115.861 +638677.006|219462.733|115.547 +638681.864|219458.228|115.260 +638676.576|219460.228|115.654 +638671.562|219464.864|115.998 +638666.566|219469.475|116.190 +638661.571|219474.090|116.406 +638656.569|219478.711|116.720 +638651.515|219483.380|117.107 +638646.465|219488.050|117.491 +638616.439|219515.781|118.266 +638611.398|219520.432|118.272 +638606.438|219525.016|118.500 +638601.406|219529.661|118.485 +638596.350|219534.334|118.759 +638591.406|219538.891|118.336 +638581.317|219548.211|118.805 +638576.306|219552.838|118.683 +638571.267|219557.493|118.909 +638566.241|219562.132|119.009 +638556.201|219571.404|119.180 +638551.135|219576.082|119.275 +638541.059|219585.385|119.461 +638536.054|219590.006|119.491 +638531.046|219594.632|119.601 +638525.995|219599.296|119.628 +638515.937|219608.580|119.884 +638510.813|219613.314|120.381 +638505.818|219617.922|120.448 +638500.764|219622.589|120.722 +638495.720|219627.243|120.832 +638490.727|219631.852|120.969 +638485.643|219636.546|121.049 +638480.605|219641.194|121.180 +638475.572|219645.839|121.274 +638470.543|219650.481|121.341 +638465.520|219655.114|121.317 +638460.500|219659.747|121.286 +638455.422|219664.432|121.402 +638450.445|219669.025|121.527 +638445.370|219673.710|121.710 +638440.353|219678.340|121.710 +638435.332|219682.976|121.868 +638430.267|219687.648|121.942 +638425.250|219692.278|122.060 +638420.227|219696.914|122.320 +638415.167|219701.587|122.429 +638410.150|219706.217|122.655 +638405.084|219710.893|122.902 +638400.067|219715.529|123.255 +638395.068|219720.140|123.158 +638390.015|219724.804|123.277 +638384.970|219729.455|123.124 +638379.962|219734.079|123.328 +638374.909|219738.742|123.527 +638369.898|219743.372|124.048 +638364.844|219748.039|124.343 +638359.803|219752.690|124.304 +638354.804|219757.305|124.502 +638349.763|219761.956|124.478 +638344.770|219766.564|124.551 +638339.777|219771.170|124.612 +638334.739|219775.818|124.548 +638329.698|219780.469|124.706 +638324.711|219785.069|124.529 +638319.676|219789.717|124.557 +638314.641|219794.362|124.471 +638309.651|219798.962|124.438 +638304.619|219803.604|124.295 +638299.635|219808.200|123.969 +638294.597|219812.848|124.063 +638289.565|219817.487|123.834 +638284.578|219822.090|123.840 +638279.546|219826.729|123.566 +638264.495|219840.613|123.527 +638259.463|219845.258|123.475 +638254.476|219849.860|123.642 +638249.444|219854.505|123.719 +638239.419|219863.744|123.027 +638234.384|219868.389|123.027 +638224.359|219877.634|122.454 +638219.314|219882.279|121.707 +638214.319|219886.881|121.167 +638209.277|219891.530|120.771 +638204.233|219896.178|120.372 +638199.219|219900.786|119.019 +638194.165|219905.441|118.369 +638189.118|219910.095|118.001 +638184.107|219914.710|117.193 +638179.044|219919.370|116.403 +638173.987|219924.030|115.946 +638168.973|219928.648|115.358 +638163.911|219933.312|114.745 +638158.909|219937.929|114.687 +638153.855|219942.590|114.584 +638148.853|219947.204|114.639 +638143.876|219951.804|115.455 +638138.838|219956.458|115.788 +638133.854|219961.061|116.428 +638128.865|219965.669|116.775 +638123.817|219970.327|116.839 +638118.818|219974.941|117.013 +638113.820|219979.556|117.101 +638108.766|219984.216|117.132 +638103.804|219988.791|117.053 +638098.744|219993.458|116.931 +638093.730|219998.082|116.781 +638088.722|220002.703|116.797 +638083.718|220007.320|116.946 +638078.771|220011.889|117.260 +638073.772|220016.504|117.516 +638068.779|220021.116|117.882 +638063.835|220025.681|118.296 +638058.840|220030.293|118.631 +638053.841|220034.908|118.936 +638048.894|220039.477|119.284 +638043.901|220044.088|119.659 +638038.961|220048.648|120.177 +638034.017|220053.214|120.600 +638029.067|220057.786|120.917 +638024.102|220062.367|121.024 +638019.091|220066.994|121.134 +638014.174|220071.530|121.305 +638009.200|220076.120|121.329 +638004.226|220080.710|121.335 +637999.303|220085.252|121.478 +637994.316|220089.851|121.378 +637989.376|220094.408|121.271 +637984.377|220099.013|121.082 +637979.430|220103.579|120.920 +637974.480|220108.142|120.783 +637969.524|220112.711|120.613 +637964.571|220117.280|120.475 +637959.630|220121.837|120.543 +637954.759|220126.336|120.863 +637949.840|220130.877|121.216 +637944.945|220135.394|121.292 +637940.059|220139.906|121.481 +637935.197|220144.395|121.975 +637930.330|220148.891|122.411 +637925.489|220153.366|123.176 +637920.643|220157.837|123.328 +637915.730|220162.369|123.280 +637910.862|220166.859|123.258 +637905.952|220171.388|123.301 +637901.124|220175.845|123.216 +637896.195|220180.389|123.109 +637891.361|220184.848|123.024 +637886.472|220189.353|122.902 +637881.635|220193.816|122.832 +637876.801|220198.275|122.792 +637871.957|220202.740|122.722 +637867.071|220207.248|122.710 +637862.274|220211.674|122.646 +637857.440|220216.136|122.691 +637852.636|220220.565|122.621 +637847.765|220225.055|122.399 +637842.907|220229.532|121.878 +637838.106|220233.961|121.890 +637833.251|220238.432|121.478 +637828.407|220242.898|121.164 +637823.628|220247.305|121.036 +637818.797|220251.758|120.899 +637814.018|220256.166|120.811 +637794.840|220273.847|119.781 +637785.196|220282.732|118.811 +637770.809|220295.988|117.245 +637765.896|220300.511|116.004 +637742.216|220322.359|114.721 +637690.516|220370.048|111.097 +637685.803|220374.395|110.746 +637681.119|220378.714|110.280 +637676.605|220382.886|110.609 +637657.981|220400.065|109.192 +637653.379|220404.311|109.073 +637648.688|220408.630|108.143 +637644.037|220412.922|107.768 +637630.116|220425.748|105.848 +637625.489|220430.018|105.424 +637620.872|220434.276|105.095 +637616.352|220438.446|105.059 +637598.213|220455.185|104.190 +637584.856|220467.517|104.452 +637571.692|220479.679|105.339 +637567.343|220483.699|105.592 +637562.865|220487.832|105.452 +637558.592|220491.786|106.144 +637545.848|220503.575|108.421 +637541.654|220507.458|109.295 +637537.426|220511.369|110.015 +637528.740|220519.391|110.283 +637524.418|220523.381|110.292 +637511.482|220535.326|110.310 +637498.561|220547.250|110.057 +637494.200|220551.274|109.753 +637481.227|220563.237|108.735 +637476.802|220567.309|107.707 +637472.422|220571.345|106.915 +637455.213|220587.207|104.745 +637438.598|220602.547|104.885 +637430.374|220610.149|104.946 +637422.120|220617.775|104.705 +637417.957|220621.615|104.217 +637413.854|220625.404|104.016 +637409.813|220629.141|104.092 +637397.806|220640.245|104.473 +637382.024|220654.833|104.955 +637374.206|220662.062|105.123 +637370.374|220665.607|105.562 +637366.400|220669.280|105.403 +637339.498|220694.146|105.690 +637332.021|220701.059|105.815 +637320.658|220711.556|105.510 +637309.789|220721.611|106.409 +637306.080|220725.037|106.260 +637299.008|220731.584|107.131 +637295.762|220734.605|108.786 +637285.152|220744.417|109.442 +637274.975|220753.844|111.002 +637470.462|220571.101|107.040 +637474.720|220567.157|107.262 +637492.167|220551.021|109.579 +637500.853|220542.983|110.316 +637509.415|220535.046|110.018 +637531.020|220515.030|110.170 +637539.664|220507.010|109.481 +637543.864|220503.109|108.652 +637552.267|220495.300|106.766 +637556.528|220491.344|106.001 +637578.465|220470.998|104.434 +637587.493|220462.634|104.477 +637601.047|220450.080|104.882 +637605.528|220445.925|104.659 +637614.590|220437.534|104.833 +637619.174|220433.288|104.961 +637623.804|220429.006|105.391 +637628.455|220424.702|105.973 +637633.128|220420.383|106.692 +637642.506|220411.711|108.137 +637651.821|220403.089|108.725 +637656.466|220398.794|109.128 +637661.206|220394.417|109.817 +637679.854|220377.168|110.652 +637684.557|220372.819|110.950 +637703.509|220355.302|112.962 +637708.285|220350.892|113.544 +637712.986|220346.542|113.651 +637746.154|220315.858|114.794 +637750.942|220311.432|114.992 +637755.712|220307.015|115.114 +637779.990|220284.588|118.546 +637784.766|220280.175|118.854 +637789.679|220275.636|119.525 +637794.520|220271.162|120.043 +637799.299|220266.739|120.091 +637804.164|220262.240|120.454 +637809.007|220257.763|120.671 +637813.829|220253.300|120.738 +637818.672|220248.820|121.021 +637823.515|220244.342|121.320 +637828.389|220239.834|121.500 +637833.242|220235.351|121.929 +637838.118|220230.840|122.192 +637842.965|220226.353|122.222 +637847.835|220221.848|122.472 +637852.734|220217.319|122.560 +637857.571|220212.841|122.563 +637862.457|220208.321|122.585 +637867.349|220203.795|122.697 +637872.232|220199.275|122.749 +637877.108|220194.760|122.761 +637881.994|220190.240|122.902 +637886.862|220185.735|122.847 +637891.791|220181.176|122.984 +637896.719|220176.616|123.121 +637901.587|220172.111|123.161 +637906.506|220167.560|123.264 +637911.414|220163.022|123.240 +637916.312|220158.486|123.170 +637921.231|220153.935|123.331 +637926.117|220149.406|122.624 +637931.012|220144.868|122.039 +637935.874|220140.363|121.612 +637940.787|220135.812|121.231 +637945.673|220131.286|121.116 +637950.645|220126.686|120.863 +637955.546|220122.142|120.384 +637960.471|220117.582|120.201 +637965.458|220112.967|120.219 +637970.417|220108.383|120.482 +637980.351|220099.193|120.738 +637985.340|220094.576|120.914 +637990.330|220089.961|121.070 +637995.313|220085.349|121.207 +638000.339|220080.701|121.265 +638005.262|220076.144|121.277 +638010.276|220071.502|121.216 +638015.238|220066.909|121.116 +638020.197|220062.319|120.988 +638025.211|220057.682|120.945 +638030.216|220053.053|120.820 +638035.205|220048.432|120.460 +638040.186|220043.817|119.945 +638045.130|220039.239|119.634 +638050.116|220034.624|119.198 +638055.097|220030.010|118.677 +638060.092|220025.386|118.479 +638065.073|220020.774|117.921 +638070.056|220016.156|117.479 +638075.055|220011.533|117.293 +638080.097|220006.866|117.056 +638085.043|220002.285|116.873 +638090.091|219997.615|116.742 +638095.099|219992.982|116.870 +638100.104|219988.356|116.952 +638105.157|219983.683|117.031 +638110.208|219979.010|117.083 +638115.207|219974.387|117.083 +638120.248|219969.723|116.964 +638125.237|219965.102|116.763 +638130.273|219960.442|116.431 +638135.296|219955.788|115.782 +638140.282|219951.170|115.504 +638145.299|219946.519|114.593 +638150.344|219941.852|114.581 +638155.388|219937.186|114.556 +638160.433|219932.519|114.602 +638165.486|219927.850|114.986 +638170.503|219923.223|115.894 +638175.600|219918.511|116.321 +638180.653|219913.844|116.940 +638185.664|219909.220|118.001 +638190.754|219904.517|118.278 +638195.753|219899.899|118.823 +638200.807|219895.239|119.963 +638205.894|219890.539|120.536 +638210.886|219885.927|121.079 +638215.925|219881.273|121.558 +638221.009|219876.576|122.161 +638225.995|219871.971|122.789 +638231.028|219867.319|123.018 +638241.086|219858.017|123.203 +638246.115|219853.369|123.588 +638251.141|219848.717|123.475 +638256.171|219844.066|123.447 +638261.200|219839.415|123.572 +638276.278|219825.470|123.694 +638281.259|219820.862|123.737 +638286.288|219816.213|123.917 +638291.317|219811.562|123.862 +638296.343|219806.911|124.017 +638301.327|219802.302|124.023 +638306.399|219797.617|124.438 +638311.379|219793.006|124.417 +638316.408|219788.355|124.474 +638321.441|219783.703|124.551 +638326.421|219779.095|124.587 +638331.453|219774.440|124.606 +638336.486|219769.786|124.639 +638341.472|219765.174|124.587 +638346.507|219760.514|124.551 +638351.494|219755.902|124.520 +638356.529|219751.242|124.523 +638361.571|219746.579|124.404 +638366.573|219741.949|124.011 +638371.580|219737.307|123.368 +638376.625|219732.643|123.325 +638381.575|219728.059|123.167 +638386.625|219723.386|122.996 +638391.606|219718.784|123.426 +638396.601|219714.160|123.402 +638401.658|219709.475|123.072 +638406.623|219704.876|122.758 +638411.631|219700.240|122.576 +638416.642|219695.601|122.371 +638421.653|219690.959|122.170 +638426.667|219686.313|121.960 +638431.678|219681.674|121.841 +638436.643|219677.081|121.774 +638441.657|219672.436|121.631 +638446.622|219667.839|121.591 +638451.642|219663.191|121.430 +638456.659|219658.546|121.387 +638461.582|219653.992|121.356 +638466.596|219649.353|121.420 +638471.613|219644.708|121.439 +638476.593|219640.097|121.298 +638481.574|219635.485|121.183 +638486.554|219630.873|121.082 +638491.538|219626.262|121.003 +638496.527|219621.638|120.820 +638501.517|219617.020|120.701 +638506.522|219612.384|120.393 +638511.508|219607.769|120.375 +638516.513|219603.130|120.091 +638521.472|219598.540|119.869 +638526.480|219593.901|119.628 +638536.420|219584.699|119.637 +638541.424|219580.069|119.576 +638546.384|219575.479|119.479 +638551.349|219570.879|119.317 +638556.308|219566.289|119.287 +638561.270|219561.696|119.238 +638566.235|219557.099|119.189 +638571.188|219552.509|118.717 +638586.062|219538.744|119.046 +638591.028|219534.145|118.598 +638595.969|219529.576|118.976 +638600.918|219524.992|118.732 +638605.853|219520.423|118.692 +638610.809|219515.832|118.446 +638615.771|219511.239|118.189 +638620.709|219506.667|118.180 +638645.361|219483.840|117.565 +638650.327|219479.238|117.007 +638655.301|219474.632|116.842 +638660.187|219470.109|116.659 +638665.131|219465.528|116.391 +638670.078|219460.947|116.129 +638668.167|219459.072|116.175 +638663.208|219463.654|116.486 +638658.203|219468.274|116.806 +638653.213|219472.883|117.010 +638648.227|219477.488|117.239 +638618.265|219505.152|118.162 +638613.184|219509.849|118.583 +638603.144|219519.118|118.759 +638598.102|219523.772|118.854 +638593.140|219528.351|118.638 +638567.848|219551.698|118.994 +638562.760|219556.395|119.275 +638557.689|219561.077|119.387 +638552.675|219565.707|119.439 +638547.566|219570.422|119.482 +638542.510|219575.092|119.503 +638537.447|219579.767|119.649 +638532.341|219584.480|119.732 +638527.288|219589.143|119.793 +638522.182|219593.858|119.951 +638517.083|219598.570|120.073 +638512.023|219603.243|120.314 +638506.933|219607.946|120.366 +638501.828|219612.668|120.689 +638496.780|219617.328|120.838 +638491.638|219622.083|121.042 +638486.554|219626.780|121.155 +638481.516|219631.434|121.262 +638476.386|219636.171|121.362 +638471.305|219640.868|121.509 +638466.236|219645.549|121.484 +638461.119|219650.274|121.426 +638456.050|219654.956|121.430 +638450.981|219659.637|121.451 +638445.863|219664.365|121.536 +638440.749|219669.089|121.594 +638435.683|219673.771|121.686 +638430.568|219678.495|121.780 +638425.506|219683.174|121.890 +638420.388|219687.901|122.118 +638415.274|219692.629|122.350 +638410.211|219697.308|122.545 +638405.099|219702.032|122.810 +638399.991|219706.753|123.063 +638394.934|219711.426|123.240 +638389.878|219716.099|123.423 +638384.787|219720.799|123.267 +638379.694|219725.502|123.203 +638374.641|219730.171|123.414 +638369.553|219734.868|123.313 +638364.445|219739.593|123.834 +638359.388|219744.268|124.325 +638354.298|219748.974|124.502 +638349.211|219753.671|124.459 +638344.170|219758.329|124.560 +638339.083|219763.029|124.612 +638334.044|219767.680|124.606 +638329.012|219772.328|124.450 +638323.925|219777.028|124.602 +638318.890|219781.676|124.542 +638313.857|219786.325|124.462 +638308.773|219791.019|124.456 +638303.741|219795.664|124.295 +638298.712|219800.306|123.950 +638293.631|219805.000|124.039 +638288.598|219809.642|123.728 +638283.566|219814.290|123.676 +638278.534|219818.938|123.597 +638273.502|219823.586|123.566 +638268.475|219828.229|123.469 +638258.408|219837.525|123.539 +638253.376|219842.173|123.511 +638248.343|219846.818|123.377 +638243.357|219851.424|123.399 +638238.325|219856.069|123.051 +638233.335|219860.672|122.743 +638228.352|219865.277|122.883 +638223.316|219869.925|122.740 +638218.278|219874.574|122.112 +638213.282|219879.179|121.372 +638208.287|219883.785|120.893 +638203.294|219888.393|120.616 +638198.249|219893.047|120.073 +638193.242|219897.659|118.970 +638188.282|219902.228|118.318 +638183.287|219906.843|118.125 +638178.273|219911.461|117.129 +638173.259|219916.081|116.391 +638168.251|219920.702|115.882 +638163.280|219925.283|114.995 +638158.272|219929.904|114.693 +638153.267|219934.525|114.596 +638148.314|219939.100|114.587 +638143.312|219943.721|114.541 +638138.310|219948.338|114.568 +638133.388|219952.898|115.480 +638128.404|219957.510|115.989 +638123.515|219962.030|116.525 +638113.576|219971.217|116.970 +638108.574|219975.837|116.967 +638103.618|219980.419|116.925 +638098.656|219985.000|116.818 +638093.697|219989.581|116.766 +638088.735|219994.162|116.702 +638083.779|219998.740|116.803 +638078.822|220003.321|116.912 +638073.921|220007.851|117.144 +638068.950|220012.441|116.989 +638064.012|220017.010|117.473 +638059.096|220021.561|118.336 +638054.201|220026.087|118.753 +638049.299|220030.619|119.040 +638044.365|220035.185|119.549 +638039.415|220039.760|119.826 +638034.520|220044.287|120.247 +638029.640|220048.804|120.856 +638024.672|220053.391|120.872 +638019.755|220057.932|120.975 +638014.833|220062.483|120.957 +638009.913|220067.028|121.055 +638004.994|220071.572|121.119 +638000.059|220076.129|121.021 +637995.121|220080.689|120.905 +637990.183|220085.252|120.789 +637985.243|220089.815|120.677 +637980.338|220094.341|120.460 +637965.485|220108.054|119.945 +637960.581|220112.583|119.832 +637955.695|220117.097|119.933 +637950.760|220121.660|120.061 +637945.954|220126.104|120.613 +637941.046|220130.646|121.064 +637936.209|220135.114|121.253 +637931.339|220139.619|121.637 +637926.474|220144.118|122.091 +637921.643|220148.589|122.920 +637916.824|220153.045|123.347 +637911.908|220157.587|123.249 +637907.049|220162.077|123.304 +637902.178|220166.576|123.222 +637897.305|220171.074|123.170 +637892.428|220175.579|123.088 +637887.545|220180.090|122.960 +637882.726|220184.541|123.036 +637877.803|220189.088|123.033 +637873.003|220193.523|122.838 +637868.120|220198.031|122.813 +637863.271|220202.509|122.694 +637858.433|220206.977|122.685 +637853.584|220211.454|122.588 +637848.741|220215.929|122.579 +637843.937|220220.367|122.484 +637839.088|220224.844|122.478 +637834.275|220229.288|122.371 +637829.410|220233.781|122.252 +637824.607|220238.219|122.268 +637819.772|220242.681|122.057 +637814.969|220247.116|121.695 +637810.089|220251.618|121.146 +637805.233|220256.099|120.853 +637800.479|220260.494|120.985 +637786.007|220273.847|119.860 +637771.535|220287.194|118.260 +637761.857|220296.110|116.903 +637757.047|220300.542|116.114 +637752.268|220304.949|115.961 +637738.110|220318.016|115.849 +637733.395|220322.368|115.873 +637690.839|220361.608|112.688 +637672.057|220378.927|111.149 +637667.342|220383.271|110.557 +637662.651|220387.596|110.134 +637648.761|220400.406|109.216 +637644.110|220404.692|108.835 +637639.501|220408.941|108.436 +637625.410|220421.919|106.110 +637620.835|220426.138|105.708 +637616.166|220430.441|105.077 +637607.064|220438.836|104.690 +637584.646|220459.526|104.839 +637580.117|220463.704|104.608 +637575.560|220467.908|104.248 +637571.168|220471.964|104.537 +637566.776|220476.021|104.836 +637562.509|220479.965|105.565 +637558.086|220484.050|105.720 +637545.278|220495.894|107.653 +637536.759|220503.770|109.009 +637528.221|220511.662|110.033 +637519.650|220519.577|110.429 +637515.335|220523.561|110.487 +637498.019|220539.536|109.905 +637489.384|220547.497|109.472 +637467.621|220567.547|106.522 +637463.211|220571.607|105.632 +637459.032|220575.463|105.616 +637454.582|220579.553|104.348 +637450.455|220583.366|104.598 +637442.036|220591.129|104.156 +637433.864|220598.676|104.659 +637421.526|220610.054|104.473 +637413.312|220617.626|104.254 +637405.125|220625.172|103.980 +637365.757|220661.502|105.476 +637361.910|220665.046|105.440 +637350.264|220675.788|105.394 +637346.493|220679.265|105.501 +637342.638|220682.819|105.485 +637338.815|220686.346|105.406 +637331.396|220693.192|105.991 +637327.565|220696.721|105.705 +637323.795|220700.199|105.665 +637316.422|220707.005|106.092 +637308.963|220713.879|106.025 +637305.455|220717.122|106.446 +637301.776|220720.511|106.427 +637298.192|220723.821|106.790 +637294.653|220727.089|107.128 +637291.190|220730.289|107.771 +637287.706|220733.505|108.122 +637280.864|220739.829|109.341 +637277.456|220742.981|110.015 +637253.721|220764.887|112.362 +637243.711|220774.129|113.368 +637467.697|220565.416|106.887 +637471.971|220561.463|107.168 +637476.378|220557.388|107.872 +637480.791|220553.316|108.863 +637498.104|220537.298|110.204 +637506.837|220529.221|110.743 +637511.037|220525.326|110.341 +637524.055|220513.271|110.295 +637532.598|220505.349|109.570 +637549.585|220489.582|106.412 +637553.901|220485.580|105.949 +637558.260|220481.538|105.440 +637566.962|220473.470|104.669 +637571.406|220469.352|104.385 +637593.936|220448.495|104.711 +637602.928|220440.168|104.687 +637607.491|220435.943|104.665 +637626.020|220418.813|106.659 +637630.766|220414.430|107.525 +637635.365|220410.175|107.842 +637640.108|220405.789|108.460 +637658.856|220388.452|110.448 +637682.259|220366.793|111.926 +637729.832|220322.777|116.056 +637758.450|220296.283|116.897 +637768.097|220287.359|118.092 +637773.001|220282.830|118.967 +637782.681|220273.871|119.857 +637802.024|220255.974|121.030 +637806.888|220251.475|121.433 +637811.796|220246.933|121.826 +637821.461|220237.987|122.243 +637826.310|220233.495|122.219 +637831.172|220228.993|122.341 +637835.982|220224.536|122.451 +637840.907|220219.980|122.725 +637845.738|220215.505|122.627 +637850.627|220210.976|122.655 +637855.471|220206.489|122.728 +637860.357|220201.966|122.761 +637865.206|220197.479|122.902 +637870.129|220192.916|122.886 +637875.024|220188.387|123.063 +637879.894|220183.873|123.057 +637884.765|220179.362|123.057 +637889.691|220174.802|123.152 +637894.607|220170.248|123.173 +637899.523|220165.698|123.203 +637904.446|220161.141|123.341 +637909.344|220156.599|123.264 +637914.297|220152.015|123.234 +637919.183|220147.486|123.036 +637924.051|220142.969|122.118 +637928.903|220138.464|121.597 +637933.829|220133.901|121.311 +637938.745|220129.341|120.994 +637943.695|220124.751|120.482 +637948.596|220120.206|119.976 +637953.525|220115.640|119.777 +637958.502|220111.029|119.656 +637973.438|220097.200|120.030 +637978.439|220092.573|120.271 +637983.432|220087.949|120.482 +637988.419|220083.331|120.622 +637993.454|220078.674|120.765 +637998.440|220074.056|120.951 +638003.412|220069.454|120.942 +638008.429|220064.806|120.960 +638013.449|220060.157|121.003 +638018.460|220055.515|120.951 +638023.468|220050.879|120.841 +638028.433|220046.283|120.832 +638033.459|220041.626|120.277 +638038.439|220037.008|119.799 +638043.429|220032.384|119.467 +638048.416|220027.763|119.019 +638053.454|220023.094|118.717 +638058.434|220018.476|118.241 +638063.454|220013.825|117.528 +638068.432|220009.207|116.961 +638073.488|220004.528|117.019 +638078.533|219999.856|116.836 +638083.535|219995.226|116.778 +638088.579|219990.553|116.672 +638093.636|219985.875|116.769 +638098.638|219981.245|116.793 +638103.737|219976.523|116.870 +638108.787|219971.851|116.937 +638113.780|219967.224|116.827 +638118.864|219962.518|116.550 +638123.887|219957.857|115.992 +638128.916|219953.197|115.474 +638133.979|219948.500|114.608 +638139.024|219943.830|114.526 +638144.068|219939.158|114.547 +638149.113|219934.488|114.511 +638154.206|219929.773|114.590 +638159.256|219925.103|114.803 +638164.365|219920.382|115.626 +638169.421|219915.709|116.236 +638174.475|219911.040|116.961 +638179.580|219906.325|117.930 +638184.625|219901.661|118.290 +638189.715|219896.952|118.759 +638194.769|219892.289|119.845 +638199.862|219887.582|120.604 +638204.900|219882.925|121.094 +638209.978|219878.222|121.180 +638215.017|219873.568|121.777 +638220.101|219868.868|122.582 +638225.133|219864.213|122.740 +638230.159|219859.559|122.734 +638235.237|219854.862|122.950 +638240.266|219850.208|123.255 +638245.295|219845.553|123.200 +638250.370|219840.856|123.362 +638255.400|219836.205|123.481 +638265.501|219826.851|123.536 +638270.911|219821.843|123.408 +638275.553|219817.545|123.463 +638280.582|219812.891|123.508 +638285.657|219808.194|123.584 +638290.634|219803.589|123.840 +638295.709|219798.892|123.987 +638300.739|219794.234|123.996 +638305.716|219789.632|124.383 +638310.794|219784.932|124.386 +638315.820|219780.277|124.502 +638320.804|219775.666|124.551 +638325.885|219770.963|124.493 +638330.865|219766.351|124.575 +638335.897|219761.694|124.615 +638340.930|219757.036|124.612 +638345.919|219752.412|124.456 +638350.955|219747.755|124.529 +638355.947|219743.128|124.267 +638360.952|219738.489|123.749 +638365.999|219733.814|123.490 +638370.992|219729.190|123.399 +638375.994|219724.557|123.118 +638380.980|219719.945|123.392 +638385.967|219715.327|123.581 +638390.972|219710.694|123.353 +638395.974|219706.061|123.197 +638400.933|219701.471|122.963 +638405.944|219696.832|122.697 +638410.958|219692.190|122.411 +638415.920|219687.597|122.237 +638420.931|219682.958|122.045 +638425.853|219678.404|121.832 +638430.864|219673.765|121.722 +638435.829|219669.168|121.625 +638440.801|219664.569|121.478 +638445.760|219659.979|121.530 +638450.728|219655.385|121.494 +638455.693|219650.789|121.509 +638460.613|219646.238|121.530 +638465.578|219641.645|121.600 +638470.549|219637.045|121.615 +638475.429|219632.528|121.542 +638480.409|219627.920|121.433 +638485.344|219623.354|121.335 +638490.331|219618.739|121.216 +638495.275|219614.161|120.988 +638500.173|219609.626|120.802 +638505.168|219605.005|120.655 +638510.057|219600.482|120.668 +638515.026|219595.879|120.256 +638524.880|219586.756|120.009 +638529.830|219582.175|119.945 +638534.734|219577.637|119.881 +638539.641|219573.098|119.817 +638544.555|219568.551|119.698 +638549.465|219564.006|119.646 +638554.382|219559.458|119.567 +638559.319|219554.883|119.217 +638564.220|219550.351|119.351 +638569.088|219545.846|119.332 +638574.026|219541.274|119.098 +638578.945|219536.726|119.119 +638583.810|219532.225|119.211 +638593.640|219523.126|118.894 +638598.511|219518.621|118.997 +638603.403|219514.092|118.884 +638608.285|219509.575|118.930 +638618.103|219500.489|118.522 +638623.038|219495.914|118.077 +638637.711|219482.338|117.839 +638642.582|219477.827|117.680 +638647.465|219473.310|117.455 +638652.347|219468.786|117.223 +638657.243|219464.254|116.946 +638662.138|219459.722|116.675 +638661.833|219456.893|116.641 +638656.929|219461.422|116.922 +638652.027|219465.949|117.199 +638647.074|219470.527|117.568 +638642.240|219474.989|117.744 +638637.284|219479.564|117.714 +638627.457|219488.635|117.869 +638607.722|219506.865|118.869 +638602.778|219511.428|118.915 +638597.831|219515.997|119.037 +638592.911|219520.532|118.857 +638578.046|219534.261|119.192 +638573.072|219538.848|119.189 +638568.088|219543.453|119.351 +638563.062|219548.092|119.457 +638558.097|219552.674|119.445 +638553.129|219557.261|119.515 +638548.100|219561.906|119.732 +638543.095|219566.527|119.713 +638538.078|219571.157|119.845 +638533.067|219575.784|119.948 +638528.065|219580.401|119.970 +638523.008|219585.068|120.091 +638518.007|219589.689|120.186 +638512.953|219594.352|120.329 +638507.909|219599.006|120.369 +638502.846|219603.682|120.698 +638497.798|219608.339|120.853 +638492.748|219613.003|121.103 +638487.706|219617.654|121.231 +638482.616|219622.351|121.381 +638477.581|219626.999|121.490 +638472.497|219631.693|121.637 +638467.474|219636.326|121.609 +638462.402|219641.005|121.612 +638457.333|219645.680|121.542 +638452.267|219650.353|121.490 +638447.250|219654.983|121.457 +638442.139|219659.695|121.393 +638437.070|219664.374|121.466 +638432.004|219669.050|121.530 +638426.935|219673.728|121.692 +638421.821|219678.447|121.844 +638416.752|219683.128|122.082 +638411.640|219687.844|122.222 +638406.578|219692.519|122.435 +638401.509|219697.198|122.761 +638396.352|219701.962|123.063 +638391.295|219706.628|123.210 +638386.189|219711.341|123.438 +638381.084|219716.053|123.688 +638376.000|219720.741|123.353 +638370.913|219725.432|123.161 +638365.814|219730.141|123.411 +638360.723|219734.835|123.356 +638355.618|219739.550|123.795 +638350.516|219744.265|124.380 +638345.377|219749.008|124.487 +638340.338|219753.656|124.481 +638335.202|219758.396|124.575 +638330.115|219763.087|124.569 +638325.080|219767.732|124.447 +638319.950|219772.465|124.481 +638314.866|219777.156|124.450 +638309.785|219781.844|124.337 +638304.701|219786.532|124.325 +638299.577|219791.256|123.975 +638294.545|219795.898|123.874 +638289.464|219800.586|123.789 +638284.334|219805.314|123.652 +638279.302|219809.956|123.569 +638274.221|219814.641|123.347 +638268.530|219819.892|123.319 +638264.065|219824.010|123.274 +638258.984|219828.701|123.478 +638253.903|219833.389|123.539 +638243.744|219842.761|123.252 +638238.660|219847.446|122.969 +638233.628|219852.088|122.966 +638228.544|219856.776|122.691 +638223.463|219861.461|122.536 +638218.430|219866.106|122.588 +638213.340|219870.794|122.033 +638208.299|219875.439|121.420 +638203.212|219880.127|121.085 +638198.167|219884.775|120.625 +638193.077|219889.469|120.210 +638188.066|219894.078|119.070 +638182.967|219898.775|118.491 +638177.922|219903.426|118.232 +638172.908|219908.041|117.303 +638167.846|219912.701|116.513 +638162.789|219917.361|115.980 +638157.757|219921.985|114.684 +638152.706|219926.646|114.629 +638147.704|219931.260|114.608 +638142.703|219935.872|114.611 +638137.701|219940.490|114.575 +638132.699|219945.107|114.553 +638127.712|219949.713|115.041 +638122.729|219954.322|115.580 +638117.791|219958.881|116.105 +638112.805|219963.490|116.550 +638107.861|219968.056|116.781 +638102.856|219972.677|116.778 +638097.897|219977.252|116.733 +638092.938|219981.830|116.681 +638087.979|219986.405|116.659 +638082.974|219991.026|116.763 +638078.064|219995.558|116.818 +638073.110|220000.130|116.949 +638068.151|220004.708|117.059 +638063.214|220009.274|117.498 +638058.325|220013.791|118.010 +638053.387|220018.354|118.503 +638048.492|220022.877|118.909 +638043.594|220027.401|119.275 +638038.708|220031.918|119.814 +638033.806|220036.444|120.131 +638028.911|220040.967|120.506 +638024.004|220045.497|120.753 +638019.091|220050.035|120.878 +638014.171|220054.577|120.899 +638009.291|220059.078|120.847 +638004.360|220063.629|120.786 +637999.477|220068.137|120.704 +637994.551|220072.682|120.762 +637989.653|220077.202|120.518 +637984.755|220081.719|120.351 +637979.857|220086.239|120.165 +637970.042|220095.292|119.677 +637965.260|220099.711|120.491 +637960.304|220104.287|120.271 +637955.396|220108.804|119.528 +637950.501|220113.324|119.561 +637945.670|220117.786|119.781 +637940.787|220122.294|119.994 +637935.990|220126.729|120.664 +637931.186|220131.170|121.262 +637926.303|220135.678|121.503 +637921.490|220140.128|121.975 +637916.717|220144.545|122.920 +637911.886|220149.007|123.222 +637907.028|220153.490|123.255 +637902.218|220157.928|123.338 +637897.344|220162.427|123.240 +637892.525|220166.877|123.225 +637887.652|220171.373|123.182 +637882.875|220175.781|123.188 +637877.992|220180.285|123.115 +637873.164|220184.742|123.097 +637868.327|220189.204|123.042 +637863.536|220193.627|122.966 +637858.692|220198.095|122.886 +637853.889|220202.530|122.740 +637849.052|220206.992|122.771 +637844.260|220211.415|122.789 +637839.496|220215.816|123.082 +637834.647|220220.284|122.621 +637829.825|220224.735|122.435 +637825.058|220229.133|122.344 +637820.233|220233.583|122.185 +637815.459|220237.987|122.067 +637805.831|220246.869|121.655 +637801.088|220251.243|121.469 +637796.239|220255.715|121.234 +637781.843|220268.992|120.338 +637777.015|220273.439|119.598 +637772.236|220277.846|119.299 +637767.441|220282.269|118.891 +637757.800|220291.160|117.787 +637753.012|220295.576|117.516 +637748.272|220299.950|117.275 +637719.819|220326.209|115.855 +637710.401|220334.902|115.465 +637686.846|220356.628|113.538 +637663.352|220378.296|111.374 +637658.649|220382.633|110.865 +637653.994|220386.928|110.371 +637644.695|220395.508|109.844 +637635.331|220404.140|108.725 +637621.308|220417.067|106.787 +637611.886|220425.744|105.022 +637602.764|220434.166|104.800 +637598.195|220438.382|104.528 +637593.665|220442.566|104.504 +637589.218|220446.675|104.678 +637584.841|220450.723|105.260 +637580.156|220455.039|104.434 +637571.177|220463.332|104.434 +637566.751|220467.414|104.272 +637562.313|220471.516|104.601 +637553.523|220479.639|105.220 +637549.265|220483.583|105.994 +637544.906|220487.610|106.263 +637527.895|220503.353|109.109 +637515.014|220515.258|110.076 +637510.726|220519.221|110.286 +637497.784|220531.172|110.621 +637475.979|220551.280|108.384 +637471.529|220555.379|107.479 +637458.306|220567.559|105.037 +637453.996|220571.534|104.647 +637449.781|220575.423|104.470 +637433.096|220590.831|104.522 +637428.914|220594.689|104.358 +637424.809|220598.481|104.309 +637420.618|220602.349|104.123 +637412.416|220609.923|103.903 +637404.320|220617.403|104.227 +637396.209|220624.892|104.086 +637388.385|220632.128|105.019 +637368.360|220650.611|104.217 +637364.672|220654.031|105.260 +637360.746|220657.658|105.299 +637356.872|220661.236|105.363 +637352.979|220664.830|105.367 +637349.112|220668.402|105.476 +637337.596|220679.040|105.601 +637333.789|220682.557|105.577 +637326.197|220689.568|105.662 +637318.787|220696.417|106.107 +637315.090|220699.833|106.375 +637311.344|220703.290|106.247 +637300.276|220713.513|106.403 +637296.686|220716.829|106.528 +637286.088|220726.628|107.601 +637282.638|220729.823|108.293 +637279.279|220732.932|108.927 +637275.813|220736.138|109.362 +637272.314|220739.372|109.692 +637268.891|220742.536|109.899 +637265.508|220745.666|110.481 +637261.960|220748.940|110.237 +637258.662|220751.994|110.947 +637255.230|220755.164|111.170 +637248.588|220761.306|111.847 +637241.992|220767.408|112.724 +637469.550|220555.023|107.500 +637478.131|220547.095|108.311 +637482.523|220543.041|108.991 +637486.830|220539.063|109.268 +637504.215|220522.997|110.399 +637512.753|220515.097|110.042 +637534.214|220495.227|108.314 +637542.620|220487.433|106.680 +637546.921|220483.449|106.125 +637555.529|220475.473|104.800 +637559.924|220471.404|104.516 +637564.359|220467.301|104.449 +637573.317|220459.017|104.583 +637577.752|220454.914|104.294 +637582.385|220450.638|105.120 +637586.740|220446.602|104.425 +637591.242|220442.438|104.571 +637600.340|220434.023|104.595 +637604.870|220429.838|104.653 +637609.466|220425.592|105.126 +637614.163|220421.258|105.921 +637618.799|220416.975|106.406 +637623.551|220412.592|107.284 +637628.230|220408.273|108.070 +637632.902|220403.957|108.536 +637637.648|220399.583|109.469 +637642.284|220395.295|109.792 +637656.323|220382.329|111.042 +637661.072|220377.943|111.533 +637670.405|220369.311|111.871 +637675.132|220364.946|112.298 +637713.123|220329.851|115.925 +637722.663|220321.033|116.547 +637727.396|220316.656|116.647 +637751.235|220294.619|117.656 +637760.900|220285.692|118.564 +637770.553|220276.773|119.479 +637775.375|220272.317|119.777 +637785.083|220263.347|120.530 +637794.770|220254.398|121.253 +637799.622|220249.911|121.536 +637804.459|220245.440|121.722 +637809.299|220240.965|121.948 +637814.170|220236.460|122.054 +637818.995|220232.001|122.201 +637823.860|220227.502|122.323 +637828.679|220223.046|122.466 +637833.595|220218.501|122.646 +637838.445|220214.021|123.130 +637843.309|220209.522|122.874 +637848.143|220205.047|122.835 +637853.026|220200.530|122.810 +637857.866|220196.056|122.859 +637862.758|220191.533|122.963 +637867.641|220187.015|123.024 +637872.524|220182.498|123.094 +637877.404|220177.987|123.146 +637882.324|220173.437|123.146 +637887.197|220168.929|123.185 +637892.117|220164.381|123.234 +637897.030|220159.836|123.234 +637901.895|220155.335|123.277 +637906.845|220150.756|123.194 +637911.703|220146.264|123.200 +637916.605|220141.722|122.640 +637921.433|220137.248|121.780 +637926.355|220132.691|121.475 +637931.217|220128.189|121.012 +637936.100|220123.663|120.262 +637941.004|220119.121|119.735 +637945.935|220114.558|119.576 +637950.870|220109.989|119.494 +637955.808|220105.423|119.427 +637960.855|220100.763|120.186 +637970.755|220091.604|119.906 +637975.754|220086.983|120.119 +637980.686|220082.423|120.085 +637985.678|220077.805|120.299 +637990.671|220073.191|120.533 +637995.648|220068.588|120.533 +638000.629|220063.983|120.640 +638005.603|220059.383|120.701 +638010.581|220054.781|120.789 +638015.598|220050.136|120.850 +638020.557|220045.542|120.747 +638025.559|220040.912|120.567 +638030.512|220036.328|120.347 +638035.501|220031.704|120.000 +638040.482|220027.087|119.482 +638045.416|220022.515|119.046 +638050.409|220017.888|118.747 +638055.386|220013.276|118.174 +638060.412|220008.616|117.641 +638065.402|220003.995|117.254 +638070.386|219999.377|116.818 +638075.439|219994.699|116.854 +638080.441|219990.069|116.781 +638085.443|219985.439|116.714 +638090.493|219980.763|116.723 +638095.538|219976.093|116.611 +638100.543|219971.464|116.711 +638105.636|219966.748|116.690 +638110.671|219962.082|116.394 +638115.703|219957.421|115.995 +638120.733|219952.761|115.489 +638125.750|219948.107|114.669 +638130.794|219943.437|114.544 +638135.884|219938.725|114.523 +638140.932|219934.052|114.562 +638145.976|219929.383|114.562 +638151.021|219924.716|114.578 +638156.114|219920.001|114.657 +638161.192|219915.319|116.083 +638166.294|219910.604|116.672 +638171.351|219905.934|117.455 +638176.450|219901.222|118.244 +638181.495|219896.559|118.634 +638186.542|219891.895|119.220 +638191.638|219887.189|120.265 +638196.725|219882.486|120.655 +638201.813|219877.783|121.146 +638206.848|219873.129|121.637 +638211.932|219868.429|122.018 +638222.042|219859.074|122.563 +638227.169|219854.335|122.737 +638232.198|219849.680|123.027 +638242.351|219840.287|122.981 +638252.455|219830.938|123.389 +638257.530|219826.238|123.353 +638262.608|219821.538|123.237 +638267.677|219816.847|123.301 +638272.755|219812.147|123.222 +638277.830|219807.450|123.377 +638282.856|219802.802|123.639 +638287.931|219798.105|123.725 +638293.006|219793.411|123.950 +638298.038|219788.754|123.895 +638303.107|219784.066|124.356 +638308.185|219779.366|124.380 +638313.217|219774.709|124.346 +638318.292|219770.012|124.441 +638323.324|219765.357|124.484 +638328.357|219760.700|124.526 +638333.435|219756.003|124.651 +638338.470|219751.340|124.532 +638343.505|219746.679|124.511 +638348.598|219741.961|124.090 +638353.603|219737.319|123.463 +638358.642|219732.655|123.499 +638363.683|219727.989|123.392 +638368.731|219723.313|123.130 +638373.754|219718.671|123.706 +638378.798|219714.002|123.639 +638383.797|219709.375|123.517 +638388.847|219704.696|123.350 +638393.852|219700.060|123.149 +638398.912|219695.366|122.789 +638403.923|219690.724|122.512 +638408.934|219686.079|122.280 +638413.948|219681.434|122.048 +638419.004|219676.746|121.908 +638423.976|219672.140|121.652 +638428.990|219667.492|121.487 +638434.004|219662.850|121.445 +638438.966|219658.250|121.420 +638443.974|219653.614|121.481 +638448.939|219649.015|121.506 +638453.901|219644.422|121.600 +638458.869|219639.819|121.625 +638463.837|219635.220|121.655 +638468.803|219630.620|121.756 +638473.731|219626.054|121.698 +638478.663|219621.485|121.606 +638483.649|219616.868|121.448 +638488.593|219612.283|121.231 +638493.531|219607.708|121.113 +638498.484|219603.118|120.844 +638503.428|219598.537|120.725 +638508.341|219593.983|120.418 +638513.285|219589.402|120.366 +638518.186|219584.861|120.247 +638523.139|219580.270|120.119 +638528.044|219575.729|120.049 +638532.948|219571.184|120.003 +638537.855|219566.640|119.930 +638542.714|219562.138|119.906 +638547.682|219557.535|119.735 +638552.550|219553.027|119.668 +638557.460|219548.477|119.649 +638562.334|219543.962|119.561 +638572.130|219534.885|119.412 +638591.659|219516.792|119.095 +638596.493|219512.318|119.089 +638601.388|219507.780|118.951 +638606.231|219503.293|118.887 +638611.081|219498.800|118.787 +638625.638|219485.313|118.540 +638630.551|219480.753|117.912 +638635.394|219476.269|118.013 +638640.216|219471.801|117.879 +638645.047|219467.323|117.665 +638649.943|219462.785|117.360 +638654.786|219458.295|117.089 +638650.165|219458.908|117.263 +638645.212|219463.486|117.613 +638640.317|219468.012|117.906 +638635.382|219472.575|118.138 +638630.530|219477.056|118.086 +638625.522|219481.692|118.628 +638615.781|219490.689|118.540 +638610.861|219495.237|118.766 +638605.957|219499.772|118.906 +638601.065|219504.293|118.906 +638596.115|219508.865|119.037 +638591.211|219513.400|119.241 +638571.527|219531.591|119.479 +638566.598|219536.144|119.564 +638561.621|219540.744|119.659 +638556.744|219545.252|119.768 +638551.779|219549.839|119.784 +638546.829|219554.411|119.640 +638541.888|219558.983|120.021 +638536.932|219563.561|120.000 +638531.973|219568.142|120.061 +638527.013|219572.723|120.125 +638522.064|219577.301|120.137 +638517.101|219581.886|120.314 +638512.139|219586.473|120.512 +638507.150|219591.085|120.488 +638502.181|219595.678|120.860 +638497.231|219600.253|120.985 +638492.181|219604.919|121.207 +638487.237|219609.488|121.320 +638482.241|219614.106|121.518 +638477.252|219618.721|121.686 +638472.262|219623.332|121.847 +638467.288|219627.923|121.762 +638462.316|219632.519|121.728 +638457.293|219637.158|121.722 +638452.325|219641.749|121.637 +638447.357|219646.336|121.567 +638442.346|219650.966|121.436 +638437.329|219655.599|121.423 +638432.315|219660.232|121.393 +638427.301|219664.865|121.445 +638422.278|219669.507|121.634 +638417.255|219674.152|121.920 +638412.238|219678.788|122.091 +638407.224|219683.424|122.268 +638402.158|219688.106|122.515 +638397.095|219692.787|122.804 +638392.078|219697.426|123.136 +638386.970|219702.148|123.456 +638381.968|219706.769|123.478 +638376.917|219711.438|123.645 +638371.818|219716.153|123.840 +638366.786|219720.799|123.496 +638361.744|219725.453|123.359 +638356.648|219730.165|123.612 +638351.659|219734.771|123.402 +638346.556|219739.495|123.962 +638341.457|219744.207|124.398 +638336.461|219748.828|124.657 +638331.331|219753.565|124.554 +638326.296|219758.216|124.450 +638321.264|219762.867|124.377 +638316.180|219767.561|124.371 +638311.099|219772.258|124.389 +638306.064|219776.906|124.319 +638300.989|219781.594|124.002 +638295.908|219786.285|123.889 +638290.875|219790.933|123.795 +638285.749|219795.667|123.652 +638280.671|219800.361|123.554 +638275.638|219805.003|123.280 +638270.560|219809.697|123.200 +638265.431|219814.436|123.322 +638260.404|219819.075|123.097 +638255.326|219823.769|123.146 +638250.197|219828.509|123.426 +638240.038|219837.891|122.920 +638234.960|219842.585|123.063 +638229.879|219847.276|122.771 +638224.798|219851.970|122.722 +638219.717|219856.660|122.524 +638214.632|219861.351|122.121 +638209.548|219866.045|121.905 +638204.416|219870.785|121.545 +638199.377|219875.436|121.082 +638194.287|219880.133|120.610 +638189.200|219884.830|120.351 +638184.098|219889.530|119.369 +638179.001|219894.233|118.756 +638173.902|219898.936|118.211 +638168.803|219903.639|117.638 +638163.746|219908.306|116.955 +638158.634|219913.015|116.187 +638153.502|219917.739|114.632 +638148.454|219922.403|114.590 +638143.361|219927.109|114.575 +638138.310|219931.775|114.544 +638133.263|219936.439|114.562 +638128.167|219941.145|114.590 +638123.116|219945.808|114.617 +638118.099|219950.457|115.519 +638113.055|219955.117|115.708 +638108.019|219959.771|116.117 +638102.981|219964.429|116.406 +638097.933|219969.092|116.547 +638092.883|219973.759|116.556 +638087.832|219978.422|116.644 +638082.824|219983.049|116.608 +638077.823|219987.670|116.708 +638072.769|219992.336|116.818 +638067.767|219996.960|116.961 +638062.772|220001.578|117.242 +638057.785|220006.189|117.705 +638052.799|220010.801|118.165 +638047.815|220015.410|118.695 +638042.822|220020.024|119.015 +638037.885|220024.590|119.515 +638032.938|220029.165|119.823 +638027.948|220033.780|120.241 +638023.041|220038.312|120.494 +638018.030|220042.939|120.582 +638013.159|220047.441|120.616 +638008.191|220052.031|120.655 +638003.204|220056.634|120.457 +637998.276|220061.185|120.421 +637993.338|220065.744|120.290 +637988.400|220070.301|120.204 +637983.463|220074.864|120.094 +637978.558|220079.390|119.832 +637963.827|220093.000|120.262 +637958.859|220097.575|119.299 +637953.964|220102.098|119.296 +637949.072|220106.618|119.332 +637944.171|220111.145|119.299 +637939.291|220115.653|119.546 +637934.469|220120.109|119.933 +637929.635|220124.586|120.707 +637924.831|220129.027|121.317 +637919.957|220133.535|121.640 +637915.163|220137.973|122.353 +637910.377|220142.402|123.155 +637905.516|220146.892|123.146 +637900.663|220151.372|123.267 +637895.799|220155.865|123.271 +637890.986|220160.315|123.304 +637886.167|220164.762|123.341 +637881.290|220169.267|123.261 +637876.456|220173.729|123.179 +637871.680|220178.143|123.200 +637866.843|220182.608|123.124 +637862.057|220187.028|123.112 +637857.220|220191.496|123.069 +637852.429|220195.919|123.039 +637847.637|220200.344|123.018 +637842.858|220204.761|123.124 +637838.091|220209.165|123.392 +637833.293|220213.591|122.957 +637828.471|220218.044|122.740 +637823.707|220222.442|122.658 +637818.931|220226.850|122.496 +637814.109|220231.303|122.359 +637809.376|220235.674|122.188 +637804.535|220240.139|121.969 +637799.790|220244.519|121.747 +637794.995|220248.945|121.551 +637790.246|220253.328|121.350 +637780.676|220262.161|120.829 +637775.960|220266.514|120.576 +637771.074|220271.019|119.799 +637766.277|220275.441|119.360 +637761.552|220279.800|119.125 +637737.772|220301.733|117.516 +637733.099|220306.046|117.440 +637728.326|220310.448|117.025 +637723.608|220314.797|116.693 +637718.929|220319.119|116.644 +637704.835|220332.119|115.928 +637690.759|220345.100|114.876 +637667.192|220366.820|111.990 +637662.623|220371.036|111.972 +637639.312|220392.530|109.939 +637620.753|220409.639|107.924 +637606.634|220422.642|105.315 +637602.056|220426.863|104.946 +637592.986|220435.230|104.495 +637588.459|220439.406|104.507 +637584.122|220443.420|105.296 +637579.516|220447.663|104.601 +637561.652|220464.149|104.321 +637548.521|220476.280|105.235 +637544.278|220480.206|106.107 +637527.341|220495.876|109.015 +637523.061|220499.832|109.478 +637514.481|220507.757|110.064 +637505.797|220515.770|109.929 +637501.396|220519.830|109.585 +637488.494|220531.736|109.433 +637471.135|220547.741|107.963 +637466.841|220551.700|107.558 +637453.524|220563.953|104.449 +637436.870|220579.324|104.522 +637428.570|220586.981|104.419 +637424.446|220590.788|104.266 +637420.319|220594.592|104.120 +637416.183|220598.408|103.955 +637412.086|220602.187|103.974 +637407.993|220605.964|103.800 +637404.000|220609.649|104.083 +637399.922|220613.410|104.007 +637388.035|220624.389|104.672 +637380.165|220631.656|104.970 +637368.049|220642.823|104.199 +637356.521|220653.473|105.367 +637352.720|220656.981|105.510 +637329.723|220678.205|105.842 +637325.947|220681.689|105.958 +637322.249|220685.105|106.403 +637318.513|220688.553|106.485 +637314.806|220691.976|106.702 +637311.237|220695.277|107.253 +637303.760|220702.171|107.067 +637292.733|220712.342|106.997 +637289.377|220715.451|108.024 +637285.594|220718.932|107.409 +637282.104|220722.160|107.936 +637278.602|220725.394|108.219 +637275.109|220728.619|108.546 +637268.211|220734.992|109.366 +637254.474|220747.678|110.499 +637251.066|220750.823|110.801 +637244.352|220757.026|111.417 +637237.737|220763.134|112.234 +637466.926|220549.079|107.439 +637488.622|220528.993|109.411 +637492.947|220524.988|109.597 +637501.512|220517.051|109.594 +637510.208|220508.992|109.826 +637514.518|220504.999|109.762 +637523.089|220497.046|109.195 +637527.392|220493.054|108.628 +637553.029|220469.240|104.498 +637557.421|220465.164|104.217 +637561.875|220461.037|104.278 +637570.811|220452.756|104.056 +637579.900|220444.340|104.760 +637584.402|220440.165|104.629 +637588.883|220436.010|104.388 +637593.455|220431.776|104.690 +637602.632|220423.279|105.257 +637616.696|220410.276|107.582 +637621.359|220405.963|108.277 +637635.386|220392.985|109.847 +637644.664|220384.395|110.597 +637654.055|220375.711|111.493 +637668.085|220362.733|112.371 +637691.866|220340.745|115.254 +637696.621|220336.346|115.708 +637720.346|220314.389|116.714 +637729.905|220305.543|117.287 +637758.712|220278.892|119.168 +637763.515|220274.448|119.671 +637768.350|220269.976|120.058 +637773.193|220265.499|120.527 +637777.984|220261.061|120.643 +637782.898|220256.522|121.338 +637787.680|220252.093|121.442 +637792.517|220247.616|121.585 +637797.354|220243.138|121.786 +637802.201|220238.655|122.054 +637807.035|220234.180|122.292 +637811.909|220229.669|122.445 +637816.731|220225.207|122.606 +637821.598|220220.702|122.771 +637826.466|220216.197|122.957 +637831.276|220211.744|123.097 +637836.207|220207.181|123.469 +637841.044|220202.704|123.456 +637845.909|220198.196|123.286 +637850.734|220193.724|123.222 +637855.620|220189.204|123.261 +637860.494|220184.690|123.234 +637865.368|220180.176|123.240 +637870.293|220175.613|123.289 +637875.152|220171.114|123.176 +637880.080|220166.551|123.298 +637884.948|220162.043|123.322 +637889.861|220157.496|123.313 +637894.766|220152.951|123.274 +637899.673|220148.406|123.283 +637904.565|220143.877|123.124 +637909.454|220139.345|122.990 +637914.334|220134.818|122.207 +637919.140|220130.362|121.689 +637924.084|220125.775|121.091 +637928.876|220121.328|120.433 +637933.820|220116.744|119.842 +637938.666|220112.251|119.244 +637943.607|220107.676|119.217 +637948.548|220103.098|119.247 +637953.488|220098.523|119.244 +637958.472|220093.908|119.250 +637973.294|220080.186|119.515 +637978.287|220075.565|119.704 +637983.280|220070.944|119.921 +637988.214|220066.375|120.055 +637993.192|220061.767|120.107 +637998.169|220057.158|120.229 +638003.195|220052.507|120.378 +638008.176|220047.898|120.567 +638013.147|220043.299|120.607 +638018.158|220038.663|120.561 +638023.114|220034.076|120.421 +638028.104|220029.455|120.076 +638033.093|220024.834|119.713 +638038.031|220020.259|119.305 +638043.014|220015.644|118.830 +638048.007|220011.021|118.586 +638052.985|220006.409|117.973 +638057.965|220001.794|117.504 +638062.955|219997.173|117.153 +638067.944|219992.553|116.809 +638072.943|219987.926|116.693 +638077.945|219983.299|116.611 +638082.992|219978.626|116.562 +638087.994|219973.999|116.531 +638092.993|219969.373|116.480 +638097.988|219964.749|116.327 +638103.024|219960.085|116.019 +638108.010|219955.468|115.675 +638113.052|219950.801|115.526 +638118.017|219946.196|114.568 +638123.061|219941.526|114.511 +638128.109|219936.856|114.538 +638133.107|219932.233|114.562 +638138.152|219927.566|114.565 +638143.196|219922.897|114.596 +638148.241|219918.230|114.666 +638153.300|219913.558|115.285 +638158.372|219908.879|116.519 +638163.432|219904.209|117.336 +638168.486|219899.543|118.129 +638173.579|219894.834|118.525 +638178.575|219890.216|119.055 +638183.671|219885.513|119.811 +638188.718|219880.852|120.698 +638193.751|219876.195|120.674 +638198.838|219871.495|121.210 +638203.873|219866.841|121.698 +638208.908|219862.189|122.097 +638213.986|219857.493|122.249 +638219.064|219852.796|122.435 +638224.097|219848.144|122.688 +638229.171|219843.447|122.944 +638234.201|219838.796|122.929 +638249.334|219824.797|123.124 +638254.409|219820.100|123.033 +638259.438|219815.445|122.984 +638264.510|219810.754|123.039 +638269.536|219806.103|123.167 +638274.614|219801.406|123.228 +638279.640|219796.758|123.438 +638284.715|219792.064|123.588 +638289.790|219787.373|123.831 +638294.816|219782.722|124.005 +638299.849|219778.065|123.840 +638304.917|219773.380|124.389 +638309.995|219768.683|124.410 +638315.028|219764.028|124.401 +638320.106|219759.328|124.380 +638325.138|219754.671|124.356 +638335.297|219745.274|124.523 +638340.338|219740.601|124.148 +638345.383|219735.932|123.837 +638350.473|219731.220|123.603 +638355.511|219726.556|123.594 +638360.559|219721.887|123.344 +638365.628|219717.202|123.904 +638370.669|219712.535|123.834 +638375.717|219707.863|123.661 +638380.813|219703.145|123.475 +638385.812|219698.518|123.399 +638390.871|219693.836|123.078 +638395.931|219689.148|122.740 +638400.945|219684.509|122.454 +638406.050|219679.782|122.249 +638411.064|219675.142|122.057 +638416.127|219670.455|121.844 +638421.147|219665.806|121.539 +638426.210|219661.119|121.414 +638431.224|219656.483|121.372 +638436.283|219651.801|121.384 +638441.291|219647.168|121.454 +638446.299|219642.538|121.597 +638451.310|219637.902|121.667 +638456.321|219633.269|121.795 +638461.338|219628.627|121.823 +638466.355|219623.988|121.893 +638471.326|219619.388|121.926 +638476.362|219614.728|121.768 +638481.342|219610.119|121.695 +638486.338|219605.496|121.451 +638491.376|219600.832|121.317 +638496.375|219596.205|121.076 +638501.371|219591.578|120.917 +638506.324|219586.997|120.759 +638511.310|219582.383|120.768 +638516.327|219577.737|120.436 +638521.283|219573.153|120.308 +638526.236|219568.569|120.235 +638531.137|219564.034|120.223 +638541.074|219554.838|119.854 +638545.966|219550.311|120.040 +638550.931|219545.718|119.954 +638555.851|219541.167|119.881 +638560.776|219536.611|119.768 +638565.650|219532.100|119.710 +638570.621|219527.500|119.649 +638580.378|219518.469|119.549 +638585.236|219513.979|119.784 +638590.122|219509.459|119.704 +638595.048|219504.896|119.253 +638599.940|219500.370|119.180 +638624.272|219477.848|118.525 +638633.998|219468.850|118.345 +638638.881|219464.330|118.098 +638643.725|219459.844|117.802 +638640.594|219458.801|117.882 +638635.507|219463.504|118.162 +638630.521|219468.113|118.421 +638625.495|219472.758|118.644 +638620.538|219477.336|118.683 +638610.550|219486.556|118.604 +638605.530|219491.195|118.878 +638600.534|219495.813|118.951 +638595.511|219500.455|119.305 +638590.446|219505.137|119.646 +638585.441|219509.761|119.893 +638580.482|219514.339|119.665 +638570.478|219523.577|119.692 +638565.452|219528.223|119.784 +638560.478|219532.816|119.823 +638555.457|219537.452|119.866 +638550.431|219542.094|119.994 +638545.469|219546.675|119.985 +638540.455|219551.305|120.021 +638535.459|219555.920|119.902 +638530.424|219560.574|120.277 +638525.422|219565.192|120.253 +638520.466|219569.770|120.299 +638515.410|219574.439|120.415 +638510.393|219579.078|120.732 +638505.394|219583.696|120.771 +638500.395|219588.317|120.890 +638495.393|219592.944|121.097 +638490.392|219597.565|121.301 +638485.347|219602.228|121.478 +638480.352|219606.846|121.670 +638475.313|219611.503|121.804 +638470.372|219616.069|121.948 +638465.352|219620.708|121.875 +638460.332|219625.347|121.814 +638455.361|219629.938|121.747 +638450.344|219634.570|121.655 +638445.376|219639.161|121.576 +638440.368|219643.788|121.414 +638435.354|219648.421|121.356 +638430.392|219653.002|121.207 +638425.375|219657.638|121.265 +638420.355|219662.277|121.399 +638415.383|219666.876|121.612 +638410.357|219671.521|121.945 +638405.340|219676.161|122.134 +638400.326|219680.797|122.356 +638395.309|219685.436|122.633 +638390.341|219690.029|122.947 +638385.327|219694.668|123.280 +638380.322|219699.292|123.371 +638375.317|219703.916|123.511 +638370.312|219708.546|123.758 +638365.311|219713.166|123.816 +638360.315|219717.784|123.889 +638355.335|219722.377|123.338 +638350.336|219726.998|123.520 +638345.294|219731.659|123.560 +638340.296|219736.279|123.807 +638335.297|219740.903|124.097 +638330.249|219745.570|124.487 +638325.309|219750.136|124.447 +638320.276|219754.784|124.279 +638315.238|219759.438|124.313 +638310.251|219764.047|124.346 +638305.219|219768.698|124.267 +638300.239|219773.294|123.853 +638295.203|219777.946|123.880 +638290.171|219782.591|123.694 +638285.191|219787.190|123.362 +638280.155|219791.842|123.344 +638275.123|219796.490|123.222 +638270.140|219801.092|123.008 +638265.107|219805.737|122.822 +638260.081|219810.383|122.783 +638255.098|219814.991|122.816 +638250.066|219819.639|122.865 +638245.030|219824.291|122.911 +638240.047|219828.899|123.149 +638234.966|219833.590|122.719 +638229.982|219838.196|122.768 +638224.950|219842.841|122.441 +638219.915|219847.492|122.368 +638214.882|219852.140|122.310 +638209.847|219856.791|122.192 +638204.815|219861.443|122.097 +638199.822|219866.048|121.475 +638194.781|219870.700|121.036 +638189.739|219875.354|120.692 +638184.750|219879.962|120.479 +638179.650|219884.662|119.689 +638174.600|219889.323|119.022 +638169.598|219893.938|118.513 +638164.548|219898.598|118.013 +638159.491|219903.261|117.296 +638154.428|219907.931|116.495 +638149.347|219912.607|114.998 +638144.288|219917.276|114.562 +638139.240|219921.940|114.575 +638134.193|219926.606|114.562 +638129.191|219931.227|114.532 +638124.146|219935.893|114.596 +638119.096|219940.563|114.568 +638114.094|219945.187|114.541 +638109.068|219949.841|115.276 +638104.023|219954.507|115.422 +638099.040|219959.122|115.852 +638094.002|219963.783|116.187 +638089.009|219968.403|116.437 +638083.955|219973.076|116.428 +638078.954|219977.700|116.495 +638073.900|219982.375|116.473 +638068.892|219987.005|116.461 +638063.906|219991.620|116.943 +638058.910|219996.241|117.211 +638053.923|220000.855|117.656 +638048.943|220005.470|118.162 +638043.962|220010.082|118.717 +638038.967|220014.703|119.012 +638034.026|220019.278|119.430 +638029.033|220023.895|119.762 +638024.044|220028.516|120.155 +638019.094|220033.094|120.439 +638014.138|220037.681|120.591 +638009.115|220042.324|120.503 +638004.134|220046.926|120.332 +637999.105|220051.574|120.183 +637994.167|220056.137|120.030 +637989.181|220060.746|119.863 +637984.200|220065.348|119.835 +637979.204|220069.966|119.567 +637974.215|220074.578|119.464 +637969.314|220079.107|119.253 +637964.388|220083.670|120.052 +637959.389|220088.284|119.244 +637954.397|220092.899|119.171 +637949.459|220097.465|119.241 +637944.561|220101.991|119.217 +637934.752|220111.068|119.640 +637929.833|220115.619|119.982 +637924.993|220120.103|120.695 +637920.149|220124.592|121.338 +637915.294|220129.085|121.908 +637910.448|220133.578|122.533 +637905.589|220138.074|123.069 +637900.743|220142.557|123.194 +637895.845|220147.087|123.322 +637891.029|220151.540|123.331 +637886.124|220156.075|123.426 +637881.299|220160.534|123.362 +637876.380|220165.085|123.350 +637871.549|220169.550|123.271 +637866.733|220174.004|123.359 +637861.899|220178.472|123.322 +637857.028|220182.977|123.392 +637852.246|220187.400|123.395 +637847.360|220191.917|123.389 +637842.584|220196.333|123.490 +637837.765|220200.792|123.685 +637832.934|220205.255|123.331 +637828.130|220209.696|123.261 +637823.317|220214.146|123.136 +637818.498|220218.596|123.005 +637813.710|220223.022|122.707 +637808.833|220227.527|122.539 +637804.048|220231.949|122.320 +637799.265|220236.369|122.173 +637794.465|220240.807|121.881 +637789.670|220245.235|121.682 +637784.922|220249.622|121.487 +637765.814|220267.279|120.421 +637761.056|220271.671|119.881 +637751.506|220280.492|119.028 +637746.764|220284.875|118.699 +637737.260|220293.656|117.994 +637732.593|220297.969|117.949 +637718.411|220311.075|116.955 +637699.675|220328.391|116.068 +637685.569|220341.418|114.818 +637676.205|220350.072|114.038 +637666.766|220358.780|112.575 +637657.423|220367.415|111.822 +637648.173|220375.964|111.453 +637629.671|220393.052|109.762 +637615.733|220405.920|107.933 +637611.170|220410.136|107.589 +637597.210|220423.020|105.385 +637592.638|220427.241|104.790 +637588.103|220431.429|104.431 +637574.691|220443.834|104.556 +637570.193|220447.995|104.477 +637561.289|220456.228|104.345 +637556.809|220460.370|104.150 +637552.337|220464.500|104.035 +637548.046|220468.478|104.623 +637543.782|220472.431|105.357 +637518.270|220496.071|109.295 +637505.273|220508.092|109.414 +637492.444|220519.958|109.762 +637453.183|220556.205|104.574 +637448.900|220560.165|104.294 +637444.703|220564.045|104.193 +637440.533|220567.900|104.236 +637432.215|220575.594|104.214 +637428.055|220579.440|104.108 +637423.916|220583.265|104.114 +637419.722|220587.133|103.654 +637399.379|220605.936|103.949 +637395.435|220609.588|104.452 +637391.284|220613.416|104.080 +637379.351|220624.450|104.598 +637375.440|220628.065|104.864 +637371.319|220631.869|104.233 +637363.580|220639.026|104.952 +637359.700|220642.616|105.165 +637348.106|220653.336|105.644 +637344.262|220656.887|105.629 +637325.282|220674.431|106.488 +637321.521|220677.909|106.662 +637314.160|220684.718|107.265 +637310.475|220688.126|107.564 +637302.983|220695.048|107.500 +637299.219|220698.523|107.317 +637295.537|220701.924|107.259 +637291.812|220705.369|107.244 +637287.776|220709.078|105.836 +637284.448|220712.169|106.982 +637280.800|220715.537|106.891 +637277.419|220718.673|107.845 +637273.920|220721.907|108.143 +637270.394|220725.171|108.543 +637266.882|220728.418|108.820 +637263.472|220731.575|109.280 +637259.973|220734.809|109.405 +637256.528|220737.997|109.753 +637253.200|220741.079|110.338 +637249.780|220744.243|110.591 +637242.953|220750.552|110.978 +637236.418|220756.602|112.066 +637460.035|220547.214|105.699 +637464.664|220542.946|107.467 +637473.257|220534.997|108.125 +637477.576|220531.001|108.216 +637499.366|220510.842|109.710 +637512.299|220498.860|109.250 +637520.964|220490.832|108.634 +637546.674|220466.978|104.815 +637550.990|220462.970|104.111 +637555.413|220458.876|103.983 +637559.930|220454.697|104.385 +637568.922|220446.373|104.477 +637573.460|220442.176|104.784 +637577.877|220438.083|104.443 +637582.351|220433.934|104.150 +637586.923|220429.704|104.440 +637600.764|220416.911|106.122 +637619.500|220399.602|109.241 +637628.784|220391.012|109.884 +637633.399|220386.742|110.073 +637638.148|220382.353|110.798 +637647.459|220373.736|111.505 +637652.099|220369.439|111.639 +637661.493|220360.743|112.389 +637670.935|220352.007|113.557 +637675.711|220347.588|114.062 +637708.834|220316.928|116.605 +637718.380|220308.094|117.367 +637723.129|220303.699|117.607 +637727.945|220299.240|118.010 +637732.648|220294.881|118.001 +637737.403|220290.474|118.019 +637746.977|220281.616|118.951 +637751.835|220277.121|119.445 +637756.645|220272.671|119.979 +637766.289|220263.743|120.564 +637771.111|220259.281|120.893 +637775.982|220254.773|121.253 +637780.776|220250.332|121.445 +637785.620|220245.848|121.631 +637790.414|220241.404|121.871 +637795.306|220236.878|122.121 +637800.146|220232.397|122.368 +637805.026|220227.877|122.579 +637809.857|220223.403|122.819 +637814.734|220218.888|123.048 +637819.559|220214.420|123.286 +637824.469|220209.872|123.450 +637829.313|220205.386|123.459 +637834.220|220200.838|123.655 +637839.078|220196.339|123.868 +637843.940|220191.834|123.670 +637848.759|220187.366|123.569 +637853.633|220182.852|123.517 +637858.503|220178.338|123.505 +637863.420|220173.781|123.450 +637868.288|220169.270|123.432 +637873.201|220164.719|123.395 +637878.075|220160.205|123.459 +637882.985|220155.652|123.469 +637887.889|220151.110|123.389 +637892.790|220146.565|123.350 +637897.689|220142.027|123.271 +637902.575|220137.498|123.066 +637907.497|220132.935|122.771 +637912.389|220128.393|122.149 +637917.199|220123.925|121.149 +637926.998|220114.830|120.085 +637931.970|220110.221|119.851 +637936.810|220105.731|119.171 +637941.784|220101.117|119.025 +637946.786|220096.487|119.186 +637951.718|220091.915|119.128 +637956.695|220087.303|119.031 +637961.630|220082.731|119.043 +637966.665|220078.065|119.140 +637971.655|220073.447|119.272 +637976.641|220068.826|119.436 +637981.628|220064.208|119.598 +637986.611|220059.594|119.738 +637991.592|220054.982|119.851 +637996.615|220050.325|119.973 +638001.601|220045.710|120.223 +638006.624|220041.056|120.393 +638011.599|220036.450|120.527 +638016.597|220031.811|120.375 +638021.593|220027.178|120.158 +638026.580|220022.551|119.802 +638031.569|220017.924|119.491 +638036.553|220013.300|119.076 +638041.539|220008.674|118.756 +638046.520|220004.053|118.275 +638051.497|219999.432|117.772 +638056.478|219994.811|117.333 +638061.510|219990.142|116.946 +638066.496|219985.515|116.644 +638071.541|219980.839|116.507 +638076.539|219976.206|116.473 +638081.535|219971.573|116.358 +638086.628|219966.852|116.367 +638091.615|219962.225|116.089 +638096.641|219957.562|115.605 +638101.673|219952.892|115.269 +638106.648|219948.277|114.611 +638111.689|219943.602|114.556 +638116.737|219938.926|114.602 +638121.778|219934.250|114.544 +638126.822|219929.575|114.632 +638131.861|219924.905|114.553 +638136.856|219920.275|114.565 +638141.944|219915.557|114.572 +638146.994|219910.884|114.858 +638152.029|219906.236|116.662 +638157.129|219901.518|117.309 +638162.182|219896.845|118.107 +638167.181|219892.218|118.644 +638172.271|219887.506|119.153 +638177.313|219882.840|119.762 +638182.354|219878.176|120.475 +638187.389|219873.513|120.774 +638192.422|219868.852|121.018 +638197.457|219864.192|121.524 +638202.492|219859.532|122.210 +638207.518|219854.874|122.329 +638212.545|219850.217|122.341 +638217.571|219845.557|122.353 +638227.626|219836.245|122.804 +638232.698|219831.539|122.530 +638237.675|219826.930|123.005 +638242.747|219822.224|122.765 +638252.800|219812.909|122.743 +638257.826|219808.249|122.688 +638262.895|219803.552|122.722 +638267.872|219798.940|122.893 +638272.944|219794.237|122.996 +638277.970|219789.586|123.274 +638282.996|219784.923|123.139 +638288.016|219780.277|123.722 +638298.069|219770.963|123.880 +638303.137|219766.269|124.334 +638308.118|219761.654|124.356 +638313.147|219756.991|124.270 +638318.222|219752.284|124.267 +638323.202|219747.670|124.374 +638328.235|219743.006|124.255 +638333.273|219738.331|123.929 +638338.263|219733.701|123.679 +638343.298|219729.034|123.597 +638348.330|219724.371|123.685 +638353.320|219719.744|123.618 +638358.346|219715.090|123.929 +638363.384|219710.417|123.837 +638368.380|219705.787|123.703 +638373.424|219701.108|123.539 +638378.475|219696.424|123.258 +638383.468|219691.797|123.267 +638388.515|219687.115|123.075 +638393.526|219682.470|122.725 +638398.540|219677.819|122.341 +638403.594|219673.131|122.143 +638408.553|219668.534|121.999 +638413.622|219663.831|121.597 +638418.639|219659.180|121.320 +638423.653|219654.529|121.137 +638428.657|219649.893|121.192 +638433.662|219645.260|121.308 +638438.667|219640.621|121.393 +638443.672|219635.985|121.509 +638448.628|219631.394|121.652 +638453.639|219626.749|121.707 +638458.647|219622.110|121.832 +638463.615|219617.508|121.862 +638468.629|219612.863|121.923 +638473.603|219608.254|121.902 +638478.587|219603.630|121.710 +638483.619|219598.964|121.573 +638488.609|219594.340|121.396 +638493.595|219589.719|121.305 +638498.551|219585.123|120.978 +638503.590|219580.450|120.860 +638508.546|219575.854|120.610 +638513.532|219571.233|120.649 +638518.525|219566.606|120.591 +638523.478|219562.016|120.491 +638528.501|219557.355|120.094 +638533.433|219552.786|120.311 +638538.392|219548.190|120.207 +638543.390|219543.560|120.241 +638548.298|219539.009|120.223 +638553.263|219534.407|120.110 +638558.225|219529.811|120.098 +638563.187|219525.211|120.088 +638568.113|219520.645|119.966 +638573.084|219516.037|119.902 +638578.004|219511.480|119.918 +638582.920|219506.923|119.973 +638592.826|219497.736|119.393 +638597.776|219493.146|119.186 +638602.668|219488.608|119.083 +638612.473|219479.521|118.811 +638617.423|219474.931|118.714 +638622.319|219470.396|118.711 +638627.180|219465.888|118.574 +638632.093|219461.331|118.452 +638636.979|219456.802|118.153 +638631.636|219458.490|118.366 +638626.665|219463.093|118.540 +638621.636|219467.750|118.836 +638616.640|219472.374|118.845 +638611.638|219477.001|118.924 +638601.647|219486.248|119.046 +638596.593|219490.924|119.223 +638591.576|219495.569|119.592 +638581.484|219504.914|120.018 +638576.464|219509.557|119.966 +638571.435|219514.208|120.049 +638566.412|219518.859|120.134 +638561.343|219523.547|120.165 +638556.277|219528.235|120.207 +638546.195|219537.568|120.402 +638541.190|219542.195|120.366 +638536.139|219546.870|120.360 +638531.083|219551.549|120.442 +638526.041|219556.209|120.332 +638520.924|219560.949|120.655 +638515.870|219565.625|120.774 +638510.822|219570.297|120.860 +638505.738|219575.000|120.817 +638500.691|219579.667|120.939 +638495.640|219584.339|121.128 +638490.544|219589.052|121.350 +638485.454|219593.758|121.484 +638480.412|219598.421|121.664 +638475.325|219603.127|121.832 +638470.247|219607.821|121.881 +638465.176|219612.506|121.850 +638460.107|219617.194|121.838 +638455.090|219621.827|121.713 +638450.024|219626.509|121.676 +638444.964|219631.187|121.564 +638439.911|219635.854|121.341 +638434.848|219640.532|121.301 +638429.791|219645.205|121.180 +638424.735|219649.878|121.088 +638419.672|219654.559|121.146 +638414.603|219659.247|121.369 +638409.531|219663.941|121.759 +638404.462|219668.629|122.051 +638399.357|219673.350|122.164 +638394.288|219678.041|122.582 +638389.225|219682.723|122.853 +638384.166|219687.405|123.197 +638379.115|219692.074|123.264 +638374.016|219696.786|123.399 +638369.011|219701.416|123.645 +638363.915|219706.132|123.825 +638358.870|219710.795|123.908 +638353.829|219715.455|123.920 +638348.793|219720.107|123.749 +638343.755|219724.764|123.682 +638338.717|219729.418|123.652 +638333.678|219734.079|123.734 +638328.634|219738.742|123.969 +638323.593|219743.406|124.228 +638318.557|219748.060|124.249 +638313.525|219752.711|124.161 +638308.535|219757.326|124.334 +638303.503|219761.977|124.350 +638298.480|219766.613|123.697 +638293.445|219771.271|123.996 +638288.416|219775.916|123.749 +638283.435|219780.512|123.280 +638278.406|219785.157|122.978 +638273.374|219789.808|123.051 +638268.393|219794.414|122.856 +638263.361|219799.059|122.701 +638258.332|219803.710|122.573 +638253.354|219808.310|122.597 +638248.368|219812.918|122.542 +638243.339|219817.570|122.615 +638238.355|219822.175|122.746 +638233.326|219826.827|122.838 +638228.339|219831.432|122.612 +638208.363|219849.900|122.685 +638203.373|219854.505|122.335 +638198.390|219859.111|122.210 +638193.394|219863.720|121.353 +638188.353|219868.371|120.777 +638183.415|219872.937|120.853 +638178.370|219877.591|120.201 +638173.417|219882.160|119.476 +638168.419|219886.775|119.089 +638163.420|219891.389|118.638 +638158.464|219895.964|117.979 +638153.450|219900.588|117.114 +638148.439|219905.209|116.422 +638143.401|219909.848|114.788 +638138.396|219914.469|114.550 +638133.446|219919.047|114.565 +638128.493|219923.622|114.544 +638123.494|219928.243|114.538 +638118.541|219932.818|114.565 +638113.536|219937.442|114.550 +638108.583|219942.017|114.584 +638103.575|219946.641|114.526 +638098.601|219951.246|115.224 +638093.691|219955.782|115.254 +638088.710|219960.390|115.858 +638083.766|219964.962|116.147 +638078.765|219969.583|116.245 +638073.812|219974.161|116.352 +638068.846|219978.745|116.248 +638063.899|219983.317|116.577 +638058.956|219987.889|116.897 +638053.969|219992.504|117.345 +638049.028|219997.073|117.757 +638044.136|220001.596|118.226 +638039.198|220006.165|118.674 +638034.258|220010.734|119.080 +638029.311|220015.306|119.439 +638024.364|220019.881|119.738 +638019.511|220024.368|120.040 +638014.506|220028.995|120.198 +638009.593|220033.533|120.341 +638004.658|220038.087|120.158 +637999.681|220042.686|120.058 +637994.737|220047.249|119.802 +637989.799|220051.809|119.643 +637984.868|220056.366|119.579 +637979.918|220060.932|119.342 +637974.977|220065.498|119.189 +637970.030|220070.064|119.025 +637965.092|220074.626|119.009 +637960.154|220079.186|119.000 +637955.208|220083.755|118.918 +637950.315|220088.275|118.930 +637945.375|220092.838|118.964 +637940.467|220097.371|118.830 +637935.527|220101.936|118.900 +637930.662|220106.435|119.336 +637925.834|220110.907|120.189 +637920.951|220115.418|120.411 +637911.246|220124.400|121.573 +637906.442|220128.850|122.719 +637901.572|220133.352|123.118 +637896.719|220137.839|123.191 +637891.867|220142.323|123.298 +637886.972|220146.846|123.475 +637882.110|220151.339|123.523 +637877.240|220155.837|123.493 +637872.369|220160.336|123.493 +637867.541|220164.796|123.456 +637862.679|220169.288|123.600 +637857.854|220173.748|123.618 +637852.983|220178.246|123.697 +637848.155|220182.709|123.752 +637843.334|220187.165|123.874 +637838.566|220191.569|124.081 +637833.723|220196.044|124.042 +637828.883|220200.515|124.057 +637824.079|220204.950|124.008 +637819.251|220209.406|123.749 +637814.429|220213.859|123.560 +637809.586|220218.331|123.225 +637804.746|220222.796|122.947 +637799.945|220227.228|122.612 +637795.102|220231.699|122.362 +637790.310|220236.122|122.173 +637785.461|220240.599|121.926 +637780.703|220244.992|121.646 +637775.848|220249.475|121.390 +637771.059|220253.892|120.942 +637761.491|220262.725|120.555 +637756.712|220267.138|120.247 +637751.887|220271.589|119.640 +637747.105|220276.005|119.360 +637732.791|220289.218|118.223 +637723.327|220297.960|117.936 +637704.360|220315.474|116.659 +637680.911|220337.130|115.562 +637652.644|220363.212|112.173 +637643.354|220371.789|111.578 +637633.972|220380.445|110.518 +637601.541|220410.373|107.229 +637587.630|220423.205|105.135 +637578.541|220431.597|104.644 +637574.115|220435.687|104.665 +637569.595|220439.860|104.470 +637538.646|220468.468|105.153 +637534.360|220472.437|105.790 +637525.878|220480.295|107.308 +637521.735|220484.135|108.466 +637513.094|220492.124|108.963 +637508.833|220496.065|109.277 +637500.192|220504.054|109.335 +637491.606|220511.991|109.494 +637469.913|220532.016|107.957 +637443.722|220556.166|103.940 +637439.601|220559.979|104.208 +637431.286|220567.660|104.196 +637427.116|220571.509|104.053 +637423.026|220575.295|104.266 +637418.957|220579.059|104.355 +637410.672|220586.719|104.150 +637394.347|220601.816|103.864 +637370.615|220623.783|104.992 +637362.715|220631.092|104.989 +637358.835|220634.679|105.205 +637351.035|220641.900|105.485 +637339.529|220652.547|105.927 +637309.881|220680.006|108.732 +637294.851|220693.896|107.790 +637291.093|220697.368|107.427 +637287.475|220700.711|107.418 +637283.845|220704.073|107.573 +637280.001|220707.618|106.723 +637276.228|220711.099|105.949 +637272.875|220714.211|107.009 +637269.580|220717.271|108.091 +637266.148|220720.453|108.448 +637262.621|220723.715|108.661 +637259.253|220726.842|109.271 +637242.480|220742.384|111.709 +637232.348|220751.756|112.017 +637462.982|220536.518|106.796 +637475.979|220524.479|108.247 +637480.350|220520.428|108.637 +637506.245|220496.409|109.222 +637514.792|220488.469|108.521 +637523.381|220480.487|107.582 +637527.578|220476.582|106.738 +637536.122|220468.636|105.360 +637544.748|220460.620|104.160 +637549.201|220456.487|104.208 +637562.615|220444.045|104.461 +637567.157|220439.832|104.507 +637571.659|220435.657|104.632 +637576.075|220431.554|104.306 +637580.577|220427.375|104.199 +637585.216|220423.081|104.870 +637589.846|220418.792|105.528 +637594.497|220414.488|106.330 +637613.218|220397.157|109.341 +637617.833|220392.881|109.792 +637622.454|220388.592|109.692 +637627.056|220384.328|110.103 +637631.744|220379.988|110.761 +637636.414|220375.660|111.033 +637641.062|220371.353|111.197 +637645.737|220367.025|111.862 +637650.447|220362.663|112.133 +637655.119|220358.338|112.514 +637664.553|220349.605|113.621 +637674.017|220340.845|114.715 +637683.554|220332.015|115.769 +637688.263|220327.650|115.937 +637697.675|220318.930|116.309 +637702.452|220314.507|116.659 +637707.216|220310.094|116.964 +637726.235|220292.477|118.177 +637731.018|220288.045|118.412 +637735.782|220283.634|118.866 +637745.389|220274.734|119.393 +637750.205|220270.278|119.954 +637755.060|220265.782|120.506 +637774.235|220248.018|121.402 +637779.039|220243.568|121.667 +637783.891|220239.072|121.969 +637788.680|220234.634|122.182 +637793.563|220230.111|122.380 +637798.360|220225.667|122.716 +637803.246|220221.141|122.999 +637808.077|220216.666|123.261 +637812.963|220212.140|123.621 +637817.791|220207.669|123.911 +637822.662|220203.158|124.176 +637827.508|220198.665|124.252 +637832.385|220194.142|124.203 +637837.219|220189.661|124.225 +637842.020|220185.205|123.953 +637846.881|220180.697|123.813 +637851.743|220176.189|123.682 +637856.565|220171.718|123.688 +637861.475|220167.164|123.612 +637866.328|220162.665|123.441 +637871.244|220158.108|123.466 +637876.112|220153.597|123.517 +637881.016|220149.046|123.478 +637885.920|220144.502|123.444 +637890.812|220139.963|123.301 +637895.701|220135.431|123.161 +637900.612|220130.880|123.258 +637905.443|220126.391|122.505 +637910.274|220121.904|121.768 +637915.135|220117.381|120.844 +637919.997|220112.873|120.418 +637924.916|220108.307|120.177 +637929.781|220103.787|119.244 +637934.682|220099.236|118.766 +637939.669|220094.612|118.772 +637944.552|220090.086|118.677 +637949.541|220085.462|118.750 +637954.470|220080.890|118.714 +637959.463|220076.263|118.881 +637964.437|220071.652|118.823 +637969.417|220067.034|118.872 +637974.407|220062.410|119.083 +637979.396|220057.789|119.317 +637984.386|220053.165|119.579 +637989.357|220048.557|119.598 +637994.380|220043.902|119.744 +637999.407|220039.245|119.927 +638004.384|220034.633|120.137 +638009.398|220029.988|120.168 +638014.406|220025.346|120.131 +638019.350|220020.759|119.869 +638024.342|220016.129|119.607 +638029.329|220011.505|119.265 +638034.312|220006.878|118.903 +638039.302|220002.251|118.598 +638044.276|219997.637|118.037 +638049.303|219992.970|117.546 +638054.286|219988.346|117.193 +638059.266|219983.726|116.723 +638064.299|219979.056|116.409 +638069.294|219974.426|116.272 +638074.296|219969.790|116.281 +638079.338|219965.118|116.141 +638084.364|219960.451|115.727 +638089.341|219955.833|115.160 +638094.383|219951.158|115.090 +638099.360|219946.537|114.593 +638104.401|219941.864|114.495 +638109.449|219937.189|114.550 +638114.490|219932.513|114.538 +638119.535|219927.840|114.556 +638124.576|219923.168|114.532 +638129.621|219918.492|114.605 +638134.659|219913.823|114.538 +638139.700|219909.150|114.645 +638144.766|219904.468|115.669 +638149.838|219899.784|116.970 +638154.892|219895.111|117.744 +638159.991|219890.393|118.631 +638165.032|219885.726|119.064 +638170.071|219881.063|119.396 +638175.112|219876.396|120.119 +638180.202|219871.690|120.832 +638185.228|219867.030|120.716 +638190.264|219862.369|121.262 +638195.351|219857.666|122.152 +638225.553|219829.676|122.475 +638230.577|219825.019|122.679 +638235.603|219820.362|122.554 +638240.675|219815.659|122.585 +638245.652|219811.044|122.481 +638250.727|219806.344|122.469 +638256.131|219801.336|122.569 +638260.773|219797.032|122.569 +638265.796|219792.378|122.737 +638270.819|219787.724|122.963 +638280.872|219778.412|123.179 +638285.892|219773.761|123.557 +638290.915|219769.109|123.783 +638295.941|219764.452|123.914 +638300.967|219759.795|124.008 +638305.942|219755.186|124.243 +638311.017|219750.483|124.215 +638316.000|219745.862|124.173 +638321.032|219741.199|124.066 +638326.071|219736.523|123.639 +638331.051|219731.906|123.731 +638336.038|219727.282|123.630 +638341.067|219722.624|123.801 +638346.047|219718.013|124.045 +638351.083|219713.340|123.917 +638356.069|219708.719|123.941 +638361.062|219704.092|123.865 +638366.054|219699.459|123.703 +638371.053|219694.827|123.484 +638376.052|219690.191|123.283 +638381.047|219685.558|123.210 +638386.004|219680.958|122.981 +638391.011|219676.310|122.618 +638396.016|219671.665|122.405 +638400.985|219667.053|122.021 +638405.989|219662.411|121.865 +638410.958|219657.799|121.530 +638415.929|219653.188|121.231 +638420.940|219648.536|121.082 +638425.899|219643.937|121.067 +638430.852|219639.344|121.161 +638435.808|219634.750|121.256 +638440.764|219630.154|121.381 +638445.714|219625.570|121.643 +638450.673|219620.970|121.737 +638455.635|219616.371|121.826 +638460.552|219611.811|121.853 +638465.517|219607.209|121.914 +638470.442|219602.640|121.878 +638475.420|219598.025|121.829 +638480.358|219593.441|121.625 +638485.292|219588.866|121.530 +638490.279|219584.239|121.414 +638495.223|219579.652|121.228 +638500.176|219575.055|120.960 +638505.114|219570.474|120.933 +638510.042|219565.905|121.052 +638514.983|219561.324|121.070 +638519.912|219556.746|120.582 +638524.852|219552.168|120.655 +638529.805|219547.574|120.567 +638534.691|219543.042|120.738 +638539.657|219538.436|120.539 +638544.564|219533.886|120.527 +638549.471|219529.335|120.524 +638554.397|219524.763|120.317 +638559.307|219520.209|120.305 +638564.220|219515.656|120.332 +638569.137|219511.093|120.308 +638574.062|219506.524|120.223 +638578.994|219501.949|120.088 +638583.862|219497.438|120.171 +638588.790|219492.866|120.146 +638593.780|219488.230|119.473 +638598.678|219483.685|119.320 +638603.589|219479.128|119.046 +638608.484|219474.590|118.988 +638613.400|219470.033|119.208 +638618.316|219465.467|118.958 +638623.230|219460.907|118.781 +638622.245|219458.341|118.759 +638617.378|219462.849|118.933 +638612.400|219467.454|119.223 +638602.558|219476.559|119.287 +638597.599|219481.146|119.485 +638592.652|219485.721|119.582 +638582.688|219494.944|120.162 +638577.717|219499.541|120.094 +638572.776|219504.113|120.268 +638567.793|219508.721|120.381 +638562.828|219513.315|120.366 +638557.859|219517.911|120.369 +638552.891|219522.504|120.402 +638547.874|219527.147|120.482 +638542.857|219531.786|120.582 +638537.892|219536.382|120.710 +638527.830|219545.688|120.789 +638522.838|219550.302|120.698 +638517.787|219554.978|120.805 +638512.791|219559.599|120.802 +638507.744|219564.268|120.893 +638502.696|219568.938|121.015 +638497.655|219573.604|121.064 +638492.605|219578.283|121.308 +638487.566|219582.946|121.405 +638482.476|219587.659|121.542 +638477.444|219592.319|121.646 +638472.357|219597.031|121.841 +638467.285|219601.725|121.832 +638462.213|219606.416|121.832 +638457.147|219611.104|121.753 +638452.081|219615.795|121.747 +638447.022|219620.473|121.622 +638441.968|219625.149|121.426 +638436.866|219629.870|121.247 +638431.763|219634.592|121.119 +638426.713|219639.264|120.939 +638421.604|219643.992|120.948 +638416.493|219648.722|121.055 +638411.427|219653.416|121.295 +638406.309|219658.159|121.631 +638401.198|219662.890|121.865 +638396.135|219667.580|122.137 +638391.024|219672.317|122.478 +638385.866|219677.093|122.844 +638380.813|219681.775|123.054 +638375.713|219686.496|123.225 +638370.568|219691.260|123.383 +638365.521|219695.933|123.520 +638360.379|219700.697|123.783 +638355.289|219705.409|123.856 +638350.202|219710.118|123.865 +638345.066|219714.870|123.938 +638339.982|219719.579|123.975 +638334.910|219724.267|123.493 +638329.823|219728.979|123.716 +638324.693|219733.728|123.740 +638319.606|219738.437|123.959 +638314.525|219743.144|124.066 +638309.395|219747.892|124.173 +638304.317|219752.592|124.176 +638299.242|219757.283|123.865 +638294.118|219762.026|123.804 +638289.040|219766.729|123.840 +638283.969|219771.417|123.414 +638278.848|219776.153|123.085 +638273.773|219780.850|122.978 +638268.698|219785.541|122.603 +638263.623|219790.241|122.591 +638258.499|219794.981|122.454 +638253.476|219799.629|122.374 +638248.353|219804.369|122.274 +638243.275|219809.069|122.344 +638238.245|219813.726|122.441 +638233.122|219818.469|122.405 +638228.047|219823.166|122.441 +638223.018|219827.820|122.338 +638192.702|219855.877|122.027 +638187.658|219860.534|121.146 +638182.577|219865.234|120.777 +638177.590|219869.849|120.750 +638172.546|219874.510|120.030 +638167.455|219879.213|119.393 +638162.460|219883.830|119.055 +638157.418|219888.494|118.714 +638152.359|219893.166|117.696 +638147.351|219897.790|116.976 +638142.276|219902.472|115.590 +638137.256|219907.108|114.602 +638132.260|219911.732|114.614 +638127.216|219916.401|114.596 +638122.263|219920.982|114.514 +638117.270|219925.609|114.562 +638112.274|219930.236|114.581 +638107.273|219934.863|114.523 +638102.326|219939.447|114.593 +638097.324|219944.077|114.544 +638092.374|219948.661|114.608 +638087.396|219953.279|115.126 +638082.507|219957.808|115.504 +638077.530|219962.426|116.086 +638072.580|219967.010|116.175 +638067.624|219971.598|116.102 +638062.726|219976.136|116.330 +638057.785|219980.717|116.629 +638052.850|219985.289|117.092 +638047.961|219989.822|117.476 +638043.027|219994.397|117.930 +638038.150|219998.923|118.531 +638033.255|220003.458|118.851 +638028.314|220008.037|119.162 +638023.468|220012.529|119.470 +638018.524|220017.110|119.781 +638013.616|220021.655|119.906 +638008.709|220026.200|120.043 +638003.790|220030.756|119.997 +637998.907|220035.274|119.817 +637993.929|220039.882|119.646 +637989.043|220044.405|119.491 +637984.115|220048.968|119.403 +637979.232|220053.488|119.332 +637974.282|220058.070|118.973 +637969.375|220062.608|118.634 +637964.480|220067.140|118.446 +637959.551|220071.703|118.485 +637954.702|220076.190|118.375 +637949.761|220080.768|118.290 +637944.866|220085.297|118.223 +637940.025|220089.781|118.287 +637935.167|220094.286|118.677 +637930.311|220098.788|119.162 +637925.529|220103.223|119.951 +637920.677|220107.725|120.442 +637915.873|220112.181|120.960 +637911.066|220116.637|121.460 +637906.214|220121.136|122.015 +637901.493|220125.522|122.917 +637896.686|220129.978|123.438 +637891.864|220134.440|123.292 +637886.972|220138.973|123.423 +637882.168|220143.423|123.496 +637877.316|220147.919|123.594 +637872.500|220152.378|123.588 +637867.632|220156.883|123.584 +637862.862|220161.303|123.591 +637858.001|220165.804|123.679 +637853.236|220170.218|123.798 +637848.372|220174.723|123.892 +637843.605|220179.139|124.017 +637838.813|220183.580|124.371 +637834.046|220187.997|124.532 +637829.185|220192.496|124.279 +637824.384|220196.940|124.173 +637819.538|220201.426|124.127 +637814.795|220205.819|124.145 +637809.982|220210.275|124.017 +637805.133|220214.761|123.572 +637800.338|220219.193|123.240 +637795.489|220223.680|122.874 +637790.697|220228.115|122.615 +637785.909|220232.547|122.380 +637781.108|220236.991|122.097 +637776.308|220241.432|121.847 +637771.547|220245.836|121.558 +637766.752|220250.274|121.381 +637752.433|220263.520|120.430 +637738.083|220276.785|119.147 +637728.549|220285.603|118.549 +637723.855|220289.944|118.299 +637719.069|220294.366|117.741 +637714.348|220298.737|117.684 +637686.062|220324.898|116.071 +637681.378|220329.229|115.760 +637662.486|220346.685|113.447 +637657.777|220351.041|113.102 +637653.098|220355.366|112.666 +637648.426|220359.685|112.304 +637639.041|220368.360|111.386 +637629.799|220376.909|110.838 +637606.674|220398.288|108.878 +637602.044|220402.561|108.125 +637592.687|220411.205|106.717 +637588.121|220415.427|106.119 +637583.467|220419.725|105.339 +637578.824|220424.013|104.656 +637574.338|220428.162|104.598 +637569.818|220432.343|104.352 +637565.432|220436.409|104.882 +637560.908|220440.594|104.669 +637556.239|220444.901|103.687 +637547.439|220453.052|104.150 +637543.056|220457.112|104.230 +637534.360|220465.167|105.071 +637525.865|220473.053|106.732 +637513.070|220484.915|108.509 +637495.839|220500.869|109.064 +637487.229|220508.842|109.070 +637461.062|220533.025|106.442 +637447.964|220545.126|104.480 +637443.624|220549.134|103.928 +637439.457|220552.990|103.949 +637435.352|220556.793|104.266 +637427.140|220564.401|104.952 +637390.138|220598.624|104.763 +637370.195|220617.074|105.098 +637358.365|220628.013|105.293 +637350.474|220635.310|105.171 +637346.707|220638.800|105.650 +637339.071|220645.865|106.238 +637335.283|220649.371|106.452 +637331.506|220652.867|106.720 +637327.708|220656.381|106.912 +637323.959|220659.853|107.317 +637320.204|220663.327|107.497 +637316.681|220666.595|108.396 +637309.338|220673.395|109.256 +637298.121|220683.767|109.292 +637290.480|220690.820|108.241 +637286.734|220694.277|107.723 +637275.883|220704.314|107.963 +637271.848|220708.026|106.388 +637268.233|220711.370|106.442 +637265.145|220714.244|108.119 +637258.211|220720.663|108.786 +637254.925|220723.708|109.509 +637251.523|220726.860|110.015 +637228.112|220748.531|112.206 +637460.821|220531.300|106.220 +637469.557|220523.204|107.363 +637482.642|220511.073|108.640 +637487.019|220507.017|109.119 +637495.574|220499.070|108.866 +637499.906|220495.050|108.899 +637517.172|220479.011|108.155 +637534.104|220463.253|104.812 +637538.377|220459.276|104.150 +637542.770|220455.194|103.846 +637556.117|220442.807|103.980 +637560.658|220438.595|104.294 +637569.531|220430.356|104.102 +637574.097|220426.119|104.327 +637578.736|220421.822|104.989 +637601.986|220400.288|108.783 +637606.586|220396.020|109.091 +637611.194|220391.747|109.484 +637615.839|220387.440|109.826 +637625.151|220378.808|110.691 +637639.074|220365.894|111.633 +637643.777|220361.526|111.871 +637653.144|220352.839|112.791 +637662.626|220344.049|113.919 +637672.087|220335.277|115.044 +637681.527|220326.517|115.818 +637690.976|220317.751|116.416 +637700.452|220308.957|116.961 +637709.925|220300.167|117.601 +637714.692|220295.744|118.004 +637719.426|220291.352|118.186 +637738.522|220273.628|119.305 +637743.325|220269.174|119.784 +637757.761|220255.782|120.826 +637762.558|220251.335|121.366 +637767.392|220246.845|121.475 +637772.193|220242.389|121.716 +637777.000|220237.929|122.051 +637781.837|220233.440|122.237 +637786.686|220228.941|122.566 +637791.487|220224.488|122.923 +637796.376|220219.949|123.234 +637801.210|220215.463|123.533 +637806.105|220210.924|123.959 +637810.909|220206.462|124.051 +637815.740|220201.975|123.962 +637820.598|220197.464|124.148 +637825.436|220192.974|124.161 +637830.276|220188.479|124.246 +637835.192|220183.919|124.593 +637839.941|220179.502|124.322 +637844.836|220174.955|124.060 +637849.640|220170.489|123.886 +637854.501|220165.975|123.807 +637859.311|220161.507|123.728 +637864.215|220156.953|123.630 +637869.077|220152.436|123.627 +637873.987|220147.876|123.642 +637878.843|220143.368|123.612 +637883.732|220138.827|123.435 +637888.624|220134.279|123.341 +637893.540|220129.716|123.508 +637898.408|220125.190|123.185 +637903.221|220120.709|122.252 +637908.134|220116.143|121.911 +637912.950|220111.669|121.548 +637917.808|220107.142|120.625 +637922.719|220102.580|120.250 +637927.596|220098.038|119.543 +637932.482|220093.494|118.900 +637937.377|220088.943|118.385 +637942.327|220084.340|117.964 +637947.210|220079.805|117.943 +637952.184|220075.184|117.836 +637957.173|220070.551|118.001 +637962.157|220065.924|118.101 +637967.137|220061.300|118.156 +637972.097|220056.701|118.619 +637977.150|220052.013|119.107 +637982.128|220047.395|119.226 +637987.105|220042.772|119.387 +637992.125|220038.114|119.479 +637997.099|220033.497|119.653 +638002.119|220028.836|119.799 +638007.085|220024.228|119.875 +638012.092|220019.579|119.878 +638017.088|220014.940|119.692 +638022.078|220010.304|119.421 +638027.061|220005.674|119.089 +638032.103|220000.993|118.900 +638037.028|219996.411|118.409 +638042.051|219991.745|117.882 +638047.074|219987.075|117.391 +638052.055|219982.446|117.031 +638057.081|219977.776|116.537 +638062.116|219973.097|116.306 +638067.100|219968.467|115.980 +638072.196|219963.737|116.050 +638077.177|219959.107|115.693 +638082.248|219954.395|115.160 +638087.265|219949.728|114.520 +638092.310|219945.046|114.520 +638097.351|219940.365|114.523 +638102.445|219935.637|114.572 +638107.486|219930.959|114.559 +638112.573|219926.234|114.547 +638117.617|219921.552|114.651 +638122.653|219916.877|114.599 +638127.740|219912.155|114.568 +638132.824|219907.434|114.584 +638137.917|219902.710|114.834 +638143.001|219898.013|116.632 +638148.094|219893.291|117.235 +638153.151|219888.610|118.177 +638158.244|219883.891|118.924 +638163.328|219879.176|119.241 +638168.412|219874.461|119.802 +638173.500|219869.745|120.402 +638178.581|219865.036|120.933 +638183.653|219860.327|120.814 +638188.688|219855.661|121.597 +638193.812|219850.909|121.948 +638219.122|219827.418|122.484 +638224.191|219822.712|122.399 +638229.263|219818.003|122.329 +638234.332|219813.293|122.240 +638239.404|219808.587|122.182 +638244.427|219803.921|122.124 +638249.499|219799.215|122.262 +638254.564|219794.515|122.292 +638259.633|219789.808|122.384 +638264.656|219785.142|122.353 +638269.728|219780.439|122.621 +638274.797|219775.739|122.923 +638279.817|219771.082|123.292 +638284.883|219766.382|123.588 +638289.903|219761.724|123.850 +638294.929|219757.055|123.758 +638299.998|219752.352|123.953 +638305.024|219747.688|124.029 +638310.047|219743.028|124.176 +638315.125|219738.306|123.886 +638320.106|219733.686|123.886 +638325.138|219729.010|123.712 +638330.219|219724.292|123.545 +638335.196|219719.674|123.761 +638340.219|219715.010|123.947 +638345.255|219710.335|123.844 +638350.193|219705.751|123.822 +638355.228|219701.075|123.801 +638360.263|219696.399|123.728 +638365.259|219691.760|123.530 +638370.255|219687.118|123.298 +638375.250|219682.479|123.161 +638380.249|219677.840|122.999 +638385.251|219673.195|122.783 +638390.216|219668.586|122.387 +638395.227|219663.932|122.030 +638400.235|219659.284|121.820 +638405.197|219654.678|121.615 +638410.214|219650.018|121.280 +638415.133|219645.449|121.006 +638420.144|219640.801|120.911 +638425.106|219636.195|120.853 +638430.011|219631.644|120.994 +638434.967|219627.051|121.131 +638439.871|219622.503|121.332 +638444.824|219617.910|121.527 +638449.734|219613.353|121.612 +638454.651|219608.793|121.676 +638459.613|219604.191|121.783 +638464.487|219599.668|121.765 +638469.406|219595.105|121.823 +638474.332|219590.536|121.817 +638479.227|219585.991|121.597 +638484.162|219581.413|121.494 +638489.057|219576.869|121.332 +638493.997|219572.281|121.183 +638498.896|219567.737|121.042 +638503.785|219563.201|121.036 +638508.680|219558.657|120.972 +638513.569|219554.121|121.012 +638518.473|219549.571|120.893 +638523.371|219545.026|120.863 +638528.217|219540.527|120.890 +638533.122|219535.977|120.847 +638538.029|219531.423|120.783 +638542.891|219526.912|120.719 +638547.807|219522.349|120.610 +638552.675|219517.832|120.521 +638557.539|219513.318|120.515 +638567.272|219504.290|120.527 +638572.103|219499.806|120.418 +638577.043|219495.219|120.204 +638581.865|219490.744|120.241 +638591.598|219481.710|119.982 +638596.505|219477.156|119.729 +638606.204|219468.152|119.476 +638611.065|219463.638|119.268 +638615.924|219459.130|119.134 +638615.238|219456.872|119.080 +638610.322|219461.425|119.253 +638605.411|219465.976|119.430 +638600.559|219470.472|119.540 +638595.606|219475.059|119.713 +638590.680|219479.625|120.116 +638585.785|219484.161|120.262 +638580.908|219488.678|120.223 +638575.983|219493.237|120.210 +638571.042|219497.816|120.411 +638566.113|219502.382|120.491 +638556.280|219511.483|120.436 +638551.355|219516.049|120.573 +638546.432|219520.609|120.695 +638541.473|219525.202|120.725 +638536.560|219529.753|120.780 +638531.601|219534.343|120.838 +638521.692|219543.523|120.951 +638516.733|219548.117|121.131 +638511.801|219552.683|120.933 +638506.848|219557.270|121.073 +638501.913|219561.839|120.969 +638496.914|219566.466|121.103 +638491.967|219571.047|121.244 +638486.978|219575.668|121.326 +638481.985|219580.289|121.445 +638477.041|219584.867|121.622 +638472.055|219589.481|121.756 +638467.029|219594.133|121.750 +638462.054|219598.735|121.734 +638457.034|219603.380|121.713 +638452.115|219607.934|121.646 +638447.101|219612.573|121.554 +638442.093|219617.206|121.402 +638437.088|219621.836|121.213 +638432.080|219626.469|121.079 +638427.078|219631.093|120.844 +638422.071|219635.729|120.771 +638417.008|219640.414|120.847 +638411.991|219645.059|121.036 +638406.968|219649.710|121.341 +638401.902|219654.404|121.652 +638396.891|219659.043|121.804 +638391.776|219663.780|122.149 +638386.711|219668.473|122.582 +638381.700|219673.116|122.911 +638376.604|219677.834|123.021 +638371.553|219682.510|123.200 +638366.505|219687.182|123.353 +638361.406|219691.903|123.591 +638356.362|219696.573|123.734 +638351.320|219701.243|123.868 +638346.239|219705.946|123.770 +638341.195|219710.612|123.953 +638336.111|219715.321|124.042 +638331.036|219720.012|123.731 +638326.004|219724.670|123.636 +638320.919|219729.376|123.749 +638315.838|219734.082|123.877 +638310.809|219738.733|123.719 +638305.722|219743.445|124.060 +638300.647|219748.142|124.026 +638290.494|219757.533|123.773 +638285.419|219762.230|123.758 +638280.396|219766.878|123.405 +638275.321|219771.569|123.091 +638270.201|219776.303|122.704 +638265.129|219780.994|122.472 +638260.054|219785.688|122.185 +638254.976|219790.388|122.280 +638249.907|219795.078|122.131 +638244.832|219799.775|122.128 +638239.708|219804.515|122.024 +638234.633|219809.215|122.082 +638229.555|219813.912|122.179 +638224.435|219818.655|122.252 +638219.360|219823.352|122.289 +638214.285|219828.049|122.350 +638199.060|219842.140|122.359 +638193.933|219846.879|122.097 +638188.852|219851.579|121.661 +638183.814|219856.234|121.067 +638178.736|219860.931|120.902 +638173.655|219865.631|120.728 +638168.565|219870.334|120.101 +638163.475|219875.040|119.479 +638158.433|219879.700|119.073 +638153.343|219884.406|118.689 +638148.280|219889.076|117.592 +638143.178|219893.791|116.848 +638138.109|219898.467|115.657 +638133.037|219903.149|114.581 +638127.947|219907.858|114.575 +638122.906|219912.524|114.565 +638117.861|219917.194|114.575 +638112.817|219921.860|114.535 +638107.775|219926.530|114.590 +638102.728|219931.199|114.553 +638097.684|219935.869|114.538 +638092.685|219940.496|114.572 +638087.637|219945.168|114.559 +638082.636|219949.795|114.568 +638077.612|219954.453|115.129 +638072.626|219959.073|115.495 +638067.642|219963.691|115.897 +638062.647|219968.315|116.080 +638057.657|219972.936|116.315 +638052.719|219977.511|116.726 +638047.736|219982.129|117.123 +638037.824|219991.315|118.089 +638032.889|219995.887|118.537 +638023.053|220004.998|119.140 +638018.103|220009.579|119.357 +638013.156|220014.163|119.567 +638008.252|220018.702|119.784 +638003.326|220023.258|119.631 +637998.407|220027.815|119.573 +637993.478|220032.372|119.461 +637988.550|220036.932|119.326 +637983.621|220041.495|119.238 +637978.732|220046.015|119.040 +637973.779|220050.596|118.665 +637968.844|220055.153|117.903 +637963.937|220059.691|117.586 +637954.147|220068.750|117.318 +637949.255|220073.276|117.281 +637944.378|220077.793|117.418 +637939.559|220082.252|117.754 +637934.728|220086.736|118.488 +637929.891|220091.220|119.183 +637925.093|220095.670|119.750 +637920.296|220100.114|120.344 +637915.489|220104.570|120.814 +637910.673|220109.038|121.762 +637905.894|220113.467|122.009 +637901.069|220117.935|122.313 +637896.329|220122.328|123.051 +637891.519|220126.787|123.520 +637886.710|220131.237|123.511 +637881.848|220135.739|123.459 +637877.096|220140.137|123.588 +637872.244|220144.630|123.682 +637867.471|220149.046|123.642 +637862.606|220153.548|123.658 +637857.839|220157.959|123.716 +637853.035|220162.409|123.898 +637848.314|220166.780|123.956 +637843.510|220171.227|124.170 +637838.765|220175.622|124.502 +637834.004|220180.033|124.673 +637829.209|220184.464|124.151 +637824.369|220188.942|124.112 +637819.620|220193.337|124.042 +637814.871|220197.732|124.002 +637810.068|220202.176|123.920 +637805.322|220206.572|123.935 +637800.579|220210.961|124.008 +637795.760|220215.414|123.463 +637790.960|220219.849|123.115 +637786.214|220224.238|122.822 +637781.416|220228.676|122.542 +637776.610|220233.120|122.210 +637771.858|220237.515|121.945 +637767.094|220241.922|121.618 +637762.333|220246.324|121.335 +637757.544|220250.755|121.265 +637748.010|220259.573|120.369 +637733.755|220272.765|119.396 +637714.851|220290.261|118.372 +637705.433|220298.978|117.717 +637663.141|220338.105|114.398 +637658.390|220342.500|113.742 +637653.693|220346.841|113.157 +637639.702|220359.786|111.859 +637634.987|220364.147|111.261 +637630.403|220368.390|111.207 +637611.926|220385.493|109.996 +637607.320|220389.754|109.615 +637598.036|220398.337|108.503 +637588.755|220406.920|107.220 +637579.401|220415.558|105.360 +637574.960|220419.673|105.513 +637565.642|220428.283|103.727 +637561.305|220432.310|104.531 +637556.848|220436.437|104.388 +637552.334|220440.616|104.242 +637543.398|220448.888|103.961 +637538.944|220453.012|103.925 +637534.613|220457.029|104.288 +637517.535|220472.882|107.137 +637500.399|220488.771|108.555 +637470.050|220516.868|107.732 +637461.251|220525.003|106.257 +637448.135|220537.128|104.397 +637439.592|220545.031|103.641 +637435.394|220548.920|103.760 +637431.216|220552.791|103.733 +637418.877|220564.221|104.199 +637414.628|220568.153|103.675 +637410.520|220571.963|103.815 +637406.484|220575.706|104.050 +637394.356|220586.954|104.531 +637370.256|220609.301|104.925 +637366.275|220612.993|104.854 +637362.261|220616.711|104.888 +637339.062|220638.233|106.189 +637335.222|220641.796|106.372 +637316.583|220659.097|108.472 +637290.660|220683.142|109.628 +637286.728|220686.773|108.771 +637282.945|220690.275|108.302 +637279.318|220693.637|108.244 +637271.902|220700.504|107.741 +637264.301|220707.533|106.177 +637261.237|220710.395|108.131 +637257.671|220713.699|108.183 +637254.303|220716.829|108.777 +637250.832|220720.051|108.991 +637247.585|220723.071|110.067 +637244.373|220726.061|111.063 +637237.673|220732.285|112.051 +637227.615|220741.618|112.764 +637445.992|220537.216|104.163 +637454.719|220529.133|105.644 +637458.992|220525.170|105.982 +637463.241|220521.232|106.220 +637476.448|220509.001|108.311 +637480.749|220505.011|108.396 +637493.660|220493.032|108.521 +637515.176|220473.046|107.442 +637519.343|220469.169|106.455 +637532.120|220457.285|104.446 +637536.485|220453.231|104.001 +637540.907|220449.126|103.876 +637549.865|220440.817|104.288 +637554.322|220436.678|104.135 +637563.289|220428.357|104.160 +637567.812|220424.163|104.437 +637572.396|220419.914|105.068 +637586.234|220407.094|106.744 +637590.876|220402.796|107.528 +637595.573|220398.447|108.363 +637600.319|220394.051|109.241 +637604.909|220389.799|109.807 +637618.683|220377.022|110.192 +637623.362|220372.688|110.801 +637637.325|220359.740|111.697 +637651.373|220346.716|113.051 +637656.128|220342.314|113.678 +637660.822|220337.959|113.971 +637670.368|220329.117|115.324 +637689.248|220311.609|116.647 +637693.896|220307.293|116.467 +637698.748|220302.800|117.382 +637703.518|220298.377|117.741 +637708.264|220293.976|117.973 +637722.511|220280.760|118.531 +637732.072|220271.890|119.009 +637741.731|220262.944|120.314 +637756.148|220249.573|121.253 +637760.894|220245.171|121.393 +637765.743|220240.670|121.637 +637770.562|220236.204|122.012 +637775.406|220231.711|122.240 +637780.209|220227.258|122.569 +637785.062|220222.756|122.929 +637789.896|220218.273|123.185 +637794.754|220213.771|123.633 +637799.643|220209.235|123.993 +637804.426|220204.795|123.865 +637809.278|220200.293|123.962 +637814.121|220195.797|123.981 +637818.971|220191.298|124.093 +637823.808|220186.808|124.097 +637828.654|220182.312|124.237 +637833.537|220177.786|124.712 +637838.399|220173.272|124.587 +637843.239|220168.776|124.270 +637848.082|220164.277|124.014 +637852.938|220159.769|123.874 +637857.790|220155.264|123.734 +637862.643|220150.756|123.624 +637867.513|220146.236|123.700 +637872.408|220141.692|123.575 +637877.267|220137.181|123.569 +637882.168|220132.633|123.533 +637887.045|220128.110|123.767 +637891.943|220123.556|123.231 +637896.789|220119.051|122.643 +637901.651|220114.534|122.243 +637906.522|220110.011|121.966 +637911.429|220105.448|121.576 +637916.294|220100.925|120.683 +637921.158|220096.404|120.360 +637926.020|220091.878|119.454 +637930.918|220087.327|118.936 +637935.795|220082.792|118.217 +637940.669|220078.260|117.412 +637945.591|220073.688|117.245 +637950.565|220069.070|117.168 +637955.500|220064.489|117.211 +637960.468|220059.877|117.077 +637965.424|220055.281|117.431 +637970.451|220050.623|118.159 +637975.458|220045.981|118.674 +637980.445|220041.357|118.939 +637985.432|220036.734|119.186 +637990.406|220032.116|119.311 +637995.423|220027.458|119.427 +638000.391|220022.844|119.540 +638005.353|220018.235|119.567 +638010.361|220013.587|119.567 +638015.302|220008.991|119.336 +638020.298|220004.352|119.150 +638025.293|219999.709|119.031 +638030.268|219995.083|118.549 +638035.248|219990.453|118.177 +638040.219|219985.826|117.635 +638045.148|219981.245|117.162 +638050.180|219976.566|116.854 +638055.155|219971.939|116.385 +638060.138|219967.306|116.038 +638065.167|219962.630|115.684 +638070.154|219957.997|115.440 +638075.183|219953.322|115.102 +638080.203|219948.652|114.544 +638085.199|219944.010|114.532 +638090.240|219939.325|114.541 +638095.285|219934.644|114.584 +638100.274|219930.008|114.517 +638105.364|219925.280|114.520 +638110.403|219920.598|114.517 +638115.395|219915.962|114.562 +638120.480|219911.241|114.511 +638125.518|219906.559|114.547 +638130.556|219901.881|114.578 +638135.659|219897.150|115.257 +638140.731|219892.456|116.720 +638145.775|219887.777|117.296 +638150.880|219883.050|118.439 +638155.922|219878.374|119.028 +638161.006|219873.656|119.457 +638166.044|219868.987|120.030 +638171.125|219864.271|120.475 +638176.157|219859.602|120.951 +638181.229|219854.893|120.978 +638186.307|219850.180|121.405 +638191.334|219845.517|121.804 +638196.408|219840.808|122.195 +638201.480|219836.099|122.377 +638206.549|219831.392|122.539 +638211.618|219826.683|122.338 +638216.687|219821.971|122.198 +638221.707|219817.308|122.222 +638226.776|219812.598|122.060 +638231.848|219807.886|121.984 +638236.916|219803.177|121.884 +638241.985|219798.468|121.978 +638247.057|219793.759|122.006 +638252.074|219789.101|122.149 +638257.143|219784.389|121.999 +638262.212|219779.689|122.454 +638267.281|219774.983|122.774 +638272.346|219770.283|123.164 +638277.412|219765.577|123.368 +638282.432|219760.923|123.801 +638287.504|219756.210|123.670 +638292.573|219751.504|123.810 +638297.599|219746.835|123.682 +638302.671|219742.122|123.700 +638307.743|219737.410|123.694 +638312.815|219732.698|123.749 +638317.841|219728.028|123.719 +638322.922|219723.307|123.511 +638327.942|219718.650|123.868 +638333.011|219713.944|124.112 +638338.089|219709.225|124.014 +638343.075|219704.589|123.868 +638348.156|219699.871|123.853 +638353.192|219695.195|123.776 +638358.230|219690.514|123.627 +638363.317|219685.783|123.414 +638368.362|219681.095|123.222 +638373.403|219676.410|123.103 +638378.448|219671.717|122.856 +638383.446|219667.068|122.661 +638388.506|219662.359|122.201 +638393.560|219657.659|121.960 +638398.522|219653.044|121.661 +638403.581|219648.335|121.341 +638408.641|219643.632|121.094 +638413.606|219639.011|120.802 +638418.614|219634.357|120.747 +638423.619|219629.703|120.719 +638428.615|219625.061|120.881 +638433.613|219620.419|121.073 +638438.563|219615.816|121.231 +638443.562|219611.174|121.423 +638448.524|219606.562|121.478 +638453.480|219601.954|121.585 +638458.442|219597.342|121.643 +638463.411|219592.727|121.655 +638468.379|219588.107|121.673 +638473.301|219583.532|121.679 +638478.285|219578.899|121.506 +638483.220|219574.308|121.393 +638488.161|219569.715|121.231 +638493.092|219565.131|121.219 +638498.033|219560.534|121.088 +638502.971|219555.944|121.045 +638507.848|219551.412|121.198 +638512.795|219546.815|121.097 +638517.696|219542.256|120.975 +638522.588|219537.708|120.978 +638527.535|219533.108|120.960 +638532.390|219528.597|120.917 +638537.288|219524.044|120.945 +638542.147|219519.527|120.902 +638547.066|219514.951|120.716 +638556.786|219505.914|120.716 +638561.703|219501.342|120.640 +638566.525|219496.859|120.613 +638571.405|219492.320|120.466 +638576.288|219487.779|120.329 +638581.116|219483.292|120.296 +638585.938|219478.808|120.354 +638590.833|219474.255|120.155 +638595.694|219469.734|119.869 +638600.544|219465.223|119.713 +638605.359|219460.743|119.448 +638604.646|219457.634|119.415 +638599.681|219462.242|119.683 +638594.722|219466.845|119.924 +638589.708|219471.502|120.274 +638584.773|219476.083|120.338 +638579.799|219480.698|120.335 +638574.873|219485.267|120.341 +638569.887|219489.897|120.512 +638564.912|219494.515|120.597 +638559.987|219499.084|120.664 +638555.025|219503.686|120.661 +638550.062|219508.295|120.698 +638545.103|219512.894|120.695 +638540.135|219517.506|120.853 +638535.225|219522.062|120.914 +638530.214|219526.711|121.021 +638525.322|219531.249|120.914 +638520.326|219535.885|120.924 +638515.416|219540.445|121.097 +638510.423|219545.078|121.134 +638505.488|219549.656|121.045 +638500.554|219554.231|120.948 +638495.561|219558.864|121.055 +638490.614|219563.457|121.219 +638485.673|219568.045|121.347 +638480.693|219572.669|121.399 +638475.706|219577.295|121.518 +638470.778|219581.870|121.585 +638465.803|219586.488|121.603 +638460.835|219591.097|121.551 +638455.867|219595.705|121.503 +638450.899|219600.317|121.506 +638445.936|219604.919|121.420 +638441.029|219609.473|121.289 +638436.024|219614.115|121.155 +638431.068|219618.712|121.000 +638426.073|219623.345|120.792 +638421.123|219627.938|120.607 +638416.161|219632.544|120.664 +638411.150|219637.195|120.783 +638406.181|219641.806|121.049 +638401.167|219646.464|121.332 +638396.150|219651.124|121.728 +638391.194|219655.727|121.841 +638386.183|219660.378|122.137 +638381.172|219665.035|122.588 +638376.168|219669.680|122.853 +638371.166|219674.326|123.075 +638366.170|219678.962|123.216 +638361.174|219683.601|123.402 +638356.182|219688.234|123.523 +638351.189|219692.870|123.722 +638346.154|219697.545|123.783 +638341.167|219702.172|123.831 +638336.184|219706.799|123.917 +638331.152|219711.472|123.993 +638326.168|219716.092|123.984 +638321.197|219720.704|123.636 +638316.116|219725.419|123.786 +638311.138|219730.040|123.746 +638306.112|219734.704|123.755 +638301.086|219739.367|123.731 +638296.057|219744.034|123.822 +638291.034|219748.697|123.850 +638286.011|219753.357|123.682 +638280.988|219758.021|123.773 +638275.971|219762.669|123.228 +638270.899|219767.375|123.274 +638265.927|219771.984|122.801 +638260.859|219776.684|122.554 +638255.790|219781.381|122.064 +638250.767|219786.041|121.881 +638245.750|219790.695|121.804 +638240.678|219795.402|121.795 +638235.655|219800.062|121.719 +638230.586|219804.771|121.811 +638225.514|219809.477|121.823 +638220.491|219814.138|121.871 +638215.468|219818.801|122.079 +638210.399|219823.507|122.091 +638205.379|219828.168|122.329 +638200.310|219832.874|122.573 +638195.238|219837.577|122.137 +638190.209|219842.237|121.804 +638185.134|219846.943|121.332 +638180.105|219851.607|120.978 +638175.082|219856.270|121.027 +638170.004|219860.979|120.668 +638164.919|219865.689|120.098 +638159.881|219870.355|119.537 +638154.797|219875.070|119.092 +638149.713|219879.783|118.683 +638144.653|219884.464|117.455 +638139.603|219889.140|116.742 +638134.491|219893.870|115.583 +638129.432|219898.555|114.669 +638124.344|219903.274|114.602 +638119.306|219907.952|114.562 +638114.268|219912.625|114.556 +638109.181|219917.343|114.568 +638104.142|219922.019|114.581 +638099.101|219926.694|114.544 +638094.059|219931.370|114.581 +638088.969|219936.091|114.541 +638083.974|219940.724|114.550 +638078.886|219945.443|114.672 +638073.888|219950.079|114.632 +638068.855|219954.751|114.959 +638063.832|219959.418|115.434 +638058.806|219964.084|115.861 +638053.826|219968.708|116.278 +638048.803|219973.375|116.766 +638043.819|219978.002|117.083 +638038.839|219982.625|117.455 +638033.867|219987.243|118.034 +638028.890|219991.864|118.494 +638023.913|219996.488|118.906 +638018.926|220001.118|119.189 +638013.976|220005.711|119.308 +638008.980|220010.347|119.464 +638004.015|220014.949|119.393 +637999.053|220019.552|119.369 +637994.088|220024.154|119.320 +637989.071|220028.809|119.201 +637984.100|220033.420|119.095 +637979.156|220037.998|118.759 +637974.169|220042.622|118.473 +637969.216|220047.213|118.043 +637964.193|220051.861|117.357 +637959.252|220056.442|117.190 +637954.302|220061.029|116.891 +637949.380|220065.598|117.007 +637944.500|220070.124|117.062 +637939.577|220074.693|117.211 +637934.758|220079.171|118.092 +637929.885|220083.703|118.854 +637925.047|220088.196|119.479 +637920.226|220092.680|120.302 +637915.376|220097.182|120.783 +637910.594|220101.626|121.503 +637905.754|220106.124|122.088 +637900.926|220110.608|122.280 +637896.052|220115.128|122.554 +637891.306|220119.539|123.133 +637886.484|220124.016|123.466 +637881.674|220128.482|123.904 +637876.801|220132.999|123.722 +637871.985|220137.467|123.633 +637867.187|220141.920|123.749 +637862.374|220146.383|123.755 +637857.559|220150.851|123.746 +637852.758|220155.304|123.911 +637848.006|220159.715|124.078 +637843.205|220164.168|124.282 +637838.460|220168.575|124.554 +637833.708|220172.982|124.798 +637828.834|220177.500|124.346 +637824.088|220181.901|124.246 +637819.251|220186.388|124.200 +637814.554|220190.740|124.142 +637809.705|220195.239|124.026 +637804.941|220199.656|123.856 +637800.195|220204.057|123.844 +637795.455|220208.455|123.923 +637790.728|220212.838|123.706 +637785.906|220217.304|123.139 +637781.130|220221.732|122.975 +637776.372|220226.140|122.585 +637771.614|220230.550|122.240 +637766.856|220234.958|121.920 +637762.101|220239.365|121.631 +637757.349|220243.772|121.402 +637752.634|220248.140|121.116 +637719.594|220278.739|119.128 +637714.872|220283.107|118.644 +637705.475|220291.809|118.074 +637700.800|220296.140|117.629 +637672.703|220322.152|115.623 +637658.737|220335.082|114.355 +637644.695|220348.081|112.834 +637640.050|220352.376|112.310 +637621.524|220369.527|110.765 +637612.404|220377.973|110.402 +637607.771|220382.262|109.811 +637603.178|220386.517|109.478 +637589.456|220399.218|108.113 +637580.172|220407.801|106.558 +637566.465|220420.484|104.812 +637557.409|220428.866|103.952 +637552.965|220432.987|104.150 +637548.512|220437.110|104.050 +637544.080|220441.222|104.065 +637535.278|220449.379|103.958 +637530.858|220453.472|104.117 +637526.545|220457.477|104.568 +637509.729|220473.101|107.966 +637492.496|220489.079|108.631 +637449.068|220529.276|104.537 +637444.749|220533.269|103.779 +637440.485|220537.216|103.529 +637436.315|220541.087|103.736 +637432.154|220544.940|103.785 +637427.982|220548.808|103.772 +637415.585|220560.296|103.922 +637407.453|220567.833|104.309 +637403.156|220571.802|103.376 +637395.152|220579.227|104.184 +637383.118|220590.376|104.699 +637375.053|220597.844|104.455 +637367.070|220605.235|104.644 +637343.753|220626.849|106.156 +637339.910|220630.409|106.308 +637332.216|220637.538|106.607 +637317.266|220651.401|108.034 +637310.036|220658.112|109.484 +637299.194|220668.171|111.082 +637284.158|220682.085|110.231 +637276.606|220689.068|109.542 +637272.841|220692.549|108.957 +637269.153|220695.959|108.686 +637265.432|220699.401|108.296 +637261.881|220702.689|108.366 +637258.193|220706.100|107.927 +637254.776|220709.270|108.530 +637244.541|220718.758|109.853 +637241.255|220721.809|110.579 +637224.732|220737.138|113.139 +637221.415|220740.210|113.389 +637444.432|220531.224|103.943 +637448.766|220527.197|104.309 +637461.958|220514.950|106.439 +637470.757|220506.779|107.765 +637483.711|220494.730|108.341 +637492.386|220486.659|108.503 +637505.294|220474.638|107.832 +637522.229|220458.840|104.809 +637526.499|220454.856|104.135 +637530.855|220450.802|103.913 +637535.226|220446.730|103.535 +637544.144|220438.439|104.022 +637548.664|220434.233|104.227 +637553.066|220430.137|104.074 +637562.054|220421.776|104.278 +637566.636|220417.518|104.623 +637571.211|220413.269|105.239 +637575.831|220408.974|105.860 +637580.544|220404.604|107.028 +637585.152|220400.324|107.628 +637594.464|220391.677|108.881 +637603.647|220383.139|109.500 +637612.919|220374.523|110.454 +637617.528|220370.237|110.637 +637622.164|220365.927|111.018 +637626.773|220361.642|111.264 +637631.427|220357.317|111.496 +637645.494|220344.250|113.014 +637650.209|220339.870|113.428 +637654.955|220335.466|114.050 +637659.621|220331.131|114.520 +637664.403|220326.690|115.132 +637669.100|220322.326|115.550 +637673.758|220317.994|115.708 +637678.494|220313.596|116.096 +637683.222|220309.204|116.446 +637692.722|220300.374|117.232 +637697.428|220296.000|117.519 +637735.620|220260.512|120.094 +637750.034|220247.116|121.079 +637754.789|220242.696|121.326 +637759.635|220238.192|121.561 +637764.448|220233.720|121.917 +637769.294|220229.215|122.210 +637774.098|220224.753|122.557 +637778.954|220220.242|122.978 +637783.791|220215.746|123.271 +637788.698|220211.189|123.758 +637793.444|220206.773|123.749 +637798.339|220202.222|123.780 +637803.136|220197.760|123.856 +637807.995|220193.243|124.033 +637812.838|220188.741|124.115 +637817.678|220184.239|124.206 +637822.516|220179.740|124.282 +637827.399|220175.198|124.374 +637832.263|220170.678|124.752 +637837.125|220166.155|124.688 +637841.956|220161.656|124.350 +637846.799|220157.151|124.136 +637851.639|220152.646|123.923 +637856.537|220148.086|123.822 +637861.393|220143.572|123.773 +637866.297|220139.012|123.767 +637871.153|220134.495|123.792 +637876.115|220129.881|123.926 +637880.992|220125.339|123.731 +637885.807|220120.855|123.383 +637890.712|220116.290|122.957 +637895.564|220111.772|122.499 +637900.484|220107.191|122.304 +637905.363|220102.653|122.176 +637910.228|220098.117|121.356 +637915.108|220093.570|120.728 +637919.991|220089.022|120.101 +637924.865|220084.478|119.393 +637929.754|220079.924|118.872 +637934.649|220075.358|117.815 +637939.504|220070.832|116.867 +637944.488|220066.196|116.946 +637949.410|220061.614|116.903 +637954.345|220057.027|116.982 +637959.319|220052.400|117.010 +637964.318|220047.755|117.434 +637969.329|220043.104|118.004 +637974.312|220038.471|118.278 +637979.296|220033.838|118.549 +637984.282|220029.205|118.909 +637989.306|220024.535|119.119 +637994.271|220019.921|119.244 +637999.279|220015.266|119.268 +638004.238|220010.658|119.317 +638009.191|220006.052|119.308 +638014.183|220001.410|119.192 +638019.170|219996.771|118.961 +638024.153|219992.138|118.650 +638029.082|219987.551|118.253 +638034.053|219982.924|117.775 +638039.070|219978.251|117.260 +638044.002|219973.664|116.940 +638049.028|219968.989|116.550 +638053.999|219964.362|116.050 +638058.974|219959.732|115.614 +638063.988|219955.062|115.017 +638068.913|219950.478|114.559 +638073.955|219945.793|114.550 +638078.993|219941.108|114.511 +638083.937|219936.512|114.507 +638088.975|219931.830|114.450 +638094.017|219927.146|114.565 +638099.006|219922.506|114.611 +638104.042|219917.825|114.547 +638109.028|219913.189|114.511 +638114.067|219908.507|114.578 +638119.099|219903.828|114.532 +638124.085|219899.192|114.553 +638129.124|219894.514|114.751 +638134.196|219889.817|116.251 +638139.197|219885.178|117.077 +638144.245|219880.496|117.851 +638149.295|219875.814|118.982 +638154.325|219871.141|119.265 +638159.357|219866.469|119.701 +638164.389|219861.796|120.198 +638169.421|219857.127|120.786 +638174.448|219852.460|121.042 +638179.468|219847.794|121.064 +638184.491|219843.127|121.402 +638189.563|219838.415|121.835 +638194.586|219833.752|122.076 +638199.606|219829.088|122.234 +638204.672|219824.379|122.155 +638209.689|219819.712|121.975 +638214.706|219815.046|121.929 +638219.726|219810.379|121.771 +638224.743|219805.713|121.667 +638229.808|219801.001|121.664 +638234.829|219796.334|121.551 +638239.849|219791.671|121.704 +638244.869|219787.004|121.670 +638249.928|219782.298|121.701 +638254.900|219777.684|122.173 +638259.962|219772.983|122.554 +638264.979|219768.326|123.027 +638269.993|219763.669|123.395 +638275.013|219758.999|123.231 +638280.079|219754.293|123.420 +638285.047|219749.678|123.694 +638290.068|219745.012|123.767 +638295.133|219740.303|123.813 +638300.108|219735.679|123.819 +638305.177|219730.967|123.813 +638310.200|219726.294|123.697 +638315.226|219721.622|123.572 +638320.240|219716.964|123.999 +638325.263|219712.298|124.093 +638330.289|219707.622|123.993 +638335.318|219702.946|123.914 +638340.344|219698.274|123.880 +638345.377|219693.592|123.743 +638350.409|219688.913|123.627 +638355.444|219684.232|123.475 +638360.480|219679.550|123.371 +638365.518|219674.865|123.225 +638370.559|219670.174|123.018 +638375.607|219665.483|122.765 +638380.606|219660.832|122.484 +638385.662|219656.129|122.088 +638390.716|219651.429|121.783 +638395.715|219646.781|121.652 +638400.735|219642.111|121.152 +638405.788|219637.414|120.997 +638410.799|219632.754|120.732 +638415.850|219628.057|120.674 +638420.858|219623.406|120.625 +638425.853|219618.764|120.783 +638430.846|219614.128|121.015 +638435.845|219609.482|121.128 +638440.798|219604.883|121.280 +638445.799|219600.235|121.420 +638450.807|219595.580|121.430 +638455.815|219590.929|121.524 +638460.826|219586.272|121.551 +638465.749|219581.697|121.512 +638470.766|219577.036|121.551 +638475.740|219572.412|121.490 +638480.723|219567.780|121.350 +638485.747|219563.110|121.335 +638490.681|219558.523|121.231 +638495.671|219553.884|121.094 +638500.660|219549.248|120.997 +638505.635|219544.624|121.097 +638510.563|219540.046|121.207 +638515.513|219535.443|121.067 +638520.500|219530.807|121.076 +638525.432|219526.229|121.250 +638530.385|219521.624|121.140 +638535.335|219517.021|121.079 +638540.245|219512.458|120.981 +638545.207|219507.847|120.875 +638550.062|219503.332|120.875 +638555.034|219498.709|120.707 +638559.929|219494.161|120.872 +638564.800|219489.635|120.808 +638569.713|219485.072|120.841 +638574.611|219480.512|120.503 +638579.540|219475.931|120.427 +638584.410|219471.408|120.463 +638589.269|219466.894|120.655 +638594.213|219462.291|119.988 +638599.117|219457.728|119.741 +638592.213|219460.206|119.973 +638587.196|219464.867|120.357 +638582.216|219469.481|120.366 +638577.187|219474.148|120.433 +638572.206|219478.769|120.521 +638567.168|219483.447|120.756 +638562.200|219488.056|120.774 +638557.189|219492.701|120.744 +638552.132|219497.392|120.728 +638547.158|219502.007|120.872 +638542.095|219506.704|120.988 +638537.084|219511.352|121.052 +638532.037|219516.034|121.036 +638527.035|219520.676|121.100 +638522.042|219525.303|121.015 +638517.001|219529.978|120.997 +638511.956|219534.660|121.064 +638506.967|219539.287|121.049 +638501.934|219543.956|121.006 +638496.899|219548.626|121.024 +638491.861|219553.301|121.100 +638486.822|219557.977|121.219 +638481.833|219562.607|121.329 +638476.807|219567.271|121.347 +638471.777|219571.940|121.426 +638466.757|219576.597|121.420 +638461.734|219581.258|121.423 +638456.717|219585.915|121.420 +638451.655|219590.612|121.381 +638446.641|219595.263|121.372 +638441.630|219599.912|121.295 +638436.628|219604.554|121.143 +638431.577|219609.239|121.006 +638426.579|219613.875|120.789 +638421.531|219618.556|120.622 +638416.478|219623.244|120.604 +638411.470|219627.892|120.652 +638406.410|219632.589|120.832 +638401.356|219637.280|120.878 +638396.297|219641.977|121.140 +638391.231|219646.683|121.576 +638386.220|219651.338|121.884 +638381.118|219656.074|122.137 +638376.064|219660.768|122.432 +638371.056|219665.419|122.826 +638366.012|219670.104|123.014 +638360.967|219674.792|123.255 +638355.975|219679.425|123.350 +638350.933|219684.104|123.502 +638345.898|219688.776|123.581 +638340.860|219693.455|123.755 +638335.827|219698.124|123.810 +638330.844|219702.751|123.828 +638325.812|219707.421|123.965 +638320.782|219712.090|124.014 +638315.802|219716.711|124.029 +638310.782|219721.366|123.661 +638305.756|219726.032|123.703 +638300.775|219730.653|123.798 +638295.749|219735.316|123.786 +638290.726|219739.980|123.761 +638285.755|219744.591|123.493 +638280.683|219749.297|123.511 +638275.708|219753.909|123.295 +638270.682|219758.579|123.706 +638260.645|219767.884|122.829 +638255.625|219772.535|122.347 +638250.605|219777.187|121.868 +638245.631|219781.798|121.558 +638240.614|219786.456|121.509 +638235.542|219791.159|121.405 +638230.567|219795.776|121.426 +638225.544|219800.440|121.460 +638220.521|219805.103|121.530 +638215.547|219809.721|121.606 +638210.524|219814.382|121.780 +638205.504|219819.045|121.920 +638200.529|219823.663|122.079 +638195.506|219828.323|122.076 +638190.529|219832.938|121.783 +638185.551|219837.555|121.637 +638180.525|219842.216|121.277 +638175.542|219846.837|120.893 +638170.519|219851.497|120.969 +638165.535|219856.118|120.454 +638160.549|219860.739|120.070 +638155.562|219865.362|119.610 +638150.573|219869.986|119.107 +638145.583|219874.613|118.689 +638140.526|219879.289|117.589 +638135.528|219883.922|116.909 +638130.507|219888.564|115.583 +638125.490|219893.206|114.559 +638120.501|219897.836|114.526 +638115.511|219902.469|114.498 +638110.522|219907.102|114.514 +638105.532|219911.738|114.553 +638100.497|219916.417|114.572 +638095.553|219921.010|114.541 +638090.557|219925.646|114.486 +638085.519|219930.328|114.535 +638080.575|219934.921|114.553 +638075.579|219939.560|114.520 +638070.587|219944.199|114.559 +638065.588|219948.841|114.520 +638060.665|219953.422|115.117 +638055.688|219958.049|115.559 +638050.763|219962.630|116.044 +638045.791|219967.257|116.565 +638040.902|219971.802|116.858 +638035.928|219976.429|117.318 +638031.002|219981.010|117.815 +638026.074|219985.594|118.229 +638021.136|219990.184|118.497 +638016.198|219994.775|118.763 +638011.260|219999.362|119.098 +638006.362|220003.916|119.253 +638001.403|220008.524|119.180 +637996.441|220013.130|119.134 +637991.521|220017.699|119.015 +637986.541|220022.323|118.714 +637981.658|220026.855|118.473 +637976.675|220031.482|118.223 +637971.737|220036.063|117.952 +637966.787|220040.656|117.531 +637961.785|220045.298|117.098 +637956.884|220049.846|116.772 +637951.910|220054.467|116.800 +637946.987|220059.042|116.851 +637937.118|220068.210|116.775 +637932.323|220072.676|117.927 +637927.455|220077.208|118.747 +637922.627|220081.704|119.439 +637917.748|220086.242|120.116 +637912.916|220090.741|120.786 +637908.085|220095.237|121.463 +637903.263|220099.727|122.225 +637898.384|220104.262|122.365 +637893.513|220108.788|122.624 +637888.694|220113.269|122.929 +637883.851|220117.777|123.493 +637879.053|220122.233|123.539 +637874.210|220126.738|124.154 +637869.382|220131.222|123.911 +637864.468|220135.785|123.813 +637859.656|220140.253|123.798 +637854.806|220144.761|123.901 +637850.045|220149.184|123.929 +637845.205|220153.682|124.173 +637840.456|220158.096|124.383 +637835.631|220162.583|124.798 +637830.846|220167.027|124.688 +637825.990|220171.535|124.395 +637821.211|220175.976|124.383 +637816.371|220180.471|124.298 +637811.576|220184.925|124.191 +637806.721|220189.430|124.029 +637801.960|220193.852|123.856 +637797.114|220198.354|123.795 +637792.350|220202.780|123.627 +637787.570|220207.218|123.792 +637782.773|220211.671|123.414 +637777.917|220216.176|122.972 +637768.328|220225.076|122.393 +637763.518|220229.541|122.021 +637758.767|220233.952|121.743 +637753.963|220238.411|121.463 +637749.205|220242.828|121.207 +637744.450|220247.244|120.988 +637725.470|220264.868|119.521 +637720.682|220269.312|119.192 +637706.539|220282.449|118.485 +637697.099|220291.212|117.610 +637683.094|220304.217|116.900 +637673.715|220312.923|116.031 +637668.991|220317.312|115.724 +637659.676|220325.962|115.123 +637645.545|220339.071|113.221 +637626.937|220356.344|111.496 +637622.350|220360.609|111.371 +637617.711|220364.912|110.960 +637608.509|220373.459|110.365 +637599.313|220381.993|109.308 +637594.726|220386.251|109.024 +637580.967|220399.023|107.479 +637571.713|220407.603|106.125 +637567.108|220411.876|105.315 +637562.533|220416.116|104.428 +637557.936|220420.380|103.736 +637549.173|220428.533|104.501 +637544.705|220432.685|104.294 +637535.835|220440.927|104.035 +637531.379|220445.066|103.967 +637522.613|220453.216|104.083 +637505.761|220468.923|107.518 +637471.309|220500.948|107.814 +637453.814|220517.179|105.452 +637436.568|220533.184|103.419 +637432.414|220537.045|103.458 +637428.265|220540.901|103.544 +637424.120|220544.757|103.644 +637415.933|220552.374|104.144 +637391.393|220575.170|104.449 +637379.134|220586.551|103.928 +637375.227|220590.184|104.342 +637371.182|220593.943|104.394 +637359.197|220605.074|104.382 +637351.449|220612.276|104.961 +637347.685|220615.782|105.610 +637343.784|220619.406|105.702 +637332.344|220630.043|106.699 +637328.565|220633.554|106.906 +637324.804|220637.051|107.201 +637321.183|220640.425|107.860 +637313.913|220647.191|109.301 +637310.179|220650.666|109.518 +637299.450|220660.654|111.517 +637295.823|220664.022|111.789 +637288.398|220670.920|111.673 +637280.922|220677.857|111.197 +637277.124|220681.378|110.435 +637269.684|220688.278|109.783 +637265.913|220691.774|109.170 +637258.586|220698.572|108.625 +637254.553|220702.293|106.872 +637251.274|220705.353|107.787 +637244.598|220711.571|109.195 +637228.133|220726.900|112.468 +637446.251|220521.921|103.745 +637450.717|220517.776|104.775 +637455.182|220513.634|105.824 +637459.568|220509.562|106.516 +637463.918|220505.523|107.058 +637472.577|220497.470|107.509 +637476.963|220493.395|108.049 +637481.267|220489.393|108.189 +637494.169|220477.381|107.674 +637498.540|220473.315|107.713 +637502.859|220469.294|107.509 +637519.782|220453.506|104.187 +637528.587|220445.307|104.007 +637533.001|220441.198|103.861 +637537.445|220437.065|103.888 +637541.980|220432.849|104.166 +637546.378|220428.753|103.986 +637550.899|220424.550|104.230 +637555.215|220420.526|103.620 +637564.517|220411.891|105.089 +637573.704|220403.360|106.598 +637578.410|220398.989|107.461 +637583.119|220394.624|108.655 +637587.652|220390.409|108.567 +637596.838|220381.868|109.487 +637606.058|220373.297|110.106 +637610.673|220369.009|110.624 +637619.902|220360.429|111.139 +637624.590|220356.070|111.578 +637633.887|220347.426|112.350 +637638.550|220343.086|112.715 +637643.281|220338.690|113.215 +637662.096|220321.195|115.132 +637666.833|220316.790|115.489 +637671.569|220312.383|115.888 +637676.236|220308.040|116.156 +637680.972|220303.635|116.601 +637709.422|220277.172|118.671 +637742.755|220246.162|120.722 +637747.535|220241.715|121.161 +637752.338|220237.247|121.430 +637757.133|220232.784|121.658 +637761.936|220228.316|121.975 +637766.740|220223.848|122.338 +637771.580|220219.343|122.618 +637776.378|220214.880|122.987 +637781.282|220210.321|123.432 +637786.107|220205.831|123.679 +637790.890|220201.378|123.591 +637795.745|220196.861|123.728 +637800.549|220192.386|123.874 +637805.401|220187.872|124.033 +637810.250|220183.358|124.197 +637815.139|220178.807|124.316 +637819.928|220174.348|124.423 +637824.802|220169.813|124.435 +637829.688|220165.262|124.615 +637834.583|220160.711|124.868 +637839.362|220156.255|124.535 +637844.242|220151.707|124.240 +637849.076|220147.202|123.990 +637853.922|220142.688|123.889 +637858.827|220138.122|123.889 +637863.685|220133.599|123.929 +637868.605|220129.021|124.151 +637873.475|220124.483|123.880 +637878.340|220119.950|123.551 +637883.174|220115.448|123.420 +637888.066|220110.885|122.914 +637892.934|220106.350|122.658 +637897.844|220101.775|122.377 +637902.721|220097.230|122.262 +637907.579|220092.698|121.402 +637912.456|220088.147|120.768 +637917.318|220083.609|119.945 +637922.234|220079.022|119.186 +637927.111|220074.474|118.543 +637932.018|220069.893|117.687 +637936.871|220065.363|116.723 +637946.819|220056.098|116.748 +637951.742|220051.516|116.711 +637956.759|220046.844|116.723 +637961.752|220042.199|117.040 +637966.741|220037.557|117.385 +637971.783|220032.869|117.808 +637976.766|220028.233|118.113 +637981.786|220023.560|118.314 +637986.760|220018.930|118.552 +637991.738|220014.297|118.878 +637996.746|220009.634|119.015 +638001.751|220004.970|119.067 +638006.749|220000.316|119.052 +638011.733|219995.668|118.842 +638016.671|219991.068|118.616 +638021.645|219986.426|118.281 +638026.628|219981.781|118.046 +638031.591|219977.151|117.482 +638036.614|219972.466|117.114 +638041.585|219967.830|116.702 +638046.553|219963.194|116.239 +638051.570|219958.516|115.727 +638056.535|219953.883|115.166 +638061.498|219949.250|114.568 +638066.533|219944.559|114.483 +638071.526|219939.908|114.553 +638076.613|219935.171|114.575 +638081.596|219930.526|114.498 +638086.634|219925.832|114.578 +638091.667|219921.141|114.565 +638096.699|219916.453|114.523 +638101.731|219911.765|114.538 +638106.812|219907.032|114.581 +638111.796|219902.390|114.559 +638116.825|219897.702|114.562 +638121.903|219892.974|114.538 +638126.941|219888.283|114.931 +638132.019|219883.574|116.833 +638137.061|219878.886|117.501 +638142.105|219874.199|118.354 +638147.189|219869.471|119.067 +638152.218|219864.789|119.528 +638157.199|219860.153|119.884 +638162.271|219855.432|120.274 +638167.303|219850.756|120.972 +638172.320|219846.081|120.997 +638177.337|219841.408|121.076 +638182.406|219836.690|121.530 +638187.377|219832.060|121.704 +638192.443|219827.345|121.972 +638202.425|219818.042|121.966 +638207.485|219813.324|121.734 +638212.502|219808.651|121.609 +638217.516|219803.976|121.405 +638222.579|219799.257|121.311 +638227.596|219794.582|121.237 +638232.610|219789.909|121.256 +638237.675|219785.191|121.201 +638242.644|219780.558|121.128 +638247.655|219775.894|121.460 +638272.813|219752.477|123.225 +638277.830|219747.804|123.335 +638282.841|219743.137|123.630 +638287.858|219738.465|123.633 +638292.872|219733.792|123.755 +638297.889|219729.120|123.804 +638302.863|219724.484|123.642 +638307.880|219719.811|123.770 +638312.894|219715.141|124.014 +638317.868|219710.505|123.914 +638322.888|219705.827|123.950 +638327.912|219701.145|123.850 +638332.889|219696.509|123.834 +638337.912|219691.827|123.801 +638342.944|219687.136|123.600 +638347.925|219682.494|123.490 +638352.954|219677.809|123.447 +638357.889|219673.207|123.313 +638362.927|219668.510|123.091 +638367.920|219663.856|122.838 +638372.915|219659.195|122.539 +638377.966|219654.486|122.134 +638382.962|219649.829|121.932 +638387.951|219645.181|121.905 +638392.971|219640.496|121.277 +638397.985|219635.820|120.796 +638402.981|219631.166|120.786 +638407.980|219626.509|120.722 +638412.985|219621.842|120.552 +638417.980|219617.188|120.604 +638422.976|219612.536|120.719 +638427.923|219607.931|120.875 +638432.915|219603.280|121.055 +638437.865|219598.671|121.177 +638442.861|219594.017|121.332 +638447.866|219589.353|121.353 +638452.825|219584.733|121.384 +638457.790|219580.109|121.366 +638462.749|219575.488|121.439 +638467.718|219570.858|121.375 +638472.728|219566.192|121.442 +638477.657|219561.598|121.335 +638482.625|219556.968|121.366 +638487.612|219552.320|121.183 +638492.544|219547.724|121.119 +638497.524|219543.085|121.073 +638502.507|219538.442|121.042 +638507.430|219533.858|121.177 +638512.365|219529.259|121.173 +638517.357|219524.608|121.079 +638522.283|219520.017|121.234 +638527.233|219515.403|121.119 +638532.174|219510.803|121.173 +638537.075|219506.237|121.131 +638542.071|219501.580|121.106 +638546.984|219496.999|120.969 +638551.949|219492.372|120.838 +638556.853|219487.803|120.850 +638561.770|219483.222|120.777 +638566.732|219478.598|120.744 +638571.664|219474.002|120.558 +638576.586|219469.411|120.472 +638581.469|219464.861|120.357 +638586.383|219460.282|120.415 +638583.792|219459.155|120.396 +638578.820|219463.775|120.372 +638573.837|219468.411|120.518 +638568.811|219473.087|120.622 +638563.836|219477.717|120.741 +638558.755|219482.445|120.978 +638553.808|219487.044|120.847 +638548.801|219491.701|120.866 +638543.787|219496.368|120.994 +638538.767|219501.037|121.204 +638533.722|219505.728|121.183 +638528.729|219510.373|121.164 +638523.694|219515.055|121.070 +638518.647|219519.749|121.149 +638513.654|219524.391|121.186 +638508.567|219529.125|121.253 +638503.547|219533.791|121.070 +638498.518|219538.467|121.039 +638493.437|219543.194|121.088 +638488.404|219547.873|121.146 +638483.320|219552.597|121.265 +638478.294|219557.270|121.305 +638473.216|219561.991|121.423 +638468.150|219566.697|121.350 +638463.085|219571.404|121.347 +638458.022|219576.110|121.344 +638452.959|219580.816|121.323 +638447.899|219585.516|121.295 +638442.843|219590.216|121.250 +638437.743|219594.949|121.094 +638432.693|219599.643|120.985 +638427.645|219604.331|120.853 +638422.555|219609.059|120.631 +638417.508|219613.747|120.512 +638412.460|219618.440|120.482 +638407.355|219623.183|120.591 +638402.304|219627.880|120.668 +638397.257|219632.571|120.683 +638392.145|219637.326|121.091 +638387.070|219642.047|121.768 +638381.977|219646.784|121.865 +638376.884|219651.517|122.021 +638371.833|219656.217|122.362 +638366.734|219660.960|122.713 +638361.644|219665.694|122.914 +638356.602|219670.382|123.167 +638351.515|219675.112|123.356 +638346.480|219679.791|123.438 +638341.399|219684.515|123.548 +638336.367|219689.194|123.685 +638331.289|219693.912|123.743 +638326.214|219698.630|123.816 +638321.185|219703.303|123.874 +638316.113|219708.015|123.804 +638311.041|219712.731|123.850 +638306.021|219717.397|123.746 +638300.952|219722.103|123.545 +638295.880|219726.818|123.700 +638290.857|219731.485|123.731 +638285.791|219736.194|123.624 +638280.771|219740.858|123.523 +638275.705|219745.564|123.356 +638270.688|219750.224|123.222 +638245.554|219773.553|121.027 +638240.492|219778.266|121.618 +638235.517|219782.880|121.113 +638230.497|219787.547|121.164 +638225.477|219792.213|121.113 +638220.503|219796.834|121.164 +638215.437|219801.543|121.225 +638210.466|219806.167|121.439 +638205.446|219810.834|121.612 +638200.429|219815.500|121.771 +638190.437|219824.784|121.896 +638185.414|219829.448|121.603 +638180.489|219834.026|121.466 +638175.463|219838.692|120.972 +638170.442|219843.359|121.167 +638165.514|219847.937|121.000 +638160.482|219852.604|120.256 +638155.498|219857.230|119.869 +638150.518|219861.857|119.546 +638145.531|219866.484|119.101 +638140.538|219871.117|118.473 +638135.537|219875.753|117.604 +638130.541|219880.386|116.967 +638125.564|219884.995|115.315 +638120.556|219889.637|114.547 +638115.618|219894.227|114.547 +638110.628|219898.860|114.514 +638105.642|219903.493|114.547 +638100.701|219908.083|114.520 +638095.763|219912.671|114.611 +638090.816|219917.261|114.550 +638085.872|219921.851|114.550 +638080.883|219926.487|114.581 +638075.988|219931.032|114.648 +638070.998|219935.671|114.660 +638066.045|219940.267|114.532 +638061.147|219944.818|114.550 +638056.154|219949.454|114.623 +638051.293|219953.980|115.465 +638046.364|219958.561|115.916 +638041.445|219963.139|116.504 +638036.562|219967.678|116.900 +638031.633|219972.259|117.312 +638026.747|219976.801|117.647 +638021.819|219981.385|118.025 +638016.927|219985.929|118.290 +638011.992|219990.517|118.589 +638007.094|219995.067|118.702 +638002.189|219999.624|118.784 +637997.230|220004.227|118.741 +637992.311|220008.796|118.586 +637987.388|220013.364|118.433 +637982.457|220017.940|118.147 +637977.525|220022.518|117.891 +637972.593|220027.096|117.680 +637967.701|220031.637|117.354 +637962.751|220036.228|116.955 +637957.856|220040.769|116.675 +637952.925|220045.350|116.571 +637948.045|220049.883|116.537 +637943.122|220054.455|116.635 +637933.402|220063.489|117.187 +637923.764|220072.459|118.833 +637909.332|220085.892|120.945 +637904.498|220090.388|121.579 +637899.685|220094.868|122.454 +637894.854|220099.358|122.582 +637889.986|220103.881|122.844 +637885.164|220108.362|123.121 +637880.352|220112.836|123.493 +637875.511|220117.332|123.569 +637870.677|220121.825|123.755 +637865.880|220126.287|124.319 +637861.012|220130.807|124.161 +637856.141|220135.330|124.023 +637851.319|220139.805|123.926 +637846.473|220144.307|124.078 +637841.736|220148.711|124.362 +637836.914|220153.195|124.779 +637832.166|220157.608|124.977 +637827.255|220162.162|124.596 +637822.485|220166.594|124.633 +637817.657|220171.077|124.624 +637812.853|220175.537|124.414 +637808.010|220180.033|124.292 +637803.203|220184.495|124.109 +637798.400|220188.957|123.956 +637793.587|220193.422|123.773 +637788.817|220197.851|123.566 +637784.010|220202.313|123.475 +637779.286|220206.703|123.694 +637774.455|220211.183|123.045 +637769.660|220215.630|122.731 +637764.869|220220.077|122.466 +637760.056|220224.543|122.064 +637755.246|220229.005|121.704 +637750.491|220233.418|121.430 +637745.730|220237.838|121.137 +637740.963|220242.261|120.826 +637731.405|220251.133|120.082 +637726.677|220255.522|119.777 +637721.910|220259.951|119.546 +637712.422|220268.757|118.817 +637698.197|220281.961|117.985 +637693.506|220286.316|117.763 +637688.793|220290.690|117.421 +637655.942|220321.186|114.989 +637646.502|220329.940|113.681 +637641.869|220334.240|113.474 +637637.243|220338.532|113.014 +637614.038|220360.069|110.932 +637609.372|220364.394|110.396 +637600.246|220372.871|110.006 +637558.820|220411.291|104.495 +637549.789|220419.676|104.022 +637545.409|220423.748|104.291 +637540.855|220427.973|103.897 +637536.482|220432.039|103.955 +637527.609|220440.277|103.727 +637523.241|220444.337|103.867 +637518.803|220448.461|103.650 +637514.579|220452.396|104.583 +637510.531|220456.176|106.162 +637497.787|220468.033|107.595 +637489.140|220476.067|107.756 +637480.575|220484.028|107.869 +637454.588|220508.150|105.979 +637450.083|220512.314|104.498 +637445.745|220516.340|104.080 +637441.469|220520.309|103.730 +637437.193|220524.277|103.404 +637432.880|220528.279|102.925 +637428.838|220532.041|103.495 +637424.714|220535.875|103.687 +637412.187|220547.509|103.413 +637387.903|220570.113|104.821 +637363.809|220592.528|104.559 +637359.837|220596.219|104.501 +637348.228|220607.034|105.464 +637325.480|220628.224|107.692 +637321.737|220631.710|108.043 +637318.004|220635.188|108.442 +637314.456|220638.501|109.399 +637310.810|220641.900|109.960 +637299.908|220652.065|111.618 +637296.259|220655.464|111.987 +637288.965|220662.255|112.353 +637285.265|220665.696|112.340 +637281.531|220669.164|111.999 +637270.415|220679.497|111.402 +637266.782|220682.874|111.088 +637262.944|220686.434|110.210 +637255.596|220693.259|109.350 +637251.929|220696.666|108.969 +637248.299|220700.035|108.552 +637241.364|220706.490|108.759 +637238.015|220709.614|109.222 +637231.388|220715.793|110.441 +637221.744|220724.790|112.417 +637441.466|220518.376|103.565 +637445.767|220514.371|104.047 +637450.226|220510.223|105.077 +637454.661|220506.099|105.997 +637472.019|220489.923|107.619 +637476.320|220485.912|107.753 +637489.253|220473.845|107.665 +637493.514|220469.864|107.427 +637502.140|220461.808|106.985 +637510.433|220454.045|104.870 +637514.643|220450.107|104.147 +637519.001|220446.038|103.943 +637523.403|220441.929|103.736 +637527.770|220437.851|103.617 +637541.139|220425.385|104.001 +637545.519|220421.294|103.736 +637549.963|220417.146|103.580 +637559.043|220408.688|104.662 +637563.709|220404.344|105.531 +637568.391|220399.992|106.516 +637591.379|220378.574|108.887 +637596.043|220374.233|109.646 +637609.865|220361.349|110.505 +637614.492|220357.036|110.847 +637619.107|220352.736|111.155 +637628.528|220343.966|112.404 +637642.528|220330.933|113.669 +637647.246|220326.541|114.148 +637675.443|220300.285|116.266 +637694.347|220282.683|117.693 +637718.118|220260.543|119.089 +637722.873|220256.114|119.613 +637732.468|220247.180|120.259 +637742.057|220238.252|120.960 +637746.809|220233.824|121.234 +637751.659|220229.307|121.518 +637756.456|220224.838|121.807 +637766.067|220215.889|122.582 +637770.898|220211.390|122.826 +637775.756|220206.867|123.335 +637780.566|220202.387|123.466 +637785.354|220197.921|123.441 +637790.164|220193.441|123.636 +637794.971|220188.960|123.816 +637799.826|220184.440|124.008 +637804.673|220179.923|124.170 +637809.473|220175.451|124.362 +637814.359|220170.898|124.502 +637819.196|220166.390|124.642 +637824.009|220161.903|124.584 +637828.883|220157.361|124.691 +637833.726|220152.850|124.959 +637838.542|220148.355|124.563 +637843.367|220143.853|124.252 +637848.198|220139.348|123.990 +637853.099|220134.779|123.999 +637857.973|220130.237|124.225 +637862.883|220125.662|124.362 +637867.681|220121.185|123.844 +637872.549|220116.643|123.572 +637877.496|220112.031|123.676 +637882.287|220107.560|123.133 +637887.197|220102.979|122.868 +637892.062|220098.440|122.640 +637896.981|220093.853|122.493 +637901.803|220089.348|121.789 +637906.671|220084.804|121.067 +637921.308|220071.136|119.308 +637926.117|220066.634|117.900 +637931.052|220062.026|117.427 +637935.908|220057.490|116.522 +637940.879|220052.854|116.534 +637945.841|220048.228|116.437 +637950.760|220043.643|116.431 +637955.735|220039.007|116.537 +637960.715|220034.368|116.751 +637965.702|220029.723|117.101 +637970.734|220025.035|117.452 +637975.660|220020.445|117.696 +637980.686|220015.766|117.994 +637985.703|220011.094|118.214 +637990.671|220006.467|118.452 +637995.685|220001.797|118.644 +638000.635|219997.186|118.656 +638005.631|219992.528|118.619 +638010.617|219987.883|118.442 +638015.601|219983.235|118.266 +638020.581|219978.593|117.973 +638025.598|219973.911|117.580 +638030.576|219969.272|117.257 +638035.544|219964.636|116.830 +638040.515|219960.000|116.391 +638045.520|219955.327|115.718 +638050.543|219950.643|115.385 +638055.493|219946.019|114.514 +638060.528|219941.325|114.483 +638065.570|219936.631|114.565 +638070.556|219931.983|114.538 +638075.589|219927.292|114.520 +638080.624|219922.601|114.514 +638085.659|219917.910|114.565 +638090.691|219913.222|114.541 +638095.724|219908.531|114.617 +638100.753|219903.847|114.532 +638105.782|219899.159|114.553 +638110.811|219894.474|114.575 +638115.840|219889.786|114.520 +638120.870|219885.101|114.587 +638125.942|219880.398|116.220 +638131.038|219875.662|117.178 +638136.076|219870.974|117.848 +638141.121|219866.286|118.878 +638146.150|219861.604|119.262 +638151.228|219856.880|119.805 +638156.202|219852.247|120.122 +638161.274|219847.529|120.539 +638166.297|219842.853|121.006 +638171.314|219838.180|121.042 +638176.380|219833.462|121.180 +638181.400|219828.789|121.561 +638186.414|219824.117|121.728 +638191.477|219819.402|121.935 +638196.536|219814.683|121.734 +638201.505|219810.056|121.637 +638206.564|219805.338|121.625 +638211.578|219800.662|121.207 +638216.592|219795.987|121.076 +638221.655|219791.268|120.978 +638226.669|219786.596|120.930 +638231.686|219781.920|120.884 +638236.752|219777.196|120.436 +638261.803|219753.888|123.213 +638266.817|219749.212|123.146 +638271.828|219744.546|123.350 +638276.845|219739.867|123.210 +638281.859|219735.197|123.319 +638286.824|219730.577|123.658 +638291.838|219725.904|123.700 +638296.859|219721.225|123.618 +638301.827|219716.592|123.575 +638306.841|219711.926|123.810 +638311.861|219707.247|123.770 +638316.829|219702.617|123.880 +638321.852|219697.935|123.822 +638326.827|219693.299|123.783 +638331.804|219688.660|123.691 +638336.827|219683.979|123.633 +638341.811|219679.334|123.435 +638346.791|219674.691|123.383 +638351.820|219670.001|123.246 +638356.761|219665.395|123.021 +638361.751|219660.741|122.798 +638366.740|219656.086|122.594 +638371.736|219651.423|122.262 +638376.735|219646.759|121.932 +638381.675|219642.151|121.856 +638386.677|219637.481|121.524 +638391.648|219632.839|120.850 +638396.601|219628.218|120.686 +638401.597|219623.561|120.628 +638406.547|219618.943|120.530 +638411.500|219614.323|120.442 +638416.453|219609.705|120.418 +638421.345|219605.145|120.597 +638426.335|219600.494|120.786 +638431.227|219595.934|121.021 +638436.177|219591.322|121.113 +638441.081|219586.750|121.198 +638446.031|219582.136|121.320 +638450.944|219577.551|121.274 +638455.858|219572.973|121.289 +638460.771|219568.389|121.292 +638465.736|219563.762|121.295 +638470.647|219559.181|121.387 +638475.569|219554.594|121.378 +638480.452|219550.037|121.219 +638485.378|219545.444|121.189 +638490.309|219540.847|121.128 +638495.189|219536.297|121.125 +638500.124|219531.694|121.052 +638505.050|219527.101|121.128 +638509.923|219522.556|121.250 +638514.818|219517.990|121.158 +638519.762|219513.382|121.097 +638524.599|219508.871|121.167 +638529.537|219504.268|121.219 +638534.423|219499.715|121.323 +638539.330|219495.133|121.198 +638544.247|219490.549|121.003 +638549.112|219486.011|120.887 +638554.013|219481.442|120.920 +638558.880|219476.900|120.835 +638563.794|219472.319|120.783 +638568.668|219467.771|120.671 +638573.602|219463.166|120.439 +638578.433|219458.661|120.335 +638574.858|219457.954|120.354 +638569.923|219462.541|120.494 +638564.992|219467.128|120.661 +638560.063|219471.709|120.783 +638555.140|219476.291|120.908 +638550.184|219480.896|120.890 +638545.265|219485.471|121.003 +638540.297|219490.092|121.170 +638535.341|219494.697|121.228 +638530.388|219499.306|121.295 +638525.453|219503.890|121.152 +638520.457|219508.532|121.155 +638515.516|219513.129|121.167 +638510.521|219517.774|121.259 +638505.543|219522.398|121.128 +638500.615|219526.979|121.015 +638495.579|219531.661|121.085 +638490.599|219536.291|121.103 +638485.615|219540.927|121.164 +638480.589|219545.605|121.173 +638475.609|219550.241|121.277 +638470.586|219554.914|121.301 +638465.572|219559.580|121.219 +638460.607|219564.198|121.161 +638455.541|219568.913|121.192 +638450.527|219573.580|121.198 +638445.513|219578.246|121.228 +638440.462|219582.943|121.116 +638435.409|219587.649|121.097 +638430.361|219592.340|120.936 +638425.317|219597.034|120.774 +638420.278|219601.719|120.539 +638415.240|219606.404|120.274 +638410.141|219611.150|120.302 +638405.087|219615.856|120.436 +638400.040|219620.553|120.469 +638394.934|219625.305|120.707 +638389.887|219630.005|120.835 +638384.775|219634.769|121.332 +638379.667|219639.530|121.838 +638374.580|219644.263|121.884 +638369.480|219649.012|122.228 +638364.387|219653.758|122.548 +638359.346|219658.452|122.774 +638354.210|219663.234|122.993 +638349.126|219667.967|123.191 +638344.045|219672.698|123.331 +638338.967|219677.428|123.450 +638333.886|219682.156|123.581 +638328.811|219686.880|123.679 +638323.736|219691.605|123.825 +638318.615|219696.369|123.840 +638313.546|219701.084|123.755 +638308.478|219705.802|123.764 +638303.363|219710.566|123.789 +638298.303|219715.266|123.347 +638293.231|219719.991|123.581 +638288.114|219724.752|123.645 +638283.051|219729.461|123.438 +638277.943|219734.210|123.078 +638272.877|219738.925|123.091 +638267.762|219743.689|123.402 +638262.703|219748.392|122.960 +638227.077|219781.518|120.588 +638221.963|219786.279|120.780 +638216.897|219790.994|120.902 +638211.834|219795.709|121.045 +638206.723|219800.470|121.219 +638201.660|219805.186|121.494 +638196.594|219809.898|121.469 +638191.532|219814.613|121.628 +638186.420|219819.368|121.634 +638181.403|219824.038|121.750 +638176.334|219828.750|121.207 +638171.265|219833.465|121.033 +638166.248|219838.135|121.006 +638161.180|219842.850|120.789 +638156.102|219847.565|120.244 +638151.075|219852.241|119.820 +638146.049|219856.913|119.531 +638140.974|219861.635|119.229 +638135.927|219866.316|118.244 +638130.882|219871.001|117.418 +638125.844|219875.683|116.854 +638120.763|219880.386|114.928 +638115.725|219885.074|114.568 +638110.692|219889.756|114.520 +638105.709|219894.395|114.501 +638100.680|219899.080|114.590 +638095.696|219903.722|114.523 +638090.667|219908.406|114.581 +638085.632|219913.094|114.547 +638080.697|219917.694|114.559 +638075.710|219922.339|114.590 +638070.724|219926.984|114.605 +638065.734|219931.629|114.544 +638060.748|219936.277|114.575 +638055.804|219940.880|114.529 +638050.857|219945.488|114.480 +638045.916|219950.103|115.562 +638041.042|219954.648|115.989 +638036.126|219959.235|116.525 +638026.324|219968.376|117.272 +638021.392|219972.972|117.583 +638016.512|219977.523|117.924 +638011.577|219982.119|118.147 +638006.737|219986.633|118.348 +638001.845|219991.193|118.491 +637996.944|219995.756|118.546 +637992.030|220000.331|118.375 +637987.099|220004.922|117.949 +637982.185|220009.497|117.860 +637977.260|220014.081|117.613 +637972.377|220018.628|117.306 +637967.494|220023.173|117.050 +637962.550|220027.772|116.635 +637957.664|220032.320|116.406 +637952.745|220036.901|116.358 +637947.862|220041.449|116.236 +637942.985|220045.990|116.193 +637938.130|220050.517|116.437 +637933.274|220055.043|116.736 +637928.489|220059.508|117.284 +637923.661|220064.013|117.933 +637918.884|220068.479|119.183 +637904.501|220081.902|121.137 +637899.716|220086.367|121.698 +637894.958|220090.808|122.612 +637890.123|220095.313|122.630 +637885.353|220099.760|122.877 +637880.541|220104.247|123.167 +637875.776|220108.688|123.499 +637870.961|220113.181|123.773 +637866.154|220117.655|123.706 +637861.387|220122.099|124.036 +637856.635|220126.531|124.538 +637851.795|220131.036|124.157 +637847.031|220135.474|124.084 +637842.236|220139.942|124.231 +637837.475|220144.383|124.691 +637832.745|220148.793|124.999 +637827.904|220153.298|124.758 +637823.131|220157.745|124.688 +637818.355|220162.193|124.642 +637813.579|220166.643|124.612 +637808.790|220171.102|124.478 +637803.987|220175.573|124.261 +637799.189|220180.042|124.100 +637794.383|220184.513|123.898 +637789.628|220188.945|123.734 +637784.861|220193.380|123.514 +637780.048|220197.860|123.338 +637775.332|220202.256|123.591 +637770.520|220206.733|123.036 +637765.719|220211.198|122.649 +637756.176|220220.080|121.999 +637751.424|220224.506|121.673 +637746.629|220228.965|121.442 +637741.908|220233.357|121.036 +637737.104|220237.832|120.756 +637727.631|220246.641|119.857 +637718.210|220255.407|119.464 +637713.415|220259.866|119.037 +637708.755|220264.203|118.903 +637704.034|220268.598|118.714 +637694.643|220277.334|118.065 +637685.188|220286.131|117.412 +637675.803|220294.863|116.669 +637661.691|220307.988|115.367 +637657.049|220312.307|115.297 +637652.370|220316.662|114.986 +637642.961|220325.410|113.813 +637633.609|220334.109|113.115 +637614.904|220351.498|110.789 +637605.793|220359.981|110.652 +637601.142|220364.303|110.201 +637591.891|220372.904|109.070 +637587.399|220377.086|109.030 +637578.294|220385.560|108.594 +637550.569|220411.318|103.888 +637541.694|220419.581|103.711 +637532.778|220427.881|103.687 +637528.395|220431.965|103.684 +637515.219|220444.240|103.913 +637510.875|220448.284|104.205 +637506.669|220452.216|105.199 +637476.860|220480.005|107.787 +637463.875|220492.087|106.982 +637442.079|220512.344|103.824 +637437.738|220516.377|103.160 +637429.317|220524.219|103.105 +637421.148|220531.836|103.809 +637400.446|220551.103|103.358 +637396.627|220554.672|104.763 +637368.287|220581.040|104.711 +637360.115|220588.633|103.995 +637352.391|220595.826|104.821 +637348.581|220599.380|105.470 +637329.653|220617.016|107.585 +637325.849|220620.558|107.878 +637322.112|220624.039|108.229 +637311.176|220634.237|110.277 +637300.307|220644.366|111.813 +637296.677|220647.749|112.246 +637285.795|220657.884|113.197 +637282.043|220661.368|112.764 +637274.713|220668.192|113.032 +637263.636|220678.482|111.981 +637259.838|220682.006|111.243 +637256.205|220685.383|110.957 +637252.353|220688.952|109.844 +637248.698|220692.347|109.506 +637238.021|220702.275|109.045 +637231.248|220708.581|109.698 +637228.026|220711.583|110.246 +637221.531|220717.643|111.572 +637218.346|220720.612|112.276 +637453.094|220500.235|106.071 +637461.674|220492.231|106.644 +637470.230|220484.245|106.906 +637474.586|220480.185|107.326 +637478.926|220476.131|107.451 +637483.205|220472.135|107.268 +637491.871|220464.043|107.262 +637508.669|220448.318|104.117 +637517.377|220440.183|103.690 +637521.778|220436.074|103.754 +637526.195|220431.950|103.657 +637543.943|220415.381|103.855 +637552.938|220406.987|104.175 +637557.495|220402.738|104.708 +637562.124|220398.428|105.674 +637566.788|220394.085|106.580 +637571.528|220389.677|107.948 +637585.192|220376.934|109.036 +637589.806|220372.627|109.228 +637599.005|220364.050|110.070 +637603.580|220359.783|110.380 +637608.226|220355.448|110.536 +637622.256|220342.369|112.346 +637636.194|220329.360|113.200 +637640.934|220324.941|113.825 +637650.367|220316.141|114.867 +637664.504|220302.949|115.864 +637669.189|220298.579|116.297 +637673.910|220294.171|116.681 +637692.832|220276.511|118.004 +637735.675|220236.524|120.777 +637740.430|220232.086|121.055 +637745.233|220227.606|121.353 +637749.985|220223.171|121.664 +637754.838|220218.642|122.036 +637759.641|220214.158|122.435 +637764.475|220209.647|122.716 +637769.261|220205.179|123.014 +637774.125|220200.643|123.594 +637778.935|220196.147|123.347 +637783.745|220191.658|123.523 +637788.558|220187.165|123.749 +637793.410|220182.632|123.944 +637798.257|220178.109|124.097 +637803.060|220173.623|124.334 +637807.955|220169.054|124.551 +637812.786|220164.543|124.651 +637817.660|220159.989|124.724 +637822.427|220155.539|124.703 +637827.295|220150.991|124.782 +637832.181|220146.428|125.054 +637837.009|220141.917|124.764 +637841.803|220137.431|124.185 +637846.653|220132.901|124.157 +637851.542|220128.338|124.557 +637856.370|220123.827|124.340 +637861.216|220119.292|123.874 +637866.041|220114.784|123.658 +637870.955|220110.197|123.904 +637875.749|220105.710|123.438 +637880.656|220101.120|123.149 +637885.469|220096.624|122.865 +637890.379|220092.034|122.646 +637895.232|220087.495|122.304 +637900.093|220082.944|121.561 +637904.928|220078.421|121.033 +637909.768|220073.889|120.009 +637914.700|220069.274|119.512 +637919.488|220064.787|118.442 +637924.407|220060.185|117.796 +637929.269|220055.631|117.028 +637934.201|220051.020|116.531 +637939.141|220046.399|116.181 +637944.052|220041.812|116.056 +637949.026|220037.163|116.190 +637953.994|220032.524|116.227 +637958.963|220027.885|116.312 +637963.946|220023.234|116.647 +637968.927|220018.586|116.989 +637973.944|220013.901|117.187 +637978.930|220009.250|117.653 +637983.938|220004.571|117.815 +637988.900|219999.941|117.967 +637993.871|219995.302|118.342 +637998.867|219990.636|118.360 +638003.857|219985.975|118.253 +638008.843|219981.318|118.180 +638013.815|219976.666|117.842 +638018.746|219972.061|117.616 +638023.766|219967.367|117.327 +638028.738|219962.719|116.964 +638033.706|219958.074|116.598 +638038.717|219953.386|116.089 +638043.676|219948.747|115.492 +638048.665|219944.074|114.559 +638053.701|219939.374|114.532 +638058.687|219934.714|114.568 +638063.720|219930.014|114.568 +638068.798|219925.271|114.568 +638073.830|219920.571|114.605 +638078.859|219915.874|114.565 +638083.885|219911.177|114.511 +638088.920|219906.477|114.678 +638093.992|219901.740|114.562 +638099.067|219897.001|114.605 +638104.090|219892.307|114.535 +638109.165|219887.567|114.559 +638114.240|219882.828|114.678 +638119.276|219878.131|115.087 +638124.390|219873.373|116.842 +638129.474|219868.633|117.461 +638134.513|219863.939|118.250 +638139.597|219859.202|119.214 +638144.669|219854.469|119.622 +638149.689|219849.784|119.826 +638154.757|219845.057|120.247 +638159.826|219840.326|120.826 +638164.889|219835.602|120.985 +638169.949|219830.877|121.152 +638175.008|219826.150|121.055 +638180.022|219821.471|121.311 +638185.082|219816.747|121.548 +638190.139|219812.022|121.478 +638195.198|219807.295|121.396 +638200.255|219802.570|121.286 +638205.312|219797.843|121.006 +638210.368|219793.116|120.780 +638215.428|219788.391|120.677 +638220.488|219783.661|120.408 +638225.547|219778.936|120.494 +638260.935|219745.917|123.280 +638265.988|219741.199|123.536 +638271.054|219736.459|123.021 +638276.068|219731.777|123.021 +638281.119|219727.065|123.478 +638286.178|219722.341|123.591 +638291.189|219717.659|123.627 +638296.258|219712.923|123.280 +638301.260|219708.256|123.819 +638306.274|219703.571|123.801 +638311.340|219698.841|123.734 +638316.354|219694.156|123.792 +638321.325|219689.514|123.795 +638326.394|219684.774|123.630 +638331.368|219680.126|123.511 +638336.391|219675.435|123.463 +638341.417|219670.738|123.298 +638346.398|219666.084|123.139 +638351.375|219661.433|123.045 +638356.410|219656.726|122.810 +638361.394|219652.069|122.627 +638366.387|219647.403|122.280 +638371.428|219642.693|121.969 +638376.421|219638.033|121.801 +638381.416|219633.360|121.475 +638386.385|219628.715|120.853 +638391.380|219624.049|120.661 +638396.373|219619.385|120.579 +638401.332|219614.752|120.280 +638406.325|219610.092|120.262 +638411.272|219605.471|120.259 +638416.221|219600.850|120.241 +638421.159|219596.242|120.448 +638426.097|219591.636|120.704 +638431.038|219587.028|120.914 +638435.936|219582.456|121.030 +638440.840|219577.878|121.067 +638445.793|219573.254|121.131 +638450.704|219568.666|121.094 +638455.614|219564.082|121.119 +638460.479|219559.541|121.143 +638465.395|219554.950|121.119 +638470.257|219550.415|121.241 +638475.179|219545.819|121.192 +638480.056|219541.262|121.106 +638484.930|219536.714|121.125 +638489.813|219532.154|121.055 +638494.689|219527.598|121.039 +638499.572|219523.038|120.997 +638504.400|219518.533|121.097 +638509.317|219513.946|121.301 +638514.157|219509.428|121.268 +638519.003|219504.902|121.183 +638523.895|219500.333|121.152 +638528.726|219495.822|121.286 +638533.576|219491.296|121.268 +638538.437|219486.751|121.091 +638543.348|219482.170|120.978 +638548.148|219477.684|120.997 +638553.013|219473.142|120.890 +638557.878|219468.597|120.805 +638562.748|219464.050|120.701 +638567.573|219459.545|120.588 +638563.245|219460.386|120.616 +638558.377|219464.922|120.652 +638553.504|219469.466|120.796 +638548.587|219474.047|120.896 +638543.726|219478.577|120.945 +638538.818|219483.149|121.018 +638533.957|219487.678|121.103 +638529.004|219492.296|121.207 +638524.112|219496.852|121.143 +638519.226|219501.406|121.082 +638514.331|219505.966|121.128 +638509.433|219510.529|121.213 +638504.467|219515.156|121.003 +638499.588|219519.697|120.908 +638494.653|219524.297|120.963 +638489.724|219528.890|120.939 +638484.789|219533.486|121.036 +638479.867|219538.068|120.972 +638474.938|219542.658|121.052 +638469.967|219547.285|121.052 +638465.051|219551.863|121.006 +638460.131|219556.441|120.991 +638455.169|219561.062|120.951 +638450.204|219565.682|120.969 +638445.242|219570.300|120.972 +638440.334|219574.869|120.902 +638435.381|219579.481|120.823 +638430.379|219584.135|120.771 +638425.436|219588.735|120.558 +638420.443|219593.380|120.381 +638415.502|219597.976|120.125 +638410.555|219602.582|120.058 +638405.553|219607.239|120.146 +638400.555|219611.890|120.155 +638395.547|219616.557|120.436 +638390.545|219621.214|120.604 +638385.501|219625.911|120.722 +638380.441|219630.626|121.189 +638375.436|219635.293|121.606 +638370.395|219639.990|121.807 +638365.350|219644.690|122.091 +638360.348|219649.350|122.515 +638355.313|219654.041|122.743 +638350.229|219658.775|122.908 +638345.246|219663.417|123.021 +638340.171|219668.144|123.152 +638335.138|219672.829|123.344 +638330.112|219677.511|123.435 +638325.040|219682.235|123.560 +638320.017|219686.911|123.661 +638314.948|219691.632|123.712 +638309.928|219696.305|123.755 +638304.863|219701.017|123.639 +638299.843|219705.693|123.749 +638294.792|219710.387|123.109 +638289.720|219715.114|123.527 +638284.706|219719.784|123.502 +638279.643|219724.493|123.331 +638274.590|219729.193|122.923 +638269.573|219733.862|122.908 +638264.495|219738.608|124.249 +638259.441|219743.305|123.761 +638224.042|219776.220|120.448 +638218.930|219780.978|120.360 +638213.867|219785.694|120.506 +638208.808|219790.406|120.616 +638203.699|219795.164|120.853 +638198.637|219799.879|120.981 +638193.580|219804.591|121.262 +638188.517|219809.304|121.301 +638183.412|219814.058|121.426 +638178.349|219818.771|121.164 +638173.286|219823.483|121.027 +638168.227|219828.195|121.247 +638163.164|219832.907|121.094 +638158.095|219837.620|120.695 +638153.023|219842.335|120.256 +638148.000|219847.007|119.814 +638142.931|219851.723|119.585 +638137.859|219856.441|119.259 +638132.818|219861.123|118.311 +638127.734|219865.847|117.549 +638122.647|219870.575|116.848 +638117.578|219875.272|115.251 +638112.533|219879.959|114.562 +638107.458|219884.684|114.532 +638102.429|219889.366|114.523 +638097.400|219894.047|114.541 +638092.371|219898.726|114.565 +638087.339|219903.411|114.495 +638082.309|219908.092|114.565 +638077.280|219912.774|114.614 +638072.294|219917.416|114.581 +638067.261|219922.101|114.562 +638062.226|219926.786|114.581 +638057.236|219931.431|114.547 +638052.204|219936.116|114.602 +638047.166|219940.807|114.565 +638042.176|219945.452|114.578 +638037.245|219950.057|115.833 +638032.285|219954.681|116.455 +638027.317|219959.311|116.861 +638022.389|219963.901|117.171 +638017.457|219968.498|117.406 +638012.480|219973.134|117.711 +638007.545|219977.730|117.903 +638002.610|219982.324|118.144 +637997.666|219986.926|118.232 +637992.765|219991.489|118.232 +637987.788|219996.119|117.812 +637977.958|220005.263|117.531 +637973.023|220009.850|117.156 +637968.082|220014.447|116.696 +637963.151|220019.031|116.425 +637958.265|220023.575|116.156 +637953.333|220028.166|115.931 +637948.465|220032.695|115.977 +637943.582|220037.240|115.833 +637938.715|220041.772|115.897 +637933.868|220046.286|116.278 +637929.007|220050.812|116.489 +637919.375|220059.798|118.025 +637914.629|220064.230|119.083 +637909.814|220068.722|119.829 +637905.031|220073.182|120.436 +637900.276|220077.616|121.353 +637895.491|220082.082|121.896 +637890.718|220086.532|122.606 +637885.899|220091.019|122.801 +637881.077|220095.511|122.975 +637876.310|220099.949|123.264 +637871.494|220104.436|123.520 +637866.736|220108.871|123.926 +637861.926|220113.345|123.780 +637857.141|220117.801|123.941 +637852.383|220122.236|124.359 +637847.616|220126.677|124.724 +637842.824|220131.133|124.356 +637838.070|220135.559|124.395 +637833.324|220139.985|124.999 +637828.599|220144.380|124.923 +637823.768|220148.876|124.746 +637819.044|220153.271|124.703 +637814.277|220157.709|124.724 +637809.546|220162.113|124.645 +637804.758|220166.566|124.535 +637800.000|220170.992|124.267 +637795.245|220175.415|124.060 +637790.490|220179.837|123.877 +637785.735|220184.263|123.709 +637781.011|220188.655|123.435 +637776.256|220193.081|123.335 +637771.532|220197.482|123.481 +637766.765|220201.911|122.923 +637761.988|220206.352|122.716 +637757.236|220210.772|122.347 +637752.482|220215.194|121.948 +637747.721|220219.620|121.561 +637743.018|220223.994|121.271 +637738.269|220228.414|121.018 +637733.569|220232.787|120.802 +637728.820|220237.213|120.582 +637714.607|220250.435|119.308 +637709.931|220254.788|119.025 +637700.553|220263.523|118.686 +637695.856|220267.894|118.339 +637686.468|220276.627|117.400 +637681.847|220280.931|117.312 +637672.496|220289.636|116.790 +637653.885|220306.958|115.327 +637644.616|220315.583|114.657 +637635.246|220324.298|113.459 +637630.570|220328.647|112.947 +637626.017|220332.887|112.938 +637621.311|220337.264|112.292 +637612.063|220345.865|111.194 +637607.424|220350.184|110.737 +637602.821|220354.467|110.536 +637593.647|220363.007|109.774 +637589.047|220367.287|109.372 +637579.919|220375.785|108.728 +637575.325|220380.055|108.134 +637570.625|220384.420|107.256 +637566.050|220388.678|106.525 +637561.439|220392.960|105.626 +637556.787|220397.285|104.818 +637552.203|220401.546|104.135 +637534.388|220418.140|103.669 +637516.782|220434.538|103.565 +637508.077|220442.652|103.995 +637503.844|220446.605|104.580 +637499.707|220450.473|105.687 +637469.730|220478.417|107.204 +637465.311|220482.529|106.729 +637447.992|220498.647|105.299 +637443.362|220502.935|103.434 +637439.025|220506.971|103.001 +637409.919|220534.098|103.916 +637405.853|220537.890|104.166 +637381.414|220560.677|104.522 +637377.376|220564.444|104.522 +637361.160|220579.556|103.922 +637357.311|220583.150|104.364 +637349.483|220590.453|104.943 +637326.690|220611.743|108.076 +637319.162|220618.775|108.975 +637300.892|220635.847|112.121 +637293.528|220642.720|112.749 +637289.883|220646.124|113.105 +637282.610|220652.909|113.523 +637278.904|220656.366|113.681 +637275.246|220659.776|113.624 +637264.072|220670.179|112.532 +637260.335|220673.654|112.023 +637256.665|220677.074|111.773 +637252.941|220680.536|111.133 +637245.446|220687.507|109.707 +637241.907|220690.805|109.615 +637237.856|220694.554|107.595 +637234.485|220697.706|108.162 +637231.224|220700.760|109.146 +637227.871|220703.887|109.396 +637224.539|220706.999|109.935 +637221.312|220710.020|110.865 +637214.746|220716.155|111.929 +637438.735|220505.209|103.334 +637443.057|220501.173|103.721 +637447.510|220497.028|104.754 +637464.878|220480.834|106.711 +637477.801|220468.770|107.080 +637507.492|220441.000|103.855 +637511.784|220436.986|103.330 +637520.711|220428.658|104.150 +637533.903|220416.332|103.626 +637538.457|220412.089|104.345 +637542.785|220408.036|103.577 +637547.272|220403.851|103.964 +637565.688|220386.687|106.747 +637570.226|220382.454|106.979 +637574.966|220378.040|108.119 +637602.538|220352.321|110.505 +637621.125|220334.984|112.334 +637625.764|220330.656|112.584 +637630.369|220326.358|112.944 +637639.791|220317.577|114.151 +637649.191|220308.808|115.026 +637663.239|220295.698|115.855 +637667.921|220291.330|116.288 +637677.431|220282.464|117.211 +637682.124|220278.084|117.479 +637686.837|220273.682|117.546 +637701.071|220260.402|118.604 +637705.871|220255.925|119.043 +637729.686|220233.705|120.713 +637734.465|220229.243|120.808 +637739.217|220224.811|121.085 +637744.005|220220.339|121.305 +637748.800|220215.868|121.594 +637753.612|220211.378|122.048 +637758.416|220206.898|122.475 +637763.192|220202.438|122.701 +637768.063|220197.897|123.335 +637772.851|220193.425|123.322 +637777.640|220188.954|123.331 +637782.456|220184.461|123.569 +637787.262|220179.975|123.789 +637792.112|220175.445|123.984 +637796.909|220170.971|124.139 +637801.756|220166.445|124.353 +637806.596|220161.927|124.554 +637811.424|220157.419|124.648 +637816.240|220152.920|124.651 +637821.104|220148.379|124.685 +637825.914|220143.886|124.685 +637830.812|220139.317|125.084 +637835.622|220134.818|124.685 +637840.401|220130.353|124.435 +637845.324|220125.760|124.685 +637850.137|220121.261|124.350 +637854.986|220116.725|123.908 +637859.811|220112.217|123.722 +637864.673|220107.679|123.938 +637869.516|220103.150|123.453 +637874.380|220098.605|123.234 +637879.239|220094.060|122.969 +637884.101|220089.519|122.749 +637888.968|220084.971|122.588 +637893.793|220080.457|121.975 +637898.664|220075.900|121.341 +637903.458|220071.408|120.393 +637908.335|220066.848|119.808 +637913.142|220062.346|118.991 +637917.961|220057.829|117.735 +637922.856|220053.254|117.397 +637927.696|220048.721|116.364 +637932.607|220044.134|116.224 +637937.496|220039.562|115.849 +637942.403|220034.978|115.702 +637947.368|220030.339|115.724 +637952.281|220025.749|115.745 +637957.250|220021.109|115.855 +637962.230|220016.464|116.169 +637967.211|220011.816|116.516 +637972.197|220007.168|116.986 +637977.168|220002.526|117.287 +637987.102|219993.251|117.866 +637992.110|219988.575|118.077 +637997.054|219983.954|118.074 +638002.034|219979.297|117.912 +638007.014|219974.640|117.754 +638011.943|219970.031|117.495 +638016.917|219965.380|117.269 +638021.889|219960.728|116.992 +638026.863|219956.077|116.760 +638036.769|219946.805|115.428 +638041.710|219942.175|114.511 +638046.696|219937.515|114.565 +638051.677|219932.858|114.495 +638056.663|219928.197|114.581 +638061.693|219923.500|114.553 +638066.673|219918.846|114.520 +638071.654|219914.188|114.544 +638076.680|219909.491|114.541 +638081.660|219904.837|114.556 +638086.683|219900.143|114.492 +638091.709|219895.446|114.590 +638096.736|219890.749|114.611 +638101.756|219886.055|114.532 +638106.733|219881.407|114.565 +638111.753|219876.713|114.562 +638116.798|219872.010|115.352 +638121.860|219867.301|117.025 +638126.938|219862.561|117.659 +638131.974|219857.867|118.433 +638137.006|219853.173|119.284 +638142.026|219848.486|119.637 +638147.089|219843.758|119.869 +638152.109|219839.073|120.293 +638157.171|219834.346|120.655 +638162.188|219829.664|121.149 +638167.196|219824.982|121.143 +638172.253|219820.255|121.061 +638177.310|219815.531|121.280 +638182.321|219810.852|121.463 +638187.374|219806.124|121.305 +638192.382|219801.443|121.131 +638197.390|219796.761|120.902 +638202.443|219792.034|120.686 +638207.500|219787.306|120.500 +638212.508|219782.621|120.265 +638217.568|219777.897|120.351 +638222.624|219773.169|120.335 +638257.844|219740.297|123.804 +638262.907|219735.560|123.252 +638267.966|219730.827|122.886 +638272.977|219726.145|122.893 +638278.025|219721.433|123.475 +638283.085|219716.702|123.310 +638288.089|219712.026|123.572 +638293.152|219707.293|123.350 +638298.203|219702.578|123.767 +638303.217|219697.893|123.706 +638308.276|219693.162|123.709 +638313.339|219688.432|123.703 +638318.353|219683.744|123.648 +638323.419|219679.007|123.542 +638328.439|219674.313|123.414 +638333.459|219669.620|123.319 +638338.531|219664.880|123.164 +638343.557|219660.180|122.993 +638348.583|219655.483|122.896 +638353.609|219650.780|122.713 +638358.642|219646.071|122.487 +638363.686|219641.346|122.021 +638368.721|219636.634|121.807 +638373.763|219631.916|121.521 +638378.768|219627.231|121.042 +638383.809|219622.510|120.786 +638388.802|219617.837|120.634 +638393.858|219613.103|120.238 +638398.857|219608.425|120.015 +638403.847|219603.758|120.055 +638408.891|219599.040|120.003 +638413.884|219594.370|120.006 +638418.867|219589.710|120.213 +638423.854|219585.050|120.430 +638428.840|219580.389|120.628 +638433.833|219575.720|120.713 +638438.786|219571.087|120.728 +638443.785|219566.414|120.808 +638448.741|219561.778|120.808 +638453.700|219557.139|120.805 +638458.656|219552.503|120.847 +638463.615|219547.867|120.896 +638468.574|219543.228|120.951 +638473.539|219538.583|120.948 +638478.459|219533.983|120.954 +638483.375|219529.381|120.981 +638488.304|219524.769|120.905 +638493.226|219520.167|120.939 +638498.152|219515.561|120.957 +638503.035|219510.992|120.927 +638507.960|219506.387|121.018 +638512.825|219501.839|121.256 +638517.717|219497.261|121.183 +638522.606|219492.689|121.183 +638527.501|219488.108|121.122 +638532.390|219483.536|121.164 +638537.243|219478.997|121.131 +638542.144|219474.410|121.070 +638547.005|219469.865|120.975 +638551.867|219465.315|120.872 +638556.744|219460.749|120.646 +638553.053|219460.154|120.710 +638548.127|219464.757|120.936 +638543.119|219469.433|121.042 +638538.163|219474.059|121.094 +638533.161|219478.729|121.186 +638528.220|219483.341|121.152 +638523.289|219487.943|121.024 +638518.290|219492.610|121.152 +638513.352|219497.218|121.143 +638508.372|219501.866|121.109 +638503.452|219506.460|120.939 +638498.478|219511.102|120.869 +638493.498|219515.750|120.896 +638488.569|219520.350|120.887 +638483.595|219524.995|120.920 +638478.623|219529.634|120.887 +638473.652|219534.273|120.902 +638468.690|219538.906|120.856 +638463.773|219543.493|120.814 +638458.763|219548.169|120.780 +638453.806|219552.796|120.683 +638448.844|219557.428|120.738 +638443.885|219562.055|120.704 +638438.929|219566.682|120.692 +638433.979|219571.303|120.622 +638428.980|219575.966|120.558 +638424.040|219580.578|120.341 +638419.047|219585.235|120.241 +638414.109|219589.841|119.970 +638409.117|219594.501|119.930 +638404.167|219599.122|119.982 +638399.174|219603.783|119.936 +638394.169|219608.455|120.177 +638389.216|219613.082|120.405 +638384.214|219617.755|120.683 +638379.222|219622.415|120.786 +638374.266|219627.051|121.259 +638369.215|219631.766|121.658 +638364.271|219636.384|121.878 +638359.282|219641.047|122.158 +638354.286|219645.714|122.542 +638349.303|219650.368|122.722 +638344.322|219655.020|122.841 +638339.345|219659.671|122.963 +638334.364|219664.322|123.176 +638329.387|219668.970|123.298 +638324.412|219673.615|123.411 +638319.438|219678.261|123.554 +638314.418|219682.945|123.594 +638309.447|219687.588|123.703 +638304.479|219692.224|123.728 +638299.465|219696.905|123.719 +638294.551|219701.486|123.450 +638289.537|219706.168|123.447 +638284.526|219710.847|123.478 +638279.564|219715.477|123.325 +638274.559|219720.143|122.856 +638269.597|219724.773|122.774 +638264.586|219729.452|122.819 +638259.566|219734.143|123.405 +638219.558|219771.447|120.122 +638214.501|219776.172|120.137 +638209.536|219780.805|120.070 +638204.480|219785.529|120.387 +638199.469|219790.211|120.600 +638194.506|219794.844|120.774 +638189.450|219799.565|120.869 +638184.442|219804.244|121.119 +638179.431|219808.919|120.902 +638174.420|219813.598|120.985 +638169.415|219818.274|121.317 +638164.401|219822.953|121.073 +638159.342|219827.674|121.058 +638154.325|219832.350|120.539 +638149.308|219837.031|120.186 +638144.288|219841.710|119.811 +638139.271|219846.392|119.582 +638134.247|219851.076|119.168 +638129.212|219855.764|118.308 +638124.183|219860.452|117.699 +638119.145|219865.146|116.922 +638114.079|219869.852|115.233 +638109.040|219874.549|114.605 +638104.014|219879.237|114.553 +638098.991|219883.925|114.556 +638093.962|219888.616|114.504 +638088.939|219893.304|114.535 +638083.913|219897.994|114.547 +638078.886|219902.682|114.568 +638073.857|219907.376|114.520 +638068.828|219912.067|114.575 +638063.848|219916.715|114.559 +638058.815|219921.409|114.565 +638053.783|219926.106|114.535 +638048.800|219930.754|114.532 +638043.764|219935.451|114.532 +638038.781|219940.103|114.581 +638033.822|219944.736|115.199 +638028.841|219949.399|116.275 +638023.873|219954.041|116.635 +638018.899|219958.683|116.912 +638013.924|219963.328|117.190 +638008.947|219967.977|117.412 +638003.970|219972.622|117.635 +637999.035|219977.230|117.802 +637994.045|219981.885|117.882 +637989.101|219986.499|117.888 +637984.142|219991.123|117.717 +637974.154|220000.435|117.123 +637969.173|220005.077|116.684 +637964.178|220009.731|116.111 +637959.191|220014.376|115.693 +637954.223|220019.012|115.568 +637949.307|220023.600|115.504 +637944.387|220028.187|115.480 +637939.425|220032.817|115.510 +637934.524|220037.395|115.727 +637929.638|220041.958|116.160 +637924.813|220046.469|116.772 +637915.053|220055.589|117.857 +637910.188|220060.136|118.567 +637905.421|220064.601|119.887 +637900.587|220069.119|120.375 +637895.802|220073.596|121.451 +637890.968|220078.113|121.960 +637886.128|220082.633|122.438 +637881.333|220087.114|122.853 +637876.508|220091.616|122.981 +637871.695|220096.112|123.240 +637866.834|220100.650|123.487 +637862.076|220105.094|123.865 +637857.232|220109.614|123.834 +637852.447|220114.080|123.938 +637847.634|220118.576|124.273 +637842.867|220123.029|124.593 +637838.076|220127.497|124.709 +637833.281|220131.972|124.804 +637828.490|220136.446|124.923 +637823.656|220140.951|124.688 +637818.895|220145.395|124.685 +637814.128|220149.845|124.648 +637809.312|220154.335|124.660 +637804.578|220158.751|124.535 +637799.735|220163.268|124.334 +637794.989|220167.694|124.154 +637790.192|220172.166|123.987 +637785.443|220176.597|123.825 +637780.633|220181.081|123.600 +637775.869|220185.522|123.377 +637771.126|220189.948|123.350 +637766.441|220194.319|123.417 +637761.620|220198.811|122.786 +637756.880|220203.228|122.457 +637752.128|220207.657|122.070 +637747.318|220212.140|121.625 +637742.624|220216.517|121.353 +637737.876|220220.943|121.070 +637733.172|220225.323|120.789 +637728.436|220229.739|120.637 +637709.581|220247.302|119.198 +637700.169|220256.071|118.555 +637695.484|220260.439|118.247 +637690.839|220264.764|117.912 +637667.564|220286.451|116.571 +637662.843|220290.849|116.202 +637653.589|220299.472|115.462 +637648.926|220303.815|115.221 +637630.333|220321.128|113.304 +637621.082|220329.748|112.630 +637598.073|220351.172|110.445 +637566.008|220381.030|107.003 +637561.402|220385.313|106.107 +637556.815|220389.580|105.059 +637552.194|220393.875|104.141 +637538.780|220406.377|103.745 +637529.895|220414.659|103.532 +637516.688|220426.973|103.452 +637512.247|220431.112|103.160 +637507.940|220435.132|103.605 +637499.375|220443.130|104.519 +637495.273|220446.971|105.793 +637491.082|220450.887|106.345 +637482.504|220458.892|106.769 +637469.566|220470.953|106.500 +637465.289|220474.936|106.470 +637461.019|220478.920|106.476 +637448.163|220490.896|105.632 +637439.162|220499.259|103.102 +637434.901|220503.228|102.782 +637426.686|220510.894|103.404 +637422.459|220514.832|103.044 +637414.363|220522.394|104.068 +637405.881|220530.288|103.114 +637397.992|220537.661|104.480 +637373.529|220560.466|104.315 +637353.589|220579.056|104.452 +637345.868|220586.268|105.242 +637334.496|220596.887|106.738 +637327.023|220603.867|107.802 +637323.264|220607.378|108.466 +637301.352|220627.855|112.246 +637297.704|220631.259|112.560 +637294.046|220634.670|112.855 +637290.416|220638.062|113.258 +637286.789|220641.449|113.691 +637275.904|220651.599|114.197 +637272.149|220655.098|113.947 +637264.883|220661.867|113.843 +637257.394|220668.838|112.913 +637253.770|220672.212|112.630 +637242.575|220682.621|110.423 +637238.950|220685.995|110.204 +637235.311|220689.382|109.731 +637224.805|220699.169|109.341 +637221.510|220702.247|109.801 +637218.245|220705.298|110.591 +637215.054|220708.279|111.057 +637205.483|220717.225|113.096 +637432.255|220503.136|102.742 +637436.483|220499.180|102.916 +637445.240|220490.999|104.547 +637454.100|220482.724|106.296 +637458.297|220478.789|106.186 +637462.549|220474.808|106.104 +637466.883|220470.751|106.452 +637471.199|220466.710|106.479 +637475.476|220462.702|106.324 +637488.418|220450.577|106.253 +637501.079|220438.692|104.345 +637513.981|220426.592|103.010 +637518.556|220422.319|104.059 +637527.289|220414.132|103.434 +637540.587|220401.680|103.711 +637545.025|220397.523|103.593 +637549.497|220393.335|103.672 +637554.084|220389.046|104.437 +637558.695|220384.740|105.360 +637577.236|220367.418|108.466 +637581.815|220363.135|108.762 +637586.460|220358.792|109.487 +637591.062|220354.488|109.975 +637595.628|220350.215|110.277 +637600.264|220345.881|110.725 +637609.545|220337.197|111.450 +637618.836|220328.513|112.322 +637623.487|220324.164|112.673 +637628.190|220319.765|113.081 +637632.899|220315.370|113.858 +637637.584|220310.990|114.191 +637646.972|220302.215|115.056 +637651.620|220297.868|115.227 +637665.751|220284.658|116.480 +637670.509|220280.211|116.833 +637694.091|220258.159|118.232 +637708.362|220244.815|119.137 +637727.445|220226.975|120.652 +637732.215|220222.510|120.719 +637737.004|220218.029|120.978 +637741.792|220213.554|121.225 +637746.587|220209.071|121.567 +637751.442|220204.532|122.024 +637756.234|220200.052|122.402 +637761.110|220195.492|122.722 +637765.932|220190.990|123.383 +637770.751|220186.476|123.286 +637775.534|220182.002|123.280 +637780.392|220177.457|123.545 +637785.193|220172.967|123.767 +637790.085|220168.392|123.938 +637794.873|220163.912|124.112 +637799.765|220159.337|124.356 +637804.599|220154.816|124.526 +637809.467|220150.260|124.596 +637814.277|220145.758|124.621 +637819.135|220141.213|124.654 +637823.930|220136.723|124.572 +637828.849|220132.121|124.788 +637833.659|220127.622|124.892 +637838.527|220123.062|124.636 +637843.343|220118.551|124.359 +637848.192|220114.007|123.978 +637853.026|220109.480|123.929 +637857.915|220104.908|123.944 +637862.765|220100.364|123.606 +637867.617|220095.819|123.298 +637872.472|220091.272|123.021 +637877.340|220086.715|122.917 +637882.241|220082.124|122.655 +637887.054|220077.607|121.984 +637891.946|220073.026|121.649 +637896.780|220068.488|120.643 +637901.633|220063.937|119.854 +637906.522|220059.356|119.503 +637911.319|220054.845|118.058 +637921.125|220045.658|117.101 +637925.983|220041.098|116.397 +637930.891|220036.496|115.684 +637935.813|220031.884|115.154 +637940.772|220027.242|115.175 +637945.695|220022.637|115.327 +637950.648|220018.001|115.300 +637955.604|220013.361|115.321 +637960.581|220008.707|115.678 +637965.623|220003.998|116.288 +637970.557|219999.386|116.812 +637975.568|219994.702|117.046 +637980.533|219990.062|117.348 +637985.496|219985.426|117.644 +637990.488|219980.757|117.659 +637995.423|219976.142|117.571 +638000.403|219971.482|117.437 +638005.384|219966.824|117.293 +638010.315|219962.213|117.178 +638015.287|219957.562|116.906 +638020.258|219952.907|116.669 +638025.178|219948.302|116.400 +638030.161|219943.629|115.462 +638035.053|219939.045|114.544 +638040.037|219934.385|114.562 +638045.066|219929.681|114.538 +638050.043|219925.027|114.498 +638055.027|219920.367|114.559 +638060.053|219915.670|114.538 +638065.030|219911.012|114.559 +638070.053|219906.315|114.550 +638075.031|219901.661|114.532 +638080.054|219896.964|114.520 +638085.074|219892.270|114.492 +638090.054|219887.616|114.654 +638095.071|219882.922|114.581 +638100.091|219878.228|114.541 +638105.066|219873.577|114.584 +638110.086|219868.883|114.681 +638115.152|219864.171|116.480 +638120.150|219859.513|117.610 +638125.177|219854.819|118.202 +638130.203|219850.129|118.793 +638135.229|219845.438|119.515 +638140.243|219840.750|119.777 +638145.257|219836.065|119.982 +638150.222|219831.426|120.384 +638155.282|219826.699|120.719 +638160.247|219822.062|121.076 +638165.258|219817.381|121.350 +638170.308|219812.653|121.180 +638175.264|219808.017|120.945 +638180.272|219803.336|120.945 +638185.277|219798.654|121.000 +638190.282|219793.972|120.753 +638195.287|219789.287|120.546 +638200.340|219784.560|120.354 +638205.345|219779.875|120.098 +638210.353|219775.190|119.887 +638215.407|219770.466|120.027 +638220.369|219765.827|120.085 +638225.422|219761.102|120.268 +638240.486|219747.018|120.408 +638260.535|219728.306|123.078 +638265.546|219723.615|122.765 +638270.600|219718.887|122.749 +638275.599|219714.218|123.228 +638280.604|219709.542|123.371 +638285.611|219704.864|123.520 +638290.616|219700.182|123.606 +638295.624|219695.500|123.703 +638300.681|219690.770|123.694 +638305.643|219686.131|123.697 +638310.657|219681.443|123.639 +638315.671|219676.752|123.563 +638320.685|219672.061|123.520 +638325.705|219667.364|123.307 +638330.725|219662.667|123.146 +638335.696|219658.016|123.063 +638340.768|219653.270|122.847 +638345.791|219648.570|122.719 +638350.772|219643.913|122.566 +638355.807|219639.200|122.188 +638360.845|219634.491|121.890 +638365.878|219629.782|121.679 +638370.919|219625.064|121.329 +638375.970|219620.339|120.875 +638381.005|219615.630|120.780 +638386.049|219610.912|120.479 +638391.054|219606.230|120.116 +638396.096|219601.518|120.040 +638401.134|219596.806|119.994 +638406.133|219592.133|119.845 +638411.125|219587.467|119.845 +638416.161|219582.760|119.976 +638421.150|219578.100|120.101 +638426.134|219573.446|120.357 +638431.126|219568.776|120.411 +638436.122|219564.110|120.506 +638441.121|219559.440|120.558 +638446.074|219554.807|120.579 +638451.082|219550.129|120.549 +638456.083|219545.453|120.600 +638461.039|219540.820|120.671 +638466.002|219536.184|120.710 +638470.964|219531.545|120.716 +638475.920|219526.915|120.869 +638480.891|219522.267|120.808 +638485.859|219517.625|120.847 +638490.828|219512.979|120.863 +638495.756|219508.377|120.863 +638500.734|219503.720|120.808 +638505.653|219499.126|120.969 +638510.569|219494.530|121.128 +638515.556|219489.869|121.085 +638520.451|219485.294|121.003 +638525.428|219480.643|121.109 +638530.314|219476.074|121.170 +638535.255|219471.456|121.183 +638540.156|219466.875|121.137 +638545.116|219462.239|121.003 +638550.035|219457.640|120.814 +638544.253|219459.240|120.884 +638539.193|219463.964|121.033 +638534.192|219468.637|121.116 +638529.199|219473.294|121.076 +638519.183|219482.646|120.930 +638514.151|219487.343|120.896 +638509.149|219492.015|121.103 +638504.187|219496.639|120.814 +638499.164|219501.330|120.750 +638494.138|219506.021|120.728 +638489.112|219510.712|120.738 +638484.091|219515.396|120.698 +638479.117|219520.039|120.701 +638474.100|219524.723|120.674 +638469.043|219529.448|120.579 +638464.081|219534.081|120.515 +638459.070|219538.759|120.469 +638454.059|219543.438|120.442 +638449.052|219548.114|120.418 +638444.044|219552.792|120.402 +638439.042|219557.462|120.335 +638434.040|219562.132|120.277 +638429.038|219566.804|120.253 +638424.046|219571.465|120.098 +638419.053|219576.125|119.954 +638414.064|219580.782|119.774 +638409.065|219585.452|119.817 +638404.023|219590.161|119.787 +638399.031|219594.821|119.726 +638393.986|219599.534|119.805 +638388.985|219604.206|120.003 +638383.980|219608.888|120.360 +638378.932|219613.606|120.619 +638373.936|219618.273|120.796 +638368.889|219622.994|121.186 +638363.887|219627.670|121.618 +638358.852|219632.373|121.743 +638353.859|219637.039|122.051 +638348.821|219641.752|122.460 +638343.837|219646.406|122.600 +638338.811|219651.103|122.713 +638333.782|219655.803|122.929 +638328.850|219660.408|123.057 +638323.827|219665.105|123.243 +638318.804|219669.799|123.411 +638313.833|219674.441|123.426 +638308.862|219679.087|123.511 +638303.890|219683.729|123.584 +638298.876|219688.414|123.636 +638293.865|219693.089|123.456 +638288.946|219697.686|123.475 +638283.938|219702.361|123.362 +638278.976|219706.994|123.185 +638274.017|219711.618|122.777 +638269.009|219716.297|122.664 +638264.044|219720.933|122.670 +638259.075|219725.578|123.097 +638239.108|219744.189|120.094 +638224.173|219758.140|120.226 +638219.208|219762.773|119.902 +638214.151|219767.497|119.869 +638209.186|219772.130|119.784 +638204.220|219776.769|119.838 +638199.213|219781.451|120.134 +638194.202|219786.136|120.469 +638189.194|219790.817|120.792 +638184.232|219795.453|120.908 +638179.221|219800.129|120.671 +638174.259|219804.765|120.841 +638169.254|219809.447|121.241 +638164.292|219814.080|121.170 +638159.281|219818.758|121.079 +638154.312|219823.394|120.698 +638149.344|219828.030|120.411 +638144.324|219832.715|120.012 +638139.356|219837.351|119.802 +638134.385|219841.990|119.494 +638129.358|219846.678|118.863 +638124.378|219851.323|118.299 +638119.398|219855.969|117.866 +638114.356|219860.665|116.946 +638109.379|219865.289|115.026 +638104.343|219869.986|114.511 +638099.369|219874.634|114.572 +638094.392|219879.283|114.520 +638089.372|219883.980|114.532 +638084.397|219888.628|114.605 +638079.417|219893.282|114.547 +638074.391|219897.979|114.498 +638069.413|219902.630|114.529 +638064.436|219907.285|114.541 +638059.455|219911.939|114.568 +638054.475|219916.593|114.568 +638049.443|219921.296|114.495 +638044.465|219925.951|114.599 +638039.479|219930.608|114.581 +638034.495|219935.268|114.584 +638029.539|219939.908|115.196 +638024.650|219944.492|116.156 +638019.685|219949.137|116.516 +638014.708|219953.791|116.736 +638009.736|219958.442|116.976 +638004.808|219963.051|117.202 +637999.870|219967.666|117.290 +637994.886|219972.326|117.394 +637989.991|219976.901|117.421 +637985.047|219981.522|117.440 +637980.088|219986.155|117.242 +637975.129|219990.788|117.034 +637970.158|219995.433|116.699 +637965.223|220000.039|116.245 +637960.231|220004.696|115.666 +637955.244|220009.350|115.230 +637950.331|220013.944|115.193 +637945.369|220018.580|115.175 +637940.446|220023.179|115.038 +637935.490|220027.812|115.135 +637930.650|220032.344|115.492 +637925.730|220036.950|116.099 +637920.875|220041.498|116.925 +637916.010|220046.054|117.595 +637911.118|220050.629|117.961 +637906.321|220055.128|118.866 +637896.567|220064.260|119.954 +637891.812|220068.722|121.369 +637886.975|220073.249|121.835 +637882.135|220077.778|122.252 +637877.270|220082.335|122.938 +637872.436|220086.852|122.938 +637867.571|220091.403|123.130 +637862.765|220095.898|123.463 +637857.900|220100.449|123.679 +637853.145|220104.896|124.069 +637848.247|220109.474|123.969 +637843.462|220113.949|124.081 +637838.658|220118.448|124.484 +637833.885|220122.910|124.767 +637829.105|220127.378|124.983 +637824.262|220131.901|124.602 +637819.465|220136.388|124.660 +637814.649|220140.887|124.599 +637809.842|220145.383|124.633 +637805.066|220149.842|124.548 +637800.244|220154.350|124.487 +637795.492|220158.791|124.200 +637790.649|220163.311|124.026 +637785.857|220167.792|123.871 +637781.051|220172.278|123.636 +637776.293|220176.725|123.405 +637771.486|220181.215|123.203 +637766.749|220185.641|123.234 +637761.927|220190.146|122.954 +637757.127|220194.626|122.502 +637752.344|220199.095|122.195 +637747.580|220203.539|121.707 +637742.783|220208.019|121.344 +637737.994|220212.491|121.097 +637728.503|220221.357|120.570 +637714.293|220234.628|119.415 +637709.596|220239.018|119.265 +637681.426|220265.328|117.549 +637672.042|220274.091|116.647 +637662.773|220282.750|116.300 +637658.100|220287.112|115.916 +637653.437|220291.471|115.602 +637648.822|220295.781|115.318 +637644.137|220300.154|114.922 +637634.844|220308.832|114.066 +637625.517|220317.540|113.081 +637620.936|220321.820|112.843 +637611.691|220330.449|111.932 +637607.080|220334.755|111.578 +637597.841|220343.378|110.554 +637593.223|220347.691|110.240 +637588.673|220351.940|109.756 +637579.492|220360.511|108.985 +637574.920|220364.781|108.445 +637570.293|220369.094|107.610 +637561.131|220377.644|106.287 +637556.477|220381.978|105.107 +637551.877|220386.270|104.269 +637547.354|220390.491|103.894 +637542.882|220394.667|103.544 +637538.435|220398.824|103.632 +637525.192|220411.205|103.419 +637520.848|220415.268|103.599 +637516.471|220419.365|103.870 +637507.666|220427.592|103.391 +637494.831|220439.607|104.638 +637482.172|220451.464|106.372 +637465.006|220467.514|106.455 +637460.678|220471.556|106.156 +637443.234|220487.838|104.254 +637434.639|220495.861|103.172 +637417.890|220511.518|103.111 +637409.803|220519.090|103.916 +637389.403|220538.161|104.477 +637385.288|220542.002|104.291 +637381.274|220545.751|104.345 +637361.020|220564.657|103.788 +637357.140|220568.288|104.284 +637345.506|220579.163|105.181 +637341.623|220582.793|105.485 +637326.477|220596.963|107.552 +637319.107|220603.864|108.820 +637315.529|220607.217|109.811 +637300.990|220620.829|112.435 +637297.301|220624.273|112.581 +637289.938|220631.159|113.151 +637286.481|220634.396|114.044 +637279.196|220641.205|114.358 +637275.502|220644.652|114.328 +637268.260|220651.416|114.255 +637264.590|220654.839|114.154 +637260.960|220658.225|114.011 +637257.360|220661.584|113.791 +637246.348|220671.856|112.584 +637242.547|220675.391|111.645 +637235.220|220682.219|110.460 +637231.626|220685.569|110.161 +637227.984|220688.961|109.487 +637214.478|220701.586|110.496 +637211.159|220704.689|110.676 +637204.822|220710.623|112.191 +637434.172|220493.663|102.776 +637442.893|220485.516|103.983 +637460.294|220469.249|105.991 +637464.591|220465.228|106.156 +637473.162|220457.206|106.174 +637477.460|220453.183|106.132 +637481.791|220449.126|106.019 +637494.550|220437.162|104.586 +637511.823|220420.971|103.163 +637529.627|220404.314|103.727 +637542.934|220391.854|103.577 +637547.439|220387.641|103.843 +637552.081|220383.304|104.638 +637556.702|220378.988|105.342 +637570.574|220366.031|107.662 +637579.846|220357.369|108.905 +637593.699|220344.418|110.380 +637598.262|220340.150|110.691 +637602.885|220335.828|111.088 +637607.582|220331.439|111.652 +637612.188|220327.129|112.008 +637616.864|220322.758|112.499 +637621.579|220318.348|112.965 +637649.614|220292.108|115.010 +637673.197|220270.037|116.992 +637677.924|220265.611|117.205 +637682.612|220261.225|117.491 +637692.088|220252.356|118.205 +637696.862|220247.890|118.491 +637701.610|220243.446|118.997 +637706.341|220239.014|119.034 +637715.796|220230.163|119.479 +637725.421|220221.159|120.594 +637730.188|220216.694|120.671 +637734.922|220212.262|120.869 +637739.713|220207.779|121.186 +637744.502|220203.295|121.500 +637749.296|220198.808|121.896 +637754.143|220194.276|122.323 +637758.937|220189.789|122.771 +637763.842|220185.202|123.359 +637768.566|220180.776|123.277 +637773.397|220176.250|123.313 +637778.201|220171.751|123.545 +637783.053|220167.207|123.816 +637787.887|220162.680|123.938 +637792.721|220158.154|124.093 +637797.571|220153.615|124.417 +637802.448|220149.050|124.572 +637807.263|220144.538|124.627 +637812.119|220139.988|124.663 +637816.935|220135.480|124.764 +637821.787|220130.932|124.785 +637826.661|220126.369|125.044 +637831.519|220121.813|124.737 +637836.338|220117.295|124.493 +637841.139|220112.793|124.093 +637846.025|220108.215|124.087 +637850.908|220103.640|124.075 +637855.705|220099.138|123.697 +637860.567|220094.585|123.472 +637865.465|220089.991|123.161 +637870.272|220085.483|122.935 +637875.194|220080.872|122.926 +637880.001|220076.358|122.179 +637884.896|220071.767|121.884 +637889.733|220067.232|121.490 +637894.546|220062.706|120.274 +637904.272|220053.577|119.000 +637914.050|220044.399|117.766 +637918.951|220039.797|117.013 +637923.795|220035.249|116.123 +637928.705|220030.641|115.483 +637933.628|220026.023|114.977 +637938.575|220021.384|114.864 +637943.534|220016.739|114.904 +637948.542|220012.051|114.959 +637953.504|220007.403|115.114 +637958.484|220002.742|115.532 +637963.513|219998.036|116.041 +637968.494|219993.376|116.565 +637973.508|219988.682|116.903 +637978.461|219984.043|117.101 +637983.456|219979.361|117.232 +637988.443|219974.688|117.208 +637993.426|219970.016|117.199 +637998.407|219965.346|117.138 +638003.381|219960.683|116.982 +638008.356|219956.019|116.854 +638013.321|219951.359|116.598 +638018.295|219946.699|116.470 +638023.294|219942.002|115.989 +638028.229|219937.366|115.077 +638033.182|219932.717|114.562 +638038.208|219928.008|114.550 +638043.185|219923.342|114.568 +638048.205|219918.636|114.520 +638053.180|219913.969|114.535 +638058.203|219909.263|114.532 +638063.174|219904.602|114.529 +638068.243|219899.854|114.532 +638073.214|219895.193|114.523 +638078.231|219890.490|114.547 +638083.251|219885.784|114.587 +638088.265|219881.084|114.504 +638093.282|219876.381|114.556 +638098.345|219871.635|114.617 +638103.362|219866.935|114.626 +638108.394|219862.226|115.352 +638113.454|219857.508|117.135 +638118.486|219852.802|118.013 +638123.549|219848.062|118.308 +638128.572|219843.362|119.022 +638133.589|219838.668|119.619 +638138.643|219833.931|119.796 +638143.650|219829.241|120.012 +638148.661|219824.550|120.405 +638153.669|219819.859|120.701 +638158.677|219815.171|121.164 +638163.676|219810.480|121.000 +638168.726|219805.750|121.140 +638173.676|219801.104|120.664 +638178.724|219796.371|120.625 +638183.726|219791.683|120.756 +638188.727|219786.995|120.719 +638193.726|219782.301|120.113 +638198.728|219777.607|119.823 +638203.730|219772.916|119.662 +638208.735|219768.226|119.619 +638213.785|219763.492|119.589 +638218.741|219758.850|119.832 +638223.789|219754.122|120.219 +638228.787|219749.438|120.201 +638233.792|219744.744|120.085 +638258.822|219721.320|123.082 +638263.830|219716.617|122.542 +638268.832|219711.929|122.637 +638273.834|219707.244|122.765 +638278.827|219702.568|123.274 +638283.828|219697.884|123.432 +638288.784|219693.235|123.441 +638293.789|219688.545|123.426 +638298.791|219683.860|123.603 +638303.753|219679.205|123.511 +638308.761|219674.512|123.502 +638313.723|219669.860|123.423 +638318.734|219665.160|123.347 +638323.702|219660.500|123.155 +638328.671|219655.839|122.981 +638333.688|219651.136|122.841 +638338.659|219646.473|122.661 +638343.633|219641.806|122.509 +638348.611|219637.140|122.259 +638353.594|219632.464|121.911 +638358.523|219627.840|121.722 +638363.555|219623.122|121.466 +638368.499|219618.483|121.052 +638373.485|219613.804|120.756 +638378.472|219609.129|120.576 +638383.419|219604.484|120.195 +638388.411|219599.802|119.942 +638393.404|219595.123|119.762 +638398.345|219590.490|119.668 +638403.328|219585.821|119.713 +638408.266|219581.188|119.704 +638413.256|219576.515|119.707 +638418.191|219571.891|119.848 +638423.128|219567.261|119.924 +638428.112|219562.595|120.104 +638433.004|219558.008|120.174 +638437.948|219553.375|120.247 +638442.895|219548.742|120.311 +638447.842|219544.106|120.372 +638452.795|219539.461|120.341 +638457.699|219534.864|120.384 +638462.652|219530.222|120.436 +638467.559|219525.626|120.500 +638472.512|219520.983|120.573 +638477.422|219516.381|120.649 +638482.336|219511.779|120.677 +638487.249|219507.173|120.732 +638492.166|219502.561|120.735 +638497.085|219497.953|120.774 +638502.011|219493.335|120.744 +638506.921|219488.736|120.939 +638511.853|219484.112|120.896 +638516.733|219479.537|120.899 +638521.661|219474.916|120.920 +638526.535|219470.350|121.073 +638531.470|219465.726|121.100 +638536.365|219461.136|121.018 +638541.260|219456.549|120.991 +638535.216|219458.448|121.015 +638530.275|219463.068|120.957 +638525.288|219467.732|120.908 +638520.299|219472.398|120.924 +638515.364|219477.013|120.890 +638510.335|219481.716|120.853 +638505.360|219486.367|120.777 +638500.389|219491.019|120.689 +638495.360|219495.719|120.707 +638490.392|219500.364|120.607 +638485.375|219505.058|120.585 +638480.355|219509.752|120.573 +638475.338|219514.446|120.570 +638470.284|219519.164|120.411 +638465.276|219523.846|120.329 +638460.219|219528.567|120.259 +638455.166|219533.291|120.195 +638450.155|219537.973|120.195 +638445.101|219542.694|120.174 +638440.051|219547.413|120.119 +638435.046|219552.088|120.113 +638429.959|219556.840|119.933 +638424.914|219561.549|119.845 +638419.870|219566.265|119.817 +638414.835|219570.968|119.625 +638409.790|219575.683|119.659 +638404.746|219580.395|119.643 +638399.662|219585.147|119.598 +638394.620|219589.856|119.625 +638389.573|219594.575|119.802 +638384.486|219599.332|119.884 +638379.432|219604.057|120.232 +638374.385|219608.778|120.561 +638369.297|219613.533|120.756 +638364.207|219618.294|121.073 +638359.163|219623.012|121.472 +638354.079|219627.770|121.756 +638348.998|219632.519|121.960 +638343.962|219637.228|122.298 +638338.884|219641.977|122.509 +638333.809|219646.723|122.737 +638328.786|219651.417|122.877 +638323.669|219656.202|123.011 +638318.597|219660.942|123.225 +638313.580|219665.633|123.335 +638308.514|219670.366|123.399 +638303.406|219675.142|123.435 +638298.392|219679.827|123.520 +638293.286|219684.597|123.475 +638288.230|219689.322|123.411 +638283.219|219694.004|123.347 +638278.165|219698.725|123.188 +638273.115|219703.437|122.768 +638268.061|219708.158|122.573 +638232.832|219741.043|120.204 +638227.779|219745.765|120.018 +638222.774|219750.440|120.015 +638217.766|219755.116|119.692 +638212.709|219759.840|119.433 +638207.747|219764.477|119.393 +638202.690|219769.201|119.479 +638197.679|219773.886|119.671 +638187.667|219783.252|120.216 +638182.659|219787.934|120.576 +638177.651|219792.613|120.524 +638172.643|219797.291|120.591 +638167.687|219801.930|121.027 +638162.679|219806.609|120.927 +638157.674|219811.288|121.119 +638152.706|219815.924|120.649 +638147.695|219820.602|120.424 +638142.681|219825.284|120.061 +638137.713|219829.923|119.820 +638132.748|219834.562|119.619 +638127.728|219839.247|119.238 +638122.747|219843.892|118.464 +638117.773|219848.534|118.156 +638112.789|219853.183|117.565 +638107.788|219857.840|116.284 +638102.774|219862.506|114.739 +638097.845|219867.109|114.599 +638092.871|219871.757|114.578 +638087.942|219876.360|114.568 +638082.968|219881.005|114.605 +638078.036|219885.610|114.544 +638073.104|219890.216|114.535 +638068.176|219894.818|114.587 +638063.244|219899.427|114.568 +638058.312|219904.033|114.562 +638053.332|219908.684|114.562 +638048.446|219913.250|114.572 +638043.511|219917.858|114.565 +638038.580|219922.467|114.596 +638033.688|219927.033|114.575 +638028.765|219931.635|114.861 +638023.907|219936.183|115.507 +638019.005|219940.770|116.242 +638014.086|219945.370|116.592 +638009.191|219949.942|116.544 +638004.259|219954.550|116.684 +637999.376|219959.113|116.879 +637994.435|219963.728|116.888 +637989.543|219968.300|116.958 +637984.651|219972.869|117.019 +637979.753|219977.444|117.056 +637974.849|219982.025|116.967 +637969.875|219986.664|116.577 +637964.992|219991.221|116.160 +637960.054|219995.826|115.654 +637955.171|220000.383|115.309 +637950.239|220004.986|114.968 +637945.301|220009.591|114.611 +637940.437|220014.136|114.614 +637935.530|220018.720|114.712 +637930.723|220023.213|114.870 +637925.846|220027.775|115.407 +637921.036|220032.277|116.196 +637916.236|220036.773|117.086 +637906.574|220045.811|118.113 +637901.791|220050.294|119.220 +637896.994|220054.781|119.558 +637892.163|220059.301|120.064 +637887.423|220063.739|121.119 +637882.613|220068.244|121.859 +637877.800|220072.740|122.073 +637872.963|220077.263|122.557 +637868.224|220081.698|123.048 +637863.347|220086.255|123.097 +637858.531|220090.756|123.325 +637853.721|220095.252|123.609 +637848.902|220099.757|123.837 +637844.150|220104.201|124.270 +637839.304|220108.727|124.231 +637834.473|220113.242|124.380 +637829.697|220117.707|124.609 +637824.924|220122.166|124.904 +637820.096|220126.680|125.108 +637815.307|220131.149|124.831 +637810.494|220135.644|124.776 +637805.666|220140.152|124.612 +637800.847|220144.651|124.563 +637796.068|220149.114|124.459 +637791.261|220153.600|124.142 +637786.473|220158.072|124.002 +637781.672|220162.552|123.767 +637776.863|220167.042|123.508 +637772.096|220171.489|123.225 +637767.264|220176.003|123.234 +637762.589|220180.371|123.328 +637757.721|220184.909|122.688 +637752.930|220189.381|122.304 +637748.129|220193.858|121.878 +637743.377|220198.290|121.475 +637738.592|220202.758|121.204 +637729.100|220211.619|120.643 +637724.327|220216.078|120.555 +637705.311|220233.836|119.214 +637700.541|220238.292|118.897 +637695.865|220242.657|118.616 +637667.503|220269.141|116.589 +637658.188|220277.846|116.275 +637648.840|220286.573|115.519 +637644.171|220290.934|115.202 +637639.516|220295.281|115.017 +637634.865|220299.624|114.547 +637630.208|220303.974|114.059 +637620.902|220312.657|113.255 +637616.178|220317.065|112.420 +637611.612|220321.329|112.328 +637602.352|220329.976|111.377 +637593.053|220338.651|110.310 +637556.175|220373.066|105.732 +637546.964|220381.655|104.263 +637537.902|220390.116|103.458 +637529.112|220398.334|103.684 +637515.917|220410.675|104.089 +637511.454|220414.842|103.922 +637506.968|220419.027|103.096 +637489.798|220435.093|104.650 +637485.479|220439.131|104.800 +637481.310|220443.039|105.473 +637477.052|220447.023|105.702 +637472.736|220451.058|105.906 +637442.554|220479.252|104.440 +637438.116|220483.385|103.455 +637433.782|220487.427|102.748 +637416.978|220503.136|102.879 +637408.971|220510.644|104.519 +637392.338|220526.188|104.123 +637380.012|220537.713|103.614 +637367.805|220549.131|103.306 +637359.965|220556.477|104.114 +637352.065|220563.877|104.467 +637348.161|220567.535|104.867 +637340.370|220574.832|105.315 +637336.618|220578.352|106.177 +637332.799|220581.930|106.537 +637325.325|220588.941|107.747 +637321.615|220592.425|108.591 +637314.163|220599.411|109.734 +637299.505|220613.163|112.255 +637295.820|220616.617|112.606 +637292.074|220620.122|112.724 +637288.447|220623.523|113.331 +637281.290|220630.232|114.334 +637277.538|220633.743|114.251 +637273.908|220637.142|114.468 +637270.339|220640.489|114.709 +637266.617|220643.966|114.584 +637262.972|220647.377|114.568 +637259.320|220650.794|114.523 +637255.739|220654.144|114.361 +637252.057|220657.585|114.236 +637244.778|220664.388|113.523 +637240.855|220668.040|112.097 +637237.137|220671.511|111.475 +637233.604|220674.812|111.179 +637229.941|220678.232|110.594 +637222.805|220684.901|109.789 +637219.175|220688.288|109.177 +637215.853|220691.400|109.530 +637212.546|220694.502|109.945 +637206.020|220700.620|110.926 +637423.577|220494.998|102.639 +637432.011|220487.089|102.663 +637445.051|220474.878|104.617 +637470.934|220450.607|105.626 +637475.241|220446.568|105.647 +637488.034|220434.544|104.397 +637492.310|220430.530|104.065 +637500.896|220422.462|103.358 +637509.748|220414.165|103.843 +637514.268|220409.931|104.355 +637518.678|220405.792|104.291 +637522.933|220401.787|103.416 +637531.757|220393.506|103.111 +637536.244|220389.293|102.986 +637540.734|220385.087|103.455 +637545.345|220380.768|104.071 +637554.587|220372.118|105.485 +637582.327|220346.143|109.347 +637591.638|220337.425|110.445 +637596.268|220333.088|110.890 +637605.562|220324.377|111.758 +637614.812|220315.715|112.456 +637619.476|220311.341|112.633 +637624.188|220306.933|113.444 +637628.821|220302.593|113.785 +637642.921|220289.392|115.294 +637647.560|220285.042|115.458 +637652.236|220280.656|115.565 +637656.957|220276.234|115.998 +637666.324|220267.458|116.754 +637671.054|220263.030|116.973 +637675.772|220258.604|117.168 +637680.445|220254.227|117.379 +637694.710|220240.865|118.574 +637704.229|220231.943|119.107 +637708.956|220227.514|119.528 +637713.656|220223.107|119.409 +637723.273|220214.103|120.521 +637728.027|220209.641|120.533 +637732.801|220205.169|120.701 +637737.598|220200.674|121.088 +637742.384|220196.190|121.396 +637747.175|220191.703|121.777 +637752.015|220187.171|122.201 +637756.801|220182.687|122.606 +637761.656|220178.143|123.219 +637766.374|220173.717|123.121 +637771.199|220169.188|123.152 +637775.997|220164.692|123.362 +637780.807|220160.187|123.703 +637785.595|220155.697|123.889 +637790.475|220151.125|124.039 +637795.279|220146.626|124.407 +637800.098|220142.106|124.520 +637804.901|220137.601|124.508 +637809.778|220133.029|124.764 +637814.554|220128.555|124.990 +637819.462|220123.952|125.121 +637824.219|220119.487|124.770 +637829.035|220114.967|124.520 +637833.854|220110.447|124.304 +637838.746|220105.859|124.368 +637843.544|220101.354|123.990 +637848.351|220096.840|123.725 +637853.209|220092.283|123.496 +637858.058|220087.730|123.203 +637862.917|220083.170|123.018 +637867.788|220078.601|122.996 +637872.643|220074.038|122.301 +637877.486|220069.490|121.990 +637882.348|220064.931|121.899 +637887.176|220060.389|120.878 +637892.022|220055.835|120.058 +637896.866|220051.288|119.814 +637901.700|220046.740|118.845 +637906.604|220042.132|118.165 +637916.321|220033.000|116.867 +637921.152|220028.455|115.873 +637926.059|220023.844|115.224 +637930.918|220019.281|114.541 +637935.868|220014.636|114.495 +637940.818|220009.993|114.428 +637945.734|220005.385|114.636 +637950.760|220000.676|115.056 +637955.732|219996.018|115.370 +637960.703|219991.361|115.754 +637965.723|219986.658|116.217 +637970.649|219982.049|116.687 +637975.650|219977.361|116.897 +637980.637|219972.689|116.900 +637985.572|219968.059|116.885 +637990.604|219963.344|116.867 +637995.581|219958.674|116.790 +638000.556|219954.011|116.675 +638005.527|219949.347|116.492 +638010.504|219944.678|116.510 +638015.482|219940.014|116.483 +638020.487|219935.317|116.059 +638025.421|219930.678|115.236 +638030.423|219925.984|114.757 +638035.388|219921.324|114.556 +638040.415|219916.615|114.593 +638045.432|219911.909|114.517 +638050.406|219907.245|114.514 +638055.423|219902.542|114.504 +638060.443|219897.836|114.532 +638065.417|219893.172|114.568 +638070.434|219888.469|114.565 +638075.448|219883.766|114.556 +638080.465|219879.066|114.523 +638085.479|219874.363|114.556 +638090.493|219869.663|114.526 +638095.513|219864.960|114.678 +638100.524|219860.260|114.657 +638105.578|219855.542|116.126 +638110.622|219850.833|117.437 +638115.648|219846.130|118.189 +638120.662|219841.433|118.510 +638125.728|219836.690|119.156 +638130.745|219831.996|119.707 +638135.747|219827.305|119.762 +638140.758|219822.614|120.155 +638145.812|219817.881|120.463 +638150.816|219813.193|120.719 +638155.867|219808.459|120.939 +638160.872|219803.771|121.152 +638165.870|219799.084|121.049 +638170.912|219794.350|120.460 +638175.956|219789.613|120.201 +638180.958|219784.926|120.223 +638185.957|219780.235|119.881 +638196.006|219770.810|119.698 +638201.008|219766.116|119.320 +638206.055|219761.380|119.162 +638211.060|219756.692|119.384 +638216.062|219752.004|119.512 +638221.109|219747.274|119.720 +638226.059|219742.634|119.802 +638231.107|219737.907|120.076 +638256.034|219714.581|123.368 +638261.093|219709.823|122.451 +638266.095|219705.135|122.493 +638271.048|219700.496|122.697 +638276.044|219695.814|123.054 +638281.039|219691.132|123.328 +638286.041|219686.445|123.395 +638291.055|219681.741|123.042 +638296.048|219677.066|123.523 +638301.007|219672.415|123.444 +638306.015|219667.718|123.383 +638310.977|219663.066|123.325 +638315.988|219658.366|123.194 +638321.002|219653.663|123.066 +638325.970|219649.003|122.896 +638330.935|219644.342|122.777 +638335.955|219639.636|122.579 +638340.930|219634.967|122.332 +638345.913|219630.291|121.969 +638350.842|219625.664|121.740 +638355.819|219620.995|121.582 +638360.809|219616.310|121.170 +638365.795|219611.628|120.844 +638370.736|219606.992|120.576 +638375.726|219602.310|120.302 +638380.673|219597.662|119.930 +638385.662|219592.983|119.777 +638390.551|219588.396|119.726 +638395.498|219583.754|119.482 +638400.482|219579.085|119.555 +638405.371|219574.497|119.564 +638410.354|219569.825|119.649 +638415.252|219565.231|119.607 +638420.187|219560.605|119.738 +638425.082|219556.014|119.762 +638430.026|219551.378|119.838 +638434.921|219546.791|119.936 +638439.816|219542.198|120.006 +638444.766|219537.559|120.055 +638449.667|219532.962|120.104 +638454.572|219528.363|120.134 +638459.476|219523.763|120.189 +638464.383|219519.164|120.247 +638469.330|219514.525|120.408 +638474.195|219509.962|120.424 +638479.108|219505.356|120.466 +638483.970|219500.800|120.582 +638488.889|219496.185|120.573 +638493.757|219491.619|120.631 +638498.679|219487.001|120.640 +638503.556|219482.429|120.640 +638508.427|219477.860|120.747 +638513.300|219473.291|120.841 +638518.132|219468.762|120.896 +638523.024|219464.172|120.811 +638527.907|219459.594|120.878 +638524.407|219458.694|120.768 +638519.470|219463.306|120.701 +638514.575|219467.884|120.750 +638509.643|219472.493|120.683 +638504.763|219477.056|120.600 +638499.834|219481.661|120.546 +638494.909|219486.267|120.485 +638489.983|219490.872|120.463 +638485.052|219495.484|120.506 +638480.132|219500.083|120.454 +638475.167|219504.725|120.378 +638470.202|219509.364|120.323 +638465.294|219513.958|120.186 +638460.287|219518.643|120.113 +638455.330|219523.279|120.018 +638450.323|219527.966|120.000 +638445.367|219532.602|119.945 +638440.368|219537.278|119.838 +638435.366|219541.960|119.808 +638430.370|219546.632|119.674 +638425.375|219551.305|119.573 +638420.330|219556.026|119.564 +638415.335|219560.699|119.515 +638410.290|219565.420|119.537 +638405.252|219570.136|119.464 +638400.265|219574.802|119.366 +638395.227|219579.514|119.320 +638390.179|219584.239|119.518 +638385.135|219588.963|119.677 +638380.097|219593.678|119.784 +638375.052|219598.403|120.037 +638370.002|219603.136|120.491 +638364.914|219607.900|120.710 +638359.876|219612.619|120.966 +638354.835|219617.346|121.417 +638349.754|219622.101|121.637 +638344.724|219626.813|121.838 +638339.692|219631.522|122.103 +638334.611|219636.283|122.481 +638329.539|219641.032|122.649 +638324.470|219645.778|122.841 +638319.402|219650.524|123.014 +638314.385|219655.221|123.088 +638309.322|219659.963|123.219 +638304.259|219664.703|123.347 +638299.151|219669.482|123.395 +638294.137|219674.176|123.545 +638283.932|219683.723|123.371 +638278.884|219688.447|123.094 +638273.788|219693.211|122.789 +638268.689|219697.981|122.573 +638263.638|219702.703|122.259 +638258.539|219707.470|122.070 +638253.482|219712.209|122.432 +638233.149|219731.208|120.073 +638228.096|219735.932|119.781 +638222.993|219740.705|119.735 +638217.946|219745.426|119.525 +638212.892|219750.157|119.372 +638202.687|219759.703|119.162 +638197.679|219764.391|119.268 +638187.527|219773.901|119.838 +638182.473|219778.628|119.863 +638177.422|219783.362|120.076 +638172.323|219788.135|120.323 +638167.321|219792.823|120.792 +638162.271|219797.550|120.908 +638157.171|219802.324|120.841 +638152.167|219807.008|120.789 +638147.110|219811.736|120.573 +638142.053|219816.466|120.341 +638136.994|219821.197|119.997 +638131.931|219825.927|119.649 +638126.877|219830.661|119.643 +638121.851|219835.352|118.900 +638116.782|219840.088|118.372 +638111.717|219844.825|118.098 +638106.681|219849.528|117.150 +638101.615|219854.243|115.276 +638096.531|219858.992|114.608 +638091.511|219863.689|114.553 +638086.494|219868.386|114.584 +638081.474|219873.086|114.504 +638076.503|219877.743|114.526 +638071.486|219882.443|114.590 +638066.466|219887.144|114.605 +638061.537|219891.758|114.520 +638056.517|219896.461|114.590 +638051.543|219901.119|114.562 +638046.565|219905.779|114.581 +638041.588|219910.439|114.581 +638036.659|219915.057|114.575 +638031.731|219919.672|114.675 +638026.781|219924.317|115.260 +638021.934|219928.868|116.059 +638016.978|219933.516|116.525 +638012.086|219938.094|116.403 +638007.152|219942.715|116.403 +638002.220|219947.336|116.467 +637997.334|219951.911|116.513 +637992.402|219956.531|116.623 +637987.510|219961.113|116.614 +637982.624|219965.691|116.708 +637977.732|219970.272|116.720 +637972.782|219974.905|116.638 +637967.878|219979.498|116.477 +637962.998|219984.061|116.044 +637958.021|219988.715|115.593 +637953.147|219993.275|115.324 +637948.212|219997.893|114.852 +637943.272|220002.511|114.395 +637938.404|220007.070|114.264 +637933.548|220011.618|114.355 +637928.662|220016.199|114.696 +637923.837|220020.725|115.224 +637919.070|220025.200|115.873 +637914.233|220029.741|116.876 +637909.442|220034.234|117.220 +637904.650|220038.733|118.150 +637895.119|220047.679|119.497 +637890.300|220052.199|120.101 +637885.512|220056.689|120.533 +637880.760|220061.151|121.362 +637876.039|220065.580|121.987 +637871.220|220070.097|122.070 +637866.480|220074.541|122.536 +637861.701|220079.022|123.094 +637856.925|220083.499|123.149 +637852.154|220087.967|123.325 +637847.396|220092.427|123.633 +637842.590|220096.932|123.935 +637837.865|220101.360|124.115 +637833.114|220105.817|124.517 +637828.310|220110.312|124.426 +637823.525|220114.796|124.535 +637818.797|220119.225|124.767 +637814.030|220123.696|125.078 +637809.272|220128.152|125.023 +637804.426|220132.685|124.648 +637799.643|220137.162|124.429 +637794.876|220141.625|124.392 +637790.079|220146.114|124.103 +637785.287|220150.601|123.871 +637780.502|220155.078|123.761 +637775.753|220159.526|123.523 +637770.943|220164.024|123.240 +637766.201|220168.465|123.130 +637761.434|220172.931|123.249 +637756.673|220177.381|122.621 +637751.893|220181.852|122.295 +637747.102|220186.333|121.890 +637742.353|220190.777|121.457 +637737.623|220195.202|121.204 +637732.871|220199.646|120.823 +637728.091|220204.121|120.610 +637690.324|220239.450|118.302 +637676.193|220252.663|117.123 +637666.836|220261.420|116.681 +637662.221|220265.736|116.614 +637652.818|220274.533|115.995 +637648.167|220278.885|115.727 +637643.515|220283.235|115.504 +637638.846|220287.603|115.172 +637634.167|220291.980|114.809 +637629.525|220296.320|114.379 +637624.837|220300.703|114.008 +637620.192|220305.043|113.300 +637597.036|220326.696|111.264 +637592.416|220331.012|110.566 +637578.544|220343.976|108.914 +637574.030|220348.200|108.658 +637569.363|220352.565|108.119 +637564.898|220356.744|108.207 +637560.244|220361.084|106.945 +637550.966|220369.747|105.235 +637541.730|220378.375|103.599 +637537.265|220382.548|103.276 +637523.951|220395.021|103.647 +637519.507|220399.178|103.516 +637515.054|220403.342|103.062 +637510.723|220407.405|103.568 +637506.227|220411.608|103.202 +637501.777|220415.768|102.840 +637493.160|220423.846|103.385 +637480.359|220435.849|104.836 +637476.104|220439.842|105.299 +637458.873|220455.969|105.013 +637454.615|220459.955|105.043 +637441.682|220472.050|104.211 +637437.400|220476.055|103.943 +637428.411|220484.434|101.194 +637424.275|220488.311|101.444 +637412.315|220499.543|104.150 +637404.091|220507.248|104.507 +637399.958|220511.119|104.598 +637371.228|220537.993|104.318 +637359.072|220549.359|104.035 +637355.040|220553.130|104.068 +637347.240|220560.436|104.861 +637343.247|220564.170|104.870 +637331.909|220574.798|106.592 +637320.555|220585.436|108.122 +637298.493|220606.116|111.920 +637291.163|220612.980|112.776 +637280.315|220623.146|114.294 +637276.636|220626.590|114.492 +637272.994|220629.997|114.639 +637265.745|220636.782|115.108 +637258.388|220643.659|114.986 +637254.794|220647.024|115.175 +637251.142|220650.434|114.943 +637247.454|220653.876|114.584 +637236.436|220664.163|113.349 +637221.732|220677.879|110.783 +637218.126|220681.244|110.237 +637211.137|220687.772|109.835 +637204.526|220693.960|110.487 +637424.769|220485.653|101.404 +637429.189|220481.520|102.535 +637442.289|220469.249|104.556 +637455.078|220457.246|104.736 +637472.358|220441.027|105.019 +637485.165|220428.988|104.117 +637493.758|220420.913|103.413 +637498.122|220416.814|103.318 +637502.460|220412.739|103.099 +637533.470|220383.636|103.574 +637537.893|220379.482|103.401 +637542.483|220375.178|103.916 +637547.070|220370.883|104.708 +637556.379|220362.169|106.586 +637570.220|220349.200|108.341 +637579.462|220340.544|109.524 +637584.070|220336.225|110.091 +637588.691|220331.890|110.463 +637602.636|220318.820|111.935 +637607.296|220314.447|112.346 +637611.962|220310.070|112.816 +637616.632|220305.690|113.337 +637621.317|220301.294|113.675 +637625.944|220296.948|113.998 +637630.671|220292.516|114.654 +637639.952|220283.802|114.925 +637644.683|220279.361|115.379 +637649.413|220274.923|115.849 +637654.065|220270.558|116.135 +637663.501|220261.701|116.714 +637672.889|220252.883|117.077 +637691.787|220235.144|118.232 +637725.147|220203.834|120.524 +637729.871|220199.396|120.707 +637739.497|220190.362|121.369 +637744.273|220185.879|121.664 +637749.117|220181.334|122.121 +637753.948|220176.802|122.496 +637758.806|220172.245|123.146 +637763.589|220167.755|123.185 +637768.371|220163.262|123.252 +637773.208|220158.718|123.405 +637778.012|220154.210|123.709 +637782.892|220149.626|123.853 +637787.677|220145.133|124.042 +637792.563|220140.549|124.295 +637797.342|220136.059|124.493 +637802.216|220131.484|124.682 +637807.068|220126.930|125.160 +637811.890|220122.398|124.944 +637816.709|220117.865|124.706 +637821.540|220113.324|124.599 +637826.380|220108.779|124.569 +637831.215|220104.235|124.560 +637836.052|220099.684|124.078 +637840.868|220095.158|123.904 +637845.720|220090.595|123.600 +637850.530|220086.075|123.371 +637855.391|220081.503|123.240 +637860.244|220076.943|122.978 +637865.112|220072.359|122.420 +637869.903|220067.854|122.067 +637874.819|220063.236|122.024 +637879.650|220058.682|121.076 +637884.466|220054.150|120.457 +637889.346|220049.560|120.055 +637899.024|220040.443|118.272 +637903.903|220035.853|117.894 +637908.820|220031.226|117.388 +637913.681|220026.651|116.754 +637918.561|220022.051|115.779 +637923.463|220017.437|115.062 +637928.333|220012.855|114.568 +637933.256|220008.223|114.169 +637938.206|220003.574|114.117 +637943.171|219998.911|114.297 +637948.157|219994.232|114.876 +637953.138|219989.560|115.373 +637958.149|219984.860|115.629 +637963.123|219980.193|116.108 +637968.131|219975.493|116.419 +637973.121|219970.805|116.513 +637978.058|219966.166|116.531 +637983.039|219961.490|116.458 +637987.974|219956.854|116.455 +637992.951|219952.176|116.452 +637997.974|219947.457|116.385 +638002.948|219942.785|116.288 +638007.923|219938.112|116.220 +638012.903|219933.437|116.327 +638017.887|219928.758|116.498 +638022.895|219924.049|116.233 +638027.875|219919.358|115.425 +638032.807|219914.713|114.553 +638037.830|219909.997|114.584 +638042.847|219905.282|114.550 +638047.864|219900.570|114.532 +638052.884|219895.858|114.568 +638057.898|219891.146|114.511 +638062.915|219886.433|114.568 +638067.978|219881.678|114.547 +638072.992|219876.969|114.553 +638078.006|219872.260|114.559 +638083.065|219867.505|114.559 +638088.122|219862.753|114.541 +638093.136|219858.047|114.553 +638098.211|219853.286|115.212 +638103.267|219848.562|116.937 +638108.348|219843.804|117.970 +638113.408|219839.055|118.290 +638118.419|219834.352|118.616 +638123.485|219829.603|119.326 +638128.542|219824.861|119.668 +638133.592|219820.118|119.845 +638138.646|219815.375|120.223 +638143.696|219810.636|120.503 +638148.747|219805.896|120.689 +638153.745|219801.199|120.719 +638158.836|219796.417|120.649 +638163.834|219791.720|120.588 +638168.879|219786.980|120.405 +638173.920|219782.237|119.845 +638178.965|219777.495|119.570 +638184.012|219772.755|119.765 +638189.105|219767.970|119.662 +638194.150|219763.224|119.189 +638199.152|219758.524|118.872 +638204.245|219753.738|118.951 +638209.292|219748.996|119.037 +638214.340|219744.259|119.314 +638219.381|219739.526|119.424 +638224.478|219734.743|119.613 +638229.476|219730.049|119.811 +638244.619|219715.827|120.055 +638249.645|219711.127|121.734 +638254.738|219706.345|121.865 +638259.737|219701.654|122.033 +638264.778|219696.920|122.323 +638269.823|219692.187|122.618 +638274.818|219687.499|122.868 +638279.860|219682.766|123.139 +638284.904|219678.029|123.395 +638289.869|219673.359|122.920 +638294.911|219668.632|123.368 +638299.913|219663.929|123.356 +638304.920|219659.226|123.246 +638309.931|219654.517|123.100 +638314.939|219649.811|123.057 +638319.950|219645.104|122.957 +638324.964|219640.389|122.771 +638329.981|219635.674|122.563 +638334.953|219630.998|122.313 +638339.982|219626.271|121.926 +638344.953|219621.601|121.725 +638349.976|219616.886|121.567 +638354.960|219612.204|121.231 +638359.897|219607.562|120.860 +638364.927|219602.838|120.652 +638369.913|219598.153|120.344 +638374.860|219593.502|119.948 +638379.847|219588.820|119.774 +638384.784|219584.181|119.613 +638389.780|219579.490|119.354 +638394.730|219574.839|119.019 +638399.607|219570.264|119.253 +638404.587|219565.591|119.378 +638409.476|219561.004|119.445 +638414.417|219556.365|119.421 +638419.309|219551.771|119.442 +638424.207|219547.175|119.445 +638429.148|219542.536|119.528 +638433.994|219537.988|119.616 +638438.893|219533.392|119.649 +638443.785|219528.799|119.799 +638448.634|219524.248|119.912 +638453.535|219519.648|119.970 +638458.388|219515.098|120.104 +638463.243|219510.538|120.168 +638468.105|219505.975|120.201 +638472.957|219501.421|120.344 +638477.764|219496.910|120.509 +638482.634|219492.338|120.494 +638487.502|219487.772|120.533 +638492.327|219483.240|120.506 +638497.195|219478.671|120.600 +638502.020|219474.142|120.619 +638506.851|219469.609|120.631 +638511.664|219465.092|120.866 +638516.507|219460.542|120.735 +638516.425|219457.131|120.698 +638511.502|219461.742|120.543 +638506.662|219466.275|120.555 +638501.736|219470.890|120.485 +638496.856|219475.458|120.460 +638491.980|219480.027|120.439 +638487.060|219484.636|120.351 +638482.135|219489.248|120.357 +638477.212|219493.862|120.396 +638472.347|219498.416|120.280 +638467.443|219503.009|120.110 +638462.530|219507.609|120.046 +638457.623|219512.202|119.951 +638452.670|219516.838|119.851 +638447.768|219521.422|119.692 +638442.867|219526.007|119.567 +638437.969|219530.591|119.433 +638433.019|219535.224|119.381 +638428.069|219539.857|119.302 +638423.131|219544.478|119.119 +638418.178|219549.114|119.192 +638413.277|219553.701|119.189 +638408.330|219558.331|119.192 +638403.344|219563.000|119.140 +638398.403|219567.624|119.086 +638393.428|219572.278|118.823 +638388.515|219576.878|119.180 +638383.513|219581.566|119.497 +638378.524|219586.238|119.649 +638373.583|219590.865|119.777 +638368.581|219595.553|120.226 +638363.589|219600.232|120.527 +638358.602|219604.901|120.719 +638353.564|219609.623|121.076 +638348.623|219614.252|121.423 +638343.597|219618.962|121.615 +638338.574|219623.665|121.768 +638333.590|219628.337|122.143 +638328.564|219633.043|122.435 +638323.590|219637.704|122.649 +638318.569|219642.407|122.874 +638313.555|219647.101|122.966 +638308.545|219651.795|122.999 +638303.531|219656.489|123.127 +638298.520|219661.180|123.225 +638293.509|219665.874|123.359 +638288.507|219670.549|123.039 +638283.450|219675.289|123.307 +638278.449|219679.967|123.112 +638268.402|219689.364|122.569 +638263.401|219694.040|122.307 +638258.356|219698.761|121.954 +638253.354|219703.437|121.655 +638248.356|219708.116|121.448 +638243.305|219712.840|121.289 +638238.270|219717.534|119.814 +638228.211|219726.946|119.750 +638223.164|219731.671|119.494 +638218.159|219736.353|119.326 +638213.115|219741.071|119.131 +638208.061|219745.798|118.988 +638203.059|219750.480|118.814 +638198.006|219755.211|118.717 +638192.955|219759.941|118.887 +638187.950|219764.629|119.241 +638182.903|219769.359|119.467 +638177.852|219774.087|119.497 +638172.850|219778.772|119.793 +638167.803|219783.502|120.140 +638162.758|219788.230|120.439 +638157.711|219792.957|120.555 +638152.660|219797.685|120.622 +638147.610|219802.412|120.539 +638142.608|219807.094|120.482 +638137.551|219811.821|120.152 +638132.498|219816.552|119.927 +638127.490|219821.236|119.744 +638122.430|219825.967|119.403 +638117.364|219830.701|118.759 +638112.396|219835.346|118.397 +638107.337|219840.082|118.156 +638102.252|219844.825|117.147 +638097.199|219849.534|115.586 +638092.161|219854.240|114.706 +638087.140|219858.937|114.532 +638082.123|219863.631|114.498 +638077.106|219868.325|114.556 +638072.089|219873.019|114.590 +638067.072|219877.716|114.587 +638062.052|219882.413|114.556 +638057.035|219887.110|114.623 +638052.058|219891.764|114.562 +638047.038|219896.464|114.565 +638042.064|219901.119|114.590 +638037.089|219905.776|114.605 +638032.060|219910.479|114.526 +638027.189|219915.054|115.791 +638022.200|219919.736|116.501 +638017.219|219924.393|116.452 +638012.288|219929.008|116.428 +638007.310|219933.668|116.473 +638002.311|219938.341|116.126 +637997.383|219942.956|116.227 +637992.402|219947.616|116.266 +637987.468|219952.234|116.306 +637982.527|219956.858|116.266 +637977.589|219961.478|116.288 +637972.654|219966.099|116.382 +637967.701|219970.729|116.242 +637962.797|219975.319|116.096 +637957.823|219979.964|115.678 +637952.903|219984.567|115.358 +637947.972|219989.176|114.931 +637943.025|219993.796|114.315 +637938.148|219998.356|114.026 +637933.231|220002.956|113.934 +637928.391|220007.488|114.224 +637923.517|220012.057|114.696 +637918.686|220016.583|115.151 +637913.892|220021.082|116.047 +637909.103|220025.578|117.010 +637899.472|220034.606|118.260 +637894.634|220039.138|118.634 +637889.919|220043.567|119.887 +637885.125|220048.057|120.232 +637880.288|220052.589|120.600 +637875.505|220057.073|121.067 +637870.766|220061.520|122.030 +637865.998|220065.982|122.170 +637861.146|220070.527|122.417 +637856.412|220074.965|122.941 +637851.624|220079.451|123.399 +637846.842|220083.926|123.411 +637842.029|220088.434|123.642 +637837.308|220092.853|123.844 +637832.498|220097.358|124.118 +637827.783|220101.775|124.417 +637823.025|220106.231|124.749 +637818.224|220110.724|124.712 +637813.475|220115.168|124.712 +637808.723|220119.612|124.727 +637803.935|220124.096|124.846 +637799.217|220128.509|124.764 +637794.376|220133.038|124.435 +637789.631|220137.473|124.167 +637784.836|220141.957|123.880 +637780.090|220146.392|123.655 +637775.348|220150.830|123.463 +637770.599|220155.271|123.252 +637765.859|220159.702|123.139 +637761.135|220164.125|123.188 +637756.356|220168.590|122.789 +637751.561|220173.071|122.304 +637746.824|220177.497|121.929 +637742.079|220181.934|121.481 +637737.342|220186.360|121.167 +637727.863|220195.221|120.555 +637723.135|220199.643|120.369 +637704.210|220217.346|119.086 +637699.492|220221.763|118.735 +637690.110|220230.538|118.189 +637685.404|220234.942|118.010 +637680.692|220239.347|117.470 +637657.323|220261.216|116.492 +637652.662|220265.575|116.123 +637648.011|220269.924|115.852 +637643.336|220274.295|115.437 +637638.742|220278.596|115.254 +637629.391|220287.341|114.550 +637615.462|220300.365|113.368 +637610.850|220304.678|112.898 +637606.156|220309.064|112.267 +637596.936|220317.687|111.496 +637587.645|220326.370|110.405 +637569.278|220343.546|108.613 +637560.162|220352.071|107.979 +637546.214|220365.095|105.205 +637541.611|220369.390|104.336 +637537.042|220373.663|103.961 +637514.804|220394.478|103.513 +637510.360|220398.639|103.379 +637506.069|220402.662|103.836 +637501.777|220406.691|104.559 +637497.068|220411.074|102.821 +637492.700|220415.168|102.898 +637488.384|220419.216|103.279 +637484.080|220423.245|103.480 +637471.269|220435.254|104.391 +637458.434|220447.276|104.812 +637454.045|220451.381|104.422 +637449.796|220455.359|104.507 +637445.514|220459.367|104.431 +637441.204|220463.400|104.245 +637411.742|220490.984|104.373 +637403.144|220499.022|103.187 +637382.697|220518.178|104.108 +637370.426|220529.672|103.827 +637362.386|220537.207|103.879 +637358.344|220540.996|103.833 +637354.366|220544.720|103.867 +637350.325|220548.509|103.843 +637342.586|220555.772|104.903 +637338.675|220559.439|105.043 +637327.187|220570.226|106.570 +637315.952|220580.778|108.375 +637301.191|220594.647|111.222 +637297.637|220597.990|112.072 +637293.854|220601.535|112.221 +637290.224|220604.943|112.785 +637286.493|220608.442|112.944 +637275.642|220618.628|114.456 +637271.921|220622.118|114.483 +637264.694|220628.900|115.224 +637261.100|220632.265|115.385 +637250.161|220642.519|115.489 +637246.567|220645.884|115.276 +637239.057|220652.903|114.258 +637235.485|220656.247|113.959 +637231.696|220659.789|113.249 +637227.798|220663.422|111.947 +637217.002|220673.520|110.725 +637209.808|220680.247|109.731 +637206.251|220683.575|109.402 +637199.671|220689.751|110.371 +637193.063|220695.953|111.057 +637430.975|220470.651|103.404 +637435.309|220466.588|103.687 +637439.561|220462.598|103.836 +637452.491|220450.470|104.513 +637456.779|220446.443|104.425 +637461.117|220442.374|104.589 +637465.396|220438.357|104.470 +637473.976|220430.298|104.156 +637478.271|220426.263|103.916 +637482.538|220422.251|103.547 +637491.139|220414.165|102.934 +637495.522|220410.053|102.934 +637513.186|220393.475|103.068 +637517.672|220389.269|103.465 +637540.121|220368.207|104.495 +637549.356|220359.560|105.946 +637567.782|220342.299|108.335 +637572.366|220337.998|108.732 +637581.653|220329.299|110.003 +637586.252|220324.987|110.259 +637590.895|220320.634|110.813 +637600.161|220311.953|111.862 +637604.812|220307.592|112.243 +637609.472|220303.224|112.694 +637618.781|220294.494|113.611 +637637.508|220276.938|115.190 +637646.847|220268.178|115.644 +637651.544|220263.770|115.946 +637665.589|220250.588|116.309 +637679.777|220237.289|117.528 +637684.575|220232.790|118.028 +637689.275|220228.380|118.196 +637698.718|220219.519|118.567 +637708.249|220210.577|118.958 +637722.596|220197.126|120.317 +637727.366|220192.651|120.472 +637732.148|220188.165|120.771 +637736.928|220183.684|121.045 +637741.716|220179.194|121.439 +637746.550|220174.662|121.841 +637751.326|220170.181|122.188 +637756.164|220165.646|122.679 +637761.037|220161.077|123.097 +637765.756|220156.645|123.045 +637770.587|220152.113|123.155 +637775.384|220147.614|123.395 +637780.218|220143.078|123.581 +637785.016|220138.577|123.908 +637789.853|220134.041|124.161 +637794.696|220129.497|124.520 +637799.576|220124.922|124.782 +637804.353|220120.432|124.584 +637809.214|220115.872|124.727 +637814.009|220111.370|124.734 +637818.843|220106.832|124.657 +637823.653|220102.311|124.374 +637828.474|220097.785|124.225 +637833.278|220093.271|123.914 +637838.128|220088.711|123.618 +637842.943|220084.188|123.450 +637847.765|220079.662|123.371 +637852.615|220075.105|123.106 +637857.431|220070.573|122.493 +637862.277|220066.022|122.198 +637867.132|220061.459|122.054 +637871.942|220056.936|121.366 +637876.734|220052.425|120.518 +637881.629|220047.825|120.293 +637886.469|220043.278|119.994 +637891.321|220038.712|119.296 +637896.104|220034.210|118.314 +637905.827|220025.063|117.120 +637910.667|220020.509|116.251 +637915.507|220015.952|115.388 +637920.360|220011.386|114.663 +637925.279|220006.763|114.191 +637930.165|220002.169|113.938 +637935.109|219997.527|113.831 +637940.071|219992.870|114.020 +637945.006|219988.246|114.486 +637949.989|219983.573|115.068 +637954.958|219978.916|115.446 +637959.923|219974.259|115.779 +637964.879|219969.604|116.077 +637969.823|219964.962|116.178 +637974.809|219960.277|116.205 +637979.738|219955.644|116.132 +637984.718|219950.966|116.120 +637989.699|219946.287|116.153 +637994.582|219941.700|116.123 +637999.553|219937.024|116.056 +638004.570|219932.324|116.812 +638009.532|219927.658|116.617 +638014.482|219923.000|116.163 +638019.469|219918.319|116.452 +638024.443|219913.646|116.519 +638029.375|219909.001|115.684 +638034.291|219904.365|114.489 +638039.265|219899.692|114.599 +638044.279|219894.980|114.541 +638049.251|219890.310|114.538 +638054.216|219885.644|114.529 +638059.233|219880.932|114.578 +638064.201|219876.265|114.593 +638069.212|219871.556|114.575 +638074.223|219866.847|114.596 +638079.234|219862.138|114.553 +638084.245|219857.432|114.535 +638089.210|219852.768|114.620 +638094.242|219848.050|115.477 +638099.293|219843.325|116.967 +638104.322|219838.613|117.876 +638109.336|219833.910|118.339 +638114.393|219829.161|118.683 +638119.407|219824.458|119.244 +638124.418|219819.758|119.735 +638129.465|219815.015|119.887 +638134.470|219810.319|120.104 +638139.472|219805.622|120.421 +638144.519|219800.882|120.500 +638149.515|219796.188|120.515 +638154.559|219791.445|120.488 +638159.558|219786.751|120.387 +638164.551|219782.054|120.149 +638169.595|219777.312|119.875 +638174.637|219772.569|119.384 +638179.632|219767.869|119.134 +638184.680|219763.129|119.003 +638189.724|219758.384|118.836 +638194.723|219753.684|118.631 +638199.770|219748.944|118.756 +638204.818|219744.204|118.842 +638209.817|219739.507|118.991 +638214.864|219734.768|119.165 +638219.902|219730.037|119.348 +638224.901|219725.343|119.637 +638229.991|219720.567|120.043 +638235.033|219715.839|120.622 +638240.028|219711.149|120.981 +638245.073|219706.412|121.180 +638250.114|219701.678|121.472 +638255.110|219696.991|121.801 +638265.239|219687.484|122.484 +638270.231|219682.799|122.877 +638275.273|219678.062|123.103 +638280.317|219673.326|123.274 +638285.319|219668.626|123.231 +638290.372|219663.877|123.057 +638295.417|219659.140|123.298 +638300.422|219654.437|123.207 +638305.475|219649.686|123.066 +638310.486|219644.976|122.966 +638315.494|219640.270|122.868 +638320.554|219635.515|122.725 +638325.571|219630.797|122.451 +638330.591|219626.073|122.137 +638335.663|219621.303|121.820 +638340.680|219616.584|121.679 +638345.703|219611.860|121.481 +638350.732|219607.123|121.113 +638355.764|219602.387|120.735 +638360.793|219597.656|120.527 +638365.875|219592.874|120.238 +638370.867|219588.174|119.823 +638375.899|219583.440|119.653 +638380.938|219578.697|119.366 +638385.936|219573.994|119.040 +638390.929|219569.297|118.823 +638395.961|219564.564|118.763 +638400.936|219559.888|118.951 +638405.922|219555.197|118.948 +638410.912|219550.506|118.918 +638415.904|219545.813|118.891 +638420.894|219541.122|118.912 +638425.838|219536.473|118.967 +638430.821|219531.792|119.137 +638435.768|219527.137|119.122 +638440.712|219522.492|119.250 +638445.699|219517.804|119.433 +638450.591|219513.208|119.649 +638455.541|219508.554|119.726 +638460.485|219503.909|119.899 +638465.389|219499.297|119.988 +638470.333|219494.652|120.204 +638475.194|219490.080|120.259 +638480.108|219485.459|120.287 +638485.024|219480.838|120.320 +638489.895|219476.257|120.317 +638494.805|219471.639|120.460 +638499.685|219467.052|120.424 +638504.556|219462.471|120.509 +638509.423|219457.899|120.664 +638505.626|219457.079|120.530 +638500.654|219461.742|120.439 +638495.677|219466.409|120.430 +638490.709|219471.066|120.314 +638485.689|219475.775|120.302 +638480.717|219480.436|120.280 +638475.749|219485.096|120.265 +638470.744|219489.787|120.110 +638465.837|219494.387|119.960 +638460.832|219499.081|119.869 +638455.836|219503.765|119.677 +638450.886|219508.404|119.534 +638445.891|219513.086|119.348 +638440.947|219517.722|119.165 +638435.954|219522.407|119.037 +638430.959|219527.089|118.918 +638426.012|219531.728|118.827 +638421.019|219536.412|118.756 +638416.026|219541.094|118.680 +638411.028|219545.785|118.759 +638406.035|219550.467|118.750 +638401.042|219555.152|118.769 +638396.056|219559.830|118.747 +638391.066|219564.509|118.729 +638386.077|219569.191|118.790 +638381.026|219573.936|119.150 +638376.027|219578.630|119.500 +638371.038|219583.315|119.662 +638366.042|219588.006|120.021 +638361.043|219592.700|120.463 +638356.060|219597.379|120.640 +638351.028|219602.103|120.902 +638346.087|219606.742|121.265 +638341.058|219611.467|121.545 +638336.035|219616.179|121.667 +638331.057|219620.854|121.932 +638326.080|219625.527|122.249 +638321.102|219630.200|122.557 +638316.082|219634.912|122.792 +638311.071|219639.618|122.877 +638306.152|219644.233|123.018 +638301.141|219648.933|123.030 +638296.130|219653.636|123.210 +638291.168|219658.293|123.292 +638286.166|219662.984|123.197 +638281.207|219667.635|123.231 +638276.205|219672.329|123.179 +638271.207|219677.014|122.941 +638261.258|219686.338|122.344 +638256.256|219691.032|122.326 +638251.312|219695.659|121.597 +638246.313|219700.343|121.234 +638241.315|219705.028|120.942 +638236.362|219709.670|120.597 +638226.413|219718.991|119.765 +638221.411|219723.679|119.409 +638216.409|219728.367|119.186 +638211.414|219733.052|118.948 +638206.409|219737.745|118.900 +638201.407|219742.436|118.726 +638196.451|219747.085|118.644 +638191.449|219751.775|118.607 +638186.445|219756.472|118.753 +638181.491|219761.124|118.900 +638176.441|219765.860|119.101 +638171.488|219770.512|119.186 +638166.492|219775.209|119.927 +638161.494|219779.899|120.061 +638156.495|219784.590|120.232 +638151.542|219789.239|120.317 +638146.540|219793.929|120.302 +638141.541|219798.623|120.366 +638136.539|219803.314|120.338 +638131.532|219808.005|119.988 +638126.573|219812.656|119.835 +638121.565|219817.350|119.552 +638116.554|219822.047|119.092 +638111.537|219826.744|118.634 +638106.526|219831.441|118.342 +638101.503|219836.144|117.748 +638096.519|219840.808|116.906 +638091.472|219845.526|115.513 +638086.479|219850.196|114.562 +638081.465|219854.899|114.547 +638076.448|219859.602|114.480 +638071.486|219864.256|114.559 +638066.469|219868.959|114.541 +638061.452|219873.662|114.541 +638056.484|219878.323|114.538 +638051.467|219883.029|114.559 +638046.498|219887.689|114.572 +638041.527|219892.350|114.617 +638036.553|219897.013|114.587 +638031.584|219901.689|115.705 +638026.692|219906.285|116.473 +638021.669|219910.994|116.406 +638016.671|219915.676|115.882 +638011.690|219920.342|115.812 +638006.752|219924.985|116.565 +638001.805|219929.621|116.217 +637996.813|219934.296|115.986 +637991.832|219938.966|115.977 +637986.904|219943.593|116.035 +637981.920|219948.262|116.031 +637976.976|219952.898|115.916 +637971.996|219957.568|115.977 +637967.052|219962.204|115.882 +637962.108|219966.840|115.827 +637957.149|219971.485|115.593 +637952.190|219976.133|115.355 +637947.207|219980.797|114.782 +637942.217|219985.469|114.178 +637937.288|219990.084|113.806 +637932.329|219994.732|113.712 +637927.425|219999.335|113.712 +637922.536|220003.922|113.980 +637917.607|220008.549|114.349 +637912.788|220013.072|114.925 +637907.899|220017.671|115.791 +637903.123|220022.164|116.922 +637898.274|220026.724|117.665 +637893.455|220031.250|118.253 +637888.575|220035.831|118.656 +637883.756|220040.361|119.192 +637878.980|220044.853|120.271 +637874.121|220049.410|120.402 +637869.318|220053.924|121.155 +637864.523|220058.432|121.996 +637859.713|220062.943|122.176 +637854.861|220067.497|122.417 +637850.121|220071.947|122.847 +637845.306|220076.473|123.481 +637840.520|220080.960|123.469 +637835.707|220085.477|123.658 +637830.888|220089.997|123.831 +637826.134|220094.463|124.145 +637821.360|220098.940|124.319 +637816.578|220103.424|124.441 +637811.744|220107.959|124.514 +637807.010|220112.397|124.666 +637802.222|220116.890|124.761 +637797.412|220121.401|124.670 +637792.651|220125.863|124.606 +637787.845|220130.365|124.179 +637783.053|220134.852|123.904 +637778.249|220139.351|123.551 +637773.455|220143.844|123.310 +637768.670|220148.330|123.155 +637763.930|220152.774|123.014 +637759.169|220157.240|123.136 +637754.429|220161.674|122.637 +637749.650|220166.152|122.240 +637744.868|220170.629|121.859 +637740.116|220175.080|121.341 +637735.343|220179.551|121.100 +637730.606|220183.989|120.765 +637725.876|220188.421|120.509 +637721.124|220192.871|120.107 +637702.287|220210.506|119.003 +637688.187|220223.704|118.028 +637683.551|220228.048|117.961 +637678.857|220232.446|117.872 +637669.439|220241.255|116.854 +637641.613|220267.312|115.666 +637636.990|220271.640|115.251 +637632.378|220275.956|114.953 +637627.733|220280.303|114.794 +637618.491|220288.953|113.867 +637577.047|220327.730|109.926 +637567.870|220336.313|108.759 +637563.249|220340.632|108.186 +637535.912|220366.199|104.598 +637526.734|220374.776|103.068 +637522.366|220378.869|103.291 +637513.536|220387.141|103.257 +637500.235|220399.599|102.764 +637495.803|220403.747|102.480 +637491.469|220407.810|102.724 +637487.156|220411.852|102.831 +637482.870|220415.872|103.087 +637478.545|220419.929|103.431 +637474.275|220423.937|103.791 +637457.154|220439.982|104.187 +637452.796|220444.060|103.940 +637444.319|220452.009|104.422 +637431.405|220464.094|103.419 +637422.422|220472.477|100.901 +637406.457|220487.485|104.644 +637402.125|220491.530|103.769 +637397.819|220495.556|103.029 +637389.680|220503.188|103.571 +637385.581|220507.026|103.614 +637377.385|220514.704|103.736 +637361.197|220529.864|103.931 +637353.178|220537.375|104.105 +637341.342|220548.466|104.842 +637325.828|220563.008|106.183 +637310.874|220577.044|108.732 +637299.795|220587.444|110.576 +637296.274|220590.754|111.783 +637270.695|220614.739|114.632 +637267.074|220618.132|114.852 +637263.447|220621.530|115.056 +637249.103|220634.969|115.995 +637245.427|220638.404|115.650 +637234.476|220648.645|114.776 +637230.849|220652.038|114.462 +637223.412|220658.978|112.990 +637209.007|220672.432|110.996 +637205.486|220675.724|110.777 +637201.597|220679.342|109.003 +637198.452|220682.295|109.823 +637191.895|220688.443|110.679 +637423.468|220468.642|102.209 +637427.735|220464.634|102.410 +637432.161|220460.480|103.157 +637458.002|220436.190|104.068 +637462.183|220432.252|103.733 +637466.536|220428.158|103.772 +637470.858|220424.089|103.672 +637475.049|220420.139|103.178 +637479.429|220416.021|103.132 +637483.763|220411.943|102.876 +637488.030|220407.923|102.553 +637492.453|220403.765|102.803 +637496.781|220399.693|102.559 +637501.283|220395.466|102.992 +637505.724|220391.290|103.117 +637527.923|220370.417|103.477 +637537.113|220361.797|104.879 +637541.691|220357.500|105.680 +637560.131|220340.199|108.436 +637564.700|220335.901|108.448 +637578.535|220322.914|109.963 +637583.134|220318.592|110.249 +637587.804|220314.212|110.984 +637597.122|220305.464|112.109 +637601.709|220301.160|112.407 +637606.354|220296.799|112.785 +637625.054|220279.248|114.398 +637629.714|220274.871|114.687 +637643.768|220261.682|115.864 +637648.423|220257.309|115.879 +637657.725|220248.567|115.955 +637667.177|220239.691|116.464 +637681.423|220226.326|117.915 +637700.449|220208.461|119.058 +637714.787|220195.007|120.329 +637719.493|220190.579|120.006 +637724.284|220186.080|120.366 +637729.058|220181.599|120.607 +637738.656|220172.586|121.173 +637743.508|220168.036|121.747 +637748.336|220163.503|122.155 +637753.149|220158.986|122.457 +637757.992|220154.441|123.072 +637762.796|220149.927|122.935 +637767.621|220145.392|123.033 +637772.452|220140.856|123.176 +637777.250|220136.348|123.505 +637782.151|220131.749|123.914 +637787.000|220127.201|124.295 +637791.831|220122.663|124.587 +637796.669|220118.115|124.484 +637801.466|220113.607|124.502 +637806.300|220109.063|124.435 +637811.131|220104.521|124.343 +637815.965|220099.977|124.319 +637820.845|220095.392|124.258 +637825.643|220090.878|123.908 +637830.465|220086.346|123.816 +637835.317|220081.780|123.554 +637840.194|220077.196|123.584 +637845.016|220072.657|123.045 +637849.792|220068.162|122.518 +637854.684|220063.562|122.234 +637859.555|220058.984|122.252 +637864.356|220054.461|121.530 +637869.196|220049.901|120.698 +637874.076|220045.311|120.290 +637878.919|220040.754|120.070 +637883.729|220036.215|118.903 +637888.575|220031.653|118.132 +637893.455|220027.059|117.778 +637898.329|220022.472|117.376 +637903.175|220017.900|116.007 +637908.006|220013.346|115.053 +637912.919|220008.719|114.532 +637917.787|220004.138|114.044 +637922.713|219999.505|113.681 +637927.654|219994.860|113.544 +637932.604|219990.209|113.575 +637937.566|219985.548|113.816 +637942.540|219980.882|114.209 +637947.523|219976.206|114.824 +637952.498|219971.537|115.358 +637957.497|219966.843|115.544 +637962.443|219962.198|115.669 +637967.381|219957.559|115.754 +637972.368|219952.877|115.806 +637977.303|219948.241|115.849 +637982.283|219943.562|115.903 +637987.260|219938.886|115.873 +637992.186|219934.257|115.839 +637997.200|219929.557|116.571 +638002.168|219924.887|116.492 +638007.082|219920.269|116.260 +638012.074|219915.569|115.788 +638017.064|219910.887|116.187 +638022.044|219906.212|116.425 +638027.015|219901.542|116.458 +638031.959|219896.891|115.955 +638036.915|219892.215|114.636 +638041.881|219887.549|114.648 +638046.849|219882.882|114.645 +638051.857|219878.173|114.568 +638056.868|219873.467|114.541 +638061.830|219868.804|114.498 +638066.844|219864.094|114.565 +638071.806|219859.434|114.535 +638076.814|219854.725|114.559 +638081.822|219850.022|114.535 +638086.787|219845.358|114.669 +638091.847|219840.631|116.504 +638096.870|219835.922|117.187 +638101.893|219831.216|118.049 +638106.904|219826.513|118.488 +638111.912|219821.813|118.750 +638116.874|219817.158|119.223 +638121.879|219812.458|119.640 +638126.929|219807.719|119.936 +638131.882|219803.067|120.149 +638136.881|219798.373|120.241 +638141.877|219793.679|120.280 +638146.872|219788.986|120.357 +638151.868|219784.295|120.277 +638156.861|219779.598|120.098 +638161.853|219774.904|119.890 +638166.898|219770.167|119.817 +638171.842|219765.510|119.052 +638176.837|219760.816|119.092 +638181.879|219756.073|118.695 +638186.877|219751.376|118.555 +638191.873|219746.679|118.485 +638196.872|219741.985|118.613 +638201.870|219737.288|118.494 +638206.915|219732.552|118.805 +638211.908|219727.864|118.967 +638216.903|219723.173|119.208 +638221.899|219718.485|119.534 +638226.937|219713.758|120.226 +638231.887|219709.109|120.299 +638236.929|219704.379|120.643 +638241.921|219699.691|120.994 +638246.914|219695.006|121.405 +638251.900|219690.331|122.060 +638256.945|219685.594|122.188 +638261.892|219680.952|122.426 +638266.927|219676.225|122.847 +638276.918|219666.843|123.124 +638281.914|219662.146|123.194 +638286.913|219657.452|123.271 +638291.909|219652.761|123.484 +638296.919|219648.049|123.072 +638301.924|219643.346|123.021 +638306.929|219638.643|122.972 +638311.937|219633.933|122.801 +638316.902|219629.267|122.637 +638321.916|219624.552|122.387 +638326.936|219619.830|122.070 +638331.953|219615.112|121.850 +638336.973|219610.394|121.603 +638341.993|219605.672|121.414 +638346.974|219600.985|121.042 +638352.000|219596.260|120.792 +638357.026|219591.533|120.555 +638362.010|219586.842|120.244 +638367.048|219582.102|119.838 +638372.038|219577.408|119.546 +638377.076|219572.672|119.272 +638382.069|219567.975|118.958 +638387.064|219563.278|118.677 +638392.100|219558.544|118.561 +638397.074|219553.868|118.714 +638402.064|219549.178|118.598 +638407.053|219544.487|118.552 +638412.040|219539.802|118.567 +638416.983|219535.154|118.540 +638421.973|219530.466|118.580 +638426.960|219525.784|118.702 +638431.900|219521.142|118.799 +638436.838|219516.503|118.958 +638441.779|219511.861|119.098 +638446.766|219507.176|119.278 +638451.658|219502.583|119.479 +638456.605|219497.934|119.595 +638461.545|219493.295|119.829 +638466.501|219488.635|119.845 +638471.448|219483.993|120.058 +638476.304|219479.430|120.198 +638481.269|219474.764|120.177 +638486.179|219470.149|120.253 +638491.099|219465.528|120.280 +638496.012|219460.910|120.393 +638494.863|219457.859|120.262 +638489.895|219462.517|120.152 +638484.878|219467.220|120.088 +638479.907|219471.880|120.046 +638474.899|219476.577|119.921 +638469.885|219481.274|119.866 +638464.929|219485.919|119.695 +638459.924|219490.613|119.601 +638454.925|219495.295|119.403 +638449.972|219499.937|119.275 +638444.982|219504.616|119.052 +638439.984|219509.304|118.936 +638434.988|219513.988|118.820 +638429.995|219518.667|118.680 +638425.009|219523.340|118.427 +638420.007|219528.034|118.491 +638415.021|219532.709|118.314 +638410.022|219537.397|118.342 +638405.026|219542.082|118.382 +638400.034|219546.767|118.394 +638394.998|219551.488|118.324 +638390.003|219556.173|118.427 +638385.010|219560.861|118.567 +638380.014|219565.548|118.766 +638374.961|219570.294|119.201 +638370.014|219574.939|119.445 +638364.972|219579.673|119.753 +638359.974|219584.364|120.155 +638354.938|219589.094|120.439 +638349.952|219593.773|120.668 +638344.965|219598.455|120.985 +638339.933|219603.182|121.335 +638334.953|219607.855|121.567 +638329.978|219612.524|121.728 +638324.955|219617.240|121.975 +638319.978|219621.912|122.304 +638315.003|219626.579|122.524 +638309.989|219631.285|122.652 +638305.021|219635.948|122.871 +638300.010|219640.648|122.905 +638295.048|219645.306|122.999 +638290.089|219649.957|122.981 +638285.081|219654.657|123.103 +638280.076|219659.351|123.121 +638275.166|219663.956|123.094 +638270.164|219668.644|122.941 +638260.218|219677.968|122.387 +638255.220|219682.650|122.073 +638250.270|219687.289|121.804 +638245.317|219691.934|121.643 +638240.321|219696.607|120.985 +638235.371|219701.246|120.561 +638230.372|219705.927|120.186 +638225.416|219710.579|120.387 +638220.469|219715.209|119.470 +638215.468|219719.893|119.150 +638210.466|219724.581|118.851 +638205.516|219729.220|118.638 +638200.514|219733.911|118.519 +638195.558|219738.559|118.510 +638190.602|219743.208|118.503 +638180.644|219752.550|118.543 +638175.642|219757.244|118.848 +638170.686|219761.889|118.619 +638165.739|219766.546|119.677 +638160.741|219771.237|119.784 +638155.788|219775.882|119.927 +638150.835|219780.530|120.079 +638145.836|219785.221|120.143 +638140.837|219789.912|120.168 +638135.881|219794.557|120.177 +638130.879|219799.248|120.091 +638125.923|219803.896|119.936 +638120.964|219808.545|119.637 +638115.953|219813.239|119.208 +638110.988|219817.890|118.909 +638106.023|219822.541|118.558 +638101.009|219827.241|118.168 +638096.031|219831.898|117.470 +638091.051|219836.559|116.766 +638086.001|219841.277|115.306 +638081.014|219845.944|114.584 +638076.049|219850.604|114.523 +638071.084|219855.261|114.523 +638066.073|219859.964|114.572 +638061.104|219864.625|114.529 +638056.139|219869.285|114.611 +638051.171|219873.946|114.608 +638041.234|219883.273|114.648 +638036.257|219887.957|115.519 +638031.374|219892.551|116.443 +638026.400|219897.217|116.342 +638021.419|219901.887|116.144 +638016.497|219906.507|116.175 +638011.452|219911.235|115.669 +638006.512|219915.868|115.428 +638001.571|219920.513|116.056 +637996.578|219925.195|115.788 +637991.677|219929.800|116.297 +637986.712|219934.452|115.684 +637981.734|219939.124|115.718 +637976.800|219943.754|115.733 +637971.865|219948.384|115.718 +637966.921|219953.023|115.596 +637961.983|219957.656|115.593 +637957.036|219962.295|115.498 +637952.086|219966.940|115.358 +637947.115|219971.598|114.922 +637942.174|219976.225|114.279 +637937.194|219980.891|113.797 +637932.223|219985.551|113.489 +637927.309|219990.163|113.337 +637922.356|219994.808|113.358 +637917.476|219999.392|113.709 +637912.606|220003.974|114.178 +637907.738|220008.549|114.709 +637902.901|220013.099|115.663 +637888.380|220026.764|118.247 +637883.573|220031.275|118.391 +637878.736|220035.828|119.268 +637873.963|220040.324|120.366 +637869.107|220044.881|120.488 +637864.276|220049.419|120.933 +637859.482|220053.933|121.762 +637854.663|220058.463|122.326 +637849.844|220062.986|122.396 +637844.995|220067.540|122.676 +637840.209|220072.039|123.124 +637835.436|220076.525|123.700 +637830.654|220081.012|123.716 +637825.792|220085.578|123.901 +637821.019|220090.058|124.057 +637816.194|220094.591|124.173 +637811.457|220099.035|124.246 +637806.626|220103.570|124.353 +637801.829|220108.072|124.325 +637797.028|220112.577|124.295 +637792.264|220117.045|124.197 +637787.461|220121.553|124.191 +637782.709|220126.013|124.234 +637777.847|220130.569|123.755 +637773.077|220135.038|123.274 +637768.240|220139.573|123.063 +637763.494|220144.023|122.859 +637758.745|220148.483|123.027 +637753.966|220152.960|122.573 +637749.187|220157.441|122.149 +637744.423|220161.906|121.890 +637739.622|220166.405|121.329 +637734.846|220170.879|121.033 +637725.330|220179.801|120.396 +637720.624|220184.217|120.314 +637696.974|220206.386|118.717 +637659.429|220241.584|116.163 +637654.753|220245.970|115.937 +637645.533|220254.620|115.815 +637640.851|220259.012|115.611 +637631.552|220267.727|114.770 +637626.919|220272.073|114.657 +637617.659|220280.751|113.892 +637603.818|220293.723|112.615 +637599.182|220298.070|112.322 +637590.041|220306.641|111.658 +637585.378|220311.005|110.957 +637567.013|220328.214|109.265 +637557.933|220336.724|108.442 +637553.374|220340.995|107.951 +637544.138|220349.639|106.382 +637530.325|220362.568|103.894 +637521.303|220371.021|102.962 +637490.359|220400.053|102.294 +637486.077|220404.073|102.541 +637481.727|220408.157|102.733 +637477.451|220412.175|103.041 +637473.101|220416.256|102.980 +637455.911|220432.395|103.486 +637451.607|220436.437|103.489 +637409.258|220476.180|103.846 +637392.451|220491.944|103.221 +637384.301|220499.601|103.949 +637375.986|220507.398|103.495 +637363.791|220518.843|103.751 +637359.685|220522.689|103.617 +637355.616|220526.509|103.644 +637347.706|220533.936|104.312 +637343.744|220537.655|104.400 +637339.846|220541.316|104.781 +637335.941|220544.986|105.135 +637332.018|220548.671|105.437 +637324.279|220555.940|106.299 +637320.506|220559.488|106.817 +637313.063|220566.492|108.555 +637298.131|220580.528|110.591 +637290.882|220587.353|112.353 +637283.457|220594.327|112.974 +637276.228|220601.127|114.221 +637265.176|220611.499|114.693 +637258.129|220618.125|115.928 +637254.480|220621.548|116.053 +637250.871|220624.935|116.138 +637247.201|220628.376|116.007 +637243.510|220631.835|115.794 +637228.938|220645.487|114.821 +637225.317|220648.877|114.337 +637221.522|220652.425|113.404 +637214.411|220659.088|113.011 +637210.753|220662.507|112.447 +637203.508|220669.286|111.228 +637200.030|220672.545|110.975 +637196.553|220675.800|110.542 +637189.728|220682.204|110.591 +637408.243|220474.528|103.934 +637420.542|220462.942|102.550 +637437.662|220446.858|103.498 +637446.191|220438.842|103.547 +637450.464|220434.818|103.401 +637459.035|220426.759|103.245 +637463.287|220422.754|103.035 +637471.964|220414.595|103.013 +637476.262|220410.550|102.828 +637480.566|220406.502|102.663 +637484.885|220402.436|102.352 +637489.268|220398.315|102.386 +637498.122|220389.994|102.712 +637524.786|220364.931|103.343 +637529.304|220360.688|103.742 +637538.615|220351.964|105.903 +637543.151|220347.703|106.205 +637552.392|220339.038|107.854 +637557.034|220334.685|108.552 +637566.187|220326.087|109.292 +637570.763|220321.792|109.676 +637575.386|220317.449|110.091 +637579.971|220313.148|110.579 +637584.661|220308.744|111.158 +637589.267|220304.419|111.536 +637593.882|220300.084|111.990 +637598.524|220295.723|112.353 +637607.814|220286.996|113.163 +637612.465|220282.625|113.343 +637621.829|220273.832|114.477 +637631.177|220265.047|114.977 +637645.140|220251.926|115.669 +637649.803|220247.540|115.794 +637654.528|220243.099|116.022 +637663.903|220234.287|116.373 +637668.579|220229.886|116.333 +637673.389|220225.378|117.257 +637692.290|220207.611|118.165 +637711.379|220189.676|119.802 +637720.929|220180.703|120.244 +637725.690|220176.229|120.418 +637730.469|220171.739|120.738 +637735.285|220167.213|121.012 +637740.052|220162.732|121.305 +637744.935|220158.145|121.777 +637749.687|220153.679|121.996 +637754.579|220149.086|122.609 +637759.382|220144.572|122.917 +637764.177|220140.061|122.768 +637768.962|220135.562|122.944 +637773.869|220130.954|123.402 +637778.682|220126.433|123.904 +637783.535|220121.870|123.926 +637788.332|220117.356|123.923 +637793.188|220112.790|124.014 +637797.997|220108.270|124.142 +637802.841|220103.713|124.176 +637807.678|220099.166|124.170 +637812.503|220094.624|124.075 +637817.331|220090.083|124.036 +637822.199|220085.502|123.923 +637827.014|220080.969|123.792 +637831.931|220076.345|123.716 +637836.707|220071.847|123.200 +637841.532|220067.299|122.731 +637846.424|220062.693|122.460 +637851.234|220058.170|122.326 +637856.111|220053.577|121.905 +637860.896|220049.063|121.021 +637865.767|220044.472|120.591 +637870.659|220039.870|120.369 +637875.487|220035.316|119.409 +637880.345|220030.735|118.851 +637885.216|220026.148|118.391 +637890.087|220021.551|117.391 +637899.834|220012.365|116.025 +637904.662|220007.808|115.044 +637909.554|220003.196|114.291 +637914.468|219998.566|113.813 +637919.381|219993.940|113.319 +637924.319|219989.291|113.188 +637929.272|219984.634|113.282 +637934.237|219979.967|113.575 +637939.254|219975.255|113.938 +637944.229|219970.583|114.459 +637949.258|219965.864|115.102 +637954.263|219961.158|115.440 +637959.200|219956.513|115.501 +637964.187|219951.825|115.577 +637969.164|219947.140|115.593 +637974.145|219942.456|115.632 +637979.122|219937.771|115.644 +637984.093|219933.095|115.559 +637989.086|219928.401|115.955 +637994.100|219923.683|115.827 +637999.001|219919.065|115.416 +638004.015|219914.344|115.340 +638009.026|219909.629|115.245 +638014.019|219904.938|115.748 +638019.011|219900.235|115.273 +638023.998|219895.550|115.724 +638029.036|219890.816|116.348 +638034.050|219886.101|116.379 +638038.970|219881.459|115.358 +638043.947|219876.762|114.565 +638053.917|219867.380|114.575 +638058.974|219862.622|114.568 +638063.982|219857.913|114.556 +638068.941|219853.244|114.578 +638073.994|219848.489|114.578 +638079.002|219843.780|114.611 +638084.025|219839.061|115.282 +638089.073|219834.337|116.821 +638094.090|219829.622|117.467 +638099.107|219824.912|118.083 +638104.164|219820.161|118.604 +638109.168|219815.457|118.964 +638114.170|219810.754|119.211 +638119.172|219806.054|119.601 +638124.177|219801.351|120.049 +638129.218|219796.609|120.046 +638134.211|219791.912|120.146 +638139.207|219787.212|120.162 +638144.199|219782.515|120.091 +638149.237|219777.772|120.049 +638154.230|219773.072|119.902 +638159.220|219768.375|119.808 +638164.258|219763.629|119.339 +638169.202|219758.969|118.802 +638174.240|219754.223|118.534 +638179.236|219749.520|118.403 +638184.232|219744.823|118.574 +638189.227|219740.123|118.497 +638194.269|219735.377|118.500 +638199.219|219730.720|118.442 +638204.260|219725.977|118.607 +638209.250|219721.286|118.741 +638214.242|219716.592|119.086 +638219.235|219711.901|119.512 +638224.228|219707.208|119.771 +638229.220|219702.517|120.192 +638234.210|219697.826|120.600 +638239.196|219693.144|121.247 +638244.189|219688.447|121.387 +638249.179|219683.756|121.710 +638254.168|219679.068|122.149 +638264.147|219669.687|122.755 +638269.091|219665.038|122.950 +638274.084|219660.341|123.069 +638279.076|219655.644|123.222 +638284.033|219650.981|123.011 +638289.040|219646.266|122.697 +638294.030|219641.572|122.978 +638298.986|219636.908|122.865 +638303.991|219632.196|122.777 +638308.950|219627.527|122.579 +638313.912|219622.857|122.469 +638318.923|219618.139|122.268 +638323.846|219613.503|121.929 +638328.863|219608.778|121.689 +638333.828|219604.106|121.545 +638338.756|219599.467|121.295 +638343.783|219594.733|120.914 +638348.757|219590.048|120.704 +638353.689|219585.406|120.460 +638358.675|219580.712|120.101 +638363.616|219576.058|119.726 +638368.606|219571.361|119.400 +638373.595|219566.661|119.070 +638378.545|219561.997|118.671 +638383.532|219557.307|118.519 +638388.427|219552.695|118.311 +638393.416|219548.004|118.217 +638398.348|219543.365|118.308 +638403.292|219538.711|118.150 +638408.233|219534.066|118.177 +638413.170|219529.420|118.220 +638418.111|219524.772|118.229 +638423.058|219520.118|118.217 +638427.941|219515.528|118.442 +638432.876|219510.888|118.647 +638437.768|219506.286|118.763 +638442.712|219501.638|118.884 +638447.601|219497.041|119.098 +638452.545|219492.393|119.244 +638457.443|219487.788|119.390 +638462.347|219483.176|119.461 +638467.254|219478.561|119.534 +638472.146|219473.962|119.790 +638477.047|219469.353|119.966 +638481.921|219464.766|119.896 +638486.835|219460.148|119.994 +638486.454|219456.969|119.887 +638481.482|219461.633|119.832 +638476.514|219466.299|119.802 +638471.509|219470.993|119.637 +638466.553|219475.644|119.485 +638461.551|219480.338|119.326 +638456.595|219484.996|119.259 +638451.594|219489.690|119.134 +638446.592|219494.384|119.049 +638441.599|219499.065|118.839 +638436.604|219503.753|118.689 +638431.565|219508.478|118.491 +638426.576|219513.159|118.287 +638421.537|219517.887|118.147 +638416.542|219522.572|118.068 +638411.500|219527.302|117.997 +638406.456|219532.039|118.013 +638401.408|219536.778|118.141 +638396.364|219541.515|118.244 +638391.325|219546.242|118.211 +638386.287|219550.976|118.296 +638381.194|219555.758|118.488 +638376.146|219560.498|118.769 +638371.053|219565.283|119.083 +638366.006|219570.026|119.457 +638360.915|219574.811|119.796 +638355.825|219579.594|120.174 +638350.787|219584.330|120.555 +638345.712|219589.094|120.689 +638340.631|219593.867|120.975 +638335.599|219598.595|121.323 +638330.527|219603.362|121.573 +638325.455|219608.123|121.747 +638320.386|219612.884|122.003 +638315.314|219617.648|122.316 +638310.251|219622.403|122.457 +638305.237|219627.112|122.588 +638300.129|219631.910|122.737 +638295.072|219636.658|122.801 +638290.058|219641.364|123.021 +638284.959|219646.153|122.993 +638279.906|219650.896|123.072 +638274.901|219655.596|123.161 +638269.807|219660.372|122.871 +638264.757|219665.112|122.890 +638259.716|219669.842|122.548 +638249.627|219679.300|121.908 +638244.585|219684.027|121.478 +638239.541|219688.758|121.143 +638229.452|219698.216|120.344 +638224.359|219702.989|119.884 +638219.311|219707.723|119.561 +638214.312|219712.407|119.162 +638209.265|219717.141|118.781 +638199.173|219726.608|118.436 +638194.122|219731.345|118.247 +638189.072|219736.087|118.311 +638184.070|219740.784|118.357 +638179.020|219745.524|118.339 +638173.972|219750.264|118.604 +638168.967|219754.958|118.348 +638163.923|219759.700|118.951 +638158.927|219764.400|119.430 +638153.931|219769.094|119.875 +638148.884|219773.834|119.930 +638143.885|219778.528|120.040 +638138.932|219783.176|120.024 +638133.885|219787.913|120.067 +638128.883|219792.607|120.070 +638123.930|219797.258|120.030 +638118.922|219801.952|119.659 +638113.911|219806.649|119.250 +638108.952|219811.300|119.043 +638103.941|219816.000|118.723 +638098.973|219820.657|118.269 +638093.956|219825.360|117.775 +638088.975|219830.021|117.053 +638083.998|219834.684|116.513 +638078.984|219839.366|114.724 +638074.013|219844.029|114.559 +638069.047|219848.687|114.590 +638064.079|219853.347|114.538 +638059.114|219858.008|114.572 +638044.301|219871.903|114.523 +638039.378|219876.539|115.623 +638034.489|219881.136|116.443 +638029.554|219885.760|116.163 +638024.605|219890.396|115.507 +638019.645|219895.038|114.776 +638014.726|219899.656|114.943 +638009.803|219904.276|115.038 +638004.920|219908.854|115.032 +637999.998|219913.475|115.132 +637995.115|219918.056|115.145 +637990.189|219922.680|115.257 +637985.334|219927.240|115.812 +637980.375|219931.888|115.330 +637975.495|219936.466|115.462 +637970.603|219941.057|115.398 +637965.714|219945.644|115.422 +637960.825|219950.228|115.471 +637955.939|219954.815|115.556 +637951.023|219959.421|115.224 +637946.143|219963.993|114.742 +637941.208|219968.614|114.200 +637936.319|219973.195|113.624 +637931.396|219977.806|113.334 +637926.477|219982.418|113.121 +637921.609|219986.984|113.005 +637916.723|219991.571|113.282 +637911.898|219996.104|113.782 +637907.076|220000.633|114.300 +637902.279|220005.150|115.102 +637897.478|220009.661|115.925 +637892.723|220014.136|116.681 +637887.865|220018.702|117.339 +637883.101|220023.182|117.979 +637878.297|220027.699|118.717 +637873.506|220032.198|119.061 +637868.733|220036.691|120.171 +637863.944|220041.190|120.515 +637859.147|220045.692|120.832 +637854.386|220050.172|121.503 +637849.585|220054.686|122.298 +637844.821|220059.158|122.463 +637840.008|220063.675|122.609 +637835.201|220068.189|122.868 +637830.462|220072.639|123.335 +637825.679|220077.135|123.837 +637820.900|220081.618|123.932 +637816.109|220086.114|123.898 +637811.332|220090.595|124.057 +637806.504|220095.127|124.164 +637801.750|220099.586|124.109 +637796.943|220104.094|124.023 +637792.176|220108.563|123.892 +637787.357|220113.083|123.731 +637782.584|220117.561|123.575 +637777.762|220122.081|123.463 +637773.010|220126.540|123.539 +637768.188|220131.057|123.033 +637763.384|220135.559|122.725 +637758.684|220139.970|122.929 +637744.282|220153.463|121.899 +637739.461|220157.980|121.158 +637729.969|220166.874|120.649 +637725.153|220171.391|120.439 +637720.426|220175.823|120.207 +637710.956|220184.696|119.692 +637691.933|220202.518|117.976 +637687.266|220206.895|118.016 +637682.505|220211.360|117.726 +637677.802|220215.767|117.537 +637668.341|220224.628|116.498 +637663.666|220229.011|116.224 +637658.990|220233.391|115.986 +637654.290|220237.798|115.952 +637644.981|220246.528|115.532 +637640.306|220250.911|115.388 +637621.695|220268.348|114.008 +637593.866|220294.424|112.154 +637584.661|220303.050|111.463 +637580.041|220307.378|111.033 +637570.778|220316.050|109.835 +637557.010|220328.946|108.546 +637538.673|220346.115|106.421 +637511.354|220371.691|102.965 +637498.101|220384.124|102.940 +637489.241|220392.427|102.626 +637484.787|220396.599|102.245 +637480.538|220400.595|102.937 +637476.140|220404.716|102.617 +637471.830|220408.764|103.032 +637467.478|220412.848|102.980 +637463.134|220416.920|102.992 +637458.885|220420.910|103.251 +637450.318|220428.951|103.434 +637445.934|220433.057|103.062 +637441.631|220437.092|103.108 +637437.440|220441.030|103.462 +637428.832|220449.095|103.135 +637419.871|220457.468|100.670 +637399.318|220476.777|102.992 +637395.200|220480.642|103.111 +637366.442|220507.629|103.763 +637358.292|220515.274|103.721 +637354.235|220519.087|103.788 +637350.233|220522.842|103.903 +637342.321|220530.276|104.550 +637338.379|220533.982|104.961 +637330.540|220541.346|105.559 +637319.019|220552.179|106.866 +637315.163|220555.803|107.265 +637300.420|220569.687|110.701 +637289.209|220580.220|111.792 +637285.564|220583.653|112.474 +637281.866|220587.130|112.950 +637274.566|220593.997|114.111 +637271.006|220597.347|114.748 +637267.269|220600.852|114.693 +637263.560|220604.336|114.959 +637260.030|220607.656|115.541 +637252.813|220614.437|116.086 +637249.109|220617.912|116.007 +637245.498|220621.305|116.297 +637241.931|220624.654|116.352 +637238.347|220628.016|116.361 +637230.995|220634.908|115.910 +637223.753|220641.699|115.513 +637216.468|220648.517|114.404 +637212.701|220652.041|113.599 +637209.205|220655.317|113.435 +637202.131|220661.950|112.828 +637198.372|220665.458|111.725 +637194.849|220668.759|111.304 +637191.469|220671.932|111.438 +637187.909|220675.260|110.716 +637184.272|220678.659|109.725 +637413.235|220461.470|101.974 +637417.317|220457.617|101.261 +637421.816|220453.399|102.590 +637430.384|220445.337|103.239 +637434.632|220441.335|103.163 +637443.164|220433.297|102.989 +637451.832|220425.138|103.306 +637456.081|220421.130|103.062 +637473.382|220404.832|102.757 +637477.722|220400.742|102.541 +637482.035|220396.679|102.459 +637486.442|220392.524|102.373 +637490.862|220388.367|102.623 +637495.303|220384.185|102.745 +637499.689|220380.052|102.584 +637508.562|220371.700|102.858 +637522.113|220358.947|103.675 +637558.927|220324.353|108.677 +637586.716|220298.228|111.533 +637591.355|220293.872|112.157 +637595.942|220289.553|112.185 +637605.257|220280.800|112.859 +637609.969|220276.374|113.425 +637614.629|220271.991|113.703 +637619.317|220267.586|114.166 +637623.969|220263.213|114.422 +637633.402|220254.349|115.227 +637638.023|220249.999|115.013 +637647.377|220241.203|115.431 +637675.742|220214.539|117.351 +637680.506|220210.061|117.674 +637689.933|220201.192|118.031 +637694.746|220196.675|118.802 +637699.495|220192.209|118.738 +637732.913|220160.787|120.442 +637737.763|220156.231|121.027 +637752.274|220142.600|122.640 +637761.854|220133.584|122.661 +637766.667|220129.064|123.088 +637771.541|220124.480|123.261 +637776.302|220120.002|123.307 +637781.166|220115.424|123.453 +637785.988|220110.892|123.664 +637790.850|220106.320|123.828 +637795.660|220101.796|123.978 +637800.515|220097.230|124.127 +637805.352|220092.677|124.136 +637810.174|220088.138|124.026 +637814.999|220083.597|123.959 +637819.836|220079.046|124.014 +637824.674|220074.486|123.639 +637829.456|220069.981|123.173 +637834.290|220065.427|122.792 +637839.142|220060.859|122.591 +637843.998|220056.287|122.457 +637848.780|220051.779|122.054 +637853.630|220047.207|121.335 +637858.436|220042.674|120.689 +637863.280|220038.114|120.454 +637868.129|220033.539|119.796 +637872.960|220028.979|118.887 +637877.797|220024.426|118.619 +637882.619|220019.872|117.598 +637887.536|220015.239|117.141 +637892.324|220010.722|116.281 +637897.222|220006.104|115.605 +637902.069|220001.532|114.888 +637906.964|219996.914|114.151 +637911.883|219992.281|113.755 +637916.729|219987.709|113.041 +637921.667|219983.061|112.901 +637926.620|219978.401|112.996 +637931.589|219973.731|113.346 +637936.602|219969.019|113.694 +637941.534|219964.386|114.297 +637946.551|219959.674|114.742 +637956.509|219950.320|115.324 +637961.486|219945.638|115.288 +637966.418|219941.002|115.254 +637971.392|219936.320|115.221 +637976.370|219931.641|115.193 +637981.356|219926.957|115.398 +637986.331|219922.281|115.364 +637991.278|219917.621|114.895 +637996.261|219912.936|115.105 +638001.275|219908.220|115.020 +638006.234|219903.554|114.785 +638011.202|219898.884|114.709 +638016.207|219894.172|114.511 +638021.185|219889.497|114.684 +638026.232|219884.763|115.428 +638031.228|219880.075|116.126 +638036.248|219875.357|116.379 +638041.225|219870.666|115.577 +638046.191|219865.981|114.456 +638056.221|219856.554|114.791 +638061.223|219851.848|114.596 +638066.228|219847.141|114.550 +638071.239|219842.432|114.578 +638076.244|219837.723|114.602 +638081.300|219832.996|116.300 +638086.372|219828.238|117.031 +638091.341|219823.574|117.613 +638096.400|219818.822|118.110 +638101.414|219814.116|118.723 +638106.419|219809.416|119.040 +638111.467|219804.674|119.177 +638116.471|219799.974|119.589 +638121.473|219795.274|119.991 +638126.518|219790.534|120.040 +638131.510|219785.837|119.991 +638136.506|219781.140|119.954 +638141.547|219776.400|119.942 +638146.540|219771.703|119.948 +638151.533|219767.006|119.808 +638156.571|219762.264|119.360 +638161.609|219757.521|118.906 +638166.602|219752.821|118.558 +638171.598|219748.121|118.439 +638176.642|219743.375|118.208 +638181.638|219738.678|118.272 +638186.633|219733.978|118.119 +638191.678|219729.235|118.104 +638196.674|219724.538|118.238 +638201.813|219719.710|118.433 +638206.708|219715.114|118.799 +638211.703|219710.420|119.015 +638216.699|219705.729|119.400 +638221.692|219701.038|119.774 +638226.681|219696.354|120.287 +638231.720|219691.626|120.817 +638236.666|219686.978|121.039 +638241.656|219682.290|121.393 +638246.694|219677.557|121.695 +638256.628|219668.227|122.387 +638261.621|219663.536|122.685 +638266.616|219658.842|122.780 +638271.606|219654.154|123.054 +638276.605|219649.454|123.057 +638281.558|219644.797|123.048 +638286.572|219640.075|122.481 +638291.512|219635.433|122.890 +638296.471|219630.767|122.719 +638301.476|219626.060|122.652 +638306.438|219621.394|122.481 +638311.398|219616.724|122.368 +638316.415|219612.009|122.128 +638321.337|219607.373|121.786 +638326.305|219602.697|121.652 +638331.274|219598.022|121.500 +638336.251|219593.337|121.164 +638341.228|219588.649|120.850 +638346.157|219584.010|120.637 +638351.134|219579.325|120.457 +638356.075|219574.674|120.040 +638361.016|219570.020|119.692 +638366.006|219565.323|119.360 +638370.901|219560.711|119.031 +638375.896|219556.005|118.650 +638380.843|219551.351|118.394 +638385.735|219546.745|118.247 +638390.676|219542.097|118.147 +638395.574|219537.488|118.010 +638400.518|219532.837|117.924 +638405.465|219528.183|117.812 +638410.357|219523.580|117.824 +638415.301|219518.932|117.848 +638420.144|219514.378|117.961 +638425.033|219509.779|118.098 +638429.919|219505.189|118.363 +638434.805|219500.595|118.586 +638439.694|219495.999|118.790 +638444.586|219491.400|118.988 +638449.490|219486.791|119.046 +638454.297|219482.268|119.107 +638459.201|219477.656|119.195 +638464.060|219473.087|119.287 +638468.958|219468.485|119.488 +638473.820|219463.913|119.595 +638478.678|219459.344|119.726 +638476.542|219457.628|119.555 +638471.579|219462.279|119.424 +638466.669|219466.884|119.302 +638461.710|219471.533|119.171 +638456.751|219476.181|119.076 +638451.795|219480.829|118.973 +638446.842|219485.474|118.860 +638441.837|219490.174|118.820 +638436.890|219494.810|118.625 +638431.903|219499.489|118.360 +638426.920|219504.162|118.046 +638421.933|219508.837|117.802 +638416.993|219513.470|117.595 +638411.945|219518.207|117.586 +638406.953|219522.895|117.528 +638401.905|219527.631|117.604 +638396.848|219532.377|117.827 +638391.847|219537.077|118.025 +638386.802|219541.811|118.113 +638381.715|219546.587|118.202 +638376.716|219551.284|118.439 +638371.617|219556.072|118.796 +638366.573|219560.815|119.131 +638361.525|219565.554|119.506 +638356.435|219570.337|119.811 +638351.390|219575.080|120.280 +638346.309|219579.850|120.512 +638341.234|219584.617|120.692 +638336.153|219589.390|120.994 +638331.118|219594.120|121.393 +638326.049|219598.878|121.530 +638320.983|219603.636|121.670 +638315.912|219608.400|121.966 +638310.843|219613.161|122.195 +638305.731|219617.962|122.402 +638300.669|219622.714|122.533 +638295.609|219627.466|122.667 +638290.500|219632.263|122.859 +638285.456|219636.991|122.502 +638280.390|219641.755|123.039 +638275.291|219646.540|123.008 +638270.240|219651.277|122.935 +638265.196|219656.010|122.743 +638260.103|219660.786|122.505 +638255.006|219665.569|122.420 +638249.962|219670.296|122.054 +638244.872|219675.066|121.689 +638239.782|219679.839|121.311 +638234.737|219684.570|120.930 +638229.644|219689.343|120.646 +638224.551|219694.122|120.427 +638219.506|219698.844|119.732 +638214.462|219703.574|119.259 +638209.369|219708.347|118.836 +638204.272|219713.127|118.628 +638199.228|219717.854|118.275 +638194.132|219722.633|117.979 +638189.081|219727.373|117.927 +638184.030|219732.116|117.979 +638178.934|219736.901|118.110 +638173.884|219741.638|117.909 +638168.833|219746.380|118.238 +638163.740|219751.166|118.656 +638158.692|219755.909|118.921 +638153.648|219760.648|119.241 +638148.558|219765.431|119.634 +638143.513|219770.170|119.887 +638138.512|219774.861|119.906 +638133.464|219779.601|119.890 +638128.371|219784.380|120.024 +638123.372|219789.074|120.021 +638118.319|219793.814|119.738 +638113.262|219798.553|119.406 +638108.254|219803.247|119.153 +638103.200|219807.990|118.976 +638098.186|219812.690|118.485 +638093.169|219817.390|117.979 +638088.149|219822.093|117.476 +638083.126|219826.799|116.900 +638078.079|219831.517|115.593 +638073.037|219836.233|114.587 +638068.026|219840.939|114.605 +638063.058|219845.599|114.584 +638058.050|219850.305|114.696 +638048.105|219859.635|114.422 +638043.176|219864.277|115.486 +638033.267|219873.589|116.126 +638028.308|219878.234|115.233 +638023.297|219882.922|114.383 +638018.356|219887.555|114.050 +638013.443|219892.173|114.312 +638008.474|219896.839|114.492 +638003.555|219901.460|114.660 +637998.681|219906.038|114.788 +637993.734|219910.677|114.492 +637983.972|219919.855|115.492 +637979.031|219924.491|115.352 +637974.123|219929.093|114.962 +637969.234|219933.680|114.998 +637964.345|219938.274|114.974 +637959.456|219942.861|115.017 +637954.561|219947.454|114.992 +637949.666|219952.051|114.928 +637944.747|219956.662|114.596 +637939.824|219961.280|114.184 +637934.883|219965.907|113.596 +637930.007|219970.479|113.264 +637925.127|219975.057|112.913 +637920.213|219979.669|112.767 +637915.355|219984.229|112.804 +637910.545|219988.755|113.471 +637905.735|219993.278|114.151 +637900.916|219997.811|114.693 +637896.107|220002.337|115.373 +637891.276|220006.878|115.772 +637886.545|220011.331|116.873 +637881.708|220015.879|117.214 +637876.965|220020.344|118.101 +637872.204|220024.822|118.802 +637867.419|220029.324|119.183 +637862.691|220033.777|120.262 +637857.903|220038.276|120.646 +637853.105|220042.784|120.945 +637848.326|220047.277|121.442 +637838.829|220056.210|122.612 +637834.010|220060.734|122.722 +637829.243|220065.211|122.880 +637824.488|220069.679|123.185 +637819.742|220074.142|123.594 +637814.999|220078.601|124.045 +637810.214|220083.091|124.106 +637805.419|220087.593|124.084 +637800.625|220092.091|124.081 +637795.824|220096.599|124.023 +637791.057|220101.071|123.886 +637786.244|220105.588|123.764 +637781.465|220110.072|123.557 +637776.671|220114.567|123.237 +637771.827|220119.109|122.947 +637767.103|220123.544|122.859 +637762.333|220128.021|122.816 +637757.538|220132.517|122.606 +637747.961|220141.497|121.932 +637743.255|220145.919|122.124 +637738.378|220150.485|121.317 +637709.809|220177.271|119.275 +637700.339|220186.153|118.842 +637662.507|220221.613|115.958 +637657.868|220225.969|115.955 +637643.802|220239.152|115.077 +637639.120|220243.544|114.873 +637625.185|220256.614|114.492 +637615.897|220265.328|114.139 +637611.280|220269.656|113.861 +637606.570|220274.067|113.331 +637597.301|220282.753|112.663 +637578.782|220300.106|110.838 +637574.210|220304.394|110.728 +637569.598|220308.713|110.082 +637560.357|220317.370|109.100 +637546.753|220330.122|108.293 +637528.420|220347.289|105.760 +637510.077|220364.458|102.767 +637505.587|220368.671|102.617 +637496.797|220376.922|102.843 +637492.371|220381.070|102.550 +637487.979|220385.194|102.727 +637474.790|220397.566|102.483 +637470.486|220401.604|102.669 +637466.182|220405.646|102.861 +637461.796|220409.761|102.639 +637444.560|220425.936|103.001 +637440.283|220429.951|102.913 +637427.427|220442.009|102.623 +637423.154|220446.017|102.629 +637419.011|220449.909|103.035 +637397.941|220469.675|102.806 +637393.838|220473.528|102.998 +637381.521|220485.095|103.602 +637373.279|220492.825|103.711 +637356.869|220508.217|103.718 +637352.882|220511.960|103.870 +637348.840|220515.752|104.019 +637340.848|220523.256|104.537 +637332.988|220530.639|105.229 +637325.230|220537.923|105.958 +637321.381|220541.538|106.360 +637306.229|220555.782|108.869 +637298.859|220562.716|110.478 +637295.073|220566.273|110.765 +637291.370|220569.751|111.414 +637287.652|220573.244|111.789 +637283.957|220576.718|112.478 +637280.278|220580.178|113.029 +637276.627|220583.607|113.499 +637272.963|220587.048|113.910 +637265.627|220593.940|114.739 +637261.999|220597.347|115.120 +637258.363|220600.761|115.480 +637254.764|220604.138|115.785 +637243.849|220614.386|116.489 +637240.298|220617.714|116.620 +637232.906|220624.639|116.166 +637222.058|220634.807|115.907 +637207.492|220648.441|114.334 +637203.862|220651.833|113.675 +637196.760|220658.487|113.172 +637193.136|220661.874|112.581 +637189.655|220665.132|112.331 +637186.110|220668.451|111.847 +637401.690|220464.085|102.712 +637422.815|220444.197|102.703 +637427.031|220440.226|102.450 +637431.392|220436.126|102.934 +637435.632|220432.133|102.843 +637439.884|220428.128|102.828 +637444.276|220423.998|103.010 +637448.559|220419.965|102.928 +637461.498|220407.783|102.709 +637465.832|220403.701|102.690 +637474.488|220395.548|102.389 +637478.908|220391.390|102.611 +637483.318|220387.236|102.541 +637492.069|220379.000|102.602 +637496.519|220374.815|102.788 +637514.359|220358.030|103.431 +637528.179|220345.058|105.912 +637546.513|220327.833|108.034 +637551.075|220323.548|108.576 +637555.663|220319.235|109.003 +637560.280|220314.892|109.347 +637564.862|220310.588|109.786 +637569.473|220306.250|110.140 +637574.134|220301.874|110.822 +637578.721|220297.561|111.075 +637592.595|220284.509|112.063 +637597.286|220280.102|112.755 +637601.962|220275.700|113.066 +637606.592|220271.345|113.425 +637615.897|220262.588|113.883 +637629.854|220249.454|114.733 +637643.823|220236.299|114.901 +637657.914|220223.043|115.766 +637662.562|220218.666|115.876 +637681.582|220200.777|117.534 +637691.025|220191.883|117.684 +637695.789|220187.409|118.464 +637705.335|220178.423|118.802 +637714.958|220169.383|120.216 +637719.676|220164.936|120.052 +637729.277|220155.904|120.707 +637743.776|220142.268|122.128 +637748.477|220137.833|121.545 +637753.359|220133.240|122.131 +637758.172|220128.716|122.524 +637763.000|220124.172|122.682 +637767.776|220119.676|122.835 +637772.650|220115.089|123.042 +637777.439|220110.584|123.347 +637782.319|220105.990|123.648 +637787.137|220101.458|123.850 +637791.993|220096.883|124.002 +637796.787|220092.369|124.036 +637801.686|220087.760|124.139 +637806.471|220083.252|124.136 +637811.336|220078.668|123.987 +637816.130|220074.148|123.648 +637820.922|220069.628|123.271 +637825.768|220065.062|122.969 +637830.575|220060.529|122.801 +637835.442|220055.945|122.752 +637840.316|220051.349|122.304 +637845.117|220046.819|121.554 +637849.939|220042.269|121.079 +637854.818|220037.666|120.728 +637859.659|220033.106|120.469 +637864.474|220028.556|119.366 +637869.342|220023.962|118.900 +637874.192|220019.387|118.202 +637879.023|220014.821|117.303 +637883.896|220010.225|116.909 +637888.779|220005.616|116.035 +637893.638|220001.029|115.468 +637898.539|219996.408|114.797 +637903.443|219991.779|114.227 +637908.332|219987.164|113.407 +637913.233|219982.537|112.758 +637918.125|219977.928|112.673 +637923.127|219973.222|112.755 +637928.099|219968.544|113.182 +637933.070|219963.868|113.569 +637938.093|219959.147|114.084 +637943.067|219954.471|114.654 +637948.060|219949.771|114.788 +637953.046|219945.077|114.852 +637957.975|219940.432|114.824 +637962.956|219935.744|114.809 +637967.933|219931.056|114.828 +637972.913|219926.368|114.885 +637977.885|219921.684|114.828 +637982.859|219917.002|114.821 +637987.812|219912.329|114.462 +637992.811|219907.617|114.090 +637997.806|219902.920|114.526 +638002.820|219898.199|114.495 +638007.786|219893.523|114.373 +638012.787|219888.805|114.139 +638017.783|219884.096|113.712 +638022.806|219879.371|113.874 +638027.848|219874.631|114.596 +638032.898|219869.889|115.535 +638042.941|219860.443|116.153 +638047.900|219855.755|114.907 +638052.896|219851.043|114.611 +638057.959|219846.282|114.806 +638062.961|219841.570|114.681 +638067.956|219836.861|114.386 +638073.025|219832.093|114.901 +638078.082|219827.360|116.748 +638083.096|219822.645|117.211 +638088.155|219817.887|117.690 +638093.212|219813.132|118.125 +638098.223|219808.420|118.695 +638103.277|219803.668|119.101 +638108.321|219798.919|119.208 +638113.323|219794.216|119.500 +638118.367|219789.467|119.732 +638123.412|219784.718|119.985 +638128.407|219780.018|120.043 +638133.446|219775.269|120.024 +638138.484|219770.524|119.884 +638143.522|219765.778|119.585 +638148.561|219761.029|119.384 +638153.599|219756.280|119.043 +638158.638|219751.532|118.997 +638163.673|219746.777|118.101 +638168.717|219742.031|118.220 +638173.759|219737.276|117.735 +638178.800|219732.530|117.793 +638188.886|219723.033|117.906 +638193.930|219718.284|117.973 +638198.966|219713.547|118.275 +638204.010|219708.802|118.534 +638209.049|219704.062|118.961 +638214.090|219699.322|119.332 +638219.125|219694.586|119.878 +638224.164|219689.846|120.256 +638229.205|219685.106|120.555 +638234.240|219680.373|121.082 +638239.227|219675.679|121.490 +638244.265|219670.939|121.765 +638249.300|219666.203|122.128 +638254.290|219661.509|122.466 +638269.314|219647.369|123.005 +638274.355|219642.623|123.094 +638279.406|219637.865|122.908 +638284.407|219633.150|122.713 +638289.403|219628.450|122.868 +638294.411|219623.732|122.652 +638299.416|219619.013|122.481 +638304.469|219614.256|122.405 +638309.438|219609.574|122.088 +638314.449|219604.849|121.853 +638319.511|219600.082|121.670 +638324.477|219595.404|121.500 +638329.490|219590.685|121.362 +638334.520|219585.946|120.942 +638339.494|219581.258|120.664 +638344.471|219576.573|120.475 +638349.491|219571.846|120.308 +638354.484|219567.142|119.866 +638359.471|219562.442|119.521 +638364.460|219557.742|119.165 +638369.404|219553.088|118.878 +638374.397|219548.382|118.522 +638379.344|219543.722|118.235 +638384.330|219539.028|118.147 +638389.277|219534.367|117.915 +638394.233|219529.701|117.592 +638399.180|219525.043|117.443 +638404.081|219520.429|117.299 +638409.019|219515.781|117.354 +638413.911|219511.175|117.412 +638418.803|219506.576|117.528 +638423.738|219501.933|117.726 +638428.615|219497.349|118.095 +638433.495|219492.762|118.409 +638438.338|219488.208|118.631 +638443.236|219483.600|118.711 +638448.082|219479.040|118.887 +638452.987|219474.425|118.942 +638457.839|219469.859|119.067 +638462.701|219465.284|119.116 +638467.605|219460.673|119.253 +638467.474|219457.558|119.177 +638462.560|219462.169|119.070 +638457.693|219466.735|119.003 +638452.734|219471.392|118.927 +638447.872|219475.952|118.808 +638442.919|219480.597|118.668 +638438.015|219485.200|118.561 +638433.120|219489.787|118.314 +638428.231|219494.371|118.019 +638423.348|219498.946|117.626 +638418.407|219503.579|117.449 +638413.512|219508.170|117.260 +638408.565|219512.812|117.208 +638403.621|219517.451|117.144 +638398.665|219522.102|117.272 +638393.709|219526.753|117.464 +638388.792|219531.371|117.784 +638383.788|219536.068|118.065 +638378.841|219540.713|118.180 +638373.891|219545.364|118.458 +638368.889|219550.058|118.763 +638363.939|219554.710|119.110 +638358.989|219559.358|119.436 +638353.996|219564.049|119.765 +638349.046|219568.697|120.207 +638344.017|219573.418|120.369 +638339.034|219578.100|120.613 +638334.099|219582.730|120.817 +638329.064|219587.461|121.241 +638324.089|219592.133|121.454 +638319.069|219596.842|121.542 +638314.098|219601.512|121.719 +638309.124|219606.181|121.942 +638304.104|219610.894|122.219 +638299.090|219615.603|122.435 +638294.124|219620.263|122.560 +638289.110|219624.972|122.819 +638284.109|219629.660|122.569 +638279.098|219634.366|122.847 +638274.090|219639.066|122.966 +638269.085|219643.763|123.075 +638264.092|219648.442|122.600 +638259.042|219653.182|122.688 +638254.089|219657.824|122.509 +638249.047|219662.551|122.219 +638244.052|219667.233|121.826 +638239.056|219671.918|121.533 +638234.012|219676.642|121.192 +638229.016|219681.324|120.732 +638224.020|219686.006|120.299 +638218.976|219690.730|119.875 +638213.931|219695.457|119.418 +638208.933|219700.142|119.055 +638203.888|219704.870|118.607 +638198.886|219709.558|118.314 +638193.891|219714.239|117.979 +638188.843|219718.973|117.693 +638183.793|219723.709|117.650 +638178.791|219728.403|117.598 +638173.692|219733.186|117.580 +638168.644|219737.925|117.821 +638163.645|219742.622|118.232 +638158.595|219747.356|117.979 +638153.557|219752.099|118.964 +638148.555|219756.792|119.089 +638143.510|219761.529|119.287 +638138.469|219766.266|119.610 +638133.470|219770.957|119.710 +638128.426|219775.690|119.835 +638123.378|219780.427|119.835 +638118.373|219785.118|119.585 +638113.326|219789.854|119.491 +638108.272|219794.591|119.268 +638103.267|219799.282|119.150 +638098.214|219804.021|118.897 +638093.197|219808.721|118.311 +638088.180|219813.421|117.824 +638083.117|219818.164|117.373 +638078.097|219822.867|116.925 +638073.056|219827.579|115.788 +638057.986|219841.701|114.617 +638047.940|219851.134|115.349 +638043.014|219855.773|116.376 +638038.001|219860.477|116.342 +638032.935|219865.210|115.047 +638027.896|219869.928|114.465 +638022.824|219874.668|113.221 +638017.853|219879.331|113.267 +638012.900|219883.986|113.669 +638007.895|219888.686|114.035 +638002.979|219893.300|114.258 +637997.953|219898.016|114.175 +637992.954|219902.697|113.742 +637988.047|219907.309|114.191 +637983.030|219912.015|114.370 +637978.119|219916.630|114.742 +637973.136|219921.303|114.687 +637968.192|219925.942|114.486 +637963.251|219930.572|114.434 +637958.326|219935.195|114.614 +637953.385|219939.831|114.562 +637948.447|219944.464|114.602 +637943.503|219949.100|114.538 +637938.587|219953.709|114.218 +637933.606|219958.372|113.678 +637928.681|219962.987|113.279 +637923.752|219967.605|112.895 +637918.823|219972.223|112.532 +637913.919|219976.825|112.511 +637909.027|219981.418|112.712 +637904.263|219985.896|113.358 +637899.377|219990.492|114.285 +637894.616|219994.970|114.940 +637889.755|219999.539|115.565 +637884.948|220004.056|116.260 +637880.132|220008.585|116.833 +637875.310|220013.115|117.342 +637870.564|220017.580|118.186 +637865.761|220022.094|118.948 +637860.978|220026.590|119.369 +637856.205|220031.083|120.439 +637851.453|220035.542|120.701 +637846.616|220040.086|121.058 +637841.880|220044.536|121.503 +637837.116|220049.014|122.155 +637832.345|220053.501|122.743 +637827.530|220058.018|122.896 +637822.799|220062.456|122.938 +637817.983|220066.976|123.097 +637813.231|220071.441|123.438 +637808.470|220075.910|123.706 +637803.743|220080.347|123.844 +637798.964|220084.831|123.984 +637794.221|220089.281|124.011 +637789.423|220093.780|123.999 +637784.665|220098.242|123.944 +637779.883|220102.726|123.652 +637775.092|220107.216|123.344 +637770.306|220111.699|123.100 +637765.576|220116.137|122.938 +637760.790|220120.624|122.740 +637756.033|220125.080|122.414 +637718.060|220160.669|120.180 +637694.341|220182.892|118.193 +637689.641|220187.299|117.906 +637666.129|220209.339|116.473 +637642.723|220231.279|114.706 +637638.114|220235.601|114.648 +637628.803|220244.333|114.306 +637605.699|220266.002|113.532 +637601.115|220270.299|113.179 +637596.448|220274.670|112.642 +637582.577|220287.667|111.353 +637578.020|220291.943|111.283 +637564.185|220304.903|109.935 +637559.525|220309.268|109.341 +637536.719|220330.644|107.610 +637522.915|220343.564|105.394 +637518.361|220347.825|104.790 +637495.806|220368.957|102.489 +637491.216|220373.252|101.563 +637482.556|220381.387|102.315 +637478.176|220385.496|102.300 +637473.824|220389.583|102.453 +637469.432|220393.704|102.416 +637465.106|220397.761|102.492 +637460.797|220401.808|102.651 +637456.407|220405.923|102.419 +637452.104|220409.965|102.645 +637439.174|220422.096|102.553 +637430.658|220430.091|102.837 +637426.485|220434.011|103.294 +637413.574|220446.114|102.605 +637400.992|220457.925|102.901 +637396.849|220461.815|103.114 +637384.343|220473.552|103.233 +637367.796|220489.076|103.337 +637347.581|220508.059|104.123 +637343.512|220511.875|104.169 +637339.550|220515.600|104.452 +637335.560|220519.346|104.644 +637331.628|220523.043|105.089 +637319.973|220534.001|106.439 +637316.184|220537.564|107.107 +637304.787|220548.283|108.789 +637300.987|220551.862|109.420 +637297.234|220555.388|110.064 +637293.543|220558.863|110.746 +637286.024|220565.934|111.776 +637282.348|220569.391|112.328 +637278.651|220572.866|112.810 +637263.911|220586.725|114.562 +637260.192|220590.215|114.791 +637256.565|220593.626|115.181 +637252.941|220597.030|115.590 +637249.326|220600.432|116.041 +637245.723|220603.815|116.352 +637238.380|220610.707|116.443 +637234.744|220614.117|116.446 +637227.475|220620.942|116.486 +637220.129|220627.821|115.882 +637216.551|220631.180|115.964 +637212.991|220634.521|115.919 +637209.345|220637.934|115.562 +637205.773|220641.284|115.495 +637202.085|220644.735|114.803 +637194.770|220651.583|113.694 +637191.173|220654.951|113.188 +637176.527|220668.640|109.765 +637409.724|220447.242|100.636 +637414.439|220442.841|102.748 +637422.907|220434.876|102.407 +637427.470|220430.606|103.882 +637431.688|220426.634|103.422 +637435.836|220422.724|102.636 +637440.073|220418.737|102.285 +637444.404|220414.665|102.440 +637457.419|220402.430|102.596 +637461.744|220398.361|102.264 +637466.149|220394.222|102.355 +637470.520|220390.110|102.303 +637474.936|220385.962|102.498 +637478.993|220382.121|100.810 +637483.718|220377.705|102.404 +637492.599|220369.359|102.660 +637501.509|220360.983|102.584 +637506.026|220356.741|102.931 +637519.818|220343.805|105.153 +637524.421|220339.492|105.775 +637529.060|220335.142|106.647 +637538.292|220326.480|107.945 +637542.824|220322.219|108.006 +637556.601|220309.286|109.055 +637561.253|220304.922|109.606 +637570.528|220296.213|110.649 +637579.791|220287.520|111.402 +637589.057|220278.815|111.993 +637593.668|220274.484|112.173 +637607.662|220261.344|113.273 +637612.362|220256.934|113.825 +637617.071|220252.511|114.139 +637621.710|220248.152|114.322 +637626.343|220243.794|114.184 +637645.061|220226.204|114.727 +637649.758|220221.790|114.776 +637659.274|220212.860|115.830 +637664.065|220208.361|116.284 +637668.783|220203.932|116.598 +637678.296|220194.995|117.144 +637726.132|220150.077|120.643 +637735.705|220141.085|121.173 +637740.549|220136.534|121.347 +637754.957|220123.001|122.256 +637759.839|220118.414|122.472 +637764.634|220113.912|122.774 +637769.459|220109.377|122.969 +637774.287|220104.841|123.197 +637779.115|220100.306|123.466 +637783.946|220095.773|123.764 +637788.796|220091.214|123.834 +637793.578|220086.718|123.749 +637798.455|220082.131|123.673 +637803.234|220077.638|123.591 +637808.056|220073.102|123.487 +637812.863|220068.579|123.252 +637817.715|220064.013|122.996 +637822.534|220059.481|122.917 +637827.408|220054.900|122.920 +637832.178|220050.410|122.347 +637836.997|220045.868|121.823 +637841.813|220041.333|121.247 +637846.653|220036.779|120.945 +637851.493|220032.223|120.686 +637856.294|220027.699|119.973 +637861.128|220023.142|119.092 +637865.968|220018.589|118.836 +637870.781|220014.050|117.684 +637875.588|220009.518|117.068 +637880.467|220004.928|116.736 +637885.305|220000.368|115.882 +637890.157|219995.796|115.227 +637895.019|219991.218|114.651 +637899.868|219986.649|113.965 +637904.678|219982.107|112.749 +637909.609|219977.468|112.490 +637914.492|219972.875|112.255 +637919.457|219968.211|112.487 +637924.380|219963.588|112.855 +637929.351|219958.921|113.261 +637934.323|219954.251|113.718 +637939.288|219949.591|114.084 +637944.241|219944.934|114.370 +637949.176|219940.292|114.373 +637954.107|219935.653|114.331 +637959.082|219930.971|114.221 +637964.007|219926.335|114.160 +637968.994|219921.647|114.315 +637973.934|219917.002|114.547 +637978.912|219912.320|114.587 +637983.853|219907.663|113.980 +637988.781|219903.027|114.062 +637993.771|219898.327|113.456 +637998.718|219893.678|113.959 +638003.689|219889.003|113.980 +638008.691|219884.294|113.694 +638018.588|219874.970|112.877 +638023.547|219870.300|112.670 +638028.543|219865.612|113.389 +638033.614|219860.864|114.828 +638038.625|219856.167|116.150 +638043.639|219851.451|116.352 +638048.568|219846.803|115.532 +638053.494|219842.158|114.593 +638068.478|219828.067|115.038 +638073.534|219823.337|116.809 +638078.542|219818.630|117.031 +638083.556|219813.921|117.552 +638088.564|219809.215|117.961 +638093.575|219804.509|118.415 +638098.583|219799.806|118.939 +638103.581|219795.106|119.128 +638108.583|219790.406|119.372 +638113.579|219785.706|119.470 +638118.575|219781.009|119.555 +638123.570|219776.309|119.710 +638128.609|219771.569|119.610 +638133.601|219766.869|119.534 +638138.594|219762.172|119.445 +638143.632|219757.430|119.168 +638148.622|219752.729|119.006 +638153.611|219748.029|118.412 +638158.653|219743.284|118.019 +638163.694|219738.538|117.805 +638168.690|219733.838|117.845 +638173.682|219729.135|117.488 +638178.727|219724.389|117.473 +638183.723|219719.692|117.580 +638188.767|219714.949|117.677 +638193.802|219710.216|118.034 +638198.798|219705.522|118.327 +638203.791|219700.828|118.729 +638208.832|219696.091|119.076 +638213.825|219691.404|119.503 +638218.860|219686.670|120.006 +638223.898|219681.940|120.442 +638228.888|219677.252|120.866 +638238.916|219667.830|121.606 +638243.906|219663.142|121.929 +638248.941|219658.409|122.274 +638253.979|219653.672|122.512 +638258.972|219648.978|122.640 +638269.000|219639.551|123.124 +638274.005|219634.842|122.871 +638279.003|219630.139|122.816 +638284.060|219625.378|122.469 +638289.050|219620.684|122.783 +638294.106|219615.926|122.518 +638299.114|219611.214|122.350 +638304.125|219606.495|122.109 +638309.139|219601.774|121.835 +638314.199|219597.010|121.661 +638319.164|219592.331|121.515 +638324.227|219587.564|121.399 +638329.247|219582.834|121.122 +638334.276|219578.091|120.713 +638339.296|219573.360|120.515 +638344.319|219568.630|120.347 +638349.303|219563.936|120.073 +638354.341|219559.184|119.628 +638359.376|219554.438|119.308 +638364.366|219549.735|119.003 +638369.410|219544.980|118.601 +638374.403|219540.274|118.314 +638379.395|219535.574|118.110 +638384.431|219530.832|118.013 +638389.387|219526.159|117.671 +638394.443|219521.392|117.257 +638399.393|219516.732|117.110 +638404.386|219512.028|117.037 +638409.376|219507.328|117.071 +638414.313|219502.683|117.199 +638419.248|219498.041|117.437 +638424.229|219493.353|117.647 +638429.157|219488.720|118.010 +638434.089|219484.081|118.281 +638438.978|219479.479|118.519 +638443.925|219474.828|118.659 +638448.866|219470.176|118.866 +638453.773|219465.559|118.924 +638458.726|219460.895|119.015 +638456.233|219459.213|118.945 +638451.219|219463.919|118.912 +638446.217|219468.613|118.772 +638441.270|219473.258|118.567 +638436.277|219477.940|118.336 +638431.334|219482.579|118.098 +638426.350|219487.254|117.763 +638421.367|219491.930|117.458 +638416.377|219496.612|117.239 +638411.390|219501.290|117.001 +638406.395|219505.981|116.940 +638401.390|219510.678|117.019 +638396.391|219515.375|117.095 +638391.377|219520.087|117.400 +638386.318|219524.845|117.763 +638381.316|219529.545|117.976 +638376.320|219534.239|118.122 +638371.321|219538.936|118.354 +638366.320|219543.636|118.692 +638361.269|219548.385|119.095 +638356.225|219553.125|119.384 +638351.278|219557.776|119.729 +638346.236|219562.519|120.137 +638341.201|219567.246|120.354 +638336.220|219571.925|120.509 +638331.240|219576.607|120.728 +638326.208|219581.337|121.079 +638321.224|219586.019|121.381 +638316.204|219590.737|121.567 +638311.187|219595.449|121.588 +638306.216|219600.119|121.792 +638301.196|219604.837|122.042 +638296.225|219609.513|122.350 +638291.204|219614.228|122.646 +638286.203|219618.922|122.448 +638281.237|219623.585|122.621 +638276.227|219628.295|122.810 +638271.264|219632.958|123.078 +638266.266|219637.652|122.893 +638261.261|219642.349|122.859 +638256.314|219646.991|122.557 +638251.312|219651.685|122.466 +638246.316|219656.373|122.201 +638241.367|219661.015|121.844 +638236.371|219665.700|121.515 +638231.375|219670.385|121.094 +638221.426|219679.715|120.399 +638216.431|219684.402|120.046 +638211.481|219689.038|119.332 +638206.482|219693.726|118.869 +638201.483|219698.417|118.580 +638196.527|219703.062|118.223 +638191.526|219707.756|117.952 +638186.530|219712.441|117.546 +638181.528|219717.138|117.452 +638176.523|219721.832|117.306 +638171.567|219726.486|117.336 +638166.565|219731.183|117.360 +638161.567|219735.889|118.013 +638156.611|219740.541|117.991 +638151.609|219745.237|117.979 +638146.613|219749.938|118.711 +638141.663|219754.592|119.092 +638136.664|219759.289|119.250 +638131.715|219763.940|119.354 +638126.716|219768.634|119.461 +638121.714|219773.331|119.457 +638116.761|219777.982|119.418 +638111.759|219782.676|119.381 +638106.757|219787.373|119.308 +638101.801|219792.024|119.198 +638096.790|219796.724|118.848 +638091.776|219801.424|118.446 +638086.808|219806.085|117.933 +638081.840|219810.742|117.565 +638076.820|219815.448|117.092 +638071.855|219820.109|116.824 +638066.801|219824.830|115.434 +638056.798|219834.212|114.501 +638051.811|219838.903|115.303 +638046.879|219843.545|116.297 +638041.917|219848.202|116.318 +638036.873|219852.927|115.529 +638031.850|219857.617|114.206 +638026.823|219862.314|112.901 +638021.770|219867.048|112.078 +638016.850|219871.669|112.270 +638011.852|219876.366|112.862 +638006.899|219881.023|113.300 +638001.933|219885.687|113.563 +637996.944|219890.365|113.304 +637992.000|219895.001|113.044 +637987.050|219899.656|113.602 +637982.076|219904.325|113.755 +637977.184|219908.928|114.520 +637972.206|219913.600|114.572 +637967.238|219918.255|113.989 +637962.248|219922.936|113.898 +637957.314|219927.566|113.995 +637952.376|219932.202|114.017 +637947.395|219936.878|114.157 +637942.500|219941.471|114.163 +637937.502|219946.162|114.041 +637932.527|219950.822|113.614 +637922.621|219960.107|112.773 +637917.690|219964.731|112.386 +637912.724|219969.388|112.197 +637907.777|219974.033|112.337 +637902.895|219978.620|112.694 +637898.051|219983.177|113.569 +637893.217|219987.731|114.538 +637888.346|219992.309|115.044 +637883.485|219996.881|115.684 +637878.642|220001.438|116.531 +637873.762|220006.022|116.964 +637868.937|220010.560|117.461 +637864.103|220015.111|118.418 +637859.339|220019.592|119.070 +637854.468|220024.170|119.610 +637849.679|220028.675|120.561 +637844.836|220033.225|120.869 +637840.045|220037.730|121.225 +637835.201|220042.278|121.582 +637830.422|220046.771|122.121 +637825.603|220051.303|122.740 +637820.800|220055.814|123.024 +637816.023|220060.301|123.109 +637811.195|220064.833|123.176 +637806.367|220069.366|123.267 +637801.591|220073.846|123.438 +637796.806|220078.339|123.505 +637791.969|220082.880|123.575 +637787.220|220087.337|123.581 +637782.355|220091.899|123.438 +637777.576|220096.380|123.213 +637772.739|220100.915|122.926 +637767.953|220105.402|122.704 +637763.122|220109.934|122.509 +637758.328|220114.430|122.246 +637753.536|220118.926|122.039 +637748.733|220123.428|121.771 +637734.398|220136.867|120.911 +637720.084|220150.290|120.475 +637715.363|220154.719|120.262 +637705.667|220163.790|118.293 +637686.718|220181.553|117.412 +637682.021|220185.955|117.193 +637667.939|220199.156|116.736 +637663.184|220203.606|116.205 +637658.509|220207.986|115.900 +637644.418|220221.184|114.718 +637639.730|220225.576|114.434 +637602.709|220260.277|113.304 +637579.590|220281.933|111.773 +637574.923|220286.298|111.030 +637565.779|220294.866|110.466 +637538.271|220320.628|108.040 +637533.711|220324.895|107.585 +637497.226|220359.036|102.803 +637492.798|220363.187|102.727 +637474.860|220379.985|101.172 +637470.721|220383.886|102.450 +637461.991|220392.070|102.419 +637457.657|220396.133|102.462 +637453.335|220400.187|102.575 +637449.040|220404.219|102.840 +637444.609|220408.368|102.431 +637431.719|220420.459|102.590 +637427.360|220424.537|102.117 +637418.856|220432.517|102.538 +637409.910|220440.878|100.621 +637401.961|220448.367|103.093 +637385.212|220464.070|103.138 +637376.879|220471.882|103.209 +637368.582|220479.658|103.035 +637364.455|220483.532|103.181 +637360.438|220487.302|103.617 +637356.466|220491.030|104.035 +637348.365|220498.631|104.409 +637344.305|220502.435|104.464 +637340.278|220506.209|104.458 +637336.179|220510.049|104.370 +637332.271|220513.716|104.684 +637320.582|220524.692|106.284 +637316.739|220528.301|106.692 +637301.547|220542.568|108.985 +637286.633|220556.580|111.697 +637282.900|220560.085|111.996 +637279.212|220563.548|112.487 +637271.753|220570.546|113.169 +637264.462|220577.389|114.154 +637260.866|220580.766|114.636 +637249.908|220591.050|115.684 +637242.629|220597.871|115.992 +637206.760|220631.479|116.278 +637203.152|220634.859|116.059 +637199.759|220638.038|116.278 +637188.997|220648.100|114.986 +637185.482|220651.385|114.590 +637181.816|220654.811|113.840 +637178.289|220658.106|113.224 +637388.775|220458.059|103.580 +637431.042|220418.249|102.395 +637444.026|220406.021|102.303 +637448.425|220401.885|102.568 +637452.738|220397.822|102.428 +637457.038|220393.768|102.245 +637465.792|220385.529|102.163 +637470.218|220381.359|102.157 +637474.366|220377.437|100.953 +637478.935|220373.145|101.730 +637483.471|220368.887|102.349 +637487.957|220364.669|102.730 +637492.371|220360.511|102.471 +637496.848|220356.296|102.575 +637501.292|220352.111|102.514 +637505.800|220347.871|102.840 +637515.216|220339.044|105.199 +637519.797|220334.740|105.717 +637538.219|220317.427|107.759 +637551.996|220304.473|108.844 +637556.626|220300.121|109.277 +637565.965|220291.349|110.390 +637579.913|220278.239|111.764 +637584.524|220273.905|111.920 +637589.197|220269.513|112.182 +637593.854|220265.133|112.377 +637607.887|220251.941|113.505 +637621.890|220238.768|113.672 +637626.565|220234.372|113.828 +637645.347|220216.703|114.224 +637664.425|220198.784|116.400 +637669.213|220194.288|116.879 +637673.968|220189.817|117.165 +637692.927|220171.980|117.354 +637697.782|220167.417|117.787 +637717.103|220149.272|120.180 +637721.855|220144.795|119.939 +637726.668|220140.271|120.207 +637746.005|220122.096|121.463 +637750.842|220117.548|121.676 +637755.688|220112.995|121.978 +637760.519|220108.450|122.182 +637765.353|220103.906|122.457 +637770.224|220099.324|122.649 +637775.101|220094.740|122.923 +637779.969|220090.162|123.118 +637784.784|220085.633|123.341 +637789.631|220081.073|123.408 +637794.511|220076.483|123.338 +637799.339|220071.938|123.280 +637804.215|220067.348|123.246 +637809.040|220062.806|123.191 +637813.905|220058.228|123.085 +637818.733|220053.687|123.097 +637823.592|220049.105|122.448 +637828.362|220044.607|121.902 +637833.242|220040.010|121.500 +637838.076|220035.453|121.143 +637842.968|220030.848|120.890 +637847.777|220026.312|120.277 +637852.618|220021.747|119.488 +637857.498|220017.150|119.134 +637862.323|220012.593|118.153 +637867.166|220008.024|117.382 +637872.040|220003.434|116.989 +637876.947|219998.807|116.416 +637881.784|219994.244|115.562 +637886.633|219989.669|114.876 +637891.544|219985.042|114.328 +637896.411|219980.446|113.267 +637901.307|219975.828|112.538 +637906.186|219971.232|112.249 +637911.121|219966.587|112.036 +637916.132|219961.875|112.282 +637921.064|219957.242|112.795 +637926.084|219952.523|113.236 +637931.049|219947.860|113.572 +637936.005|219943.202|113.849 +637940.998|219938.509|113.953 +637945.929|219933.872|113.877 +637950.907|219929.188|113.825 +637955.884|219924.509|113.736 +637960.798|219919.882|113.435 +637965.793|219915.191|113.709 +637970.807|219910.488|114.325 +637975.742|219905.849|114.474 +637980.735|219901.146|113.938 +637985.624|219896.537|113.236 +637990.570|219891.880|112.724 +637995.588|219887.162|112.621 +638000.598|219882.462|113.432 +638005.542|219877.804|112.865 +638010.501|219873.141|112.627 +638015.467|219868.453|111.469 +638020.468|219863.762|112.225 +638025.510|219859.032|112.871 +638030.515|219854.338|113.843 +638035.571|219849.601|115.017 +638040.567|219844.919|115.864 +638045.587|219840.204|116.275 +638050.586|219835.501|116.038 +638055.520|219830.850|115.376 +638060.516|219826.150|115.093 +638065.548|219821.432|115.958 +638070.532|219816.759|116.873 +638075.592|219812.007|117.171 +638080.557|219807.347|117.647 +638085.565|219802.641|117.970 +638090.576|219797.938|118.433 +638095.580|219793.237|118.753 +638100.585|219788.537|119.183 +638105.584|219783.837|119.314 +638110.583|219779.140|119.396 +638115.575|219774.447|119.424 +638120.571|219769.750|119.393 +638125.518|219765.095|119.339 +638130.559|219760.356|119.314 +638135.552|219755.659|119.153 +638140.499|219751.004|118.887 +638145.534|219746.262|118.208 +638150.527|219741.562|117.936 +638155.526|219736.865|118.031 +638160.518|219732.162|117.647 +638165.514|219727.458|117.068 +638170.513|219722.758|117.202 +638175.557|219718.019|117.281 +638180.507|219713.364|117.315 +638185.506|219708.664|117.406 +638190.541|219703.937|117.949 +638195.537|219699.246|118.290 +638200.532|219694.552|118.567 +638205.528|219689.861|118.924 +638210.521|219685.177|119.497 +638215.510|219680.492|120.082 +638220.503|219675.801|120.317 +638230.439|219666.474|121.170 +638235.475|219661.743|121.594 +638240.419|219657.101|121.887 +638245.408|219652.414|122.240 +638250.401|219647.726|122.548 +638255.351|219643.071|122.509 +638260.340|219638.387|122.880 +638265.336|219633.687|122.902 +638270.332|219628.993|123.057 +638275.340|219624.280|122.701 +638280.296|219619.617|122.554 +638285.304|219614.908|122.396 +638290.299|219610.214|122.609 +638295.264|219605.538|122.286 +638300.230|219600.863|121.993 +638305.247|219596.144|121.731 +638310.215|219591.472|121.524 +638315.223|219586.763|121.494 +638320.191|219582.090|121.344 +638325.168|219577.405|121.012 +638330.195|219572.675|120.704 +638335.172|219567.996|120.491 +638340.146|219563.317|120.369 +638345.127|219558.629|120.113 +638350.074|219553.975|119.683 +638355.060|219549.281|119.390 +638360.050|219544.590|119.134 +638365.045|219539.884|118.717 +638370.044|219535.181|118.366 +638374.991|219530.530|118.144 +638379.981|219525.836|118.007 +638384.928|219521.185|117.845 +638389.890|219516.512|117.437 +638394.898|219511.797|117.080 +638399.854|219507.139|116.906 +638404.804|219502.485|116.827 +638409.790|219497.797|116.934 +638414.682|219493.201|117.092 +638419.620|219488.562|117.284 +638424.555|219483.929|117.546 +638429.483|219479.302|117.921 +638434.421|219474.663|118.138 +638439.310|219470.070|118.418 +638444.251|219465.427|118.644 +638449.149|219460.828|118.854 +638445.482|219460.127|118.619 +638440.484|219464.809|118.388 +638435.494|219469.484|118.074 +638430.498|219474.166|117.821 +638425.509|219478.845|117.525 +638420.519|219483.520|117.239 +638415.475|219488.254|117.123 +638410.436|219492.978|116.879 +638405.444|219497.660|116.711 +638400.393|219502.400|116.754 +638395.382|219507.106|116.940 +638390.316|219511.867|117.306 +638385.254|219516.622|117.662 +638380.197|219521.371|117.936 +638375.156|219526.104|118.007 +638370.105|219530.847|118.263 +638365.097|219535.550|118.619 +638360.047|219540.299|119.022 +638354.954|219545.081|119.293 +638349.961|219549.772|119.540 +638344.868|219554.557|119.918 +638339.826|219559.294|120.283 +638334.797|219564.015|120.415 +638329.765|219568.740|120.594 +638324.733|219573.467|120.875 +638319.700|219578.195|121.216 +638314.628|219582.959|121.399 +638309.608|219587.668|121.469 +638304.588|219592.383|121.612 +638299.519|219597.141|121.811 +638294.493|219601.862|122.204 +638289.473|219606.581|122.524 +638284.426|219611.314|122.213 +638279.409|219616.026|122.496 +638274.349|219620.778|122.670 +638269.332|219625.490|123.036 +638264.330|219630.181|122.883 +638259.283|219634.915|122.609 +638254.284|219639.600|122.344 +638249.276|219644.303|122.487 +638244.229|219649.033|122.225 +638239.230|219653.721|121.923 +638234.234|219658.406|121.591 +638229.190|219663.133|121.183 +638224.191|219667.818|120.777 +638214.191|219677.191|120.052 +638209.146|219681.918|119.525 +638204.193|219686.557|119.046 +638199.191|219691.242|118.570 +638194.141|219695.979|118.314 +638189.185|219700.624|117.915 +638183.762|219705.702|117.278 +638179.135|219710.039|116.836 +638174.176|219714.693|117.074 +638169.171|219719.390|117.007 +638164.167|219724.087|116.821 +638159.162|219728.787|117.168 +638154.163|219733.490|117.900 +638149.204|219738.142|117.860 +638144.153|219742.881|117.949 +638139.203|219747.536|118.439 +638134.205|219752.233|118.799 +638129.255|219756.884|119.168 +638124.253|219761.578|119.247 +638119.297|219766.229|119.299 +638114.295|219770.923|119.348 +638109.293|219775.617|119.406 +638104.337|219780.268|119.354 +638099.375|219784.919|119.025 +638094.364|219789.616|118.729 +638089.399|219794.271|118.424 +638084.434|219798.928|118.046 +638079.463|219803.585|117.650 +638074.494|219808.243|117.351 +638069.520|219812.903|116.918 +638064.533|219817.573|116.108 +638059.544|219822.242|115.349 +638054.597|219826.894|115.900 +638049.693|219831.502|116.233 +638044.724|219836.166|116.117 +638039.781|219840.799|115.361 +638034.782|219845.480|114.565 +638029.783|219850.165|113.749 +638024.824|219854.807|112.880 +638019.828|219859.489|112.371 +638014.872|219864.134|111.648 +638009.916|219868.795|112.063 +638005.003|219873.412|112.435 +638000.102|219878.024|113.023 +637995.100|219882.712|112.487 +637990.150|219887.354|112.124 +637985.240|219891.972|112.554 +637980.375|219896.562|113.788 +637975.471|219901.173|114.309 +637970.521|219905.819|114.023 +637965.549|219910.476|113.371 +637960.609|219915.115|113.300 +637955.677|219919.748|113.398 +637950.794|219924.335|113.547 +637945.807|219929.017|113.587 +637940.912|219933.613|113.563 +637936.023|219938.207|113.666 +637931.076|219942.852|113.590 +637926.151|219947.473|113.188 +637921.177|219952.136|112.831 +637916.284|219956.723|112.289 +637911.316|219961.384|112.060 +637906.455|219965.950|112.026 +637901.560|219970.549|112.203 +637896.674|219975.142|112.487 +637891.843|219979.693|113.535 +637887.008|219984.247|114.520 +637882.229|219988.743|114.949 +637877.392|219993.299|115.897 +637872.515|219997.887|116.321 +637867.708|220002.410|117.050 +637862.886|220006.945|117.565 +637858.089|220011.463|118.385 +637853.291|220015.983|119.195 +637848.451|220020.530|119.549 +637843.647|220025.054|120.283 +637838.886|220029.534|120.988 +637834.028|220034.100|121.152 +637829.233|220038.608|121.500 +637824.393|220043.159|121.881 +637819.608|220047.658|122.353 +637814.832|220052.150|122.935 +637810.025|220056.671|123.207 +637805.188|220061.212|123.173 +637800.408|220065.702|123.286 +637795.574|220070.243|123.319 +637790.774|220074.748|123.255 +637785.924|220079.302|123.228 +637781.115|220083.819|123.103 +637776.335|220088.300|122.874 +637771.507|220092.832|122.643 +637766.679|220097.364|122.435 +637761.894|220101.854|122.219 +637757.054|220106.393|121.984 +637752.259|220110.892|121.734 +637747.455|220115.400|121.423 +637742.649|220119.908|121.137 +637737.857|220124.403|120.997 +637694.795|220164.789|117.467 +637656.994|220200.259|115.672 +637642.823|220213.551|114.556 +637610.192|220244.175|113.249 +637596.378|220257.144|112.941 +637582.412|220270.235|111.569 +637573.210|220278.870|111.152 +637554.776|220296.155|109.512 +637550.146|220300.496|108.805 +637545.555|220304.800|108.372 +637522.695|220326.239|106.503 +637518.111|220330.534|105.979 +637513.536|220334.819|105.239 +637499.646|220347.822|102.550 +637495.227|220351.974|102.486 +637486.394|220360.267|102.471 +637482.032|220364.367|102.782 +637477.408|220368.692|101.718 +637472.885|220372.929|100.935 +637468.804|220376.784|102.520 +637464.363|220380.951|102.212 +637459.971|220385.075|102.178 +637442.597|220401.388|102.209 +637438.278|220405.442|102.130 +637433.968|220409.489|102.102 +637429.640|220413.559|102.251 +637425.409|220417.533|102.407 +637412.181|220429.926|100.599 +637391.339|220449.525|102.358 +637383.286|220457.112|103.907 +637378.903|220461.211|103.041 +637374.779|220465.088|103.385 +637366.418|220472.937|103.135 +637358.265|220480.602|103.654 +637349.989|220488.369|103.687 +637346.033|220492.087|104.193 +637342.034|220495.846|104.525 +637333.917|220503.466|104.675 +637329.900|220507.236|104.733 +637325.931|220510.964|105.022 +637322.039|220514.627|105.641 +637310.356|220525.606|106.878 +637295.028|220540.020|109.064 +637291.352|220543.486|110.012 +637283.906|220550.490|111.328 +637276.353|220557.586|112.014 +637272.680|220561.045|112.791 +637268.897|220564.599|113.139 +637265.261|220568.019|113.657 +637261.548|220571.506|113.874 +637257.793|220575.030|114.154 +637250.448|220581.936|114.959 +637246.827|220585.341|115.376 +637243.245|220588.703|115.754 +637239.606|220592.123|116.123 +637235.963|220595.543|116.272 +637232.309|220598.975|116.385 +637228.715|220602.349|116.544 +637221.549|220609.079|116.976 +637217.992|220612.420|117.101 +637214.341|220615.839|116.888 +637210.802|220619.162|117.101 +637207.285|220622.466|117.208 +637203.667|220625.855|116.946 +637200.101|220629.196|116.696 +637196.647|220632.439|116.873 +637192.910|220635.932|116.001 +637189.241|220639.364|115.398 +637182.398|220645.789|115.678 +637175.134|220652.580|114.050 +637171.586|220655.899|113.572 +637168.036|220659.222|112.895 +637389.046|220448.888|103.632 +637426.900|220413.272|102.020 +637435.583|220405.113|102.401 +637439.768|220401.168|101.831 +637448.522|220392.945|102.419 +637457.154|220384.819|101.941 +637461.571|220380.671|102.102 +637470.148|220372.596|101.422 +637474.607|220368.408|101.602 +637479.133|220364.160|102.166 +637483.583|220359.978|102.349 +637488.003|220355.823|102.386 +637492.502|220351.596|102.593 +637501.387|220343.241|102.459 +637533.738|220312.898|107.506 +637538.249|220308.658|107.439 +637556.766|220291.279|109.646 +637561.417|220286.917|110.240 +637566.090|220282.531|110.704 +637575.365|220273.814|111.277 +637589.282|220260.738|112.014 +637598.603|220251.987|112.791 +637607.896|220243.245|112.880 +637612.624|220238.807|113.316 +637617.229|220234.476|113.279 +637631.284|220221.263|113.633 +637645.481|220207.928|114.495 +637655.049|220198.945|115.590 +637664.544|220190.027|116.275 +637669.283|220185.568|116.080 +637674.029|220181.108|116.284 +637678.836|220176.594|116.611 +637726.936|220131.417|120.259 +637731.834|220126.820|120.875 +637736.592|220122.343|120.756 +637741.442|220117.786|121.018 +637746.291|220113.229|121.323 +637751.140|220108.676|121.643 +637755.984|220104.125|121.954 +637760.864|220099.538|122.179 +637765.689|220095.005|122.356 +637770.559|220090.427|122.563 +637775.384|220085.895|122.807 +637780.298|220081.277|123.011 +637785.117|220076.748|123.249 +637790.009|220072.148|123.304 +637794.846|220067.601|123.310 +637799.720|220063.017|123.225 +637804.602|220058.426|123.264 +637809.467|220053.848|123.133 +637814.283|220049.313|122.509 +637819.111|220044.765|122.027 +637823.994|220040.169|121.628 +637828.791|220035.652|121.378 +637833.687|220031.043|121.140 +637838.566|220026.450|120.744 +637843.410|220021.884|119.945 +637848.274|220017.299|119.424 +637853.151|220012.709|119.000 +637857.979|220008.155|118.046 +637862.829|220003.583|117.348 +637867.736|219998.960|116.742 +637882.354|219985.186|114.879 +637887.258|219980.565|114.261 +637892.111|219975.981|112.987 +637897.006|219971.366|112.255 +637901.947|219966.721|112.084 +637906.881|219962.076|111.917 +637911.844|219957.412|112.081 +637916.861|219952.700|112.432 +637921.832|219948.030|112.834 +637926.855|219943.315|113.316 +637931.805|219938.661|113.480 +637936.791|219933.970|113.477 +637946.752|219924.597|113.392 +637951.727|219919.916|113.282 +637956.701|219915.237|113.136 +637961.678|219910.552|113.096 +637966.659|219905.867|113.182 +637971.725|219901.113|113.907 +637976.662|219896.470|114.114 +637981.631|219891.783|113.118 +637986.602|219887.092|112.130 +637991.570|219882.416|112.011 +637996.627|219877.670|112.767 +638001.577|219873.007|112.322 +638006.585|219868.292|112.170 +638011.577|219863.585|111.572 +638016.579|219858.892|112.337 +638021.611|219854.164|112.734 +638026.647|219849.434|113.337 +638031.688|219844.703|114.062 +638036.720|219839.979|114.690 +638041.753|219835.254|115.337 +638046.742|219830.576|116.150 +638051.796|219825.821|116.233 +638056.791|219821.118|115.931 +638061.748|219816.454|115.955 +638066.829|219811.690|116.915 +638071.836|219806.981|117.202 +638076.847|219802.275|117.607 +638081.855|219797.569|117.894 +638086.866|219792.863|118.342 +638091.868|219788.160|118.650 +638096.918|219783.414|118.854 +638101.917|219778.711|119.061 +638106.916|219774.011|119.168 +638111.912|219769.314|119.137 +638116.907|219764.614|119.226 +638121.900|219759.914|119.107 +638126.938|219755.171|118.878 +638131.931|219750.471|118.592 +638136.920|219745.768|117.988 +638141.962|219741.022|117.903 +638146.912|219736.368|118.122 +638151.904|219731.665|117.549 +638156.946|219726.913|117.117 +638161.942|219722.210|116.745 +638166.940|219717.504|116.589 +638171.985|219712.761|116.726 +638186.972|219698.673|117.586 +638191.919|219694.028|118.202 +638196.963|219689.291|118.564 +638201.956|219684.597|118.906 +638206.900|219679.955|119.457 +638211.941|219675.219|119.771 +638221.878|219665.886|120.661 +638226.867|219661.198|121.116 +638231.857|219656.510|121.515 +638236.801|219651.865|121.823 +638241.839|219647.128|122.070 +638246.737|219642.523|122.307 +638251.733|219637.820|122.259 +638256.722|219633.132|122.627 +638261.669|219628.481|122.755 +638266.665|219623.784|122.886 +638271.621|219619.120|122.783 +638276.626|219614.405|122.518 +638281.585|219609.738|122.353 +638286.535|219605.084|122.512 +638291.497|219600.415|122.359 +638296.514|219595.690|121.993 +638301.437|219591.051|121.612 +638306.402|219586.375|121.411 +638311.364|219581.709|121.414 +638316.329|219577.033|121.283 +638321.304|219572.348|121.000 +638326.235|219567.706|120.683 +638331.210|219563.022|120.436 +638336.184|219558.340|120.317 +638341.116|219553.698|120.104 +638346.056|219549.043|119.738 +638351.043|219544.343|119.387 +638355.984|219539.692|119.144 +638360.922|219535.041|118.924 +638365.871|219530.380|118.549 +638370.821|219525.717|118.220 +638375.771|219521.057|117.940 +638380.712|219516.408|117.863 +638385.665|219511.742|117.583 +638390.588|219507.103|117.062 +638395.541|219502.439|116.848 +638400.494|219497.773|116.681 +638405.438|219493.122|116.711 +638410.327|219488.525|116.891 +638415.222|219483.923|116.995 +638420.166|219479.275|117.120 +638425.049|219474.684|117.440 +638429.934|219470.091|117.732 +638434.872|219465.449|117.955 +638439.716|219460.895|118.205 +638439.804|219457.283|118.061 +638434.854|219461.925|117.833 +638429.852|219466.616|117.693 +638424.914|219471.246|117.342 +638419.922|219475.925|117.092 +638414.975|219480.564|116.915 +638409.973|219485.255|116.842 +638404.980|219489.936|116.672 +638399.985|219494.621|116.565 +638394.971|219499.327|116.751 +638389.902|219504.088|117.147 +638384.885|219508.801|117.507 +638379.874|219513.507|117.784 +638374.830|219518.237|117.848 +638369.822|219522.940|118.159 +638364.768|219527.686|118.494 +638359.718|219532.432|118.857 +638354.670|219537.168|119.110 +638349.629|219541.902|119.329 +638344.584|219546.639|119.674 +638339.540|219551.378|120.082 +638334.459|219556.148|120.256 +638329.430|219560.870|120.402 +638324.397|219565.594|120.631 +638319.316|219570.364|120.924 +638314.290|219575.083|121.161 +638309.218|219579.844|121.329 +638304.152|219584.598|121.393 +638299.129|219589.311|121.548 +638294.057|219594.075|121.902 +638288.986|219598.839|122.316 +638283.984|219603.527|122.030 +638278.918|219608.284|122.316 +638273.855|219613.033|122.484 +638268.792|219617.788|122.795 +638263.739|219622.531|122.801 +638258.688|219627.264|122.609 +638253.687|219631.958|122.536 +638248.639|219636.686|122.243 +638243.589|219641.422|122.140 +638238.541|219646.156|121.954 +638233.494|219650.883|121.649 +638228.449|219655.614|121.390 +638223.405|219660.341|120.954 +638218.357|219665.069|120.579 +638213.313|219669.796|120.146 +638203.263|219679.205|119.192 +638198.170|219683.979|118.705 +638193.168|219688.666|118.406 +638188.118|219693.397|117.848 +638183.067|219698.124|117.229 +638178.020|219702.846|116.455 +638172.966|219707.585|116.345 +638167.913|219712.328|116.522 +638162.859|219717.071|116.516 +638157.854|219721.768|116.787 +638152.804|219726.511|116.998 +638147.756|219731.256|117.568 +638142.754|219735.953|118.092 +638137.704|219740.690|117.927 +638132.653|219745.430|118.013 +638127.655|219750.126|118.491 +638122.607|219754.863|118.699 +638117.605|219759.557|118.820 +638112.604|219764.251|118.869 +638107.553|219768.988|118.881 +638102.548|219773.681|118.912 +638097.543|219778.375|118.833 +638092.535|219783.072|118.680 +638087.528|219787.769|118.470 +638082.514|219792.466|118.162 +638077.497|219797.166|117.732 +638072.528|219801.824|117.424 +638067.505|219806.527|116.918 +638062.485|219811.233|116.553 +638057.538|219815.857|115.620 +638052.546|219820.551|116.190 +638047.577|219825.208|116.096 +638042.585|219829.878|115.364 +638037.546|219834.593|114.773 +638032.557|219839.262|114.245 +638027.610|219843.889|113.700 +638022.562|219848.611|113.029 +638017.615|219853.244|112.520 +638012.608|219857.928|111.764 +638007.648|219862.567|111.155 +638002.708|219867.213|111.972 +637997.785|219871.830|112.212 +637992.841|219876.460|111.984 +637987.903|219881.090|111.862 +637982.990|219885.702|112.325 +637978.132|219890.280|113.779 +637973.188|219894.913|113.587 +637968.210|219899.567|112.846 +637963.318|219904.154|112.831 +637958.380|219908.781|112.895 +637953.498|219913.366|113.035 +637948.560|219917.995|113.096 +637943.662|219922.586|113.087 +637938.770|219927.173|113.127 +637933.859|219931.772|112.953 +637928.976|219936.357|113.209 +637924.066|219940.956|113.066 +637919.134|219945.574|112.630 +637914.200|219950.195|112.221 +637909.320|219954.764|111.935 +637904.400|219959.372|111.798 +637899.557|219963.920|112.033 +637894.668|219968.507|112.337 +637889.849|219973.033|112.953 +637885.064|219977.535|113.983 +637880.263|219982.049|114.788 +637865.797|219995.634|116.477 +637860.994|220000.151|117.266 +637856.224|220004.632|117.888 +637851.414|220009.152|118.586 +637846.619|220013.657|119.497 +637841.816|220018.165|119.738 +637837.036|220022.655|120.244 +637832.269|220027.135|120.911 +637827.438|220031.671|121.426 +637822.619|220036.191|121.551 +637817.809|220040.702|121.795 +637813.049|220045.170|122.067 +637808.257|220049.669|122.518 +637803.527|220054.113|123.112 +637798.717|220058.627|123.383 +637793.922|220063.120|123.377 +637789.125|220067.619|123.362 +637784.315|220072.124|123.249 +637779.502|220076.635|123.136 +637774.671|220081.161|122.865 +637769.837|220085.688|122.609 +637765.061|220090.162|122.463 +637760.233|220094.688|122.292 +637755.447|220099.172|122.106 +637750.641|220103.671|121.771 +637741.021|220112.681|121.113 +637736.211|220117.186|120.841 +637731.447|220121.645|120.564 +637707.392|220144.167|118.458 +637678.796|220170.949|116.537 +637669.317|220179.828|115.894 +637626.861|220219.608|113.115 +637622.152|220224.018|112.761 +637617.568|220228.319|112.953 +637589.770|220254.379|112.215 +637585.164|220258.699|112.078 +637571.235|220271.747|111.103 +637543.519|220297.701|108.296 +637538.905|220302.020|107.741 +637534.330|220306.308|107.454 +637529.809|220310.542|107.223 +637502.170|220336.401|103.105 +637497.586|220340.690|102.410 +637484.275|220353.174|102.309 +637479.877|220357.301|102.428 +637475.488|220361.413|102.358 +637470.757|220365.827|100.755 +637466.661|220369.692|102.264 +637457.867|220377.936|102.151 +637436.217|220398.248|102.578 +637431.831|220402.357|102.434 +637389.330|220442.225|103.102 +637385.197|220446.108|103.623 +637380.905|220450.125|103.154 +637372.685|220457.843|103.745 +637360.097|220469.639|103.184 +637355.936|220473.543|103.181 +637347.889|220481.099|104.028 +637343.878|220484.873|104.507 +637335.816|220492.447|104.876 +637331.692|220496.312|104.678 +637327.669|220500.094|104.918 +637315.751|220511.296|105.735 +637307.988|220518.596|106.680 +637304.062|220522.284|106.976 +637300.261|220525.862|107.595 +637296.475|220529.425|108.277 +637288.837|220536.610|109.411 +637281.373|220543.641|110.856 +637277.636|220547.159|111.575 +637273.835|220550.731|111.813 +637270.068|220554.273|112.209 +637266.370|220557.751|112.682 +637262.600|220561.295|113.078 +637255.263|220568.199|114.312 +637251.551|220571.689|114.550 +637247.729|220575.271|114.364 +637240.462|220582.110|115.519 +637233.132|220588.999|116.050 +637225.893|220595.802|116.565 +637218.696|220602.565|117.293 +637207.806|220612.788|117.254 +637200.610|220619.540|117.272 +637197.086|220622.850|117.370 +637193.477|220626.233|117.168 +637189.807|220629.671|116.745 +637186.223|220633.033|116.656 +637182.764|220636.282|116.647 +637164.701|220653.193|113.950 +637394.201|220435.565|103.846 +637402.406|220427.823|102.672 +637410.565|220420.115|100.807 +637436.726|220395.514|102.081 +637454.201|220379.070|102.111 +637458.578|220374.949|102.069 +637462.958|220370.829|102.075 +637467.322|220366.717|101.730 +637471.806|220362.501|102.053 +637476.274|220358.301|102.303 +637480.755|220354.089|102.639 +637494.102|220341.525|102.462 +637498.549|220337.340|102.419 +637517.203|220319.845|106.241 +637521.754|220315.568|106.628 +637535.491|220302.657|107.570 +637540.048|220298.371|107.802 +637544.699|220294.004|108.308 +637549.384|220289.605|109.055 +637553.971|220285.295|109.536 +637563.252|220276.578|110.329 +637567.903|220272.207|110.682 +637572.494|220267.897|110.987 +637581.830|220259.125|111.722 +637586.484|220254.754|112.203 +637591.221|220250.310|112.587 +637595.817|220245.988|112.743 +637600.429|220241.651|112.694 +637609.725|220232.912|112.822 +637628.388|220215.359|112.834 +637633.161|220210.884|113.697 +637637.880|220206.456|114.227 +637656.850|220188.637|115.574 +637666.284|220179.764|115.507 +637671.042|220175.293|115.815 +637680.521|220166.387|116.224 +637685.291|220161.900|116.333 +637694.880|220152.893|116.970 +637699.699|220148.370|117.537 +637728.664|220121.176|120.433 +637747.983|220103.028|121.686 +637752.829|220098.477|122.015 +637757.663|220093.935|122.249 +637762.485|220089.403|122.399 +637767.350|220084.831|122.548 +637772.172|220080.299|122.765 +637777.045|220075.721|123.027 +637781.852|220071.200|123.173 +637786.753|220066.595|123.289 +637796.428|220057.500|123.322 +637801.225|220052.982|122.972 +637806.053|220048.435|122.463 +637810.839|220043.927|122.039 +637815.688|220039.364|121.750 +637820.541|220034.795|121.551 +637825.399|220030.226|121.393 +637830.206|220025.694|120.728 +637835.025|220021.155|120.177 +637839.904|220016.559|119.793 +637844.745|220012.005|119.476 +637849.582|220007.442|118.616 +637854.431|220002.870|117.918 +637859.290|219998.292|117.312 +637864.127|219993.729|116.440 +637868.998|219989.145|115.952 +637878.767|219979.940|114.809 +637883.598|219975.380|113.870 +637888.481|219970.778|112.947 +637893.391|219966.151|112.395 +637898.310|219961.518|111.956 +637903.199|219956.915|111.801 +637908.201|219952.215|111.859 +637913.172|219947.546|112.209 +637918.193|219942.834|112.581 +637923.161|219938.167|112.956 +637928.108|219933.519|113.044 +637933.076|219928.840|112.801 +637938.056|219924.158|112.685 +637943.006|219919.510|112.880 +637948.039|219914.780|112.916 +637953.019|219910.095|112.901 +637957.987|219905.422|112.700 +637962.962|219900.744|112.602 +637967.939|219896.065|112.612 +637972.944|219891.368|113.118 +637977.991|219886.631|113.596 +637982.893|219882.002|112.167 +637987.891|219877.295|111.737 +637992.875|219872.614|111.917 +637997.895|219867.892|111.947 +638002.881|219863.195|111.219 +638012.915|219853.780|112.249 +638017.996|219849.010|112.700 +638022.986|219844.328|113.267 +638028.021|219839.604|113.843 +638033.099|219834.837|114.361 +638038.080|219830.161|114.885 +638043.158|219825.397|115.550 +638048.181|219820.685|116.010 +638053.170|219815.985|115.571 +638058.230|219811.233|115.760 +638063.268|219806.515|116.946 +638068.276|219801.808|117.202 +638073.333|219797.060|117.531 +638078.390|219792.311|117.891 +638083.401|219787.611|118.266 +638088.402|219782.911|118.491 +638093.453|219778.165|118.689 +638098.452|219773.468|118.772 +638103.493|219768.725|118.738 +638108.537|219763.986|118.738 +638113.533|219759.289|118.723 +638118.575|219754.546|118.592 +638123.616|219749.806|118.382 +638128.606|219745.106|118.007 +638133.650|219740.367|117.897 +638138.694|219735.624|118.089 +638143.736|219730.881|117.717 +638148.777|219726.133|117.193 +638153.819|219721.387|116.797 +638158.817|219716.684|116.409 +638163.862|219711.938|116.288 +638168.909|219707.198|116.455 +638173.908|219702.495|116.266 +638178.949|219697.759|116.541 +638183.994|219693.031|117.434 +638188.990|219688.343|117.982 +638194.031|219683.613|118.558 +638199.072|219678.879|118.921 +638209.106|219669.461|119.781 +638214.145|219664.731|120.256 +638219.089|219660.088|120.637 +638224.127|219655.358|121.094 +638229.162|219650.630|121.554 +638234.106|219645.988|121.841 +638239.151|219641.246|121.884 +638244.143|219636.555|122.085 +638249.136|219631.867|122.329 +638254.132|219627.176|122.545 +638259.124|219622.485|122.771 +638264.123|219617.782|122.731 +638269.125|219613.079|122.658 +638274.133|219608.370|122.393 +638279.095|219603.703|122.207 +638284.103|219598.988|121.972 +638289.053|219594.340|122.240 +638294.073|219589.612|121.740 +638299.044|219584.937|121.454 +638304.009|219580.264|121.317 +638309.020|219575.552|121.265 +638313.991|219570.873|121.027 +638318.917|219566.237|120.814 +638323.891|219561.555|120.582 +638328.866|219556.871|120.366 +638333.840|219552.192|120.235 +638338.772|219547.550|120.034 +638343.716|219542.896|119.631 +638348.702|219538.199|119.320 +638353.640|219533.553|119.128 +638358.581|219528.902|118.887 +638363.534|219524.239|118.497 +638368.441|219519.618|118.086 +638373.391|219514.958|117.799 +638378.329|219510.312|117.760 +638383.233|219505.698|117.562 +638388.195|219501.025|117.159 +638393.112|219496.395|116.815 +638398.022|219491.777|116.617 +638402.868|219487.218|116.656 +638407.766|219482.612|116.708 +638412.658|219478.013|116.882 +638417.508|219473.456|116.995 +638422.397|219468.856|117.196 +638427.240|219464.309|117.467 +638432.132|219459.712|117.705 +638428.191|219459.667|117.498 +638423.250|219464.297|117.178 +638418.349|219468.890|116.992 +638413.396|219473.532|116.867 +638408.495|219478.122|116.684 +638403.545|219482.761|116.553 +638398.631|219487.370|116.620 +638393.672|219492.021|116.687 +638388.655|219496.727|116.964 +638383.730|219501.351|117.342 +638378.716|219506.057|117.653 +638373.766|219510.703|117.732 +638368.807|219515.354|117.961 +638363.747|219520.109|118.409 +638358.788|219524.763|118.750 +638353.786|219529.454|119.025 +638348.793|219534.139|119.201 +638343.844|219538.784|119.491 +638338.796|219543.523|119.893 +638333.803|219548.211|120.204 +638328.820|219552.884|120.299 +638323.788|219557.605|120.463 +638318.804|219562.281|120.664 +638313.778|219566.996|120.847 +638308.749|219571.718|121.103 +638303.771|219576.384|121.253 +638298.703|219581.142|121.402 +638293.679|219585.854|121.646 +638288.696|219590.536|122.146 +638283.642|219595.269|121.929 +638278.625|219599.976|122.073 +638273.608|219604.685|122.323 +638268.546|219609.437|122.576 +638263.532|219614.137|122.701 +638258.524|219618.834|122.719 +638253.473|219623.570|122.630 +638248.468|219628.258|122.512 +638243.470|219632.940|122.176 +638238.425|219637.667|121.789 +638233.375|219642.401|121.713 +638228.373|219647.089|121.509 +638223.277|219651.862|121.253 +638218.281|219656.537|120.722 +638213.233|219661.262|120.250 +638208.186|219665.989|119.845 +638203.138|219670.714|119.348 +638193.040|219680.172|118.622 +638187.990|219684.899|118.019 +638182.988|219689.581|117.437 +638177.889|219694.354|116.934 +638172.838|219699.078|116.358 +638167.785|219703.821|116.419 +638162.731|219708.558|116.181 +638157.677|219713.297|116.318 +638152.624|219718.040|116.605 +638147.570|219722.780|116.912 +638142.474|219727.568|117.339 +638137.472|219732.265|117.872 +638132.376|219737.047|118.037 +638127.322|219741.781|117.909 +638122.318|219746.475|117.930 +638117.224|219751.257|118.296 +638112.177|219755.994|118.519 +638102.121|219765.424|118.650 +638097.071|219770.161|118.644 +638092.017|219774.898|118.631 +638086.961|219779.637|118.442 +638081.950|219784.331|118.241 +638076.890|219789.071|117.961 +638071.870|219793.771|117.516 +638066.807|219798.517|117.223 +638061.790|219803.217|116.973 +638056.694|219807.975|115.733 +638051.674|219812.678|115.541 +638046.663|219817.378|115.617 +638041.603|219822.123|115.614 +638036.571|219826.839|115.154 +638031.533|219831.554|114.611 +638026.494|219836.272|114.050 +638021.450|219840.994|113.428 +638016.405|219845.718|112.852 +638011.358|219850.442|112.304 +638006.359|219855.124|111.773 +638001.306|219859.858|111.161 +637996.289|219864.567|111.389 +637991.323|219869.227|111.722 +637986.328|219873.909|111.453 +637981.384|219878.560|112.203 +637976.446|219883.205|113.044 +637971.423|219887.906|112.304 +637966.424|219892.587|112.093 +637961.493|219897.217|112.182 +637956.500|219901.899|112.121 +637951.580|219906.520|112.474 +637946.646|219911.150|112.609 +637941.705|219915.786|112.642 +637936.801|219920.382|112.557 +637931.808|219925.067|112.578 +637926.922|219929.654|112.788 +637921.963|219934.302|112.645 +637917.053|219938.908|112.499 +637912.121|219943.526|112.142 +637907.140|219948.192|111.752 +637902.273|219952.755|111.679 +637892.498|219961.935|112.279 +637887.618|219966.520|112.712 +637882.756|219971.092|113.371 +637877.962|219975.600|114.312 +637873.161|219980.117|115.138 +637863.453|219989.236|116.065 +637858.699|219993.708|116.876 +637853.889|219998.231|117.571 +637849.064|220002.764|118.135 +637844.245|220007.296|118.720 +637839.496|220011.761|119.610 +637834.659|220016.303|120.027 +637829.852|220020.817|120.259 +637825.058|220025.319|120.643 +637820.281|220029.808|121.219 +637815.499|220034.301|121.753 +637810.671|220038.834|121.811 +637805.898|220043.311|121.975 +637801.088|220047.828|122.262 +637796.388|220052.242|122.694 +637791.588|220056.753|123.085 +637786.808|220061.236|123.264 +637782.011|220065.735|123.249 +637777.244|220070.204|123.112 +637772.416|220074.730|122.856 +637767.621|220079.223|122.521 +637762.793|220083.749|122.323 +637758.002|220088.239|122.067 +637753.198|220092.738|121.728 +637748.388|220097.246|121.353 +637729.253|220115.174|120.229 +637724.501|220119.627|120.079 +637695.749|220146.556|117.373 +637690.970|220151.031|116.830 +637671.938|220168.862|115.513 +637657.823|220182.099|115.251 +637634.274|220204.167|113.852 +637610.859|220226.112|112.633 +637606.260|220230.428|112.752 +637601.648|220234.756|112.807 +637597.024|220239.094|112.804 +637592.284|220243.526|112.084 +637583.092|220252.145|111.914 +637578.383|220256.556|111.459 +637569.117|220265.240|110.640 +637555.196|220278.279|109.649 +637550.566|220282.616|109.225 +637536.546|220295.735|107.052 +637522.942|220308.488|106.686 +637518.379|220312.764|106.540 +637509.086|220321.457|104.781 +637495.172|220334.469|102.261 +637486.363|220342.738|102.632 +637482.062|220346.783|103.254 +637477.393|220351.145|102.197 +637472.961|220355.302|102.154 +637468.545|220359.441|101.941 +637464.113|220363.599|101.947 +637459.721|220367.717|101.910 +637455.335|220371.831|101.913 +637450.909|220375.980|101.733 +637446.535|220380.082|101.846 +637437.927|220388.163|102.312 +637424.537|220400.696|100.471 +637420.197|220404.762|100.362 +637412.068|220412.422|102.626 +637403.473|220420.484|102.639 +637386.480|220436.419|102.611 +637378.061|220444.319|102.687 +637369.689|220452.174|102.815 +637365.473|220456.124|102.770 +637361.316|220460.025|102.754 +637357.192|220463.896|102.919 +637353.126|220467.709|103.135 +637333.027|220486.589|105.165 +637328.958|220490.405|105.193 +637324.965|220494.151|105.351 +637320.936|220497.930|105.363 +637316.934|220501.686|105.507 +637312.834|220505.526|105.242 +637308.991|220509.135|105.885 +637301.252|220516.407|106.955 +637297.369|220520.056|107.442 +637293.473|220523.710|107.677 +637278.395|220537.890|110.362 +637270.948|220544.891|111.709 +637267.114|220548.488|111.831 +637259.625|220555.519|112.627 +637255.916|220559.006|113.291 +637252.307|220562.399|113.944 +637244.973|220569.290|114.803 +637241.224|220572.805|114.922 +637237.457|220576.337|114.968 +637233.897|220579.684|115.657 +637226.643|220586.493|116.306 +637219.440|220593.254|116.781 +637197.781|220613.563|117.235 +637190.746|220620.165|117.501 +637183.666|220626.800|117.437 +637180.106|220630.135|117.254 +637169.596|220639.980|117.001 +637380.689|220439.875|102.736 +637389.196|220431.880|103.166 +637397.651|220423.922|102.937 +637414.671|220407.901|102.443 +637418.612|220404.165|100.624 +637422.815|220400.205|100.346 +637436.211|220387.629|102.059 +637440.576|220383.523|102.163 +637444.898|220379.457|102.069 +637449.275|220375.340|102.008 +637453.542|220371.313|101.407 +637462.485|220362.913|102.099 +637466.856|220358.795|101.819 +637471.376|220354.552|102.337 +637475.893|220350.312|102.870 +637489.125|220337.855|102.328 +637498.159|220329.363|102.767 +637507.489|220320.619|104.656 +637525.868|220303.358|106.656 +637530.431|220299.069|106.891 +637534.982|220294.790|107.089 +637539.652|220290.407|107.704 +637544.330|220286.018|108.396 +637548.991|220281.644|109.009 +637567.538|220264.209|110.585 +637576.913|220255.398|111.545 +637590.937|220242.212|112.459 +637600.258|220233.440|112.694 +637604.851|220229.112|112.578 +637614.108|220220.391|112.188 +637618.775|220215.996|111.935 +637623.508|220211.546|112.502 +637628.342|220207.010|113.459 +637637.867|220198.058|114.456 +637642.625|220193.587|114.980 +637656.802|220180.246|115.294 +637680.494|220157.947|115.431 +637690.156|220148.870|116.623 +637694.990|220144.328|117.306 +637723.971|220117.085|119.884 +637728.808|220112.534|120.012 +637733.611|220108.017|120.262 +637738.461|220103.457|120.552 +637748.153|220094.341|121.143 +637753.003|220089.784|121.512 +637757.895|220085.182|121.871 +637762.723|220080.643|122.097 +637767.603|220076.053|122.387 +637772.425|220071.517|122.630 +637777.338|220066.894|122.862 +637782.139|220062.376|122.935 +637787.019|220057.783|122.880 +637791.831|220053.248|122.673 +637796.678|220048.682|122.316 +637801.527|220044.113|122.018 +637806.349|220039.574|121.926 +637811.208|220034.996|121.771 +637816.020|220030.458|121.116 +637820.894|220025.858|120.652 +637825.695|220021.338|120.399 +637830.599|220016.720|120.247 +637835.421|220012.173|119.759 +637840.255|220007.607|118.872 +637845.114|220003.026|118.247 +637849.987|219998.429|117.796 +637854.852|219993.842|117.263 +637859.677|219989.285|116.245 +637864.599|219984.646|115.824 +637869.412|219980.108|115.248 +637874.316|219975.481|114.614 +637879.196|219970.872|113.688 +637884.046|219966.297|112.965 +637889.011|219961.615|112.511 +637898.801|219952.389|111.639 +637903.791|219947.689|111.539 +637908.762|219943.013|111.901 +637913.782|219938.295|112.279 +637918.692|219933.680|112.481 +637923.688|219928.980|112.581 +637928.662|219924.296|112.374 +637933.597|219919.647|112.337 +637938.587|219914.954|112.377 +637943.564|219910.269|112.285 +637948.542|219905.584|112.197 +637963.465|219891.536|111.886 +637968.436|219886.857|111.731 +637973.419|219882.166|111.883 +637978.488|219877.411|112.767 +637983.386|219872.778|111.267 +637988.422|219868.045|111.490 +637993.433|219863.326|111.313 +637998.398|219858.651|111.173 +638003.439|219853.914|111.661 +638008.484|219849.178|112.246 +638013.473|219844.490|112.798 +638018.518|219839.753|113.541 +638023.602|219834.980|114.145 +638028.585|219830.298|114.648 +638033.657|219825.531|115.065 +638038.674|219820.813|115.349 +638043.676|219816.104|115.187 +638048.739|219811.346|115.507 +638053.750|219806.633|115.666 +638058.791|219801.906|116.888 +638063.848|219797.151|117.202 +638068.904|219792.399|117.464 +638073.915|219787.690|117.851 +638078.969|219782.938|118.208 +638084.019|219778.189|118.318 +638089.021|219773.483|118.528 +638094.066|219768.738|118.494 +638099.110|219763.992|118.555 +638104.106|219759.289|118.506 +638109.144|219754.543|118.293 +638114.188|219749.797|118.199 +638119.230|219745.049|117.991 +638129.316|219735.557|117.985 +638134.311|219730.851|117.626 +638139.353|219726.102|117.257 +638144.440|219721.308|116.897 +638149.439|219716.598|116.574 +638154.483|219711.850|116.269 +638159.528|219707.098|116.123 +638164.575|219702.349|116.233 +638169.623|219697.603|116.431 +638174.710|219692.821|116.818 +638179.708|219688.124|117.141 +638184.750|219683.387|117.790 +638189.840|219678.608|118.433 +638199.874|219669.181|119.314 +638204.964|219664.395|119.585 +638214.992|219654.974|120.622 +638220.027|219650.246|121.317 +638225.066|219645.510|121.640 +638235.149|219636.024|121.896 +638240.141|219631.330|122.115 +638245.183|219626.588|122.283 +638250.224|219621.851|122.548 +638255.220|219617.148|122.627 +638260.218|219612.445|122.649 +638265.266|219607.693|122.609 +638270.274|219602.981|122.414 +638275.282|219598.260|122.143 +638280.338|219593.502|121.981 +638285.288|219588.844|122.149 +638290.354|219584.071|121.765 +638295.374|219579.347|121.445 +638300.342|219574.674|121.259 +638305.362|219569.953|121.027 +638310.379|219565.231|120.838 +638315.403|219560.507|120.643 +638320.377|219555.828|120.479 +638325.400|219551.104|120.320 +638330.377|219546.422|120.162 +638335.355|219541.737|119.988 +638340.347|219537.037|119.585 +638345.337|219532.343|119.290 +638350.324|219527.653|119.098 +638355.261|219523.007|118.951 +638360.263|219518.301|118.570 +638365.222|219513.632|118.125 +638370.218|219508.932|117.872 +638375.171|219504.271|117.659 +638380.121|219499.614|117.476 +638385.089|219494.938|117.043 +638390.048|219490.272|116.781 +638394.965|219485.645|116.492 +638399.912|219480.997|116.565 +638404.764|219476.434|116.568 +638409.708|219471.789|116.720 +638414.554|219467.235|116.897 +638419.452|219462.636|117.056 +638424.347|219458.033|117.239 +638420.022|219459.057|117.031 +638415.024|219463.745|116.854 +638410.074|219468.384|116.687 +638405.078|219473.066|116.510 +638400.079|219477.751|116.391 +638395.120|219482.399|116.400 +638390.106|219487.102|116.605 +638385.135|219491.768|116.934 +638380.109|219496.487|117.394 +638370.099|219505.878|117.735 +638365.091|219510.578|118.028 +638360.077|219515.284|118.464 +638355.069|219519.987|118.857 +638350.077|219524.672|119.000 +638345.035|219529.399|119.177 +638340.040|219534.087|119.436 +638335.041|219538.781|119.811 +638330.048|219543.466|120.098 +638325.019|219548.184|120.213 +638320.036|219552.856|120.372 +638315.055|219557.529|120.497 +638310.029|219562.244|120.671 +638305.045|219566.920|120.896 +638300.065|219571.593|121.161 +638295.042|219576.305|121.353 +638290.019|219581.020|121.609 +638285.038|219585.696|122.054 +638280.034|219590.387|121.817 +638275.062|219595.050|122.012 +638270.045|219599.756|122.249 +638265.028|219604.465|122.539 +638260.066|219609.120|122.579 +638255.058|219613.811|122.512 +638250.053|219618.507|122.536 +638245.094|219623.153|122.432 +638235.094|219632.519|121.893 +638230.141|219637.161|121.676 +638220.137|219646.537|121.439 +638215.135|219651.222|121.122 +638210.143|219655.894|120.405 +638205.144|219660.573|119.857 +638200.142|219665.255|119.424 +638195.140|219669.936|118.964 +638185.137|219679.300|117.970 +638180.132|219683.979|117.254 +638175.176|219688.624|116.876 +638170.122|219693.354|116.455 +638165.121|219698.039|116.160 +638160.158|219702.690|116.050 +638155.105|219707.430|116.111 +638150.100|219712.127|116.327 +638145.141|219716.778|116.583 +638140.136|219721.475|116.845 +638135.134|219726.169|117.299 +638130.133|219730.866|117.534 +638125.131|219735.560|117.872 +638120.126|219740.251|117.952 +638115.121|219744.945|117.857 +638110.119|219749.636|118.089 +638100.113|219759.021|118.327 +638095.108|219763.715|118.351 +638090.152|219768.363|118.345 +638085.144|219773.054|118.327 +638080.136|219777.751|118.159 +638075.125|219782.445|118.068 +638070.108|219787.141|117.656 +638065.094|219791.842|117.382 +638060.123|219796.496|117.120 +638055.097|219801.202|116.516 +638050.052|219805.914|115.544 +638045.081|219810.572|115.312 +638040.058|219815.278|115.077 +638035.084|219819.938|114.898 +638030.054|219824.644|114.575 +638025.025|219829.353|114.267 +638015.052|219838.692|113.493 +638010.002|219843.417|112.822 +638004.997|219848.096|112.200 +637999.995|219852.777|111.621 +637994.938|219857.505|111.011 +637990.013|219862.125|111.124 +637980.079|219871.443|111.767 +637975.068|219876.134|111.210 +637970.091|219880.801|111.365 +637965.159|219885.424|111.475 +637960.176|219890.097|111.578 +637945.271|219904.069|111.828 +637940.379|219908.656|111.868 +637935.392|219913.332|111.990 +637930.446|219917.968|111.993 +637925.511|219922.595|112.182 +637920.573|219927.225|112.362 +637915.666|219931.824|112.270 +637910.704|219936.475|112.106 +637905.717|219941.139|111.642 +637900.795|219945.751|111.438 +637895.842|219950.393|111.505 +637890.959|219954.977|111.898 +637886.094|219959.546|112.499 +637881.220|219964.121|113.011 +637876.356|219968.690|113.642 +637871.515|219973.241|114.602 +637866.660|219977.800|115.349 +637861.771|219982.388|115.684 +637856.995|219986.874|116.214 +637852.148|219991.431|117.065 +637847.342|219995.945|117.821 +637842.495|220000.493|118.138 +637837.667|220005.025|118.656 +637832.854|220009.545|119.345 +637828.054|220014.059|120.174 +637823.256|220018.561|120.497 +637818.386|220023.127|120.591 +637813.570|220027.641|120.792 +637808.787|220032.131|121.332 +637804.005|220036.624|121.868 +637799.189|220041.141|122.103 +637794.413|220045.618|122.252 +637789.591|220050.142|122.423 +637784.812|220054.622|122.591 +637780.020|220059.115|122.655 +637775.211|220063.620|122.548 +637770.389|220068.137|122.371 +637765.554|220072.663|122.109 +637760.717|220077.193|121.829 +637755.926|220081.679|121.554 +637751.076|220086.221|121.222 +637746.270|220090.717|120.893 +637741.463|220095.219|120.576 +637736.662|220099.715|120.332 +637731.853|220104.216|120.043 +637727.092|220108.676|119.781 +637722.285|220113.174|119.592 +637717.542|220117.622|119.525 +637712.763|220122.096|119.192 +637683.947|220149.053|115.943 +637679.150|220153.539|115.291 +637674.471|220157.922|115.209 +637669.731|220162.363|115.068 +637665.007|220166.792|115.044 +637632.204|220197.528|113.974 +637627.495|220201.935|113.557 +637622.704|220206.413|112.606 +637617.924|220210.881|111.780 +637608.707|220219.519|111.847 +637590.273|220236.808|112.170 +637580.964|220245.525|111.557 +637567.081|220258.525|110.545 +637543.958|220280.172|108.747 +637539.274|220284.549|107.747 +637534.601|220288.919|106.839 +637529.971|220293.254|106.519 +637525.478|220297.463|106.439 +637493.316|220327.553|102.459 +637488.820|220331.765|102.261 +637484.348|220335.956|102.221 +637475.451|220344.293|102.166 +637471.126|220348.362|102.956 +637461.860|220357.009|100.520 +637444.471|220373.331|101.916 +637440.101|220377.431|102.053 +637435.626|220381.615|101.410 +637431.399|220385.587|102.053 +637405.643|220409.745|103.172 +637392.792|220421.794|103.330 +637384.215|220429.829|103.065 +637367.247|220445.727|102.648 +637363.023|220449.687|102.550 +637358.841|220453.606|102.666 +637354.735|220457.459|102.916 +637350.636|220461.306|103.193 +637346.566|220465.125|103.632 +637342.537|220468.910|104.016 +637338.474|220472.720|104.272 +637334.396|220476.549|104.467 +637330.363|220480.334|104.894 +637326.358|220484.096|105.211 +637322.295|220487.906|105.293 +637310.222|220499.235|105.888 +637306.144|220503.057|105.732 +637302.242|220506.721|106.132 +637298.268|220510.455|106.442 +637294.366|220514.121|106.851 +637290.538|220517.718|107.372 +637279.077|220528.487|108.863 +637275.295|220532.041|109.615 +637271.473|220535.631|109.987 +637267.839|220539.054|110.932 +637260.192|220546.232|111.493 +637252.843|220553.139|112.676 +637249.155|220556.608|113.227 +637245.473|220560.067|113.590 +637241.806|220563.511|114.245 +637238.182|220566.919|114.648 +637234.464|220570.406|114.907 +637230.861|220573.792|115.422 +637223.521|220580.681|115.943 +637216.368|220587.399|116.611 +637209.132|220594.193|117.205 +637205.566|220597.536|117.318 +637201.975|220600.907|117.534 +637198.412|220604.248|117.674 +637187.668|220614.325|117.732 +637184.138|220617.629|117.647 +637180.593|220620.954|117.705 +637177.003|220624.316|117.397 +637173.513|220627.590|117.488 +637166.365|220634.283|116.870 +637162.857|220637.566|116.531 +637367.006|220443.490|102.925 +637375.465|220435.544|103.041 +637392.390|220419.633|102.803 +637405.402|220407.417|103.532 +637426.811|220387.288|102.629 +637435.343|220379.253|101.553 +637439.829|220375.044|102.032 +637448.376|220366.997|100.837 +637452.768|220362.870|100.874 +637470.904|220345.859|102.919 +637475.235|220341.778|102.200 +637479.652|220337.630|102.212 +637484.141|220333.408|102.111 +637488.643|220329.181|102.075 +637493.136|220324.959|102.309 +637507.096|220311.880|104.675 +637530.126|220290.270|106.622 +637534.769|220285.914|107.058 +637539.548|220281.440|108.040 +637548.905|220272.664|109.216 +637553.584|220268.275|109.689 +637558.232|220263.914|109.999 +637567.550|220255.166|110.518 +637572.180|220250.819|110.801 +637586.256|220237.615|112.008 +637595.649|220228.795|112.368 +637609.527|220215.743|111.685 +637618.970|220206.876|111.929 +637623.752|220202.396|112.843 +637628.541|220197.906|113.496 +637633.341|220193.404|113.922 +637638.084|220188.954|114.319 +637642.918|220184.425|115.032 +637652.342|220175.564|114.840 +637657.052|220171.138|114.733 +637666.543|220162.220|114.776 +637671.316|220157.736|114.858 +637676.096|220153.250|114.995 +637680.920|220148.723|115.526 +637690.607|220139.640|116.550 +637705.213|220125.943|118.406 +637719.731|220112.318|119.424 +637724.577|220107.770|119.607 +637729.426|220103.217|119.854 +637734.273|220098.666|120.091 +637739.116|220094.121|120.314 +637743.962|220089.574|120.613 +637748.809|220085.023|120.951 +637753.698|220080.436|121.253 +637758.535|220075.894|121.551 +637763.418|220071.313|121.847 +637768.246|220066.781|122.115 +637773.156|220062.169|122.295 +637778.009|220057.612|122.399 +637782.849|220053.065|122.420 +637787.677|220048.526|122.320 +637792.548|220043.948|122.213 +637797.424|220039.367|122.158 +637802.246|220034.829|121.597 +637807.020|220030.336|121.009 +637811.909|220025.736|120.658 +637816.779|220021.158|120.613 +637821.641|220016.589|120.500 +637826.496|220012.017|119.820 +637831.294|220007.497|119.052 +637836.165|220002.913|118.531 +637840.996|219998.368|118.125 +637845.869|219993.784|117.665 +637850.707|219989.224|116.797 +637855.556|219984.658|116.044 +637860.430|219980.071|115.629 +637865.313|219975.478|115.288 +637870.165|219970.909|114.584 +637875.027|219966.325|113.401 +637879.897|219961.740|112.944 +637884.811|219957.117|112.435 +637889.654|219952.554|111.612 +637894.589|219947.915|111.353 +637899.536|219943.263|111.341 +637904.498|219938.606|111.493 +637909.475|219933.936|111.947 +637914.389|219929.322|112.167 +637919.372|219924.637|112.087 +637924.234|219920.059|111.584 +637929.229|219915.368|111.682 +637934.164|219910.729|111.624 +637939.102|219906.087|111.612 +637944.079|219901.411|111.459 +637958.972|219887.412|111.331 +637963.897|219882.782|111.237 +637968.911|219878.067|110.993 +637973.828|219873.443|110.697 +637978.820|219868.755|111.008 +637983.853|219864.027|111.200 +637988.803|219859.370|110.694 +637993.789|219854.688|110.944 +638003.793|219845.307|112.279 +638008.834|219840.579|112.877 +638013.821|219835.897|113.383 +638018.801|219831.222|113.752 +638023.830|219826.506|114.130 +638028.805|219821.834|114.416 +638033.825|219817.122|114.745 +638038.845|219812.409|115.044 +638043.810|219807.746|115.227 +638048.836|219803.031|115.876 +638053.862|219798.319|116.525 +638058.837|219793.652|117.187 +638063.845|219788.952|117.348 +638068.852|219784.249|117.662 +638073.815|219779.592|118.013 +638078.819|219774.892|118.150 +638083.821|219770.192|118.257 +638088.817|219765.495|118.238 +638093.816|219760.798|118.226 +638098.814|219756.101|118.196 +638103.810|219751.407|118.165 +638108.803|219746.710|117.781 +638113.798|219742.010|117.668 +638118.797|219737.316|117.702 +638123.845|219732.573|117.760 +638128.791|219727.919|117.467 +638133.833|219723.176|117.150 +638138.829|219718.476|116.748 +638143.827|219713.776|116.495 +638148.826|219709.073|116.278 +638153.870|219704.327|115.964 +638158.872|219699.630|116.059 +638163.874|219694.930|116.102 +638168.915|219690.200|116.492 +638173.865|219685.551|116.858 +638178.913|219680.815|117.126 +638183.909|219676.130|117.882 +638193.946|219666.715|118.967 +638198.938|219662.030|119.509 +638203.934|219657.342|119.875 +638208.924|219652.663|120.536 +638213.959|219647.942|121.189 +638228.943|219633.869|121.679 +638233.939|219629.179|121.844 +638238.980|219624.442|122.057 +638243.970|219619.757|122.414 +638248.919|219615.109|122.536 +638253.967|219610.366|122.536 +638258.966|219605.669|122.585 +638263.971|219600.966|122.481 +638268.975|219596.260|122.359 +638273.992|219591.542|121.954 +638279.000|219586.830|121.795 +638284.002|219582.136|121.984 +638288.973|219577.454|121.615 +638294.039|219572.687|121.335 +638299.059|219567.969|121.116 +638304.034|219563.287|120.826 +638309.054|219558.562|120.613 +638314.077|219553.838|120.460 +638319.051|219549.159|120.293 +638324.071|219544.438|120.229 +638329.055|219539.753|120.030 +638334.084|219535.020|119.799 +638339.076|219530.323|119.451 +638344.063|219525.629|119.211 +638349.053|219520.938|119.025 +638354.088|219516.201|118.845 +638359.044|219511.538|118.467 +638364.049|219506.826|118.040 +638369.051|219502.119|117.744 +638374.040|219497.428|117.738 +638379.051|219492.713|117.382 +638384.019|219488.038|116.986 +638389.039|219483.310|116.528 +638393.989|219478.656|116.483 +638398.942|219473.998|116.443 +638403.944|219469.298|116.422 +638408.839|219464.699|116.623 +638413.786|219460.051|116.739 +638408.830|219461.063|116.571 +638403.783|219465.799|116.434 +638398.827|219470.448|116.376 +638393.773|219475.190|116.412 +638388.765|219479.890|116.467 +638383.742|219484.606|116.821 +638378.716|219489.333|117.312 +638373.656|219494.085|117.574 +638368.654|219498.779|117.680 +638363.601|219503.525|117.936 +638358.587|219508.234|118.357 +638353.533|219512.986|118.732 +638348.486|219517.722|118.973 +638343.493|219522.410|119.110 +638338.449|219527.150|119.406 +638333.404|219531.883|119.698 +638328.411|219536.574|119.988 +638323.379|219541.298|120.152 +638318.304|219546.062|120.229 +638313.324|219550.738|120.351 +638308.295|219555.459|120.524 +638303.265|219560.181|120.738 +638298.233|219564.905|121.085 +638293.164|219569.666|121.253 +638288.135|219574.391|121.591 +638283.112|219579.109|121.920 +638278.104|219583.806|121.737 +638273.087|219588.512|121.856 +638268.061|219593.236|122.350 +638263.004|219597.985|122.426 +638257.993|219602.688|122.536 +638252.986|219607.385|122.512 +638247.929|219612.128|122.545 +638242.973|219616.779|122.432 +638237.928|219621.507|122.051 +638232.927|219626.195|121.832 +638227.925|219630.888|121.679 +638202.831|219654.407|120.015 +638197.878|219659.046|119.503 +638192.830|219663.776|119.046 +638187.828|219668.461|118.540 +638177.825|219677.828|117.123 +638172.817|219682.519|116.729 +638167.812|219687.210|116.373 +638162.432|219692.254|116.062 +638157.754|219696.640|115.961 +638152.795|219701.294|115.946 +638147.741|219706.037|116.071 +638142.736|219710.737|116.336 +638137.728|219715.437|116.544 +638132.726|219720.137|116.976 +638127.725|219724.837|117.199 +638122.720|219729.534|117.440 +638117.718|219734.231|117.592 +638112.759|219738.882|117.638 +638107.705|219743.625|117.522 +638102.707|219748.322|117.940 +638097.751|219752.973|118.110 +638092.746|219757.667|118.129 +638087.741|219762.364|118.119 +638082.782|219767.019|118.104 +638077.777|219771.716|118.065 +638072.766|219776.412|117.955 +638067.801|219781.070|117.671 +638062.784|219785.770|117.415 +638057.819|219790.427|117.260 +638052.789|219795.136|116.641 +638047.766|219799.843|116.184 +638042.789|219804.509|115.839 +638037.796|219809.182|115.004 +638032.770|219813.891|114.742 +638027.832|219818.515|114.325 +638022.797|219823.230|113.931 +638017.817|219827.896|113.706 +638012.824|219832.572|113.291 +638007.828|219837.248|112.804 +638002.830|219841.929|112.282 +637997.831|219846.608|111.837 +637992.802|219851.308|110.819 +637987.855|219855.941|110.551 +637982.893|219860.601|111.024 +637977.882|219865.292|110.460 +637972.907|219869.959|110.728 +637967.915|219874.641|110.576 +637962.986|219879.264|110.832 +637958.048|219883.894|110.914 +637953.046|219888.582|110.694 +637948.100|219893.221|110.615 +637943.177|219897.842|111.008 +637938.239|219902.472|111.164 +637933.250|219907.154|111.225 +637928.306|219911.790|111.319 +637923.408|219916.380|111.408 +637918.436|219921.050|111.807 +637913.541|219925.643|111.932 +637908.570|219930.300|111.664 +637903.590|219934.964|111.319 +637898.670|219939.572|111.197 +637893.708|219944.227|111.133 +637888.807|219948.823|111.289 +637883.942|219953.395|111.969 +637879.035|219958.007|112.676 +637874.158|219962.588|113.166 +637869.299|219967.154|113.907 +637864.511|219971.656|114.943 +637859.579|219976.289|115.358 +637854.739|219980.833|115.705 +637849.865|219985.411|116.272 +637845.059|219989.928|117.053 +637840.258|219994.442|117.918 +637835.415|219998.990|118.275 +637830.572|220003.538|118.644 +637825.692|220008.119|119.168 +637820.928|220012.596|119.893 +637816.106|220017.126|120.536 +637811.290|220021.646|120.704 +637806.407|220026.224|120.725 +637801.594|220030.741|120.978 +637796.815|220035.228|121.612 +637792.029|220039.727|122.155 +637787.198|220044.256|122.274 +637782.358|220048.795|122.329 +637777.561|220053.293|122.329 +637772.705|220057.844|122.271 +637767.883|220062.364|122.100 +637763.046|220066.894|121.814 +637758.212|220071.423|121.597 +637753.375|220075.952|121.369 +637748.528|220080.494|121.085 +637738.863|220089.546|120.408 +637734.056|220094.048|120.131 +637710.041|220116.546|118.881 +637700.333|220125.626|117.531 +637690.634|220134.693|116.004 +637676.327|220148.096|115.056 +637671.566|220152.552|114.739 +637662.133|220161.388|114.468 +637657.399|220165.826|114.404 +637652.690|220170.239|114.568 +637633.887|220187.851|114.221 +637619.634|220201.180|112.474 +637614.937|220205.569|111.892 +637610.185|220210.013|111.274 +637605.568|220214.344|111.597 +637600.953|220218.669|111.618 +637577.736|220240.410|111.127 +637563.825|220253.432|110.283 +637554.587|220262.079|109.759 +637545.327|220270.741|108.899 +637540.682|220275.088|108.405 +637517.441|220296.808|105.138 +637494.477|220318.281|102.407 +637485.498|220326.693|102.352 +637476.634|220335.002|102.730 +637462.921|220347.822|100.919 +637449.592|220360.301|100.285 +637445.194|220364.419|100.258 +637440.741|220368.588|100.240 +637389.360|220416.765|103.288 +637385.017|220420.825|102.776 +637372.154|220432.868|102.370 +637359.505|220444.718|102.645 +637355.387|220448.580|102.818 +637351.190|220452.512|102.882 +637347.139|220456.313|103.401 +637343.009|220460.187|103.559 +637338.943|220464.000|104.031 +637334.896|220467.795|104.370 +637330.863|220471.577|104.775 +637326.846|220475.348|105.260 +637322.734|220479.197|105.333 +637314.812|220486.631|106.397 +637306.744|220494.187|106.644 +637302.632|220498.037|106.555 +637294.595|220505.563|106.567 +637290.581|220509.321|106.503 +637286.722|220512.939|106.897 +637282.848|220516.572|107.457 +637279.068|220520.120|108.201 +637275.380|220523.589|109.116 +637271.515|220527.213|109.512 +637260.149|220537.875|111.075 +637256.333|220541.450|111.292 +637248.811|220548.503|111.981 +637226.792|220569.159|115.010 +637219.586|220575.920|116.068 +637215.969|220579.312|116.333 +637212.354|220582.702|116.833 +637208.769|220586.057|117.062 +637187.226|220606.235|117.827 +637183.647|220609.588|117.933 +637180.182|220612.831|118.092 +637176.610|220616.172|117.842 +637173.083|220619.473|117.979 +637169.599|220622.731|117.891 +637159.004|220632.637|117.165 +637155.432|220635.975|116.793 +637374.602|220428.009|102.514 +637439.070|220367.354|101.218 +637447.812|220359.130|100.795 +637452.219|220354.982|100.676 +637465.494|220342.497|100.688 +637474.683|220333.878|102.072 +637483.605|220325.489|102.099 +637488.098|220321.262|102.053 +637497.303|220312.621|102.940 +637501.935|220308.274|103.745 +637511.211|220299.569|104.620 +637515.837|220295.226|105.178 +637520.480|220290.870|105.854 +637525.134|220286.499|106.342 +637529.813|220282.113|106.982 +637543.846|220268.946|108.802 +637562.448|220251.478|110.121 +637571.793|220242.700|110.597 +637590.553|220225.076|111.652 +637604.464|220211.994|111.133 +637609.161|220207.574|111.075 +637618.775|220198.561|112.514 +637633.122|220185.095|114.078 +637661.605|220158.322|114.312 +637666.382|220153.835|114.404 +637671.170|220149.333|114.623 +637690.540|220131.152|116.251 +637710.047|220112.851|118.717 +637714.930|220108.267|119.171 +637748.925|220076.339|121.213 +637753.811|220071.752|121.512 +637758.684|220067.174|121.731 +637763.552|220062.602|121.908 +637768.420|220058.027|122.143 +637773.327|220053.418|122.307 +637778.173|220048.865|122.359 +637783.059|220044.268|122.387 +637787.921|220039.696|122.173 +637792.743|220035.155|121.588 +637797.562|220030.613|120.963 +637802.420|220026.044|120.768 +637807.349|220021.411|120.814 +637812.180|220016.864|120.369 +637817.038|220012.285|119.698 +637821.903|220007.704|119.101 +637826.783|220003.111|118.683 +637831.672|219998.509|118.391 +637836.543|219993.921|117.876 +637841.383|219989.361|117.022 +637846.232|219984.789|116.281 +637851.152|219980.156|115.821 +637856.025|219975.569|115.364 +637860.951|219970.933|114.977 +637865.843|219966.322|114.184 +637870.677|219961.762|113.255 +637880.501|219952.511|112.167 +637885.384|219947.906|111.255 +637890.328|219943.257|111.112 +637895.275|219938.606|111.066 +637900.273|219933.906|111.106 +637905.239|219929.243|111.365 +637910.207|219924.579|111.648 +637915.193|219919.894|111.566 +637920.122|219915.258|111.307 +637925.099|219910.580|111.112 +637930.083|219905.895|111.021 +637935.018|219901.259|110.905 +637939.995|219896.577|110.749 +637944.963|219891.904|110.484 +637949.944|219887.226|110.365 +637954.939|219882.532|110.612 +637959.926|219877.847|110.691 +637964.903|219873.171|110.585 +637969.923|219868.453|110.472 +637974.895|219863.781|110.265 +637979.960|219859.032|111.133 +637984.868|219854.414|110.643 +637989.900|219849.690|110.826 +637994.947|219844.956|111.405 +637999.952|219840.262|112.170 +638004.997|219835.535|112.755 +638009.983|219830.856|113.179 +638015.019|219826.132|113.675 +638020.045|219821.413|114.035 +638025.025|219816.741|114.440 +638030.045|219812.028|114.706 +638035.077|219807.310|115.297 +638040.110|219802.592|116.053 +638045.075|219797.931|116.196 +638050.092|219793.222|116.595 +638055.118|219788.510|117.345 +638060.123|219783.807|117.388 +638065.134|219779.104|117.680 +638070.096|219774.447|117.988 +638075.098|219769.750|117.982 +638080.148|219765.004|118.037 +638085.098|219760.353|118.007 +638090.149|219755.610|118.055 +638095.145|219750.913|117.988 +638100.088|219746.259|117.470 +638105.136|219741.516|117.458 +638110.138|219736.819|117.629 +638115.136|219732.122|117.437 +638120.135|219727.422|117.312 +638125.131|219722.722|117.059 +638130.130|219718.025|116.891 +638135.174|219713.279|116.519 +638140.176|219708.576|116.202 +638145.174|219703.873|115.925 +638150.176|219699.173|115.839 +638155.178|219694.473|115.836 +638160.177|219689.779|115.910 +638165.224|219685.039|116.181 +638170.177|219680.388|116.446 +638175.176|219675.700|117.077 +638185.173|219666.331|118.345 +638190.166|219661.646|118.933 +638195.211|219656.915|119.393 +638200.154|219652.279|120.067 +638230.125|219624.146|121.792 +638235.121|219619.455|121.984 +638240.068|219614.813|122.313 +638245.064|219610.119|122.463 +638250.066|219605.422|122.487 +638255.022|219600.765|122.475 +638260.023|219596.065|122.463 +638265.028|219591.359|122.380 +638270.003|219586.677|121.798 +638275.010|219581.974|121.801 +638280.024|219577.259|121.558 +638284.980|219572.605|121.707 +638290.004|219567.877|121.317 +638294.975|219563.204|121.103 +638299.949|219558.526|120.844 +638304.975|219553.801|120.530 +638309.904|219549.168|120.369 +638314.927|219544.447|120.229 +638319.901|219539.771|120.116 +638324.830|219535.141|120.073 +638329.814|219530.454|119.835 +638334.806|219525.757|119.454 +638339.799|219521.066|119.186 +638344.785|219516.378|119.025 +638349.729|219511.730|118.817 +638354.676|219507.078|118.558 +638359.684|219502.366|118.141 +638364.637|219497.709|117.854 +638369.593|219493.052|117.613 +638374.537|219488.403|117.571 +638379.560|219483.679|117.053 +638384.534|219478.994|116.556 +638389.445|219474.379|116.403 +638394.447|219469.679|116.348 +638399.354|219465.071|116.342 +638404.310|219460.414|116.324 +638401.795|219458.777|116.086 +638396.787|219463.465|116.001 +638391.758|219468.183|116.355 +638386.699|219472.926|116.412 +638381.685|219477.626|116.589 +638376.600|219482.399|117.138 +638371.529|219487.160|117.577 +638366.524|219491.848|117.680 +638361.467|219496.593|117.946 +638356.407|219501.339|118.272 +638351.348|219506.085|118.644 +638346.297|219510.821|118.869 +638341.204|219515.595|119.049 +638336.163|219520.322|119.217 +638331.115|219525.059|119.549 +638326.025|219529.832|119.817 +638320.987|219534.556|120.018 +638315.909|219539.317|120.091 +638310.876|219544.033|120.192 +638305.844|219548.751|120.375 +638300.763|219553.515|120.610 +638295.728|219558.239|121.006 +638290.656|219562.994|121.137 +638285.578|219567.758|121.487 +638280.552|219572.470|121.704 +638275.541|219577.164|121.564 +638270.469|219581.919|121.811 +638265.440|219586.638|122.307 +638260.380|219591.380|122.316 +638255.320|219596.123|122.377 +638250.309|219600.817|122.371 +638245.298|219605.514|122.414 +638240.242|219610.253|122.432 +638235.240|219614.932|122.009 +638230.189|219619.660|121.762 +638225.136|219624.399|121.762 +638205.031|219643.215|120.411 +638199.978|219647.945|120.219 +638194.930|219652.666|119.558 +638189.928|219657.345|118.982 +638184.924|219662.024|118.430 +638179.870|219666.748|117.812 +638164.755|219680.888|116.156 +638159.790|219685.533|115.843 +638154.736|219690.267|115.635 +638149.728|219694.964|115.736 +638144.717|219699.658|115.772 +638139.661|219704.397|115.903 +638134.653|219709.094|116.190 +638129.691|219713.749|116.510 +638124.686|219718.442|116.778 +638119.678|219723.139|117.053 +638114.673|219727.830|117.187 +638109.665|219732.524|117.287 +638104.706|219737.176|117.424 +638099.695|219741.866|117.318 +638094.687|219746.560|117.303 +638089.734|219751.209|117.815 +638084.775|219755.857|117.839 +638079.764|219760.551|117.848 +638074.805|219765.199|117.894 +638069.843|219769.847|117.967 +638064.829|219774.544|117.796 +638059.903|219779.153|117.452 +638054.893|219783.850|117.385 +638049.912|219788.507|116.909 +638044.929|219793.167|116.348 +638039.957|219797.825|116.199 +638034.974|219802.488|115.782 +638029.987|219807.152|115.279 +638025.013|219811.815|115.102 +638020.072|219816.439|114.645 +638015.076|219821.115|114.053 +638010.087|219825.787|113.630 +638005.131|219830.423|112.941 +638000.132|219835.105|112.374 +637990.165|219844.432|111.149 +637985.200|219849.077|110.490 +637980.250|219853.713|110.195 +637975.279|219858.383|110.414 +637970.396|219862.964|110.545 +637965.449|219867.600|110.432 +637960.511|219872.230|110.460 +637955.567|219876.866|110.405 +637940.772|219890.737|110.185 +637935.844|219895.364|110.457 +637930.948|219899.957|110.542 +637926.011|219904.587|110.731 +637921.119|219909.181|110.847 +637916.181|219913.814|111.054 +637911.295|219918.401|111.319 +637906.382|219923.003|111.222 +637901.416|219927.661|111.042 +637896.494|219932.272|110.859 +637891.583|219936.878|110.841 +637886.682|219941.477|110.993 +637881.787|219946.071|111.231 +637876.944|219950.627|112.176 +637867.212|219959.771|113.441 +637862.405|219964.292|114.224 +637857.546|219968.861|114.913 +637852.694|219973.414|115.148 +637847.823|219977.992|115.715 +637842.986|219982.534|116.141 +637838.158|219987.069|116.690 +637833.312|219991.629|117.559 +637828.557|219996.101|118.366 +637823.656|220000.700|118.650 +637818.855|220005.208|118.961 +637814.012|220009.756|119.360 +637809.229|220014.248|119.930 +637804.410|220018.778|120.594 +637799.601|220023.292|120.866 +637794.767|220027.827|120.920 +637789.966|220032.335|121.308 +637785.181|220036.831|121.868 +637780.377|220041.342|122.246 +637775.598|220045.829|122.426 +637770.745|220050.376|122.377 +637765.923|220054.897|122.192 +637761.101|220059.414|122.033 +637756.218|220063.992|121.765 +637751.369|220068.533|121.414 +637746.498|220073.093|120.890 +637741.634|220077.647|120.454 +637736.824|220082.155|120.085 +637731.962|220086.706|119.759 +637727.128|220091.232|119.259 +637722.258|220095.795|118.881 +637712.653|220104.796|118.583 +637678.830|220136.455|114.739 +637669.301|220145.386|114.383 +637664.501|220149.885|114.123 +637645.631|220167.588|114.020 +637631.558|220180.788|113.962 +637626.864|220185.193|113.956 +637612.563|220198.583|111.895 +637607.753|220203.088|111.207 +637603.004|220207.532|110.649 +637570.458|220238.060|109.917 +637556.568|220251.082|109.250 +637551.990|220255.382|109.375 +637538.088|220268.406|108.305 +637528.846|220277.066|107.369 +637524.122|220281.485|106.476 +637491.783|220311.761|102.126 +637482.910|220320.094|102.636 +637460.196|220341.367|100.118 +637451.445|220349.587|100.724 +637420.971|220378.199|101.998 +637391.043|220406.310|103.672 +637386.651|220410.419|103.135 +637382.274|220414.516|102.437 +637373.715|220422.544|102.285 +637369.469|220426.528|102.282 +637361.084|220434.401|102.556 +637352.784|220442.195|102.809 +637348.721|220446.014|103.492 +637344.588|220449.894|103.611 +637336.398|220457.587|104.245 +637332.372|220461.376|104.888 +637320.207|220472.803|105.796 +637316.242|220476.530|106.293 +637312.285|220480.249|106.848 +637308.296|220484.001|107.247 +637296.198|220495.352|107.555 +637292.175|220499.125|107.649 +637284.058|220506.736|107.357 +637280.114|220510.436|107.384 +637276.182|220514.128|107.704 +637272.396|220517.691|108.427 +637268.480|220521.370|108.600 +637261.015|220528.392|110.097 +637257.101|220532.065|110.100 +637253.319|220535.619|110.448 +637249.640|220539.082|111.228 +637245.796|220542.687|111.350 +637238.426|220549.622|112.685 +637234.729|220553.096|112.999 +637230.995|220556.605|113.392 +637223.814|220563.362|114.922 +637220.178|220566.779|115.309 +637216.587|220570.156|115.879 +637202.085|220583.777|117.095 +637198.497|220587.149|117.522 +637194.809|220590.605|117.373 +637187.738|220597.247|118.055 +637184.080|220600.676|117.845 +637180.523|220604.016|118.031 +637176.927|220607.384|117.885 +637173.403|220610.694|118.013 +637169.889|220613.989|118.001 +637155.749|220627.245|117.519 +637152.283|220630.494|117.543 +637353.872|220438.753|102.837 +637358.045|220434.828|102.730 +637366.345|220427.022|102.322 +637370.521|220423.090|102.029 +637409.212|220386.736|102.937 +637426.409|220370.557|101.870 +637479.789|220320.411|103.590 +637488.439|220312.255|101.925 +637492.953|220308.015|102.011 +637497.595|220303.666|102.840 +637502.256|220299.295|103.522 +637516.185|220286.234|105.434 +637525.536|220277.468|106.936 +637534.839|220268.742|107.985 +637544.208|220259.948|108.954 +637548.850|220255.586|109.219 +637553.468|220251.249|109.338 +637562.728|220242.547|109.521 +637572.158|220233.699|110.554 +637586.149|220220.553|111.005 +637590.849|220216.139|111.213 +637595.549|220211.717|111.142 +637609.618|220198.497|111.459 +637633.500|220176.085|114.023 +637647.661|220162.772|113.849 +637661.861|220149.415|113.453 +637676.309|220135.849|114.352 +637686.087|220126.680|115.736 +637695.834|220117.536|117.019 +637710.395|220103.872|118.302 +637715.305|220099.263|119.012 +637724.946|220090.202|118.988 +637744.474|220071.868|120.552 +637749.330|220067.311|121.000 +637754.268|220062.675|121.356 +637759.166|220058.079|121.807 +637764.046|220053.498|122.128 +637768.907|220048.929|122.307 +637773.790|220044.338|122.271 +637778.612|220039.803|122.115 +637783.462|220035.240|121.768 +637788.283|220030.695|121.180 +637793.142|220026.126|120.957 +637798.065|220021.500|120.902 +637802.883|220016.961|120.311 +637807.745|220012.380|119.677 +637812.576|220007.832|119.211 +637817.465|220003.230|118.875 +637822.372|219998.615|118.735 +637827.237|219994.034|118.174 +637832.117|219989.432|117.232 +637836.927|219984.899|116.559 +637841.843|219980.269|116.044 +637846.769|219975.636|115.599 +637851.627|219971.058|114.968 +637856.544|219966.425|114.483 +637861.463|219961.795|114.020 +637871.281|219952.548|112.834 +637876.221|219947.893|112.002 +637881.104|219943.288|111.063 +637886.045|219938.643|110.902 +637891.029|219933.952|110.719 +637896.030|219929.255|110.743 +637900.990|219924.594|110.902 +637905.994|219919.891|111.054 +637910.941|219915.240|111.097 +637915.967|219910.516|110.890 +637920.939|219905.834|110.630 +637925.874|219901.195|110.496 +637930.894|219896.473|110.249 +637935.883|219891.783|110.310 +637940.864|219887.101|110.237 +637955.863|219873.001|110.280 +637960.892|219868.276|110.286 +637970.886|219858.876|110.131 +637975.903|219854.158|109.923 +637980.951|219849.421|110.411 +637985.980|219844.694|110.618 +637996.081|219835.224|111.932 +638001.174|219830.445|112.606 +638006.231|219825.708|113.657 +638011.263|219820.987|114.084 +638016.293|219816.262|114.587 +638021.371|219811.498|115.138 +638026.385|219806.789|115.248 +638031.450|219802.031|115.596 +638036.480|219797.316|116.236 +638041.490|219792.607|116.379 +638046.553|219787.855|116.757 +638051.567|219783.146|117.144 +638056.627|219778.397|117.534 +638061.632|219773.694|117.677 +638066.640|219768.991|117.946 +638071.684|219764.248|117.796 +638076.728|219759.502|117.726 +638081.681|219754.848|117.729 +638086.726|219750.105|117.629 +638091.764|219745.362|117.223 +638096.763|219740.662|117.257 +638101.765|219735.965|117.339 +638106.806|219731.220|117.147 +638111.805|219726.523|116.998 +638116.801|219721.823|116.888 +638121.845|219717.077|116.629 +638126.841|219712.374|116.339 +638131.839|219707.674|116.092 +638136.884|219702.925|115.757 +638141.886|219698.225|115.644 +638146.933|219693.476|115.565 +638151.935|219688.776|115.471 +638156.931|219684.082|115.663 +638161.978|219679.343|116.038 +638166.977|219674.652|116.528 +638171.976|219669.961|117.129 +638176.971|219665.273|117.744 +638182.016|219660.539|118.189 +638187.008|219655.855|118.839 +638192.004|219651.170|119.339 +638196.997|219646.485|119.906 +638201.986|219641.803|120.549 +638206.976|219637.122|121.076 +638211.972|219632.431|121.320 +638216.915|219627.786|121.548 +638221.951|219623.061|122.146 +638226.910|219618.395|121.762 +638231.906|219613.701|121.890 +638236.855|219609.050|121.987 +638241.799|219604.407|122.380 +638246.798|219599.707|122.350 +638251.757|219595.047|122.216 +638256.707|219590.393|122.323 +638261.666|219585.729|122.188 +638266.622|219581.072|122.231 +638271.597|219576.384|121.600 +638276.608|219571.675|121.478 +638281.518|219567.063|121.591 +638286.489|219562.388|121.317 +638291.461|219557.712|121.067 +638296.386|219553.079|120.841 +638301.367|219548.394|120.460 +638306.292|219543.761|120.268 +638311.266|219539.086|120.149 +638316.195|219534.453|120.024 +638321.124|219529.823|119.939 +638326.107|219525.132|119.659 +638331.048|219520.487|119.409 +638335.986|219515.842|119.174 +638340.924|219511.202|119.043 +638345.819|219506.600|118.845 +638350.811|219501.906|118.644 +638355.719|219497.288|118.272 +638360.678|219492.622|117.866 +638365.582|219488.010|117.638 +638370.483|219483.405|117.525 +638375.451|219478.729|117.089 +638380.377|219474.090|116.586 +638385.287|219469.472|116.419 +638390.192|219464.864|116.388 +638395.120|219460.228|116.013 +638390.597|219460.770|116.147 +638385.574|219465.485|116.422 +638380.560|219470.185|116.525 +638375.540|219474.898|116.842 +638370.550|219479.582|117.424 +638365.497|219484.325|117.577 +638360.486|219489.028|117.815 +638355.469|219493.734|118.193 +638350.455|219498.443|118.616 +638345.407|219503.180|118.814 +638340.408|219507.868|118.955 +638335.367|219512.598|119.110 +638330.368|219517.289|119.369 +638325.327|219522.017|119.582 +638320.240|219526.793|119.808 +638315.250|219531.472|119.976 +638310.218|219536.190|120.070 +638305.189|219540.908|120.219 +638300.153|219545.633|120.445 +638295.118|219550.360|120.841 +638290.043|219555.121|120.994 +638285.011|219559.843|121.295 +638279.939|219564.600|121.503 +638274.879|219569.346|121.420 +638269.902|219574.016|121.701 +638264.824|219578.783|122.213 +638259.716|219583.574|122.262 +638254.705|219588.268|122.131 +638249.642|219593.020|122.326 +638244.585|219597.763|122.347 +638239.574|219602.460|122.365 +638234.478|219607.230|121.960 +638229.427|219611.966|121.841 +638224.420|219616.657|121.747 +638209.265|219630.861|121.271 +638204.166|219635.634|120.975 +638199.118|219640.359|120.439 +638194.071|219645.080|119.808 +638189.023|219649.804|119.241 +638183.973|219654.532|118.644 +638178.922|219659.256|117.964 +638173.868|219663.987|117.513 +638168.815|219668.717|116.891 +638163.758|219673.448|116.306 +638158.702|219678.181|115.836 +638153.645|219682.915|115.471 +638143.535|219692.394|115.434 +638138.475|219697.140|115.565 +638133.421|219701.883|115.745 +638128.365|219706.625|115.971 +638123.308|219711.368|116.184 +638118.255|219716.111|116.480 +638113.250|219720.808|116.705 +638108.147|219725.593|116.861 +638103.094|219730.336|117.031 +638098.089|219735.030|117.214 +638093.035|219739.769|117.269 +638087.976|219744.512|117.117 +638082.974|219749.206|117.440 +638077.920|219753.946|117.580 +638072.864|219758.685|117.598 +638067.859|219763.382|117.717 +638062.848|219768.079|117.766 +638057.788|219772.822|117.583 +638052.768|219777.522|117.303 +638047.745|219782.225|116.958 +638042.725|219786.928|116.632 +638037.699|219791.634|116.288 +638032.679|219796.340|116.114 +638027.686|219801.010|115.474 +638022.660|219805.719|115.187 +638017.686|219810.379|115.105 +638012.690|219815.052|114.471 +638007.652|219819.767|113.992 +638002.647|219824.446|113.316 +637997.633|219829.134|112.441 +637992.622|219833.819|111.679 +637987.623|219838.497|111.252 +637982.597|219843.194|110.304 +637977.592|219847.879|109.896 +637972.651|219852.509|109.853 +637967.656|219857.188|109.628 +637957.804|219866.432|110.219 +637952.809|219871.111|110.097 +637947.837|219875.762|109.606 +637937.928|219885.046|109.317 +637933.039|219889.643|110.301 +637928.074|219894.294|110.009 +637923.185|219898.878|110.204 +637918.244|219903.511|110.380 +637913.358|219908.096|110.655 +637908.463|219912.686|110.807 +637903.501|219917.337|110.670 +637898.640|219921.894|110.646 +637893.720|219926.502|110.515 +637888.819|219931.099|110.664 +637883.915|219935.698|110.758 +637879.062|219940.246|110.963 +637874.213|219944.806|111.822 +637869.415|219949.317|112.746 +637864.575|219953.858|113.099 +637859.677|219958.452|113.364 +637850.039|219967.507|114.632 +637845.202|219972.046|115.084 +637840.444|219976.520|115.867 +637835.607|219981.062|116.306 +637830.779|219985.594|116.858 +637825.957|219990.123|117.479 +637821.196|219994.598|118.253 +637816.368|219999.130|118.827 +637811.546|220003.650|118.958 +637806.745|220008.158|119.308 +637801.945|220012.663|119.695 +637797.132|220017.184|120.457 +637792.386|220021.643|120.896 +637787.561|220026.166|121.064 +637782.745|220030.683|121.320 +637777.951|220035.185|121.807 +637773.171|220039.669|121.996 +637768.371|220044.165|122.012 +637763.549|220048.682|121.826 +637758.669|220053.254|121.564 +637753.871|220057.743|121.219 +637749.019|220062.285|120.835 +637744.157|220066.836|120.393 +637739.287|220071.392|119.924 +637710.352|220098.477|117.668 +637705.649|220102.891|117.961 +637681.439|220125.531|114.678 +637671.850|220134.504|113.785 +637652.842|220152.311|113.270 +637648.127|220156.734|113.377 +637638.739|220165.536|113.581 +637629.339|220174.348|113.794 +637624.633|220178.758|113.706 +637619.915|220183.175|113.215 +637605.598|220196.562|111.179 +637596.152|220205.404|110.402 +637591.574|220209.696|110.697 +637586.896|220214.082|110.649 +637582.269|220218.419|110.655 +637531.312|220266.139|107.979 +637512.658|220283.579|105.345 +637507.995|220287.941|104.608 +637498.662|220296.661|102.907 +637480.590|220313.590|102.325 +637471.599|220322.018|102.239 +637467.097|220326.233|102.066 +637462.638|220330.409|101.864 +637453.359|220339.074|99.908 +637448.894|220343.256|99.746 +637405.698|220383.780|102.398 +637371.331|220415.985|102.251 +637367.064|220419.984|102.136 +637358.697|220427.835|102.739 +637346.240|220439.525|103.711 +637342.177|220443.338|104.156 +637321.832|220462.430|105.946 +637317.775|220466.240|106.253 +637313.770|220470.005|106.793 +637309.835|220473.702|107.439 +637305.921|220477.381|108.177 +637301.971|220481.093|108.530 +637297.871|220484.937|108.485 +637293.888|220488.677|108.719 +637289.919|220492.398|108.814 +637285.871|220496.193|108.814 +637281.815|220499.994|108.564 +637277.776|220503.773|108.180 +637273.734|220507.562|108.030 +637269.751|220511.299|108.137 +637265.791|220515.011|108.134 +637261.929|220518.636|108.335 +637258.098|220522.238|108.893 +637254.325|220525.783|109.487 +637250.530|220529.349|109.990 +637246.753|220532.897|110.377 +637242.968|220536.451|110.725 +637239.188|220540.002|111.121 +637235.409|220543.550|111.517 +637231.745|220546.997|112.179 +637228.084|220550.441|112.859 +637220.922|220557.181|114.459 +637217.233|220560.643|114.846 +637213.588|220564.072|115.407 +637209.958|220567.480|115.839 +637206.300|220570.915|116.169 +637202.731|220574.271|116.638 +637199.128|220577.654|116.995 +637188.302|220587.816|117.848 +637184.681|220591.212|117.970 +637177.451|220597.990|117.888 +637166.841|220607.945|118.333 +637163.287|220611.280|118.366 +637152.628|220621.265|117.970 +637349.502|220434.279|103.273 +637357.765|220426.491|102.422 +637361.992|220422.514|102.346 +637366.208|220418.548|102.227 +637370.423|220414.580|102.120 +637396.154|220390.375|101.959 +637400.534|220386.261|102.276 +637431.066|220357.536|101.834 +637448.373|220341.226|99.819 +637462.116|220328.330|101.788 +637471.108|220319.878|102.130 +637475.576|220315.672|101.910 +637480.066|220311.450|102.090 +637484.434|220307.329|101.349 +637503.060|220289.858|104.156 +637535.692|220259.232|108.180 +637544.967|220250.521|108.604 +637549.591|220246.177|108.765 +637558.827|220237.494|108.789 +637582.336|220215.423|110.472 +637596.305|220202.289|110.304 +637601.032|220197.851|110.758 +637605.888|220193.300|111.444 +637610.652|220188.832|112.215 +637643.854|220157.639|113.261 +637648.596|220153.180|113.038 +637653.312|220148.745|112.996 +637658.073|220144.270|112.956 +637691.936|220112.495|116.355 +637701.696|220103.339|117.458 +637721.078|220085.142|118.927 +637725.936|220080.579|119.272 +637730.768|220076.044|119.393 +637735.681|220071.432|119.863 +637745.410|220062.297|120.430 +637750.311|220057.695|120.899 +637755.152|220053.153|121.234 +637760.080|220048.523|121.558 +637764.902|220043.994|121.807 +637769.797|220039.394|121.862 +637774.625|220034.856|121.762 +637779.475|220030.293|121.396 +637784.330|220025.724|121.125 +637789.189|220021.152|120.908 +637794.038|220016.589|120.616 +637798.836|220012.069|119.759 +637803.719|220007.473|119.326 +637808.562|220002.913|118.997 +637813.469|219998.298|118.845 +637818.279|219993.766|118.183 +637823.140|219989.188|117.522 +637828.002|219984.607|116.928 +637832.873|219980.022|116.376 +637837.743|219975.435|115.888 +637842.593|219970.866|115.111 +637847.506|219966.239|114.553 +637857.287|219957.028|113.465 +637862.216|219952.389|113.105 +637867.099|219947.796|112.788 +637872.037|219943.138|111.950 +637876.877|219938.576|111.078 +637881.851|219933.897|110.685 +637886.798|219929.246|110.618 +637891.736|219924.600|110.435 +637896.735|219919.907|110.457 +637901.691|219915.252|110.585 +637906.686|219910.558|110.618 +637911.618|219905.925|110.411 +637916.598|219901.247|110.201 +637921.597|219896.553|110.365 +637926.556|219891.886|109.887 +637931.525|219887.217|109.545 +637936.529|219882.507|109.036 +637941.455|219877.878|108.805 +637946.493|219873.147|108.902 +637951.526|219868.432|109.789 +637976.571|219844.913|109.853 +637981.615|219840.180|110.332 +637986.675|219835.440|111.149 +637991.723|219830.710|111.761 +637996.727|219826.022|112.514 +638001.830|219821.243|113.499 +638006.868|219816.521|114.069 +638011.852|219811.846|114.584 +638016.936|219807.085|115.245 +638021.950|219802.375|115.358 +638026.970|219797.666|115.660 +638031.999|219792.954|116.318 +638037.056|219788.205|116.425 +638042.070|219783.499|116.766 +638047.084|219778.796|117.083 +638052.140|219774.050|117.321 +638057.154|219769.347|117.751 +638062.205|219764.605|117.790 +638067.203|219759.911|117.696 +638072.199|219755.214|117.513 +638077.244|219750.474|117.421 +638082.282|219745.734|116.931 +638087.284|219741.037|116.937 +638092.334|219736.298|117.168 +638097.333|219731.601|117.068 +638102.377|219726.861|116.861 +638107.422|219722.118|116.653 +638112.421|219717.421|116.486 +638117.465|219712.679|116.178 +638122.461|219707.982|115.925 +638127.508|219703.239|115.788 +638132.510|219698.539|115.519 +638137.558|219693.796|115.492 +638142.605|219689.054|115.306 +638152.606|219679.660|115.355 +638157.653|219674.926|115.775 +638162.655|219670.238|116.355 +638167.699|219665.508|116.928 +638172.701|219660.817|117.211 +638177.697|219656.132|117.845 +638182.738|219651.411|118.668 +638187.731|219646.732|119.384 +638192.726|219642.047|119.765 +638197.716|219637.369|120.418 +638202.709|219632.690|120.942 +638207.701|219628.005|121.259 +638222.688|219613.935|121.762 +638227.687|219609.242|121.792 +638232.634|219604.596|121.987 +638237.630|219599.912|122.301 +638242.628|219595.215|122.286 +638247.584|219590.560|122.234 +638252.592|219585.854|122.079 +638257.542|219581.206|122.249 +638262.501|219576.549|122.155 +638267.470|219571.876|121.832 +638272.441|219567.203|121.463 +638277.406|219562.537|121.329 +638282.365|219557.877|121.387 +638287.340|219553.201|121.109 +638292.311|219548.528|120.890 +638297.243|219543.892|120.570 +638302.223|219539.208|120.232 +638307.152|219534.578|120.094 +638312.080|219529.945|119.942 +638317.012|219525.309|119.762 +638321.947|219520.673|119.579 +638326.884|219516.030|119.387 +638331.822|219511.388|119.174 +638336.763|219506.743|118.973 +638341.652|219502.150|118.878 +638346.596|219497.502|118.677 +638351.497|219492.899|118.479 +638356.459|219488.230|118.016 +638361.321|219483.658|117.684 +638366.277|219478.997|117.427 +638371.190|219474.376|117.126 +638376.116|219469.743|116.641 +638381.029|219465.126|116.452 +638385.900|219460.545|116.169 +638384.501|219457.957|115.974 +638379.475|219462.675|116.330 +638374.549|219467.293|116.574 +638369.520|219472.011|117.031 +638364.552|219476.675|117.339 +638359.583|219481.335|117.638 +638354.566|219486.044|118.034 +638349.549|219490.753|118.479 +638344.593|219495.399|118.680 +638339.549|219500.132|118.845 +638334.602|219504.768|118.942 +638329.561|219509.496|119.101 +638324.568|219514.177|119.253 +638319.575|219518.859|119.464 +638314.540|219523.580|119.607 +638309.550|219528.259|119.811 +638304.515|219532.983|120.067 +638299.483|219537.702|120.210 +638294.448|219542.426|120.567 +638289.461|219547.105|120.844 +638284.389|219551.860|121.006 +638279.357|219556.581|121.338 +638274.343|219561.278|121.241 +638269.320|219565.990|121.454 +638264.291|219570.712|121.969 +638259.225|219575.461|122.070 +638254.165|219580.203|122.143 +638249.197|219584.861|122.219 +638244.140|219589.603|122.249 +638239.084|219594.340|122.198 +638234.079|219599.028|121.987 +638229.028|219603.758|121.804 +638223.972|219608.495|121.768 +638208.814|219622.695|121.466 +638203.766|219627.423|121.134 +638198.719|219632.147|120.710 +638193.671|219636.869|120.134 +638188.624|219641.590|119.546 +638183.573|219646.314|119.058 +638178.477|219651.078|118.165 +638173.426|219655.800|117.516 +638163.316|219665.261|116.531 +638158.263|219669.988|115.971 +638153.157|219674.765|115.462 +638148.101|219679.498|115.120 +638143.047|219684.238|115.187 +638137.987|219688.977|115.224 +638132.885|219693.763|115.309 +638127.828|219698.502|115.489 +638122.772|219703.245|115.583 +638117.669|219708.030|115.907 +638112.616|219712.770|116.108 +638107.562|219717.510|116.385 +638102.463|219722.295|116.528 +638097.409|219727.032|116.726 +638092.359|219731.771|117.010 +638087.302|219736.508|117.019 +638082.242|219741.248|116.784 +638077.189|219745.987|116.894 +638072.141|219750.724|117.336 +638067.091|219755.461|117.595 +638062.089|219760.154|117.830 +638057.026|219764.894|117.632 +638051.960|219769.637|117.318 +638046.943|219774.337|117.129 +638041.875|219779.080|116.812 +638036.812|219783.825|116.669 +638031.789|219788.528|116.391 +638026.711|219793.280|115.943 +638021.678|219797.989|115.471 +638016.655|219802.695|115.282 +638011.571|219807.453|114.861 +638006.533|219812.172|114.325 +638001.537|219816.847|113.813 +637996.471|219821.584|112.770 +637991.378|219826.354|112.301 +637981.308|219835.775|110.899 +637976.281|219840.475|109.981 +637951.230|219863.966|109.545 +637946.259|219868.621|109.024 +637941.272|219873.299|109.155 +637936.322|219877.939|109.088 +637931.378|219882.578|109.149 +637926.379|219887.265|109.079 +637921.430|219891.908|109.100 +637916.507|219896.534|109.515 +637911.615|219901.137|110.457 +637906.695|219905.745|110.216 +637901.752|219910.385|110.380 +637896.838|219914.990|110.313 +637891.882|219919.641|110.292 +637886.981|219924.241|110.441 +637882.080|219928.840|110.588 +637877.182|219933.437|110.813 +637872.317|219938.009|111.463 +637867.462|219942.575|112.234 +637862.637|219947.110|112.795 +637857.754|219951.694|113.236 +637852.904|219956.248|113.483 +637843.212|219965.358|114.703 +637838.384|219969.894|115.257 +637833.571|219974.417|115.983 +637828.791|219978.910|116.531 +637823.906|219983.497|116.982 +637819.120|219987.996|117.458 +637814.289|219992.534|118.019 +637809.513|219997.024|118.619 +637804.673|220001.569|119.073 +637799.857|220006.089|119.290 +637795.065|220010.591|119.747 +637790.310|220015.062|120.631 +637785.507|220019.573|121.000 +637780.737|220024.054|121.219 +637775.909|220028.583|121.369 +637771.129|220033.067|121.561 +637766.289|220037.608|121.628 +637761.476|220042.119|121.533 +637756.648|220046.646|121.308 +637751.851|220051.141|120.942 +637746.998|220055.686|120.555 +637737.333|220064.739|119.793 +637727.710|220073.752|119.107 +637713.211|220087.327|117.726 +637689.135|220109.880|115.955 +637669.850|220127.933|113.566 +637665.062|220132.414|113.020 +637655.464|220141.405|112.237 +637636.724|220158.989|113.215 +637627.373|220167.761|113.407 +637622.609|220172.227|113.249 +637608.415|220185.519|112.267 +637603.632|220189.993|111.408 +637598.871|220194.447|110.752 +637594.110|220198.900|110.121 +637589.392|220203.322|109.783 +637575.475|220216.371|109.868 +637566.139|220225.119|109.430 +637551.859|220238.469|106.967 +637533.659|220255.550|108.043 +637515.072|220272.951|106.238 +637487.058|220299.146|101.572 +637469.130|220315.961|101.913 +637460.126|220324.398|101.569 +637455.697|220328.550|101.553 +637446.514|220337.139|100.115 +637429.170|220353.427|101.788 +637403.055|220377.918|102.416 +637368.610|220410.215|102.328 +637360.203|220418.100|102.721 +637356.009|220422.035|102.736 +637347.734|220429.804|103.583 +637343.646|220433.645|104.135 +637327.361|220448.943|106.028 +637323.325|220452.735|106.397 +637319.247|220456.560|106.595 +637315.215|220460.345|107.009 +637311.307|220464.018|107.753 +637303.337|220471.498|108.817 +637299.335|220475.247|108.954 +637295.314|220479.018|109.241 +637291.343|220482.739|109.545 +637287.392|220486.446|109.939 +637283.308|220490.265|109.551 +637279.269|220494.050|109.594 +637271.116|220501.676|108.963 +637267.184|220505.361|109.064 +637263.200|220509.086|108.972 +637259.134|220512.890|108.536 +637255.230|220516.545|108.582 +637247.546|220523.753|109.213 +637243.760|220527.304|109.780 +637240.054|220530.785|110.460 +637236.305|220534.305|110.972 +637228.734|220541.401|111.536 +637225.058|220544.854|112.154 +637221.482|220548.216|112.977 +637217.837|220551.639|113.749 +637207.062|220561.756|115.678 +637203.402|220565.191|115.992 +637199.771|220568.598|116.437 +637196.156|220571.985|116.754 +637192.548|220575.371|117.095 +637178.231|220588.791|118.220 +637174.619|220592.172|118.193 +637171.026|220595.543|118.452 +637167.456|220598.880|118.415 +637163.930|220602.184|118.546 +637149.708|220615.498|118.354 +637142.633|220622.112|117.872 +637348.654|220426.702|103.876 +637352.690|220422.898|102.879 +637356.893|220418.944|102.687 +637361.130|220414.961|102.660 +637369.570|220407.024|102.258 +637404.155|220374.526|102.315 +637408.423|220370.509|101.864 +637434.800|220345.725|101.858 +637447.754|220333.521|99.810 +637461.507|220320.628|101.590 +637466.021|220316.385|101.590 +637470.504|220312.173|101.718 +637512.104|220273.158|106.061 +637586.688|220203.103|109.847 +637596.238|220194.139|110.679 +637600.980|220189.689|111.258 +637615.306|220176.244|112.813 +637624.813|220167.313|113.358 +637634.301|220158.395|113.154 +637638.983|220153.984|112.822 +637648.365|220145.157|112.328 +637653.089|220140.710|111.996 +637662.687|220131.694|112.487 +637686.901|220108.980|115.547 +637706.292|220090.775|117.123 +637711.123|220086.239|117.559 +637715.991|220081.670|117.924 +637720.935|220077.040|118.958 +637730.673|220067.890|119.461 +637745.304|220054.150|120.415 +637750.199|220049.557|120.811 +637755.094|220044.960|121.237 +637759.971|220040.382|121.518 +637764.866|220035.780|121.558 +637769.703|220031.232|121.500 +637774.531|220026.690|121.408 +637779.399|220022.112|121.216 +637784.275|220017.528|121.158 +637789.085|220012.996|120.427 +637793.886|220008.469|119.622 +637798.732|220003.907|119.287 +637803.581|219999.344|118.991 +637808.437|219994.769|118.263 +637813.259|219990.227|117.680 +637818.142|219985.631|117.257 +637823.025|219981.034|116.836 +637827.859|219976.481|116.431 +637832.720|219971.902|115.809 +637837.582|219967.321|115.178 +637842.450|219962.737|114.602 +637847.378|219958.098|114.215 +637852.240|219953.517|113.593 +637857.168|219948.878|113.206 +637862.045|219944.288|112.764 +637866.943|219939.670|112.033 +637871.845|219935.052|111.319 +637876.761|219930.422|110.774 +637881.741|219925.734|110.496 +637886.637|219921.132|110.341 +637891.623|219916.441|110.182 +637896.570|219911.790|110.134 +637906.491|219902.445|109.091 +637911.484|219897.751|109.058 +637916.480|219893.057|109.091 +637921.466|219888.366|109.027 +637926.419|219883.715|109.164 +637931.451|219878.981|109.082 +637936.438|219874.293|109.097 +637941.427|219869.605|109.122 +637946.457|219864.875|109.100 +637951.449|219860.184|109.244 +637971.444|219841.393|109.713 +637976.507|219836.647|110.505 +637981.506|219831.956|111.011 +637986.608|219827.171|111.764 +637991.616|219822.477|112.569 +637996.660|219817.743|113.252 +638001.711|219813.007|114.114 +638006.743|219808.285|114.568 +638011.782|219803.561|115.239 +638016.841|219798.803|115.355 +638021.861|219794.088|115.650 +638026.891|219789.370|116.230 +638031.953|219784.615|116.507 +638036.967|219779.906|116.775 +638041.978|219775.196|116.943 +638047.035|219770.448|117.147 +638052.043|219765.741|117.290 +638057.096|219760.993|117.464 +638062.150|219756.244|117.537 +638067.149|219751.544|117.513 +638072.187|219746.798|116.976 +638077.228|219742.055|116.644 +638082.279|219737.307|116.809 +638087.329|219732.561|116.885 +638092.374|219727.815|116.623 +638097.373|219723.115|116.519 +638102.417|219718.366|116.245 +638107.465|219713.621|116.004 +638112.512|219708.872|115.757 +638117.511|219704.169|115.617 +638122.607|219699.374|115.352 +638127.609|219694.671|115.239 +638132.656|219689.922|115.138 +638137.707|219685.173|114.980 +638142.757|219680.425|115.010 +638147.756|219675.728|115.160 +638152.807|219670.988|115.553 +638157.854|219666.248|116.092 +638162.902|219661.512|116.617 +638167.949|219656.772|117.019 +638172.994|219652.039|117.613 +638177.989|219647.357|118.415 +638183.031|219642.629|119.168 +638188.075|219637.893|119.534 +638193.117|219633.159|119.960 +638198.152|219628.441|120.896 +638203.193|219623.707|121.180 +638208.189|219619.013|121.445 +638223.277|219604.834|121.722 +638228.324|219600.088|121.716 +638233.369|219595.352|121.929 +638238.364|219590.658|122.170 +638243.415|219585.909|122.164 +638248.417|219581.206|122.146 +638253.424|219576.500|122.070 +638258.475|219571.748|122.054 +638263.486|219567.036|121.878 +638268.509|219562.308|121.384 +638273.523|219557.593|121.228 +638278.485|219552.930|121.250 +638283.505|219548.208|121.009 +638288.528|219543.487|120.783 +638293.503|219538.805|120.518 +638298.532|219534.078|120.210 +638303.509|219529.396|120.040 +638308.490|219524.711|119.793 +638313.473|219520.023|119.549 +638318.457|219515.339|119.372 +638323.437|219510.657|119.238 +638328.424|219505.969|119.092 +638333.410|219501.281|118.918 +638338.351|219496.636|118.778 +638343.335|219491.948|118.717 +638348.284|219487.297|118.503 +638353.247|219482.627|118.068 +638358.209|219477.955|117.656 +638363.168|219473.291|117.342 +638368.127|219468.625|117.095 +638373.050|219463.992|116.684 +638378.024|219459.313|116.266 +638375.607|219458.210|116.309 +638370.629|219462.879|116.662 +638365.695|219467.509|117.174 +638360.729|219472.164|117.415 +638355.767|219476.815|117.635 +638350.793|219481.481|118.122 +638345.831|219486.136|118.476 +638340.875|219490.781|118.695 +638335.882|219495.459|118.775 +638330.984|219500.050|118.891 +638325.991|219504.728|119.006 +638321.047|219509.361|119.183 +638316.107|219513.991|119.305 +638311.120|219518.667|119.457 +638306.176|219523.303|119.723 +638301.184|219527.982|120.021 +638296.249|219532.612|120.223 +638291.305|219537.245|120.585 +638286.322|219541.920|120.896 +638281.344|219546.584|121.015 +638276.379|219551.232|120.850 +638271.402|219555.901|121.149 +638266.467|219560.525|121.506 +638261.441|219565.241|121.914 +638256.475|219569.895|121.942 +638251.553|219574.506|122.088 +638246.545|219579.200|122.039 +638241.580|219583.849|122.045 +638236.569|219588.543|122.103 +638231.616|219593.179|121.817 +638226.654|219597.827|121.783 +638221.652|219602.512|121.603 +638216.647|219607.193|121.408 +638206.680|219616.535|121.628 +638201.681|219621.211|121.146 +638196.680|219625.890|120.786 +638191.684|219630.556|119.945 +638186.682|219635.232|119.457 +638181.680|219639.914|119.055 +638176.679|219644.589|118.458 +638171.631|219649.305|117.513 +638166.672|219653.938|116.961 +638161.618|219658.671|116.711 +638156.611|219663.353|116.160 +638151.603|219668.035|115.541 +638146.546|219672.762|115.090 +638141.535|219677.453|114.858 +638136.530|219682.141|114.800 +638131.474|219686.880|114.919 +638126.466|219691.574|115.108 +638121.455|219696.268|115.181 +638116.398|219701.005|115.239 +638111.393|219705.699|115.483 +638106.337|219710.435|115.629 +638101.332|219715.129|115.913 +638096.327|219719.823|116.065 +638091.274|219724.557|116.266 +638086.223|219729.293|116.550 +638076.204|219738.678|116.483 +638071.151|219743.412|116.522 +638066.152|219748.103|117.059 +638061.098|219752.839|117.168 +638056.090|219757.530|117.190 +638051.083|219762.221|117.220 +638046.023|219766.961|117.077 +638041.006|219771.658|116.894 +638035.989|219776.355|116.748 +638030.926|219781.094|116.592 +638025.906|219785.794|116.419 +638020.871|219790.500|115.766 +638015.796|219795.249|115.471 +638010.776|219799.952|115.352 +638005.731|219804.664|114.684 +638000.696|219809.374|114.297 +637995.652|219814.089|113.685 +637990.586|219818.816|112.633 +637985.535|219823.538|112.036 +637980.475|219828.265|111.325 +637975.455|219832.953|110.463 +637970.377|219837.693|109.518 +637950.364|219856.432|109.137 +637945.329|219861.147|109.149 +637940.339|219865.820|109.198 +637935.344|219870.498|109.131 +637930.348|219875.177|109.103 +637925.352|219879.853|109.091 +637920.363|219884.531|109.161 +637915.410|219889.167|109.125 +637910.463|219893.800|109.183 +637905.458|219898.488|109.109 +637900.453|219903.173|109.079 +637895.610|219907.724|110.006 +637890.626|219912.396|110.310 +637885.707|219916.999|110.170 +637880.766|219921.632|110.384 +637875.813|219926.271|110.509 +637870.900|219930.882|111.139 +637866.035|219935.448|111.786 +637861.180|219940.008|112.542 +637856.312|219944.577|113.151 +637851.420|219949.164|113.456 +637846.543|219953.736|113.971 +637841.654|219958.321|114.337 +637836.841|219962.841|115.041 +637831.955|219967.422|115.468 +637827.179|219971.902|116.050 +637822.302|219976.478|116.592 +637817.502|219980.979|116.906 +637812.661|219985.521|117.324 +637807.873|219990.011|117.824 +637803.054|219994.534|118.482 +637798.284|219999.011|119.165 +637793.471|220003.522|119.412 +637788.680|220008.015|119.899 +637783.928|220012.481|120.765 +637779.133|220016.976|121.247 +637774.299|220021.506|121.311 +637769.520|220025.983|121.472 +637764.716|220030.482|121.420 +637759.861|220035.030|121.341 +637755.088|220039.495|121.167 +637750.199|220044.067|120.866 +637745.395|220048.560|120.451 +637735.745|220057.588|119.777 +637730.908|220062.111|119.616 +637726.132|220066.586|119.546 +637721.285|220071.112|118.936 +637711.565|220080.195|117.540 +637706.768|220084.679|117.007 +637702.043|220089.107|117.120 +637692.433|220098.087|116.114 +637682.826|220107.072|115.218 +637663.678|220124.970|113.209 +637658.819|220129.503|112.157 +637630.738|220155.816|112.846 +637626.084|220160.178|113.093 +637607.314|220177.756|112.514 +637593.098|220191.039|110.588 +637583.625|220199.893|109.369 +637569.680|220212.951|108.972 +637541.712|220239.112|106.461 +637528.154|220251.828|107.500 +637523.534|220256.153|107.168 +637490.859|220286.682|102.276 +637486.321|220290.928|102.056 +637481.806|220295.153|101.709 +637477.070|220299.575|100.697 +637468.316|220307.796|101.901 +637454.810|220320.436|101.383 +637445.593|220329.046|99.728 +637423.919|220349.386|102.212 +637397.700|220373.944|102.315 +637371.871|220398.145|102.687 +637367.546|220402.186|102.270 +637359.124|220410.084|102.800 +637354.948|220413.997|103.132 +637346.600|220421.831|103.836 +637330.339|220437.098|106.217 +637326.285|220440.902|106.717 +637322.149|220444.776|106.857 +637318.019|220448.647|107.037 +637314.023|220452.399|107.598 +637309.975|220456.197|107.936 +637306.001|220459.931|108.625 +637302.059|220463.631|109.237 +637298.003|220467.438|109.570 +637294.083|220471.120|110.073 +637290.105|220474.854|110.551 +637286.076|220478.630|110.597 +637282.040|220482.413|110.637 +637278.029|220486.168|110.569 +637273.908|220490.027|110.262 +637269.955|220493.733|110.475 +637265.831|220497.586|109.756 +637261.789|220501.372|109.625 +637257.680|220505.212|109.000 +637253.742|220508.903|109.116 +637249.792|220512.604|108.975 +637245.860|220516.285|108.927 +637242.023|220519.885|109.058 +637238.252|220523.427|109.689 +637234.467|220526.978|110.070 +637230.727|220530.492|110.627 +637219.495|220541.035|111.898 +637215.908|220544.409|112.685 +637212.271|220547.829|113.489 +637208.757|220551.139|114.572 +637197.894|220561.338|115.998 +637186.939|220571.613|116.739 +637172.726|220584.951|118.284 +637154.771|220601.779|118.516 +637151.329|220605.004|118.802 +637140.631|220615.017|118.116 +637348.298|220417.951|103.705 +637352.531|220413.970|103.410 +637356.671|220410.075|102.931 +637365.101|220402.150|102.227 +637421.645|220349.051|101.953 +637434.876|220336.624|101.493 +637443.700|220328.330|101.029 +637452.683|220319.899|101.200 +637457.243|220315.626|101.691 +637461.729|220311.408|101.538 +637471.013|220302.718|102.962 +637475.275|220298.694|101.624 +637479.783|220294.458|101.380 +637484.367|220290.154|101.581 +637488.969|220285.838|101.904 +637493.678|220281.434|102.849 +637512.549|220263.767|105.997 +637540.313|220237.707|106.287 +637545.138|220233.196|107.366 +637554.599|220224.332|108.460 +637559.241|220219.980|108.485 +637563.901|220215.606|108.661 +637568.598|220211.192|108.466 +637578.059|220202.326|109.186 +637582.784|220197.891|109.219 +637592.376|220188.911|110.643 +637597.189|220184.406|111.341 +637601.989|220179.911|111.996 +637606.799|220175.403|112.407 +637611.551|220170.946|112.801 +637616.291|220166.499|112.788 +637621.058|220162.028|112.977 +637649.364|220135.437|111.420 +637654.132|220130.960|111.423 +637663.955|220121.770|113.285 +637668.811|220117.219|113.672 +637673.685|220112.653|114.212 +637717.478|220071.609|118.043 +637727.323|220062.392|119.439 +637732.197|220057.820|119.555 +637737.074|220053.245|119.704 +637741.972|220048.651|120.110 +637746.864|220044.067|120.445 +637751.759|220039.480|120.869 +637756.636|220034.908|121.137 +637761.543|220030.302|121.289 +637766.390|220025.758|121.308 +637771.263|220021.180|121.183 +637776.149|220016.592|121.186 +637780.959|220012.075|120.917 +637785.802|220007.515|120.021 +637790.624|220002.980|119.427 +637795.489|219998.414|119.262 +637800.302|219993.885|118.570 +637805.157|219989.316|117.830 +637810.037|219984.728|117.351 +637814.865|219980.190|116.836 +637819.751|219975.597|116.452 +637824.631|219971.009|116.016 +637829.505|219966.428|115.504 +637834.388|219961.841|115.081 +637839.240|219957.275|114.325 +637844.181|219952.633|114.069 +637849.042|219948.058|113.456 +637853.983|219943.419|113.206 +637858.857|219938.838|112.724 +637863.752|219934.229|111.904 +637868.653|219929.617|111.185 +637873.512|219925.049|110.524 +637878.450|219920.409|110.265 +637883.390|219915.770|110.085 +637888.365|219911.104|110.420 +637893.257|219906.495|109.594 +637898.164|219901.878|108.954 +637903.160|219897.187|108.945 +637908.116|219892.535|109.064 +637913.060|219887.890|109.036 +637918.055|219883.202|109.052 +637922.993|219878.563|108.985 +637927.989|219873.876|109.094 +637932.930|219869.233|109.097 +637937.916|219864.552|109.088 +637942.906|219859.870|109.119 +637947.889|219855.188|109.140 +637967.802|219836.486|108.838 +637972.913|219831.716|110.624 +637977.912|219827.028|111.115 +637982.917|219822.340|111.795 +637987.928|219817.649|112.630 +637992.978|219812.918|113.432 +637998.026|219808.191|114.187 +638003.009|219803.518|114.639 +638007.999|219798.843|115.266 +638013.016|219794.134|115.471 +638018.036|219789.424|115.705 +638023.017|219784.758|116.230 +638028.034|219780.049|116.571 +638033.047|219775.346|116.781 +638038.055|219770.646|116.861 +638043.018|219765.988|117.016 +638048.025|219761.288|117.089 +638053.076|219756.546|117.068 +638058.029|219751.891|117.037 +638063.031|219747.194|116.961 +638068.023|219742.500|116.446 +638072.979|219737.846|116.440 +638078.033|219733.103|116.733 +638083.032|219728.406|116.495 +638088.030|219723.709|116.239 +638093.029|219719.012|116.065 +638098.031|219714.315|115.922 +638103.030|219709.615|115.559 +638108.031|219704.918|115.428 +638113.079|219700.176|115.230 +638118.081|219695.476|115.160 +638123.086|219690.779|115.126 +638128.087|219686.079|115.001 +638133.089|219681.379|114.803 +638138.234|219676.545|114.718 +638143.141|219671.942|114.934 +638148.146|219667.251|115.349 +638153.194|219662.518|115.870 +638158.196|219657.830|116.473 +638163.197|219653.139|116.845 +638168.245|219648.408|117.385 +638173.241|219643.730|118.208 +638178.236|219639.054|118.988 +638183.281|219634.324|119.342 +638188.228|219629.688|119.918 +638193.269|219624.960|120.344 +638198.259|219620.284|121.024 +638203.254|219615.597|121.277 +638208.253|219610.903|121.344 +638213.255|219606.209|121.393 +638218.253|219601.518|121.500 +638223.249|219596.827|121.679 +638228.251|219592.133|121.716 +638233.250|219587.445|121.960 +638238.248|219582.751|122.079 +638243.253|219578.054|122.079 +638248.209|219573.400|122.094 +638253.217|219568.694|121.945 +638258.228|219563.988|121.859 +638263.236|219559.279|121.798 +638268.262|219554.548|121.231 +638273.230|219549.876|121.073 +638278.244|219545.163|121.024 +638283.258|219540.451|121.003 +638288.236|219535.769|120.695 +638293.219|219531.078|120.280 +638298.242|219526.354|120.085 +638303.223|219521.669|119.848 +638308.212|219516.975|119.467 +638313.245|219512.245|119.272 +638318.222|219507.566|119.208 +638323.209|219502.875|119.012 +638328.195|219498.187|118.875 +638333.182|219493.500|118.750 +638338.168|219488.812|118.647 +638343.106|219484.170|118.586 +638348.111|219479.461|118.253 +638353.079|219474.785|117.751 +638358.087|219470.073|117.421 +638363.037|219465.418|117.293 +638368.020|219460.727|116.684 +638364.674|219459.712|116.839 +638359.647|219464.428|117.260 +638354.640|219469.128|117.482 +638349.574|219473.886|117.897 +638344.554|219478.598|118.360 +638339.503|219483.335|118.577 +638334.514|219488.013|118.589 +638329.469|219492.741|118.732 +638324.480|219497.422|118.817 +638319.438|219502.150|119.015 +638314.449|219506.829|119.140 +638309.413|219511.553|119.284 +638304.375|219516.280|119.546 +638299.334|219521.011|119.884 +638294.298|219525.735|120.143 +638289.269|219530.454|120.314 +638284.228|219535.187|120.841 +638279.201|219539.899|120.988 +638274.187|219544.599|120.908 +638269.164|219549.312|121.088 +638264.129|219554.039|121.664 +638259.112|219558.742|121.743 +638254.095|219563.448|121.835 +638249.035|219568.194|121.917 +638244.067|219572.851|122.039 +638239.010|219577.594|122.042 +638234.006|219582.279|121.792 +638229.050|219586.924|121.618 +638218.985|219596.358|121.673 +638213.983|219601.042|121.390 +638208.978|219605.733|121.274 +638203.971|219610.427|121.280 +638198.969|219615.112|121.106 +638193.921|219619.836|120.631 +638188.926|219624.509|119.857 +638183.970|219629.148|119.555 +638178.919|219633.882|119.323 +638173.917|219638.557|118.631 +638168.915|219643.236|117.949 +638163.911|219647.915|117.287 +638158.906|219652.599|116.726 +638153.898|219657.284|116.217 +638148.890|219661.972|115.678 +638143.879|219666.660|115.181 +638138.868|219671.348|114.703 +638133.815|219676.084|114.538 +638128.852|219680.739|114.736 +638123.796|219685.478|114.846 +638118.788|219690.178|114.968 +638113.826|219694.830|114.992 +638108.818|219699.527|115.172 +638103.761|219704.266|115.245 +638098.802|219708.917|115.407 +638093.797|219713.614|115.675 +638088.789|219718.311|115.760 +638083.785|219723.005|116.047 +638078.780|219727.702|116.272 +638073.775|219732.396|116.522 +638068.810|219737.047|116.382 +638063.802|219741.741|116.339 +638058.840|219746.393|116.382 +638053.841|219751.087|116.784 +638048.833|219755.781|116.903 +638043.871|219760.435|116.934 +638038.860|219765.132|116.922 +638033.892|219769.786|116.763 +638028.924|219774.440|116.656 +638023.910|219779.140|116.665 +638018.923|219783.807|116.022 +638013.943|219788.467|115.657 +638008.965|219793.131|115.419 +638003.979|219797.797|115.013 +637998.937|219802.513|114.504 +637993.948|219807.182|114.066 +637988.979|219811.818|113.157 +637983.981|219816.497|112.615 +637978.955|219821.188|111.591 +637973.944|219825.872|110.954 +637968.927|219830.563|110.243 +637963.943|219835.233|110.256 +637949.014|219849.202|109.052 +637944.027|219853.875|109.140 +637939.035|219858.553|109.097 +637934.097|219863.180|109.244 +637929.098|219867.862|109.149 +637924.203|219872.449|109.216 +637919.201|219877.134|109.131 +637914.251|219881.773|109.164 +637909.295|219886.415|109.085 +637904.342|219891.057|109.070 +637899.432|219895.654|109.042 +637894.485|219900.290|109.186 +637884.628|219909.540|109.999 +637879.721|219914.140|110.070 +637874.822|219918.730|110.277 +637869.888|219923.360|110.633 +637865.017|219927.932|111.246 +637860.158|219932.495|111.981 +637855.300|219937.058|112.740 +637850.417|219941.642|113.169 +637845.528|219946.229|113.520 +637840.709|219950.752|114.178 +637835.811|219955.346|114.468 +637830.943|219959.915|115.114 +637826.100|219964.459|115.486 +637821.208|219969.050|115.858 +637816.356|219973.600|116.141 +637806.703|219982.659|117.363 +637801.865|219987.200|117.845 +637797.089|219991.684|118.488 +637792.234|219996.247|119.293 +637787.424|220000.758|119.576 +637782.632|220005.254|120.067 +637777.820|220009.774|120.835 +637773.028|220014.273|121.347 +637768.173|220018.817|121.250 +637763.329|220023.356|121.289 +637758.477|220027.900|121.256 +637753.661|220032.411|121.113 +637748.772|220036.987|120.811 +637743.923|220041.522|120.424 +637734.212|220050.611|119.637 +637729.393|220055.125|119.622 +637719.661|220064.220|118.421 +637714.753|220068.808|117.711 +637709.916|220073.334|117.232 +637705.085|220077.851|116.851 +637700.214|220082.405|116.156 +637666.455|220113.988|113.334 +637647.219|220131.978|111.408 +637642.522|220136.379|111.642 +637637.764|220140.835|111.447 +637633.036|220145.270|111.834 +637623.725|220153.999|112.663 +637590.715|220184.882|111.030 +637585.942|220189.347|110.640 +637581.220|220193.758|109.975 +637576.414|220198.244|109.125 +637567.047|220207.007|108.430 +637543.727|220228.822|107.147 +637501.948|220267.891|104.105 +637487.966|220280.949|102.087 +637483.355|220285.265|101.730 +637474.327|220293.714|101.627 +637469.928|220297.841|102.251 +637465.295|220302.169|101.596 +637442.880|220323.152|101.346 +637434.078|220331.400|101.697 +637377.211|220384.645|102.255 +637368.576|220392.735|102.410 +637360.069|220400.702|102.757 +637355.875|220404.637|103.236 +637343.427|220416.311|104.638 +637335.185|220424.041|105.662 +637327.020|220431.703|106.833 +637322.969|220435.504|107.339 +637318.891|220439.329|107.976 +637314.757|220443.203|108.137 +637310.761|220446.953|108.701 +637306.607|220450.842|108.802 +637302.584|220454.615|109.259 +637298.643|220458.312|109.862 +637294.683|220462.028|110.618 +637290.675|220465.783|110.960 +637286.765|220469.450|111.502 +637282.708|220473.248|111.642 +637278.572|220477.109|111.243 +637274.615|220480.819|111.621 +637270.604|220484.571|111.560 +637262.420|220492.221|111.024 +637258.391|220495.986|110.719 +637254.306|220499.802|110.411 +637250.179|220503.655|109.731 +637246.217|220507.361|109.753 +637242.297|220511.025|109.756 +637230.654|220521.924|110.073 +637226.856|220525.481|110.405 +637223.076|220529.026|110.810 +637219.370|220532.501|111.313 +637215.624|220536.009|111.673 +637212.061|220539.356|112.554 +637208.419|220542.773|113.337 +637204.761|220546.205|113.852 +637201.167|220549.579|114.636 +637197.565|220552.953|114.983 +637190.350|220559.720|116.056 +637186.732|220563.109|116.568 +637179.557|220569.827|117.040 +637176.055|220573.119|117.812 +637172.550|220576.404|118.385 +637168.959|220579.760|118.449 +637158.270|220589.764|118.784 +637151.101|220596.466|118.638 +637144.127|220602.995|118.857 +637331.915|220424.489|106.095 +637335.987|220420.654|105.491 +637348.407|220408.965|104.220 +637356.649|220401.205|103.099 +637360.889|220397.218|102.870 +637377.952|220381.183|102.346 +637448.062|220315.285|100.221 +637461.815|220302.389|101.557 +637479.932|220285.369|101.553 +637517.383|220250.265|106.135 +637531.081|220237.384|105.345 +637540.660|220228.414|107.028 +637545.330|220224.030|107.171 +637550.057|220219.599|107.701 +637554.715|220215.225|107.829 +637568.918|220201.896|108.539 +637573.679|220197.431|109.119 +637578.462|220192.953|109.841 +637583.262|220188.451|110.420 +637588.060|220183.955|110.978 +637602.398|220170.504|112.197 +637607.192|220166.006|112.535 +637611.953|220161.537|112.654 +637616.681|220157.093|112.581 +637626.108|220148.230|111.920 +637659.685|220116.710|112.892 +637664.525|220112.166|113.160 +637669.393|220107.600|113.660 +637679.113|220098.486|114.608 +637684.045|220093.865|115.318 +637703.567|220075.553|116.858 +637708.453|220070.972|117.351 +637718.225|220061.803|118.046 +637732.987|220047.965|119.595 +637737.927|220043.329|119.927 +637742.832|220038.730|120.393 +637747.772|220034.097|120.774 +637752.655|220029.516|121.103 +637757.560|220024.910|121.207 +637762.449|220020.320|121.198 +637767.341|220015.724|121.237 +637772.214|220011.146|121.113 +637777.058|220006.592|120.698 +637781.916|220002.014|120.000 +637786.750|219997.466|119.500 +637791.636|219992.870|119.076 +637796.437|219988.350|118.247 +637801.338|219983.732|117.495 +637806.184|219979.175|117.153 +637811.104|219974.548|116.595 +637815.969|219969.967|115.964 +637820.851|219965.377|115.535 +637825.792|219960.728|115.273 +637830.639|219956.175|114.974 +637835.552|219951.551|114.389 +637840.487|219946.909|114.075 +637845.382|219942.297|113.258 +637850.313|219937.661|112.919 +637855.227|219933.037|112.337 +637860.128|219928.423|111.603 +637865.035|219923.805|110.920 +637870.001|219919.132|110.420 +637874.972|219914.454|109.987 +637879.882|219909.845|110.054 +637889.809|219900.509|108.978 +637894.808|219895.815|108.985 +637899.807|219891.124|108.975 +637904.760|219886.473|109.079 +637909.753|219881.788|109.021 +637914.748|219877.097|109.088 +637919.741|219872.412|109.082 +637924.731|219867.728|109.055 +637929.726|219863.040|109.173 +637934.758|219858.315|109.125 +637939.745|219853.634|109.143 +637944.732|219848.952|109.167 +637949.715|219844.273|109.122 +637964.763|219830.164|110.256 +637969.814|219825.431|110.795 +637974.824|219820.740|111.523 +637979.884|219816.003|112.365 +637984.926|219811.279|112.868 +637989.946|219806.585|113.998 +637994.975|219801.866|114.379 +638000.007|219797.151|114.806 +638005.045|219792.430|115.449 +638010.062|219787.724|115.593 +638015.037|219783.060|115.864 +638020.063|219778.348|116.376 +638025.080|219773.642|116.699 +638030.091|219768.939|116.723 +638035.102|219764.239|116.900 +638040.107|219759.539|116.876 +638045.112|219754.842|116.800 +638050.113|219750.142|116.696 +638055.106|219745.448|116.284 +638060.111|219740.748|116.278 +638065.164|219736.005|116.330 +638070.169|219731.308|116.345 +638080.170|219721.914|115.919 +638085.168|219717.217|115.602 +638090.170|219712.520|115.486 +638095.172|219707.820|115.294 +638100.174|219703.120|115.129 +638105.179|219698.423|115.013 +638110.229|219693.680|114.904 +638115.185|219689.026|114.846 +638120.190|219684.326|114.675 +638125.241|219679.580|114.611 +638130.200|219674.926|114.477 +638135.201|219670.232|114.550 +638140.255|219665.496|114.968 +638145.211|219660.847|115.428 +638150.216|219656.160|116.031 +638155.218|219651.472|116.513 +638160.219|219646.787|117.092 +638165.218|219642.102|117.729 +638170.214|219637.423|118.449 +638175.213|219632.742|119.034 +638180.211|219628.054|119.348 +638185.161|219623.412|119.738 +638190.154|219618.733|120.326 +638195.150|219614.051|120.808 +638200.145|219609.363|121.045 +638205.101|219604.712|121.006 +638210.097|219600.027|121.320 +638215.047|219595.385|121.618 +638220.049|219590.691|121.682 +638225.047|219586.004|121.850 +638230.004|219581.349|121.862 +638234.957|219576.701|121.972 +638239.958|219572.007|122.076 +638244.920|219567.347|121.929 +638249.883|219562.689|121.890 +638254.848|219558.026|121.747 +638259.810|219553.369|121.707 +638264.836|219548.641|121.186 +638269.759|219544.017|120.975 +638274.730|219539.351|120.869 +638279.695|219534.690|120.905 +638284.673|219530.015|120.649 +638289.656|219525.330|120.253 +638294.542|219520.743|120.046 +638299.522|219516.064|119.826 +638304.515|219511.373|119.421 +638309.453|219506.734|119.204 +638314.433|219502.055|119.098 +638319.371|219497.419|118.961 +638324.312|219492.780|118.781 +638329.256|219488.138|118.644 +638334.197|219483.499|118.540 +638339.131|219478.866|118.564 +638344.081|219474.218|118.385 +638349.050|219469.548|117.866 +638354.015|219464.882|117.513 +638358.928|219460.267|117.232 +638354.768|219460.139|117.342 +638349.748|219464.845|117.699 +638344.682|219469.594|118.058 +638339.668|219474.297|118.439 +638334.623|219479.019|118.473 +638329.628|219483.697|118.525 +638324.580|219488.425|118.708 +638319.539|219493.152|118.854 +638314.497|219497.870|118.948 +638309.459|219502.592|119.098 +638304.421|219507.310|119.208 +638299.376|219512.041|119.573 +638294.332|219516.771|119.939 +638289.251|219521.532|120.113 +638284.212|219526.253|120.439 +638279.177|219530.972|120.732 +638274.111|219535.718|120.677 +638269.082|219540.427|120.856 +638264.053|219545.142|121.140 +638258.978|219549.897|121.454 +638253.909|219554.649|121.664 +638248.889|219559.352|121.786 +638243.823|219564.094|121.859 +638238.760|219568.837|121.935 +638233.750|219573.528|121.899 +638228.693|219578.262|121.780 +638223.636|219582.995|121.713 +638218.625|219587.686|121.655 +638213.572|219592.417|121.494 +638208.515|219597.150|121.436 +638203.513|219601.826|121.003 +638198.460|219606.556|120.853 +638193.406|219611.287|120.701 +638188.356|219616.008|120.262 +638183.302|219620.736|120.043 +638178.251|219625.457|119.457 +638173.247|219630.136|119.022 +638168.196|219634.857|118.452 +638163.094|219639.621|117.757 +638158.089|219644.300|117.059 +638153.032|219649.024|116.510 +638147.973|219653.752|115.934 +638142.962|219658.433|115.349 +638137.856|219663.210|114.870 +638132.793|219667.940|114.404 +638127.786|219672.628|114.251 +638122.723|219677.368|114.358 +638117.663|219682.107|114.456 +638112.649|219686.801|114.404 +638107.593|219691.541|114.660 +638102.533|219696.280|114.776 +638097.522|219700.974|114.925 +638092.511|219705.668|115.023 +638087.454|219710.408|115.202 +638082.447|219715.102|115.440 +638077.436|219719.793|115.577 +638072.382|219724.529|115.928 +638067.420|219729.178|115.971 +638062.366|219733.914|116.242 +638057.349|219738.608|116.077 +638052.338|219743.302|116.117 +638047.337|219747.993|116.550 +638042.329|219752.684|116.775 +638037.363|219757.335|116.800 +638032.301|219762.075|116.790 +638027.332|219766.726|116.739 +638022.315|219771.423|116.699 +638017.289|219776.123|116.318 +638012.300|219780.786|115.763 +638007.274|219785.489|115.565 +638002.296|219790.147|115.422 +637997.297|219794.819|114.773 +637992.308|219799.489|114.386 +637987.315|219804.158|113.962 +637982.289|219808.849|112.834 +637977.290|219813.525|112.423 +637972.270|219818.216|111.511 +637967.262|219822.898|110.993 +637962.242|219827.589|110.301 +637957.286|219832.228|109.969 +637947.316|219841.558|109.167 +637942.369|219846.187|109.140 +637937.425|219850.820|109.125 +637932.479|219855.456|109.097 +637927.529|219860.092|109.070 +637922.585|219864.725|109.128 +637917.629|219869.364|109.070 +637912.676|219874.007|109.027 +637907.774|219878.600|109.064 +637902.821|219883.239|109.079 +637897.917|219887.832|109.149 +637892.958|219892.481|109.085 +637888.048|219897.080|109.094 +637873.323|219910.887|109.972 +637868.437|219915.472|110.347 +637863.554|219920.053|110.804 +637858.680|219924.631|111.353 +637853.816|219929.197|112.039 +637849.003|219933.717|112.810 +637844.111|219938.307|113.139 +637839.246|219942.873|113.843 +637834.406|219947.415|114.227 +637829.523|219951.999|114.700 +637824.692|219956.531|115.251 +637819.827|219961.091|115.416 +637814.990|219965.630|115.879 +637810.116|219970.208|116.480 +637805.343|219974.688|117.147 +637800.491|219979.239|117.479 +637795.693|219983.741|117.912 +637790.883|219988.258|118.720 +637786.113|219992.739|119.427 +637781.258|219997.292|119.774 +637776.463|220001.791|120.256 +637771.675|220006.287|120.786 +637766.865|220010.798|121.131 +637762.037|220015.324|121.332 +637757.176|220019.878|121.204 +637752.357|220024.389|121.061 +637747.477|220028.955|120.814 +637742.637|220033.487|120.503 +637737.729|220038.075|120.076 +637732.880|220042.613|119.762 +637728.037|220047.149|119.512 +637718.313|220056.244|118.799 +637679.400|220092.631|114.562 +637645.603|220124.236|111.139 +637640.772|220128.753|110.374 +637608.015|220159.474|112.356 +637603.294|220163.896|112.209 +637598.554|220168.331|111.981 +637570.065|220194.977|109.119 +637555.797|220208.312|107.125 +637514.085|220247.369|105.620 +637486.119|220273.512|101.846 +637476.981|220282.065|101.371 +637472.464|220286.295|101.300 +637445.297|220311.728|100.212 +637354.180|220397.145|103.672 +637337.511|220412.787|105.211 +637333.356|220416.686|105.680 +637329.278|220420.514|106.293 +637325.246|220424.306|107.110 +637321.106|220428.189|107.451 +637313.051|220435.757|108.701 +637308.972|220439.582|109.125 +637304.900|220443.402|109.344 +637300.871|220447.181|109.777 +637296.844|220450.958|110.237 +637292.824|220454.731|110.728 +637288.813|220458.495|111.271 +637284.814|220462.244|111.652 +637280.772|220466.033|111.853 +637276.804|220469.755|112.170 +637272.765|220473.534|112.197 +637268.693|220477.344|112.100 +637264.636|220481.142|112.075 +637260.597|220484.922|111.929 +637256.489|220488.762|111.502 +637248.354|220496.367|110.826 +637244.300|220500.158|110.451 +637240.298|220503.904|110.316 +637236.247|220507.693|110.003 +637232.348|220511.342|110.112 +637228.453|220514.993|110.240 +637220.699|220522.250|110.274 +637216.993|220525.731|110.987 +637213.183|220529.304|111.304 +637209.363|220532.882|111.374 +637205.630|220536.387|112.005 +637202.036|220539.761|112.785 +637198.424|220543.154|113.508 +637194.843|220546.522|114.343 +637191.219|220549.923|115.026 +637187.576|220553.340|115.647 +637183.873|220556.812|115.830 +637176.689|220563.554|116.882 +637173.104|220566.916|117.351 +637162.266|220577.075|118.068 +637155.136|220583.753|118.436 +637147.967|220590.468|118.695 +637144.426|220593.784|118.799 +637137.266|220600.487|118.756 +637328.230|220418.704|106.491 +637332.305|220414.869|105.906 +637336.462|220410.962|105.473 +637340.595|220407.078|105.174 +637353.141|220395.289|104.071 +637361.346|220387.568|102.565 +637365.598|220383.572|102.428 +637378.363|220371.581|101.377 +637404.692|220346.893|102.389 +637409.078|220342.778|102.315 +637439.924|220313.828|101.715 +637444.221|220309.777|100.785 +637448.492|220305.754|99.700 +637480.337|220275.898|101.246 +637499.028|220258.406|103.730 +637503.694|220254.035|104.248 +637508.437|220249.597|104.943 +637517.767|220240.852|105.793 +637526.893|220232.278|105.211 +637540.959|220219.093|106.506 +637545.665|220214.682|106.887 +637550.374|220210.263|107.000 +637555.096|220205.840|107.534 +637593.211|220170.133|111.847 +637597.972|220165.664|111.911 +637602.718|220161.214|112.246 +637621.643|220143.441|111.633 +637631.028|220134.617|110.691 +637640.519|220125.702|110.246 +637645.469|220121.069|111.222 +637655.192|220111.958|112.289 +637659.929|220107.511|112.084 +637664.912|220102.848|113.081 +637684.450|220084.542|115.041 +637689.269|220080.024|115.269 +637718.722|220052.434|118.589 +637733.444|220038.632|119.829 +637738.342|220034.042|120.216 +637743.280|220029.415|120.555 +637748.163|220024.837|120.869 +637753.088|220020.216|121.155 +637757.998|220015.611|121.338 +637762.866|220011.039|121.128 +637767.728|220006.473|120.844 +637772.574|220001.916|120.463 +637777.460|219997.323|119.991 +637782.306|219992.769|119.619 +637787.183|219988.182|119.076 +637792.036|219983.616|118.275 +637796.912|219979.029|117.738 +637801.795|219974.438|117.278 +637806.675|219969.851|116.790 +637811.589|219965.230|116.147 +637816.462|219960.646|115.611 +637821.400|219956.007|115.260 +637826.286|219951.414|114.870 +637831.202|219946.790|114.294 +637836.134|219942.154|113.919 +637840.996|219937.582|113.255 +637845.976|219932.903|112.880 +637850.871|219928.295|112.048 +637855.779|219923.677|111.353 +637860.701|219919.050|110.893 +637865.624|219914.420|110.423 +637870.598|219909.748|109.984 +637875.536|219905.105|109.756 +637880.461|219900.475|109.338 +637885.445|219895.791|109.085 +637890.437|219891.100|108.997 +637895.439|219886.403|109.061 +637900.435|219881.709|109.052 +637905.391|219877.061|109.140 +637910.429|219872.327|109.113 +637915.419|219867.639|109.079 +637920.411|219862.951|109.116 +637925.450|219858.221|109.125 +637930.436|219853.536|109.097 +637935.475|219848.806|109.149 +637940.507|219844.078|109.149 +637945.490|219839.400|109.079 +637960.602|219825.229|110.533 +637965.659|219820.493|111.152 +637970.755|219815.717|111.658 +637975.772|219811.020|112.593 +637980.811|219806.292|113.066 +637985.877|219801.555|114.148 +637990.906|219796.837|114.489 +637995.935|219792.119|114.861 +638000.973|219787.398|115.477 +638005.996|219782.685|115.724 +638011.013|219777.976|115.961 +638016.040|219773.264|116.385 +638021.060|219768.555|116.726 +638026.074|219763.849|116.928 +638031.078|219759.149|116.900 +638036.080|219754.449|116.745 +638041.085|219749.749|116.675 +638046.081|219745.052|116.202 +638051.086|219740.348|116.233 +638056.136|219735.606|116.144 +638061.138|219730.906|115.977 +638066.140|219726.206|115.861 +638071.190|219721.463|115.647 +638076.140|219716.806|115.337 +638081.191|219712.060|115.157 +638086.193|219707.360|114.959 +638091.197|219702.660|114.806 +638096.248|219697.914|114.739 +638101.250|219693.211|114.273 +638106.255|219688.508|114.245 +638111.308|219683.765|114.279 +638116.313|219679.062|114.221 +638121.321|219674.359|114.130 +638126.326|219669.656|114.047 +638131.330|219664.965|114.431 +638136.335|219660.271|114.925 +638141.340|219655.580|115.468 +638146.345|219650.890|116.035 +638151.350|219646.202|116.608 +638156.352|219641.514|117.174 +638161.301|219636.872|117.842 +638166.300|219632.190|118.510 +638171.299|219627.502|118.958 +638176.249|219622.863|119.512 +638181.248|219618.175|119.881 +638186.246|219613.484|120.131 +638191.193|219608.845|120.564 +638196.146|219604.194|120.658 +638201.139|219599.515|121.268 +638206.092|219594.870|121.454 +638211.097|219590.167|121.335 +638216.047|219585.522|121.573 +638221.003|219580.871|121.658 +638226.005|219576.171|121.658 +638230.912|219571.568|121.865 +638235.917|219566.868|121.847 +638240.876|219562.211|121.871 +638245.838|219557.547|121.756 +638250.800|219552.887|121.686 +638255.774|219548.211|121.329 +638260.727|219543.563|121.582 +638265.714|219538.875|120.969 +638270.643|219534.242|120.671 +638275.571|219529.609|120.430 +638280.530|219524.955|120.646 +638285.474|219520.307|120.110 +638290.452|219515.631|119.951 +638295.338|219511.038|119.723 +638300.281|219506.390|119.323 +638305.219|219501.751|119.137 +638310.157|219497.108|118.933 +638315.095|219492.472|118.833 +638319.987|219487.879|118.702 +638324.928|219483.237|118.570 +638329.820|219478.638|118.452 +638334.760|219474.002|118.427 +638339.656|219469.402|118.345 +638344.569|219464.781|117.967 +638349.488|219460.157|117.580 +638344.974|219460.898|117.781 +638339.951|219465.607|118.232 +638334.953|219470.286|118.305 +638329.999|219474.922|118.388 +638325.004|219479.601|118.473 +638320.005|219484.279|118.625 +638315.006|219488.958|118.775 +638309.965|219493.679|118.884 +638304.972|219498.355|119.058 +638299.980|219503.028|119.204 +638294.932|219507.761|119.631 +638289.940|219512.434|119.835 +638284.907|219517.149|120.018 +638279.860|219521.877|120.512 +638274.892|219526.525|120.311 +638269.811|219531.286|120.604 +638264.824|219535.955|120.890 +638259.786|219540.680|121.448 +638254.717|219545.422|121.527 +638249.749|219550.074|121.460 +638244.677|219554.822|121.722 +638239.660|219559.522|121.838 +638234.646|219564.210|121.750 +638229.586|219568.947|121.737 +638224.575|219573.632|121.561 +638219.561|219578.326|121.658 +638214.507|219583.050|121.314 +638209.448|219587.787|121.390 +638204.437|219592.474|121.366 +638199.383|219597.202|121.250 +638194.336|219601.917|120.668 +638184.274|219611.320|120.043 +638179.221|219616.048|119.747 +638174.216|219620.726|119.470 +638169.162|219625.445|118.839 +638164.109|219630.169|118.482 +638159.101|219634.845|117.796 +638154.044|219639.566|117.153 +638148.988|219644.291|116.638 +638143.977|219648.969|116.035 +638138.917|219653.697|115.474 +638133.808|219658.467|114.916 +638128.795|219663.152|114.413 +638123.735|219667.879|113.992 +638118.672|219672.619|114.026 +638113.658|219677.310|113.956 +638108.595|219682.046|114.047 +638103.536|219686.786|114.166 +638098.476|219691.522|114.255 +638093.413|219696.259|114.373 +638088.357|219700.999|114.636 +638083.346|219705.690|114.843 +638078.286|219710.426|114.956 +638073.229|219715.163|115.196 +638068.218|219719.854|115.440 +638063.211|219724.545|115.660 +638058.151|219729.281|115.687 +638053.146|219733.972|116.071 +638048.080|219738.709|115.900 +638043.066|219743.403|115.958 +638038.071|219748.087|116.629 +638033.011|219752.824|116.772 +638028.000|219757.515|116.851 +638022.980|219762.209|116.742 +638017.957|219766.906|116.528 +638012.931|219771.606|116.281 +638007.901|219776.309|115.897 +638002.872|219781.009|115.647 +637997.840|219785.715|115.358 +637992.844|219790.378|114.809 +637987.806|219795.088|114.434 +637982.813|219799.751|114.075 +637977.738|219804.482|112.983 +637972.743|219809.151|112.606 +637967.713|219813.842|111.591 +637962.657|219818.563|111.097 +637957.643|219823.245|110.563 +637952.653|219827.899|109.548 +637937.654|219841.923|109.146 +637932.664|219846.593|109.183 +637927.760|219851.180|109.128 +637922.761|219855.856|109.088 +637917.812|219860.486|109.125 +637912.862|219865.119|109.131 +637907.860|219869.797|109.122 +637902.949|219874.391|109.073 +637897.999|219879.024|109.158 +637893.037|219883.663|109.100 +637888.130|219888.256|109.119 +637883.162|219892.901|109.030 +637878.255|219897.495|109.100 +637873.347|219902.097|109.908 +637868.440|219906.690|110.030 +637863.542|219911.278|110.259 +637858.662|219915.850|110.804 +637853.825|219920.382|111.234 +637848.902|219924.997|111.834 +637844.092|219929.508|112.627 +637839.216|219934.080|113.203 +637834.391|219938.603|113.791 +637829.493|219943.193|114.096 +637824.661|219947.720|114.663 +637819.827|219952.252|115.169 +637815.002|219956.775|115.809 +637810.186|219961.280|116.025 +637805.313|219965.852|116.647 +637800.546|219970.324|117.385 +637795.681|219974.877|117.626 +637790.890|219979.367|118.110 +637786.119|219983.842|118.851 +637781.291|219988.368|119.476 +637776.482|219992.873|119.811 +637771.678|219997.375|120.216 +637766.862|220001.883|120.530 +637762.086|220006.354|120.759 +637757.252|220010.880|120.911 +637752.405|220015.416|120.939 +637747.599|220019.912|120.948 +637742.765|220024.429|120.689 +637737.906|220028.967|120.247 +637728.180|220038.053|119.375 +637713.620|220051.650|118.147 +637679.643|220083.374|114.410 +637670.006|220092.384|113.779 +637660.255|220101.479|112.404 +637655.409|220105.999|111.414 +637641.037|220119.429|110.697 +637636.164|220123.974|109.643 +637631.540|220128.314|110.454 +637626.821|220132.731|110.603 +637622.149|220137.104|110.734 +637593.991|220163.467|111.743 +637575.176|220181.057|110.737 +637551.328|220203.313|107.009 +637546.631|220207.702|106.680 +637541.947|220212.082|106.458 +637537.128|220216.572|105.129 +637532.492|220220.906|104.961 +637481.477|220268.580|101.243 +637476.963|220272.808|101.441 +637463.454|220285.448|101.541 +637445.203|220302.501|100.100 +637440.997|220306.461|101.557 +637345.768|220395.615|105.220 +637341.629|220399.495|105.732 +637337.410|220403.442|105.897 +637333.225|220407.359|105.985 +637329.025|220411.294|106.253 +637324.892|220415.168|106.601 +637320.838|220418.972|107.329 +637316.845|220422.715|108.119 +637312.773|220426.537|108.777 +637308.701|220430.353|109.213 +637304.662|220434.139|109.582 +637300.624|220437.924|110.201 +637296.536|220441.753|110.374 +637292.522|220445.517|110.890 +637288.514|220449.275|111.207 +637284.509|220453.033|111.780 +637280.580|220456.718|112.243 +637272.622|220464.180|112.996 +637268.534|220468.002|112.813 +637264.496|220471.785|112.862 +637260.469|220475.552|112.752 +637256.416|220479.347|112.761 +637252.295|220483.193|112.289 +637248.198|220487.025|111.926 +637244.178|220490.783|111.691 +637240.139|220494.559|111.395 +637236.052|220498.378|110.911 +637232.126|220502.054|110.890 +637228.069|220505.846|110.569 +637224.186|220509.479|110.542 +637220.281|220513.134|110.658 +637216.420|220516.752|110.740 +637212.604|220520.327|111.021 +637208.787|220523.906|111.313 +637204.977|220527.475|111.426 +637201.189|220531.023|111.642 +637197.516|220534.467|112.121 +637186.619|220544.699|114.279 +637183.059|220548.046|115.010 +637179.423|220551.456|115.465 +637175.823|220554.834|116.062 +637172.175|220558.257|116.483 +637168.676|220561.539|117.083 +637161.534|220568.236|117.961 +637157.874|220571.668|118.168 +637150.787|220578.306|118.705 +637147.169|220581.696|118.906 +637143.578|220585.058|118.817 +637136.489|220591.696|119.022 +637129.301|220598.417|118.717 +637323.277|220414.336|106.802 +637327.416|220410.443|106.503 +637331.631|220406.481|106.330 +637335.865|220402.506|106.244 +637340.117|220398.511|106.028 +637373.828|220366.796|102.349 +637471.650|220274.938|101.459 +637476.195|220270.671|101.422 +637522.717|220227.063|104.793 +637527.313|220222.741|104.434 +637541.541|220209.424|106.436 +637546.272|220204.999|106.970 +637570.104|220182.687|110.054 +637579.654|220173.741|110.826 +637598.618|220155.962|111.786 +637612.795|220142.658|111.380 +637617.504|220138.235|111.179 +637622.155|220133.861|110.582 +637655.738|220102.369|111.484 +637675.309|220084.057|114.255 +637680.134|220079.534|114.504 +637694.697|220065.882|115.312 +637714.391|220047.456|118.196 +637729.119|220033.658|119.430 +637734.032|220029.059|119.930 +637738.927|220024.471|120.311 +637743.865|220019.845|120.652 +637748.726|220015.288|120.768 +637753.622|220010.694|120.786 +637758.456|220006.159|120.671 +637763.375|220001.541|120.497 +637768.191|219997.018|120.250 +637773.092|219992.416|119.912 +637777.951|219987.850|119.671 +637782.818|219983.275|118.997 +637787.634|219978.745|118.311 +637792.471|219974.201|117.839 +637797.412|219969.559|117.485 +637802.234|219965.026|116.870 +637807.151|219960.405|116.236 +637812.040|219955.812|115.867 +637816.910|219951.234|115.257 +637821.842|219946.598|114.861 +637826.694|219942.035|114.059 +637831.644|219937.390|113.849 +637836.512|219932.812|113.279 +637841.432|219928.188|112.706 +637846.333|219923.579|111.917 +637851.243|219918.962|111.264 +637856.172|219914.332|110.835 +637861.088|219909.711|110.268 +637866.062|219905.035|109.838 +637871.012|219900.393|109.728 +637875.908|219895.791|108.856 +637880.912|219891.097|108.863 +637885.923|219886.403|108.994 +637890.876|219881.758|109.000 +637895.918|219877.030|108.908 +637900.877|219872.382|109.085 +637905.869|219867.700|109.036 +637910.862|219863.019|108.957 +637915.861|219858.334|109.052 +637920.856|219853.649|109.140 +637925.892|219848.928|109.076 +637930.884|219844.246|109.152 +637935.920|219839.528|109.113 +637940.906|219834.852|109.103 +637950.956|219825.440|109.728 +637955.988|219820.737|110.719 +637961.038|219816.009|111.185 +637966.083|219811.285|111.621 +637971.109|219806.591|112.648 +637976.147|219801.872|113.051 +637981.213|219797.139|114.111 +637986.248|219792.424|114.507 +637991.278|219787.715|114.788 +637996.316|219782.999|115.334 +638001.342|219778.293|115.718 +638006.414|219773.541|115.955 +638011.434|219768.838|116.227 +638016.457|219764.135|116.565 +638021.471|219759.435|116.662 +638026.479|219754.741|116.641 +638031.536|219749.998|116.681 +638036.525|219745.311|115.980 +638041.533|219740.614|115.922 +638046.587|219735.874|115.873 +638056.593|219726.486|115.434 +638061.650|219721.747|115.462 +638066.652|219717.053|115.163 +638071.654|219712.359|114.937 +638076.707|219707.619|114.690 +638081.761|219702.879|114.642 +638086.717|219698.225|114.291 +638091.770|219693.485|114.172 +638096.827|219688.746|114.130 +638101.832|219684.046|113.849 +638106.840|219679.352|113.843 +638111.896|219674.609|113.806 +638116.904|219669.915|113.809 +638121.961|219665.176|113.986 +638126.969|219660.491|114.425 +638131.977|219655.803|114.983 +638136.985|219651.115|115.468 +638142.038|219646.388|116.053 +638147.043|219641.703|116.656 +638152.048|219637.021|117.196 +638157.095|219632.297|117.763 +638162.048|219627.664|118.427 +638167.096|219622.939|118.964 +638172.098|219618.258|119.351 +638177.099|219613.576|119.677 +638182.147|219608.845|119.915 +638187.146|219604.164|120.226 +638192.099|219599.528|120.655 +638197.143|219594.803|121.042 +638202.093|219590.167|121.338 +638207.098|219585.473|121.344 +638212.148|219580.740|121.426 +638217.104|219576.098|121.594 +638222.067|219571.440|121.408 +638227.068|219566.755|121.658 +638232.024|219562.110|121.804 +638237.038|219557.410|121.698 +638242.046|219552.716|121.701 +638247.014|219548.053|121.527 +638251.980|219543.395|121.451 +638256.948|219538.738|121.359 +638261.965|219534.032|121.256 +638266.955|219529.341|120.585 +638271.880|219524.723|120.536 +638276.848|219520.063|120.570 +638281.832|219515.384|120.226 +638286.773|219510.745|119.857 +638291.753|219506.073|119.713 +638296.700|219501.431|119.339 +638301.687|219496.749|119.092 +638306.627|219492.116|118.948 +638311.568|219487.480|118.775 +638316.512|219482.844|118.610 +638321.453|219478.208|118.522 +638326.397|219473.572|118.403 +638331.341|219468.933|118.296 +638336.242|219464.336|118.189 +638341.198|219459.682|117.927 +638339.223|219457.884|117.866 +638334.267|219462.523|117.988 +638329.311|219467.162|118.144 +638324.309|219471.840|118.293 +638319.356|219476.473|118.430 +638314.357|219481.152|118.577 +638309.413|219485.779|118.653 +638304.418|219490.455|118.839 +638299.376|219495.173|119.000 +638294.426|219499.806|119.287 +638289.382|219504.527|119.607 +638284.392|219509.200|119.808 +638279.396|219513.879|120.238 +638274.373|219518.579|120.207 +638269.390|219523.242|120.387 +638264.403|219527.909|120.628 +638259.362|219532.633|121.222 +638254.336|219537.336|121.417 +638249.364|219541.984|121.402 +638244.293|219546.736|121.695 +638239.327|219551.378|121.558 +638234.310|219556.069|121.615 +638229.296|219560.760|121.618 +638224.282|219565.448|121.564 +638219.275|219570.126|121.298 +638214.209|219574.869|121.591 +638209.253|219579.502|121.244 +638204.196|219584.230|121.143 +638199.136|219588.960|121.122 +638194.177|219593.596|120.927 +638189.124|219598.318|120.631 +638184.073|219603.030|120.058 +638179.068|219607.708|119.762 +638174.015|219612.433|119.531 +638168.958|219617.154|119.165 +638163.950|219621.833|118.927 +638158.851|219626.594|118.287 +638153.797|219631.312|117.775 +638148.786|219635.988|117.126 +638143.730|219640.709|116.550 +638138.624|219645.476|116.013 +638133.610|219650.155|115.394 +638128.551|219654.879|114.864 +638123.439|219659.649|114.285 +638118.428|219664.331|113.907 +638113.362|219669.062|113.602 +638108.254|219673.841|113.636 +638103.237|219678.532|113.627 +638098.174|219683.268|113.593 +638093.066|219688.048|113.724 +638088.058|219692.739|114.133 +638082.995|219697.475|114.108 +638077.939|219702.209|114.413 +638072.876|219706.942|114.437 +638067.819|219711.679|114.657 +638062.759|219716.412|114.788 +638057.749|219721.100|115.026 +638052.689|219725.834|115.184 +638047.635|219730.567|115.529 +638042.630|219735.255|115.849 +638037.571|219739.989|115.989 +638032.508|219744.722|115.967 +638027.500|219749.410|116.242 +638022.443|219754.144|116.486 +638017.381|219758.877|116.507 +638012.358|219763.574|116.321 +638007.335|219768.268|116.114 +638002.260|219773.011|115.888 +637997.233|219777.708|115.715 +637992.143|219782.463|115.123 +637987.102|219787.172|114.654 +637982.064|219791.878|114.328 +637976.967|219796.636|113.828 +637971.898|219801.363|112.923 +637966.891|219806.039|112.307 +637961.822|219810.770|111.520 +637956.768|219815.491|111.109 +637951.754|219820.173|110.582 +637946.637|219824.934|109.039 +637936.654|219834.273|109.122 +637931.616|219838.988|109.143 +637926.617|219843.664|109.103 +637921.670|219848.291|109.158 +637916.672|219852.966|109.137 +637911.712|219857.602|109.061 +637906.720|219862.278|109.161 +637901.764|219866.911|109.140 +637896.802|219871.553|109.039 +637891.800|219876.232|109.125 +637886.890|219880.825|109.131 +637881.927|219885.467|109.100 +637876.962|219890.112|109.030 +637872.049|219894.706|109.085 +637867.126|219899.320|109.664 +637862.234|219903.904|110.006 +637857.293|219908.531|110.347 +637852.407|219913.106|110.819 +637847.531|219917.681|111.365 +637842.660|219922.247|112.017 +637837.844|219926.761|112.791 +637832.973|219931.327|113.422 +637828.133|219935.863|113.867 +637823.235|219940.450|114.206 +637818.422|219944.964|114.977 +637813.585|219949.497|115.483 +637808.693|219954.081|115.882 +637803.904|219958.570|116.403 +637799.076|219963.094|117.043 +637794.242|219967.626|117.583 +637789.387|219972.171|117.936 +637784.638|219976.621|118.385 +637779.807|219981.150|119.009 +637775.034|219985.625|119.720 +637770.203|219990.148|119.857 +637765.439|219994.610|120.189 +637760.601|219999.136|120.302 +637755.813|220003.614|120.442 +637750.976|220008.143|120.582 +637746.166|220012.642|120.549 +637741.341|220017.153|120.387 +637736.504|220021.673|120.134 +637731.645|220026.212|119.726 +637726.784|220030.753|119.305 +637717.116|220039.785|118.638 +637707.368|220048.883|117.400 +637673.477|220080.524|113.776 +637668.686|220085.002|113.489 +637663.879|220089.491|113.136 +637659.021|220094.024|112.389 +637649.282|220103.110|110.844 +637639.715|220112.050|110.371 +637630.107|220121.014|108.985 +637616.172|220134.075|110.710 +637611.551|220138.406|111.255 +637606.848|220142.807|111.588 +637602.157|220147.196|111.655 +637597.500|220151.552|111.652 +637592.790|220155.956|111.639 +637578.654|220169.166|111.021 +637564.438|220182.440|109.789 +637554.962|220191.292|109.100 +637540.688|220204.609|106.948 +637512.344|220231.056|103.510 +637503.127|220239.676|103.440 +637493.785|220248.396|102.453 +637489.158|220252.715|101.956 +637484.498|220257.068|101.590 +637479.917|220261.350|101.395 +637475.339|220265.627|101.267 +637470.831|220269.848|101.520 +637373.081|220361.270|102.632 +637339.398|220392.823|106.159 +637335.255|220396.703|106.677 +637331.006|220400.675|106.711 +637326.803|220404.607|106.735 +637322.563|220408.572|106.839 +637318.467|220412.412|107.366 +637314.477|220416.152|108.171 +637310.438|220419.941|108.750 +637306.436|220423.693|109.518 +637302.349|220427.521|109.899 +637298.274|220431.338|110.347 +637294.293|220435.071|110.999 +637290.191|220438.909|111.127 +637286.176|220442.667|111.658 +637282.223|220446.370|112.243 +637278.194|220450.138|112.508 +637274.195|220453.881|112.904 +637270.144|220457.669|113.096 +637266.099|220461.452|113.331 +637262.094|220465.198|113.526 +637258.037|220468.983|113.288 +637253.971|220472.781|113.261 +637249.881|220476.597|112.916 +637245.805|220480.401|112.657 +637241.773|220484.166|112.374 +637237.783|220487.890|112.282 +637233.732|220491.670|111.956 +637229.733|220495.401|111.645 +637225.759|220499.113|111.444 +637221.833|220502.780|111.466 +637217.883|220506.465|111.188 +637213.942|220510.147|111.170 +637210.150|220513.695|111.560 +637206.376|220517.227|111.813 +637198.702|220524.396|111.865 +637194.879|220527.965|111.755 +637187.589|220534.796|112.959 +637183.913|220538.234|113.468 +637180.298|220541.624|113.998 +637176.713|220544.979|114.669 +637173.162|220548.311|115.465 +637169.611|220551.636|116.074 +637166.076|220554.949|116.736 +637158.864|220561.698|117.568 +637155.335|220564.999|117.885 +637151.784|220568.324|118.321 +637148.163|220571.707|118.516 +637126.717|220591.745|118.720 +637322.993|220406.039|107.015 +637327.187|220402.107|106.973 +637331.366|220398.187|106.628 +637335.655|220394.170|106.817 +637369.173|220362.678|102.181 +637373.581|220358.551|102.590 +637448.678|220288.136|100.368 +637467.197|220270.811|102.447 +637471.529|220266.733|101.218 +637476.119|220262.429|101.169 +637480.712|220258.129|101.435 +637485.357|220253.782|101.742 +637490.015|220249.417|101.855 +637508.684|220231.934|103.056 +637518.175|220223.055|104.284 +637527.612|220214.222|105.309 +637537.146|220205.300|106.449 +637565.813|220178.481|110.332 +637603.769|220142.908|111.609 +637613.096|220134.148|110.484 +637627.233|220120.865|108.902 +637632.168|220116.256|110.027 +637671.027|220079.875|113.493 +637680.792|220070.728|114.087 +637685.681|220066.156|114.882 +637700.373|220052.403|116.047 +637705.347|220047.758|117.309 +637715.156|220038.575|118.333 +637724.940|220029.418|119.244 +637729.838|220024.831|119.601 +637734.733|220020.247|119.948 +637739.674|220015.620|120.308 +637744.538|220011.060|120.427 +637749.379|220006.522|120.354 +637754.274|220001.931|120.338 +637759.105|219997.399|120.213 +637764.030|219992.778|120.085 +637768.846|219988.258|119.838 +637773.760|219983.649|119.604 +637778.582|219979.117|118.955 +637783.410|219974.582|118.372 +637788.302|219969.988|117.964 +637793.209|219965.386|117.711 +637798.068|219960.817|116.976 +637802.890|219956.284|116.333 +637807.824|219951.652|115.910 +637812.707|219947.064|115.449 +637817.578|219942.492|114.821 +637827.377|219933.284|113.755 +637832.303|219928.660|113.243 +637837.161|219924.091|112.526 +637842.072|219919.477|111.840 +637846.985|219914.859|111.179 +637851.908|219910.238|110.640 +637856.830|219905.611|110.128 +637861.789|219900.963|110.064 +637866.669|219896.370|108.966 +637871.640|219891.709|109.119 +637876.581|219887.070|108.872 +637881.589|219882.376|108.920 +637886.554|219877.722|109.055 +637891.559|219873.028|109.140 +637896.558|219868.340|109.100 +637901.505|219863.701|109.049 +637906.503|219859.013|109.049 +637911.502|219854.326|109.134 +637916.501|219849.641|109.183 +637921.494|219844.959|109.164 +637926.483|219840.277|109.155 +637931.525|219835.550|109.201 +637936.511|219830.874|109.152 +637941.531|219826.174|109.750 +637946.585|219821.444|110.140 +637951.657|219816.701|110.923 +637956.661|219812.013|111.423 +637961.755|219807.243|111.776 +637966.784|219802.543|112.846 +637971.825|219797.822|113.236 +637976.937|219793.045|114.212 +637981.926|219788.373|114.562 +637986.959|219783.658|114.885 +637992.043|219778.897|115.340 +637997.078|219774.184|115.827 +638002.101|219769.478|116.031 +638007.170|219764.726|116.217 +638012.138|219760.069|116.339 +638017.198|219755.323|116.318 +638022.212|219750.620|116.394 +638027.211|219745.926|115.885 +638032.267|219741.184|115.821 +638037.278|219736.484|115.836 +638042.283|219731.787|115.507 +638047.334|219727.047|115.263 +638052.338|219722.347|114.992 +638057.346|219717.650|114.776 +638062.400|219712.907|114.529 +638067.456|219708.165|114.431 +638072.461|219703.465|114.215 +638082.575|219693.979|113.998 +638087.582|219689.279|113.739 +638092.688|219684.488|113.474 +638102.758|219675.045|113.474 +638107.815|219670.299|113.179 +638112.924|219665.514|113.642 +638117.938|219660.820|114.053 +638122.991|219656.086|114.526 +638128.051|219651.353|115.074 +638133.107|219646.622|115.721 +638138.164|219641.889|116.181 +638143.218|219637.158|116.894 +638148.223|219632.473|117.452 +638153.276|219627.746|117.964 +638158.372|219622.976|118.580 +638163.374|219618.291|118.982 +638168.379|219613.603|119.262 +638173.475|219608.827|119.601 +638178.480|219604.139|119.848 +638183.482|219599.454|120.143 +638188.529|219594.730|120.619 +638193.534|219590.039|120.799 +638198.582|219585.309|121.094 +638203.590|219580.615|121.097 +638208.591|219575.927|121.359 +638213.645|219571.190|121.436 +638218.708|219566.441|121.189 +638223.664|219561.796|121.454 +638228.717|219557.057|121.539 +638233.777|219552.314|121.542 +638238.736|219547.669|121.734 +638243.805|219542.911|121.402 +638248.822|219538.208|121.353 +638253.839|219533.502|121.292 +638258.862|219528.789|121.082 +638263.949|219524.010|120.427 +638268.927|219519.344|120.302 +638273.956|219514.628|120.134 +638278.976|219509.919|120.125 +638284.014|219505.192|119.756 +638289.050|219500.470|119.573 +638294.045|219495.780|119.162 +638299.041|219491.092|118.854 +638304.073|219486.370|118.766 +638309.017|219481.734|118.619 +638314.010|219477.053|118.488 +638319.011|219472.362|118.253 +638324.007|219467.674|118.092 +638329.006|219462.989|117.973 +638333.910|219458.387|117.827 +638331.371|219457.338|117.751 +638326.366|219462.014|117.821 +638321.410|219466.647|117.970 +638316.402|219471.325|118.153 +638311.394|219476.007|118.430 +638306.441|219480.637|118.583 +638301.443|219485.307|118.729 +638296.450|219489.976|118.842 +638291.445|219494.655|119.214 +638286.443|219499.334|119.573 +638281.448|219504.003|119.835 +638276.452|219508.673|120.128 +638271.469|219513.327|120.143 +638266.485|219517.984|120.216 +638261.441|219522.706|120.759 +638256.451|219527.372|121.119 +638251.471|219532.023|121.207 +638246.445|219536.717|121.277 +638241.421|219541.411|121.359 +638236.490|219546.023|121.579 +638231.470|219550.711|121.600 +638226.459|219555.389|121.362 +638221.490|219560.028|121.280 +638216.473|219564.710|121.177 +638211.502|219569.355|121.237 +638206.488|219574.040|121.207 +638201.471|219578.725|121.247 +638196.512|219583.355|120.939 +638191.501|219588.030|120.698 +638186.490|219592.706|120.445 +638181.528|219597.336|120.125 +638176.517|219602.009|119.811 +638171.555|219606.639|119.509 +638166.544|219611.314|119.180 +638161.579|219615.947|118.878 +638156.568|219620.623|118.613 +638151.557|219625.292|118.001 +638146.546|219629.968|117.552 +638141.581|219634.595|116.952 +638136.567|219639.271|116.364 +638131.501|219643.989|115.824 +638126.533|219648.622|115.227 +638121.513|219653.300|114.632 +638116.496|219657.979|114.151 +638111.479|219662.661|113.776 +638106.456|219667.343|113.343 +638101.387|219672.073|112.892 +638096.416|219676.718|113.224 +638091.395|219681.406|113.221 +638086.330|219686.140|113.185 +638081.361|219690.785|113.535 +638076.299|219695.518|113.736 +638071.282|219700.206|113.855 +638066.265|219704.894|113.980 +638061.251|219709.579|114.258 +638056.234|219714.267|114.340 +638051.220|219718.955|114.572 +638046.206|219723.639|114.861 +638041.195|219728.324|115.215 +638036.187|219733.012|115.541 +638031.170|219737.697|115.681 +638026.199|219742.339|115.745 +638021.185|219747.027|115.922 +638016.174|219751.711|116.156 +638011.199|219756.357|116.138 +638006.179|219761.047|116.190 +638001.153|219765.738|116.044 +637996.170|219770.390|115.888 +637991.131|219775.090|115.474 +637986.136|219779.747|114.995 +637981.094|219784.447|114.669 +637976.050|219789.150|114.261 +637971.039|219793.820|113.590 +637965.982|219798.532|112.971 +637960.965|219803.204|112.279 +637955.899|219807.926|111.630 +637950.892|219812.595|111.258 +637945.820|219817.320|110.591 +637930.714|219831.402|109.131 +637925.764|219836.022|109.143 +637920.710|219840.741|109.000 +637915.718|219845.401|109.173 +637910.725|219850.068|109.295 +637905.717|219854.740|109.180 +637900.743|219859.379|108.936 +637895.799|219864.000|109.140 +637890.788|219868.679|109.058 +637885.829|219873.309|109.082 +637880.821|219877.984|109.125 +637875.904|219882.575|109.085 +637870.939|219887.208|109.122 +637865.980|219891.844|109.189 +637861.021|219896.473|109.332 +637856.126|219901.061|110.301 +637851.255|219905.608|110.344 +637846.324|219910.220|110.890 +637841.398|219914.832|111.453 +637836.524|219919.391|112.112 +637831.666|219923.939|112.935 +637826.798|219928.496|113.648 +637821.885|219933.086|113.831 +637817.051|219937.609|114.389 +637812.198|219942.151|115.303 +637807.303|219946.729|115.715 +637802.417|219951.301|116.220 +637797.574|219955.830|116.699 +637792.746|219960.347|117.345 +637787.860|219964.916|117.882 +637783.044|219969.415|118.177 +637778.188|219973.957|118.540 +637773.351|219978.483|119.104 +637768.520|219983.003|119.765 +637763.680|219987.523|119.835 +637758.855|219992.031|120.085 +637754.012|219996.555|120.162 +637749.168|220001.078|120.259 +637744.313|220005.613|120.253 +637739.497|220010.106|120.213 +637734.614|220014.663|120.000 +637729.762|220019.186|119.668 +637720.069|220028.227|119.162 +637715.247|220032.722|118.744 +637710.367|220037.270|118.281 +637686.047|220059.923|115.038 +637671.466|220073.508|113.182 +637642.531|220100.480|110.597 +637637.736|220104.945|110.118 +637632.981|220109.383|109.954 +637623.328|220118.374|108.658 +637590.730|220148.861|111.170 +637576.703|220161.958|110.957 +637562.600|220175.119|110.109 +637553.200|220183.885|109.256 +637534.351|220201.451|106.955 +637515.347|220219.151|103.846 +637510.692|220223.491|103.352 +637487.485|220245.138|101.654 +637478.271|220253.736|101.246 +637473.839|220257.885|101.633 +637464.674|220266.440|101.334 +637450.750|220279.407|99.277 +637424.150|220304.278|101.084 +637371.438|220353.528|102.343 +637367.025|220357.646|102.187 +637354.500|220369.384|104.745 +637342.007|220381.082|106.802 +637325.169|220396.825|107.820 +637320.884|220400.824|107.710 +637312.517|220408.645|108.216 +637308.506|220412.400|108.924 +637304.428|220416.219|109.561 +637300.389|220419.999|110.158 +637296.335|220423.794|110.694 +637292.263|220427.604|111.158 +637288.258|220431.353|111.706 +637284.177|220435.166|111.941 +637280.214|220438.878|112.468 +637276.176|220442.658|112.910 +637272.168|220446.410|113.261 +637268.220|220450.104|113.675 +637264.170|220453.893|113.864 +637260.137|220457.660|113.934 +637256.123|220461.412|114.096 +637252.036|220465.228|113.959 +637248.015|220468.983|113.904 +637243.882|220472.839|113.377 +637239.853|220476.604|113.319 +637231.760|220484.156|112.883 +637227.746|220487.906|112.703 +637223.653|220491.722|112.228 +637219.715|220495.401|112.185 +637215.831|220499.028|112.173 +637211.881|220502.716|112.103 +637208.065|220506.285|112.383 +637204.225|220509.879|112.569 +637200.378|220513.475|112.746 +637196.528|220517.069|112.724 +637192.706|220520.641|112.816 +637188.902|220524.195|112.782 +637185.141|220527.712|112.932 +637174.098|220538.048|114.163 +637170.572|220541.352|114.858 +637159.910|220551.344|116.644 +637149.229|220561.341|118.028 +637135.032|220574.618|118.894 +637131.447|220577.968|119.058 +637127.918|220581.269|119.229 +637124.342|220584.607|119.055 +637314.483|220404.536|107.796 +637318.714|220400.577|107.902 +637322.941|220396.621|108.000 +637352.156|220369.210|104.483 +637364.775|220357.366|102.663 +637373.441|220349.246|102.239 +637440.094|220286.829|101.389 +637448.827|220278.626|99.706 +637471.928|220257.022|101.130 +637481.188|220248.360|101.514 +637490.499|220239.648|102.002 +637499.829|220230.928|102.687 +637504.502|220226.554|102.678 +637509.254|220222.119|103.455 +637523.634|220208.696|105.827 +637528.389|220204.258|106.439 +637547.473|220186.433|108.668 +637561.807|220173.037|109.914 +637566.617|220168.545|110.487 +637571.342|220164.122|110.530 +637576.118|220159.660|110.935 +637580.833|220155.243|110.612 +637585.618|220150.772|111.127 +637604.632|220132.971|110.865 +637614.014|220124.172|109.792 +637633.204|220106.216|109.835 +637637.980|220101.744|109.841 +637642.851|220097.191|110.222 +637667.281|220074.370|112.724 +637672.212|220069.762|113.395 +637682.030|220060.593|114.431 +637686.907|220056.034|114.745 +637701.732|220042.189|116.665 +637716.628|220028.288|119.159 +637721.489|220023.737|119.125 +637726.385|220019.162|119.406 +637731.319|220014.547|119.668 +637736.205|220009.978|119.942 +637741.125|220005.379|120.104 +637745.980|220000.834|120.131 +637750.921|219996.210|120.091 +637755.755|219991.684|119.966 +637760.693|219987.063|119.927 +637765.561|219982.500|119.707 +637770.398|219977.965|119.180 +637775.281|219973.390|118.610 +637780.133|219968.839|118.281 +637785.034|219964.249|117.921 +637789.881|219959.707|117.528 +637794.794|219955.096|116.839 +637799.634|219950.560|116.370 +637804.563|219945.940|115.867 +637809.455|219941.355|115.486 +637814.307|219936.802|114.623 +637819.212|219932.199|113.822 +637824.116|219927.606|113.605 +637829.044|219922.985|113.099 +637833.936|219918.392|112.167 +637838.850|219913.783|111.475 +637843.769|219909.168|110.890 +637848.652|219904.590|110.429 +637853.654|219899.909|110.283 +637858.564|219895.300|109.567 +637863.478|219890.691|108.881 +637868.495|219885.997|108.981 +637873.463|219881.349|109.122 +637878.465|219876.668|109.073 +637883.421|219872.028|109.033 +637888.426|219867.344|109.076 +637893.427|219862.662|109.064 +637898.380|219858.026|109.088 +637903.382|219853.347|109.143 +637908.378|219848.672|109.106 +637913.325|219844.039|109.076 +637918.366|219839.320|109.070 +637923.365|219834.645|109.134 +637928.355|219829.972|109.103 +637933.344|219825.303|109.049 +637943.445|219815.872|110.512 +637948.468|219811.181|111.307 +637953.476|219806.505|111.746 +637958.527|219801.784|112.194 +637963.541|219797.102|112.950 +637968.591|219792.384|113.511 +637973.602|219787.708|114.276 +637978.638|219782.999|114.629 +637983.670|219778.293|114.904 +637988.708|219773.587|115.337 +637993.701|219768.924|115.937 +637998.721|219764.227|116.007 +638003.744|219759.527|116.175 +638008.755|219754.836|116.065 +638013.775|219750.139|116.214 +638018.777|219745.454|115.742 +638023.739|219740.806|115.672 +638028.802|219736.066|115.721 +638033.806|219731.378|115.398 +638038.814|219726.687|115.145 +638043.819|219721.999|114.776 +638048.827|219717.309|114.486 +638053.835|219712.618|114.221 +638058.846|219707.924|114.117 +638063.854|219703.233|113.858 +638068.865|219698.542|113.660 +638073.921|219693.805|113.538 +638078.886|219689.157|113.313 +638083.894|219684.463|113.047 +638088.957|219679.727|113.102 +638093.971|219675.033|113.044 +638098.985|219670.339|112.923 +638104.002|219665.651|113.258 +638109.016|219660.963|113.770 +638114.030|219656.278|114.200 +638119.090|219651.551|114.663 +638124.055|219646.912|115.230 +638129.115|219642.187|115.788 +638134.122|219637.506|116.318 +638139.133|219632.827|116.912 +638144.141|219628.151|117.519 +638149.146|219623.473|118.007 +638154.151|219618.797|118.567 +638159.159|219614.115|118.756 +638164.164|219609.437|119.083 +638169.168|219604.758|119.409 +638174.173|219600.079|119.686 +638179.178|219595.401|120.006 +638184.180|219590.722|120.338 +638189.188|219586.043|120.558 +638194.144|219581.404|120.765 +638199.146|219576.728|121.152 +638204.156|219572.041|121.094 +638209.119|219567.399|121.195 +638214.130|219562.705|121.076 +638219.140|219558.017|121.131 +638224.103|219553.378|121.292 +638229.107|219548.696|121.570 +638234.076|219544.042|121.466 +638239.047|219539.387|121.341 +638244.067|219534.687|121.244 +638249.038|219530.030|121.183 +638254.013|219525.373|121.070 +638258.993|219520.706|120.860 +638263.989|219516.021|120.216 +638268.969|219511.355|120.070 +638273.944|219506.701|120.177 +638278.930|219502.028|119.939 +638283.923|219497.346|119.579 +638288.915|219492.671|119.351 +638293.868|219488.028|118.915 +638298.861|219483.353|118.750 +638303.805|219478.717|118.570 +638308.807|219474.032|118.318 +638313.760|219469.393|118.071 +638318.716|219464.748|117.805 +638323.711|219460.069|117.766 +638320.051|219459.807|117.629 +638315.046|219464.486|117.735 +638309.989|219469.213|117.985 +638304.981|219473.901|118.293 +638299.974|219478.586|118.610 +638294.932|219483.301|118.720 +638289.882|219488.028|119.031 +638284.880|219492.707|119.360 +638279.832|219497.432|119.698 +638274.788|219502.150|119.991 +638269.762|219506.847|119.930 +638264.729|219511.553|120.018 +638259.728|219516.238|120.643 +638254.695|219520.944|120.814 +638249.663|219525.647|121.003 +638244.637|219530.350|121.131 +638239.611|219535.047|121.222 +638234.588|219539.744|121.286 +638229.565|219544.444|121.484 +638224.548|219549.132|121.417 +638219.537|219553.807|121.079 +638214.572|219558.443|120.780 +638209.503|219563.186|121.006 +638204.489|219567.868|120.863 +638199.472|219572.562|120.960 +638194.464|219577.237|120.634 +638189.450|219581.922|120.558 +638184.439|219586.601|120.320 +638179.428|219591.280|119.991 +638174.466|219595.913|119.662 +638169.406|219600.637|119.457 +638164.395|219605.316|119.211 +638159.433|219609.949|118.805 +638154.419|219614.630|118.519 +638149.408|219619.312|118.345 +638144.443|219623.942|117.766 +638139.432|219628.621|117.242 +638134.418|219633.296|116.699 +638129.401|219637.975|116.132 +638124.384|219642.654|115.532 +638119.416|219647.293|115.023 +638114.396|219651.975|114.498 +638109.379|219656.656|113.995 +638104.356|219661.341|113.529 +638099.381|219665.983|112.996 +638094.358|219670.674|112.791 +638089.341|219675.368|112.868 +638084.318|219680.059|112.770 +638079.347|219684.707|112.886 +638074.372|219689.355|112.859 +638069.358|219694.046|113.093 +638064.341|219698.740|113.398 +638059.373|219703.385|113.569 +638054.362|219708.076|113.934 +638049.342|219712.767|114.032 +638044.380|219717.415|114.379 +638039.366|219722.103|114.614 +638034.401|219726.748|114.949 +638029.436|219731.393|115.279 +638024.431|219736.081|115.721 +638019.502|219740.684|115.654 +638014.482|219745.378|115.632 +638009.520|219750.020|116.047 +638004.546|219754.668|116.025 +637999.571|219759.319|116.028 +637994.594|219763.971|115.940 +637989.604|219768.628|115.574 +637984.566|219773.331|115.236 +637979.616|219777.949|114.782 +637974.623|219782.606|114.504 +637969.628|219787.269|114.215 +637964.601|219791.948|113.249 +637959.603|219796.612|112.953 +637954.570|219801.296|112.023 +637949.566|219805.969|111.664 +637944.552|219810.645|111.219 +637939.562|219815.290|110.347 +637929.504|219824.665|109.082 +637924.551|219829.289|109.088 +637919.552|219833.962|109.082 +637914.602|219838.586|109.137 +637909.597|219843.258|109.091 +637904.595|219847.931|109.146 +637899.685|219852.518|109.113 +637894.674|219857.197|109.067 +637889.712|219861.830|109.018 +637884.698|219866.512|108.960 +637879.745|219871.141|109.079 +637874.822|219875.738|109.018 +637869.815|219880.417|109.097 +637864.877|219885.025|108.823 +637859.933|219889.649|109.161 +637855.017|219894.251|109.893 +637850.143|219898.814|110.560 +637845.171|219903.459|110.573 +637840.279|219908.035|111.014 +637835.400|219912.604|111.578 +637830.526|219917.163|112.267 +637825.682|219921.705|113.310 +637820.736|219926.332|113.645 +637815.877|219930.873|113.928 +637811.022|219935.424|114.821 +637806.157|219939.978|115.614 +637801.308|219944.516|116.007 +637796.406|219949.097|116.409 +637791.572|219953.624|116.989 +637786.689|219958.193|117.568 +637781.837|219962.731|117.991 +637776.981|219967.273|118.363 +637772.114|219971.823|118.662 +637767.267|219976.356|119.165 +637762.415|219980.897|119.610 +637757.605|219985.396|120.021 +637752.701|219989.974|119.982 +637747.849|219994.506|119.997 +637742.950|219999.085|120.064 +637738.092|220003.620|120.076 +637733.212|220008.177|119.887 +637728.369|220012.697|119.643 +637723.477|220017.263|119.393 +637718.627|220021.786|119.150 +637699.001|220040.074|116.409 +637679.500|220058.259|114.489 +637664.922|220071.847|112.776 +637659.950|220076.470|111.496 +637655.055|220081.024|110.499 +637650.294|220085.471|110.591 +637621.433|220112.394|108.576 +637560.347|220169.432|110.173 +637550.859|220178.271|109.091 +637546.202|220182.614|109.000 +637536.713|220191.450|107.777 +637531.967|220195.870|107.195 +637517.825|220209.040|105.620 +637503.581|220222.296|103.074 +637498.887|220226.670|102.715 +637494.206|220231.029|102.151 +637489.573|220235.348|101.907 +637480.404|220243.900|101.745 +637475.677|220248.302|101.017 +637471.138|220252.538|101.105 +637448.144|220273.969|99.639 +637425.930|220294.726|101.218 +637407.819|220311.603|99.792 +637372.929|220344.198|102.276 +637318.095|220395.456|108.753 +637313.797|220399.468|108.594 +637309.643|220403.348|108.881 +637305.531|220407.191|109.372 +637301.413|220411.038|109.853 +637297.320|220414.866|110.451 +637293.272|220418.652|111.030 +637289.215|220422.447|111.578 +637285.167|220426.232|112.170 +637277.051|220433.816|112.852 +637273.033|220437.571|113.383 +637269.053|220441.292|113.861 +637264.959|220445.112|114.090 +637260.966|220448.839|114.319 +637256.845|220452.683|114.233 +637252.871|220456.392|114.568 +637248.789|220460.196|114.468 +637244.757|220463.957|114.358 +637240.606|220467.825|113.989 +637232.589|220475.302|114.056 +637228.566|220479.051|113.831 +637224.546|220482.797|113.645 +637220.467|220486.592|113.233 +637216.444|220490.338|112.846 +637212.503|220494.014|112.804 +637208.656|220497.610|113.157 +637204.779|220501.228|113.404 +637200.908|220504.840|113.477 +637197.083|220508.412|113.742 +637193.291|220511.951|113.944 +637189.420|220515.557|113.846 +637185.586|220519.132|113.697 +637181.697|220522.756|113.553 +637177.878|220526.316|113.493 +637174.107|220529.834|113.639 +637170.474|220533.229|114.111 +637141.948|220559.890|118.071 +637138.430|220563.176|118.455 +637127.863|220573.036|119.025 +637120.764|220579.657|119.256 +637117.256|220582.927|119.147 +637306.189|220403.713|109.250 +637310.307|220399.852|108.823 +637314.520|220395.908|108.844 +637318.970|220391.759|109.731 +637360.493|220352.781|103.492 +637369.049|220344.762|102.800 +637373.264|220340.803|102.035 +637395.075|220320.360|100.807 +637399.367|220316.336|100.240 +637439.906|220278.401|101.105 +637448.644|220270.189|99.219 +637471.833|220248.515|101.212 +637476.506|220244.141|101.383 +637481.145|220239.807|101.648 +637485.748|220235.497|101.749 +637490.457|220231.099|102.172 +637528.465|220195.620|107.195 +637533.202|220191.191|107.454 +637552.267|220173.382|109.140 +637557.080|220168.886|109.707 +637561.865|220164.418|110.094 +637566.562|220160.022|110.274 +637571.412|220155.490|110.499 +637576.124|220151.083|110.487 +637580.897|220146.617|110.576 +637585.622|220142.198|110.697 +637590.355|220137.769|110.563 +637595.162|220133.270|110.621 +637609.311|220120.014|109.305 +637618.705|220111.202|108.003 +637628.489|220102.068|109.253 +637638.142|220093.036|109.271 +637642.900|220088.583|109.173 +637647.816|220083.990|109.558 +637652.818|220079.336|110.999 +637672.505|220060.956|113.602 +637677.437|220056.351|113.901 +637682.365|220051.748|114.639 +637687.324|220047.121|115.245 +637697.176|220037.922|116.422 +637707.112|220028.653|118.071 +637717.015|220019.406|119.128 +637721.895|220014.843|119.287 +637726.833|220010.225|119.573 +637731.716|220005.662|119.805 +637736.632|220001.066|119.921 +637741.536|219996.479|119.966 +637746.434|219991.894|119.957 +637751.332|219987.310|120.006 +637756.203|219982.750|119.777 +637761.104|219978.160|119.387 +637766.006|219973.570|118.997 +637770.852|219969.025|118.586 +637775.759|219964.432|118.275 +637780.660|219959.842|117.933 +637785.525|219955.276|117.245 +637790.408|219950.701|116.717 +637795.346|219946.077|116.272 +637800.238|219941.493|115.870 +637805.124|219936.914|115.407 +637810.025|219932.315|114.593 +637814.880|219927.758|113.788 +637819.836|219923.119|113.587 +637824.759|219918.504|113.038 +637829.642|219913.920|111.972 +637834.610|219909.260|111.380 +637839.490|219904.688|110.853 +637844.428|219900.061|110.509 +637849.362|219895.440|110.115 +637859.259|219886.168|108.988 +637864.225|219881.523|109.021 +637869.242|219876.835|109.106 +637874.243|219872.153|109.042 +637879.199|219867.517|108.997 +637884.210|219862.833|109.070 +637889.160|219858.203|109.003 +637894.168|219853.521|109.058 +637899.176|219848.839|109.170 +637904.126|219844.209|109.134 +637909.170|219839.491|109.128 +637914.166|219834.818|109.140 +637919.162|219830.146|109.128 +637924.157|219825.476|109.152 +637929.141|219820.813|108.975 +637934.170|219816.119|109.686 +637944.296|219806.682|111.679 +637949.294|219802.013|111.941 +637954.360|219797.288|112.654 +637959.362|219792.616|113.124 +637964.419|219787.897|113.742 +637969.469|219783.185|114.315 +637974.465|219778.519|114.742 +637979.497|219773.816|114.989 +637984.535|219769.113|115.398 +637989.574|219764.409|115.839 +637994.600|219759.709|116.047 +637999.574|219755.061|116.129 +638004.634|219750.325|116.031 +638009.639|219745.640|115.663 +638014.607|219740.992|115.602 +638019.624|219736.301|115.666 +638024.681|219731.567|115.370 +638029.640|219726.925|114.989 +638034.645|219722.237|114.553 +638039.653|219717.549|114.273 +638044.660|219712.859|113.980 +638049.671|219708.171|113.694 +638054.685|219703.480|113.550 +638059.693|219698.789|113.233 +638064.707|219694.098|113.005 +638069.718|219689.407|112.731 +638074.735|219684.716|112.688 +638079.798|219679.980|112.566 +638084.815|219675.289|112.724 +638089.832|219670.598|112.746 +638094.849|219665.907|112.916 +638099.869|219661.222|113.401 +638104.886|219656.537|113.867 +638109.949|219651.813|114.386 +638114.917|219647.174|114.837 +638119.977|219642.450|115.391 +638124.991|219637.771|116.053 +638130.002|219633.092|116.544 +638135.012|219628.414|117.016 +638140.069|219623.695|117.586 +638145.028|219619.065|118.214 +638150.085|219614.338|118.302 +638155.093|219609.659|118.631 +638160.055|219605.026|118.924 +638170.116|219595.626|119.448 +638175.075|219590.990|119.622 +638180.129|219586.269|119.966 +638185.088|219581.636|120.277 +638190.096|219576.957|120.466 +638195.104|219572.278|120.692 +638200.063|219567.639|120.832 +638205.074|219562.958|120.927 +638210.091|219558.261|120.741 +638215.050|219553.628|121.021 +638220.058|219548.949|121.259 +638225.026|219544.307|121.320 +638229.997|219539.653|121.195 +638235.014|219534.962|121.164 +638239.986|219530.310|121.140 +638244.960|219525.656|121.045 +638249.986|219520.953|120.860 +638254.964|219516.296|120.753 +638259.947|219511.629|120.497 +638264.943|219506.950|119.957 +638269.875|219502.336|119.936 +638274.904|219497.633|119.881 +638279.854|219492.997|119.503 +638284.846|219488.324|119.253 +638289.845|219483.642|118.909 +638294.798|219479.006|118.613 +638299.748|219474.373|118.369 +638304.756|219469.682|117.982 +638309.715|219465.040|117.674 +638314.668|219460.407|117.519 +638315.086|219456.469|117.336 +638310.084|219461.142|117.385 +638305.021|219465.872|117.699 +638300.004|219470.560|118.119 +638294.996|219475.242|118.415 +638289.940|219479.966|118.766 +638284.886|219484.688|119.095 +638279.835|219489.409|119.412 +638274.788|219494.124|119.723 +638269.798|219498.782|119.750 +638264.763|219503.482|119.811 +638259.667|219508.249|120.314 +638254.668|219512.918|120.735 +638249.642|219517.612|120.728 +638244.607|219522.315|120.991 +638239.577|219527.009|121.042 +638234.505|219531.746|121.070 +638229.479|219536.437|121.109 +638224.456|219541.128|121.192 +638219.387|219545.858|121.186 +638214.367|219550.543|121.106 +638209.353|219555.216|120.741 +638204.288|219559.946|120.716 +638199.271|219564.628|120.646 +638194.205|219569.355|120.579 +638189.142|219574.077|120.399 +638184.128|219578.752|120.110 +638179.068|219583.471|119.869 +638174.006|219588.192|119.628 +638168.946|219592.913|119.369 +638163.932|219597.589|119.104 +638158.869|219602.307|118.759 +638153.806|219607.029|118.452 +638148.744|219611.750|118.193 +638143.681|219616.474|118.113 +638138.618|219621.196|117.805 +638133.601|219625.868|117.205 +638128.490|219630.629|116.693 +638123.424|219635.351|116.126 +638118.407|219640.026|115.559 +638113.338|219644.748|114.943 +638108.269|219649.472|114.526 +638103.249|219654.151|114.053 +638098.174|219658.875|113.493 +638093.102|219663.606|113.060 +638088.073|219668.291|112.462 +638083.001|219673.021|112.499 +638077.929|219677.755|112.334 +638072.906|219682.446|112.453 +638067.834|219687.179|112.371 +638062.769|219691.913|112.694 +638057.797|219696.555|112.968 +638052.732|219701.288|113.243 +638047.666|219706.022|113.374 +638042.694|219710.664|113.678 +638037.632|219715.394|113.950 +638032.618|219720.082|114.306 +638027.610|219724.764|114.895 +638022.544|219729.495|115.126 +638017.533|219734.179|115.547 +638012.510|219738.867|115.562 +638007.487|219743.558|115.556 +638002.473|219748.243|115.870 +637997.459|219752.928|116.135 +637992.430|219757.622|116.025 +637987.440|219762.273|115.751 +637982.399|219766.973|115.352 +637977.354|219771.673|115.007 +637972.362|219776.330|114.745 +637967.363|219780.994|114.358 +637962.306|219785.703|113.800 +637957.338|219790.333|113.185 +637952.284|219795.045|112.791 +637947.261|219799.721|112.106 +637942.257|219804.390|111.807 +637922.225|219823.047|109.134 +637917.272|219827.674|109.131 +637912.264|219832.346|109.064 +637907.311|219836.970|109.113 +637902.355|219841.597|109.103 +637897.393|219846.230|109.070 +637892.440|219850.857|109.140 +637887.472|219855.490|109.070 +637882.555|219860.080|109.006 +637877.596|219864.713|109.082 +637872.634|219869.343|109.152 +637867.711|219873.940|109.088 +637862.740|219878.582|109.049 +637857.827|219883.169|109.158 +637852.895|219887.771|109.079 +637848.043|219892.316|110.051 +637843.154|219896.888|110.527 +637838.252|219901.469|110.853 +637833.357|219906.047|111.246 +637828.474|219910.613|111.847 +637823.653|219915.127|112.563 +637818.800|219919.672|113.526 +637813.884|219924.262|113.718 +637809.043|219928.791|114.239 +637804.179|219933.345|115.029 +637799.351|219937.862|115.693 +637794.495|219942.401|116.077 +637789.689|219946.894|116.458 +637784.787|219951.478|116.854 +637780.005|219955.952|117.525 +637775.165|219960.479|118.086 +637770.352|219964.977|118.439 +637765.487|219969.525|118.766 +637760.669|219974.027|119.104 +637755.847|219978.535|119.396 +637751.022|219983.043|119.665 +637746.200|219987.548|120.018 +637741.344|219992.083|120.027 +637736.470|219996.631|119.893 +637731.597|220001.179|119.790 +637726.759|220005.693|119.585 +637721.870|220010.252|119.387 +637717.030|220014.770|119.214 +637712.178|220019.296|118.958 +637707.277|220023.859|118.305 +637692.558|220037.569|116.425 +637677.882|220051.239|114.383 +637663.291|220064.836|112.968 +637658.448|220069.347|112.325 +637643.805|220082.981|110.112 +637633.948|220092.146|107.857 +637605.589|220118.646|109.292 +637586.774|220136.233|110.420 +637582.055|220140.640|110.380 +637572.610|220149.461|110.307 +637567.940|220153.820|110.344 +637563.240|220158.209|110.170 +637548.969|220171.516|109.064 +637544.284|220175.887|108.789 +637530.062|220189.146|107.345 +637515.816|220202.420|105.409 +637511.070|220206.840|104.626 +637501.637|220215.633|103.519 +637492.161|220224.463|102.267 +637487.595|220228.724|102.123 +637482.983|220233.028|101.998 +637478.301|220237.393|101.511 +637469.081|220245.997|101.124 +637464.655|220250.143|101.858 +637446.163|220267.382|100.017 +637375.062|220333.811|101.989 +637357.905|220349.855|103.513 +637307.643|220396.883|109.420 +637303.507|220400.751|109.783 +637299.316|220404.668|109.926 +637295.253|220408.471|110.658 +637291.132|220412.324|110.902 +637287.121|220416.079|111.652 +637283.034|220419.901|112.072 +637279.023|220423.657|112.609 +637275.005|220427.418|113.124 +637270.970|220431.194|113.575 +637266.928|220434.974|114.008 +637262.941|220438.705|114.468 +637258.823|220442.551|114.596 +637254.828|220446.285|114.824 +637250.746|220450.098|114.919 +637246.705|220453.871|114.974 +637238.573|220461.461|114.703 +637230.541|220468.962|114.690 +637226.490|220472.742|114.562 +637222.455|220476.503|114.309 +637218.358|220480.328|114.017 +637214.286|220484.117|113.432 +637210.250|220487.884|113.215 +637206.398|220491.487|113.547 +637198.787|220498.607|114.398 +637194.913|220502.225|114.465 +637191.051|220505.834|114.587 +637187.140|220509.482|114.538 +637175.470|220520.370|113.867 +637171.684|220523.906|113.947 +637167.932|220527.414|114.163 +637164.207|220530.895|114.504 +637157.057|220537.594|115.940 +637138.866|220554.602|117.476 +637135.318|220557.924|117.952 +637131.645|220561.350|117.973 +637124.717|220567.839|119.189 +637121.108|220571.208|119.080 +637113.964|220577.880|119.165 +637302.501|220399.373|109.935 +637310.847|220391.561|109.594 +637335.514|220368.418|105.507 +637360.996|220344.546|103.221 +637378.022|220328.586|101.227 +637417.999|220291.190|101.358 +637422.450|220287.030|101.444 +637444.727|220266.166|99.859 +637453.804|220257.674|99.868 +637467.752|220244.647|101.188 +637472.358|220240.340|101.233 +637481.694|220231.617|101.828 +637486.324|220227.289|102.093 +637490.932|220222.979|102.248 +637509.894|220205.273|104.473 +637524.323|220191.819|107.256 +637538.475|220178.594|108.308 +637547.976|220169.715|109.140 +637552.761|220165.247|109.490 +637562.246|220156.380|110.070 +637567.007|220151.930|110.347 +637571.707|220147.529|110.240 +637614.325|220107.624|108.232 +637628.705|220094.170|108.067 +637633.567|220089.623|108.338 +637643.488|220080.375|110.466 +637658.188|220066.644|111.786 +637663.129|220062.038|112.868 +637677.912|220048.231|114.486 +637682.804|220043.662|114.916 +637687.788|220039.013|115.760 +637692.692|220034.435|116.364 +637697.663|220029.790|116.760 +637707.563|220020.552|118.092 +637712.486|220015.958|119.015 +637717.417|220011.347|119.211 +637722.303|220006.781|119.418 +637727.281|220002.126|119.607 +637732.157|219997.567|119.814 +637737.083|219992.961|120.046 +637742.024|219988.337|119.973 +637746.888|219983.781|119.653 +637751.805|219979.178|119.369 +637756.676|219974.618|119.140 +637761.583|219970.022|118.802 +637766.454|219965.462|118.604 +637771.394|219960.832|118.153 +637776.280|219956.251|117.641 +637781.145|219951.688|116.903 +637786.086|219947.058|116.477 +637790.993|219942.465|116.187 +637795.928|219937.841|115.730 +637800.811|219933.263|115.209 +637805.724|219928.654|114.514 +637815.584|219919.416|113.489 +637820.513|219914.795|112.977 +637825.405|219910.205|112.014 +637830.331|219905.587|111.459 +637835.311|219900.920|111.014 +637840.243|219896.300|110.530 +637845.202|219891.645|109.820 +637850.097|219887.049|108.863 +637855.129|219882.346|109.119 +637860.137|219877.655|109.106 +637865.136|219872.976|108.930 +637870.144|219868.289|108.942 +637875.158|219863.598|109.058 +637880.114|219858.959|109.021 +637885.167|219854.228|109.097 +637890.175|219849.543|109.189 +637895.174|219844.865|109.170 +637900.218|219840.143|109.094 +637905.257|219835.425|109.000 +637910.259|219830.743|109.116 +637915.303|219826.025|109.128 +637920.347|219821.304|109.170 +637930.467|219811.846|109.935 +637935.508|219807.142|110.978 +637940.638|219802.357|111.941 +637945.689|219797.636|112.340 +637950.748|219792.911|112.941 +637955.793|219788.193|113.294 +637960.895|219783.429|113.892 +637965.894|219778.756|114.416 +637970.981|219774.002|114.797 +637976.013|219769.295|115.026 +637981.052|219764.589|115.434 +637986.130|219759.840|115.772 +637991.162|219755.137|116.102 +637996.179|219750.440|116.089 +638001.223|219745.710|115.553 +638006.240|219741.013|115.535 +638011.257|219736.316|115.590 +638021.368|219726.846|115.004 +638026.375|219722.155|114.654 +638031.423|219717.421|114.059 +638036.428|219712.731|113.642 +638041.484|219707.991|113.349 +638046.495|219703.297|113.163 +638051.555|219698.560|112.919 +638056.612|219693.821|112.627 +638061.626|219689.127|112.520 +638066.685|219684.387|112.130 +638071.751|219679.647|112.270 +638076.765|219674.950|112.161 +638081.834|219670.214|112.450 +638086.851|219665.523|112.816 +638091.920|219660.786|113.236 +638096.986|219656.053|113.730 +638102.003|219651.365|114.285 +638107.062|219646.638|114.733 +638112.122|219641.907|115.151 +638117.136|219637.225|115.760 +638122.196|219632.498|116.306 +638127.203|219627.816|116.809 +638132.214|219623.134|117.202 +638137.268|219618.413|117.784 +638142.279|219613.725|117.854 +638147.287|219609.043|118.159 +638152.295|219604.362|118.424 +638157.303|219599.677|118.598 +638162.307|219594.998|119.006 +638167.361|219590.274|119.332 +638172.320|219585.635|119.595 +638177.328|219580.953|119.802 +638182.336|219576.265|119.899 +638187.341|219571.583|120.168 +638192.352|219566.899|120.302 +638197.359|219562.214|120.479 +638202.325|219557.566|120.460 +638207.329|219552.887|120.811 +638212.289|219548.248|120.981 +638217.254|219543.603|121.061 +638222.268|219538.912|121.103 +638227.239|219534.255|120.945 +638232.207|219529.609|120.985 +638237.227|219524.912|120.936 +638242.150|219520.304|120.920 +638247.133|219515.637|120.640 +638252.105|219510.986|120.634 +638257.085|219506.323|120.472 +638262.084|219501.635|119.875 +638267.025|219497.011|119.646 +638271.950|219492.405|119.787 +638276.940|219487.730|119.543 +638281.893|219483.091|119.122 +638286.837|219478.458|118.887 +638291.796|219473.816|118.470 +638296.752|219469.170|118.098 +638301.714|219464.522|117.671 +638306.624|219459.920|117.336 +638304.091|219458.725|117.309 +638299.074|219463.413|117.674 +638294.012|219468.146|118.095 +638288.995|219472.834|118.534 +638283.987|219477.519|118.933 +638278.933|219482.240|119.281 +638273.886|219486.956|119.488 +638268.896|219491.616|119.564 +638263.858|219496.319|119.607 +638258.807|219501.040|120.094 +638253.763|219505.756|120.482 +638248.682|219510.501|120.616 +638243.649|219515.198|120.677 +638238.617|219519.901|120.853 +638233.591|219524.595|120.887 +638228.522|219529.323|120.759 +638223.493|219534.020|120.899 +638218.421|219538.756|120.978 +638213.401|219543.441|120.881 +638208.335|219548.169|120.732 +638203.269|219552.896|120.607 +638198.256|219557.572|120.293 +638193.187|219562.299|120.277 +638188.124|219567.024|120.073 +638183.110|219571.702|119.869 +638178.044|219576.430|119.753 +638172.981|219581.154|119.582 +638167.919|219585.876|119.342 +638157.793|219595.318|118.772 +638152.731|219600.040|118.564 +638147.668|219604.764|118.412 +638142.605|219609.485|117.994 +638137.539|219614.213|117.918 +638132.477|219618.934|117.607 +638127.414|219623.653|116.982 +638122.348|219628.371|116.379 +638117.279|219633.092|115.919 +638112.165|219637.862|115.513 +638107.096|219642.587|115.077 +638102.073|219647.268|114.532 +638096.958|219652.036|114.123 +638091.883|219656.763|113.566 +638086.811|219661.494|113.151 +638081.733|219666.224|112.688 +638076.613|219671.000|112.343 +638071.583|219675.691|111.975 +638066.509|219680.425|111.956 +638061.440|219685.161|112.087 +638056.374|219689.895|112.426 +638051.305|219694.631|112.596 +638046.236|219699.365|112.801 +638041.216|219704.056|112.932 +638036.150|219708.786|113.304 +638031.088|219713.520|113.645 +638026.074|219718.208|114.072 +638021.017|219722.935|114.632 +638016.003|219727.623|115.017 +638010.992|219732.308|115.483 +638005.923|219737.041|115.480 +638000.897|219741.732|115.465 +637995.877|219746.423|115.614 +637990.872|219751.105|116.211 +637985.831|219755.802|115.852 +637980.792|219760.502|115.513 +637975.748|219765.202|115.163 +637970.710|219769.905|114.913 +637965.714|219774.562|114.608 +637960.666|219779.265|114.322 +637955.643|219783.941|113.468 +637950.596|219788.650|113.200 +637945.536|219793.362|112.764 +637940.571|219797.992|112.282 +637935.499|219802.714|111.709 +637930.461|219807.405|110.816 +637920.408|219816.756|108.917 +637915.416|219821.416|109.091 +637910.417|219826.083|109.131 +637905.409|219830.755|109.106 +637900.499|219835.337|109.106 +637895.494|219840.009|109.109 +637890.529|219844.642|109.049 +637885.573|219849.269|109.122 +637880.608|219853.902|109.103 +637875.685|219858.495|109.006 +637870.726|219863.125|109.103 +637865.800|219867.722|108.997 +637860.829|219872.361|108.972 +637855.907|219876.954|108.972 +637850.996|219881.541|109.152 +637846.068|219886.138|109.140 +637841.203|219890.691|109.942 +637836.335|219895.245|110.734 +637831.489|219899.774|111.188 +637826.600|219904.346|111.670 +637821.717|219908.912|112.279 +637816.919|219913.408|113.307 +637812.009|219917.992|113.578 +637807.202|219922.485|113.934 +637802.323|219927.051|114.568 +637797.488|219931.571|115.199 +637792.651|219936.094|115.782 +637787.787|219940.639|116.068 +637782.974|219945.135|116.403 +637778.118|219949.673|116.806 +637773.306|219954.178|117.680 +637768.465|219958.705|118.241 +637763.686|219963.170|118.473 +637758.821|219967.715|118.817 +637753.981|219972.235|118.942 +637749.156|219976.743|119.235 +637744.322|219981.257|119.464 +637739.525|219985.734|119.579 +637734.687|219990.251|119.808 +637729.835|219994.784|119.887 +637724.995|219999.295|119.677 +637720.157|220003.806|119.512 +637715.302|220008.335|119.195 +637710.440|220012.868|118.845 +637705.561|220017.412|118.385 +637700.656|220021.978|117.735 +637651.861|220067.427|111.923 +637632.439|220085.514|109.448 +637627.614|220090.013|109.125 +637613.142|220103.500|108.027 +637608.366|220107.953|107.829 +637603.715|220112.306|108.539 +637589.663|220125.437|109.676 +637584.905|220129.878|109.689 +637575.520|220138.644|109.984 +637532.967|220178.329|107.979 +637528.200|220182.764|107.253 +637523.518|220187.131|107.086 +637513.957|220196.028|105.306 +637509.193|220200.463|104.711 +637485.632|220222.409|101.959 +637480.996|220226.737|101.977 +637476.305|220231.105|101.435 +637471.763|220235.348|101.462 +637462.552|220243.937|101.160 +637453.106|220252.724|99.359 +637448.626|220256.915|99.825 +637439.674|220265.276|100.343 +637395.106|220306.894|101.870 +637377.464|220323.362|101.916 +637301.520|220394.365|110.240 +637297.405|220398.209|110.481 +637293.245|220402.095|110.768 +637289.166|220405.908|111.200 +637285.116|220409.697|111.764 +637281.110|220413.443|112.307 +637273.000|220421.026|113.221 +637269.025|220424.748|113.925 +637265.023|220428.488|114.300 +637261.000|220432.252|114.831 +637256.918|220436.062|114.888 +637248.887|220443.566|115.379 +637240.795|220451.122|115.449 +637236.783|220454.871|115.641 +637232.748|220458.636|115.547 +637228.816|220462.311|115.885 +637224.719|220466.128|115.562 +637220.589|220469.977|115.111 +637216.523|220473.766|114.730 +637208.416|220481.322|113.907 +637200.607|220488.613|114.142 +637196.858|220492.127|114.895 +637192.892|220495.827|114.797 +637169.663|220517.502|114.447 +637165.783|220521.120|114.157 +637162.055|220524.600|114.273 +637151.156|220534.799|115.974 +637147.529|220538.192|116.306 +637143.895|220541.584|116.431 +637140.171|220545.065|116.611 +637129.356|220555.169|117.391 +637122.340|220561.737|118.470 +637298.438|220394.868|110.621 +637315.471|220378.915|110.612 +637432.953|220268.739|101.352 +637446.270|220256.233|99.228 +637450.775|220252.008|98.920 +637455.490|220247.604|99.499 +637465.055|220238.679|101.523 +637469.538|220234.473|101.163 +637474.193|220230.117|101.224 +637478.871|220225.740|101.441 +637483.544|220221.376|101.947 +637488.238|220216.987|102.008 +637497.638|220208.205|102.873 +637502.454|220203.712|103.742 +637535.906|220172.486|108.192 +637540.685|220168.023|108.774 +637554.940|220154.697|109.515 +637573.789|220137.056|109.350 +637583.336|220128.128|109.545 +637616.510|220097.063|108.174 +637631.058|220083.472|109.353 +637645.716|220069.786|111.267 +637655.558|220060.599|112.648 +637670.234|220046.899|114.453 +637675.120|220042.330|114.815 +637699.654|220019.421|117.540 +637704.616|220014.791|118.342 +637709.535|220010.195|118.811 +637714.430|220005.616|119.076 +637719.328|220001.041|119.400 +637724.214|219996.472|119.625 +637729.113|219991.888|119.576 +637733.965|219987.347|119.537 +637738.854|219982.772|119.433 +637743.740|219978.197|119.305 +637748.614|219973.637|119.052 +637753.442|219969.114|118.872 +637758.370|219964.499|118.759 +637763.220|219959.954|118.324 +637768.084|219955.401|118.043 +637772.940|219950.844|117.205 +637777.820|219946.269|116.605 +637782.715|219941.681|116.205 +637787.576|219937.128|115.946 +637792.523|219932.495|115.596 +637797.348|219927.969|114.953 +637802.268|219923.357|114.312 +637807.141|219918.785|113.675 +637812.049|219914.192|113.459 +637816.971|219909.577|112.859 +637821.821|219905.023|111.950 +637826.795|219900.360|111.392 +637831.684|219895.779|110.981 +637836.600|219891.170|110.286 +637841.514|219886.552|108.948 +637851.459|219877.253|109.097 +637856.425|219872.608|109.137 +637861.381|219867.972|109.042 +637871.348|219858.651|109.000 +637876.362|219853.966|109.122 +637881.367|219849.284|109.146 +637886.362|219844.609|109.055 +637891.367|219839.930|109.082 +637896.363|219835.257|109.030 +637901.368|219830.579|109.106 +637906.412|219825.860|109.116 +637911.365|219821.230|109.161 +637916.406|219816.515|109.134 +637926.507|219807.091|110.426 +637931.601|219802.345|111.505 +637936.621|219797.660|112.170 +637941.677|219792.939|112.688 +637946.731|219788.220|113.182 +637951.727|219783.554|113.450 +637956.777|219778.839|113.962 +637961.874|219774.081|114.498 +637966.866|219769.417|114.888 +637971.898|219764.714|115.084 +637976.982|219759.965|115.440 +637981.966|219755.311|115.678 +637992.049|219745.878|115.611 +637997.063|219741.187|115.428 +638002.132|219736.450|115.522 +638007.142|219731.759|115.358 +638012.150|219727.071|114.986 +638017.204|219722.338|114.703 +638022.209|219717.650|114.145 +638027.211|219712.962|113.645 +638032.270|219708.229|113.328 +638037.324|219703.495|112.901 +638042.338|219698.801|112.645 +638047.398|219694.068|112.432 +638052.457|219689.331|112.154 +638057.471|219684.637|112.033 +638062.534|219679.900|111.831 +638067.600|219675.164|111.874 +638072.626|219670.473|112.359 +638077.695|219665.739|112.798 +638082.760|219661.006|113.090 +638087.781|219656.318|113.575 +638092.849|219651.588|114.151 +638098.482|219646.327|114.514 +638102.972|219642.133|114.882 +638108.035|219637.405|115.425 +638113.097|219632.681|115.964 +638118.108|219628.002|116.458 +638123.168|219623.281|117.050 +638128.225|219618.556|117.409 +638133.235|219613.878|117.827 +638138.292|219609.150|117.891 +638143.346|219604.429|118.351 +638148.357|219599.747|118.494 +638153.413|219595.020|118.659 +638158.421|219590.338|118.827 +638163.429|219585.659|119.101 +638168.486|219580.935|119.278 +638173.542|219576.210|119.500 +638178.550|219571.529|119.680 +638183.561|219566.844|119.774 +638188.618|219562.119|119.960 +638193.629|219557.435|120.055 +638198.637|219552.753|120.296 +638203.644|219548.074|120.521 +638208.658|219543.383|120.518 +638213.715|219538.659|120.741 +638218.680|219534.017|120.866 +638223.703|219529.314|120.619 +638228.717|219524.629|120.820 +638233.734|219519.935|120.835 +638238.754|219515.238|120.789 +638243.732|219510.581|120.634 +638248.712|219505.920|120.497 +638253.744|219501.211|120.277 +638258.734|219496.538|119.909 +638263.730|219491.860|119.473 +638268.713|219487.196|119.393 +638273.694|219482.539|119.430 +638278.686|219477.863|119.159 +638283.691|219473.176|118.723 +638288.644|219468.536|118.375 +638293.606|219463.888|117.900 +638298.617|219459.197|117.501 +638292.488|219460.487|117.796 +638287.522|219465.129|118.199 +638282.515|219469.807|118.537 +638277.552|219474.447|118.982 +638272.551|219479.122|119.326 +638267.613|219483.731|119.290 +638262.623|219488.391|119.393 +638257.622|219493.067|119.848 +638252.626|219497.733|120.168 +638247.639|219502.391|120.296 +638242.650|219507.051|120.573 +638237.624|219511.748|120.631 +638232.640|219516.399|120.771 +638222.649|219525.726|120.564 +638217.623|219530.417|120.658 +638212.697|219535.017|120.646 +638207.680|219539.695|120.482 +638202.663|219544.377|120.351 +638197.646|219549.059|120.271 +638192.632|219553.734|119.991 +638187.615|219558.419|119.976 +638182.601|219563.095|119.759 +638177.587|219567.770|119.512 +638172.570|219572.452|119.403 +638167.556|219577.131|119.220 +638162.496|219581.849|118.945 +638157.482|219586.528|118.811 +638152.468|219591.207|118.616 +638147.406|219595.928|118.449 +638142.392|219600.610|118.397 +638137.329|219605.331|118.113 +638132.266|219610.052|117.943 +638127.252|219614.725|117.434 +638122.189|219619.449|117.339 +638117.127|219624.168|116.775 +638112.110|219628.843|116.306 +638107.044|219633.565|115.775 +638101.978|219638.286|115.312 +638096.909|219643.010|114.882 +638091.844|219647.732|114.401 +638086.772|219652.459|113.995 +638081.749|219657.141|113.505 +638076.677|219661.868|113.112 +638071.602|219666.599|112.645 +638066.527|219671.329|112.231 +638061.446|219676.063|111.621 +638056.377|219680.797|111.719 +638051.308|219685.530|111.734 +638046.242|219690.264|112.008 +638041.173|219694.997|112.164 +638036.111|219699.728|112.462 +638031.094|219704.416|112.819 +638026.034|219709.146|113.307 +638020.977|219713.877|113.749 +638015.970|219718.561|114.279 +638010.864|219723.331|114.733 +638005.850|219728.016|115.053 +638000.797|219732.744|115.529 +637995.722|219737.480|115.370 +637990.699|219742.168|115.434 +637985.639|219746.896|115.800 +637980.564|219751.632|115.702 +637975.529|219756.329|115.431 +637970.490|219761.029|115.157 +637965.406|219765.775|114.919 +637960.313|219770.524|114.562 +637955.265|219775.233|114.142 +637950.212|219779.945|113.709 +637945.158|219784.660|113.221 +637940.102|219789.376|112.831 +637935.048|219794.094|112.438 +637929.973|219798.821|111.755 +637924.871|219803.570|110.551 +637919.738|219808.337|108.884 +637914.745|219813.001|109.018 +637909.701|219817.713|109.082 +637904.699|219822.386|109.052 +637899.700|219827.058|109.100 +637894.680|219831.740|108.847 +637889.642|219836.452|109.049 +637884.692|219841.079|109.183 +637879.672|219845.764|109.006 +637874.667|219850.442|109.049 +637869.693|219855.085|108.872 +637864.688|219859.763|108.988 +637859.771|219864.354|109.030 +637854.764|219869.032|109.134 +637849.795|219873.677|109.106 +637844.824|219878.316|109.125 +637839.914|219882.910|109.292 +637834.997|219887.515|110.018 +637830.093|219892.109|110.926 +637825.247|219896.641|111.335 +637820.309|219901.262|111.798 +637815.447|219905.816|112.642 +637810.574|219910.378|113.310 +637805.663|219914.972|113.553 +637800.823|219919.501|114.066 +637795.946|219924.064|114.721 +637791.115|219928.590|115.318 +637786.284|219933.114|115.961 +637781.404|219937.673|116.053 +637776.546|219942.218|116.394 +637771.718|219946.738|117.089 +637766.865|219951.277|117.528 +637762.095|219955.745|118.308 +637757.221|219960.302|118.537 +637752.399|219964.810|118.817 +637747.553|219969.339|118.863 +637742.710|219973.865|118.970 +637737.924|219978.337|119.177 +637733.032|219982.909|119.302 +637728.219|219987.405|119.293 +637723.358|219991.946|119.287 +637718.573|219996.415|119.144 +637713.693|220000.971|119.019 +637708.901|220005.446|118.836 +637703.985|220010.030|118.449 +637699.145|220014.544|117.897 +637694.271|220019.089|117.516 +637684.551|220028.156|116.644 +637674.809|220037.233|115.321 +637660.243|220050.812|113.578 +637645.689|220064.379|111.850 +637616.672|220091.433|108.424 +637611.636|220096.106|106.631 +637597.679|220109.172|108.332 +637593.013|220113.534|108.585 +637564.834|220139.869|109.219 +637550.774|220153.003|109.347 +637531.922|220170.590|108.055 +637522.427|220179.447|107.113 +637508.150|220192.749|104.958 +637503.383|220197.187|104.056 +637493.803|220206.108|102.361 +637489.216|220210.394|102.328 +637484.525|220214.771|101.983 +637479.840|220219.141|101.709 +637475.265|220223.412|101.511 +637420.609|220274.466|101.505 +637291.657|220395.072|111.082 +637287.551|220398.913|111.371 +637283.558|220402.653|112.185 +637275.322|220410.355|112.715 +637271.314|220414.107|113.258 +637267.419|220417.762|114.300 +637259.314|220425.333|114.831 +637255.239|220429.140|115.132 +637251.240|220432.877|115.541 +637247.250|220436.601|115.788 +637243.126|220440.448|115.696 +637239.130|220444.182|115.937 +637235.137|220447.910|116.214 +637231.138|220451.640|116.251 +637227.234|220455.289|116.696 +637223.104|220459.135|116.214 +637219.071|220462.894|115.946 +637214.972|220466.713|115.629 +637210.912|220470.495|115.276 +637206.840|220474.287|114.892 +637202.774|220478.073|114.331 +637187.515|220492.331|115.879 +637179.770|220499.558|116.053 +637160.275|220517.718|114.553 +637156.572|220521.178|114.754 +637149.187|220528.072|115.297 +637145.621|220531.407|115.864 +637134.651|220541.651|116.580 +637127.482|220548.347|117.245 +637123.882|220551.709|117.540 +637120.362|220555.001|117.933 +637116.878|220558.257|118.482 +637323.639|220362.529|106.705 +637388.751|220301.520|102.693 +637397.745|220293.098|102.684 +637402.211|220288.916|102.529 +637460.934|220233.912|100.026 +637465.820|220229.368|101.660 +637470.367|220225.100|101.112 +637475.061|220220.714|101.715 +637479.709|220216.356|101.499 +637489.033|220207.629|101.861 +637503.383|220194.230|104.160 +637508.217|220189.713|104.909 +637536.942|220162.869|108.585 +637541.694|220158.425|109.012 +637546.439|220153.981|109.122 +637560.683|220140.643|109.286 +637565.364|220136.254|109.058 +637570.104|220131.813|108.887 +637589.081|220114.034|108.573 +637607.942|220096.334|106.287 +637617.863|220087.077|108.506 +637632.558|220073.346|110.542 +637642.339|220064.199|111.319 +637647.240|220059.621|112.020 +637657.073|220050.431|113.410 +637661.974|220045.850|113.822 +637671.801|220036.663|114.983 +637676.751|220032.037|115.492 +637686.727|220022.731|117.711 +637691.506|220018.247|117.299 +637696.426|220013.645|117.711 +637701.351|220009.039|118.193 +637706.277|220004.437|118.695 +637711.163|219999.862|118.906 +637716.091|219995.250|119.049 +637720.999|219990.654|119.064 +637725.866|219986.097|119.137 +637730.761|219981.510|119.086 +637735.657|219976.926|119.031 +637740.546|219972.344|118.921 +637745.435|219967.763|118.854 +637750.321|219963.188|118.756 +637755.237|219958.580|118.522 +637760.089|219954.029|118.138 +637764.963|219949.451|117.479 +637769.837|219944.879|116.793 +637774.735|219940.285|116.412 +637779.584|219935.735|116.035 +637784.562|219931.074|115.995 +637789.423|219926.509|115.248 +637794.294|219921.933|114.599 +637799.220|219917.313|114.017 +637804.100|219912.735|113.462 +637809.043|219908.099|113.102 +637813.923|219903.520|112.578 +637818.837|219898.906|111.865 +637823.768|219894.279|111.402 +637828.685|219889.664|110.713 +637833.537|219885.095|109.234 +637838.493|219880.453|109.049 +637843.495|219875.765|108.884 +637848.469|219871.108|109.036 +637853.428|219866.463|108.988 +637858.439|219861.769|109.009 +637863.402|219857.124|109.024 +637868.406|219852.436|109.039 +637873.411|219847.748|109.006 +637878.373|219843.103|109.103 +637883.372|219838.421|109.058 +637888.420|219833.694|109.061 +637893.373|219829.055|109.128 +637898.420|219824.330|109.134 +637903.419|219819.648|109.161 +637908.411|219814.973|109.149 +637918.446|219805.576|109.128 +637923.572|219800.800|110.844 +637928.665|219796.048|111.969 +637933.679|219791.363|112.535 +637938.727|219786.642|112.901 +637943.777|219781.920|113.297 +637948.785|219777.239|113.928 +637953.824|219772.523|114.230 +637958.865|219767.808|114.602 +637963.907|219763.096|114.986 +637968.939|219758.387|115.236 +637973.968|219753.680|115.465 +637978.997|219748.974|115.718 +637984.005|219744.277|115.407 +637989.028|219739.577|115.541 +637994.045|219734.877|115.547 +637999.096|219730.141|115.102 +638004.107|219725.444|114.925 +638009.108|219720.750|114.477 +638014.162|219716.013|114.062 +638019.167|219711.319|113.627 +638024.169|219706.625|113.020 +638029.222|219701.883|112.633 +638034.233|219697.186|112.267 +638039.287|219692.446|111.834 +638044.304|219687.746|111.706 +638049.367|219683.003|111.588 +638054.380|219678.303|111.447 +638059.452|219673.561|111.813 +638064.475|219668.864|112.282 +638069.544|219664.124|112.791 +638074.613|219659.384|113.191 +638079.633|219654.690|113.663 +638084.699|219649.954|114.209 +638089.762|219645.220|114.632 +638094.776|219640.532|115.120 +638099.835|219635.799|115.480 +638104.898|219631.068|116.004 +638109.909|219626.380|116.455 +638114.966|219621.650|116.873 +638120.022|219616.923|117.287 +638130.087|219607.507|118.013 +638135.144|219602.774|118.104 +638140.106|219598.129|118.214 +638145.159|219593.395|118.324 +638150.216|219588.664|118.540 +638155.224|219583.977|118.729 +638160.232|219579.289|118.857 +638165.288|219574.555|118.967 +638170.296|219569.867|119.174 +638175.304|219565.180|119.332 +638180.361|219560.449|119.518 +638185.366|219555.764|119.835 +638190.379|219551.070|119.838 +638195.430|219546.346|120.195 +638200.392|219541.698|120.335 +638205.452|219536.961|120.396 +638210.463|219532.270|120.503 +638215.477|219527.576|120.570 +638220.494|219522.879|120.567 +638225.508|219518.188|120.680 +638230.525|219513.491|120.704 +638235.545|219508.788|120.604 +638240.519|219504.131|120.530 +638245.551|219499.416|120.244 +638250.581|219494.707|120.064 +638255.512|219490.083|119.918 +638260.560|219485.349|119.339 +638265.549|219480.677|119.150 +638270.527|219476.019|119.214 +638275.568|219471.292|118.891 +638280.527|219466.644|118.430 +638285.523|219461.959|118.153 +638290.531|219457.268|117.763 +638285.651|219457.835|117.921 +638280.646|219462.514|118.208 +638275.641|219467.192|118.574 +638270.640|219471.874|118.970 +638265.650|219476.534|119.043 +638260.618|219481.237|119.125 +638255.613|219485.919|119.692 +638250.623|219490.586|119.997 +638245.643|219495.240|120.034 +638240.653|219499.903|120.326 +638235.624|219504.600|120.472 +638230.647|219509.252|120.552 +638225.627|219513.943|120.518 +638220.655|219518.585|120.509 +638215.638|219523.269|120.421 +638210.667|219527.912|120.357 +638205.650|219532.599|120.341 +638200.682|219537.235|120.216 +638195.668|219541.917|120.107 +638190.657|219546.596|119.872 +638185.692|219551.232|119.729 +638180.681|219555.908|119.509 +638175.670|219560.583|119.183 +638170.705|219565.216|119.052 +638160.680|219574.577|118.735 +638155.669|219579.255|118.659 +638150.655|219583.934|118.439 +638145.693|219588.567|118.272 +638140.633|219593.294|118.217 +638135.619|219597.973|118.116 +638130.654|219602.609|118.019 +638125.597|219607.327|117.647 +638120.583|219612.000|117.141 +638115.618|219616.639|117.129 +638110.558|219621.360|116.842 +638105.544|219626.036|116.373 +638100.576|219630.669|115.977 +638095.510|219635.390|115.300 +638090.499|219640.069|115.172 +638085.528|219644.705|114.660 +638080.459|219649.433|114.242 +638075.439|219654.114|113.770 +638070.413|219658.799|113.221 +638065.390|219663.484|112.666 +638060.361|219668.172|112.130 +638055.335|219672.860|111.609 +638050.305|219677.550|111.219 +638045.288|219682.238|111.377 +638040.268|219686.929|111.392 +638035.251|219691.617|111.633 +638030.237|219696.308|111.938 +638025.226|219700.993|112.465 +638020.170|219705.726|112.846 +638015.214|219710.365|113.468 +638010.206|219715.050|113.922 +638005.198|219719.735|114.395 +638000.236|219724.374|114.773 +637995.176|219729.104|114.998 +637990.174|219733.786|115.571 +637985.197|219738.434|115.437 +637980.174|219743.125|115.367 +637975.157|219747.813|115.535 +637970.131|219752.507|115.446 +637965.095|219757.204|115.202 +637960.109|219761.858|114.946 +637955.061|219766.564|114.447 +637950.017|219771.267|114.108 +637945.012|219775.934|113.633 +637940.007|219780.600|113.163 +637934.957|219785.310|112.776 +637929.952|219789.976|112.426 +637924.932|219794.652|111.819 +637919.829|219799.398|110.579 +637914.828|219804.064|110.441 +637904.766|219813.440|109.173 +637899.764|219818.109|109.109 +637894.766|219822.776|109.097 +637889.816|219827.400|109.140 +637884.802|219832.078|108.991 +637879.858|219836.696|109.173 +637874.893|219841.332|109.042 +637869.891|219846.002|109.109 +637864.926|219850.638|109.049 +637859.973|219855.264|109.143 +637855.013|219859.894|109.204 +637850.048|219864.530|109.192 +637845.077|219869.172|109.143 +637840.112|219873.808|109.143 +637835.186|219878.408|109.100 +637830.203|219883.056|108.945 +637825.356|219887.610|110.557 +637820.513|219892.148|111.584 +637815.630|219896.717|112.087 +637810.756|219901.277|112.734 +637805.855|219905.855|113.057 +637800.966|219910.430|113.514 +637796.080|219914.999|114.023 +637791.194|219919.571|114.535 +637786.330|219924.125|115.285 +637781.550|219928.599|115.928 +637776.640|219933.187|116.196 +637771.782|219937.728|116.504 +637766.920|219942.273|116.815 +637762.083|219946.799|117.376 +637757.246|219951.322|117.946 +637752.408|219955.849|118.522 +637747.577|219960.363|118.680 +637742.740|219964.883|118.796 +637737.903|219969.400|118.930 +637733.051|219973.932|118.927 +637728.201|219978.462|118.982 +637723.343|219982.997|118.979 +637718.524|219987.493|118.933 +637713.656|219992.038|118.872 +637708.874|219996.500|118.753 +637703.991|220001.060|118.586 +637699.169|220005.552|118.165 +637694.249|220010.143|117.741 +637689.421|220014.642|117.327 +637684.557|220019.180|117.028 +637679.695|220023.706|116.382 +637655.323|220046.417|113.514 +637650.504|220050.910|113.002 +637616.659|220082.454|109.487 +637601.922|220096.157|106.049 +637592.708|220104.786|107.717 +637587.993|220109.194|107.954 +637583.305|220113.574|108.079 +637555.242|220139.793|108.924 +637508.190|220183.672|105.525 +637503.414|220188.116|104.522 +637484.443|220205.785|101.645 +637475.201|220214.408|101.227 +637470.581|220218.718|101.060 +637466.024|220222.976|101.264 +637452.030|220236.015|99.621 +637411.711|220273.698|101.904 +637398.398|220286.146|102.703 +637324.426|220355.275|106.479 +637299.926|220378.235|111.874 +637283.043|220393.999|111.996 +637278.934|220397.840|112.276 +637274.844|220401.671|112.877 +637270.784|220405.469|113.395 +637266.770|220409.224|113.898 +637258.708|220416.771|115.023 +637254.660|220420.554|115.202 +637250.670|220424.291|115.861 +637246.650|220428.049|116.175 +637242.544|220431.880|116.150 +637238.536|220435.632|116.541 +637234.522|220439.384|116.699 +637230.477|220443.161|116.745 +637226.472|220446.904|116.970 +637218.349|220454.484|116.562 +637206.230|220465.792|115.903 +637198.113|220473.357|115.047 +637194.227|220476.988|115.233 +637190.435|220480.532|115.602 +637186.549|220484.166|115.803 +637171.248|220498.461|116.260 +637167.420|220502.036|116.336 +637163.314|220505.855|115.349 +637159.468|220509.446|115.175 +637155.664|220512.994|114.983 +637130.027|220536.957|116.745 +637122.867|220543.654|117.239 +637119.280|220547.006|117.574 +637115.692|220550.359|117.723 +637112.257|220553.575|118.244 +637108.737|220556.870|118.653 +637325.502|220351.690|106.369 +637404.137|220278.029|102.718 +637413.007|220269.717|101.919 +637431.014|220252.846|101.172 +637463.089|220222.823|101.054 +637467.709|220218.498|100.916 +637472.373|220214.137|101.063 +637477.030|220209.781|101.185 +637481.715|220205.401|101.499 +637491.115|220196.614|102.081 +637529.593|220160.699|108.180 +637534.382|220156.221|108.515 +637539.124|220151.784|108.597 +637548.610|220142.911|108.802 +637553.349|220138.476|108.914 +637586.533|220107.399|107.674 +637591.282|220102.945|107.339 +637600.575|220094.216|105.205 +637605.708|220089.452|107.701 +637610.560|220084.916|108.213 +637615.586|220080.229|109.305 +637620.442|220075.696|109.875 +637625.361|220071.103|110.612 +637630.214|220066.564|110.883 +637649.849|220048.221|112.807 +637654.817|220043.585|113.764 +637669.576|220029.796|115.242 +637674.504|220025.191|115.593 +637679.479|220020.549|116.376 +637684.432|220015.922|117.037 +637689.290|220011.380|117.287 +637694.259|220006.735|117.711 +637699.178|220002.139|118.156 +637704.128|219997.512|118.485 +637709.005|219992.946|118.613 +637713.930|219988.340|118.744 +637718.841|219983.744|118.787 +637723.748|219979.154|118.808 +637728.652|219974.563|118.839 +637733.550|219969.979|118.827 +637738.488|219965.355|118.769 +637743.319|219960.829|118.604 +637748.257|219956.208|118.570 +637753.094|219951.670|118.019 +637757.992|219947.080|117.620 +637762.872|219942.504|117.001 +637767.761|219937.920|116.519 +637772.665|219933.324|116.220 +637777.591|219928.712|116.153 +637782.501|219924.104|115.404 +637787.363|219919.544|114.623 +637792.243|219914.966|114.090 +637797.178|219910.339|113.627 +637802.064|219905.758|113.163 +637807.056|219901.082|112.816 +637811.936|219896.504|112.325 +637816.859|219891.886|111.734 +637821.757|219887.287|110.829 +637826.609|219882.721|109.347 +637831.538|219878.100|108.820 +637836.509|219873.446|108.896 +637841.535|219868.743|109.076 +637846.494|219864.098|109.039 +637851.463|219859.446|109.116 +637856.464|219854.761|109.055 +637861.420|219850.119|109.030 +637866.428|219845.428|109.088 +637871.430|219840.744|109.058 +637876.383|219836.105|109.073 +637881.385|219831.423|109.073 +637886.390|219826.738|109.170 +637891.379|219822.062|109.061 +637896.378|219817.381|109.113 +637901.325|219812.748|109.100 +637906.321|219808.072|109.146 +637911.353|219803.357|108.994 +637916.361|219798.684|110.225 +637921.466|219793.926|111.527 +637926.489|219789.235|112.249 +637931.488|219784.560|112.575 +637936.538|219779.835|113.020 +637941.534|219775.163|113.361 +637946.536|219770.487|113.877 +637951.577|219765.772|114.203 +637956.564|219761.105|114.498 +637961.614|219756.387|115.163 +637966.644|219751.681|115.388 +637971.618|219747.024|115.443 +637976.632|219742.327|115.340 +637981.606|219737.669|115.413 +637986.629|219732.969|115.590 +637991.631|219728.278|115.151 +637996.639|219723.584|114.892 +638001.641|219718.891|114.419 +638006.646|219714.200|114.023 +638011.599|219709.551|113.465 +638016.600|219704.858|112.938 +638021.602|219700.164|112.435 +638026.561|219695.512|111.993 +638031.618|219690.770|111.594 +638036.629|219686.073|111.267 +638041.597|219681.418|111.231 +638046.614|219676.721|111.203 +638051.634|219672.024|111.459 +638056.657|219667.324|111.877 +638061.684|219662.630|112.633 +638066.707|219657.936|113.212 +638071.727|219653.246|113.794 +638076.744|219648.555|114.248 +638081.761|219643.864|114.675 +638086.775|219639.173|115.175 +638091.786|219634.488|115.419 +638096.751|219629.843|115.864 +638101.762|219625.158|116.358 +638106.818|219620.431|116.827 +638111.781|219615.789|117.110 +638116.788|219611.098|117.086 +638121.796|219606.413|117.418 +638126.804|219601.731|117.821 +638131.812|219597.043|118.040 +638136.817|219592.359|118.186 +638141.779|219587.713|118.330 +638146.787|219583.026|118.415 +638151.795|219578.338|118.555 +638156.803|219573.647|118.589 +638161.811|219568.959|118.686 +638166.818|219564.271|118.814 +638171.781|219559.629|119.003 +638176.788|219554.941|119.131 +638181.744|219550.302|119.445 +638186.755|219545.611|119.497 +638191.757|219540.936|119.994 +638196.722|219536.288|120.070 +638201.730|219531.600|120.219 +638206.692|219526.955|120.366 +638211.706|219522.255|120.351 +638216.720|219517.558|120.418 +638221.689|219512.903|120.451 +638226.660|219508.243|120.408 +638231.677|219503.543|120.396 +638236.602|219498.925|120.338 +638241.629|219494.210|120.146 +638246.609|219489.540|119.966 +638251.544|219484.916|119.829 +638256.579|219480.189|119.473 +638261.578|219475.498|118.988 +638266.564|219470.822|118.836 +638271.554|219466.144|118.641 +638276.504|219461.499|118.290 +638281.500|219456.814|118.031 +638276.224|219457.405|118.135 +638271.176|219462.133|118.455 +638266.141|219466.845|118.491 +638261.096|219471.572|118.887 +638256.046|219476.306|119.439 +638251.004|219481.027|119.796 +638245.926|219485.779|119.902 +638240.946|219490.442|120.046 +638235.871|219495.194|120.171 +638230.796|219499.943|120.338 +638225.822|219504.597|120.366 +638220.756|219509.340|120.430 +638215.690|219514.080|120.381 +638210.722|219518.728|120.357 +638205.656|219523.465|120.360 +638200.596|219528.198|120.232 +638185.518|219542.295|119.561 +638180.507|219546.980|119.387 +638175.453|219551.701|119.031 +638170.397|219556.432|118.878 +638165.386|219561.117|118.714 +638160.326|219565.847|118.595 +638155.315|219570.538|118.558 +638150.304|219575.226|118.522 +638145.248|219579.953|118.369 +638140.191|219584.681|118.138 +638135.180|219589.369|118.046 +638130.123|219594.096|117.949 +638125.113|219598.781|117.754 +638120.102|219603.463|117.440 +638115.045|219608.190|117.162 +638110.034|219612.878|117.004 +638104.977|219617.608|116.894 +638099.963|219622.293|116.617 +638094.904|219627.018|116.080 +638089.890|219631.702|115.590 +638084.876|219636.384|115.233 +638079.862|219641.072|114.864 +638074.842|219645.760|114.459 +638069.776|219650.493|114.020 +638064.802|219655.138|113.401 +638059.779|219659.829|112.941 +638054.704|219664.566|112.154 +638049.720|219669.217|111.453 +638044.697|219673.914|111.124 +638039.628|219678.654|111.097 +638034.657|219683.305|111.072 +638029.640|219688.002|111.237 +638024.629|219692.696|111.588 +638019.667|219697.347|112.045 +638014.662|219702.038|112.596 +638009.663|219706.729|113.310 +638004.704|219711.374|113.767 +637999.696|219716.065|114.175 +637994.737|219720.710|114.572 +637989.781|219725.355|115.047 +637984.776|219730.046|115.388 +637979.811|219734.694|115.562 +637974.831|219739.352|115.358 +637969.850|219744.009|115.202 +637964.885|219748.657|115.385 +637959.901|219753.315|115.212 +637954.915|219757.975|115.001 +637944.908|219767.314|113.874 +637939.952|219771.938|113.422 +637934.947|219776.611|112.929 +637929.943|219781.283|112.508 +637924.987|219785.913|112.142 +637919.966|219790.595|111.569 +637914.965|219795.252|110.445 +637904.955|219804.594|109.103 +637900.002|219809.221|109.052 +637895.009|219813.891|109.134 +637890.059|219818.521|109.158 +637885.097|219823.157|108.994 +637880.147|219827.787|109.064 +637875.197|219832.417|109.137 +637870.238|219837.053|109.085 +637865.279|219841.689|109.049 +637860.326|219846.322|109.134 +637855.355|219850.967|108.994 +637850.451|219855.557|109.122 +637845.479|219860.202|109.033 +637840.517|219864.841|109.061 +637835.601|219869.441|109.106 +637825.710|219878.685|109.125 +637820.821|219883.276|110.155 +637816.045|219887.762|111.426 +637811.183|219892.322|112.179 +637806.248|219896.943|112.648 +637801.384|219901.494|112.804 +637796.458|219906.108|113.392 +637791.612|219910.647|113.794 +637786.726|219915.222|114.297 +637781.889|219919.754|114.846 +637777.076|219924.268|115.614 +637772.199|219928.837|116.254 +637767.322|219933.397|116.370 +637762.467|219937.945|116.714 +637757.624|219942.480|117.208 +637752.780|219947.015|117.714 +637747.974|219951.517|118.086 +637743.121|219956.062|118.516 +637738.290|219960.582|118.683 +637733.389|219965.163|118.665 +637728.543|219969.696|118.726 +637723.684|219974.237|118.692 +637718.832|219978.776|118.729 +637713.961|219983.326|118.641 +637709.093|219987.877|118.592 +637704.223|219992.431|118.528 +637699.330|219997.000|118.314 +637694.463|220001.547|117.891 +637689.592|220006.095|117.470 +637684.755|220010.615|117.400 +637679.799|220015.239|116.726 +637674.949|220019.762|116.175 +637670.070|220024.319|115.815 +637665.205|220028.861|115.196 +637660.243|220033.481|114.239 +637626.270|220065.193|110.969 +637621.436|220069.704|110.509 +637611.728|220078.763|109.362 +637606.839|220083.316|108.229 +637559.537|220127.512|108.354 +637550.213|220136.227|108.811 +637545.549|220140.585|108.881 +637536.174|220149.336|108.463 +637531.449|220153.747|108.207 +637526.777|220158.105|108.003 +637503.045|220180.218|104.714 +637493.416|220189.177|102.611 +637488.753|220193.526|102.059 +637479.447|220202.207|101.474 +637474.802|220206.538|101.127 +637470.184|220210.851|100.935 +637465.579|220215.152|100.846 +637461.025|220219.407|101.078 +637451.659|220228.130|99.569 +637424.888|220253.172|102.075 +637398.136|220278.169|102.776 +637363.562|220310.530|107.284 +637341.824|220330.842|107.820 +637283.003|220385.855|112.907 +637274.731|220393.588|113.432 +637266.492|220401.290|113.925 +637258.534|220408.746|115.468 +637254.468|220412.544|115.772 +637246.388|220420.097|116.394 +637242.352|220423.864|116.644 +637238.365|220427.595|117.098 +637234.269|220431.417|117.104 +637218.151|220446.462|117.318 +637214.115|220450.223|117.223 +637189.999|220472.708|115.858 +637159.120|220501.527|116.233 +637151.503|220508.629|115.977 +637147.724|220512.155|116.092 +637144.054|220515.588|116.425 +637133.172|220525.756|117.577 +637129.463|220529.218|117.604 +637125.839|220532.601|117.754 +637122.212|220535.985|117.714 +637118.640|220539.325|118.083 +637107.859|220549.387|118.427 +637104.372|220552.645|118.759 +637100.897|220555.888|118.951 +637411.306|220262.740|101.157 +637425.031|220249.884|102.005 +637438.500|220237.234|101.087 +637447.324|220228.923|98.932 +637461.473|220215.694|101.252 +637466.045|220211.396|100.880 +637470.663|220207.071|101.066 +637475.284|220202.737|101.002 +637480.002|220198.321|101.535 +637484.592|220194.011|101.340 +637499.012|220180.538|104.163 +637503.840|220176.021|104.922 +637513.390|220167.091|106.455 +637518.288|220162.516|107.409 +637532.470|220149.229|108.195 +637541.974|220140.320|108.527 +637546.726|220135.867|108.738 +637560.762|220122.687|107.649 +637565.462|220118.265|106.915 +637570.205|220113.818|106.802 +637594.028|220091.467|106.342 +637603.940|220082.207|108.451 +637608.817|220077.638|108.792 +637618.708|220068.393|110.618 +637623.548|220063.861|110.771 +637628.400|220059.313|111.063 +637633.344|220054.689|111.709 +637638.255|220050.090|112.130 +637648.103|220040.879|113.685 +637657.896|220031.704|114.126 +637662.855|220027.068|115.123 +637667.802|220022.438|115.632 +637672.694|220017.860|116.129 +637677.626|220013.246|116.580 +637682.563|220008.622|117.126 +637687.516|220003.983|117.431 +637692.424|219999.386|117.775 +637697.331|219994.790|118.144 +637702.269|219990.166|118.366 +637707.194|219985.548|118.522 +637712.059|219980.986|118.604 +637716.969|219976.383|118.665 +637721.916|219971.744|118.638 +637726.811|219967.154|118.625 +637731.761|219962.512|118.677 +637736.650|219957.927|118.601 +637741.548|219953.328|118.189 +637746.404|219948.768|117.851 +637751.360|219944.114|117.555 +637756.252|219939.520|117.117 +637761.138|219934.930|116.617 +637766.045|219930.325|116.352 +637770.953|219925.719|116.086 +637775.857|219921.104|115.306 +637780.767|219916.490|114.568 +637785.650|219911.902|114.078 +637790.585|219907.266|113.651 +637795.501|219902.646|112.980 +637800.439|219898.010|112.599 +637805.389|219893.361|112.377 +637810.360|219888.692|111.813 +637815.240|219884.099|110.737 +637820.083|219879.527|109.189 +637825.085|219874.836|109.015 +637830.044|219870.184|108.939 +637835.061|219865.484|108.978 +637840.078|219860.784|109.073 +637845.034|219856.139|109.006 +637850.048|219851.442|109.100 +637860.061|219842.057|109.183 +637865.047|219837.382|108.924 +637870.055|219832.691|109.052 +637875.109|219827.957|109.137 +637880.105|219823.273|109.088 +637885.103|219818.591|109.116 +637890.145|219813.863|109.116 +637895.140|219809.185|109.119 +637900.136|219804.503|109.164 +637905.165|219799.788|109.003 +637910.256|219795.033|109.975 +637915.306|219790.318|111.164 +637920.375|219785.581|111.868 +637925.422|219780.856|112.194 +637930.473|219776.129|112.606 +637935.527|219771.405|113.157 +637940.574|219766.680|113.633 +637945.622|219761.959|114.160 +637950.651|219757.250|114.294 +637955.707|219752.522|115.138 +637960.734|219747.816|115.343 +637965.748|219743.116|115.184 +637970.722|219738.456|115.273 +637975.797|219733.704|115.596 +637980.808|219729.004|115.434 +637985.809|219724.310|114.986 +637990.811|219719.616|114.581 +637995.810|219714.922|114.072 +638000.815|219710.225|113.697 +638005.817|219705.531|113.258 +638010.864|219700.791|112.688 +638015.814|219696.140|111.950 +638020.868|219691.398|111.499 +638025.876|219686.697|111.136 +638030.890|219681.997|110.993 +638035.907|219677.294|111.057 +638040.924|219672.594|111.082 +638045.944|219667.894|111.383 +638051.019|219663.152|112.109 +638056.045|219658.452|112.886 +638061.065|219653.758|113.474 +638066.085|219649.064|114.002 +638071.102|219644.370|114.483 +638076.116|219639.676|114.949 +638081.176|219634.939|115.196 +638086.141|219630.294|115.654 +638091.149|219625.606|116.080 +638096.205|219620.876|116.586 +638101.167|219616.231|116.851 +638106.175|219611.540|116.961 +638111.229|219606.806|117.120 +638116.188|219602.161|117.269 +638121.196|219597.473|117.577 +638126.204|219592.785|117.781 +638131.212|219588.091|117.717 +638136.216|219583.401|117.830 +638141.224|219578.707|117.885 +638146.183|219574.061|118.025 +638151.191|219569.374|118.217 +638156.153|219564.722|118.244 +638166.163|219555.350|118.744 +638171.125|219550.702|118.830 +638176.084|219546.056|119.006 +638181.086|219541.375|119.464 +638186.048|219536.726|119.543 +638191.007|219532.081|119.747 +638195.970|219527.436|119.912 +638200.926|219522.794|120.241 +638205.933|219518.106|120.427 +638210.856|219513.495|120.347 +638215.821|219508.843|120.415 +638220.792|219504.186|120.311 +638225.761|219499.535|120.372 +638230.738|219494.871|120.204 +638235.667|219490.250|120.043 +638240.641|219485.590|119.979 +638245.573|219480.969|119.860 +638250.507|219476.345|119.692 +638255.473|219471.679|118.756 +638260.456|219467.012|118.702 +638265.397|219462.383|118.510 +638270.341|219457.747|118.284 +638263.050|219460.953|118.397 +638258.003|219465.674|118.695 +638252.958|219470.396|119.101 +638247.956|219475.081|119.631 +638242.875|219479.829|119.729 +638237.889|219484.493|119.951 +638232.817|219489.232|119.963 +638227.788|219493.939|120.158 +638222.761|219498.636|120.262 +638217.741|219503.326|120.201 +638212.673|219508.069|120.296 +638207.653|219512.760|120.311 +638202.632|219517.448|120.290 +638197.576|219522.172|120.027 +638192.544|219526.884|120.664 +638182.494|219536.254|119.217 +638177.480|219540.939|119.089 +638172.421|219545.660|118.851 +638167.364|219550.385|118.540 +638162.353|219555.060|118.171 +638157.293|219559.785|117.952 +638152.234|219564.512|117.882 +638147.220|219569.197|117.738 +638142.160|219573.924|117.662 +638137.052|219578.701|117.680 +638132.038|219583.382|117.607 +638126.978|219588.113|117.620 +638121.918|219592.840|117.607 +638116.907|219597.522|117.406 +638111.848|219602.246|117.120 +638106.739|219607.017|116.995 +638101.728|219611.698|116.793 +638096.669|219616.429|116.745 +638091.606|219621.153|116.394 +638086.543|219625.878|115.934 +638081.529|219630.556|115.602 +638076.418|219635.326|115.187 +638071.401|219640.011|114.812 +638066.377|219644.696|114.285 +638061.309|219649.426|113.803 +638056.237|219654.157|113.267 +638051.208|219658.845|112.636 +638046.130|219663.581|111.837 +638041.097|219668.272|111.243 +638036.022|219673.009|110.871 +638031.002|219677.703|110.886 +638025.979|219682.397|110.899 +638020.916|219687.133|111.115 +638015.902|219691.824|111.435 +638010.892|219696.515|111.892 +638005.893|219701.200|112.758 +638000.842|219705.930|113.343 +637995.880|219710.576|113.788 +637990.872|219715.263|114.215 +637985.819|219719.994|114.645 +637980.860|219724.636|115.090 +637975.846|219729.324|115.282 +637970.838|219734.012|115.602 +637965.845|219738.669|115.141 +637960.819|219743.366|115.077 +637955.802|219748.060|115.233 +637950.809|219752.723|114.885 +637945.762|219757.439|114.358 +637940.760|219762.108|113.898 +637935.749|219766.787|113.270 +637930.695|219771.505|112.782 +637925.736|219776.138|112.340 +637920.735|219780.814|111.999 +637915.721|219785.496|111.484 +637910.679|219790.196|110.533 +637900.660|219799.544|109.094 +637895.717|219804.171|109.167 +637890.718|219808.846|109.125 +637885.765|219813.479|109.094 +637880.812|219818.115|109.061 +637875.862|219822.745|109.128 +637870.909|219827.381|109.164 +637865.950|219832.017|109.125 +637861.042|219836.611|109.155 +637856.071|219841.259|108.985 +637851.170|219845.846|109.152 +637846.205|219850.491|109.113 +637841.288|219855.091|109.100 +637836.372|219859.690|109.116 +637831.407|219864.335|109.106 +637826.536|219868.892|109.161 +637821.565|219873.543|109.128 +637816.645|219878.146|109.177 +637811.893|219882.620|110.740 +637807.059|219887.159|111.862 +637802.176|219891.737|112.386 +637797.263|219896.333|112.557 +637792.423|219900.872|113.023 +637787.555|219905.438|113.721 +637782.751|219909.936|114.087 +637777.868|219914.515|114.617 +637773.034|219919.047|115.175 +637768.212|219923.570|115.882 +637763.378|219928.103|116.440 +637758.553|219932.617|116.617 +637753.704|219937.161|117.043 +637748.891|219941.669|117.354 +637744.033|219946.220|117.735 +637739.211|219950.734|117.985 +637734.383|219955.254|118.202 +637729.564|219959.768|118.513 +637724.729|219964.295|118.671 +637719.877|219968.836|118.702 +637715.055|219973.344|118.586 +637710.181|219977.901|118.458 +637705.362|219982.409|118.397 +637700.480|219986.975|118.238 +637695.636|219991.501|118.010 +637690.790|219996.034|117.784 +637685.944|220000.563|117.586 +637681.052|220005.132|117.022 +637676.214|220009.646|116.565 +637671.328|220014.212|116.096 +637666.455|220018.766|115.791 +637661.593|220023.304|115.209 +637656.683|220027.888|114.648 +637651.824|220032.421|113.752 +637632.369|220050.590|111.929 +637622.652|220059.664|110.914 +637617.857|220064.147|110.734 +637608.223|220073.145|109.762 +637598.496|220082.219|108.253 +637593.559|220086.818|107.204 +637583.842|220095.892|105.589 +637565.032|220113.516|106.397 +637555.736|220122.233|107.314 +637541.840|220135.263|108.427 +637522.906|220152.972|107.430 +637518.291|220157.297|107.595 +637513.423|220161.836|106.510 +637508.632|220166.310|105.620 +637503.834|220170.785|104.745 +637499.070|220175.238|104.086 +637494.346|220179.648|103.413 +637489.545|220184.129|102.602 +637484.729|220188.619|101.432 +637480.063|220192.987|101.182 +637475.442|220197.306|100.953 +637470.791|220201.658|100.840 +637461.552|220210.308|100.755 +637457.023|220214.551|100.840 +637434.175|220235.945|100.926 +637376.687|220289.846|105.464 +637363.763|220301.971|106.909 +637295.479|220365.973|111.078 +637266.852|220392.841|114.770 +637258.561|220400.605|114.824 +637250.554|220408.118|115.937 +637246.531|220411.888|116.199 +637242.523|220415.643|116.537 +637238.530|220419.386|116.961 +637230.511|220426.900|117.470 +637226.496|220430.661|117.610 +637218.422|220438.214|117.534 +637210.403|220445.721|117.519 +637206.376|220449.488|117.464 +637194.352|220460.729|116.772 +637190.332|220464.488|116.373 +637186.427|220468.142|116.470 +637182.553|220471.775|116.690 +637178.761|220475.329|117.046 +637159.538|220493.322|117.126 +637151.771|220500.582|116.669 +637144.307|220507.574|117.013 +637140.552|220511.089|117.013 +637129.585|220521.370|118.028 +637122.340|220528.157|118.528 +637118.643|220531.617|118.412 +637111.416|220538.384|118.446 +637107.764|220541.800|118.543 +637104.155|220545.181|118.607 +637097.057|220551.825|118.817 +637306.025|220353.586|108.186 +637353.470|220309.116|107.497 +637370.667|220292.970|105.589 +637401.214|220264.295|102.236 +637446.008|220222.278|99.350 +637455.493|220213.417|100.987 +637460.025|220209.165|100.660 +637464.680|220204.813|101.026 +637473.900|220196.166|100.761 +637573.350|220103.064|105.994 +637577.941|220098.745|104.845 +637582.689|220094.295|104.824 +637587.783|220089.562|106.930 +637592.662|220084.996|107.585 +637607.320|220071.301|109.820 +637612.228|220066.714|110.432 +637636.599|220043.915|112.718 +637646.347|220034.792|113.471 +637651.260|220030.199|114.002 +637656.180|220025.599|114.632 +637661.087|220021.009|115.187 +637665.985|220016.428|115.705 +637670.911|220011.822|116.065 +637675.803|220007.244|116.608 +637680.725|220002.642|117.001 +637685.654|219998.030|117.495 +637690.567|219993.434|117.885 +637695.459|219988.852|118.129 +637700.342|219984.280|118.299 +637705.222|219979.711|118.455 +637710.139|219975.106|118.564 +637715.006|219970.546|118.668 +637719.953|219965.910|118.631 +637724.784|219961.381|118.424 +637729.655|219956.812|118.171 +637734.584|219952.191|118.034 +637739.454|219947.625|117.808 +637744.362|219943.023|117.458 +637749.232|219938.457|117.254 +637754.131|219933.860|116.864 +637758.983|219929.307|116.504 +637763.912|219924.680|115.949 +637768.807|219920.086|115.550 +637773.677|219915.511|114.895 +637778.609|219910.881|114.364 +637783.498|219906.294|113.941 +637788.421|219901.670|113.334 +637793.337|219897.056|112.660 +637798.287|219892.410|112.395 +637803.228|219887.777|112.029 +637808.080|219883.215|111.176 +637813.003|219878.585|110.009 +637817.898|219873.982|109.049 +637822.860|219869.331|109.000 +637827.877|219864.631|109.033 +637832.842|219859.977|109.030 +637837.856|219855.277|109.091 +637842.818|219850.628|109.094 +637847.826|219845.934|109.085 +637852.828|219841.247|109.039 +637857.833|219836.556|109.061 +637862.841|219831.862|109.128 +637867.836|219827.180|109.024 +637872.844|219822.486|109.173 +637877.840|219817.804|109.122 +637882.836|219813.123|109.094 +637887.880|219808.395|109.140 +637892.873|219803.717|109.070 +637897.917|219798.989|109.128 +637902.943|219794.274|108.893 +637908.058|219789.504|110.341 +637913.099|219784.795|111.350 +637918.165|219780.058|112.008 +637923.213|219775.334|112.292 +637928.257|219770.609|112.639 +637933.314|219765.882|113.218 +637938.413|219761.112|113.809 +637943.461|219756.390|114.297 +637948.505|219751.669|114.800 +637953.577|219746.917|114.895 +637958.603|219742.208|114.989 +637963.687|219737.450|115.468 +637968.704|219732.747|115.462 +637973.715|219728.050|115.230 +637978.769|219723.307|114.977 +637983.822|219718.567|114.596 +637988.827|219713.870|114.233 +637993.871|219709.131|113.678 +637998.925|219704.388|113.285 +638003.924|219699.694|112.694 +638008.968|219694.955|111.908 +638014.019|219690.209|111.371 +638019.030|219685.509|111.060 +638024.086|219680.763|110.719 +638029.152|219676.017|110.771 +638034.172|219671.314|110.832 +638039.244|219666.568|111.304 +638044.319|219661.823|111.920 +638049.394|219657.077|112.755 +638054.463|219652.337|113.316 +638059.532|219647.595|113.895 +638064.549|219642.901|114.376 +638069.614|219638.164|114.852 +638074.674|219633.424|115.184 +638079.688|219628.734|115.559 +638084.790|219623.957|116.010 +638089.850|219619.224|116.504 +638094.858|219614.530|116.580 +638099.915|219609.796|116.833 +638104.971|219605.060|116.992 +638109.979|219600.369|117.050 +638115.033|219595.632|117.272 +638120.089|219590.899|117.488 +638125.097|219586.205|117.510 +638130.154|219581.468|117.491 +638135.208|219576.728|117.482 +638140.218|219572.031|117.412 +638145.229|219567.338|117.473 +638150.286|219562.598|117.473 +638155.294|219557.904|117.629 +638160.302|219553.216|117.869 +638165.310|219548.528|118.138 +638170.314|219543.840|118.461 +638175.322|219539.156|118.778 +638180.327|219534.468|119.122 +638185.335|219529.780|119.348 +638190.325|219525.117|120.265 +638195.299|219520.447|119.887 +638200.307|219515.759|120.162 +638205.269|219511.111|120.311 +638210.237|219506.454|120.277 +638215.254|219501.754|120.223 +638220.226|219497.096|120.219 +638225.197|219492.436|120.174 +638230.171|219487.772|120.052 +638235.146|219483.109|120.000 +638240.080|219478.482|119.796 +638245.061|219473.813|119.625 +638249.998|219469.183|119.424 +638255.015|219464.464|118.394 +638259.993|219459.801|118.461 +638258.795|219457.116|118.369 +638253.763|219461.822|118.360 +638248.740|219466.537|119.403 +638243.753|219471.203|119.567 +638238.721|219475.913|119.707 +638233.786|219480.530|119.826 +638228.751|219485.246|120.162 +638223.728|219489.946|120.183 +638218.753|219494.600|120.216 +638213.733|219499.294|120.171 +638208.710|219503.997|120.302 +638203.739|219508.645|120.302 +638198.679|219513.376|120.076 +638193.665|219518.060|119.912 +638188.642|219522.764|120.180 +638183.649|219527.421|119.214 +638178.632|219532.112|119.168 +638173.631|219536.781|118.534 +638168.574|219541.506|118.174 +638163.563|219546.187|117.851 +638158.552|219550.869|117.595 +638153.493|219555.597|117.345 +638148.479|219560.284|117.187 +638143.465|219564.975|117.162 +638138.402|219569.709|117.202 +638133.388|219574.400|117.242 +638128.328|219579.136|117.379 +638123.314|219583.824|117.363 +638118.258|219588.558|117.354 +638113.244|219593.243|117.190 +638108.187|219597.973|117.062 +638103.173|219602.661|117.016 +638098.113|219607.388|116.824 +638093.054|219612.119|116.592 +638082.937|219621.574|116.077 +638077.875|219626.304|115.739 +638072.858|219630.992|115.327 +638067.792|219635.723|114.907 +638062.726|219640.456|114.538 +638057.654|219645.187|113.983 +638052.631|219649.878|113.493 +638047.510|219654.660|112.889 +638042.481|219659.351|112.164 +638037.400|219664.090|111.392 +638032.322|219668.833|110.777 +638027.296|219673.530|110.618 +638022.227|219678.270|110.579 +638017.164|219683.012|110.862 +638012.150|219687.706|111.112 +638007.094|219692.443|111.691 +638002.046|219697.180|112.453 +637997.044|219701.867|113.118 +637992.037|219706.558|113.553 +637986.986|219711.292|114.093 +637981.978|219715.983|114.459 +637976.967|219720.674|114.757 +637971.917|219725.407|115.212 +637966.945|219730.058|115.300 +637961.931|219734.752|115.507 +637956.844|219739.504|115.047 +637951.855|219744.165|114.739 +637946.829|219748.859|114.764 +637941.781|219753.571|114.248 +637936.731|219758.283|113.794 +637931.674|219762.998|113.176 +637926.663|219767.674|112.639 +637921.609|219772.389|112.243 +637916.605|219777.062|111.889 +637911.536|219781.786|111.277 +637906.497|219786.483|110.353 +637901.428|219791.195|108.997 +637896.433|219795.868|108.978 +637891.446|219800.531|109.146 +637886.445|219805.204|109.128 +637881.491|219809.831|109.109 +637876.490|219814.506|109.073 +637871.540|219819.133|109.149 +637866.532|219823.812|109.085 +637861.573|219828.445|109.082 +637856.620|219833.078|109.128 +637851.652|219837.717|109.033 +637846.689|219842.356|109.012 +637841.776|219846.949|109.064 +637836.820|219851.582|109.155 +637831.900|219856.182|109.140 +637826.926|219860.827|109.067 +637822.019|219865.417|109.265 +637817.087|219870.023|109.149 +637812.165|219874.625|109.173 +637807.330|219879.161|110.356 +637802.509|219883.687|111.636 +637797.671|219888.219|112.127 +637792.770|219892.804|112.444 +637787.927|219897.339|112.883 +637783.096|219901.862|113.496 +637778.271|219906.383|114.145 +637773.424|219910.918|114.608 +637768.584|219915.450|115.099 +637763.741|219919.986|115.574 +637758.876|219924.533|115.855 +637754.106|219929.005|116.598 +637749.245|219933.555|116.909 +637744.429|219938.060|117.232 +637739.552|219942.620|117.397 +637734.776|219947.086|117.671 +637729.893|219951.655|117.827 +637725.107|219956.129|118.001 +637720.261|219960.661|118.083 +637715.421|219965.188|118.232 +637710.608|219969.684|118.238 +637705.798|219974.176|118.272 +637700.973|219978.687|118.162 +637696.136|219983.201|118.007 +637691.290|219987.731|117.754 +637686.413|219992.278|117.290 +637681.561|219996.811|117.056 +637676.729|220001.319|116.620 +637671.908|220005.818|116.303 +637667.058|220010.341|115.760 +637662.169|220014.904|115.330 +637657.375|220019.378|114.922 +637652.461|220023.959|114.355 +637647.667|220028.434|113.986 +637642.833|220032.948|113.733 +637633.140|220041.988|112.731 +637628.291|220046.512|112.051 +637618.625|220055.528|111.072 +637613.867|220059.969|110.835 +637609.015|220064.495|110.259 +637565.428|220105.106|103.733 +637551.661|220118.012|106.354 +637547.131|220122.258|107.320 +637528.478|220139.692|108.073 +637523.793|220144.063|107.756 +637519.071|220148.464|107.259 +637499.951|220166.277|104.352 +637490.448|220175.128|102.977 +637471.650|220192.651|100.926 +637457.813|220205.575|100.804 +637453.268|220209.824|101.099 +637448.382|220214.356|99.185 +637421.593|220239.423|102.105 +637373.032|220284.829|105.431 +637304.144|220349.218|109.006 +637267.480|220383.548|114.614 +637255.224|220394.999|115.160 +637251.304|220398.678|116.074 +637247.250|220402.464|116.208 +637239.228|220409.971|116.864 +637207.312|220439.814|118.083 +637179.517|220465.771|117.299 +637171.974|220472.830|117.985 +637164.308|220479.996|118.223 +637148.940|220494.349|117.674 +637145.227|220497.818|117.824 +637130.429|220511.653|118.308 +637126.735|220515.103|118.382 +637382.652|220273.280|103.596 +637400.345|220256.659|101.986 +637440.975|220218.520|100.197 +637445.386|220214.365|99.106 +637459.516|220201.140|100.810 +637464.146|220196.800|100.752 +637473.458|220188.076|101.032 +637478.350|220183.510|102.319 +637497.299|220165.774|104.065 +637511.640|220152.360|105.845 +637526.085|220138.854|107.921 +637535.488|220130.036|107.549 +637540.212|220125.604|107.558 +637554.175|220112.489|105.918 +637568.440|220099.114|105.787 +637578.099|220090.071|106.528 +637582.915|220085.566|107.012 +637597.545|220071.886|109.280 +637602.474|220067.281|109.993 +637607.311|220062.751|110.441 +637612.157|220058.216|110.990 +637617.037|220053.650|111.444 +637641.449|220030.802|113.526 +637646.301|220026.261|113.965 +637651.190|220021.686|114.309 +637656.088|220017.098|114.785 +637661.035|220012.471|115.279 +637665.885|220007.936|115.791 +637670.804|220003.327|116.141 +637675.684|219998.761|116.574 +637680.594|219994.162|116.888 +637685.496|219989.572|117.150 +637690.394|219984.985|117.406 +637695.255|219980.434|117.799 +637700.175|219975.825|117.863 +637705.045|219971.262|117.952 +637709.913|219966.700|118.037 +637714.814|219962.103|118.037 +637719.709|219957.516|117.949 +637724.547|219952.977|117.824 +637729.423|219948.402|117.610 +637734.297|219943.830|117.409 +637739.177|219939.255|117.251 +637744.087|219934.644|116.973 +637748.903|219930.126|116.675 +637753.786|219925.539|116.117 +637758.672|219920.952|115.596 +637763.543|219916.383|115.437 +637768.429|219911.796|114.925 +637773.315|219907.205|114.456 +637778.231|219902.585|113.745 +637783.050|219898.058|113.035 +637787.991|219893.419|112.636 +637792.865|219888.838|112.033 +637797.815|219884.196|111.758 +637802.661|219879.636|110.810 +637807.541|219875.043|109.698 +637812.466|219870.416|109.122 +637817.438|219865.759|109.131 +637822.394|219861.107|109.012 +637827.359|219856.456|108.991 +637832.330|219851.799|109.070 +637837.344|219847.102|109.131 +637842.297|219842.460|109.042 +637847.262|219837.808|109.103 +637852.267|219833.121|109.094 +637857.214|219828.482|108.969 +637862.228|219823.788|109.149 +637867.227|219819.103|109.103 +637872.183|219814.461|109.158 +637877.169|219809.785|108.960 +637882.177|219805.097|109.146 +637887.173|219800.412|109.177 +637892.156|219795.743|108.978 +637897.155|219791.058|109.097 +637902.187|219786.358|109.814 +637907.281|219781.603|110.883 +637912.304|219776.909|111.533 +637917.363|219772.176|112.075 +637922.368|219767.494|112.505 +637927.419|219762.770|112.996 +637932.469|219758.045|113.462 +637937.477|219753.363|114.108 +637942.519|219748.648|114.492 +637947.548|219743.936|114.636 +637952.534|219739.269|114.931 +637957.622|219734.512|115.452 +637962.632|219729.812|115.242 +637967.653|219725.112|115.230 +637972.660|219720.415|114.956 +637977.714|219715.672|114.648 +637982.667|219711.024|114.163 +637987.718|219706.284|113.700 +637992.722|219701.587|113.246 +637997.770|219696.847|112.697 +638002.769|219692.153|111.969 +638007.810|219687.414|111.069 +638012.821|219682.714|110.746 +638017.835|219678.011|110.569 +638022.901|219673.265|110.539 +638027.924|219668.562|110.697 +638032.999|219663.816|111.213 +638038.028|219659.113|111.981 +638043.103|219654.370|112.590 +638048.129|219649.673|113.364 +638053.198|219644.934|113.880 +638058.215|219640.240|114.361 +638063.281|219635.500|114.745 +638068.343|219630.764|115.215 +638073.357|219626.073|115.602 +638078.417|219621.339|116.059 +638083.474|219616.609|116.504 +638088.485|219611.918|116.559 +638093.541|219607.181|116.693 +638098.598|219602.448|116.876 +638103.606|219597.754|116.934 +638108.662|219593.017|116.937 +638113.719|219588.280|117.065 +638118.727|219583.590|117.202 +638123.784|219578.853|117.208 +638128.840|219574.113|117.174 +638133.851|219569.416|117.059 +638138.911|219564.677|116.964 +638143.967|219559.937|117.031 +638148.978|219555.243|117.034 +638154.038|219550.506|117.205 +638159.046|219545.816|117.434 +638164.054|219541.128|117.662 +638169.110|219536.397|117.976 +638174.112|219531.722|118.607 +638179.117|219527.037|118.948 +638184.128|219522.343|119.110 +638189.130|219517.664|119.585 +638194.141|219512.973|119.793 +638199.142|219508.295|120.265 +638204.111|219503.637|120.189 +638209.122|219498.943|120.372 +638214.148|219494.234|120.122 +638219.119|219489.574|120.101 +638224.136|219484.871|120.091 +638229.159|219480.162|119.985 +638234.143|219475.489|119.729 +638239.169|219470.777|119.607 +638244.155|219466.104|119.412 +638249.139|219461.428|119.235 +638254.162|219456.704|118.147 +638245.332|219460.654|119.217 +638240.342|219465.318|119.409 +638235.408|219469.932|119.512 +638230.424|219474.590|119.631 +638225.389|219479.299|119.936 +638220.460|219483.904|119.963 +638215.437|219488.595|119.924 +638210.509|219493.201|120.003 +638205.485|219497.895|120.094 +638200.514|219502.540|120.101 +638195.543|219507.179|120.027 +638190.532|219511.858|119.799 +638185.554|219516.512|120.052 +638180.611|219521.112|118.915 +638175.551|219525.833|118.622 +638170.592|219530.457|118.101 +638165.584|219535.126|117.525 +638160.570|219539.805|117.284 +638150.545|219549.162|116.839 +638145.528|219553.847|116.748 +638140.560|219558.489|116.760 +638135.497|219563.220|116.827 +638130.483|219567.908|116.909 +638125.466|219572.592|117.016 +638120.455|219577.277|117.065 +638115.392|219582.005|117.022 +638110.427|219586.641|116.973 +638105.368|219591.368|116.894 +638100.308|219596.092|116.781 +638095.343|219600.728|116.672 +638090.283|219605.456|116.611 +638085.269|219610.135|116.412 +638080.258|219614.816|116.345 +638075.195|219619.541|116.074 +638070.133|219624.262|115.596 +638065.161|219628.901|115.218 +638060.092|219633.626|114.715 +638055.027|219638.353|114.337 +638050.004|219643.038|113.834 +638044.929|219647.768|113.233 +638039.902|219652.456|112.618 +638034.821|219657.187|111.917 +638029.740|219661.923|111.118 +638024.708|219666.614|110.585 +638019.676|219671.308|110.204 +638014.610|219676.045|110.292 +638009.544|219680.778|110.554 +638004.530|219685.469|110.862 +637999.486|219690.197|111.770 +637994.484|219694.881|112.557 +637989.434|219699.612|113.160 +637984.423|219704.297|113.511 +637979.369|219709.027|114.008 +637974.364|219713.709|114.483 +637969.308|219718.439|114.782 +637964.294|219723.127|115.010 +637959.277|219727.818|115.169 +637954.208|219732.552|115.236 +637949.176|219737.255|114.995 +637944.128|219741.964|114.474 +637939.084|219746.673|114.111 +637934.045|219751.379|113.901 +637928.992|219756.098|113.358 +637923.938|219760.816|112.877 +637918.875|219765.537|112.307 +637913.822|219770.256|111.883 +637908.805|219774.937|111.365 +637903.785|219779.622|110.819 +637898.667|219784.383|109.384 +637888.609|219793.780|109.094 +637883.567|219798.495|109.146 +637878.565|219803.171|109.119 +637873.554|219807.853|108.942 +637868.562|219812.522|109.113 +637863.606|219817.158|109.119 +637858.604|219821.837|109.134 +637853.593|219826.519|109.070 +637848.585|219831.200|109.082 +637843.571|219835.885|109.036 +637838.609|219840.527|109.033 +637833.650|219845.163|109.128 +637828.685|219849.805|109.137 +637823.717|219854.451|109.119 +637818.742|219859.102|109.055 +637813.771|219863.750|109.055 +637808.854|219868.350|109.152 +637803.889|219872.992|109.271 +637799.073|219877.515|110.679 +637794.194|219882.099|111.816 +637789.320|219886.656|111.908 +637784.449|219891.222|112.621 +637779.557|219895.803|113.044 +637774.674|219900.378|113.608 +637765.000|219909.449|115.221 +637760.129|219914.006|115.434 +637755.258|219918.562|115.608 +637750.397|219923.113|115.931 +637745.566|219927.642|116.559 +637740.707|219932.190|116.925 +637735.867|219936.716|117.007 +637730.999|219941.273|117.296 +637726.165|219945.793|117.467 +637721.322|219950.323|117.568 +637716.479|219954.852|117.696 +637711.626|219959.390|117.738 +637706.771|219963.929|117.796 +637701.897|219968.486|117.690 +637697.023|219973.039|117.589 +637692.226|219977.520|117.360 +637687.330|219982.095|117.120 +637682.481|219986.624|116.897 +637677.616|219991.166|116.565 +637672.795|219995.671|116.208 +637667.887|220000.252|115.989 +637663.068|220004.754|115.727 +637658.213|220009.283|115.184 +637653.354|220013.816|114.642 +637648.456|220018.391|114.194 +637643.677|220022.856|113.962 +637638.812|220027.391|113.477 +637629.086|220036.465|112.206 +637619.467|220045.445|111.542 +637609.878|220054.400|110.810 +637604.992|220058.960|110.368 +637585.747|220076.915|108.198 +637556.812|220103.912|103.974 +637552.221|220108.215|104.507 +637533.842|220125.452|107.293 +637510.244|220147.501|105.629 +637505.477|220151.948|104.888 +637481.904|220173.955|102.346 +637477.137|220178.393|101.194 +637472.605|220182.639|101.459 +637468.109|220186.857|102.245 +637454.124|220199.918|100.941 +637449.522|220204.221|100.889 +637404.533|220246.333|102.703 +637326.319|220319.604|109.277 +637300.621|220343.649|109.682 +637279.916|220363.056|112.072 +637263.517|220378.421|113.733 +637243.556|220397.145|116.915 +637235.503|220404.683|117.424 +637231.480|220408.447|117.717 +637227.514|220412.160|118.040 +637211.601|220427.052|118.574 +637191.636|220445.712|118.129 +637175.896|220460.425|117.741 +637164.482|220471.108|118.473 +637137.994|220495.879|118.741 +637130.484|220502.902|118.741 +637126.766|220506.379|118.702 +637123.178|220509.735|118.976 +637105.140|220526.612|119.671 +637097.928|220533.354|119.604 +637282.805|220358.338|112.228 +637316.358|220326.834|109.387 +637376.973|220269.946|105.309 +637389.906|220257.784|103.071 +637398.831|220249.411|102.593 +637407.810|220240.993|102.471 +637430.243|220219.937|100.895 +637439.265|220211.470|100.121 +637448.595|220202.737|100.901 +637462.391|220189.801|100.773 +637467.231|220185.284|101.995 +637471.922|220180.886|102.072 +637476.558|220176.539|102.151 +637481.203|220172.187|102.297 +637509.760|220145.462|105.482 +637514.576|220140.957|106.272 +637519.404|220136.446|107.153 +637528.801|220127.631|107.052 +637551.929|220105.881|103.480 +637556.906|220101.245|105.263 +637571.457|220087.626|106.878 +637581.251|220078.470|108.305 +637590.898|220069.436|109.180 +637595.842|220064.815|110.003 +637610.384|220051.193|110.859 +637639.715|220023.740|113.779 +637644.613|220019.150|114.221 +637649.471|220014.599|114.328 +637654.366|220010.015|114.785 +637659.274|220005.424|115.376 +637664.205|220000.807|115.769 +637669.076|219996.247|116.114 +637673.974|219991.654|116.315 +637678.836|219987.103|116.617 +637683.789|219982.461|116.937 +637688.632|219977.925|117.126 +637693.576|219973.295|117.409 +637698.398|219968.772|117.488 +637703.317|219964.161|117.595 +637708.228|219959.558|117.626 +637713.120|219954.971|117.516 +637717.975|219950.417|117.552 +637722.916|219945.784|117.467 +637727.793|219941.206|117.278 +637732.666|219936.634|117.056 +637737.559|219932.038|116.577 +637742.420|219927.475|116.251 +637747.337|219922.860|116.041 +637752.201|219918.294|115.800 +637757.163|219913.637|115.574 +637762.016|219909.083|115.233 +637766.917|219904.471|114.361 +637771.785|219899.896|113.672 +637776.671|219895.306|113.185 +637781.602|219890.673|112.648 +637786.464|219886.101|111.914 +637791.417|219881.453|111.670 +637796.266|219876.890|110.734 +637801.100|219872.330|109.052 +637806.075|219867.667|109.061 +637811.043|219863.006|109.073 +637816.005|219858.352|108.969 +637820.986|219853.686|109.152 +637825.899|219849.077|109.100 +637830.907|219844.380|109.067 +637835.875|219839.723|109.140 +637840.834|219835.068|109.155 +637845.842|219830.374|109.152 +637850.795|219825.729|109.082 +637855.800|219821.035|109.100 +637860.799|219816.344|109.085 +637865.749|219811.702|109.045 +637870.799|219806.966|109.100 +637875.749|219802.324|109.094 +637880.751|219797.636|109.161 +637885.792|219792.908|109.137 +637890.733|219788.272|109.036 +637900.859|219778.805|110.795 +637905.927|219774.062|111.389 +637910.984|219769.329|111.856 +637915.989|219764.641|112.285 +637921.045|219759.908|112.807 +637926.096|219755.177|113.291 +637931.104|219750.492|113.874 +637936.142|219745.774|114.178 +637941.178|219741.056|114.447 +637946.173|219736.377|114.971 +637951.205|219731.662|115.257 +637956.268|219726.913|115.148 +637961.240|219722.249|115.062 +637966.247|219717.549|114.812 +637971.258|219712.846|114.565 +637976.257|219708.149|114.041 +637981.262|219703.449|113.584 +637986.267|219698.746|113.160 +637991.268|219694.046|112.599 +637996.313|219689.304|111.944 +638001.309|219684.604|111.021 +638006.313|219679.900|110.524 +638011.327|219675.194|110.274 +638016.344|219670.488|110.152 +638021.419|219665.733|110.542 +638026.449|219661.027|110.993 +638031.481|219656.321|111.773 +638036.556|219651.572|112.426 +638041.628|219646.827|113.127 +638046.651|219642.126|113.727 +638051.671|219637.426|114.206 +638056.737|219632.684|114.715 +638061.799|219627.941|115.138 +638066.816|219623.244|115.519 +638071.879|219618.507|116.080 +638076.887|219613.811|116.175 +638081.944|219609.071|116.370 +638087.000|219604.331|116.495 +638092.008|219599.634|116.595 +638097.065|219594.895|116.690 +638102.121|219590.155|116.861 +638107.132|219585.458|116.888 +638112.189|219580.718|116.964 +638117.246|219575.973|116.918 +638122.257|219571.276|116.909 +638127.267|219566.573|116.806 +638132.327|219561.827|116.665 +638137.338|219557.127|116.623 +638142.398|219552.381|116.672 +638147.409|219547.681|116.638 +638152.420|219542.987|116.876 +638157.476|219538.247|117.117 +638162.487|219533.550|117.315 +638167.489|219528.869|117.876 +638172.543|219524.135|118.272 +638177.547|219519.450|118.763 +638182.555|219514.759|119.070 +638187.609|219510.023|119.360 +638192.611|219505.344|119.921 +638197.625|219500.644|120.034 +638202.642|219495.938|119.945 +638207.659|219491.235|119.927 +638212.679|219486.529|119.890 +638217.699|219481.823|119.829 +638222.722|219477.114|119.781 +638227.748|219472.401|119.634 +638232.774|219467.686|119.479 +638237.803|219462.971|119.387 +638242.787|219458.295|119.192 +638240.288|219457.055|119.177 +638235.252|219461.764|119.381 +638230.223|219466.467|119.445 +638225.236|219471.130|119.643 +638220.210|219475.827|119.680 +638215.181|219480.530|119.857 +638210.161|219485.224|119.835 +638205.141|219489.918|119.799 +638200.118|219494.615|119.906 +638195.147|219499.260|119.875 +638190.087|219503.985|119.649 +638185.125|219508.615|119.168 +638180.114|219513.293|118.860 +638175.100|219517.978|118.756 +638170.095|219522.642|118.028 +638165.087|219527.317|117.595 +638160.076|219531.996|117.245 +638155.062|219536.675|116.928 +638150.048|219541.356|116.684 +638145.034|219546.041|116.525 +638140.066|219550.686|116.501 +638135.003|219555.417|116.510 +638129.986|219560.105|116.495 +638124.972|219564.792|116.547 +638119.958|219569.483|116.675 +638114.941|219574.171|116.818 +638109.930|219578.859|116.842 +638104.916|219583.544|116.793 +638099.902|219588.229|116.733 +638094.843|219592.956|116.650 +638089.829|219597.638|116.449 +638084.818|219602.323|116.370 +638079.804|219607.007|116.184 +638074.744|219611.732|116.004 +638069.779|219616.374|116.004 +638064.713|219621.101|115.657 +638059.696|219625.783|115.221 +638054.676|219630.468|114.684 +638049.653|219635.153|114.236 +638044.630|219639.840|113.715 +638039.601|219644.528|113.081 +638034.575|219649.219|112.453 +638029.542|219653.910|111.831 +638024.556|219658.558|111.115 +638019.475|219663.298|110.539 +638014.442|219667.995|110.097 +638009.468|219672.646|110.140 +638004.448|219677.340|110.237 +637999.440|219682.031|110.829 +637994.438|219686.719|111.670 +637989.437|219691.404|112.337 +637984.478|219696.049|112.907 +637979.473|219700.737|113.383 +637974.465|219705.424|113.861 +637969.551|219710.021|114.294 +637964.544|219714.709|114.648 +637959.527|219719.400|114.837 +637954.561|219724.048|115.065 +637949.535|219728.742|115.032 +637944.552|219733.396|114.898 +637939.510|219738.099|114.492 +637934.509|219742.763|114.029 +637929.507|219747.426|113.578 +637924.462|219752.132|113.322 +637919.451|219756.805|112.734 +637914.440|219761.477|112.231 +637909.433|219766.147|111.898 +637904.416|219770.826|111.344 +637899.399|219775.504|110.859 +637894.330|219780.213|109.506 +637884.314|219789.565|109.091 +637879.312|219794.234|109.052 +637874.362|219798.861|109.097 +637869.409|219803.488|109.116 +637864.407|219808.157|109.170 +637859.448|219812.787|109.134 +637854.486|219817.423|109.079 +637849.524|219822.056|109.012 +637844.565|219826.689|109.067 +637839.603|219831.322|109.067 +637834.644|219835.958|109.137 +637829.678|219840.594|109.131 +637824.768|219845.182|109.268 +637819.785|219849.836|109.049 +637814.819|219854.472|109.137 +637809.897|219859.071|109.149 +637804.926|219863.717|109.167 +637800.046|219868.273|109.167 +637795.148|219872.864|110.137 +637790.304|219877.405|111.179 +637785.424|219881.971|111.783 +637780.535|219886.546|112.270 +637775.631|219891.133|112.593 +637770.745|219895.705|113.139 +637765.948|219900.195|113.599 +637761.059|219904.779|114.654 +637751.378|219913.838|115.699 +637746.507|219918.392|115.931 +637741.612|219922.961|115.931 +637736.787|219927.475|116.135 +637731.911|219932.031|116.345 +637727.028|219936.594|116.525 +637722.221|219941.093|116.967 +637717.396|219945.604|117.263 +637712.553|219950.131|117.394 +637707.697|219954.666|117.427 +637702.875|219959.165|117.351 +637698.002|219963.716|117.254 +637693.170|219968.227|117.129 +637688.291|219972.783|117.022 +637683.481|219977.270|116.720 +637678.589|219981.836|116.537 +637673.782|219986.323|116.309 +637668.878|219990.898|116.089 +637664.056|219995.396|115.779 +637659.167|219999.956|115.340 +637654.369|220004.428|114.885 +637649.489|220008.981|114.575 +637644.649|220013.496|114.224 +637639.803|220018.016|113.846 +637634.926|220022.563|113.255 +637601.221|220053.997|110.716 +637596.369|220058.521|110.198 +637591.614|220062.959|110.054 +637586.765|220067.473|109.241 +637581.967|220071.947|108.841 +637567.553|220085.380|106.970 +637562.783|220089.836|106.866 +637543.650|220107.664|104.376 +637539.109|220111.922|105.269 +637492.264|220155.639|102.983 +637487.643|220159.955|102.946 +637482.956|220164.326|102.511 +637478.289|220168.682|102.218 +637473.705|220172.961|102.157 +637464.381|220181.657|101.486 +637459.830|220185.912|101.678 +637441.137|220203.331|99.277 +637432.304|220211.604|100.548 +637264.417|220368.613|113.267 +637236.369|220394.877|117.217 +637232.373|220398.617|117.613 +637228.356|220402.378|117.933 +637220.361|220409.861|118.543 +637204.343|220424.833|118.948 +637200.344|220428.573|118.994 +637196.394|220432.267|119.037 +637192.386|220436.007|118.866 +637188.393|220439.741|118.759 +637184.492|220443.386|118.836 +637180.526|220447.087|118.674 +637153.530|220472.321|119.015 +637149.671|220475.927|118.961 +637145.992|220479.368|119.214 +637138.415|220486.452|119.299 +637134.581|220490.030|118.976 +637130.908|220493.462|119.092 +637127.244|220496.888|119.250 +637123.574|220500.320|119.396 +637112.620|220510.561|119.710 +637101.830|220520.650|120.143 +637098.215|220524.027|120.174 +637091.012|220530.754|119.973 +637374.879|220262.316|105.208 +637396.770|220241.752|102.483 +637405.664|220233.409|102.212 +637460.373|220182.120|101.441 +637474.311|220169.069|101.813 +637479.002|220164.677|101.944 +637483.638|220160.336|102.072 +637502.701|220142.512|104.181 +637540.462|220107.146|104.772 +637554.824|220093.710|105.906 +637559.668|220089.184|106.491 +637574.210|220075.590|108.213 +637579.023|220071.091|108.716 +637583.881|220066.549|109.210 +637593.604|220057.457|110.380 +637608.146|220043.851|111.289 +637613.026|220039.288|111.783 +637627.638|220025.617|112.840 +637632.472|220021.094|113.072 +637637.364|220016.513|113.444 +637642.266|220011.932|113.883 +637647.216|220007.305|114.358 +637652.053|220002.779|114.751 +637656.978|219998.170|115.099 +637661.904|219993.562|115.489 +637666.817|219988.962|115.794 +637671.688|219984.408|116.163 +637676.577|219979.830|116.306 +637681.527|219975.197|116.586 +637686.425|219970.613|116.885 +637691.302|219966.047|117.001 +637696.225|219961.439|117.095 +637706.003|219952.279|117.232 +637710.904|219947.686|117.235 +637715.790|219943.108|117.083 +637720.682|219938.515|116.568 +637725.510|219933.988|116.367 +637730.438|219929.371|116.202 +637735.364|219924.753|116.059 +637740.287|219920.138|115.891 +637745.218|219915.517|115.846 +637764.701|219897.220|113.133 +637769.654|219892.575|112.843 +637774.552|219887.982|112.481 +637779.520|219883.315|111.850 +637784.412|219878.725|111.459 +637794.194|219869.529|109.451 +637799.144|219864.887|109.192 +637804.151|219860.193|109.070 +637809.074|219855.584|109.073 +637814.082|219850.891|109.006 +637819.099|219846.191|109.067 +637824.064|219841.539|109.076 +637829.075|219836.842|109.103 +637834.037|219832.197|109.100 +637839.039|219827.506|109.055 +637844.047|219822.815|109.088 +637849.003|219818.173|109.073 +637854.005|219813.485|109.076 +637859.009|219808.798|109.125 +637864.005|219804.116|109.085 +637869.004|219799.434|109.091 +637873.999|219794.752|109.076 +637879.044|219790.025|109.094 +637884.037|219785.346|109.082 +637894.086|219775.949|110.307 +637899.164|219771.207|111.085 +637904.175|219766.519|111.539 +637909.234|219761.788|112.066 +637914.282|219757.064|112.435 +637919.290|219752.382|112.980 +637924.340|219747.658|113.483 +637929.333|219742.985|113.764 +637934.417|219738.227|114.044 +637939.468|219733.506|114.687 +637944.454|219728.836|115.044 +637949.474|219724.133|115.041 +637954.491|219719.433|114.998 +637959.499|219714.736|114.690 +637964.510|219710.036|114.459 +637969.515|219705.342|114.090 +637974.468|219700.691|113.599 +637979.521|219695.951|113.197 +637984.474|219691.300|112.630 +637989.476|219686.603|112.124 +637994.515|219681.866|111.173 +637999.468|219677.215|110.469 +638004.479|219672.512|110.134 +638009.544|219667.766|110.039 +638014.522|219663.106|110.274 +638019.548|219658.403|110.725 +638024.629|219653.657|111.444 +638029.609|219649.003|112.103 +638034.636|219644.303|112.737 +638039.707|219639.563|113.395 +638044.679|219634.912|113.922 +638049.699|219630.218|114.480 +638054.765|219625.481|114.965 +638059.733|219620.833|115.462 +638064.792|219616.100|115.815 +638069.803|219611.406|115.864 +638074.766|219606.757|115.967 +638079.819|219602.027|116.230 +638084.830|219597.336|116.403 +638089.838|219592.645|116.562 +638094.846|219587.951|116.531 +638099.857|219583.260|116.623 +638104.865|219578.566|116.659 +638109.872|219573.876|116.678 +638114.883|219569.179|116.614 +638119.846|219564.527|116.531 +638124.905|219559.788|116.531 +638129.867|219555.136|116.473 +638134.881|219550.433|116.227 +638139.895|219545.736|116.102 +638144.858|219541.091|116.379 +638149.865|219536.403|116.675 +638154.828|219531.758|116.961 +638159.838|219527.067|117.162 +638164.843|219522.386|117.574 +638169.802|219517.747|118.019 +638174.755|219513.117|118.699 +638179.763|219508.426|118.866 +638184.722|219503.787|119.211 +638189.681|219499.145|119.546 +638194.692|219494.454|119.741 +638199.615|219489.839|119.680 +638204.626|219485.142|119.808 +638209.597|219480.482|119.784 +638214.572|219475.815|119.671 +638219.592|219471.106|119.579 +638224.517|219466.485|119.549 +638229.495|219461.819|119.448 +638234.475|219457.146|119.299 +638229.732|219457.125|119.284 +638224.700|219461.834|119.445 +638219.628|219466.583|119.482 +638214.602|219471.286|119.561 +638209.576|219475.992|119.710 +638204.507|219480.735|119.692 +638199.441|219485.471|119.607 +638194.424|219490.168|119.582 +638189.410|219494.856|119.412 +638184.347|219499.593|119.317 +638179.340|219504.268|118.848 +638169.229|219513.717|118.071 +638164.221|219518.396|117.586 +638159.165|219523.120|117.153 +638154.105|219527.848|116.815 +638149.094|219532.532|116.568 +638144.038|219537.257|116.114 +638138.978|219541.984|115.782 +638133.961|219546.678|115.724 +638128.895|219551.424|116.068 +638123.832|219556.167|116.327 +638118.818|219560.861|116.443 +638113.756|219565.597|116.470 +638108.745|219570.288|116.525 +638103.731|219574.976|116.501 +638098.671|219579.709|116.449 +638093.611|219584.443|116.416 +638088.649|219589.088|116.409 +638083.590|219593.822|116.358 +638078.530|219598.555|116.239 +638073.519|219603.237|116.013 +638068.505|219607.925|115.745 +638063.494|219612.616|115.708 +638058.477|219617.304|115.522 +638053.411|219622.037|114.962 +638048.440|219626.682|114.605 +638043.420|219631.370|114.062 +638038.348|219636.107|113.553 +638033.368|219640.755|112.852 +638028.338|219645.449|112.249 +638023.309|219650.146|111.609 +638018.326|219654.800|110.972 +638013.290|219659.500|110.362 +638008.258|219664.200|109.923 +638003.287|219668.854|109.981 +637998.270|219673.551|110.246 +637993.265|219678.248|110.844 +637988.312|219682.894|111.664 +637983.313|219687.584|112.380 +637978.351|219692.236|112.767 +637973.395|219696.881|113.343 +637968.436|219701.529|113.776 +637963.477|219706.177|114.166 +637958.515|219710.826|114.517 +637953.549|219715.477|114.739 +637948.630|219720.082|114.931 +637943.653|219724.737|114.928 +637938.672|219729.397|114.821 +637933.722|219734.018|114.386 +637928.711|219738.693|113.712 +637923.767|219743.314|113.462 +637918.769|219747.984|113.121 +637913.809|219752.617|112.645 +637908.847|219757.250|112.167 +637903.836|219761.928|111.722 +637898.914|219766.522|111.203 +637893.900|219771.207|110.774 +637888.874|219775.882|109.277 +637878.968|219785.148|109.116 +637874.060|219789.735|109.067 +637869.110|219794.365|109.094 +637864.157|219799.001|109.079 +637854.239|219808.273|108.994 +637849.329|219812.867|108.972 +637844.379|219817.500|109.082 +637839.469|219822.093|109.137 +637834.506|219826.735|109.109 +637829.590|219831.331|109.125 +637824.674|219835.934|109.097 +637819.705|219840.579|109.100 +637814.789|219845.179|109.140 +637809.866|219849.784|109.119 +637804.950|219854.384|109.198 +637800.021|219858.992|109.180 +637795.093|219863.604|109.128 +637790.265|219868.130|109.780 +637780.578|219877.216|111.264 +637775.695|219881.794|111.810 +637770.858|219886.327|112.359 +637765.954|219890.920|112.682 +637761.114|219895.455|113.209 +637751.494|219904.481|114.937 +637741.786|219913.576|115.715 +637727.192|219927.237|116.123 +637717.478|219936.326|116.510 +637712.662|219940.837|116.885 +637707.834|219945.360|117.150 +637702.970|219949.908|117.080 +637693.222|219959.022|116.882 +637688.352|219963.578|116.818 +637683.466|219968.144|116.665 +637678.616|219972.677|116.431 +637673.761|219977.215|116.144 +637668.856|219981.796|115.916 +637663.995|219986.338|115.654 +637659.124|219990.888|115.337 +637654.290|219995.403|114.953 +637649.401|219999.972|114.535 +637644.549|220004.504|114.038 +637639.650|220009.076|113.621 +637634.804|220013.605|113.240 +637629.967|220018.122|112.983 +637625.090|220022.673|112.435 +637620.305|220027.148|112.249 +637600.980|220045.198|110.722 +637586.588|220058.652|110.338 +637576.956|220067.643|109.237 +637572.125|220072.148|108.625 +637557.674|220085.624|106.961 +637552.810|220090.162|106.235 +637547.982|220094.658|105.485 +637543.202|220099.114|104.748 +637538.237|220103.729|103.123 +637529.124|220112.278|105.077 +637510.363|220129.811|105.019 +637505.651|220134.209|104.595 +637482.023|220156.252|102.181 +637477.317|220160.644|101.639 +637472.687|220164.975|101.898 +637467.828|220169.486|100.231 +637454.137|220182.294|100.877 +637435.407|220199.759|98.338 +637417.722|220216.334|101.157 +637413.284|220220.489|101.590 +637408.831|220224.655|101.962 +637373.596|220257.635|105.004 +637309.180|220317.933|110.755 +637292.108|220333.890|110.993 +637267.300|220357.119|113.675 +637250.862|220372.499|115.001 +637246.945|220376.175|115.919 +637226.905|220394.929|117.997 +637222.884|220398.687|118.318 +637218.898|220402.418|118.549 +637214.929|220406.128|118.894 +637202.957|220417.317|119.247 +637187.092|220432.139|119.375 +637179.130|220439.570|119.311 +637171.358|220446.834|119.415 +637159.794|220457.639|119.738 +637155.819|220461.342|119.403 +637148.227|220468.438|119.756 +637144.410|220472.001|119.665 +637125.568|220489.597|119.720 +637118.198|220496.486|120.094 +637107.274|220506.696|120.527 +637103.598|220510.125|120.503 +637085.675|220526.859|120.457 +637290.081|220332.719|111.191 +637345.753|220280.431|108.189 +637402.488|220227.091|101.883 +637406.984|220222.869|101.788 +637420.490|220210.189|101.118 +637429.521|220201.710|100.718 +637443.298|220188.786|100.709 +637448.114|220184.284|101.761 +637452.567|220180.093|101.014 +637457.304|220175.662|101.633 +637461.790|220171.440|100.825 +637466.347|220167.155|100.450 +637471.071|220162.732|100.764 +637475.814|220158.294|101.547 +637485.156|220149.531|101.691 +637489.878|220145.112|102.093 +637494.712|220140.591|102.928 +637504.346|220131.581|104.477 +637518.501|220118.307|104.830 +637556.705|220082.509|107.104 +637561.576|220077.955|107.942 +637566.440|220073.401|108.454 +637571.241|220068.905|108.872 +637576.100|220064.358|109.390 +637580.955|220059.810|109.926 +637590.599|220050.770|110.219 +637624.590|220018.924|112.578 +637629.473|220014.346|112.877 +637634.350|220009.777|113.127 +637639.245|220005.193|113.575 +637644.131|220000.618|113.959 +637649.017|219996.040|114.383 +637653.946|219991.425|114.782 +637658.829|219986.853|115.254 +637663.763|219982.232|115.775 +637668.664|219977.639|116.035 +637673.560|219973.055|116.254 +637678.446|219968.473|116.455 +637683.368|219963.859|116.541 +637688.239|219959.290|116.647 +637693.161|219954.675|116.797 +637698.072|219950.070|116.858 +637702.979|219945.467|116.925 +637707.883|219940.868|116.992 +637712.793|219936.256|116.653 +637717.643|219931.699|116.217 +637737.333|219913.228|116.089 +637742.222|219908.635|115.650 +637747.105|219904.045|115.145 +637751.924|219899.503|113.953 +637761.766|219890.249|112.724 +637766.661|219885.653|112.365 +637771.608|219881.008|112.078 +637776.482|219876.427|111.484 +637781.380|219871.815|110.643 +637786.327|219867.170|110.368 +637791.179|219862.592|108.957 +637796.175|219857.913|109.292 +637801.158|219853.231|108.911 +637806.120|219848.577|108.899 +637811.147|219843.865|109.097 +637816.103|219839.220|109.000 +637821.071|219834.562|109.097 +637826.079|219829.871|109.085 +637831.081|219825.181|109.055 +637836.085|219820.490|109.049 +637841.087|219815.802|109.039 +637846.095|219811.108|109.122 +637851.094|219806.423|109.103 +637856.086|219801.744|109.000 +637861.094|219797.054|109.167 +637866.133|219792.329|109.079 +637871.125|219787.647|109.061 +637886.249|219773.489|109.996 +637891.327|219768.744|110.792 +637896.338|219764.056|111.237 +637901.395|219759.325|111.712 +637906.449|219754.595|112.209 +637911.456|219749.910|112.764 +637916.501|219745.192|113.093 +637921.542|219740.470|113.471 +637926.550|219735.789|114.142 +637931.585|219731.076|114.468 +637936.666|219726.319|114.773 +637941.644|219721.655|114.910 +637946.655|219716.955|114.706 +637951.672|219712.252|114.706 +637956.674|219707.558|114.297 +637961.678|219702.861|113.962 +637966.683|219698.164|113.624 +637971.685|219693.467|113.194 +637976.733|219688.731|112.648 +637981.731|219684.034|112.127 +637986.727|219679.337|111.411 +637991.723|219674.643|110.573 +637996.724|219669.943|110.015 +638001.790|219665.197|109.945 +638006.807|219660.494|109.993 +638011.833|219655.791|110.390 +638016.863|219651.088|110.996 +638021.938|219646.342|111.682 +638026.967|219641.642|112.377 +638031.990|219636.945|113.099 +638037.056|219632.205|113.544 +638042.027|219627.554|114.056 +638047.093|219622.814|114.572 +638052.110|219618.123|115.233 +638057.121|219613.433|115.422 +638062.132|219608.742|115.919 +638067.139|219604.048|115.888 +638072.144|219599.360|116.007 +638077.152|219594.666|116.123 +638082.160|219589.975|116.193 +638087.168|219585.284|116.291 +638092.176|219580.590|116.312 +638097.184|219575.896|116.297 +638102.192|219571.202|116.318 +638107.199|219566.509|116.352 +638112.158|219561.860|116.373 +638117.169|219557.160|116.102 +638122.180|219552.457|115.806 +638127.146|219547.800|115.550 +638132.160|219543.097|115.312 +638137.170|219538.400|115.367 +638142.133|219533.755|115.687 +638147.137|219529.073|116.147 +638152.142|219524.388|116.601 +638157.098|219519.752|117.147 +638162.106|219515.064|117.440 +638167.059|219510.428|117.924 +638172.012|219505.798|118.519 +638177.023|219501.104|118.656 +638181.927|219496.517|119.204 +638186.893|219491.866|119.278 +638191.903|219487.169|119.363 +638196.820|219482.569|119.582 +638201.788|219477.918|119.659 +638206.756|219473.264|119.668 +638211.734|219468.597|119.457 +638216.659|219463.983|119.451 +638221.588|219459.365|119.369 +638219.680|219457.173|119.308 +638214.651|219461.874|119.375 +638209.573|219466.619|119.461 +638204.498|219471.368|119.613 +638199.475|219476.065|119.610 +638194.360|219480.844|119.525 +638189.346|219485.523|119.183 +638184.280|219490.257|119.119 +638179.215|219494.993|119.070 +638174.207|219499.666|118.543 +638169.144|219504.396|118.388 +638164.090|219509.105|117.684 +638159.028|219513.833|117.385 +638153.971|219518.551|116.925 +638148.914|219523.269|116.348 +638143.855|219527.991|115.852 +638138.792|219532.712|115.419 +638133.729|219537.440|115.090 +638128.663|219542.176|115.108 +638123.598|219546.916|115.330 +638118.529|219551.659|115.593 +638113.417|219556.441|115.861 +638108.400|219561.135|116.086 +638103.289|219565.914|116.199 +638098.226|219570.648|116.239 +638093.163|219575.381|116.245 +638088.055|219580.157|116.272 +638082.995|219584.888|116.245 +638077.932|219589.618|116.147 +638072.870|219594.349|116.096 +638067.764|219599.122|116.117 +638062.750|219603.807|115.995 +638057.636|219608.577|115.458 +638052.570|219613.308|115.114 +638047.504|219618.038|114.919 +638042.432|219622.769|114.288 +638037.360|219627.502|113.758 +638032.331|219632.190|113.203 +638027.259|219636.927|112.740 +638022.178|219641.663|112.112 +638017.146|219646.357|111.395 +638012.062|219651.097|110.746 +638007.024|219655.794|110.137 +638001.943|219660.536|109.753 +637996.919|219665.233|109.798 +637991.902|219669.930|110.103 +637986.898|219674.621|110.847 +637981.896|219679.309|111.545 +637976.894|219683.997|112.279 +637971.886|219688.688|112.852 +637966.875|219693.379|113.200 +637961.867|219698.067|113.709 +637956.905|219702.712|114.090 +637951.891|219707.406|114.346 +637946.929|219712.051|114.696 +637941.909|219716.745|114.864 +637936.929|219721.399|114.815 +637931.942|219726.059|114.562 +637926.904|219730.766|114.325 +637921.902|219735.435|113.895 +637916.934|219740.068|113.203 +637911.938|219744.735|112.910 +637906.927|219749.410|112.453 +637901.922|219754.086|112.069 +637896.948|219758.725|111.456 +637891.980|219763.364|110.993 +637886.966|219768.046|110.591 +637872.034|219781.981|109.103 +637867.117|219786.575|108.924 +637862.182|219791.195|109.195 +637857.214|219795.834|109.006 +637852.310|219800.422|109.076 +637847.400|219805.015|109.067 +637842.495|219809.602|109.146 +637837.573|219814.202|109.009 +637832.665|219818.792|109.106 +637827.749|219823.388|109.119 +637822.830|219827.988|109.085 +637817.922|219832.581|109.207 +637812.991|219837.190|109.061 +637808.117|219841.747|109.070 +637798.333|219850.900|109.262 +637793.407|219855.505|109.271 +637788.619|219860.001|110.405 +637783.760|219864.549|110.679 +637778.856|219869.139|110.972 +637774.040|219873.644|111.228 +637769.163|219878.219|111.850 +637764.335|219882.745|112.496 +637759.462|219887.302|112.663 +637745.002|219900.853|114.413 +637740.219|219905.337|115.065 +637711.303|219932.397|116.428 +637701.659|219941.419|116.669 +637696.807|219945.958|116.739 +637692.006|219950.451|116.851 +637687.184|219954.956|116.812 +637682.347|219959.476|116.650 +637677.507|219963.999|116.480 +637672.709|219968.483|116.294 +637667.784|219973.079|115.855 +637662.940|219977.599|115.327 +637658.060|219982.156|114.916 +637653.220|219986.673|114.477 +637648.337|219991.230|114.117 +637643.503|219995.747|113.776 +637638.663|220000.267|113.413 +637633.829|220004.781|113.142 +637628.995|220009.295|112.901 +637624.170|220013.803|112.743 +637614.532|220022.807|112.212 +637609.713|220027.315|112.179 +637604.903|220031.805|111.871 +637580.882|220054.241|110.551 +637576.072|220058.731|110.042 +637561.676|220072.173|108.549 +637547.232|220085.654|106.650 +637542.373|220090.183|105.668 +637537.524|220094.701|104.806 +637532.757|220099.151|104.172 +637527.935|220103.653|103.547 +637523.351|220107.950|104.184 +637518.681|220112.321|104.266 +637513.948|220116.750|104.275 +637490.326|220138.817|102.480 +637476.317|220151.918|102.023 +637448.297|220178.103|100.532 +637434.605|220190.917|100.746 +637429.618|220195.544|98.579 +637407.377|220216.395|101.154 +637398.453|220224.756|101.797 +637372.337|220249.256|105.620 +637363.660|220257.391|106.692 +637354.884|220265.611|107.302 +637350.544|220269.677|107.613 +637346.228|220273.722|108.070 +637290.462|220325.944|111.103 +637249.359|220364.467|115.355 +637237.149|220375.900|116.096 +637221.245|220390.817|118.199 +637205.374|220405.686|119.512 +637197.373|220413.174|119.744 +637189.408|220420.624|119.765 +637185.449|220424.327|119.784 +637177.612|220431.658|119.765 +637173.650|220435.367|119.796 +637169.773|220438.994|119.774 +637165.841|220442.670|119.759 +637161.958|220446.303|119.744 +637158.120|220449.894|119.924 +637150.482|220457.041|120.043 +637124.111|220481.718|120.396 +637116.671|220488.677|120.277 +637112.928|220492.176|120.357 +637105.695|220498.948|120.686 +637102.068|220502.344|120.829 +637091.247|220512.469|121.158 +637087.623|220515.859|121.152 +637084.008|220519.236|121.006 +637080.375|220522.631|120.597 +637291.394|220322.082|111.292 +637304.217|220310.064|111.130 +637399.404|220220.702|101.809 +637426.479|220195.312|100.852 +637431.036|220191.039|100.627 +637444.785|220178.155|100.493 +637449.854|220173.449|103.020 +637472.675|220152.030|100.999 +637482.072|220143.234|101.453 +637486.900|220138.732|102.507 +637491.603|220134.325|102.514 +637519.974|220107.764|103.693 +637524.628|220103.400|103.544 +637529.477|220098.864|104.053 +637534.357|220094.313|105.104 +637539.139|220089.839|105.568 +637548.814|220080.799|106.967 +637553.685|220076.251|107.768 +637558.513|220071.740|108.314 +637563.335|220067.229|108.860 +637568.184|220062.693|109.262 +637573.006|220058.188|109.859 +637577.813|220053.684|110.039 +637587.463|220044.658|110.694 +637592.284|220040.144|111.069 +637626.212|220008.384|112.660 +637631.089|220003.821|112.886 +637635.959|219999.261|113.127 +637640.848|219994.686|113.520 +637645.722|219990.126|113.800 +637650.593|219985.570|114.111 +637655.473|219981.004|114.517 +637660.386|219976.404|114.837 +637665.312|219971.799|115.266 +637670.188|219967.239|115.751 +637675.102|219962.643|116.156 +637680.009|219958.049|116.547 +637684.883|219953.486|116.629 +637689.738|219948.936|116.608 +637694.633|219944.348|116.495 +637699.486|219939.801|116.480 +637709.224|219930.675|116.327 +637714.168|219926.042|116.327 +637728.823|219912.311|116.083 +637738.567|219903.155|114.770 +637743.411|219898.610|114.309 +637748.309|219894.014|113.931 +637758.032|219884.879|112.401 +637767.862|219875.656|111.536 +637772.778|219871.035|110.890 +637777.670|219866.445|110.493 +637782.663|219861.772|110.740 +637787.616|219857.130|110.505 +637792.545|219852.503|110.021 +637807.367|219838.598|109.067 +637812.372|219833.904|108.985 +637817.291|219829.292|109.085 +637822.302|219824.592|109.152 +637827.295|219819.908|108.985 +637832.260|219815.256|109.085 +637837.262|219810.565|109.085 +637842.215|219805.920|109.091 +637847.211|219801.235|109.061 +637852.215|219796.545|109.173 +637857.208|219791.863|109.094 +637862.249|219787.135|109.073 +637867.245|219782.451|109.119 +637882.324|219768.329|110.173 +637887.344|219763.632|110.755 +637892.400|219758.899|111.216 +637897.454|219754.165|111.688 +637902.514|219749.432|112.267 +637907.561|219744.707|112.648 +637912.557|219740.028|113.014 +637917.659|219735.255|113.691 +637922.701|219730.534|114.136 +637927.739|219725.819|114.541 +637932.817|219721.061|114.797 +637937.840|219716.355|114.867 +637942.851|219711.652|114.730 +637952.909|219702.209|114.142 +637957.911|219697.512|113.800 +637962.962|219692.769|113.389 +637967.963|219688.072|113.017 +637972.962|219683.375|112.478 +637978.007|219678.632|111.862 +637983.002|219673.935|111.109 +637988.044|219669.196|110.380 +637993.094|219664.450|109.795 +637998.108|219659.747|109.682 +638003.180|219654.995|109.957 +638008.255|219650.246|110.509 +638013.281|219645.540|111.078 +638018.356|219640.795|111.783 +638023.431|219636.052|112.569 +638028.451|219631.352|113.060 +638033.517|219626.609|113.578 +638038.583|219621.869|114.142 +638043.648|219617.133|114.779 +638048.705|219612.393|114.992 +638053.765|219607.654|115.245 +638058.773|219602.963|115.623 +638063.832|219598.229|116.050 +638068.883|219593.493|116.217 +638073.936|219588.756|116.275 +638078.990|219584.016|116.288 +638084.044|219579.277|116.147 +638089.097|219574.537|116.153 +638094.105|219569.840|116.050 +638099.159|219565.100|115.937 +638104.212|219560.355|115.794 +638109.223|219555.655|115.556 +638114.280|219550.909|115.358 +638119.340|219546.163|115.184 +638124.351|219541.457|114.882 +638129.410|219536.711|114.803 +638134.418|219532.020|115.081 +638139.426|219527.329|115.437 +638144.477|219522.602|115.964 +638149.481|219517.920|116.473 +638154.480|219513.242|117.074 +638159.482|219508.563|117.680 +638164.484|219503.881|118.156 +638169.488|219499.190|118.366 +638174.493|219494.509|118.805 +638179.452|219489.857|118.979 +638184.463|219485.163|119.083 +638189.471|219480.466|119.217 +638194.430|219475.818|119.485 +638199.444|219471.115|119.552 +638204.461|219466.406|119.461 +638209.436|219461.739|119.348 +638214.453|219457.030|119.329 +638208.930|219457.868|119.320 +638203.949|219462.529|119.421 +638198.926|219467.229|119.427 +638193.903|219471.929|119.427 +638188.935|219476.568|119.162 +638183.875|219481.298|118.839 +638178.852|219485.998|118.982 +638173.832|219490.692|118.933 +638168.824|219495.371|118.503 +638163.761|219500.105|118.314 +638158.753|219504.783|117.879 +638153.700|219509.496|117.190 +638148.689|219514.174|116.699 +638143.681|219518.850|116.050 +638138.621|219523.571|115.507 +638133.562|219528.299|115.071 +638128.548|219532.983|114.736 +638123.482|219537.720|114.623 +638118.416|219542.460|114.757 +638113.396|219547.160|114.949 +638108.284|219551.945|115.163 +638103.267|219556.645|115.416 +638098.205|219561.385|115.571 +638093.142|219566.118|115.599 +638088.079|219570.855|115.647 +638083.065|219575.549|115.742 +638077.957|219580.328|115.839 +638072.894|219585.065|115.940 +638067.834|219589.798|115.958 +638062.775|219594.529|115.757 +638057.712|219599.262|115.547 +638052.646|219603.993|115.218 +638047.580|219608.726|114.864 +638042.469|219613.506|114.672 +638037.400|219618.239|114.270 +638032.328|219622.976|113.654 +638027.253|219627.712|113.133 +638022.178|219632.449|112.593 +638017.055|219637.234|112.011 +638011.971|219641.974|111.197 +638006.886|219646.720|110.524 +638001.805|219651.463|110.036 +637996.724|219656.208|109.637 +637991.653|219660.954|109.612 +637986.596|219665.697|110.152 +637981.545|219670.433|110.960 +637976.495|219675.170|111.624 +637971.490|219679.864|112.218 +637966.433|219684.600|112.709 +637961.380|219689.337|113.212 +637956.372|219694.031|113.614 +637951.312|219698.768|113.944 +637946.256|219703.507|114.267 +637941.245|219708.198|114.608 +637936.225|219712.898|114.718 +637931.153|219717.638|114.760 +637926.114|219722.344|114.538 +637921.073|219727.050|114.230 +637916.025|219731.762|113.837 +637910.966|219736.484|113.224 +637905.894|219741.208|112.435 +637900.886|219745.884|112.057 +637895.832|219750.599|111.743 +637890.770|219755.323|111.277 +637885.753|219760.008|110.780 +637880.687|219764.736|110.380 +637865.572|219778.842|109.097 +637860.573|219783.514|109.152 +637855.568|219788.193|109.109 +637850.612|219792.826|109.091 +637845.656|219797.459|109.152 +637840.645|219802.141|109.082 +637835.692|219806.774|109.173 +637830.718|219811.419|109.009 +637825.716|219816.098|109.113 +637820.797|219820.697|109.094 +637815.828|219825.339|109.094 +637810.918|219829.929|109.228 +637796.211|219843.691|110.027 +637791.301|219848.297|110.829 +637786.409|219852.866|110.658 +637781.422|219857.517|109.932 +637771.672|219866.633|110.158 +637766.841|219871.169|111.359 +637752.338|219884.748|112.630 +637742.688|219893.794|114.059 +637737.854|219898.311|114.187 +637733.047|219902.822|115.111 +637728.262|219907.306|115.745 +637708.901|219925.414|116.193 +637704.055|219929.944|116.309 +637699.251|219934.436|116.370 +637694.377|219938.987|116.257 +637689.555|219943.495|116.190 +637684.734|219948.000|116.156 +637679.906|219952.511|116.083 +637675.065|219957.034|115.916 +637670.201|219961.573|115.580 +637665.388|219966.069|115.282 +637660.505|219970.625|114.828 +637655.680|219975.130|114.483 +637650.858|219979.629|114.218 +637646.039|219984.131|113.965 +637641.251|219988.599|113.633 +637636.414|219993.117|113.288 +637631.631|219997.582|113.035 +637626.840|220002.053|112.734 +637621.999|220006.574|112.474 +637617.251|220011.008|112.167 +637598.100|220028.897|111.548 +637593.342|220033.338|111.319 +637588.572|220037.791|111.011 +637559.899|220064.553|109.009 +637555.138|220068.994|108.594 +637550.390|220073.425|108.305 +637545.513|220077.967|107.503 +637531.056|220091.430|105.123 +637526.265|220095.889|104.035 +637521.458|220100.370|103.544 +637516.810|220104.710|103.462 +637512.146|220109.072|103.611 +637502.804|220117.795|103.574 +637498.074|220122.209|103.047 +637493.398|220126.570|102.901 +637488.668|220130.984|102.425 +637479.258|220139.759|101.587 +637469.947|220148.443|100.831 +637465.286|220152.799|100.910 +637442.198|220174.357|100.200 +637433.194|220182.779|100.999 +637428.363|220187.272|99.688 +637423.623|220191.682|98.646 +637336.045|220273.661|108.539 +637318.814|220289.773|109.490 +637301.742|220305.744|110.941 +637235.223|220367.960|115.843 +637231.236|220371.697|116.470 +637195.519|220405.140|120.003 +637191.533|220408.868|120.088 +637187.598|220412.547|120.189 +637183.571|220416.311|120.131 +637175.659|220423.705|120.216 +637171.708|220427.393|120.098 +637159.971|220438.366|120.262 +637152.341|220445.505|120.805 +637144.554|220452.780|120.549 +637136.979|220459.861|120.780 +637133.185|220463.409|120.786 +637129.356|220466.984|120.661 +637125.620|220470.480|120.911 +637118.198|220477.417|121.030 +637099.791|220494.626|121.393 +637081.710|220511.521|121.475 +637078.092|220514.899|121.320 +637074.544|220518.215|121.436 +637263.149|220339.903|113.733 +637317.946|220288.380|109.570 +637339.535|220268.089|108.253 +637365.680|220243.501|105.860 +637370.003|220239.432|105.269 +637383.133|220227.072|103.398 +637387.480|220222.976|102.443 +637396.517|220214.490|102.434 +637405.609|220205.950|102.255 +637410.041|220201.783|101.834 +637423.315|220189.280|99.405 +637427.988|220184.900|99.816 +637442.219|220171.586|102.181 +637460.678|220154.256|101.614 +637479.322|220136.763|101.560 +637484.004|220132.371|101.730 +637488.783|220127.896|102.203 +637493.560|220123.425|102.709 +637498.241|220119.030|102.629 +637503.045|220114.531|103.038 +637512.518|220105.649|103.373 +637517.233|220101.223|103.282 +637536.716|220083.005|106.656 +637541.602|220078.436|107.525 +637551.325|220069.335|108.689 +637556.132|220064.833|109.094 +637614.215|220010.393|112.029 +637619.061|220005.851|112.380 +637623.944|220001.276|112.654 +637628.818|219996.707|112.880 +637633.698|219992.135|113.163 +637638.581|219987.560|113.544 +637643.494|219982.955|113.776 +637648.362|219978.395|114.047 +637653.272|219973.792|114.328 +637658.179|219969.193|114.596 +637663.096|219964.587|114.959 +637668.003|219959.988|115.306 +637672.913|219955.388|115.672 +637677.848|219950.761|115.882 +637682.707|219946.205|115.839 +637687.635|219941.584|116.038 +637702.308|219927.819|116.156 +637707.243|219923.189|116.059 +637712.096|219918.636|116.108 +637731.588|219900.317|114.376 +637736.495|219895.708|114.081 +637746.233|219886.558|113.212 +637751.128|219881.947|112.304 +637760.876|219872.790|111.581 +637765.774|219868.179|110.685 +637770.599|219863.631|109.490 +637780.447|219854.393|109.469 +637785.552|219849.620|110.548 +637790.478|219845.002|110.615 +637795.443|219840.344|110.621 +637800.335|219835.736|109.716 +637805.218|219831.149|109.292 +637810.205|219826.470|108.972 +637815.173|219821.816|109.100 +637820.172|219817.128|108.975 +637825.128|219812.483|108.981 +637830.090|219807.834|109.052 +637835.089|219803.147|109.033 +637840.090|219798.462|109.039 +637845.046|219793.817|109.119 +637850.042|219789.135|109.113 +637855.041|219784.453|109.125 +637860.030|219779.774|109.055 +637865.011|219775.102|108.875 +637875.014|219765.748|110.021 +637880.031|219761.054|110.545 +637885.036|219756.369|110.914 +637890.093|219751.638|111.347 +637895.052|219746.999|111.795 +637900.093|219742.278|112.097 +637905.095|219737.599|112.523 +637910.112|219732.911|113.322 +637915.163|219728.187|113.944 +637920.158|219723.514|114.352 +637925.142|219718.848|114.605 +637930.165|219714.142|114.733 +637935.179|219709.442|114.590 +637940.190|219704.742|114.425 +637945.195|219700.045|114.120 +637950.151|219695.393|113.739 +637955.156|219690.696|113.441 +637960.157|219686.003|113.047 +637965.159|219681.306|112.630 +637970.158|219676.612|112.042 +637975.202|219671.872|111.423 +637980.152|219667.221|110.765 +637985.194|219662.481|109.893 +637990.202|219657.781|109.515 +637995.222|219653.078|109.585 +638000.248|219648.375|110.024 +638005.323|219643.626|110.457 +638010.352|219638.926|111.277 +638015.430|219634.183|112.090 +638020.453|219629.486|112.657 +638025.473|219624.789|113.078 +638030.539|219620.050|113.587 +638035.556|219615.356|114.236 +638040.570|219610.665|114.495 +638045.630|219605.928|114.843 +638050.689|219601.192|115.117 +638055.700|219596.501|115.483 +638060.754|219591.764|115.562 +638065.759|219587.076|115.681 +638070.767|219582.386|115.711 +638075.820|219577.646|115.617 +638080.874|219572.906|115.474 +638085.882|219568.212|115.388 +638090.938|219563.473|115.370 +638095.946|219558.779|115.276 +638101.003|219554.036|115.135 +638106.014|219549.336|114.867 +638111.070|219544.590|114.693 +638116.081|219539.890|114.501 +638121.141|219535.148|114.437 +638126.152|219530.457|114.632 +638131.205|219525.726|114.986 +638136.210|219521.044|115.519 +638141.261|219516.320|116.074 +638146.263|219511.644|116.708 +638151.316|219506.914|117.077 +638156.312|219502.250|117.988 +638161.317|219497.563|118.241 +638166.322|219492.875|118.513 +638171.323|219488.196|118.979 +638176.334|219483.502|119.040 +638181.400|219478.747|118.793 +638186.365|219474.102|118.988 +638191.373|219469.417|119.299 +638196.384|219464.723|119.454 +638201.355|219460.069|119.430 +638197.414|219459.929|119.439 +638192.443|219464.574|119.342 +638187.478|219469.213|119.052 +638182.510|219473.855|118.942 +638177.535|219478.506|118.948 +638167.644|219487.754|118.881 +638162.633|219492.433|118.577 +638157.674|219497.063|118.107 +638152.712|219501.696|117.687 +638147.707|219506.359|116.961 +638142.745|219510.995|116.577 +638137.783|219515.622|115.925 +638132.772|219520.298|115.428 +638127.810|219524.928|114.824 +638122.796|219529.609|114.501 +638117.828|219534.248|114.258 +638112.856|219538.897|114.322 +638107.839|219543.591|114.437 +638102.822|219548.284|114.639 +638097.854|219552.933|114.724 +638092.791|219557.669|114.901 +638087.826|219562.314|114.962 +638082.812|219567.005|115.084 +638077.798|219571.696|115.300 +638072.833|219576.341|115.404 +638067.770|219581.075|115.443 +638062.756|219585.760|115.266 +638057.794|219590.402|115.327 +638052.780|219595.087|115.257 +638047.763|219599.771|114.873 +638042.746|219604.459|114.629 +638037.726|219609.144|114.197 +638032.709|219613.832|113.971 +638027.686|219618.520|113.563 +638022.660|219623.211|112.919 +638017.637|219627.901|112.563 +638012.608|219632.592|112.005 +638007.523|219637.332|111.063 +638002.488|219642.026|110.445 +637997.453|219646.726|109.878 +637992.421|219651.423|109.436 +637987.394|219656.120|109.341 +637982.384|219660.814|109.798 +637977.336|219665.547|110.664 +637972.334|219670.238|111.365 +637967.332|219674.926|111.975 +637962.325|219679.617|112.426 +637957.317|219684.308|112.895 +637952.312|219688.996|113.392 +637947.255|219693.732|113.697 +637942.293|219698.377|114.066 +637937.233|219703.114|114.322 +637932.219|219707.808|114.538 +637927.245|219712.459|114.651 +637922.170|219717.208|114.553 +637917.129|219721.920|114.209 +637912.130|219726.587|113.840 +637907.070|219731.308|113.233 +637902.011|219736.033|112.642 +637896.942|219740.763|111.911 +637891.894|219745.481|111.661 +637886.886|219750.160|111.283 +637881.821|219754.887|110.792 +637876.761|219759.615|110.460 +637871.747|219764.303|110.067 +637856.638|219778.415|108.908 +637851.600|219783.130|109.097 +637846.598|219787.812|109.079 +637841.593|219792.494|109.070 +637836.585|219797.176|109.052 +637831.580|219801.860|109.030 +637826.579|219806.542|109.128 +637821.571|219811.224|109.170 +637816.599|219815.875|109.058 +637811.637|219820.517|109.085 +637806.632|219825.202|109.201 +637801.716|219829.814|109.868 +637796.763|219834.462|110.694 +637791.850|219839.058|110.795 +637786.866|219843.722|110.612 +637781.776|219848.455|109.183 +637771.821|219857.767|109.201 +637766.987|219862.302|109.762 +637762.092|219866.899|110.780 +637757.221|219871.471|111.469 +637737.671|219889.795|113.648 +637732.886|219894.285|114.258 +637727.951|219898.903|114.319 +637723.126|219903.429|115.038 +637718.280|219907.971|115.550 +637713.400|219912.539|115.724 +637689.056|219935.320|116.028 +637684.133|219939.923|115.928 +637679.296|219944.446|115.736 +637674.413|219949.012|115.608 +637669.561|219953.547|115.321 +637664.662|219958.125|115.099 +637659.840|219962.630|114.730 +637654.936|219967.212|114.526 +637650.117|219971.717|114.227 +637645.247|219976.267|113.934 +637640.409|219980.784|113.550 +637635.514|219985.356|113.112 +637630.668|219989.883|112.706 +637625.843|219994.394|112.493 +637621.015|219998.908|112.292 +637616.199|220003.410|112.212 +637606.619|220012.365|111.767 +637601.843|220016.833|111.676 +637582.671|220034.755|111.078 +637577.971|220039.151|110.947 +637573.152|220043.656|110.691 +637568.379|220048.115|110.429 +637563.597|220052.583|110.146 +637539.691|220074.907|107.707 +637534.900|220079.381|107.180 +637530.136|220083.825|106.531 +637506.248|220106.118|103.276 +637501.606|220110.459|103.276 +637496.873|220114.878|102.700 +637492.246|220119.210|102.831 +637473.537|220136.693|101.685 +637459.553|220149.763|100.907 +637436.842|220171.032|102.059 +637422.669|220184.242|99.310 +637418.237|220188.402|99.978 +637409.486|220196.617|101.730 +637396.036|220209.211|102.230 +637335.100|220266.325|108.213 +637326.428|220274.448|108.713 +637322.115|220278.486|108.985 +637305.092|220294.433|110.283 +637267.282|220329.857|113.166 +637263.133|220333.743|113.422 +637214.557|220379.265|118.284 +637210.564|220383.002|118.711 +637206.773|220386.565|119.777 +637194.757|220397.806|120.113 +637190.801|220401.510|120.305 +637182.837|220408.959|120.527 +637178.917|220412.626|120.692 +637174.872|220416.402|120.369 +637170.989|220420.036|120.494 +637159.215|220431.048|120.683 +637155.335|220434.675|120.668 +637143.770|220445.489|121.015 +637132.356|220456.170|121.423 +637117.256|220470.288|121.390 +637098.760|220487.579|121.762 +637095.118|220490.990|121.835 +637080.625|220504.538|121.957 +637069.878|220514.585|121.887 +637260.165|220334.106|113.745 +637272.616|220322.414|112.569 +637323.606|220274.545|108.832 +637332.247|220266.434|108.186 +637340.952|220258.263|107.668 +637402.528|220200.433|101.529 +637420.426|220183.617|99.435 +637429.673|220174.958|100.017 +637439.244|220166.021|101.998 +637471.556|220135.699|101.459 +637476.259|220131.292|101.733 +637481.005|220126.845|101.980 +637485.680|220122.462|102.126 +637495.193|220113.552|102.892 +637504.587|220104.744|102.998 +637509.409|220100.230|103.571 +637514.155|220095.786|104.001 +637548.091|220064.035|108.704 +637552.947|220059.496|109.454 +637567.440|220045.917|110.362 +637572.262|220041.400|110.637 +637577.084|220036.883|110.944 +637591.513|220023.356|111.417 +637605.997|220009.768|111.411 +637615.702|220000.673|111.743 +637620.573|219996.107|111.911 +637625.456|219991.532|112.203 +637630.336|219986.960|112.496 +637635.213|219982.391|112.807 +637640.111|219977.803|113.319 +637645.073|219973.161|113.974 +637649.980|219968.562|114.224 +637654.881|219963.969|114.437 +637659.786|219959.375|114.693 +637664.687|219954.782|114.956 +637669.582|219950.195|115.212 +637674.529|219945.559|115.501 +637679.415|219940.980|115.711 +637684.334|219936.369|115.818 +637689.245|219931.763|115.870 +637694.152|219927.161|115.888 +637703.991|219917.931|115.800 +637713.738|219908.778|115.388 +637723.477|219899.628|114.419 +637728.405|219895.001|114.337 +637738.165|219885.827|113.148 +637743.078|219881.206|112.407 +637747.943|219876.640|112.182 +637752.881|219871.998|111.740 +637757.752|219867.417|111.082 +637762.638|219862.814|110.048 +637767.557|219858.191|109.362 +637772.434|219853.603|108.796 +637777.344|219848.982|108.030 +637787.476|219839.525|110.387 +637792.526|219834.794|110.865 +637797.452|219830.176|110.975 +637802.402|219825.519|110.192 +637807.340|219820.868|109.277 +637812.280|219816.223|109.027 +637817.291|219811.522|109.064 +637822.244|219806.871|109.027 +637827.255|219802.171|109.137 +637832.254|219797.477|109.113 +637837.256|219792.783|109.146 +637842.251|219788.092|109.103 +637847.201|219783.447|109.097 +637852.200|219778.756|109.116 +637867.273|219764.623|109.914 +637872.293|219759.920|110.478 +637877.294|219755.229|110.740 +637882.351|219750.492|111.152 +637887.353|219745.801|111.502 +637892.345|219741.120|111.691 +637897.411|219736.377|112.404 +637902.422|219731.686|113.063 +637907.470|219726.956|113.547 +637912.517|219722.228|114.047 +637917.507|219717.549|114.425 +637922.536|219712.834|114.632 +637927.507|219708.168|114.568 +637932.518|219703.462|114.413 +637937.526|219698.755|114.157 +637942.534|219694.049|113.886 +637947.536|219689.349|113.493 +637952.541|219684.643|113.133 +637957.539|219679.943|112.636 +637962.541|219675.240|112.182 +637967.543|219670.537|111.697 +637972.542|219665.834|111.088 +637977.534|219661.131|110.237 +637982.579|219656.382|109.545 +637987.544|219651.719|109.338 +637992.613|219646.964|109.445 +637997.645|219642.251|110.057 +638002.674|219637.542|110.655 +638007.700|219632.833|111.298 +638012.733|219628.127|112.270 +638017.753|219623.424|112.612 +638022.773|219618.721|113.224 +638027.842|219613.975|113.779 +638032.807|219609.318|114.029 +638037.866|219604.572|114.343 +638042.880|219599.872|114.654 +638047.891|219595.175|114.931 +638052.902|219590.475|115.218 +638057.910|219585.775|115.239 +638062.915|219581.078|115.321 +638067.969|219576.332|115.273 +638072.928|219571.675|115.117 +638077.984|219566.926|114.852 +638082.992|219562.220|114.648 +638088.000|219557.517|114.556 +638093.011|219552.814|114.538 +638098.019|219548.111|114.562 +638103.030|219543.405|114.346 +638108.041|219538.699|114.279 +638113.055|219533.992|114.096 +638118.066|219529.292|114.276 +638123.073|219524.595|114.596 +638128.127|219519.862|115.084 +638133.083|219515.220|115.754 +638138.088|219510.532|116.190 +638143.087|219505.853|116.989 +638148.091|219501.159|117.299 +638153.093|219496.474|117.866 +638158.092|219491.796|118.485 +638163.097|219487.099|118.726 +638178.084|219473.035|118.872 +638183.098|219468.332|118.948 +638188.060|219463.675|119.101 +638193.068|219458.981|119.384 +638190.846|219456.917|119.314 +638185.832|219461.602|119.022 +638180.812|219466.296|118.979 +638175.749|219471.033|118.897 +638155.638|219489.839|118.540 +638150.637|219494.502|117.705 +638145.629|219499.178|117.232 +638140.618|219503.860|116.879 +638135.610|219508.532|116.227 +638130.602|219513.208|115.705 +638125.594|219517.881|115.053 +638120.580|219522.559|114.553 +638115.520|219527.290|114.273 +638110.555|219531.926|113.672 +638105.486|219536.675|114.114 +638100.469|219541.369|114.294 +638095.501|219546.020|114.373 +638090.438|219550.756|114.453 +638085.421|219555.444|114.267 +638080.453|219560.096|114.477 +638075.393|219564.832|114.559 +638070.379|219569.526|114.821 +638065.414|219574.174|115.020 +638060.400|219578.868|115.166 +638055.392|219583.553|115.148 +638050.375|219588.241|114.992 +638045.361|219592.929|114.831 +638040.393|219597.574|114.617 +638035.376|219602.262|114.343 +638030.405|219606.907|114.038 +638025.427|219611.552|113.544 +638020.404|219616.246|113.148 +638015.378|219620.937|112.593 +638010.450|219625.542|112.206 +638005.414|219630.236|111.426 +638000.428|219634.891|110.746 +637995.438|219639.545|109.984 +637990.403|219644.245|109.445 +637985.465|219648.856|109.155 +637980.497|219653.511|109.414 +637975.538|219658.159|110.003 +637970.588|219662.807|110.890 +637965.632|219667.455|111.514 +637960.673|219672.101|112.008 +637955.710|219676.752|112.435 +637950.751|219681.397|112.910 +637945.792|219686.045|113.310 +637940.833|219690.690|113.761 +637935.868|219695.342|114.011 +637930.951|219699.947|114.309 +637925.980|219704.595|114.492 +637921.021|219709.244|114.867 +637916.022|219713.910|114.355 +637911.027|219718.574|113.995 +637906.077|219723.197|113.636 +637901.069|219727.870|113.127 +637896.101|219732.506|112.444 +637891.087|219737.185|111.895 +637886.118|219741.818|111.392 +637881.171|219746.445|111.252 +637876.157|219751.123|110.856 +637871.198|219755.759|110.551 +637866.239|219760.392|110.344 +637861.231|219765.056|109.292 +637841.453|219783.548|109.030 +637836.506|219788.175|109.164 +637831.547|219792.814|109.100 +637826.585|219797.450|109.082 +637821.668|219802.046|109.018 +637816.715|219806.682|109.119 +637811.747|219811.327|109.049 +637806.934|219815.842|109.786 +637802.036|219820.438|110.670 +637797.089|219825.068|110.938 +637792.179|219829.661|111.060 +637787.116|219834.376|109.829 +637782.126|219839.015|108.451 +637777.097|219843.709|107.768 +637772.260|219848.251|108.896 +637767.319|219852.869|108.771 +637762.452|219857.435|109.512 +637757.627|219861.961|110.216 +637752.722|219866.563|111.085 +637747.891|219871.090|111.712 +637742.984|219875.686|112.023 +637738.159|219880.209|112.740 +637723.586|219893.867|114.331 +637718.710|219898.430|114.514 +637713.860|219902.966|114.501 +637689.571|219925.701|115.724 +637684.703|219930.255|115.654 +637679.832|219934.805|115.596 +637674.953|219939.365|115.458 +637670.060|219943.937|115.236 +637665.211|219948.466|115.001 +637660.316|219953.044|114.782 +637655.454|219957.583|114.501 +637650.620|219962.103|114.462 +637645.686|219966.712|113.992 +637640.760|219971.302|113.255 +637635.850|219975.883|112.657 +637631.031|219980.385|112.459 +637626.175|219984.927|112.368 +637621.344|219989.438|112.112 +637616.443|219994.013|111.731 +637606.750|220003.068|111.106 +637592.327|220016.559|111.277 +637577.925|220030.016|110.685 +637573.146|220034.484|110.688 +637568.373|220038.943|110.423 +637558.820|220047.871|110.231 +637549.241|220056.820|109.600 +637525.292|220079.168|107.174 +637520.473|220083.661|106.506 +637482.315|220119.261|101.941 +637472.958|220128.006|101.685 +637454.438|220145.325|101.654 +637449.781|220149.674|101.465 +637445.282|220153.896|102.221 +637436.166|220162.424|102.517 +637426.327|220171.550|98.466 +637421.874|220175.726|99.005 +637417.396|220179.926|99.700 +637399.696|220196.513|101.806 +637386.306|220209.043|102.419 +637377.555|220217.243|103.486 +637342.790|220249.817|107.336 +637312.542|220278.133|109.189 +637287.219|220301.846|111.347 +637278.776|220309.747|111.758 +637270.528|220317.476|112.892 +637266.255|220321.469|112.791 +637249.905|220336.791|114.727 +637205.703|220378.199|119.046 +637197.802|220385.605|119.829 +637193.907|220389.257|120.247 +637182.072|220400.336|120.744 +637178.182|220403.979|121.030 +637166.374|220415.025|121.155 +637162.476|220418.670|121.234 +637154.731|220425.915|121.210 +637150.830|220429.564|121.109 +637139.439|220440.229|121.701 +637124.352|220454.341|121.954 +637109.364|220468.359|121.969 +637102.055|220475.201|122.341 +637098.413|220478.606|122.402 +637094.765|220482.023|122.432 +637091.122|220485.431|122.710 +637087.495|220488.823|122.652 +637083.929|220492.164|122.826 +637080.247|220495.599|122.594 +637069.530|220505.621|122.576 +637257.013|220327.687|114.011 +637342.342|220247.503|107.168 +637368.796|220222.647|105.275 +637390.811|220201.935|102.126 +637422.145|220172.473|98.515 +637441.353|220154.530|102.620 +637450.403|220146.026|101.450 +637464.375|220132.929|101.566 +637469.081|220128.518|101.538 +637473.781|220124.114|101.819 +637478.435|220119.752|101.809 +637487.866|220110.913|102.023 +637497.461|220101.943|103.382 +637521.549|220079.418|106.705 +637526.380|220074.904|107.470 +637535.994|220065.909|108.482 +637540.819|220061.395|108.972 +637545.641|220056.884|109.490 +637555.285|220047.856|110.249 +637560.030|220043.409|110.298 +637569.613|220034.426|110.429 +637574.454|220029.888|110.542 +637579.245|220025.401|110.649 +637584.073|220020.881|111.069 +637588.886|220016.367|111.039 +637613.041|219993.729|111.530 +637617.915|219989.163|111.734 +637622.810|219984.582|112.121 +637627.693|219980.010|112.447 +637632.543|219975.466|112.526 +637637.459|219970.860|112.801 +637642.357|219966.279|113.337 +637647.319|219961.640|114.053 +637652.245|219957.028|114.501 +637657.131|219952.450|114.611 +637662.023|219947.869|114.791 +637666.915|219943.285|115.013 +637671.813|219938.697|115.327 +637676.736|219934.086|115.431 +637681.646|219929.483|115.477 +637686.511|219924.924|115.553 +637706.082|219906.562|114.806 +637710.956|219901.987|114.602 +637715.884|219897.367|114.465 +637720.804|219892.749|114.297 +637730.545|219883.602|113.407 +637735.468|219878.975|112.764 +637745.233|219869.797|111.697 +637755.005|219860.608|110.176 +637759.977|219855.938|109.545 +637764.823|219851.375|108.604 +637769.733|219846.757|107.832 +637774.656|219842.131|107.201 +637779.648|219837.455|107.439 +637784.793|219832.660|109.036 +637789.865|219827.930|110.420 +637794.879|219823.242|111.057 +637799.872|219818.557|110.844 +637809.741|219809.282|109.500 +637814.704|219804.619|108.905 +637819.684|219799.955|109.207 +637824.677|219795.271|109.061 +637829.678|219790.583|109.027 +637834.680|219785.895|109.076 +637839.682|219781.207|109.085 +637859.750|219762.404|109.719 +637864.801|219757.689|110.740 +637869.784|219753.013|110.640 +637874.841|219748.282|110.984 +637879.888|219743.555|111.231 +637884.887|219738.873|111.523 +637889.938|219734.146|111.850 +637894.955|219729.455|112.569 +637900.011|219724.724|113.176 +637905.059|219720.003|113.624 +637910.106|219715.282|114.108 +637915.141|219710.563|114.437 +637920.165|219705.857|114.486 +637925.182|219701.151|114.386 +637930.193|219696.451|114.191 +637935.200|219691.751|113.907 +637940.208|219687.051|113.590 +637945.210|219682.354|113.145 +637950.215|219677.654|112.752 +637955.217|219672.957|112.276 +637960.221|219668.257|111.798 +637965.223|219663.560|111.258 +637970.219|219658.863|110.573 +637975.215|219654.163|109.768 +637980.219|219649.463|109.201 +637985.240|219644.757|109.122 +637990.269|219640.051|109.597 +637995.301|219635.342|110.213 +638000.333|219630.639|110.926 +638005.366|219625.935|111.761 +638010.389|219621.235|112.231 +638015.412|219616.535|112.740 +638020.481|219611.793|113.154 +638025.452|219607.141|113.703 +638030.472|219602.448|114.187 +638035.532|219597.705|114.346 +638040.497|219593.057|114.645 +638045.557|219588.317|114.760 +638050.567|219583.620|114.834 +638055.527|219578.972|114.940 +638060.534|219574.275|114.837 +638065.591|219569.532|114.706 +638070.553|219564.878|114.523 +638075.564|219560.178|114.379 +638080.575|219555.478|114.227 +638085.586|219550.781|114.288 +638090.597|219546.084|114.251 +638095.608|219541.384|114.102 +638100.573|219536.723|113.944 +638105.587|219532.020|113.727 +638110.598|219527.329|114.096 +638115.563|219522.678|114.233 +638120.571|219517.993|114.727 +638125.530|219513.351|115.218 +638130.489|219508.718|115.931 +638135.494|219504.037|116.486 +638140.447|219499.401|117.086 +638145.409|219494.755|117.309 +638150.408|219490.080|118.016 +638175.219|219466.839|118.973 +638180.144|219462.215|118.790 +638185.103|219457.567|119.043 +638181.290|219456.777|118.942 +638176.273|219461.477|118.878 +638145.876|219489.924|117.470 +638140.865|219494.609|117.120 +638130.709|219504.107|116.175 +638125.701|219508.782|115.513 +638120.598|219513.549|114.885 +638115.542|219518.277|114.389 +638110.482|219523.010|114.038 +638105.422|219527.738|113.450 +638100.311|219532.529|113.581 +638095.294|219537.232|113.864 +638090.185|219542.021|114.038 +638085.123|219546.764|114.090 +638080.109|219551.461|114.114 +638075.000|219556.246|114.233 +638069.941|219560.989|114.367 +638064.881|219565.728|114.501 +638059.824|219570.471|114.651 +638054.765|219575.211|114.730 +638049.757|219579.901|114.742 +638044.694|219584.641|114.684 +638039.634|219589.378|114.632 +638034.572|219594.117|114.370 +638029.509|219598.854|114.221 +638024.489|219603.548|113.678 +638019.420|219608.288|113.166 +638014.397|219612.981|112.724 +638009.325|219617.724|112.194 +638004.302|219622.421|111.840 +637999.266|219627.124|111.042 +637994.234|219631.824|110.350 +637989.196|219636.530|109.591 +637984.164|219641.236|109.167 +637979.137|219645.940|109.015 +637974.130|219650.640|109.497 +637969.128|219655.337|110.283 +637964.178|219659.988|111.027 +637959.222|219664.642|111.572 +637954.214|219669.339|112.045 +637949.255|219673.990|112.407 +637944.296|219678.642|112.883 +637939.294|219683.339|113.337 +637934.377|219687.947|113.675 +637929.421|219692.598|114.062 +637924.453|219697.256|114.251 +637919.485|219701.910|114.392 +637914.514|219706.567|114.480 +637909.576|219711.188|114.291 +637904.623|219715.818|113.776 +637899.621|219720.494|113.322 +637894.665|219725.127|112.852 +637889.691|219729.772|112.051 +637884.732|219734.411|111.606 +637879.775|219739.044|111.304 +637874.829|219743.674|111.179 +637869.872|219748.313|110.883 +637864.913|219752.952|110.637 +637860.000|219757.548|110.323 +637854.965|219762.236|108.856 +637840.225|219776.047|109.061 +637835.320|219780.640|109.079 +637830.367|219785.279|109.094 +637825.460|219789.876|109.128 +637820.556|219794.472|109.155 +637815.633|219799.077|108.985 +637810.805|219803.607|109.500 +637805.904|219808.212|110.304 +637801.079|219812.742|110.880 +637796.184|219817.329|111.130 +637791.267|219821.925|110.484 +637786.235|219826.610|109.055 +637776.262|219835.900|106.284 +637771.391|219840.475|107.003 +637766.633|219844.947|107.912 +637752.131|219858.572|110.134 +637742.533|219867.584|111.551 +637737.674|219872.141|111.859 +637732.907|219876.622|112.624 +637728.058|219881.169|113.051 +637708.773|219899.259|114.526 +637703.939|219903.789|114.678 +637699.096|219908.327|114.764 +637694.274|219912.847|115.081 +637689.427|219917.389|115.145 +637674.965|219930.934|115.330 +637670.088|219935.500|115.221 +637665.242|219940.036|114.965 +637660.404|219944.562|114.824 +637650.706|219953.639|114.376 +637645.853|219958.171|113.770 +637640.949|219962.755|113.151 +637636.127|219967.263|112.859 +637631.268|219971.814|112.679 +637626.410|219976.353|112.161 +637621.548|219980.894|111.624 +637616.711|219985.420|111.304 +637611.862|219989.956|110.923 +637607.153|219994.372|111.310 +637597.512|220003.391|110.761 +637583.183|220016.815|110.926 +637578.395|220021.295|110.810 +637573.564|220025.813|110.411 +637568.827|220030.247|110.362 +637559.241|220039.218|109.884 +637554.535|220043.628|110.121 +637549.774|220048.081|109.996 +637540.212|220057.015|109.222 +637535.387|220061.526|108.716 +637521.019|220074.946|107.156 +637516.264|220079.390|106.921 +637511.448|220083.889|106.305 +637506.657|220088.358|105.571 +637487.470|220106.268|102.776 +637473.315|220119.499|101.825 +637464.149|220128.091|102.468 +637459.373|220132.548|101.803 +637450.055|220141.262|101.343 +637445.368|220145.642|100.971 +637440.753|220149.961|101.069 +637435.913|220154.466|99.566 +637426.543|220163.220|98.780 +637337.950|220246.293|107.396 +637333.567|220250.396|107.497 +637320.567|220262.579|108.363 +637311.883|220270.717|108.853 +637294.891|220286.649|110.579 +637240.663|220337.483|115.446 +637232.461|220345.170|116.047 +637228.471|220348.913|116.635 +637216.365|220360.264|117.836 +637200.305|220375.303|119.083 +637192.456|220382.664|120.098 +637184.586|220390.040|120.838 +637168.880|220404.744|121.762 +637160.909|220412.190|121.396 +637153.161|220419.441|121.558 +637145.334|220426.759|121.463 +637137.766|220433.846|122.021 +637130.152|220440.972|122.237 +637122.459|220448.156|121.801 +637118.743|220451.637|122.100 +637111.315|220458.590|122.347 +637100.120|220469.057|122.405 +637096.554|220472.400|122.731 +637089.190|220479.286|122.765 +637064.123|220502.731|123.161 +637309.137|220270.400|109.015 +637313.383|220266.404|108.436 +637322.109|220258.208|108.229 +637330.723|220250.109|107.512 +637335.109|220245.991|107.448 +637405.960|220179.383|101.764 +637428.338|220158.315|98.451 +637442.768|220144.825|101.602 +637447.385|220140.482|101.294 +637452.070|220136.092|101.685 +637475.375|220114.205|101.508 +637480.161|220109.721|102.072 +637518.629|220073.694|107.186 +637523.506|220069.122|107.656 +637528.328|220064.608|108.436 +637561.948|220033.073|110.036 +637566.779|220028.534|110.079 +637571.582|220024.029|110.286 +637576.465|220019.454|110.746 +637581.296|220014.919|110.850 +637586.088|220010.423|111.057 +637590.956|220005.854|111.115 +637595.710|220001.380|110.713 +637619.927|219978.654|111.258 +637624.813|219974.073|111.630 +637629.790|219969.415|112.380 +637634.682|219964.828|112.889 +637639.577|219960.235|113.026 +637644.500|219955.623|113.413 +637649.392|219951.039|114.002 +637664.153|219937.198|115.004 +637673.992|219927.962|115.227 +637678.836|219923.412|115.102 +637683.719|219918.824|114.916 +637688.608|219914.231|114.818 +637693.490|219909.647|114.663 +637698.376|219905.057|114.578 +637703.320|219900.415|114.581 +637718.009|219886.610|113.797 +637722.840|219882.062|113.221 +637727.774|219877.420|112.731 +637732.663|219872.821|112.289 +637737.549|219868.225|111.807 +637762.004|219845.197|108.128 +637766.902|219840.582|107.226 +637771.800|219835.964|106.348 +637776.747|219831.316|106.058 +637781.886|219826.531|108.210 +637787.052|219821.718|110.167 +637792.026|219817.049|110.353 +637797.037|219812.361|111.045 +637802.021|219807.676|110.777 +637806.998|219802.997|110.441 +637811.939|219798.346|109.558 +637816.916|219793.667|109.225 +637821.863|219789.025|109.113 +637826.908|219784.292|109.091 +637836.902|219774.910|109.103 +637846.918|219765.504|108.796 +637851.978|219760.761|109.109 +637857.046|219756.030|110.429 +637862.051|219751.337|110.740 +637867.099|219746.606|110.978 +637872.140|219741.879|111.106 +637877.182|219737.148|111.353 +637882.232|219732.418|111.740 +637887.283|219727.687|112.164 +637892.297|219722.993|112.883 +637897.390|219718.223|113.337 +637902.431|219713.499|113.755 +637907.427|219708.817|114.245 +637912.502|219704.059|114.450 +637917.519|219699.350|114.419 +637922.524|219694.647|114.130 +637927.583|219689.898|113.971 +637932.585|219685.198|113.593 +637937.590|219680.495|113.300 +637942.638|219675.749|112.865 +637947.633|219671.049|112.267 +637952.632|219666.349|111.798 +637957.682|219661.603|111.399 +637962.678|219656.900|110.798 +637967.723|219652.157|110.070 +637972.718|219647.454|109.387 +637977.772|219642.703|108.914 +637982.792|219637.993|109.064 +637987.867|219633.242|109.585 +637992.902|219628.532|110.466 +637997.980|219623.781|111.170 +638003.052|219619.032|111.825 +638008.069|219614.329|112.093 +638013.138|219609.583|112.724 +638018.201|219604.837|113.157 +638023.218|219600.140|113.645 +638028.235|219595.443|114.184 +638033.291|219590.701|114.422 +638038.299|219586.001|114.568 +638043.356|219581.258|114.684 +638048.364|219576.561|114.660 +638053.366|219571.864|114.562 +638058.419|219567.118|114.541 +638063.473|219562.372|114.389 +638068.432|219557.715|114.160 +638073.488|219552.966|114.002 +638078.496|219548.266|113.913 +638083.504|219543.566|113.934 +638088.515|219538.863|113.822 +638093.572|219534.111|113.541 +638098.537|219529.442|113.105 +638103.594|219524.699|113.313 +638108.598|219520.014|113.931 +638113.558|219515.366|114.340 +638118.611|219510.636|114.873 +638123.613|219505.951|115.483 +638128.566|219501.318|116.245 +638133.568|219496.636|116.818 +638138.573|219491.945|117.132 +638143.580|219487.245|117.245 +638142.654|219484.130|117.528 +638137.594|219488.858|117.242 +638132.583|219493.539|116.946 +638127.575|219498.209|116.190 +638122.522|219502.927|115.522 +638117.462|219507.648|114.983 +638112.451|219512.324|114.407 +638107.343|219517.097|114.029 +638102.329|219521.773|113.261 +638097.266|219526.500|112.883 +638092.200|219531.246|113.108 +638087.134|219535.992|113.444 +638082.069|219540.735|113.681 +638077.006|219545.471|113.770 +638071.894|219550.253|113.858 +638066.877|219554.947|113.934 +638061.769|219559.730|114.136 +638056.709|219564.469|114.319 +638051.646|219569.206|114.416 +638046.541|219573.982|114.538 +638041.481|219578.719|114.584 +638036.419|219583.452|114.465 +638031.356|219588.189|114.376 +638026.241|219592.965|114.075 +638021.218|219597.656|113.575 +638016.101|219602.435|113.118 +638011.029|219607.172|112.663 +638005.954|219611.909|112.115 +638000.879|219616.648|111.664 +637995.801|219621.388|111.072 +637990.766|219626.085|110.432 +637985.672|219630.831|109.497 +637980.588|219635.576|108.981 +637975.507|219640.325|108.616 +637970.457|219645.065|109.308 +637965.403|219649.801|109.987 +637960.353|219654.538|110.691 +637955.345|219659.235|111.164 +637950.294|219663.969|111.783 +637945.241|219668.708|112.255 +637940.236|219673.399|112.810 +637935.179|219678.136|113.166 +637930.168|219682.830|113.505 +637925.108|219687.566|113.825 +637920.049|219692.306|114.114 +637915.032|219697.006|114.288 +637910.009|219701.709|114.288 +637904.928|219706.461|114.117 +637899.883|219711.176|113.718 +637894.833|219715.894|113.282 +637889.782|219720.616|112.852 +637884.722|219725.343|112.292 +637879.660|219730.071|111.740 +637874.649|219734.752|111.325 +637869.650|219739.431|111.130 +637864.602|219744.149|110.996 +637859.601|219748.831|110.786 +637854.596|219753.513|110.609 +637849.545|219758.222|109.710 +637819.696|219786.157|109.180 +637814.768|219790.778|109.615 +637809.851|219795.389|110.252 +637804.971|219799.967|110.682 +637800.034|219804.594|111.021 +637795.068|219809.230|110.362 +637779.981|219823.288|106.769 +637774.951|219827.973|105.485 +637770.066|219832.557|106.034 +637765.213|219837.117|106.988 +637760.400|219841.637|107.857 +637755.527|219846.212|108.527 +637750.738|219850.714|109.652 +637745.849|219855.301|110.155 +637731.325|219868.923|111.737 +637726.549|219873.406|112.438 +637721.697|219877.957|112.843 +637716.893|219882.462|113.279 +637712.041|219887.012|113.739 +637707.240|219891.517|114.203 +637697.611|219900.530|114.483 +637687.955|219909.571|114.544 +637683.109|219914.112|114.639 +637678.284|219918.623|114.544 +637673.502|219923.107|114.843 +637668.683|219927.618|114.803 +637663.855|219932.135|114.727 +637659.021|219936.658|114.629 +637654.217|219941.151|114.376 +637649.346|219945.702|113.998 +637644.503|219950.228|113.453 +637639.632|219954.779|113.139 +637629.955|219963.822|112.310 +637625.084|219968.370|111.670 +637615.480|219977.352|111.197 +637610.633|219981.882|110.862 +637605.769|219986.426|110.393 +637596.287|219995.311|110.694 +637591.544|219999.752|110.877 +637586.795|220004.199|111.011 +637577.249|220013.127|110.643 +637572.482|220017.586|110.329 +637567.678|220022.079|110.170 +637562.920|220026.529|109.978 +637558.241|220030.909|110.060 +637548.771|220039.779|110.131 +637534.577|220053.059|109.442 +637529.834|220057.494|109.183 +637520.284|220066.418|107.970 +637510.772|220075.303|106.814 +637501.286|220084.173|105.927 +637486.915|220097.590|103.596 +637477.341|220106.530|102.145 +637463.412|220119.572|102.075 +637453.911|220128.445|100.734 +637449.452|220132.639|101.691 +637444.758|220137.028|101.270 +637440.198|220141.298|101.364 +637435.507|220145.685|101.014 +637403.695|220175.497|102.069 +637376.842|220200.668|103.312 +637337.319|220237.750|106.921 +637328.635|220245.891|107.521 +637324.191|220250.054|107.585 +637315.626|220258.095|108.597 +637311.261|220262.182|108.607 +637277.438|220293.927|112.401 +637199.375|220367.147|118.948 +637179.664|220385.642|121.131 +637175.759|220389.303|121.545 +637171.867|220392.951|121.801 +637163.939|220400.373|121.774 +637159.977|220404.082|121.777 +637155.996|220407.810|121.728 +637152.079|220411.477|121.734 +637129.036|220433.060|122.228 +637121.444|220440.168|122.353 +637113.885|220447.245|122.460 +637102.723|220457.703|122.768 +637098.980|220461.205|122.609 +637091.625|220468.097|123.030 +637084.322|220474.933|123.085 +637073.474|220485.092|123.252 +637066.232|220491.874|123.252 +637248.332|220318.430|114.456 +637311.027|220259.512|108.530 +637319.604|220251.453|107.829 +637323.935|220247.384|107.461 +637332.637|220239.219|107.211 +637336.953|220235.162|106.808 +637380.856|220193.916|103.138 +637389.799|220185.513|102.416 +637398.757|220177.097|101.852 +637412.406|220164.293|101.584 +637421.450|220155.795|100.795 +637440.043|220138.369|101.185 +637444.645|220134.053|101.054 +637449.312|220129.676|101.041 +637458.858|220120.758|102.666 +637468.179|220112.007|102.111 +637477.558|220103.220|102.282 +637496.818|220085.215|105.202 +637511.366|220071.615|107.369 +637520.964|220062.632|108.177 +637525.826|220058.088|108.890 +637530.639|220053.586|109.283 +637535.433|220049.096|109.597 +637545.037|220040.099|110.060 +637549.801|220035.630|109.887 +637554.590|220031.144|109.896 +637559.424|220026.608|109.929 +637569.059|220017.580|110.137 +637573.865|220013.078|110.384 +637583.589|220003.967|110.658 +637588.441|219999.420|110.579 +637593.193|219994.955|110.128 +637602.940|219985.823|110.405 +637607.835|219981.239|110.743 +637612.709|219976.673|110.954 +637617.635|219972.061|111.222 +637627.443|219962.874|111.874 +637632.384|219958.260|112.755 +637637.319|219953.642|113.194 +637642.159|219949.106|113.291 +637647.121|219944.458|113.639 +637651.995|219939.898|114.075 +637661.819|219930.696|114.410 +637666.732|219926.088|114.443 +637671.584|219921.540|114.337 +637676.504|219916.929|114.450 +637681.414|219912.326|114.507 +637686.315|219907.733|114.495 +637691.208|219903.142|114.428 +637705.835|219889.417|113.803 +637710.739|219884.815|113.416 +637715.637|219880.215|112.993 +637720.535|219875.613|112.599 +637725.431|219871.017|112.176 +637730.310|219866.432|111.563 +637735.215|219861.827|111.267 +637740.085|219857.249|110.569 +637754.771|219843.438|108.302 +637769.435|219829.643|105.732 +637774.308|219825.062|105.095 +637779.347|219820.353|105.933 +637784.419|219815.625|107.238 +637789.497|219810.892|108.689 +637799.564|219801.482|110.691 +637804.566|219796.788|110.661 +637809.513|219792.149|110.539 +637814.451|219787.510|110.329 +637819.340|219782.908|109.405 +637824.311|219778.235|109.009 +637834.266|219768.899|109.125 +637849.265|219754.851|110.167 +637854.291|219750.148|110.771 +637859.287|219745.463|110.932 +637864.273|219740.784|110.954 +637869.318|219736.060|111.133 +637874.320|219731.372|111.463 +637879.318|219726.690|111.773 +637884.378|219721.954|112.386 +637889.380|219717.269|112.895 +637894.375|219712.593|113.227 +637899.420|219707.869|113.678 +637904.461|219703.148|114.123 +637909.484|219698.438|114.175 +637914.501|219693.729|114.145 +637919.509|219689.026|113.938 +637924.520|219684.323|113.745 +637929.525|219679.623|113.401 +637934.530|219674.923|113.054 +637939.535|219670.220|112.758 +637944.527|219665.526|112.093 +637949.526|219660.826|111.536 +637954.528|219656.126|111.024 +637959.575|219651.380|110.521 +637964.525|219646.726|109.820 +637969.524|219642.023|109.106 +637974.572|219637.277|108.436 +637979.601|219632.565|108.954 +637984.633|219627.859|109.567 +637989.711|219623.107|110.216 +637994.746|219618.401|111.142 +637999.815|219613.652|111.578 +638004.838|219608.952|112.154 +638009.858|219604.252|112.630 +638014.924|219599.509|113.069 +638019.987|219594.767|113.483 +638025.004|219590.070|113.898 +638030.064|219585.330|114.325 +638035.120|219580.590|114.413 +638040.177|219575.848|114.517 +638045.185|219571.151|114.477 +638050.284|219566.365|114.349 +638055.292|219561.665|114.203 +638060.345|219556.919|113.989 +638065.402|219552.174|113.877 +638070.410|219547.474|113.773 +638075.467|219542.728|113.547 +638080.523|219537.979|113.337 +638085.534|219533.276|113.148 +638090.594|219528.524|112.913 +638095.657|219523.772|112.682 +638100.664|219519.085|113.233 +638105.715|219514.360|114.041 +638110.726|219509.669|114.373 +638115.728|219504.988|114.980 +638120.733|219500.303|115.516 +638125.783|219495.578|116.227 +638130.782|219490.903|116.973 +638135.787|219486.215|117.248 +638140.791|219481.521|117.495 +638145.799|219476.830|117.708 +638141.727|219476.464|117.726 +638136.768|219481.100|117.333 +638131.754|219485.788|117.092 +638126.792|219490.427|116.687 +638121.790|219495.097|115.879 +638116.782|219499.772|115.151 +638111.817|219504.411|114.721 +638106.855|219509.051|114.200 +638101.841|219513.732|113.681 +638096.830|219518.411|112.941 +638091.862|219523.056|112.590 +638086.845|219527.759|112.788 +638081.828|219532.459|112.950 +638076.811|219537.156|113.032 +638071.794|219541.856|113.176 +638066.780|219546.556|113.544 +638061.815|219551.214|113.800 +638056.752|219555.953|113.867 +638051.787|219560.605|114.044 +638046.727|219565.344|114.212 +638041.716|219570.038|114.300 +638036.702|219574.732|114.312 +638031.688|219579.426|114.264 +638026.628|219584.163|114.184 +638021.654|219588.811|113.599 +638016.585|219593.547|113.240 +638011.516|219598.287|112.834 +638006.539|219602.938|112.380 +638001.467|219607.678|111.914 +637996.438|219612.375|111.292 +637991.409|219617.075|110.841 +637986.325|219621.821|110.100 +637981.283|219626.527|109.256 +637976.245|219631.233|108.622 +637971.176|219635.979|108.640 +637966.168|219640.679|109.177 +637961.163|219645.376|109.868 +637956.158|219650.073|110.478 +637951.105|219654.812|110.978 +637946.155|219659.464|111.688 +637941.104|219664.200|112.252 +637936.100|219668.897|112.721 +637931.086|219673.594|113.014 +637926.078|219678.291|113.352 +637921.070|219682.988|113.715 +637916.053|219687.685|113.870 +637911.039|219692.382|114.154 +637906.058|219697.042|114.087 +637901.026|219701.749|113.959 +637895.933|219706.506|113.608 +637890.931|219711.182|113.163 +637885.878|219715.900|112.755 +637880.821|219720.625|112.252 +637875.810|219725.304|111.795 +637870.753|219730.028|111.392 +637865.703|219734.749|111.179 +637860.701|219739.428|110.999 +637855.647|219744.152|110.728 +637850.600|219748.874|110.670 +637845.580|219753.565|110.280 +637830.514|219767.656|109.911 +637825.518|219772.331|110.021 +637820.595|219776.949|110.496 +637815.597|219781.628|110.603 +637810.589|219786.312|110.566 +637805.599|219790.985|110.795 +637800.619|219795.642|110.536 +637795.611|219800.315|109.920 +637785.470|219809.755|107.195 +637780.395|219814.482|105.866 +637775.363|219819.176|105.162 +637770.431|219823.791|105.165 +637765.481|219828.430|105.516 +637760.611|219833.011|106.839 +637755.740|219837.583|107.564 +637750.872|219842.152|108.347 +637741.146|219851.281|109.999 +637736.251|219855.871|110.466 +637731.368|219860.452|111.072 +637726.513|219865.000|111.456 +637716.783|219874.125|112.575 +637711.919|219878.685|112.883 +637706.999|219883.291|113.157 +637702.186|219887.802|113.532 +637697.322|219892.362|113.889 +637692.500|219896.879|114.206 +637677.897|219910.546|114.379 +637668.174|219919.644|114.416 +637663.285|219924.216|114.227 +637658.438|219928.746|114.002 +637653.613|219933.260|113.995 +637648.770|219937.789|113.849 +637643.909|219942.334|113.572 +637639.056|219946.872|113.386 +637634.219|219951.386|112.971 +637629.293|219955.986|112.218 +637624.456|219960.503|111.847 +637619.604|219965.035|111.395 +637614.767|219969.555|111.075 +637609.908|219974.094|110.618 +637605.101|219978.584|110.222 +637600.298|219983.076|110.262 +637590.712|219992.047|110.182 +637581.223|220000.923|110.198 +637576.468|220005.376|110.316 +637571.747|220009.792|110.371 +637566.937|220014.291|110.124 +637562.158|220018.756|109.786 +637557.403|220023.203|109.652 +637552.666|220027.635|109.667 +637547.902|220032.088|109.512 +637533.772|220045.301|109.631 +637524.305|220054.150|109.247 +637505.313|220071.868|107.104 +637500.533|220076.324|106.433 +637481.447|220094.115|103.309 +637467.237|220107.368|101.410 +637458.154|220115.881|102.562 +637453.292|220120.398|101.069 +637448.665|220124.717|100.731 +637444.106|220128.988|101.112 +637439.418|220133.361|100.447 +637430.445|220141.777|101.846 +637403.055|220167.377|101.410 +637371.801|220196.635|103.300 +637332.524|220233.418|106.741 +637328.178|220237.487|107.028 +637293.830|220269.647|109.612 +637235.555|220324.231|115.510 +637203.203|220354.531|118.372 +637179.362|220376.864|120.366 +637171.742|220384.017|121.972 +637155.853|220398.873|121.792 +637151.960|220402.516|121.896 +637147.986|220406.231|121.893 +637144.103|220409.867|122.051 +637136.297|220417.164|122.060 +637132.560|220420.666|122.420 +637124.928|220427.808|122.563 +637113.510|220438.488|122.777 +637109.764|220441.993|122.972 +637102.311|220448.967|123.130 +637091.204|220459.355|123.338 +637087.480|220462.836|123.274 +637080.155|220469.688|123.463 +637069.320|220479.825|123.691 +637062.136|220486.543|123.716 +637058.585|220489.865|123.798 +637291.836|220269.519|109.789 +637330.677|220232.973|106.772 +637335.106|220228.810|106.689 +637343.887|220220.550|106.159 +637388.050|220178.981|101.749 +637452.402|220118.530|101.428 +637466.341|220105.430|100.907 +637485.574|220087.425|104.062 +637509.751|220064.784|107.662 +637524.262|220051.184|109.250 +637529.038|220046.701|109.420 +637548.137|220028.769|109.588 +637552.919|220024.276|109.591 +637557.726|220019.759|109.405 +637562.542|220015.239|109.682 +637567.367|220010.716|110.045 +637591.468|219988.078|109.814 +637596.320|219983.521|109.786 +637601.160|219978.971|109.692 +637606.080|219974.362|110.234 +637610.990|219969.760|110.737 +637625.706|219955.961|111.920 +637630.650|219951.328|112.426 +637645.472|219937.433|113.675 +637650.358|219932.845|113.816 +637655.299|219928.209|114.032 +637660.127|219923.677|114.126 +637665.095|219919.013|114.191 +637669.954|219914.451|114.175 +637674.925|219909.784|114.334 +637699.416|219886.763|113.322 +637704.283|219882.187|113.060 +637709.200|219877.567|112.795 +637714.113|219872.946|112.551 +637719.002|219868.346|112.036 +637723.873|219863.759|111.338 +637743.444|219845.334|109.076 +637748.352|219840.713|108.250 +637753.268|219836.080|107.561 +637758.169|219831.463|106.662 +637762.997|219826.906|105.467 +637767.984|219822.215|105.025 +637772.946|219817.551|104.876 +637777.923|219812.879|104.976 +637793.099|219798.690|107.985 +637798.196|219793.929|109.207 +637803.191|219789.254|109.747 +637808.239|219784.529|110.390 +637813.204|219779.875|110.554 +637818.203|219775.187|110.557 +637823.211|219770.493|110.722 +637828.161|219765.836|110.015 +637833.135|219761.163|109.713 +637838.115|219756.485|109.524 +637843.163|219751.766|110.387 +637848.171|219747.072|110.704 +637853.160|219742.394|110.707 +637858.168|219737.703|111.085 +637863.213|219732.972|111.280 +637868.160|219728.336|111.487 +637873.207|219723.606|111.819 +637878.215|219718.918|112.322 +637883.262|219714.191|112.743 +637888.307|219709.463|113.157 +637893.303|219704.784|113.517 +637898.295|219700.109|113.898 +637903.324|219695.393|114.099 +637908.296|219690.730|114.087 +637913.307|219686.024|113.928 +637918.314|219681.321|113.688 +637923.274|219676.663|113.374 +637928.324|219671.918|113.008 +637938.285|219662.560|112.298 +637943.284|219657.860|111.746 +637948.276|219653.163|111.057 +637953.278|219648.460|110.551 +637958.277|219643.760|109.987 +637963.273|219639.057|109.204 +637968.277|219634.354|108.668 +637973.285|219629.648|108.329 +637978.324|219624.936|109.109 +637983.359|219620.227|109.932 +637988.391|219615.520|110.652 +637993.414|219610.817|111.139 +637998.440|219606.114|111.734 +638003.461|219601.411|112.234 +638008.478|219596.711|112.578 +638013.498|219592.011|113.118 +638018.512|219587.314|113.508 +638023.526|219582.617|113.883 +638028.539|219577.920|114.215 +638033.547|219573.223|114.306 +638038.555|219568.523|114.245 +638043.609|219563.777|114.081 +638048.614|219559.084|113.995 +638053.573|219554.426|113.828 +638058.629|219549.680|113.700 +638063.637|219544.974|113.279 +638068.648|219540.268|112.990 +638073.659|219535.562|112.807 +638078.670|219530.862|112.779 +638083.681|219526.156|112.645 +638088.741|219521.407|112.487 +638093.703|219516.756|112.727 +638098.711|219512.068|113.346 +638103.764|219507.344|114.120 +638108.723|219502.695|114.462 +638113.728|219498.011|115.029 +638118.779|219493.283|115.657 +638123.732|219488.650|116.327 +638128.734|219483.972|116.976 +638133.735|219479.284|117.370 +638138.743|219474.590|117.546 +638143.745|219469.905|118.010 +638141.538|219468.360|117.909 +638136.530|219473.035|117.562 +638131.565|219477.671|117.290 +638126.643|219482.280|117.455 +638121.644|219486.934|116.406 +638116.685|219491.555|115.654 +638111.723|219496.182|115.001 +638106.760|219500.812|114.462 +638101.841|219505.405|114.111 +638096.830|219510.075|113.377 +638091.865|219514.705|112.688 +638086.897|219519.344|112.328 +638081.925|219523.992|112.426 +638076.957|219528.640|112.456 +638071.940|219533.331|112.514 +638066.972|219537.982|112.648 +638062.004|219542.630|112.883 +638057.035|219547.282|113.288 +638052.021|219551.979|113.767 +638047.056|219556.621|113.813 +638041.716|219561.620|113.928 +638037.080|219565.954|114.078 +638032.115|219570.599|114.194 +638027.147|219575.241|114.084 +638022.130|219579.926|113.813 +638017.158|219584.568|113.465 +638012.138|219589.256|113.078 +638007.161|219593.901|112.575 +638002.183|219598.546|112.197 +637997.157|219603.234|111.722 +637992.226|219607.839|111.210 +637987.193|219612.530|110.621 +637982.207|219617.182|109.945 +637977.165|219621.882|109.207 +637972.170|219626.536|108.411 +637967.198|219631.190|108.509 +637962.184|219635.884|108.914 +637957.225|219640.529|109.542 +637952.269|219645.174|110.195 +637947.267|219649.865|110.819 +637942.311|219654.511|111.399 +637937.358|219659.153|112.020 +637932.399|219663.798|112.487 +637927.391|219668.489|112.874 +637922.426|219673.134|113.191 +637917.464|219677.779|113.544 +637912.499|219682.430|113.749 +637907.488|219687.124|114.111 +637902.511|219691.782|114.096 +637897.524|219696.445|113.889 +637892.531|219701.112|113.593 +637887.536|219705.781|113.285 +637882.534|219710.457|112.889 +637877.477|219715.178|112.392 +637872.469|219719.857|111.975 +637867.462|219724.535|111.594 +637862.466|219729.208|111.472 +637857.470|219733.884|111.322 +637852.456|219738.565|110.972 +637847.448|219743.247|110.697 +637842.434|219747.935|110.377 +637837.426|219752.617|110.210 +637832.455|219757.265|109.850 +637827.466|219761.938|109.999 +637822.531|219766.558|110.298 +637817.550|219771.228|110.585 +637812.552|219775.891|109.981 +637807.507|219780.604|109.402 +637802.505|219785.273|108.814 +637797.491|219789.952|108.104 +637792.468|219794.637|107.332 +637787.436|219799.330|106.470 +637782.398|219804.030|105.555 +637777.372|219808.718|104.894 +637772.373|219813.394|104.583 +637767.456|219817.996|104.742 +637762.461|219822.678|105.147 +637747.803|219836.437|107.366 +637742.963|219840.988|108.454 +637738.052|219845.596|109.286 +637733.240|219850.116|110.131 +637723.446|219859.297|111.039 +637718.542|219863.893|111.411 +637713.671|219868.465|112.154 +637703.893|219877.628|112.770 +637699.062|219882.151|112.971 +637694.131|219886.769|113.124 +637689.248|219891.344|113.319 +637684.417|219895.867|113.553 +637679.540|219900.436|113.831 +637674.663|219905.005|114.130 +637669.804|219909.552|114.145 +637664.943|219914.103|114.169 +637660.054|219918.675|113.950 +637655.171|219923.241|113.843 +637650.279|219927.816|113.654 +637630.729|219946.089|112.496 +637625.880|219950.618|111.984 +637611.188|219964.340|110.670 +637606.327|219968.879|110.182 +637601.480|219973.411|109.835 +637596.634|219977.941|109.536 +637591.839|219982.430|109.649 +637582.284|219991.373|109.853 +637577.514|219995.845|110.210 +637572.753|220000.301|110.298 +637567.937|220004.803|109.990 +637563.115|220009.308|109.676 +637558.281|220013.825|109.283 +637548.744|220022.746|109.183 +637529.883|220040.416|109.664 +637506.075|220062.669|107.592 +637496.467|220071.639|106.202 +637482.075|220085.075|103.995 +637477.305|220089.528|103.187 +637472.483|220094.021|102.093 +637467.627|220098.544|100.813 +637449.031|220115.954|100.782 +637385.160|220175.777|101.809 +637372.008|220188.128|103.678 +637358.719|220200.585|104.391 +637345.521|220212.957|105.190 +637328.111|220229.282|106.546 +637323.773|220233.348|106.869 +637297.954|220257.559|108.841 +637289.474|220265.514|109.649 +637235.607|220316.059|115.635 +637215.307|220335.094|117.342 +637211.247|220338.901|117.626 +637199.281|220350.120|118.827 +637175.430|220372.465|120.341 +637156.011|220390.671|122.051 +637148.123|220398.047|121.826 +637144.261|220401.665|122.064 +637132.606|220412.571|121.939 +637128.899|220416.046|122.423 +637125.101|220419.603|122.560 +637121.267|220423.190|122.566 +637117.433|220426.778|122.582 +637113.775|220430.204|122.893 +637109.934|220433.797|122.908 +637106.213|220437.281|122.990 +637102.482|220440.780|123.243 +637095.030|220447.754|123.222 +637087.599|220454.707|123.335 +637080.296|220461.540|123.377 +637062.203|220478.478|123.898 +637058.646|220481.809|123.941 +637259.677|220291.111|112.429 +637263.904|220287.146|112.106 +637276.481|220275.335|110.749 +637332.680|220222.580|106.287 +637337.060|220218.471|105.949 +637345.853|220210.211|104.982 +637390.436|220168.365|101.511 +637445.206|220116.951|98.033 +637455.271|220107.588|102.160 +637459.693|220103.412|100.721 +637469.191|220094.521|101.587 +637478.886|220085.462|103.513 +637483.660|220080.994|104.041 +637488.494|220076.480|104.995 +637493.462|220071.840|106.220 +637498.229|220067.381|106.817 +637507.788|220058.432|107.595 +637527.063|220040.388|109.588 +637536.579|220031.467|109.728 +637541.334|220027.001|109.469 +637550.792|220018.122|108.966 +637555.605|220013.611|109.173 +637560.415|220009.103|109.393 +637565.261|220004.568|109.887 +637570.104|220000.029|110.036 +637579.647|219991.071|109.698 +637589.264|219982.049|109.612 +637594.113|219977.502|109.545 +637598.993|219972.927|109.743 +637608.704|219963.828|110.198 +637613.694|219959.162|110.978 +637618.604|219954.568|111.520 +637623.490|219949.990|111.929 +637628.412|219945.382|112.234 +637633.359|219940.752|112.788 +637638.245|219936.180|113.264 +637643.150|219931.583|113.523 +637648.033|219927.005|113.611 +637652.961|219922.385|113.706 +637657.865|219917.791|114.053 +637672.526|219904.039|113.816 +637677.415|219899.451|113.642 +637682.240|219894.919|113.368 +637687.181|219890.283|113.255 +637692.064|219885.702|113.078 +637701.885|219876.485|112.865 +637706.792|219871.876|112.517 +637711.687|219867.277|112.014 +637716.500|219862.747|111.188 +637721.462|219858.090|110.935 +637726.354|219853.490|110.457 +637741.027|219839.695|108.448 +637745.907|219835.096|107.302 +637750.854|219830.451|106.906 +637755.716|219825.863|105.528 +637760.656|219821.224|105.046 +637765.612|219816.570|104.800 +637770.605|219811.882|104.403 +637775.592|219807.207|104.583 +637780.624|219802.503|105.345 +637785.699|219797.755|106.125 +637790.719|219793.055|106.857 +637795.785|219788.315|107.582 +637800.844|219783.578|108.302 +637805.852|219778.891|109.009 +637810.945|219774.123|109.594 +637815.929|219769.454|110.030 +637820.952|219764.745|110.402 +637825.923|219760.072|109.978 +637830.922|219755.381|109.990 +637835.976|219750.642|110.176 +637840.987|219745.945|110.466 +637846.001|219741.245|110.819 +637851.063|219736.499|111.258 +637856.062|219731.814|111.402 +637861.103|219727.084|111.517 +637866.142|219722.356|111.615 +637871.150|219717.665|112.078 +637876.200|219712.932|112.462 +637881.254|219708.198|112.935 +637886.249|219703.513|113.304 +637891.291|219698.789|113.614 +637896.329|219694.065|113.938 +637901.361|219689.349|114.093 +637906.424|219684.591|113.989 +637911.383|219679.931|113.657 +637916.443|219675.179|113.416 +637921.451|219670.473|113.093 +637926.459|219665.767|112.731 +637931.461|219661.064|112.282 +637936.511|219656.315|111.807 +637941.513|219651.612|111.264 +637946.512|219646.909|110.637 +637951.559|219642.157|110.012 +637956.512|219637.497|109.329 +637961.563|219632.745|108.716 +637966.625|219627.990|108.424 +637971.603|219623.320|108.616 +637976.690|219618.562|109.375 +637981.774|219613.804|110.140 +637986.754|219609.141|110.640 +637991.829|219604.386|111.222 +637996.901|219599.637|111.807 +638001.879|219594.977|112.282 +638006.944|219590.228|112.593 +638012.013|219585.479|113.105 +638017.030|219580.776|113.422 +638022.044|219576.076|113.767 +638027.107|219571.330|114.130 +638032.118|219566.627|114.081 +638037.129|219561.921|113.837 +638042.182|219557.176|113.758 +638047.193|219552.472|113.752 +638052.204|219547.763|113.258 +638057.261|219543.005|112.749 +638062.275|219538.296|112.484 +638067.289|219533.590|112.334 +638072.348|219528.838|112.313 +638077.362|219524.132|112.310 +638082.376|219519.426|112.307 +638087.393|219514.717|112.203 +638092.404|219510.029|112.913 +638097.461|219505.295|113.617 +638102.420|219500.650|114.203 +638107.431|219495.956|114.663 +638112.485|219491.223|115.205 +638117.441|219486.587|115.971 +638122.442|219481.905|116.711 +638127.447|219477.214|117.147 +638132.412|219472.557|117.196 +638137.414|219467.878|117.900 +638142.422|219463.178|118.080 +638142.581|219459.100|118.189 +638137.524|219463.827|117.921 +638132.467|219468.549|117.464 +638127.459|219473.230|117.120 +638122.400|219477.961|116.946 +638117.300|219482.716|116.150 +638112.293|219487.385|115.388 +638107.236|219492.104|114.834 +638102.179|219496.828|114.300 +638097.120|219501.552|113.803 +638092.060|219506.268|112.983 +638087.000|219510.989|112.237 +638081.983|219515.680|112.136 +638076.917|219520.423|112.243 +638071.855|219525.159|112.221 +638066.789|219529.896|112.203 +638061.726|219534.636|112.252 +638056.660|219539.375|112.417 +638051.646|219544.075|112.837 +638046.587|219548.821|113.468 +638041.527|219553.558|113.639 +638036.516|219558.245|113.666 +638031.456|219562.982|113.907 +638026.442|219567.676|114.011 +638021.425|219572.364|113.727 +638016.360|219577.097|113.392 +638011.340|219581.788|113.078 +638006.316|219586.476|112.663 +638001.296|219591.170|112.292 +637996.221|219595.907|111.786 +637991.241|219600.555|111.234 +637986.212|219605.252|110.749 +637981.180|219609.949|110.185 +637976.144|219614.649|109.542 +637971.100|219619.349|108.686 +637966.107|219624.009|108.027 +637961.096|219628.706|108.463 +637956.131|219633.357|108.881 +637951.129|219638.051|109.631 +637946.173|219642.700|110.347 +637941.168|219647.390|110.905 +637936.261|219651.993|111.469 +637931.256|219656.684|112.036 +637926.297|219661.332|112.465 +637921.338|219665.980|112.895 +637916.373|219670.628|113.200 +637911.408|219675.280|113.453 +637906.491|219679.882|113.767 +637901.523|219684.530|113.941 +637896.546|219689.185|113.983 +637891.602|219693.802|113.697 +637886.609|219698.463|113.456 +637881.659|219703.087|113.151 +637876.703|219707.710|112.721 +637871.744|219712.340|112.304 +637866.736|219717.013|111.917 +637861.777|219721.643|111.554 +637856.882|219726.218|111.569 +637851.941|219730.839|111.581 +637846.991|219735.466|111.475 +637842.008|219740.111|110.853 +637837.088|219744.704|110.560 +637832.126|219749.337|110.359 +637827.158|219753.979|110.067 +637822.244|219758.569|109.942 +637817.331|219763.160|109.820 +637812.369|219767.796|109.762 +637807.422|219772.414|109.201 +637802.469|219777.031|108.597 +637797.501|219781.661|107.854 +637792.532|219786.294|107.137 +637787.555|219790.933|106.354 +637782.593|219795.560|105.824 +637777.600|219800.211|104.925 +637772.577|219804.872|103.102 +637762.878|219813.967|104.528 +637757.977|219818.554|104.931 +637753.131|219823.093|105.406 +637743.453|219832.170|107.098 +637738.641|219836.687|107.945 +637733.831|219841.198|108.835 +637729.012|219845.718|109.625 +637724.178|219850.247|110.252 +637714.464|219859.343|110.990 +637709.669|219863.835|111.542 +637704.869|219868.331|112.042 +637700.062|219872.833|112.465 +637695.197|219877.387|112.822 +637690.366|219881.907|113.029 +637685.514|219886.442|113.047 +637680.671|219890.972|113.172 +637675.867|219895.462|113.255 +637671.021|219899.997|113.380 +637666.174|219904.529|113.526 +637661.364|219909.028|113.602 +637632.265|219936.210|112.731 +637627.385|219940.764|112.359 +637622.505|219945.321|111.999 +637617.659|219949.844|111.533 +637612.767|219954.401|110.734 +637607.878|219958.967|110.399 +637602.986|219963.523|109.673 +637593.367|219972.515|109.625 +637564.749|219999.271|109.963 +637559.893|220003.800|109.384 +637555.081|220008.293|109.173 +637550.304|220012.752|108.875 +637545.540|220017.202|108.695 +637540.871|220021.576|109.219 +637536.140|220026.005|109.655 +637521.946|220039.266|109.372 +637507.614|220052.635|108.018 +637502.813|220057.113|107.473 +637488.390|220070.554|105.562 +637483.532|220075.074|104.437 +637478.737|220079.543|103.769 +637473.891|220084.054|102.803 +637469.121|220088.498|102.038 +637464.183|220093.085|100.569 +637459.510|220097.453|100.459 +637454.883|220101.781|100.663 +637445.282|220110.718|98.725 +637404.256|220149.107|101.517 +637395.021|220157.724|100.773 +637390.455|220161.994|100.993 +637381.646|220170.248|102.157 +637377.104|220174.494|102.294 +637372.731|220178.594|103.062 +637368.302|220182.742|103.565 +637359.523|220190.963|104.464 +637346.195|220203.429|105.077 +637341.766|220207.568|105.126 +637328.723|220219.782|106.601 +637252.048|220291.538|112.898 +637219.510|220322.021|117.330 +637199.189|220341.034|118.458 +637179.264|220359.691|119.811 +637159.693|220378.013|121.210 +637140.314|220396.148|121.966 +637136.370|220399.833|121.890 +637132.584|220403.381|122.231 +637128.747|220406.966|122.192 +637124.958|220410.511|122.344 +637117.448|220417.542|122.743 +637106.152|220428.107|123.011 +637098.709|220435.068|123.173 +637094.987|220438.546|123.072 +637091.253|220442.039|123.130 +637080.366|220452.226|123.578 +637062.453|220468.980|124.093 +637339.797|220206.474|105.260 +637348.715|220198.104|104.995 +637375.385|220173.037|102.520 +637407.350|220143.042|101.968 +637439.595|220112.784|100.426 +637443.984|220108.639|98.746 +637448.909|220104.052|100.310 +637458.279|220095.271|100.313 +637467.911|220086.273|101.727 +637472.729|220081.771|102.498 +637482.425|220072.715|104.202 +637487.351|220068.122|105.443 +637492.145|220063.635|105.882 +637506.663|220050.069|107.912 +637516.359|220041.004|109.113 +637521.126|220036.538|109.198 +637525.923|220032.046|109.530 +637540.191|220018.668|109.067 +637544.918|220014.230|108.631 +637549.725|220009.725|108.789 +637554.532|220005.226|108.960 +637578.651|219982.628|109.366 +637583.464|219978.111|109.000 +637593.171|219969.019|109.292 +637598.009|219964.490|109.545 +637602.892|219959.918|109.801 +637607.838|219955.300|110.600 +637617.635|219946.132|111.533 +637622.554|219941.526|111.813 +637627.455|219936.945|112.359 +637632.384|219932.333|112.788 +637637.243|219927.786|113.029 +637642.138|219923.201|113.221 +637656.774|219909.488|113.477 +637661.672|219904.895|113.358 +637666.525|219900.347|113.246 +637671.420|219895.757|113.133 +637676.321|219891.161|113.099 +637681.219|219886.570|113.032 +637686.117|219881.980|113.005 +637690.991|219877.408|112.740 +637695.853|219872.842|112.389 +637700.714|219868.282|112.026 +637705.618|219863.677|111.627 +637710.498|219859.093|110.993 +637725.202|219845.291|109.774 +637730.115|219840.671|109.003 +637734.922|219836.150|108.119 +637739.820|219831.542|107.168 +637759.419|219813.123|104.510 +637764.424|219808.429|104.263 +637774.327|219799.135|103.660 +637779.408|219794.402|105.089 +637784.440|219789.702|105.915 +637789.469|219785.008|106.708 +637794.538|219780.274|107.491 +637799.561|219775.583|108.335 +637804.624|219770.856|109.140 +637809.665|219766.144|109.679 +637814.670|219761.456|109.698 +637819.684|219756.765|109.859 +637824.646|219752.117|110.027 +637829.709|219747.380|110.295 +637834.720|219742.692|110.509 +637839.752|219737.989|111.106 +637844.818|219733.253|111.527 +637849.814|219728.574|111.645 +637854.852|219723.856|111.664 +637859.890|219719.137|111.655 +637864.898|219714.453|112.042 +637869.946|219709.731|112.307 +637874.996|219705.007|112.712 +637880.001|219700.325|113.157 +637885.094|219695.561|113.483 +637890.133|219690.849|113.694 +637895.122|219686.179|113.928 +637900.191|219681.427|113.867 +637905.208|219676.724|113.730 +637910.222|219672.024|113.450 +637915.230|219667.327|113.102 +637920.244|219662.627|112.834 +637925.297|219657.885|112.414 +637930.302|219653.188|111.911 +637935.307|219648.491|111.438 +637940.355|219643.751|110.813 +637945.356|219639.051|110.140 +637950.358|219634.354|109.381 +637955.409|219629.611|108.768 +637960.423|219624.908|108.323 +637965.437|219620.205|107.976 +637970.527|219615.450|108.759 +637975.617|219610.699|109.667 +637980.652|219605.995|110.277 +637985.681|219601.292|110.801 +637990.759|219596.550|111.310 +637995.786|219591.850|111.935 +638000.858|219587.107|112.313 +638005.929|219582.367|112.764 +638010.949|219577.670|113.069 +638015.966|219572.973|113.450 +638021.032|219568.234|113.614 +638026.049|219563.543|113.919 +638031.109|219558.800|113.733 +638036.169|219554.057|113.584 +638046.191|219544.657|113.014 +638051.250|219539.909|112.490 +638056.264|219535.205|112.225 +638061.281|219530.505|112.176 +638066.298|219525.805|112.112 +638071.315|219521.108|112.075 +638076.332|219516.408|112.124 +638081.398|219511.660|111.926 +638086.366|219507.014|112.292 +638091.426|219502.287|113.035 +638096.434|219497.611|113.931 +638101.399|219492.969|114.364 +638106.410|219488.288|114.959 +638111.418|219483.606|115.462 +638116.426|219478.930|116.190 +638121.427|219474.258|116.964 +638126.387|219469.622|117.421 +638131.398|219464.934|117.714 +638136.363|219460.285|117.869 +638135.168|219457.024|118.043 +638130.059|219461.803|117.882 +638125.055|219466.476|117.217 +638119.946|219471.252|117.025 +638114.893|219475.964|116.175 +638109.839|219480.683|115.522 +638104.779|219485.407|115.023 +638099.674|219490.171|114.346 +638094.611|219494.899|113.922 +638089.551|219499.617|113.023 +638084.492|219504.338|112.243 +638079.380|219509.112|111.655 +638074.357|219513.815|111.981 +638069.246|219518.597|111.883 +638064.177|219523.343|111.993 +638059.111|219528.082|112.072 +638053.999|219532.871|112.206 +638048.934|219537.613|112.334 +638043.871|219542.359|112.770 +638038.763|219547.148|113.383 +638033.657|219551.930|113.526 +638028.594|219556.670|113.575 +638023.532|219561.406|113.663 +638018.417|219566.188|113.471 +638013.351|219570.925|113.249 +638008.282|219575.662|112.944 +638003.165|219580.444|112.578 +637998.093|219585.184|112.218 +637993.018|219589.923|111.667 +637987.940|219594.663|111.133 +637982.862|219599.406|110.624 +637977.784|219604.148|110.118 +637972.697|219608.894|109.448 +637967.653|219613.600|108.579 +637962.562|219618.349|107.906 +637957.497|219623.095|108.186 +637952.486|219627.795|108.692 +637947.423|219632.537|109.088 +637942.421|219637.234|109.844 +637937.422|219641.925|110.667 +637932.424|219646.619|111.405 +637927.367|219651.359|111.847 +637922.362|219656.053|112.371 +637917.400|219660.701|112.782 +637912.337|219665.444|113.054 +637907.372|219670.095|113.364 +637902.358|219674.795|113.624 +637897.390|219679.449|113.797 +637892.416|219684.107|113.916 +637887.377|219688.819|113.624 +637882.388|219693.485|113.422 +637877.392|219698.158|113.112 +637872.387|219702.837|112.666 +637867.376|219707.515|112.206 +637862.380|219712.191|111.981 +637857.385|219716.864|111.831 +637852.438|219721.494|111.734 +637847.448|219726.166|111.752 +637842.495|219730.799|111.591 +637837.539|219735.435|111.408 +637832.513|219740.129|110.908 +637827.584|219744.738|110.438 +637822.613|219749.386|110.109 +637817.636|219754.037|109.762 +637812.716|219758.637|109.564 +637807.739|219763.294|109.210 +637802.874|219767.845|109.213 +637797.863|219772.523|108.457 +637792.892|219777.162|107.662 +637787.915|219781.807|106.854 +637782.983|219786.410|106.016 +637778.027|219791.040|105.592 +637763.189|219804.905|104.239 +637758.319|219809.468|104.385 +637753.451|219814.028|104.595 +637743.795|219823.093|105.943 +637738.982|219827.613|106.836 +637734.148|219832.151|107.436 +637729.344|219836.665|108.399 +637724.565|219841.152|109.103 +637719.691|219845.730|109.814 +637714.909|219850.220|110.460 +637705.219|219859.300|111.008 +637700.425|219863.799|111.572 +637695.600|219868.319|111.813 +637690.784|219872.836|112.164 +637685.959|219877.356|112.465 +637681.140|219881.877|112.798 +637676.303|219886.406|112.999 +637671.490|219890.911|112.987 +637666.638|219895.455|113.069 +637661.831|219899.957|113.124 +637657.012|219904.468|113.127 +637652.205|219908.970|113.243 +637647.383|219913.484|113.230 +637642.604|219917.959|113.188 +637637.752|219922.497|112.959 +637632.948|219926.990|112.767 +637628.132|219931.492|112.490 +637623.310|219936.000|112.203 +637618.388|219940.593|111.484 +637613.569|219945.095|110.859 +637608.744|219949.606|110.618 +637599.042|219958.665|109.420 +637594.159|219963.228|108.783 +637589.395|219967.684|108.771 +637584.579|219972.192|108.725 +637570.415|219985.466|109.433 +637565.663|219989.916|109.582 +637556.065|219998.890|108.902 +637551.307|220003.340|108.710 +637546.555|220007.787|108.597 +637532.403|220021.039|109.119 +637508.809|220043.107|108.597 +637503.978|220047.612|107.808 +637494.352|220056.582|105.946 +637489.640|220060.990|105.699 +637479.993|220069.981|103.891 +637475.171|220074.471|102.724 +637470.443|220078.884|102.184 +637465.682|220083.325|101.486 +637460.821|220087.852|100.182 +637456.194|220092.183|100.350 +637451.625|220096.465|100.593 +637446.919|220100.864|100.325 +637442.155|220105.305|99.435 +637303.876|220234.839|108.034 +637299.591|220238.853|108.424 +637211.951|220321.015|117.574 +637171.644|220358.728|119.659 +637148.141|220380.728|121.436 +637144.252|220384.365|121.533 +637124.876|220402.488|122.274 +637121.014|220406.094|122.143 +637117.262|220409.605|122.451 +637109.712|220416.664|122.722 +637105.954|220420.182|122.826 +637102.296|220423.605|123.142 +637080.058|220444.392|123.499 +637072.883|220451.101|123.810 +637058.518|220464.530|124.103 +637236.850|220295.220|113.962 +637299.764|220236.128|108.280 +637347.807|220191.024|104.824 +637378.927|220161.796|102.005 +637388.035|220153.262|102.239 +637433.843|220110.273|100.724 +637442.749|220101.869|98.128 +637447.891|220097.099|101.023 +637452.506|220092.759|100.444 +637457.148|220088.394|100.060 +637461.936|220083.914|100.593 +637466.774|220079.390|101.459 +637476.442|220070.350|102.931 +637481.325|220065.787|103.876 +637491.149|220056.610|105.924 +637495.931|220052.129|106.324 +637515.347|220033.966|109.122 +637524.960|220024.956|109.554 +637529.645|220020.552|109.125 +637543.879|220007.180|108.165 +637553.566|219998.100|108.695 +637558.366|219993.601|108.860 +637563.243|219989.035|109.237 +637572.829|219980.031|108.844 +637577.639|219975.514|108.408 +637587.304|219966.443|108.357 +637606.985|219948.021|110.585 +637611.868|219943.446|110.911 +637616.873|219938.761|111.487 +637621.801|219934.156|112.246 +637626.706|219929.557|112.453 +637631.607|219924.963|112.648 +637636.502|219920.373|112.810 +637641.443|219915.740|112.993 +637646.320|219911.168|113.044 +637651.236|219906.556|113.032 +637656.146|219901.948|113.011 +637661.008|219897.388|112.980 +637665.912|219892.785|112.947 +637675.696|219883.602|112.676 +637680.573|219879.024|112.404 +637685.444|219874.446|112.118 +637690.363|219869.825|111.837 +637700.147|219860.638|111.234 +637705.006|219856.072|110.890 +637714.805|219846.864|110.012 +637719.685|219842.274|109.393 +637724.562|219837.687|108.713 +637729.411|219833.118|107.762 +637734.337|219828.488|107.104 +637744.063|219819.331|105.479 +637749.013|219814.680|105.117 +637753.932|219810.053|104.385 +637758.892|219805.396|104.184 +637763.851|219800.739|103.977 +637768.737|219796.136|102.818 +637778.963|219786.599|105.888 +637783.967|219781.917|106.418 +637789.036|219777.178|107.195 +637794.062|219772.481|108.104 +637799.080|219767.790|108.936 +637804.078|219763.102|108.875 +637809.098|219758.396|109.173 +637814.118|219753.693|109.478 +637819.102|219749.029|109.966 +637824.125|219744.326|110.402 +637829.151|219739.623|110.896 +637834.116|219734.972|111.258 +637839.173|219730.235|111.566 +637844.175|219725.547|111.773 +637849.164|219720.869|111.819 +637854.151|219716.190|111.834 +637859.147|219711.511|112.017 +637864.188|219706.787|112.215 +637869.190|219702.102|112.602 +637874.192|219697.417|113.041 +637879.230|219692.696|113.285 +637884.271|219687.975|113.621 +637889.261|219683.299|113.938 +637894.275|219678.593|113.776 +637899.292|219673.887|113.669 +637904.303|219669.184|113.407 +637909.359|219664.435|113.099 +637914.364|219659.732|112.752 +637919.366|219655.032|112.292 +637924.371|219650.332|111.874 +637929.376|219645.629|111.438 +637934.420|219640.886|110.746 +637939.419|219636.186|110.067 +637944.460|219631.440|109.268 +637949.462|219626.737|108.646 +637954.516|219621.988|108.146 +637959.530|219617.282|107.896 +637964.562|219612.570|108.229 +637969.649|219607.815|109.082 +637974.684|219603.106|109.826 +637979.762|219598.354|110.435 +637984.788|219593.648|110.990 +637989.815|219588.945|111.469 +637994.883|219584.199|111.923 +637999.952|219579.453|112.429 +638004.969|219574.753|112.679 +638009.986|219570.056|113.005 +638015.049|219565.314|113.337 +638020.063|219560.614|113.480 +638025.123|219555.871|113.639 +638030.179|219551.125|113.425 +638035.187|219546.422|113.316 +638040.241|219541.673|112.648 +638045.297|219536.922|112.353 +638050.311|219532.218|112.191 +638055.371|219527.473|112.121 +638060.431|219522.724|112.011 +638065.445|219518.018|111.911 +638070.507|219513.272|111.883 +638075.570|219508.520|111.770 +638080.584|219503.823|111.999 +638085.641|219499.090|112.535 +638090.694|219494.365|113.410 +638095.702|219489.684|114.248 +638100.756|219484.953|114.706 +638105.809|219480.223|115.294 +638110.817|219475.538|115.812 +638115.819|219470.859|116.516 +638120.870|219466.132|117.062 +638125.829|219461.486|117.397 +638130.879|219456.762|117.912 +638122.272|219461.078|117.214 +638117.307|219465.711|116.854 +638112.296|219470.380|116.284 +638107.242|219475.093|115.586 +638102.277|219479.723|114.995 +638097.217|219484.441|114.504 +638092.203|219489.117|113.968 +638087.192|219493.783|113.005 +638082.178|219498.453|112.194 +638077.113|219503.177|111.630 +638072.092|219507.871|111.697 +638067.072|219512.562|111.661 +638062.004|219517.301|111.804 +638056.983|219521.992|111.868 +638051.966|219526.689|112.081 +638046.901|219531.426|112.246 +638041.881|219536.117|112.350 +638036.818|219540.853|112.538 +638031.758|219545.590|113.060 +638026.744|219550.284|113.313 +638021.681|219555.018|113.389 +638016.616|219559.748|113.236 +638011.596|219564.436|113.096 +638006.527|219569.169|112.859 +638001.458|219573.900|112.523 +637996.435|219578.591|112.292 +637991.360|219583.324|111.697 +637986.282|219588.058|111.173 +637981.253|219592.752|110.810 +637976.172|219597.491|110.155 +637971.088|219602.231|109.618 +637966.040|219606.928|108.661 +637960.950|219611.674|107.957 +637955.872|219616.417|107.790 +637950.809|219621.156|108.238 +637945.743|219625.896|108.539 +637940.742|219630.587|109.286 +637935.743|219635.275|110.182 +637930.692|219640.008|110.874 +637925.639|219644.742|111.426 +637920.631|219649.430|111.923 +637915.571|219654.166|112.285 +637910.563|219658.854|112.740 +637905.552|219663.545|113.124 +637900.542|219668.236|113.471 +637895.476|219672.975|113.678 +637890.453|219677.672|113.788 +637885.420|219682.375|113.706 +637880.379|219687.085|113.456 +637875.338|219691.794|113.249 +637870.287|219696.506|112.910 +637865.233|219701.224|112.511 +637860.226|219705.900|112.157 +637855.181|219710.612|112.048 +637850.134|219715.327|111.892 +637845.141|219719.994|111.859 +637840.093|219724.709|111.786 +637835.086|219729.388|111.533 +637830.069|219734.073|111.194 +637825.036|219738.764|110.667 +637820.007|219743.457|110.210 +637814.975|219748.154|109.753 +637809.946|219752.848|109.366 +637804.910|219757.545|108.978 +637799.878|219762.245|108.597 +637794.895|219766.897|108.305 +637789.890|219771.563|107.768 +637779.840|219780.930|106.238 +637764.728|219795.011|103.788 +637759.809|219799.614|103.955 +637754.874|219804.226|103.931 +637749.949|219808.843|104.635 +637745.060|219813.412|104.638 +637740.186|219817.981|105.409 +637735.330|219822.541|106.354 +637725.616|219831.642|107.710 +637715.988|219840.677|109.457 +637711.138|219845.218|109.957 +637696.538|219858.885|110.929 +637691.732|219863.387|111.426 +637686.916|219867.895|111.822 +637682.073|219872.425|111.950 +637677.235|219876.951|112.145 +637672.410|219881.468|112.490 +637657.923|219895.020|113.038 +637653.043|219899.576|112.947 +637648.221|219904.087|112.935 +637643.390|219908.601|112.880 +637638.556|219913.116|112.840 +637633.710|219917.645|112.694 +637628.903|219922.135|112.478 +637624.054|219926.664|112.380 +637619.223|219931.175|112.005 +637609.509|219940.234|110.960 +637585.262|219962.844|108.009 +637580.461|219967.334|108.125 +637566.285|219980.589|108.466 +637561.622|219984.957|108.945 +637556.812|219989.450|108.707 +637552.106|219993.842|108.570 +637547.284|219998.347|108.287 +637480.828|220060.423|103.193 +637471.248|220069.356|101.587 +637466.573|220073.721|101.112 +637461.790|220078.180|100.270 +637457.115|220082.554|100.136 +637452.521|220086.852|100.231 +637447.992|220091.098|100.737 +637434.285|220103.939|101.590 +637388.766|220146.535|101.874 +637379.823|220154.908|102.267 +637370.850|220163.308|102.553 +637366.412|220167.469|102.971 +637340.071|220192.161|105.467 +637292.339|220236.872|108.439 +637217.267|220307.244|115.666 +637173.062|220348.691|119.735 +637161.138|220359.862|120.247 +637126.165|220392.631|122.106 +637122.279|220396.270|122.283 +637118.402|220399.900|122.301 +637114.570|220403.485|122.295 +637106.981|220410.596|122.618 +637099.492|220417.609|122.972 +637095.725|220421.139|123.072 +637088.239|220428.146|123.094 +637084.462|220431.679|122.996 +637080.844|220435.071|123.310 +637069.814|220445.401|123.450 +637062.559|220452.192|123.514 +637058.963|220455.563|123.773 +637044.829|220468.804|124.471 +637244.684|220279.023|112.490 +637248.878|220275.088|112.237 +637282.452|220243.583|109.405 +637312.420|220215.456|106.836 +637325.499|220203.188|105.979 +637378.479|220153.487|102.352 +637433.368|220102.068|101.898 +637451.689|220084.883|100.161 +637456.356|220080.515|100.212 +637461.034|220076.135|100.365 +637465.789|220071.691|100.703 +637480.246|220058.201|103.129 +637490.009|220049.102|105.418 +637499.759|220040.013|107.442 +637504.673|220035.432|108.448 +637509.461|220030.958|108.972 +637533.150|220008.762|108.165 +637537.890|220004.318|107.787 +637542.663|219999.847|107.656 +637552.346|219990.794|108.500 +637557.138|219986.310|108.570 +637566.760|219977.297|108.381 +637576.292|219968.367|107.918 +637581.150|219963.816|107.878 +637586.015|219959.268|108.277 +637590.968|219954.645|109.045 +637595.851|219950.085|109.661 +637600.834|219945.431|110.344 +637610.606|219936.296|110.993 +637615.492|219931.727|111.383 +637620.466|219927.085|112.115 +637625.325|219922.540|112.322 +637630.238|219917.944|112.615 +637635.130|219913.366|112.734 +637640.016|219908.793|112.822 +637644.945|219904.179|112.892 +637649.816|219899.619|112.913 +637669.408|219881.264|112.356 +637674.288|219876.689|112.097 +637679.177|219872.111|111.926 +637688.973|219862.927|111.344 +637693.871|219858.334|110.835 +637713.473|219839.954|109.494 +637718.405|219835.327|108.856 +637723.254|219830.768|107.881 +637728.134|219826.186|107.214 +637733.029|219821.584|106.162 +637737.906|219817.006|105.464 +637742.816|219812.391|104.586 +637757.651|219798.486|103.855 +637767.670|219789.110|104.038 +637772.653|219784.459|104.787 +637777.771|219779.689|106.086 +637787.820|219770.301|107.692 +637792.849|219765.595|107.936 +637797.845|219760.923|108.445 +637802.880|219756.210|108.890 +637807.910|219751.504|109.241 +637812.939|219746.801|109.643 +637817.965|219742.095|110.079 +637822.991|219737.395|110.524 +637828.026|219732.689|111.133 +637833.050|219727.989|111.615 +637838.054|219723.304|111.822 +637843.053|219718.622|111.990 +637848.094|219713.901|112.029 +637853.090|219709.219|112.176 +637858.077|219704.547|112.194 +637863.078|219699.865|112.484 +637868.129|219695.140|112.880 +637873.180|219690.416|113.273 +637878.166|219685.743|113.392 +637883.159|219681.071|113.688 +637888.191|219676.356|113.800 +637893.165|219671.695|113.727 +637898.179|219666.992|113.483 +637908.149|219657.635|112.785 +637913.157|219652.935|112.362 +637918.162|219648.235|111.850 +637923.173|219643.532|111.520 +637928.175|219638.835|110.935 +637933.177|219634.135|110.256 +637938.172|219629.438|109.423 +637943.174|219624.738|108.719 +637948.182|219620.035|108.158 +637953.193|219615.328|107.698 +637958.274|219610.574|108.006 +637963.309|219605.864|108.451 +637968.354|219601.155|109.436 +637973.438|219596.403|110.057 +637978.467|219591.700|110.609 +637983.493|219586.997|111.027 +637988.568|219582.251|111.530 +637993.597|219577.551|112.197 +637998.617|219572.851|112.426 +638003.683|219568.109|112.718 +638008.703|219563.409|113.011 +638013.720|219558.712|113.191 +638018.783|219553.969|113.300 +638023.797|219549.269|113.288 +638028.811|219544.569|113.020 +638034.294|219539.421|112.542 +638038.878|219535.120|112.365 +638043.895|219530.417|112.279 +638048.958|219525.668|111.975 +638053.972|219520.962|111.712 +638059.038|219516.213|111.466 +638064.055|219511.510|111.399 +638069.072|219506.807|111.444 +638074.138|219502.061|111.429 +638079.155|219497.374|112.011 +638084.169|219492.686|112.627 +638089.222|219487.967|113.605 +638094.279|219483.243|114.379 +638099.290|219478.552|114.791 +638104.346|219473.831|115.489 +638109.351|219469.149|116.117 +638114.359|219464.470|116.708 +638119.416|219459.740|117.104 +638117.526|219457.137|117.107 +638112.515|219461.816|116.705 +638107.504|219466.494|116.263 +638102.545|219471.118|115.462 +638097.534|219475.794|114.812 +638092.566|219480.433|114.437 +638087.555|219485.105|113.596 +638082.544|219489.775|112.636 +638077.576|219494.411|111.972 +638072.556|219499.096|111.594 +638067.539|219503.781|111.051 +638062.564|219508.435|111.069 +638057.544|219513.132|111.130 +638052.524|219517.832|111.325 +638047.504|219522.532|111.600 +638042.487|219527.232|111.965 +638037.516|219531.889|112.407 +638032.502|219536.580|112.444 +638027.485|219541.277|112.715 +638022.471|219545.974|113.096 +638017.454|219550.668|113.169 +638012.437|219555.359|113.075 +638007.466|219560.007|112.938 +638002.442|219564.698|112.630 +637997.422|219569.392|112.374 +637992.445|219574.040|112.060 +637987.419|219578.734|111.667 +637982.387|219583.431|111.078 +637977.357|219588.125|110.618 +637972.325|219592.825|110.118 +637967.290|219597.525|109.512 +637962.288|219602.182|108.555 +637957.247|219606.888|107.933 +637952.211|219611.592|107.585 +637947.191|219616.292|107.881 +637942.180|219620.989|108.418 +637937.224|219625.640|109.167 +637932.219|219630.334|109.865 +637927.218|219635.025|110.597 +637922.262|219639.673|111.234 +637917.254|219644.367|111.670 +637912.246|219649.061|112.209 +637907.281|219653.712|112.554 +637902.270|219658.406|112.901 +637897.259|219663.097|113.297 +637892.294|219667.748|113.617 +637887.264|219672.451|113.596 +637882.238|219677.151|113.636 +637877.252|219681.815|113.508 +637872.210|219686.527|113.282 +637867.212|219691.196|113.008 +637862.161|219695.915|112.645 +637857.156|219700.587|112.304 +637852.161|219705.257|112.206 +637847.122|219709.969|112.194 +637842.123|219714.642|112.078 +637837.122|219719.317|111.892 +637832.114|219723.996|111.685 +637827.094|219728.684|111.249 +637822.049|219733.390|110.512 +637817.020|219738.084|110.021 +637812.030|219742.738|109.515 +637807.007|219747.432|109.195 +637802.021|219752.089|108.796 +637796.979|219756.796|108.296 +637791.938|219761.502|107.851 +637786.979|219766.129|107.250 +637776.890|219775.538|105.830 +637771.873|219780.219|105.232 +637761.741|219789.650|102.934 +637756.828|219794.265|103.754 +637751.854|219798.916|103.849 +637746.946|219803.515|104.156 +637741.969|219808.170|104.239 +637737.077|219812.757|104.784 +637727.287|219821.941|106.366 +637722.443|219826.491|107.457 +637717.570|219831.063|108.213 +637712.757|219835.580|109.085 +637707.859|219840.171|109.576 +637698.090|219849.321|110.362 +637688.336|219858.453|110.822 +637683.466|219863.012|111.164 +637678.647|219867.527|111.536 +637673.767|219872.099|111.783 +637668.930|219876.625|112.029 +637664.031|219881.206|112.145 +637654.357|219890.265|112.663 +637639.855|219903.831|112.767 +637634.969|219908.397|112.688 +637630.125|219912.927|112.566 +637625.221|219917.511|112.343 +637620.408|219922.007|112.115 +637610.658|219931.108|111.094 +637605.790|219935.656|110.908 +637596.018|219944.775|109.890 +637591.184|219949.286|109.265 +637586.262|219953.880|108.750 +637581.421|219958.394|108.149 +637576.481|219962.990|106.781 +637571.750|219967.428|107.470 +637567.038|219971.842|107.927 +637552.810|219985.155|108.341 +637543.291|219994.052|107.976 +637533.748|220002.968|107.537 +637524.466|220011.655|108.360 +637519.754|220016.065|108.619 +637505.669|220029.226|108.536 +637476.750|220056.149|102.788 +637471.894|220060.670|101.715 +637467.176|220065.068|101.252 +637462.378|220069.533|100.313 +637457.709|220073.895|100.215 +637443.560|220087.087|98.551 +637439.485|220090.958|101.834 +637434.821|220095.307|101.249 +637425.665|220103.872|101.773 +637380.189|220146.373|102.002 +637371.307|220154.682|102.486 +637349.313|220175.272|104.428 +637318.686|220203.929|106.449 +637297.076|220224.143|107.561 +637275.840|220244.019|109.344 +637259.046|220259.738|110.719 +637254.846|220263.667|110.899 +637234.284|220282.921|113.346 +637226.085|220290.599|114.090 +637222.071|220294.360|114.754 +637197.754|220317.110|116.559 +637146.407|220365.135|119.963 +637127.214|220383.085|121.173 +637112.062|220397.252|122.246 +637108.337|220400.736|122.478 +637100.751|220407.822|122.435 +637093.356|220414.735|122.987 +637089.565|220418.274|122.813 +637085.889|220421.709|122.886 +637082.131|220425.217|122.874 +637060.218|220445.688|123.197 +637042.592|220462.168|124.377 +637234.485|220280.867|113.343 +637263.728|220253.368|110.024 +637400.211|220125.147|100.663 +637437.373|220090.302|101.819 +637446.087|220082.054|98.115 +637455.792|220072.990|100.237 +637465.170|220064.193|100.453 +637469.992|220059.685|101.273 +637474.839|220055.156|102.294 +637484.556|220046.076|104.284 +637499.223|220032.381|107.653 +637508.827|220023.386|108.576 +637513.585|220018.924|108.613 +637518.331|220014.468|108.600 +637523.012|220010.067|108.131 +637527.740|220005.623|107.677 +637532.440|220001.206|107.369 +637542.072|219992.178|107.790 +637546.909|219987.648|108.183 +637551.743|219983.113|108.238 +637556.507|219978.642|108.146 +637561.295|219974.143|107.890 +637580.641|219955.998|108.180 +637585.542|219951.414|108.914 +637605.171|219933.031|110.853 +637619.872|219919.263|112.045 +637649.221|219891.737|112.602 +637654.061|219887.192|112.398 +637658.993|219882.562|112.127 +637663.843|219878.009|112.029 +637673.642|219868.804|111.475 +637678.513|219864.229|111.136 +637683.426|219859.614|110.792 +637693.283|219850.357|110.432 +637698.151|219845.785|110.155 +637703.101|219841.134|109.747 +637708.008|219836.522|109.399 +637712.882|219831.935|108.695 +637717.795|219827.311|107.887 +637727.479|219818.185|105.769 +637737.309|219808.935|104.175 +637747.196|219799.650|103.873 +637767.292|219780.823|105.126 +637772.278|219776.160|106.001 +637777.286|219771.463|105.903 +637782.361|219766.723|106.750 +637787.369|219762.041|107.354 +637792.417|219757.317|107.939 +637797.470|219752.595|108.594 +637802.493|219747.892|108.887 +637807.516|219743.189|109.219 +637812.503|219738.526|109.737 +637817.532|219733.820|110.249 +637822.616|219729.065|110.920 +637827.645|219724.362|111.490 +637832.699|219719.628|111.749 +637837.710|219714.940|112.066 +637842.703|219710.262|112.161 +637847.744|219705.537|112.279 +637852.737|219700.859|112.395 +637857.775|219696.137|112.557 +637862.826|219691.410|112.956 +637867.818|219686.734|113.166 +637872.856|219682.016|113.386 +637877.889|219677.300|113.499 +637882.869|219672.634|113.566 +637887.895|219667.922|113.617 +637892.909|219663.219|113.368 +637897.920|219658.516|113.078 +637902.925|219653.819|112.648 +637907.936|219649.116|112.337 +637912.941|219644.416|111.911 +637917.943|219639.716|111.402 +637922.899|219635.061|110.862 +637927.897|219630.361|110.143 +637932.942|219625.618|109.387 +637937.895|219620.961|108.661 +637942.897|219616.258|107.973 +637947.914|219611.552|107.695 +637952.931|219606.846|107.470 +637957.969|219602.134|108.037 +637963.013|219597.421|108.966 +637968.049|219592.715|109.664 +637973.127|219587.963|110.274 +637978.156|219583.260|110.844 +637983.136|219578.603|111.338 +637988.208|219573.857|111.786 +637993.228|219569.157|112.112 +637998.248|219564.457|112.407 +638003.311|219559.715|112.700 +638008.328|219555.018|112.877 +638013.345|219550.318|113.032 +638018.356|219545.617|112.898 +638023.367|219540.914|112.767 +638028.381|219536.211|112.414 +638033.389|219531.514|112.429 +638038.403|219526.805|111.856 +638043.417|219522.099|111.484 +638048.431|219517.393|111.179 +638053.399|219512.729|110.944 +638058.465|219507.981|110.868 +638063.482|219503.278|110.841 +638068.450|219498.626|111.225 +638073.464|219493.935|111.716 +638078.478|219489.245|112.151 +638083.440|219484.609|112.983 +638088.445|219479.936|114.087 +638093.456|219475.248|114.529 +638098.418|219470.609|115.087 +638103.420|219465.933|115.931 +638108.428|219461.252|116.452 +638113.387|219456.610|116.900 +638108.379|219457.890|116.644 +638103.368|219462.559|116.117 +638098.360|219467.226|115.404 +638093.304|219471.938|114.669 +638088.290|219476.614|114.255 +638083.233|219481.323|113.316 +638078.222|219485.986|112.322 +638073.205|219490.662|111.740 +638068.185|219495.344|111.389 +638063.119|219500.065|110.783 +638058.148|219504.710|110.640 +638053.079|219509.447|110.694 +638048.059|219514.141|110.902 +638043.085|219518.792|111.179 +638038.019|219523.532|111.447 +638033.005|219528.226|111.959 +638028.040|219532.871|112.295 +638023.023|219537.565|112.514 +638018.006|219542.252|112.596 +638012.989|219546.943|112.837 +638007.972|219551.628|112.764 +638003.000|219556.273|112.657 +637997.977|219560.958|112.362 +637992.957|219565.646|112.069 +637987.980|219570.291|111.786 +637982.954|219574.979|111.362 +637977.970|219579.624|110.877 +637972.987|219584.272|110.374 +637967.954|219588.966|109.801 +637962.962|219593.614|109.116 +637957.966|219598.269|108.290 +637952.922|219602.969|107.668 +637947.947|219607.620|107.808 +637942.967|219612.274|107.723 +637938.005|219616.919|108.344 +637933.045|219621.565|109.039 +637928.089|219626.210|109.692 +637923.136|219630.852|110.493 +637918.226|219635.451|111.030 +637913.267|219640.093|111.557 +637908.305|219644.736|112.051 +637903.343|219649.381|112.471 +637898.377|219654.029|112.755 +637893.461|219658.631|113.179 +637888.493|219663.280|113.413 +637883.573|219667.885|113.703 +637878.584|219672.543|113.550 +637873.643|219677.160|113.410 +637868.699|219681.778|113.255 +637863.706|219686.441|113.063 +637858.759|219691.065|112.862 +637853.803|219695.692|112.566 +637848.808|219700.359|112.410 +637843.903|219704.940|112.273 +637838.911|219709.606|112.240 +637833.952|219714.236|112.011 +637829.032|219718.830|111.642 +637824.064|219723.469|111.292 +637819.077|219728.117|110.728 +637814.082|219732.774|110.009 +637809.141|219737.383|109.509 +637804.161|219742.031|109.146 +637799.183|219746.679|108.835 +637794.242|219751.291|108.424 +637789.277|219755.918|107.680 +637784.260|219760.593|106.967 +637779.292|219765.226|106.269 +637774.287|219769.896|105.805 +637754.384|219788.443|102.693 +637744.606|219797.602|103.833 +637739.662|219802.223|103.718 +637734.800|219806.774|104.074 +637729.942|219811.334|104.995 +637725.101|219815.866|105.616 +637720.240|219820.429|106.513 +637715.470|219824.912|107.875 +637710.626|219829.451|108.439 +637691.201|219847.641|110.182 +637686.334|219852.198|110.515 +637681.506|219856.715|110.783 +637676.608|219861.293|110.862 +637671.764|219865.826|111.018 +637652.370|219883.974|112.033 +637647.523|219888.506|112.240 +637642.674|219893.044|112.429 +637637.858|219897.546|112.505 +637632.997|219902.094|112.599 +637618.424|219915.703|111.929 +637613.553|219920.251|111.648 +637608.683|219924.799|111.399 +637603.803|219929.352|111.082 +637598.938|219933.891|110.512 +637594.007|219938.487|109.847 +637584.268|219947.573|108.829 +637579.410|219952.106|108.448 +637574.472|219956.705|107.470 +637569.522|219961.305|106.086 +637555.358|219974.576|107.674 +637550.582|219979.038|107.710 +637545.839|219983.479|107.994 +637540.971|219988.017|107.400 +637531.394|219996.963|107.070 +637521.970|220005.790|107.543 +637512.622|220014.547|108.290 +637507.882|220018.982|108.405 +637503.130|220023.423|108.104 +637498.360|220027.876|107.726 +637493.544|220032.369|107.052 +637488.704|220036.874|105.949 +637483.736|220041.498|104.669 +637478.847|220046.045|103.306 +637473.994|220050.565|102.215 +637469.127|220055.098|101.081 +637464.317|220059.581|100.350 +637459.599|220063.989|99.904 +637454.944|220068.347|100.191 +637450.196|220072.776|99.621 +637436.617|220085.517|101.791 +637427.247|220094.274|101.285 +637395.014|220124.419|100.996 +637367.902|220149.793|101.922 +637350.251|220166.341|103.961 +637341.464|220174.570|104.595 +637328.260|220186.939|105.638 +637297.774|220215.484|107.244 +637246.945|220263.103|111.594 +637209.894|220297.820|115.044 +637205.819|220301.636|115.248 +637197.702|220309.237|115.830 +637189.609|220316.815|116.336 +637185.644|220320.530|116.854 +637181.712|220324.218|117.296 +637115.738|220385.995|121.707 +637100.723|220400.047|122.359 +637096.974|220403.558|122.518 +637093.228|220407.060|122.490 +637078.409|220420.923|122.749 +637074.754|220424.339|122.728 +637071.124|220427.738|122.810 +637067.470|220431.155|122.819 +637063.827|220434.562|122.883 +637056.646|220441.280|123.027 +637046.146|220451.113|123.740 +637039.169|220457.639|123.959 +637035.722|220460.867|124.240 +637233.242|220273.972|113.139 +637279.452|220230.614|108.661 +637309.768|220202.192|106.860 +637349.358|220165.061|103.748 +637380.607|220135.742|100.740 +637403.643|220114.174|101.060 +637422.251|220096.749|101.593 +637440.759|220079.403|101.246 +637444.880|220075.477|97.942 +637449.842|220070.862|99.834 +637454.563|220066.442|99.938 +637464.012|220057.600|100.599 +637468.761|220053.153|100.971 +637473.665|220048.581|102.038 +637478.536|220044.040|103.254 +637483.455|220039.452|104.513 +637493.264|220030.302|106.961 +637498.049|220025.831|107.421 +637507.632|220016.864|108.207 +637521.796|220003.580|107.607 +637526.536|219999.130|107.226 +637536.064|219990.203|107.198 +637540.883|219985.692|107.442 +637555.276|219972.204|107.470 +637559.970|219967.794|106.860 +637564.749|219963.310|106.540 +637569.491|219958.863|106.336 +637574.539|219954.160|107.762 +637579.471|219949.554|108.719 +637599.005|219931.285|110.569 +637603.922|219926.688|111.173 +637608.796|219922.129|111.453 +637613.712|219917.526|111.719 +637618.595|219912.957|112.139 +637623.493|219908.370|112.319 +637628.336|219903.834|112.441 +637633.210|219899.265|112.453 +637638.069|219894.712|112.328 +637642.918|219890.164|112.136 +637647.770|219885.613|112.017 +637657.573|219876.427|111.789 +637662.447|219871.855|111.453 +637667.311|219867.289|111.042 +637672.200|219862.705|110.880 +637677.101|219858.111|110.856 +637681.966|219853.542|110.505 +637686.895|219848.925|110.286 +637696.734|219839.692|109.774 +637701.595|219835.132|109.420 +637706.533|219830.493|108.878 +637711.413|219825.909|108.223 +637721.118|219816.771|105.738 +637740.774|219798.312|103.605 +637745.770|219793.634|103.788 +637755.676|219784.340|103.123 +637770.818|219770.195|105.427 +637775.845|219765.495|106.220 +637780.880|219760.779|106.525 +637785.936|219756.049|107.177 +637790.950|219751.358|107.957 +637796.010|219746.630|108.722 +637801.030|219741.924|108.975 +637806.059|219737.215|109.393 +637811.095|219732.503|109.966 +637816.124|219727.797|110.451 +637821.208|219723.042|111.118 +637826.228|219718.342|111.594 +637831.245|219713.645|112.005 +637836.296|219708.911|112.270 +637841.334|219704.187|112.298 +637846.330|219699.505|112.484 +637851.368|219694.781|112.593 +637856.412|219690.056|112.810 +637861.454|219685.332|113.051 +637866.492|219680.611|113.249 +637871.479|219675.935|113.389 +637876.517|219671.217|113.617 +637881.592|219666.456|113.657 +637886.557|219661.795|113.441 +637891.571|219657.089|113.179 +637896.625|219652.340|112.770 +637901.587|219647.683|112.441 +637906.641|219642.934|112.048 +637911.645|219638.231|111.530 +637916.601|219633.574|110.990 +637921.652|219628.828|110.469 +637926.645|219624.128|109.591 +637931.649|219619.425|108.975 +637936.700|219614.676|108.311 +637941.705|219609.970|107.689 +637946.731|219605.258|107.741 +637956.835|219595.788|108.171 +637961.877|219591.075|109.061 +637966.964|219586.321|109.826 +637971.993|219581.614|110.344 +637977.068|219576.863|110.801 +637982.091|219572.160|111.252 +637987.163|219567.411|111.773 +637992.183|219562.708|111.999 +637997.252|219557.962|112.298 +638002.269|219553.262|112.526 +638007.283|219548.559|112.645 +638012.345|219543.813|112.651 +638017.405|219539.064|112.529 +638022.419|219534.358|112.398 +638027.433|219529.652|112.100 +638032.441|219524.946|111.563 +638037.504|219520.191|111.216 +638042.518|219515.482|110.883 +638047.535|219510.773|110.649 +638052.552|219506.067|110.533 +638057.569|219501.360|110.630 +638062.586|219496.660|110.826 +638067.600|219491.970|111.472 +638072.617|219487.273|111.895 +638077.582|219482.630|112.578 +638082.636|219477.909|113.569 +638087.643|219473.224|114.322 +638092.606|219468.579|114.776 +638097.610|219463.900|115.553 +638102.615|219459.219|116.239 +638099.738|219457.942|116.211 +638094.684|219462.654|115.422 +638089.628|219467.369|114.651 +638084.568|219472.093|114.242 +638079.463|219476.851|113.389 +638074.452|219481.521|112.459 +638069.340|219486.291|111.837 +638064.274|219491.019|111.371 +638059.212|219495.743|110.728 +638054.094|219500.525|110.600 +638049.028|219505.262|110.414 +638043.959|219510.005|110.542 +638038.894|219514.747|110.826 +638033.782|219519.536|111.222 +638028.716|219524.278|111.560 +638023.660|219529.021|112.121 +638018.597|219533.761|112.362 +638013.531|219538.497|112.456 +638008.468|219543.234|112.554 +638003.403|219547.971|112.520 +637998.337|219552.707|112.407 +637993.268|219557.444|112.139 +637988.199|219562.177|111.770 +637983.176|219566.871|111.490 +637978.147|219571.565|111.024 +637973.072|219576.305|110.576 +637967.994|219581.044|110.070 +637962.962|219585.741|109.585 +637957.920|219590.445|108.805 +637952.870|219595.148|107.851 +637947.834|219599.851|107.396 +637942.778|219604.560|106.400 +637937.788|219609.251|107.723 +637932.783|219613.945|108.442 +637927.775|219618.639|109.027 +637922.822|219623.287|109.759 +637917.821|219627.975|110.530 +637912.819|219632.665|111.133 +637907.863|219637.314|111.734 +637902.898|219641.962|112.078 +637897.884|219646.656|112.383 +637892.970|219651.258|112.776 +637887.962|219655.946|113.221 +637882.991|219660.594|113.422 +637878.023|219665.243|113.669 +637873.036|219669.900|113.602 +637868.089|219674.518|113.300 +637863.103|219679.178|113.264 +637858.156|219683.799|113.038 +637853.160|219688.462|112.834 +637848.204|219693.089|112.563 +637843.260|219697.707|112.478 +637838.316|219702.328|112.462 +637833.363|219706.955|112.279 +637828.447|219711.542|111.941 +637823.482|219716.175|111.658 +637818.547|219720.777|111.115 +637813.558|219725.428|110.451 +637808.623|219730.034|109.975 +637803.667|219734.649|109.244 +637798.741|219739.248|108.994 +637793.809|219743.851|108.664 +637788.847|219748.474|107.957 +637783.876|219753.107|107.171 +637778.954|219757.692|106.446 +637773.982|219762.325|105.744 +637769.047|219766.936|105.549 +637764.098|219771.554|105.226 +637749.315|219785.337|103.416 +637744.398|219789.936|103.623 +637734.605|219799.084|103.425 +637729.762|219803.622|103.980 +637720.097|219812.678|105.357 +637715.336|219817.146|106.299 +637705.792|219826.104|108.479 +637700.940|219830.646|108.966 +637696.124|219835.154|109.301 +637691.268|219839.701|109.737 +637676.821|219853.213|110.423 +637671.981|219857.739|110.588 +637667.211|219862.205|110.975 +637662.373|219866.731|111.194 +637657.558|219871.230|111.194 +637643.171|219884.687|111.828 +637638.349|219889.192|111.856 +637633.591|219893.642|112.011 +637628.772|219898.147|112.081 +637623.996|219902.612|112.124 +637619.150|219907.135|112.014 +637609.512|219916.133|111.475 +637604.705|219920.623|111.347 +637580.443|219943.248|108.850 +637575.606|219947.765|108.628 +637560.881|219961.466|105.391 +637546.695|219974.737|106.174 +637542.050|219979.096|107.186 +637537.283|219983.549|106.964 +637518.379|220001.209|107.159 +637513.750|220005.543|107.671 +637470.596|220045.737|101.590 +637465.686|220050.297|100.191 +637460.992|220054.674|99.892 +637456.343|220059.021|100.228 +637451.756|220063.306|100.328 +637447.077|220067.680|100.487 +637424.102|220089.156|101.392 +637373.608|220136.300|100.874 +637351.541|220156.959|103.672 +637325.087|220181.697|105.455 +637307.665|220197.991|106.796 +637303.294|220202.076|106.973 +637170.319|220326.443|117.312 +637166.301|220330.199|117.431 +637119.703|220373.794|120.649 +637093.615|220398.206|122.755 +637089.812|220401.754|122.509 +637082.316|220408.755|122.493 +637078.631|220412.196|122.539 +637074.910|220415.674|122.457 +637071.271|220419.072|122.499 +637060.310|220429.314|122.524 +637056.768|220432.627|122.783 +637053.174|220435.983|122.853 +637049.663|220439.265|123.042 +637046.091|220442.609|123.203 +637042.653|220445.822|123.493 +637039.160|220449.092|123.773 +637232.041|220266.349|112.651 +637260.914|220239.207|109.433 +637265.160|220235.223|109.271 +637303.763|220198.970|106.750 +637312.459|220190.804|106.260 +637316.891|220186.647|106.202 +637325.584|220178.478|105.263 +637334.347|220170.248|104.736 +637338.776|220166.091|104.489 +637378.695|220128.576|100.429 +637383.274|220124.281|100.310 +637429.591|220080.881|101.255 +637452.780|220059.124|99.786 +637457.459|220054.738|99.655 +637462.208|220050.294|100.014 +637471.952|220041.205|102.056 +637481.813|220032.012|104.714 +637505.974|220009.430|107.741 +637510.705|220004.995|107.595 +637515.402|220000.584|107.232 +637520.138|219996.140|106.808 +637524.884|219991.687|106.482 +637534.525|219982.662|106.927 +637558.278|219960.372|105.132 +637563.350|219955.650|106.695 +637568.388|219950.960|108.421 +637573.204|219946.449|108.472 +637578.102|219941.864|108.789 +637592.781|219928.130|109.835 +637597.753|219923.491|110.877 +637602.642|219918.919|111.280 +637607.531|219914.338|111.307 +637612.404|219909.775|111.652 +637617.309|219905.188|111.847 +637622.188|219900.613|111.871 +637627.065|219896.047|111.880 +637631.930|219891.484|111.831 +637636.804|219886.921|111.844 +637641.699|219882.328|111.667 +637646.542|219877.786|111.444 +637651.425|219873.208|111.161 +637656.290|219868.648|111.191 +637661.172|219864.067|110.975 +637666.049|219859.492|110.691 +637670.929|219854.917|110.457 +637675.812|219850.339|110.262 +637680.735|219845.721|109.987 +637685.611|219841.146|109.777 +637690.470|219836.586|109.387 +637695.386|219831.978|109.094 +637719.758|219809.063|104.958 +637729.579|219799.839|103.815 +637734.477|219795.243|103.352 +637744.450|219785.901|103.507 +637749.327|219781.320|102.849 +637754.399|219776.577|103.480 +637759.413|219771.901|104.598 +637764.472|219767.171|105.147 +637769.468|219762.495|105.507 +637774.470|219757.823|105.970 +637789.612|219743.680|108.241 +637794.608|219739.013|108.814 +637799.634|219734.310|109.167 +637804.676|219729.601|109.783 +637809.702|219724.901|110.195 +637814.746|219720.192|110.941 +637819.772|219715.492|111.496 +637824.792|219710.801|111.920 +637829.800|219706.116|112.225 +637834.799|219701.438|112.380 +637839.798|219696.759|112.575 +637844.833|219692.044|112.615 +637849.878|219687.325|112.822 +637854.867|219682.653|112.980 +637859.909|219677.934|113.197 +637864.941|219673.222|113.288 +637869.979|219668.510|113.459 +637875.011|219663.798|113.627 +637880.031|219659.095|113.508 +637885.045|219654.392|113.279 +637890.050|219649.698|112.810 +637895.061|219644.998|112.468 +637900.069|219640.301|112.106 +637905.126|219635.558|111.703 +637910.131|219630.861|111.271 +637915.132|219626.164|110.649 +637920.180|219621.424|109.939 +637925.127|219616.776|109.094 +637930.177|219612.034|108.387 +637935.182|219607.334|107.707 +637940.190|219602.633|107.134 +637945.265|219597.882|107.253 +637950.352|219593.127|107.790 +637955.393|219588.421|108.567 +637960.435|219583.715|109.396 +637965.513|219578.969|110.003 +637970.542|219574.266|110.432 +637975.614|219569.523|110.841 +637980.640|219564.826|111.344 +637985.663|219560.126|111.706 +637990.732|219555.386|112.048 +637995.798|219550.647|112.282 +638000.815|219545.950|112.337 +638005.878|219541.207|112.426 +638010.940|219536.467|112.343 +638015.954|219531.767|112.249 +638021.014|219527.025|112.011 +638026.598|219521.788|111.542 +638031.039|219517.618|111.106 +638036.102|219512.870|110.740 +638041.167|219508.121|110.423 +638046.184|219503.421|110.387 +638051.250|219498.681|110.527 +638056.267|219493.978|110.472 +638061.284|219489.296|111.350 +638066.298|219484.609|111.752 +638071.361|219479.878|112.362 +638076.323|219475.245|113.163 +638081.377|219470.530|114.154 +638086.391|219465.842|114.477 +638091.395|219461.166|115.212 +638096.403|219456.491|115.894 +638091.776|219456.552|115.593 +638086.766|219461.224|114.855 +638081.706|219465.946|114.282 +638076.646|219470.664|113.584 +638071.635|219475.334|112.633 +638066.573|219480.058|112.005 +638061.507|219484.785|111.475 +638056.441|219489.513|110.886 +638051.375|219494.243|110.371 +638046.306|219498.983|110.341 +638041.283|219503.677|110.234 +638036.169|219508.465|110.426 +638031.103|219513.211|110.801 +638026.086|219517.911|111.240 +638020.977|219522.696|111.670 +638015.912|219527.439|111.892 +638010.849|219532.179|112.087 +638005.783|219536.918|112.133 +638000.717|219541.655|112.136 +637995.652|219546.395|112.176 +637990.583|219551.131|111.975 +637985.514|219555.868|111.716 +637980.442|219560.608|111.344 +637975.367|219565.344|110.993 +637970.292|219570.084|110.536 +637965.214|219574.827|110.124 +637960.130|219579.569|109.530 +637955.040|219584.315|108.689 +637949.950|219589.064|107.927 +637944.905|219593.767|107.296 +637939.806|219598.522|106.424 +637934.758|219603.261|107.320 +637929.744|219607.958|107.872 +637924.700|219612.695|108.768 +637919.649|219617.435|109.503 +637914.648|219622.125|110.286 +637909.597|219626.862|110.902 +637904.589|219631.553|111.429 +637899.578|219636.247|111.825 +637894.570|219640.941|112.310 +637889.514|219645.680|112.685 +637884.500|219650.377|113.005 +637879.489|219655.071|113.398 +637874.469|219659.771|113.557 +637869.440|219664.478|113.544 +637864.404|219669.187|113.398 +637859.415|219673.850|113.300 +637854.373|219678.562|113.112 +637849.332|219683.278|112.904 +637844.385|219687.904|112.767 +637839.341|219692.620|112.630 +637834.348|219697.289|112.569 +637829.349|219701.965|112.447 +637824.290|219706.692|112.124 +637819.318|219711.335|111.703 +637814.298|219716.025|111.277 +637809.254|219720.728|110.576 +637804.267|219725.386|110.012 +637799.290|219730.037|109.682 +637794.288|219734.704|108.981 +637789.305|219739.358|108.625 +637784.245|219744.079|107.906 +637774.287|219753.363|106.156 +637769.291|219758.030|105.805 +637759.379|219767.290|104.928 +637754.384|219771.947|104.035 +637749.397|219776.598|103.330 +637744.459|219781.216|103.273 +637729.740|219794.984|103.193 +637720.029|219804.098|104.592 +637715.159|219808.657|104.854 +637691.156|219831.191|109.036 +637686.325|219835.715|109.247 +637681.463|219840.271|109.637 +637666.976|219853.841|110.469 +637662.178|219858.331|110.603 +637657.341|219862.863|110.841 +637647.758|219871.836|111.313 +637642.930|219876.351|111.252 +637638.130|219880.846|111.447 +637633.332|219885.339|111.670 +637628.516|219889.844|111.783 +637623.740|219894.315|111.810 +637618.948|219898.796|111.740 +637614.102|219903.328|111.609 +637609.366|219907.760|111.636 +637604.534|219912.274|111.271 +637599.734|219916.764|111.216 +637585.292|219930.251|110.051 +637580.406|219934.811|109.393 +637575.581|219939.316|108.863 +637570.775|219943.806|108.518 +637565.983|219948.287|108.311 +637561.030|219952.892|106.897 +637556.117|219957.464|105.443 +637551.374|219961.905|105.726 +637518.346|219992.815|106.427 +637509.059|220001.517|107.244 +637504.337|220005.936|107.482 +637499.613|220010.344|107.046 +637494.837|220014.806|106.601 +637475.653|220032.686|103.334 +637470.834|220037.169|102.133 +637465.902|220041.754|100.542 +637461.147|220046.188|99.825 +637456.456|220050.568|99.554 +637451.546|220055.131|97.911 +637438.266|220067.619|101.584 +637429.045|220076.242|101.617 +637406.021|220097.767|101.297 +637325.511|220173.135|105.223 +637299.399|220197.583|106.845 +637282.125|220213.756|107.939 +637273.591|220221.744|108.454 +637260.814|220233.711|109.445 +637243.998|220249.466|111.014 +637198.577|220292.010|114.718 +637154.566|220333.186|117.933 +637123.398|220362.343|120.082 +637100.611|220383.658|121.597 +637096.852|220387.175|121.899 +637085.621|220397.678|122.432 +637081.878|220401.168|122.243 +637078.104|220404.692|122.134 +637074.361|220408.191|122.164 +637067.019|220415.049|122.192 +637063.398|220418.432|122.320 +637059.752|220421.837|122.365 +637052.577|220428.549|122.713 +637048.919|220431.962|122.545 +637045.387|220435.266|122.853 +637041.879|220438.546|123.063 +637038.419|220441.783|123.472 +637034.877|220445.093|123.575 +637328.477|220167.652|104.793 +637363.882|220134.425|101.773 +637386.568|220113.159|101.084 +637409.633|220091.552|101.614 +637428.125|220074.209|101.410 +637437.467|220065.452|101.566 +637442.097|220061.108|101.407 +637450.854|220052.827|97.689 +637455.908|220048.124|99.639 +637460.617|220043.710|99.743 +637465.423|220039.221|100.478 +637485.040|220020.911|105.138 +637489.841|220016.422|105.699 +637494.678|220011.895|106.202 +637513.759|219994.016|106.656 +637518.504|219989.560|106.302 +637542.410|219967.141|106.107 +637551.862|219958.250|104.598 +637556.943|219953.523|106.570 +637561.963|219948.847|108.122 +637566.864|219944.257|108.421 +637571.704|219939.725|108.658 +637576.599|219935.137|108.991 +637581.540|219930.520|109.695 +637586.457|219925.923|110.231 +637591.337|219921.351|110.533 +637596.244|219916.761|111.051 +637601.151|219912.162|111.231 +637606.080|219907.547|111.597 +637610.920|219903.011|111.636 +637615.809|219898.430|111.716 +637620.692|219893.852|111.776 +637625.605|219889.244|111.700 +637630.449|219884.699|111.432 +637635.295|219880.151|111.222 +637640.181|219875.573|111.380 +637645.079|219870.977|111.249 +637649.959|219866.399|110.941 +637654.848|219861.812|110.743 +637659.737|219857.224|110.560 +637669.536|219848.022|110.006 +637679.326|219838.836|109.390 +637684.194|219834.264|109.067 +637689.126|219829.637|108.951 +637694.042|219825.025|108.652 +637698.916|219820.441|107.939 +637703.753|219815.884|106.796 +637708.596|219811.324|105.723 +637713.458|219806.749|104.842 +637733.157|219788.251|103.172 +637738.196|219783.527|103.309 +637748.099|219774.242|103.233 +637758.166|219764.833|104.800 +637763.217|219760.106|105.229 +637768.218|219755.427|105.674 +637778.295|219746.006|107.113 +637783.312|219741.315|107.970 +637788.357|219736.596|108.552 +637793.404|219731.878|109.198 +637798.394|219727.212|109.768 +637803.420|219722.509|110.210 +637808.449|219717.802|110.761 +637813.478|219713.099|111.328 +637818.501|219708.399|111.880 +637823.512|219703.708|112.225 +637828.554|219698.984|112.350 +637833.510|219694.342|112.615 +637838.548|219689.621|112.761 +637843.535|219684.948|112.804 +637848.527|219680.269|112.990 +637853.563|219675.551|113.142 +637858.601|219670.833|113.322 +637863.584|219666.163|113.447 +637868.614|219661.451|113.517 +637873.631|219656.742|113.428 +637878.645|219652.039|113.206 +637883.653|219647.339|112.825 +637888.660|219642.636|112.505 +637893.674|219637.932|112.292 +637898.670|219633.235|111.664 +637903.678|219628.532|111.325 +637908.680|219623.835|110.777 +637913.724|219619.093|110.112 +637918.720|219614.393|109.317 +637923.716|219609.696|108.494 +637928.760|219604.950|107.686 +637933.771|219600.247|107.204 +637938.779|219595.541|106.662 +637943.863|219590.783|107.235 +637948.904|219586.071|108.043 +637953.940|219581.361|108.664 +637959.027|219576.610|109.463 +637964.056|219571.903|110.036 +637969.128|219567.158|110.512 +637974.200|219562.412|110.987 +637979.223|219557.709|111.359 +637984.289|219552.966|111.618 +637989.354|219548.220|111.868 +637994.371|219543.523|112.051 +637999.382|219538.820|111.969 +638004.491|219534.032|111.959 +638009.456|219529.378|111.941 +638014.516|219524.629|111.670 +638019.575|219519.880|111.426 +638024.583|219515.180|111.164 +638029.643|219510.425|110.676 +638034.706|219505.673|110.320 +638039.723|219500.970|110.210 +638044.785|219496.225|110.234 +638049.848|219491.479|110.405 +638054.862|219486.788|110.987 +638059.925|219482.054|111.478 +638064.936|219477.363|112.023 +638069.947|219472.679|112.657 +638075.000|219467.957|113.560 +638080.057|219463.233|114.294 +638085.062|219458.551|114.949 +638082.718|219456.945|114.925 +638077.707|219461.608|114.120 +638072.690|219466.284|113.581 +638067.676|219470.950|112.670 +638062.659|219475.623|111.914 +638057.688|219480.259|111.426 +638052.619|219484.983|110.908 +638047.596|219489.662|110.320 +638042.618|219494.307|110.246 +638037.549|219499.044|110.204 +638032.526|219503.735|110.192 +638027.552|219508.386|110.518 +638022.157|219513.437|111.078 +638017.466|219517.820|111.200 +638012.446|219522.511|111.411 +638007.426|219527.204|111.694 +638002.406|219531.895|111.752 +637997.340|219536.629|111.929 +637992.317|219541.317|111.719 +637987.294|219546.008|111.655 +637982.271|219550.699|111.527 +637977.196|219555.432|111.207 +637972.167|219560.120|110.804 +637967.137|219564.811|110.457 +637962.056|219569.547|109.932 +637957.067|219574.199|109.387 +637951.977|219578.938|108.735 +637946.929|219583.638|107.866 +637941.882|219588.338|107.211 +637936.779|219593.087|106.253 +637931.771|219597.781|107.015 +637926.754|219602.475|107.543 +637921.750|219607.163|108.360 +637916.699|219611.896|109.192 +637911.743|219616.538|109.878 +637906.689|219621.272|110.582 +637901.685|219625.957|111.207 +637896.719|219630.602|111.661 +637891.660|219635.336|112.078 +637881.623|219644.723|112.676 +637876.606|219649.417|112.947 +637871.589|219654.108|113.267 +637866.605|219658.763|113.331 +637861.576|219663.463|113.383 +637856.534|219668.169|113.273 +637851.539|219672.832|113.081 +637846.500|219677.535|113.090 +637841.496|219682.205|112.825 +637836.454|219686.917|112.727 +637831.455|219691.583|112.642 +637826.457|219696.250|112.551 +637821.394|219700.971|112.231 +637816.383|219705.650|111.990 +637811.345|219710.344|111.353 +637806.312|219715.035|110.871 +637801.274|219719.729|110.316 +637796.239|219724.423|109.878 +637791.240|219729.083|109.250 +637786.232|219733.750|108.588 +637781.185|219738.453|108.061 +637776.119|219743.171|107.348 +637771.102|219747.847|106.662 +637766.060|219752.537|105.711 +637761.053|219757.204|105.287 +637756.042|219761.877|104.836 +637751.022|219766.558|104.269 +637740.911|219775.964|102.474 +637736.044|219780.530|103.318 +637731.085|219785.157|103.081 +637726.132|219789.781|102.965 +637721.230|219794.368|103.455 +637716.338|219798.946|104.068 +637711.416|219803.552|104.306 +637696.868|219817.189|107.061 +637682.326|219830.804|108.802 +637677.443|219835.370|109.042 +637672.572|219839.927|109.402 +637662.858|219849.010|109.981 +637658.082|219853.475|110.384 +637653.187|219858.050|110.566 +637648.380|219862.546|110.673 +637643.485|219867.121|110.905 +637638.703|219871.596|111.274 +637628.989|219880.663|111.185 +637624.164|219885.171|111.225 +637619.375|219889.652|111.621 +637614.553|219894.157|111.722 +637609.707|219898.683|111.648 +637604.858|219903.213|111.554 +637590.355|219916.737|110.637 +637585.454|219921.309|110.222 +637580.678|219925.765|110.060 +637566.151|219939.307|108.567 +637561.347|219943.788|108.293 +637556.473|219948.326|107.515 +637551.484|219952.956|105.897 +637546.631|219957.470|104.995 +637541.849|219961.935|105.022 +637537.198|219966.294|105.653 +637518.303|219983.951|105.891 +637508.937|219992.717|106.506 +637489.996|220010.396|105.184 +637485.229|220014.846|104.876 +637480.444|220019.305|104.123 +637475.732|220023.697|103.577 +637465.951|220032.792|100.871 +637461.190|220037.227|100.097 +637456.417|220041.680|99.597 +637451.494|220046.240|97.573 +637447.221|220050.282|99.965 +637401.400|220093.134|101.276 +637373.931|220118.786|100.145 +637343.150|220147.626|103.815 +637334.466|220155.764|104.976 +637330.055|220159.888|105.089 +637316.827|220172.254|105.272 +637303.861|220184.397|106.662 +637282.272|220204.593|107.662 +637277.968|220208.623|107.979 +637194.831|220286.441|114.428 +637100.824|220374.474|120.814 +637074.608|220399.007|121.868 +637070.899|220402.476|121.823 +637067.131|220405.996|121.771 +637063.480|220409.416|121.969 +637059.804|220412.851|121.890 +637056.207|220416.219|122.118 +637034.710|220436.336|122.816 +637245.723|220236.457|110.207 +637249.917|220232.519|109.771 +637254.154|220228.545|109.561 +637271.086|220212.646|108.040 +637275.456|220208.550|108.058 +637288.310|220196.480|106.918 +637314.450|220171.961|105.650 +637318.796|220167.880|105.449 +637332.064|220155.441|105.046 +637340.833|220147.202|104.111 +637358.441|220130.664|102.215 +637376.281|220113.912|100.395 +637390.061|220101.007|100.971 +637426.997|220066.427|101.791 +637445.389|220049.182|100.350 +637449.629|220045.161|97.771 +637459.306|220036.133|99.612 +637464.049|220031.704|100.267 +637469.014|220027.081|101.782 +637473.900|220022.533|103.129 +637478.664|220018.083|103.708 +637488.247|220009.128|104.684 +637492.999|220004.684|104.931 +637502.673|219995.649|106.372 +637516.791|219982.412|105.455 +637531.138|219968.982|105.623 +637545.406|219955.611|105.046 +637550.350|219950.996|105.952 +637555.355|219946.345|107.738 +637560.232|219941.788|108.192 +637565.078|219937.253|108.454 +637579.715|219923.573|109.792 +637584.613|219918.995|110.192 +637589.505|219914.420|110.573 +637594.388|219909.854|110.920 +637599.277|219905.282|111.338 +637604.123|219900.747|111.420 +637609.021|219896.163|111.542 +637613.858|219891.633|111.606 +637618.692|219887.101|111.219 +637623.554|219882.547|111.094 +637628.458|219877.960|111.356 +637638.206|219868.825|111.011 +637642.994|219864.335|110.731 +637647.889|219859.748|110.569 +637657.664|219850.589|110.124 +637662.535|219846.023|109.771 +637667.445|219841.414|109.369 +637672.328|219836.839|109.167 +637677.202|219832.270|108.881 +637696.770|219813.903|106.607 +637701.620|219809.343|105.577 +637706.484|219804.774|104.702 +637711.370|219800.187|104.074 +637716.314|219795.548|103.571 +637721.224|219790.942|103.248 +637726.193|219786.288|103.053 +637731.182|219781.618|103.108 +637736.166|219776.952|103.132 +637746.154|219767.607|103.526 +637751.223|219762.882|104.739 +637756.215|219758.213|104.986 +637766.344|219748.764|106.918 +637776.372|219739.385|107.653 +637781.364|219734.719|108.113 +637786.427|219729.991|108.957 +637791.469|219725.282|109.518 +637796.458|219720.616|110.088 +637801.490|219715.913|110.600 +637806.556|219711.176|110.947 +637811.537|219706.522|111.459 +637816.572|219701.819|112.173 +637821.626|219697.088|112.447 +637826.624|219692.412|112.563 +637831.620|219687.734|112.703 +637836.661|219683.015|112.840 +637841.651|219678.343|112.916 +637846.692|219673.625|113.136 +637851.731|219668.909|113.261 +637856.717|219664.243|113.334 +637861.750|219659.531|113.441 +637866.773|219654.824|113.355 +637871.790|219650.121|113.163 +637876.801|219645.421|112.846 +637886.777|219636.067|112.225 +637891.836|219631.321|111.892 +637896.796|219626.670|111.435 +637901.803|219621.970|111.014 +637906.802|219617.276|110.262 +637911.804|219612.579|109.686 +637916.848|219607.839|108.823 +637921.850|219603.142|108.085 +637926.852|219598.442|107.357 +637931.863|219593.739|106.799 +637936.889|219589.033|106.836 +637941.930|219584.324|107.451 +637947.021|219579.569|108.143 +637952.059|219574.863|108.881 +637957.097|219570.160|109.573 +637962.175|219565.414|110.067 +637967.201|219560.714|110.536 +637972.228|219556.014|110.947 +637977.299|219551.272|111.264 +637982.320|219546.572|111.517 +637987.337|219541.875|111.630 +637992.405|219537.135|111.801 +637997.419|219532.435|111.676 +638002.482|219527.692|111.591 +638007.545|219522.946|111.432 +638012.559|219518.246|111.158 +638017.622|219513.498|110.926 +638022.636|219508.801|110.810 +638027.649|219504.094|110.213 +638032.715|219499.349|110.192 +638037.781|219494.606|110.216 +638042.801|219489.903|110.195 +638047.818|219485.209|110.463 +638052.884|219480.482|111.304 +638057.901|219475.788|111.536 +638062.961|219471.060|112.136 +638067.972|219466.385|113.096 +638072.982|219461.706|113.788 +638077.990|219457.027|114.520 +638071.928|219458.633|113.840 +638066.914|219463.312|113.285 +638061.900|219467.982|112.289 +638056.929|219472.618|111.621 +638051.860|219477.351|111.283 +638046.888|219481.987|110.551 +638041.865|219486.675|110.134 +638036.842|219491.372|110.134 +638031.865|219496.023|110.003 +638026.796|219500.766|110.128 +638021.776|219505.469|110.548 +638016.805|219510.117|110.704 +638011.785|219514.817|110.957 +638006.765|219519.514|111.063 +638001.793|219524.166|111.277 +637996.773|219528.863|111.377 +637991.756|219533.560|111.588 +637986.733|219538.253|111.533 +637981.713|219542.947|111.466 +637976.736|219547.599|111.255 +637971.709|219552.293|111.039 +637966.677|219556.990|110.573 +637961.697|219561.641|110.201 +637956.661|219566.338|109.710 +637951.623|219571.038|109.088 +637946.624|219575.695|108.259 +637941.629|219580.356|107.625 +637936.581|219585.062|106.921 +637931.585|219589.725|106.382 +637926.572|219594.425|106.991 +637921.609|219599.076|107.668 +637916.653|219603.728|108.439 +637911.648|219608.419|109.207 +637906.738|219613.024|109.920 +637901.733|219617.715|110.542 +637896.774|219622.363|111.152 +637891.858|219626.969|111.618 +637886.847|219631.663|112.005 +637881.876|219636.314|112.282 +637876.904|219640.965|112.523 +637871.939|219645.613|112.913 +637866.968|219650.268|113.145 +637861.990|219654.922|113.297 +637857.007|219659.582|113.313 +637852.069|219664.197|113.307 +637847.076|219668.864|113.160 +637842.084|219673.527|113.069 +637837.088|219678.197|112.935 +637832.089|219682.866|112.782 +637827.139|219687.490|112.700 +637822.141|219692.163|112.548 +637817.182|219696.792|112.334 +637812.210|219701.435|111.959 +637807.163|219706.138|111.158 +637802.204|219710.771|111.057 +637797.168|219715.468|110.533 +637792.176|219720.125|109.945 +637787.177|219724.785|109.329 +637782.175|219729.452|108.722 +637777.158|219734.128|107.942 +637767.127|219743.479|106.564 +637752.198|219757.405|105.120 +637732.209|219776.056|103.041 +637727.302|219780.637|102.870 +637722.370|219785.249|102.968 +637717.442|219789.860|103.123 +637712.528|219794.460|103.465 +637707.627|219799.050|103.958 +637702.775|219803.595|104.467 +637688.214|219817.253|107.034 +637683.392|219821.779|107.857 +637678.543|219826.321|108.436 +637673.666|219830.886|108.713 +637668.792|219835.449|109.024 +637663.910|219840.018|109.274 +637654.208|219849.098|109.972 +637649.377|219853.622|110.304 +637644.479|219858.203|110.475 +637639.675|219862.695|110.618 +637634.783|219867.274|110.877 +637625.133|219876.305|111.322 +637615.443|219885.354|111.075 +637610.649|219889.844|111.411 +637600.987|219898.878|111.505 +637596.128|219903.417|111.365 +637591.263|219907.952|110.798 +637586.399|219912.497|110.640 +637581.601|219916.974|110.283 +637576.712|219921.540|109.975 +637571.884|219926.045|109.420 +637562.131|219935.140|108.415 +637557.345|219939.612|108.277 +637547.518|219948.765|106.506 +637537.743|219957.869|104.531 +637528.289|219966.715|105.080 +637509.360|219984.405|105.537 +637504.718|219988.749|105.979 +637476.024|220015.489|103.020 +637466.414|220024.435|101.401 +637461.571|220028.937|100.414 +637456.804|220033.375|99.618 +637451.820|220037.992|97.472 +637447.654|220041.936|100.563 +637383.207|220102.113|100.231 +637356.335|220127.238|101.989 +637343.253|220139.491|104.022 +637330.061|220151.826|105.028 +637316.827|220164.189|105.415 +637299.402|220180.474|106.250 +637295.080|220184.516|106.671 +637282.110|220196.638|107.214 +637260.738|220216.618|108.628 +637243.937|220232.330|109.996 +637239.780|220236.216|110.396 +637182.328|220289.938|115.023 +637174.177|220297.545|115.108 +637170.139|220301.316|115.108 +637158.343|220312.350|116.544 +637138.589|220330.796|117.251 +637134.632|220334.490|117.281 +637096.563|220370.073|120.436 +637070.649|220394.280|121.939 +637063.178|220401.248|121.695 +637059.502|220404.674|121.622 +637055.811|220408.115|121.497 +637052.153|220411.529|121.503 +637048.627|220414.823|121.829 +637045.049|220418.164|121.960 +637255.327|220219.288|108.988 +637263.859|220211.275|108.415 +637268.138|220207.257|108.210 +637285.283|220191.152|106.671 +637294.037|220182.943|106.644 +637302.739|220174.769|105.891 +637307.186|220170.599|105.906 +637351.257|220129.204|102.148 +637364.635|220116.634|100.755 +637373.672|220108.151|100.392 +637396.685|220086.578|100.432 +637405.911|220077.930|100.545 +637415.220|220069.210|100.944 +637438.552|220047.341|101.160 +637443.036|220043.116|100.121 +637447.769|220038.678|100.029 +637452.009|220034.655|97.445 +637457.017|220030.001|99.463 +637461.872|220025.459|100.237 +637466.749|220020.911|101.502 +637471.602|220016.379|102.306 +637485.943|220002.953|103.154 +637505.310|219984.841|105.467 +637510.010|219980.428|105.123 +637514.707|219976.017|104.769 +637524.323|219967.007|105.013 +637529.084|219962.533|104.458 +637533.854|219958.058|104.352 +637538.643|219953.572|104.394 +637553.599|219939.621|108.113 +637558.446|219935.083|108.357 +637568.202|219925.951|109.045 +637573.100|219921.373|109.792 +637578.011|219916.779|110.277 +637582.863|219912.229|110.329 +637587.761|219907.647|110.774 +637592.687|219903.033|111.082 +637597.570|219898.467|111.438 +637602.462|219893.880|111.511 +637607.317|219889.326|111.289 +637612.194|219884.754|111.267 +637621.945|219875.604|110.847 +637631.726|219866.435|110.755 +637636.624|219861.839|110.603 +637641.467|219857.294|110.387 +637646.414|219852.655|110.265 +637651.291|219848.080|109.939 +637656.149|219843.514|109.478 +637670.883|219829.689|108.719 +637675.797|219825.077|108.335 +637680.680|219820.490|107.665 +637685.544|219815.912|106.802 +637705.125|219797.499|103.614 +637715.031|219788.208|103.358 +637719.975|219783.563|102.882 +637724.970|219778.881|103.020 +637729.999|219774.169|102.980 +637740.009|219764.800|103.632 +637745.023|219760.106|104.129 +637755.103|219750.681|105.242 +637765.170|219741.269|106.406 +637775.262|219731.851|108.052 +637780.371|219727.084|108.783 +637785.412|219722.374|109.326 +637790.451|219717.665|109.890 +637800.518|219708.259|110.929 +637805.553|219703.556|111.548 +637810.580|219698.859|112.075 +637815.591|219694.174|112.395 +637820.641|219689.450|112.602 +637825.689|219684.725|112.758 +637830.681|219680.053|112.874 +637835.723|219675.335|112.965 +637840.718|219670.662|113.209 +637845.754|219665.947|113.288 +637850.789|219661.234|113.352 +637855.766|219656.574|113.246 +637860.792|219651.865|113.215 +637865.770|219647.204|113.139 +637870.781|219642.504|112.828 +637875.795|219637.804|112.545 +637880.806|219633.107|112.142 +637885.771|219628.453|111.840 +637890.779|219623.753|111.432 +637895.784|219619.059|110.896 +637900.795|219614.359|110.457 +637905.793|219609.665|109.728 +637910.795|219604.968|109.021 +637915.794|219600.271|108.213 +637920.796|219595.574|107.375 +637925.806|219590.874|106.891 +637930.808|219586.174|105.958 +637935.859|219581.459|106.881 +637940.906|219576.750|107.674 +637945.948|219572.044|108.472 +637950.986|219567.338|109.122 +637956.021|219562.634|109.728 +637961.051|219557.934|110.195 +637966.080|219553.234|110.633 +637971.103|219548.537|110.972 +637976.126|219543.840|111.228 +637981.146|219539.140|111.341 +637986.160|219534.440|111.155 +637991.180|219529.743|111.280 +637996.197|219525.046|111.146 +638001.165|219520.389|111.014 +638006.228|219515.643|110.792 +638011.199|219510.986|110.588 +638016.216|219506.286|110.323 +638021.230|219501.586|110.155 +638026.202|219496.929|109.993 +638036.242|219487.532|110.100 +638041.213|219482.874|110.027 +638046.230|219478.186|110.655 +638051.247|219473.502|111.264 +638056.218|219468.856|111.685 +638061.229|219464.178|112.563 +638066.243|219459.499|113.243 +638061.824|219459.956|112.855 +638056.804|219464.626|112.127 +638051.738|219469.341|111.374 +638046.666|219474.069|111.033 +638041.597|219478.784|110.225 +638036.525|219483.514|110.030 +638031.453|219488.251|110.045 +638026.427|219492.939|110.027 +638021.355|219497.672|109.838 +638016.283|219502.409|110.118 +638011.263|219507.097|110.310 +638006.240|219511.788|110.499 +638001.171|219516.524|110.688 +637996.148|219521.215|110.874 +637991.128|219525.906|111.002 +637986.056|219530.640|111.146 +637981.082|219535.282|111.228 +637976.059|219539.973|111.231 +637971.033|219544.660|111.075 +637966.004|219549.348|110.722 +637960.971|219554.036|110.356 +637955.939|219558.727|109.932 +637950.946|219563.375|109.372 +637945.905|219568.069|108.738 +637940.906|219572.720|107.957 +637935.901|219577.375|107.162 +637930.857|219582.075|106.613 +637925.864|219586.729|106.421 +637920.896|219591.377|106.979 +637915.888|219596.065|107.777 +637910.978|219600.664|108.552 +637906.019|219605.304|109.317 +637901.057|219609.946|109.948 +637896.098|219614.588|110.630 +637891.132|219619.230|111.082 +637886.213|219623.829|111.536 +637881.248|219628.474|111.944 +637871.354|219637.725|112.618 +637866.428|219642.331|112.862 +637861.500|219646.939|113.041 +637856.568|219651.545|113.194 +637851.581|219656.202|113.252 +637846.692|219660.768|113.316 +637841.749|219665.383|113.255 +637836.799|219670.004|113.115 +637831.843|219674.627|112.877 +637826.941|219679.202|112.825 +637822.034|219683.784|112.663 +637817.075|219688.410|112.490 +637812.158|219692.995|112.234 +637807.181|219697.637|111.792 +637802.252|219702.233|111.380 +637797.318|219706.833|110.954 +637792.316|219711.487|110.271 +637787.421|219716.053|109.750 +637782.422|219720.707|109.198 +637777.469|219725.322|108.664 +637772.507|219729.946|108.015 +637767.523|219734.582|107.095 +637762.601|219739.166|106.458 +637757.639|219743.790|105.943 +637752.649|219748.435|105.129 +637747.702|219753.050|104.882 +637742.774|219757.640|104.312 +637737.802|219762.273|103.852 +637727.848|219771.542|102.248 +637718.097|219780.655|102.718 +637713.205|219785.224|102.767 +637708.346|219789.769|103.239 +637703.464|219794.332|103.425 +637698.599|219798.882|103.821 +637693.725|219803.439|104.153 +637679.369|219816.896|106.948 +637674.532|219821.425|107.677 +637664.915|219830.426|108.732 +637660.023|219834.998|108.927 +637655.229|219839.479|109.128 +637650.346|219844.045|109.423 +637645.573|219848.510|109.865 +637640.736|219853.030|110.198 +637635.923|219857.529|110.283 +637631.067|219862.065|110.454 +637626.258|219866.560|110.618 +637611.780|219880.090|111.182 +637606.936|219884.611|111.124 +637602.102|219889.125|111.176 +637597.286|219893.627|111.374 +637592.419|219898.168|111.164 +637587.563|219902.691|110.691 +637582.680|219907.248|110.414 +637577.907|219911.701|110.259 +637568.166|219920.781|109.241 +637553.593|219934.369|108.262 +637543.958|219943.352|107.631 +637533.860|219952.706|103.641 +637529.130|219957.132|104.083 +637524.402|219961.548|104.202 +637514.914|219970.421|104.589 +637510.177|219974.847|104.711 +637495.983|219988.115|104.912 +637491.149|219992.617|104.080 +637486.177|219997.237|102.690 +637476.579|220006.186|101.688 +637471.852|220010.603|101.712 +637467.063|220015.065|101.017 +637462.186|220019.604|100.109 +637457.416|220024.054|99.591 +637448.007|220032.847|99.822 +637424.894|220054.470|101.218 +637410.922|220067.515|100.849 +637360.478|220114.650|101.044 +637351.547|220123.010|101.852 +637329.525|220143.633|104.537 +637325.145|220147.736|105.068 +637294.284|220176.594|106.354 +637268.327|220200.872|107.988 +637125.235|220334.731|117.196 +637117.649|220341.839|118.220 +637110.154|220348.859|119.235 +637087.532|220370.021|120.695 +637083.755|220373.550|120.750 +637072.670|220383.917|121.317 +637057.865|220397.749|121.314 +637054.183|220401.187|121.222 +637046.947|220407.947|121.341 +637039.800|220414.631|121.640 +637036.289|220417.914|121.841 +637222.906|220241.270|111.639 +637247.979|220217.767|109.204 +637256.544|220209.751|108.991 +637269.443|220197.665|108.186 +637282.257|220185.653|106.830 +637295.348|220173.391|106.217 +637299.700|220169.316|105.991 +637304.184|220165.122|106.193 +637308.579|220161.007|105.952 +637317.409|220152.738|105.455 +637375.337|220098.434|99.901 +637398.602|220076.684|100.916 +637403.150|220072.423|100.740 +637407.862|220068.018|100.965 +637421.837|220054.936|101.136 +637426.482|220050.584|101.047 +637435.730|220041.918|100.328 +637444.990|220033.237|99.767 +637449.802|220028.739|100.218 +637459.114|220020.012|99.776 +637468.718|220011.045|101.002 +637492.938|219988.438|104.562 +637497.815|219983.884|105.050 +637502.560|219979.440|104.998 +637507.266|219975.030|104.681 +637516.712|219966.175|103.980 +637521.479|219961.707|103.815 +637526.277|219957.217|103.870 +637531.056|219952.737|103.455 +637546.037|219938.795|107.948 +637550.871|219934.272|108.079 +637555.721|219929.736|108.338 +637565.441|219920.653|109.116 +637575.219|219911.518|110.082 +637580.102|219906.953|110.371 +637584.969|219902.402|110.539 +637594.726|219893.276|111.188 +637599.557|219888.753|111.133 +637604.382|219884.236|111.042 +637609.277|219879.658|111.167 +637618.912|219870.626|110.539 +637623.837|219866.018|110.576 +637628.690|219861.470|110.399 +637633.542|219856.926|110.243 +637638.450|219852.329|110.179 +637643.278|219847.803|109.835 +637648.139|219843.246|109.335 +637653.016|219838.674|109.012 +637662.794|219829.515|108.671 +637667.698|219824.912|108.195 +637672.538|219820.371|107.534 +637677.415|219815.790|106.787 +637682.292|219811.215|106.001 +637692.009|219802.083|104.099 +637696.913|219797.480|103.654 +637706.758|219788.257|103.160 +637711.711|219783.615|102.730 +637716.692|219778.948|102.672 +637721.648|219774.315|102.864 +637726.540|219769.716|101.755 +637731.630|219764.976|103.059 +637736.650|219760.285|103.586 +637741.695|219755.579|104.440 +637746.709|219750.895|104.943 +637756.776|219741.488|105.994 +637761.799|219736.798|106.738 +637771.876|219727.382|108.177 +637776.930|219722.661|108.826 +637781.977|219717.946|109.445 +637787.015|219713.236|109.963 +637792.042|219708.533|110.387 +637797.089|219703.818|111.136 +637802.109|219699.124|111.481 +637807.175|219694.385|111.889 +637812.195|219689.691|112.328 +637817.246|219684.963|112.514 +637822.296|219680.236|112.758 +637827.289|219675.557|112.859 +637832.339|219670.833|113.115 +637837.378|219666.114|113.252 +637842.413|219661.399|113.316 +637847.445|219656.684|113.334 +637852.471|219651.975|113.233 +637857.446|219647.311|113.139 +637862.515|219642.559|112.980 +637867.532|219637.856|112.740 +637872.546|219633.153|112.471 +637877.557|219628.453|112.051 +637882.564|219623.753|111.591 +637887.621|219619.007|111.179 +637892.635|219614.304|110.850 +637897.634|219609.607|110.173 +637902.636|219604.907|109.509 +637907.686|219600.165|108.783 +637912.688|219595.465|108.046 +637917.687|219590.765|107.156 +637922.746|219586.016|106.570 +637927.760|219581.310|106.132 +637932.856|219576.552|106.887 +637937.901|219571.839|107.604 +637942.994|219567.082|108.521 +637948.029|219562.375|109.116 +637953.114|219557.627|109.737 +637958.143|219552.924|110.158 +637963.218|219548.175|110.652 +637968.293|219543.429|110.990 +637973.313|219538.729|111.146 +637978.378|219533.983|111.103 +637983.441|219529.237|111.005 +637988.458|219524.534|110.853 +637993.475|219519.831|110.643 +637998.587|219515.037|110.402 +638003.607|219510.334|110.310 +638008.624|219505.631|110.140 +638013.973|219500.617|109.945 +638018.707|219496.182|109.887 +638023.772|219491.436|110.027 +638033.813|219482.033|110.100 +638038.833|219477.330|110.094 +638043.898|219472.599|110.810 +638048.915|219467.902|111.155 +638053.932|219463.218|111.886 +638058.946|219458.533|112.560 +638051.945|219460.859|111.786 +638046.876|219465.580|111.054 +638041.804|219470.310|110.761 +638036.684|219475.077|110.079 +638031.609|219479.817|110.076 +638026.488|219484.596|109.981 +638021.416|219489.333|109.871 +638016.341|219494.067|109.679 +638011.224|219498.849|109.853 +638006.106|219503.634|110.048 +638001.031|219508.371|110.109 +637995.959|219513.110|110.176 +637990.842|219517.893|110.408 +637985.770|219522.632|110.606 +637980.701|219527.369|110.826 +637975.583|219532.151|111.039 +637970.512|219536.888|111.021 +637965.482|219541.579|110.792 +637960.356|219546.361|110.457 +637955.275|219551.098|109.984 +637950.239|219555.792|109.649 +637945.149|219560.534|108.991 +637940.059|219565.277|108.351 +637935.008|219569.977|107.598 +637929.903|219574.726|106.641 +637924.801|219579.478|105.872 +637919.787|219584.172|106.537 +637914.773|219588.866|107.217 +637909.719|219593.602|108.027 +637904.708|219598.293|108.765 +637899.700|219602.981|109.487 +637894.695|219607.669|110.192 +637889.688|219612.360|110.841 +637884.668|219617.051|111.173 +637879.647|219621.744|111.490 +637874.679|219626.387|111.935 +637869.616|219631.120|112.353 +637864.645|219635.765|112.642 +637859.668|219640.414|112.846 +637854.645|219645.104|113.084 +637849.707|219649.713|113.121 +637844.675|219654.413|113.209 +637839.685|219659.067|113.206 +637834.738|219663.682|113.151 +637829.739|219668.345|113.023 +637824.783|219672.966|112.837 +637819.782|219677.633|112.679 +637814.826|219682.253|112.529 +637809.860|219686.883|112.285 +637804.883|219691.519|111.844 +637799.960|219696.107|111.594 +637794.983|219700.746|111.213 +637790.036|219705.351|110.603 +637785.092|219709.954|110.143 +637780.090|219714.611|109.524 +637775.183|219719.180|108.933 +637770.175|219723.844|108.305 +637765.253|219728.425|107.589 +637760.278|219733.052|106.866 +637755.313|219737.672|106.348 +637750.378|219742.266|105.595 +637740.494|219751.474|104.647 +637735.516|219756.107|104.099 +637730.524|219760.743|102.809 +637725.574|219765.348|102.108 +637715.814|219774.462|102.471 +637710.928|219779.022|102.623 +637706.027|219783.597|102.572 +637701.156|219788.150|102.913 +637696.334|219792.655|103.288 +637691.454|219797.212|103.544 +637686.636|219801.717|103.961 +637681.807|219806.237|104.824 +637672.255|219815.183|106.570 +637667.509|219819.624|107.272 +637662.706|219824.117|107.872 +637653.107|219833.090|108.680 +637648.267|219837.613|108.939 +637643.473|219842.091|109.198 +637638.706|219846.550|109.716 +637633.920|219851.019|110.097 +637629.107|219855.511|110.222 +637619.531|219864.454|110.505 +637614.730|219868.932|110.371 +637610.003|219873.351|110.880 +637605.187|219877.850|111.066 +637600.398|219882.319|111.085 +637595.570|219886.817|110.780 +637590.809|219891.264|111.063 +637585.984|219895.763|110.832 +637581.190|219900.232|110.475 +637576.328|219904.764|110.408 +637571.537|219909.232|110.121 +637561.826|219918.270|109.027 +637552.200|219927.240|108.320 +637537.634|219940.791|106.150 +637522.887|219954.492|102.956 +637518.276|219958.805|103.602 +637513.530|219963.237|103.614 +637504.164|219971.985|104.269 +637480.267|219994.232|101.733 +637470.687|220003.148|100.575 +637465.951|220007.558|100.243 +637461.205|220011.978|99.865 +637456.474|220016.388|99.606 +637451.576|220020.930|97.969 +637447.199|220025.047|100.054 +637442.496|220029.431|99.709 +637405.536|220063.931|101.014 +637396.298|220072.545|100.846 +637333.295|220131.374|104.038 +637289.279|220172.477|106.647 +637280.522|220180.651|106.961 +637276.179|220184.702|107.067 +637250.490|220208.705|109.308 +637191.764|220263.527|112.188 +637112.178|220337.904|117.662 +637063.681|220383.237|121.515 +637045.277|220400.412|121.603 +637041.491|220403.939|121.143 +637037.877|220407.310|121.137 +637034.295|220410.657|121.265 +637211.019|220243.215|111.371 +637287.292|220171.687|106.744 +637300.499|220159.315|106.589 +637322.509|220138.674|105.251 +637357.963|220105.402|101.654 +637375.971|220088.510|100.048 +637389.912|220075.468|100.816 +637399.154|220066.817|100.700 +637441.155|220027.495|99.786 +637445.712|220023.216|98.880 +637450.348|220018.863|98.192 +637455.283|220014.270|99.466 +637460.077|220009.789|99.847 +637464.890|220005.290|100.048 +637469.636|220000.852|100.151 +637474.482|219996.332|100.962 +637479.356|219991.785|101.663 +637484.251|219987.222|102.529 +637498.805|219973.631|104.114 +637513.070|219960.265|103.172 +637517.852|219955.788|103.105 +637522.650|219951.298|103.160 +637527.569|219946.714|104.132 +637532.614|219942.017|105.348 +637537.527|219937.439|106.375 +637562.146|219914.460|109.402 +637571.948|219905.300|110.179 +637576.822|219900.744|110.368 +637581.735|219896.150|110.530 +637586.618|219891.588|110.862 +637591.519|219887.000|110.993 +637596.399|219882.437|110.926 +637601.297|219877.856|111.048 +637606.156|219873.306|110.862 +637611.024|219868.740|110.332 +637615.913|219864.168|110.448 +637630.586|219850.430|110.097 +637635.453|219845.867|109.631 +637640.266|219841.353|109.116 +637645.158|219836.772|108.930 +637650.038|219832.200|108.637 +637669.548|219813.903|106.476 +637674.376|219809.371|105.699 +637679.220|219804.817|104.565 +637684.051|219800.284|103.788 +637689.013|219795.633|103.410 +637693.929|219791.025|103.084 +637698.849|219786.416|102.797 +637713.705|219772.511|102.565 +637718.649|219767.887|102.654 +637723.586|219763.242|101.499 +637728.637|219758.545|102.904 +637733.697|219753.830|103.907 +637738.802|219749.072|104.937 +637743.734|219744.460|104.973 +637748.818|219739.718|105.842 +637758.843|219730.360|107.046 +637763.893|219725.648|107.573 +637768.913|219720.966|108.372 +637773.967|219716.254|109.012 +637778.966|219711.591|109.631 +637784.004|219706.887|110.164 +637789.039|219702.187|110.685 +637794.032|219697.530|111.304 +637799.043|219692.848|111.545 +637804.069|219688.157|112.048 +637809.077|219683.479|112.264 +637814.082|219678.800|112.496 +637819.081|219674.128|112.642 +637824.079|219669.455|112.828 +637829.124|219664.740|112.999 +637834.113|219660.073|113.078 +637839.100|219655.413|113.072 +637844.129|219650.707|113.029 +637849.116|219646.043|113.090 +637854.139|219641.343|112.926 +637859.162|219636.643|112.810 +637864.130|219631.989|112.566 +637869.147|219627.295|112.252 +637874.201|219622.558|111.795 +637879.166|219617.907|111.389 +637884.226|219613.167|111.060 +637889.233|219608.477|110.545 +637894.238|219603.783|109.914 +637899.237|219599.092|109.167 +637904.291|219594.355|108.552 +637909.292|219589.661|107.759 +637914.297|219584.967|107.000 +637919.354|219580.225|106.354 +637924.371|219575.525|105.924 +637929.470|219570.773|106.796 +637934.518|219566.067|107.622 +637939.565|219561.363|108.436 +637944.649|219556.618|109.103 +637949.685|219551.921|109.615 +637954.763|219547.178|110.036 +637959.837|219542.438|110.475 +637964.864|219537.744|110.749 +637969.887|219533.051|110.947 +637974.953|219528.311|110.868 +637979.970|219523.614|110.609 +637985.032|219518.874|110.368 +637990.095|219514.132|110.033 +637995.118|219509.435|110.024 +638000.184|219504.695|109.948 +638005.253|219499.955|109.920 +638010.267|219495.258|109.667 +638015.336|219490.516|109.512 +638020.404|219485.779|109.661 +638025.473|219481.045|110.030 +638035.562|219471.612|110.173 +638040.628|219466.881|110.688 +638045.648|219462.197|111.094 +638050.711|219457.475|111.871 +638046.669|219456.835|111.636 +638041.646|219461.511|110.880 +638036.571|219466.241|110.545 +638031.496|219470.972|110.158 +638026.470|219475.663|110.042 +638021.395|219480.393|109.737 +638016.317|219485.124|109.222 +638011.242|219489.860|109.253 +638006.219|219494.554|109.579 +638001.144|219499.294|109.719 +637996.069|219504.030|109.689 +637990.997|219508.770|109.807 +637985.922|219513.507|109.871 +637980.850|219518.249|110.225 +637975.827|219522.940|110.377 +637970.707|219527.723|110.618 +637965.684|219532.417|110.704 +637960.606|219537.153|110.463 +637955.525|219541.890|110.170 +637950.440|219546.626|109.762 +637945.402|219551.320|109.311 +637940.309|219556.063|108.652 +637935.219|219560.806|108.110 +637930.165|219565.506|107.223 +637925.060|219570.255|106.330 +637919.963|219575.003|105.827 +637914.943|219579.700|106.363 +637909.881|219584.437|107.116 +637904.827|219589.170|107.939 +637899.816|219593.861|108.695 +637894.805|219598.552|109.359 +637889.752|219603.283|110.124 +637884.741|219607.971|110.740 +637879.675|219612.707|111.149 +637874.655|219617.404|111.478 +637869.641|219622.098|111.874 +637864.624|219626.789|112.325 +637859.601|219631.486|112.542 +637854.575|219636.186|112.734 +637849.500|219640.932|112.871 +637844.513|219645.589|112.941 +637839.472|219650.298|112.877 +637834.433|219655.004|112.865 +637829.447|219659.665|112.941 +637824.399|219664.377|112.791 +637819.349|219669.092|112.666 +637814.393|219673.719|112.502 +637809.339|219678.437|112.346 +637804.322|219683.119|112.060 +637799.311|219687.798|111.847 +637794.285|219692.486|111.487 +637784.260|219701.831|110.484 +637779.219|219706.531|109.963 +637774.214|219711.194|109.359 +637769.160|219715.907|108.719 +637764.192|219720.533|108.021 +637759.178|219725.206|107.400 +637754.146|219729.891|106.570 +637749.174|219734.524|105.982 +637744.151|219739.205|105.354 +637739.159|219743.866|105.171 +637734.151|219748.526|104.199 +637729.173|219753.165|103.684 +637724.184|219757.814|103.071 +637719.194|219762.465|102.492 +637714.244|219767.086|102.410 +637709.291|219771.712|102.322 +637704.405|219776.281|102.443 +637699.462|219780.899|102.529 +637694.579|219785.465|102.751 +637689.684|219790.040|102.828 +637684.831|219794.585|103.416 +637679.948|219799.151|103.684 +637675.108|219803.686|104.419 +637655.878|219821.712|107.677 +637651.123|219826.165|108.317 +637646.277|219830.697|108.506 +637641.449|219835.215|108.905 +637636.606|219839.741|109.173 +637622.173|219853.241|110.057 +637617.363|219857.736|110.240 +637612.538|219862.244|110.323 +637607.692|219866.771|110.207 +637602.977|219871.187|110.844 +637598.149|219875.698|110.941 +637593.351|219880.182|110.890 +637578.904|219893.669|110.441 +637574.094|219898.162|110.374 +637569.254|219902.676|110.097 +637559.598|219911.683|109.433 +637554.764|219916.188|108.902 +637545.129|219925.177|108.171 +637540.267|219929.706|107.521 +637520.748|219947.866|103.605 +637515.877|219952.407|103.041 +637506.480|219961.192|103.446 +637501.728|219965.624|103.138 +637497.104|219969.955|103.718 +637492.371|219974.380|103.919 +637487.628|219978.806|103.718 +637482.770|219983.326|102.745 +637477.929|219987.828|101.596 +637473.135|219992.288|100.822 +637468.319|219996.777|100.243 +637458.834|220005.623|99.493 +637454.164|220009.987|99.639 +637449.525|220014.322|99.676 +637444.916|220018.631|99.911 +637440.155|220023.072|99.530 +637421.855|220040.190|100.990 +637384.916|220074.693|100.819 +637371.039|220087.638|100.017 +637353.083|220104.439|101.535 +637335.313|220121.066|103.181 +637248.320|220202.432|109.106 +637244.065|220206.413|109.481 +637239.758|220210.436|109.637 +637222.878|220226.219|110.560 +637177.070|220269.031|112.014 +637105.993|220335.447|117.744 +637102.065|220339.114|117.748 +637053.287|220384.666|120.445 +637049.678|220388.035|120.625 +637046.024|220391.451|121.039 +637042.433|220394.807|121.308 +637038.803|220398.194|121.231 +637215.310|220230.623|110.569 +637228.029|220218.712|110.274 +637232.239|220214.768|110.146 +637266.227|220182.904|107.189 +637270.574|220178.832|107.119 +637283.707|220166.539|106.945 +637310.051|220141.856|105.632 +637314.480|220137.711|105.632 +637318.887|220133.581|105.254 +637372.319|220083.466|99.594 +637400.236|220057.356|100.901 +637409.547|220048.645|101.349 +637414.241|220044.250|101.236 +637428.076|220031.272|100.106 +637432.795|220026.861|100.532 +637437.272|220022.643|99.142 +637442.094|220018.138|99.633 +637446.882|220013.669|100.246 +637451.415|220009.405|99.237 +637456.188|220004.940|99.487 +637465.765|219995.982|99.935 +637470.575|219991.489|100.511 +637475.412|219986.975|101.291 +637489.999|219973.356|103.355 +637494.776|219968.885|103.516 +637499.558|219964.404|103.382 +637504.340|219959.924|103.273 +637509.098|219955.465|103.004 +637518.754|219946.433|103.544 +637523.659|219941.861|104.409 +637533.580|219932.608|106.400 +637548.283|219918.879|108.287 +637553.203|219914.280|108.750 +637563.066|219905.069|109.975 +637567.867|219900.576|109.945 +637572.811|219895.952|110.353 +637577.657|219891.414|110.368 +637582.589|219886.805|110.701 +637587.405|219882.291|110.505 +637592.333|219877.686|110.871 +637597.170|219873.156|110.896 +637602.066|219868.569|110.606 +637606.891|219864.043|110.134 +637611.761|219859.480|110.106 +637616.620|219854.926|109.975 +637621.509|219850.345|109.689 +637626.431|219845.739|109.719 +637631.311|219841.164|109.378 +637636.188|219836.589|109.030 +637645.932|219827.451|108.296 +637650.803|219822.885|107.912 +637660.520|219813.760|106.467 +637665.391|219809.185|105.623 +637670.240|219804.622|104.583 +637675.123|219800.038|103.852 +637680.018|219795.444|103.263 +637684.950|219790.823|103.102 +637689.915|219786.169|102.779 +637694.829|219781.561|102.419 +637699.824|219776.885|102.477 +637704.802|219772.225|102.315 +637709.736|219767.601|102.285 +637719.652|219758.307|101.605 +637724.769|219753.549|103.260 +637729.820|219748.837|104.156 +637734.858|219744.134|104.961 +637739.869|219739.452|105.464 +637744.916|219734.734|105.851 +637749.943|219730.043|106.638 +637754.999|219725.319|107.226 +637760.007|219720.643|107.838 +637765.061|219715.928|108.451 +637770.066|219711.252|109.149 +637775.116|219706.540|109.820 +637780.151|219701.834|110.320 +637785.181|219697.137|110.780 +637790.216|219692.431|111.392 +637795.230|219687.746|111.664 +637800.241|219683.058|111.969 +637805.246|219678.376|112.185 +637810.247|219673.698|112.377 +637815.246|219669.022|112.542 +637820.291|219664.304|112.682 +637825.280|219659.634|112.785 +637830.315|219654.922|112.822 +637835.299|219650.256|112.798 +637840.328|219645.546|112.773 +637845.357|219640.837|112.788 +637850.338|219636.177|112.724 +637855.358|219631.474|112.560 +637860.378|219626.771|112.417 +637865.383|219622.077|111.947 +637870.348|219617.422|111.591 +637875.362|219612.722|111.344 +637880.373|219608.025|110.947 +637885.375|219603.331|110.377 +637890.376|219598.638|109.701 +637895.378|219593.944|109.012 +637900.380|219589.247|108.311 +637905.427|219584.507|107.525 +637910.423|219579.810|106.537 +637915.437|219575.110|106.086 +637920.503|219570.361|105.726 +637925.557|219565.649|106.738 +637930.604|219560.940|107.582 +637935.694|219556.191|108.381 +637940.729|219551.488|108.963 +637945.765|219546.785|109.649 +637950.840|219542.042|109.969 +637955.863|219537.345|110.219 +637960.935|219532.602|110.472 +637965.955|219527.906|110.560 +637970.972|219523.205|110.387 +637976.035|219518.463|110.121 +637981.097|219513.717|109.942 +637986.114|219509.017|109.637 +637991.180|219504.274|109.640 +637996.246|219499.529|109.558 +638001.266|219494.832|109.542 +638006.326|219490.086|109.247 +638011.346|219485.386|109.033 +638016.366|219480.689|109.256 +638021.435|219475.952|109.679 +638026.500|219471.219|110.085 +638031.520|219466.522|110.252 +638036.586|219461.788|110.618 +638041.649|219457.061|111.310 +638034.617|219459.825|110.749 +638029.640|219464.461|110.332 +638024.611|219469.146|110.103 +638019.581|219473.828|109.622 +638014.601|219478.467|109.177 +638009.569|219483.152|108.759 +638004.543|219487.846|108.924 +637999.519|219492.536|109.301 +637994.490|219497.230|109.454 +637989.510|219501.876|109.426 +637984.481|219506.566|109.466 +637979.454|219511.257|109.646 +637974.474|219515.906|109.762 +637969.405|219520.642|110.179 +637964.379|219525.333|110.380 +637959.399|219529.978|110.341 +637954.321|219534.712|110.204 +637949.334|219539.357|109.932 +637944.299|219544.048|109.564 +637939.257|219548.742|109.079 +637934.213|219553.436|108.479 +637929.162|219558.133|107.723 +637924.106|219562.833|106.811 +637919.089|219567.490|105.760 +637909.030|219576.884|106.278 +637904.071|219581.526|107.214 +637899.063|219586.214|108.018 +637894.052|219590.902|108.753 +637889.087|219595.544|109.423 +637884.079|219600.229|110.088 +637879.062|219604.916|110.569 +637874.094|219609.562|111.051 +637869.074|219614.249|111.444 +637864.097|219618.898|111.719 +637859.076|219623.585|112.133 +637854.053|219628.276|112.435 +637849.070|219632.928|112.609 +637844.077|219637.582|112.602 +637839.042|219642.282|112.663 +637834.043|219646.939|112.575 +637829.051|219651.597|112.630 +637824.006|219656.300|112.584 +637819.007|219660.963|112.548 +637813.954|219665.672|112.426 +637808.998|219670.293|112.304 +637803.938|219675.008|112.142 +637798.921|219679.681|111.892 +637793.950|219684.314|111.633 +637788.927|219688.993|111.374 +637783.894|219693.677|110.963 +637778.853|219698.371|110.454 +637773.805|219703.068|109.926 +637768.846|219707.680|109.338 +637763.790|219712.386|108.735 +637758.779|219717.050|108.158 +637753.759|219721.719|107.479 +637748.693|219726.431|106.921 +637743.719|219731.058|106.308 +637733.685|219740.400|105.348 +637728.668|219745.070|104.949 +637718.630|219754.394|103.010 +637713.491|219759.155|101.267 +637703.619|219768.378|102.126 +637698.678|219772.987|102.236 +637693.789|219777.549|102.437 +637688.797|219782.207|102.547 +637678.988|219791.366|103.172 +637674.075|219795.950|103.141 +637669.173|219800.531|103.785 +637664.348|219805.049|104.717 +637659.539|219809.557|105.778 +637654.711|219814.074|106.689 +637645.052|219823.105|107.945 +637640.172|219827.662|108.347 +637635.328|219832.185|108.646 +637630.473|219836.714|108.832 +637625.642|219841.231|109.237 +637620.783|219845.764|109.442 +637615.925|219850.299|109.640 +637611.121|219854.783|109.942 +637606.272|219859.312|110.243 +637601.428|219863.829|110.201 +637591.815|219872.803|110.829 +637586.972|219877.314|110.435 +637577.331|219886.305|110.505 +637572.454|219890.850|110.316 +637567.602|219895.367|109.960 +637562.795|219899.851|109.984 +637553.105|219908.870|109.106 +637548.207|219913.426|108.494 +637538.475|219922.482|107.497 +637528.715|219931.556|106.019 +637523.893|219936.043|105.400 +637518.940|219940.639|104.217 +637514.048|219945.181|103.169 +637509.120|219949.753|101.870 +637504.447|219954.126|102.831 +637495.041|219962.917|103.254 +637490.265|219967.373|103.148 +637480.788|219976.212|102.873 +637475.966|219980.696|101.849 +637466.262|219989.721|100.185 +637461.525|219994.138|99.834 +637415.140|220037.456|101.014 +637405.911|220046.073|101.087 +637401.245|220050.422|100.837 +637359.911|220088.995|100.246 +637355.461|220093.158|100.849 +637315.800|220130.265|105.400 +637285.125|220158.922|106.900 +637250.478|220191.286|108.125 +637126.906|220306.781|114.703 +637111.553|220321.167|117.037 +637092.210|220339.257|118.034 +637058.243|220371.021|119.717 +637047.188|220381.359|120.344 +637043.491|220384.810|120.198 +637036.313|220391.531|120.954 +637232.775|220205.416|109.298 +637236.991|220201.463|108.981 +637262.768|220177.301|107.482 +637275.871|220165.027|107.122 +637284.625|220156.828|106.872 +637324.237|220119.694|104.306 +637355.220|220090.616|100.502 +637368.799|220077.891|99.874 +637382.655|220064.934|100.410 +637391.860|220056.326|100.386 +637438.360|220012.822|99.801 +637447.419|220004.312|97.704 +637452.399|219999.685|99.289 +637457.084|219995.299|99.313 +637461.869|219990.831|99.682 +637466.713|219986.316|100.462 +637471.532|219981.824|101.112 +637476.518|219977.182|102.285 +637481.346|219972.683|103.062 +637486.122|219968.214|103.187 +637490.829|219963.810|102.828 +637500.287|219954.956|102.514 +637505.081|219950.472|102.489 +637509.909|219945.961|102.742 +637514.822|219941.383|103.632 +637524.710|219932.172|105.650 +637529.599|219927.615|106.473 +637539.423|219918.453|107.869 +637549.177|219909.351|108.826 +637554.133|219904.731|109.609 +637559.034|219900.152|109.981 +637563.880|219895.620|109.935 +637568.699|219891.115|110.109 +637573.612|219886.525|110.252 +637583.354|219877.414|110.344 +637597.969|219863.747|110.448 +637602.837|219859.193|110.332 +637617.455|219845.505|109.405 +637622.286|219840.978|109.055 +637627.181|219836.397|108.829 +637632.027|219831.859|108.649 +637636.953|219827.247|108.293 +637641.833|219822.678|108.000 +637646.685|219818.128|107.433 +637656.393|219809.020|105.860 +637661.246|219804.460|104.830 +637666.037|219799.958|103.635 +637670.990|219795.313|103.145 +637680.847|219786.087|102.672 +637690.708|219776.858|102.294 +637705.567|219762.946|101.526 +637710.544|219758.289|101.432 +637715.646|219753.546|102.824 +637720.758|219748.795|104.422 +637730.798|219739.425|105.528 +637740.853|219730.037|106.354 +637745.913|219725.316|106.921 +637750.918|219720.643|107.445 +637755.978|219715.925|108.064 +637760.979|219711.258|108.631 +637766.027|219706.549|109.186 +637771.074|219701.840|109.811 +637776.110|219697.140|110.304 +637781.148|219692.440|110.850 +637786.171|219687.746|111.255 +637791.136|219683.110|111.496 +637796.199|219678.379|111.786 +637801.204|219673.704|111.981 +637806.206|219669.028|112.127 +637811.208|219664.353|112.325 +637816.200|219659.686|112.365 +637821.245|219654.971|112.496 +637826.228|219650.310|112.450 +637831.215|219645.647|112.453 +637836.256|219640.935|112.566 +637841.285|219636.232|112.517 +637846.269|219631.571|112.538 +637851.292|219626.871|112.377 +637856.257|219622.220|112.063 +637861.274|219617.523|111.758 +637866.291|219612.826|111.517 +637871.299|219608.132|111.021 +637876.261|219603.484|110.582 +637881.318|219598.747|110.057 +637886.277|219594.099|109.475 +637891.282|219589.405|108.802 +637896.332|219584.669|108.073 +637901.285|219580.020|107.259 +637906.284|219575.326|106.327 +637911.301|219570.626|105.891 +637916.318|219565.926|105.415 +637921.378|219561.217|106.519 +637926.428|219556.511|107.415 +637931.473|219551.808|108.250 +637936.511|219547.108|108.844 +637941.546|219542.408|109.329 +637946.579|219537.711|109.890 +637951.605|219533.017|110.121 +637956.628|219528.320|110.213 +637961.648|219523.626|110.182 +637966.665|219518.929|110.003 +637971.682|219514.232|109.701 +637976.699|219509.535|109.451 +637981.768|219504.792|109.301 +637986.742|219500.141|109.271 +637991.762|219495.444|109.286 +637996.831|219490.702|109.155 +638001.799|219486.050|108.856 +638006.819|219481.347|108.433 +638011.891|219476.617|109.036 +638016.866|219471.972|109.423 +638021.889|219467.287|110.015 +638026.958|219462.550|110.310 +638031.929|219457.911|110.807 +638026.695|219458.560|110.527 +638021.666|219463.245|110.018 +638016.591|219467.976|109.500 +638011.562|219472.663|109.161 +638006.530|219477.354|108.744 +638001.501|219482.048|108.619 +637991.403|219491.488|109.152 +637986.373|219496.185|109.173 +637981.344|219500.879|109.125 +637976.315|219505.576|109.192 +637971.289|219510.273|109.405 +637966.266|219514.970|109.707 +637961.240|219519.667|109.917 +637956.216|219524.361|110.100 +637951.187|219529.058|110.097 +637946.201|219533.709|109.814 +637941.165|219538.403|109.472 +637936.124|219543.100|108.972 +637931.128|219547.757|108.411 +637926.078|219552.457|107.692 +637921.024|219557.163|106.848 +637916.010|219561.827|105.924 +637910.966|219566.530|105.656 +637905.985|219571.187|105.964 +637901.020|219575.838|106.699 +637896.012|219580.529|107.616 +637891.099|219585.132|108.424 +637886.088|219589.826|109.079 +637881.123|219594.474|109.676 +637876.157|219599.119|110.243 +637871.186|219603.770|110.682 +637866.221|219608.416|111.255 +637861.250|219613.067|111.633 +637856.269|219617.718|111.837 +637851.338|219622.327|112.023 +637846.363|219626.978|112.353 +637841.374|219631.638|112.374 +637836.430|219636.253|112.398 +637831.437|219640.913|112.365 +637826.493|219645.531|112.404 +637821.495|219650.195|112.343 +637816.542|219654.818|112.270 +637811.592|219659.439|112.258 +637806.584|219664.112|112.066 +637801.673|219668.693|111.969 +637796.662|219673.369|111.792 +637791.697|219678.002|111.624 +637786.723|219682.641|111.310 +637781.745|219687.283|111.024 +637776.765|219691.925|110.701 +637771.769|219696.582|110.158 +637766.765|219701.243|109.582 +637761.808|219705.857|109.027 +637756.795|219710.527|108.381 +637751.835|219715.148|107.869 +637746.828|219719.814|107.384 +637741.856|219724.444|106.781 +637736.845|219729.117|106.336 +637731.871|219733.750|105.763 +637721.901|219743.034|104.513 +637716.908|219747.685|103.839 +637711.900|219752.342|103.050 +637706.810|219757.064|101.334 +637692.055|219770.850|101.846 +637687.138|219775.449|102.270 +637682.280|219779.985|102.279 +637677.342|219784.596|102.486 +637667.567|219793.734|102.989 +637662.693|219798.291|103.388 +637643.479|219816.308|107.451 +637638.654|219820.822|107.902 +637633.774|219825.385|108.274 +637628.928|219829.914|108.549 +637624.075|219834.450|108.750 +637619.217|219838.988|108.927 +637614.358|219843.527|109.128 +637594.982|219861.635|110.155 +637585.317|219870.663|110.326 +637580.477|219875.183|110.377 +637575.615|219879.719|110.274 +637570.775|219884.239|110.368 +637565.938|219888.753|110.091 +637561.116|219893.252|109.993 +637546.500|219906.879|108.994 +637531.910|219920.470|107.311 +637507.352|219943.312|102.812 +637502.423|219947.890|101.541 +637492.974|219956.723|102.358 +637488.268|219961.122|102.764 +637483.455|219965.605|102.413 +637478.771|219969.979|102.651 +637473.921|219974.496|102.102 +637459.410|219987.993|99.938 +637454.579|219992.489|99.307 +637449.906|219996.850|99.423 +637426.619|220018.595|100.465 +637366.378|220074.788|100.054 +637352.766|220087.495|100.639 +637343.851|220095.831|101.523 +637295.339|220141.173|106.193 +637282.193|220153.451|106.985 +637273.545|220161.528|107.589 +637243.209|220189.841|108.418 +637217.749|220213.622|110.021 +637209.232|220221.565|109.987 +637183.998|220245.104|110.051 +637175.741|220252.813|110.490 +637155.359|220271.838|111.402 +637119.828|220305.034|114.898 +637077.763|220344.323|118.564 +637073.983|220347.850|118.823 +637051.318|220368.985|118.985 +637047.655|220372.404|119.147 +637227.319|220202.569|109.503 +637244.425|220186.525|108.207 +637253.118|220178.374|107.963 +637261.908|220170.145|107.994 +637283.802|220149.620|107.098 +637314.788|220120.557|104.922 +637332.524|220103.906|102.785 +637337.066|220099.654|102.953 +637359.542|220078.552|100.182 +637373.377|220065.598|100.215 +637387.151|220052.684|99.496 +637396.590|220043.860|100.328 +637419.941|220021.987|99.953 +637443.167|220000.200|97.975 +637452.841|219991.169|99.292 +637457.617|219986.701|99.597 +637467.475|219977.517|102.014 +637472.224|219973.067|101.883 +637477.033|219968.568|102.197 +637481.822|219964.087|102.386 +637486.543|219959.662|102.126 +637491.392|219955.129|102.447 +637496.062|219950.746|101.846 +637505.797|219941.648|102.876 +637530.507|219918.596|107.323 +637535.329|219914.088|107.713 +637540.282|219909.461|108.405 +637545.159|219904.904|108.899 +637550.112|219900.280|109.643 +637559.869|219891.155|110.024 +637564.731|219886.604|110.137 +637574.432|219877.521|110.225 +637584.219|219868.359|110.316 +637589.093|219863.793|110.201 +637593.964|219859.230|110.115 +637608.555|219845.553|109.289 +637613.404|219841.009|109.055 +637618.308|219836.412|108.924 +637623.213|219831.819|108.796 +637628.117|219827.223|108.686 +637632.991|219822.654|108.280 +637637.834|219818.106|107.637 +637647.581|219808.956|106.412 +637652.422|219804.402|105.251 +637657.256|219799.852|103.989 +637667.055|219790.653|102.858 +637671.981|219786.038|102.565 +637676.961|219781.369|102.370 +637681.875|219776.760|101.989 +637686.861|219772.090|101.889 +637691.845|219767.424|101.767 +637696.837|219762.748|101.794 +637706.880|219753.360|102.575 +637711.922|219748.654|103.245 +637722.032|219739.221|105.095 +637727.113|219734.478|105.827 +637732.161|219729.760|106.168 +637737.165|219725.081|106.622 +637742.225|219720.360|107.195 +637747.236|219715.684|107.774 +637752.326|219710.929|108.198 +637757.377|219706.214|108.774 +637762.378|219701.547|109.378 +637767.472|219696.792|109.948 +637772.507|219692.089|110.435 +637777.539|219687.392|110.890 +637782.605|219682.659|111.194 +637787.576|219678.014|111.530 +637792.627|219673.292|111.624 +637797.680|219668.568|111.847 +637802.685|219663.889|112.029 +637807.733|219659.171|112.154 +637812.722|219654.501|112.136 +637817.764|219649.786|112.237 +637822.799|219645.077|112.243 +637827.831|219640.368|112.231 +637832.870|219635.656|112.319 +637837.902|219630.946|112.313 +637842.931|219626.243|112.270 +637847.951|219621.540|112.036 +637852.977|219616.837|111.950 +637857.949|219612.183|111.767 +637863.008|219607.440|111.374 +637868.016|219602.746|110.856 +637873.024|219598.052|110.316 +637878.032|219593.358|109.783 +637883.086|219588.619|109.222 +637888.042|219583.967|108.503 +637893.086|219579.231|107.643 +637898.088|219574.537|106.772 +637903.090|219569.840|105.888 +637908.158|219565.091|105.604 +637913.188|219560.388|105.589 +637918.244|219555.676|106.589 +637923.344|219550.924|107.491 +637928.385|219546.218|108.210 +637933.426|219541.515|108.890 +637938.507|219536.772|109.408 +637943.537|219532.072|109.777 +637948.563|219527.375|110.003 +637953.632|219522.632|110.015 +637958.646|219517.935|109.567 +637963.669|219513.235|109.597 +637968.732|219508.493|109.173 +637973.752|219503.793|109.003 +637978.775|219499.093|108.960 +637983.795|219494.396|108.963 +637988.818|219489.696|108.908 +637993.835|219484.996|108.561 +637998.904|219480.250|108.390 +638003.878|219475.599|108.485 +638008.950|219470.862|108.972 +638013.973|219466.171|109.381 +638018.947|219461.529|109.960 +638023.967|219456.844|110.563 +638020.429|219456.518|110.393 +638015.354|219461.243|109.911 +638010.230|219466.010|109.244 +638005.201|219470.691|108.695 +638000.074|219475.462|108.085 +637994.999|219480.201|108.287 +637989.973|219484.892|108.475 +637984.852|219489.674|108.728 +637979.774|219494.411|108.753 +637974.748|219499.102|108.875 +637969.670|219503.838|108.863 +637964.550|219508.618|109.109 +637959.523|219513.309|109.271 +637954.455|219518.045|109.682 +637949.383|219522.782|109.896 +637944.351|219527.473|109.783 +637939.269|219532.206|109.542 +637934.231|219536.897|109.122 +637929.190|219541.591|108.561 +637924.093|219546.331|107.826 +637919.043|219551.031|107.165 +637913.983|219555.731|106.229 +637908.927|219560.434|105.476 +637903.891|219565.131|105.589 +637898.871|219569.825|106.110 +637893.863|219574.513|106.976 +637888.859|219579.200|107.884 +637883.893|219583.843|108.570 +637878.882|219588.530|109.244 +637873.917|219593.172|109.838 +637868.906|219597.857|110.438 +637863.941|219602.499|111.002 +637858.967|219607.145|111.359 +637854.002|219611.790|111.840 +637849.021|219616.438|112.005 +637844.035|219621.092|112.066 +637839.051|219625.747|112.173 +637834.061|219630.401|112.200 +637829.118|219635.012|112.191 +637824.122|219639.673|112.124 +637819.175|219644.291|112.115 +637814.225|219648.905|112.100 +637809.226|219653.569|112.008 +637804.319|219658.147|111.938 +637799.311|219662.816|111.789 +637794.401|219667.394|111.700 +637789.439|219672.024|111.514 +637784.473|219676.651|111.392 +637779.545|219681.245|111.085 +637774.567|219685.884|110.746 +637769.633|219690.483|110.426 +637764.637|219695.134|109.917 +637759.678|219699.749|109.329 +637754.722|219704.364|108.765 +637749.763|219708.978|108.256 +637744.813|219713.590|107.887 +637739.848|219718.214|107.348 +637734.931|219722.792|106.820 +637729.957|219727.422|106.238 +637724.986|219732.052|105.741 +637715.076|219741.275|104.687 +637710.105|219745.896|103.699 +637700.147|219755.162|102.291 +637695.133|219759.813|100.962 +637685.395|219768.917|101.733 +637680.509|219773.477|101.962 +637675.675|219777.994|102.245 +637661.051|219791.649|102.879 +637656.247|219796.145|103.513 +637651.431|219800.656|104.541 +637646.737|219805.061|105.818 +637641.940|219809.560|106.979 +637627.510|219823.044|108.299 +637622.691|219827.552|108.805 +637617.879|219832.045|108.930 +637613.002|219836.595|108.963 +637608.192|219841.088|109.143 +637603.373|219845.587|109.277 +637598.582|219850.065|109.667 +637588.950|219859.059|110.070 +637584.140|219863.549|110.356 +637574.423|219872.614|110.131 +637564.752|219881.633|109.984 +637560.000|219886.068|110.021 +637545.403|219899.668|109.137 +637525.987|219917.745|107.034 +637516.246|219926.810|105.757 +637511.339|219931.373|104.879 +637496.522|219945.126|101.121 +637491.801|219949.545|101.733 +637487.119|219953.919|101.956 +637482.343|219958.375|101.858 +637477.567|219962.835|101.782 +637467.993|219971.762|101.246 +637463.226|219976.206|100.971 +637458.343|219980.748|99.956 +637453.536|219985.225|99.466 +637448.821|219989.627|99.289 +637439.125|219998.646|97.618 +637416.043|220020.241|100.127 +637397.496|220037.572|100.877 +637383.423|220050.693|100.093 +637369.490|220063.693|99.734 +637342.290|220089.123|101.572 +637293.434|220134.815|105.924 +637267.068|220159.458|107.503 +637240.950|220183.855|108.332 +637198.202|220223.787|109.649 +637185.613|220235.549|110.161 +637164.728|220255.050|110.448 +637152.424|220266.547|110.963 +637128.390|220289.026|113.014 +637101.199|220314.474|116.473 +637097.340|220318.083|116.739 +637066.601|220346.813|118.388 +637047.664|220364.498|118.482 +637043.960|220367.957|118.699 +637197.467|220222.351|109.414 +637235.893|220186.427|108.826 +637240.179|220182.413|108.381 +637253.236|220170.212|108.317 +637257.568|220166.158|108.155 +637266.258|220158.026|107.485 +637270.732|220153.850|107.814 +637296.829|220129.408|105.107 +637319.171|220108.508|103.992 +637341.543|220087.562|102.062 +637350.443|220079.220|100.596 +637396.785|220035.886|100.529 +637405.996|220027.257|99.798 +637424.851|220009.631|99.987 +637443.374|219992.263|97.734 +637448.361|219987.630|99.362 +637453.125|219983.174|99.246 +637457.956|219978.666|99.938 +637462.878|219974.085|100.929 +637467.691|219969.586|101.227 +637472.477|219965.115|101.343 +637491.603|219947.226|101.297 +637501.497|219938.009|103.077 +637511.329|219928.846|104.931 +637521.214|219919.635|106.583 +637526.121|219915.054|107.223 +637535.890|219905.938|108.213 +637540.813|219901.344|108.664 +637555.504|219887.628|110.018 +637565.188|219878.569|109.884 +637570.113|219873.970|110.146 +637574.944|219869.450|110.036 +637589.569|219855.773|110.179 +637594.382|219851.262|109.567 +637599.252|219846.706|109.497 +637604.153|219842.118|109.274 +637609.006|219837.577|109.049 +637613.916|219832.983|108.960 +637618.784|219828.430|108.920 +637623.712|219823.815|108.576 +637628.553|219819.283|108.335 +637633.481|219814.668|108.000 +637657.670|219791.951|102.892 +637672.459|219778.104|102.145 +637677.397|219773.486|101.998 +637682.344|219768.850|101.432 +637687.306|219764.211|101.627 +637692.247|219759.581|100.999 +637697.282|219754.894|102.069 +637702.336|219750.181|102.852 +637707.389|219745.469|103.687 +637717.469|219736.069|105.126 +637722.486|219731.387|105.656 +637727.509|219726.703|106.257 +637732.569|219721.978|106.793 +637737.571|219717.303|107.241 +637742.627|219712.581|107.787 +637747.623|219707.915|108.232 +637752.668|219703.202|108.695 +637757.715|219698.487|109.265 +637762.759|219693.778|109.829 +637767.795|219689.072|110.329 +637772.818|219684.378|110.633 +637777.890|219679.638|111.005 +637782.907|219674.947|111.310 +637787.912|219670.266|111.450 +637792.962|219665.541|111.588 +637798.010|219660.820|111.734 +637803.008|219656.144|111.850 +637808.050|219651.426|111.889 +637813.091|219646.711|111.959 +637818.084|219642.038|112.039 +637823.162|219637.283|111.969 +637828.197|219632.571|112.017 +637833.232|219627.859|112.093 +637838.262|219623.153|112.029 +637843.291|219618.447|112.002 +637848.314|219613.740|111.904 +637853.380|219608.995|111.682 +637858.391|219604.298|111.267 +637863.402|219599.601|110.829 +637868.458|219594.858|110.368 +637873.460|219590.164|109.725 +637878.465|219585.467|109.067 +637883.512|219580.731|108.283 +637888.517|219576.034|107.549 +637893.562|219571.294|106.610 +637898.566|219566.594|105.866 +637903.580|219561.891|105.342 +637908.658|219557.139|105.379 +637913.764|219552.381|106.351 +637918.808|219547.672|107.080 +637923.904|219542.920|107.948 +637928.989|219538.171|108.585 +637934.024|219533.468|109.122 +637939.102|219528.722|109.484 +637944.177|219523.980|109.725 +637949.243|219519.237|109.747 +637954.260|219514.534|109.314 +637959.374|219509.745|109.222 +637964.388|219505.045|108.838 +637969.457|219500.300|108.701 +637974.526|219495.554|108.613 +637979.546|219490.851|108.485 +637984.615|219486.105|108.354 +637989.680|219481.362|108.162 +637994.704|219476.659|108.186 +637999.772|219471.920|108.405 +638004.844|219467.180|108.756 +638009.867|219462.492|109.420 +638014.887|219457.801|110.009 +638009.928|219458.420|109.679 +638004.850|219463.148|108.911 +637999.727|219467.927|108.497 +637994.600|219472.706|107.918 +637989.525|219477.446|107.899 +637984.453|219482.188|108.140 +637979.329|219486.977|108.216 +637974.255|219491.720|108.372 +637969.180|219496.462|108.555 +637964.059|219501.248|108.567 +637958.941|219506.036|108.972 +637953.915|219510.733|109.140 +637948.798|219515.521|109.420 +637943.677|219520.307|109.658 +637938.645|219525.001|109.439 +637933.515|219529.789|109.119 +637928.431|219534.532|108.661 +637923.386|219539.232|108.034 +637918.238|219544.023|107.275 +637913.139|219548.772|106.546 +637908.082|219553.481|105.687 +637902.986|219558.236|105.193 +637897.911|219562.979|105.577 +637892.897|219567.676|106.287 +637887.840|219572.416|107.034 +637882.790|219577.152|108.003 +637877.834|219581.797|108.866 +637872.777|219586.534|109.542 +637867.718|219591.271|110.124 +637862.749|219595.919|110.624 +637857.735|219600.613|111.060 +637852.715|219605.304|111.472 +637847.695|219609.997|111.801 +637842.663|219614.697|111.877 +637837.673|219619.355|111.880 +637832.687|219624.009|111.944 +637827.648|219628.712|111.956 +637822.653|219633.373|111.892 +637817.654|219638.036|111.801 +637812.622|219642.739|111.953 +637807.663|219647.363|111.770 +637802.664|219652.029|111.706 +637797.714|219656.647|111.737 +637792.749|219661.277|111.517 +637787.741|219665.953|111.377 +637782.788|219670.577|111.395 +637777.807|219675.216|111.014 +637772.882|219679.809|110.771 +637767.901|219684.451|110.445 +637762.915|219689.099|110.070 +637757.968|219693.708|109.597 +637753.009|219698.326|109.036 +637748.053|219702.940|108.518 +637743.103|219707.555|108.113 +637738.101|219712.215|107.726 +637733.188|219716.793|107.238 +637728.226|219721.417|106.778 +637723.303|219726.002|106.266 +637718.335|219730.631|105.836 +637708.401|219739.876|104.492 +637703.451|219744.485|103.794 +637698.477|219749.108|102.864 +637693.487|219753.760|102.334 +637688.513|219758.374|100.932 +637678.759|219767.491|101.572 +637668.994|219776.617|102.130 +637664.135|219781.152|102.166 +637654.433|219790.220|102.965 +637649.657|219794.697|103.900 +637644.899|219799.157|105.022 +637640.172|219803.595|106.433 +637625.858|219816.994|108.375 +637621.024|219821.511|108.747 +637616.220|219826.001|108.948 +637606.580|219834.998|109.128 +637601.767|219839.494|109.301 +637596.994|219843.953|109.417 +637592.175|219848.452|109.591 +637577.819|219861.863|110.192 +637568.138|219870.895|109.905 +637548.942|219888.808|109.743 +637544.102|219893.313|109.155 +637539.210|219897.869|108.552 +637524.750|219911.345|107.509 +637514.993|219920.425|106.080 +637510.150|219924.933|105.296 +637505.218|219929.514|104.281 +637500.351|219934.043|103.391 +637495.437|219938.606|102.221 +637490.582|219943.117|101.176 +637485.772|219947.604|101.176 +637481.087|219951.978|101.383 +637476.268|219956.464|101.008 +637471.562|219960.856|101.105 +637457.270|219974.161|100.026 +637452.405|219978.684|99.152 +637447.495|219983.235|97.692 +637438.086|219992.013|97.878 +637405.676|220022.277|100.054 +637363.961|220061.172|99.920 +637350.331|220073.901|100.910 +637279.184|220140.347|106.677 +637266.142|220152.530|107.842 +637252.923|220164.856|108.003 +637239.825|220177.076|108.405 +637213.984|220201.183|109.131 +637175.869|220236.738|110.085 +637163.323|220248.436|110.320 +637115.131|220293.464|114.885 +637053.443|220351.056|118.345 +637049.624|220354.613|118.299 +637042.107|220361.630|118.479 +637195.343|220215.978|108.360 +637221.095|220191.865|108.741 +637286.451|220130.591|105.354 +637290.849|220126.467|105.162 +637326.529|220093.003|102.422 +637340.147|220080.238|101.846 +637362.824|220058.969|99.853 +637400.278|220023.935|100.106 +637405.006|220019.515|100.206 +637419.152|220006.281|100.103 +637428.549|219997.484|99.813 +637442.545|219984.357|98.067 +637447.129|219980.053|97.070 +637452.152|219975.383|98.679 +637461.997|219966.212|100.688 +637466.819|219961.701|100.718 +637471.623|219957.214|100.980 +637476.421|219952.724|100.898 +637481.246|219948.213|101.026 +637486.028|219943.739|100.852 +637490.972|219939.124|101.526 +637500.945|219929.843|103.937 +637505.898|219925.222|104.797 +637520.739|219911.384|107.070 +637535.451|219897.644|108.283 +637545.303|219888.448|109.344 +637550.243|219883.833|109.655 +637559.985|219874.720|109.597 +637564.834|219870.184|109.603 +637569.754|219865.585|109.859 +637574.633|219861.022|109.762 +637584.396|219851.887|109.704 +637589.307|219847.288|109.539 +637594.171|219842.737|109.387 +637599.030|219838.189|109.225 +637603.949|219833.587|109.192 +637613.767|219824.400|108.994 +637618.607|219819.865|108.732 +637623.517|219815.265|108.216 +637628.406|219810.687|107.991 +637652.580|219787.974|102.773 +637657.506|219783.359|102.480 +637662.428|219778.750|102.130 +637672.350|219769.463|101.822 +637677.242|219764.876|101.185 +637687.172|219755.582|101.087 +637692.338|219750.779|102.575 +637702.385|219741.406|104.038 +637712.467|219732.006|105.525 +637717.533|219727.276|106.058 +637722.492|219722.646|106.488 +637727.555|219717.924|107.028 +637732.557|219713.255|107.473 +637737.549|219708.594|107.814 +637742.597|219703.885|108.274 +637747.647|219699.176|108.805 +637752.643|219694.513|109.295 +637757.681|219689.813|109.737 +637762.668|219685.158|110.216 +637767.737|219680.428|110.466 +637772.760|219675.737|110.816 +637777.725|219671.101|111.014 +637782.788|219666.373|111.298 +637787.787|219661.701|111.356 +637792.788|219657.028|111.444 +637797.839|219652.310|111.645 +637802.826|219647.646|111.554 +637807.876|219642.931|111.770 +637812.914|219638.222|111.801 +637817.901|219633.559|111.776 +637822.936|219628.852|111.789 +637827.975|219624.143|111.886 +637833.004|219619.443|111.798 +637838.036|219614.737|111.798 +637843.068|219610.034|111.844 +637848.091|219605.337|111.661 +637853.151|219600.600|111.304 +637858.162|219595.910|110.829 +637863.173|219591.216|110.387 +637868.181|219586.525|109.856 +637873.189|219581.834|109.308 +637878.236|219577.100|108.552 +637883.232|219572.412|107.604 +637888.225|219567.722|106.519 +637893.284|219562.985|105.869 +637898.344|219558.242|105.309 +637903.373|219553.539|105.306 +637908.424|219548.833|105.997 +637913.523|219544.081|106.878 +637918.567|219539.381|107.546 +637923.655|219534.636|108.155 +637928.742|219529.893|108.838 +637933.771|219525.196|109.167 +637938.849|219520.459|109.503 +637943.918|219515.720|109.466 +637948.938|219511.023|109.295 +637954.001|219506.283|108.887 +637959.066|219501.543|108.594 +637964.086|219496.846|108.387 +637969.155|219492.107|108.320 +637974.224|219487.364|108.152 +637979.293|219482.621|107.973 +637984.362|219477.885|107.887 +637989.431|219473.139|107.521 +637994.505|219468.411|108.347 +637999.529|219463.718|108.625 +638004.646|219458.947|109.274 +638002.418|219456.643|109.289 +637997.343|219461.374|108.661 +637992.265|219466.110|108.253 +637987.187|219470.850|107.921 +637982.155|219475.544|107.552 +637977.037|219480.329|107.713 +637971.962|219485.075|107.906 +637966.933|219489.775|108.043 +637961.813|219494.563|108.262 +637956.738|219499.306|108.384 +637951.715|219504.006|108.634 +637946.597|219508.795|109.067 +637941.525|219513.537|109.219 +637936.499|219518.234|109.289 +637931.369|219523.023|109.009 +637926.285|219527.765|108.625 +637921.241|219532.465|107.966 +637916.102|219537.257|107.421 +637911.002|219542.009|106.610 +637905.897|219546.760|105.778 +637900.798|219551.515|105.190 +637895.717|219556.264|105.248 +637890.696|219560.964|105.760 +637885.634|219565.707|106.449 +637880.586|219570.443|107.430 +637875.539|219575.177|108.451 +637870.485|219579.914|109.204 +637865.425|219584.650|109.777 +637860.415|219589.344|110.396 +637855.401|219594.038|110.853 +637850.338|219598.778|111.295 +637845.315|219603.478|111.554 +637840.237|219608.227|111.691 +637835.204|219612.933|111.712 +637830.166|219617.642|111.691 +637825.128|219622.348|111.706 +637820.086|219627.060|111.661 +637815.097|219631.727|111.667 +637810.004|219636.485|111.612 +637805.005|219641.157|111.527 +637800.003|219645.830|111.411 +637794.965|219650.542|111.520 +637789.905|219655.266|111.277 +637784.900|219659.945|111.179 +637779.898|219664.618|111.182 +637774.884|219669.303|110.984 +637769.858|219673.993|110.649 +637764.832|219678.687|110.341 +637759.855|219683.336|110.064 +637754.816|219688.036|109.661 +637749.821|219692.696|109.222 +637744.776|219697.405|108.765 +637739.774|219702.072|108.283 +637734.776|219706.738|107.909 +637729.777|219711.405|107.552 +637724.821|219716.028|107.177 +637719.804|219720.710|106.653 +637714.836|219725.343|106.202 +637709.852|219729.991|105.574 +637699.855|219739.309|104.083 +637694.847|219743.976|103.291 +637689.827|219748.651|102.401 +637684.828|219753.303|101.255 +637679.848|219757.951|100.923 +637674.925|219762.550|100.721 +637670.051|219767.122|101.614 +637665.208|219771.655|101.800 +637650.614|219785.313|102.773 +637645.783|219789.845|103.611 +637641.025|219794.313|104.739 +637636.298|219798.757|106.132 +637621.859|219812.288|107.784 +637597.710|219834.885|109.070 +637592.952|219839.339|109.305 +637588.127|219843.850|109.414 +637583.299|219848.364|109.500 +637573.676|219857.361|109.628 +637564.054|219866.350|109.408 +637559.201|219870.888|109.381 +637549.622|219879.840|109.259 +637540.020|219888.811|109.049 +637535.189|219893.319|108.555 +637530.358|219897.827|108.076 +637525.466|219902.390|107.543 +637520.696|219906.843|107.220 +637515.819|219911.387|106.503 +637510.979|219915.895|105.723 +637501.247|219924.966|104.236 +637491.444|219934.089|102.026 +637486.622|219938.582|101.182 +637477.030|219947.534|100.700 +637472.330|219951.929|100.813 +637467.527|219956.412|100.581 +637457.947|219965.346|99.676 +637452.939|219969.985|97.487 +637438.869|219983.134|97.814 +637397.118|220022.185|100.060 +637387.815|220030.878|100.008 +637369.286|220048.185|99.734 +637360.127|220056.744|99.898 +637351.035|220065.248|100.517 +637142.853|220259.915|110.024 +637053.117|220343.811|118.293 +637037.733|220358.161|117.900 +637033.966|220361.675|117.891 +637217.145|220187.793|108.564 +637234.400|220171.629|107.756 +637269.330|220138.912|106.464 +637295.598|220114.272|103.492 +637336.063|220076.355|101.063 +637363.425|220050.712|99.594 +637372.752|220041.979|99.667 +637377.373|220037.654|99.621 +637391.494|220024.441|100.285 +637396.194|220020.040|100.200 +637414.921|220002.492|99.612 +637438.247|219980.611|97.472 +637447.843|219971.634|98.018 +637452.576|219967.190|97.408 +637457.642|219962.484|99.389 +637462.476|219957.967|99.828 +637467.359|219953.404|100.304 +637476.994|219944.391|100.761 +637486.759|219935.262|101.581 +637491.700|219930.654|102.620 +637526.213|219898.430|107.528 +637531.114|219893.855|108.177 +637536.018|219889.271|108.527 +637540.907|219884.696|108.799 +637545.860|219880.066|109.195 +637550.707|219875.528|109.167 +637555.571|219870.974|109.308 +637560.463|219866.396|109.277 +637565.374|219861.799|109.442 +637570.281|219857.209|109.609 +637575.170|219852.631|109.646 +637580.044|219848.065|109.564 +637584.960|219843.459|109.448 +637589.825|219838.903|109.320 +637594.738|219834.300|109.241 +637614.267|219815.988|107.863 +637638.614|219793.134|104.864 +637643.403|219788.626|103.654 +637648.276|219784.048|102.818 +637653.168|219779.454|102.166 +637658.115|219774.812|101.596 +637663.071|219770.173|101.648 +637668.015|219765.543|101.581 +637682.947|219751.571|102.151 +637687.980|219746.868|102.642 +637698.069|219737.450|104.068 +637703.089|219732.768|105.159 +637708.167|219728.025|105.812 +637713.184|219723.341|106.336 +637718.198|219718.653|106.894 +637723.202|219713.977|107.342 +637728.195|219709.308|107.686 +637733.230|219704.598|107.988 +637738.275|219699.883|108.454 +637743.264|219695.220|108.866 +637748.300|219690.511|109.292 +637753.280|219685.856|109.634 +637758.312|219681.150|110.079 +637763.329|219676.459|110.313 +637768.301|219671.808|110.633 +637773.357|219667.077|110.865 +637778.362|219662.393|111.005 +637783.312|219657.760|111.078 +637788.357|219653.038|111.158 +637793.355|219648.360|111.271 +637798.345|219643.687|111.267 +637803.383|219638.969|111.344 +637808.324|219634.345|111.374 +637813.362|219629.627|111.475 +637818.398|219624.914|111.557 +637823.378|219620.248|111.481 +637828.365|219615.581|111.581 +637833.397|219610.872|111.597 +637838.423|219606.163|111.557 +637843.443|219601.460|111.435 +637848.415|219596.800|111.240 +637853.425|219592.103|110.908 +637858.430|219587.406|110.405 +637863.435|219582.709|109.859 +637868.434|219578.015|109.198 +637873.436|219573.321|108.469 +637878.428|219568.627|107.531 +637883.415|219563.933|106.382 +637888.420|219559.233|105.668 +637893.434|219554.530|105.211 +637898.451|219549.827|104.873 +637903.544|219545.069|105.464 +637908.549|219540.399|106.461 +637913.639|219535.647|107.159 +637918.674|219530.941|107.771 +637923.709|219526.238|108.354 +637928.787|219521.493|108.722 +637933.814|219516.789|109.109 +637938.834|219512.089|109.042 +637943.896|219507.344|108.838 +637948.910|219502.644|108.539 +637953.924|219497.941|108.232 +637958.990|219493.195|108.082 +637964.056|219488.446|107.817 +637969.076|219483.746|107.707 +637974.096|219479.043|107.616 +637979.159|219474.297|107.476 +637984.182|219469.600|107.805 +637989.251|219464.861|108.122 +637994.271|219460.167|108.546 +637989.836|219460.307|108.210 +637984.804|219464.998|107.796 +637979.820|219469.643|107.467 +637974.791|219474.337|107.375 +637969.716|219479.076|107.354 +637964.736|219483.728|107.518 +637959.709|219488.425|107.634 +637954.680|219493.122|107.777 +637949.703|219497.776|108.030 +637944.628|219502.516|108.229 +637939.608|219507.213|108.652 +637934.582|219511.907|108.780 +637929.552|219516.600|108.692 +637924.514|219521.297|108.247 +637919.473|219525.994|107.817 +637914.431|219530.694|107.290 +637909.384|219535.394|106.766 +637904.327|219540.101|105.897 +637899.267|219544.807|105.004 +637894.278|219549.467|104.922 +637889.203|219554.210|105.248 +637884.186|219558.907|105.836 +637879.227|219563.552|106.717 +637874.228|219568.240|107.835 +637869.229|219572.925|108.799 +637864.221|219577.615|109.463 +637859.208|219582.306|110.033 +637854.197|219586.994|110.609 +637849.225|219591.642|110.941 +637844.153|219596.382|111.210 +637839.173|219601.036|111.408 +637834.138|219605.739|111.456 +637829.102|219610.442|111.484 +637824.061|219615.146|111.469 +637819.065|219619.809|111.383 +637814.024|219624.515|111.374 +637809.025|219629.182|111.280 +637803.978|219633.894|111.219 +637798.924|219638.609|111.024 +637793.977|219643.227|111.133 +637788.927|219647.942|111.033 +637783.919|219652.618|110.923 +637778.917|219657.287|110.941 +637773.860|219662.006|110.838 +637768.843|219666.684|110.688 +637763.823|219671.369|110.441 +637758.797|219676.057|110.182 +637753.811|219680.705|109.820 +637748.775|219685.399|109.500 +637743.737|219690.099|109.140 +637738.744|219694.753|108.796 +637733.691|219699.463|108.320 +637728.698|219704.117|108.064 +637723.647|219708.826|107.689 +637718.649|219713.486|107.387 +637713.632|219718.162|106.887 +637708.612|219722.841|106.403 +637703.619|219727.489|105.705 +637698.568|219732.189|104.925 +637693.518|219736.892|104.184 +637688.498|219741.562|103.306 +637683.432|219746.274|102.480 +637678.424|219750.937|101.828 +637658.597|219769.451|101.749 +637653.647|219774.066|101.340 +637648.767|219778.634|102.239 +637643.912|219783.179|102.849 +637610.064|219814.872|107.747 +637590.764|219832.923|109.338 +637585.887|219837.476|109.420 +637581.050|219841.993|109.442 +637576.167|219846.553|109.500 +637571.345|219851.049|109.283 +637566.511|219855.566|109.372 +637561.637|219860.111|109.180 +637551.953|219869.148|108.957 +637542.312|219878.146|108.814 +637532.611|219887.195|108.241 +637518.078|219900.741|107.015 +637513.164|219905.316|106.391 +637508.291|219909.851|105.729 +637498.549|219918.919|104.181 +637493.669|219923.461|103.583 +637483.873|219932.571|101.493 +637478.999|219937.103|100.688 +637474.217|219941.569|100.542 +637464.683|219950.472|100.200 +637459.843|219954.986|99.719 +637454.844|219959.616|97.545 +637450.168|219963.993|97.917 +637445.627|219968.257|99.210 +637375.614|220033.686|99.575 +637343.613|220063.611|100.740 +637338.974|220067.942|100.554 +637321.021|220084.743|101.950 +637307.546|220097.343|102.474 +637303.065|220101.534|102.748 +637289.727|220114.010|103.385 +637267.876|220134.474|105.912 +637241.727|220158.937|107.592 +637237.335|220163.043|107.503 +637219.897|220179.335|107.497 +637202.633|220195.468|107.604 +637181.133|220215.551|107.177 +637176.994|220219.425|107.546 +637072.895|220316.894|116.653 +637061.200|220327.833|116.766 +637034.609|220352.708|117.668 +637169.925|220223.970|107.305 +637174.147|220220.016|107.311 +637252.115|220146.983|106.854 +637265.328|220134.593|106.086 +637296.143|220105.676|103.154 +637305.086|220097.291|102.565 +637327.638|220076.150|101.599 +637336.621|220067.720|100.602 +637373.340|220033.308|99.203 +637387.401|220020.146|99.478 +637444.014|219967.138|99.588 +637448.745|219962.710|99.621 +637453.113|219958.567|96.896 +637458.218|219953.834|99.158 +637463.150|219949.228|99.981 +637467.895|219944.781|99.871 +637472.769|219940.228|100.331 +637482.495|219931.145|101.532 +637487.461|219926.518|102.754 +637492.392|219921.915|103.407 +637497.312|219917.319|104.013 +637526.810|219889.771|107.826 +637531.650|219885.242|108.070 +637541.486|219876.043|108.668 +637546.406|219871.440|108.829 +637551.203|219866.947|108.802 +637556.163|219862.308|108.933 +637561.021|219857.761|109.076 +637565.928|219853.167|109.231 +637570.802|219848.601|109.131 +637575.694|219844.023|109.201 +637580.595|219839.439|109.369 +637585.521|219834.824|109.369 +637590.450|219830.213|109.405 +637619.777|219802.720|107.805 +637629.491|219793.597|106.296 +637634.289|219789.074|104.723 +637639.096|219784.545|103.196 +637644.006|219779.939|102.736 +637648.895|219775.346|102.081 +637658.755|219766.107|101.605 +637668.668|219756.808|100.727 +637673.675|219752.132|101.422 +637678.723|219747.420|102.053 +637688.824|219737.989|103.550 +637693.875|219733.274|104.376 +637698.937|219728.553|105.370 +637704.030|219723.801|106.229 +637708.993|219719.162|106.708 +637714.055|219714.431|107.256 +637719.106|219709.710|107.710 +637724.092|219705.046|107.979 +637729.125|219700.340|108.253 +637734.108|219695.680|108.546 +637739.144|219690.971|108.954 +637744.176|219686.265|109.305 +637749.150|219681.610|109.615 +637754.173|219676.913|109.905 +637759.184|219672.223|110.082 +637764.204|219667.529|110.438 +637769.218|219662.838|110.691 +637774.223|219658.153|110.886 +637779.261|219653.435|110.847 +637784.260|219648.756|110.932 +637789.250|219644.083|110.960 +637794.245|219639.408|111.075 +637799.284|219634.689|111.112 +637804.270|219630.020|111.115 +637809.309|219625.305|111.197 +637814.298|219620.632|111.331 +637819.334|219615.920|111.383 +637824.363|219611.211|111.395 +637829.349|219606.541|111.499 +637834.369|219601.838|111.389 +637839.395|219597.132|111.341 +637844.364|219592.471|111.133 +637849.375|219587.774|110.804 +637854.383|219583.074|110.405 +637859.387|219578.380|109.835 +637864.386|219573.684|109.201 +637869.385|219568.990|108.448 +637874.329|219564.341|107.546 +637879.361|219559.608|106.318 +637884.366|219554.908|105.601 +637889.331|219550.247|105.147 +637894.397|219545.499|104.842 +637899.383|219540.832|105.165 +637904.434|219536.120|106.040 +637909.524|219531.368|106.817 +637914.514|219526.708|107.305 +637919.546|219522.002|107.854 +637924.621|219517.256|108.155 +637929.601|219512.598|108.500 +637934.621|219507.898|108.536 +637939.681|219503.153|108.244 +637944.652|219498.495|108.043 +637949.669|219493.792|107.863 +637954.732|219489.046|107.595 +637959.703|219484.389|107.488 +637964.720|219479.686|107.345 +637970.310|219474.450|107.253 +637974.754|219470.277|106.729 +637979.781|219465.586|107.506 +637984.849|219460.846|107.857 +637981.152|219460.203|107.656 +637976.169|219464.854|107.284 +637971.091|219469.600|107.055 +637966.113|219474.255|107.198 +637961.087|219478.958|107.244 +637956.058|219483.661|107.342 +637951.077|219488.318|107.439 +637946.051|219493.021|107.558 +637941.025|219497.724|107.793 +637936.051|219502.382|108.174 +637931.076|219507.039|108.369 +637926.047|219511.739|108.314 +637921.058|219516.396|107.979 +637916.065|219521.057|107.503 +637911.021|219525.760|106.939 +637906.025|219530.423|106.458 +637901.023|219535.087|105.787 +637896.009|219539.756|104.830 +637891.020|219544.423|104.797 +637885.993|219549.126|105.104 +637881.071|219553.740|105.644 +637876.112|219558.392|106.567 +637871.119|219563.083|107.741 +637866.212|219567.688|108.613 +637861.250|219572.339|109.286 +637856.288|219576.991|109.871 +637851.322|219581.642|110.356 +637846.354|219586.293|110.822 +637841.425|219590.908|111.066 +637836.448|219595.565|111.252 +637831.468|219600.226|111.408 +637826.530|219604.843|111.466 +637821.534|219609.510|111.331 +637816.542|219614.179|111.255 +637811.595|219618.803|111.216 +637806.596|219623.476|111.082 +637801.646|219628.103|111.002 +637796.650|219632.772|110.981 +637791.697|219637.402|110.877 +637786.741|219642.035|110.765 +637781.739|219646.711|110.707 +637776.829|219651.301|110.624 +637771.830|219655.977|110.633 +637766.868|219660.613|110.560 +637761.897|219665.255|110.326 +637756.926|219669.903|110.094 +637751.994|219674.509|109.801 +637746.968|219679.202|109.585 +637742.033|219683.811|109.305 +637737.046|219688.468|108.981 +637732.060|219693.126|108.725 +637727.113|219697.747|108.347 +637722.130|219702.401|108.198 +637717.137|219707.064|107.945 +637712.175|219711.697|107.497 +637707.161|219716.376|107.031 +637702.183|219721.021|106.439 +637697.139|219725.724|105.702 +637692.165|219730.354|104.681 +637687.129|219735.054|104.117 +637682.112|219739.727|103.248 +637677.071|219744.421|102.154 +637672.045|219749.105|101.285 +637667.049|219753.757|100.246 +637662.181|219758.329|101.209 +637657.234|219762.956|101.316 +637652.355|219767.525|101.627 +637647.392|219772.164|101.608 +637637.642|219781.305|102.901 +637613.614|219803.866|107.936 +637574.603|219840.366|109.042 +637569.708|219844.941|109.006 +637564.855|219849.476|108.917 +637559.957|219854.054|108.908 +637555.081|219858.611|108.677 +637550.219|219863.156|108.600 +637545.367|219867.694|108.610 +637540.471|219872.266|108.317 +637535.634|219876.786|108.098 +637530.776|219881.328|108.149 +637486.787|219922.363|102.892 +637481.779|219927.024|101.761 +637476.875|219931.593|100.697 +637472.019|219936.125|100.374 +637467.197|219940.624|99.975 +637462.382|219945.117|99.627 +637457.480|219949.686|99.078 +637448.074|219958.485|99.728 +637429.198|219976.127|100.164 +637424.416|219980.589|99.911 +637358.966|220041.735|99.901 +637354.363|220046.033|99.853 +637340.717|220058.798|100.703 +637336.142|220063.071|100.590 +637327.117|220071.514|101.413 +637318.113|220079.936|101.831 +637304.605|220092.567|102.434 +637286.652|220109.346|102.901 +637212.613|220178.597|107.631 +637208.233|220182.684|107.464 +637199.598|220190.746|107.299 +637182.379|220206.824|106.930 +637178.128|220210.799|107.003 +637169.761|220218.617|107.360 +637161.440|220226.402|107.957 +637157.297|220230.273|108.137 +637153.119|220234.180|108.158 +637144.773|220241.977|108.320 +637140.768|220245.729|108.914 +637116.637|220268.303|111.213 +637093.079|220290.346|114.117 +637089.135|220294.034|114.239 +637190.036|220197.781|106.546 +637207.611|220181.322|107.631 +637273.219|220119.731|103.934 +637336.557|220060.279|100.609 +637345.704|220051.690|100.075 +637368.792|220030.013|99.018 +637444.709|219958.848|101.544 +637449.229|219954.578|99.868 +637453.594|219950.423|96.802 +637458.703|219945.677|99.139 +637463.610|219941.087|99.810 +637468.441|219936.561|99.959 +637473.336|219931.980|100.615 +637478.231|219927.402|101.285 +637493.066|219913.536|103.897 +637497.943|219908.973|104.580 +637502.883|219904.356|105.418 +637507.772|219899.781|105.888 +637512.701|219895.163|106.351 +637517.578|219890.597|106.793 +637542.053|219867.670|108.277 +637546.912|219863.113|108.363 +637551.822|219858.511|108.488 +637566.492|219844.758|108.948 +637571.427|219840.131|108.963 +637576.325|219835.538|109.122 +637615.559|219798.709|107.631 +637625.300|219789.540|105.930 +637630.055|219785.054|104.403 +637634.932|219780.451|103.148 +637644.716|219771.252|101.870 +637654.616|219761.956|101.316 +637659.603|219757.277|101.206 +637664.489|219752.681|100.563 +637669.539|219747.956|101.200 +637674.654|219743.177|102.066 +637679.683|219738.480|103.087 +637684.795|219733.704|104.022 +637689.854|219728.973|104.982 +637694.908|219724.252|105.888 +637699.980|219719.506|106.522 +637705.006|219714.803|107.211 +637710.062|219710.073|107.674 +637715.107|219705.351|108.064 +637720.142|219700.636|108.357 +637725.171|219695.927|108.579 +637730.195|219691.221|108.771 +637735.227|219686.512|109.122 +637740.247|219681.808|109.314 +637745.270|219677.105|109.606 +637750.324|219672.369|109.658 +637755.341|219667.669|109.945 +637760.355|219662.975|110.170 +637765.417|219658.235|110.435 +637770.413|219653.550|110.451 +637775.461|219648.823|110.560 +637780.505|219644.096|110.637 +637785.498|219639.414|110.682 +637790.536|219634.692|110.719 +637795.580|219629.965|110.874 +637800.573|219625.286|110.963 +637805.611|219620.568|111.039 +637810.647|219615.847|111.124 +637815.636|219611.171|111.234 +637820.665|219606.456|111.246 +637825.701|219601.740|111.377 +637830.727|219597.028|111.328 +637835.747|219592.319|111.173 +637840.761|219587.613|110.938 +637845.778|219582.907|110.731 +637850.783|219578.204|110.240 +637855.788|219573.504|109.701 +637860.789|219568.804|109.088 +637865.837|219564.058|108.439 +637870.781|219559.407|107.445 +637875.813|219554.667|106.260 +637880.812|219549.964|105.357 +637885.823|219545.255|104.885 +637890.840|219540.546|104.534 +637895.927|219535.785|104.934 +637900.974|219531.069|105.702 +637906.016|219526.354|106.330 +637911.048|219521.645|106.772 +637916.083|219516.936|107.354 +637921.164|219512.181|107.796 +637926.187|219507.475|108.024 +637931.208|219502.769|108.018 +637936.221|219498.062|107.649 +637941.239|219493.356|107.418 +637946.252|219488.647|107.101 +637951.276|219483.941|107.095 +637956.296|219479.232|107.058 +637961.316|219474.526|106.951 +637966.333|219469.820|106.918 +637971.353|219465.117|107.037 +637976.327|219460.459|107.351 +637974.636|219457.905|107.302 +637969.558|219462.645|107.012 +637964.477|219467.378|106.141 +637959.411|219472.124|106.778 +637954.336|219476.867|106.860 +637949.310|219481.564|106.778 +637944.235|219486.306|106.790 +637939.166|219491.049|107.180 +637934.143|219495.749|107.412 +637929.074|219500.492|107.713 +637924.002|219505.234|107.759 +637918.970|219509.931|107.549 +637913.931|219514.631|107.095 +637908.838|219519.377|106.403 +637903.797|219524.080|105.851 +637898.755|219528.783|105.452 +637893.656|219533.535|104.790 +637888.663|219538.196|104.498 +637883.640|219542.896|104.845 +637878.620|219547.596|105.318 +637873.618|219552.290|106.250 +637868.629|219556.974|107.467 +637863.682|219561.616|108.512 +637858.671|219566.310|109.116 +637853.712|219570.959|109.701 +637848.747|219575.607|110.164 +637843.733|219580.301|110.582 +637838.761|219584.949|110.944 +637833.787|219589.603|111.121 +637828.807|219594.261|111.274 +637823.823|219598.921|111.283 +637818.879|219603.542|111.207 +637813.890|219608.205|111.203 +637808.897|219612.872|111.100 +637803.947|219617.496|111.005 +637798.948|219622.168|110.826 +637793.995|219626.795|110.737 +637789.042|219631.422|110.606 +637784.086|219636.052|110.484 +637779.136|219640.682|110.448 +637774.135|219645.357|110.374 +637769.227|219649.942|110.356 +637764.265|219654.578|110.210 +637759.303|219659.217|110.064 +637754.384|219663.810|109.932 +637749.412|219668.455|109.719 +637744.481|219673.061|109.423 +637739.515|219677.700|109.378 +637734.593|219682.302|109.247 +637729.658|219686.911|109.000 +637724.723|219691.516|108.811 +637719.783|219696.134|108.518 +637714.851|219700.740|108.402 +637709.950|219705.315|108.088 +637704.942|219709.990|107.656 +637700.013|219714.587|107.067 +637695.033|219719.232|106.461 +637690.092|219723.837|105.793 +637685.072|219728.513|104.793 +637680.104|219733.140|103.882 +637675.108|219737.788|102.730 +637670.091|219742.464|101.910 +637665.028|219747.164|100.106 +637660.167|219751.718|100.602 +637650.395|219760.859|101.066 +637645.481|219765.455|101.011 +637640.687|219769.948|101.742 +637635.844|219774.492|102.431 +637631.000|219779.031|103.166 +637626.261|219783.487|104.431 +637621.539|219787.928|105.882 +637607.058|219801.498|107.549 +637544.083|219860.379|108.101 +637539.197|219864.945|107.845 +637534.397|219869.435|107.906 +637529.550|219873.958|107.637 +637524.704|219878.484|107.406 +637480.737|219919.483|101.639 +637470.983|219928.572|100.261 +637466.118|219933.114|99.871 +637461.321|219937.597|99.655 +637456.484|219942.114|99.167 +637442.374|219955.324|99.959 +637413.879|219981.967|99.225 +637399.797|219995.140|99.426 +637371.719|220021.405|99.328 +637343.985|220047.356|99.911 +637307.540|220081.472|101.261 +637303.010|220085.715|101.508 +637294.016|220094.134|101.864 +637280.638|220106.667|102.846 +637267.306|220119.152|103.666 +637227.868|220156.093|106.406 +637214.725|220168.386|106.461 +637180.179|220200.704|106.799 +637159.154|220220.397|108.082 +637154.829|220224.436|107.906 +637134.050|220243.888|108.884 +637105.759|220270.412|111.661 +637081.942|220292.733|113.590 +637058.441|220314.745|114.910 +637050.776|220321.929|115.614 +637046.841|220325.608|115.483 +637035.609|220336.145|116.973 +637156.377|220220.803|108.155 +637181.480|220197.260|106.638 +637207.440|220172.949|107.259 +637290.514|220095.021|101.688 +637295.034|220090.787|101.651 +637308.625|220078.046|101.282 +637313.136|220073.816|100.990 +637317.635|220069.594|100.666 +637322.188|220065.330|100.636 +637345.128|220043.823|100.087 +637434.486|219960.094|100.923 +637443.834|219951.310|99.606 +637448.528|219946.903|99.109 +637453.122|219942.568|97.603 +637458.139|219937.899|99.341 +637462.982|219933.363|99.591 +637467.834|219928.825|99.920 +637472.733|219924.247|100.612 +637477.634|219919.666|101.352 +637487.500|219910.455|103.038 +637497.391|219901.216|104.711 +637502.301|219896.623|105.351 +637512.070|219887.479|105.943 +637517.044|219882.834|106.787 +637521.897|219878.292|107.098 +637526.822|219873.680|107.223 +637536.552|219864.567|107.396 +637546.299|219855.438|107.811 +637551.210|219850.839|107.960 +637556.156|219846.212|108.439 +637561.061|219841.618|108.600 +637570.866|219832.435|108.960 +637585.606|219818.624|109.085 +637600.188|219804.930|107.521 +637605.074|219800.345|107.256 +637610.021|219795.706|107.122 +637634.274|219772.889|102.343 +637639.117|219768.338|101.694 +637644.024|219763.718|100.727 +637648.999|219759.063|100.956 +637653.988|219754.385|100.901 +637658.950|219749.727|100.520 +637663.843|219745.131|99.935 +637669.012|219740.324|101.950 +637674.096|219735.581|103.035 +637679.153|219730.857|103.891 +637684.264|219726.087|104.858 +637689.281|219721.405|105.915 +637694.365|219716.653|106.671 +637699.388|219711.959|107.299 +637704.445|219707.226|107.790 +637709.493|219702.498|108.210 +637714.479|219697.826|108.515 +637719.508|219693.114|108.753 +637724.531|219688.407|108.939 +637729.548|219683.704|109.088 +637734.617|219678.956|109.301 +637739.622|219674.262|109.326 +637744.639|219669.562|109.533 +637749.702|219664.816|109.759 +637754.701|219660.125|109.804 +637759.715|219655.431|110.036 +637764.765|219650.694|110.158 +637769.764|219646.010|110.237 +637774.851|219641.236|110.274 +637779.892|219636.509|110.316 +637784.894|219631.824|110.493 +637789.975|219627.057|110.463 +637795.020|219622.327|110.685 +637800.058|219617.605|110.780 +637805.099|219612.878|110.969 +637810.138|219608.156|111.088 +637815.167|219603.441|111.094 +637820.251|219598.677|111.255 +637825.274|219593.962|111.225 +637830.297|219589.250|111.158 +637835.366|219584.495|111.021 +637840.380|219579.786|110.771 +637845.434|219575.037|110.384 +637850.438|219570.337|109.878 +637855.492|219565.585|109.439 +637860.494|219560.885|108.838 +637865.535|219556.139|107.979 +637870.519|219551.445|106.784 +637875.551|219546.700|105.604 +637880.608|219541.948|104.989 +637885.618|219537.239|104.519 +637890.696|219532.478|104.611 +637895.781|219527.717|105.053 +637900.816|219523.001|105.421 +637905.891|219518.246|105.647 +637910.981|219513.488|106.500 +637916.019|219508.776|107.226 +637921.091|219504.021|107.445 +637926.157|219499.269|107.403 +637931.174|219494.560|107.204 +637936.237|219489.808|106.933 +637941.303|219485.054|106.848 +637946.320|219480.344|106.543 +637951.388|219475.593|106.622 +637956.457|219470.838|106.650 +637961.471|219466.129|106.205 +637966.494|219461.425|106.756 +637971.563|219456.677|107.113 +637962.916|219460.523|106.467 +637957.795|219465.318|106.430 +637952.723|219470.064|106.388 +637947.652|219474.815|106.421 +637942.528|219479.610|106.412 +637937.459|219484.362|106.659 +637932.390|219489.114|106.866 +637927.273|219493.908|107.089 +637922.155|219498.703|107.165 +637917.080|219503.451|107.089 +637911.996|219508.203|106.705 +637906.851|219513.001|105.732 +637901.764|219517.759|105.226 +637896.680|219522.514|104.946 +637891.544|219527.314|104.675 +637886.505|219532.026|104.431 +637881.388|219536.824|104.653 +637876.325|219541.576|105.217 +637871.326|219546.276|106.220 +637866.239|219551.058|107.375 +637861.201|219555.798|108.433 +637856.196|219560.495|109.137 +637851.139|219565.241|109.698 +637846.083|219569.983|110.158 +637841.069|219574.686|110.554 +637836.003|219579.435|110.850 +637830.937|219584.184|111.075 +637825.908|219588.893|111.139 +637820.876|219593.599|111.164 +637815.792|219598.354|111.085 +637810.802|219603.024|110.999 +637805.764|219607.736|110.929 +637800.719|219612.451|110.792 +637795.715|219617.130|110.527 +637790.673|219621.845|110.496 +637785.629|219626.563|110.377 +637780.630|219631.239|110.313 +637775.622|219635.918|110.128 +637770.623|219640.596|110.082 +637765.625|219645.272|110.067 +637760.617|219649.957|109.926 +637755.655|219654.596|109.792 +637750.686|219659.238|109.631 +637745.724|219663.880|109.548 +637740.759|219668.522|109.448 +637735.739|219673.216|109.253 +637730.829|219677.813|109.283 +637725.851|219682.464|109.100 +637720.929|219687.069|109.012 +637715.942|219691.730|108.768 +637711.007|219696.341|108.585 +637706.100|219700.926|108.168 +637701.101|219705.595|107.823 +637696.185|219710.185|107.372 +637691.208|219714.834|106.781 +637686.215|219719.491|106.031 +637681.207|219724.161|105.165 +637676.211|219728.809|103.940 +637671.234|219733.448|102.980 +637666.186|219738.148|101.809 +637661.243|219742.753|100.767 +637656.238|219747.426|100.176 +637651.407|219751.952|100.450 +637627.178|219774.663|102.788 +637622.426|219779.128|103.940 +637617.687|219783.588|105.178 +637612.932|219788.056|106.290 +637603.306|219797.072|106.894 +637598.509|219801.565|107.153 +637579.404|219819.475|109.015 +637569.711|219828.536|108.802 +637564.862|219833.072|108.689 +637560.018|219837.595|108.271 +637555.224|219842.079|108.268 +637550.353|219846.626|107.643 +637545.491|219851.174|107.537 +637540.731|219855.624|107.491 +637535.872|219860.163|107.052 +637531.044|219864.677|106.909 +637516.645|219878.140|106.494 +637511.777|219882.687|106.129 +637497.208|219896.284|104.367 +637492.374|219900.802|103.992 +637482.681|219909.845|102.815 +637477.783|219914.408|101.727 +637472.931|219918.934|101.005 +637468.017|219923.515|100.246 +637463.250|219927.969|99.847 +637458.376|219932.519|99.405 +637453.658|219936.933|99.383 +637448.577|219941.636|96.924 +637444.200|219945.778|99.612 +637425.421|219963.347|100.203 +637350.474|220033.408|99.551 +637327.507|220054.894|100.234 +637309.378|220071.862|101.139 +637304.864|220076.086|101.435 +637300.383|220080.277|101.672 +637295.826|220084.542|101.764 +637277.852|220101.354|102.358 +637264.630|220113.735|103.443 +637225.134|220150.705|105.775 +637115.232|220253.517|109.762 +637075.480|220290.742|112.965 +637059.859|220305.367|114.041 +637036.892|220326.864|115.452 +637207.160|220164.722|106.174 +637220.123|220152.543|105.598 +637224.582|220148.355|105.537 +637233.348|220140.119|105.211 +637242.035|220131.947|104.306 +637264.182|220111.138|103.288 +637277.532|220098.590|102.462 +637286.490|220090.168|101.938 +637295.494|220081.707|101.456 +637318.189|220060.386|100.572 +637322.725|220056.122|100.206 +637327.352|220051.775|100.075 +637336.572|220043.125|99.972 +637350.462|220030.098|99.853 +637369.003|220012.691|98.923 +637435.425|219950.420|99.828 +637449.415|219937.256|97.381 +637454.441|219932.574|99.197 +637459.291|219928.033|99.502 +637464.091|219923.528|99.487 +637469.047|219918.904|100.578 +637478.877|219909.711|101.956 +637488.747|219900.485|103.407 +637493.681|219895.870|104.193 +637498.564|219891.301|104.614 +637518.178|219872.943|106.510 +637523.076|219868.350|106.446 +637532.803|219859.230|106.601 +637537.682|219854.658|106.854 +637547.525|219845.438|107.299 +637557.345|219836.245|108.094 +637562.286|219831.612|108.168 +637567.233|219826.982|108.762 +637572.128|219822.395|108.917 +637577.051|219817.780|108.920 +637591.562|219804.146|107.555 +637596.466|219799.535|107.025 +637601.300|219794.996|106.726 +637606.229|219790.369|106.421 +637611.078|219785.809|105.845 +637630.467|219767.552|102.023 +637635.316|219762.995|101.441 +637645.088|219753.805|100.057 +637660.072|219739.763|100.602 +637665.162|219735.011|101.724 +637675.294|219725.557|104.175 +637680.378|219720.814|105.409 +637685.419|219716.099|106.202 +637690.452|219711.392|106.942 +637695.469|219706.702|107.506 +637700.473|219702.020|107.951 +637705.472|219697.341|108.393 +637710.456|219692.678|108.640 +637715.485|219687.972|108.890 +637720.456|219683.314|109.052 +637725.464|219678.620|109.088 +637730.469|219673.932|109.070 +637735.425|219669.287|109.091 +637740.442|219664.587|109.347 +637745.444|219659.902|109.347 +637750.449|219655.215|109.487 +637755.453|219650.527|109.612 +637760.406|219645.888|109.673 +637765.411|219641.200|109.875 +637770.456|219636.475|109.939 +637775.445|219631.800|109.926 +637780.493|219627.072|110.143 +637785.479|219622.397|110.128 +637790.527|219617.672|110.341 +637795.565|219612.951|110.484 +637800.561|219608.275|110.691 +637805.602|219603.557|110.883 +637810.631|219598.842|110.920 +637815.618|219594.172|111.042 +637820.693|219589.417|111.075 +637825.716|219584.708|111.005 +637830.739|219579.999|110.957 +637835.756|219575.296|110.819 +637840.810|219570.550|110.432 +637845.772|219565.896|110.079 +637850.822|219561.150|109.615 +637855.824|219556.453|109.024 +637860.817|219551.759|108.226 +637865.858|219547.020|107.320 +637870.842|219542.326|106.098 +637875.831|219537.629|105.025 +637880.888|219532.880|104.553 +637885.957|219528.128|104.327 +637890.986|219523.416|104.501 +637896.061|219518.661|104.641 +637901.090|219513.952|104.812 +637906.174|219509.200|105.397 +637911.264|219504.445|106.238 +637916.297|219499.742|106.799 +637921.317|219495.036|106.808 +637926.428|219490.244|106.671 +637936.508|219480.789|106.336 +637941.574|219476.041|106.205 +637946.640|219471.292|106.174 +637951.663|219466.586|106.250 +637956.725|219461.840|106.250 +637961.794|219457.094|106.409 +637956.978|219457.091|105.973 +637951.907|219461.843|106.068 +637946.835|219466.592|105.830 +637941.808|219471.298|105.805 +637936.734|219476.050|105.787 +637931.665|219480.805|106.037 +637926.642|219485.511|106.208 +637921.573|219490.266|106.360 +637916.501|219495.014|106.363 +637911.463|219499.724|105.741 +637906.369|219504.479|105.031 +637901.282|219509.236|104.510 +637896.247|219513.949|104.309 +637891.169|219518.704|104.263 +637886.091|219523.462|104.187 +637881.062|219528.174|104.217 +637875.953|219532.968|104.787 +637870.906|219537.714|105.815 +637865.913|219542.414|106.881 +637860.872|219547.154|107.893 +637855.827|219551.896|108.735 +637850.826|219556.593|109.426 +637845.769|219561.339|109.935 +637840.709|219566.088|110.307 +637835.695|219570.791|110.670 +637830.629|219575.540|110.929 +637825.603|219580.249|110.987 +637820.574|219584.961|111.002 +637815.490|219589.722|110.896 +637810.455|219594.440|110.810 +637805.419|219599.156|110.746 +637800.329|219603.923|110.627 +637795.285|219608.644|110.451 +637790.240|219613.369|110.295 +637785.193|219618.096|110.118 +637780.139|219622.823|109.905 +637775.098|219627.548|109.878 +637770.053|219632.275|109.847 +637765.045|219636.963|109.637 +637759.998|219641.691|109.606 +637754.938|219646.427|109.439 +637749.933|219651.115|109.359 +637744.923|219655.809|109.225 +637739.869|219660.543|109.177 +637734.913|219665.188|109.213 +637729.853|219669.927|109.146 +637724.873|219674.588|108.884 +637719.871|219679.276|109.006 +637714.860|219683.973|108.985 +637709.877|219688.636|108.777 +637704.850|219693.342|108.637 +637699.855|219698.018|108.293 +637694.850|219702.700|107.875 +637689.830|219707.390|107.314 +637684.801|219712.090|106.686 +637679.808|219716.754|105.940 +637674.751|219721.475|105.074 +637669.689|219726.194|103.605 +637664.626|219730.921|102.767 +637654.510|219740.348|100.285 +637649.614|219744.939|100.353 +637644.631|219749.602|100.029 +637639.687|219754.235|100.151 +637634.838|219758.789|100.801 +637625.133|219767.906|101.992 +637620.302|219772.450|102.803 +637605.964|219785.941|105.836 +637601.118|219790.491|106.522 +637596.280|219795.033|106.817 +637591.449|219799.565|107.201 +637586.633|219804.088|107.729 +637577.057|219813.083|108.878 +637572.177|219817.652|108.878 +637567.337|219822.187|108.820 +637562.469|219826.741|108.527 +637547.802|219840.463|107.305 +637528.465|219858.565|106.692 +637513.999|219872.111|106.089 +637504.319|219881.166|105.412 +637489.737|219894.794|103.605 +637480.008|219903.883|102.123 +637470.282|219912.963|100.484 +637465.454|219917.477|99.938 +637460.650|219921.973|99.621 +637455.828|219926.481|99.191 +637451.101|219930.910|99.094 +637446.087|219935.567|97.073 +637394.676|219983.768|99.673 +637371.075|220005.839|97.920 +637339.017|220035.895|99.801 +637320.759|220053.007|100.304 +637316.211|220057.271|100.639 +637302.703|220069.939|101.352 +637284.652|220086.855|101.889 +637275.691|220095.255|102.468 +637271.208|220099.458|102.486 +637266.770|220103.619|102.770 +637253.489|220116.073|103.617 +637244.696|220124.318|104.214 +637231.513|220136.681|105.013 +637222.790|220144.855|105.354 +637214.033|220153.064|105.592 +637209.714|220157.112|105.903 +637187.945|220177.500|105.891 +637183.675|220181.502|106.034 +637175.339|220189.332|107.314 +637142.192|220220.452|111.402 +637133.806|220228.307|111.542 +637104.604|220255.638|111.042 +637100.507|220259.470|110.877 +637092.296|220267.151|110.749 +637084.301|220274.646|111.353 +637037.581|220318.433|115.050 +637181.285|220181.304|106.065 +637185.528|220177.314|105.571 +637237.911|220128.131|104.062 +637260.061|220107.325|103.017 +637264.535|220103.125|102.922 +637273.372|220094.822|102.203 +637277.898|220090.574|102.178 +637286.932|220082.091|101.800 +637300.508|220069.341|101.361 +637305.068|220065.065|101.346 +637309.597|220060.807|100.904 +637323.267|220047.962|100.133 +637327.849|220043.656|99.767 +637332.439|220039.343|99.749 +637369.430|220004.565|97.737 +637383.533|219991.321|97.856 +637393.183|219982.290|99.359 +637397.953|219977.813|99.517 +637426.531|219950.981|100.002 +637445.282|219933.315|97.152 +637450.369|219928.575|99.039 +637455.164|219924.070|98.947 +637460.022|219919.513|99.338 +637464.975|219914.877|100.063 +637469.843|219910.314|100.581 +637474.787|219905.685|101.325 +637479.755|219901.036|102.273 +637489.609|219891.810|103.678 +637499.448|219882.593|104.729 +637504.380|219877.969|105.217 +637509.309|219873.348|105.729 +637514.198|219868.764|105.936 +637519.068|219864.192|106.034 +637523.942|219859.617|106.196 +637533.748|219850.418|106.625 +637538.603|219845.852|106.305 +637543.553|219841.210|106.799 +637548.509|219836.568|107.342 +637573.231|219813.379|108.905 +637578.151|219808.758|108.899 +637582.948|219804.241|108.232 +637587.819|219799.650|107.387 +637592.687|219795.069|106.942 +637597.609|219790.439|106.580 +637602.437|219785.892|105.781 +637621.862|219767.573|101.825 +637626.794|219762.937|101.590 +637631.732|219758.289|100.941 +637641.534|219749.063|99.904 +637646.542|219744.363|100.033 +637656.604|219734.938|101.422 +637661.700|219730.177|102.648 +637666.799|219725.413|103.961 +637671.871|219720.671|105.022 +637676.873|219715.989|105.885 +637681.957|219711.228|106.641 +637686.989|219706.519|107.348 +637692.043|219701.779|107.851 +637697.047|219697.088|108.338 +637702.025|219692.416|108.561 +637707.057|219687.694|108.878 +637712.019|219683.031|108.945 +637717.027|219678.328|108.975 +637722.026|219673.631|108.945 +637726.976|219668.979|108.905 +637731.990|219664.273|109.119 +637737.028|219659.537|109.018 +637741.981|219654.885|109.094 +637747.029|219650.146|109.177 +637752.034|219645.446|109.344 +637757.032|219640.755|109.445 +637762.071|219636.018|109.497 +637767.069|219631.327|109.643 +637772.059|219626.640|109.661 +637777.097|219621.909|109.786 +637782.084|219617.224|109.844 +637787.131|219612.488|110.103 +637792.170|219607.757|110.295 +637797.159|219603.072|110.478 +637802.195|219598.345|110.670 +637807.224|219593.624|110.755 +637812.207|219588.945|110.871 +637817.233|219584.224|110.984 +637822.257|219579.505|110.990 +637827.277|219574.787|110.947 +637832.288|219570.075|110.749 +637837.292|219565.366|110.435 +637842.300|219560.656|110.137 +637847.299|219555.950|109.615 +637852.249|219551.290|109.076 +637857.290|219546.541|108.332 +637862.280|219541.835|107.515 +637867.269|219537.132|106.586 +637872.256|219532.426|105.534 +637877.291|219527.674|104.498 +637882.260|219523.001|104.239 +637887.325|219518.240|104.135 +637892.342|219513.525|104.031 +637897.366|219508.807|104.050 +637902.434|219504.046|104.144 +637907.470|219499.327|104.800 +637912.505|219494.612|105.510 +637917.580|219489.854|106.034 +637927.657|219480.381|105.799 +637932.668|219475.669|105.507 +637937.733|219470.908|105.473 +637942.750|219466.196|105.644 +637947.816|219461.441|105.805 +637952.830|219456.728|105.607 +637944.238|219460.270|105.610 +637934.176|219469.679|105.147 +637929.150|219474.386|105.153 +637924.124|219479.092|105.275 +637919.150|219483.755|105.504 +637914.117|219488.458|105.223 +637909.076|219493.167|104.614 +637904.083|219497.831|104.126 +637899.042|219502.540|103.681 +637894.013|219507.249|103.718 +637889.032|219511.916|103.815 +637884.006|219516.625|104.010 +637878.977|219521.334|104.117 +637874.015|219525.994|104.778 +637869.022|219530.691|106.010 +637864.069|219535.343|106.945 +637859.119|219539.997|107.823 +637854.114|219544.694|108.512 +637849.158|219549.345|109.216 +637844.147|219554.045|109.679 +637839.139|219558.745|110.185 +637834.217|219563.357|110.469 +637829.200|219568.060|110.704 +637824.177|219572.766|110.893 +637819.193|219577.430|110.893 +637814.210|219582.099|110.893 +637809.171|219586.814|110.768 +637804.182|219591.487|110.658 +637799.186|219596.160|110.524 +637794.191|219600.835|110.393 +637789.140|219605.563|110.124 +637784.138|219610.244|109.923 +637779.176|219614.883|109.634 +637774.132|219619.608|109.570 +637769.127|219624.290|109.426 +637764.180|219628.926|109.436 +637759.126|219633.656|109.335 +637754.164|219638.298|109.173 +637749.162|219642.983|109.152 +637744.154|219647.674|109.033 +637739.183|219652.325|108.820 +637734.227|219656.964|108.866 +637729.222|219661.652|108.905 +637724.260|219666.300|108.887 +637719.243|219670.997|108.753 +637714.330|219675.600|108.826 +637709.325|219680.288|108.933 +637704.351|219684.948|108.817 +637699.370|219689.608|108.671 +637694.371|219694.281|108.344 +637689.412|219698.917|107.918 +637684.395|219703.608|107.403 +637679.366|219708.305|106.766 +637674.319|219713.020|105.961 +637669.317|219717.687|105.193 +637664.278|219722.384|104.065 +637659.170|219727.141|102.709 +637654.113|219731.857|101.450 +637644.052|219741.254|100.249 +637639.145|219745.850|100.237 +637634.109|219750.559|99.920 +637624.359|219759.716|101.154 +637619.503|219764.272|101.752 +637614.636|219768.850|102.678 +637609.820|219773.380|103.684 +637605.037|219777.882|104.986 +637590.520|219791.512|106.784 +637585.692|219796.045|107.189 +637571.192|219809.654|108.811 +637566.306|219814.229|108.774 +637546.634|219832.618|106.900 +637536.863|219841.756|106.287 +637531.974|219846.331|105.976 +637522.247|219855.438|105.885 +637507.632|219869.108|104.955 +637493.017|219882.776|103.913 +637483.291|219891.868|103.117 +637473.458|219901.042|101.291 +637468.545|219905.630|100.468 +637458.831|219914.707|99.362 +637454.012|219919.209|98.960 +637435.017|219937.009|99.121 +637406.819|219963.453|100.048 +637397.428|219972.256|100.023 +637383.121|219985.634|98.478 +637364.211|220003.334|97.311 +637332.195|220033.384|99.767 +637327.547|220037.736|99.469 +637322.990|220042.010|99.725 +637309.417|220054.750|100.791 +637300.398|220063.215|101.377 +637260.012|220101.086|102.651 +637251.130|220109.419|103.248 +637246.723|220113.555|103.480 +637233.537|220125.927|104.187 +637229.112|220130.076|104.394 +637220.419|220138.232|104.873 +637202.822|220154.725|105.001 +637189.859|220166.886|105.516 +637181.182|220175.019|105.632 +637123.370|220229.337|113.142 +637106.560|220245.074|112.179 +637093.987|220256.839|111.136 +637089.702|220260.841|110.441 +637081.859|220268.214|111.648 +637077.696|220272.104|111.075 +637065.839|220283.235|111.999 +637061.965|220286.874|112.435 +637058.073|220290.529|112.813 +637050.303|220297.823|113.438 +637038.739|220308.677|114.300 +637140.421|220211.177|112.676 +637181.636|220172.327|105.507 +637185.967|220168.258|105.431 +637199.006|220156.002|105.043 +637203.319|220151.945|104.705 +637221.013|220135.327|104.912 +637229.742|220127.116|104.156 +637238.606|220118.786|103.891 +637243.013|220114.641|103.650 +637251.825|220106.350|102.968 +637256.373|220102.080|102.965 +637260.841|220097.880|102.852 +637265.279|220093.710|102.584 +637274.262|220085.261|102.157 +637278.818|220080.981|102.032 +637283.290|220076.775|101.739 +637287.834|220072.502|101.608 +637301.480|220059.676|101.054 +637310.621|220051.084|100.642 +637324.301|220038.215|99.411 +637328.961|220033.844|99.508 +637333.579|220029.510|99.673 +637356.619|220007.848|97.856 +637380.116|219985.792|97.689 +637413.693|219954.325|100.389 +637423.026|219945.543|99.274 +637437.284|219932.144|98.603 +637446.669|219923.311|97.295 +637451.589|219918.709|98.057 +637456.545|219914.079|99.118 +637461.406|219909.522|99.554 +637466.274|219904.962|100.066 +637471.227|219900.329|100.862 +637490.978|219881.843|103.596 +637505.648|219868.097|104.839 +637510.540|219863.509|105.086 +637515.368|219858.980|105.214 +637525.164|219849.790|105.534 +637530.081|219845.179|105.665 +637534.955|219840.607|105.903 +637544.769|219831.408|106.574 +637549.737|219826.759|107.247 +637579.233|219799.087|108.055 +637584.049|219794.548|107.144 +637588.919|219789.967|106.744 +637593.772|219785.404|106.162 +637613.182|219767.116|102.504 +637617.997|219762.578|101.584 +637622.935|219757.929|100.929 +637627.870|219753.293|100.746 +637632.683|219748.758|99.801 +637637.715|219744.040|100.167 +637642.723|219739.343|100.292 +637647.685|219734.688|100.468 +637652.754|219729.946|101.328 +637657.820|219725.218|102.754 +637662.925|219720.451|104.169 +637668.000|219715.708|105.263 +637673.047|219710.990|106.083 +637678.080|219706.278|106.793 +637683.103|219701.575|107.424 +637688.114|219696.881|107.963 +637693.113|219692.199|108.347 +637698.145|219687.478|108.643 +637703.119|219682.814|108.777 +637708.087|219678.151|108.920 +637713.086|219673.457|108.820 +637718.100|219668.754|108.942 +637723.038|219664.112|108.728 +637728.046|219659.415|108.789 +637733.044|219654.721|108.783 +637738.037|219650.033|108.713 +637743.048|219645.333|108.905 +637748.041|219640.645|108.893 +637753.091|219635.909|109.039 +637758.093|219631.215|109.207 +637763.092|219626.527|109.326 +637768.081|219621.842|109.338 +637773.077|219617.154|109.469 +637778.115|219612.427|109.561 +637783.163|219607.693|109.792 +637788.158|219603.008|110.051 +637793.209|219598.275|110.399 +637798.241|219593.553|110.533 +637803.228|219588.875|110.615 +637808.260|219584.153|110.801 +637813.286|219579.435|110.838 +637818.267|219574.763|110.920 +637823.329|219570.005|110.768 +637828.304|219565.338|110.694 +637833.315|219560.629|110.469 +637838.323|219555.923|110.134 +637843.276|219551.262|109.673 +637848.280|219546.556|109.198 +637853.276|219541.853|108.582 +637858.272|219537.150|107.857 +637863.267|219532.447|107.104 +637868.257|219527.744|106.074 +637873.237|219523.044|104.708 +637878.242|219518.332|104.126 +637888.279|219508.904|103.733 +637893.345|219504.143|103.590 +637898.365|219499.431|103.498 +637903.398|219494.716|103.858 +637908.430|219490.001|104.321 +637913.459|219485.288|104.864 +637918.485|219480.576|105.080 +637923.551|219475.818|104.989 +637928.568|219471.106|104.995 +637933.588|219466.394|105.004 +637938.611|219461.685|105.184 +637943.628|219456.975|105.257 +637937.203|219458.460|105.226 +637932.177|219463.166|104.982 +637927.099|219467.921|104.736 +637922.070|219472.630|104.623 +637917.043|219477.339|104.598 +637912.011|219482.048|104.382 +637906.976|219486.760|103.989 +637901.938|219491.473|103.468 +637896.905|219496.185|103.300 +637891.873|219500.897|103.239 +637886.841|219505.612|103.187 +637881.824|219510.322|103.660 +637876.855|219514.988|104.141 +637871.845|219519.694|104.793 +637866.904|219524.348|106.095 +637861.960|219529.003|107.189 +637857.004|219533.660|107.927 +637852.002|219538.363|108.619 +637847.043|219543.021|109.177 +637842.081|219547.678|109.597 +637837.116|219552.338|109.996 +637832.150|219556.996|110.368 +637827.179|219561.659|110.569 +637822.208|219566.320|110.807 +637817.227|219570.989|110.822 +637812.244|219575.656|110.792 +637807.309|219580.282|110.758 +637802.316|219584.958|110.588 +637797.327|219589.631|110.499 +637792.377|219594.264|110.304 +637787.375|219598.948|109.996 +637782.419|219603.588|109.731 +637777.417|219608.269|109.527 +637772.461|219612.911|109.326 +637767.459|219617.596|109.161 +637762.500|219622.238|108.991 +637757.605|219626.829|109.058 +637752.604|219631.513|109.024 +637747.641|219636.158|108.841 +637742.685|219640.804|108.783 +637737.717|219645.455|108.573 +637732.813|219650.054|108.597 +637727.854|219654.700|108.588 +637722.943|219659.299|108.607 +637717.990|219663.944|108.689 +637713.034|219668.589|108.780 +637708.170|219673.149|108.799 +637703.208|219677.797|108.856 +637698.282|219682.415|108.741 +637693.341|219687.039|108.485 +637688.397|219691.666|108.195 +637683.392|219696.347|107.799 +637678.421|219700.996|107.253 +637673.493|219705.604|106.686 +637668.448|219710.316|105.930 +637663.486|219714.953|105.037 +637658.445|219719.653|103.876 +637653.376|219724.374|102.431 +637648.362|219729.050|101.136 +637643.354|219733.728|100.493 +637638.428|219738.340|100.252 +637633.451|219743.000|99.990 +637628.510|219747.624|99.624 +637618.766|219756.780|100.919 +637609.076|219765.888|102.291 +637604.324|219770.362|103.416 +637599.517|219774.885|104.477 +637594.708|219779.412|105.491 +637589.864|219783.965|106.202 +637585.067|219788.464|106.442 +637580.214|219793.024|107.058 +637570.567|219802.083|107.994 +637565.718|219806.630|108.259 +637555.955|219815.774|107.829 +637550.984|219820.417|107.098 +637546.028|219825.050|106.546 +637541.145|219829.618|106.226 +637521.592|219847.922|105.007 +637516.724|219852.482|104.946 +637507.017|219861.574|104.708 +637497.272|219870.690|103.919 +637492.395|219875.253|103.535 +637487.552|219879.789|103.416 +637467.895|219898.153|100.462 +637462.958|219902.761|99.463 +637458.114|219907.294|99.188 +637448.376|219916.398|97.987 +637429.426|219934.168|99.176 +637401.132|219960.686|100.173 +637396.386|219965.124|99.856 +637391.680|219969.531|99.795 +637377.165|219983.073|97.350 +637344.796|220013.428|99.377 +637340.120|220017.805|99.435 +637326.239|220030.805|99.414 +637321.615|220035.130|99.274 +637317.065|220039.398|99.572 +637308.000|220047.901|100.398 +637289.931|220064.842|101.450 +637285.451|220069.042|101.678 +637276.444|220077.485|102.218 +637267.529|220085.846|102.748 +637263.014|220090.071|102.623 +637254.026|220098.486|102.626 +637245.165|220106.792|103.099 +637236.396|220115.015|103.830 +637227.563|220123.291|104.050 +637201.286|220147.910|104.699 +637196.888|220152.027|104.647 +637192.602|220156.048|105.159 +637188.262|220160.114|105.174 +637179.636|220168.197|105.507 +637171.312|220176.015|106.820 +637163.302|220183.565|109.350 +637151.034|220195.099|111.941 +637109.496|220234.022|113.630 +637068.305|220272.546|112.157 +637048.471|220291.120|112.944 +637044.594|220294.756|113.194 +637040.787|220298.329|113.742 +637149.367|220194.559|112.197 +637182.349|220163.424|105.601 +637190.935|220155.341|105.153 +637195.257|220151.272|104.845 +637199.607|220147.181|104.684 +637203.975|220143.066|104.391 +637208.352|220138.951|104.394 +637225.978|220122.373|103.891 +637230.434|220118.185|103.867 +637239.292|220109.852|103.605 +637252.663|220097.270|102.989 +637275.109|220076.153|102.056 +637279.599|220071.929|101.886 +637284.128|220067.665|101.660 +637288.706|220063.358|101.438 +637297.750|220054.848|100.990 +637302.312|220050.553|100.734 +637306.878|220046.259|100.508 +637334.484|220020.280|99.341 +637339.166|220015.879|99.344 +637376.348|219980.873|97.180 +637424.211|219935.912|99.319 +637429.012|219931.394|99.213 +637443.039|219918.157|96.735 +637448.184|219913.366|99.091 +637462.735|219899.692|99.487 +637472.653|219890.402|101.200 +637477.509|219885.845|101.733 +637482.492|219881.172|102.511 +637487.427|219876.552|103.309 +637492.328|219871.946|103.538 +637521.738|219844.316|104.736 +637526.643|219839.713|105.178 +637531.568|219835.081|105.025 +637536.524|219830.441|105.946 +637541.483|219825.778|106.153 +637546.412|219821.154|106.503 +637551.399|219816.475|106.970 +637566.206|219802.567|107.668 +637576.020|219793.326|107.046 +637580.848|219788.778|106.677 +637585.762|219784.151|106.208 +637590.657|219779.537|105.610 +637600.292|219770.432|103.355 +637605.165|219765.833|102.541 +637614.989|219756.573|101.172 +637619.966|219751.888|100.938 +637624.804|219747.316|99.746 +637629.827|219742.598|100.017 +637634.816|219737.907|99.926 +637639.772|219733.250|100.017 +637644.896|219728.449|100.938 +637649.986|219723.685|102.087 +637655.086|219718.918|103.358 +637660.243|219714.096|104.815 +637665.303|219709.359|105.778 +637670.396|219704.586|106.616 +637675.416|219699.877|107.220 +637680.472|219695.131|107.704 +637685.523|219690.395|108.134 +637690.513|219685.713|108.445 +637695.536|219680.995|108.619 +637700.598|219676.240|108.707 +637705.564|219671.576|108.789 +637710.614|219666.831|108.741 +637715.607|219662.137|108.600 +637720.606|219657.440|108.552 +637725.647|219652.697|108.475 +637730.640|219648.006|108.378 +637735.687|219643.263|108.418 +637740.695|219638.563|108.552 +637745.703|219633.860|108.780 +637750.747|219629.121|108.823 +637755.789|219624.384|108.866 +637760.827|219619.650|108.890 +637765.871|219614.914|109.015 +637770.913|219610.177|109.128 +637775.963|219605.438|109.420 +637781.011|219600.701|109.695 +637786.058|219595.964|110.039 +637791.100|219591.231|110.256 +637796.138|219586.500|110.475 +637801.167|219581.776|110.563 +637806.251|219577.006|110.771 +637811.272|219572.284|110.725 +637816.301|219567.563|110.841 +637821.315|219562.848|110.661 +637826.377|219558.087|110.533 +637831.385|219553.375|110.262 +637836.445|219548.617|110.015 +637841.450|219543.908|109.606 +637846.455|219539.195|109.231 +637851.496|219534.447|108.567 +637856.495|219529.737|107.912 +637861.487|219525.028|107.092 +637866.526|219520.276|106.141 +637871.509|219515.570|104.961 +637876.511|219510.855|104.187 +637881.571|219506.094|103.843 +637886.627|219501.333|103.282 +637891.599|219496.657|103.084 +637896.671|219491.893|103.148 +637901.697|219487.175|103.349 +637906.726|219482.454|103.684 +637911.798|219477.693|104.004 +637916.824|219472.974|104.251 +637921.850|219468.259|104.528 +637926.873|219463.544|104.757 +637931.945|219458.786|105.174 +637926.806|219459.383|105.028 +637921.774|219464.086|104.626 +637916.696|219468.835|104.394 +637911.560|219473.627|103.513 +637906.534|219478.333|103.644 +637901.453|219483.085|103.282 +637896.372|219487.836|103.065 +637891.334|219492.546|102.696 +637886.277|219497.294|103.443 +637881.257|219502.001|103.788 +637876.243|219506.704|104.257 +637871.183|219511.452|104.848 +637866.184|219516.149|105.854 +637861.192|219520.843|106.933 +637856.193|219525.537|107.765 +637851.188|219530.234|108.354 +637846.235|219534.885|109.042 +637841.224|219539.585|109.445 +637836.213|219544.282|109.853 +637831.251|219548.937|110.204 +637826.283|219553.591|110.460 +637821.260|219558.297|110.551 +637816.285|219562.955|110.701 +637811.308|219567.615|110.765 +637806.325|219572.281|110.734 +637801.338|219576.948|110.661 +637796.342|219581.621|110.441 +637791.402|219586.247|110.341 +637786.400|219590.926|110.054 +637781.401|219595.605|109.814 +637776.445|219600.238|109.561 +637771.434|219604.926|109.180 +637766.521|219609.522|108.905 +637761.522|219614.201|108.796 +637756.566|219618.840|108.643 +637751.619|219623.473|108.701 +637746.669|219628.109|108.692 +637741.756|219632.705|108.527 +637736.787|219637.353|108.299 +637731.877|219641.953|108.235 +637726.921|219646.592|108.262 +637722.017|219651.188|108.320 +637717.097|219655.791|108.226 +637712.205|219660.381|108.475 +637707.298|219664.977|108.561 +637702.391|219669.574|108.661 +637697.465|219674.182|108.582 +637692.579|219678.757|108.378 +637687.660|219683.363|108.381 +637682.761|219687.944|108.076 +637677.760|219692.623|107.729 +637672.837|219697.222|107.177 +637667.912|219701.825|106.656 +637662.916|219706.488|105.897 +637657.951|219711.121|105.007 +637652.940|219715.788|103.623 +637647.911|219720.469|102.093 +637642.878|219725.160|101.136 +637632.966|219734.423|99.956 +637628.114|219738.968|100.017 +637623.207|219743.564|100.002 +637618.296|219748.161|100.008 +637613.468|219752.699|100.849 +637608.701|219757.183|101.837 +637603.806|219761.770|102.008 +637599.005|219766.278|102.666 +637589.447|219775.273|104.830 +637584.710|219779.723|105.620 +637579.852|219784.285|106.189 +637575.075|219788.766|106.644 +637570.238|219793.301|106.970 +637565.410|219797.822|106.988 +637560.524|219802.397|106.915 +637555.672|219806.938|106.759 +637550.752|219811.541|106.446 +637545.891|219816.088|106.253 +637541.002|219820.660|105.854 +637536.128|219825.220|105.610 +637516.642|219843.441|104.187 +637487.454|219870.748|102.812 +637477.704|219879.859|101.782 +637472.836|219884.406|101.206 +637467.950|219888.966|100.526 +637462.942|219893.636|99.344 +637458.200|219898.077|99.392 +637453.097|219902.816|97.262 +637448.263|219907.340|97.094 +637443.776|219911.576|98.996 +637429.457|219925.000|99.179 +637377.178|219973.972|97.850 +637335.399|220013.166|99.731 +637330.738|220017.528|99.612 +637326.139|220021.844|99.847 +637321.475|220026.215|99.725 +637312.225|220034.877|99.447 +637303.215|220043.345|100.560 +637298.618|220047.655|100.633 +637285.067|220060.368|101.447 +637280.541|220064.617|101.688 +637262.515|220081.524|102.468 +637257.943|220085.800|102.044 +637249.140|220094.067|103.004 +637244.644|220098.282|103.017 +637226.914|220114.912|103.760 +637209.260|220131.466|104.132 +637200.564|220139.625|104.678 +637183.160|220155.947|105.406 +637087.663|220245.604|113.523 +637075.120|220257.345|112.487 +637071.194|220261.036|113.072 +637067.110|220264.862|112.822 +637063.148|220268.583|113.288 +637055.339|220275.920|114.084 +637047.487|220283.290|114.541 +637138.961|220195.553|113.706 +637197.193|220140.695|104.726 +637201.509|220136.638|104.409 +637210.253|220128.415|103.903 +637214.670|220124.275|104.123 +637223.424|220116.043|103.498 +637236.728|220103.543|103.141 +637245.659|220095.155|103.062 +637254.645|220086.712|102.800 +637258.976|220082.630|101.989 +637263.554|220078.339|102.474 +637268.120|220074.050|102.389 +637277.054|220065.650|101.758 +637286.112|220057.134|101.322 +637290.636|220052.885|101.090 +637295.147|220048.642|100.813 +637332.018|220013.995|99.944 +637336.618|220009.670|99.764 +637360.072|219987.639|99.737 +637364.708|219983.272|99.295 +637378.598|219970.199|97.896 +637383.450|219965.645|98.234 +637402.607|219947.674|99.469 +637445.358|219907.471|97.298 +637450.260|219902.880|97.978 +637455.216|219898.241|98.722 +637460.099|219893.666|99.344 +637474.891|219879.810|101.358 +637484.726|219870.590|102.325 +637499.497|219856.737|103.571 +637504.420|219852.122|104.044 +637523.994|219833.745|104.489 +637538.813|219819.850|105.653 +637543.736|219815.229|105.970 +637563.444|219796.731|106.787 +637578.120|219782.929|106.046 +637582.979|219778.357|105.498 +637587.874|219773.745|104.879 +637592.647|219769.237|103.532 +637597.472|219764.687|102.712 +637607.241|219755.485|101.236 +637612.161|219750.858|100.859 +637617.040|219746.259|100.103 +637621.978|219741.616|99.947 +637626.980|219736.919|99.969 +637631.915|219732.277|99.837 +637636.983|219727.535|100.609 +637641.979|219722.853|101.179 +637647.063|219718.098|102.245 +637652.190|219713.313|103.830 +637657.274|219708.561|105.019 +637662.389|219703.775|106.037 +637667.369|219699.109|106.683 +637672.438|219694.360|107.262 +637677.443|219689.663|107.726 +637682.441|219684.975|108.094 +637687.474|219680.248|108.369 +637692.442|219675.578|108.457 +637697.456|219670.869|108.515 +637702.461|219666.163|108.512 +637707.417|219661.506|108.494 +637712.406|219656.812|108.302 +637717.396|219652.118|108.113 +637722.395|219647.418|108.091 +637727.390|219642.721|108.043 +637732.389|219638.024|108.067 +637737.449|219633.272|108.308 +637742.457|219628.569|108.491 +637747.449|219623.875|108.503 +637752.488|219619.138|108.509 +637757.483|219614.445|108.607 +637762.531|219609.705|108.774 +637767.572|219604.968|108.905 +637772.626|219600.226|109.237 +637777.673|219595.486|109.539 +637782.718|219590.749|109.795 +637787.765|219586.013|110.167 +637792.804|219581.282|110.356 +637797.839|219576.552|110.551 +637802.868|219571.827|110.679 +637807.940|219567.060|110.713 +637812.960|219562.339|110.652 +637817.980|219557.621|110.606 +637823.046|219552.856|110.527 +637828.054|219548.144|110.259 +637833.062|219543.432|109.957 +637838.118|219538.674|109.634 +637843.169|219533.916|109.259 +637848.122|219529.253|108.716 +637853.163|219524.498|108.021 +637858.208|219519.743|107.326 +637863.197|219515.034|106.403 +637868.187|219510.325|105.296 +637873.228|219505.570|104.385 +637878.236|219500.851|103.913 +637883.296|219496.087|103.550 +637888.356|219491.323|103.132 +637893.376|219486.605|102.959 +637898.448|219481.838|103.087 +637903.519|219477.074|103.251 +637908.549|219472.353|103.641 +637913.581|219467.637|104.220 +637918.653|219462.873|104.568 +637923.679|219458.158|105.053 +637917.424|219459.441|104.800 +637912.343|219464.196|104.236 +637907.262|219468.951|103.727 +637902.133|219473.752|103.297 +637897.052|219478.510|102.907 +637891.977|219483.267|102.809 +637886.905|219488.025|102.989 +637881.839|219492.783|103.349 +637876.776|219497.541|103.702 +637871.713|219502.296|104.220 +637866.666|219507.045|105.114 +637861.631|219511.791|106.269 +637856.589|219516.539|107.220 +637851.594|219521.240|108.085 +637846.546|219525.985|108.805 +637841.493|219530.734|109.280 +637836.482|219535.440|109.582 +637831.422|219540.189|109.902 +637826.362|219544.941|110.179 +637821.348|219549.647|110.454 +637816.325|219554.359|110.493 +637811.259|219559.111|110.670 +637806.233|219563.826|110.679 +637801.201|219568.542|110.594 +637796.172|219573.254|110.569 +637791.133|219577.972|110.393 +637786.089|219582.696|110.128 +637781.038|219587.424|109.762 +637776.040|219592.103|109.536 +637770.983|219596.836|109.164 +637765.978|219601.521|108.890 +637760.970|219606.209|108.610 +637755.920|219610.936|108.439 +637750.921|219615.621|108.372 +637745.925|219620.303|108.366 +637740.927|219624.988|108.335 +637735.964|219629.633|108.168 +637730.954|219634.327|107.997 +637725.952|219639.014|107.979 +637720.996|219643.660|107.985 +637716.030|219648.311|107.863 +637711.090|219652.944|108.116 +637706.146|219657.583|108.323 +637701.190|219662.228|108.405 +637696.234|219666.873|108.488 +637691.265|219671.531|108.427 +637686.389|219676.100|108.311 +637681.405|219680.766|108.134 +637676.461|219685.393|107.854 +637671.511|219690.026|107.521 +637666.543|219694.671|107.037 +637661.608|219699.286|106.385 +637656.558|219704.001|105.580 +637651.586|219708.643|104.586 +637646.576|219713.313|103.230 +637641.522|219718.025|101.977 +637636.532|219722.679|100.983 +637631.592|219727.303|100.526 +637626.632|219731.939|99.917 +637621.734|219736.529|100.002 +637616.882|219741.080|100.063 +637611.944|219745.710|100.276 +637607.119|219750.239|100.663 +637602.303|219754.763|101.136 +637592.729|219763.772|103.145 +637587.959|219768.259|104.092 +637583.180|219772.755|104.931 +637554.221|219799.919|106.257 +637549.362|219804.469|106.043 +637544.492|219809.026|105.754 +637539.627|219813.583|105.528 +637525.042|219827.226|104.333 +637520.153|219831.804|104.022 +637505.688|219845.355|103.702 +637476.637|219872.537|101.709 +637471.836|219877.027|101.230 +637466.941|219881.602|100.444 +637462.058|219886.165|99.783 +637457.240|219890.670|99.283 +637447.468|219899.796|97.737 +637423.913|219921.891|99.191 +637400.275|219944.028|99.228 +637376.553|219966.218|98.003 +637371.999|219970.497|98.944 +637358.195|219983.445|100.029 +637325.758|220013.825|100.322 +637316.501|220022.490|100.194 +637311.840|220026.849|99.840 +637302.675|220035.432|100.078 +637293.613|220043.927|100.374 +637284.588|220052.391|101.224 +637253.090|220081.902|102.062 +637230.867|220102.726|102.946 +637195.916|220135.483|104.687 +637124.967|220202.082|113.965 +637120.831|220205.959|114.145 +637035.664|220285.710|114.849 +637136.449|220188.777|113.642 +637156.657|220169.666|108.552 +637207.873|220121.398|103.498 +637221.162|220108.892|103.230 +637225.618|220104.704|103.218 +637230.038|220100.541|103.053 +637247.976|220083.673|103.065 +637252.261|220079.616|101.770 +637256.812|220075.340|101.843 +637265.813|220066.872|101.800 +637270.385|220062.575|101.782 +637288.407|220045.597|100.465 +637292.848|220041.409|99.822 +637297.503|220037.038|100.072 +637302.072|220032.738|99.889 +637306.759|220028.333|100.100 +637311.289|220024.069|99.731 +637334.612|220002.160|100.249 +637348.575|219989.032|99.938 +637357.923|219980.242|99.767 +637376.434|219962.807|97.868 +637400.422|219940.295|99.365 +637448.272|219895.327|99.402 +637457.883|219886.290|99.191 +637462.827|219881.660|99.935 +637467.731|219877.061|100.435 +637472.693|219872.419|101.386 +637477.545|219867.862|101.557 +637482.434|219863.268|101.669 +637492.215|219854.088|102.367 +637502.036|219844.877|103.096 +637506.895|219840.311|103.093 +637526.478|219821.928|104.147 +637531.471|219817.244|104.577 +637551.213|219798.718|105.915 +637556.123|219794.109|106.205 +637561.061|219789.473|106.333 +637565.974|219784.852|106.293 +637590.288|219761.947|103.391 +637595.113|219757.387|102.096 +637599.953|219752.818|100.929 +637604.824|219748.231|100.545 +637609.780|219743.564|100.069 +637614.681|219738.959|100.039 +637624.621|219729.613|99.941 +637629.635|219724.916|100.651 +637634.682|219720.186|101.252 +637639.721|219715.474|102.300 +637644.811|219710.713|103.471 +637649.846|219706.004|104.601 +637654.903|219701.270|105.507 +637659.953|219696.539|106.388 +637664.976|219691.833|106.976 +637670.036|219687.088|107.461 +637674.983|219682.449|107.790 +637680.015|219677.724|108.037 +637684.990|219673.058|108.128 +637690.013|219668.345|108.283 +637695.024|219663.639|108.311 +637699.977|219658.985|108.253 +637704.978|219654.288|108.198 +637709.959|219649.606|107.857 +637714.903|219644.961|107.698 +637719.956|219640.218|107.732 +637724.958|219635.518|107.790 +637729.963|219630.821|107.866 +637734.968|219626.124|107.979 +637739.970|219621.431|108.091 +637744.962|219616.743|108.070 +637750.013|219612.003|108.247 +637755.011|219607.312|108.363 +637760.056|219602.579|108.479 +637765.067|219597.879|108.881 +637770.120|219593.142|109.198 +637775.171|219588.405|109.533 +637780.167|219583.718|109.792 +637785.211|219578.987|110.085 +637790.249|219574.263|110.271 +637795.279|219569.538|110.335 +637800.320|219564.814|110.621 +637805.343|219560.096|110.649 +637810.366|219555.377|110.618 +637815.383|219550.665|110.475 +637820.446|219545.907|110.344 +637825.411|219541.241|110.149 +637830.471|219536.486|109.893 +637835.525|219531.734|109.542 +637840.484|219527.070|109.186 +637845.534|219522.319|108.683 +637850.579|219517.567|108.034 +637855.568|219512.864|107.125 +637860.610|219508.115|106.193 +637865.593|219503.409|104.976 +637870.595|219498.700|104.172 +637875.648|219493.942|103.550 +637880.708|219489.181|103.196 +637885.725|219484.465|102.888 +637890.797|219479.704|102.931 +637895.866|219474.943|102.831 +637900.898|219470.225|103.330 +637905.979|219465.467|103.894 +637911.060|219460.709|104.592 +637908.549|219458.728|104.961 +637903.510|219463.437|104.123 +637898.426|219468.195|103.443 +637893.385|219472.907|102.709 +637888.356|219477.623|102.483 +637883.287|219482.380|102.751 +637878.267|219487.096|102.971 +637873.250|219491.808|103.318 +637868.199|219496.560|104.138 +637863.200|219501.269|104.979 +637858.211|219505.969|106.202 +637853.176|219510.715|107.244 +637848.177|219515.418|107.997 +637843.175|219520.121|108.564 +637838.131|219524.867|109.262 +637833.117|219529.576|109.518 +637828.109|219534.279|109.890 +637818.032|219543.740|110.295 +637813.015|219548.452|110.420 +637807.995|219553.161|110.563 +637802.972|219557.874|110.609 +637797.897|219562.634|110.600 +637792.862|219567.356|110.387 +637787.820|219572.083|110.121 +637782.785|219576.805|110.009 +637777.737|219581.535|109.707 +637772.690|219586.266|109.433 +637767.636|219590.999|109.106 +637762.583|219595.736|108.777 +637757.575|219600.427|108.479 +637752.521|219605.166|108.195 +637747.471|219609.900|108.061 +637742.472|219614.591|107.991 +637737.424|219619.324|107.927 +637732.423|219624.018|107.835 +637727.415|219628.712|107.698 +637722.361|219633.452|107.640 +637717.353|219638.149|107.549 +637712.355|219642.843|107.619 +637707.362|219647.531|107.762 +637702.424|219652.170|108.046 +637697.422|219656.864|108.152 +637692.466|219661.515|108.210 +637687.449|219666.221|108.125 +637682.481|219670.881|108.091 +637677.504|219675.551|107.936 +637672.520|219680.224|107.753 +637667.521|219684.905|107.406 +637662.507|219689.602|106.906 +637657.481|219694.305|106.311 +637652.477|219698.984|105.449 +637647.469|219703.666|104.601 +637642.430|219708.372|103.449 +637637.361|219713.108|102.550 +637632.329|219717.812|101.584 +637627.352|219722.466|100.724 +637622.347|219727.151|100.124 +637617.388|219731.793|99.548 +637612.453|219736.426|99.761 +637602.693|219745.597|100.340 +637597.823|219750.175|100.755 +637573.875|219772.737|105.360 +637559.329|219786.395|106.037 +637554.477|219790.945|105.812 +637549.570|219795.542|105.589 +637544.708|219800.102|105.345 +637539.780|219804.716|104.973 +637534.985|219809.215|104.934 +637530.090|219813.799|104.501 +637525.195|219818.384|104.092 +637515.487|219827.479|103.215 +637510.592|219832.063|102.904 +637505.788|219836.574|102.937 +637481.636|219859.212|101.706 +637471.967|219868.273|101.258 +637462.269|219877.347|99.990 +637457.386|219881.916|99.335 +637452.341|219886.607|97.201 +637438.330|219899.790|98.960 +637419.402|219917.544|99.170 +637405.259|219930.806|99.060 +637391.131|219944.053|98.932 +637367.848|219965.895|99.618 +637358.512|219974.652|99.822 +637349.349|219983.259|100.532 +637321.682|220009.213|101.115 +637312.420|220017.891|100.663 +637303.114|220026.602|100.069 +637298.515|220030.915|100.103 +637293.851|220035.277|99.523 +637289.364|220039.498|100.200 +637248.920|220077.455|102.059 +637226.829|220098.200|103.602 +637217.846|220106.612|103.047 +637213.454|220110.736|103.416 +637209.059|220114.860|103.535 +637204.721|220118.935|103.943 +637200.308|220123.074|104.010 +637187.275|220135.309|104.778 +637182.916|220139.396|104.925 +637174.333|220147.452|105.400 +637170.059|220151.467|105.741 +637128.914|220190.192|113.453 +637108.267|220209.577|114.742 +637104.113|220213.475|114.892 +637083.810|220232.519|116.315 +637067.195|220248.055|115.230 +637063.111|220251.877|114.959 +637055.104|220259.375|115.126 +637035.350|220277.883|115.571 +637129.588|220186.436|113.349 +637149.882|220167.295|109.012 +637158.160|220159.489|107.509 +637175.058|220143.578|105.473 +637179.411|220139.485|105.293 +637201.113|220119.082|104.092 +637209.830|220110.879|103.245 +637218.690|220102.555|103.160 +637227.786|220094.027|103.809 +637232.178|220089.897|103.513 +637245.519|220077.345|102.535 +637249.881|220073.233|101.614 +637254.379|220069.003|101.416 +637272.445|220052.025|100.919 +637276.950|220047.792|100.557 +637290.663|220034.902|100.148 +637295.253|220030.592|100.051 +637299.856|220026.270|100.048 +637304.483|220021.926|100.191 +637309.216|220017.491|100.676 +637323.283|220004.284|101.267 +637341.888|219986.798|100.974 +637355.774|219973.728|99.725 +637374.212|219956.352|97.067 +637441.436|219893.233|99.136 +637446.069|219888.850|97.612 +637450.750|219884.437|96.756 +637455.935|219879.615|99.197 +637460.858|219875.000|99.807 +637475.579|219861.196|101.090 +637480.420|219856.651|101.179 +637485.391|219851.988|101.581 +637490.210|219847.458|101.569 +637495.157|219842.816|101.822 +637500.073|219838.208|102.221 +637514.807|219824.376|102.760 +637519.690|219819.795|103.023 +637534.574|219805.835|104.342 +637544.519|219796.505|105.013 +637549.439|219791.893|105.333 +637554.395|219787.239|105.616 +637559.354|219782.588|105.915 +637564.270|219777.967|105.897 +637569.208|219773.325|105.623 +637573.999|219768.808|104.903 +637578.846|219764.233|103.803 +637583.707|219759.648|102.840 +637593.348|219750.544|100.575 +637598.289|219745.899|100.404 +637603.209|219741.260|99.536 +637613.124|219731.945|99.578 +637618.107|219727.273|99.898 +637623.112|219722.582|100.484 +637628.181|219717.833|101.288 +637633.213|219713.127|102.248 +637638.276|219708.387|103.065 +637643.348|219703.641|104.035 +637648.417|219698.899|105.046 +637653.470|219694.168|105.894 +637658.505|219689.453|106.607 +637663.522|219684.750|107.125 +637668.521|219680.059|107.485 +637673.553|219675.335|107.701 +637678.540|219670.656|107.954 +637683.511|219665.986|108.040 +637688.519|219661.280|108.030 +637693.530|219656.574|108.061 +637698.520|219651.880|107.860 +637703.512|219647.183|107.686 +637708.456|219642.535|107.515 +637713.455|219637.838|107.479 +637718.454|219633.141|107.442 +637723.455|219628.441|107.473 +637728.460|219623.741|107.598 +637733.465|219619.041|107.729 +637738.516|219614.298|107.848 +637743.511|219609.604|107.893 +637748.510|219604.910|108.006 +637753.561|219600.168|108.247 +637758.565|219595.471|108.509 +637763.570|219590.774|108.853 +637768.624|219586.031|109.237 +637773.674|219581.291|109.573 +637778.670|219576.604|109.826 +637783.711|219571.873|110.079 +637788.747|219567.142|110.246 +637793.730|219562.461|110.387 +637798.763|219557.736|110.530 +637803.786|219553.015|110.566 +637808.803|219548.300|110.423 +637813.823|219543.581|110.362 +637818.837|219538.869|110.176 +637823.848|219534.154|109.987 +637828.859|219529.442|109.734 +637833.821|219524.772|109.500 +637838.871|219520.017|109.088 +637843.867|219515.311|108.415 +637848.817|219510.648|107.732 +637853.852|219505.896|106.772 +637858.839|219501.190|105.687 +637863.831|219496.478|104.659 +637868.827|219491.765|103.718 +637873.881|219487.004|103.071 +637878.892|219482.286|102.675 +637883.912|219477.568|102.434 +637888.935|219472.846|102.453 +637893.970|219468.128|103.087 +637899.054|219463.364|103.864 +637904.092|219458.649|104.797 +637897.716|219460.188|104.205 +637892.717|219464.851|103.169 +637887.722|219469.518|102.504 +637882.705|219474.227|103.050 +637877.709|219478.897|102.517 +637872.735|219483.563|102.754 +637867.718|219488.272|103.260 +637862.813|219492.887|104.278 +637857.821|219497.587|105.440 +637852.871|219502.241|106.470 +637847.927|219506.896|107.494 +637842.928|219511.593|108.351 +637838.021|219516.201|108.991 +637833.053|219520.862|109.259 +637828.084|219525.519|109.509 +637823.113|219530.179|109.719 +637818.148|219534.837|110.064 +637813.180|219539.497|110.274 +637808.202|219544.161|110.356 +637803.231|219548.824|110.560 +637798.293|219553.445|110.487 +637793.307|219558.114|110.399 +637788.317|219562.784|110.326 +637783.324|219567.456|110.137 +637778.371|219572.089|109.896 +637773.370|219576.768|109.622 +637768.362|219581.450|109.311 +637763.360|219586.132|109.085 +637758.437|219590.731|108.689 +637753.423|219595.419|108.341 +637748.409|219600.110|108.015 +637743.447|219604.752|107.826 +637738.442|219609.437|107.720 +637733.529|219614.036|107.598 +637728.521|219618.724|107.506 +637723.556|219623.369|107.375 +637718.588|219628.017|107.229 +637713.626|219632.662|107.186 +637708.727|219637.256|107.381 +637703.713|219641.947|107.339 +637698.767|219646.586|107.552 +637693.865|219651.179|107.747 +637688.909|219655.821|107.893 +637683.981|219660.436|107.759 +637679.015|219665.087|107.814 +637674.035|219669.748|107.692 +637669.085|219674.374|107.415 +637664.099|219679.044|107.259 +637659.185|219683.634|106.887 +637654.153|219688.334|106.266 +637649.154|219693.001|105.510 +637644.143|219697.676|104.665 +637639.068|219702.410|103.699 +637634.088|219707.055|102.748 +637629.013|219711.789|101.880 +637624.039|219716.434|101.093 +637619.015|219721.122|100.350 +637614.056|219725.755|99.804 +637609.073|219730.418|99.539 +637599.210|219739.657|99.670 +637594.327|219744.235|100.008 +637589.450|219748.810|100.404 +637584.631|219753.339|101.395 +637579.827|219757.859|102.498 +637575.014|219762.389|103.522 +637560.573|219775.952|105.677 +637545.845|219789.729|104.955 +637540.913|219794.338|104.571 +637535.991|219798.940|104.297 +637531.090|219803.525|103.806 +637506.584|219826.439|102.264 +637496.836|219835.556|101.736 +637487.083|219844.679|101.261 +637482.279|219849.181|101.438 +637477.420|219853.725|101.200 +637467.722|219862.793|100.618 +637462.827|219867.368|100.200 +637457.910|219871.955|99.307 +637453.073|219876.479|99.005 +637443.426|219885.507|98.710 +637405.475|219921.074|99.962 +637395.868|219930.053|99.030 +637371.990|219952.383|97.140 +637353.778|219969.504|100.383 +637339.928|219982.494|101.319 +637335.216|219986.899|100.801 +637321.466|219999.792|101.663 +637302.913|220017.156|100.932 +637298.295|220021.478|100.852 +637284.402|220034.472|99.978 +637279.791|220038.788|99.731 +637275.328|220042.973|100.048 +637261.890|220055.579|101.072 +637257.379|220059.807|101.197 +637226.326|220088.928|103.087 +637212.939|220101.461|102.824 +637204.276|220109.590|103.696 +637186.958|220125.833|104.888 +637178.234|220134.002|104.909 +637157.023|220153.911|107.153 +637152.774|220157.895|107.415 +637148.705|220161.723|108.280 +637116.043|220192.429|114.288 +637095.466|220211.717|115.407 +637091.381|220215.551|115.666 +637071.088|220234.580|116.391 +637042.945|220260.948|116.406 +637156.392|220151.991|107.098 +637169.029|220140.082|105.443 +637195.074|220115.582|104.193 +637199.491|220111.434|104.150 +637203.783|220107.389|103.526 +637212.506|220099.175|102.742 +637217.011|220094.947|102.962 +637230.352|220082.399|102.337 +637243.669|220069.868|101.468 +637248.165|220065.641|101.240 +637257.178|220057.164|100.959 +637266.194|220048.685|100.481 +637270.665|220044.472|99.938 +637275.322|220040.105|100.407 +637279.861|220035.837|100.267 +637293.836|220022.722|101.075 +637298.435|220018.403|101.060 +637303.087|220014.038|101.364 +637321.734|219996.533|101.922 +637326.376|219992.169|101.718 +637340.251|219979.117|100.892 +637372.410|219948.820|96.347 +637420.465|219903.734|98.914 +637434.764|219890.292|98.374 +637444.450|219881.197|98.624 +637449.162|219876.759|98.027 +637454.140|219872.105|98.990 +637483.437|219844.624|100.977 +637488.344|219840.021|101.276 +637493.240|219835.428|101.514 +637498.116|219830.850|101.642 +637503.054|219826.217|101.874 +637512.832|219817.036|102.041 +637532.595|219798.507|103.593 +637537.527|219793.881|103.992 +637542.514|219789.208|104.467 +637576.737|219757.021|102.331 +637581.549|219752.480|101.364 +637596.174|219738.703|99.292 +637601.176|219734.015|99.740 +637606.107|219729.376|99.502 +637611.130|219724.663|99.725 +637616.123|219719.982|100.179 +637621.180|219715.248|100.807 +637626.212|219710.539|101.770 +637631.275|219705.799|102.541 +637636.343|219701.057|103.474 +637641.357|219696.366|104.373 +637646.460|219691.590|105.211 +637651.465|219686.908|106.065 +637656.536|219682.156|106.671 +637661.544|219677.459|107.116 +637666.528|219672.783|107.287 +637671.569|219668.053|107.619 +637676.586|219663.344|107.640 +637681.542|219658.686|107.573 +637686.559|219653.977|107.665 +637691.512|219649.323|107.576 +637696.551|219644.586|107.360 +637701.501|219639.935|107.265 +637706.551|219635.189|107.250 +637711.541|219630.501|107.049 +637716.494|219625.847|107.067 +637721.541|219621.107|107.086 +637726.552|219616.404|107.253 +637731.554|219611.707|107.381 +637736.611|219606.965|107.570 +637741.612|219602.271|107.726 +637746.617|219597.574|107.960 +637751.674|219592.831|108.268 +637756.685|219588.131|108.686 +637761.738|219583.391|109.039 +637766.789|219578.655|109.372 +637771.785|219573.967|109.561 +637776.826|219569.236|109.814 +637781.870|219564.506|110.115 +637786.854|219559.827|110.201 +637791.889|219555.103|110.402 +637796.915|219550.382|110.496 +637801.942|219545.663|110.512 +637806.959|219540.948|110.423 +637811.970|219536.236|110.137 +637816.987|219531.520|110.067 +637821.988|219526.814|109.625 +637827.005|219522.102|109.494 +637832.004|219517.393|108.969 +637837.064|219512.638|108.786 +637842.059|219507.932|108.094 +637847.055|219503.226|107.308 +637852.039|219498.523|106.205 +637857.025|219493.817|104.995 +637862.009|219489.107|103.751 +637867.056|219484.350|102.876 +637872.021|219479.680|102.431 +637877.041|219474.962|102.297 +637882.129|219470.195|102.953 +637887.094|219465.522|102.495 +637892.190|219460.761|103.641 +637887.929|219459.904|103.355 +637882.830|219464.659|102.239 +637877.822|219469.369|103.148 +637872.722|219474.126|102.309 +637867.699|219478.839|102.489 +637862.679|219483.548|102.855 +637857.680|219488.251|103.949 +637852.697|219492.951|105.409 +637847.701|219497.648|106.488 +637842.709|219502.345|107.506 +637837.704|219507.045|108.128 +637832.745|219511.702|108.655 +637827.737|219516.402|109.152 +637822.726|219521.105|109.521 +637817.755|219525.763|109.734 +637812.744|219530.466|110.109 +637807.772|219535.126|110.286 +637802.749|219539.832|110.393 +637797.769|219544.499|110.414 +637792.782|219549.168|110.350 +637787.799|219553.838|110.323 +637782.757|219558.556|110.179 +637777.811|219563.186|109.972 +637772.812|219567.865|109.783 +637767.807|219572.547|109.487 +637762.854|219577.186|109.292 +637757.840|219581.874|108.890 +637752.829|219586.561|108.570 +637747.861|219591.210|108.223 +637742.838|219595.907|107.802 +637737.921|219600.509|107.573 +637732.907|219605.200|107.372 +637727.991|219609.802|107.186 +637723.020|219614.454|106.973 +637718.054|219619.105|106.848 +637713.144|219623.704|106.848 +637708.182|219628.353|106.805 +637703.229|219632.998|106.927 +637698.319|219637.597|106.997 +637693.369|219642.239|107.195 +637688.455|219646.842|107.275 +637683.545|219651.444|107.378 +637678.619|219656.059|107.329 +637673.700|219660.668|107.372 +637668.771|219665.285|107.302 +637663.836|219669.906|107.208 +637658.880|219674.539|106.881 +637653.967|219679.138|106.488 +637648.938|219683.835|105.921 +637643.982|219688.462|105.159 +637638.974|219693.141|104.336 +637634.003|219697.780|103.471 +637629.034|219702.416|102.672 +637624.002|219707.113|101.770 +637619.015|219711.767|100.846 +637613.998|219716.452|100.200 +637609.097|219721.036|99.755 +637604.114|219725.700|99.517 +637599.234|219730.266|99.380 +637594.339|219734.856|99.581 +637589.459|219739.437|99.929 +637584.570|219744.012|99.773 +637579.702|219748.584|100.282 +637574.947|219753.059|101.435 +637570.162|219757.570|102.724 +637565.425|219762.032|104.028 +637550.890|219775.660|104.489 +637545.955|219780.271|104.038 +637516.606|219807.728|102.108 +637487.387|219835.077|100.993 +637477.622|219844.215|100.505 +637472.797|219848.736|100.542 +637467.947|219853.268|100.069 +637463.034|219857.861|99.493 +637458.203|219862.378|99.210 +637448.364|219871.568|97.786 +637443.469|219876.131|96.786 +637424.571|219893.877|98.819 +637400.946|219916.014|99.786 +637372.151|219942.922|97.298 +637363.242|219951.328|100.407 +637358.569|219955.705|100.627 +637344.500|219968.882|100.776 +637330.702|219981.821|101.800 +637321.478|219990.468|102.315 +637298.341|220012.118|101.931 +637279.830|220029.431|100.980 +637266.026|220042.339|100.255 +637261.494|220046.582|100.252 +637257.025|220050.779|100.849 +637243.547|220063.401|101.054 +637230.221|220075.891|101.934 +637225.811|220080.027|102.157 +637221.455|220084.112|102.681 +637217.041|220088.248|102.916 +637207.986|220096.715|102.312 +637203.682|220100.754|102.898 +637199.393|220104.783|103.553 +637186.354|220117.009|104.528 +637182.002|220121.087|104.690 +637169.072|220133.203|105.388 +637143.694|220157.011|107.933 +637107.033|220191.450|114.392 +637102.945|220195.288|114.815 +637086.605|220210.601|115.809 +637082.518|220214.429|116.086 +637078.470|220218.221|116.321 +637066.339|220229.584|116.925 +637046.207|220248.427|117.211 +637042.205|220252.173|117.327 +637038.206|220255.913|117.254 +637170.733|220129.423|105.205 +637179.325|220121.346|104.827 +637196.681|220105.021|103.590 +637205.310|220096.895|102.572 +637209.665|220092.796|102.294 +637214.173|220088.568|102.520 +637223.003|220080.265|102.111 +637227.414|220076.114|101.654 +637231.830|220071.962|101.486 +637240.862|220063.483|101.450 +637245.263|220059.338|100.999 +637254.303|220050.843|100.868 +637258.729|220046.676|100.316 +637263.304|220042.388|100.575 +637267.861|220038.105|100.496 +637272.460|220033.789|100.651 +637295.744|220011.953|102.279 +637309.701|219998.850|102.724 +637351.483|219959.555|101.185 +637356.125|219955.184|100.791 +637374.395|219937.945|97.192 +637384.075|219928.874|98.451 +637398.629|219915.231|100.136 +637427.110|219888.442|98.646 +637436.729|219879.395|98.393 +637441.253|219875.104|96.424 +637446.221|219870.456|97.262 +637456.078|219861.226|98.874 +637460.964|219856.642|99.231 +637490.292|219829.116|100.572 +637509.936|219810.681|101.852 +637514.813|219806.097|101.660 +637519.788|219801.434|102.306 +637524.747|219796.788|102.843 +637539.517|219782.920|103.349 +637544.409|219778.324|103.434 +637549.420|219773.633|104.160 +637554.389|219768.969|104.565 +637578.517|219746.204|99.676 +637583.488|219741.531|99.755 +637588.435|219736.880|99.603 +637593.388|219732.226|99.514 +637598.384|219727.532|99.386 +637603.309|219722.905|99.591 +637608.341|219718.183|99.889 +637613.383|219713.456|100.316 +637618.403|219708.756|101.102 +637623.481|219704.004|101.986 +637628.504|219699.301|102.879 +637633.615|219694.519|103.721 +637638.678|219689.779|104.608 +637643.729|219685.049|105.431 +637648.767|219680.330|106.119 +637653.787|219675.624|106.641 +637658.835|219670.887|106.964 +637663.827|219666.203|107.235 +637668.844|219661.487|107.253 +637673.864|219656.775|107.296 +637678.830|219652.112|107.278 +637683.840|219647.406|107.244 +637688.839|219642.706|107.095 +637693.841|219638.006|107.003 +637698.834|219633.309|106.817 +637703.881|219628.566|106.714 +637708.886|219623.866|106.695 +637713.888|219619.166|106.683 +637718.947|219614.417|106.842 +637724.007|219609.668|107.006 +637729.070|219604.916|107.259 +637734.075|219600.216|107.387 +637739.137|219595.471|107.692 +637744.200|219590.719|108.070 +637749.263|219585.973|108.472 +637754.368|219581.182|108.844 +637759.425|219576.442|109.180 +637764.472|219571.705|109.430 +637769.520|219566.969|109.679 +637774.613|219562.189|109.963 +637779.652|219557.459|110.158 +637784.736|219552.689|110.271 +637789.768|219547.961|110.417 +637794.794|219543.243|110.368 +637799.866|219538.476|110.344 +637804.935|219533.715|110.289 +637809.952|219528.997|110.143 +637820.019|219519.527|109.430 +637825.076|219514.769|109.134 +637830.126|219510.014|108.604 +637835.128|219505.305|107.991 +637840.176|219500.550|107.372 +637845.220|219495.795|106.494 +637850.252|219491.043|105.287 +637855.236|219486.334|103.888 +637860.277|219481.576|102.843 +637865.340|219476.812|102.349 +637870.406|219472.048|102.014 +637875.472|219467.281|101.712 +637880.565|219462.514|102.507 +637885.612|219457.792|103.522 +637878.837|219460.078|102.693 +637873.750|219464.830|102.206 +637868.659|219469.582|101.843 +637863.588|219474.334|102.142 +637858.522|219479.083|102.599 +637853.471|219483.828|103.605 +637848.485|219488.522|105.004 +637843.446|219493.259|106.244 +637838.399|219497.998|107.070 +637833.394|219502.692|107.756 +637828.346|219507.429|108.527 +637823.336|219512.126|108.972 +637818.325|219516.823|109.393 +637813.268|219521.566|109.814 +637808.251|219526.263|110.060 +637803.231|219530.963|110.256 +637798.202|219535.669|110.313 +637793.179|219540.372|110.435 +637788.143|219545.081|110.301 +637783.108|219549.790|110.252 +637778.118|219554.457|110.167 +637773.074|219559.172|109.908 +637768.029|219563.887|109.743 +637763.025|219568.566|109.420 +637757.971|219573.287|109.155 +637752.969|219577.966|108.927 +637747.949|219582.654|108.497 +637742.941|219587.336|108.235 +637737.915|219592.029|107.768 +637732.898|219596.717|107.439 +637727.884|219601.405|107.229 +637722.913|219606.050|106.970 +637717.896|219610.741|106.741 +637712.925|219615.389|106.540 +637707.959|219620.031|106.461 +637703.003|219624.671|106.534 +637698.050|219629.310|106.628 +637693.143|219633.903|106.744 +637688.187|219638.542|106.866 +637683.274|219643.141|106.942 +637678.314|219647.784|107.052 +637673.447|219652.337|107.134 +637668.466|219656.998|106.988 +637663.596|219661.554|107.076 +637658.664|219666.169|107.009 +637653.702|219670.805|106.589 +637648.791|219675.392|106.269 +637643.811|219680.041|105.723 +637638.855|219684.664|104.915 +637633.856|219689.328|104.233 +637628.912|219693.930|103.132 +637623.908|219698.600|102.498 +637618.933|219703.239|101.666 +637613.953|219707.881|100.846 +637608.975|219712.526|100.078 +637604.077|219717.098|99.697 +637599.149|219721.710|99.499 +637594.260|219726.276|99.277 +637589.361|219730.863|99.444 +637584.466|219735.438|99.203 +637579.586|219740.013|99.594 +637574.765|219744.524|99.618 +637569.949|219749.041|100.176 +637546.034|219771.481|103.285 +637502.350|219812.312|101.163 +637497.504|219816.841|100.895 +637492.673|219821.361|100.776 +637487.805|219825.906|100.407 +637482.922|219830.466|99.941 +637478.131|219834.946|99.810 +637473.339|219839.427|99.725 +637468.481|219843.969|99.523 +637463.656|219848.477|99.234 +637458.812|219853.000|98.822 +637453.966|219857.529|98.423 +637449.171|219862.016|98.423 +637444.179|219866.652|96.674 +637439.256|219871.245|96.192 +637411.123|219897.638|99.277 +637336.151|219967.864|101.218 +637331.607|219972.134|101.971 +637317.818|219985.058|102.824 +637294.738|220006.665|102.962 +637290.066|220011.036|102.852 +637280.784|220019.713|102.203 +637276.084|220024.106|101.721 +637266.812|220032.771|100.996 +637262.262|220037.029|100.855 +637257.705|220041.293|100.977 +637253.163|220045.545|100.916 +637248.674|220049.752|101.151 +637244.111|220054.019|101.035 +637235.177|220062.395|101.547 +637230.663|220066.613|101.209 +637226.252|220070.752|101.672 +637212.942|220083.225|102.227 +637208.473|220087.401|101.959 +637204.145|220091.461|102.401 +637199.747|220095.584|102.748 +637195.404|220099.660|103.135 +637191.109|220103.689|103.782 +637182.319|220111.922|103.882 +637165.180|220128.000|105.623 +637160.812|220132.084|105.531 +637135.526|220155.810|108.296 +637119.139|220171.205|111.161 +637098.946|220190.176|114.690 +637062.480|220224.369|117.089 +637058.466|220228.127|117.071 +637127.308|220161.235|108.945 +637135.635|220153.402|108.027 +637165.198|220125.610|105.458 +637177.969|220113.595|103.824 +637182.322|220109.508|103.675 +637195.370|220097.249|102.782 +637199.707|220093.167|102.376 +637208.528|220084.886|102.072 +637221.863|220072.371|101.858 +637226.301|220068.198|101.544 +637230.757|220064.019|101.578 +637239.734|220055.589|101.261 +637244.187|220051.407|101.084 +637253.200|220042.945|100.782 +637262.316|220034.393|100.855 +637266.870|220030.122|101.023 +637317.903|219982.284|103.160 +637331.653|219969.354|101.861 +637345.558|219956.294|101.002 +637354.735|219947.656|99.853 +637373.233|219930.242|97.021 +637382.963|219921.144|98.585 +637406.957|219898.659|99.898 +637411.733|219894.178|99.953 +637440.192|219867.438|97.939 +637449.946|219858.294|98.390 +637469.444|219840.021|99.533 +637474.299|219835.471|99.734 +637479.179|219830.893|99.795 +637488.951|219821.730|100.039 +637513.524|219798.706|101.499 +637518.434|219794.100|101.596 +637523.400|219789.452|102.187 +637562.633|219752.635|101.892 +637567.391|219748.139|100.362 +637572.268|219743.549|99.459 +637577.133|219738.980|99.411 +637582.089|219734.320|98.816 +637587.063|219729.665|99.380 +637591.967|219725.063|99.286 +637601.919|219715.730|99.645 +637606.948|219711.018|99.926 +637611.908|219706.375|100.508 +637616.992|219701.627|101.410 +637622.015|219696.930|102.264 +637627.090|219692.187|103.163 +637632.155|219687.450|104.053 +637637.157|219682.775|104.784 +637642.253|219678.008|105.552 +637647.228|219673.350|106.058 +637652.291|219668.611|106.510 +637657.292|219663.926|106.830 +637662.267|219659.256|106.854 +637667.281|219654.550|106.820 +637672.255|219649.884|106.894 +637677.266|219645.181|106.817 +637682.225|219640.523|106.753 +637687.230|219635.823|106.665 +637692.232|219631.126|106.540 +637697.188|219626.475|106.464 +637702.183|219621.784|106.299 +637707.185|219617.087|106.263 +637712.202|219612.381|106.430 +637717.216|219607.681|106.604 +637722.279|219602.932|106.823 +637727.250|219598.275|107.098 +637732.316|219593.526|107.448 +637737.330|219588.826|107.753 +637742.353|219584.123|108.210 +637747.413|219579.380|108.555 +637752.466|219574.641|108.829 +637757.517|219569.907|109.088 +637762.574|219565.170|109.478 +637767.575|219560.483|109.756 +637772.617|219555.755|109.929 +637777.707|219550.982|110.192 +637782.690|219546.303|110.213 +637787.774|219541.536|110.353 +637792.801|219536.818|110.341 +637797.824|219532.103|110.280 +637802.890|219527.345|110.109 +637807.910|219522.632|109.948 +637812.914|219517.926|109.451 +637823.031|219508.417|108.768 +637828.029|219503.710|108.116 +637833.077|219498.962|107.390 +637838.076|219494.252|106.619 +637843.071|219489.546|105.729 +637848.107|219484.798|104.519 +637853.136|219480.046|103.029 +637858.144|219475.330|102.294 +637863.210|219470.569|101.861 +637868.284|219465.805|101.770 +637873.323|219461.087|102.200 +637870.638|219458.935|102.136 +637865.550|219463.693|101.822 +637860.518|219468.405|101.749 +637855.498|219473.115|102.172 +637850.438|219477.869|102.882 +637845.403|219482.612|104.281 +637840.414|219487.312|105.534 +637835.412|219492.012|106.308 +637830.419|219496.709|107.326 +637825.366|219501.455|107.906 +637820.364|219506.155|108.625 +637815.356|219510.855|109.116 +637810.345|219515.555|109.548 +637805.282|219520.304|109.838 +637800.259|219525.010|109.993 +637795.242|219529.716|110.268 +637790.213|219534.425|110.265 +637785.184|219539.134|110.289 +637780.148|219543.847|110.204 +637775.107|219548.562|109.999 +637770.114|219553.234|109.887 +637765.070|219557.953|109.707 +637760.016|219562.677|109.366 +637755.014|219567.356|109.158 +637749.952|219572.086|108.744 +637744.950|219576.765|108.558 +637739.927|219581.456|108.119 +637734.864|219586.193|107.787 +637729.841|219590.886|107.393 +637724.772|219595.626|107.031 +637719.749|219600.320|106.702 +637714.720|219605.020|106.324 +637709.712|219609.708|106.287 +637704.689|219614.405|106.089 +637699.730|219619.050|106.083 +637694.734|219623.729|106.302 +637689.729|219628.417|106.403 +637684.764|219633.065|106.406 +637679.759|219637.753|106.519 +637674.846|219642.355|106.610 +637669.832|219647.046|106.674 +637664.858|219651.703|106.613 +637659.892|219656.355|106.717 +637654.903|219661.021|106.543 +637650.005|219665.602|106.336 +637644.988|219670.290|105.888 +637640.019|219674.935|105.467 +637635.024|219679.596|104.787 +637630.013|219684.271|103.992 +637624.999|219688.947|103.193 +637619.970|219693.638|102.264 +637614.992|219698.280|101.419 +637609.957|219702.977|100.517 +637604.989|219707.613|99.889 +637600.048|219712.231|99.554 +637595.104|219716.851|99.234 +637590.181|219721.460|99.127 +637585.265|219726.062|99.127 +637580.352|219730.662|99.188 +637575.459|219735.249|99.450 +637570.638|219739.760|99.493 +637565.733|219744.357|99.679 +637526.926|219780.716|101.300 +637512.262|219794.432|100.743 +637507.443|219798.940|100.642 +637497.699|219808.048|100.063 +637492.880|219812.559|100.026 +637488.003|219817.125|99.938 +637483.215|219821.602|99.816 +637473.580|219830.618|99.554 +637468.642|219835.230|99.097 +637463.912|219839.659|99.139 +637459.032|219844.218|98.813 +637454.195|219848.736|98.097 +637449.437|219853.192|98.365 +637439.936|219862.092|98.688 +637425.845|219875.311|100.255 +637392.604|219906.395|99.536 +637350.523|219945.775|100.602 +637336.691|219958.732|101.544 +637332.125|219963.005|101.877 +637304.818|219988.596|104.278 +637300.240|219992.879|104.345 +637272.533|220018.766|102.992 +637240.505|220048.688|101.416 +637222.784|220065.281|102.492 +637218.245|220069.524|102.306 +637213.841|220073.642|102.325 +637209.388|220077.805|102.352 +637205.005|220081.911|102.757 +637200.600|220086.035|102.806 +637196.251|220090.107|103.148 +637178.722|220106.509|103.532 +637166.024|220118.417|105.257 +637148.928|220134.425|106.394 +637119.676|220161.836|109.277 +637067.552|220210.729|117.312 +637063.413|220214.597|117.171 +637059.408|220218.346|117.385 +637055.424|220222.071|117.495 +637047.505|220229.483|117.943 +637133.800|220145.745|107.064 +637142.249|220137.796|106.537 +637150.839|220129.725|106.232 +637159.413|220121.663|105.674 +637176.332|220105.725|103.413 +637180.712|220101.607|103.163 +637185.171|220097.422|103.312 +637198.360|220085.038|103.187 +637207.178|220076.745|102.654 +637211.640|220072.554|102.678 +637229.514|220055.765|102.288 +637233.888|220051.644|101.691 +637238.481|220047.338|101.965 +637247.582|220038.794|102.154 +637256.635|220030.290|101.880 +637261.250|220025.962|102.114 +637302.983|219986.826|104.092 +637321.490|219969.452|103.440 +637330.592|219960.887|102.011 +637335.222|219956.541|101.785 +637339.824|219952.206|101.130 +637401.251|219894.562|99.731 +637415.704|219881.014|100.090 +637420.554|219876.469|100.377 +637430.094|219867.511|99.895 +637449.126|219849.626|98.045 +637453.984|219845.069|98.188 +637458.925|219840.445|98.573 +637463.784|219835.891|98.771 +637468.645|219831.338|99.005 +637473.522|219826.763|99.014 +637478.402|219822.187|99.051 +637483.346|219817.561|99.618 +637493.118|219808.404|99.929 +637502.926|219799.212|100.249 +637507.827|219794.612|100.231 +637542.416|219762.212|102.306 +637547.403|219757.548|102.806 +637557.110|219748.414|101.493 +637561.859|219743.927|99.853 +637566.773|219739.309|99.277 +637571.595|219734.765|98.329 +637581.586|219725.416|99.335 +637586.505|219720.802|99.392 +637591.501|219716.114|99.228 +637596.424|219711.499|99.365 +637601.456|219706.784|99.655 +637606.458|219702.102|100.145 +637611.487|219697.405|100.950 +637616.562|219692.659|101.819 +637621.539|219688.011|102.675 +637626.623|219683.262|103.757 +637631.677|219678.538|104.507 +637636.715|219673.829|105.110 +637641.744|219669.123|105.680 +637646.713|219664.471|106.122 +637651.715|219659.787|106.433 +637656.692|219655.117|106.479 +637661.718|219650.411|106.516 +637666.686|219645.751|106.497 +637671.648|219641.099|106.385 +637676.659|219636.402|106.305 +637681.628|219631.748|106.318 +637686.636|219627.051|106.269 +637691.640|219622.360|106.171 +637696.593|219617.715|105.997 +637701.604|219613.018|106.055 +637706.615|219608.324|106.089 +637711.629|219603.630|106.208 +637716.655|219598.927|106.528 +637721.678|219594.224|106.894 +637726.705|219589.524|107.256 +637731.776|219584.778|107.686 +637736.793|219580.084|108.018 +637741.807|219575.390|108.366 +637746.821|219570.700|108.710 +637751.832|219566.012|109.015 +637756.883|219561.281|109.265 +637761.940|219556.551|109.640 +637766.938|219551.872|109.835 +637771.974|219547.154|109.887 +637776.972|219542.475|110.161 +637782.011|219537.754|110.329 +637787.040|219533.041|110.326 +637792.017|219528.375|110.213 +637797.040|219523.666|110.109 +637802.057|219518.960|109.829 +637807.077|219514.250|109.664 +637812.085|219509.547|109.210 +637817.093|219504.844|108.741 +637822.095|219500.144|108.030 +637827.094|219495.444|107.272 +637832.096|219490.741|106.522 +637837.088|219486.041|105.543 +637842.081|219481.338|104.419 +637847.116|219476.592|102.965 +637852.124|219471.883|102.258 +637857.141|219467.171|101.688 +637862.185|219462.456|102.248 +637867.254|219457.698|101.828 +637861.993|219458.408|101.108 +637857.019|219463.071|101.499 +637852.039|219467.738|101.688 +637847.025|219472.444|102.395 +637842.075|219477.101|103.535 +637837.128|219481.756|104.693 +637832.181|219486.407|105.830 +637827.228|219491.058|106.668 +637822.275|219495.712|107.470 +637817.279|219500.406|108.372 +637812.320|219505.058|108.924 +637807.355|219509.712|109.387 +637802.390|219514.369|109.728 +637797.412|219519.030|109.859 +637792.441|219523.687|110.124 +637787.464|219528.347|110.249 +637782.483|219533.011|110.295 +637777.494|219537.677|110.185 +637772.504|219542.344|110.100 +637767.505|219547.020|109.871 +637762.513|219551.692|109.725 +637757.505|219556.371|109.402 +637752.503|219561.046|109.198 +637747.538|219565.686|108.835 +637742.521|219570.373|108.405 +637737.516|219575.055|108.229 +637732.499|219579.743|107.915 +637727.521|219584.394|107.476 +637722.547|219589.042|107.137 +637717.521|219593.739|106.729 +637712.492|219598.439|106.333 +637707.511|219603.094|106.022 +637702.497|219607.785|105.930 +637697.532|219612.433|105.860 +637692.564|219617.078|105.815 +637687.599|219621.726|105.784 +637682.652|219626.362|106.031 +637677.687|219631.007|106.098 +637672.721|219635.659|106.119 +637667.756|219640.307|106.205 +637662.834|219644.915|106.205 +637657.871|219649.561|106.345 +637652.891|219654.221|106.293 +637647.959|219658.836|106.281 +637643.003|219663.469|105.985 +637637.980|219668.160|105.495 +637632.991|219672.817|104.876 +637627.992|219677.483|104.196 +637622.993|219682.147|103.547 +637617.961|219686.838|102.578 +637612.916|219691.538|101.538 +637607.878|219696.238|100.581 +637602.864|219700.916|99.969 +637597.862|219705.586|99.514 +637592.931|219710.201|99.283 +637588.002|219714.809|99.136 +637578.117|219724.060|99.124 +637573.216|219728.650|99.319 +637568.291|219733.262|99.271 +637563.374|219737.861|99.371 +637558.488|219742.442|99.752 +637553.755|219746.902|101.112 +637544.047|219756.006|102.038 +637539.109|219760.618|101.584 +637534.153|219765.245|100.962 +637529.191|219769.875|100.359 +637524.354|219774.404|100.414 +637519.455|219778.988|100.398 +637514.588|219783.542|100.261 +637509.665|219788.144|100.103 +637465.969|219829.009|98.667 +637456.249|219838.101|98.286 +637451.363|219842.658|97.579 +637446.425|219847.260|96.521 +637370.329|219918.480|96.896 +637352.181|219935.537|100.700 +637329.138|219957.129|102.041 +637320.110|219965.602|103.327 +637306.342|219978.492|103.763 +637301.773|219982.775|104.153 +637292.699|219991.279|104.757 +637255.903|220025.669|102.733 +637233.309|220046.804|102.312 +637228.868|220050.965|102.584 +637202.338|220075.803|103.315 +637197.961|220079.902|103.495 +637193.624|220083.969|103.897 +637189.219|220088.092|103.986 +637184.800|220092.223|103.772 +637180.258|220096.453|102.998 +637175.927|220100.513|103.245 +637171.711|220104.475|104.041 +637150.397|220124.455|105.946 +637146.062|220128.512|106.031 +637133.361|220140.411|106.823 +637100.678|220171.099|112.139 +637084.731|220186.080|115.145 +637080.661|220189.890|115.468 +637056.567|220212.469|117.412 +637052.534|220216.240|117.537 +637044.521|220223.744|117.802 +637040.534|220227.475|117.943 +637116.677|220153.301|108.698 +637145.916|220125.830|105.985 +637158.782|220113.760|105.620 +637171.291|220101.982|103.209 +637175.753|220097.803|103.327 +637193.416|220081.253|103.846 +637197.793|220077.144|103.647 +637202.268|220072.950|103.699 +637206.663|220068.823|103.370 +637220.102|220056.232|103.748 +637233.434|220043.717|102.971 +637242.623|220035.115|103.580 +637251.545|220026.739|103.132 +637265.349|220013.816|103.903 +637269.991|220009.472|104.324 +637279.379|220000.691|105.272 +637293.080|219987.837|104.763 +637320.671|219961.923|103.001 +637325.148|219957.705|102.154 +637362.340|219922.756|98.896 +637390.872|219895.998|98.899 +637395.752|219891.426|99.264 +637443.493|219846.596|96.369 +637448.397|219842.006|96.802 +637453.408|219837.330|98.073 +637458.325|219832.724|98.298 +637463.247|219828.116|98.585 +637468.127|219823.538|98.600 +637473.013|219818.960|98.661 +637477.920|219814.360|98.923 +637482.873|219809.721|99.179 +637487.774|219805.131|99.466 +637497.626|219795.895|99.685 +637502.536|219791.293|99.688 +637507.410|219786.718|99.432 +637522.205|219772.849|99.828 +637527.161|219768.204|99.956 +637537.088|219758.911|100.822 +637556.784|219740.419|99.676 +637561.637|219735.853|98.987 +637566.626|219731.177|99.130 +637571.561|219726.553|99.252 +637576.563|219721.859|99.121 +637586.438|219712.587|98.573 +637591.465|219707.884|99.243 +637596.497|219703.172|99.478 +637601.538|219698.451|99.877 +637606.555|219693.763|100.535 +637611.652|219689.005|101.587 +637616.736|219684.256|102.544 +637621.798|219679.526|103.321 +637626.852|219674.798|104.062 +637631.906|219670.077|104.830 +637636.944|219665.364|105.461 +637641.997|219660.631|105.760 +637646.996|219655.949|105.988 +637652.031|219651.231|106.135 +637657.000|219646.570|106.043 +637662.011|219641.864|105.940 +637667.037|219637.152|106.043 +637672.002|219632.495|105.961 +637677.010|219627.795|105.897 +637682.021|219623.092|105.836 +637687.026|219618.395|105.729 +637692.034|219613.698|105.717 +637696.999|219609.040|105.732 +637702.013|219604.337|105.842 +637707.024|219599.640|105.903 +637712.059|219594.925|106.369 +637717.131|219590.176|106.708 +637722.154|219585.470|107.058 +637727.180|219580.764|107.506 +637732.249|219576.018|107.927 +637737.263|219571.321|108.201 +637742.274|219566.627|108.512 +637747.334|219561.888|108.872 +637752.338|219557.197|109.152 +637757.389|219552.466|109.417 +637762.439|219547.733|109.722 +637767.438|219543.048|109.966 +637772.483|219538.324|110.185 +637777.512|219533.605|110.188 +637782.544|219528.884|110.243 +637787.570|219524.169|110.164 +637792.545|219519.499|109.978 +637797.613|219514.741|109.862 +637802.624|219510.032|109.512 +637807.590|219505.369|109.097 +637812.591|219500.665|108.494 +637817.645|219495.914|107.966 +637822.592|219491.253|107.028 +637827.584|219486.550|106.049 +637832.629|219481.798|105.141 +637837.567|219477.141|103.839 +637842.565|219472.432|102.748 +637847.573|219467.717|101.959 +637852.593|219462.998|101.617 +637857.659|219458.237|101.093 +637853.858|219457.969|101.240 +637848.829|219462.675|101.529 +637843.815|219467.381|102.163 +637838.804|219472.081|102.934 +637833.851|219476.736|104.028 +637828.859|219481.430|105.208 +637823.863|219486.123|106.260 +637818.916|219490.772|107.250 +637813.914|219495.466|108.070 +637808.961|219500.114|108.765 +637803.993|219504.768|109.125 +637799.025|219509.419|109.545 +637794.053|219514.077|109.765 +637789.079|219518.734|109.996 +637784.102|219523.391|110.179 +637779.118|219528.052|110.182 +637774.129|219532.715|110.128 +637769.133|219537.382|110.012 +637764.180|219542.006|109.777 +637759.184|219546.675|109.649 +637754.222|219551.308|109.335 +637749.214|219555.984|109.033 +637744.249|219560.620|108.725 +637739.232|219565.301|108.360 +637734.261|219569.944|108.015 +637729.292|219574.583|107.744 +637724.318|219579.225|107.381 +637719.292|219583.919|106.997 +637714.308|219588.570|106.589 +637709.328|219593.218|106.284 +637704.384|219597.830|105.815 +637699.413|219602.475|105.705 +637694.445|219607.120|105.610 +637689.476|219611.762|105.607 +637684.511|219616.404|105.626 +637679.592|219621.004|105.659 +637674.626|219625.649|105.708 +637669.704|219630.251|105.711 +637664.736|219634.897|105.815 +637659.816|219639.496|105.912 +637654.924|219644.068|105.766 +637649.956|219648.713|105.888 +637645.027|219653.325|105.915 +637640.074|219657.949|105.702 +637635.152|219662.542|105.306 +637630.174|219667.187|104.842 +637625.163|219671.854|104.062 +637620.213|219676.471|103.455 +637615.190|219681.150|102.605 +637610.207|219685.792|101.712 +637605.193|219690.456|100.554 +637600.215|219695.092|99.834 +637595.265|219699.712|99.438 +637590.331|219704.321|99.203 +637580.504|219713.508|99.286 +637575.560|219718.125|99.063 +637570.625|219722.737|98.932 +637565.745|219727.297|98.917 +637560.805|219731.915|98.786 +637555.974|219736.441|99.267 +637541.493|219750.008|100.852 +637531.608|219759.231|99.920 +637526.725|219763.788|99.594 +637521.790|219768.396|99.249 +637516.907|219772.956|98.990 +637497.513|219791.092|99.295 +637492.685|219795.603|99.203 +637487.814|219800.156|99.179 +637482.989|219804.668|99.136 +637478.124|219809.206|98.822 +637468.447|219818.243|98.274 +637458.748|219827.305|98.045 +637453.890|219831.844|97.899 +637448.958|219836.425|96.521 +637430.112|219854.094|99.091 +637420.642|219862.958|99.755 +637391.997|219889.728|99.203 +637382.451|219898.641|98.679 +637368.073|219912.049|97.070 +637354.351|219924.927|99.472 +637349.712|219929.273|99.883 +637335.965|219942.151|101.346 +637331.403|219946.424|101.675 +637322.246|219955.001|102.477 +637317.696|219959.262|102.925 +637272.171|220001.864|105.187 +637253.797|220019.019|104.047 +637249.253|220023.261|103.952 +637226.734|220044.308|103.724 +637209.162|220060.758|104.876 +637195.748|220073.282|104.239 +637187.015|220081.451|104.510 +637182.559|220085.614|104.373 +637178.067|220089.802|103.815 +637173.577|220093.990|103.306 +637169.185|220098.087|103.047 +637160.922|220105.850|105.013 +637143.831|220121.849|106.202 +637139.579|220125.830|106.446 +637135.398|220129.743|106.796 +637126.955|220137.644|107.174 +637122.727|220141.597|107.351 +637110.331|220153.213|108.786 +637090.378|220171.949|113.194 +637078.391|220183.193|115.044 +637070.326|220190.749|115.803 +637066.394|220194.434|116.303 +637050.343|220209.461|117.257 +637046.347|220213.204|117.531 +637042.348|220216.941|117.610 +637130.438|220132.261|106.894 +637164.241|220100.507|103.522 +637168.557|220096.459|103.413 +637172.955|220092.335|103.462 +637181.950|220083.929|104.559 +637186.382|220079.781|104.824 +637190.829|220075.614|104.952 +637195.190|220071.520|104.669 +637213.042|220054.799|105.199 +637239.935|220029.583|104.845 +637257.970|220012.673|104.452 +637271.869|219999.667|105.565 +637285.567|219986.829|105.479 +637401.656|219877.914|98.463 +637430.499|219850.894|98.579 +637449.461|219833.081|96.146 +637454.527|219828.369|97.820 +637459.361|219823.839|97.789 +637473.994|219810.145|98.484 +637478.944|219805.512|98.682 +637488.732|219796.350|99.057 +637493.535|219791.845|98.969 +637508.257|219778.052|98.917 +637513.128|219773.493|99.039 +637518.093|219768.844|99.182 +637522.997|219764.248|99.231 +637527.950|219759.612|99.283 +637552.584|219736.532|99.277 +637557.421|219731.982|98.411 +637562.426|219727.300|98.670 +637567.349|219722.688|98.621 +637572.347|219718.010|98.886 +637577.340|219713.340|99.109 +637587.271|219704.035|99.094 +637592.208|219699.414|99.347 +637597.241|219694.705|99.594 +637602.261|219690.014|100.264 +637607.363|219685.256|101.322 +637612.392|219680.562|102.184 +637617.485|219675.813|103.251 +637622.533|219671.098|103.855 +637627.535|219666.425|104.562 +637632.567|219661.719|105.089 +637637.587|219657.025|105.485 +637642.641|219652.298|105.778 +637647.624|219647.631|105.808 +637652.598|219642.968|105.778 +637657.615|219638.268|105.690 +637662.642|219633.559|105.729 +637667.604|219628.910|105.592 +637672.627|219624.204|105.644 +637677.644|219619.507|105.626 +637682.652|219614.810|105.552 +637687.715|219610.071|105.555 +637692.683|219605.416|105.586 +637697.742|219600.677|105.626 +637702.763|219595.980|105.766 +637707.798|219591.271|106.193 +637712.876|219586.522|106.552 +637717.954|219581.773|106.967 +637722.977|219577.073|107.326 +637728.046|219572.333|107.701 +637733.112|219567.594|108.024 +637738.132|219562.900|108.415 +637743.240|219558.120|108.722 +637748.251|219553.436|109.033 +637753.305|219548.705|109.323 +637758.358|219543.978|109.622 +637763.360|219539.299|109.847 +637768.450|219534.532|110.009 +637773.488|219529.817|110.085 +637778.524|219525.098|110.170 +637783.550|219520.389|110.060 +637788.576|219515.677|109.920 +637793.599|219510.971|109.743 +637798.668|219506.219|109.536 +637803.682|219501.513|109.192 +637808.690|219496.810|108.640 +637813.692|219492.110|107.896 +637818.739|219487.367|107.076 +637823.732|219482.670|105.994 +637828.770|219477.924|104.842 +637833.763|219473.224|103.663 +637838.765|219468.518|102.611 +637843.824|219463.763|101.855 +637848.890|219459.008|101.310 +637842.169|219461.179|101.852 +637837.152|219465.879|102.550 +637832.147|219470.576|103.468 +637827.103|219475.312|104.681 +637822.110|219480.003|105.851 +637817.115|219484.691|106.924 +637812.110|219489.385|107.668 +637807.108|219494.076|108.442 +637802.097|219498.767|109.000 +637797.083|219503.461|109.433 +637792.060|219508.161|109.676 +637787.040|219512.858|109.948 +637782.050|219517.518|109.920 +637777.070|219522.175|110.076 +637772.086|219526.836|110.118 +637767.094|219531.502|110.048 +637762.089|219536.172|109.792 +637757.087|219540.844|109.573 +637752.079|219545.517|109.323 +637747.071|219550.193|109.055 +637742.103|219554.832|108.677 +637737.138|219559.465|108.411 +637732.118|219564.149|108.061 +637727.137|219568.795|107.607 +637722.160|219573.440|107.235 +637717.183|219578.085|106.942 +637712.251|219582.687|106.598 +637707.213|219587.387|106.150 +637702.287|219591.987|105.946 +637697.288|219596.647|105.467 +637692.375|219601.244|105.495 +637687.455|219605.840|105.516 +637682.487|219610.482|105.528 +637677.565|219615.085|105.519 +637672.633|219619.690|105.421 +637667.710|219624.293|105.464 +637662.785|219628.895|105.485 +637657.862|219633.498|105.540 +637652.937|219638.103|105.598 +637648.005|219642.712|105.635 +637643.125|219647.275|105.687 +637638.184|219651.892|105.610 +637633.265|219656.483|105.254 +637628.294|219661.122|104.888 +637623.341|219665.736|104.227 +637618.382|219670.357|103.519 +637613.416|219674.981|102.821 +637608.421|219679.629|101.794 +637603.431|219684.274|100.898 +637598.441|219688.923|100.039 +637593.470|219693.555|99.411 +637588.581|219698.121|99.170 +637583.622|219702.745|98.771 +637578.767|219707.287|98.914 +637573.820|219711.904|98.661 +637568.989|219716.419|98.637 +637564.045|219721.036|98.484 +637549.539|219734.612|99.341 +637544.745|219739.108|100.206 +637539.840|219743.689|100.029 +637530.069|219752.815|99.703 +637525.149|219757.396|99.078 +637515.408|219766.494|98.743 +637481.386|219798.288|98.493 +637476.549|219802.805|98.405 +637471.693|219807.338|98.204 +637462.016|219816.372|97.716 +637457.172|219820.898|97.679 +637452.418|219825.345|97.957 +637418.987|219856.606|98.880 +637404.631|219870.011|98.515 +637390.397|219883.303|98.515 +637380.896|219892.179|98.649 +637329.638|219940.109|101.438 +637325.099|219944.358|101.941 +637311.365|219957.208|103.114 +637306.763|219961.509|103.303 +637297.707|219969.985|104.284 +637275.045|219991.181|105.863 +637261.335|220003.977|105.452 +637256.754|220008.250|105.110 +637229.703|220033.515|105.303 +637211.945|220050.111|105.970 +637207.440|220054.314|105.717 +637180.816|220079.165|105.141 +637176.317|220083.353|104.577 +637171.727|220087.623|103.586 +637167.356|220091.704|103.675 +637162.927|220095.837|103.495 +637158.712|220099.785|104.114 +637154.734|220103.531|105.595 +637141.932|220115.497|106.321 +637124.967|220131.356|107.162 +637120.724|220135.318|107.290 +637108.240|220146.995|108.134 +637104.204|220150.775|108.774 +637084.322|220169.428|113.368 +637044.280|220206.876|117.193 +637108.959|220144.429|107.970 +637125.705|220128.725|106.881 +637134.224|220120.749|106.857 +637138.433|220116.799|106.406 +637155.271|220100.998|104.699 +637159.349|220097.151|103.446 +637163.765|220093.018|103.559 +637172.641|220084.721|104.291 +637177.134|220080.524|104.824 +637226.134|220034.661|105.769 +637244.120|220017.821|105.760 +637289.700|219975.130|105.074 +637307.823|219958.110|103.193 +637312.487|219953.739|103.096 +637321.637|219945.147|102.194 +637330.827|219936.518|101.285 +637349.331|219919.148|99.801 +637367.713|219901.859|96.482 +637401.427|219870.312|98.615 +637430.167|219843.380|98.353 +637435.157|219838.726|99.353 +637439.857|219834.309|98.643 +637449.223|219825.485|96.256 +637459.102|219816.259|97.753 +637468.862|219807.121|98.088 +637473.815|219802.485|98.292 +637483.568|219793.350|98.356 +637488.402|219788.824|98.463 +637493.288|219784.240|98.231 +637498.196|219779.649|98.588 +637508.013|219770.451|98.594 +637512.927|219765.851|98.676 +637532.687|219747.350|99.307 +637542.556|219738.114|99.667 +637547.409|219733.551|98.908 +637552.258|219728.992|98.137 +637562.204|219719.683|98.472 +637567.199|219715.004|98.697 +637572.128|219710.390|98.734 +637577.121|219705.717|98.947 +637582.065|219701.081|98.728 +637587.072|219696.396|99.164 +637592.114|219691.684|99.459 +637597.085|219687.039|100.087 +637602.169|219682.293|100.926 +637607.256|219677.544|101.843 +637612.337|219672.802|102.757 +637617.348|219668.123|103.471 +637622.411|219663.395|104.260 +637627.455|219658.683|104.888 +637632.482|219653.983|105.342 +637637.486|219649.301|105.574 +637642.522|219644.583|105.638 +637647.493|219639.926|105.519 +637652.519|219635.217|105.491 +637657.490|219630.556|105.418 +637662.511|219625.853|105.376 +637667.531|219621.150|105.351 +637672.514|219616.487|105.467 +637677.589|219611.735|105.574 +637682.600|219607.038|105.485 +637687.611|219602.341|105.431 +637692.668|219597.604|105.342 +637697.700|219592.895|105.638 +637702.729|219588.189|105.897 +637707.813|219583.437|106.308 +637712.897|219578.682|106.744 +637717.917|219573.985|106.985 +637723.035|219569.197|107.311 +637728.070|219564.491|107.872 +637733.139|219559.751|108.210 +637738.199|219555.014|108.469 +637743.264|219550.278|108.832 +637748.327|219545.544|109.192 +637753.430|219540.768|109.478 +637758.431|219536.086|109.664 +637763.531|219531.313|109.926 +637768.575|219526.592|110.070 +637773.613|219521.874|110.112 +637778.691|219517.116|110.027 +637783.766|219512.358|109.890 +637788.792|219507.648|109.698 +637793.864|219502.894|109.475 +637798.878|219498.187|109.027 +637803.941|219493.436|108.561 +637808.998|219488.687|107.960 +637813.996|219483.987|107.119 +637819.047|219479.238|106.232 +637824.091|219474.492|105.114 +637829.081|219469.789|103.803 +637834.129|219465.037|102.678 +637839.191|219460.282|101.907 +637835.326|219459.755|102.154 +637830.315|219464.446|103.157 +637825.268|219469.177|104.352 +637820.224|219473.907|105.501 +637815.225|219478.592|106.574 +637810.217|219483.277|107.363 +637805.157|219488.007|108.000 +637800.149|219492.692|108.716 +637795.129|219497.383|109.064 +637790.109|219502.071|109.466 +637785.080|219506.765|109.664 +637780.008|219511.501|109.893 +637775.025|219516.152|110.030 +637769.989|219520.849|110.067 +637764.945|219525.552|109.969 +637759.943|219530.213|109.753 +637754.896|219534.919|109.622 +637749.839|219539.628|109.353 +637744.828|219544.298|109.076 +637739.808|219548.970|108.680 +637734.742|219553.692|108.326 +637729.774|219558.319|108.073 +637724.702|219563.040|107.735 +637719.709|219567.688|107.116 +637714.680|219572.370|106.759 +637709.657|219577.052|106.525 +637704.671|219581.694|106.132 +637699.632|219586.385|105.732 +637694.652|219591.027|105.525 +637689.668|219595.669|105.299 +637684.697|219600.305|105.275 +637679.735|219604.935|105.385 +637674.767|219609.571|105.437 +637669.789|219614.210|105.391 +637664.858|219618.809|105.321 +637659.874|219623.457|105.248 +637654.942|219628.057|105.232 +637649.968|219632.696|105.299 +637645.030|219637.301|105.269 +637640.114|219641.892|105.498 +637635.164|219646.503|105.348 +637630.250|219651.082|105.101 +637625.279|219655.711|104.739 +637620.323|219660.320|104.059 +637615.321|219664.971|103.462 +637610.341|219669.598|102.584 +637605.367|219674.225|101.809 +637600.377|219678.858|100.938 +637595.387|219683.497|100.075 +637590.416|219688.121|99.496 +637585.463|219692.733|99.124 +637580.559|219697.298|98.777 +637570.766|219706.433|98.822 +637565.910|219710.957|98.560 +637560.988|219715.550|98.609 +637556.117|219720.085|98.259 +637551.246|219724.630|98.380 +637546.424|219729.129|98.530 +637541.578|219733.658|98.935 +637536.707|219738.194|98.682 +637531.833|219742.744|98.853 +637526.975|219747.274|98.740 +637507.556|219765.373|98.298 +637502.688|219769.911|98.225 +637497.885|219774.392|98.323 +637493.075|219778.878|98.374 +637488.253|219783.377|98.335 +637468.935|219801.379|97.841 +637464.137|219805.850|97.737 +637459.334|219810.328|97.606 +637454.512|219814.823|97.341 +637449.543|219819.429|96.027 +637445.081|219823.638|98.521 +637341.330|219920.455|100.081 +637282.129|219975.792|105.376 +637268.595|219988.435|106.369 +637214.585|220038.837|107.061 +637210.165|220042.955|106.967 +637192.240|220059.664|106.272 +637174.519|220076.181|105.650 +637170.038|220080.354|105.174 +637156.630|220092.829|103.565 +637152.460|220096.731|104.166 +637148.330|220100.601|105.202 +637118.798|220128.189|107.214 +637114.613|220132.100|107.610 +637102.110|220143.773|108.180 +637098.075|220147.550|108.823 +637058.234|220184.851|115.321 +637050.319|220192.255|116.178 +637042.433|220199.628|116.757 +637038.501|220203.304|117.120 +637034.545|220207.001|117.388 +637108.542|220135.480|107.759 +637129.637|220115.741|106.842 +637142.341|220103.842|105.592 +637146.532|220099.913|105.086 +637150.653|220096.045|104.251 +637154.929|220092.037|103.675 +637159.297|220087.955|103.785 +637163.784|220083.776|104.480 +637168.325|220079.543|105.226 +637172.800|220075.370|105.656 +637186.092|220062.959|106.226 +637217.401|220033.707|107.000 +637239.831|220012.731|106.461 +637248.863|220004.281|106.089 +637267.166|219987.176|106.311 +637271.723|219982.915|106.025 +637276.264|219978.660|105.696 +637285.353|219970.153|105.077 +637335.682|219923.022|100.316 +637354.281|219905.608|98.847 +637411.529|219852.113|99.097 +637445.093|219820.724|97.878 +637449.610|219816.460|95.784 +637454.576|219811.830|96.351 +637464.421|219802.656|97.652 +637469.261|219798.136|97.725 +637474.147|219793.570|97.771 +637493.627|219775.373|98.106 +637498.485|219770.835|98.054 +637503.377|219766.260|97.896 +637508.233|219761.721|97.856 +637513.213|219757.070|98.091 +637518.059|219752.541|98.012 +637527.914|219743.342|98.502 +637532.842|219738.733|98.365 +637537.789|219734.118|98.877 +637542.669|219729.549|98.313 +637547.558|219724.968|97.887 +637557.482|219715.705|98.423 +637562.414|219711.100|98.441 +637567.376|219706.458|98.307 +637572.338|219701.831|98.661 +637582.253|219692.571|98.899 +637587.249|219687.908|99.219 +637592.211|219683.281|99.676 +637597.247|219678.593|100.468 +637602.285|219673.899|101.364 +637607.332|219669.205|102.349 +637612.401|219664.484|103.123 +637617.360|219659.863|103.791 +637622.405|219655.160|104.367 +637627.388|219650.512|104.836 +637632.357|219645.876|105.174 +637637.358|219641.206|105.348 +637642.281|219636.604|105.171 +637647.261|219631.946|105.153 +637652.239|219627.295|105.101 +637657.222|219622.638|105.162 +637662.251|219617.938|105.190 +637667.189|219613.323|105.306 +637672.209|219608.629|105.290 +637677.187|219603.978|105.342 +637682.198|219599.290|105.223 +637687.212|219594.599|105.196 +637692.195|219589.945|105.412 +637697.215|219585.257|105.455 +637702.250|219580.554|105.815 +637707.249|219575.893|106.360 +637712.324|219571.154|106.659 +637717.359|219566.457|107.083 +637722.389|219561.760|107.512 +637727.415|219557.069|107.881 +637732.435|219552.384|108.192 +637737.507|219547.650|108.600 +637742.521|219542.969|108.917 +637747.538|219538.284|109.280 +637752.591|219533.566|109.503 +637757.596|219528.890|109.698 +637762.650|219524.172|109.939 +637767.688|219519.459|109.960 +637772.681|219514.793|109.987 +637777.716|219510.087|109.911 +637782.693|219505.426|109.695 +637787.720|219500.723|109.469 +637792.743|219496.023|109.195 +637797.763|219491.323|108.792 +637802.722|219486.672|108.098 +637807.736|219481.972|107.534 +637812.792|219477.232|106.778 +637817.749|219472.581|105.872 +637822.796|219467.842|104.736 +637827.795|219463.145|103.599 +637832.800|219458.445|102.489 +637827.048|219459.822|103.291 +637822.046|219464.513|104.498 +637817.044|219469.204|105.613 +637812.040|219473.895|106.510 +637807.029|219478.583|107.296 +637802.057|219483.234|107.808 +637797.050|219487.922|108.555 +637792.029|219492.613|109.015 +637787.006|219497.310|109.320 +637782.023|219501.964|109.490 +637776.997|219506.655|109.777 +637772.013|219511.309|109.954 +637766.972|219516.009|109.932 +637761.927|219520.712|109.871 +637756.929|219525.373|109.747 +637751.918|219530.042|109.457 +637746.910|219534.709|109.259 +637741.847|219539.424|108.948 +637736.830|219544.097|108.652 +637731.856|219548.729|108.277 +637726.833|219553.408|107.942 +637721.806|219558.090|107.592 +637716.774|219562.775|107.134 +637711.791|219567.417|106.784 +637706.813|219572.056|106.525 +637701.760|219576.756|105.900 +637696.770|219581.401|105.543 +637691.784|219586.049|105.263 +637686.764|219590.728|105.248 +637681.829|219595.330|105.062 +637676.861|219599.963|105.159 +637671.892|219604.599|105.232 +637666.909|219609.245|105.144 +637661.928|219613.890|105.095 +637656.994|219618.492|105.062 +637652.013|219623.137|105.062 +637647.030|219627.786|105.046 +637642.095|219632.388|105.089 +637637.118|219637.033|105.168 +637632.232|219641.593|105.235 +637627.221|219646.260|105.010 +637622.289|219650.850|104.586 +637617.287|219655.504|103.937 +637612.282|219660.158|103.340 +637607.317|219664.776|102.654 +637602.236|219669.498|101.788 +637597.289|219674.094|100.859 +637592.245|219678.782|99.969 +637587.322|219683.363|99.392 +637582.314|219688.023|98.993 +637577.419|219692.586|98.758 +637567.574|219701.758|98.341 +637557.766|219710.908|98.365 +637552.871|219715.471|98.265 +637548.006|219720.012|98.463 +637543.044|219724.627|97.798 +637538.213|219729.144|98.341 +637533.321|219733.698|97.926 +637528.478|219738.224|98.393 +637523.601|219742.769|98.158 +637518.669|219747.362|97.902 +637513.850|219751.855|97.798 +637508.922|219756.448|97.600 +637504.127|219760.919|97.762 +637499.272|219765.452|97.807 +637479.868|219783.545|97.625 +637475.037|219788.050|97.594 +637470.181|219792.573|97.393 +637460.504|219801.589|96.948 +637455.615|219806.140|96.579 +637398.654|219859.291|98.637 +637365.424|219890.228|97.481 +637351.562|219903.173|99.036 +637305.696|219945.985|103.154 +637296.515|219954.547|103.690 +637282.985|219967.175|104.836 +637273.981|219975.581|105.668 +637265.008|219983.957|106.436 +637260.485|219988.173|106.656 +637255.955|219992.391|106.570 +637251.450|219996.588|106.634 +637233.580|220013.255|107.616 +637215.716|220029.903|107.811 +637193.453|220050.642|107.845 +637171.227|220071.319|106.531 +637166.786|220075.449|106.241 +637157.694|220083.883|104.510 +637153.289|220087.983|104.214 +637148.976|220091.997|104.147 +637140.515|220099.897|105.040 +637136.394|220103.750|105.906 +637102.875|220135.013|108.058 +637094.630|220142.704|108.582 +637086.629|220150.180|109.993 +637066.942|220168.593|114.227 +637055.009|220179.725|115.394 +637046.975|220187.211|115.754 +637043.064|220190.859|116.187 +637116.073|220119.999|107.284 +637120.328|220116.021|107.211 +637124.553|220112.068|107.022 +637128.838|220108.060|106.894 +637133.008|220104.146|106.260 +637141.198|220096.450|104.306 +637145.441|220092.479|104.025 +637154.304|220084.203|104.565 +637158.824|220079.991|105.162 +637167.911|220071.527|106.665 +637181.209|220059.106|107.235 +637203.636|220038.163|108.302 +637212.558|220029.812|107.909 +637225.939|220017.303|107.674 +637230.443|220013.087|107.515 +637257.473|219987.801|106.644 +637262.073|219983.500|106.574 +637271.086|219975.060|105.735 +637284.695|219962.316|104.653 +637321.500|219927.883|101.877 +637353.940|219897.522|98.777 +637363.282|219888.774|97.756 +637430.457|219826.055|98.929 +637454.475|219803.592|97.338 +637469.145|219789.894|97.472 +637473.985|219785.374|97.554 +637493.578|219767.076|97.597 +637498.467|219762.514|97.804 +637503.347|219757.951|97.533 +637508.236|219753.379|97.372 +637513.195|219748.758|97.814 +637518.096|219744.180|97.807 +637523.006|219739.596|97.887 +637532.876|219730.382|98.106 +637537.762|219725.819|98.036 +637542.754|219721.155|98.073 +637547.665|219716.574|98.268 +637552.602|219711.962|98.295 +637557.543|219707.348|98.384 +637562.527|219702.696|98.441 +637577.444|219688.773|98.856 +637582.378|219684.168|99.011 +637587.380|219679.501|99.383 +637592.419|219674.813|100.148 +637597.466|219670.119|101.084 +637602.504|219665.428|101.974 +637607.582|219660.704|102.818 +637612.593|219656.038|103.471 +637617.586|219651.383|103.967 +637622.624|219646.689|104.489 +637627.647|219642.005|104.861 +637632.652|219637.335|105.056 +637637.636|219632.681|104.986 +637642.567|219628.072|104.906 +637647.551|219623.418|104.900 +637652.534|219618.767|104.906 +637657.564|219614.070|104.943 +637662.547|219609.421|104.989 +637667.528|219604.773|105.025 +637672.505|219600.125|105.062 +637677.525|219595.440|105.031 +637682.499|219590.798|105.046 +637687.519|219586.113|105.071 +637692.503|219581.465|105.266 +637697.538|219576.771|105.580 +637702.586|219572.071|106.092 +637707.575|219567.423|106.479 +637712.659|219562.683|106.927 +637717.646|219558.038|107.339 +637722.718|219553.311|107.622 +637727.747|219548.626|108.046 +637732.764|219543.947|108.329 +637737.787|219539.268|108.698 +637742.850|219534.547|108.994 +637747.864|219529.875|109.265 +637752.875|219525.202|109.554 +637757.928|219520.490|109.768 +637762.927|219515.826|109.859 +637767.972|219511.120|109.942 +637773.007|219506.417|109.850 +637778.033|219501.720|109.594 +637783.017|219497.066|109.405 +637788.043|219492.369|109.122 +637793.066|219487.675|108.768 +637798.080|219482.984|108.171 +637803.042|219478.339|107.457 +637808.105|219473.599|106.833 +637813.116|219468.908|106.068 +637818.075|219464.263|105.114 +637823.073|219459.572|103.916 +637818.794|219459.344|104.446 +637813.841|219463.986|105.623 +637808.873|219468.628|106.366 +637803.901|219473.273|106.991 +637798.930|219477.915|107.579 +637793.919|219482.600|108.326 +637788.945|219487.242|108.783 +637783.967|219491.887|109.140 +637778.990|219496.535|109.490 +637774.049|219501.141|109.631 +637769.020|219505.838|109.829 +637764.073|219510.447|109.881 +637759.077|219515.104|109.856 +637754.067|219519.770|109.573 +637749.059|219524.437|109.329 +637744.097|219529.058|109.158 +637739.080|219533.727|108.823 +637734.108|219538.357|108.509 +637729.091|219543.030|108.259 +637724.111|219547.663|107.909 +637719.085|219552.344|107.555 +637714.101|219556.980|107.177 +637709.112|219561.626|106.744 +637704.122|219566.268|106.336 +637699.123|219570.919|105.827 +637694.131|219575.564|105.482 +637689.135|219580.212|105.104 +637684.203|219584.812|104.961 +637679.229|219589.448|104.958 +637674.248|219594.087|104.903 +637669.323|219598.680|104.922 +637664.342|219603.322|104.903 +637659.402|219607.928|104.778 +637654.418|219612.573|104.742 +637649.526|219617.130|104.708 +637644.543|219621.778|104.705 +637639.614|219626.374|104.845 +637634.676|219630.977|104.854 +637629.732|219635.585|104.836 +637624.816|219640.164|104.608 +637619.799|219644.836|104.324 +637614.852|219649.439|103.785 +637609.868|219654.078|103.410 +637604.842|219658.744|102.614 +637599.859|219663.374|101.782 +637594.817|219668.056|100.904 +637589.816|219672.701|99.978 +637584.838|219677.331|99.322 +637579.885|219681.940|99.005 +637574.944|219686.542|98.826 +637565.072|219695.732|98.134 +637560.183|219700.298|98.530 +637555.279|219704.867|98.335 +637550.380|219709.430|98.219 +637545.434|219714.038|98.140 +637540.551|219718.592|98.216 +637535.607|219723.182|97.305 +637530.797|219727.681|98.097 +637525.881|219732.262|97.914 +637521.010|219736.798|97.750 +637501.460|219755.009|97.177 +637496.623|219759.523|97.411 +637486.939|219768.552|97.457 +637482.041|219773.115|97.241 +637477.262|219777.577|97.628 +637467.584|219786.596|97.497 +637462.686|219791.153|96.991 +637458.056|219795.499|98.606 +637453.262|219799.967|98.551 +637448.397|219804.497|98.387 +637443.685|219808.904|99.002 +637410.117|219840.189|98.819 +637405.369|219844.618|98.960 +637395.877|219853.466|99.002 +637381.573|219866.792|98.588 +637376.858|219871.181|98.420 +637362.468|219884.562|96.759 +637348.676|219897.458|98.829 +637330.241|219914.673|100.508 +637316.522|219927.487|102.035 +637302.867|219940.240|103.148 +637293.714|219948.783|103.867 +637280.096|219961.487|104.568 +637271.107|219969.888|105.504 +637221.921|220015.782|108.308 +637212.991|220024.106|108.335 +637195.382|220040.531|109.116 +637181.913|220053.065|108.006 +637155.106|220077.994|105.290 +637146.096|220086.367|104.050 +637133.486|220098.148|105.473 +637121.002|220109.813|107.101 +637108.234|220121.715|107.336 +637095.819|220133.304|108.344 +637083.435|220144.868|109.359 +637107.109|220120.002|107.494 +637115.525|220112.150|107.354 +637132.112|220096.633|105.202 +637136.248|220092.759|104.400 +637144.825|220084.749|104.022 +637149.245|220080.640|104.580 +637220.742|220014.017|108.488 +637225.183|220009.871|108.244 +637261.064|219976.359|106.302 +637265.520|219972.192|105.723 +637283.735|219955.181|104.611 +637288.273|219950.932|104.010 +637292.806|219946.695|103.654 +637324.968|219916.618|100.685 +637334.188|219907.992|99.658 +637343.525|219899.265|99.103 +637352.934|219890.472|98.441 +637362.111|219881.870|96.668 +637381.439|219863.866|98.374 +637386.227|219859.398|98.402 +637410.221|219837.007|98.585 +637429.582|219818.947|99.142 +637444.066|219805.420|98.704 +637453.740|219796.392|98.633 +637458.626|219791.832|98.627 +637468.231|219782.844|97.378 +637482.879|219769.167|97.137 +637487.759|219764.614|97.204 +637492.673|219760.029|97.155 +637497.580|219755.448|97.088 +637502.512|219750.849|97.262 +637507.440|219746.249|97.430 +637517.368|219736.990|97.585 +637522.287|219732.402|97.747 +637527.164|219727.836|97.103 +637532.114|219723.228|97.588 +637537.167|219718.525|98.143 +637542.117|219713.907|98.240 +637547.052|219709.301|98.204 +637551.990|219704.693|98.237 +637556.986|219700.033|98.387 +637561.978|219695.375|98.512 +637566.907|219690.776|98.512 +637571.948|219686.076|98.710 +637576.883|219681.470|98.829 +637581.927|219676.770|99.088 +637586.944|219672.098|99.630 +637591.992|219667.407|100.517 +637597.085|219662.670|101.435 +637602.123|219657.988|102.300 +637607.198|219653.267|103.126 +637612.234|219648.573|103.532 +637617.281|219643.876|104.102 +637622.347|219639.155|104.370 +637627.306|219634.531|104.541 +637632.351|219629.825|104.614 +637637.343|219625.164|104.665 +637642.375|219620.470|104.623 +637647.402|219615.776|104.550 +637652.385|219611.125|104.571 +637657.420|219606.425|104.635 +637662.456|219601.725|104.766 +637667.439|219597.074|104.836 +637672.505|219592.340|104.784 +637677.534|219587.649|104.864 +637682.505|219583.007|104.839 +637687.580|219578.271|104.979 +637692.573|219573.613|105.357 +637697.660|219568.874|105.717 +637702.711|219564.168|106.287 +637707.749|219559.474|106.723 +637712.830|219554.737|107.104 +637717.902|219550.007|107.421 +637722.931|219545.319|107.826 +637728.000|219540.591|108.107 +637733.023|219535.910|108.469 +637738.089|219531.185|108.808 +637743.155|219526.461|109.158 +637748.160|219521.791|109.314 +637753.216|219517.076|109.554 +637758.273|219512.361|109.801 +637763.314|219507.652|109.835 +637768.353|219502.948|109.801 +637773.382|219498.248|109.558 +637778.411|219493.545|109.356 +637783.437|219488.848|109.018 +637788.460|219484.151|108.704 +637793.474|219479.457|108.070 +637798.485|219474.764|107.354 +637803.499|219470.070|106.702 +637808.568|219465.330|106.168 +637813.579|219460.633|105.376 +637810.433|219459.170|105.379 +637805.465|219463.809|106.257 +637800.485|219468.451|106.705 +637795.462|219473.136|107.302 +637790.493|219477.775|108.052 +637785.522|219482.414|108.640 +637780.542|219487.056|109.024 +637775.555|219491.698|109.311 +637770.575|219496.343|109.643 +637765.579|219500.992|109.737 +637760.632|219505.597|109.817 +637755.627|219510.251|109.713 +637750.616|219514.909|109.503 +637745.654|219519.523|109.326 +637740.637|219524.187|109.076 +637735.666|219528.808|108.805 +637730.643|219533.477|108.463 +637725.659|219538.107|108.055 +637720.679|219542.737|107.723 +637715.649|219547.410|107.400 +637710.703|219552.003|106.951 +637705.673|219556.679|106.671 +637700.675|219561.321|106.208 +637695.673|219565.966|105.751 +637690.665|219570.614|105.187 +637685.721|219575.211|104.937 +637680.732|219579.850|104.754 +637675.754|219584.483|104.729 +637670.774|219589.119|104.708 +637665.790|219593.752|104.693 +637660.855|219598.345|104.678 +637655.857|219602.993|104.489 +637650.910|219607.596|104.376 +637645.966|219612.195|104.321 +637640.982|219616.831|104.419 +637636.093|219621.385|104.458 +637631.110|219626.024|104.580 +637626.203|219630.587|104.489 +637621.231|219635.208|104.224 +637616.257|219639.831|103.928 +637611.271|219644.464|103.532 +637606.281|219649.100|103.135 +637601.307|219653.715|102.434 +637596.274|219658.382|101.654 +637591.315|219662.975|100.660 +637586.271|219667.657|99.813 +637581.287|219672.277|99.191 +637576.328|219676.889|98.807 +637571.390|219681.479|98.710 +637566.483|219686.042|98.435 +637556.659|219695.180|98.380 +637551.703|219699.789|98.195 +637546.805|219704.345|98.106 +637537.012|219713.459|98.060 +637532.071|219718.055|98.103 +637527.210|219722.579|98.015 +637522.275|219727.163|97.731 +637517.322|219731.762|97.305 +637512.488|219736.267|97.518 +637507.641|219740.778|97.640 +637492.932|219754.455|97.128 +637478.313|219768.043|96.375 +637473.443|219772.578|96.433 +637459.126|219785.922|97.576 +637449.522|219794.871|98.185 +637440.049|219803.701|99.106 +637358.807|219879.274|96.674 +637349.660|219887.823|98.353 +637345.018|219892.154|98.777 +637340.370|219896.489|99.179 +637331.217|219905.026|99.978 +637303.855|219930.556|102.968 +637299.249|219934.848|103.138 +637290.255|219943.245|104.214 +637263.082|219968.571|105.851 +637231.818|219997.722|108.201 +637227.408|220001.840|108.835 +637222.948|220005.988|108.722 +637218.453|220010.173|108.686 +637200.753|220026.666|109.396 +637174.241|220051.343|109.253 +637147.443|220076.230|106.214 +637142.954|220080.390|105.312 +637138.519|220084.505|104.702 +637113.299|220108.033|107.284 +637096.511|220123.675|108.049 +637088.242|220131.380|108.497 +637064.220|220153.826|112.606 +637131.618|220088.355|104.720 +637135.934|220084.328|104.751 +637140.430|220080.149|105.644 +637144.947|220075.949|106.421 +637176.040|220046.996|109.250 +637207.084|220018.031|109.335 +637216.005|220009.707|109.234 +637220.437|220005.565|108.927 +637229.346|219997.241|108.332 +637233.805|219993.080|108.201 +637242.776|219984.695|107.494 +637251.648|219976.398|106.564 +637256.166|219972.180|106.287 +637269.720|219959.512|105.303 +637274.204|219955.315|104.626 +637278.773|219951.051|104.422 +637301.703|219929.639|103.074 +637319.994|219912.546|101.124 +637324.551|219908.281|100.410 +637347.874|219886.503|98.877 +637352.537|219882.145|98.283 +637371.530|219864.436|98.280 +637376.284|219860.001|98.384 +637381.076|219855.536|98.420 +637390.793|219846.498|99.453 +637405.088|219833.157|98.947 +637429.201|219810.675|99.011 +637434.047|219806.155|98.966 +637438.906|219801.629|99.045 +637458.181|219783.633|97.960 +637462.842|219779.253|96.183 +637467.773|219774.669|96.963 +637472.562|219770.182|95.817 +637477.417|219765.650|95.634 +637482.401|219761.014|96.107 +637487.375|219756.393|96.939 +637497.196|219747.240|97.237 +637502.149|219742.622|97.140 +637512.006|219733.436|97.494 +637516.852|219728.909|96.963 +637521.888|219724.228|97.710 +637526.859|219719.598|97.902 +637531.818|219714.977|98.030 +637536.768|219710.362|98.073 +637541.706|219705.760|98.039 +637546.634|219701.160|97.954 +637551.584|219696.549|98.064 +637556.592|219691.882|98.326 +637561.536|219687.277|98.435 +637566.514|219682.634|98.438 +637571.512|219677.980|98.661 +637576.499|219673.335|98.795 +637581.522|219668.659|99.368 +637586.548|219663.987|99.978 +637591.586|219659.305|100.767 +637596.649|219654.608|101.855 +637601.712|219649.899|102.498 +637606.775|219645.190|103.169 +637611.761|219640.548|103.553 +637616.797|219635.863|103.952 +637621.811|219631.190|104.190 +637626.828|219626.521|104.440 +637631.814|219621.869|104.379 +637636.801|219617.218|104.333 +637641.781|219612.573|104.242 +637646.813|219607.879|104.208 +637651.855|219603.185|104.297 +637656.850|219598.531|104.473 +637661.886|219593.843|104.547 +637666.915|219589.152|104.614 +637671.944|219584.467|104.641 +637676.918|219579.831|104.614 +637681.990|219575.104|104.656 +637687.035|219570.410|104.986 +637692.085|219565.713|105.470 +637697.130|219561.019|105.930 +637702.168|219556.331|106.272 +637707.255|219551.598|106.729 +637712.294|219546.913|107.183 +637717.323|219542.231|107.512 +637722.398|219537.507|107.863 +637727.427|219532.831|108.250 +637732.496|219528.113|108.564 +637737.562|219523.394|108.875 +637742.582|219518.725|109.186 +637747.638|219514.016|109.384 +637752.695|219509.307|109.618 +637757.700|219504.646|109.783 +637762.787|219499.903|109.692 +637767.825|219495.207|109.582 +637772.809|219490.555|109.298 +637777.838|219485.864|109.009 +637782.910|219481.128|108.631 +637787.884|219476.483|108.180 +637792.944|219471.752|107.378 +637797.961|219467.064|106.766 +637802.984|219462.373|106.284 +637808.044|219457.643|105.373 +637801.905|219459.231|105.885 +637796.836|219463.958|106.534 +637791.810|219468.640|107.107 +637786.796|219473.319|107.890 +637781.770|219478.004|108.326 +637776.744|219482.688|108.808 +637771.760|219487.330|109.183 +637766.728|219492.015|109.490 +637761.735|219496.663|109.622 +637756.740|219501.315|109.719 +637751.683|219506.012|109.594 +637746.672|219510.672|109.417 +637741.661|219515.329|109.237 +637736.635|219519.996|108.887 +637731.661|219524.620|108.567 +637726.631|219529.289|108.223 +637721.602|219533.962|107.832 +637716.622|219538.589|107.558 +637711.580|219543.271|107.076 +637706.597|219547.900|106.833 +637701.604|219552.536|106.452 +637696.602|219557.179|105.964 +637691.607|219561.818|105.595 +637686.602|219566.466|105.141 +637681.646|219571.068|104.717 +637676.656|219575.707|104.553 +637671.673|219580.340|104.504 +637666.735|219584.934|104.446 +637661.749|219589.570|104.409 +637656.860|219594.117|104.391 +637651.858|219598.766|104.196 +637646.908|219603.368|104.065 +637641.961|219607.967|104.013 +637637.026|219612.561|104.111 +637632.134|219617.115|104.172 +637627.184|219621.717|104.147 +637622.289|219626.271|104.224 +637617.312|219630.895|103.891 +637612.383|219635.473|103.617 +637607.445|219640.060|103.251 +637602.443|219644.702|102.773 +637597.466|219649.317|102.047 +637592.483|219653.941|101.267 +637587.523|219658.534|100.319 +637582.531|219663.161|99.557 +637577.608|219667.733|99.048 +637572.652|219672.335|98.771 +637567.754|219676.889|98.566 +637562.795|219681.495|98.313 +637557.879|219686.064|97.993 +637553.017|219690.590|98.234 +637548.104|219695.156|98.030 +637543.257|219699.661|98.012 +637538.377|219704.205|98.146 +637533.458|219708.774|97.932 +637528.609|219713.285|97.945 +637523.744|219717.808|97.832 +637518.803|219722.399|97.500 +637513.945|219726.919|97.503 +637509.010|219731.497|96.838 +637504.194|219735.984|97.256 +637499.317|219740.519|97.161 +637460.714|219776.434|97.756 +637451.040|219785.428|97.423 +637446.282|219789.866|98.091 +637441.530|219794.292|98.441 +637408.100|219825.397|99.054 +637360.407|219869.718|97.838 +637346.365|219882.791|98.667 +637337.081|219891.435|99.267 +637318.598|219908.653|100.831 +637314.108|219912.841|101.678 +637304.946|219921.379|102.608 +637277.544|219946.891|104.431 +637273.027|219951.100|104.937 +637268.489|219955.324|105.034 +637264.029|219959.479|105.601 +637259.485|219963.712|105.985 +637228.225|219992.824|108.512 +637219.334|220001.099|108.957 +637197.174|220021.719|109.923 +637170.617|220046.405|109.664 +637161.812|220054.586|109.457 +637157.553|220058.557|110.064 +637139.457|220075.315|106.692 +637134.962|220079.479|105.796 +637130.481|220083.627|105.016 +637126.260|220087.556|105.202 +637121.986|220091.534|105.397 +637117.801|220095.429|105.787 +637113.629|220099.315|106.247 +637109.502|220103.168|106.909 +637101.132|220110.959|107.534 +637084.526|220126.418|108.610 +637072.374|220137.741|110.070 +637068.244|220141.582|110.158 +637044.271|220163.906|112.859 +637040.233|220167.661|112.980 +637036.334|220171.294|113.480 +637100.400|220109.742|107.387 +637116.911|220094.313|105.440 +637121.133|220090.369|104.998 +637125.443|220086.352|104.982 +637129.780|220082.310|105.101 +637147.843|220065.543|108.664 +637183.364|220032.475|110.829 +637196.580|220020.146|110.286 +637200.930|220016.080|109.768 +637223.192|219995.314|108.975 +637245.507|219974.478|106.967 +637254.504|219966.078|106.220 +637268.050|219953.425|104.915 +637286.283|219936.411|103.958 +637300.118|219923.491|103.190 +637304.687|219919.221|102.812 +637309.256|219914.947|102.139 +637336.938|219889.070|99.106 +637341.562|219884.754|98.859 +637346.304|219880.328|98.765 +637360.365|219867.197|97.807 +637437.248|219795.508|98.633 +637451.653|219782.054|97.664 +637466.323|219768.378|97.768 +637480.676|219754.948|95.473 +637490.670|219745.661|97.140 +637495.599|219741.065|97.250 +637505.368|219731.945|96.771 +637510.299|219727.361|97.387 +637515.271|219722.725|97.542 +637520.172|219718.156|97.524 +637525.161|219713.511|97.884 +637530.053|219708.948|97.826 +637535.012|219704.324|97.963 +637539.965|219699.706|98.082 +637549.887|219690.453|98.057 +637554.751|219685.914|97.829 +637559.768|219681.242|98.195 +637564.773|219676.581|98.460 +637569.766|219671.927|98.633 +637574.725|219667.309|98.981 +637579.739|219662.643|99.420 +637584.823|219657.918|100.142 +637589.877|219653.224|101.099 +637594.909|219648.546|101.861 +637599.975|219643.836|102.520 +637604.986|219639.173|103.145 +637610.006|219634.497|103.361 +637614.992|219629.855|103.766 +637620.064|219625.131|104.074 +637625.060|219620.473|104.086 +637630.052|219615.816|104.105 +637635.039|219611.165|104.041 +637640.022|219606.517|103.955 +637645.058|219601.823|103.949 +637650.062|219597.159|104.184 +637655.055|219592.508|104.291 +637660.093|219587.811|104.382 +637665.077|219583.166|104.428 +637670.103|219578.478|104.434 +637675.132|219573.790|104.473 +637680.177|219569.093|104.760 +637685.227|219564.390|105.205 +637690.275|219559.693|105.592 +637695.319|219554.996|106.025 +637700.409|219550.260|106.433 +637705.402|219545.614|106.833 +637710.480|219540.884|107.131 +637715.561|219536.153|107.509 +637720.593|219531.469|107.936 +637725.665|219526.747|108.241 +637730.740|219522.023|108.640 +637735.806|219517.305|108.853 +637740.875|219512.586|109.210 +637745.931|219507.874|109.393 +637750.988|219503.162|109.536 +637756.042|219498.453|109.707 +637761.080|219493.753|109.570 +637766.118|219489.053|109.411 +637776.171|219479.662|108.561 +637781.246|219474.922|108.162 +637786.314|219470.185|107.637 +637791.328|219465.495|106.894 +637796.355|219460.801|106.342 +637793.782|219459.246|106.235 +637788.756|219463.925|106.790 +637783.733|219468.604|107.476 +637778.755|219473.240|108.027 +637773.726|219477.918|108.451 +637768.706|219482.597|109.049 +637763.674|219487.276|109.408 +637758.629|219491.963|109.497 +637753.631|219496.609|109.542 +637748.574|219501.303|109.411 +637743.560|219505.957|109.201 +637738.500|219510.654|109.109 +637733.477|219515.314|108.762 +637728.408|219520.017|108.515 +637723.428|219524.635|108.189 +637718.350|219529.347|107.835 +637713.312|219534.017|107.415 +637708.319|219538.647|106.973 +637703.290|219543.313|106.747 +637698.245|219547.992|106.302 +637693.250|219552.625|105.946 +637688.205|219557.304|105.577 +637683.203|219561.940|105.196 +637678.199|219566.582|104.754 +637673.191|219571.227|104.361 +637668.210|219575.851|104.379 +637663.181|219580.523|104.379 +637658.234|219585.117|104.260 +637653.248|219589.747|104.260 +637648.295|219594.346|104.056 +637643.293|219598.988|103.907 +637638.343|219603.581|103.843 +637633.399|219608.175|103.855 +637628.461|219612.765|103.940 +637623.517|219617.355|104.022 +637618.558|219621.961|103.916 +637613.596|219626.569|103.769 +637608.607|219631.196|103.358 +637603.675|219635.768|103.114 +637598.722|219640.362|102.620 +637593.696|219645.016|101.904 +637588.709|219649.634|101.139 +637583.701|219654.264|100.197 +637578.712|219658.887|99.469 +637573.734|219663.499|98.914 +637568.778|219668.099|98.624 +637563.877|219672.646|98.426 +637558.930|219677.236|98.286 +637553.995|219681.812|97.807 +637549.152|219686.316|98.280 +637544.236|219690.882|98.012 +637539.341|219695.427|97.999 +637534.476|219699.941|97.847 +637529.569|219704.498|97.771 +637524.719|219709.003|97.777 +637519.812|219713.560|97.737 +637514.932|219718.089|97.545 +637510.055|219722.615|97.378 +637505.221|219727.099|97.219 +637500.332|219731.646|97.411 +637490.618|219740.665|97.180 +637485.787|219745.149|97.137 +637476.000|219754.217|96.046 +637471.315|219758.591|97.241 +637466.582|219763.004|98.027 +637452.085|219776.455|97.405 +637447.300|219780.902|97.487 +637442.548|219785.322|97.826 +637357.006|219864.780|97.981 +637347.615|219873.507|98.121 +637343.019|219877.792|98.844 +637338.379|219882.102|99.005 +637333.701|219886.455|99.246 +637310.780|219907.788|101.410 +637292.580|219924.738|103.763 +637288.026|219928.971|104.001 +637265.212|219950.185|105.126 +637260.692|219954.389|105.357 +637251.691|219962.765|106.080 +637238.332|219975.200|107.491 +637216.106|219995.872|109.079 +637167.554|220040.998|110.621 +637127.393|220078.211|106.068 +637122.949|220082.326|105.464 +637118.518|220086.431|104.946 +637114.318|220090.339|105.269 +637110.026|220094.323|105.187 +637105.856|220098.203|105.434 +637089.449|220113.485|107.784 +637081.219|220121.139|108.454 +637098.587|220102.830|106.510 +637102.625|220099.053|105.662 +637106.765|220095.188|105.040 +637110.989|220091.256|105.056 +637119.597|220083.246|105.144 +637124.031|220079.128|105.711 +637128.674|220074.837|107.256 +637133.209|220070.633|108.341 +637159.888|220045.844|110.640 +637177.573|220029.385|110.856 +637195.248|220012.926|110.545 +637199.649|220008.817|110.045 +637230.733|219979.843|107.997 +637253.112|219958.973|105.943 +637294.205|219920.672|103.593 +637321.695|219895.010|100.078 +637326.285|219890.725|99.584 +637330.945|219886.382|99.231 +637345.003|219873.278|98.423 +637358.981|219860.236|96.924 +637392.610|219828.957|98.365 +637445.529|219779.671|97.405 +637450.363|219775.169|97.335 +637455.267|219770.609|97.445 +637469.819|219757.055|97.052 +637474.567|219752.611|95.994 +637484.495|219743.390|97.052 +637489.387|219738.840|97.228 +637504.060|219725.176|97.073 +637508.995|219720.588|97.286 +637513.917|219716.007|97.426 +637518.840|219711.429|97.609 +637523.796|219706.814|97.667 +637528.712|219702.242|97.820 +637533.650|219697.646|97.743 +637538.600|219693.037|97.832 +637543.556|219688.429|97.975 +637548.512|219683.817|98.152 +637553.416|219679.245|97.862 +637558.382|219674.630|98.158 +637563.335|219670.025|98.380 +637568.330|219665.377|98.591 +637573.283|219660.771|98.868 +637578.355|219656.059|99.435 +637583.348|219651.426|100.191 +637588.401|219646.741|101.151 +637593.431|219642.072|101.901 +637598.496|219637.372|102.526 +637603.495|219632.726|103.026 +637608.479|219628.093|103.352 +637613.502|219623.421|103.629 +637618.470|219618.803|103.839 +637623.472|219614.146|103.925 +637628.452|219609.507|103.730 +637633.396|219604.904|103.721 +637638.434|219600.213|103.736 +637643.436|219595.562|103.870 +637648.435|219590.908|104.035 +637653.418|219586.266|104.022 +637658.405|219581.621|104.068 +637663.446|219576.930|104.224 +637668.433|219572.288|104.275 +637673.471|219567.597|104.467 +637678.522|219562.900|104.839 +637683.523|219558.248|105.239 +637688.571|219553.554|105.665 +637693.606|219548.870|105.909 +637698.648|219544.182|106.308 +637703.683|219539.500|106.638 +637708.721|219534.815|107.019 +637713.760|219530.131|107.500 +637718.841|219525.406|107.902 +637723.858|219520.737|108.064 +637728.890|219516.058|108.497 +637733.956|219511.343|108.768 +637738.976|219506.676|109.067 +637744.033|219501.967|109.186 +637749.089|219497.261|109.350 +637754.091|219492.604|109.417 +637759.184|219487.858|109.399 +637764.174|219483.207|109.164 +637769.197|219478.519|108.658 +637774.220|219473.831|108.122 +637779.243|219469.140|107.576 +637784.266|219464.452|106.979 +637789.335|219459.719|106.357 +637784.486|219459.929|106.458 +637779.505|219464.571|106.973 +637774.528|219469.207|107.576 +637769.499|219473.892|108.073 +637764.527|219478.522|108.826 +637759.544|219483.161|109.250 +637754.496|219487.852|109.286 +637749.491|219492.500|109.311 +637744.481|219497.151|109.204 +637739.464|219501.808|108.966 +637734.401|219506.509|108.850 +637729.372|219511.172|108.457 +637724.397|219515.790|108.219 +637719.316|219520.502|107.832 +637714.290|219525.165|107.619 +637709.300|219529.795|107.229 +637704.259|219534.468|106.817 +637699.215|219539.147|106.430 +637694.173|219543.822|106.049 +637689.181|219548.455|105.778 +637684.179|219553.094|105.385 +637679.128|219557.779|105.031 +637674.126|219562.418|104.684 +637669.073|219567.106|104.373 +637664.074|219571.745|104.153 +637659.130|219576.335|104.050 +637654.086|219581.017|103.946 +637649.142|219585.610|103.903 +637644.149|219590.246|103.861 +637639.145|219594.892|103.715 +637634.188|219599.494|103.562 +637629.190|219604.136|103.550 +637624.243|219608.733|103.583 +637619.302|219613.326|103.705 +637614.349|219617.925|103.705 +637609.369|219622.546|103.404 +637604.348|219627.207|103.212 +637599.399|219631.797|102.770 +637594.385|219636.442|102.200 +637589.404|219641.054|101.499 +637584.369|219645.717|100.761 +637579.364|219650.350|99.856 +637574.374|219654.971|99.179 +637569.348|219659.628|98.670 +637564.438|219664.185|98.371 +637559.445|219668.821|98.252 +637554.547|219673.369|98.140 +637549.579|219677.977|97.847 +637544.705|219682.506|98.036 +637539.752|219687.106|97.923 +637534.860|219691.650|97.963 +637529.938|219696.219|97.753 +637525.033|219700.773|97.722 +637520.111|219705.342|97.539 +637515.237|219709.868|97.387 +637510.311|219714.437|97.253 +637505.428|219718.970|97.070 +637500.558|219723.493|97.021 +637490.920|219732.463|97.881 +637486.013|219737.014|97.564 +637481.072|219741.592|97.021 +637476.134|219746.161|96.116 +637471.388|219750.584|96.829 +637466.573|219755.067|97.372 +637461.781|219759.517|97.335 +637456.965|219763.995|97.527 +637428.219|219790.714|98.630 +637394.609|219821.910|97.600 +637356.689|219857.115|97.618 +637352.010|219861.467|98.097 +637347.386|219865.765|98.316 +637342.756|219870.072|98.822 +637338.075|219874.421|99.027 +637333.466|219878.707|99.374 +637319.579|219891.615|100.148 +637292.412|219916.904|103.928 +637274.085|219933.936|104.833 +637255.937|219950.801|105.885 +637246.955|219959.150|106.446 +637211.461|219992.160|109.692 +637202.633|220000.365|110.289 +637185.037|220016.714|111.179 +637167.438|220033.061|111.523 +637109.822|220086.428|105.723 +637105.509|220090.430|105.549 +637101.174|220094.448|105.299 +637097.017|220098.309|105.632 +637076.516|220117.384|108.034 +637060.322|220132.447|109.780 +637056.335|220136.153|110.292 +637040.187|220151.156|111.127 +637100.513|220092.698|105.190 +637104.829|220088.687|105.601 +637109.133|220084.685|105.994 +637113.687|220080.463|107.061 +637144.673|220051.675|111.194 +637149.059|220047.597|111.432 +637157.852|220039.407|111.594 +637175.451|220023.011|111.679 +637184.269|220014.791|111.429 +637228.554|219973.472|108.128 +637232.992|219969.330|107.656 +637237.423|219965.191|107.168 +637250.911|219952.606|105.997 +637273.716|219931.337|104.757 +637296.640|219909.958|103.160 +637305.763|219901.436|101.733 +637343.043|219866.667|98.944 +637347.746|219862.284|98.621 +637357.033|219853.603|96.917 +637385.800|219826.830|97.515 +637429.390|219786.261|98.387 +637448.687|219768.271|97.411 +637463.345|219754.625|97.457 +637468.255|219750.053|97.301 +637472.861|219745.719|95.073 +637478.015|219740.958|96.981 +637482.892|219736.417|97.039 +637492.740|219727.251|97.177 +637497.677|219722.649|96.972 +637502.591|219718.074|97.006 +637507.507|219713.499|97.079 +637512.482|219708.872|97.277 +637517.456|219704.245|97.475 +637522.366|219699.673|97.588 +637527.316|219695.064|97.625 +637532.318|219690.410|97.722 +637537.225|219685.844|97.871 +637542.218|219681.196|97.911 +637547.140|219676.612|97.768 +637552.109|219671.994|98.115 +637557.083|219667.358|98.082 +637562.085|219662.707|98.307 +637567.087|219658.055|98.603 +637572.052|219653.441|99.024 +637577.127|219648.728|99.633 +637582.129|219644.086|100.538 +637587.216|219639.368|101.361 +637592.236|219634.705|102.017 +637597.298|219630.005|102.654 +637602.337|219625.323|103.047 +637607.311|219620.696|103.306 +637612.331|219616.026|103.559 +637617.278|219611.418|103.562 +637622.313|219606.730|103.440 +637627.306|219602.082|103.455 +637632.250|219597.479|103.440 +637637.297|219592.779|103.596 +637642.299|219588.131|103.736 +637647.338|219583.443|103.769 +637652.376|219578.752|103.867 +637657.320|219574.156|103.971 +637662.352|219569.474|103.977 +637667.412|219564.774|104.416 +637672.410|219560.129|104.714 +637677.501|219555.399|104.995 +637682.502|219550.750|105.409 +637687.544|219546.066|105.714 +637692.585|219541.384|106.037 +637697.621|219536.702|106.336 +637702.659|219532.020|106.729 +637707.700|219527.339|107.186 +637712.736|219522.660|107.598 +637717.811|219517.945|107.869 +637722.791|219513.318|108.241 +637727.860|219508.606|108.488 +637732.880|219503.939|108.789 +637737.894|219499.279|108.966 +637742.957|219494.573|109.189 +637748.010|219489.872|109.305 +637753.015|219485.215|109.369 +637758.056|219480.521|109.237 +637763.034|219475.882|108.738 +637768.051|219471.200|108.082 +637773.071|219466.516|107.409 +637778.048|219461.874|106.884 +637783.074|219457.186|106.330 +637774.683|219460.776|106.820 +637769.700|219465.415|107.302 +637764.725|219470.051|108.021 +637759.754|219474.684|108.747 +637754.768|219479.323|109.137 +637749.818|219483.926|109.274 +637744.810|219488.580|109.173 +637739.793|219493.237|108.985 +637734.776|219497.895|108.735 +637729.762|219502.552|108.631 +637724.781|219507.173|108.317 +637719.801|219511.797|107.979 +637714.775|219516.460|107.768 +637709.788|219521.087|107.406 +637704.802|219525.714|107.080 +637699.797|219530.353|106.525 +637694.807|219534.986|106.229 +637689.815|219539.616|105.933 +637684.819|219544.255|105.601 +637679.823|219548.891|105.293 +637674.815|219553.533|104.888 +637669.865|219558.130|104.605 +637664.867|219562.769|104.385 +637659.859|219567.417|104.047 +637654.851|219572.065|103.757 +637649.904|219576.658|103.657 +637644.957|219581.255|103.580 +637640.013|219585.848|103.571 +637635.014|219590.493|103.501 +637630.061|219595.093|103.413 +637625.108|219599.692|103.385 +637620.152|219604.298|103.282 +637615.205|219608.894|103.367 +637610.259|219613.494|103.446 +637605.284|219618.114|103.212 +637600.343|219622.695|102.885 +637595.360|219627.322|102.596 +637590.389|219631.928|101.965 +637585.356|219636.588|101.233 +637580.373|219641.206|100.542 +637575.374|219645.839|99.709 +637570.382|219650.463|99.008 +637565.410|219655.074|98.569 +637560.448|219659.677|98.268 +637555.541|219664.234|98.024 +637550.606|219668.821|98.045 +637545.659|219673.405|97.490 +637540.755|219677.968|97.856 +637535.899|219682.479|97.771 +637530.949|219687.075|97.734 +637526.036|219691.638|97.600 +637521.132|219696.198|97.554 +637516.261|219700.721|97.417 +637511.336|219705.293|97.253 +637506.456|219709.826|97.082 +637501.533|219714.398|96.978 +637496.650|219718.930|96.853 +637491.706|219723.511|96.189 +637482.053|219732.497|96.960 +637477.134|219737.060|96.604 +637472.236|219741.601|96.046 +637467.383|219746.115|96.296 +637462.662|219750.520|97.216 +637452.948|219759.548|97.298 +637429.033|219781.792|98.630 +637404.951|219804.152|97.710 +637381.109|219826.308|97.661 +637357.140|219848.550|95.973 +637324.749|219878.725|99.728 +637310.914|219891.606|100.883 +637306.314|219895.888|101.368 +637288.282|219912.704|104.416 +637274.551|219925.475|105.019 +637269.982|219929.724|105.205 +637260.847|219938.216|105.357 +637251.798|219946.634|105.784 +637247.314|219950.810|106.238 +637242.809|219955.001|106.598 +637225.009|219971.576|108.250 +637216.203|219979.775|109.125 +637185.415|220008.436|111.697 +637167.837|220024.776|112.106 +637163.311|220028.973|111.603 +637154.618|220037.060|111.904 +637101.482|220086.319|105.677 +637097.218|220090.281|105.754 +637092.939|220094.252|105.537 +637088.723|220098.172|105.626 +637084.642|220101.976|106.092 +637080.439|220105.884|106.263 +637072.221|220113.534|107.025 +637047.944|220136.138|109.844 +637089.991|220094.493|105.921 +637094.149|220090.619|105.595 +637111.711|220074.331|108.472 +637120.612|220066.077|110.006 +637133.785|220053.842|111.304 +637155.706|220033.463|112.246 +637160.041|220029.424|112.057 +637186.391|220004.894|111.670 +637190.725|220000.852|111.060 +637195.148|219996.728|110.667 +637217.230|219976.145|109.018 +637230.507|219963.764|107.631 +637234.964|219959.613|107.262 +637239.447|219955.431|106.790 +637248.402|219947.076|105.827 +637252.987|219942.809|105.671 +637275.914|219921.464|105.190 +637285.149|219912.856|104.641 +637289.739|219908.577|104.376 +637326.526|219874.247|99.789 +637331.293|219869.813|99.816 +637340.608|219861.123|98.844 +637388.129|219816.860|97.329 +637402.564|219803.421|97.131 +637426.924|219780.771|98.390 +637451.214|219758.143|97.484 +637460.931|219749.093|97.070 +637465.753|219744.594|96.610 +637470.608|219740.065|96.024 +637475.573|219735.456|96.783 +637480.502|219730.872|96.838 +637485.513|219726.230|98.048 +637490.259|219721.777|96.189 +637495.260|219717.138|96.942 +637500.168|219712.569|96.930 +637505.093|219707.988|97.076 +637510.061|219703.364|97.222 +637515.027|219698.746|97.347 +637519.995|219694.125|97.515 +637524.890|219689.569|97.515 +637529.901|219684.908|97.679 +637534.851|219680.303|97.774 +637539.792|219675.703|97.780 +637544.766|219671.073|97.676 +637549.731|219666.456|97.993 +637554.721|219661.814|98.091 +637559.720|219657.165|98.301 +637564.727|219652.511|98.615 +637569.781|219647.814|98.969 +637574.822|219643.138|99.725 +637579.907|219638.417|100.487 +637584.933|219633.754|101.182 +637590.020|219629.035|102.032 +637595.070|219624.344|102.541 +637600.054|219619.711|102.876 +637605.129|219614.993|103.154 +637610.140|219610.333|103.285 +637615.132|219605.685|103.227 +637620.131|219601.033|103.273 +637625.124|219596.385|103.273 +637630.165|219591.694|103.303 +637635.167|219587.040|103.440 +637640.199|219582.355|103.388 +637645.244|219577.661|103.513 +637650.230|219573.019|103.535 +637655.235|219568.365|103.815 +637660.289|219563.665|104.166 +637665.336|219558.971|104.446 +637670.380|219554.280|104.714 +637675.425|219549.592|105.004 +637680.469|219544.901|105.367 +637685.505|219540.216|105.595 +637690.543|219535.532|105.933 +637695.575|219530.853|106.193 +637700.665|219526.122|106.613 +637705.707|219521.438|107.116 +637710.782|219516.719|107.384 +637715.808|219512.044|107.698 +637720.831|219507.374|107.939 +637725.915|219502.650|108.497 +637730.969|219497.947|108.503 +637735.986|219493.280|108.796 +637741.045|219488.574|108.963 +637746.056|219483.911|109.161 +637751.147|219479.171|109.055 +637756.185|219474.474|108.893 +637761.156|219469.835|108.219 +637766.167|219465.153|107.430 +637771.193|219460.462|106.915 +637769.459|219458.088|106.634 +637764.482|219462.724|107.317 +637759.462|219467.396|108.125 +637754.484|219472.029|108.750 +637749.491|219476.669|109.021 +637744.493|219481.311|109.183 +637739.473|219485.965|108.905 +637734.453|219490.619|108.695 +637729.478|219495.234|108.442 +637724.461|219499.885|108.363 +637719.426|219504.552|107.909 +637714.446|219509.169|107.637 +637709.404|219513.839|107.208 +637704.424|219518.460|106.988 +637699.428|219523.087|106.616 +637694.429|219527.720|106.141 +637689.437|219532.350|105.851 +637684.441|219536.979|105.586 +637679.445|219541.609|105.312 +637674.450|219546.242|105.040 +637669.448|219550.878|104.751 +637664.498|219555.469|104.537 +637659.490|219560.114|104.193 +637654.577|219564.664|103.903 +637649.560|219569.316|103.522 +637644.604|219573.912|103.330 +637639.654|219578.505|103.273 +637634.707|219583.096|103.263 +637629.760|219587.686|103.279 +637624.801|219592.289|103.145 +637619.896|219596.839|103.123 +637614.937|219601.442|103.068 +637609.990|219606.035|103.166 +637605.074|219610.595|103.081 +637600.100|219615.210|102.895 +637595.159|219619.791|102.553 +637590.209|219624.375|102.169 +637585.228|219628.983|101.480 +637580.239|219633.601|100.706 +637575.258|219638.213|100.084 +637570.253|219642.840|99.252 +637565.267|219647.457|98.637 +637560.347|219652.017|98.283 +637555.398|219656.608|98.115 +637550.493|219661.158|97.951 +637545.549|219665.745|97.899 +637540.596|219670.330|97.320 +637535.726|219674.856|97.558 +637530.837|219679.394|97.628 +637525.929|219683.948|97.567 +637521.062|219688.462|97.436 +637516.151|219693.019|97.381 +637511.278|219697.539|97.256 +637506.334|219702.123|96.933 +637501.472|219706.634|96.966 +637496.601|219711.155|96.914 +637486.817|219720.229|96.521 +637482.008|219724.694|96.674 +637477.128|219729.232|97.030 +637472.242|219733.750|96.174 +637467.322|219738.309|95.860 +637462.659|219742.665|97.262 +637457.761|219747.207|97.173 +637453.006|219751.626|97.460 +637443.271|219760.654|97.067 +637438.531|219765.062|97.530 +637390.534|219809.608|97.442 +637385.782|219814.016|97.311 +637366.647|219831.773|96.732 +637357.128|219840.600|96.259 +637334.009|219862.122|99.298 +637315.477|219879.350|100.526 +637270.034|219921.632|105.528 +637251.706|219938.652|105.839 +637247.204|219942.840|106.180 +637242.760|219946.973|106.598 +637233.778|219955.321|107.226 +637216.063|219971.799|108.896 +637207.245|219980.001|109.753 +637180.862|220004.531|111.694 +637158.946|220024.886|112.346 +637137.022|220045.228|111.874 +637119.496|220061.474|110.582 +637115.095|220065.552|110.164 +637106.192|220073.788|108.692 +637092.963|220086.029|106.650 +637088.644|220090.037|106.491 +637084.459|220093.923|106.726 +637075.955|220101.808|106.180 +637071.804|220105.667|106.366 +637063.492|220113.388|106.759 +637059.426|220117.167|107.150 +637055.427|220120.898|107.817 +637043.354|220132.136|109.128 +637093.323|220083.682|107.186 +637097.785|220079.540|108.046 +637102.095|220075.535|108.460 +637106.512|220071.432|109.149 +637124.263|220054.951|111.807 +637141.804|220038.632|112.883 +637159.199|220022.423|112.569 +637181.072|220002.035|111.862 +637194.285|219989.709|110.896 +637225.122|219960.927|107.915 +637238.621|219948.335|107.009 +637288.782|219901.582|104.793 +637311.450|219880.398|100.788 +637330.007|219863.101|99.493 +637334.673|219858.751|99.240 +637357.963|219837.016|96.552 +637362.764|219832.557|96.927 +637367.515|219828.128|96.683 +637377.242|219819.094|97.774 +637381.966|219814.689|97.378 +637386.724|219810.248|96.927 +637405.954|219792.351|96.957 +637435.087|219765.239|97.433 +637444.755|219756.235|97.341 +637459.407|219742.595|97.344 +637468.929|219733.698|95.406 +637473.885|219729.095|96.098 +637478.713|219724.587|95.293 +637483.836|219719.851|97.045 +637488.674|219715.340|96.814 +637493.584|219710.771|96.777 +637498.552|219706.147|96.866 +637503.453|219701.584|96.805 +637508.391|219696.991|97.131 +637513.311|219692.416|97.268 +637518.319|219687.755|97.390 +637523.226|219683.189|97.472 +637528.176|219678.584|97.545 +637533.104|219673.990|97.433 +637538.091|219669.351|97.405 +637543.065|219664.727|97.780 +637548.052|219660.085|97.829 +637553.051|219655.437|98.018 +637557.997|219650.835|98.201 +637563.002|219646.183|98.515 +637568.025|219641.517|99.051 +637573.064|219636.841|99.792 +637578.148|219632.123|100.554 +637583.171|219627.459|101.221 +637588.246|219622.747|101.956 +637593.242|219618.105|102.383 +637598.271|219613.430|102.703 +637603.294|219608.760|102.946 +637608.305|219604.097|103.081 +637613.294|219599.451|102.980 +637618.290|219594.800|102.995 +637623.289|219590.146|103.071 +637628.288|219585.495|103.157 +637633.329|219580.804|103.178 +637638.319|219576.162|103.190 +637643.351|219571.477|103.175 +637648.362|219566.819|103.553 +637653.461|219562.083|103.818 +637658.469|219557.428|104.211 +637663.516|219552.735|104.531 +637668.552|219548.053|104.687 +637673.599|219543.362|105.043 +637678.634|219538.680|105.254 +637683.670|219534.002|105.498 +637688.751|219529.277|105.754 +637693.789|219524.595|106.116 +637698.834|219519.911|106.604 +637703.918|219515.186|107.037 +637708.990|219510.471|107.244 +637714.022|219505.795|107.665 +637719.097|219501.080|108.024 +637724.169|219496.365|108.408 +637729.228|219491.662|108.512 +637734.285|219486.959|108.637 +637739.348|219482.252|108.896 +637744.404|219477.549|109.085 +637749.440|219472.859|108.814 +637754.475|219468.168|108.558 +637759.492|219463.483|107.930 +637764.555|219458.758|107.116 +637760.885|219457.993|107.150 +637755.828|219462.709|108.155 +637750.842|219467.351|108.494 +637745.803|219472.039|108.762 +637740.756|219476.729|108.884 +637735.748|219481.381|108.786 +637730.682|219486.084|108.567 +637725.665|219490.744|108.338 +637720.651|219495.399|108.235 +637715.570|219500.111|107.845 +637710.544|219504.780|107.528 +637705.512|219509.450|107.189 +637700.428|219514.165|106.820 +637695.432|219518.798|106.391 +637690.385|219523.480|105.876 +637685.398|219528.110|105.671 +637680.402|219532.746|105.296 +637675.364|219537.421|105.080 +637670.374|219542.054|104.906 +637665.330|219546.739|104.635 +637660.337|219551.375|104.455 +637655.375|219555.978|104.086 +637650.361|219560.629|103.650 +637645.405|219565.231|103.407 +637640.385|219569.886|102.989 +637635.450|219574.473|103.084 +637630.458|219579.112|103.087 +637625.514|219583.708|103.093 +637620.561|219588.308|103.029 +637615.599|219592.916|102.867 +637610.646|219597.519|102.846 +637605.748|219602.073|102.919 +637600.782|219606.681|102.824 +637595.854|219611.259|102.575 +637590.864|219615.886|102.236 +637585.908|219620.486|101.730 +637580.885|219625.140|101.069 +637575.956|219629.706|100.432 +637570.921|219634.372|99.722 +637565.974|219638.954|98.966 +637561.009|219643.562|98.551 +637556.031|219648.177|98.076 +637551.146|219652.718|98.027 +637546.186|219657.321|97.798 +637541.291|219661.868|97.710 +637536.335|219666.462|97.079 +637531.480|219670.982|97.442 +637526.582|219675.533|97.414 +637521.726|219680.044|97.356 +637516.831|219684.591|97.426 +637511.957|219689.115|97.241 +637507.041|219693.684|97.122 +637502.149|219698.222|96.835 +637497.229|219702.791|96.750 +637492.423|219707.259|96.826 +637487.534|219711.801|96.619 +637477.634|219720.975|95.253 +637429.634|219765.616|97.460 +637396.057|219796.816|97.411 +637372.231|219818.957|97.503 +637362.715|219827.784|96.930 +637339.477|219849.421|99.624 +637330.116|219858.123|99.984 +637293.385|219892.319|103.632 +637284.390|219900.704|105.275 +637256.867|219926.283|105.891 +637252.276|219930.550|105.988 +637243.343|219938.865|106.772 +637207.711|219972.015|109.661 +637203.210|219976.203|109.856 +637198.836|219980.278|110.472 +637159.593|220016.787|113.371 +637072.630|220097.465|107.854 +637068.207|220101.555|106.836 +637063.943|220105.506|106.318 +637059.883|220109.288|106.930 +637051.647|220116.936|107.025 +637047.746|220120.575|107.915 +637043.692|220124.342|108.149 +637039.526|220128.204|107.933 +637035.493|220131.956|108.283 +637099.349|220070.609|109.469 +637143.362|220029.690|113.602 +637147.742|220025.614|113.864 +637173.900|220001.221|112.420 +637187.080|219988.932|111.502 +637200.232|219976.651|110.051 +637213.490|219964.276|108.753 +637217.965|219960.104|108.457 +637222.430|219955.940|108.116 +637231.401|219947.570|107.442 +637254.026|219926.475|106.141 +637299.825|219883.748|102.922 +637389.059|219800.528|97.853 +637398.636|219791.601|97.430 +637403.357|219787.187|96.759 +637447.056|219746.499|97.554 +637461.653|219732.896|97.164 +637466.557|219728.324|97.006 +637471.398|219723.810|96.704 +637476.253|219719.278|96.158 +637481.051|219714.797|95.531 +637486.049|219710.155|96.241 +637491.027|219705.528|96.808 +637495.952|219700.944|96.942 +637500.866|219696.369|96.994 +637505.819|219691.754|97.003 +637510.750|219687.164|97.265 +637515.712|219682.546|97.372 +637520.656|219677.941|97.372 +637525.561|219673.375|97.442 +637530.514|219668.754|97.085 +637535.464|219664.154|97.652 +637540.453|219659.506|97.725 +637545.394|219654.907|97.774 +637550.396|219650.252|97.987 +637555.343|219645.647|98.179 +637560.354|219640.987|98.542 +637565.383|219636.314|99.130 +637570.421|219631.635|99.880 +637575.493|219626.923|100.496 +637580.510|219622.260|101.066 +637585.536|219617.593|101.791 +637590.584|219612.899|102.261 +637595.613|219608.220|102.556 +637600.630|219603.554|102.718 +637605.589|219598.933|102.828 +637610.633|219594.236|102.806 +637615.635|219589.576|102.879 +637620.634|219584.922|102.925 +637625.678|219580.225|102.974 +637630.671|219575.576|102.992 +637635.706|219570.885|102.971 +637640.760|219566.185|103.202 +637645.762|219561.531|103.401 +637650.821|219556.825|103.803 +637655.881|219552.122|104.208 +637660.926|219547.428|104.470 +637665.967|219542.740|104.662 +637671.011|219538.046|105.007 +637676.038|219533.368|105.019 +637681.079|219528.680|105.351 +637686.120|219523.989|105.732 +637691.208|219519.261|106.080 +637696.246|219514.577|106.449 +637701.281|219509.895|106.820 +637706.368|219505.167|107.272 +637711.440|219500.449|107.521 +637716.518|219495.725|107.963 +637721.590|219491.009|108.250 +637726.604|219486.343|108.439 +637731.716|219481.585|108.668 +637736.769|219476.882|108.710 +637741.777|219472.218|108.838 +637746.867|219467.479|108.655 +637751.945|219462.742|108.287 +637756.910|219458.100|107.473 +637751.695|219458.716|107.896 +637746.675|219463.388|108.628 +637741.673|219468.034|108.619 +637736.623|219472.721|108.689 +637731.569|219477.412|108.616 +637726.552|219482.064|108.445 +637721.532|219486.721|108.180 +637716.463|219491.424|107.927 +637711.434|219496.084|107.582 +637706.402|219500.751|107.201 +637701.376|219505.411|106.994 +637696.334|219510.084|106.549 +637691.299|219514.750|106.250 +637686.248|219519.429|105.708 +637681.253|219524.062|105.321 +637676.211|219528.735|105.034 +637671.228|219533.361|104.903 +637666.189|219538.031|104.748 +637661.194|219542.667|104.483 +637656.195|219547.303|104.220 +637651.145|219551.985|103.949 +637646.179|219556.587|103.559 +637641.171|219561.229|103.266 +637636.167|219565.871|103.050 +637631.153|219570.520|102.757 +637626.172|219575.150|102.885 +637621.265|219579.703|102.773 +637616.269|219584.339|102.800 +637611.313|219588.939|102.709 +637606.360|219593.535|102.703 +637601.401|219598.138|102.636 +637596.482|219602.704|102.468 +637591.507|219607.315|102.279 +637586.560|219611.902|101.864 +637581.559|219616.535|101.428 +637576.584|219621.141|100.776 +637571.607|219625.753|100.115 +637566.639|219630.355|99.612 +637561.649|219634.970|98.944 +637556.672|219639.584|98.399 +637551.758|219644.138|98.079 +637546.802|219648.735|97.841 +637541.907|219653.276|97.750 +637536.963|219657.866|97.676 +637532.108|219662.368|97.567 +637527.136|219666.971|96.799 +637522.296|219671.473|97.356 +637517.392|219676.026|97.292 +637512.543|219680.528|97.314 +637507.617|219685.094|97.109 +637502.752|219689.611|97.030 +637497.912|219694.107|97.207 +637493.032|219698.633|97.033 +637488.143|219703.169|96.817 +637483.154|219707.771|95.311 +637478.356|219712.237|95.954 +637473.629|219716.641|96.765 +637468.773|219721.152|96.924 +637459.187|219730.061|97.503 +637439.942|219747.926|97.527 +637425.537|219761.294|97.378 +637415.991|219770.158|97.454 +637401.638|219783.481|97.298 +637377.967|219805.475|98.298 +637373.236|219809.867|98.301 +637340.297|219840.472|99.018 +637335.728|219844.734|99.883 +637326.477|219853.335|100.624 +637321.698|219857.767|100.185 +637298.847|219879.039|102.989 +637294.324|219883.251|103.623 +637289.794|219887.470|104.224 +637235.177|219938.246|107.241 +637230.696|219942.413|107.454 +637217.246|219954.922|108.402 +637212.856|219959.003|108.896 +637199.573|219971.366|110.076 +637186.424|219983.598|111.307 +637173.327|219995.784|112.645 +637164.677|220003.833|113.511 +637151.589|220015.992|113.834 +637142.859|220024.103|113.944 +637138.564|220028.092|114.120 +637125.431|220040.278|113.553 +637121.002|220044.384|113.160 +637116.637|220048.432|112.849 +637103.412|220060.682|111.194 +637077.431|220084.761|108.728 +637073.200|220088.684|108.527 +637064.867|220096.426|108.716 +637047.990|220112.080|107.735 +637043.768|220115.994|107.244 +637039.721|220119.758|107.515 +637035.661|220123.529|107.531 +637097.368|220064.004|110.819 +637106.198|220055.808|112.002 +637123.861|220039.404|113.697 +637154.405|220010.975|113.593 +637167.551|219998.731|113.105 +637185.031|219982.433|111.405 +637211.570|219957.687|108.792 +637220.541|219949.329|108.332 +637225.021|219945.150|107.826 +637238.588|219932.513|107.064 +637243.105|219928.298|106.543 +637252.237|219919.797|106.375 +637256.870|219915.484|106.263 +637261.439|219911.229|106.086 +637321.283|219855.435|100.801 +637387.614|219793.649|97.585 +637392.421|219789.174|97.503 +637397.264|219784.670|97.713 +637440.765|219744.180|97.295 +637460.233|219726.062|97.204 +637465.140|219721.494|97.061 +637470.005|219716.967|96.981 +637474.884|219712.420|96.652 +637479.594|219708.012|95.268 +637484.720|219703.266|96.683 +637489.597|219698.731|96.808 +637494.553|219694.129|97.201 +637499.473|219689.541|96.896 +637504.380|219684.978|96.911 +637509.354|219680.352|97.134 +637514.259|219675.789|97.186 +637519.212|219671.180|97.253 +637524.122|219666.605|96.942 +637529.115|219661.969|97.436 +637534.065|219657.367|97.527 +637539.054|219652.724|97.600 +637543.952|219648.168|97.725 +637548.948|219643.522|97.868 +637553.950|219638.874|98.134 +637558.918|219634.260|98.563 +637563.956|219629.584|99.277 +637568.982|219624.917|99.892 +637574.003|219620.257|100.481 +637579.026|219615.594|101.154 +637584.027|219610.951|101.590 +637589.023|219606.309|102.023 +637594.046|219601.637|102.267 +637599.014|219597.019|102.425 +637603.983|219592.401|102.614 +637609.024|219587.707|102.568 +637613.977|219583.099|102.645 +637618.979|219578.448|102.709 +637623.972|219573.802|102.718 +637628.958|219569.157|102.678 +637633.966|219564.500|102.940 +637638.971|219559.846|103.187 +637644.018|219555.149|103.394 +637649.072|219550.452|103.730 +637654.077|219545.797|104.068 +637659.124|219541.103|104.391 +637664.111|219536.464|104.544 +637669.143|219531.780|104.693 +637674.175|219527.098|104.864 +637679.211|219522.416|105.114 +637684.246|219517.731|105.391 +637689.296|219513.040|105.964 +637694.338|219508.356|106.400 +637699.419|219503.631|106.781 +637704.448|219498.956|107.083 +637709.474|219494.283|107.393 +637714.546|219489.565|107.726 +637719.520|219484.941|108.037 +637724.586|219480.229|108.302 +637729.646|219475.522|108.479 +637734.654|219470.862|108.604 +637739.649|219466.208|108.482 +637744.697|219461.508|108.479 +637749.668|219456.869|107.817 +637742.252|219459.588|108.344 +637737.205|219464.281|108.430 +637732.206|219468.930|108.512 +637727.195|219473.584|108.387 +637722.175|219478.244|108.131 +637717.158|219482.902|107.960 +637712.181|219487.522|107.625 +637707.097|219492.238|107.177 +637702.122|219496.855|107.012 +637697.090|219501.528|106.668 +637692.055|219506.201|106.342 +637687.053|219510.840|105.754 +637682.006|219515.521|105.287 +637677.013|219520.154|105.010 +637672.020|219524.787|104.733 +637666.985|219529.466|104.531 +637661.998|219534.096|104.422 +637657.009|219538.732|104.257 +637652.007|219543.371|103.980 +637647.002|219548.019|103.660 +637641.994|219552.664|103.340 +637636.987|219557.313|103.077 +637631.985|219561.958|102.901 +637627.020|219566.566|102.599 +637622.024|219571.209|102.547 +637617.025|219575.854|102.514 +637612.121|219580.410|102.468 +637607.122|219585.056|102.447 +637602.169|219589.658|102.443 +637597.201|219594.270|102.279 +637592.181|219598.933|102.072 +637587.252|219603.508|101.837 +637582.214|219608.184|101.493 +637577.255|219612.783|100.999 +637572.241|219617.435|100.450 +637567.251|219622.055|99.712 +637562.243|219626.701|99.298 +637557.245|219631.330|98.518 +637552.282|219635.936|98.155 +637547.320|219640.542|97.838 +637542.379|219645.132|97.740 +637537.426|219649.731|97.561 +637532.531|219654.279|97.530 +637527.633|219658.830|97.466 +637522.607|219663.484|96.637 +637517.767|219667.992|97.180 +637512.863|219672.549|97.134 +637507.961|219677.105|97.119 +637503.069|219681.641|96.802 +637498.162|219686.201|96.792 +637493.291|219690.736|97.122 +637488.381|219695.290|96.680 +637483.522|219699.804|96.753 +637473.808|219708.835|96.939 +637468.926|219713.371|96.847 +637464.122|219717.839|97.027 +637459.285|219722.341|97.362 +637449.616|219731.326|97.298 +637406.310|219771.569|97.411 +637401.513|219776.028|97.512 +637368.277|219806.914|98.405 +637363.556|219811.300|98.505 +637358.899|219815.625|98.722 +637344.735|219828.780|98.835 +637326.133|219846.075|100.246 +637298.484|219871.791|102.785 +637257.568|219909.845|106.479 +637253.069|219914.030|106.781 +637230.431|219935.058|107.741 +637212.588|219951.645|108.860 +637199.302|219964.002|110.024 +637190.579|219972.119|111.130 +637151.250|220008.680|113.889 +637133.889|220024.810|114.620 +637107.661|220049.133|113.401 +637090.177|220065.324|111.423 +637072.904|220081.332|110.006 +637068.631|220085.291|109.615 +637056.018|220096.996|109.472 +637051.803|220100.903|109.170 +637047.554|220104.835|108.762 +637039.236|220112.550|108.527 +637104.003|220049.706|113.337 +637112.656|220041.656|113.834 +637117.015|220037.602|114.126 +637125.796|220029.434|114.617 +637138.930|220017.208|114.812 +637151.970|220005.056|114.206 +637165.006|219992.897|113.224 +637169.413|219988.788|112.983 +637178.094|219980.684|111.847 +637182.541|219976.535|111.594 +637200.137|219960.122|109.960 +637204.535|219956.010|109.262 +637240.532|219922.446|106.750 +637268.181|219896.699|106.534 +637309.634|219858.035|102.447 +637332.844|219836.373|99.444 +637337.541|219831.996|99.094 +637351.818|219818.707|99.088 +637356.561|219814.287|98.780 +637361.310|219809.861|98.548 +637366.089|219805.411|98.545 +637458.008|219719.826|96.954 +637467.786|219710.722|96.838 +637472.763|219706.101|97.338 +637482.526|219697.000|96.789 +637487.409|219692.452|96.549 +637492.359|219687.850|96.927 +637497.296|219683.253|96.756 +637502.243|219678.648|96.722 +637507.175|219674.064|97.006 +637512.134|219669.449|97.146 +637517.066|219664.855|97.024 +637522.001|219660.262|96.948 +637526.990|219655.629|97.426 +637531.980|219650.984|97.481 +637536.920|219646.388|97.533 +637541.916|219641.739|97.689 +637546.906|219637.097|97.814 +637551.868|219632.486|98.182 +637556.934|219627.780|98.633 +637561.914|219623.156|99.274 +637566.986|219618.447|99.877 +637572.003|219613.789|100.453 +637577.014|219609.135|101.002 +637582.065|219604.441|101.505 +637587.045|219599.811|101.779 +637592.062|219595.148|101.919 +637597.079|219590.478|102.133 +637602.093|219585.815|102.325 +637607.137|219581.121|102.306 +637612.087|219576.515|102.358 +637617.135|219571.818|102.450 +637622.124|219567.173|102.419 +637627.138|219562.516|102.715 +637632.189|219557.819|102.895 +637637.188|219553.170|103.077 +637642.196|219548.516|103.388 +637647.246|219543.822|103.702 +637652.300|219539.128|104.028 +637657.338|219534.443|104.199 +637662.325|219529.804|104.361 +637667.360|219525.123|104.519 +637672.392|219520.444|104.696 +637677.431|219515.759|104.998 +637682.472|219511.077|105.370 +637687.568|219506.344|105.879 +637692.613|219501.662|106.382 +637697.642|219496.987|106.668 +637702.671|219492.311|107.028 +637707.749|219487.596|107.393 +637712.818|219482.883|107.613 +637717.841|219478.214|107.948 +637722.858|219473.553|108.158 +637727.918|219468.847|108.335 +637732.971|219464.144|108.445 +637738.019|219459.447|108.384 +637732.057|219460.947|108.317 +637727.046|219465.601|108.207 +637722.029|219470.259|108.052 +637717.058|219474.873|107.848 +637712.038|219479.537|107.610 +637707.008|219484.203|107.305 +637701.979|219488.870|107.003 +637697.041|219493.454|106.634 +637692.009|219498.123|106.354 +637687.013|219502.756|105.906 +637681.966|219507.438|105.452 +637676.967|219512.077|105.010 +637671.965|219516.713|104.632 +637666.976|219521.349|104.416 +637661.986|219525.982|104.248 +637657.000|219530.615|104.138 +637652.001|219535.254|103.922 +637647.002|219539.896|103.675 +637641.994|219544.542|103.382 +637637.038|219549.141|103.151 +637632.030|219553.792|102.895 +637627.017|219558.443|102.587 +637622.106|219563.003|102.413 +637617.104|219567.652|102.322 +637612.151|219572.251|102.270 +637607.198|219576.853|102.251 +637602.200|219581.499|102.258 +637597.280|219586.068|102.081 +637592.257|219590.728|101.877 +637587.331|219595.303|101.685 +637582.351|219599.927|101.428 +637577.407|219604.514|101.099 +637572.399|219609.159|100.636 +637567.428|219613.768|100.069 +637562.454|219618.379|99.499 +637557.427|219623.040|98.914 +637552.441|219627.661|98.280 +637547.485|219632.260|98.024 +637542.520|219636.869|97.670 +637537.618|219641.419|97.530 +637532.675|219646.013|97.472 +637527.728|219650.609|97.396 +637522.830|219655.160|97.362 +637517.791|219659.823|96.466 +637512.948|219664.334|96.981 +637508.059|219668.879|97.094 +637503.124|219673.460|96.811 +637498.250|219677.983|96.658 +637488.454|219687.094|96.844 +637483.678|219691.544|97.640 +637478.737|219696.122|96.966 +637473.662|219700.813|95.616 +637468.987|219705.181|96.893 +637464.122|219709.704|96.963 +637454.387|219718.753|97.128 +637444.743|219727.718|97.314 +637372.947|219794.463|98.838 +637368.158|219798.913|98.768 +637353.979|219812.096|98.960 +637330.375|219834.041|99.188 +637321.055|219842.716|99.801 +637307.476|219855.389|102.727 +637239.078|219919.053|107.326 +637221.034|219935.842|108.290 +637216.602|219939.972|108.783 +637212.128|219944.135|109.076 +637194.364|219960.671|110.256 +637181.285|219972.856|111.834 +637163.829|219989.105|113.160 +637150.863|220001.182|114.550 +637146.471|220005.263|114.443 +637142.182|220009.259|114.852 +637133.468|220017.360|115.062 +637124.736|220025.477|115.007 +637120.438|220029.470|114.962 +637116.052|220033.545|114.754 +637098.581|220049.761|113.532 +637063.919|220081.926|110.737 +637059.743|220085.809|110.804 +637042.662|220101.653|109.103 +637038.456|220105.558|108.890 +637076.449|220067.979|112.145 +637085.002|220060.026|112.666 +637124.019|220023.749|115.358 +637145.596|220003.647|114.648 +637162.848|219987.557|113.200 +637171.556|219979.434|112.453 +637175.912|219975.374|112.243 +637180.225|219971.348|111.554 +637193.413|219959.046|110.356 +637197.851|219954.907|109.844 +637206.745|219946.613|109.228 +637220.120|219934.141|108.207 +637233.662|219921.516|107.384 +637238.274|219917.224|107.400 +637247.448|219908.684|107.521 +637279.501|219878.792|105.409 +637297.740|219861.744|102.392 +637311.853|219848.595|102.236 +637316.339|219844.395|101.142 +637320.942|219840.088|100.188 +637330.333|219831.328|99.469 +637335.033|219826.945|99.146 +637339.785|219822.520|99.216 +637344.582|219818.051|99.249 +637349.319|219813.635|98.911 +637363.586|219800.339|98.716 +637368.378|219795.871|98.490 +637378.074|219786.849|98.868 +637382.832|219782.408|98.457 +637421.236|219746.588|96.037 +637460.434|219710.091|96.792 +637465.308|219705.552|96.829 +637470.184|219700.996|96.073 +637480.081|219691.791|96.704 +637484.955|219687.246|96.396 +637489.914|219682.628|96.427 +637494.843|219678.041|96.649 +637499.790|219673.433|96.637 +637504.767|219668.800|96.933 +637509.708|219664.200|96.875 +637514.676|219659.567|96.680 +637519.620|219654.974|97.161 +637524.622|219650.316|97.332 +637529.572|219645.708|97.490 +637534.549|219641.072|97.460 +637539.539|219636.427|97.564 +637544.544|219631.769|97.856 +637549.542|219627.118|98.137 +637554.498|219622.510|98.463 +637559.579|219617.791|99.155 +637564.612|219613.116|99.883 +637569.662|219608.422|100.325 +637574.667|219603.767|100.837 +637579.705|219599.083|101.197 +637584.732|219594.404|101.480 +637589.752|219589.734|101.712 +637594.775|219585.062|101.980 +637599.780|219580.401|102.096 +637604.775|219575.747|102.117 +637609.771|219571.096|102.157 +637614.818|219566.396|102.245 +637619.814|219561.744|102.309 +637624.865|219557.041|102.538 +637629.869|219552.384|102.788 +637634.917|219547.684|103.023 +637639.961|219542.987|103.202 +637645.012|219538.287|103.559 +637650.053|219533.593|103.782 +637655.095|219528.902|104.010 +637660.127|219524.214|104.172 +637665.205|219519.487|104.321 +637670.237|219514.799|104.544 +637675.279|219510.108|104.937 +637680.366|219505.378|105.342 +637685.410|219500.687|105.860 +637690.491|219495.959|106.235 +637695.572|219491.232|106.613 +637700.598|219486.553|106.964 +637705.667|219481.835|107.253 +637710.736|219477.120|107.525 +637715.799|219472.404|107.741 +637720.859|219467.695|107.939 +637725.872|219463.026|108.219 +637730.920|219458.326|108.201 +637726.476|219458.344|108.131 +637721.456|219463.001|107.906 +637716.430|219467.665|107.610 +637711.416|219472.325|107.534 +637706.387|219476.992|107.223 +637701.406|219481.612|106.964 +637696.377|219486.282|106.699 +637691.387|219490.912|106.302 +637686.349|219495.588|105.958 +637681.353|219500.220|105.562 +637676.345|219504.863|105.022 +637671.295|219509.547|104.617 +637666.348|219514.141|104.309 +637661.355|219518.774|104.129 +637656.369|219523.407|104.044 +637651.376|219528.043|103.907 +637646.371|219532.688|103.599 +637641.418|219537.284|103.388 +637636.401|219541.939|102.998 +637631.445|219546.538|102.812 +637626.483|219551.147|102.553 +637621.481|219555.792|102.425 +637616.553|219560.364|102.059 +637611.557|219565.006|102.099 +637606.598|219569.611|101.980 +637601.688|219574.174|101.907 +637596.735|219578.774|101.959 +637591.763|219583.391|101.779 +637586.783|219588.015|101.502 +637581.851|219592.593|101.288 +637576.855|219597.226|100.910 +637571.957|219601.771|100.612 +637566.949|219606.416|100.145 +637561.984|219611.022|99.667 +637556.992|219615.645|98.950 +637552.008|219620.266|98.347 +637547.034|219624.878|97.905 +637542.084|219629.474|97.716 +637537.167|219634.037|97.430 +637532.220|219638.630|97.341 +637527.383|219643.126|97.396 +637522.433|219647.726|97.298 +637517.514|219652.292|97.103 +637512.652|219656.815|97.433 +637507.724|219661.390|97.170 +637502.783|219665.974|96.826 +637497.863|219670.543|96.701 +637492.987|219675.069|96.555 +637488.058|219679.647|96.387 +637483.202|219684.162|96.463 +637478.252|219688.755|96.165 +637468.478|219697.823|95.457 +637463.768|219702.224|96.884 +637458.892|219706.756|96.872 +637454.006|219711.295|96.826 +637415.223|219747.322|96.454 +637343.893|219813.653|99.167 +637306.823|219848.172|102.837 +637265.645|219886.516|106.884 +637242.748|219907.806|107.403 +637238.256|219911.985|107.771 +637206.803|219941.249|109.582 +637184.699|219961.820|111.066 +637176.003|219969.918|112.097 +637149.921|219994.202|114.462 +637145.557|219998.256|114.489 +637136.973|220006.247|115.288 +637128.332|220014.282|115.614 +637119.652|220022.350|115.562 +637093.655|220046.484|114.407 +637072.045|220066.537|112.734 +637067.701|220070.557|112.008 +637046.490|220090.247|110.853 +637042.156|220094.265|110.042 +637113.168|220026.468|115.599 +637121.886|220018.348|115.812 +637130.576|220010.246|115.711 +637143.575|219998.115|114.907 +637152.283|219989.989|114.297 +637160.949|219981.900|113.544 +637191.661|219953.221|110.682 +637227.475|219919.797|108.140 +637241.142|219907.047|107.564 +637245.723|219902.783|107.735 +637254.904|219894.221|107.384 +637264.048|219885.693|106.894 +637268.675|219881.377|106.574 +637300.630|219851.528|102.270 +637305.431|219847.062|102.828 +637319.134|219834.245|100.179 +637342.726|219812.251|99.246 +637361.727|219794.545|99.033 +637414.351|219745.469|96.061 +637419.225|219740.925|95.915 +637433.998|219727.184|97.125 +637438.884|219722.633|97.173 +637448.623|219713.557|97.015 +637453.472|219709.036|96.802 +637458.404|219704.443|96.890 +637463.278|219699.904|96.911 +637467.972|219695.488|94.604 +637472.851|219690.943|94.699 +637477.811|219686.332|95.113 +637482.943|219681.580|96.640 +637487.832|219677.023|96.485 +637492.798|219672.399|96.604 +637497.763|219667.775|96.735 +637502.661|219663.213|96.744 +637507.626|219658.592|96.930 +637512.689|219653.886|97.622 +637517.529|219649.369|97.128 +637522.546|219644.702|97.417 +637527.478|219640.106|97.399 +637532.455|219635.470|97.353 +637537.457|219630.815|97.576 +637542.447|219626.167|97.716 +637547.442|219621.519|97.951 +637552.471|219616.846|98.539 +637557.491|219612.177|99.106 +637562.512|219607.513|99.694 +637567.574|219602.807|100.270 +637572.567|219598.165|100.612 +637577.608|219593.474|101.020 +637582.638|219588.796|101.322 +637587.609|219584.169|101.520 +637592.675|219579.453|101.745 +637597.682|219574.790|101.864 +637602.672|219570.139|101.794 +637607.726|219565.436|101.953 +637612.666|219560.830|101.907 +637617.723|219556.124|102.163 +637622.783|219551.421|102.456 +637627.785|219546.770|102.660 +637632.829|219542.076|102.858 +637637.877|219537.379|103.096 +637642.924|219532.688|103.330 +637647.975|219527.991|103.693 +637652.964|219523.349|103.885 +637658.042|219518.624|103.995 +637663.071|219513.943|104.138 +637668.110|219509.258|104.422 +637673.197|219504.527|104.742 +637678.244|219499.836|105.299 +637683.331|219495.109|105.696 +637688.416|219490.385|106.095 +637693.448|219485.706|106.488 +637698.520|219480.991|106.756 +637703.585|219476.275|106.988 +637708.612|219471.606|107.326 +637713.668|219466.897|107.464 +637718.725|219462.191|107.576 +637723.800|219457.478|108.052 +637716.914|219460.121|107.701 +637711.846|219464.830|107.433 +637706.822|219469.494|107.189 +637701.748|219474.206|106.878 +637696.718|219478.875|106.595 +637691.692|219483.545|106.369 +637686.657|219488.220|106.034 +637681.615|219492.899|105.647 +637676.571|219497.581|105.208 +637671.514|219502.272|104.641 +637666.519|219506.911|104.303 +637661.480|219511.590|104.071 +637656.488|219516.229|103.885 +637651.455|219520.904|103.809 +637646.457|219525.546|103.580 +637641.458|219530.192|103.349 +637636.450|219534.840|103.032 +637631.448|219539.488|102.815 +637626.440|219544.139|102.568 +637621.442|219548.784|102.468 +637616.473|219553.396|102.191 +637611.453|219558.056|101.828 +637606.500|219562.659|101.797 +637601.547|219567.264|101.761 +637596.539|219571.919|101.681 +637591.629|219576.485|101.614 +637586.609|219581.148|101.428 +637581.674|219585.729|101.154 +637576.694|219590.356|100.916 +637571.750|219594.943|100.593 +637566.797|219599.543|100.188 +637561.783|219604.194|99.661 +637556.818|219608.800|99.219 +637551.834|219613.420|98.588 +637546.900|219617.998|97.978 +637541.892|219622.650|97.679 +637536.991|219627.200|97.509 +637532.035|219631.806|97.308 +637527.149|219636.347|97.314 +637522.260|219640.892|97.353 +637517.340|219645.461|97.100 +637512.427|219650.027|96.933 +637507.632|219654.501|97.905 +637497.702|219663.712|96.710 +637492.819|219668.248|96.457 +637487.912|219672.811|96.469 +637483.053|219677.325|96.506 +637477.969|219682.016|94.558 +637473.174|219686.487|95.195 +637468.447|219690.904|96.451 +637463.631|219695.390|96.927 +637458.748|219699.926|96.853 +637453.926|219704.409|96.896 +637449.056|219708.939|96.957 +637444.231|219713.425|97.018 +637439.390|219717.924|96.966 +637419.984|219735.947|95.878 +637410.370|219744.890|96.186 +637372.484|219780.168|99.286 +637288.145|219858.636|103.294 +637265.456|219879.783|106.430 +637251.816|219892.481|107.531 +637247.262|219896.717|107.793 +637242.672|219900.985|107.866 +637238.097|219905.240|108.030 +637233.546|219909.470|108.076 +637210.955|219930.489|109.167 +637202.033|219938.795|109.899 +637193.066|219947.140|110.438 +637188.640|219951.258|110.777 +637184.248|219955.346|111.039 +637175.421|219963.566|111.904 +637171.074|219967.617|112.435 +637162.357|219975.731|113.154 +637157.959|219979.824|113.465 +637140.637|219995.951|114.922 +637132.039|220003.955|115.672 +637127.698|220007.994|115.867 +637123.334|220012.054|115.946 +637110.343|220024.127|115.839 +637101.702|220032.152|115.626 +637097.413|220036.142|115.693 +637084.285|220048.322|114.562 +637079.985|220052.315|114.407 +637058.356|220072.374|111.993 +637041.431|220088.086|111.118 +637088.153|220043.308|115.044 +637101.205|220031.162|115.736 +637109.864|220023.097|115.852 +637114.226|220019.037|115.971 +637127.244|220006.906|115.873 +637140.198|219994.820|114.858 +637157.633|219978.553|113.581 +637161.961|219974.515|113.209 +637170.654|219966.395|112.182 +637201.704|219937.426|109.838 +637210.616|219929.112|109.134 +637215.130|219924.902|108.835 +637237.853|219903.719|107.902 +637242.443|219899.442|107.857 +637256.190|219886.616|107.095 +637265.343|219878.073|106.400 +637278.946|219865.350|104.117 +637288.167|219856.746|103.349 +637311.304|219835.135|100.987 +637344.210|219804.427|98.896 +637353.769|219795.523|99.176 +637406.371|219746.451|96.622 +637420.822|219732.969|95.951 +637440.375|219714.764|96.835 +637445.270|219710.204|96.972 +637450.132|219705.671|96.863 +637455.057|219701.081|96.911 +637464.826|219691.974|96.771 +637484.388|219673.737|96.506 +637489.338|219669.123|96.488 +637494.233|219664.560|96.433 +637499.168|219659.957|96.299 +637509.110|219650.701|96.811 +637514.030|219646.119|97.088 +637519.032|219641.462|97.241 +637523.966|219636.863|97.219 +637528.910|219632.257|97.323 +637533.903|219627.606|97.460 +637538.841|219623.006|97.564 +637543.839|219618.352|97.832 +637548.847|219613.692|98.219 +637553.886|219609.007|98.966 +637558.906|219604.340|99.533 +637563.914|219599.683|100.023 +637568.952|219594.995|100.340 +637573.945|219590.347|100.761 +637578.971|219585.668|101.017 +637583.951|219581.032|101.316 +637588.965|219576.363|101.493 +637593.973|219571.696|101.599 +637598.929|219567.082|101.694 +637603.971|219562.382|101.715 +637608.966|219557.727|101.736 +637613.986|219553.052|102.130 +637618.991|219548.391|102.337 +637623.990|219543.734|102.483 +637629.040|219539.028|102.745 +637634.085|219534.331|102.931 +637639.090|219529.670|103.263 +637644.183|219524.928|103.504 +637649.172|219520.279|103.693 +637654.208|219515.589|103.839 +637659.237|219510.901|103.971 +637664.272|219506.213|104.187 +637669.311|219501.522|104.495 +637674.407|219496.779|105.007 +637679.448|219492.088|105.461 +637684.487|219487.398|105.915 +637689.568|219482.667|106.266 +637694.594|219477.988|106.552 +637699.666|219473.264|106.842 +637704.683|219468.591|107.080 +637709.749|219463.873|107.287 +637714.814|219459.155|107.598 +637711.907|219457.850|107.366 +637706.893|219462.504|107.262 +637701.818|219467.214|106.900 +637696.795|219471.874|106.677 +637691.762|219476.541|106.345 +637686.681|219481.253|106.034 +637681.689|219485.883|105.607 +637676.598|219490.601|105.187 +637671.551|219495.283|104.729 +637666.549|219499.916|104.309 +637661.508|219504.594|104.041 +637656.469|219509.270|103.827 +637651.480|219513.900|103.687 +637646.438|219518.579|103.501 +637641.446|219523.212|103.337 +637636.444|219527.851|103.099 +637631.433|219532.499|102.745 +637626.434|219537.141|102.575 +637621.378|219541.829|102.340 +637616.425|219546.428|102.197 +637611.420|219551.073|102.044 +637606.439|219555.691|101.648 +637601.432|219560.339|101.511 +637596.485|219564.936|101.553 +637591.522|219569.541|101.447 +637586.505|219574.196|101.279 +637581.580|219578.765|101.102 +637576.599|219583.385|100.852 +637571.613|219588.012|100.566 +637566.617|219592.645|100.182 +637561.615|219597.284|99.795 +637556.659|219601.878|99.420 +637551.679|219606.492|98.771 +637546.677|219611.122|97.981 +637541.730|219615.712|97.765 +637536.768|219620.315|97.448 +637531.818|219624.908|97.289 +637526.880|219629.493|97.265 +637521.985|219634.037|97.210 +637517.044|219638.627|97.201 +637512.128|219643.190|96.978 +637507.218|219647.744|96.872 +637502.310|219652.301|96.789 +637497.281|219656.952|95.576 +637492.511|219661.393|96.393 +637487.613|219665.944|96.454 +637482.770|219670.442|96.616 +637477.667|219675.152|94.912 +637472.982|219679.522|96.085 +637468.154|219684.018|96.866 +637463.320|219688.505|96.744 +637458.443|219693.034|96.686 +637453.615|219697.518|96.686 +637439.101|219710.999|96.884 +637419.780|219728.940|96.789 +637381.765|219764.284|99.289 +637325.087|219816.960|100.109 +637315.843|219825.571|101.151 +637306.677|219834.111|102.434 +637283.656|219855.533|104.089 +637233.638|219902.088|108.329 +637215.563|219918.898|109.015 +637188.805|219943.794|110.932 +637153.719|219976.450|114.002 +637140.765|219988.508|115.178 +637136.379|219992.586|115.346 +637127.805|220000.569|116.196 +637123.452|220004.617|116.312 +637093.106|220032.808|116.062 +637080.125|220044.860|115.346 +637075.864|220048.813|115.138 +637062.776|220060.944|113.480 +637072.959|220049.938|115.004 +637103.177|220021.792|116.416 +637107.533|220017.732|116.504 +637142.274|219985.323|115.312 +637155.313|219973.140|113.910 +637159.638|219969.095|113.279 +637164.000|219965.020|112.840 +637168.319|219960.985|112.188 +637181.681|219948.509|111.389 +637190.539|219940.243|110.826 +637199.512|219931.864|110.146 +637212.927|219919.340|109.116 +637222.001|219910.878|108.847 +637226.527|219906.651|108.399 +637235.680|219898.110|108.125 +637253.974|219881.038|107.147 +637404.424|219740.611|97.253 +637414.061|219731.616|96.485 +637428.719|219717.958|96.899 +637433.587|219713.419|96.820 +637438.455|219708.881|96.738 +637448.233|219699.761|96.604 +637453.158|219695.174|96.652 +637462.930|219686.060|96.597 +637467.844|219681.482|96.616 +637472.723|219676.929|96.366 +637477.536|219672.421|95.113 +637482.547|219667.775|96.509 +637487.485|219663.170|96.411 +637492.368|219658.613|96.268 +637497.248|219654.056|95.637 +637502.292|219649.369|96.625 +637507.245|219644.757|96.744 +637512.210|219640.133|97.000 +637517.154|219635.525|97.113 +637522.147|219630.873|97.228 +637527.030|219626.323|97.231 +637532.050|219621.641|97.192 +637536.997|219617.035|97.417 +637542.002|219612.375|97.774 +637546.991|219607.730|97.984 +637552.029|219603.045|98.786 +637557.046|219598.382|99.350 +637562.042|219593.730|99.752 +637567.087|219589.036|100.173 +637572.073|219584.394|100.548 +637577.093|219579.719|100.755 +637582.110|219575.046|100.977 +637587.069|219570.425|101.108 +637592.077|219565.759|101.258 +637597.073|219561.101|101.294 +637602.075|219556.441|101.422 +637607.092|219551.771|101.782 +637612.093|219547.111|101.962 +637617.141|219542.411|102.117 +637622.085|219537.802|102.230 +637627.138|219533.099|102.541 +637632.137|219528.442|102.821 +637637.139|219523.785|103.138 +637642.174|219519.094|103.288 +637647.203|219514.406|103.401 +637652.190|219509.761|103.617 +637657.219|219505.076|103.769 +637662.206|219500.434|103.998 +637667.241|219495.743|104.324 +637672.282|219491.052|104.763 +637677.318|219486.364|105.144 +637682.359|219481.673|105.677 +637687.382|219476.995|105.940 +637692.408|219472.316|106.287 +637697.480|219467.595|106.598 +637702.503|219462.919|106.967 +637707.514|219458.249|107.150 +637701.394|219459.740|106.857 +637696.368|219464.412|106.522 +637691.345|219469.085|106.269 +637686.355|219473.718|105.830 +637681.326|219478.397|105.507 +637676.336|219483.033|105.126 +637671.292|219487.721|104.641 +637666.296|219492.366|104.202 +637661.258|219497.051|103.913 +637656.271|219501.690|103.705 +637651.288|219506.326|103.586 +637646.249|219511.013|103.370 +637641.260|219515.656|103.245 +637636.270|219520.298|103.105 +637631.265|219524.949|102.788 +637626.312|219529.558|102.520 +637621.301|219534.218|102.175 +637616.306|219538.863|102.093 +637611.301|219543.520|101.892 +637606.348|219548.129|101.739 +637601.386|219552.747|101.514 +637596.369|219557.410|101.246 +637591.416|219562.022|101.206 +637586.454|219566.640|101.075 +637581.482|219571.263|100.862 +637576.511|219575.887|100.685 +637571.543|219580.511|100.529 +637566.553|219585.150|100.191 +637561.558|219589.792|99.798 +637556.601|219594.398|99.377 +637551.588|219599.055|98.859 +637546.604|219603.685|98.167 +637541.633|219608.303|97.686 +637536.637|219612.951|97.460 +637531.739|219617.508|97.274 +637526.734|219622.159|97.036 +637521.857|219626.704|97.109 +637516.913|219631.306|97.024 +637512.027|219635.854|97.061 +637507.056|219640.474|96.783 +637502.146|219645.043|96.622 +637492.264|219654.230|95.811 +637487.415|219658.753|96.305 +637482.520|219663.310|96.402 +637472.720|219672.430|96.107 +637467.892|219676.929|96.433 +637463.052|219681.440|96.637 +637458.154|219685.993|96.387 +637453.323|219690.498|96.713 +637390.830|219748.715|99.097 +637386.087|219753.135|99.194 +637371.837|219766.409|99.834 +637367.058|219770.865|100.081 +637352.903|219784.045|100.883 +637348.103|219788.501|100.401 +637343.317|219792.948|100.042 +637319.744|219814.881|100.267 +637310.563|219823.446|101.706 +637301.297|219832.069|102.017 +637296.713|219836.348|102.821 +637273.716|219857.767|104.364 +637251.091|219878.865|107.259 +637232.952|219895.754|108.372 +637228.426|219899.966|108.530 +637210.360|219916.785|109.231 +637205.916|219920.925|109.643 +637201.512|219925.033|110.277 +637192.566|219933.357|110.582 +637170.514|219953.901|112.310 +637166.121|219957.994|112.843 +637148.708|219974.219|114.334 +637140.134|219982.217|115.565 +637114.217|220006.345|116.870 +637088.315|220030.433|116.629 +637066.665|220050.538|115.059 +637062.303|220054.586|114.428 +637049.617|220066.382|114.194 +637045.457|220070.252|114.297 +637065.924|220048.791|115.233 +637070.243|220044.765|115.711 +637091.848|220024.602|116.845 +637113.452|220004.422|116.989 +637122.166|219996.277|116.827 +637126.436|219992.281|116.355 +637135.087|219984.186|115.739 +637139.403|219980.144|115.276 +637152.415|219967.967|114.029 +637169.956|219951.548|112.331 +637174.372|219947.415|111.965 +637196.626|219926.600|110.466 +637214.582|219909.802|109.122 +637251.133|219875.625|107.067 +637260.198|219867.136|105.613 +637311.249|219819.405|101.694 +637334.707|219797.462|99.463 +637339.468|219793.015|99.319 +637368.381|219766.043|100.310 +637382.761|219752.605|99.688 +637392.357|219743.631|98.941 +637416.347|219721.192|96.549 +637421.206|219716.659|96.741 +637426.147|219712.051|96.838 +637430.975|219707.534|96.439 +637445.669|219693.821|96.686 +637450.552|219689.258|96.411 +637455.487|219684.652|96.604 +637460.382|219680.080|96.463 +637465.283|219675.505|96.393 +637469.995|219671.073|94.692 +637480.093|219661.676|96.448 +637484.973|219657.120|96.262 +637489.884|219652.529|95.939 +637494.806|219647.939|96.201 +637499.832|219643.254|96.573 +637504.785|219638.633|96.713 +637509.741|219634.010|96.936 +637514.722|219629.361|96.930 +637519.647|219624.762|96.884 +637524.640|219620.102|97.055 +637529.633|219615.444|97.259 +637534.622|219610.790|97.454 +637539.609|219606.139|97.625 +637544.614|219601.472|98.054 +637549.637|219596.797|98.676 +637554.696|219592.084|99.237 +637559.738|219587.384|99.624 +637564.731|219582.730|100.054 +637569.705|219578.091|100.310 +637574.725|219573.409|100.554 +637579.742|219568.727|100.785 +637584.735|219564.067|100.752 +637589.749|219559.391|101.014 +637594.756|219554.722|101.203 +637599.813|219550.004|101.480 +637604.815|219545.340|101.663 +637609.865|219540.634|101.840 +637614.858|219535.980|101.941 +637619.902|219531.280|102.117 +637624.904|219526.619|102.419 +637629.906|219521.962|102.703 +637634.996|219517.219|102.925 +637640.035|219512.525|103.166 +637645.018|219507.880|103.294 +637650.099|219503.147|103.501 +637655.083|219498.504|103.660 +637660.161|219493.771|103.885 +637665.190|219489.086|104.108 +637670.234|219484.392|104.598 +637675.269|219479.701|105.022 +637680.351|219474.974|105.397 +637685.380|219470.289|105.790 +637690.455|219465.562|106.168 +637695.487|219460.880|106.628 +637692.491|219459.389|106.318 +637687.468|219464.062|106.046 +637682.432|219468.747|105.565 +637677.449|219473.383|105.181 +637672.462|219478.019|104.812 +637667.473|219482.664|104.370 +637662.474|219487.309|103.873 +637657.490|219491.948|103.663 +637652.507|219496.587|103.468 +637647.478|219501.272|103.334 +637642.537|219505.871|103.120 +637637.550|219510.514|102.971 +637632.555|219515.162|102.693 +637627.614|219519.764|102.556 +637622.609|219524.422|102.236 +637617.659|219529.030|102.026 +637612.660|219533.681|101.849 +637607.710|219538.293|101.672 +637602.757|219542.905|101.517 +637597.811|219547.510|101.459 +637592.848|219552.131|101.221 +637587.825|219556.804|100.883 +637582.903|219561.385|100.612 +637577.953|219565.996|100.630 +637572.975|219570.629|100.310 +637568.065|219575.204|100.264 +637563.085|219579.840|99.987 +637558.132|219584.446|99.511 +637553.139|219589.091|99.167 +637548.204|219593.672|98.454 +637543.196|219598.330|98.003 +637538.286|219602.899|97.582 +637533.293|219607.547|97.369 +637528.398|219612.104|97.189 +637523.451|219616.709|97.009 +637518.547|219621.275|96.792 +637513.625|219625.862|96.902 +637508.736|219630.416|96.878 +637503.825|219634.988|96.671 +637498.878|219639.597|96.582 +637494.020|219644.123|96.460 +637489.015|219648.765|95.454 +637484.230|219653.243|96.509 +637479.347|219657.796|96.674 +637469.377|219667.050|94.805 +637464.728|219671.415|96.689 +637459.849|219675.959|96.521 +637454.975|219680.498|96.448 +637450.125|219685.018|96.588 +637445.310|219689.505|96.634 +637411.425|219721.073|96.454 +637397.194|219734.359|98.006 +637373.587|219756.402|100.648 +637335.420|219791.936|99.319 +637321.423|219805.000|100.447 +637289.096|219835.175|103.556 +637275.365|219847.992|104.882 +637261.539|219860.879|105.165 +637234.375|219886.235|107.851 +637220.897|219898.811|108.823 +637189.509|219928.087|110.557 +637185.107|219932.196|110.957 +637171.907|219944.516|111.996 +637158.785|219956.763|113.307 +637145.779|219968.909|114.800 +637128.509|219985.024|116.138 +637124.248|219989.002|116.656 +637098.416|220013.084|117.318 +637068.177|220041.232|116.001 +637059.545|220049.264|115.324 +637038.386|220068.960|114.340 +637078.253|220029.156|117.421 +637086.696|220021.271|117.190 +637091.003|220017.251|117.263 +637103.909|220005.202|117.257 +637108.246|220001.151|117.299 +637129.612|219981.171|115.708 +637134.032|219977.047|115.742 +637146.965|219964.947|114.352 +637160.044|219952.715|113.288 +637173.144|219940.459|111.941 +637182.011|219932.169|111.179 +637199.777|219915.557|109.743 +637217.791|219898.720|108.799 +637263.112|219856.328|104.681 +637277.172|219843.210|104.995 +637300.118|219821.721|101.636 +637328.166|219795.496|99.615 +637332.981|219791.003|99.837 +637337.874|219786.450|100.602 +637409.483|219719.503|95.976 +637414.351|219714.965|96.216 +637453.433|219678.474|96.265 +637458.373|219673.865|96.536 +637463.253|219669.306|96.296 +637468.011|219664.831|94.564 +637473.025|219660.168|95.549 +637478.076|219655.471|96.466 +637482.940|219650.923|96.186 +637487.756|219646.406|94.991 +637492.904|219641.627|96.472 +637497.799|219637.055|96.530 +637502.798|219632.391|96.668 +637507.742|219627.776|96.771 +637512.732|219623.119|96.872 +637517.654|219618.523|96.799 +637522.647|219613.865|96.981 +637527.636|219609.211|97.155 +637532.617|219604.560|97.277 +637537.615|219599.902|97.582 +637542.611|219595.242|97.923 +637547.674|219590.527|98.472 +637552.694|219585.851|99.161 +637557.735|219581.151|99.569 +637562.768|219576.460|99.898 +637567.748|219571.815|100.234 +637572.762|219567.136|100.395 +637577.758|219562.473|100.386 +637582.778|219557.791|100.734 +637587.831|219553.076|100.877 +637592.797|219548.446|101.176 +637597.841|219543.737|101.297 +637602.840|219539.073|101.453 +637607.881|219534.367|101.596 +637612.929|219529.658|101.816 +637617.915|219525.001|101.922 +637622.966|219520.292|102.221 +637628.001|219515.592|102.398 +637633.045|219510.885|102.690 +637638.081|219506.185|102.916 +637643.110|219501.491|103.068 +637648.136|219496.801|103.233 +637653.211|219492.064|103.391 +637658.234|219487.373|103.556 +637663.321|219482.633|103.952 +637668.360|219477.933|104.455 +637673.395|219473.240|104.912 +637678.519|219468.463|105.275 +637683.551|219463.772|105.754 +637688.614|219459.045|105.997 +637682.396|219460.090|105.257 +637677.403|219464.729|104.748 +637672.395|219469.396|104.787 +637667.363|219474.078|104.473 +637662.367|219478.723|103.992 +637657.323|219483.414|103.556 +637652.333|219488.056|103.276 +637647.350|219492.692|103.123 +637642.318|219497.377|102.974 +637637.377|219501.976|102.797 +637632.384|219506.621|102.556 +637627.394|219511.266|102.398 +637622.390|219515.921|102.093 +637617.443|219520.529|101.898 +637612.490|219525.138|101.697 +637607.491|219529.789|101.523 +637602.541|219534.398|101.432 +637597.582|219539.012|101.197 +637592.629|219543.624|101.075 +637587.676|219548.236|100.996 +637582.699|219552.866|100.645 +637577.788|219557.438|100.532 +637572.805|219562.071|100.188 +637567.894|219566.646|100.127 +637562.920|219571.273|99.935 +637557.985|219575.866|99.630 +637553.035|219580.468|99.219 +637548.079|219585.077|98.761 +637543.099|219589.701|98.103 +637538.134|219594.319|97.615 +637533.239|219598.875|97.402 +637528.295|219603.475|97.204 +637523.393|219608.035|96.997 +637518.443|219612.643|96.789 +637513.558|219617.194|96.768 +637508.672|219621.744|96.768 +637503.783|219626.298|96.777 +637498.881|219630.861|96.680 +637493.974|219635.430|96.518 +637489.100|219639.965|96.274 +637479.371|219649.030|96.457 +637474.455|219653.608|96.338 +637469.465|219658.232|95.147 +637464.695|219662.691|95.939 +637459.888|219667.175|96.442 +637455.045|219671.689|96.610 +637406.679|219716.726|95.979 +637397.307|219725.483|97.667 +637392.543|219729.933|98.304 +637387.925|219734.252|99.304 +637354.985|219765.001|103.041 +637321.280|219796.334|99.316 +637312.039|219804.966|100.621 +637293.598|219822.181|102.675 +637279.894|219834.986|104.726 +637256.751|219856.554|105.156 +637238.640|219873.461|107.110 +637211.537|219898.747|109.091 +637207.050|219902.935|109.497 +637193.575|219915.493|109.917 +637184.693|219923.781|110.542 +637175.823|219932.056|111.301 +637171.416|219936.168|111.709 +637167.097|219940.203|112.316 +637162.741|219944.269|112.761 +637158.325|219948.390|113.154 +637153.966|219952.453|113.352 +637149.656|219956.483|114.059 +637136.659|219968.608|115.151 +637132.313|219972.664|115.474 +637128.067|219976.630|116.050 +637123.711|219980.687|116.102 +637106.615|219996.643|117.793 +637098.069|220004.611|118.122 +637089.348|220012.727|117.687 +637076.437|220024.743|117.144 +637059.237|220040.748|116.196 +637046.460|220052.638|115.471 +637033.725|220064.483|114.419 +637071.789|220027.346|117.379 +637080.390|220019.308|117.616 +637084.706|220015.279|117.705 +637093.353|220007.198|118.037 +637123.413|219979.065|116.278 +637132.087|219970.945|115.797 +637136.394|219966.910|115.300 +637149.452|219954.681|114.059 +637158.163|219946.522|113.163 +637175.762|219930.038|111.374 +637189.106|219917.538|110.155 +637216.200|219892.185|108.637 +637220.729|219887.942|108.247 +637243.498|219866.637|106.567 +637252.554|219858.154|105.345 +637261.804|219849.507|105.028 +637308.180|219806.112|100.868 +637326.968|219788.534|99.417 +637389.254|219730.339|98.682 +637393.978|219725.916|98.152 +637398.760|219721.436|97.320 +637427.665|219694.400|95.378 +637432.688|219689.730|96.594 +637442.478|219680.586|96.634 +637447.373|219676.008|96.479 +637466.838|219657.799|94.985 +637481.773|219643.882|96.664 +637486.647|219639.319|96.015 +637491.627|219634.674|96.387 +637496.544|219630.084|96.643 +637501.533|219625.423|96.716 +637506.413|219620.864|96.661 +637511.390|219616.215|96.628 +637516.328|219611.604|96.722 +637521.318|219606.946|96.875 +637526.265|219602.329|97.109 +637531.254|219597.674|97.298 +637536.241|219593.020|97.484 +637541.200|219588.396|97.960 +637546.269|219583.672|98.585 +637551.277|219579.005|99.121 +637556.275|219574.345|99.572 +637561.298|219569.657|99.819 +637566.270|219565.018|100.029 +637571.272|219560.345|100.057 +637576.252|219555.700|100.453 +637581.309|219550.982|100.612 +637586.323|219546.303|100.877 +637591.324|219541.631|101.047 +637596.326|219536.964|101.197 +637601.322|219532.304|101.325 +637606.360|219527.601|101.435 +637611.408|219522.892|101.657 +637616.397|219518.237|101.782 +637621.442|219513.531|102.053 +637626.437|219508.874|102.315 +637631.473|219504.180|102.477 +637636.554|219499.437|102.678 +637641.534|219494.789|102.831 +637646.566|219490.098|103.038 +637651.596|219485.407|103.233 +637656.628|219480.716|103.519 +637661.712|219475.977|103.916 +637666.747|219471.283|104.345 +637671.752|219466.610|104.272 +637676.830|219461.877|104.656 +637681.862|219457.189|105.141 +637677.854|219456.777|105.293 +637672.761|219461.517|104.659 +637667.710|219466.214|104.010 +637662.629|219470.944|103.705 +637657.606|219475.626|103.593 +637652.565|219480.317|103.212 +637647.523|219485.011|102.892 +637642.497|219489.696|102.812 +637637.459|219494.390|102.581 +637632.430|219499.077|102.486 +637627.434|219503.732|102.221 +637622.390|219508.429|102.008 +637617.345|219513.129|101.822 +637612.386|219517.747|101.474 +637607.345|219522.443|101.389 +637602.340|219527.107|101.160 +637597.341|219531.767|101.011 +637592.342|219536.425|100.938 +637587.389|219541.039|100.840 +637582.388|219545.703|100.737 +637577.416|219550.333|100.462 +637572.448|219554.960|100.255 +637567.462|219559.602|99.874 +637562.512|219564.216|99.932 +637557.534|219568.855|99.685 +637552.584|219573.461|99.267 +637547.585|219578.115|98.847 +637542.611|219582.739|98.225 +637537.643|219587.363|97.686 +637532.687|219591.975|97.332 +637527.740|219596.583|97.088 +637522.796|219601.189|96.908 +637517.901|219605.752|96.756 +637512.954|219610.360|96.585 +637508.068|219614.914|96.588 +637503.191|219619.465|96.683 +637498.299|219624.024|96.661 +637493.383|219628.602|96.427 +637488.445|219633.199|96.012 +637478.734|219642.261|96.351 +637473.863|219646.805|96.631 +637468.795|219651.496|94.702 +637444.721|219673.969|96.411 +637439.902|219678.465|96.427 +637391.991|219723.164|98.277 +637387.288|219727.562|98.993 +637377.991|219736.258|100.532 +637345.222|219766.875|104.166 +637325.745|219784.965|100.301 +637316.224|219793.832|99.688 +637311.557|219798.187|99.874 +637270.275|219836.769|104.803 +637251.773|219854.027|105.092 +637233.708|219870.907|107.031 +637179.856|219921.187|110.746 +637175.403|219925.344|111.155 +637166.609|219933.562|112.063 +637144.819|219953.925|114.514 +637140.424|219958.025|114.547 +637127.534|219970.068|115.967 +637123.209|219974.106|116.406 +637118.886|219978.142|116.626 +637106.118|219990.072|118.074 +637088.879|220006.144|118.043 +637075.952|220018.189|117.613 +637058.786|220034.182|116.754 +637059.459|220031.552|116.848 +637063.788|220027.516|117.171 +637076.778|220015.394|117.805 +637081.021|220011.432|117.805 +637085.404|220007.342|118.004 +637102.790|219991.108|118.290 +637111.294|219983.147|117.382 +637124.248|219971.031|116.461 +637137.181|219958.927|115.053 +637141.539|219954.849|114.587 +637150.281|219946.671|113.834 +637163.320|219934.464|112.148 +637181.072|219917.855|110.496 +637203.591|219896.806|109.372 +637272.143|219832.670|104.333 +637304.400|219802.458|100.435 +637313.819|219793.652|99.990 +637318.540|219789.239|99.901 +637352.644|219757.457|104.342 +637380.890|219730.982|99.929 +637423.821|219690.776|94.549 +637443.472|219672.433|95.595 +637448.489|219667.760|96.506 +637458.258|219658.638|96.527 +637463.140|219654.072|96.366 +637467.850|219649.640|94.622 +637472.995|219644.867|96.418 +637487.738|219631.087|96.091 +637492.718|219626.438|96.512 +637497.656|219621.827|96.549 +637502.591|219617.218|96.570 +637507.526|219612.607|96.616 +637512.500|219607.958|96.607 +637517.438|219603.350|96.716 +637522.424|219598.692|96.860 +637527.414|219594.035|97.097 +637532.403|219589.378|97.335 +637537.399|219584.714|97.670 +637542.370|219580.084|98.289 +637547.427|219575.369|98.856 +637552.417|219570.715|99.219 +637557.409|219566.057|99.673 +637562.411|219561.385|99.688 +637567.388|219556.740|100.011 +637572.402|219552.061|100.237 +637577.364|219547.428|100.444 +637582.366|219542.755|100.602 +637587.362|219538.089|100.685 +637592.364|219533.419|100.852 +637597.359|219528.756|100.980 +637602.352|219524.089|101.124 +637607.323|219519.444|100.953 +637612.380|219514.726|101.340 +637617.388|219510.053|101.767 +637622.420|219505.353|101.901 +637627.410|219500.693|102.114 +637632.442|219495.993|102.309 +637637.474|219491.296|102.514 +637642.503|219486.599|102.718 +637647.530|219481.905|102.888 +637652.565|219477.205|103.205 +637657.597|219472.511|103.535 +637662.675|219467.768|103.907 +637667.720|219463.068|104.510 +637672.795|219458.332|104.879 +637666.500|219460.090|104.428 +637661.456|219464.781|103.879 +637656.411|219469.469|103.416 +637651.419|219474.114|103.053 +637646.380|219478.802|102.739 +637641.348|219483.484|102.587 +637636.362|219488.126|102.407 +637631.320|219492.817|102.178 +637626.373|219497.419|101.938 +637621.335|219502.110|101.803 +637616.339|219506.761|101.599 +637606.327|219516.076|101.002 +637601.319|219520.737|100.743 +637596.335|219525.379|100.813 +637591.337|219530.033|100.721 +637586.384|219534.642|100.651 +637581.379|219539.305|100.502 +637576.426|219543.917|100.444 +637571.403|219548.589|100.167 +637566.434|219553.213|100.002 +637561.451|219557.849|99.661 +637556.489|219562.470|99.588 +637551.502|219567.106|99.298 +637546.449|219571.806|98.804 +637541.538|219576.372|98.307 +637536.469|219581.084|97.728 +637531.513|219585.690|97.375 +637526.566|219590.295|97.128 +637521.616|219594.901|96.860 +637516.627|219599.546|96.732 +637511.729|219604.106|96.576 +637506.779|219608.711|96.427 +637501.850|219613.305|96.488 +637496.967|219617.852|96.561 +637492.017|219622.461|96.454 +637487.156|219626.987|96.299 +637472.397|219640.721|95.735 +637467.444|219645.318|94.854 +637428.588|219681.513|95.150 +637423.775|219686.003|95.698 +637418.883|219690.553|95.198 +637385.639|219721.582|99.057 +637380.920|219725.986|99.658 +637314.553|219787.812|100.249 +637309.887|219792.155|100.115 +637296.140|219804.994|102.069 +637291.449|219809.364|102.160 +637277.724|219822.178|103.745 +637254.724|219843.621|104.998 +637240.993|219856.423|105.690 +637231.891|219864.914|106.446 +637218.428|219877.475|107.756 +637196.019|219898.375|109.356 +637173.732|219919.154|110.612 +637160.547|219931.458|112.042 +637138.845|219951.722|114.754 +637130.213|219959.774|115.669 +637112.879|219975.944|117.031 +637108.615|219979.925|117.555 +637082.755|220004.022|118.479 +637061.215|220024.069|117.635 +637039.699|220044.082|116.205 +637046.188|220036.087|116.784 +637050.453|220032.107|117.019 +637059.036|220024.097|117.546 +637071.984|220012.014|118.226 +637085.011|219999.859|118.967 +637089.269|219995.881|118.851 +637093.515|219991.907|118.458 +637110.660|219975.865|117.059 +637119.353|219967.742|116.894 +637149.662|219939.368|113.459 +637158.361|219931.218|112.033 +637167.170|219922.976|111.225 +637171.644|219918.788|110.673 +637189.509|219902.079|109.518 +637198.519|219893.651|108.927 +637225.747|219868.182|106.875 +637239.426|219855.383|105.565 +637248.646|219846.767|105.046 +637257.921|219838.101|104.943 +637276.560|219820.673|103.650 +637285.856|219811.980|102.946 +637295.058|219803.357|101.401 +637304.321|219794.682|99.941 +637309.079|219790.235|99.740 +637352.900|219749.410|105.086 +637381.116|219722.963|99.490 +637385.931|219718.458|98.920 +637414.750|219691.486|95.607 +637429.384|219677.816|95.336 +637434.334|219673.201|95.610 +637439.259|219668.605|95.713 +637468.654|219641.133|94.552 +637473.763|219636.390|96.070 +637488.646|219622.494|96.250 +637493.599|219617.874|96.427 +637498.580|219613.222|96.445 +637503.511|219608.617|96.466 +637508.489|219603.972|96.479 +637513.466|219599.323|96.509 +637518.459|219594.666|96.732 +637523.445|219590.012|96.951 +637528.432|219585.360|97.149 +637533.473|219580.660|97.472 +637538.432|219576.037|97.999 +637543.489|219571.324|98.539 +637548.533|219566.624|98.999 +637553.560|219561.936|99.271 +637558.570|219557.258|99.426 +637563.554|219552.613|99.819 +637568.611|219547.894|99.999 +637573.576|219543.261|100.249 +637578.620|219538.552|100.350 +637583.616|219533.889|100.423 +637588.612|219529.225|100.554 +637593.647|219524.525|100.569 +637598.637|219519.868|100.660 +637603.672|219515.168|100.724 +637608.686|219510.492|101.206 +637613.727|219505.789|101.425 +637618.766|219501.089|101.621 +637623.743|219496.441|101.691 +637628.787|219491.738|102.053 +637633.817|219487.044|102.224 +637638.849|219482.350|102.465 +637643.872|219477.662|102.578 +637648.898|219472.971|102.782 +637653.933|219468.277|103.148 +637658.978|219463.577|103.730 +637664.013|219458.883|104.214 +637659.115|219459.432|103.830 +637654.107|219464.092|103.163 +637649.160|219468.698|102.751 +637644.128|219473.389|102.520 +637639.145|219478.031|102.383 +637634.152|219482.685|102.078 +637629.165|219487.334|101.938 +637624.215|219491.942|101.681 +637619.220|219496.596|101.453 +637614.230|219501.251|101.316 +637609.228|219505.911|101.054 +637604.220|219510.575|100.743 +637599.261|219515.195|100.514 +637594.275|219519.847|100.538 +637589.325|219524.461|100.447 +637584.372|219529.079|100.340 +637579.416|219533.700|100.203 +637574.460|219538.318|100.124 +637569.452|219542.987|99.999 +637564.532|219547.571|99.831 +637559.552|219552.210|99.514 +637554.562|219556.855|99.152 +637549.655|219561.434|99.188 +637544.659|219566.088|98.774 +637539.679|219570.718|98.076 +637534.674|219575.378|97.640 +637529.727|219579.987|97.347 +637524.722|219584.650|96.991 +637519.818|219589.219|96.710 +637514.822|219593.874|96.509 +637509.882|219598.479|96.421 +637504.983|219603.042|96.280 +637500.061|219607.638|96.375 +637495.126|219612.241|96.396 +637490.179|219616.852|96.344 +637485.248|219621.446|95.960 +637475.473|219630.565|96.140 +637470.514|219635.189|96.037 +637450.772|219653.581|95.031 +637445.852|219658.159|94.555 +637440.988|219662.694|94.598 +637436.220|219667.157|95.464 +637431.207|219671.820|94.695 +637426.485|219676.237|95.573 +637421.660|219680.745|95.985 +637392.832|219707.668|98.256 +637388.096|219712.093|98.697 +637383.347|219716.534|99.438 +637331.686|219764.818|106.217 +637307.095|219787.632|100.380 +637302.282|219792.107|99.969 +637260.814|219830.826|104.580 +637247.055|219843.661|105.324 +637224.198|219864.978|106.750 +637219.666|219869.209|107.113 +637210.656|219877.618|107.942 +637192.602|219894.459|109.024 +637188.104|219898.650|109.149 +637179.197|219906.962|109.917 +637174.692|219911.162|110.042 +637161.455|219923.518|111.444 +637135.407|219947.848|114.937 +637122.437|219959.951|116.236 +637100.949|219980.004|118.019 +637096.691|219983.982|118.595 +637079.403|220000.090|118.650 +637040.656|220036.154|117.031 +637053.976|220021.164|117.723 +637105.722|219972.808|117.568 +637114.418|219964.673|116.940 +637136.019|219944.446|114.654 +637162.211|219919.910|111.158 +637166.646|219915.758|110.667 +637171.062|219911.619|110.097 +637175.598|219907.385|110.158 +637184.495|219899.055|109.155 +637193.605|219890.533|108.829 +637198.122|219886.311|108.607 +637225.454|219860.742|106.674 +637243.885|219843.511|105.836 +637262.301|219826.284|104.288 +637266.910|219821.968|103.654 +637271.488|219817.682|103.154 +637299.365|219791.585|99.856 +637304.202|219787.081|100.471 +637362.227|219732.951|104.117 +637376.248|219719.790|100.374 +637390.558|219706.394|98.441 +637424.348|219674.783|95.726 +637429.219|219670.229|95.339 +637443.932|219656.486|95.165 +637463.759|219637.987|96.262 +637473.629|219628.767|96.128 +637478.637|219624.101|96.762 +637488.491|219614.886|96.155 +637493.450|219610.260|96.415 +637498.415|219605.621|96.308 +637503.383|219600.978|96.238 +637508.376|219596.321|96.405 +637513.350|219591.676|96.457 +637518.346|219587.015|96.732 +637523.390|219582.309|97.036 +637528.331|219577.698|97.332 +637533.367|219573.001|97.609 +637538.426|219568.285|98.182 +637543.425|219563.625|98.676 +637548.451|219558.937|98.950 +637553.419|219554.298|99.158 +637558.488|219549.571|99.432 +637563.514|219544.883|99.789 +637568.522|219540.210|99.975 +637573.521|219535.544|100.066 +637578.511|219530.883|100.090 +637583.558|219526.174|100.249 +637588.545|219521.520|100.221 +637593.589|219516.814|100.340 +637598.624|219512.114|100.410 +637603.632|219507.447|100.737 +637608.677|219502.741|100.996 +637613.721|219498.038|101.249 +637618.753|219493.344|101.352 +637623.798|219488.644|101.660 +637628.827|219483.950|101.822 +637633.911|219479.211|102.084 +637638.946|219474.517|102.337 +637643.966|219469.829|102.447 +637649.044|219465.095|102.678 +637654.144|219460.350|103.340 +637651.468|219458.972|103.062 +637646.472|219463.623|102.623 +637641.525|219468.226|102.288 +637636.499|219472.910|102.212 +637631.555|219477.513|101.938 +637626.553|219482.167|101.587 +637621.567|219486.815|101.462 +637616.611|219491.427|101.145 +637611.621|219496.075|101.026 +637606.671|219500.687|100.843 +637601.663|219505.347|100.538 +637591.760|219514.574|100.237 +637586.810|219519.185|100.167 +637581.857|219523.800|100.081 +637576.901|219528.418|99.947 +637571.954|219533.029|99.984 +637567.041|219537.607|99.825 +637562.076|219542.231|99.706 +637557.098|219546.867|99.417 +637552.112|219551.506|99.069 +637547.208|219556.069|98.600 +637542.245|219560.693|98.609 +637537.295|219565.301|98.195 +637532.327|219569.922|97.652 +637527.380|219574.528|97.356 +637522.430|219579.139|97.067 +637517.477|219583.748|96.777 +637512.567|219588.320|96.460 +637507.632|219592.919|96.418 +637502.740|219597.476|96.335 +637497.799|219602.079|96.296 +637492.913|219606.636|96.311 +637487.951|219611.256|96.088 +637483.105|219615.770|96.079 +637468.285|219629.566|94.900 +637463.482|219634.049|95.387 +637448.818|219647.710|95.055 +637444.020|219652.194|95.646 +637434.245|219661.298|95.311 +637429.448|219665.779|95.939 +637419.813|219674.777|96.881 +637376.742|219714.977|100.170 +637372.023|219719.390|101.145 +637362.846|219727.992|103.922 +637295.735|219790.503|100.514 +637286.457|219799.169|101.328 +637281.860|219803.467|102.026 +637272.533|219812.172|102.636 +637267.983|219816.430|103.343 +637263.322|219820.779|103.696 +637222.028|219859.337|106.628 +637217.480|219863.582|106.918 +637212.954|219867.810|107.339 +637208.373|219872.083|107.461 +637194.879|219884.684|108.485 +637190.402|219888.869|108.957 +637181.368|219897.296|109.262 +637167.962|219909.812|110.207 +637128.768|219946.446|115.373 +637102.766|219970.729|117.534 +637094.240|219978.693|118.382 +637068.341|220002.846|118.570 +637059.709|220010.886|118.220 +637045.798|220021.530|117.860 +637071.676|219997.372|118.939 +637075.986|219993.348|119.049 +637080.201|219989.404|118.729 +637093.231|219977.227|118.473 +637097.489|219973.244|118.183 +637101.726|219969.275|117.549 +637106.076|219965.209|117.479 +637119.042|219953.072|116.196 +637145.157|219928.624|113.371 +637175.945|219899.790|109.399 +637184.943|219891.377|108.948 +637189.481|219887.134|108.835 +637194.044|219882.867|108.588 +637216.657|219861.711|106.741 +637225.850|219853.119|106.260 +637230.495|219848.784|106.628 +637285.811|219797.029|101.096 +637290.443|219792.689|100.371 +637357.954|219729.720|105.013 +637362.572|219725.386|103.736 +637367.214|219721.024|102.248 +637371.840|219716.681|101.023 +637390.985|219698.761|98.740 +637424.882|219667.068|96.622 +637444.377|219648.841|95.390 +637463.957|219630.535|94.330 +637483.913|219611.930|96.186 +637488.838|219607.330|96.107 +637493.785|219602.713|96.283 +637498.759|219598.068|96.268 +637503.688|219593.465|96.311 +637508.714|219588.771|96.351 +637513.695|219584.123|96.472 +637518.696|219579.456|96.850 +637523.689|219574.799|97.164 +637528.679|219570.148|97.433 +637533.729|219565.439|97.920 +637538.722|219560.781|98.323 +637543.733|219556.106|98.405 +637548.768|219551.409|98.819 +637553.809|219546.709|99.338 +637558.863|219541.990|99.466 +637563.822|219537.363|99.624 +637568.879|219532.645|99.834 +637573.917|219527.939|99.831 +637578.864|219523.321|99.911 +637583.902|219518.612|99.978 +637588.935|219513.912|99.987 +637593.985|219509.197|100.240 +637599.024|219504.494|100.353 +637604.028|219499.824|100.718 +637609.109|219495.078|100.840 +637614.142|219490.382|100.983 +637619.131|219485.721|101.224 +637624.212|219480.978|101.425 +637629.254|219476.275|101.770 +637634.335|219471.536|102.032 +637639.358|219466.845|102.197 +637644.390|219462.148|102.507 +637649.468|219457.411|102.828 +637644.722|219457.701|102.471 +637639.684|219462.392|102.166 +637634.649|219467.080|101.953 +637629.653|219471.731|101.663 +637624.606|219476.428|101.291 +637619.567|219481.122|101.124 +637614.568|219485.773|100.877 +637609.576|219490.424|100.718 +637604.580|219495.075|100.584 +637599.581|219499.733|100.380 +637594.570|219504.396|100.097 +637589.563|219509.060|99.831 +637584.564|219513.714|99.758 +637579.571|219518.368|99.761 +637574.615|219522.986|99.645 +637569.610|219527.646|99.569 +637564.663|219532.258|99.615 +637559.689|219536.888|99.362 +637554.715|219541.518|99.142 +637549.762|219546.136|99.170 +637544.769|219550.784|98.774 +637539.828|219555.380|98.463 +637534.766|219560.089|97.884 +637529.858|219564.655|97.497 +637524.866|219569.304|97.219 +637519.922|219573.906|96.997 +637514.978|219578.512|96.811 +637510.019|219583.126|96.491 +637505.075|219587.732|96.335 +637500.137|219592.331|96.277 +637495.224|219596.903|96.027 +637490.301|219601.494|96.171 +637485.391|219606.066|95.982 +637480.505|219610.619|96.058 +637470.910|219619.593|97.914 +637451.070|219638.033|94.936 +637446.261|219642.520|95.409 +637426.933|219660.546|96.216 +637407.810|219678.404|98.554 +637403.015|219682.878|98.850 +637398.160|219687.399|98.670 +637393.341|219691.891|98.822 +637388.608|219696.311|99.246 +637360.386|219722.688|103.836 +637346.542|219735.639|106.894 +637337.145|219744.408|107.777 +637298.429|219780.375|101.849 +637293.549|219784.907|100.987 +637288.804|219789.324|100.709 +637284.088|219793.716|100.657 +637261.079|219815.192|103.227 +637256.461|219819.505|103.858 +637242.718|219832.334|105.287 +637233.580|219840.860|106.058 +637219.797|219853.710|106.592 +637210.619|219862.263|107.012 +637201.558|219870.715|107.573 +637188.067|219883.300|108.671 +637183.516|219887.543|108.771 +637165.646|219904.215|110.307 +637161.196|219908.367|110.752 +637139.305|219928.807|113.721 +637134.916|219932.906|114.285 +637117.551|219949.119|116.361 +637113.184|219953.194|116.836 +637095.810|219969.397|118.138 +637056.878|220005.668|118.619 +637052.537|220009.713|118.470 +637041.193|220018.540|118.113 +637058.460|220002.395|118.796 +637071.520|219990.181|119.183 +637097.471|219965.889|118.153 +637119.109|219945.610|116.120 +637123.434|219941.550|115.498 +637140.905|219925.167|113.432 +637158.477|219908.690|111.014 +637176.332|219891.953|109.241 +637203.609|219866.408|107.479 +637212.835|219857.779|107.396 +637226.624|219844.871|106.403 +637231.269|219840.524|106.196 +637249.704|219823.260|104.336 +637258.909|219814.638|103.245 +637291.733|219783.917|101.069 +637296.704|219779.290|102.258 +637335.877|219742.772|108.037 +637373.505|219707.467|100.444 +637397.621|219684.896|98.899 +637412.205|219671.250|98.237 +637426.671|219657.696|96.305 +637446.197|219639.426|95.387 +637461.086|219625.524|96.226 +637475.896|219611.680|96.125 +637480.849|219607.053|96.293 +637485.784|219602.429|95.838 +637490.725|219597.815|95.924 +637495.708|219593.157|95.985 +637500.671|219588.524|96.354 +637505.651|219583.870|96.421 +637510.631|219579.219|96.524 +637515.624|219574.555|96.799 +637520.614|219569.895|97.052 +637525.591|219565.244|97.210 +637535.640|219555.868|98.121 +637540.627|219551.211|98.475 +637545.647|219546.523|98.701 +637550.615|219541.881|98.905 +637555.638|219537.193|99.194 +637560.643|219532.517|99.325 +637565.593|219527.890|99.399 +637570.641|219523.175|99.508 +637575.588|219518.554|99.566 +637580.623|219513.848|99.591 +637590.605|219504.527|99.746 +637595.610|219499.855|100.081 +637600.609|219495.191|100.340 +637605.644|219490.488|100.478 +637610.676|219485.788|100.593 +637615.715|219481.085|100.834 +637620.747|219476.388|101.002 +637625.742|219471.728|101.368 +637630.775|219467.031|101.605 +637635.804|219462.337|101.825 +637640.836|219457.637|102.160 +637634.039|219459.874|101.694 +637629.001|219464.568|101.428 +637623.956|219469.268|101.093 +637618.866|219474.011|100.855 +637613.825|219478.711|100.621 +637608.780|219483.414|100.392 +637603.742|219488.114|100.249 +637598.746|219492.771|100.090 +637593.699|219497.474|99.901 +637588.688|219502.144|99.594 +637583.634|219506.853|99.408 +637578.648|219511.507|99.456 +637573.643|219516.174|99.310 +637568.605|219520.874|99.371 +637563.645|219525.498|99.267 +637558.641|219530.167|99.173 +637553.636|219534.834|99.127 +637548.655|219539.473|98.838 +637538.670|219548.787|98.573 +637533.662|219553.448|98.060 +637528.648|219558.117|97.478 +637523.643|219562.778|97.073 +637518.672|219567.414|97.045 +637513.719|219572.028|96.738 +637508.739|219576.674|96.658 +637503.795|219581.282|96.500 +637498.805|219585.936|96.372 +637493.834|219590.566|95.991 +637488.893|219595.175|95.924 +637483.964|219599.774|96.006 +637479.069|219604.337|95.973 +637474.113|219608.958|95.838 +637444.666|219636.424|95.500 +637435.020|219645.434|96.177 +637430.170|219649.963|96.305 +637425.287|219654.514|96.180 +637401.440|219676.813|99.307 +637396.609|219681.321|99.292 +637368.034|219708.015|101.712 +637291.998|219778.964|102.026 +637277.752|219792.244|101.090 +637273.064|219796.618|101.230 +637263.895|219805.192|102.197 +637236.527|219830.789|105.620 +637231.961|219835.056|105.997 +637218.227|219847.885|106.747 +637186.388|219877.625|108.341 +637181.910|219881.809|108.823 +637164.043|219898.506|110.292 +637155.176|219906.797|111.057 +637146.364|219915.036|112.173 +637142.091|219919.038|113.038 +637137.772|219923.083|113.666 +637128.988|219931.297|114.748 +637107.408|219951.478|117.272 +637103.022|219955.571|117.427 +637068.494|219987.825|119.396 +637042.467|220012.097|118.449 +637037.288|220015.053|118.528 +637041.562|220011.060|118.577 +637054.491|219998.978|118.897 +637063.199|219990.846|119.439 +637076.224|219978.675|119.503 +637080.469|219974.694|118.863 +637089.117|219966.602|118.372 +637093.478|219962.524|118.333 +637106.457|219950.371|117.034 +637119.618|219938.057|116.257 +637123.910|219934.031|115.458 +637141.408|219917.633|113.047 +637150.174|219909.415|111.737 +637159.020|219901.128|110.621 +637163.488|219896.949|110.313 +637172.434|219888.567|109.265 +637181.471|219880.112|108.771 +637190.594|219871.577|108.241 +637213.503|219850.132|106.976 +637218.108|219845.825|106.781 +637245.741|219819.935|104.245 +637268.833|219798.282|101.057 +637332.082|219739.263|108.774 +637350.922|219721.594|105.882 +637355.674|219717.132|104.867 +637393.911|219681.284|99.673 +637398.788|219676.721|99.706 +637408.505|219667.626|99.121 +637413.354|219663.082|98.582 +637418.152|219658.577|97.615 +637422.953|219654.072|96.677 +637427.799|219649.530|96.125 +637432.761|219644.888|96.171 +637472.196|219608.004|95.823 +637482.120|219598.723|95.896 +637487.067|219594.099|96.061 +637492.057|219589.439|96.162 +637497.059|219584.766|96.442 +637502.027|219580.115|96.433 +637507.004|219575.464|96.482 +637511.988|219570.806|96.671 +637516.980|219566.143|96.963 +637521.927|219561.513|96.780 +637526.993|219556.785|97.408 +637532.001|219552.113|97.987 +637537.094|219547.358|98.466 +637542.050|219542.722|98.493 +637547.076|219538.028|98.810 +637552.093|219533.340|99.048 +637557.086|219528.671|99.024 +637562.094|219523.992|99.207 +637567.084|219519.325|99.210 +637572.116|219514.616|99.155 +637577.118|219509.941|99.313 +637587.146|219500.565|99.435 +637592.153|219495.886|99.780 +637597.189|219491.177|99.914 +637602.230|219486.468|100.084 +637607.211|219481.811|100.176 +637612.301|219477.053|100.441 +637617.287|219472.395|100.624 +637622.326|219467.686|100.916 +637627.373|219462.974|101.380 +637632.402|219458.274|101.608 +637628.367|219458.015|101.224 +637623.322|219462.712|100.865 +637618.324|219467.366|100.505 +637613.331|219472.017|100.273 +637608.293|219476.711|100.100 +637603.303|219481.359|99.941 +637598.310|219486.011|99.807 +637593.306|219490.671|99.530 +637588.261|219495.374|99.350 +637583.262|219500.028|99.216 +637578.309|219504.643|99.069 +637573.314|219509.300|99.018 +637568.315|219513.961|98.938 +637563.325|219518.612|98.987 +637558.321|219523.276|98.890 +637553.416|219527.848|98.874 +637548.405|219532.517|98.765 +637543.394|219537.187|98.649 +637538.423|219541.817|98.490 +637533.440|219546.459|98.188 +637528.444|219551.110|97.786 +637523.430|219555.773|97.244 +637518.437|219560.425|96.954 +637513.460|219565.064|96.844 +637508.519|219569.666|96.646 +637503.530|219574.314|96.475 +637498.592|219578.914|96.384 +637493.642|219583.526|96.155 +637488.664|219588.165|96.201 +637478.749|219597.403|95.735 +637473.872|219601.951|95.893 +637454.195|219620.297|95.899 +637444.273|219629.526|94.875 +637434.660|219638.512|96.241 +637424.873|219647.634|96.152 +637420.103|219652.093|96.997 +637381.783|219687.877|100.584 +637377.019|219692.327|101.142 +637372.243|219696.786|101.639 +637367.491|219701.221|101.941 +637353.491|219714.325|105.178 +637330.202|219736.097|108.954 +637286.752|219776.501|103.151 +637267.672|219794.249|101.115 +637249.411|219811.312|103.583 +637240.237|219819.880|104.620 +637235.741|219824.086|105.391 +637199.265|219858.120|107.665 +637181.203|219874.976|108.887 +637163.320|219891.667|110.219 +637150.147|219903.972|111.892 +637145.767|219908.062|112.438 +637111.026|219940.514|116.708 +637106.664|219944.580|116.961 +637102.363|219948.597|117.507 +637093.719|219956.665|118.193 +637059.237|219988.825|119.555 +637034.170|220009.993|118.802 +637042.769|220001.962|119.171 +637047.097|219997.923|119.515 +637060.039|219985.823|119.537 +637085.944|219961.588|118.421 +637107.719|219941.206|116.982 +637129.481|219920.812|114.038 +637169.425|219883.398|109.719 +637182.946|219870.736|108.549 +637187.521|219866.457|108.378 +637192.023|219862.238|107.820 +637196.614|219857.947|107.753 +637224.219|219832.118|106.159 +637238.012|219819.200|104.778 +637251.844|219806.240|102.837 +637265.681|219793.271|100.724 +637280.166|219779.762|102.541 +637299.956|219761.349|107.473 +637314.681|219747.627|109.975 +637319.384|219743.226|109.588 +637324.206|219738.721|109.692 +637352.492|219712.209|105.379 +637357.207|219707.787|104.452 +637366.583|219698.984|102.221 +637376.202|219689.983|101.453 +637390.702|219676.410|100.423 +637419.655|219649.286|96.725 +637424.477|219644.766|95.948 +637429.378|219640.185|95.899 +637434.358|219635.534|96.110 +637444.063|219626.438|94.790 +637449.074|219621.766|95.345 +637454.009|219617.160|95.686 +637468.926|219603.225|96.162 +637483.815|219589.308|96.088 +637488.805|219584.644|96.226 +637493.770|219580.002|96.140 +637498.720|219575.381|96.399 +637503.743|219570.687|96.454 +637508.723|219566.033|96.604 +637513.762|219561.330|96.866 +637518.724|219556.691|96.881 +637523.781|219551.973|97.402 +637528.828|219547.263|97.868 +637533.808|219542.615|98.146 +637538.883|219537.876|98.463 +637543.894|219533.194|98.582 +637548.847|219528.567|98.640 +637553.895|219523.849|98.691 +637558.894|219519.176|98.780 +637563.932|219514.467|98.789 +637568.964|219509.761|98.704 +637573.960|219505.091|98.810 +637578.998|219500.382|98.877 +637583.988|219495.716|98.972 +637589.032|219491.003|99.182 +637594.089|219486.282|99.575 +637599.121|219481.576|99.685 +637604.160|219476.870|99.889 +637609.189|219472.170|99.993 +637614.215|219467.470|100.060 +637619.311|219462.712|100.508 +637624.346|219458.009|100.813 +637617.269|219460.060|100.252 +637612.316|219464.681|99.840 +637607.339|219469.329|99.828 +637602.395|219473.941|99.673 +637597.405|219478.598|99.511 +637592.406|219483.264|99.267 +637587.493|219487.846|98.923 +637577.493|219497.179|98.579 +637572.558|219501.790|98.658 +637567.599|219506.414|98.472 +637562.658|219511.032|98.518 +637557.671|219515.689|98.603 +637552.764|219520.270|98.548 +637547.814|219524.894|98.521 +637542.849|219529.527|98.387 +637537.893|219534.157|98.368 +637532.918|219538.796|98.167 +637527.975|219543.408|97.768 +637522.988|219548.059|97.484 +637518.044|219552.674|97.149 +637513.049|219557.334|96.829 +637508.111|219561.940|96.631 +637503.173|219566.548|96.482 +637498.193|219571.196|96.408 +637493.227|219575.826|96.018 +637488.317|219580.417|96.192 +637478.408|219589.664|95.756 +637473.540|219594.212|95.951 +637468.602|219598.823|95.951 +637458.715|219608.044|95.006 +637443.965|219621.818|95.003 +637434.270|219630.888|96.030 +637429.390|219635.442|95.854 +637424.501|219640.011|96.046 +637419.697|219644.504|96.591 +637371.767|219689.358|102.023 +637362.288|219698.234|103.532 +637357.698|219702.547|105.040 +637352.909|219707.025|105.437 +637324.752|219733.393|109.707 +637320.034|219737.803|109.978 +637315.306|219742.214|109.887 +637305.677|219751.187|109.265 +637291.111|219764.745|107.040 +637261.893|219791.915|101.389 +637248.113|219804.805|103.334 +637234.348|219817.679|104.845 +637225.259|219826.180|106.156 +637220.653|219830.481|106.311 +637216.069|219834.767|106.610 +637211.531|219839.003|106.912 +637193.285|219856.048|108.012 +637179.682|219868.755|108.668 +637175.204|219872.940|109.149 +637170.675|219877.170|109.347 +637166.231|219881.325|109.756 +637157.279|219889.692|110.548 +637139.701|219906.133|112.932 +637122.130|219922.561|114.733 +637117.814|219926.597|115.428 +637113.522|219930.611|115.980 +637096.154|219946.848|117.842 +637091.848|219950.871|118.141 +637074.620|219966.971|119.451 +637061.688|219979.041|119.823 +637048.718|219991.141|119.683 +637040.096|219999.182|119.400 +637035.502|220000.968|119.314 +637048.429|219988.877|119.646 +637052.736|219984.844|119.717 +637061.398|219976.737|119.878 +637078.662|219960.558|118.918 +637117.673|219923.979|115.361 +637135.221|219907.519|113.511 +637152.823|219890.996|110.822 +637161.815|219882.565|110.018 +637179.856|219865.655|108.625 +637193.621|219852.759|108.146 +637207.373|219839.872|107.168 +637216.563|219831.255|106.433 +637253.310|219796.779|101.864 +637257.918|219792.454|101.258 +637340.172|219715.577|107.890 +637363.739|219693.434|102.937 +637373.361|219684.415|102.264 +637378.247|219679.839|102.352 +637383.051|219675.335|101.794 +637392.713|219666.279|101.176 +637421.553|219639.194|95.915 +637426.455|219634.607|95.875 +637441.228|219620.766|95.198 +637446.050|219616.240|94.516 +637466.042|219597.549|95.768 +637471.013|219592.904|96.122 +637475.951|219588.274|95.735 +637485.927|219578.938|95.988 +637490.911|219574.278|96.098 +637495.891|219569.617|96.186 +637500.881|219564.951|96.433 +637505.910|219560.248|96.594 +637510.936|219555.545|96.771 +637515.920|219550.884|97.009 +637520.964|219546.169|97.436 +637525.993|219541.466|97.728 +637531.026|219536.763|98.079 +637536.043|219532.072|98.283 +637540.993|219527.439|98.298 +637546.037|219522.718|98.326 +637551.033|219518.042|98.353 +637556.071|219513.324|98.350 +637561.113|219508.609|98.387 +637566.093|219503.948|98.277 +637571.089|219499.276|98.411 +637576.112|219494.576|98.268 +637581.171|219489.851|98.633 +637586.216|219485.136|98.832 +637591.266|219480.415|99.173 +637596.302|219475.708|99.301 +637601.383|219470.957|99.441 +637606.360|219466.299|99.502 +637611.453|219461.541|99.889 +637616.489|219456.838|100.127 +637611.395|219457.049|99.734 +637606.442|219461.666|99.383 +637601.407|219466.369|99.216 +637596.424|219471.024|99.152 +637591.480|219475.641|98.975 +637586.490|219480.302|98.877 +637576.523|219489.604|98.259 +637571.579|219494.222|98.195 +637566.578|219498.892|98.060 +637561.637|219503.509|98.070 +637556.696|219508.127|98.134 +637551.749|219512.748|98.124 +637546.790|219517.378|97.993 +637541.840|219522.002|98.021 +637536.890|219526.628|98.054 +637531.934|219531.258|98.012 +637527.008|219535.858|97.829 +637522.058|219540.475|97.369 +637517.087|219545.118|97.259 +637512.137|219549.735|96.881 +637507.151|219554.390|96.658 +637502.265|219558.953|96.494 +637497.324|219563.564|96.314 +637492.383|219568.179|96.116 +637487.464|219572.775|96.189 +637477.643|219581.950|96.091 +637472.760|219586.513|96.113 +637467.813|219591.124|95.555 +637453.006|219604.938|94.321 +637438.549|219618.468|95.668 +637428.814|219627.566|95.902 +637423.891|219632.166|95.765 +637419.106|219636.640|96.024 +637414.354|219641.102|97.393 +637385.840|219667.821|101.925 +637366.717|219685.713|103.446 +637362.011|219690.117|104.068 +637352.611|219698.932|105.757 +637315.087|219734.073|110.576 +637305.552|219742.979|110.164 +637271.601|219774.626|104.620 +637266.767|219779.131|103.751 +637256.958|219788.260|101.218 +637252.325|219792.600|101.697 +637234.077|219809.709|104.547 +637220.385|219822.538|106.235 +637192.977|219848.190|108.104 +637170.395|219869.331|109.725 +637152.479|219886.098|110.850 +637113.089|219923.009|115.727 +637108.721|219927.100|116.141 +637091.436|219943.288|117.860 +637056.966|219975.548|119.997 +637037.749|219990.959|119.595 +637046.356|219982.912|119.869 +637063.629|219966.754|119.957 +637098.011|219934.546|117.178 +637106.710|219926.390|116.126 +637119.783|219914.143|115.023 +637137.281|219897.732|112.703 +637141.731|219893.563|112.276 +637150.525|219885.312|110.917 +637164.030|219872.669|110.088 +637172.982|219864.277|109.152 +637186.595|219851.528|108.329 +637191.246|219847.178|108.344 +637195.839|219842.874|108.058 +637200.335|219838.659|107.509 +637204.895|219834.386|107.064 +637209.510|219830.057|106.659 +637255.458|219786.977|101.529 +637284.881|219759.551|107.710 +637304.327|219741.397|110.134 +637313.956|219732.393|110.551 +637318.744|219727.913|110.454 +637342.452|219705.684|107.802 +637347.118|219701.297|106.546 +637351.867|219696.841|105.885 +637356.588|219692.409|105.050 +637380.604|219669.894|102.565 +637409.456|219642.831|98.554 +637414.208|219638.362|97.201 +637418.950|219633.900|95.802 +637423.821|219629.337|95.485 +637428.777|219624.707|95.921 +637433.724|219620.077|95.884 +637438.555|219615.545|95.284 +637453.253|219601.774|94.016 +637473.318|219583.035|96.174 +637488.241|219569.072|96.143 +637493.163|219564.466|96.174 +637498.186|219559.766|96.244 +637503.170|219555.109|96.415 +637508.205|219550.403|96.655 +637513.237|219545.697|96.930 +637518.221|219541.039|97.189 +637523.253|219536.333|97.506 +637528.279|219531.636|97.768 +637533.290|219526.951|97.899 +637538.289|219522.273|97.914 +637543.221|219517.655|97.725 +637548.283|219512.922|97.960 +637553.273|219508.252|97.954 +637558.305|219503.540|97.884 +637563.335|219498.828|97.792 +637568.281|219494.198|97.935 +637573.311|219489.485|97.923 +637578.373|219484.755|98.326 +637583.418|219480.034|98.576 +637588.447|219475.324|98.637 +637593.488|219470.609|98.880 +637598.515|219465.903|98.911 +637603.544|219461.197|99.042 +637608.591|219456.475|99.469 +637601.605|219458.448|98.966 +637596.558|219463.157|98.652 +637591.577|219467.808|98.640 +637586.539|219472.514|98.496 +637581.546|219477.174|98.368 +637576.538|219481.844|98.088 +637571.537|219486.514|97.865 +637566.584|219491.137|97.704 +637561.582|219495.804|97.567 +637556.589|219500.467|97.588 +637551.655|219505.079|97.713 +637546.656|219509.749|97.682 +637541.755|219514.324|97.695 +637536.753|219518.993|97.695 +637531.846|219523.577|97.670 +637526.905|219528.195|97.832 +637521.915|219532.846|97.472 +637516.923|219537.507|97.088 +637511.988|219542.109|96.881 +637507.050|219546.718|96.625 +637502.057|219551.375|96.363 +637497.141|219555.969|96.387 +637492.191|219560.586|96.119 +637487.247|219565.201|95.918 +637482.340|219569.785|96.137 +637472.504|219578.969|95.915 +637467.578|219583.562|95.518 +637462.558|219588.238|94.741 +637433.407|219615.481|95.982 +637428.482|219620.080|95.787 +637418.780|219629.142|95.948 +637414.013|219633.601|96.341 +637409.364|219637.975|98.167 +637357.216|219686.795|105.208 +637324.584|219717.363|110.856 +637315.041|219726.273|110.606 +637310.313|219730.689|110.835 +637300.782|219739.580|110.475 +637296.000|219744.037|110.070 +637291.154|219748.551|109.237 +637247.802|219788.912|102.535 +637238.420|219797.672|102.553 +637197.549|219835.913|107.677 +637161.391|219869.715|110.402 +637156.859|219873.952|110.600 +637152.347|219878.170|110.929 +637134.681|219894.693|112.795 +637112.839|219915.127|115.477 +637108.517|219919.175|116.114 +637104.119|219923.281|116.147 +637099.772|219927.344|116.449 +637086.824|219939.453|117.891 +637082.536|219943.468|118.525 +637069.582|219955.574|119.342 +637056.768|219967.553|120.223 +637052.434|219971.598|120.253 +637048.127|219975.618|120.186 +637043.811|219979.647|120.101 +637035.179|219987.700|119.982 +637035.709|219985.161|120.037 +637044.378|219977.047|120.363 +637070.240|219952.795|119.211 +637083.280|219940.566|118.369 +637087.605|219936.506|117.930 +637096.249|219928.389|116.815 +637113.781|219911.936|115.202 +637122.626|219903.639|114.483 +637135.800|219891.264|112.508 +637162.671|219866.051|110.320 +637180.785|219849.059|108.863 +637212.771|219819.054|106.339 +637249.722|219784.380|102.468 +637269.178|219766.211|105.711 +637293.568|219743.439|109.957 +637298.420|219738.898|110.225 +637303.282|219734.356|110.890 +637308.037|219729.903|110.868 +637312.810|219725.425|110.661 +637317.629|219720.914|110.783 +637322.362|219716.480|110.667 +637336.548|219703.163|108.920 +637345.878|219694.388|106.759 +637360.212|219680.934|105.162 +637393.817|219649.399|101.694 +637412.812|219631.522|96.713 +637417.634|219626.996|95.966 +637422.541|219622.400|95.976 +637427.424|219617.822|95.814 +637432.383|219613.180|95.906 +637437.257|219608.611|95.686 +637471.925|219576.149|96.283 +637476.808|219571.568|95.829 +637486.763|219562.247|95.921 +637491.697|219557.627|96.073 +637496.687|219552.960|96.305 +637501.649|219548.309|96.302 +637506.675|219543.606|96.445 +637511.668|219538.936|96.802 +637516.648|219534.276|97.067 +637521.680|219529.567|97.384 +637526.701|219524.870|97.631 +637531.696|219520.191|97.576 +637536.680|219515.521|97.405 +637541.633|219510.882|97.475 +637546.674|219506.158|97.509 +637551.664|219501.485|97.481 +637556.635|219496.828|97.265 +637561.670|219492.113|97.244 +637566.672|219487.434|97.454 +637571.729|219482.704|97.780 +637576.724|219478.031|97.963 +637581.763|219473.316|98.137 +637586.801|219468.600|98.307 +637591.794|219463.928|98.548 +637596.817|219459.225|98.560 +637592.900|219458.198|98.134 +637587.880|219462.892|98.246 +637582.878|219467.558|97.954 +637577.840|219472.264|97.853 +637572.835|219476.937|97.606 +637567.785|219481.652|97.390 +637562.765|219486.337|96.981 +637557.778|219490.997|97.027 +637552.779|219495.667|96.972 +637547.799|219500.321|97.155 +637542.806|219504.988|97.207 +637537.804|219509.660|97.140 +637532.854|219514.284|97.192 +637527.868|219518.947|97.366 +637522.903|219523.586|97.256 +637517.928|219528.232|97.045 +637512.948|219532.880|96.811 +637507.955|219537.537|96.497 +637502.957|219542.204|96.101 +637498.031|219546.803|96.046 +637493.029|219551.479|96.216 +637488.101|219556.084|96.140 +637478.225|219565.308|95.902 +637463.372|219579.179|95.336 +637443.633|219597.601|94.220 +637424.236|219615.749|95.692 +637419.258|219620.391|95.061 +637414.552|219624.811|96.405 +637409.715|219629.340|97.052 +637381.393|219655.910|103.477 +637376.678|219660.323|103.952 +637367.192|219669.208|105.248 +637357.591|219678.187|105.680 +637343.436|219691.437|107.229 +637324.798|219708.911|110.752 +637315.358|219717.738|111.188 +637301.090|219731.070|110.883 +637252.956|219775.949|104.050 +637248.146|219780.433|103.407 +637243.300|219784.944|102.255 +637220.367|219806.423|104.754 +637202.140|219823.489|106.528 +637179.581|219844.615|108.881 +637170.535|219853.082|109.512 +637161.501|219861.540|110.262 +637157.035|219865.719|110.527 +637121.621|219898.884|114.273 +637117.259|219902.966|114.684 +637112.900|219907.050|115.114 +637095.441|219923.400|116.854 +637078.162|219939.578|118.692 +637065.217|219951.694|119.531 +637052.245|219963.825|120.146 +637043.671|219971.848|120.405 +637039.352|219975.880|120.302 +637035.039|219979.913|120.241 +637037.535|219975.761|120.372 +637046.198|219967.650|120.503 +637072.014|219943.452|119.275 +637093.600|219923.201|116.940 +637097.995|219919.081|116.647 +637115.461|219902.694|114.767 +637119.883|219898.546|114.437 +637124.205|219894.486|113.581 +637133.051|219886.186|112.700 +637150.842|219869.496|110.838 +637155.389|219865.228|110.469 +637159.913|219860.992|110.246 +637205.355|219818.359|106.159 +637214.566|219809.712|105.296 +637242.334|219783.652|102.642 +637247.177|219779.128|103.492 +637252.023|219774.605|104.379 +637256.967|219769.993|105.607 +637276.441|219751.800|108.674 +637286.076|219742.787|109.564 +637295.848|219733.655|110.832 +637310.256|219720.162|111.088 +637319.890|219711.139|111.335 +637357.811|219675.517|105.699 +637362.718|219670.918|105.555 +637372.313|219661.908|104.400 +637377.037|219657.470|103.647 +637381.914|219652.895|103.318 +637400.979|219634.961|98.926 +637415.357|219621.440|95.991 +637425.205|219612.213|95.918 +637444.868|219593.776|94.833 +637449.754|219589.189|94.333 +637464.713|219575.192|95.323 +637479.712|219561.153|96.052 +637484.632|219556.542|96.043 +637489.661|219551.832|96.162 +637494.617|219547.187|96.055 +637499.576|219542.542|96.006 +637504.596|219537.842|96.085 +637509.595|219533.163|96.524 +637514.637|219528.451|96.908 +637519.605|219523.797|97.082 +637524.668|219519.057|97.222 +637529.611|219514.424|97.146 +637534.598|219509.752|97.015 +637539.636|219505.030|96.945 +637544.583|219500.394|96.981 +637549.612|219495.682|96.820 +637554.602|219491.003|96.817 +637559.582|219486.334|96.722 +637564.642|219481.600|97.021 +637569.650|219476.912|97.350 +637574.701|219472.182|97.612 +637579.696|219467.506|97.792 +637584.735|219462.788|97.957 +637589.767|219458.073|98.076 +637584.186|219458.649|97.701 +637579.151|219463.349|97.609 +637574.204|219467.966|97.445 +637569.153|219472.676|97.241 +637564.139|219477.348|96.875 +637559.128|219482.024|96.567 +637554.175|219486.645|96.475 +637549.186|219491.305|96.497 +637544.196|219495.962|96.573 +637539.252|219500.577|96.646 +637534.263|219505.237|96.735 +637529.325|219509.849|96.911 +637524.384|219514.464|97.067 +637519.373|219519.139|96.960 +637514.445|219523.736|96.750 +637509.418|219528.427|96.552 +637504.426|219533.081|96.207 +637499.485|219537.690|95.927 +637494.517|219542.326|95.924 +637489.570|219546.949|96.143 +637484.577|219551.604|95.915 +637479.709|219556.151|96.000 +637474.723|219560.803|95.887 +637469.767|219565.423|95.622 +637435.379|219597.528|95.963 +637430.515|219602.076|96.253 +637420.670|219611.259|95.915 +637415.826|219615.776|95.598 +637401.491|219629.200|98.161 +637396.831|219633.574|99.447 +637392.098|219638.015|100.950 +637378.019|219651.207|104.007 +637373.218|219655.696|104.556 +637344.765|219682.302|107.424 +637340.080|219686.691|108.168 +637335.420|219691.056|109.113 +637330.766|219695.418|110.106 +637321.417|219704.166|111.472 +637297.618|219726.376|110.932 +637273.780|219748.612|109.039 +637249.792|219770.954|105.321 +637235.323|219784.420|102.565 +637230.730|219788.711|102.706 +637216.980|219801.574|104.013 +637198.973|219818.432|106.452 +637185.415|219831.121|107.963 +637180.944|219835.309|108.652 +637176.357|219839.592|108.732 +637158.489|219856.310|110.411 +637149.507|219864.707|110.947 +637145.054|219868.871|111.310 +637140.646|219872.992|111.648 +637136.239|219877.119|112.279 +637131.828|219881.243|112.633 +637118.637|219893.581|113.730 +637105.612|219905.770|115.282 +637096.983|219913.847|116.382 +637092.619|219917.928|116.833 +637088.294|219921.976|117.229 +637075.410|219934.034|118.717 +637058.265|219950.067|120.143 +637045.329|219962.155|120.692 +637044.826|219960.174|120.677 +637053.388|219952.151|120.424 +637057.707|219948.104|120.137 +637061.962|219944.114|119.802 +637066.266|219940.075|119.476 +637079.134|219928.002|118.119 +637083.466|219923.939|117.735 +637087.797|219919.873|117.107 +637096.487|219911.726|116.266 +637100.818|219907.657|115.678 +637105.195|219903.554|115.324 +637113.961|219895.324|114.224 +637118.313|219891.237|113.526 +637122.770|219887.064|113.368 +637127.211|219882.898|112.904 +637131.575|219878.801|112.301 +637140.539|219870.392|111.591 +637145.005|219866.207|111.298 +637149.470|219862.016|110.746 +637163.025|219849.309|109.774 +637194.754|219819.551|106.705 +637222.147|219793.850|103.001 +637231.465|219785.118|102.282 +637236.341|219780.570|103.288 +637265.593|219753.278|108.451 +637275.267|219744.244|109.524 +637280.141|219739.687|109.859 +637289.819|219730.647|110.804 +637304.257|219717.147|111.560 +637309.103|219712.615|111.883 +637313.870|219708.149|111.670 +637318.641|219703.684|111.481 +637332.777|219690.413|109.082 +637351.861|219672.512|106.887 +637409.325|219618.556|96.567 +637414.107|219614.064|95.470 +637424.010|219604.801|95.924 +637458.568|219572.446|95.226 +637468.535|219563.119|95.348 +637473.552|219558.431|95.762 +637483.547|219549.086|96.293 +637488.539|219544.410|96.055 +637493.447|219539.814|95.951 +637498.503|219535.084|95.902 +637503.490|219530.420|96.174 +637508.507|219525.726|96.311 +637513.542|219521.020|96.631 +637518.514|219516.372|96.823 +637523.570|219511.638|96.920 +637528.554|219506.972|96.771 +637533.531|219502.308|96.521 +637538.521|219497.639|96.457 +637543.504|219492.972|96.344 +637548.539|219488.257|96.256 +637553.581|219483.539|96.280 +637558.580|219478.860|96.442 +637563.636|219474.133|96.716 +637568.650|219469.445|97.097 +637573.695|219464.726|97.277 +637578.739|219460.008|97.484 +637575.213|219458.755|97.155 +637570.266|219463.379|96.972 +637565.264|219468.049|96.732 +637560.296|219472.685|96.344 +637555.294|219477.357|96.174 +637550.387|219481.945|95.997 +637545.394|219486.608|96.024 +637540.447|219491.232|96.015 +637535.515|219495.847|96.186 +637530.520|219500.516|96.216 +637525.649|219505.073|96.622 +637520.705|219509.697|96.725 +637515.731|219514.342|96.491 +637510.805|219518.944|96.287 +637505.834|219523.586|96.146 +637500.856|219528.238|95.970 +637495.919|219532.849|95.717 +637491.002|219537.443|95.747 +637486.052|219542.073|95.912 +637476.201|219551.278|95.869 +637471.324|219555.837|95.872 +637466.332|219560.492|95.217 +637441.774|219583.440|94.982 +637417.344|219606.285|95.552 +637407.712|219615.304|96.704 +637398.178|219624.244|98.295 +637393.408|219628.721|99.472 +637388.766|219633.083|100.913 +637360.368|219659.713|106.226 +637341.449|219677.435|108.475 +637336.691|219681.885|108.695 +637317.985|219699.417|111.639 +637298.938|219717.211|111.703 +637284.607|219730.577|110.761 +637274.999|219739.532|109.695 +637226.768|219784.441|101.837 +637222.199|219788.717|102.456 +637195.032|219814.150|106.369 +637176.978|219831.039|108.183 +637159.029|219847.824|109.972 +637145.688|219860.306|111.341 +637127.848|219876.981|112.453 +637110.221|219893.468|114.123 +637088.580|219913.719|116.940 +637062.803|219937.832|119.695 +637058.478|219941.870|119.698 +637054.238|219945.833|120.131 +637047.984|219948.707|120.689 +637056.466|219940.746|119.881 +637069.314|219928.685|118.622 +637086.504|219912.546|116.918 +637090.836|219908.480|116.306 +637099.495|219900.344|115.123 +637108.215|219892.157|114.285 +637125.854|219875.601|112.481 +637130.262|219871.462|112.130 +637161.677|219841.981|109.500 +637170.678|219833.526|108.387 +637175.220|219829.268|108.061 +637179.709|219825.050|107.479 +637198.061|219807.837|106.046 +637216.136|219790.851|102.913 +637225.487|219782.088|102.690 +637259.601|219750.248|109.341 +637269.083|219741.360|109.173 +637283.662|219727.736|110.926 +637288.481|219723.228|111.301 +637317.318|219696.223|111.523 +637331.479|219682.921|109.332 +637336.231|219678.459|108.732 +637369.740|219647.003|104.845 +637393.460|219624.689|99.203 +637398.233|219620.199|98.073 +637403.080|219615.645|97.143 +637407.847|219611.165|96.372 +637417.643|219601.981|95.866 +637427.518|219592.727|95.701 +637442.234|219578.920|94.244 +637462.177|219560.260|95.314 +637467.234|219555.530|95.646 +637477.195|219546.203|95.823 +637482.166|219541.545|95.872 +637487.122|219536.903|95.759 +637492.124|219532.215|95.631 +637497.104|219527.555|95.842 +637502.121|219522.855|95.963 +637507.141|219518.158|96.098 +637512.104|219513.510|96.183 +637517.182|219508.761|96.515 +637522.135|219504.122|96.539 +637527.103|219499.462|96.183 +637532.138|219494.746|96.070 +637537.067|219490.122|95.887 +637542.111|219485.401|95.906 +637547.098|219480.732|95.848 +637552.142|219476.010|95.933 +637557.190|219471.286|96.070 +637562.198|219466.604|96.351 +637567.266|219461.867|96.829 +637572.302|219457.155|96.899 +637565.806|219458.414|96.607 +637560.792|219463.093|96.238 +637555.818|219467.735|95.762 +637550.774|219472.447|95.707 +637545.869|219477.028|95.582 +637540.874|219481.698|95.573 +637535.930|219486.319|95.628 +637530.949|219490.976|95.845 +637526.009|219495.594|95.970 +637521.132|219500.156|96.302 +637516.133|219504.829|96.344 +637511.211|219509.425|96.168 +637506.233|219514.071|95.973 +637501.262|219518.716|95.848 +637496.342|219523.312|95.774 +637491.417|219527.912|95.698 +637486.446|219532.557|95.653 +637481.547|219537.138|95.884 +637476.671|219541.695|95.842 +637471.684|219546.352|95.726 +637466.774|219550.936|95.396 +637461.848|219555.539|95.430 +637451.863|219564.841|93.818 +637447.035|219569.361|94.412 +637442.137|219573.940|94.336 +637417.862|219596.647|95.842 +637413.031|219601.167|96.055 +637403.345|219610.229|96.735 +637393.859|219619.120|98.350 +637360.913|219650.033|105.888 +637356.195|219654.456|106.711 +637351.413|219658.930|107.055 +637346.728|219663.319|107.765 +637341.994|219667.748|108.143 +637290.075|219716.327|111.645 +637285.265|219720.817|111.322 +637280.492|219725.273|110.947 +637261.399|219743.095|109.359 +637256.702|219747.484|109.283 +637237.603|219765.299|106.936 +637232.739|219769.832|105.936 +637218.282|219783.298|103.108 +637177.423|219821.566|107.412 +637172.931|219825.769|107.723 +637159.507|219838.345|109.286 +637146.136|219850.869|110.707 +637137.245|219859.193|111.487 +637119.560|219875.750|112.923 +637106.457|219888.021|114.251 +637102.092|219892.109|114.651 +637097.736|219896.187|115.111 +637093.454|219900.198|115.699 +637089.110|219904.267|116.230 +637080.539|219912.299|117.421 +637076.266|219916.304|117.836 +637072.014|219920.288|118.375 +637067.762|219924.271|118.921 +637063.404|219928.343|118.979 +637054.848|219936.357|119.890 +637042.159|219948.238|121.061 +637033.643|219956.205|121.335 +637039.108|219948.463|121.335 +637043.332|219944.501|121.061 +637051.782|219936.567|119.835 +637060.340|219928.538|119.174 +637064.611|219924.536|118.936 +637073.203|219916.474|118.034 +637090.369|219900.357|115.775 +637099.099|219892.170|114.928 +637112.178|219879.892|113.438 +637116.576|219875.765|112.990 +637121.017|219871.599|112.520 +637125.412|219867.478|112.350 +637134.309|219859.132|111.539 +637138.796|219854.926|111.085 +637165.615|219829.762|108.427 +637192.776|219804.277|105.613 +637210.951|219787.212|103.044 +637254.181|219746.832|109.143 +637258.891|219742.424|109.320 +637263.600|219738.011|109.170 +637273.301|219728.949|110.499 +637282.894|219719.979|111.216 +637287.773|219715.416|111.694 +637306.903|219697.509|112.182 +637316.409|219688.596|111.618 +637321.161|219684.140|110.987 +637325.870|219679.718|110.438 +637340.071|219666.383|108.268 +637378.138|219630.632|102.428 +637387.590|219621.738|99.786 +637392.351|219617.261|98.533 +637397.127|219612.768|97.420 +637401.900|219608.284|96.704 +637406.786|219603.700|96.119 +637416.604|219594.498|95.817 +637421.505|219589.911|95.826 +637441.122|219571.516|94.455 +637451.043|219562.229|94.467 +637465.951|219548.278|95.189 +637471.050|219543.517|95.991 +637476.000|219538.881|95.765 +637480.953|219534.239|95.634 +637485.894|219529.606|95.372 +637490.880|219524.943|95.601 +637495.900|219520.243|95.723 +637500.866|219515.595|95.774 +637505.880|219510.904|95.866 +637510.900|219506.204|96.079 +637515.911|219501.513|96.189 +637520.906|219496.837|96.131 +637525.875|219492.177|95.796 +637530.861|219487.507|95.680 +637535.887|219482.798|95.473 +637540.825|219478.171|95.390 +637545.869|219473.447|95.488 +637550.914|219468.722|95.585 +637555.919|219464.038|95.802 +637560.972|219459.310|96.094 +637556.711|219458.271|95.796 +637551.752|219462.898|95.564 +637546.738|219467.573|95.305 +637541.785|219472.197|95.204 +637536.838|219476.815|95.241 +637531.900|219481.426|95.372 +637526.963|219486.038|95.570 +637522.025|219490.650|95.750 +637517.087|219495.264|95.948 +637512.134|219499.888|95.979 +637507.263|219504.436|95.860 +637502.292|219509.072|95.759 +637497.367|219513.668|95.625 +637492.429|219518.277|95.381 +637487.506|219522.870|95.342 +637482.614|219527.442|95.634 +637477.771|219531.978|96.469 +637472.876|219536.544|96.265 +637467.895|219541.183|95.717 +637462.955|219545.788|95.089 +637424.013|219582.145|95.476 +637414.366|219591.161|95.991 +637404.640|219600.238|95.902 +637399.821|219604.743|96.274 +637385.706|219617.974|99.463 +637367.000|219635.521|104.501 +637362.312|219639.917|105.552 +637357.664|219644.269|106.558 +637324.724|219675.088|110.569 +637319.997|219679.510|111.024 +637315.300|219683.906|111.706 +637310.637|219688.267|112.301 +637305.927|219692.669|112.572 +637291.782|219705.872|112.709 +637286.947|219710.377|112.197 +637282.150|219714.843|111.661 +637277.364|219719.299|111.213 +637272.573|219723.764|110.740 +637267.806|219728.208|110.478 +637263.011|219732.677|110.054 +637248.732|219745.984|108.975 +637244.038|219750.358|108.674 +637187.637|219802.936|105.491 +637147.242|219840.707|110.146 +637133.895|219853.186|111.557 +637125.019|219861.476|112.243 +637120.599|219865.606|112.560 +637116.149|219869.761|112.746 +637107.359|219877.981|113.718 +637103.009|219882.047|114.197 +637089.946|219894.261|115.629 +637085.611|219898.311|115.971 +637081.298|219902.344|116.437 +637077.010|219906.355|117.040 +637051.394|219930.303|119.966 +637047.103|219934.308|120.158 +637050.706|219928.581|119.890 +637072.206|219908.397|117.751 +637076.486|219904.371|116.867 +637085.197|219896.196|116.123 +637098.227|219883.955|114.541 +637102.641|219879.813|114.139 +637107.057|219875.671|113.755 +637120.316|219863.223|112.499 +637129.219|219854.868|111.706 +637133.678|219850.680|111.383 +637160.644|219825.370|108.920 +637174.055|219812.763|106.476 +637178.566|219808.526|106.016 +637187.732|219799.931|105.360 +637201.204|219787.257|102.300 +637205.816|219782.938|102.194 +637220.544|219769.213|106.238 +637249.247|219742.378|109.097 +637258.808|219733.439|110.027 +637263.621|219728.934|110.246 +637273.210|219719.963|110.880 +637278.017|219715.471|111.484 +637282.848|219710.957|111.929 +637287.685|219706.433|112.465 +637292.492|219701.938|112.822 +637306.753|219688.569|112.249 +637320.957|219675.240|110.685 +637330.409|219666.364|109.472 +637335.124|219661.939|108.972 +637339.879|219657.476|108.424 +637344.628|219653.017|107.826 +637373.118|219626.249|102.910 +637377.815|219621.827|101.547 +637382.521|219617.395|100.252 +637387.285|219612.911|99.039 +637391.951|219608.513|97.414 +637396.788|219603.972|96.799 +637401.568|219599.485|96.116 +637406.505|219594.855|95.997 +637411.410|219590.265|96.003 +637416.271|219585.705|95.671 +637421.191|219581.102|95.857 +637431.078|219571.839|95.887 +637440.893|219562.638|95.299 +637450.607|219553.515|93.805 +637460.662|219544.124|95.253 +637465.551|219539.537|94.887 +637470.639|219534.791|96.067 +637475.598|219530.146|95.976 +637480.517|219525.531|95.461 +637485.470|219520.889|95.336 +637490.374|219516.293|95.226 +637495.413|219511.580|95.525 +637500.381|219506.929|95.622 +637505.389|219502.238|95.680 +637510.406|219497.544|95.814 +637515.359|219492.902|95.842 +637520.342|219488.233|95.646 +637525.274|219483.609|95.436 +637530.255|219478.942|95.244 +637535.293|219474.224|95.162 +637540.234|219469.597|95.119 +637545.275|219464.876|95.180 +637550.280|219460.197|95.363 +637544.169|219460.709|95.043 +637539.158|219465.382|94.860 +637534.223|219469.990|95.076 +637529.224|219474.660|95.055 +637524.287|219479.268|95.256 +637519.349|219483.883|95.439 +637514.411|219488.495|95.683 +637509.452|219493.122|95.674 +637504.487|219497.755|95.613 +637499.573|219502.342|95.604 +637494.599|219506.981|95.482 +637489.625|219511.623|95.403 +637484.708|219516.213|95.427 +637479.801|219520.798|95.564 +637474.839|219525.431|95.665 +637470.014|219529.942|96.204 +637464.963|219534.632|94.945 +637450.061|219548.522|93.949 +637435.565|219562.083|95.656 +637416.034|219580.313|95.774 +637411.160|219584.867|96.034 +637396.697|219598.375|96.631 +637391.848|219602.911|97.180 +637382.454|219611.720|99.591 +637377.802|219616.084|100.968 +637373.121|219620.480|102.498 +637344.920|219646.894|107.994 +637340.187|219651.316|108.344 +637330.711|219660.180|109.390 +637326.038|219664.548|109.890 +637321.283|219668.995|110.505 +637293.114|219695.332|113.136 +637288.325|219699.798|112.935 +637283.552|219704.248|112.508 +637278.760|219708.713|111.987 +637273.966|219713.179|111.496 +637269.156|219717.659|110.914 +637264.377|219722.115|110.563 +637259.668|219726.507|110.377 +637250.173|219735.362|109.908 +637245.418|219739.794|109.506 +637240.654|219744.235|109.058 +637211.951|219770.960|105.074 +637207.266|219775.327|104.702 +637184.056|219796.993|104.766 +637148.254|219830.499|109.911 +637143.752|219834.709|110.246 +637134.821|219843.060|111.100 +637121.432|219855.575|112.109 +637095.018|219880.273|114.550 +637081.999|219892.453|116.263 +637073.444|219900.460|117.555 +637064.793|219908.544|118.205 +637060.429|219912.625|118.467 +637056.177|219916.602|119.046 +637035.578|219933.702|120.518 +637044.076|219925.734|119.738 +637052.729|219917.627|119.275 +637061.331|219909.568|118.619 +637074.187|219897.504|117.025 +637095.880|219877.158|114.474 +637122.383|219852.317|112.115 +637126.830|219848.147|111.712 +637131.298|219843.956|111.164 +637149.272|219827.113|109.917 +637162.613|219814.589|107.582 +637176.128|219801.903|105.757 +637180.694|219797.624|105.315 +637185.303|219793.301|105.156 +637189.795|219789.083|104.318 +637194.157|219784.965|102.428 +637213.430|219766.979|105.857 +637223.144|219757.920|107.924 +637227.981|219753.406|108.753 +637247.031|219735.588|109.832 +637256.544|219726.693|110.435 +637261.295|219722.246|110.597 +637266.111|219717.741|110.868 +637270.967|219713.206|111.435 +637275.764|219708.722|111.981 +637280.608|219704.199|112.508 +637285.475|219699.648|112.913 +637290.273|219695.159|113.218 +637295.061|219690.678|113.112 +637304.513|219681.815|112.471 +637323.466|219664.029|110.265 +637332.963|219655.117|109.012 +637352.038|219637.222|106.878 +637356.805|219632.745|106.061 +637361.557|219628.279|105.150 +637385.102|219606.117|98.384 +637404.518|219587.909|96.509 +637409.386|219583.346|96.210 +637448.669|219546.535|94.296 +637463.610|219532.557|94.839 +637468.666|219527.848|96.183 +637478.527|219518.603|95.363 +637483.492|219513.952|95.354 +637488.457|219509.307|95.345 +637493.480|219504.604|95.497 +637498.497|219499.910|95.601 +637503.459|219495.264|95.637 +637508.467|219490.577|95.665 +637513.417|219485.944|95.607 +637518.395|219481.277|95.345 +637523.430|219476.562|95.180 +637528.365|219471.938|95.003 +637533.357|219467.262|94.970 +637538.387|219462.550|94.772 +637543.388|219457.868|94.906 +637535.208|219460.255|94.784 +637530.160|219464.964|94.769 +637525.268|219469.530|94.897 +637520.278|219474.184|95.061 +637515.350|219478.790|95.345 +637510.403|219483.405|95.485 +637505.407|219488.068|95.601 +637500.488|219492.655|95.491 +637495.526|219497.285|95.500 +637490.557|219501.918|95.439 +637480.657|219511.151|95.290 +637475.744|219515.735|95.351 +637470.916|219520.255|96.366 +637465.865|219524.946|95.061 +637460.912|219529.561|94.808 +637441.247|219547.910|95.009 +637421.742|219566.112|95.686 +637412.028|219575.180|96.015 +637407.142|219579.740|96.189 +637397.483|219588.759|96.677 +637387.879|219597.735|97.704 +637383.152|219602.167|98.850 +637378.424|219606.596|100.023 +637364.440|219619.705|103.876 +637336.170|219646.159|108.792 +637317.351|219663.749|110.826 +637303.358|219676.831|112.529 +637289.197|219690.053|113.172 +637284.497|219694.442|113.200 +637279.751|219698.865|112.956 +637274.960|219703.327|112.429 +637270.119|219707.835|111.932 +637265.361|219712.264|111.359 +637260.619|219716.684|110.896 +637255.843|219721.134|110.582 +637251.109|219725.544|110.246 +637246.388|219729.946|110.024 +637227.520|219747.530|108.832 +637218.011|219756.381|107.607 +637176.049|219795.493|105.089 +637171.641|219799.626|106.141 +637131.706|219836.979|111.514 +637127.214|219841.173|111.670 +637118.368|219849.440|112.484 +637114.004|219853.518|112.810 +637105.125|219861.812|113.273 +637096.420|219869.953|114.419 +637083.411|219882.114|115.836 +637057.609|219906.239|118.808 +637040.516|219922.208|120.003 +637038.495|219921.479|119.912 +637047.142|219913.390|119.872 +637077.126|219885.287|116.358 +637094.515|219868.990|114.306 +637103.332|219860.726|113.471 +637116.646|219848.260|112.490 +637130.106|219835.657|111.633 +637152.393|219814.759|108.482 +637156.898|219810.532|107.646 +637161.360|219806.347|106.863 +637174.869|219793.682|104.970 +637184.120|219785.029|104.504 +637198.217|219771.862|105.092 +637241.304|219731.671|109.756 +637246.107|219727.190|110.167 +637250.926|219722.688|110.396 +637255.678|219718.247|110.542 +637260.518|219713.730|110.957 +637265.374|219709.204|111.487 +637270.214|219704.687|111.969 +637275.069|219700.161|112.554 +637279.891|219695.659|112.974 +637284.747|219691.129|113.294 +637289.489|219686.691|113.218 +637294.369|219682.135|113.416 +637303.800|219673.301|112.264 +637313.291|219664.410|111.243 +637318.043|219659.957|110.612 +637322.795|219655.507|109.978 +637327.577|219651.030|109.609 +637360.923|219619.779|104.729 +637384.599|219597.534|98.149 +637389.412|219593.020|97.317 +637394.271|219588.472|96.869 +637399.215|219583.849|96.762 +637404.070|219579.304|96.329 +637408.965|219574.720|95.808 +637428.722|219556.249|95.552 +637443.481|219542.438|94.519 +637453.460|219533.121|95.150 +637463.400|219523.827|95.009 +637468.407|219519.161|95.872 +637473.403|219514.488|95.613 +637478.332|219509.874|95.186 +637488.320|219500.541|95.247 +637493.300|219495.889|95.448 +637498.305|219491.214|95.381 +637503.271|219486.572|95.476 +637508.272|219481.896|95.418 +637513.268|219477.226|95.326 +637518.248|219472.566|95.055 +637523.232|219467.906|94.869 +637528.218|219463.242|94.695 +637533.214|219458.573|94.671 +637527.194|219459.240|94.638 +637522.260|219463.849|94.851 +637517.316|219468.463|94.964 +637512.381|219473.072|95.229 +637507.434|219477.687|95.348 +637502.527|219482.268|95.369 +637497.519|219486.940|95.396 +637492.602|219491.525|95.378 +637487.662|219496.130|95.116 +637482.739|219500.729|95.595 +637477.771|219505.356|95.055 +637472.912|219509.901|95.762 +637468.051|219514.455|96.924 +637462.976|219519.164|95.360 +637458.087|219523.724|95.262 +637453.122|219528.351|94.915 +637438.272|219542.185|94.046 +637404.229|219573.985|96.308 +637389.711|219587.543|97.274 +637370.844|219605.224|101.849 +637366.162|219609.616|103.361 +637356.759|219618.422|105.281 +637347.292|219627.283|107.089 +637328.416|219644.937|109.698 +637318.964|219653.770|110.585 +637314.251|219658.174|111.149 +637309.506|219662.609|111.490 +637304.845|219666.968|112.087 +637300.188|219671.320|112.740 +637290.767|219680.117|113.288 +637276.523|219693.394|113.154 +637271.741|219697.844|112.700 +637266.931|219702.319|112.093 +637262.134|219706.784|111.594 +637257.336|219711.249|111.118 +637252.587|219715.666|110.691 +637247.863|219720.067|110.429 +637243.141|219724.465|110.204 +637238.356|219728.922|109.920 +637228.977|219737.654|109.387 +637224.174|219742.122|108.759 +637214.795|219750.861|108.363 +637210.019|219755.302|107.677 +637205.264|219759.722|106.839 +637195.849|219768.485|106.141 +637186.473|219777.211|105.178 +637181.755|219781.600|104.708 +637177.259|219785.800|105.257 +637172.672|219790.077|105.287 +637154.704|219806.865|107.467 +637141.524|219819.194|109.932 +637132.694|219827.451|111.289 +637119.389|219839.872|112.432 +637101.708|219856.377|113.736 +637092.933|219864.570|114.556 +637079.869|219876.771|115.724 +637062.724|219892.788|117.900 +637041.385|219912.716|120.162 +637033.384|219917.069|120.098 +637071.990|219880.889|116.647 +637111.410|219843.947|112.999 +637115.872|219839.765|112.666 +637129.259|219827.226|111.706 +637138.101|219818.929|110.432 +637178.545|219781.003|105.065 +637221.205|219741.165|108.817 +637230.745|219732.250|109.390 +637235.500|219727.812|109.774 +637240.307|219723.322|110.207 +637245.089|219718.854|110.502 +637249.868|219714.392|110.801 +637254.700|219709.878|111.158 +637259.503|219705.394|111.667 +637264.353|219700.868|112.197 +637269.199|219696.344|112.734 +637274.042|219691.824|113.258 +637278.882|219687.301|113.489 +637283.649|219682.845|113.557 +637316.885|219651.703|110.533 +637326.541|219642.663|110.097 +637331.284|219638.216|109.451 +637383.603|219589.076|97.945 +637393.317|219579.975|97.067 +637398.206|219575.390|96.497 +637403.080|219570.828|96.216 +637422.791|219552.381|95.512 +637442.490|219533.931|94.049 +637452.512|219524.577|95.137 +637457.599|219519.828|95.781 +637462.567|219515.183|95.710 +637477.475|219501.229|95.189 +637487.454|219491.896|95.192 +637492.459|219487.215|95.134 +637497.482|219482.521|95.290 +637502.493|219477.836|95.360 +637507.483|219473.166|95.201 +637512.485|219468.488|95.168 +637517.456|219463.830|94.833 +637522.491|219459.118|94.686 +637518.541|219457.786|94.589 +637513.664|219462.343|94.945 +637508.711|219466.964|94.976 +637503.758|219471.584|95.040 +637498.857|219476.156|95.183 +637493.886|219480.789|95.086 +637484.059|219489.955|95.147 +637464.469|219508.246|96.183 +637459.440|219512.915|95.137 +637454.569|219517.460|95.232 +637415.482|219553.929|96.034 +637400.864|219567.569|96.402 +637362.846|219603.149|103.474 +637329.903|219633.979|109.615 +637320.436|219642.821|110.356 +637310.923|219651.706|111.207 +637301.520|219660.494|112.154 +637296.850|219664.859|112.718 +637287.523|219673.576|113.590 +637282.784|219677.995|113.703 +637278.026|219682.433|113.697 +637273.289|219686.853|113.514 +637268.519|219691.294|113.148 +637263.716|219695.765|112.563 +637258.924|219700.228|112.106 +637254.120|219704.699|111.594 +637249.381|219709.113|111.200 +637244.644|219713.526|110.853 +637239.914|219717.933|110.563 +637230.386|219726.806|109.655 +637164.863|219787.852|105.394 +637142.554|219808.718|108.543 +637125.123|219825.037|111.965 +637098.648|219849.772|114.337 +637068.216|219878.204|116.885 +637063.900|219882.239|117.342 +637059.591|219886.269|117.848 +637033.372|219907.626|119.936 +637037.706|219903.572|119.726 +637041.940|219899.607|119.290 +637046.216|219895.605|118.808 +637059.103|219883.547|117.769 +637063.352|219879.566|117.223 +637067.674|219875.521|116.784 +637076.449|219867.316|116.364 +637080.677|219863.348|115.510 +637093.817|219851.058|114.514 +637102.616|219842.826|113.877 +637115.899|219830.396|112.804 +637124.790|219822.075|111.987 +637133.502|219813.906|110.246 +637137.848|219809.825|109.064 +637173.872|219776.105|105.501 +637187.973|219762.953|106.668 +637192.734|219758.515|107.162 +637211.598|219740.912|108.683 +637225.829|219727.635|109.750 +637230.617|219723.167|110.018 +637235.375|219718.732|110.429 +637240.112|219714.309|110.749 +637244.897|219709.847|111.078 +637249.689|219705.376|111.481 +637254.422|219700.959|111.853 +637259.262|219696.445|112.295 +637264.063|219691.971|112.843 +637268.897|219687.463|113.310 +637273.704|219682.979|113.608 +637278.480|219678.517|113.749 +637283.229|219674.082|113.691 +637287.978|219669.644|113.669 +637302.136|219656.388|112.039 +637311.569|219647.552|110.984 +637325.849|219634.189|109.704 +637335.383|219625.259|108.396 +637354.302|219607.516|104.705 +637359.063|219603.051|103.861 +637382.804|219580.764|97.811 +637402.275|219562.549|96.436 +637416.942|219548.827|95.250 +637436.723|219530.341|94.970 +637441.582|219525.787|94.217 +637446.651|219521.069|95.064 +637451.610|219516.433|94.863 +637456.532|219511.830|94.820 +637461.626|219507.088|95.528 +637466.515|219502.513|95.162 +637481.456|219488.550|95.046 +637486.482|219483.859|95.186 +637491.450|219479.217|95.262 +637496.443|219474.550|95.080 +637501.436|219469.884|94.909 +637506.434|219465.214|94.830 +637511.488|219460.493|94.845 +637509.872|219456.698|94.650 +637504.865|219461.361|94.659 +637499.951|219465.936|94.671 +637495.001|219470.548|94.839 +637490.057|219475.157|95.076 +637485.144|219479.732|95.156 +637480.185|219484.353|95.256 +637465.439|219498.087|95.567 +637460.422|219502.741|94.641 +637455.533|219507.292|94.595 +637450.638|219511.858|94.994 +637435.870|219525.598|94.491 +637431.063|219530.088|95.329 +637411.568|219548.242|95.357 +637373.127|219584.099|98.929 +637354.442|219601.591|104.306 +637349.749|219605.977|105.363 +637330.979|219623.515|108.856 +637326.288|219627.895|109.564 +637312.151|219641.081|110.905 +637307.430|219645.485|111.423 +637302.739|219649.862|111.810 +637298.100|219654.194|112.596 +637293.418|219658.561|113.078 +637288.770|219662.896|113.474 +637284.052|219667.291|113.733 +637279.364|219671.659|113.874 +637274.606|219676.087|113.886 +637269.872|219680.492|113.761 +637265.154|219684.881|113.407 +637260.329|219689.364|113.054 +637255.583|219693.772|112.581 +637250.850|219698.176|112.206 +637246.043|219702.639|111.728 +637241.304|219707.046|111.377 +637236.564|219711.453|111.054 +637231.821|219715.861|110.731 +637227.103|219720.244|110.289 +637222.321|219724.688|109.768 +637217.608|219729.068|109.411 +637194.059|219750.962|107.756 +637184.751|219759.621|107.461 +637165.951|219777.086|105.470 +637161.296|219781.411|105.168 +637147.702|219794.079|105.869 +637143.197|219798.279|106.177 +637130.295|219810.355|109.993 +637104.006|219834.895|113.825 +637086.422|219851.287|115.260 +637082.030|219855.380|115.544 +637077.662|219859.449|115.708 +637069.030|219867.502|116.851 +637056.052|219879.600|117.888 +637051.760|219883.602|118.263 +637047.472|219887.598|118.668 +637036.737|219895.135|119.576 +637045.350|219887.073|118.918 +637049.627|219883.068|118.470 +637053.946|219879.024|117.988 +637071.258|219862.814|116.348 +637080.043|219854.594|115.748 +637084.392|219850.519|115.257 +637088.851|219846.352|115.068 +637102.101|219833.950|113.953 +637141.469|219797.014|105.952 +637146.008|219792.771|105.824 +637150.628|219788.455|105.897 +637155.167|219784.206|105.519 +637164.454|219775.532|105.741 +637187.945|219753.616|107.253 +637202.182|219740.342|108.594 +637216.398|219727.077|109.433 +637221.181|219722.621|109.920 +637225.954|219718.171|110.399 +637230.770|219713.681|110.856 +637235.515|219709.253|111.210 +637240.313|219704.781|111.600 +637245.101|219700.316|111.950 +637249.881|219695.857|112.289 +637254.666|219691.394|112.673 +637259.531|219686.862|113.285 +637264.285|219682.424|113.547 +637269.138|219677.898|113.803 +637273.871|219673.478|113.959 +637278.626|219669.037|113.938 +637283.406|219664.572|113.761 +637288.127|219660.155|113.544 +637302.334|219646.857|111.886 +637307.012|219642.477|111.426 +637321.305|219629.099|109.807 +637326.081|219624.631|109.402 +637335.554|219615.758|107.973 +637345.055|219606.849|106.028 +637373.294|219580.325|98.027 +637378.290|219575.674|98.710 +637388.074|219566.530|98.396 +637392.878|219562.025|97.481 +637412.217|219543.917|95.019 +637427.089|219530.033|95.345 +637431.929|219525.495|94.388 +637436.812|219520.926|93.808 +637446.855|219511.565|95.058 +637456.764|219502.314|95.025 +637461.726|219497.675|94.881 +637486.647|219474.407|95.140 +637491.588|219469.786|94.875 +637496.547|219465.144|94.305 +637501.576|219460.450|94.528 +637497.287|219458.972|94.394 +637492.350|219463.574|94.708 +637487.409|219468.177|95.028 +637472.608|219481.966|95.683 +637462.659|219491.217|95.177 +637452.759|219500.428|94.759 +637447.800|219505.049|94.997 +637442.917|219509.593|95.046 +637432.901|219518.890|93.726 +637428.027|219523.440|94.412 +637398.953|219550.546|96.604 +637394.134|219555.036|96.972 +637389.354|219559.504|98.140 +637384.618|219563.927|98.795 +637379.762|219568.456|99.283 +637360.670|219586.263|101.282 +637356.000|219590.630|102.541 +637346.630|219599.393|104.806 +637294.985|219647.604|112.529 +637280.952|219660.692|113.755 +637276.231|219665.093|114.011 +637271.525|219669.473|114.038 +637266.794|219673.875|113.928 +637262.060|219678.282|113.800 +637257.293|219682.714|113.489 +637252.490|219687.176|112.965 +637247.790|219691.544|112.496 +637243.041|219695.963|112.365 +637238.292|219700.377|111.956 +637233.589|219704.748|111.545 +637228.840|219709.164|111.176 +637224.079|219713.590|110.771 +637219.343|219717.988|110.222 +637209.848|219726.806|109.100 +637200.469|219735.527|108.479 +637195.745|219739.922|108.131 +637191.042|219744.290|107.659 +637181.837|219752.867|107.945 +637172.544|219761.511|107.525 +637167.886|219765.839|107.122 +637153.868|219778.866|105.845 +637144.776|219787.337|106.250 +637135.574|219795.898|105.827 +637127.128|219803.823|109.323 +637105.332|219824.193|113.483 +637083.408|219844.636|115.391 +637074.730|219852.732|116.248 +637052.992|219872.995|117.775 +637035.941|219888.899|119.653 +637035.548|219886.958|119.528 +637052.699|219870.928|117.912 +637057.052|219866.859|117.613 +637087.696|219838.229|115.230 +637092.140|219834.075|114.724 +637140.457|219788.848|106.372 +637158.858|219771.682|106.250 +637173.019|219758.496|107.887 +637191.633|219741.120|107.887 +637205.913|219727.815|109.277 +637210.659|219723.389|109.500 +637215.432|219718.942|109.935 +637220.239|219714.468|110.600 +637225.015|219710.018|111.097 +637229.806|219705.549|111.408 +637234.570|219701.112|111.883 +637239.405|219696.607|112.191 +637244.175|219692.160|112.447 +637248.960|219687.697|112.822 +637253.749|219683.238|113.240 +637258.534|219678.779|113.669 +637263.389|219674.252|113.925 +637268.126|219669.833|114.096 +637272.884|219665.392|114.069 +637277.621|219660.969|113.922 +637282.330|219656.565|113.617 +637296.539|219643.279|112.270 +637301.221|219638.896|111.456 +637310.694|219630.035|110.667 +637320.210|219621.132|109.503 +637324.977|219616.673|109.009 +637367.637|219576.695|100.173 +637372.502|219572.147|99.740 +637396.727|219549.485|96.930 +637401.549|219544.971|96.177 +637406.387|219540.445|95.573 +637425.976|219522.145|94.634 +637435.931|219512.858|94.887 +637440.878|219508.243|94.991 +637445.794|219503.649|94.808 +637450.763|219499.010|94.674 +637460.620|219489.812|94.631 +637465.664|219485.108|94.854 +637470.660|219480.451|95.122 +637480.563|219471.200|94.717 +637485.580|219466.531|95.290 +637490.530|219461.898|94.555 +637495.483|219457.271|94.439 +637489.295|219457.673|94.467 +637479.420|219466.857|94.604 +637474.549|219471.392|95.201 +637454.786|219489.754|94.592 +637444.987|219498.864|94.823 +637440.055|219503.451|94.869 +637415.646|219526.141|95.009 +637410.663|219530.768|94.702 +637405.823|219535.269|94.854 +637396.337|219544.124|96.920 +637391.515|219548.620|97.698 +637362.788|219575.378|100.834 +637357.960|219579.865|100.788 +637339.224|219597.357|104.998 +637334.582|219601.698|106.491 +637283.171|219649.609|113.566 +637278.443|219654.011|113.752 +637273.774|219658.354|114.023 +637269.037|219662.761|114.175 +637264.325|219667.141|114.200 +637259.631|219671.503|114.020 +637254.876|219675.920|113.782 +637250.115|219680.342|113.526 +637245.376|219684.741|113.121 +637240.639|219689.139|112.755 +637235.918|219693.522|112.514 +637231.184|219697.917|112.221 +637226.417|219702.343|111.728 +637221.708|219706.711|111.335 +637216.929|219711.146|110.819 +637212.165|219715.565|110.124 +637207.471|219719.918|109.594 +637179.438|219745.954|108.305 +637174.823|219750.248|108.405 +637156.264|219767.479|107.290 +637128.860|219792.951|106.988 +637120.313|219800.943|109.673 +637098.632|219821.176|113.968 +637094.246|219825.263|114.477 +637085.480|219833.425|115.321 +637081.125|219837.485|115.763 +637072.410|219845.596|116.434 +637042.232|219873.702|119.378 +637051.986|219861.885|117.635 +637065.053|219849.696|116.809 +637069.436|219845.608|116.711 +637078.171|219837.452|115.873 +637082.618|219833.304|115.623 +637113.257|219804.677|111.399 +637126.226|219792.524|107.622 +637144.572|219775.428|107.570 +637177.195|219745.052|108.509 +637181.825|219740.729|108.213 +637191.246|219731.960|108.640 +637195.971|219727.565|108.969 +637200.741|219723.124|109.314 +637205.483|219718.708|109.506 +637210.275|219714.255|110.009 +637215.088|219709.783|110.685 +637219.870|219705.336|111.213 +637224.646|219700.895|111.709 +637229.465|219696.415|112.209 +637234.250|219691.961|112.517 +637239.021|219687.520|112.737 +637243.855|219683.022|113.096 +637248.646|219678.565|113.526 +637253.462|219674.085|113.797 +637258.214|219669.659|114.011 +637262.996|219665.206|114.130 +637267.809|219660.722|114.130 +637272.552|219656.300|114.002 +637277.313|219651.859|113.688 +637305.772|219625.286|110.585 +637315.291|219616.392|109.414 +637320.067|219611.933|108.969 +637348.435|219585.379|102.215 +637362.940|219571.839|100.913 +637367.851|219567.264|100.862 +637377.595|219558.172|100.154 +637392.043|219544.666|97.670 +637396.886|219540.134|96.674 +637401.705|219535.632|95.875 +637411.471|219526.506|94.604 +637416.427|219521.892|94.668 +637421.374|219517.283|94.659 +637426.290|219512.696|94.394 +637436.260|219503.415|94.781 +637456.161|219484.877|94.976 +637466.073|219475.635|94.534 +637476.091|219466.305|94.817 +637481.102|219461.636|94.717 +637485.976|219457.085|94.214 +637480.636|219456.957|94.318 +637475.732|219461.520|94.528 +637465.939|219470.633|95.180 +637460.952|219475.266|95.064 +637446.133|219489.028|94.308 +637436.382|219498.108|95.080 +637431.481|219502.662|94.991 +637421.596|219511.833|94.077 +637411.870|219520.886|94.790 +637406.993|219525.421|95.058 +637402.186|219529.902|95.500 +637387.882|219543.249|98.411 +637383.182|219547.638|99.399 +637378.388|219552.104|100.011 +637373.602|219556.563|100.697 +637354.308|219574.503|101.008 +637335.423|219592.121|104.470 +637330.747|219596.489|105.711 +637326.157|219600.783|107.223 +637321.484|219605.145|108.073 +637288.679|219635.717|112.514 +637279.346|219644.400|113.416 +637274.691|219648.732|113.791 +637270.013|219653.078|114.026 +637265.316|219657.440|114.148 +637260.613|219661.811|114.227 +637255.928|219666.160|114.139 +637251.182|219670.561|113.995 +637246.473|219674.932|113.761 +637241.742|219679.318|113.438 +637237.000|219683.713|113.060 +637232.281|219688.093|112.849 +637227.533|219692.498|112.465 +637222.827|219696.860|112.087 +637218.093|219701.246|111.542 +637213.308|219705.677|111.021 +637208.605|219710.036|110.411 +637203.853|219714.437|109.847 +637199.134|219718.814|109.500 +637189.798|219727.471|108.914 +637175.805|219740.452|108.265 +637134.593|219778.711|107.848 +637125.534|219787.126|107.979 +637121.066|219791.278|108.274 +637095.155|219815.433|113.694 +637073.404|219835.672|116.099 +637047.423|219859.836|118.461 +637047.722|219856.331|118.446 +637051.931|219852.396|117.684 +637065.013|219840.189|116.733 +637086.812|219819.844|114.773 +637104.058|219803.713|111.405 +637117.085|219791.525|108.725 +637135.291|219774.562|108.671 +637139.896|219770.274|108.640 +637144.420|219766.055|108.469 +637158.251|219753.174|108.680 +637162.936|219748.822|109.219 +637172.129|219740.248|108.771 +637176.716|219735.965|108.216 +637186.119|219727.218|108.826 +637190.829|219722.838|109.055 +637195.586|219718.409|109.305 +637200.311|219714.017|109.689 +637205.054|219709.609|110.198 +637209.915|219705.092|110.859 +637214.655|219700.688|111.414 +637219.474|219696.207|111.880 +637224.250|219691.769|112.398 +637229.005|219687.347|112.828 +637233.815|219682.872|112.977 +637238.551|219678.465|113.343 +637243.334|219674.021|113.681 +637248.149|219669.540|113.959 +637252.889|219665.127|114.087 +637257.671|219660.674|114.184 +637262.432|219656.239|114.157 +637267.175|219651.819|114.032 +637271.893|219647.421|113.742 +637276.660|219642.977|113.474 +637295.552|219625.338|111.283 +637305.043|219616.478|110.237 +637309.798|219612.037|109.618 +637319.320|219603.139|108.119 +637338.059|219585.580|102.370 +637342.790|219581.151|101.185 +637347.734|219576.558|101.721 +637352.617|219572.004|101.404 +637357.582|219567.395|102.175 +637362.504|219562.811|102.230 +637372.148|219553.807|101.093 +637376.979|219549.296|100.401 +637391.424|219535.788|97.518 +637405.978|219522.191|95.162 +637410.895|219517.615|95.305 +637415.857|219512.986|94.985 +637420.746|219508.423|94.452 +637425.732|219503.787|94.857 +637430.722|219499.138|94.872 +637435.711|219494.502|95.375 +637440.707|219489.854|95.488 +637445.666|219485.240|95.765 +637465.576|219466.689|95.278 +637470.535|219462.066|95.156 +637475.546|219457.390|94.510 +637467.581|219459.792|94.726 +637438.104|219487.184|95.473 +637428.244|219496.340|95.186 +637418.368|219505.500|94.391 +637413.519|219510.014|94.875 +637403.799|219519.057|95.689 +637394.164|219528.027|96.884 +637389.437|219532.444|98.073 +637384.685|219536.876|99.042 +637341.540|219577.012|102.383 +637327.370|219590.219|104.601 +637304.117|219611.915|109.923 +637294.735|219620.650|111.118 +637280.720|219633.699|112.849 +637271.421|219642.352|113.669 +637262.067|219651.048|114.145 +637257.363|219655.419|114.245 +637252.648|219659.799|114.267 +637247.960|219664.148|114.181 +637243.209|219668.559|114.005 +637238.539|219672.893|113.742 +637233.754|219677.331|113.398 +637229.063|219681.680|113.051 +637224.378|219686.024|112.779 +637219.626|219690.431|112.392 +637214.899|219694.811|111.901 +637210.171|219699.194|111.426 +637205.428|219703.586|110.877 +637200.722|219707.948|110.274 +637196.007|219712.316|109.649 +637191.280|219716.699|109.280 +637186.653|219720.991|108.948 +637182.017|219725.291|108.887 +637159.111|219746.573|109.259 +637140.838|219763.538|109.103 +637122.636|219780.433|108.524 +637113.635|219788.793|108.780 +637109.264|219792.863|109.347 +637092.125|219808.852|113.264 +637074.864|219824.925|115.617 +637061.828|219837.050|116.726 +637053.232|219845.044|117.330 +637051.849|219843.362|117.507 +637077.787|219819.185|115.068 +637099.401|219799.007|111.243 +637103.713|219794.978|110.353 +637135.236|219765.632|109.158 +637148.943|219752.882|109.131 +637153.500|219748.639|108.890 +637158.200|219744.277|109.506 +637176.579|219727.166|108.844 +637181.215|219722.853|108.890 +637185.839|219718.552|108.887 +637190.582|219714.148|109.332 +637195.324|219709.743|109.786 +637200.088|219705.324|110.408 +637204.843|219700.910|111.008 +637209.580|219696.512|111.520 +637214.414|219692.025|112.051 +637219.193|219687.591|112.569 +637223.936|219683.183|112.877 +637228.721|219678.736|113.188 +637233.458|219674.338|113.514 +637238.231|219669.900|113.782 +637243.007|219665.465|114.087 +637247.738|219661.064|114.126 +637252.529|219656.608|114.273 +637257.248|219652.221|114.248 +637261.987|219647.808|114.078 +637266.712|219643.407|113.825 +637271.485|219638.963|113.569 +637290.309|219621.409|111.508 +637295.119|219616.932|111.231 +637299.810|219612.552|110.469 +637304.595|219608.092|110.036 +637323.289|219590.615|105.391 +637337.553|219577.295|102.748 +637361.941|219554.603|102.520 +637366.808|219550.068|102.117 +637371.658|219545.547|101.550 +637376.458|219541.064|100.596 +637400.623|219518.496|95.881 +637405.484|219513.967|95.494 +637410.410|219509.380|95.247 +637415.168|219504.920|93.406 +637430.265|219490.906|95.040 +637459.763|219458.085|95.104 +637454.819|219462.657|94.452 +637440.128|219476.291|94.695 +637405.923|219508.020|95.095 +637396.270|219516.994|96.168 +637386.773|219525.842|98.231 +637382.057|219530.240|99.557 +637363.050|219547.925|102.721 +637358.225|219552.408|103.102 +637329.321|219579.213|102.934 +637310.710|219596.559|107.622 +637282.702|219622.616|111.993 +637278.072|219626.920|112.554 +637268.711|219635.625|113.666 +637264.020|219639.981|113.813 +637259.345|219644.324|114.090 +637254.654|219648.680|114.285 +637249.942|219653.051|114.364 +637245.211|219657.437|114.315 +637240.517|219661.789|114.224 +637235.756|219666.203|114.026 +637231.029|219670.583|113.736 +637226.292|219674.969|113.435 +637221.568|219679.349|113.224 +637216.862|219683.707|112.837 +637212.088|219688.127|112.371 +637207.358|219692.504|111.883 +637202.621|219696.890|111.380 +637197.863|219701.294|110.777 +637193.096|219705.702|110.155 +637188.396|219710.054|109.652 +637183.632|219714.462|109.103 +637178.996|219718.759|109.058 +637174.439|219722.990|109.192 +637169.828|219727.273|109.308 +637119.569|219773.886|109.152 +637115.006|219778.116|108.924 +637093.146|219798.450|112.103 +637075.788|219814.598|114.486 +637062.858|219826.619|116.150 +637049.910|219838.650|117.309 +637041.406|219846.553|118.177 +637037.081|219850.567|118.412 +637038.184|219846.885|118.284 +637046.804|219838.857|117.714 +637051.209|219834.751|117.415 +637059.819|219826.726|116.361 +637085.883|219802.409|112.602 +637090.229|219798.352|111.847 +637098.934|219790.223|110.164 +637103.485|219785.992|110.249 +637116.884|219773.511|109.262 +637130.743|219760.633|109.859 +637149.120|219743.540|109.908 +637153.734|219739.251|110.012 +637163.043|219730.601|110.152 +637167.539|219726.410|109.615 +637172.156|219722.109|109.231 +637176.768|219717.824|109.103 +637181.447|219713.474|109.106 +637186.144|219709.116|109.545 +637190.893|219704.711|110.030 +637195.669|219700.282|110.710 +637200.479|219695.823|111.307 +637205.212|219691.434|111.770 +637210.004|219686.987|112.337 +637214.777|219682.561|112.785 +637219.535|219678.145|113.176 +637224.268|219673.750|113.432 +637229.047|219669.312|113.694 +637233.830|219664.874|113.998 +637238.594|219660.448|114.209 +637243.337|219656.041|114.306 +637248.061|219651.648|114.306 +637252.779|219647.262|114.261 +637257.516|219642.855|114.038 +637262.249|219638.454|113.806 +637266.971|219634.058|113.514 +637285.817|219616.502|111.499 +637290.498|219612.140|110.975 +637328.178|219576.978|103.629 +637352.492|219554.380|103.782 +637357.329|219549.869|103.099 +637362.166|219545.371|102.809 +637381.366|219527.467|99.670 +637386.117|219523.023|98.234 +637400.620|219509.493|95.747 +637405.512|219504.936|95.150 +637410.437|219500.352|94.891 +637415.293|219495.831|94.433 +637455.188|219458.783|96.250 +637417.466|219488.501|94.366 +637412.541|219493.055|93.684 +637393.268|219510.971|96.640 +637379.019|219524.245|100.185 +637374.300|219528.634|101.047 +637359.938|219541.987|103.129 +637355.140|219546.437|103.364 +637321.387|219577.734|103.937 +637316.571|219582.194|103.785 +637284.079|219612.451|111.338 +637274.673|219621.184|112.130 +637260.710|219634.159|113.730 +637256.025|219638.502|113.977 +637251.335|219642.855|114.187 +637246.634|219647.217|114.340 +637241.956|219651.554|114.331 +637237.265|219655.897|114.276 +637232.507|219660.305|114.111 +637227.786|219664.679|113.880 +637223.101|219669.016|113.599 +637218.312|219673.448|113.310 +637213.609|219677.803|112.956 +637208.897|219682.162|112.569 +637204.112|219686.588|112.075 +637199.375|219690.968|111.588 +637194.626|219695.360|111.063 +637189.887|219699.740|110.298 +637185.129|219704.138|109.780 +637180.417|219708.497|109.247 +637175.777|219712.798|109.180 +637171.151|219717.086|109.204 +637166.600|219721.311|109.710 +637162.074|219725.517|110.060 +637143.673|219742.567|109.957 +637098.404|219784.532|110.335 +637085.300|219796.709|111.984 +637076.617|219804.786|113.581 +637059.444|219820.752|116.324 +637055.095|219824.787|116.626 +637046.490|219832.779|117.479 +637042.189|219836.769|117.818 +637036.526|219839.500|118.086 +637040.876|219835.452|117.738 +637045.183|219831.441|117.202 +637049.584|219827.354|117.138 +637058.210|219819.322|116.184 +637062.541|219815.290|115.556 +637075.553|219803.168|113.563 +637079.915|219799.108|113.145 +637092.896|219786.998|110.320 +637133.709|219749.087|109.871 +637138.357|219744.768|109.823 +637156.910|219727.550|110.499 +637161.449|219723.328|110.201 +637166.024|219719.073|109.844 +637170.602|219714.809|109.222 +637175.247|219710.499|109.295 +637179.941|219706.138|109.408 +637184.699|219701.730|109.911 +637189.457|219697.323|110.457 +637194.285|219692.848|111.164 +637199.034|219688.450|111.700 +637203.822|219684.012|112.206 +637208.605|219679.577|112.715 +637213.369|219675.161|113.121 +637218.166|219670.714|113.450 +637222.955|219666.270|113.755 +637227.685|219661.884|114.023 +637232.452|219657.458|114.239 +637237.201|219653.051|114.349 +637241.938|219648.652|114.404 +637246.699|219644.230|114.319 +637251.395|219639.865|114.133 +637256.126|219635.464|113.870 +637260.853|219631.068|113.614 +637293.763|219600.424|109.378 +637307.771|219587.345|105.735 +637341.757|219555.780|105.696 +637346.533|219551.329|104.897 +637351.294|219546.892|103.958 +637356.131|219542.393|103.672 +637384.950|219515.528|98.237 +637389.741|219511.056|97.161 +637399.465|219502.001|95.838 +637404.415|219497.404|95.787 +637409.255|219492.896|95.180 +637414.034|219488.425|93.522 +637419.039|219483.789|94.037 +637419.459|219478.098|94.412 +637395.228|219500.559|96.317 +637390.375|219505.058|96.869 +637361.974|219531.463|103.483 +637357.204|219535.882|103.922 +637352.333|219540.390|103.922 +637347.542|219544.828|104.214 +637338.120|219553.582|106.125 +637309.015|219580.474|103.940 +637304.498|219584.687|105.717 +637276.673|219610.540|111.249 +637258.101|219627.780|113.584 +637253.425|219632.111|113.895 +637248.750|219636.448|114.191 +637244.062|219640.791|114.443 +637239.399|219645.110|114.538 +637234.711|219649.451|114.480 +637230.023|219653.791|114.453 +637225.295|219658.162|114.178 +637220.571|219662.533|113.953 +637215.883|219666.867|113.678 +637211.192|219671.204|113.398 +637206.425|219675.612|112.968 +637201.698|219679.980|112.511 +637196.992|219684.326|111.889 +637192.197|219688.755|111.383 +637187.482|219693.110|110.761 +637182.760|219697.469|110.146 +637178.076|219701.800|109.765 +637173.412|219706.113|109.554 +637168.807|219710.374|109.405 +637164.302|219714.559|110.170 +637159.772|219718.759|110.509 +637155.228|219722.972|110.774 +637136.870|219739.964|110.664 +637132.289|219744.204|110.515 +637118.780|219756.719|110.947 +637114.241|219760.926|111.109 +637109.742|219765.092|111.237 +637096.127|219777.690|110.798 +637082.899|219789.952|111.780 +637065.571|219806.045|114.410 +637061.346|219809.974|115.321 +637056.963|219814.037|115.699 +637052.641|219818.045|116.132 +637035.618|219831.502|118.132 +637057.186|219811.446|115.885 +637061.410|219807.508|114.974 +637070.042|219799.471|113.581 +637083.091|219787.321|111.563 +637096.545|219774.831|111.258 +637101.056|219770.643|111.155 +637128.268|219745.378|110.588 +637137.461|219736.843|110.481 +637146.782|219728.202|110.886 +637151.372|219723.941|110.874 +637155.978|219719.665|110.667 +637160.611|219715.358|110.347 +637165.192|219711.103|110.027 +637169.709|219706.897|109.338 +637174.418|219702.529|109.521 +637179.155|219698.143|109.893 +637183.894|219693.751|110.298 +637188.719|219689.288|110.954 +637193.474|219684.884|111.523 +637198.278|219680.437|112.115 +637203.072|219675.999|112.670 +637207.843|219671.582|113.096 +637212.591|219667.181|113.428 +637217.392|219662.731|113.794 +637222.119|219658.351|114.020 +637226.957|219653.870|114.343 +637231.696|219649.469|114.401 +637236.439|219645.071|114.477 +637241.206|219640.648|114.398 +637245.900|219636.287|114.191 +637250.676|219631.849|113.895 +637255.355|219627.502|113.608 +637283.695|219601.134|109.926 +637336.587|219551.982|106.135 +637346.195|219543.036|104.568 +637379.963|219511.605|99.374 +637384.746|219507.142|98.228 +637389.574|219502.644|97.009 +637423.946|219470.694|94.205 +637433.950|219461.425|94.900 +637438.927|219456.805|94.811 +637419.865|219469.381|94.699 +637414.958|219473.934|95.101 +637410.029|219478.497|94.851 +637405.204|219482.984|95.604 +637395.527|219491.966|96.424 +637390.659|219496.484|96.817 +637366.891|219518.606|102.251 +637362.133|219523.035|103.178 +637357.353|219527.476|103.946 +637347.764|219536.367|104.425 +637342.958|219540.832|104.982 +637338.227|219545.230|105.778 +637314.245|219567.456|106.092 +637309.347|219571.989|105.635 +637304.580|219576.402|105.479 +637295.183|219585.129|106.650 +637262.719|219615.310|112.398 +637253.468|219623.899|113.669 +637248.780|219628.243|113.892 +637244.150|219632.537|114.175 +637239.459|219636.887|114.413 +637234.848|219641.160|114.526 +637230.114|219645.543|114.514 +637225.420|219649.890|114.440 +637220.748|219654.212|114.221 +637216.023|219658.583|114.002 +637211.284|219662.966|113.706 +637206.581|219667.315|113.352 +637201.853|219671.683|112.880 +637197.114|219676.063|112.356 +637192.410|219680.406|111.764 +637187.656|219684.802|111.191 +637182.937|219689.157|110.585 +637178.246|219693.495|110.149 +637173.568|219697.820|109.829 +637168.959|219702.084|109.655 +637164.405|219706.308|110.118 +637159.888|219710.502|110.505 +637155.377|219714.687|110.950 +637150.878|219718.857|111.203 +637146.306|219723.094|111.310 +637123.632|219744.094|111.530 +637070.140|219793.661|113.441 +637052.431|219807.115|115.894 +637073.995|219787.026|112.895 +637091.768|219770.502|111.953 +637118.963|219745.247|112.029 +637137.205|219728.300|111.877 +637141.762|219724.063|111.648 +637146.376|219719.774|111.487 +637150.945|219715.529|111.353 +637155.523|219711.274|111.002 +637160.071|219707.040|110.484 +637164.631|219702.797|110.067 +637169.270|219698.487|109.814 +637173.973|219694.122|109.984 +637178.688|219689.752|110.252 +637183.404|219685.384|110.832 +637188.216|219680.931|111.432 +637192.971|219676.526|112.029 +637197.729|219672.122|112.654 +637202.554|219667.650|113.118 +637207.321|219663.234|113.544 +637212.073|219658.830|113.907 +637216.855|219654.392|114.191 +637221.589|219650.006|114.468 +637226.338|219645.598|114.565 +637231.071|219641.203|114.593 +637235.790|219636.823|114.517 +637240.532|219632.416|114.297 +637245.260|219628.020|114.005 +637259.384|219614.886|112.785 +637268.723|219606.184|111.127 +637296.966|219579.856|105.449 +637306.686|219570.837|105.677 +637335.978|219543.655|106.028 +637340.751|219539.204|105.220 +637345.564|219534.730|104.714 +637374.511|219507.773|100.441 +637379.369|219503.247|99.539 +637384.118|219498.812|98.073 +637388.955|219494.298|96.966 +637393.859|219489.744|96.951 +637398.809|219485.142|96.442 +637403.704|219480.588|95.918 +637423.410|219462.261|94.113 +637428.521|219457.551|95.832 +637422.142|219458.963|93.388 +637397.953|219481.423|96.573 +637393.140|219485.886|97.018 +637388.275|219490.400|97.417 +637378.738|219499.266|99.124 +637374.075|219503.610|100.502 +637359.767|219516.908|103.053 +637340.662|219534.636|105.040 +637335.996|219538.976|105.955 +637321.756|219552.201|107.957 +637302.300|219570.181|106.016 +637283.360|219587.747|107.241 +637274.100|219596.355|109.134 +637251.042|219617.788|113.508 +637246.372|219622.119|113.849 +637241.681|219626.469|114.075 +637237.045|219630.767|114.352 +637232.403|219635.070|114.587 +637227.734|219639.395|114.684 +637223.040|219643.742|114.623 +637218.337|219648.094|114.520 +637213.594|219652.478|114.197 +637208.909|219656.812|113.941 +637204.197|219661.170|113.523 +637199.467|219665.538|113.035 +637194.733|219669.912|112.548 +637189.975|219674.310|111.923 +637185.257|219678.666|111.280 +637180.502|219683.058|110.740 +637175.805|219687.399|110.289 +637171.193|219691.666|110.070 +637166.545|219695.970|109.945 +637161.964|219700.215|110.262 +637157.450|219704.403|110.676 +637152.954|219708.576|111.210 +637148.385|219712.813|111.636 +637143.871|219716.998|111.792 +637139.336|219721.198|111.862 +637098.788|219758.768|113.023 +637085.191|219771.341|112.203 +637071.990|219783.581|113.108 +637063.388|219791.570|114.364 +637058.987|219795.645|114.376 +637054.622|219799.693|114.843 +637039.419|219811.151|117.427 +637056.424|219795.325|114.507 +637078.439|219774.895|113.922 +637105.064|219750.169|112.325 +637127.701|219729.171|112.212 +637132.255|219724.950|112.221 +637136.778|219720.753|112.072 +637141.350|219716.507|111.941 +637145.919|219712.267|111.810 +637150.449|219708.061|111.463 +637154.941|219703.885|110.899 +637159.492|219699.655|110.417 +637164.015|219695.451|110.067 +637168.670|219691.132|109.932 +637173.330|219686.816|110.143 +637178.006|219682.485|110.481 +637182.754|219678.090|110.975 +637187.470|219673.728|111.609 +637192.234|219669.324|112.261 +637197.022|219664.892|112.785 +637201.762|219660.509|113.337 +637206.532|219656.092|113.806 +637211.272|219651.703|114.099 +637216.002|219647.320|114.364 +637220.720|219642.949|114.565 +637225.463|219638.551|114.626 +637230.130|219634.220|114.544 +637234.827|219629.861|114.340 +637239.505|219625.515|114.026 +637244.193|219621.165|113.782 +637248.911|219616.782|113.444 +637272.134|219595.166|109.265 +637286.121|219582.142|106.488 +637295.771|219573.193|106.500 +637315.358|219555.063|108.271 +637324.932|219546.163|107.198 +637348.932|219523.849|104.156 +637353.741|219519.380|103.660 +637377.790|219496.990|99.115 +637382.594|219492.518|98.146 +637387.474|219487.980|97.426 +637392.347|219483.453|97.131 +637397.240|219478.909|96.530 +637411.946|219465.242|95.153 +637416.835|219460.697|94.574 +637413.927|219458.713|94.659 +637399.416|219472.179|96.640 +637394.600|219476.641|97.055 +637380.030|219490.144|98.121 +637375.263|219494.573|99.008 +637365.751|219503.412|100.990 +637356.232|219512.248|102.495 +637351.437|219516.698|103.154 +637337.172|219529.939|105.360 +637332.448|219534.325|106.235 +637327.757|219538.680|106.961 +637322.960|219543.124|107.241 +637303.763|219560.894|107.704 +637294.071|219569.849|106.942 +637289.340|219574.238|107.464 +637284.686|219578.557|108.213 +637275.176|219587.363|108.631 +637270.458|219591.734|108.939 +637265.813|219596.050|109.786 +637252.042|219608.848|112.822 +637242.742|219617.471|113.813 +637238.003|219621.860|114.050 +637233.379|219626.146|114.422 +637228.679|219630.501|114.608 +637224.015|219634.817|114.748 +637219.334|219639.152|114.779 +637214.615|219643.513|114.593 +637209.885|219647.887|114.337 +637205.182|219652.231|113.977 +637200.415|219656.632|113.553 +637195.687|219661.000|113.075 +637190.935|219665.386|112.490 +637186.171|219669.781|111.856 +637181.398|219674.185|111.182 +637176.698|219678.526|110.679 +637171.967|219682.897|110.341 +637167.313|219687.200|110.179 +637162.702|219691.471|110.283 +637158.117|219695.717|110.579 +637153.625|219699.883|111.130 +637149.135|219704.050|111.716 +637144.602|219708.250|112.054 +637140.049|219712.468|112.289 +637135.526|219716.656|112.426 +637130.929|219720.905|112.459 +637126.375|219725.121|112.459 +637121.886|219729.284|112.822 +637108.313|219741.842|112.923 +637090.439|219758.393|113.587 +637050.910|219795.008|115.727 +637046.618|219798.989|116.321 +637033.768|219810.901|117.519 +637042.528|219800.275|116.976 +637068.838|219775.809|114.648 +637073.282|219771.679|114.401 +637082.143|219763.446|113.791 +637109.255|219738.276|113.297 +637113.720|219734.124|113.026 +637122.824|219725.669|112.663 +637127.390|219721.433|112.731 +637131.972|219717.181|112.615 +637136.547|219712.929|112.493 +637141.167|219708.640|112.340 +637145.712|219704.419|112.063 +637150.269|219700.179|111.600 +637154.801|219695.963|110.978 +637159.361|219691.727|110.536 +637163.942|219687.472|110.249 +637168.627|219683.128|110.283 +637173.296|219678.800|110.566 +637178.024|219674.423|110.911 +637182.840|219669.967|111.533 +637187.610|219665.557|112.209 +637192.368|219661.152|112.837 +637197.165|219656.714|113.419 +637201.884|219652.346|113.861 +637206.687|219647.896|114.230 +637211.433|219643.501|114.572 +637216.151|219639.130|114.751 +637220.885|219634.738|114.733 +637225.564|219630.398|114.709 +637230.264|219626.036|114.495 +637234.939|219621.690|114.154 +637239.673|219617.294|113.889 +637249.030|219608.598|112.956 +637262.896|219595.681|109.908 +637267.541|219591.356|109.061 +637272.314|219586.930|109.155 +637305.985|219555.688|108.713 +637315.617|219546.751|108.399 +637329.924|219533.444|106.531 +637349.008|219515.677|103.099 +637353.830|219511.199|102.672 +637358.643|219506.716|101.782 +637363.413|219502.278|100.929 +637377.912|219488.790|98.761 +637387.629|219479.759|97.829 +637392.518|219475.212|97.213 +637402.247|219466.165|95.991 +637407.063|219461.681|95.119 +637412.196|219456.948|96.488 +637405.100|219458.752|95.552 +637395.395|219467.750|96.579 +637371.307|219490.089|99.575 +637361.718|219498.983|100.877 +637356.878|219503.473|101.550 +637352.193|219507.819|102.349 +637347.408|219512.260|103.096 +637337.874|219521.105|104.510 +637333.177|219525.467|105.178 +637271.470|219582.626|109.597 +637266.687|219587.049|109.445 +637261.966|219591.423|109.759 +637252.715|219600.012|111.444 +637248.055|219604.340|112.203 +637238.880|219612.853|113.767 +637234.193|219617.197|114.044 +637229.505|219621.537|114.337 +637224.860|219625.841|114.593 +637220.205|219630.151|114.791 +637215.511|219634.494|114.754 +637210.848|219638.804|114.629 +637206.105|219643.187|114.315 +637201.405|219647.528|113.998 +637196.690|219651.883|113.596 +637191.953|219656.254|113.087 +637187.229|219660.613|112.362 +637182.465|219665.008|111.740 +637177.740|219669.367|111.078 +637172.998|219673.747|110.652 +637168.389|219678.008|110.448 +637163.741|219682.302|110.344 +637159.148|219686.557|110.579 +637154.627|219690.745|110.966 +637150.086|219694.958|111.545 +637145.581|219699.133|112.039 +637141.055|219703.327|112.432 +637136.547|219707.503|112.648 +637131.923|219711.783|112.798 +637127.396|219715.974|112.944 +637122.852|219720.177|113.014 +637118.295|219724.392|113.023 +637113.772|219728.580|113.240 +637109.264|219732.753|113.267 +637104.753|219736.929|113.307 +637095.706|219745.301|113.584 +637091.217|219749.453|113.514 +637077.815|219761.861|114.056 +637060.267|219778.119|115.532 +637055.787|219782.262|115.382 +637034.088|219802.363|116.922 +637035.344|219799.074|116.851 +637039.763|219794.978|116.888 +637070.399|219766.525|114.242 +637083.822|219754.071|113.809 +637088.336|219749.886|113.718 +637092.853|219745.698|113.675 +637110.956|219728.906|113.300 +637115.537|219724.657|113.133 +637120.090|219720.436|113.124 +637124.684|219716.175|113.072 +637129.216|219711.972|112.962 +637133.834|219707.689|112.798 +637138.397|219703.455|112.621 +637142.935|219699.240|112.319 +637147.538|219694.961|111.822 +637152.030|219690.782|111.286 +637156.581|219686.551|110.798 +637161.211|219682.247|110.518 +637165.884|219677.913|110.487 +637170.532|219673.603|110.643 +637175.287|219669.193|110.877 +637180.060|219664.779|111.545 +637184.827|219660.366|112.209 +637189.692|219655.867|112.892 +637194.495|219651.423|113.520 +637199.259|219647.009|113.938 +637203.999|219642.617|114.233 +637208.797|219638.173|114.605 +637213.564|219633.754|114.788 +637218.300|219629.358|114.815 +637223.003|219624.991|114.620 +637227.740|219620.589|114.352 +637232.422|219616.243|114.050 +637237.149|219611.851|113.724 +637251.124|219598.842|111.432 +637255.821|219594.468|110.609 +637260.469|219590.140|109.798 +637274.954|219576.710|110.286 +637303.748|219549.979|109.402 +637313.361|219541.042|108.616 +637322.926|219532.148|107.451 +637327.666|219527.732|106.339 +637332.448|219523.279|105.592 +637337.215|219518.838|104.711 +637342.016|219514.366|103.702 +637356.439|219500.940|101.273 +637361.285|219496.432|100.682 +637366.177|219491.890|100.490 +637375.864|219482.874|98.826 +637395.341|219464.760|96.533 +637400.257|219460.191|96.229 +637390.903|219463.903|96.826 +637371.655|219481.756|99.588 +637366.845|219486.221|100.517 +637362.062|219490.650|100.834 +637357.241|219495.115|101.243 +637352.495|219499.516|101.910 +637347.691|219503.970|102.507 +637338.197|219512.781|104.224 +637314.587|219534.690|108.265 +637300.365|219547.870|109.750 +637290.678|219556.813|108.963 +637285.951|219561.187|109.134 +637257.601|219587.424|110.192 +637252.941|219591.749|110.941 +637248.351|219596.010|111.859 +637239.149|219604.551|113.523 +637234.537|219608.824|113.968 +637229.834|219613.177|114.130 +637225.195|219617.471|114.401 +637220.559|219621.763|114.724 +637215.898|219626.076|114.895 +637211.259|219630.367|114.882 +637206.544|219634.723|114.736 +637201.856|219639.054|114.459 +637197.156|219643.394|114.114 +637192.389|219647.796|113.694 +637187.677|219652.142|113.035 +637182.901|219656.544|112.304 +637178.140|219660.936|111.685 +637173.431|219665.282|111.124 +637168.758|219669.598|110.807 +637164.116|219673.887|110.704 +637159.547|219678.111|110.780 +637154.966|219682.357|111.063 +637150.467|219686.527|111.575 +637145.916|219690.745|112.081 +637141.463|219694.869|112.606 +637136.925|219699.072|112.904 +637132.377|219703.282|113.188 +637127.851|219707.470|113.316 +637123.330|219711.655|113.489 +637118.801|219715.846|113.630 +637114.232|219720.070|113.557 +637109.724|219724.240|113.572 +637105.225|219728.400|113.654 +637091.631|219740.964|113.200 +637038.782|219789.894|116.464 +637034.463|219793.896|116.934 +637037.212|219788.748|116.717 +637041.559|219784.712|116.419 +637067.863|219760.295|114.477 +637090.153|219739.617|113.340 +637103.774|219726.998|113.709 +637108.356|219722.749|113.550 +637112.870|219718.564|113.593 +637117.487|219714.288|113.663 +637122.014|219710.091|113.520 +637126.577|219705.854|113.331 +637131.146|219701.617|113.176 +637135.754|219697.344|112.993 +637140.338|219693.089|112.676 +637144.843|219688.904|112.185 +637149.385|219684.686|111.636 +637153.981|219680.416|111.133 +637158.562|219676.164|110.862 +637163.217|219671.848|110.734 +637167.956|219667.455|110.844 +637172.662|219663.100|111.082 +637177.423|219658.699|111.670 +637182.239|219654.248|112.328 +637187.028|219649.826|113.160 +637191.862|219645.354|113.681 +637196.644|219640.932|114.230 +637201.399|219636.530|114.620 +637206.206|219632.077|114.724 +637210.918|219627.716|114.873 +637215.655|219623.326|114.892 +637220.394|219618.925|114.639 +637225.079|219614.579|114.328 +637229.816|219610.183|114.072 +637234.522|219605.813|113.627 +637239.249|219601.426|113.325 +637248.561|219592.758|111.435 +637262.853|219579.496|110.423 +637267.690|219575.015|110.664 +637291.696|219552.741|109.323 +637306.321|219539.198|109.853 +637311.085|219534.764|108.951 +637315.861|219530.323|108.122 +637320.713|219525.812|107.537 +637330.220|219516.966|105.528 +637359.228|219489.997|101.276 +637364.083|219485.489|100.764 +637373.816|219476.446|99.548 +637378.705|219471.901|98.932 +637383.511|219467.430|97.996 +637388.361|219462.916|97.003 +637385.642|219460.569|97.079 +637361.675|219482.829|101.188 +637356.832|219487.315|101.407 +637347.277|219496.182|102.584 +637333.006|219509.432|104.717 +637328.278|219513.821|105.559 +637314.148|219526.955|108.506 +637309.405|219531.359|109.219 +637295.150|219544.569|110.064 +637290.255|219549.092|109.643 +637285.457|219553.533|109.640 +637276.045|219562.263|110.670 +637271.320|219566.643|110.871 +637252.316|219584.227|110.768 +637247.653|219588.555|111.502 +637233.787|219601.423|113.593 +637229.179|219605.697|114.053 +637224.533|219609.997|114.282 +637219.849|219614.341|114.587 +637215.246|219618.602|114.806 +637210.583|219622.921|114.956 +637205.889|219627.261|114.925 +637201.231|219631.571|114.834 +637196.480|219635.960|114.471 +637191.758|219640.322|114.008 +637187.015|219644.699|113.444 +637182.255|219649.094|112.782 +637177.478|219653.502|112.060 +637172.766|219657.851|111.456 +637168.039|219662.216|111.100 +637163.396|219666.511|110.987 +637158.821|219670.744|110.996 +637154.198|219675.030|111.325 +637149.680|219679.215|111.722 +637145.185|219683.384|112.240 +637140.671|219687.569|112.673 +637136.147|219691.760|113.078 +637131.600|219695.976|113.331 +637127.083|219700.157|113.502 +637122.520|219704.382|113.709 +637118.009|219708.564|113.931 +637113.510|219712.727|113.965 +637108.926|219716.964|113.831 +637104.393|219721.155|113.721 +637099.919|219725.300|113.931 +637095.408|219729.473|113.983 +637051.102|219770.502|115.806 +637046.737|219774.550|116.248 +637042.375|219778.589|116.480 +637037.998|219782.643|116.632 +637033.652|219786.663|116.708 +637035.051|219782.402|116.568 +637039.452|219778.318|116.556 +637043.838|219774.248|116.480 +637048.188|219770.204|115.974 +637052.656|219766.058|116.092 +637070.240|219749.727|114.956 +637092.591|219728.973|114.056 +637101.583|219720.628|113.855 +637106.140|219716.400|113.849 +637110.727|219712.148|114.041 +637115.293|219707.915|114.123 +637119.816|219703.715|113.983 +637124.370|219699.487|113.749 +637128.933|219695.253|113.566 +637133.474|219691.032|113.297 +637138.001|219686.829|112.947 +637142.563|219682.586|112.538 +637147.117|219678.355|112.072 +637151.674|219674.118|111.639 +637156.295|219669.827|111.313 +637160.891|219665.560|111.161 +637165.558|219661.231|111.133 +637170.273|219656.864|111.444 +637175.058|219652.432|111.895 +637179.847|219648.006|112.709 +637184.653|219643.559|113.361 +637189.451|219639.121|113.983 +637194.215|219634.711|114.425 +637198.976|219630.303|114.864 +637203.725|219625.899|114.931 +637208.464|219621.504|114.959 +637213.183|219617.124|114.873 +637217.880|219612.765|114.648 +637222.555|219608.422|114.315 +637227.301|219604.017|114.117 +637231.958|219599.686|113.685 +637236.695|219595.291|113.468 +637274.682|219560.004|110.862 +637284.158|219551.192|109.652 +637289.096|219546.626|110.405 +637293.952|219542.124|110.573 +637308.375|219528.722|109.241 +637322.722|219515.372|106.985 +637327.413|219510.992|105.488 +637332.293|219506.460|105.153 +637346.740|219493.018|102.995 +637356.430|219484.008|101.816 +637366.196|219474.931|100.938 +637371.054|219470.408|100.054 +637375.830|219465.958|98.835 +637385.572|219456.893|97.289 +637380.396|219456.616|98.039 +637375.574|219461.087|98.384 +637361.325|219474.346|101.931 +637351.699|219483.274|102.861 +637346.914|219487.708|103.138 +637342.141|219492.143|103.971 +637337.410|219496.535|104.766 +637332.616|219500.989|105.406 +637327.882|219505.384|106.189 +637323.097|219509.819|106.528 +637318.415|219514.168|107.326 +637313.736|219518.524|108.552 +637304.312|219527.278|110.076 +637299.615|219531.636|110.780 +637280.376|219549.443|110.569 +637275.682|219553.795|110.969 +637261.497|219566.944|111.880 +637242.568|219584.486|112.346 +637237.890|219588.829|112.980 +637228.545|219597.498|113.654 +637223.909|219601.804|114.255 +637219.263|219606.111|114.480 +637214.582|219610.455|114.809 +637209.927|219614.768|115.007 +637205.294|219619.059|115.032 +637200.552|219623.451|115.013 +637195.897|219627.761|114.931 +637191.182|219632.120|114.489 +637186.406|219636.533|114.002 +637181.660|219640.919|113.407 +637176.945|219645.275|112.731 +637172.169|219649.686|112.023 +637167.475|219654.023|111.536 +637162.814|219658.336|111.283 +637158.160|219662.649|111.392 +637153.551|219666.919|111.499 +637149.040|219671.104|111.914 +637144.481|219675.338|112.331 +637139.963|219679.529|112.731 +637135.458|219683.710|113.206 +637130.926|219687.914|113.550 +637126.382|219692.126|113.834 +637121.867|219696.314|114.002 +637117.350|219700.499|114.187 +637112.766|219704.748|114.282 +637108.203|219708.972|114.242 +637103.671|219713.169|114.108 +637099.099|219717.403|114.050 +637094.588|219721.582|114.062 +637090.092|219725.745|114.197 +637076.723|219738.139|114.760 +637054.674|219758.585|115.998 +637045.862|219766.750|116.160 +637041.510|219770.786|116.416 +637037.112|219774.861|116.437 +637037.352|219772.097|117.360 +637041.528|219768.201|116.227 +637054.790|219755.887|115.864 +637068.085|219743.543|115.580 +637076.970|219735.286|114.946 +637081.353|219731.211|114.462 +637085.852|219727.032|114.352 +637090.336|219722.868|114.181 +637094.871|219718.659|114.020 +637099.391|219714.462|114.087 +637103.963|219710.222|114.169 +637108.535|219705.982|114.273 +637113.092|219701.752|114.328 +637117.661|219697.509|114.178 +637122.178|219693.315|114.026 +637126.744|219689.075|113.889 +637131.283|219684.863|113.593 +637135.800|219680.659|113.209 +637140.347|219676.432|112.715 +637144.910|219672.189|112.325 +637149.467|219667.955|111.904 +637154.030|219663.712|111.542 +637158.639|219659.433|111.475 +637163.299|219655.108|111.438 +637168.008|219650.743|111.709 +637172.754|219646.348|112.258 +637177.484|219641.974|113.026 +637182.279|219637.536|113.630 +637187.070|219633.101|114.218 +637191.798|219628.724|114.760 +637196.559|219624.308|114.904 +637201.268|219619.943|115.032 +637205.950|219615.597|115.038 +637210.653|219611.229|114.852 +637215.307|219606.907|114.696 +637220.038|219602.512|114.398 +637224.741|219598.147|114.270 +637229.456|219593.764|113.907 +637234.113|219589.433|113.486 +637238.758|219585.107|112.666 +637248.232|219576.308|112.340 +637281.568|219545.349|110.871 +637296.140|219531.834|111.453 +637310.326|219518.627|109.109 +637315.093|219514.186|108.259 +637348.663|219482.941|103.273 +637353.531|219478.418|102.901 +637372.776|219460.487|99.024 +637370.798|219457.509|99.069 +637366.095|219461.883|100.078 +637361.361|219466.293|101.721 +637347.036|219479.589|103.660 +637337.523|219488.425|105.153 +637332.710|219492.893|106.065 +637328.007|219497.258|106.659 +637313.688|219510.547|108.344 +637308.969|219514.930|109.250 +637285.262|219536.918|111.743 +637275.652|219545.803|111.188 +637270.881|219550.229|111.767 +637256.763|219563.317|112.782 +637252.042|219567.694|113.057 +637247.305|219572.074|112.865 +637242.501|219576.518|112.578 +637233.150|219585.184|113.194 +637228.575|219589.439|114.209 +637223.872|219593.797|114.352 +637219.218|219598.110|114.498 +637214.475|219602.502|114.751 +637209.824|219606.812|114.965 +637205.163|219611.131|115.129 +637200.472|219615.475|115.114 +637195.766|219619.827|115.026 +637191.112|219624.137|114.959 +637186.339|219628.548|114.468 +637181.596|219632.925|113.901 +637176.805|219637.353|113.355 +637172.056|219641.739|112.795 +637167.341|219646.089|112.176 +637162.561|219650.509|111.783 +637157.928|219654.797|111.719 +637153.301|219659.080|111.694 +637148.733|219663.316|112.045 +637144.182|219667.538|112.523 +637139.616|219671.771|112.929 +637135.105|219675.956|113.368 +637130.539|219680.193|113.788 +637126.046|219684.357|114.075 +637121.483|219688.584|114.264 +637116.914|219692.818|114.425 +637112.388|219697.009|114.565 +637107.840|219701.218|114.605 +637103.265|219705.455|114.498 +637098.739|219709.643|114.416 +637094.155|219713.883|114.297 +637089.641|219718.061|114.322 +637085.148|219722.225|114.459 +637080.686|219726.358|114.526 +637076.303|219730.424|115.038 +637071.898|219734.509|115.437 +637067.406|219738.672|115.641 +637058.560|219746.868|116.056 +637054.116|219750.983|116.044 +637045.192|219759.240|115.888 +637040.842|219763.276|116.409 +637034.509|219767.003|117.647 +637038.776|219763.023|116.729 +637043.156|219758.947|116.388 +637047.542|219754.863|115.824 +637052.038|219750.693|116.114 +637056.463|219746.579|116.071 +637060.987|219742.378|116.010 +637065.458|219738.224|115.964 +637069.911|219734.088|115.830 +637074.334|219729.967|115.297 +637078.763|219725.846|114.791 +637083.246|219721.676|114.599 +637087.733|219717.507|114.440 +637092.247|219713.316|114.450 +637096.874|219709.018|114.550 +637101.440|219704.778|114.617 +637105.999|219700.545|114.660 +637110.596|219696.277|114.645 +637115.174|219692.022|114.550 +637119.731|219687.786|114.355 +637124.288|219683.549|114.172 +637128.869|219679.288|113.855 +637133.441|219675.036|113.502 +637137.949|219670.842|113.063 +637142.557|219666.553|112.660 +637147.105|219662.323|112.203 +637151.723|219658.028|111.874 +637156.444|219653.645|111.889 +637161.059|219649.359|111.892 +637165.823|219644.940|112.215 +637170.626|219640.490|112.819 +637175.372|219636.098|113.386 +637180.161|219631.660|113.944 +637184.940|219627.231|114.483 +637189.701|219622.820|114.919 +637194.459|219618.404|115.050 +637199.159|219614.042|115.132 +637203.883|219609.653|115.093 +637208.601|219605.273|115.013 +637213.283|219600.917|114.730 +637217.977|219596.556|114.520 +637222.723|219592.145|114.352 +637227.368|219587.820|113.870 +637236.774|219579.072|113.011 +637241.547|219574.634|112.764 +637251.100|219565.771|113.063 +637260.637|219556.907|112.612 +637270.183|219548.028|111.941 +637279.745|219539.140|111.447 +637294.333|219525.601|111.789 +637299.005|219521.246|110.969 +637308.533|219512.367|109.198 +637322.914|219498.977|107.342 +637327.721|219494.505|106.863 +637332.521|219490.031|105.891 +637337.282|219485.593|105.013 +637342.132|219481.079|104.483 +637361.389|219463.135|101.194 +637366.113|219458.716|99.539 +637360.816|219459.118|100.484 +637356.073|219463.541|101.998 +637346.600|219472.350|103.797 +637337.020|219481.250|105.083 +637327.559|219490.049|106.991 +637322.847|219494.432|107.909 +637308.524|219507.725|109.091 +637303.827|219512.092|110.152 +637265.776|219547.388|112.410 +637256.355|219556.127|112.980 +637246.906|219564.887|113.444 +637237.347|219573.735|113.182 +637232.656|219578.085|113.352 +637227.947|219582.456|113.764 +637223.342|219586.729|114.230 +637218.611|219591.118|114.514 +637213.963|219595.428|114.700 +637209.275|219599.774|114.983 +637204.612|219604.097|115.105 +637199.942|219608.422|115.218 +637195.209|219612.811|115.227 +637190.545|219617.127|115.099 +637185.827|219621.495|114.940 +637181.051|219625.911|114.431 +637176.314|219630.285|113.907 +637171.568|219634.674|113.331 +637166.832|219639.051|112.862 +637162.138|219643.391|112.359 +637157.422|219647.750|112.069 +637152.811|219652.026|112.118 +637148.187|219656.309|112.118 +637143.642|219660.527|112.612 +637139.012|219664.822|112.907 +637134.507|219669.004|113.364 +637129.996|219673.192|113.803 +637125.415|219677.441|114.142 +637120.871|219681.656|114.398 +637116.354|219685.841|114.565 +637111.785|219690.078|114.712 +637107.213|219694.314|114.885 +637102.668|219698.524|114.934 +637098.114|219702.745|114.943 +637093.542|219706.979|114.873 +637089.031|219711.158|114.885 +637084.490|219715.361|114.757 +637079.997|219719.525|114.904 +637075.632|219723.584|115.754 +637071.139|219727.748|115.943 +637066.665|219731.893|115.958 +637062.187|219736.045|115.974 +637057.704|219740.196|115.992 +637053.248|219744.326|116.160 +637048.834|219748.417|116.309 +637044.491|219752.449|116.827 +637040.099|219756.524|117.110 +637036.353|219758.018|117.299 +637040.699|219753.970|116.797 +637045.192|219749.800|116.803 +637049.502|219745.786|116.138 +637053.964|219741.638|116.025 +637058.390|219737.529|115.992 +637062.904|219733.335|115.913 +637067.375|219729.184|115.897 +637071.886|219724.993|115.846 +637076.397|219720.805|115.797 +637080.750|219716.745|114.919 +637085.291|219712.526|114.794 +637089.836|219708.308|114.995 +637094.384|219704.086|114.937 +637098.946|219699.850|115.004 +637103.540|219695.585|114.962 +637108.072|219691.373|114.898 +637112.635|219687.133|114.724 +637117.234|219682.857|114.492 +637121.800|219678.617|114.364 +637126.330|219674.402|114.050 +637130.905|219670.147|113.718 +637135.452|219665.910|113.246 +637140.015|219661.664|112.871 +637144.618|219657.379|112.462 +637149.174|219653.139|112.075 +637153.859|219648.786|112.191 +637158.584|219644.397|112.264 +637163.302|219640.020|112.633 +637168.036|219635.631|113.127 +637172.815|219631.199|113.614 +637177.606|219626.758|114.200 +637182.376|219622.336|114.696 +637187.168|219617.889|115.029 +637191.868|219613.521|115.126 +637196.623|219609.107|115.269 +637201.295|219604.764|115.212 +637206.002|219600.390|115.081 +637210.738|219595.983|114.834 +637215.441|219591.612|114.706 +637220.196|219587.192|114.611 +637224.908|219582.806|114.264 +637229.630|219578.414|113.968 +637239.106|219569.596|113.349 +637253.465|219556.255|113.404 +637258.199|219551.848|112.944 +637267.724|219542.981|112.151 +637277.310|219534.069|111.877 +637291.900|219520.520|112.310 +637296.661|219516.088|111.804 +637301.392|219511.672|110.688 +637306.180|219507.207|110.045 +637310.969|219502.747|109.390 +637354.132|219462.507|102.303 +637358.810|219458.121|100.252 +637350.642|219460.788|102.239 +637345.859|219465.239|103.385 +637336.392|219474.044|105.187 +637326.852|219482.914|106.784 +637312.734|219496.048|109.582 +637269.869|219535.797|111.597 +637265.215|219540.131|112.624 +637260.518|219544.490|112.980 +637255.736|219548.922|113.090 +637251.082|219553.241|113.413 +637246.406|219557.584|113.962 +637236.963|219566.335|114.105 +637218.087|219583.830|114.349 +637213.494|219588.094|114.882 +637208.793|219592.453|115.050 +637204.142|219596.766|115.224 +637199.482|219601.088|115.358 +637194.803|219605.422|115.394 +637190.152|219609.732|115.303 +637185.452|219614.085|115.242 +637180.770|219618.419|114.992 +637176.043|219622.790|114.468 +637171.318|219627.158|114.014 +637166.585|219631.538|113.499 +637161.909|219635.863|113.081 +637157.176|219640.237|112.642 +637152.546|219644.525|112.563 +637147.964|219648.771|112.481 +637143.359|219653.038|112.581 +637138.802|219657.269|112.999 +637134.294|219661.454|113.410 +637129.792|219665.633|113.870 +637125.269|219669.830|114.224 +637120.734|219674.039|114.529 +637116.229|219678.218|114.718 +637111.681|219682.436|114.968 +637107.176|219686.612|115.202 +637102.644|219690.815|115.285 +637098.117|219695.012|115.428 +637093.594|219699.200|115.324 +637089.077|219703.385|115.269 +637084.651|219707.494|115.739 +637080.165|219711.655|115.885 +637075.654|219715.836|115.919 +637071.130|219720.024|115.910 +637066.714|219724.118|115.952 +637062.206|219728.297|116.041 +637057.759|219732.421|116.214 +637053.330|219736.523|116.245 +637048.916|219740.617|116.361 +637040.193|219748.712|117.190 +637035.783|219752.803|117.367 +637047.179|219739.888|116.370 +637051.623|219735.755|116.166 +637056.122|219731.579|116.260 +637060.575|219727.440|116.132 +637065.007|219723.316|115.925 +637069.512|219719.131|115.836 +637074.023|219714.940|115.809 +637078.543|219710.743|115.839 +637083.094|219706.513|115.788 +637087.608|219702.315|115.550 +637092.107|219698.131|115.242 +637096.679|219693.885|115.367 +637101.217|219689.666|115.324 +637105.786|219685.420|115.172 +637110.346|219681.178|115.007 +637114.878|219676.965|114.678 +637119.432|219672.728|114.504 +637124.007|219668.473|114.172 +637128.527|219664.267|113.825 +637133.133|219659.982|113.410 +637137.644|219655.785|113.038 +637142.240|219651.505|112.593 +637146.885|219647.189|112.456 +637151.512|219642.895|112.517 +637156.194|219638.545|112.651 +637160.967|219634.119|113.057 +637165.734|219629.700|113.468 +637170.456|219625.323|113.910 +637175.232|219620.894|114.431 +637180.005|219616.471|114.937 +637184.772|219612.046|115.123 +637189.475|219607.681|115.248 +637194.218|219603.274|115.330 +637198.985|219598.848|115.248 +637203.645|219594.514|115.157 +637208.391|219590.103|114.986 +637213.128|219585.699|114.754 +637217.788|219581.364|114.364 +637222.577|219576.911|114.200 +637232.068|219568.090|114.023 +637236.902|219563.607|114.224 +637241.691|219559.163|114.486 +637246.418|219554.761|113.977 +637270.241|219532.599|112.282 +637303.958|219501.251|110.646 +637327.843|219478.988|106.662 +637342.299|219465.507|103.974 +637347.088|219461.041|102.922 +637351.894|219456.561|102.053 +637345.247|219458.332|102.172 +637340.547|219462.724|103.574 +637321.579|219480.408|107.692 +637312.215|219489.141|109.942 +637283.750|219515.625|113.258 +637278.983|219520.051|113.358 +637269.275|219529.045|112.258 +637264.587|219533.410|113.020 +637259.832|219537.827|113.291 +637255.123|219542.204|113.541 +637250.408|219546.584|113.770 +637236.277|219559.711|114.642 +637222.061|219572.894|114.392 +637217.340|219577.271|114.346 +637212.701|219581.584|114.895 +637208.053|219585.897|115.068 +637203.368|219590.249|115.318 +637198.702|219594.581|115.391 +637194.029|219598.915|115.449 +637189.347|219603.255|115.455 +637184.702|219607.562|115.407 +637179.975|219611.945|115.154 +637175.290|219616.282|114.901 +637170.550|219620.669|114.306 +637165.826|219625.042|113.843 +637161.114|219629.407|113.474 +637156.435|219633.738|113.041 +637151.744|219638.085|112.862 +637147.108|219642.383|112.740 +637142.493|219646.662|112.767 +637137.936|219650.899|113.151 +637133.377|219655.132|113.541 +637128.872|219659.320|113.974 +637124.348|219663.520|114.319 +637119.816|219667.730|114.599 +637115.281|219671.942|114.901 +637110.779|219676.124|115.102 +637106.231|219680.342|115.364 +637101.769|219684.488|115.541 +637097.224|219688.700|115.568 +637092.713|219692.891|115.785 +637088.178|219697.097|115.897 +637083.679|219701.273|115.937 +637079.201|219705.421|115.852 +637074.700|219709.597|115.925 +637070.207|219713.770|116.044 +637065.769|219717.888|116.230 +637061.307|219722.027|116.288 +637056.856|219726.157|116.422 +637052.412|219730.281|116.620 +637047.901|219734.463|116.464 +637043.497|219738.553|116.629 +637039.187|219742.555|117.050 +637036.014|219742.723|117.211 +637040.388|219738.645|116.897 +637044.759|219734.573|116.568 +637049.252|219730.391|116.647 +637053.711|219726.242|116.553 +637058.201|219722.057|116.382 +637062.654|219717.912|116.297 +637067.107|219713.767|116.220 +637071.603|219709.582|116.120 +637076.108|219705.385|115.821 +637080.625|219701.182|115.888 +637085.121|219696.997|115.836 +637089.680|219692.754|115.891 +637094.265|219688.487|115.818 +637098.785|219684.277|115.690 +637103.278|219680.092|115.410 +637107.837|219675.847|115.260 +637112.388|219671.607|115.065 +637116.933|219667.376|114.849 +637121.520|219663.103|114.611 +637126.077|219658.854|114.212 +637130.630|219654.611|113.794 +637135.184|219650.365|113.398 +637139.781|219646.080|112.983 +637144.389|219641.791|112.956 +637149.107|219637.402|113.005 +637153.780|219633.056|113.102 +637158.486|219628.685|113.425 +637163.250|219624.259|113.834 +637168.008|219619.839|114.215 +637172.742|219615.447|114.794 +637177.530|219610.997|115.117 +637182.251|219606.611|115.349 +637187.000|219602.192|115.474 +637191.725|219597.796|115.446 +637196.443|219593.407|115.410 +637201.204|219588.975|115.349 +637205.904|219584.601|115.212 +637210.577|219580.246|114.934 +637215.328|219575.823|114.843 +637220.077|219571.404|114.773 +637224.850|219566.957|114.553 +637239.179|219553.628|114.748 +637243.940|219549.196|114.504 +637253.404|219540.375|113.639 +637258.202|219535.903|113.371 +637263.030|219531.411|113.328 +637267.739|219527.019|112.779 +637291.967|219504.479|112.895 +637301.496|219495.581|111.289 +637311.106|219486.614|109.984 +637320.610|219477.732|107.777 +637335.749|219458.844|103.721 +637330.985|219463.291|104.979 +637321.585|219472.066|107.317 +637312.194|219480.823|109.298 +637307.473|219485.221|110.082 +637264.682|219525.025|113.489 +637259.918|219529.451|113.669 +637255.224|219533.819|114.005 +637241.051|219546.995|114.794 +637236.253|219551.451|114.812 +637217.358|219569.014|115.001 +637212.652|219573.388|115.050 +637207.998|219577.716|115.129 +637203.258|219582.120|115.334 +637198.607|219586.446|115.474 +637193.938|219590.786|115.504 +637189.280|219595.117|115.644 +637184.589|219599.473|115.590 +637179.898|219603.831|115.532 +637175.165|219608.227|115.233 +637170.489|219612.567|115.013 +637165.743|219616.962|114.383 +637161.025|219621.339|113.944 +637156.374|219625.655|113.645 +637151.622|219630.066|113.361 +637146.995|219634.363|113.243 +637142.359|219638.667|113.112 +637137.754|219642.949|113.176 +637133.200|219647.186|113.566 +637128.704|219651.371|114.032 +637124.144|219655.617|114.401 +637119.615|219659.832|114.687 +637115.137|219663.996|115.007 +637110.526|219668.284|115.138 +637106.033|219672.463|115.385 +637101.513|219676.673|115.782 +637096.974|219680.888|115.809 +637092.439|219685.106|115.858 +637087.934|219689.291|115.827 +637083.435|219693.473|115.843 +637078.897|219697.689|115.949 +637074.416|219701.858|116.096 +637069.932|219706.025|116.251 +637065.470|219710.173|116.260 +637061.029|219714.303|116.409 +637056.530|219718.485|116.534 +637052.114|219722.588|116.583 +637047.667|219726.724|116.742 +637043.241|219730.836|116.772 +637038.812|219734.950|116.803 +637034.445|219739.017|117.162 +637034.073|219737.066|117.059 +637038.450|219732.988|116.763 +637042.936|219728.812|116.803 +637047.350|219724.703|116.729 +637051.791|219720.567|116.562 +637056.244|219716.422|116.461 +637060.752|219712.225|116.406 +637065.196|219708.088|116.297 +637069.673|219703.916|116.114 +637074.172|219699.728|116.077 +637078.671|219695.540|116.035 +637083.179|219691.340|115.803 +637087.660|219687.167|115.708 +637092.201|219682.939|115.690 +637096.795|219678.666|115.699 +637101.327|219674.448|115.660 +637105.853|219670.235|115.605 +637110.352|219666.038|115.138 +637114.891|219661.811|114.895 +637119.441|219657.571|114.751 +637123.998|219653.322|114.355 +637128.561|219649.070|114.020 +637133.112|219644.824|113.621 +637137.653|219640.590|113.179 +637142.292|219636.271|113.041 +637146.940|219631.949|113.279 +637151.662|219627.557|113.392 +637156.365|219623.183|113.712 +637161.056|219618.824|113.974 +637165.823|219614.396|114.431 +637170.553|219610.004|115.010 +637175.302|219605.587|115.087 +637180.063|219601.164|115.596 +637184.729|219596.821|115.513 +637189.463|219592.414|115.568 +637194.117|219588.082|115.431 +637198.830|219583.693|115.388 +637203.527|219579.319|115.260 +637208.224|219574.945|115.132 +637212.963|219570.532|115.001 +637217.715|219566.106|114.962 +637222.424|219561.723|114.989 +637231.940|219552.872|115.090 +637255.718|219530.716|113.834 +637265.236|219521.852|113.505 +637270.086|219517.341|113.688 +637274.941|219512.827|113.947 +637279.757|219508.343|113.907 +637284.561|219503.869|113.813 +637317.918|219472.715|107.951 +637322.640|219468.299|106.817 +637330.071|219456.472|103.809 +637325.395|219460.849|105.397 +637306.534|219478.458|109.503 +637292.513|219491.543|112.609 +637273.570|219509.182|114.126 +637254.538|219526.872|114.483 +637245.062|219535.690|114.867 +637226.167|219553.256|115.187 +637221.473|219557.621|115.276 +637216.715|219562.043|115.266 +637212.006|219566.420|115.279 +637207.306|219570.788|115.364 +637202.652|219575.116|115.446 +637197.946|219579.490|115.547 +637193.282|219583.827|115.605 +637188.616|219588.165|115.660 +637183.888|219592.557|115.678 +637179.213|219596.903|115.721 +637174.528|219601.253|115.391 +637169.806|219605.636|115.178 +637165.116|219609.991|114.870 +637160.403|219614.362|114.453 +637155.676|219618.748|113.959 +637151.040|219623.052|113.745 +637146.358|219627.402|113.593 +637141.667|219631.757|113.401 +637137.153|219635.957|113.709 +637132.514|219640.273|113.870 +637128.018|219644.458|114.312 +637123.437|219648.719|114.559 +637118.917|219652.929|114.876 +637114.446|219657.095|115.504 +637109.895|219661.326|115.681 +637105.320|219665.581|115.724 +637100.787|219669.793|115.757 +637096.252|219674.009|115.782 +637091.698|219678.239|115.721 +637087.230|219682.400|116.169 +637082.691|219686.621|116.217 +637078.183|219690.809|116.196 +637073.681|219694.991|116.220 +637069.213|219699.149|116.443 +637064.717|219703.330|116.522 +637060.231|219707.503|116.681 +637055.768|219711.648|116.723 +637051.321|219715.785|116.858 +637046.859|219719.936|116.918 +637042.458|219724.026|117.062 +637038.005|219728.169|117.217 +637033.618|219732.247|117.199 +637036.170|219727.852|117.321 +637040.623|219723.694|117.187 +637045.073|219719.540|117.050 +637049.572|219715.343|116.918 +637054.074|219711.139|116.836 +637058.515|219706.994|116.705 +637063.062|219702.751|116.614 +637067.552|219698.560|116.510 +637072.087|219694.327|116.403 +637076.614|219690.099|116.257 +637081.213|219685.811|116.254 +637085.758|219681.571|116.245 +637090.290|219677.340|116.190 +637094.783|219673.140|115.638 +637099.385|219668.848|115.733 +637104.015|219664.529|115.705 +637108.581|219660.268|115.629 +637113.208|219655.952|115.635 +637117.789|219651.673|115.404 +637122.312|219647.445|114.821 +637126.921|219643.138|114.486 +637131.472|219638.890|114.096 +637136.089|219634.577|113.849 +637140.698|219630.273|113.544 +637145.389|219625.902|113.764 +637150.049|219621.555|113.825 +637154.792|219617.136|114.111 +637159.498|219612.756|114.498 +637164.308|219608.278|114.934 +637169.041|219603.868|115.251 +637173.751|219599.482|115.410 +637178.530|219595.029|115.751 +637183.254|219590.624|115.730 +637187.966|219586.226|115.675 +637192.673|219581.834|115.583 +637197.391|219577.433|115.602 +637202.149|219572.995|115.568 +637206.849|219568.612|115.486 +637211.643|219564.140|115.401 +637216.392|219559.711|115.367 +637221.135|219555.286|115.318 +637225.875|219550.863|115.266 +637230.666|219546.392|115.248 +637240.215|219537.485|115.010 +637244.967|219533.044|114.779 +637249.728|219528.604|114.611 +637268.937|219510.684|114.251 +637273.734|219506.204|114.099 +637302.300|219479.485|110.033 +637321.277|219461.700|105.455 +637326.029|219457.253|104.589 +637311.514|219466.269|107.089 +637306.851|219470.630|108.338 +637302.166|219475.007|109.408 +637278.660|219496.965|114.002 +637273.917|219501.382|114.221 +637269.153|219505.817|114.273 +637264.389|219510.251|114.361 +637259.622|219514.689|114.450 +637250.143|219523.513|114.709 +637235.997|219536.687|115.227 +637231.266|219541.091|115.340 +637226.576|219545.459|115.385 +637221.833|219549.872|115.440 +637217.133|219554.249|115.458 +637212.387|219558.663|115.544 +637207.684|219563.043|115.583 +637203.033|219567.374|115.654 +637198.314|219571.763|115.644 +637193.596|219576.152|115.650 +637188.939|219580.493|115.736 +637184.257|219584.848|115.690 +637179.594|219589.189|115.785 +637174.903|219593.553|115.736 +637170.175|219597.949|115.443 +637165.490|219602.301|115.145 +637160.760|219606.700|114.898 +637156.054|219611.073|114.507 +637151.342|219615.450|114.111 +637146.657|219619.806|113.907 +637142.051|219624.091|113.922 +637137.373|219628.444|113.803 +637132.849|219632.662|114.340 +637128.308|219636.899|114.785 +637123.833|219641.072|115.346 +637119.234|219645.354|115.468 +637114.668|219649.606|115.513 +637110.093|219653.864|115.522 +637105.521|219658.119|115.565 +637100.934|219662.387|115.544 +637096.481|219666.541|116.013 +637091.960|219670.750|116.132 +637087.376|219675.018|116.175 +637082.890|219679.193|116.220 +637078.354|219683.415|116.303 +637073.864|219687.594|116.376 +637069.320|219691.827|116.425 +637064.833|219696.003|116.562 +637060.395|219700.136|116.684 +637055.899|219704.321|116.784 +637051.407|219708.506|116.928 +637046.957|219712.648|117.043 +637042.540|219716.760|117.077 +637038.041|219720.951|117.229 +637033.603|219725.084|117.461 +637037.593|219719.302|117.217 +637042.061|219715.135|117.178 +637046.505|219710.990|117.046 +637050.953|219706.839|116.937 +637055.448|219702.645|116.851 +637059.987|219698.411|116.723 +637064.473|219694.223|116.608 +637068.957|219690.041|116.498 +637073.489|219685.811|116.397 +637078.025|219681.580|116.339 +637082.563|219677.346|116.300 +637087.129|219673.088|116.160 +637091.701|219668.821|116.077 +637096.264|219664.563|115.958 +637100.812|219660.317|115.760 +637105.399|219656.035|115.526 +637109.971|219651.770|115.504 +637114.586|219647.464|115.477 +637119.246|219643.114|115.425 +637123.861|219638.807|115.431 +637128.418|219634.549|115.096 +637132.990|219630.273|114.575 +637137.589|219625.975|114.239 +637142.207|219621.665|114.008 +637146.901|219617.282|113.980 +637151.589|219612.914|114.227 +637156.346|219608.480|114.654 +637161.098|219604.054|115.056 +637165.811|219599.662|115.221 +637170.553|219595.245|115.605 +637175.296|219590.819|115.711 +637180.029|219586.403|115.775 +637184.745|219582.005|115.727 +637189.463|219577.600|115.733 +637194.221|219573.159|115.702 +637198.933|219568.764|115.693 +637203.691|219564.323|115.690 +637208.440|219559.891|115.654 +637213.189|219555.459|115.623 +637217.977|219550.991|115.538 +637222.717|219546.568|115.489 +637227.502|219542.100|115.443 +637232.278|219537.644|115.349 +637251.420|219519.770|114.678 +637256.224|219515.284|114.532 +637261.039|219510.791|114.477 +637265.855|219506.295|114.434 +637270.662|219501.808|114.355 +637275.475|219497.319|114.340 +637303.922|219470.667|108.613 +637311.338|219458.987|106.208 +637306.589|219463.419|107.140 +637301.907|219467.799|108.198 +637297.237|219472.164|109.378 +637292.571|219476.531|110.548 +637287.962|219480.847|112.228 +637278.584|219489.616|114.187 +637273.865|219494.012|114.578 +637269.050|219498.495|114.578 +637264.285|219502.930|114.614 +637259.525|219507.362|114.709 +637254.748|219511.809|114.712 +637250.045|219516.189|114.916 +637245.275|219520.630|114.992 +637240.566|219525.013|115.193 +637235.854|219529.405|115.361 +637231.141|219533.791|115.571 +637226.411|219538.199|115.638 +637221.726|219542.557|115.730 +637217.035|219546.925|115.772 +637212.293|219551.342|115.830 +637207.647|219555.667|115.888 +637202.893|219560.089|115.900 +637198.238|219564.424|115.937 +637193.526|219568.810|115.943 +637188.860|219573.153|115.940 +637184.187|219577.503|115.910 +637179.520|219581.846|115.943 +637174.839|219586.202|115.897 +637170.200|219590.518|115.843 +637165.478|219594.907|115.586 +637160.812|219599.247|115.379 +637156.121|219603.606|115.062 +637151.375|219608.019|114.712 +637146.742|219612.326|114.486 +637142.140|219616.609|114.462 +637137.546|219620.891|114.837 +637133.038|219625.097|115.428 +637128.451|219629.371|115.544 +637123.839|219633.662|115.544 +637119.271|219637.914|115.522 +637114.708|219642.160|115.547 +637110.130|219646.421|115.504 +637105.606|219650.637|115.800 +637101.104|219654.828|115.946 +637096.548|219659.070|116.086 +637092.037|219663.274|116.217 +637087.532|219667.471|116.388 +637083.054|219671.637|116.467 +637078.516|219675.862|116.489 +637073.992|219680.074|116.605 +637069.512|219684.244|116.723 +637065.074|219688.377|116.797 +637060.587|219692.556|116.897 +637056.098|219696.735|117.010 +637051.660|219700.868|117.126 +637047.267|219704.958|117.251 +637042.820|219709.097|117.376 +637038.373|219713.240|117.498 +637033.957|219717.351|117.537 +637035.813|219713.102|117.546 +637040.300|219708.908|117.379 +637044.738|219704.763|117.226 +637049.185|219700.612|117.138 +637053.623|219696.469|117.010 +637058.158|219692.236|116.888 +637062.645|219688.045|116.787 +637067.137|219683.851|116.748 +637071.655|219679.632|116.577 +637076.236|219675.356|116.498 +637080.759|219671.131|116.406 +637085.294|219666.901|116.391 +637089.854|219662.643|116.245 +637094.393|219658.400|116.007 +637098.959|219654.139|115.931 +637103.555|219649.847|115.760 +637108.139|219645.565|115.550 +637112.690|219641.319|115.437 +637117.301|219637.015|115.416 +637121.965|219632.665|115.425 +637126.577|219628.365|115.422 +637131.231|219624.021|115.422 +637135.864|219619.696|115.306 +637140.424|219615.432|114.754 +637145.081|219611.086|114.498 +637149.751|219606.733|114.660 +637154.487|219602.320|114.965 +637159.230|219597.900|115.330 +637163.942|219593.508|115.516 +637168.660|219589.109|115.769 +637173.397|219584.693|115.843 +637178.128|219580.282|115.891 +637182.840|219575.887|115.846 +637187.561|219571.483|115.873 +637192.273|219567.085|115.882 +637197.034|219562.647|115.882 +637201.740|219558.255|115.876 +637206.535|219553.780|115.839 +637211.275|219549.357|115.763 +637216.020|219544.929|115.757 +637220.806|219540.466|115.690 +637225.536|219536.050|115.620 +637230.309|219531.597|115.516 +637235.076|219527.147|115.370 +637239.871|219522.669|115.105 +637244.629|219518.228|114.937 +637249.442|219513.738|114.840 +637254.258|219509.243|114.782 +637259.058|219504.762|114.626 +637263.874|219500.269|114.620 +637268.684|219495.783|114.572 +637273.545|219491.244|114.584 +637297.106|219469.164|109.067 +637306.558|219460.298|106.516 +637302.700|219459.475|106.726 +637293.330|219468.259|109.189 +637288.697|219472.606|110.652 +637269.964|219490.156|114.751 +637265.200|219494.600|114.760 +637260.390|219499.090|114.812 +637255.626|219503.534|114.864 +637246.095|219512.428|115.001 +637241.386|219516.823|115.154 +637236.576|219521.310|115.318 +637231.870|219525.705|115.513 +637227.152|219530.106|115.666 +637222.433|219534.507|115.821 +637217.742|219538.878|115.861 +637213.006|219543.295|115.922 +637208.309|219547.675|115.955 +637203.563|219552.098|115.995 +637198.854|219556.487|115.974 +637194.151|219560.870|116.007 +637189.490|219565.213|116.028 +637184.772|219569.611|115.998 +637180.115|219573.955|116.065 +637175.433|219578.316|116.001 +637170.754|219582.678|115.971 +637166.057|219587.049|115.864 +637161.391|219591.395|115.629 +637156.685|219595.779|115.492 +637151.994|219600.146|115.154 +637147.309|219604.508|114.885 +637142.746|219608.769|115.407 +637138.113|219613.088|115.495 +637133.505|219617.383|115.455 +637128.893|219621.680|115.394 +637124.291|219625.969|115.443 +637119.676|219630.270|115.416 +637115.061|219634.570|115.410 +637110.511|219638.813|115.513 +637105.969|219643.050|115.675 +637101.424|219647.290|115.846 +637096.880|219651.527|116.047 +637092.387|219655.718|116.248 +637087.818|219659.976|116.336 +637083.304|219664.185|116.461 +637078.772|219668.412|116.498 +637074.258|219672.622|116.656 +637069.780|219676.795|116.760 +637065.296|219680.976|116.851 +637060.813|219685.155|116.952 +637056.323|219689.343|117.025 +637051.882|219693.482|117.135 +637047.444|219697.622|117.251 +637042.951|219701.809|117.385 +637038.556|219705.909|117.498 +637034.109|219710.057|117.626 +637033.335|219707.976|117.799 +637037.755|219703.839|117.540 +637042.208|219699.676|117.482 +637046.688|219695.485|117.321 +637051.172|219691.291|117.190 +637055.662|219687.094|117.101 +637060.139|219682.906|116.979 +637064.632|219678.706|116.940 +637069.158|219674.472|116.848 +637073.666|219670.257|116.662 +637078.199|219666.020|116.626 +637082.758|219661.756|116.477 +637087.312|219657.495|116.321 +637091.826|219653.273|116.239 +637096.389|219649.009|116.163 +637100.967|219644.723|115.913 +637105.548|219640.438|115.684 +637110.093|219636.186|115.562 +637114.729|219631.849|115.416 +637119.325|219627.551|115.330 +637123.955|219623.223|115.486 +637128.594|219618.882|115.404 +637133.252|219614.530|115.452 +637137.909|219610.177|115.529 +637142.603|219605.788|115.538 +637147.227|219601.463|115.449 +637151.902|219597.092|115.370 +637156.618|219592.685|115.590 +637161.330|219588.283|115.794 +637166.091|219583.836|116.044 +637170.776|219579.456|116.123 +637175.494|219575.046|116.111 +637180.255|219570.593|116.105 +637184.909|219566.240|116.047 +637189.676|219561.784|116.105 +637194.431|219557.340|116.108 +637199.134|219552.942|116.102 +637203.880|219548.507|116.065 +637208.617|219544.075|116.016 +637213.411|219539.592|116.028 +637218.191|219535.123|115.946 +637222.961|219530.661|115.833 +637227.725|219526.205|115.687 +637232.483|219521.752|115.516 +637237.234|219517.305|115.327 +637242.041|219512.809|115.181 +637246.790|219508.365|115.013 +637261.259|219494.832|114.779 +637266.075|219490.330|114.821 +637270.918|219485.800|114.709 +637285.058|219472.517|111.264 +637289.727|219468.122|109.762 +637294.412|219463.708|107.954 +637299.155|219459.255|107.061 +637293.281|219459.719|107.835 +637288.624|219464.089|109.082 +637270.119|219481.460|114.654 +637265.380|219485.886|114.834 +637260.558|219490.385|114.773 +637255.800|219494.826|114.846 +637251.039|219499.269|114.928 +637246.290|219503.707|115.105 +637241.578|219508.106|115.221 +637236.814|219512.553|115.327 +637232.108|219516.948|115.526 +637227.350|219521.392|115.699 +637222.641|219525.793|115.897 +637217.919|219530.201|116.025 +637213.237|219534.572|116.102 +637208.498|219538.997|116.129 +637203.804|219543.380|116.163 +637199.107|219547.763|116.190 +637194.407|219552.149|116.227 +637189.701|219556.542|116.236 +637185.037|219560.897|116.211 +637180.334|219565.286|116.288 +637175.662|219569.648|116.233 +637170.989|219574.010|116.227 +637166.304|219578.380|116.132 +637161.595|219582.773|115.922 +637156.889|219587.162|115.760 +637152.256|219591.487|115.748 +637147.611|219595.821|115.690 +637142.963|219600.158|115.632 +637138.305|219604.505|115.544 +637133.697|219608.806|115.465 +637129.012|219613.173|115.251 +637124.419|219617.465|115.306 +637119.813|219621.763|115.321 +637115.214|219626.057|115.370 +637110.678|219630.291|115.544 +637106.155|219634.519|115.794 +637101.571|219638.801|115.989 +637097.011|219643.059|116.071 +637092.515|219647.259|116.242 +637087.955|219651.517|116.339 +637083.402|219655.769|116.495 +637078.939|219659.939|116.626 +637074.410|219664.167|116.662 +637069.893|219668.385|116.803 +637065.418|219672.564|116.915 +637060.944|219676.743|117.034 +637056.457|219680.934|117.110 +637051.974|219685.122|117.217 +637047.533|219689.267|117.306 +637043.046|219693.458|117.434 +637038.651|219697.561|117.540 +637034.222|219701.697|117.735 +637035.999|219697.256|117.702 +637040.425|219693.110|117.525 +637044.902|219688.919|117.363 +637049.392|219684.722|117.281 +637053.866|219680.534|117.135 +637058.353|219676.337|117.065 +637062.834|219672.146|116.995 +637067.354|219667.919|116.864 +637071.908|219663.655|116.681 +637076.379|219659.473|116.601 +637080.954|219655.193|116.550 +637085.511|219650.932|116.425 +637090.071|219646.665|116.336 +637094.603|219642.422|116.108 +637099.151|219638.167|115.980 +637103.735|219633.879|115.800 +637108.328|219629.581|115.690 +637112.912|219625.292|115.532 +637117.533|219620.967|115.315 +637122.130|219616.670|115.269 +637126.775|219612.326|115.254 +637131.420|219607.983|115.230 +637136.089|219603.621|115.398 +637140.750|219599.265|115.529 +637145.404|219594.913|115.644 +637150.101|219590.524|115.727 +637154.786|219586.144|115.769 +637159.471|219581.767|115.812 +637164.186|219577.366|116.077 +637168.913|219572.943|116.150 +637173.601|219568.566|116.269 +637178.307|219564.165|116.236 +637183.029|219559.751|116.306 +637187.777|219555.310|116.269 +637192.484|219550.912|116.275 +637197.181|219546.517|116.269 +637201.966|219542.042|116.193 +637206.660|219537.653|116.184 +637211.439|219533.185|116.114 +637216.173|219528.759|116.065 +637220.934|219524.306|115.900 +637225.689|219519.856|115.715 +637230.395|219515.451|115.529 +637235.198|219510.959|115.367 +637239.950|219506.512|115.218 +637244.754|219502.019|115.074 +637249.509|219497.572|114.986 +637254.309|219493.079|114.882 +637259.116|219488.586|114.831 +637263.975|219484.045|114.828 +637268.754|219479.570|114.611 +637278.139|219470.755|112.429 +637292.108|219457.606|107.579 +637284.384|219460.048|109.698 +637279.766|219464.385|111.271 +637265.858|219477.431|114.663 +637256.370|219486.291|114.965 +637251.603|219490.738|114.986 +637246.845|219495.182|115.071 +637242.136|219499.580|115.172 +637237.381|219504.018|115.330 +637232.717|219508.374|115.465 +637227.959|219512.818|115.617 +637223.305|219517.164|115.849 +637218.593|219521.566|116.041 +637213.871|219525.970|116.175 +637209.193|219530.338|116.275 +637204.502|219534.715|116.321 +637199.808|219539.095|116.358 +637195.105|219543.481|116.342 +637190.408|219547.864|116.409 +637185.748|219552.210|116.397 +637181.041|219556.602|116.428 +637176.372|219560.958|116.382 +637171.693|219565.320|116.312 +637166.993|219569.703|116.123 +637162.314|219574.065|116.092 +637157.621|219578.441|115.989 +637152.969|219582.776|115.870 +637148.309|219587.122|115.705 +637143.606|219591.505|115.602 +637138.982|219595.818|115.385 +637134.337|219600.149|115.382 +637129.689|219604.487|115.373 +637125.086|219608.778|115.379 +637120.499|219613.061|115.468 +637115.906|219617.346|115.550 +637111.306|219621.638|115.620 +637106.758|219625.884|115.721 +637102.180|219630.157|115.955 +637097.636|219634.400|116.089 +637093.088|219638.646|116.242 +637088.577|219642.852|116.333 +637084.026|219647.101|116.498 +637079.518|219651.307|116.641 +637075.004|219655.522|116.763 +637070.478|219659.747|116.824 +637065.949|219663.972|116.900 +637061.483|219668.141|117.065 +637057.003|219672.320|117.174 +637052.516|219676.508|117.248 +637048.033|219680.693|117.363 +637043.598|219684.829|117.495 +637039.166|219688.968|117.650 +637034.688|219693.150|117.842 +637037.651|219687.780|117.735 +637042.141|219683.573|117.632 +637046.658|219679.340|117.443 +637051.138|219675.142|117.327 +637055.619|219670.945|117.239 +637060.197|219666.660|117.144 +637064.702|219662.435|116.955 +637069.225|219658.202|116.858 +637073.794|219653.922|116.772 +637078.357|219649.649|116.669 +637082.905|219645.388|116.504 +637087.468|219641.115|116.431 +637092.049|219636.820|116.199 +637096.645|219632.516|116.065 +637101.190|219628.261|115.946 +637105.832|219623.915|115.818 +637110.404|219619.629|115.602 +637115.058|219615.274|115.586 +637119.700|219610.927|115.532 +637124.339|219606.587|115.455 +637128.969|219602.249|115.361 +637133.672|219597.851|115.413 +637138.366|219593.459|115.440 +637143.063|219589.064|115.516 +637147.775|219584.656|115.705 +637152.479|219580.258|115.858 +637157.221|219575.823|115.958 +637161.912|219571.434|116.083 +637166.640|219567.008|116.138 +637171.355|219562.598|116.132 +637176.107|219558.154|116.406 +637180.871|219553.695|116.443 +637185.583|219549.287|116.470 +637190.332|219544.843|116.446 +637195.071|219540.405|116.385 +637199.808|219535.971|116.324 +637204.599|219531.487|116.312 +637209.342|219527.049|116.318 +637214.106|219522.587|116.156 +637218.870|219518.124|116.016 +637223.671|219513.629|115.800 +637228.420|219509.179|115.586 +637233.171|219504.728|115.404 +637237.975|219500.230|115.276 +637242.776|219495.737|115.117 +637247.582|219491.235|115.044 +637252.389|219486.736|114.986 +637257.245|219482.188|114.965 +637262.030|219477.708|114.764 +637276.270|219464.333|112.164 +637280.876|219459.993|110.551 +637275.286|219460.395|111.999 +637261.234|219473.566|114.575 +637256.510|219477.985|114.873 +637251.709|219482.469|114.962 +637246.945|219486.919|114.971 +637242.194|219491.360|115.099 +637237.436|219495.807|115.199 +637232.733|219500.202|115.361 +637228.020|219504.604|115.495 +637223.272|219509.044|115.696 +637218.568|219513.440|115.931 +637213.908|219517.798|116.108 +637209.144|219522.251|116.272 +637204.453|219526.634|116.281 +637199.771|219531.011|116.364 +637195.087|219535.388|116.461 +637190.399|219539.768|116.547 +637185.696|219544.164|116.534 +637181.008|219548.537|116.330 +637176.280|219552.954|116.202 +637171.623|219557.307|116.236 +637166.944|219561.671|116.166 +637162.263|219566.048|116.068 +637157.617|219570.383|115.931 +637152.951|219574.738|115.669 +637148.275|219579.106|115.693 +637143.612|219583.458|115.507 +637138.967|219587.796|115.449 +637134.331|219592.130|115.458 +637129.743|219596.416|115.495 +637125.153|219600.704|115.522 +637120.505|219605.044|115.535 +637115.915|219609.336|115.608 +637111.367|219613.585|115.647 +637106.728|219617.919|115.775 +637102.183|219622.168|115.873 +637097.648|219626.408|116.044 +637093.103|219630.657|116.175 +637088.553|219634.912|116.294 +637084.011|219639.155|116.486 +637079.506|219643.367|116.617 +637074.953|219647.625|116.766 +637070.435|219651.844|116.867 +637065.970|219656.019|116.986 +637061.453|219660.241|117.120 +637056.939|219664.459|117.284 +637052.455|219668.650|117.348 +637047.981|219672.832|117.485 +637043.543|219676.980|117.565 +637039.056|219681.174|117.671 +637034.612|219685.326|117.757 +637035.484|219682.418|117.671 +637039.928|219678.264|117.589 +637044.421|219674.060|117.540 +637048.901|219669.869|117.434 +637053.427|219665.633|117.321 +637057.914|219661.439|117.278 +637062.428|219657.214|117.132 +637066.936|219652.996|116.970 +637071.496|219648.728|116.836 +637076.007|219644.507|116.729 +637080.555|219640.249|116.559 +637085.148|219635.951|116.388 +637089.702|219631.690|116.288 +637094.243|219627.435|116.132 +637098.882|219623.092|115.983 +637103.412|219618.846|115.794 +637108.060|219614.493|115.745 +637112.690|219610.156|115.605 +637117.289|219605.849|115.593 +637121.922|219601.509|115.513 +637126.622|219597.110|115.550 +637131.258|219592.770|115.513 +637135.943|219588.384|115.495 +637140.619|219584.007|115.440 +637145.273|219579.652|115.583 +637150.016|219575.214|115.687 +637154.701|219570.828|115.766 +637159.455|219566.380|115.989 +637164.192|219561.949|116.108 +637168.865|219557.575|116.172 +637173.641|219553.103|116.288 +637178.347|219548.699|116.281 +637183.093|219544.255|116.224 +637187.875|219539.781|116.443 +637192.584|219535.373|116.519 +637197.373|219530.890|116.492 +637202.097|219526.467|116.364 +637206.821|219522.041|116.269 +637211.589|219517.576|116.141 +637216.353|219513.117|115.998 +637221.098|219508.666|115.763 +637225.853|219504.213|115.593 +637230.648|219499.721|115.382 +637235.357|219495.310|115.282 +637240.200|219490.772|115.108 +637244.998|219486.279|114.980 +637249.804|219481.777|114.931 +637254.608|219477.278|114.895 +637259.430|219472.761|114.614 +637264.157|219468.323|113.995 +637261.466|219465.193|114.187 +637256.720|219469.631|114.669 +637251.975|219474.059|114.809 +637247.223|219478.494|114.916 +637242.410|219482.984|114.956 +637237.710|219487.373|115.111 +637232.909|219491.857|115.263 +637228.203|219496.249|115.434 +637223.497|219500.641|115.599 +637218.788|219505.036|115.775 +637214.088|219509.428|116.004 +637209.379|219513.827|116.202 +637204.676|219518.219|116.467 +637199.942|219522.639|116.525 +637195.230|219527.034|116.394 +637190.524|219531.423|116.348 +637185.830|219535.806|116.394 +637181.130|219540.192|116.428 +637176.411|219544.593|116.345 +637171.736|219548.955|116.254 +637167.057|219553.317|116.156 +637162.406|219557.660|116.263 +637157.749|219562.004|116.025 +637153.049|219566.387|115.833 +637148.352|219570.767|115.718 +637143.755|219575.052|115.620 +637139.080|219579.417|115.672 +637134.440|219583.748|115.650 +637129.832|219588.046|115.538 +637125.196|219592.374|115.571 +637120.596|219596.665|115.559 +637116.049|219600.908|115.586 +637111.413|219605.236|115.684 +637106.868|219609.479|115.757 +637102.318|219613.725|115.815 +637097.782|219617.962|115.971 +637093.198|219622.241|116.156 +637088.702|219626.438|116.291 +637084.154|219630.684|116.440 +637079.613|219634.927|116.620 +637075.160|219639.085|116.766 +637070.649|219643.297|116.888 +637066.150|219647.500|117.083 +637061.642|219651.706|117.257 +637057.180|219655.873|117.412 +637052.696|219660.061|117.464 +637048.206|219664.252|117.501 +637043.713|219668.443|117.555 +637039.282|219672.582|117.662 +637034.841|219676.727|117.751 +637034.021|219675.069|117.699 +637038.492|219670.878|117.534 +637042.973|219666.678|117.449 +637047.463|219662.472|117.412 +637051.995|219658.223|117.367 +637056.509|219653.989|117.248 +637060.990|219649.792|117.211 +637065.537|219645.525|117.028 +637070.085|219641.261|116.858 +637074.575|219637.052|116.650 +637079.122|219632.787|116.510 +637083.652|219628.538|116.284 +637088.205|219624.271|116.205 +637092.741|219620.022|116.047 +637097.322|219615.728|115.876 +637101.903|219611.436|115.721 +637106.490|219607.138|115.623 +637111.126|219602.795|115.538 +637115.713|219598.497|115.495 +637120.356|219594.151|115.471 +637124.982|219589.817|115.391 +637129.628|219585.467|115.446 +637134.261|219581.130|115.437 +637139.003|219576.692|115.513 +637143.639|219572.348|115.580 +637148.321|219567.965|115.629 +637153.049|219563.540|115.684 +637157.761|219559.132|115.974 +637162.494|219554.704|116.111 +637167.170|219550.327|116.196 +637171.919|219545.880|116.153 +637176.625|219541.472|116.178 +637181.340|219537.059|116.266 +637186.135|219532.569|116.257 +637190.819|219528.180|116.202 +637195.556|219523.742|116.178 +637200.354|219519.252|116.254 +637205.093|219514.817|116.275 +637209.857|219510.352|116.153 +637214.548|219505.954|115.885 +637219.334|219501.467|115.599 +637224.082|219497.017|115.416 +637228.831|219492.567|115.251 +637233.623|219488.077|115.050 +637238.374|219483.627|114.946 +637243.169|219479.134|114.824 +637247.960|219474.642|114.700 +637252.764|219470.146|114.663 +637257.534|219465.674|114.389 +637262.326|219461.179|113.925 +637267.047|219456.744|113.300 +637257.482|219460.721|114.276 +637252.706|219465.193|114.514 +637247.957|219469.637|114.590 +637243.212|219474.075|114.730 +637238.414|219478.564|114.867 +637233.659|219483.011|114.965 +637228.907|219487.458|115.090 +637224.162|219491.902|115.300 +637219.465|219496.298|115.519 +637214.734|219500.726|115.882 +637210.031|219505.131|116.071 +637205.291|219509.557|116.044 +637200.561|219513.979|116.086 +637195.836|219518.396|116.199 +637191.100|219522.824|116.242 +637186.403|219527.214|116.242 +637181.700|219531.609|116.214 +637176.963|219536.035|116.333 +637172.306|219540.387|116.324 +637167.536|219544.843|116.245 +637162.860|219549.211|116.160 +637158.178|219553.585|116.041 +637153.484|219557.968|115.876 +637148.790|219562.351|115.739 +637144.093|219566.740|115.599 +637139.406|219571.117|115.544 +637134.770|219575.451|115.516 +637130.118|219579.795|115.419 +637125.482|219584.129|115.431 +637120.843|219588.463|115.449 +637116.204|219592.798|115.504 +637111.611|219597.092|115.529 +637107.024|219601.381|115.620 +637102.424|219605.678|115.647 +637097.846|219609.961|115.821 +637093.314|219614.201|115.998 +637088.769|219618.447|116.123 +637084.234|219622.689|116.309 +637079.689|219626.938|116.461 +637075.209|219631.132|116.705 +637070.664|219635.381|116.891 +637066.171|219639.584|117.101 +637061.654|219643.806|117.196 +637057.137|219648.027|117.312 +637052.665|219652.209|117.403 +637048.176|219656.403|117.427 +637043.686|219660.600|117.461 +637039.154|219664.837|117.559 +637034.719|219668.986|117.644 +637036.325|219664.398|117.577 +637040.809|219660.192|117.504 +637045.341|219655.940|117.458 +637049.867|219651.697|117.373 +637054.336|219647.506|117.269 +637058.899|219643.227|117.165 +637063.474|219638.938|117.138 +637067.982|219634.708|117.031 +637072.526|219630.447|116.858 +637077.059|219626.192|116.647 +637081.634|219621.897|116.409 +637086.154|219617.657|116.144 +637090.744|219613.353|116.013 +637095.316|219609.065|115.800 +637099.891|219604.773|115.623 +637104.533|219600.421|115.562 +637109.160|219596.080|115.428 +637113.757|219591.770|115.449 +637118.435|219587.384|115.367 +637123.068|219583.041|115.327 +637127.753|219578.652|115.330 +637132.444|219574.253|115.385 +637137.077|219569.913|115.398 +637141.823|219565.469|115.526 +637146.511|219561.077|115.626 +637151.204|219556.679|115.800 +637155.965|219552.226|116.092 +637160.690|219547.797|116.190 +637165.399|219543.383|116.184 +637170.108|219538.970|116.217 +637174.875|219534.504|116.330 +637179.630|219530.048|116.376 +637184.315|219525.656|116.300 +637189.073|219521.194|116.056 +637193.813|219516.750|116.071 +637198.549|219512.312|116.065 +637203.322|219507.837|115.989 +637208.035|219503.418|115.867 +637212.808|219498.943|115.824 +637217.553|219494.493|115.617 +637222.330|219490.010|115.300 +637227.060|219485.569|115.007 +637231.867|219481.064|114.928 +637236.655|219476.571|114.754 +637241.456|219472.072|114.669 +637246.247|219467.576|114.556 +637251.036|219463.087|114.410 +637255.821|219458.600|114.273 +637248.604|219460.279|114.407 +637243.858|219464.717|114.535 +637239.106|219469.158|114.626 +637234.354|219473.602|114.721 +637229.602|219478.046|114.849 +637224.908|219482.435|115.065 +637220.208|219486.831|115.257 +637215.463|219491.272|115.474 +637210.763|219495.667|115.705 +637206.050|219500.074|115.846 +637201.323|219504.497|115.888 +637196.635|219508.880|115.903 +637191.941|219513.275|116.230 +637187.278|219517.640|116.440 +637182.581|219522.029|116.434 +637177.868|219526.436|116.327 +637173.159|219530.838|116.288 +637168.459|219535.233|116.327 +637163.799|219539.592|116.303 +637159.123|219543.962|116.211 +637154.426|219548.348|116.007 +637149.723|219552.744|115.779 +637145.017|219557.139|115.553 +637140.375|219561.476|115.455 +637135.733|219565.817|115.358 +637131.036|219570.206|115.263 +637126.397|219574.543|115.254 +637121.809|219578.835|115.254 +637117.167|219583.175|115.251 +637112.574|219587.470|115.266 +637107.941|219591.801|115.361 +637103.348|219596.099|115.398 +637098.760|219600.390|115.501 +637094.225|219604.633|115.641 +637089.653|219608.912|115.882 +637085.127|219613.149|116.099 +637080.610|219617.377|116.385 +637076.074|219621.623|116.580 +637071.578|219625.829|116.754 +637067.037|219630.081|116.940 +637062.526|219634.299|117.040 +637058.009|219638.524|117.141 +637053.488|219642.751|117.220 +637049.020|219646.933|117.330 +637044.533|219651.130|117.360 +637040.004|219655.364|117.452 +637035.569|219659.512|117.537 +637035.408|219656.772|117.418 +637039.839|219652.624|117.330 +637044.366|219648.381|117.248 +637048.895|219644.144|117.174 +637053.373|219639.950|117.132 +637057.896|219635.717|117.068 +637062.443|219631.452|116.900 +637066.945|219627.237|116.748 +637071.496|219622.976|116.614 +637076.025|219618.730|116.379 +637080.567|219614.475|116.224 +637085.090|219610.238|115.983 +637089.662|219605.956|115.754 +637094.231|219601.673|115.516 +637098.812|219597.388|115.352 +637103.400|219593.090|115.266 +637108.036|219588.753|115.175 +637112.681|219584.406|115.169 +637117.317|219580.066|115.126 +637121.956|219575.723|115.135 +637126.595|219571.385|115.138 +637131.277|219567.002|115.132 +637135.977|219562.607|115.273 +637140.616|219558.267|115.352 +637145.364|219553.829|115.513 +637150.065|219549.434|115.702 +637154.816|219544.990|115.955 +637159.556|219540.561|116.126 +637164.232|219536.187|116.230 +637168.990|219531.737|116.245 +637173.696|219527.332|116.269 +637178.441|219522.892|116.239 +637183.151|219518.487|116.327 +637187.899|219514.043|116.367 +637192.627|219509.617|116.288 +637197.357|219505.183|115.897 +637202.054|219500.781|115.617 +637206.840|219496.304|115.647 +637211.555|219491.890|115.538 +637216.346|219487.404|115.306 +637221.092|219482.957|115.102 +637225.832|219478.519|114.867 +637230.578|219474.075|114.681 +637235.375|219469.582|114.568 +637240.176|219465.089|114.486 +637244.976|219460.596|114.416 +637243.724|219456.698|114.346 +637238.975|219461.136|114.459 +637234.217|219465.583|114.514 +637229.523|219469.972|114.690 +637224.771|219474.413|114.831 +637220.099|219478.787|115.199 +637215.392|219483.188|115.340 +637210.665|219487.602|115.364 +637205.983|219491.976|115.367 +637201.332|219496.331|115.958 +637196.687|219500.672|116.278 +637192.002|219505.045|116.330 +637187.305|219509.428|116.297 +637182.614|219513.808|116.342 +637177.923|219518.188|116.400 +637173.260|219522.541|116.321 +637168.545|219526.942|116.248 +637163.881|219531.295|116.230 +637159.254|219535.614|116.123 +637154.524|219540.027|116.019 +637149.863|219544.374|115.745 +637145.212|219548.711|115.559 +637140.515|219553.091|115.419 +637135.873|219557.422|115.340 +637131.261|219561.723|115.163 +637126.555|219566.115|115.017 +637121.980|219570.389|115.099 +637117.384|219574.677|115.084 +637112.745|219579.008|115.120 +637108.194|219583.257|115.099 +637103.604|219587.543|115.175 +637099.017|219591.825|115.282 +637094.490|219596.056|115.462 +637090.013|219600.241|115.666 +637085.428|219604.520|115.846 +637080.951|219608.705|116.086 +637076.422|219612.936|116.315 +637071.938|219617.127|116.544 +637067.403|219621.367|116.769 +637062.946|219625.527|116.903 +637058.478|219629.697|116.989 +637053.958|219633.918|117.071 +637049.441|219638.137|117.196 +637044.969|219642.312|117.309 +637040.534|219646.452|117.373 +637036.045|219650.646|117.412 +637034.347|219649.658|117.421 +637038.821|219645.461|117.303 +637043.302|219641.258|117.239 +637047.831|219637.012|117.190 +637052.355|219632.772|117.110 +637056.856|219628.545|116.946 +637061.419|219624.265|116.858 +637065.961|219620.004|116.662 +637070.509|219615.740|116.516 +637075.032|219611.494|116.239 +637079.558|219607.248|116.001 +637084.136|219602.950|115.809 +637088.650|219598.714|115.541 +637093.283|219594.370|115.385 +637097.864|219590.073|115.257 +637102.446|219585.775|115.151 +637107.124|219581.386|115.041 +637111.715|219577.082|115.017 +637116.354|219572.736|115.001 +637121.035|219568.346|114.968 +637125.711|219563.960|114.925 +637130.371|219559.596|115.108 +637135.123|219555.146|115.269 +637139.814|219550.750|115.385 +637144.496|219546.361|115.468 +637149.248|219541.911|115.693 +637154.003|219537.461|115.955 +637158.742|219533.023|116.156 +637163.448|219528.610|116.169 +637168.203|219524.153|116.181 +637172.961|219519.694|116.245 +637177.667|219515.284|116.294 +637182.419|219510.831|116.370 +637187.192|219506.353|116.251 +637191.962|219501.882|116.132 +637196.696|219497.444|116.117 +637201.460|219492.975|116.004 +637206.178|219488.547|115.562 +637210.881|219484.127|115.035 +637215.670|219479.637|115.154 +637220.480|219475.129|115.074 +637225.253|219470.649|114.736 +637229.998|219466.199|114.593 +637234.839|219461.657|114.431 +637239.591|219457.204|114.361 +637234.814|219456.454|114.340 +637230.066|219460.895|114.462 +637225.335|219465.321|114.739 +637220.577|219469.771|114.828 +637215.813|219474.224|114.888 +637211.116|219478.616|115.111 +637206.422|219483.014|115.711 +637201.725|219487.407|115.977 +637196.979|219491.845|115.867 +637192.264|219496.252|116.031 +637187.595|219500.620|116.169 +637182.855|219505.049|116.187 +637178.207|219509.395|116.163 +637173.461|219513.830|116.190 +637168.801|219518.185|116.132 +637164.098|219522.581|116.135 +637159.428|219526.945|116.056 +637154.749|219531.313|115.946 +637150.055|219535.699|115.736 +637145.358|219540.085|115.550 +637140.704|219544.432|115.337 +637136.013|219548.815|115.233 +637131.371|219553.152|115.138 +637126.717|219557.499|114.995 +637122.032|219561.872|114.675 +637117.457|219566.149|114.760 +637112.830|219570.474|114.858 +637108.243|219574.766|114.892 +637103.659|219579.051|114.977 +637099.071|219583.340|115.062 +637094.472|219587.637|115.096 +637089.946|219591.874|115.269 +637085.413|219596.114|115.431 +637080.899|219600.335|115.727 +637076.373|219604.572|115.961 +637071.892|219608.763|116.196 +637067.363|219613.003|116.431 +637062.873|219617.200|116.638 +637058.374|219621.409|116.809 +637053.915|219625.579|116.934 +637049.398|219629.803|117.031 +637044.875|219634.031|117.107 +637040.400|219638.216|117.211 +637035.959|219642.367|117.223 +637037.691|219638.451|117.117 +637042.165|219634.257|117.025 +637046.652|219630.053|117.028 +637051.215|219625.780|116.903 +637055.726|219621.552|116.800 +637060.225|219617.337|116.635 +637064.763|219613.082|116.440 +637069.292|219608.836|116.187 +637073.822|219604.590|115.958 +637078.348|219600.347|115.733 +637082.905|219596.071|115.419 +637087.425|219591.831|115.184 +637092.018|219587.528|115.111 +637096.648|219583.190|114.971 +637101.242|219578.886|114.943 +637105.829|219574.586|114.898 +637110.507|219570.203|114.803 +637115.122|219565.878|114.648 +637119.737|219561.549|114.526 +637124.464|219557.127|114.806 +637129.122|219552.771|114.971 +637133.813|219548.376|115.087 +637138.510|219543.981|115.230 +637143.203|219539.589|115.388 +637147.943|219535.151|115.559 +637152.683|219530.713|115.748 +637157.374|219526.321|115.961 +637162.138|219521.861|116.019 +637166.847|219517.451|116.062 +637171.544|219513.050|116.056 +637176.290|219508.606|116.062 +637180.987|219504.207|116.080 +637185.766|219499.730|116.010 +637190.451|219495.341|115.995 +637195.212|219490.878|115.836 +637199.939|219486.450|115.806 +637204.709|219481.978|115.763 +637209.434|219477.549|115.382 +637214.134|219473.136|114.852 +637218.879|219468.686|114.672 +637223.695|219464.175|114.669 +637228.474|219459.694|114.410 +637222.479|219460.029|114.462 +637217.715|219464.477|114.529 +637213.024|219468.866|115.145 +637208.318|219473.261|115.291 +637203.581|219477.687|115.602 +637198.887|219482.073|115.873 +637194.169|219486.477|115.980 +637189.433|219490.897|116.001 +637184.702|219495.313|116.056 +637180.005|219499.696|116.044 +637175.272|219504.116|116.126 +637170.568|219508.505|116.092 +637165.865|219512.891|116.096 +637161.159|219517.283|116.077 +637156.484|219521.645|115.986 +637151.756|219526.052|115.873 +637147.056|219530.435|115.641 +637142.359|219534.815|115.462 +637137.671|219539.189|115.352 +637132.971|219543.569|115.196 +637128.320|219547.910|115.041 +637123.669|219552.247|114.934 +637118.993|219556.606|114.678 +637114.342|219560.943|114.605 +637109.727|219565.253|114.773 +637105.134|219569.538|114.800 +637100.550|219573.818|114.879 +637095.959|219578.103|114.956 +637091.418|219582.343|115.032 +637086.831|219586.625|115.160 +637082.304|219590.853|115.373 +637077.784|219595.074|115.632 +637073.261|219599.299|115.900 +637068.735|219603.530|116.147 +637064.205|219607.760|116.400 +637059.719|219611.948|116.638 +637055.268|219616.106|116.809 +637050.754|219620.318|116.912 +637046.237|219624.536|117.007 +637041.757|219628.715|117.062 +637037.282|219632.894|117.156 +637035.801|219631.529|116.952 +637040.348|219627.274|116.992 +637044.860|219623.049|116.848 +637049.389|219618.809|116.824 +637053.949|219614.536|116.714 +637058.487|219610.287|116.489 +637063.029|219606.032|116.300 +637067.558|219601.786|116.068 +637072.084|219597.546|115.821 +637076.641|219593.276|115.474 +637081.216|219588.991|115.257 +637085.782|219584.714|115.001 +637090.369|219580.420|114.895 +637095.005|219576.079|114.779 +637099.644|219571.739|114.718 +637104.283|219567.399|114.669 +637108.904|219563.070|114.532 +637113.522|219558.748|114.386 +637118.246|219554.332|114.639 +637122.910|219549.973|114.809 +637127.656|219545.535|114.922 +637132.350|219541.143|115.041 +637137.043|219536.754|115.175 +637141.786|219532.319|115.321 +637146.480|219527.933|115.504 +637151.268|219523.455|115.687 +637156.005|219519.027|115.867 +637160.733|219514.607|115.998 +637165.478|219510.166|115.961 +637170.178|219505.768|115.967 +637174.930|219501.324|115.989 +637179.670|219496.889|115.971 +637184.449|219492.415|115.900 +637189.198|219487.974|115.983 +637193.925|219483.551|115.928 +637198.729|219479.052|115.751 +637203.423|219474.654|115.492 +637208.199|219470.179|115.117 +637212.948|219465.732|114.949 +637217.724|219461.258|114.614 +637222.436|219456.841|114.194 +637213.902|219459.722|114.849 +637209.147|219464.169|114.971 +637204.438|219468.570|115.108 +637199.707|219472.996|115.455 +637195.004|219477.394|115.657 +637190.347|219481.747|115.870 +637185.626|219486.160|115.964 +637180.923|219490.549|115.879 +637176.177|219494.981|115.873 +637171.489|219499.361|115.916 +637166.792|219503.747|115.952 +637162.089|219508.142|115.931 +637157.428|219512.495|115.900 +637152.698|219516.908|115.766 +637147.955|219521.334|115.559 +637143.310|219525.668|115.367 +637138.570|219530.094|115.215 +637133.931|219534.422|115.120 +637129.241|219538.802|115.010 +637124.589|219543.142|114.873 +637119.923|219547.495|114.663 +637115.247|219551.860|114.395 +637110.575|219556.218|114.194 +637106.015|219560.483|114.395 +637101.385|219564.808|114.495 +637096.795|219569.096|114.553 +637092.201|219573.385|114.605 +637087.623|219577.664|114.776 +637083.048|219581.941|114.962 +637078.528|219586.168|115.205 +637074.011|219590.393|115.489 +637069.490|219594.617|115.763 +637064.967|219598.845|116.044 +637060.474|219603.045|116.224 +637055.936|219607.288|116.431 +637051.425|219611.503|116.547 +637046.920|219615.712|116.699 +637042.397|219619.940|116.766 +637037.874|219624.165|116.848 +637033.381|219628.362|116.848 +637034.780|219624.079|116.675 +637039.318|219619.830|116.678 +637043.799|219615.636|116.638 +637048.362|219611.360|116.544 +637052.867|219607.138|116.406 +637057.408|219602.883|116.211 +637061.947|219598.628|116.013 +637066.485|219594.376|115.839 +637071.048|219590.097|115.532 +637075.559|219585.866|115.233 +637080.180|219581.535|114.998 +637084.743|219577.259|114.736 +637089.318|219572.970|114.562 +637093.951|219568.630|114.459 +637098.532|219564.335|114.361 +637103.220|219559.946|114.315 +637107.837|219555.621|114.172 +637112.477|219551.278|114.172 +637117.198|219546.861|114.404 +637121.916|219542.445|114.654 +637126.625|219538.040|114.867 +637131.374|219533.596|115.026 +637136.065|219529.207|115.163 +637140.796|219524.778|115.254 +637145.526|219520.350|115.361 +637150.269|219515.915|115.586 +637155.054|219511.437|115.785 +637159.766|219507.027|115.836 +637164.518|219502.577|115.849 +637169.218|219498.175|115.879 +637174.004|219493.695|115.821 +637178.752|219489.248|115.882 +637183.477|219484.822|115.788 +637188.235|219480.363|115.593 +637193.008|219475.891|115.544 +637197.754|219471.444|115.300 +637202.509|219466.988|115.141 +637207.251|219462.544|114.907 +637212.064|219458.036|114.855 +637204.993|219459.136|114.907 +637200.329|219463.492|115.035 +637195.617|219467.893|115.175 +637190.883|219472.310|115.193 +637186.220|219476.672|115.358 +637181.557|219481.030|115.547 +637176.902|219485.383|115.812 +637172.220|219489.760|115.900 +637167.508|219494.158|115.803 +637162.857|219498.504|115.794 +637158.157|219502.894|115.812 +637153.490|219507.252|115.757 +637148.806|219511.623|115.596 +637144.118|219516.000|115.428 +637139.436|219520.371|115.337 +637134.782|219524.714|115.099 +637130.134|219529.052|114.946 +637125.476|219533.401|114.745 +637120.813|219537.751|114.538 +637116.155|219542.100|114.379 +637111.486|219546.456|114.181 +637106.883|219550.753|114.114 +637102.250|219555.082|114.175 +637097.718|219559.318|114.267 +637093.085|219563.646|114.367 +637088.553|219567.886|114.483 +637083.969|219572.169|114.626 +637079.451|219576.393|114.870 +637074.928|219580.621|115.108 +637070.414|219584.845|115.398 +637065.936|219589.030|115.641 +637061.398|219593.273|115.843 +637056.914|219597.464|116.074 +637052.412|219601.673|116.220 +637047.908|219605.883|116.364 +637043.393|219610.101|116.464 +637038.870|219614.329|116.537 +637034.441|219618.468|116.601 +637033.661|219616.392|116.452 +637038.187|219612.155|116.382 +637042.659|219607.974|116.306 +637047.173|219603.746|116.220 +637051.724|219599.485|116.068 +637056.268|219595.230|115.897 +637060.764|219591.021|115.745 +637065.296|219586.775|115.526 +637069.865|219582.495|115.263 +637074.389|219578.262|115.010 +637078.951|219573.988|114.736 +637083.530|219569.706|114.544 +637088.096|219565.433|114.309 +637092.683|219561.141|114.227 +637097.310|219556.813|114.093 +637101.952|219552.469|114.072 +637106.576|219548.147|113.944 +637111.236|219543.792|114.075 +637115.902|219539.430|114.282 +637120.612|219535.032|114.447 +637125.315|219530.637|114.608 +637129.972|219526.284|114.818 +637134.718|219521.852|114.965 +637139.424|219517.457|115.215 +637144.170|219513.022|115.422 +637148.900|219508.599|115.559 +637153.625|219504.186|115.669 +637158.334|219499.782|115.696 +637163.083|219495.344|115.672 +637167.786|219490.945|115.699 +637172.504|219486.529|115.513 +637177.250|219482.094|115.529 +637181.992|219477.653|115.212 +637186.726|219473.224|115.187 +637191.499|219468.762|115.108 +637196.260|219464.309|114.965 +637201.021|219459.856|114.831 +637196.251|219459.240|114.968 +637191.569|219463.611|114.977 +637186.830|219468.027|114.965 +637182.157|219472.389|115.090 +637177.484|219476.751|115.224 +637172.793|219481.125|115.257 +637168.142|219485.468|115.599 +637163.457|219489.842|115.705 +637158.806|219494.179|115.718 +637154.128|219498.541|115.580 +637149.470|219502.884|115.605 +637144.773|219507.258|115.379 +637140.079|219511.635|115.178 +637135.425|219515.973|114.965 +637130.774|219520.307|114.785 +637126.068|219524.693|114.581 +637121.410|219529.030|114.422 +637116.805|219533.325|114.276 +637112.144|219537.668|114.126 +637107.533|219541.966|114.002 +637102.857|219546.325|113.794 +637098.303|219550.577|114.062 +637093.710|219554.862|114.090 +637089.168|219559.096|114.178 +637084.587|219563.372|114.319 +637080.064|219567.597|114.535 +637075.538|219571.818|114.757 +637071.014|219576.043|115.001 +637066.543|219580.218|115.285 +637062.017|219584.446|115.538 +637057.521|219588.640|115.711 +637053.022|219592.837|115.867 +637048.520|219597.037|116.038 +637044.046|219601.213|116.074 +637039.577|219605.383|116.178 +637035.057|219609.598|116.294 +637037.553|219604.819|116.178 +637042.107|219600.549|116.016 +637046.621|219596.321|115.916 +637051.129|219592.097|115.809 +637055.677|219587.832|115.663 +637060.225|219583.574|115.513 +637064.748|219579.335|115.245 +637069.314|219575.049|114.968 +637073.840|219570.806|114.757 +637078.357|219566.573|114.504 +637082.975|219562.244|114.273 +637087.541|219557.965|114.050 +637092.134|219553.664|114.011 +637096.773|219549.321|113.959 +637101.370|219545.011|113.663 +637106.051|219540.631|113.922 +637110.748|219536.233|114.008 +637115.415|219531.868|114.215 +637120.121|219527.467|114.373 +637124.815|219523.071|114.498 +637129.530|219518.664|114.770 +637134.270|219514.226|114.910 +637138.961|219509.837|115.074 +637143.709|219505.396|115.324 +637148.492|219500.922|115.474 +637153.207|219496.508|115.556 +637157.931|219492.088|115.684 +637162.662|219487.657|115.568 +637167.307|219483.298|115.212 +637172.114|219478.802|115.306 +637176.823|219474.386|115.096 +637181.611|219469.905|115.099 +637186.330|219465.485|114.977 +637191.094|219461.020|114.849 +637195.879|219456.543|114.898 +637188.415|219457.878|114.770 +637183.693|219462.288|114.876 +637178.978|219466.692|115.053 +637174.238|219471.115|115.068 +637169.553|219475.489|115.138 +637164.832|219479.899|115.327 +637160.193|219484.231|115.407 +637155.475|219488.641|115.641 +637150.796|219493.003|115.504 +637146.059|219497.422|115.306 +637141.375|219501.790|115.160 +637136.681|219506.170|114.977 +637131.978|219510.553|114.764 +637127.275|219514.939|114.565 +637122.623|219519.280|114.404 +637117.920|219523.663|114.270 +637113.254|219528.015|114.050 +637108.581|219532.374|113.816 +637103.930|219536.714|113.755 +637099.282|219541.042|113.425 +637094.737|219545.294|113.736 +637090.101|219549.623|113.828 +637085.511|219553.908|113.910 +637080.975|219558.142|114.032 +637076.409|219562.409|114.306 +637071.892|219566.630|114.565 +637067.384|219570.843|114.907 +637062.855|219575.076|115.129 +637058.323|219579.310|115.364 +637053.784|219583.550|115.568 +637049.282|219587.753|115.724 +637044.771|219591.965|115.833 +637040.257|219596.181|115.937 +637035.770|219600.369|115.943 +637035.642|219598.180|115.821 +637040.163|219593.950|115.760 +637044.732|219589.679|115.687 +637049.246|219585.455|115.620 +637053.784|219581.206|115.416 +637058.326|219576.957|115.242 +637062.904|219572.672|115.013 +637067.424|219568.438|114.748 +637071.941|219564.207|114.492 +637076.550|219559.888|114.203 +637081.064|219555.661|113.950 +637085.688|219551.332|113.779 +637090.330|219546.992|113.730 +637094.917|219542.697|113.691 +637099.504|219538.400|113.337 +637104.238|219533.977|113.617 +637108.910|219529.609|113.849 +637113.613|219525.214|113.992 +637118.323|219520.810|114.197 +637123.026|219516.415|114.376 +637127.771|219511.977|114.541 +637132.471|219507.588|114.730 +637137.211|219503.156|114.898 +637141.948|219498.727|115.074 +637146.684|219494.298|115.276 +637151.393|219489.894|115.309 +637156.176|219485.425|115.516 +637160.879|219481.018|115.212 +637165.554|219476.641|115.068 +637170.294|219472.209|115.053 +637175.080|219467.732|115.010 +637179.780|219463.330|114.767 +637184.550|219458.865|114.669 +637179.929|219457.780|114.779 +637175.186|219462.200|114.757 +637170.523|219466.549|114.986 +637165.792|219470.960|115.087 +637161.104|219475.330|115.157 +637156.444|219479.680|115.452 +637151.723|219484.078|115.324 +637147.020|219488.461|115.361 +637142.335|219492.823|115.199 +637137.626|219497.206|114.901 +637132.895|219501.613|114.809 +637128.244|219505.945|114.614 +637123.538|219510.328|114.392 +637118.883|219514.662|114.224 +637114.223|219518.999|114.047 +637109.517|219523.382|113.904 +637104.896|219527.686|113.694 +637100.236|219532.029|113.563 +637095.554|219536.385|113.337 +637090.988|219540.646|113.532 +637086.447|219544.880|113.593 +637081.817|219549.196|113.749 +637077.296|219553.411|113.968 +637072.731|219557.672|114.230 +637068.216|219561.882|114.538 +637063.702|219566.097|114.831 +637059.173|219570.322|115.068 +637054.683|219574.510|115.257 +637050.139|219578.746|115.434 +637045.631|219582.949|115.547 +637041.153|219587.122|115.580 +637036.642|219591.328|115.702 +637033.762|219590.749|115.590 +637038.282|219586.522|115.526 +637042.842|219582.258|115.410 +637047.402|219577.993|115.321 +637051.946|219573.738|115.172 +637056.479|219569.499|114.953 +637061.063|219565.210|114.757 +637065.638|219560.931|114.535 +637070.143|219556.715|114.200 +637074.700|219552.454|113.880 +637079.363|219548.096|113.621 +637083.941|219543.816|113.468 +637088.525|219539.531|113.377 +637093.213|219535.151|113.334 +637097.834|219530.832|113.188 +637102.561|219526.421|113.438 +637107.234|219522.059|113.663 +637111.946|219517.661|113.855 +637116.655|219513.269|114.047 +637121.361|219508.877|114.230 +637126.058|219504.491|114.407 +637130.862|219500.010|114.639 +637135.544|219495.639|114.733 +637140.293|219491.208|114.998 +637145.026|219486.791|115.157 +637149.812|219482.323|115.379 +637154.542|219477.903|115.224 +637159.221|219473.529|115.087 +637163.951|219469.109|114.959 +637168.734|219464.641|114.907 +637173.446|219460.237|114.706 +637170.770|219458.054|114.754 +637166.079|219462.428|114.785 +637161.418|219466.778|115.044 +637156.721|219471.158|115.062 +637152.040|219475.526|115.227 +637147.376|219479.875|115.169 +637142.704|219484.228|115.096 +637137.961|219488.647|114.876 +637133.264|219493.021|114.672 +637128.619|219497.346|114.517 +637123.922|219501.726|114.334 +637119.213|219506.109|114.126 +637114.558|219510.447|113.962 +637109.886|219514.799|113.709 +637105.222|219519.142|113.535 +637100.553|219523.492|113.352 +637095.935|219527.796|113.194 +637091.339|219532.081|113.191 +637086.700|219536.406|113.267 +637082.112|219540.686|113.358 +637077.546|219544.947|113.596 +637073.035|219549.159|113.892 +637068.472|219553.417|114.187 +637063.955|219557.633|114.468 +637059.435|219561.851|114.757 +637054.881|219566.100|114.855 +637050.352|219570.325|115.117 +637045.841|219574.534|115.209 +637041.345|219578.731|115.391 +637036.822|219582.949|115.443 +637036.523|219580.151|115.330 +637041.080|219575.887|115.218 +637045.640|219571.629|115.108 +637050.181|219567.377|114.937 +637054.723|219563.131|114.776 +637059.304|219558.846|114.568 +637063.827|219554.612|114.328 +637068.393|219550.339|114.050 +637072.950|219546.075|113.745 +637077.513|219541.801|113.502 +637082.131|219537.482|113.300 +637086.751|219533.160|113.124 +637091.381|219528.829|113.020 +637096.051|219524.467|113.194 +637100.754|219520.072|113.288 +637105.423|219515.710|113.511 +637110.175|219511.273|113.645 +637114.897|219506.862|113.931 +637119.597|219502.473|114.099 +637124.345|219498.038|114.279 +637129.091|219493.603|114.465 +637133.843|219489.165|114.730 +637138.546|219484.770|114.672 +637143.328|219480.308|115.187 +637148.092|219475.855|115.257 +637152.829|219471.429|115.148 +637157.544|219467.012|114.940 +637162.290|219462.578|114.934 +637167.066|219458.112|114.831 +637161.623|219457.768|114.834 +637156.996|219462.087|115.001 +637152.314|219466.458|115.126 +637147.623|219470.835|115.212 +637142.950|219475.190|115.105 +637138.260|219479.561|114.901 +637133.563|219483.938|114.657 +637128.875|219488.306|114.529 +637124.169|219492.692|114.270 +637119.502|219497.038|114.005 +637114.799|219501.421|113.819 +637110.130|219505.774|113.563 +637105.463|219510.120|113.361 +637100.800|219514.467|113.194 +637096.185|219518.771|113.032 +637091.540|219523.102|113.026 +637086.940|219527.390|113.008 +637082.344|219531.679|113.029 +637077.830|219535.894|113.270 +637073.267|219540.155|113.532 +637068.741|219544.380|113.739 +637064.227|219548.595|114.026 +637059.664|219552.856|114.328 +637055.177|219557.044|114.526 +637050.684|219561.239|114.684 +637046.140|219565.478|114.855 +637041.632|219569.685|114.968 +637037.130|219573.888|115.120 +637035.395|219573.074|115.032 +637039.949|219568.819|114.892 +637044.506|219564.561|114.776 +637049.051|219560.315|114.602 +637053.555|219556.103|114.517 +637058.137|219551.823|114.294 +637062.654|219547.599|114.014 +637067.217|219543.335|113.721 +637071.776|219539.073|113.407 +637076.352|219534.794|113.236 +637080.920|219530.527|113.017 +637085.557|219526.196|112.932 +637090.211|219521.852|112.974 +637094.853|219517.518|112.977 +637099.510|219513.171|113.081 +637104.216|219508.779|113.209 +637108.880|219504.430|113.392 +637113.595|219500.031|113.630 +637118.316|219495.630|113.925 +637123.026|219491.238|114.160 +637127.787|219486.800|114.428 +637132.478|219482.423|114.593 +637137.269|219477.952|114.812 +637142.009|219473.529|115.017 +637146.733|219469.122|115.141 +637151.427|219464.739|115.068 +637156.170|219460.310|115.026 +637152.564|219458.408|115.126 +637147.858|219462.791|115.099 +637143.152|219467.174|115.108 +637138.449|219471.548|114.818 +637133.779|219475.900|114.764 +637129.076|219480.274|114.517 +637124.358|219484.660|114.209 +637119.691|219489.004|113.910 +637115.034|219493.338|113.727 +637110.331|219497.715|113.569 +637105.655|219502.065|113.297 +637101.034|219506.365|113.084 +637096.380|219510.696|112.999 +637091.762|219514.994|112.846 +637087.160|219519.280|112.819 +637082.518|219523.605|112.877 +637077.976|219527.835|112.950 +637073.416|219532.087|113.227 +637068.884|219536.312|113.407 +637064.318|219540.570|113.685 +637059.850|219544.737|113.968 +637055.323|219548.955|114.206 +637050.788|219553.186|114.416 +637046.240|219557.422|114.572 +637041.781|219561.577|114.693 +637037.224|219565.823|114.821 +637033.326|219566.856|114.840 +637037.837|219562.638|114.736 +637042.391|219558.379|114.599 +637046.941|219554.124|114.471 +637051.486|219549.876|114.309 +637056.064|219545.590|114.093 +637060.584|219541.359|113.837 +637065.150|219537.086|113.566 +637069.716|219532.813|113.310 +637074.285|219528.536|113.084 +637078.897|219524.220|112.831 +637083.545|219519.877|112.828 +637088.181|219515.540|112.773 +637092.826|219511.199|112.779 +637097.499|219506.835|113.005 +637102.214|219502.430|113.191 +637106.911|219498.041|113.294 +637111.590|219493.676|113.602 +637116.338|219489.239|113.779 +637121.035|219484.852|113.928 +637125.805|219480.396|114.288 +637130.542|219475.974|114.437 +637135.248|219471.578|114.733 +637140.030|219467.113|114.910 +637144.761|219462.690|115.099 +637149.501|219458.262|115.004 +637142.009|219459.490|114.943 +637137.281|219463.894|114.809 +637132.551|219468.299|114.681 +637127.835|219472.688|114.343 +637123.129|219477.068|114.084 +637118.408|219481.463|113.755 +637113.760|219485.791|113.599 +637109.041|219490.180|113.352 +637104.375|219494.527|113.127 +637099.702|219498.876|112.883 +637095.027|219503.229|112.654 +637090.360|219507.575|112.502 +637085.773|219511.852|112.563 +637081.140|219516.171|112.657 +637076.541|219520.456|112.673 +637072.014|219524.681|112.846 +637067.396|219528.988|113.096 +637062.876|219533.203|113.349 +637058.356|219537.421|113.611 +637053.787|219541.682|113.898 +637049.258|219545.910|114.139 +637044.762|219550.101|114.300 +637040.202|219554.350|114.401 +637035.648|219558.599|114.538 +637036.855|219554.826|114.373 +637041.464|219550.525|114.270 +637046.015|219546.276|114.130 +637050.553|219542.033|113.965 +637055.125|219537.760|113.715 +637059.691|219533.489|113.428 +637064.251|219529.225|113.133 +637068.872|219524.906|112.923 +637073.441|219520.636|112.709 +637078.068|219516.311|112.581 +637082.701|219511.983|112.499 +637087.376|219507.615|112.389 +637092.037|219503.265|112.505 +637096.755|219498.864|112.700 +637101.467|219494.466|112.907 +637106.188|219490.061|113.172 +637110.913|219485.657|113.480 +637115.598|219481.283|113.560 +637120.377|219476.830|113.965 +637125.129|219472.395|114.215 +637129.875|219467.970|114.431 +637134.669|219463.495|114.690 +637139.403|219459.078|114.882 +637132.980|219459.231|114.785 +637128.223|219463.650|114.474 +637123.519|219468.018|114.236 +637118.807|219472.395|113.965 +637114.089|219476.775|113.675 +637109.392|219481.143|113.535 +637104.664|219485.532|113.236 +637099.980|219489.882|112.919 +637095.261|219494.265|112.715 +637090.589|219498.605|112.517 +637085.977|219502.894|112.401 +637081.353|219507.194|112.554 +637076.757|219511.468|112.590 +637072.167|219515.735|112.688 +637067.534|219520.045|112.837 +637063.013|219524.254|113.087 +637058.445|219528.506|113.346 +637053.921|219532.718|113.596 +637049.389|219536.934|113.822 +637044.847|219541.161|114.008 +637040.306|219545.386|114.197 +637035.786|219549.589|114.261 +637034.478|219547.736|114.078 +637038.989|219543.523|113.998 +637043.576|219539.238|113.800 +637048.157|219534.962|113.581 +637052.699|219530.722|113.444 +637057.314|219526.412|113.151 +637061.883|219522.145|112.904 +637066.452|219517.878|112.685 +637071.075|219513.562|112.499 +637075.721|219509.227|112.465 +637080.357|219504.902|112.401 +637085.014|219500.553|112.179 +637089.684|219496.200|112.368 +637094.396|219491.808|112.517 +637099.108|219487.416|112.715 +637103.835|219483.011|113.020 +637108.545|219478.622|113.236 +637113.309|219474.184|113.502 +637118.012|219469.801|113.727 +637122.773|219465.367|114.017 +637127.531|219460.932|114.337 +637132.285|219456.503|114.639 +637123.081|219459.652|114.157 +637118.420|219463.986|113.886 +637113.650|219468.421|113.569 +637108.993|219472.752|113.364 +637104.274|219477.138|113.105 +637099.556|219481.530|112.862 +637094.868|219485.886|112.538 +637090.250|219490.183|112.353 +637085.532|219494.573|112.188 +637080.936|219498.852|112.185 +637076.358|219503.116|112.319 +637071.706|219507.444|112.340 +637067.116|219511.721|112.420 +637062.590|219515.939|112.630 +637057.969|219520.246|112.868 +637053.437|219524.467|113.081 +637048.913|219528.683|113.334 +637044.329|219532.956|113.547 +637039.836|219537.141|113.727 +637035.283|219541.384|113.867 +637036.666|219537.013|113.678 +637041.214|219532.767|113.526 +637045.804|219528.479|113.352 +637050.376|219524.205|113.105 +637054.955|219519.929|112.898 +637059.520|219515.662|112.627 +637064.147|219511.340|112.444 +637068.725|219507.063|112.289 +637073.380|219502.717|112.319 +637078.068|219498.343|112.252 +637082.679|219494.033|112.054 +637087.352|219489.677|112.246 +637092.067|219485.279|112.435 +637096.795|219480.872|112.709 +637101.565|219476.425|112.974 +637106.280|219472.026|113.233 +637111.041|219467.589|113.480 +637115.802|219463.151|113.767 +637120.563|219458.713|114.059 +637113.702|219459.432|113.660 +637108.993|219463.812|113.425 +637104.320|219468.158|113.118 +637099.596|219472.554|112.819 +637094.923|219476.900|112.563 +637090.196|219481.295|112.313 +637085.569|219485.602|112.078 +637080.902|219489.946|111.932 +637076.291|219494.246|112.142 +637071.688|219498.529|112.136 +637067.089|219502.814|112.157 +637062.501|219507.088|112.282 +637057.932|219511.346|112.535 +637053.406|219515.567|112.758 +637048.828|219519.834|112.980 +637044.287|219524.065|113.139 +637039.745|219528.302|113.310 +637035.194|219532.542|113.447 +637034.792|219530.164|113.328 +637039.382|219525.882|113.145 +637043.924|219521.645|112.977 +637048.557|219517.323|112.791 +637053.135|219513.053|112.566 +637057.707|219508.785|112.337 +637062.325|219504.475|112.112 +637066.964|219500.150|112.011 +637071.557|219495.865|111.975 +637076.251|219491.491|111.956 +637080.893|219487.166|111.926 +637085.550|219482.822|112.042 +637090.272|219478.427|112.249 +637094.990|219474.035|112.478 +637099.715|219469.634|112.773 +637104.485|219465.193|113.063 +637109.194|219460.810|113.288 +637104.418|219460.228|113.163 +637099.684|219464.623|112.816 +637094.963|219469.009|112.557 +637090.278|219473.355|112.261 +637085.660|219477.650|112.075 +637080.994|219481.984|111.941 +637076.339|219486.312|111.886 +637071.743|219490.586|111.920 +637067.107|219494.899|112.020 +637062.547|219499.138|111.996 +637057.960|219503.406|112.133 +637053.376|219507.670|112.316 +637048.843|219511.891|112.505 +637044.314|219516.107|112.740 +637039.772|219520.331|112.932 +637035.225|219524.562|113.078 +637037.288|219520.072|112.898 +637041.876|219515.793|112.700 +637046.463|219511.510|112.526 +637051.038|219507.237|112.295 +637055.668|219502.915|112.115 +637060.301|219498.590|111.956 +637064.955|219494.249|111.953 +637069.600|219489.915|111.923 +637074.282|219485.547|111.828 +637078.982|219481.164|111.847 +637083.645|219476.818|111.996 +637088.361|219472.423|112.176 +637093.137|219467.973|112.444 +637097.858|219463.574|112.709 +637102.634|219459.124|113.038 +637099.824|219456.488|112.868 +637095.097|219460.880|112.560 +637090.415|219465.229|112.255 +637085.733|219469.576|111.987 +637081.070|219473.910|111.853 +637076.409|219478.244|111.752 +637071.755|219482.573|111.719 +637067.116|219486.892|111.789 +637062.511|219491.174|111.786 +637057.908|219495.456|111.816 +637053.324|219499.721|111.996 +637048.734|219503.994|112.136 +637044.149|219508.264|112.325 +637039.614|219512.486|112.551 +637035.063|219516.719|112.679 +637034.502|219514.769|112.633 +637039.038|219510.538|112.426 +637043.671|219506.216|112.240 +637048.200|219501.994|112.023 +637052.830|219497.675|111.847 +637057.478|219493.344|111.789 +637062.066|219489.065|111.688 +637066.726|219484.724|111.746 +637071.392|219480.372|111.554 +637076.053|219476.031|111.658 +637080.768|219471.639|111.813 +637085.489|219467.247|112.029 +637090.199|219462.858|112.206 +637094.972|219458.417|112.474 +637089.936|219457.957|112.343 +637085.249|219462.306|112.014 +637080.576|219466.644|111.792 +637075.916|219470.969|111.685 +637071.249|219475.300|111.566 +637066.650|219479.573|111.566 +637062.020|219483.877|111.706 +637057.411|219488.160|111.697 +637052.803|219492.439|111.697 +637048.203|219496.712|111.789 +637043.622|219500.973|111.990 +637039.081|219505.192|112.161 +637034.554|219509.401|112.441 +637036.514|219504.479|112.136 +637041.077|219500.220|111.819 +637045.707|219495.908|111.615 +637050.300|219491.628|111.514 +637054.951|219487.297|111.466 +637059.624|219482.947|111.594 +637064.275|219478.616|111.597 +637068.936|219474.273|111.368 +637073.651|219469.884|111.502 +637078.305|219465.552|111.581 +637083.021|219461.166|111.752 +637087.809|219456.713|112.109 +637080.162|219459.453|111.658 +637075.498|219463.788|111.514 +637070.893|219468.067|111.459 +637066.189|219472.438|111.426 +637061.605|219476.702|111.542 +637056.997|219480.988|111.514 +637052.336|219485.319|111.499 +637047.709|219489.620|111.420 +637043.128|219493.881|111.621 +637038.608|219498.090|111.908 +637034.027|219502.354|112.136 +637034.176|219499.239|112.023 +637038.757|219494.969|111.813 +637043.332|219490.702|111.569 +637047.975|219486.373|111.459 +637052.635|219482.033|111.481 +637057.295|219477.693|111.511 +637061.947|219473.358|111.530 +637066.622|219469.000|111.392 +637071.277|219464.665|111.444 +637075.977|219460.285|111.511 +637070.256|219460.633|111.411 +637065.601|219464.958|111.362 +637060.999|219469.237|111.350 +637056.408|219473.508|111.432 +637051.760|219477.830|111.490 +637047.191|219482.079|111.432 +637042.589|219486.361|111.493 +637038.005|219490.625|111.685 +637033.423|219494.893|111.904 +637036.542|219489.528|111.630 +637041.165|219485.218|111.399 +637045.762|219480.939|111.319 +637050.422|219476.598|111.347 +637055.076|219472.267|111.356 +637059.758|219467.906|111.246 +637064.400|219463.583|111.210 +637069.094|219459.213|111.222 +637065.141|219458.219|111.286 +637060.535|219462.495|111.258 +637055.893|219466.808|111.331 +637051.297|219471.078|111.389 +637046.691|219475.358|111.414 +637042.083|219479.640|111.429 +637037.496|219483.904|111.606 +637037.907|219481.183|111.618 +637042.537|219476.864|111.438 +637047.182|219472.532|111.356 +637051.843|219468.189|111.399 +637056.530|219463.818|111.319 +637061.179|219459.487|111.310 +637055.857|219459.335|111.295 +637051.248|219463.617|111.261 +637046.585|219467.951|111.225 +637041.940|219472.270|111.316 +637037.383|219476.504|111.365 +637035.597|219476.153|111.258 +637040.199|219471.862|111.222 +637044.835|219467.543|111.091 +637049.496|219463.199|111.149 +637054.159|219458.859|111.231 +637050.736|219457.170|111.200 +637046.134|219461.447|111.219 +637041.461|219465.784|111.121 +637036.862|219470.057|111.203 +637033.856|219469.908|111.240 +637038.437|219465.641|111.063 +637043.076|219461.322|110.960 +637047.743|219456.978|111.039 +637040.970|219458.856|110.947 +637036.374|219463.129|111.036 +637036.167|219460.374|110.990 +639285.891|219456.920|100.962 +639280.807|219458.332|101.224 +639275.759|219459.725|101.614 +639308.681|219456.908|99.176 +639303.517|219458.326|99.603 +639298.558|219459.652|100.490 +639293.532|219461.014|101.157 +639288.317|219462.489|100.990 +639283.260|219463.885|101.343 +639332.010|219456.689|98.603 +639321.455|219459.618|99.063 +639316.289|219461.038|99.453 +639311.064|219462.492|99.655 +639300.799|219465.312|100.487 +639295.779|219466.686|100.947 +639290.655|219468.101|101.297 +639285.543|219469.506|101.706 +639355.059|219456.509|97.987 +639349.740|219457.996|98.027 +639344.428|219459.463|98.347 +639339.176|219460.910|98.646 +639333.970|219462.337|99.109 +639328.694|219463.797|99.353 +639323.470|219465.245|99.554 +639318.279|219466.677|99.868 +639313.033|219468.134|100.026 +639307.846|219469.564|100.383 +639302.722|219470.975|100.727 +639297.674|219472.343|101.349 +639287.421|219475.178|101.855 +639373.359|219457.612|98.271 +639368.062|219459.075|98.576 +639362.621|219460.615|98.390 +639357.327|219462.072|98.740 +639346.705|219465.037|98.874 +639341.444|219466.491|99.139 +639331.020|219469.366|99.792 +639325.862|219470.780|100.212 +639320.684|219472.221|100.337 +639315.496|219473.669|100.438 +639310.363|219475.087|100.737 +639290.006|219480.686|102.175 +639395.881|219457.487|99.106 +639390.386|219459.042|98.893 +639384.835|219460.606|98.758 +639379.422|219462.114|98.877 +639373.926|219463.666|98.719 +639368.556|219465.168|98.774 +639363.100|219466.711|98.554 +639352.621|219469.585|99.402 +639331.599|219475.407|100.346 +639305.639|219482.609|101.297 +639300.604|219483.990|101.730 +639295.529|219485.389|102.035 +639420.061|219457.033|99.048 +639403.452|219461.654|99.347 +639397.996|219463.166|99.514 +639392.601|219464.644|99.911 +639381.580|219467.759|99.463 +639365.197|219472.359|99.194 +639354.690|219475.239|99.975 +639328.267|219482.566|100.791 +639323.025|219484.020|100.956 +639317.849|219485.456|101.112 +639312.671|219486.873|101.517 +639307.608|219488.263|101.849 +639302.493|219489.680|102.017 +639297.412|219491.080|102.319 +639444.363|219456.710|98.438 +639438.858|219458.219|98.832 +639433.411|219459.716|99.191 +639427.925|219461.233|99.408 +639422.365|219462.788|99.383 +639416.858|219464.312|99.566 +639400.474|219468.860|99.965 +639395.043|219470.359|100.231 +639389.611|219471.874|100.267 +639384.070|219473.444|99.941 +639373.149|219476.498|99.901 +639362.371|219479.506|99.944 +639341.215|219485.368|100.627 +639335.985|219486.815|100.795 +639330.727|219488.260|101.121 +639325.472|219489.720|101.230 +639320.342|219491.131|101.541 +639315.121|219492.570|101.800 +639309.958|219493.996|102.026 +639304.889|219495.389|102.349 +639299.808|219496.788|102.639 +639430.034|219462.715|99.033 +639441.068|219459.688|98.518 +639446.649|219458.146|98.393 +639460.746|219458.838|96.009 +639444.536|219463.172|98.545 +639422.646|219469.192|99.716 +639417.162|219470.719|99.764 +639411.706|219472.212|100.164 +639406.290|219473.718|100.225 +639400.755|219475.266|100.139 +639384.543|219479.756|100.606 +639368.220|219484.346|100.112 +639362.865|219485.828|100.276 +639357.555|219487.303|100.374 +639352.331|219488.748|100.538 +639347.058|219490.199|100.795 +639341.761|219491.662|100.980 +639331.315|219494.545|101.416 +639326.109|219495.975|101.712 +639320.925|219497.413|101.855 +639315.825|219498.818|102.075 +639310.735|219500.220|102.325 +639305.648|219501.620|102.608 +639438.757|219466.385|98.643 +639444.250|219464.876|98.435 +639449.813|219463.346|98.240 +639460.599|219460.493|96.372 +639489.781|219457.286|94.363 +639484.289|219458.774|94.985 +639473.236|219461.767|96.238 +639461.962|219464.897|96.448 +639451.209|219467.771|98.161 +639429.248|219473.800|99.517 +639423.795|219475.315|99.648 +639418.360|219476.797|100.115 +639407.424|219479.832|100.350 +639396.570|219482.853|100.453 +639391.108|219484.380|100.410 +639385.676|219485.892|100.487 +639380.336|219487.370|100.651 +639374.960|219488.864|100.718 +639369.534|219490.388|100.621 +639364.191|219491.881|100.587 +639358.900|219493.347|100.740 +639353.578|219494.826|100.819 +639348.290|219496.289|101.011 +639343.077|219497.724|101.252 +639337.929|219499.145|101.474 +639332.696|219500.592|101.663 +639327.591|219502.004|101.831 +639322.430|219503.430|102.053 +639317.270|219504.850|102.297 +639307.041|219507.664|102.892 +639431.790|219474.523|99.411 +639437.252|219473.035|99.048 +639442.723|219471.557|98.496 +639448.334|219470.003|98.466 +639453.799|219468.527|97.905 +639464.757|219465.580|96.677 +639470.417|219464.031|96.378 +639475.946|219462.535|95.854 +639486.986|219459.572|94.510 +639492.637|219458.024|94.232 +639498.349|219456.460|93.946 +639513.562|219456.844|92.507 +639507.944|219458.362|93.129 +639491.131|219462.937|94.653 +639485.599|219464.428|95.375 +639479.991|219465.976|95.567 +639468.820|219469.030|96.411 +639463.367|219470.490|97.222 +639457.896|219471.981|97.716 +639446.798|219475.020|98.426 +639435.847|219478.016|99.234 +639424.798|219481.058|99.731 +639419.332|219482.573|99.847 +639413.791|219484.112|99.947 +639408.341|219485.614|100.151 +639403.010|219487.074|100.545 +639397.567|219488.574|100.795 +639392.129|219490.086|100.837 +639386.694|219491.595|100.910 +639381.239|219493.116|100.923 +639375.847|219494.618|100.941 +639370.439|219496.130|100.904 +639365.108|219497.611|100.929 +639359.784|219499.096|100.974 +639354.453|219500.577|101.020 +639349.164|219502.037|101.230 +639343.955|219503.470|101.483 +639338.664|219504.930|101.697 +639333.498|219506.356|101.892 +639328.258|219507.804|102.081 +639323.086|219509.230|102.273 +639317.950|219510.639|102.605 +639312.841|219512.050|102.800 +639462.718|219472.538|97.308 +639468.189|219471.060|96.796 +639473.724|219469.564|96.280 +639479.238|219468.079|95.698 +639484.846|219466.540|95.482 +639490.439|219465.028|94.967 +639496.063|219463.498|94.574 +639501.610|219462.008|93.909 +639507.210|219460.511|93.187 +639512.821|219459.005|92.513 +639518.475|219457.472|92.031 +639537.891|219456.442|91.943 +639532.078|219458.057|91.992 +639526.205|219459.703|91.824 +639520.493|219461.276|92.047 +639514.918|219462.794|92.553 +639509.294|219464.315|93.150 +639492.549|219468.863|94.714 +639486.989|219470.365|95.345 +639481.402|219471.901|95.616 +639475.806|219473.422|96.131 +639464.803|219476.391|97.396 +639459.304|219477.894|97.798 +639453.702|219479.451|97.838 +639448.115|219481.000|97.948 +639442.702|219482.469|98.451 +639431.692|219485.486|99.097 +639426.285|219486.968|99.423 +639420.866|219488.437|99.959 +639415.431|219489.933|100.206 +639410.006|219491.424|100.502 +639399.161|219494.414|100.913 +639393.729|219495.920|100.990 +639388.304|219497.422|101.102 +639382.863|219498.931|101.176 +639377.477|219500.428|101.221 +639372.055|219501.946|101.148 +639366.648|219503.451|101.148 +639361.314|219504.936|101.179 +639356.010|219506.399|101.328 +639350.722|219507.859|101.541 +639345.498|219509.297|101.752 +639340.255|219510.745|101.910 +639335.046|219512.175|102.194 +639329.822|219513.610|102.447 +639324.658|219515.031|102.684 +639319.489|219516.457|102.904 +639314.301|219517.887|103.087 +639434.585|219486.590|99.024 +639445.551|219483.591|98.454 +639451.004|219482.124|97.826 +639462.029|219479.107|97.308 +639467.534|219477.610|96.908 +639473.099|219476.096|96.500 +639478.625|219474.602|95.954 +639484.221|219473.072|95.686 +639495.371|219470.048|94.766 +639500.986|219468.521|94.354 +639512.135|219465.528|92.979 +639517.743|219464.025|92.300 +639523.394|219462.492|91.818 +639529.073|219460.926|91.721 +639534.953|219459.283|91.900 +639540.686|219457.698|91.797 +639554.978|219457.999|91.745 +639549.138|219459.630|91.644 +639543.310|219461.255|91.611 +639537.577|219462.843|91.715 +639531.722|219464.480|91.608 +639526.004|219466.055|91.800 +639520.359|219467.592|92.294 +639514.726|219469.116|92.854 +639509.212|219470.594|93.629 +639487.050|219476.614|95.610 +639470.350|219481.177|96.750 +639459.371|219484.167|97.628 +639448.285|219487.230|97.929 +639442.967|219488.644|98.798 +639437.611|219490.101|99.283 +639432.165|219491.582|99.706 +639421.323|219494.560|100.273 +639415.867|219496.063|100.450 +639410.505|219497.535|100.743 +639405.107|219499.023|100.913 +639399.703|219500.516|101.078 +639394.348|219501.997|101.185 +639388.913|219503.503|101.273 +639383.552|219504.988|101.398 +639378.218|219506.472|101.383 +639372.823|219507.972|101.419 +639367.462|219509.468|101.352 +639362.155|219510.934|101.480 +639356.934|219512.373|101.672 +639351.661|219513.821|101.947 +639346.430|219515.262|102.139 +639341.215|219516.695|102.401 +639336.052|219518.115|102.608 +639330.892|219519.536|102.843 +639325.786|219520.941|103.044 +639320.672|219522.349|103.227 +639437.483|219491.735|99.399 +639442.933|219490.263|98.975 +639448.450|219488.766|98.566 +639464.976|219484.310|97.067 +639470.478|219482.822|96.649 +639476.050|219481.311|96.250 +639498.608|219475.184|94.796 +639509.803|219472.182|93.574 +639515.387|219470.697|92.781 +639521.041|219469.170|92.284 +639526.756|219467.631|91.769 +639532.554|219466.040|91.602 +639538.400|219464.422|91.638 +639544.197|219462.831|91.504 +639550.092|219461.197|91.519 +639555.926|219459.581|91.574 +639561.821|219457.951|91.620 +639579.051|219457.591|92.486 +639573.098|219459.274|92.114 +639567.130|219460.959|91.724 +639561.171|219462.639|91.385 +639555.316|219464.257|91.495 +639549.458|219465.894|91.349 +639543.670|219467.491|91.486 +639537.845|219469.106|91.510 +639532.026|219470.719|91.568 +639526.360|219472.261|91.986 +639520.758|219473.767|92.662 +639515.083|219475.312|93.074 +639509.587|219476.775|93.930 +639503.954|219478.296|94.528 +639498.410|219479.787|95.211 +639492.823|219481.317|95.488 +639487.184|219482.856|95.835 +639470.457|219487.443|96.655 +639465.028|219488.900|97.335 +639459.621|219490.345|98.106 +639454.147|219491.845|98.387 +639443.198|219494.822|99.237 +639437.730|219496.316|99.575 +639432.329|219497.788|99.929 +639426.916|219499.269|100.252 +639421.481|219500.760|100.511 +639416.028|219502.260|100.721 +639410.615|219503.753|100.840 +639405.226|219505.234|101.057 +639399.804|219506.731|101.176 +639394.461|219508.203|101.340 +639389.032|219509.700|101.468 +639383.674|219511.181|101.602 +639378.349|219512.656|101.642 +639372.975|219514.138|101.770 +639367.641|219515.616|101.806 +639362.377|219517.076|101.858 +639357.095|219518.524|102.096 +639351.859|219519.969|102.267 +639346.631|219521.404|102.486 +639341.456|219522.828|102.660 +639336.357|219524.227|102.870 +639331.175|219525.653|103.050 +639326.021|219527.064|103.330 +639320.897|219528.475|103.492 +639440.257|219497.288|99.383 +639445.731|219495.798|99.060 +639456.680|219492.838|98.188 +639462.264|219491.323|97.804 +639473.236|219488.382|96.591 +639495.679|219482.283|95.171 +639501.348|219480.735|94.942 +639507.030|219479.195|94.522 +639512.559|219477.738|93.522 +639518.207|219476.217|92.986 +639523.910|219474.684|92.409 +639529.597|219473.160|91.791 +639535.337|219471.603|91.388 +639541.173|219469.990|91.394 +639546.980|219468.390|91.300 +639552.869|219466.763|91.291 +639558.773|219465.129|91.343 +639564.728|219463.480|91.370 +639570.690|219461.809|91.708 +639576.710|219460.118|92.050 +639582.724|219458.432|92.379 +639588.738|219456.744|92.723 +639603.435|219457.042|93.083 +639597.370|219458.755|92.729 +639591.383|219460.441|92.440 +639585.470|219462.102|92.202 +639579.456|219463.800|91.849 +639573.534|219465.461|91.620 +639567.523|219467.153|91.330 +639561.613|219468.805|91.202 +639555.813|219470.414|91.269 +639549.982|219472.039|91.224 +639544.176|219473.645|91.300 +639538.382|219475.245|91.443 +639532.636|219476.818|91.800 +639526.985|219478.333|92.541 +639521.358|219479.857|93.114 +639515.680|219481.405|93.504 +639493.274|219487.480|95.607 +639487.638|219489.019|95.963 +639482.045|219490.534|96.506 +639476.477|219492.055|96.884 +639465.348|219495.088|97.725 +639459.840|219496.587|98.128 +639454.351|219498.081|98.594 +639448.843|219499.580|99.018 +639443.393|219501.065|99.417 +639437.922|219502.561|99.746 +639432.433|219504.067|100.033 +639426.998|219505.561|100.270 +639421.509|219507.063|100.584 +639416.068|219508.557|100.840 +639410.664|219510.050|100.990 +639405.220|219511.544|101.261 +639399.810|219513.037|101.413 +639394.394|219514.531|101.575 +639389.063|219515.997|101.794 +639383.704|219517.475|101.947 +639378.297|219518.978|101.941 +639372.920|219520.465|102.047 +639367.602|219521.938|102.136 +639362.277|219523.413|102.221 +639357.028|219524.864|102.343 +639351.725|219526.324|102.520 +639346.543|219527.756|102.657 +639341.328|219529.186|102.937 +639336.110|219530.615|103.205 +639330.925|219532.045|103.379 +639325.753|219533.468|103.602 +639444.152|219502.293|99.341 +639449.621|219500.809|98.987 +639455.058|219499.343|98.536 +639460.496|219497.874|98.094 +639466.016|219496.380|97.716 +639471.527|219494.890|97.314 +639477.007|219493.411|96.823 +639482.594|219491.896|96.479 +639488.169|219490.385|96.098 +639493.707|219488.894|95.604 +639505.033|219485.803|95.086 +639516.122|219482.847|93.702 +639521.800|219481.311|93.278 +639527.430|219479.802|92.687 +639533.014|219478.318|91.916 +639538.668|219476.790|91.437 +639544.538|219475.181|91.303 +639550.345|219473.587|91.193 +639556.179|219471.975|91.224 +639562.040|219470.365|91.102 +639567.935|219468.735|91.138 +639573.888|219467.070|91.440 +639579.901|219465.388|91.733 +639585.903|219463.711|92.001 +639591.825|219462.059|92.242 +639597.924|219460.343|92.687 +639603.917|219458.667|92.986 +639609.967|219456.975|93.284 +639622.244|219457.914|92.723 +639616.313|219459.545|92.903 +639610.397|219461.188|92.867 +639604.414|219462.849|92.848 +639598.461|219464.531|92.416 +639592.465|219466.217|92.117 +639586.549|219467.875|91.879 +639580.538|219469.564|91.562 +639574.595|219471.234|91.263 +639568.691|219472.880|91.154 +639562.848|219474.511|91.029 +639556.993|219476.123|91.166 +639551.265|219477.705|91.276 +639545.392|219479.326|91.370 +639539.619|219480.908|91.608 +639534.011|219482.417|92.245 +639528.415|219483.920|92.940 +639522.821|219485.419|93.662 +639517.262|219486.916|94.260 +639511.687|219488.422|94.817 +639506.009|219489.964|95.241 +639500.348|219491.515|95.482 +639494.755|219493.027|96.009 +639489.147|219494.569|96.216 +639483.490|219496.115|96.527 +639477.943|219497.617|97.003 +639472.453|219499.108|97.439 +639466.878|219500.626|97.847 +639461.371|219502.125|98.243 +639455.857|219503.622|98.649 +639450.322|219505.134|98.975 +639444.835|219506.637|99.252 +639439.370|219508.124|99.621 +639433.905|219509.611|99.999 +639428.467|219511.105|100.240 +639422.984|219512.598|100.587 +639417.598|219514.077|100.795 +639412.167|219515.561|101.108 +639406.738|219517.042|101.432 +639401.331|219518.530|101.617 +639395.906|219520.023|101.745 +639390.495|219521.508|101.956 +639385.125|219522.992|102.062 +639379.754|219524.470|102.187 +639374.441|219525.940|102.291 +639369.046|219527.427|102.373 +639363.697|219528.911|102.379 +639358.366|219530.384|102.471 +639353.142|219531.816|102.690 +639347.899|219533.258|102.870 +639342.666|219534.693|103.093 +639337.500|219536.111|103.321 +639332.269|219537.540|103.577 +639442.388|219508.938|99.274 +639447.798|219507.469|98.950 +639453.272|219505.984|98.615 +639458.819|219504.475|98.313 +639464.284|219502.991|97.978 +639469.804|219501.491|97.615 +639475.306|219500.007|97.183 +639480.786|219498.529|96.698 +639486.358|219497.020|96.308 +639491.970|219495.487|96.073 +639508.758|219490.927|95.046 +639520.008|219487.897|94.040 +639525.626|219486.395|93.385 +639531.228|219484.898|92.684 +639536.818|219483.411|91.955 +639542.441|219481.902|91.364 +639548.248|219480.308|91.242 +639554.051|219478.714|91.132 +639559.836|219477.129|90.971 +639565.722|219475.504|90.959 +639571.620|219473.870|91.013 +639577.509|219472.221|91.334 +639583.483|219470.563|91.465 +639589.448|219468.887|91.870 +639595.422|219467.223|92.047 +639601.478|219465.531|92.318 +639607.498|219463.839|92.745 +639613.402|219462.212|92.702 +639619.385|219460.560|92.717 +639625.292|219458.947|92.431 +639631.196|219457.338|92.150 +639651.103|219456.536|90.724 +639645.205|219458.131|91.269 +639639.389|219459.716|91.617 +639633.440|219461.337|91.967 +639627.551|219462.943|92.303 +639621.705|219464.544|92.559 +639615.746|219466.189|92.626 +639609.796|219467.848|92.473 +639603.816|219469.524|92.205 +639597.876|219471.176|92.132 +639592.017|219472.798|92.138 +639585.949|219474.523|91.565 +639580.051|219476.184|91.175 +639574.141|219477.830|91.035 +639568.255|219479.464|91.017 +639562.360|219481.097|90.986 +639556.627|219482.679|91.071 +639550.836|219484.273|91.218 +639545.032|219485.870|91.337 +639539.415|219487.382|91.937 +639533.846|219488.867|92.742 +639528.259|219490.360|93.488 +639522.657|219491.860|94.186 +639517.091|219493.359|94.766 +639511.428|219494.911|94.988 +639505.871|219496.404|95.634 +639500.217|219497.950|95.912 +639494.615|219499.483|96.155 +639489.046|219500.998|96.530 +639483.459|219502.522|96.853 +639477.943|219504.024|97.192 +639472.350|219505.551|97.518 +639466.827|219507.054|97.871 +639461.319|219508.551|98.292 +639455.811|219510.062|98.466 +639450.367|219511.538|98.896 +639444.893|219513.031|99.234 +639439.446|219514.506|99.673 +639434.057|219515.970|100.097 +639428.662|219517.436|100.499 +639423.225|219518.920|100.770 +639417.778|219520.410|101.017 +639412.380|219521.892|101.215 +639406.985|219523.370|101.438 +639401.654|219524.833|101.651 +639396.256|219526.308|101.898 +639390.910|219527.777|102.084 +639385.558|219529.247|102.273 +639380.245|219530.710|102.370 +639374.944|219532.167|102.526 +639369.607|219533.642|102.568 +639364.276|219535.114|102.657 +639358.961|219536.574|102.803 +639353.712|219538.019|102.959 +639348.469|219539.457|103.141 +639343.215|219540.899|103.309 +639338.030|219542.323|103.483 +639332.864|219543.737|103.733 +639445.911|219514.787|99.216 +639451.382|219513.303|98.868 +639456.896|219511.815|98.426 +639462.456|219510.300|98.170 +639467.985|219508.801|97.823 +639473.486|219507.313|97.381 +639479.101|219505.786|97.113 +639484.703|219504.262|96.826 +639490.302|219502.738|96.536 +639495.932|219501.214|96.122 +639501.528|219499.693|95.842 +639507.188|219498.151|95.573 +639512.784|219496.645|95.064 +639524.065|219493.600|94.174 +639529.743|219492.082|93.507 +639535.324|219490.598|92.723 +639540.942|219489.117|91.821 +639546.590|219487.596|91.327 +639552.378|219486.011|91.141 +639558.172|219484.423|91.001 +639564.049|219482.807|90.931 +639569.931|219481.186|90.901 +639575.823|219479.558|90.934 +639581.755|219477.906|91.151 +639587.771|219476.202|91.748 +639593.809|219474.507|92.166 +639599.701|219472.892|92.007 +639605.697|219471.237|92.013 +639611.692|219469.561|92.339 +639617.633|219467.912|92.449 +639623.598|219466.272|92.385 +639629.572|219464.644|92.089 +639635.448|219463.053|91.690 +639641.352|219461.444|91.419 +639647.293|219459.834|91.020 +639653.194|219458.249|90.465 +639659.186|219456.628|90.035 +639673.774|219456.789|89.343 +639667.824|219458.417|89.617 +639661.801|219460.063|89.880 +639655.821|219461.709|90.050 +639649.868|219463.312|90.660 +639644.010|219464.900|91.105 +639638.128|219466.503|91.462 +639632.181|219468.122|91.849 +639626.295|219469.725|92.224 +639620.361|219471.356|92.400 +639614.405|219473.020|92.205 +639608.434|219474.690|91.983 +639602.454|219476.342|92.025 +639596.589|219477.946|92.288 +639590.777|219479.540|92.507 +639584.705|219481.262|91.952 +639578.694|219482.990|91.108 +639572.769|219484.645|90.916 +639566.890|219486.270|90.953 +639561.010|219487.894|90.992 +639555.286|219489.470|91.138 +639549.507|219491.055|91.355 +639543.776|219492.613|91.769 +639538.296|219494.064|92.659 +639532.673|219495.557|93.525 +639527.073|219497.057|94.238 +639521.489|219498.565|94.747 +639515.845|219500.108|95.034 +639510.276|219501.604|95.634 +639504.640|219503.140|95.988 +639499.041|219504.674|96.232 +639493.457|219506.195|96.555 +639487.876|219507.719|96.890 +639482.353|219509.221|97.219 +639476.769|219510.742|97.573 +639471.237|219512.251|97.893 +639465.714|219513.757|98.252 +639460.252|219515.244|98.603 +639454.808|219516.719|99.024 +639449.337|219518.210|99.365 +639443.869|219519.697|99.740 +639438.459|219521.169|100.078 +639433.021|219522.660|100.328 +639427.590|219524.141|100.618 +639422.192|219525.623|100.801 +639416.818|219527.092|101.081 +639411.444|219528.558|101.377 +639406.144|219530.003|101.700 +639400.749|219531.478|101.950 +639395.476|219532.926|102.151 +639390.133|219534.389|102.367 +639384.774|219535.858|102.550 +639379.474|219537.318|102.696 +639374.173|219538.775|102.864 +639368.918|219540.223|102.971 +639363.584|219541.692|103.059 +639358.324|219543.142|103.163 +639353.142|219544.566|103.318 +639347.948|219545.995|103.452 +639342.779|219547.410|103.675 +639337.649|219548.821|103.815 +639447.054|219520.746|99.459 +639452.531|219519.264|99.106 +639458.088|219517.759|98.813 +639463.614|219516.268|98.417 +639469.149|219514.772|98.076 +639474.736|219513.263|97.676 +639480.326|219511.751|97.317 +639485.931|219510.233|97.015 +639491.589|219508.703|96.664 +639497.169|219507.191|96.314 +639502.830|219505.658|96.012 +639508.575|219504.094|95.784 +639514.174|219502.592|95.275 +639519.831|219501.074|94.741 +639525.565|219499.513|94.519 +639531.243|219498.002|93.830 +639536.891|219496.508|93.037 +639542.441|219495.048|92.120 +639548.193|219493.512|91.489 +639553.957|219491.951|91.187 +639559.788|219490.366|90.892 +639565.673|219488.751|90.849 +639571.626|219487.117|90.809 +639577.582|219485.459|91.087 +639583.699|219483.703|92.059 +639589.750|219482.006|92.495 +639595.690|219480.390|92.227 +639601.615|219478.787|91.894 +639607.535|219477.159|91.858 +639613.521|219475.513|91.827 +639619.596|219473.816|92.208 +639625.631|219472.161|92.138 +639631.599|219470.542|91.809 +639637.545|219468.936|91.394 +639643.495|219467.329|91.010 +639649.478|219465.720|90.489 +639655.398|219464.129|89.998 +639661.436|219462.483|89.758 +639667.468|219460.843|89.511 +639673.548|219459.194|89.188 +639679.586|219457.545|89.005 +639698.792|219456.661|88.398 +639692.748|219458.326|88.484 +639686.679|219460.002|88.493 +639680.528|219461.706|88.435 +639674.551|219463.321|88.901 +639668.528|219464.964|89.176 +639662.557|219466.598|89.389 +639656.541|219468.235|89.727 +639650.630|219469.829|90.255 +639644.714|219471.429|90.760 +639638.737|219473.060|91.020 +639632.781|219474.678|91.388 +639626.893|219476.275|91.782 +639620.912|219477.927|91.785 +639614.987|219479.564|91.763 +639609.025|219481.204|91.879 +639602.969|219482.896|91.623 +639597.065|219484.517|91.751 +639591.255|219486.081|92.297 +639585.427|219487.678|92.483 +639579.402|219489.367|92.160 +639573.266|219491.137|91.132 +639567.344|219492.783|91.010 +639561.510|219494.377|91.260 +639555.719|219495.965|91.425 +639549.909|219497.541|91.815 +639544.240|219499.056|92.501 +639538.589|219500.562|93.263 +639532.993|219502.052|93.985 +639527.351|219503.570|94.549 +639521.636|219505.128|94.839 +639515.979|219506.652|95.357 +639510.367|219508.170|95.814 +639504.640|219509.730|96.104 +639498.986|219511.269|96.411 +639493.317|219512.815|96.695 +639487.727|219514.333|97.027 +639482.146|219515.848|97.402 +639476.562|219517.362|97.789 +639470.972|219518.880|98.158 +639465.424|219520.389|98.454 +639459.883|219521.898|98.786 +639454.296|219523.428|98.966 +639448.785|219524.934|99.188 +639443.296|219526.427|99.505 +639437.816|219527.915|99.865 +639432.390|219529.390|100.188 +639426.977|219530.856|100.563 +639421.527|219532.343|100.831 +639416.092|219533.822|101.157 +639410.722|219535.282|101.483 +639405.330|219536.751|101.749 +639399.947|219538.214|102.069 +639394.531|219539.695|102.276 +639389.203|219541.146|102.565 +639383.842|219542.612|102.760 +639378.565|219544.051|103.010 +639373.158|219545.541|103.074 +639367.894|219546.989|103.172 +639362.560|219548.452|103.285 +639357.303|219549.894|103.425 +639352.023|219551.348|103.516 +639346.827|219552.774|103.650 +639341.590|219554.219|103.681 +639449.444|219526.375|99.121 +639454.869|219524.906|98.829 +639460.374|219523.410|98.597 +639465.940|219521.898|98.353 +639471.484|219520.395|98.048 +639477.019|219518.899|97.722 +639482.542|219517.405|97.362 +639488.150|219515.887|97.073 +639493.731|219514.378|96.707 +639499.327|219512.864|96.402 +639504.981|219511.330|96.085 +639510.645|219509.794|95.811 +639516.253|219508.289|95.345 +639521.913|219506.771|94.823 +639527.573|219505.231|94.580 +639533.230|219503.713|94.077 +639538.933|219502.189|93.504 +639544.545|219500.696|92.839 +639550.235|219499.175|92.248 +639556.057|219497.599|91.907 +639561.921|219495.996|91.760 +639567.700|219494.423|91.559 +639573.696|219492.744|91.980 +639579.652|219491.086|92.266 +639585.641|219489.424|92.437 +639591.481|219487.852|92.001 +639597.284|219486.300|91.431 +639603.222|219484.663|91.446 +639609.303|219482.969|91.791 +639615.289|219481.323|91.772 +639621.299|219479.683|91.586 +639627.298|219478.028|91.654 +639633.190|219476.437|91.276 +639639.219|219474.806|90.919 +639645.232|219473.182|90.520 +639651.085|219471.609|90.026 +639657.065|219470.003|89.508 +639663.078|219468.375|89.151 +639669.171|219466.720|88.874 +639675.197|219465.086|88.606 +639681.269|219463.440|88.264 +639687.426|219461.739|88.343 +639693.555|219460.060|88.304 +639699.673|219458.380|88.243 +639705.848|219456.713|87.834 +639717.098|219457.975|87.871 +639710.993|219459.658|87.938 +639704.873|219461.349|87.947 +639698.868|219462.992|88.194 +639692.751|219464.678|88.267 +639686.679|219466.357|88.243 +639680.678|219468.012|88.276 +639674.633|219469.673|88.420 +639668.650|219471.316|88.569 +639662.637|219472.956|88.901 +639656.711|219474.562|89.337 +639650.877|219476.132|89.907 +639644.934|219477.748|90.294 +639638.987|219479.363|90.690 +639633.174|219480.939|91.096 +639627.277|219482.545|91.431 +639621.342|219484.173|91.632 +639615.383|219485.809|91.748 +639609.446|219487.455|91.687 +639603.444|219489.138|91.376 +639597.525|219490.793|91.151 +639591.627|219492.408|91.330 +639585.848|219493.957|91.998 +639580.075|219495.520|92.437 +639574.223|219497.130|92.571 +639568.414|219498.733|92.608 +639562.598|219500.339|92.647 +639556.749|219501.940|92.848 +639550.979|219503.518|93.098 +639545.218|219505.088|93.409 +639539.558|219506.618|93.869 +639533.904|219508.148|94.348 +639528.204|219509.700|94.677 +639522.587|219511.224|95.073 +639516.905|219512.763|95.503 +639511.291|219514.281|95.939 +639505.670|219515.805|96.357 +639500.031|219517.338|96.722 +639494.350|219518.893|96.954 +639488.778|219520.404|97.350 +639483.167|219521.938|97.603 +639477.616|219523.452|97.853 +639471.990|219524.992|98.085 +639466.433|219526.510|98.341 +639460.871|219528.027|98.600 +639455.387|219529.524|98.896 +639449.889|219531.024|99.158 +639444.390|219532.526|99.426 +639438.888|219534.026|99.712 +639433.414|219535.510|100.097 +639428.010|219536.976|100.502 +639422.588|219538.449|100.859 +639417.168|219539.918|101.246 +639411.813|219541.372|101.621 +639406.430|219542.838|101.910 +639401.044|219544.307|102.203 +639395.674|219545.767|102.565 +639390.346|219547.218|102.852 +639384.997|219548.681|103.077 +639379.629|219550.153|103.254 +639374.310|219551.613|103.379 +639368.903|219553.103|103.449 +639363.615|219554.563|103.480 +639358.266|219556.039|103.544 +639352.993|219557.489|103.647 +639347.774|219558.928|103.718 +639342.541|219560.373|103.745 +639452.440|219531.706|98.905 +639457.951|219530.210|98.667 +639463.452|219528.716|98.411 +639469.018|219527.204|98.155 +639474.575|219525.699|97.884 +639480.137|219524.187|97.646 +639485.703|219522.675|97.433 +639491.238|219521.176|97.134 +639496.837|219519.661|96.820 +639502.531|219518.109|96.622 +639508.090|219516.613|96.198 +639513.647|219515.119|95.771 +639519.331|219513.589|95.323 +639524.943|219512.080|94.866 +639530.643|219510.541|94.516 +639536.321|219509.014|94.080 +639541.993|219507.487|93.644 +639547.687|219505.948|93.303 +639553.457|219504.384|93.004 +639559.169|219502.833|92.769 +639565.027|219501.235|92.595 +639570.828|219499.650|92.473 +639576.692|219498.044|92.367 +639582.504|219496.471|92.056 +639588.223|219494.950|91.370 +639594.008|219493.390|90.971 +639599.963|219491.750|91.029 +639605.986|219490.068|91.385 +639612.015|219488.403|91.504 +639617.941|219486.776|91.489 +639623.845|219485.157|91.407 +639629.843|219483.530|91.166 +639635.726|219481.942|90.742 +639641.675|219480.338|90.328 +639647.567|219478.747|89.962 +639653.566|219477.132|89.489 +639659.479|219475.547|88.962 +639665.428|219473.938|88.609 +639671.461|219472.298|88.343 +639677.587|219470.624|88.221 +639683.662|219468.960|88.179 +639689.739|219467.287|88.188 +639695.863|219465.610|88.109 +639702.038|219463.922|87.987 +639708.165|219462.239|87.972 +639714.276|219460.566|87.904 +639720.515|219458.856|87.825 +639734.792|219459.030|88.392 +639716.364|219464.144|87.969 +639710.246|219465.827|87.999 +639704.120|219467.518|87.999 +639698.067|219469.186|88.054 +639692.025|219470.841|88.191 +639685.963|219472.511|88.246 +639679.888|219474.187|88.255 +639673.881|219475.839|88.304 +639667.858|219477.504|88.292 +639661.823|219479.150|88.554 +639655.903|219480.747|89.044 +639650.024|219482.341|89.435 +639644.135|219483.941|89.791 +639638.237|219485.541|90.133 +639632.336|219487.148|90.468 +639626.441|219488.745|90.858 +639620.531|219490.372|90.907 +639614.597|219492.012|90.867 +639608.653|219493.637|91.084 +639602.682|219495.295|90.931 +639596.726|219496.965|90.587 +639590.841|219498.590|90.556 +639585.013|219500.184|90.773 +639579.207|219501.760|91.108 +639573.531|219503.284|91.708 +639567.731|219504.856|92.092 +639561.933|219506.448|92.220 +639556.225|219508.002|92.467 +639550.485|219509.560|92.861 +639544.816|219511.093|93.287 +639539.189|219512.598|93.897 +639533.514|219514.135|94.318 +639527.820|219515.680|94.680 +639522.245|219517.173|95.268 +639516.631|219518.691|95.704 +639511.007|219520.212|96.125 +639505.463|219521.709|96.600 +639499.861|219523.236|96.863 +639494.228|219524.778|97.030 +639488.611|219526.311|97.274 +639483.057|219527.826|97.515 +639477.431|219529.362|97.750 +639471.871|219530.877|98.003 +639466.275|219532.410|98.140 +639460.782|219533.907|98.408 +639455.275|219535.410|98.643 +639449.794|219536.897|98.981 +639444.299|219538.391|99.295 +639438.873|219539.866|99.618 +639433.393|219541.350|99.996 +639428.080|219542.780|100.502 +639422.633|219544.261|100.791 +639417.266|219545.718|101.127 +639411.901|219547.172|101.486 +639406.516|219548.638|101.785 +639401.258|219550.052|102.297 +639395.970|219551.479|102.718 +639390.648|219552.924|103.047 +639385.338|219554.380|103.187 +639379.964|219555.850|103.358 +639374.624|219557.319|103.428 +639369.266|219558.797|103.440 +639363.923|219560.263|103.541 +639358.638|219561.720|103.599 +639353.358|219563.171|103.699 +639348.043|219564.637|103.690 +639449.584|219538.677|98.905 +639455.067|219537.196|98.560 +639460.633|219535.690|98.280 +639466.129|219534.200|98.009 +639471.719|219532.679|97.841 +639477.290|219531.164|97.625 +639482.923|219529.634|97.408 +639488.553|219528.104|97.177 +639494.182|219526.574|96.978 +639499.882|219525.022|96.792 +639505.573|219523.474|96.591 +639511.163|219521.980|96.024 +639516.799|219520.462|95.646 +639522.419|219518.950|95.217 +639528.058|219517.445|94.622 +639533.752|219515.909|94.244 +639539.448|219514.372|93.894 +639545.112|219512.870|93.159 +639550.747|219511.364|92.595 +639556.532|219509.816|92.086 +639562.205|219508.285|91.702 +639568.051|219506.697|91.471 +639573.778|219505.155|91.062 +639579.520|219503.622|90.450 +639585.473|219501.991|90.422 +639591.319|219500.397|90.273 +639597.202|219498.779|90.282 +639603.231|219497.096|90.645 +639609.196|219495.450|90.760 +639615.155|219493.826|90.593 +639621.059|219492.213|90.492 +639627.060|219490.561|90.538 +639632.882|219488.995|90.120 +639638.862|219487.373|89.828 +639644.815|219485.767|89.428 +639650.716|219484.173|89.102 +639656.586|219482.591|88.670 +639662.637|219480.948|88.447 +639668.620|219479.320|88.249 +639674.707|219477.647|88.240 +639686.746|219474.361|87.978 +639692.906|219472.663|88.051 +639698.960|219471.008|87.969 +639705.086|219469.329|87.941 +639711.222|219467.640|87.969 +639717.321|219465.973|87.859 +639735.853|219460.865|88.124 +639748.106|219457.558|87.365 +639741.165|219463.611|87.767 +639734.947|219465.315|87.871 +639716.632|219470.353|88.002 +639704.473|219473.694|88.130 +639698.316|219475.398|88.017 +639692.175|219477.092|87.999 +639686.185|219478.735|88.081 +639680.065|219480.433|87.908 +639674.033|219482.076|88.154 +639668.056|219483.709|88.353 +639662.064|219485.346|88.511 +639656.086|219486.998|88.453 +639650.109|219488.626|88.712 +639644.138|219490.247|89.014 +639638.249|219491.842|89.401 +639632.339|219493.448|89.718 +639626.420|219495.057|90.008 +639620.504|219496.685|90.035 +639614.530|219498.322|90.126 +639608.629|219499.937|90.261 +639602.755|219501.559|90.245 +639596.797|219503.204|90.175 +639590.880|219504.826|90.297 +639585.016|219506.432|90.386 +639579.194|219508.039|90.383 +639573.357|219509.630|90.605 +639567.594|219511.196|90.873 +639561.848|219512.754|91.236 +639556.185|219514.263|91.931 +639550.580|219515.738|92.876 +639544.898|219517.274|93.260 +639539.268|219518.780|93.848 +639533.630|219520.292|94.418 +639528.006|219521.813|94.805 +639522.422|219523.309|95.354 +639516.756|219524.833|95.863 +639511.138|219526.351|96.299 +639505.588|219527.845|96.756 +639499.885|219529.405|96.905 +639494.246|219530.947|97.064 +639488.650|219532.484|97.134 +639483.082|219534.005|97.320 +639477.437|219535.547|97.500 +639471.938|219537.043|97.725 +639466.378|219538.555|97.996 +639460.880|219540.052|98.259 +639455.381|219541.545|98.521 +639449.874|219543.045|98.783 +639444.375|219544.538|99.075 +639438.956|219546.005|99.435 +639433.548|219547.465|99.837 +639428.224|219548.897|100.298 +639422.826|219550.351|100.761 +639417.403|219551.832|100.916 +639412.063|219553.271|101.361 +639406.750|219554.713|101.681 +639401.529|219556.103|102.322 +639396.241|219557.529|102.748 +639390.913|219558.974|103.056 +639385.615|219560.422|103.236 +639380.236|219561.891|103.394 +639374.972|219563.332|103.495 +639369.684|219564.789|103.513 +639364.401|219566.240|103.574 +639359.095|219567.700|103.580 +639353.852|219569.148|103.571 +639452.312|219544.407|98.499 +639457.908|219542.890|98.289 +639463.474|219541.384|97.996 +639469.030|219539.881|97.689 +639474.596|219538.375|97.423 +639480.250|219536.839|97.237 +639485.901|219535.303|97.067 +639491.561|219533.761|96.948 +639497.285|219532.200|96.823 +639502.933|219530.661|96.680 +639508.602|219529.128|96.387 +639514.290|219527.604|95.921 +639519.926|219526.086|95.528 +639525.586|219524.577|94.976 +639531.286|219523.041|94.595 +639537.007|219521.514|94.049 +639542.694|219520.005|93.376 +639554.051|219516.972|92.269 +639559.766|219515.464|91.483 +639565.512|219513.936|90.821 +639571.367|219512.345|90.614 +639577.207|219510.764|90.367 +639583.068|219509.166|90.215 +639589.018|219507.539|90.169 +639594.959|219505.914|90.114 +639600.887|219504.296|90.017 +639606.855|219502.671|89.834 +639612.796|219501.043|89.822 +639618.757|219499.422|89.639 +639624.756|219497.776|89.645 +639630.800|219496.124|89.575 +639636.716|219494.527|89.255 +639642.675|219492.924|88.843 +639648.683|219491.290|88.663 +639654.745|219489.644|88.444 +639660.786|219487.983|88.462 +639666.809|219486.337|88.407 +639672.930|219484.676|88.203 +639697.344|219477.997|87.938 +639703.535|219476.284|88.164 +639709.600|219474.645|87.840 +639715.721|219472.971|87.783 +639721.960|219471.243|88.005 +639727.879|219469.692|87.033 +639740.501|219466.162|87.969 +639765.342|219459.359|87.831 +639785.063|219457.536|88.337 +639778.906|219459.210|88.615 +639772.676|219460.929|88.529 +639729.242|219472.950|87.548 +639723.103|219474.620|87.776 +639717.010|219476.284|87.935 +639710.908|219477.979|87.737 +639704.751|219479.659|87.944 +639698.740|219481.292|88.221 +639692.675|219482.963|88.252 +639680.425|219486.340|88.167 +639674.426|219487.986|88.258 +639668.449|219489.616|88.487 +639662.338|219491.302|88.420 +639656.312|219492.957|88.468 +639650.292|219494.609|88.554 +639644.275|219496.258|88.673 +639638.298|219497.880|88.993 +639632.370|219499.495|89.243 +639626.393|219501.138|89.294 +639620.489|219502.756|89.398 +639614.499|219504.402|89.441 +639608.547|219506.024|89.663 +639602.633|219507.642|89.782 +639596.742|219509.249|90.020 +639590.893|219510.849|90.154 +639584.900|219512.510|90.008 +639579.100|219514.080|90.389 +639573.232|219515.686|90.514 +639567.374|219517.286|90.687 +639561.662|219518.822|91.199 +639555.938|219520.365|91.669 +639544.526|219523.425|92.793 +639538.951|219524.897|93.623 +639522.059|219529.430|95.256 +639516.439|219530.944|95.692 +639510.782|219532.481|96.003 +639505.167|219533.992|96.485 +639499.465|219535.550|96.655 +639493.798|219537.104|96.716 +639488.147|219538.650|96.860 +639482.487|219540.201|96.991 +639476.943|219541.704|97.298 +639471.328|219543.246|97.372 +639465.751|219544.764|97.597 +639460.249|219546.261|97.859 +639454.744|219547.757|98.131 +639449.261|219549.242|98.487 +639443.781|219550.723|98.859 +639438.355|219552.192|99.213 +639432.960|219553.643|99.676 +639427.529|219555.112|100.026 +639422.182|219556.557|100.438 +639416.833|219557.998|100.865 +639411.450|219559.455|101.179 +639406.129|219560.882|101.715 +639400.871|219562.293|102.251 +639395.595|219563.710|102.730 +639390.294|219565.140|103.138 +639384.994|219566.588|103.327 +639379.669|219568.045|103.452 +639374.384|219569.499|103.486 +639369.080|219570.959|103.489 +639363.801|219572.406|103.574 +639358.497|219573.863|103.599 +639353.160|219575.339|103.529 +639455.241|219549.315|97.890 +639460.752|219547.830|97.618 +639466.250|219546.346|97.326 +639471.837|219544.837|97.106 +639477.446|219543.310|96.991 +639483.112|219541.774|96.838 +639488.702|219540.256|96.692 +639494.368|219538.714|96.579 +639500.047|219537.165|96.533 +639505.743|219535.623|96.314 +639511.385|219534.111|95.896 +639517.033|219532.593|95.537 +639539.585|219526.598|93.245 +639545.194|219525.138|92.263 +639550.860|219523.623|91.769 +639562.430|219520.517|90.980 +639568.237|219518.963|90.550 +639574.025|219517.396|90.337 +639579.886|219515.805|90.160 +639585.775|219514.220|89.834 +639591.764|219512.574|89.947 +639597.714|219510.949|89.910 +639603.548|219509.371|89.697 +639609.531|219507.743|89.560 +639615.432|219506.143|89.386 +639621.431|219504.506|89.340 +639627.453|219502.872|89.151 +639633.424|219501.251|89.032 +639639.371|219499.638|88.837 +639645.357|219498.023|88.538 +639651.453|219496.362|88.447 +639657.510|219494.704|88.484 +639663.511|219493.073|88.313 +639669.699|219491.378|88.380 +639675.770|219489.726|88.264 +639681.876|219488.053|88.313 +639688.026|219486.373|88.282 +639694.202|219484.676|88.392 +639700.313|219483.014|88.240 +639706.363|219481.393|87.804 +639712.538|219479.713|87.670 +639718.692|219478.025|87.770 +639737.361|219472.907|87.914 +639749.761|219469.524|87.801 +639756.125|219467.738|88.435 +639768.762|219464.239|89.005 +639774.821|219462.642|88.170 +639781.173|219460.880|88.511 +639787.501|219459.133|88.755 +639793.622|219457.518|87.950 +639810.882|219456.817|89.102 +639804.674|219458.533|89.005 +639748.642|219474.062|87.523 +639742.601|219475.702|87.831 +639736.456|219477.382|87.996 +639724.182|219480.771|87.813 +639718.071|219482.451|87.874 +639705.863|219485.813|87.819 +639699.874|219487.428|88.215 +639693.717|219489.126|88.148 +639687.749|219490.750|88.362 +639681.668|219492.421|88.389 +639675.615|219494.073|88.554 +639669.574|219495.737|88.496 +639663.523|219497.407|88.410 +639657.592|219499.026|88.587 +639651.487|219500.702|88.609 +639645.513|219502.345|88.627 +639639.557|219503.973|88.755 +639633.616|219505.591|88.959 +639627.691|219507.197|89.258 +639621.726|219508.828|89.392 +639615.801|219510.453|89.447 +639609.912|219512.056|89.657 +639604.054|219513.662|89.730 +639598.068|219515.299|89.858 +639592.164|219516.927|89.785 +639586.272|219518.545|89.785 +639580.386|219520.161|89.834 +639574.604|219521.715|90.312 +639562.930|219524.903|90.602 +639551.308|219528.076|90.907 +639534.544|219532.511|93.272 +639528.914|219533.992|94.183 +639523.321|219535.489|94.723 +639512.022|219538.528|95.668 +639506.368|219540.055|96.009 +639500.763|219541.576|96.302 +639495.097|219543.127|96.378 +639489.330|219544.715|96.360 +639483.722|219546.251|96.439 +639478.068|219547.794|96.604 +639472.508|219549.321|96.643 +639466.970|219550.814|97.015 +639461.392|219552.329|97.271 +639455.918|219553.807|97.652 +639450.373|219555.301|98.051 +639444.939|219556.773|98.359 +639439.422|219558.270|98.633 +639434.033|219559.715|99.136 +639428.662|219561.150|99.706 +639423.264|219562.598|100.191 +639417.933|219564.027|100.691 +639412.584|219565.466|101.133 +639407.308|219566.883|101.593 +639401.983|219568.307|102.142 +639396.707|219569.721|102.636 +639391.404|219571.151|103.041 +639386.091|219572.598|103.202 +639380.720|219574.061|103.407 +639375.331|219575.549|103.343 +639370.025|219577.006|103.343 +639364.670|219578.475|103.419 +639359.351|219579.938|103.401 +639459.432|219554.332|97.292 +639464.864|219552.869|96.997 +639470.426|219551.369|96.683 +639475.925|219549.888|96.402 +639481.530|219548.364|96.274 +639487.126|219546.846|96.122 +639492.753|219545.307|96.101 +639498.373|219543.770|96.085 +639504.024|219542.237|95.933 +639509.685|219540.713|95.585 +639526.500|219536.214|94.250 +639537.610|219533.297|92.605 +639548.842|219530.329|91.202 +639566.109|219525.671|90.312 +639571.943|219524.077|90.264 +639577.786|219522.498|90.002 +639583.614|219520.929|89.700 +639589.451|219519.328|89.727 +639595.410|219517.701|89.706 +639601.314|219516.082|89.764 +639607.242|219514.467|89.672 +639613.204|219512.851|89.456 +639619.087|219511.260|89.203 +639625.109|219509.608|89.273 +639630.995|219508.014|89.066 +639636.988|219506.399|88.758 +639642.928|219504.789|88.542 +639648.991|219503.128|88.581 +639654.959|219501.498|88.523 +639661.064|219499.830|88.490 +639667.148|219498.175|88.386 +639673.210|219496.508|88.499 +639679.288|219494.853|88.414 +639685.375|219493.189|88.392 +639691.513|219491.515|88.310 +639697.542|219489.885|88.060 +639703.721|219488.205|87.901 +639709.826|219486.547|87.743 +639715.964|219484.868|87.752 +639728.416|219481.442|88.020 +639734.542|219479.787|87.722 +639740.742|219478.086|87.807 +639746.954|219476.397|87.633 +639765.949|219471.097|89.063 +639772.176|219469.417|88.731 +639797.371|219462.495|89.112 +639816.418|219457.262|89.432 +639830.185|219457.716|89.822 +639823.888|219459.466|89.547 +639798.806|219466.433|88.578 +639786.315|219469.871|88.511 +639767.924|219474.858|89.483 +639755.256|219478.464|87.776 +639749.096|219480.155|87.819 +639742.951|219481.856|87.655 +639736.862|219483.499|88.084 +639730.665|219485.206|88.026 +639712.298|219490.278|87.773 +639706.275|219491.918|87.990 +639700.252|219493.558|88.228 +639694.177|219495.228|88.234 +639688.145|219496.868|88.471 +639682.092|219498.523|88.621 +639676.139|219500.160|88.639 +639670.043|219501.836|88.639 +639664.011|219503.494|88.648 +639658.034|219505.143|88.618 +639652.090|219506.765|88.767 +639646.068|219508.414|88.871 +639640.081|219510.059|88.877 +639634.220|219511.654|89.136 +639628.258|219513.284|89.270 +639622.333|219514.912|89.294 +639616.429|219516.527|89.438 +639610.458|219518.158|89.590 +639604.609|219519.758|89.712 +639598.735|219521.371|89.755 +639592.822|219523.004|89.657 +639586.930|219524.626|89.657 +639581.057|219526.232|89.758 +639569.386|219529.423|90.038 +639540.597|219537.248|91.364 +639524.041|219541.603|94.083 +639501.580|219547.675|95.543 +639495.926|219549.220|95.668 +639490.339|219550.747|95.817 +639484.657|219552.305|95.884 +639479.076|219553.826|96.076 +639473.496|219555.347|96.293 +639467.921|219556.862|96.533 +639462.456|219558.337|96.945 +639456.981|219559.815|97.335 +639451.498|219561.296|97.707 +639446.070|219562.763|98.045 +639440.656|219564.226|98.441 +639435.228|219565.692|98.810 +639429.836|219567.139|99.307 +639424.517|219568.563|99.837 +639419.232|219569.968|100.490 +639413.916|219571.391|101.044 +639408.674|219572.790|101.624 +639403.343|219574.220|102.151 +639398.073|219575.631|102.666 +639392.824|219577.052|103.020 +639387.505|219578.502|103.166 +639382.150|219579.975|103.199 +639376.782|219581.450|103.209 +639371.427|219582.919|103.269 +639366.099|219584.391|103.209 +639360.762|219585.863|103.138 +639458.478|219561.153|97.021 +639463.974|219559.678|96.680 +639469.420|219558.227|96.183 +639475.026|219556.706|96.024 +639480.607|219555.200|95.781 +639486.203|219553.682|95.619 +639491.887|219552.134|95.543 +639497.550|219550.598|95.400 +639514.482|219546.011|94.875 +639520.109|219544.508|94.403 +639525.659|219543.048|93.656 +639547.900|219537.229|90.142 +639553.878|219535.562|90.590 +639571.126|219530.902|89.886 +639577.036|219529.289|89.861 +639582.882|219527.710|89.621 +639588.768|219526.107|89.538 +639594.608|219524.510|89.575 +639600.585|219522.870|89.645 +639606.456|219521.273|89.569 +639612.399|219519.652|89.526 +639618.309|219518.045|89.380 +639624.213|219516.445|89.212 +639630.212|219514.808|89.185 +639636.113|219513.205|89.047 +639642.059|219511.596|88.834 +639648.101|219509.950|88.764 +639654.072|219508.325|88.685 +639660.052|219506.691|88.691 +639666.081|219505.049|88.609 +639672.171|219503.390|88.538 +639678.154|219501.751|88.606 +639684.213|219500.108|88.441 +639690.276|219498.459|88.301 +639696.335|219496.816|88.164 +639702.428|219495.146|88.209 +639708.552|219493.481|88.103 +639714.614|219491.851|87.746 +639720.622|219490.253|87.127 +639726.837|219488.504|87.837 +639733.131|219486.770|87.999 +639739.233|219485.112|87.901 +639745.366|219483.453|87.639 +639751.547|219481.765|87.652 +639770.460|219476.495|88.996 +639776.510|219474.910|88.097 +639782.859|219473.124|88.758 +639808.097|219466.174|89.453 +639833.337|219459.246|89.877 +639856.599|219457.049|90.709 +639850.229|219458.801|90.666 +639831.243|219464.065|89.913 +639824.976|219465.793|89.819 +639818.725|219467.506|89.837 +639806.246|219470.941|89.706 +639799.775|219472.770|88.977 +639793.509|219474.514|88.666 +639781.009|219477.970|88.307 +639774.727|219479.717|87.990 +639762.334|219483.118|87.975 +639756.162|219484.813|87.972 +639749.986|219486.507|87.959 +639743.808|219488.205|87.953 +639737.712|219489.869|88.063 +639731.534|219491.561|88.106 +639725.374|219493.265|87.935 +639719.043|219495.072|86.990 +639713.157|219496.624|87.850 +639707.083|219498.270|88.167 +639701.026|219499.925|88.264 +639694.955|219501.589|88.310 +639688.868|219503.259|88.307 +639682.817|219504.908|88.493 +639676.791|219506.560|88.505 +639670.778|219508.206|88.596 +639664.700|219509.864|88.721 +639658.659|219511.522|88.718 +639652.691|219513.159|88.776 +639646.735|219514.784|88.904 +639640.773|219516.411|89.023 +639634.805|219518.042|89.142 +639628.837|219519.670|89.270 +639622.939|219521.279|89.432 +639617.035|219522.888|89.587 +639611.107|219524.510|89.654 +639605.185|219526.129|89.776 +639599.180|219527.793|89.569 +639593.282|219529.411|89.553 +639587.384|219531.033|89.550 +639581.575|219532.621|89.651 +639575.686|219534.233|89.724 +639558.197|219539.037|89.694 +639535.550|219545.102|91.772 +639524.483|219548.004|93.607 +639518.911|219549.488|94.257 +639513.312|219551.000|94.577 +639496.371|219555.618|95.058 +639490.784|219557.139|95.217 +639485.169|219558.675|95.299 +639479.570|219560.202|95.448 +639474.050|219561.705|95.649 +639468.445|219563.232|95.805 +639463.013|219564.683|96.360 +639457.509|219566.173|96.655 +639452.044|219567.639|97.106 +639446.655|219569.084|97.606 +639441.257|219570.529|98.079 +639435.920|219571.961|98.533 +639430.534|219573.403|99.063 +639425.243|219574.808|99.700 +639419.963|219576.207|100.386 +639414.727|219577.600|100.999 +639409.487|219578.996|101.605 +639404.160|219580.417|102.160 +639398.914|219581.831|102.532 +639393.586|219583.269|102.876 +639388.249|219584.726|102.968 +639382.900|219586.193|103.035 +639377.581|219587.656|102.992 +639372.283|219589.109|103.035 +639366.965|219590.569|103.026 +639461.041|219567.057|96.073 +639466.467|219565.618|95.485 +639472.106|219564.082|95.427 +639477.735|219562.549|95.354 +639483.271|219561.065|94.955 +639488.922|219559.519|94.991 +639494.591|219557.980|94.860 +639505.884|219554.923|94.470 +639511.586|219553.378|94.269 +639522.852|219550.351|93.616 +639528.469|219548.870|92.873 +639539.360|219546.102|90.084 +639545.176|219544.508|90.130 +639551.000|219542.929|89.968 +639556.764|219541.384|89.575 +639562.622|219539.762|89.840 +639574.415|219536.534|89.931 +639580.240|219534.968|89.584 +639586.129|219533.364|89.505 +639592.002|219531.767|89.392 +639597.979|219530.131|89.444 +639603.972|219528.482|89.575 +639609.930|219526.854|89.590 +639615.868|219525.235|89.541 +639621.790|219523.623|89.438 +639627.767|219522.002|89.310 +639633.723|219520.389|89.105 +639639.755|219518.749|88.962 +639645.705|219517.140|88.773 +639651.679|219515.512|88.700 +639657.714|219513.866|88.630 +639663.822|219512.199|88.606 +639669.851|219510.556|88.545 +639675.874|219508.916|88.474 +639681.964|219507.255|88.441 +639688.100|219505.588|88.316 +639694.183|219503.927|88.279 +639700.255|219502.275|88.212 +639706.366|219500.617|88.048 +639712.490|219498.949|87.959 +639724.813|219495.588|87.868 +639731.046|219493.871|88.051 +639737.154|219492.207|87.978 +639743.339|219490.519|87.965 +639749.569|219488.821|87.874 +639755.747|219487.135|87.874 +639761.953|219485.453|87.703 +639768.363|219483.633|88.581 +639774.376|219482.045|87.834 +639793.283|219476.812|88.749 +639818.630|219469.804|89.840 +639824.909|219468.079|89.956 +639831.216|219466.363|89.892 +639850.330|219461.087|90.575 +639856.624|219459.371|90.538 +639876.664|219458.076|90.602 +639851.497|219464.982|90.584 +639845.185|219466.717|90.532 +639832.615|219470.204|90.056 +639826.314|219471.926|90.136 +639820.106|219473.639|90.026 +639813.857|219475.349|90.081 +639807.581|219477.074|90.014 +639794.978|219480.585|89.334 +639782.402|219484.115|88.237 +639769.881|219487.577|87.886 +639763.705|219489.275|87.837 +639757.487|219490.976|87.920 +639751.401|219492.640|88.023 +639745.247|219494.320|88.148 +639739.050|219496.023|88.087 +639732.917|219497.709|88.029 +639726.809|219499.379|88.130 +639720.646|219501.083|87.965 +639708.457|219504.396|88.380 +639702.334|219506.091|88.173 +639696.235|219507.749|88.398 +639690.230|219509.392|88.465 +639684.152|219511.056|88.532 +639678.075|219512.714|88.627 +639672.067|219514.357|88.740 +639666.026|219516.015|88.731 +639659.979|219517.676|88.712 +639653.953|219519.322|88.816 +639647.985|219520.953|88.886 +639642.020|219522.581|89.005 +639636.046|219524.214|89.090 +639630.142|219525.827|89.215 +639624.198|219527.439|89.465 +639618.218|219529.070|89.587 +639612.329|219530.688|89.553 +639606.392|219532.316|89.611 +639600.497|219533.934|89.584 +639594.526|219535.577|89.547 +639588.634|219537.190|89.575 +639582.745|219538.802|89.630 +639565.265|219543.584|89.852 +639559.416|219545.188|89.874 +639547.711|219548.412|89.691 +639530.990|219552.826|92.074 +639519.831|219555.798|93.333 +639491.649|219563.436|94.634 +639486.047|219564.963|94.766 +639480.482|219566.469|95.043 +639474.898|219567.987|95.265 +639469.359|219569.496|95.427 +639463.818|219571.004|95.592 +639458.335|219572.480|95.976 +639452.976|219573.906|96.573 +639447.600|219575.345|97.103 +639442.226|219576.777|97.676 +639436.840|219578.216|98.201 +639431.561|219579.615|98.874 +639426.306|219581.002|99.633 +639421.018|219582.404|100.295 +639410.481|219585.205|101.538 +639405.208|219586.613|102.053 +639399.959|219588.030|102.413 +639394.674|219589.460|102.672 +639389.340|219590.917|102.788 +639384.046|219592.368|102.812 +639378.736|219593.825|102.800 +639373.439|219595.276|102.846 +639368.132|219596.733|102.876 +639470.307|219571.227|94.988 +639475.949|219569.694|94.924 +639481.542|219568.185|94.702 +639487.138|219566.670|94.513 +639492.735|219565.158|94.333 +639504.055|219562.113|93.735 +639509.694|219560.589|93.510 +639515.351|219559.074|93.117 +639532.203|219554.612|91.300 +639537.586|219553.247|89.910 +639543.380|219551.671|89.837 +639549.068|219550.153|89.364 +639566.859|219545.261|89.855 +639584.403|219540.497|89.538 +639590.307|219538.887|89.520 +639596.272|219537.263|89.486 +639602.268|219535.617|89.599 +639608.199|219534.008|89.474 +639614.158|219532.380|89.480 +639620.117|219530.752|89.508 +639626.079|219529.143|89.276 +639632.028|219527.537|89.026 +639638.042|219525.894|89.054 +639644.031|219524.263|88.999 +639650.057|219522.629|88.843 +639656.099|219520.987|88.767 +639662.140|219519.341|88.709 +639668.181|219517.698|88.666 +639674.286|219516.030|88.642 +639680.373|219514.378|88.551 +639686.451|219512.726|88.441 +639692.531|219511.071|88.371 +639698.649|219509.416|88.173 +639704.784|219507.749|88.084 +639717.089|219504.390|88.112 +639723.274|219502.708|88.014 +639729.431|219501.022|88.103 +639735.606|219499.346|87.990 +639741.818|219497.642|88.081 +639747.999|219495.959|88.042 +639754.226|219494.268|87.929 +639760.459|219492.570|87.877 +639766.644|219490.878|87.923 +639772.929|219489.168|87.828 +639798.297|219482.115|89.566 +639817.308|219476.879|90.236 +639823.602|219475.172|90.053 +639829.935|219473.441|90.108 +639836.230|219471.734|89.962 +639849.071|219468.168|90.794 +639855.417|219466.446|90.651 +639880.834|219459.520|90.495 +639887.244|219457.771|90.474 +639890.350|219460.901|90.395 +639884.123|219462.587|90.700 +639852.680|219471.200|90.782 +639846.425|219472.919|90.700 +639833.828|219476.416|90.114 +639827.598|219478.113|90.236 +639821.310|219479.851|90.078 +639815.070|219481.551|90.200 +639802.525|219485.044|89.459 +639796.322|219486.742|89.505 +639790.040|219488.489|89.154 +639777.528|219491.970|88.474 +639771.240|219493.716|88.179 +639758.871|219497.115|88.039 +639752.681|219498.815|87.987 +639746.515|219500.501|88.066 +639740.385|219502.183|88.020 +639734.265|219503.860|88.045 +639728.160|219505.524|88.161 +639722.009|219507.219|88.075 +639709.521|219510.736|86.822 +639691.580|219515.546|88.282 +639685.490|219517.213|88.310 +639679.486|219518.850|88.441 +639673.475|219520.490|88.566 +639667.452|219522.133|88.651 +639661.405|219523.794|88.642 +639655.398|219525.427|88.834 +639649.448|219527.043|89.011 +639643.477|219528.674|89.102 +639631.431|219531.990|88.916 +639625.597|219533.557|89.364 +639619.678|219535.172|89.477 +639613.719|219536.809|89.435 +639607.702|219538.458|89.465 +639601.817|219540.070|89.489 +639595.903|219541.695|89.422 +639589.990|219543.319|89.377 +639584.147|219544.901|89.642 +639572.330|219548.138|89.685 +639566.478|219549.744|89.688 +639554.771|219552.969|89.483 +639548.998|219554.545|89.581 +639543.091|219556.176|89.453 +639509.428|219565.149|92.912 +639503.848|219566.649|93.333 +639492.664|219569.672|93.909 +639486.965|219571.233|93.952 +639481.420|219572.726|94.324 +639475.827|219574.244|94.540 +639470.161|219575.799|94.500 +639464.629|219577.301|94.717 +639459.225|219578.734|95.390 +639453.793|219580.179|95.988 +639448.468|219581.584|96.722 +639443.101|219583.013|97.320 +639437.736|219584.440|97.935 +639432.378|219585.860|98.585 +639427.135|219587.238|99.402 +639421.881|219588.619|100.191 +639416.559|219590.036|100.761 +639411.325|219591.426|101.398 +639406.071|219592.825|101.977 +639400.795|219594.251|102.261 +639395.415|219595.711|102.453 +639390.126|219597.141|102.727 +639384.716|219598.634|102.617 +639379.401|219600.091|102.599 +639374.012|219601.573|102.590 +639468.600|219577.923|94.476 +639474.157|219576.421|94.330 +639479.774|219574.900|94.177 +639485.340|219573.406|93.854 +639490.936|219571.894|93.665 +639502.174|219568.865|93.229 +639513.309|219565.902|92.224 +639541.573|219558.364|89.989 +639547.251|219556.852|89.480 +639553.024|219555.289|89.343 +639570.672|219550.442|89.794 +639588.296|219545.657|89.529 +639594.160|219544.072|89.346 +639600.073|219542.460|89.374 +639606.056|219540.823|89.441 +639611.991|219539.214|89.325 +639617.959|219537.583|89.358 +639623.976|219535.943|89.343 +639629.822|219534.383|88.916 +639641.858|219531.094|88.993 +639647.936|219529.433|89.038 +639653.867|219527.838|88.758 +639659.902|219526.199|88.648 +639665.947|219524.556|88.609 +639672.027|219522.910|88.441 +639678.056|219521.270|88.368 +639684.128|219519.627|88.206 +639690.212|219517.975|88.118 +639696.421|219516.265|88.328 +639702.410|219514.668|87.853 +639714.812|219511.279|87.978 +639720.966|219509.596|88.017 +639727.132|219507.908|88.133 +639733.308|219506.234|87.999 +639739.507|219504.543|88.002 +639745.689|219502.860|87.944 +639751.940|219501.156|87.929 +639758.143|219499.458|88.020 +639770.737|219496.008|88.225 +639802.311|219487.309|89.465 +639821.389|219482.054|90.142 +639827.665|219480.338|90.206 +639833.968|219478.628|90.105 +639846.760|219475.102|90.602 +639853.125|219473.371|90.541 +639878.588|219466.427|90.544 +639884.955|219464.687|90.617 +639891.344|219462.956|90.471 +639929.517|219456.704|91.184 +639923.119|219458.496|90.703 +639885.098|219468.933|90.632 +639866.213|219474.123|90.501 +639853.698|219477.549|90.602 +639847.419|219479.262|90.748 +639834.840|219482.749|90.261 +639828.597|219484.456|90.328 +639803.610|219491.336|89.998 +639797.273|219493.125|89.325 +639772.304|219500.053|88.270 +639766.013|219501.799|87.993 +639759.904|219503.479|87.978 +639753.751|219505.158|88.093 +639747.557|219506.859|88.051 +639741.431|219508.542|88.020 +639735.313|219510.218|88.057 +639729.196|219511.891|88.127 +639723.054|219513.580|88.087 +639716.958|219515.256|87.990 +639710.902|219516.908|88.100 +639704.739|219518.600|88.045 +639680.547|219525.211|88.289 +639674.542|219526.845|88.447 +639668.492|219528.503|88.435 +639662.557|219530.115|88.639 +639656.528|219531.758|88.743 +639644.605|219535.007|89.020 +639638.624|219536.659|88.825 +639626.697|219539.899|89.197 +639620.833|219541.503|89.264 +639614.880|219543.133|89.258 +639556.100|219559.221|89.520 +639550.290|219560.818|89.486 +639544.505|219562.397|89.575 +639538.714|219563.976|89.663 +639533.188|219565.430|90.498 +639527.625|219566.902|91.205 +639510.636|219571.495|92.044 +639505.055|219572.992|92.483 +639499.480|219574.485|92.964 +639488.172|219577.570|93.138 +639482.591|219579.082|93.388 +639477.120|219580.551|93.805 +639471.487|219582.087|93.894 +639465.976|219583.574|94.193 +639460.566|219585.010|94.857 +639455.186|219586.442|95.403 +639449.813|219587.857|96.213 +639444.500|219589.253|97.012 +639439.242|219590.637|97.768 +639433.832|219592.084|98.246 +639428.580|219593.465|99.042 +639423.350|219594.834|99.917 +639418.110|219596.227|100.529 +639412.822|219597.623|101.230 +639407.537|219599.037|101.718 +639402.239|219600.454|102.169 +639396.905|219601.908|102.291 +639391.544|219603.374|102.325 +639386.182|219604.840|102.383 +639380.867|219606.297|102.370 +639375.548|219607.754|102.376 +639467.823|219584.553|93.876 +639473.352|219583.062|93.626 +639478.921|219581.550|93.528 +639484.368|219580.103|93.016 +639489.955|219578.597|92.778 +639495.655|219577.030|92.958 +639501.251|219575.534|92.537 +639506.798|219574.046|92.190 +639512.224|219572.641|91.169 +639523.638|219569.541|90.980 +639540.524|219565.039|89.541 +639546.270|219563.473|89.532 +639551.997|219561.915|89.471 +639557.864|219560.318|89.441 +639592.813|219550.817|88.947 +639616.633|219544.295|89.276 +639622.482|219542.710|89.124 +639634.375|219539.488|88.822 +639640.371|219537.857|88.767 +639646.406|219536.199|88.898 +639652.310|219534.599|88.773 +639658.345|219532.959|88.660 +639664.371|219531.328|88.514 +639670.397|219529.692|88.410 +639676.356|219528.073|88.310 +639682.488|219526.391|88.407 +639688.417|219524.833|87.618 +639694.625|219523.105|88.093 +639700.706|219521.450|88.033 +639706.854|219519.773|87.981 +639712.947|219518.109|88.008 +639719.015|219516.460|87.941 +639725.249|219514.750|88.045 +639731.378|219513.080|88.008 +639737.572|219511.394|87.972 +639743.771|219509.703|87.984 +639749.971|219508.008|88.026 +639756.171|219506.310|88.090 +639774.879|219501.190|88.298 +639787.583|219497.657|89.188 +639800.147|219494.207|89.477 +639825.473|219487.233|90.355 +639831.789|219485.514|90.303 +639838.104|219483.795|90.258 +639857.127|219478.595|90.355 +639863.500|219476.854|90.373 +639869.880|219475.108|90.450 +639876.250|219473.364|90.514 +639882.547|219471.673|90.157 +639889.045|219469.865|90.636 +639927.667|219459.292|91.093 +639934.138|219457.518|91.202 +639949.774|219457.128|92.120 +639943.346|219458.917|91.772 +639936.896|219460.715|91.327 +639930.544|219462.471|91.132 +639924.122|219464.245|90.925 +639892.374|219472.974|90.514 +639879.749|219476.431|90.572 +639873.470|219478.144|90.645 +639867.133|219479.899|90.410 +639860.830|219481.625|90.410 +639835.766|219488.498|90.315 +639829.503|219490.217|90.285 +639798.261|219498.812|89.819 +639785.776|219502.275|89.246 +639773.270|219505.743|88.697 +639760.834|219509.182|88.267 +639754.638|219510.885|88.194 +639748.496|219512.577|88.084 +639742.296|219514.278|88.051 +639736.164|219515.960|88.029 +639730.043|219517.631|88.100 +639723.917|219519.307|88.151 +639717.833|219520.977|88.109 +639711.755|219522.645|88.130 +639705.662|219524.318|88.084 +639699.569|219525.988|88.078 +639693.510|219527.640|88.231 +639687.469|219529.298|88.191 +639681.412|219530.966|88.106 +639675.344|219532.618|88.279 +639663.359|219535.888|88.471 +639657.412|219537.507|88.654 +639639.417|219542.445|88.642 +639627.569|219545.678|88.804 +639621.568|219547.340|88.593 +639580.100|219558.757|87.981 +639568.389|219561.970|87.993 +639562.610|219563.549|88.060 +639551.378|219566.524|89.493 +639545.596|219568.103|89.599 +639539.820|219569.675|89.736 +639528.555|219572.717|90.386 +639506.060|219578.789|91.718 +639489.193|219583.379|92.196 +639483.700|219584.845|92.772 +639478.211|219586.324|93.129 +639472.660|219587.835|93.272 +639467.186|219589.305|93.711 +639461.718|219590.771|94.177 +639456.396|219592.176|94.927 +639451.099|219593.566|95.774 +639445.795|219594.959|96.607 +639440.537|219596.345|97.362 +639435.246|219597.748|98.018 +639429.994|219599.128|98.816 +639424.755|219600.506|99.658 +639419.573|219601.868|100.468 +639414.343|219603.252|101.136 +639409.055|219604.670|101.611 +639403.775|219606.093|101.904 +639398.393|219607.559|102.084 +639393.016|219609.034|102.078 +639387.706|219610.491|102.078 +639382.339|219611.957|102.136 +639471.536|219589.811|93.174 +639477.046|219588.332|92.851 +639482.661|219586.814|92.675 +639488.138|219585.370|92.016 +639499.538|219582.255|92.092 +639505.134|219580.761|91.657 +639516.226|219577.826|90.453 +639527.777|219574.671|90.507 +639533.258|219573.257|89.444 +639539.104|219571.657|89.514 +639544.950|219570.056|89.611 +639556.535|219566.908|89.441 +639573.665|219562.357|87.828 +639591.639|219557.398|88.615 +639603.414|219554.201|88.417 +639627.405|219547.620|88.962 +639651.142|219541.244|87.642 +639663.441|219537.815|88.645 +639681.571|219532.901|88.221 +639693.781|219529.573|88.200 +639699.862|219527.921|88.109 +639705.958|219526.260|88.112 +639712.112|219524.583|88.087 +639718.272|219522.901|88.118 +639724.350|219521.246|88.090 +639730.549|219519.560|88.036 +639736.697|219517.881|88.072 +639742.897|219516.189|88.072 +639749.099|219514.494|88.097 +639755.314|219512.793|88.206 +639761.511|219511.099|88.261 +639774.102|219507.630|88.746 +639780.335|219505.905|89.057 +639786.572|219504.204|89.063 +639792.960|219502.427|89.544 +639805.704|219498.861|90.773 +639811.974|219497.154|90.721 +639818.295|219495.411|90.971 +639837.117|219490.321|90.401 +639862.442|219483.414|90.398 +639868.761|219481.686|90.474 +639875.174|219479.915|90.745 +639919.891|219467.710|90.840 +639926.329|219465.936|91.087 +639932.787|219464.178|91.081 +639939.237|219462.386|91.486 +639945.751|219460.578|91.897 +639952.249|219458.783|92.242 +639958.784|219456.985|92.440 +639970.936|219457.298|93.897 +639964.404|219459.170|92.775 +639958.007|219460.938|92.577 +639951.597|219462.712|92.333 +639938.661|219466.308|91.605 +639932.202|219468.113|91.145 +639925.853|219469.862|90.989 +639919.452|219471.618|90.962 +639881.398|219482.064|90.623 +639875.107|219483.786|90.639 +639868.715|219485.550|90.477 +639862.488|219487.251|90.520 +639843.554|219492.439|90.507 +639837.257|219494.179|90.279 +639818.691|219499.178|91.446 +639806.094|219502.674|90.834 +639762.126|219514.900|88.362 +639755.869|219516.616|88.319 +639749.724|219518.307|88.215 +639743.589|219519.990|88.176 +639737.395|219521.685|88.200 +639731.253|219523.370|88.170 +639725.108|219525.056|88.145 +639718.964|219526.738|88.148 +639712.892|219528.399|88.197 +639706.790|219530.076|88.133 +639700.721|219531.728|88.246 +639694.628|219533.398|88.264 +639688.514|219535.074|88.206 +639682.464|219536.736|88.164 +639676.499|219538.366|88.225 +639622.458|219553.198|87.834 +639616.724|219554.701|88.761 +639604.907|219557.925|88.941 +639599.040|219559.522|89.093 +639593.121|219561.147|89.051 +639587.317|219562.723|89.224 +639540.911|219575.403|89.721 +639535.038|219577.024|89.532 +639529.277|219578.603|89.520 +639523.641|219580.133|89.742 +639518.030|219581.645|90.062 +639501.360|219586.107|91.483 +639495.716|219587.656|91.486 +639484.633|219590.652|92.050 +639479.089|219592.154|92.233 +639473.614|219593.624|92.662 +639468.213|219595.071|93.126 +639462.812|219596.498|93.845 +639457.527|219597.879|94.729 +639452.227|219599.268|95.576 +639446.987|219600.646|96.396 +639441.781|219602.003|97.344 +639436.511|219603.392|98.079 +639431.265|219604.767|98.905 +639426.072|219606.136|99.676 +639420.890|219607.495|100.499 +639415.623|219608.897|101.047 +639410.307|219610.327|101.441 +639405.019|219611.753|101.718 +639399.676|219613.213|101.809 +639394.385|219614.655|101.874 +639389.057|219616.121|101.825 +639383.720|219617.587|101.758 +639475.541|219594.949|92.382 +639481.113|219593.453|92.035 +639486.535|219592.020|91.422 +639492.177|219590.484|91.361 +639497.785|219588.966|91.184 +639503.445|219587.418|91.224 +639514.485|219584.510|89.813 +639520.243|219582.940|89.755 +639525.982|219581.383|89.636 +639537.491|219578.246|89.575 +639554.737|219573.580|89.023 +639560.620|219571.955|89.300 +639566.469|219570.364|89.218 +639572.327|219568.767|89.182 +639584.068|219565.558|89.252 +639589.996|219563.936|89.285 +639595.806|219562.360|89.139 +639601.780|219560.733|89.121 +639607.650|219559.141|88.968 +639625.347|219554.347|88.450 +639637.436|219551.034|88.645 +639643.437|219549.379|88.886 +639655.282|219546.197|88.185 +639661.350|219544.542|88.191 +639667.465|219542.853|88.426 +639673.503|219541.210|88.356 +639679.492|219539.595|88.087 +639685.652|219537.900|88.282 +639691.769|219536.227|88.331 +639697.862|219534.568|88.279 +639703.916|219532.929|88.078 +639710.097|219531.237|88.167 +639716.190|219529.573|88.185 +639722.341|219527.893|88.188 +639728.556|219526.196|88.194 +639734.697|219524.519|88.194 +639740.833|219522.843|88.197 +639747.048|219521.142|88.267 +639753.309|219519.432|88.276 +639759.539|219517.716|88.471 +639772.103|219514.238|89.133 +639797.273|219507.304|90.011 +639803.689|219505.503|90.675 +639810.032|219503.747|91.007 +639841.378|219495.237|90.364 +639866.768|219488.306|90.392 +639873.074|219486.581|90.419 +639879.472|219484.819|90.617 +639917.849|219474.334|90.757 +639924.354|219472.542|90.998 +639930.745|219470.798|90.986 +639937.305|219468.960|91.620 +639950.326|219465.348|92.422 +639956.803|219463.565|92.638 +639963.252|219461.797|92.733 +639969.787|219459.996|92.964 +639976.453|219458.057|94.574 +639990.876|219458.079|93.101 +639984.549|219459.767|93.690 +639978.279|219461.441|94.275 +639971.692|219463.324|93.193 +639965.355|219465.077|92.940 +639958.909|219466.851|92.833 +639952.584|219468.591|92.733 +639946.113|219470.408|92.123 +639939.667|219472.203|91.718 +639926.886|219475.763|90.876 +639920.537|219477.513|90.754 +639876.366|219489.610|90.715 +639870.047|219491.351|90.587 +639863.765|219493.061|90.709 +639845.026|219498.197|90.675 +639826.363|219503.262|91.263 +639813.869|219506.719|90.800 +639801.327|219510.175|90.526 +639795.103|219511.903|90.175 +639770.128|219518.835|88.941 +639757.670|219522.279|88.487 +639751.532|219523.967|88.398 +639745.320|219525.674|88.316 +639739.202|219527.345|88.380 +639733.140|219529.003|88.404 +639727.004|219530.685|88.420 +639720.860|219532.368|88.414 +639714.764|219534.041|88.356 +639708.649|219535.727|88.234 +639702.553|219537.397|88.212 +639696.549|219539.034|88.328 +639690.526|219540.683|88.371 +639684.387|219542.374|88.228 +639678.325|219544.042|88.154 +639672.341|219545.660|88.441 +639666.398|219547.276|88.615 +639660.421|219548.909|88.676 +639654.340|219550.580|88.602 +639648.360|219552.213|88.685 +639642.468|219553.814|88.880 +639630.526|219557.081|88.947 +639624.610|219558.690|89.093 +639618.632|219560.333|89.005 +639606.888|219563.540|89.200 +639600.988|219565.152|89.218 +639595.099|219566.761|89.291 +639589.204|219568.371|89.364 +639583.346|219569.980|89.337 +639577.466|219571.599|89.240 +639571.608|219573.202|89.246 +639565.814|219574.787|89.264 +639559.961|219576.387|89.334 +639554.140|219577.987|89.267 +639548.364|219579.560|89.410 +639525.446|219585.812|89.803 +639519.725|219587.384|89.712 +639514.092|219588.890|90.233 +639502.833|219591.950|90.575 +639491.585|219595.001|91.020 +639480.564|219597.943|92.083 +639475.020|219599.448|92.269 +639469.521|219600.930|92.632 +639464.242|219602.310|93.528 +639458.981|219603.679|94.500 +639453.690|219605.066|95.378 +639448.429|219606.434|96.366 +639443.268|219607.769|97.463 +639438.032|219609.141|98.307 +639432.747|219610.540|98.993 +639427.507|219611.930|99.615 +639422.347|219613.280|100.502 +639417.046|219614.701|100.944 +639411.703|219616.142|101.243 +639406.403|219617.578|101.471 +639401.145|219619.007|101.621 +639395.756|219620.489|101.584 +639390.337|219621.982|101.471 +639384.914|219623.491|101.136 +639479.732|219600.183|91.782 +639490.808|219597.214|91.096 +639507.520|219592.749|89.904 +639513.272|219591.173|90.029 +639518.950|219589.637|89.898 +639524.595|219588.134|89.413 +639535.986|219585.053|89.108 +639541.914|219583.410|89.483 +639547.718|219581.837|89.395 +639553.487|219580.279|89.200 +639559.330|219578.679|89.304 +639565.119|219577.109|89.215 +639571.004|219575.500|89.258 +639576.826|219573.909|89.337 +639582.700|219572.306|89.377 +639588.622|219570.693|89.355 +639594.538|219569.084|89.331 +639600.418|219567.493|89.191 +639606.325|219565.884|89.166 +639624.152|219561.053|88.816 +639630.163|219559.398|89.032 +639636.195|219557.752|89.069 +639642.108|219556.154|88.907 +639648.046|219554.582|88.301 +639654.120|219552.905|88.575 +639660.204|219551.241|88.633 +639666.203|219549.607|88.630 +639672.219|219547.983|88.444 +639678.297|219546.343|88.240 +639684.344|219544.697|88.212 +639690.419|219543.033|88.334 +639696.585|219541.353|88.292 +639702.678|219539.698|88.243 +639708.826|219538.028|88.154 +639714.971|219536.336|88.380 +639721.146|219534.648|88.465 +639727.297|219532.971|88.462 +639733.442|219531.298|88.453 +639739.635|219529.618|88.371 +639745.835|219527.930|88.350 +639751.977|219526.253|88.389 +639758.170|219524.589|88.069 +639764.522|219522.800|88.846 +639777.053|219519.350|89.340 +639789.598|219515.906|89.678 +639795.889|219514.193|89.660 +639802.406|219512.333|90.797 +639827.622|219505.420|91.324 +639833.877|219503.747|90.898 +639840.183|219502.013|91.129 +639846.462|219500.345|90.526 +639871.855|219493.423|90.559 +639878.249|219491.671|90.696 +639923.012|219479.445|90.968 +639929.425|219477.690|91.059 +639942.422|219474.078|91.980 +639955.455|219470.454|92.882 +639961.963|219468.680|92.894 +639968.416|219466.909|93.007 +639974.935|219465.089|93.583 +639987.770|219461.663|92.592 +639994.223|219459.920|92.364 +640000.770|219458.100|92.824 +640007.086|219456.460|91.684 +639998.332|219462.611|93.083 +639991.983|219464.345|93.114 +639985.631|219466.049|93.574 +639979.303|219467.735|94.205 +639972.774|219469.603|93.104 +639966.398|219471.356|93.028 +639960.009|219473.112|92.909 +639953.636|219474.855|92.931 +639940.743|219478.446|92.096 +639927.822|219482.076|90.846 +639921.491|219483.807|90.861 +639883.501|219494.222|90.645 +639877.204|219495.947|90.645 +639871.004|219497.630|90.843 +639852.104|219502.817|90.639 +639845.898|219504.497|90.892 +639827.278|219509.557|91.394 +639821.035|219511.257|91.538 +639808.514|219514.723|91.020 +639795.914|219518.231|90.209 +639789.662|219519.975|89.758 +639752.406|219530.262|88.551 +639746.262|219531.950|88.474 +639740.099|219533.624|88.654 +639734.039|219535.279|88.718 +639727.949|219536.952|88.654 +639721.789|219538.641|88.606 +639715.681|219540.320|88.499 +639709.530|219542.024|88.225 +639703.526|219543.661|88.337 +639697.433|219545.325|88.383 +639691.404|219546.971|88.426 +639685.326|219548.647|88.270 +639679.358|219550.278|88.325 +639673.369|219551.896|88.606 +639667.334|219553.542|88.697 +639661.369|219555.164|88.831 +639655.449|219556.779|88.889 +639649.417|219558.440|88.773 +639643.367|219560.108|88.606 +639637.554|219561.659|89.166 +639631.617|219563.281|89.224 +639613.710|219568.209|88.843 +639607.891|219569.776|89.194 +639601.999|219571.385|89.249 +639596.150|219572.989|89.233 +639590.259|219574.595|89.346 +639584.440|219576.177|89.486 +639578.588|219577.777|89.514 +639572.711|219579.389|89.462 +639566.896|219580.983|89.410 +639561.086|219582.578|89.395 +639555.243|219584.184|89.279 +639549.537|219585.735|89.438 +639543.740|219587.314|89.532 +639531.969|219590.606|88.590 +639526.290|219592.136|88.935 +639515.171|219595.102|90.014 +639509.581|219596.598|90.459 +639498.328|219599.649|90.882 +639492.619|219601.225|90.700 +639487.084|219602.725|90.916 +639470.752|219607.071|92.592 +639465.449|219608.446|93.662 +639460.148|219609.833|94.513 +639454.894|219611.198|95.521 +639449.630|219612.567|96.512 +639444.433|219613.899|97.734 +639439.202|219615.267|98.615 +639433.899|219616.673|99.258 +639428.598|219618.075|99.914 +639423.386|219619.446|100.654 +639418.055|219620.882|100.993 +639412.666|219622.345|101.160 +639407.323|219623.802|101.261 +639401.953|219625.271|101.288 +639396.549|219626.755|101.224 +639391.108|219628.258|101.057 +639478.284|219606.800|91.620 +639483.740|219605.352|91.087 +639489.296|219603.850|90.922 +639494.801|219602.374|90.596 +639500.376|219600.878|90.285 +639517.305|219596.291|89.928 +639528.411|219593.368|88.514 +639534.297|219591.734|88.941 +639540.226|219590.073|89.541 +639545.974|219588.509|89.493 +639551.659|219586.982|89.218 +639557.511|219585.376|89.343 +639563.342|219583.785|89.401 +639569.169|219582.187|89.480 +639575.037|219580.590|89.453 +639580.907|219578.990|89.465 +639586.735|219577.411|89.328 +639592.557|219575.838|89.172 +639598.503|219574.208|89.276 +639604.346|219572.617|89.258 +639610.266|219571.023|89.011 +639616.194|219569.419|88.825 +639622.119|219567.798|88.919 +639628.139|219566.140|89.145 +639634.086|219564.524|89.096 +639646.007|219561.312|88.599 +639652.014|219559.654|88.859 +639658.016|219558.020|88.840 +639664.060|219556.380|88.731 +639670.098|219554.743|88.615 +639676.127|219553.109|88.478 +639682.122|219551.497|88.203 +639688.212|219549.824|88.371 +639694.327|219548.156|88.383 +639700.429|219546.495|88.350 +639706.500|219544.849|88.209 +639712.624|219543.173|88.313 +639718.854|219541.451|88.633 +639725.008|219539.774|88.627 +639731.174|219538.089|88.691 +639737.377|219536.400|88.642 +639743.506|219534.733|88.602 +639749.636|219533.066|88.566 +639755.918|219531.347|88.642 +639774.727|219526.156|89.505 +639787.242|219522.733|89.663 +639793.628|219520.962|90.078 +639806.310|219517.417|91.242 +639818.844|219514.013|91.087 +639825.266|219512.233|91.498 +639837.866|219508.798|91.489 +639844.130|219507.112|91.154 +639850.342|219505.466|90.547 +639856.703|219503.713|90.773 +639875.747|219498.529|90.666 +639882.114|219496.795|90.648 +639888.539|219495.045|90.629 +639920.525|219486.312|90.834 +639926.957|219484.575|90.617 +639940.081|219480.878|92.248 +639953.099|219477.275|92.973 +639959.543|219475.519|92.967 +639965.989|219473.758|93.004 +639972.503|219471.978|93.092 +639979.102|219470.097|94.183 +639985.573|219468.378|93.607 +639991.940|219466.671|93.220 +640017.437|219459.978|89.733 +640030.372|219456.530|88.673 +640044.299|219456.719|88.630 +640037.861|219458.475|88.810 +640031.403|219460.243|88.846 +640025.020|219461.980|89.014 +640018.753|219463.629|90.011 +639993.552|219470.310|93.138 +639987.197|219472.057|93.110 +639980.952|219473.685|94.302 +639974.441|219475.544|93.299 +639968.047|219477.315|93.098 +639961.664|219479.070|93.025 +639955.309|219480.805|93.129 +639942.480|219484.386|92.288 +639929.563|219488.025|91.029 +639923.214|219489.775|90.904 +639916.831|219491.549|90.626 +639860.233|219507.066|90.764 +639854.012|219508.764|90.907 +639841.652|219512.099|91.681 +639835.410|219513.802|91.775 +639829.155|219515.543|91.462 +639822.931|219517.259|91.343 +639810.767|219520.478|92.967 +639791.637|219525.927|90.261 +639773.026|219531.072|89.755 +639760.560|219534.550|88.944 +639754.409|219536.248|88.813 +639748.252|219537.949|88.663 +639742.129|219539.625|88.712 +639736.011|219541.295|88.807 +639729.927|219542.966|88.779 +639723.840|219544.636|88.752 +639717.717|219546.328|88.578 +639711.584|219548.022|88.386 +639705.479|219549.699|88.353 +639699.453|219551.351|88.377 +639693.440|219552.991|88.490 +639687.316|219554.673|88.426 +639675.328|219557.944|88.633 +639669.376|219559.565|88.795 +639663.423|219561.184|88.965 +639657.379|219562.836|89.063 +639651.420|219564.475|88.968 +639645.458|219566.115|88.883 +639627.569|219571.010|89.020 +639621.705|219572.611|89.139 +639615.767|219574.229|89.255 +639609.943|219575.823|89.294 +639604.036|219577.442|89.297 +639598.113|219579.069|89.255 +639592.179|219580.700|89.194 +639586.357|219582.288|89.322 +639580.538|219583.873|89.477 +639574.775|219585.443|89.611 +639568.987|219587.025|89.654 +639563.177|219588.619|89.642 +639557.331|219590.234|89.505 +639551.528|219591.822|89.550 +639545.755|219593.407|89.480 +639540.021|219594.974|89.563 +639528.472|219598.165|89.249 +639522.797|219599.713|89.346 +639505.884|219604.307|89.928 +639494.652|219607.367|90.218 +639489.202|219608.806|90.977 +639472.828|219613.183|92.504 +639467.543|219614.548|93.632 +639462.264|219615.929|94.549 +639457.058|219617.270|95.735 +639451.864|219618.623|96.719 +639446.682|219619.967|97.759 +639441.491|219621.315|98.771 +639436.228|219622.702|99.539 +639430.973|219624.101|100.112 +639425.697|219625.509|100.633 +639420.332|219626.963|100.868 +639414.980|219628.429|100.916 +639409.634|219629.889|101.008 +639404.233|219631.373|100.941 +639398.850|219632.848|100.944 +639393.406|219634.357|100.761 +639488.464|219610.598|90.837 +639493.963|219609.141|90.230 +639504.899|219606.242|89.072 +639510.904|219604.529|90.078 +639522.142|219601.500|89.602 +639527.881|219599.924|89.715 +639533.617|219598.369|89.569 +639539.357|219596.812|89.456 +639545.124|219595.236|89.465 +639550.964|219593.639|89.514 +639556.718|219592.069|89.514 +639562.564|219590.466|89.614 +639568.371|219588.884|89.590 +639574.226|219587.290|89.514 +639579.996|219585.726|89.383 +639585.824|219584.147|89.230 +639591.734|219582.541|89.154 +639597.601|219580.935|89.194 +639603.530|219579.316|89.227 +639609.443|219577.701|89.221 +639615.331|219576.101|89.136 +639621.202|219574.510|89.005 +639633.144|219571.245|89.047 +639639.057|219569.648|88.855 +639644.998|219568.029|88.810 +639651.045|219566.368|88.941 +639657.074|219564.716|89.023 +639663.072|219563.083|88.980 +639669.043|219561.461|88.862 +639674.993|219559.852|88.654 +639680.909|219558.285|88.036 +639687.018|219556.599|88.273 +639693.114|219554.920|88.465 +639699.142|219553.280|88.404 +639705.306|219551.601|88.350 +639711.331|219549.961|88.310 +639717.501|219548.251|88.639 +639723.673|219546.562|88.691 +639729.842|219544.874|88.764 +639735.987|219543.197|88.752 +639742.135|219541.521|88.755 +639748.316|219539.842|88.639 +639754.485|219538.144|88.807 +639760.700|219536.440|88.895 +639805.152|219523.980|93.330 +639811.507|219522.197|94.019 +639829.692|219517.478|90.678 +639836.233|219515.613|91.760 +639861.193|219508.880|90.651 +639918.550|219493.210|90.840 +639924.969|219491.451|90.913 +639931.449|219489.647|91.407 +639944.559|219485.980|92.592 +639951.008|219484.194|92.976 +639957.482|219482.411|93.156 +639963.904|219480.668|93.028 +639970.418|219478.884|93.092 +639976.868|219477.117|93.205 +639983.470|219475.263|93.906 +639989.797|219473.617|92.803 +639996.229|219471.889|92.428 +640002.748|219470.094|92.656 +640028.187|219463.428|88.843 +640034.761|219461.651|88.642 +640047.792|219458.112|88.383 +640067.311|219456.521|88.414 +640060.868|219458.286|88.487 +640054.406|219460.063|88.438 +640035.063|219465.345|88.782 +640028.681|219467.086|88.944 +640003.486|219473.736|92.553 +639997.058|219475.507|92.470 +639990.724|219477.202|93.059 +639984.509|219478.836|94.019 +639978.008|219480.658|93.510 +639971.601|219482.438|93.235 +639965.157|219484.212|93.174 +639958.830|219485.956|93.065 +639945.876|219489.601|91.852 +639926.679|219494.938|90.934 +639920.342|219496.679|90.925 +639913.993|219498.422|90.892 +639901.344|219501.903|90.767 +639894.934|219503.689|90.428 +639876.143|219508.804|90.992 +639869.849|219510.529|91.050 +639863.570|219512.266|90.843 +639845.014|219517.283|91.916 +639838.616|219519.091|91.187 +639788.723|219532.877|89.977 +639782.603|219534.541|90.215 +639776.440|219536.230|90.267 +639770.176|219537.979|89.858 +639763.937|219539.732|89.282 +639757.780|219541.433|89.133 +639751.602|219543.149|88.886 +639745.487|219544.822|88.968 +639739.413|219546.489|88.956 +639733.277|219548.175|88.974 +639727.126|219549.863|88.965 +639721.036|219551.561|88.624 +639708.817|219554.929|88.468 +639702.785|219556.584|88.478 +639696.759|219558.236|88.517 +639690.727|219559.888|88.563 +639684.613|219561.589|88.270 +639678.642|219563.204|88.627 +639672.704|219564.820|88.837 +639666.812|219566.426|88.993 +639660.835|219568.060|89.078 +639654.852|219569.697|89.157 +639648.878|219571.349|89.023 +639642.922|219572.989|88.971 +639637.003|219574.604|89.099 +639631.126|219576.213|89.151 +639625.155|219577.859|89.096 +639619.224|219579.496|88.965 +639613.289|219581.136|88.831 +639607.489|219582.718|88.983 +639601.643|219584.324|88.977 +639595.782|219585.918|89.200 +639584.141|219589.094|89.477 +639578.341|219590.688|89.456 +639572.565|219592.270|89.544 +639566.807|219593.837|89.730 +639561.001|219595.431|89.742 +639555.255|219597.010|89.739 +639549.449|219598.601|89.791 +639543.658|219600.201|89.663 +639537.936|219601.762|89.809 +639532.221|219603.335|89.742 +639526.500|219604.913|89.666 +639520.813|219606.471|89.742 +639515.153|219608.010|89.938 +639509.578|219609.522|90.197 +639498.230|219612.649|90.056 +639492.658|219614.158|90.386 +639487.178|219615.633|90.797 +639481.777|219617.063|91.510 +639476.403|219618.498|92.077 +639471.197|219619.824|93.482 +639465.839|219621.251|94.129 +639455.537|219623.896|96.619 +639450.218|219625.298|97.423 +639445.015|219626.658|98.390 +639439.861|219628.008|99.292 +639434.557|219629.416|99.938 +639429.266|219630.837|100.401 +639423.929|219632.281|100.718 +639418.503|219633.769|100.764 +639413.127|219635.247|100.749 +639407.756|219636.719|100.779 +639402.355|219638.207|100.715 +639397.006|219639.685|100.609 +639484.255|219618.072|91.056 +639489.748|219616.602|90.642 +639495.347|219615.094|90.379 +639500.973|219613.567|90.236 +639512.312|219610.485|90.044 +639517.975|219608.955|89.834 +639523.620|219607.434|89.566 +639529.381|219605.849|89.736 +639535.175|219604.261|89.806 +639540.860|219602.713|89.739 +639546.636|219601.134|89.776 +639552.460|219599.546|89.749 +639558.227|219597.967|89.791 +639564.030|219596.388|89.721 +639569.883|219594.800|89.608 +639575.747|219593.203|89.547 +639581.602|219591.609|89.483 +639587.403|219590.024|89.483 +639593.258|219588.448|89.182 +639599.031|219586.897|88.846 +639604.993|219585.257|88.999 +639610.988|219583.620|89.032 +639616.871|219582.023|88.913 +639622.884|219580.368|89.075 +639628.813|219578.740|89.179 +639634.790|219577.103|89.233 +639640.788|219575.476|89.108 +639646.799|219573.839|89.057 +639652.816|219572.196|89.066 +639658.781|219570.562|89.142 +639664.825|219568.919|89.014 +639670.857|219567.286|88.843 +639676.901|219565.643|88.755 +639682.793|219564.064|88.313 +639688.965|219562.363|88.526 +639695.092|219560.690|88.560 +639701.133|219559.041|88.538 +639707.232|219557.380|88.493 +639719.531|219554.009|88.630 +639725.654|219552.326|88.767 +639731.924|219550.601|88.974 +639738.075|219548.922|88.983 +639744.223|219547.242|88.993 +639750.364|219545.563|88.999 +639756.652|219543.840|89.087 +639775.522|219538.607|90.175 +639787.806|219535.303|89.474 +639832.322|219522.916|92.617 +639844.636|219519.664|91.099 +639869.880|219512.787|90.870 +639876.344|219511.013|90.986 +639882.654|219509.288|91.004 +639889.003|219507.563|90.901 +639914.487|219500.608|90.846 +639920.915|219498.843|90.959 +639927.322|219497.093|90.953 +639940.435|219493.405|92.449 +639946.674|219491.771|91.498 +639953.380|219489.824|93.074 +639959.826|219488.062|93.068 +639966.273|219486.300|93.086 +639972.741|219484.520|93.269 +639979.330|219482.679|93.839 +639985.768|219480.917|93.900 +639992.178|219479.211|93.327 +639998.594|219477.491|92.839 +640005.007|219475.779|92.327 +640030.577|219469.049|88.923 +640037.075|219467.293|88.645 +640050.114|219463.748|88.417 +640063.263|219460.142|88.654 +640069.798|219458.347|88.770 +640076.464|219456.479|89.435 +640062.870|219464.105|88.523 +640056.405|219465.885|88.459 +640037.118|219471.164|88.709 +640030.766|219472.883|89.075 +639992.979|219482.941|93.440 +639986.716|219484.615|94.071 +639980.388|219486.340|94.272 +639973.881|219488.193|93.351 +639967.471|219489.973|93.077 +639961.100|219491.723|93.098 +639948.326|219495.267|92.595 +639941.919|219497.035|92.473 +639935.622|219498.785|92.236 +639929.029|219500.684|91.041 +639922.769|219502.397|91.102 +639897.461|219509.374|90.788 +639884.928|219512.793|91.096 +639878.594|219514.546|90.913 +639853.661|219521.377|91.157 +639847.577|219522.956|92.425 +639829.058|219527.991|93.117 +639822.861|219529.692|93.156 +639772.648|219543.725|89.864 +639760.322|219547.141|89.453 +639754.049|219548.891|89.090 +639747.926|219550.570|89.136 +639741.854|219552.238|89.136 +639735.722|219553.920|89.185 +639729.659|219555.578|89.270 +639711.298|219560.650|88.877 +639705.150|219562.354|88.666 +639699.149|219564.012|88.538 +639693.022|219565.698|88.468 +639686.935|219567.383|88.298 +639681.022|219568.983|88.624 +639675.078|219570.602|88.831 +639669.034|219572.257|88.901 +639663.060|219573.888|89.014 +639657.080|219575.525|89.121 +639651.136|219577.155|89.115 +639645.190|219578.789|89.121 +639639.197|219580.426|89.230 +639633.232|219582.069|89.203 +639627.338|219583.687|89.197 +639621.373|219585.345|88.932 +639615.527|219586.933|89.172 +639609.629|219588.549|89.215 +639603.737|219590.161|89.304 +639597.851|219591.767|89.435 +639580.353|219596.571|89.499 +639574.592|219598.141|89.657 +639568.801|219599.729|89.718 +639562.912|219601.350|89.681 +639557.182|219602.917|89.749 +639551.445|219604.490|89.819 +639545.697|219606.066|89.855 +639539.982|219607.623|90.029 +639534.209|219609.229|89.761 +639528.479|219610.808|89.663 +639522.727|219612.399|89.517 +639517.073|219613.939|89.730 +639511.446|219615.478|89.828 +639505.807|219617.005|90.130 +639500.220|219618.538|90.142 +639489.107|219621.552|90.684 +639483.615|219623.031|91.077 +639478.186|219624.475|91.705 +639472.950|219625.820|93.019 +639467.793|219627.136|94.369 +639462.678|219628.432|95.869 +639457.454|219629.803|96.747 +639447.021|219632.534|98.600 +639441.760|219633.921|99.386 +639436.490|219635.332|99.908 +639431.198|219636.753|100.380 +639425.816|219638.216|100.563 +639420.460|219639.685|100.615 +639415.056|219641.176|100.520 +639409.649|219642.669|100.435 +639404.236|219644.163|100.343 +639500.217|219620.525|90.261 +639505.774|219619.032|89.883 +639511.382|219617.517|89.688 +639517.058|219615.978|89.511 +639522.696|219614.441|89.465 +639528.408|219612.881|89.456 +639534.166|219611.296|89.636 +639540.006|219609.680|89.886 +639545.770|219608.108|89.861 +639551.482|219606.559|89.678 +639557.218|219604.999|89.590 +639563.046|219603.405|89.617 +639568.807|219601.829|89.660 +639574.638|219600.250|89.477 +639580.322|219598.729|89.005 +639586.193|219597.107|89.267 +639592.173|219595.458|89.453 +639598.016|219593.867|89.383 +639603.831|219592.292|89.224 +639609.754|219590.670|89.236 +639615.578|219589.085|89.157 +639621.467|219587.503|88.798 +639627.441|219585.848|89.087 +639633.434|219584.202|89.194 +639639.383|219582.584|89.139 +639645.336|219580.956|89.127 +639651.267|219579.341|89.041 +639657.263|219577.710|88.956 +639663.264|219576.073|88.929 +639669.266|219574.433|88.916 +639675.222|219572.821|88.727 +639681.235|219571.190|88.520 +639687.258|219569.557|88.359 +639693.339|219567.889|88.474 +639699.386|219566.234|88.478 +639705.516|219564.555|88.563 +639711.697|219562.839|88.904 +639717.741|219561.208|88.639 +639723.944|219559.477|89.124 +639730.150|219557.764|89.349 +639736.276|219556.097|89.240 +639742.345|219554.445|89.182 +639748.542|219552.753|89.127 +639754.732|219551.067|89.066 +639760.926|219549.354|89.352 +639773.550|219545.843|90.175 +639792.600|219540.475|92.382 +639799.047|219538.634|93.446 +639805.542|219536.781|94.479 +639817.865|219533.456|93.909 +639824.019|219531.850|92.922 +639830.259|219530.131|93.089 +639836.528|219528.418|93.089 +639855.341|219523.343|92.184 +639861.376|219521.779|91.007 +639874.153|219518.256|91.465 +639880.343|219516.610|90.809 +639886.799|219514.839|90.925 +639893.182|219513.086|91.029 +639899.515|219511.367|90.876 +639912.162|219507.938|90.504 +639925.103|219504.351|91.202 +639931.586|219502.574|91.285 +639938.079|219500.726|92.254 +639944.583|219498.931|92.525 +639951.039|219497.166|92.522 +639963.965|219493.591|93.117 +639970.406|219491.832|93.104 +639976.950|219490.025|93.370 +639983.500|219488.178|94.150 +639989.828|219486.529|93.050 +639996.259|219484.770|93.074 +640002.767|219482.981|93.214 +640015.535|219479.628|91.394 +640034.652|219474.602|88.700 +640041.184|219472.819|88.670 +640054.232|219469.265|88.551 +640060.755|219467.482|88.529 +640067.357|219465.671|88.645 +640080.494|219462.020|89.474 +640069.951|219468.826|88.907 +640063.388|219470.652|88.563 +640057.000|219472.404|88.599 +640050.547|219474.169|88.663 +640037.624|219477.714|88.724 +640031.284|219479.421|89.206 +640018.674|219482.774|90.687 +639999.810|219487.760|93.312 +639993.473|219489.488|93.461 +639987.167|219491.165|94.226 +639980.803|219492.911|94.211 +639967.967|219496.514|93.156 +639961.585|219498.267|93.129 +639948.808|219501.815|92.623 +639942.386|219503.592|92.428 +639936.061|219505.356|92.050 +639929.633|219507.164|91.468 +639923.256|219508.932|91.233 +639916.944|219510.678|91.029 +639910.567|219512.443|90.855 +639904.334|219514.132|91.157 +639898.080|219515.835|91.349 +639891.755|219517.585|91.175 +639885.467|219519.307|91.224 +639866.725|219524.437|91.471 +639854.536|219527.686|92.800 +639835.879|219532.788|93.086 +639829.625|219534.498|93.159 +639823.404|219536.211|93.083 +639817.317|219537.863|93.370 +639811.163|219539.531|93.687 +639805.106|219541.158|94.165 +639785.758|219546.757|90.264 +639761.054|219553.600|89.468 +639754.900|219555.298|89.349 +639748.801|219556.962|89.511 +639742.744|219558.620|89.578 +639736.666|219560.291|89.581 +639730.528|219561.973|89.621 +639724.499|219563.631|89.572 +639718.378|219565.323|89.435 +639712.285|219567.018|89.154 +639706.138|219568.721|88.947 +639700.066|219570.401|88.804 +639694.101|219572.035|88.849 +639687.990|219573.732|88.581 +639681.943|219575.393|88.612 +639676.020|219576.997|88.907 +639670.110|219578.615|88.980 +639664.124|219580.255|89.041 +639658.156|219581.883|89.206 +639652.218|219583.513|89.221 +639646.290|219585.135|89.297 +639640.340|219586.769|89.313 +639634.455|219588.384|89.322 +639628.474|219590.033|89.249 +639622.513|219591.691|88.999 +639616.691|219593.264|89.334 +639610.866|219594.861|89.398 +639604.968|219596.473|89.465 +639599.122|219598.080|89.480 +639593.294|219599.674|89.584 +639587.454|219601.271|89.675 +639581.663|219602.862|89.691 +639575.814|219604.481|89.511 +639569.962|219606.099|89.349 +639564.296|219607.635|89.642 +639558.529|219609.205|89.834 +639552.777|219610.787|89.834 +639547.010|219612.354|90.056 +639541.311|219613.920|90.041 +639535.504|219615.527|89.904 +639529.774|219617.108|89.809 +639523.992|219618.715|89.541 +639518.368|219620.254|89.624 +639512.684|219621.805|89.755 +639507.109|219623.317|90.047 +639501.598|219624.811|90.337 +639495.725|219626.478|89.599 +639479.619|219630.736|91.846 +639474.373|219632.086|93.117 +639469.317|219633.351|94.805 +639453.632|219637.451|97.664 +639448.401|219638.826|98.539 +639443.147|219640.209|99.344 +639437.803|219641.639|99.862 +639432.500|219643.065|100.292 +639427.157|219644.528|100.368 +639421.725|219646.016|100.410 +639416.312|219647.515|100.282 +639410.874|219649.021|100.100 +639405.488|219650.518|99.874 +639498.632|219627.548|90.401 +639504.241|219626.033|90.178 +639509.819|219624.533|89.858 +639515.476|219623.009|89.590 +639521.118|219621.473|89.529 +639526.845|219619.907|89.550 +639532.715|219618.282|89.861 +639538.418|219616.724|89.834 +639544.176|219615.139|90.017 +639549.921|219613.579|89.931 +639555.639|219612.030|89.755 +639561.376|219610.488|89.407 +639567.100|219608.934|89.291 +639573.080|219607.276|89.639 +639578.899|219605.688|89.654 +639584.757|219604.090|89.590 +639590.606|219602.502|89.493 +639596.477|219600.896|89.511 +639602.304|219599.314|89.374 +639608.172|219597.708|89.419 +639614.137|219596.086|89.325 +639620.022|219594.489|89.206 +639625.960|219592.880|89.041 +639631.916|219591.237|89.246 +639637.893|219589.603|89.282 +639643.864|219587.970|89.316 +639649.862|219586.342|89.191 +639655.867|219584.705|89.133 +639661.862|219583.074|89.047 +639667.843|219581.453|88.904 +639673.911|219579.795|88.883 +639679.940|219578.161|88.715 +639685.972|219576.524|88.581 +639692.062|219574.851|88.712 +639698.216|219573.159|88.846 +639704.330|219571.492|88.843 +639710.448|219569.797|89.169 +639716.659|219568.087|89.334 +639722.868|219566.377|89.526 +639728.989|219564.698|89.639 +639735.146|219563.019|89.624 +639741.290|219561.342|89.587 +639747.484|219559.657|89.499 +639753.607|219557.992|89.395 +639759.792|219556.310|89.307 +639778.595|219551.119|90.026 +639784.795|219549.421|90.081 +639804.378|219543.783|94.028 +639810.514|219542.140|93.574 +639816.741|219540.460|93.269 +639822.980|219538.775|93.031 +639829.259|219537.059|93.028 +639835.492|219535.373|92.812 +639848.150|219531.920|92.742 +639854.390|219530.225|92.614 +639873.101|219525.242|90.898 +639885.955|219521.691|91.449 +639892.295|219519.972|91.282 +639898.665|219518.228|91.315 +639905.026|219516.491|91.318 +639911.409|219514.763|91.099 +639917.809|219513.022|90.992 +639924.265|219511.236|91.248 +639930.709|219509.459|91.468 +639937.204|219507.645|92.019 +639943.669|219505.847|92.422 +639950.158|219504.061|92.611 +639963.130|219500.486|93.043 +639969.586|219498.715|93.104 +639976.060|219496.932|93.318 +639982.656|219495.051|94.363 +639989.090|219493.323|93.943 +639995.506|219491.610|93.424 +640001.965|219489.827|93.656 +640014.645|219486.511|91.657 +640021.076|219484.810|90.861 +640027.410|219483.155|89.831 +640033.847|219481.454|89.063 +640040.236|219479.753|88.438 +640053.324|219476.166|88.575 +640059.853|219474.383|88.584 +640066.494|219472.535|88.983 +640072.148|219474.925|89.011 +640059.188|219478.513|88.660 +640052.739|219480.277|88.752 +640039.885|219483.798|88.868 +640020.908|219488.845|91.126 +640002.032|219493.841|93.674 +639995.576|219495.630|93.467 +639989.310|219497.307|94.077 +639982.945|219499.023|94.506 +639976.414|219500.894|93.440 +639969.997|219502.677|93.165 +639963.670|219504.424|93.065 +639944.537|219509.724|92.431 +639931.684|219513.312|91.666 +639925.311|219515.076|91.465 +639912.689|219518.542|91.498 +639906.334|219520.289|91.468 +639900.094|219522.011|91.385 +639893.773|219523.727|91.614 +639887.537|219525.415|91.964 +639881.148|219527.232|91.123 +639862.601|219532.197|92.873 +639856.353|219533.913|92.900 +639850.135|219535.632|92.754 +639843.819|219537.360|92.821 +639837.577|219539.092|92.608 +639831.487|219540.722|93.193 +639818.957|219544.179|92.970 +639812.803|219545.846|93.299 +639800.480|219549.208|93.595 +639781.237|219554.755|90.047 +639756.576|219561.565|89.596 +639750.453|219563.241|89.669 +639744.338|219564.911|89.788 +639738.334|219566.560|89.825 +639732.183|219568.249|89.828 +639726.090|219569.925|89.813 +639719.970|219571.614|89.697 +639713.867|219573.315|89.386 +639707.784|219575.000|89.185 +639701.657|219576.692|89.108 +639695.646|219578.350|88.987 +639689.621|219580.020|88.807 +639683.540|219581.700|88.709 +639677.520|219583.340|88.898 +639671.625|219584.946|89.054 +639665.624|219586.595|89.066 +639659.704|219588.213|89.169 +639653.697|219589.862|89.197 +639647.784|219591.475|89.361 +639641.834|219593.112|89.380 +639635.945|219594.727|89.407 +639629.968|219596.373|89.361 +639624.009|219598.025|89.139 +639618.163|219599.613|89.395 +639612.265|219601.231|89.456 +639606.401|219602.847|89.395 +639600.543|219604.459|89.383 +639594.712|219606.053|89.496 +639588.945|219607.626|89.621 +639583.093|219609.232|89.681 +639577.277|219610.830|89.657 +639571.480|219612.421|89.709 +639565.753|219613.990|89.785 +639559.903|219615.603|89.688 +639554.170|219617.191|89.526 +639548.547|219618.700|90.038 +639542.704|219620.324|89.764 +639537.056|219621.863|89.971 +639531.338|219623.436|89.934 +639525.571|219625.036|89.749 +639519.847|219626.627|89.477 +639514.177|219628.170|89.685 +639508.676|219629.660|90.005 +639503.070|219631.184|90.215 +639497.502|219632.708|90.325 +639486.575|219635.637|91.340 +639480.997|219637.161|91.462 +639475.894|219638.448|93.013 +639470.740|219639.764|94.378 +639465.534|219641.108|95.570 +639450.041|219645.123|98.902 +639444.631|219646.589|99.200 +639439.300|219648.012|99.770 +639433.942|219649.466|100.036 +639428.617|219650.917|100.185 +639423.225|219652.404|100.136 +639417.790|219653.910|99.969 +639412.331|219655.428|99.725 +639406.906|219656.943|99.389 +639497.776|219634.476|90.370 +639503.314|219632.979|90.139 +639508.923|219631.462|89.916 +639514.449|219629.965|89.672 +639520.124|219628.429|89.477 +639525.854|219626.841|89.745 +639531.630|219625.244|89.956 +639537.336|219623.683|89.928 +639543.008|219622.141|89.800 +639548.790|219620.537|90.087 +639560.300|219617.413|89.755 +639566.124|219615.819|89.752 +639571.858|219614.256|89.678 +639577.661|219612.671|89.639 +639583.449|219611.092|89.547 +639589.305|219609.495|89.480 +639595.105|219607.910|89.468 +639601.039|219606.282|89.483 +639606.888|219604.685|89.438 +639612.796|219603.072|89.377 +639618.703|219601.460|89.331 +639624.573|219599.863|89.169 +639630.517|219598.229|89.307 +639636.482|219596.595|89.294 +639642.462|219594.956|89.349 +639648.338|219593.352|89.288 +639654.355|219591.706|89.255 +639660.259|219590.103|89.069 +639666.261|219588.466|89.017 +639672.271|219586.820|89.020 +639678.319|219585.171|88.923 +639684.262|219583.562|88.682 +639690.361|219581.880|88.849 +639696.527|219580.179|89.032 +639702.626|219578.493|89.246 +639708.695|219576.826|89.337 +639714.824|219575.140|89.438 +639721.036|219573.427|89.627 +639727.178|219571.730|89.825 +639733.289|219570.053|89.901 +639739.495|219568.359|89.828 +639745.640|219566.679|89.803 +639751.754|219565.015|89.669 +639757.902|219563.354|89.383 +639764.074|219561.653|89.550 +639776.650|219558.166|90.123 +639782.816|219556.487|90.032 +639789.092|219554.758|90.160 +639802.296|219550.881|93.717 +639814.677|219547.544|93.019 +639820.919|219545.852|92.793 +639839.713|219540.722|92.586 +639858.721|219535.486|93.031 +639865.042|219533.755|93.037 +639890.219|219526.942|91.949 +639896.595|219525.220|91.623 +639902.877|219523.507|91.538 +639909.354|219521.736|91.477 +639922.144|219518.231|91.574 +639928.563|219516.469|91.626 +639935.022|219514.711|91.535 +639941.547|219512.870|92.288 +639948.052|219511.071|92.534 +639967.519|219505.695|93.196 +639973.978|219503.921|93.287 +639980.501|219502.095|93.812 +639987.085|219500.254|94.351 +639993.394|219498.620|93.110 +639999.767|219496.901|92.739 +640031.902|219488.324|89.816 +640038.340|219486.617|89.069 +640044.823|219484.871|88.666 +640051.388|219483.060|88.880 +640057.902|219481.286|88.737 +640064.461|219479.476|88.968 +640071.033|219477.687|88.843 +640079.747|219479.415|89.611 +640073.154|219481.274|89.011 +640066.747|219483.051|88.865 +640060.194|219484.877|88.615 +640053.830|219486.614|88.840 +640047.353|219488.403|88.758 +640040.986|219490.141|88.999 +640034.624|219491.835|89.776 +640015.809|219496.807|92.675 +640003.215|219500.193|93.827 +639996.814|219501.976|93.540 +639990.468|219503.689|94.049 +639984.186|219505.381|94.577 +639971.311|219509.026|93.257 +639964.855|219510.809|93.174 +639952.154|219514.342|92.739 +639945.778|219516.122|92.431 +639933.050|219519.661|92.022 +639920.333|219523.181|91.788 +639914.045|219524.915|91.745 +639901.497|219528.366|91.873 +639895.269|219530.054|92.239 +639882.828|219533.447|92.733 +639870.358|219536.854|93.144 +639864.238|219538.516|93.473 +639826.805|219548.879|92.815 +639820.538|219550.604|92.870 +639814.406|219552.287|92.955 +639795.801|219557.459|92.327 +639776.906|219562.823|90.224 +639764.589|219566.240|89.898 +639752.345|219569.605|89.995 +639746.262|219571.285|89.944 +639740.120|219572.976|89.956 +639734.103|219574.634|89.953 +639728.004|219576.317|89.904 +639721.881|219578.015|89.770 +639715.833|219579.685|89.688 +639709.777|219581.361|89.599 +639703.705|219583.044|89.456 +639697.649|219584.717|89.407 +639691.544|219586.415|89.182 +639685.576|219588.073|88.974 +639679.562|219589.737|88.883 +639673.615|219591.359|89.099 +639667.608|219593.017|89.087 +639661.686|219594.642|89.160 +639655.772|219596.260|89.294 +639649.844|219597.888|89.383 +639643.888|219599.528|89.380 +639637.932|219601.170|89.392 +639632.044|219602.789|89.425 +639626.112|219604.432|89.310 +639620.306|219606.023|89.435 +639614.399|219607.647|89.456 +639608.562|219609.251|89.508 +639602.722|219610.857|89.547 +639596.867|219612.469|89.569 +639591.024|219614.076|89.642 +639585.232|219615.667|89.675 +639579.432|219617.264|89.691 +639573.680|219618.852|89.660 +639567.883|219620.443|89.727 +639562.168|219622.010|89.858 +639556.435|219623.582|89.944 +639550.705|219625.152|90.062 +639544.898|219626.765|89.907 +639539.241|219628.310|90.078 +639533.608|219629.861|90.090 +639527.884|219631.440|90.047 +639522.181|219633.028|89.852 +639516.418|219634.625|89.709 +639510.873|219636.140|89.870 +639505.323|219637.643|90.267 +639493.856|219640.871|89.340 +639477.824|219645.117|91.663 +639472.743|219646.397|93.290 +639457.320|219650.371|97.067 +639452.129|219651.728|98.085 +639441.623|219654.517|99.505 +639436.295|219655.961|99.859 +639430.942|219657.431|99.920 +639425.496|219658.933|99.911 +639420.088|219660.430|99.822 +639414.599|219661.969|99.478 +639497.364|219641.566|90.364 +639502.994|219640.039|90.191 +639508.517|219638.548|89.910 +639514.129|219637.027|89.706 +639519.773|219635.485|89.642 +639525.501|219633.900|89.886 +639531.246|219632.318|89.974 +639536.961|219630.754|89.968 +639542.664|219629.197|89.931 +639548.227|219627.712|89.404 +639554.112|219626.070|89.831 +639559.864|219624.500|89.773 +639565.597|219622.936|89.666 +639571.401|219621.351|89.599 +639577.234|219619.751|89.654 +639583.096|219618.151|89.566 +639588.902|219616.563|89.550 +639594.696|219614.978|89.517 +639600.613|219613.362|89.447 +639606.413|219611.774|89.465 +639612.320|219610.162|89.392 +639618.248|219608.537|89.416 +639624.131|219606.934|89.291 +639630.011|219605.334|89.157 +639636.034|219603.670|89.358 +639641.919|219602.064|89.304 +639647.945|219600.415|89.270 +639653.898|219598.787|89.249 +639659.823|219597.171|89.130 +639665.816|219595.538|89.038 +639671.832|219593.889|89.054 +639677.892|219592.234|88.990 +639683.845|219590.618|88.785 +639689.913|219588.936|89.084 +639696.018|219587.250|89.279 +639702.151|219585.565|89.337 +639708.247|219583.879|89.544 +639714.297|219582.221|89.566 +639720.415|219580.542|89.621 +639726.614|219578.835|89.752 +639732.747|219577.143|89.919 +639738.837|219575.473|89.925 +639744.994|219573.787|89.938 +639751.154|219572.096|89.998 +639775.922|219565.301|90.111 +639788.406|219561.845|90.642 +639794.862|219560.001|91.654 +639807.618|219556.404|93.050 +639813.702|219554.768|92.647 +639826.189|219551.354|92.541 +639832.538|219549.592|92.876 +639845.017|219546.200|92.516 +639864.064|219540.908|93.540 +639876.680|219537.482|93.095 +639889.222|219534.081|92.672 +639901.676|219530.783|91.111 +639914.576|219527.174|92.144 +639920.861|219525.479|91.754 +639927.307|219523.696|91.958 +639940.093|219520.179|92.181 +639946.604|219518.371|92.467 +639953.038|219516.591|92.708 +639959.531|219514.796|92.937 +639965.950|219513.022|93.129 +639972.469|219511.230|93.193 +639978.956|219509.435|93.464 +639985.564|219507.542|94.564 +639991.846|219505.893|93.577 +639998.326|219504.125|93.479 +640004.787|219502.339|93.714 +640017.580|219498.919|92.510 +640030.235|219495.612|90.361 +640036.630|219493.902|89.776 +640043.055|219492.201|88.947 +640049.553|219490.442|88.657 +640056.104|219488.638|88.779 +640062.629|219486.852|88.752 +640069.146|219485.072|88.685 +640075.739|219483.225|89.212 +640080.948|219485.770|89.526 +640074.428|219487.608|88.996 +640067.963|219489.394|88.938 +640061.480|219491.195|88.749 +640048.633|219494.728|88.874 +640042.205|219496.478|89.163 +640035.880|219498.178|89.758 +640016.982|219503.183|92.565 +639998.006|219508.340|93.586 +639991.669|219510.075|93.751 +639985.378|219511.742|94.644 +639978.828|219513.635|93.482 +639972.418|219515.418|93.248 +639966.108|219517.158|93.269 +639959.689|219518.944|93.043 +639953.343|219520.703|92.891 +639946.936|219522.480|92.784 +639940.584|219524.239|92.669 +639934.211|219526.016|92.416 +639927.889|219527.777|92.138 +639921.595|219529.494|92.425 +639915.191|219531.280|92.105 +639908.818|219533.075|91.593 +639902.600|219534.760|92.010 +639890.249|219538.092|92.998 +639883.989|219539.802|93.239 +639871.455|219543.252|93.324 +639865.198|219544.980|93.269 +639859.010|219546.684|93.278 +639852.619|219548.477|92.912 +639846.370|219550.217|92.638 +639840.128|219551.954|92.440 +639833.886|219553.664|92.592 +639827.741|219555.359|92.586 +639821.486|219557.096|92.397 +639815.281|219558.803|92.458 +639803.061|219562.138|92.958 +639771.862|219570.898|90.821 +639753.318|219576.064|90.123 +639747.246|219577.737|90.151 +639741.138|219579.432|90.011 +639734.978|219581.133|89.980 +639728.970|219582.788|90.044 +639722.853|219584.483|89.941 +639716.812|219586.153|89.895 +639710.670|219587.860|89.730 +639704.678|219589.518|89.660 +639698.655|219591.194|89.471 +639692.605|219592.862|89.474 +639686.499|219594.562|89.264 +639680.510|219596.233|89.011 +639674.551|219597.863|89.185 +639668.592|219599.515|89.096 +639662.609|219601.158|89.200 +639656.684|219602.786|89.294 +639650.752|219604.417|89.371 +639644.876|219606.035|89.432 +639638.984|219607.660|89.438 +639633.007|219609.312|89.392 +639627.106|219610.939|89.407 +639621.229|219612.552|89.532 +639615.356|219614.182|89.422 +639609.552|219615.767|89.608 +639603.764|219617.364|89.605 +639597.927|219618.971|89.691 +639592.075|219620.583|89.739 +639586.296|219622.171|89.825 +639580.493|219623.771|89.837 +639574.668|219625.381|89.794 +639568.926|219626.966|89.813 +639563.162|219628.557|89.773 +639557.407|219630.145|89.788 +639551.753|219631.693|89.941 +639545.956|219633.303|89.834 +639540.311|219634.845|90.053 +639534.617|219636.411|90.102 +639528.911|219637.981|90.142 +639523.245|219639.551|90.081 +639517.524|219641.148|89.846 +639511.870|219642.706|89.870 +639506.368|219644.202|90.197 +639500.815|219645.720|90.367 +639473.538|219653.099|92.397 +639468.549|219654.352|94.107 +639463.465|219655.654|95.488 +639442.677|219661.131|99.066 +639437.401|219662.545|99.609 +639432.064|219664.011|99.725 +639426.648|219665.514|99.600 +639421.234|219667.017|99.490 +639415.803|219668.544|99.124 +639501.391|219647.701|90.312 +639506.957|219646.183|90.172 +639512.452|219644.705|89.788 +639518.143|219643.135|89.870 +639523.858|219641.557|90.053 +639529.512|219640.005|90.038 +639535.245|219638.429|90.087 +639540.881|219636.905|89.788 +639546.636|219635.314|89.956 +639552.408|219633.729|89.947 +639558.133|219632.175|89.767 +639563.906|219630.587|89.800 +639569.669|219629.005|89.806 +639575.427|219627.426|89.819 +639581.236|219625.835|89.782 +639587.040|219624.244|89.745 +639592.898|219622.641|89.675 +639598.756|219621.037|89.627 +639604.612|219619.434|89.575 +639610.467|219617.831|89.553 +639616.292|219616.243|89.425 +639622.226|219614.609|89.480 +639628.112|219613.003|89.355 +639634.025|219611.381|89.364 +639640.011|219609.732|89.419 +639645.979|219608.096|89.419 +639651.923|219606.471|89.340 +639657.857|219604.849|89.246 +639663.868|219603.203|89.206 +639669.882|219601.554|89.188 +639675.889|219599.906|89.179 +639681.885|219598.287|88.843 +639688.011|219596.565|89.374 +639694.104|219594.885|89.499 +639700.234|219593.200|89.523 +639706.311|219591.527|89.627 +639712.386|219589.850|89.742 +639718.525|219588.155|89.870 +639724.630|219586.482|89.870 +639730.753|219584.793|89.977 +639736.910|219583.105|89.956 +639743.104|219581.392|90.117 +639749.276|219579.694|90.209 +639755.436|219577.996|90.273 +639761.602|219576.320|90.072 +639780.259|219571.181|90.349 +639786.450|219569.480|90.358 +639799.434|219565.740|92.739 +639805.655|219564.040|92.656 +639818.088|219560.662|92.178 +639824.330|219558.943|92.269 +639830.643|219557.203|92.400 +639836.961|219555.453|92.592 +639843.231|219553.737|92.559 +639849.607|219551.970|92.769 +639855.981|219550.205|92.979 +639862.284|219548.458|93.205 +639868.697|219546.690|93.336 +639874.961|219544.968|93.388 +639887.695|219541.478|93.281 +639894.026|219539.759|93.062 +639912.920|219534.654|91.971 +639919.294|219532.898|92.065 +639925.850|219531.066|92.501 +639932.187|219529.332|92.440 +639938.673|219527.546|92.531 +639945.126|219525.754|92.830 +639951.554|219523.977|93.007 +639958.028|219522.194|93.110 +639964.499|219520.410|93.205 +639970.951|219518.640|93.208 +639977.419|219516.853|93.360 +639983.963|219515.009|94.007 +639990.428|219513.223|94.183 +639996.850|219511.495|93.702 +640003.337|219509.721|93.644 +640016.187|219506.259|92.787 +640022.533|219504.588|91.827 +640035.261|219501.251|89.721 +640041.687|219499.516|89.346 +640048.148|219497.785|88.782 +640054.638|219496.029|88.444 +640061.215|219494.201|88.767 +640067.768|219492.390|88.941 +640074.370|219490.570|89.026 +640080.957|219488.726|89.532 +640075.922|219494.368|89.233 +640069.494|219496.167|88.929 +640062.974|219497.965|88.953 +640043.829|219503.220|89.371 +640031.287|219506.545|91.279 +639999.609|219515.122|93.607 +639993.239|219516.887|93.546 +639986.987|219518.560|94.263 +639980.516|219520.395|93.620 +639974.173|219522.166|93.394 +639967.806|219523.919|93.455 +639961.481|219525.668|93.412 +639955.087|219527.439|93.351 +639948.719|219529.216|93.092 +639942.407|219530.981|92.803 +639936.070|219532.734|92.781 +639929.721|219534.523|92.324 +639923.430|219536.239|92.620 +639917.203|219537.936|92.925 +639892.127|219544.825|93.424 +639885.930|219546.523|93.632 +639873.342|219550.016|93.418 +639867.124|219551.747|93.223 +639860.793|219553.500|93.162 +639854.576|219555.228|93.016 +639848.330|219556.971|92.763 +639842.042|219558.718|92.659 +639823.309|219563.930|92.147 +639817.167|219565.622|92.211 +639811.044|219567.301|92.382 +639785.977|219574.363|90.523 +639755.339|219582.824|90.529 +639749.273|219584.495|90.568 +639743.076|219586.223|90.343 +639736.932|219587.939|90.072 +639730.900|219589.609|90.041 +639724.782|219591.304|89.944 +639718.741|219592.977|89.901 +639712.621|219594.669|89.843 +639706.598|219596.348|89.645 +639700.478|219598.040|89.614 +639694.473|219599.704|89.535 +639688.459|219601.372|89.444 +639682.348|219603.097|88.953 +639676.365|219604.721|89.322 +639670.354|219606.383|89.304 +639664.410|219608.022|89.297 +639658.473|219609.659|89.349 +639652.548|219611.287|89.465 +639646.580|219612.939|89.422 +639640.645|219614.566|89.544 +639634.714|219616.215|89.413 +639628.819|219617.840|89.462 +639622.918|219619.468|89.496 +639617.020|219621.092|89.569 +639611.171|219622.705|89.578 +639605.279|219624.323|89.712 +639599.491|219625.920|89.730 +639593.624|219627.539|89.733 +639587.848|219629.127|89.837 +639582.044|219630.730|89.852 +639576.223|219632.339|89.831 +639570.437|219633.927|89.956 +639564.683|219635.515|89.956 +639558.922|219637.106|89.956 +639553.137|219638.713|89.877 +639547.471|219640.267|90.005 +639541.646|219641.889|89.831 +639535.983|219643.440|90.008 +639530.344|219644.995|90.032 +639524.644|219646.564|90.117 +639518.978|219648.131|90.087 +639513.272|219649.719|89.925 +639507.633|219651.267|90.032 +639502.153|219652.752|90.456 +639496.542|219654.303|90.450 +639485.014|219657.562|89.416 +639474.568|219660.280|91.708 +639469.448|219661.585|93.208 +639464.291|219662.926|94.348 +639454.138|219665.520|97.192 +639438.450|219669.702|99.267 +639433.113|219671.168|99.392 +639427.614|219672.698|99.237 +639422.164|219674.219|99.030 +639506.070|219653.831|90.203 +639511.586|219652.340|89.883 +639517.298|219650.758|90.035 +639522.959|219649.207|90.011 +639528.597|219647.662|89.938 +639534.322|219646.089|89.944 +639539.982|219644.553|89.718 +639545.736|219642.959|89.867 +639551.427|219641.401|89.803 +639557.221|219639.804|89.880 +639563.000|219638.213|89.916 +639568.746|219636.640|89.858 +639574.491|219635.064|89.813 +639580.313|219633.464|89.813 +639586.186|219631.855|89.770 +639591.975|219630.270|89.675 +639597.778|219628.676|89.675 +639603.645|219627.063|89.663 +639609.482|219625.469|89.547 +639615.338|219623.863|89.532 +639621.245|219622.244|89.474 +639627.170|219620.614|89.502 +639633.040|219619.013|89.328 +639638.975|219617.374|89.444 +639644.873|219615.755|89.416 +639650.905|219614.100|89.407 +639656.842|219612.475|89.310 +639662.804|219610.833|89.343 +639668.800|219609.193|89.246 +639674.755|219607.553|89.288 +639680.803|219605.901|89.166 +639686.838|219604.234|89.297 +639692.952|219602.539|89.505 +639698.932|219600.899|89.444 +639705.089|219599.195|89.590 +639711.188|219597.504|89.800 +639717.318|219595.815|89.877 +639723.383|219594.139|89.992 +639729.552|219592.444|89.989 +639735.664|219590.761|90.044 +639741.824|219589.045|90.346 +639748.042|219587.317|90.636 +639754.232|219585.601|90.824 +639784.999|219577.183|90.331 +639791.412|219575.339|91.428 +639804.091|219571.763|92.678 +639810.273|219570.084|92.403 +639816.442|219568.410|92.102 +639822.678|219566.694|92.141 +639847.836|219559.742|92.644 +639854.161|219557.983|92.931 +639860.525|219556.221|93.114 +639866.816|219554.478|93.284 +639873.135|219552.744|93.272 +639879.563|219550.961|93.516 +639885.894|219549.211|93.635 +639892.179|219547.492|93.510 +639898.500|219545.776|93.248 +639917.532|219540.564|92.973 +639923.957|219538.793|93.037 +639930.245|219537.089|92.690 +639936.628|219535.346|92.534 +639943.120|219533.520|93.056 +639949.527|219531.752|93.117 +639956.031|219529.945|93.379 +639962.441|219528.174|93.510 +639968.882|219526.406|93.440 +639975.319|219524.641|93.379 +639981.802|219522.840|93.629 +639994.619|219519.341|93.275 +640001.041|219517.579|93.211 +640007.680|219515.713|93.757 +640014.023|219514.007|93.217 +640020.415|219512.297|92.577 +640045.954|219505.533|89.054 +640052.412|219503.765|88.950 +640058.941|219501.973|88.910 +640072.090|219498.340|89.133 +640078.613|219496.545|89.127 +640076.364|219501.266|89.233 +640069.887|219503.067|89.069 +640063.428|219504.853|89.084 +640057.030|219506.621|89.099 +640044.232|219510.120|89.636 +640037.852|219511.833|90.306 +640031.598|219513.485|91.382 +640018.982|219516.866|92.845 +639999.984|219522.050|93.757 +639993.653|219523.785|93.979 +639987.335|219525.510|94.290 +639980.894|219527.323|93.851 +639974.472|219529.122|93.546 +639968.141|219530.850|93.860 +639961.807|219532.609|93.763 +639955.370|219534.410|93.461 +639949.030|219536.196|92.989 +639942.712|219537.940|93.068 +639936.357|219539.704|92.967 +639930.105|219541.423|93.098 +639923.784|219543.161|93.229 +639917.511|219544.892|93.278 +639904.962|219548.348|93.455 +639898.689|219550.074|93.574 +639892.420|219551.799|93.729 +639886.180|219553.524|93.723 +639879.923|219555.258|93.644 +639873.653|219557.002|93.516 +639848.620|219563.976|92.821 +639842.289|219565.750|92.522 +639823.647|219570.931|92.178 +639817.487|219572.635|92.175 +639811.346|219574.324|92.275 +639792.558|219579.642|90.626 +639786.367|219581.358|90.593 +639780.250|219583.047|90.608 +639768.055|219586.400|90.882 +639755.936|219589.722|91.282 +639749.849|219591.408|91.233 +639743.677|219593.145|90.818 +639737.508|219594.879|90.434 +639731.430|219596.577|90.209 +639725.404|219598.241|90.221 +639719.287|219599.939|90.154 +639713.279|219601.609|89.995 +639707.211|219603.298|89.889 +639701.197|219604.968|89.758 +639695.080|219606.681|89.480 +639689.084|219608.339|89.480 +639683.110|219610.004|89.291 +639677.209|219611.625|89.438 +639671.247|219613.262|89.614 +639665.236|219614.923|89.633 +639659.375|219616.538|89.712 +639653.401|219618.194|89.633 +639647.531|219619.812|89.715 +639641.633|219621.443|89.712 +639635.686|219623.101|89.532 +639629.809|219624.716|89.648 +639623.976|219626.329|89.688 +639618.072|219627.956|89.733 +639612.314|219629.541|89.834 +639606.486|219631.145|89.953 +639600.646|219632.754|90.041 +639594.834|219634.363|89.995 +639589.039|219635.963|90.035 +639583.239|219637.567|90.062 +639577.475|219639.164|90.002 +639571.730|219640.752|90.017 +639566.012|219642.325|90.160 +639560.321|219643.897|90.166 +639554.527|219645.507|90.066 +639548.781|219647.107|89.901 +639543.091|219648.677|89.962 +639537.379|219650.256|89.968 +639531.700|219651.816|90.108 +639526.028|219653.392|90.038 +639520.414|219654.931|90.197 +639514.827|219656.477|90.221 +639509.212|219658.031|90.169 +639503.674|219659.546|90.395 +639498.130|219661.064|90.620 +639492.555|219662.597|90.751 +639486.504|219664.395|89.023 +639470.761|219668.534|91.983 +639465.677|219669.836|93.376 +639460.575|219671.153|94.708 +639455.558|219672.421|96.335 +639450.416|219673.768|97.320 +639439.943|219676.566|98.670 +639434.688|219677.989|99.075 +639429.296|219679.483|99.042 +639423.908|219680.992|98.804 +639504.680|219661.231|90.172 +639510.291|219659.689|90.172 +639515.887|219658.153|90.133 +639521.474|219656.623|90.081 +639527.128|219655.071|90.032 +639532.721|219653.553|89.791 +639538.446|219651.962|90.026 +639544.145|219650.402|89.956 +639549.866|219648.829|89.980 +639555.673|219647.223|90.081 +639561.467|219645.626|90.151 +639567.216|219644.053|90.078 +639572.970|219642.474|90.041 +639578.734|219640.889|90.056 +639584.547|219639.295|90.026 +639590.368|219637.692|90.041 +639596.193|219636.088|90.090 +639602.051|219634.482|90.026 +639607.897|219632.882|89.931 +639613.740|219631.285|89.840 +639619.568|219629.694|89.712 +639625.484|219628.069|89.675 +639631.337|219626.460|89.688 +639637.277|219624.838|89.520 +639643.230|219623.189|89.703 +639649.201|219621.549|89.700 +639655.160|219619.913|89.666 +639661.137|219618.267|89.733 +639667.059|219616.651|89.581 +639673.085|219614.990|89.608 +639679.053|219613.366|89.422 +639685.039|219611.726|89.319 +639691.102|219610.043|89.566 +639697.241|219608.352|89.587 +639703.263|219606.687|89.709 +639709.417|219604.987|89.843 +639715.510|219603.301|90.017 +639721.643|219601.606|90.099 +639727.775|219599.915|90.212 +639733.884|219598.235|90.227 +639740.038|219596.522|90.480 +639746.295|219594.770|90.922 +639758.600|219591.365|91.233 +639770.917|219588.015|90.760 +639783.216|219584.669|90.291 +639795.935|219581.051|91.913 +639808.471|219577.564|92.470 +639814.662|219575.881|92.233 +639820.932|219574.168|92.089 +639827.150|219572.461|92.041 +639846.108|219567.210|92.574 +639852.448|219565.442|92.900 +639858.800|219563.689|93.001 +639877.814|219558.422|93.531 +639884.214|219556.657|93.620 +639890.536|219554.914|93.680 +639896.824|219553.195|93.568 +639903.246|219551.433|93.501 +639909.519|219549.720|93.354 +639915.950|219547.949|93.379 +639928.688|219544.462|93.181 +639935.015|219542.728|93.080 +639941.441|219540.954|93.174 +639947.909|219539.177|93.165 +639954.251|219537.427|93.223 +639960.853|219535.577|93.677 +639967.276|219533.797|93.876 +639973.679|219532.057|93.595 +639980.132|219530.280|93.613 +639986.670|219528.439|94.220 +639993.098|219526.674|94.159 +639999.545|219524.928|93.818 +640006.004|219523.135|94.001 +640018.802|219519.703|92.797 +640031.634|219516.277|91.404 +640044.351|219512.909|89.685 +640050.834|219511.154|89.285 +640063.867|219507.591|89.005 +640070.411|219505.783|89.108 +640077.001|219503.970|89.108 +640071.545|219509.718|89.197 +640065.071|219511.519|89.099 +640058.643|219513.315|88.892 +640052.202|219515.080|89.099 +640045.768|219516.841|89.380 +640039.541|219518.505|90.194 +640001.605|219528.747|93.690 +639995.220|219530.524|93.571 +639988.907|219532.212|94.336 +639963.466|219539.281|93.979 +639957.059|219541.094|93.461 +639950.719|219542.853|93.397 +639938.015|219546.386|93.193 +639931.696|219548.123|93.336 +639925.423|219549.857|93.379 +639919.102|219551.595|93.531 +639912.890|219553.311|93.595 +639906.596|219555.054|93.586 +639900.332|219556.773|93.766 +639894.096|219558.501|93.763 +639887.796|219560.242|93.784 +639881.526|219561.988|93.647 +639869.026|219565.448|93.650 +639862.680|219567.240|93.184 +639856.438|219568.987|92.943 +639850.138|219570.742|92.766 +639843.868|219572.504|92.440 +639831.359|219575.994|92.035 +639825.193|219577.707|91.964 +639818.996|219579.414|92.108 +639775.629|219591.505|90.916 +639769.591|219593.166|91.041 +639757.430|219596.492|91.580 +639751.401|219598.165|91.510 +639745.256|219599.887|91.239 +639739.038|219601.649|90.660 +639732.902|219603.362|90.480 +639726.837|219605.051|90.334 +639720.799|219606.721|90.343 +639714.663|219608.428|90.224 +639708.622|219610.116|89.968 +639702.526|219611.817|89.791 +639696.509|219613.490|89.685 +639690.480|219615.170|89.541 +639684.439|219616.852|89.374 +639678.486|219618.483|89.599 +639672.561|219620.117|89.681 +639666.626|219621.757|89.730 +639660.695|219623.390|89.828 +639654.736|219625.039|89.828 +639648.847|219626.667|89.849 +639642.864|219628.328|89.788 +639636.978|219629.968|89.608 +639631.093|219631.593|89.700 +639625.186|219633.223|89.739 +639619.315|219634.836|89.928 +639613.564|219636.415|90.087 +639607.736|219638.018|90.218 +639601.951|219639.615|90.270 +639596.160|219641.212|90.315 +639590.268|219642.849|90.261 +639584.455|219644.455|90.264 +639578.691|219646.055|90.212 +639572.943|219647.646|90.233 +639567.197|219649.231|90.291 +639561.434|219650.826|90.294 +639555.706|219652.420|90.197 +639549.955|219654.020|90.044 +639544.243|219655.602|90.035 +639538.543|219657.174|90.099 +639532.801|219658.790|89.773 +639527.198|219660.326|89.977 +639521.557|219661.881|90.059 +639515.939|219663.423|90.230 +639510.343|219664.968|90.264 +639504.738|219666.520|90.273 +639499.209|219668.028|90.565 +639493.670|219669.559|90.596 +639477.031|219674.155|90.730 +639471.798|219675.536|91.629 +639461.419|219678.255|93.741 +639441.062|219683.558|98.225 +639435.798|219684.988|98.606 +639430.339|219686.499|98.606 +639509.383|219667.041|90.294 +639515.015|219665.502|90.139 +639520.575|219663.984|89.977 +639526.232|219662.429|89.934 +639531.822|219660.908|89.678 +639537.601|219659.287|90.108 +639543.298|219657.726|90.014 +639549.019|219656.147|90.029 +639554.774|219654.553|90.187 +639560.568|219652.950|90.261 +639566.280|219651.377|90.294 +639572.089|219649.783|90.206 +639577.859|219648.192|90.245 +639583.690|219646.586|90.267 +639589.518|219644.979|90.303 +639595.343|219643.370|90.346 +639601.140|219641.779|90.306 +639607.004|219640.164|90.282 +639612.841|219638.566|90.172 +639618.663|219636.975|90.011 +639624.536|219635.372|89.813 +639630.437|219633.754|89.730 +639636.259|219632.160|89.630 +639642.191|219630.520|89.712 +639648.201|219628.852|89.864 +639654.148|219627.222|89.782 +639660.122|219625.573|89.828 +639666.050|219623.951|89.700 +639672.000|219622.311|89.688 +639677.986|219620.672|89.572 +639683.933|219619.056|89.294 +639689.974|219617.380|89.447 +639696.012|219615.706|89.602 +639702.047|219614.033|89.770 +639708.223|219612.317|89.986 +639714.322|219610.622|90.181 +639720.415|219608.931|90.376 +639726.462|219607.263|90.404 +639732.652|219605.550|90.489 +639738.812|219603.834|90.760 +639745.030|219602.082|91.315 +639751.273|219600.335|91.705 +639757.396|219598.656|91.593 +639769.561|219595.324|91.330 +639787.897|219590.341|90.437 +639800.419|219586.866|90.815 +639819.331|219581.563|92.077 +639825.519|219579.874|91.879 +639831.837|219578.124|92.004 +639844.447|219574.610|92.550 +639850.769|219572.854|92.781 +639857.069|219571.105|92.940 +639863.451|219569.331|93.193 +639876.125|219565.804|93.668 +639882.447|219564.061|93.690 +639888.783|219562.308|93.812 +639895.154|219560.553|93.802 +639901.454|219558.821|93.772 +639907.800|219557.081|93.659 +639920.507|219553.585|93.607 +639926.902|219551.832|93.467 +639933.242|219550.092|93.406 +639939.636|219548.339|93.306 +639946.055|219546.568|93.373 +639952.478|219544.791|93.485 +639958.891|219543.021|93.571 +639965.371|219541.195|94.104 +639971.845|219539.403|94.232 +639984.951|219535.696|95.567 +639991.181|219534.081|94.214 +639997.564|219532.383|93.443 +640003.974|219530.630|93.278 +640010.515|219528.805|93.580 +640036.042|219521.992|90.687 +640048.849|219518.579|89.160 +640055.345|219516.780|89.307 +640061.907|219514.994|89.014 +640068.366|219513.220|88.938 +640075.007|219511.367|89.288 +640079.247|219514.287|89.438 +640072.764|219516.098|89.258 +640066.263|219517.920|88.953 +640059.819|219519.697|89.105 +640053.452|219521.444|89.349 +640047.118|219523.160|89.877 +640040.723|219524.891|90.428 +640002.797|219535.178|93.498 +639996.421|219536.952|93.412 +639990.130|219538.628|94.330 +639964.724|219545.681|94.180 +639958.363|219547.462|93.936 +639952.011|219549.232|93.790 +639945.568|219551.040|93.516 +639939.304|219552.774|93.552 +639914.103|219559.736|93.866 +639907.894|219561.452|93.952 +639901.600|219563.195|93.964 +639895.297|219564.945|93.940 +639889.045|219566.682|93.876 +639857.675|219575.445|92.961 +639851.381|219577.201|92.812 +639845.118|219578.960|92.513 +639832.660|219582.450|92.022 +639826.455|219584.163|92.105 +639820.243|219585.906|91.836 +639801.543|219591.158|90.892 +639789.214|219594.590|90.736 +639758.954|219602.890|91.949 +639752.824|219604.584|92.016 +639746.716|219606.288|91.900 +639740.556|219608.041|91.279 +639734.359|219609.793|90.821 +639728.303|219611.482|90.712 +639722.240|219613.170|90.605 +639716.163|219614.868|90.437 +639710.137|219616.554|90.242 +639704.041|219618.258|90.059 +639697.990|219619.955|89.797 +639691.977|219621.629|89.715 +639685.984|219623.308|89.471 +639680.031|219624.945|89.694 +639674.039|219626.600|89.761 +639668.172|219628.225|89.816 +639662.259|219629.852|89.977 +639656.379|219631.480|90.014 +639650.399|219633.144|89.944 +639644.480|219634.793|89.855 +639638.521|219636.460|89.642 +639632.653|219638.076|89.806 +639626.844|219639.676|89.953 +639621.040|219641.273|90.139 +639615.228|219642.873|90.312 +639609.397|219644.483|90.419 +639603.627|219646.074|90.526 +639597.836|219647.677|90.565 +639592.042|219649.280|90.620 +639586.226|219650.896|90.605 +639580.468|219652.496|90.565 +639574.759|219654.087|90.477 +639569.005|219655.681|90.492 +639563.229|219657.287|90.450 +639557.468|219658.881|90.477 +639551.732|219660.482|90.361 +639545.983|219662.085|90.227 +639540.302|219663.670|90.102 +639534.657|219665.236|90.126 +639528.899|219666.861|89.761 +639523.352|219668.370|90.166 +639517.719|219669.940|90.050 +639512.156|219671.473|90.184 +639506.630|219672.985|90.471 +639500.995|219674.554|90.392 +639495.511|219676.060|90.617 +639489.979|219677.590|90.681 +639484.103|219679.300|89.593 +639473.654|219682.061|91.431 +639468.360|219683.482|92.126 +639457.993|219686.213|94.065 +639442.720|219690.194|97.570 +639437.517|219691.593|98.155 +639432.186|219693.077|98.109 +639514.037|219672.741|90.117 +639519.685|219671.189|90.017 +639525.281|219669.650|89.986 +639530.929|219668.099|89.922 +639536.638|219666.514|90.087 +639542.295|219664.956|90.081 +639548.080|219663.344|90.315 +639553.807|219661.765|90.358 +639559.535|219660.180|90.425 +639565.326|219658.583|90.480 +639571.038|219657.004|90.526 +639576.805|219655.413|90.535 +639582.572|219653.822|90.568 +639588.335|219652.234|90.599 +639594.148|219650.630|90.584 +639599.942|219649.039|90.514 +639605.800|219647.430|90.459 +639611.643|219645.827|90.346 +639617.419|219644.242|90.267 +639623.238|219642.651|90.096 +639629.118|219641.044|89.928 +639634.930|219639.453|89.764 +639640.831|219637.832|89.718 +639646.842|219636.165|89.849 +639652.752|219634.534|89.870 +639658.732|219632.882|89.925 +639664.599|219631.273|89.819 +639670.604|219629.627|89.724 +639676.596|219627.984|89.608 +639682.531|219626.353|89.553 +639688.551|219624.689|89.599 +639694.583|219623.019|89.706 +639700.679|219621.330|89.828 +639706.808|219619.620|90.120 +639712.901|219617.928|90.276 +639718.918|219616.261|90.416 +639725.075|219614.548|90.608 +639731.204|219612.850|90.706 +639737.371|219611.134|90.974 +639743.604|219609.370|91.583 +639749.813|219607.641|91.803 +639755.954|219605.931|92.053 +639762.041|219604.273|91.772 +639774.288|219600.911|91.611 +639792.716|219595.888|90.831 +639805.088|219592.478|90.846 +639824.028|219587.180|91.916 +639830.271|219585.452|91.989 +639842.911|219581.944|92.315 +639849.184|219580.191|92.614 +639855.557|219578.423|92.778 +639861.863|219576.674|92.955 +639874.522|219573.156|93.303 +639880.947|219571.346|93.848 +639887.268|219569.599|93.882 +639899.973|219566.091|93.976 +639906.340|219564.338|93.967 +639912.695|219562.589|93.918 +639919.053|219560.836|93.903 +639925.384|219559.102|93.766 +639931.730|219557.355|93.726 +639938.188|219555.584|93.610 +639944.525|219553.838|93.583 +639950.950|219552.058|93.699 +639957.415|219550.247|94.086 +639963.865|219548.470|94.028 +639976.798|219544.865|94.567 +639989.633|219541.350|94.226 +639996.018|219539.616|93.879 +640002.456|219537.839|93.891 +640047.243|219525.805|89.599 +640053.751|219524.031|89.349 +640060.203|219522.261|89.209 +640066.753|219520.447|89.322 +640073.270|219518.655|89.218 +640079.826|219516.832|89.428 +640080.536|219520.645|89.361 +640074.093|219522.422|89.480 +640067.601|219524.239|89.267 +640061.206|219526.010|89.316 +640054.753|219527.793|89.435 +640048.368|219529.551|89.596 +640042.040|219531.261|90.191 +640035.746|219532.947|91.010 +640029.406|219534.666|91.544 +640004.123|219541.542|93.424 +639997.765|219543.301|93.488 +639991.507|219544.983|94.205 +639985.207|219546.696|94.674 +639978.953|219548.406|95.031 +639972.552|219550.193|94.906 +639966.154|219552.000|94.439 +639959.729|219553.798|94.232 +639953.361|219555.581|94.007 +639947.067|219557.337|93.857 +639940.727|219559.099|93.845 +639934.461|219560.833|93.903 +639928.136|219562.580|94.028 +639921.876|219564.305|94.168 +639915.591|219566.045|94.199 +639909.306|219567.786|94.241 +639902.996|219569.541|94.180 +639890.426|219573.040|94.037 +639884.278|219574.732|94.214 +639871.568|219578.313|93.470 +639865.320|219580.069|93.187 +639859.035|219581.819|93.080 +639852.780|219583.574|92.824 +639846.514|219585.333|92.525 +639840.198|219587.101|92.342 +639833.980|219588.850|92.013 +639821.587|219592.292|91.977 +639809.115|219595.800|91.324 +639790.543|219600.985|90.888 +639760.255|219609.284|92.333 +639754.150|219610.991|92.214 +639748.036|219612.698|92.086 +639741.927|219614.399|92.004 +639735.658|219616.197|91.227 +639729.540|219617.922|90.861 +639723.472|219619.617|90.727 +639717.379|219621.324|90.517 +639711.295|219623.025|90.367 +639705.284|219624.701|90.276 +639699.249|219626.390|90.096 +639693.147|219628.097|89.938 +639687.194|219629.755|89.864 +639681.150|219631.443|89.703 +639675.249|219633.068|89.898 +639669.312|219634.714|89.944 +639663.380|219636.354|90.038 +639657.421|219638.009|90.050 +639651.520|219639.648|90.032 +639645.601|219641.297|89.962 +639639.688|219642.940|89.934 +639633.784|219644.577|89.962 +639627.904|219646.199|90.120 +639622.113|219647.790|90.355 +639616.292|219649.396|90.498 +639610.537|219650.984|90.654 +639604.688|219652.602|90.733 +639598.891|219654.209|90.764 +639593.102|219655.812|90.843 +639587.287|219657.427|90.840 +639581.538|219659.022|90.852 +639575.787|219660.616|90.870 +639570.005|219662.228|90.788 +639564.277|219663.828|90.678 +639558.553|219665.425|90.599 +639552.826|219667.020|90.532 +639547.062|219668.635|90.349 +639541.286|219670.253|90.148 +639535.617|219671.832|90.096 +639529.939|219673.411|90.032 +639524.288|219674.981|90.072 +639518.646|219676.538|90.172 +639513.043|219678.093|90.191 +639507.490|219679.623|90.389 +639501.924|219681.153|90.562 +639496.371|219682.699|90.556 +639490.903|219684.195|90.846 +639485.377|219685.722|90.968 +639474.419|219688.755|91.093 +639469.167|219690.151|91.946 +639463.839|219691.586|92.550 +639458.688|219692.946|93.528 +639448.630|219695.555|96.061 +639438.233|219698.353|97.283 +639518.015|219678.809|90.157 +639523.611|219677.267|90.123 +639529.241|219675.725|89.974 +639534.946|219674.137|90.111 +639540.610|219672.573|90.114 +639546.325|219670.979|90.325 +639552.079|219669.382|90.447 +639557.831|219667.785|90.581 +639563.576|219666.187|90.706 +639569.316|219664.593|90.837 +639575.101|219662.990|90.904 +639580.849|219661.405|90.849 +639586.671|219659.802|90.828 +639592.487|219658.196|90.803 +639598.305|219656.589|90.812 +639604.103|219654.992|90.760 +639609.909|219653.389|90.757 +639615.734|219651.792|90.581 +639621.565|219650.192|90.453 +639627.380|219648.597|90.276 +639633.257|219646.988|90.090 +639639.142|219645.373|89.962 +639645.056|219643.742|89.959 +639650.978|219642.102|90.011 +639656.949|219640.453|90.011 +639662.902|219638.813|89.953 +639668.934|219637.146|89.965 +639674.859|219635.518|89.843 +639680.800|219633.879|89.797 +639686.841|219632.202|89.907 +639692.867|219630.535|89.971 +639698.993|219628.825|90.212 +639705.034|219627.142|90.383 +639711.100|219625.466|90.413 +639717.190|219623.771|90.559 +639723.362|219622.052|90.788 +639729.513|219620.339|90.962 +639735.679|219618.596|91.516 +639741.976|219616.813|92.089 +639748.084|219615.121|92.150 +639754.199|219613.423|92.251 +639760.371|219611.713|92.342 +639772.651|219608.345|91.995 +639784.880|219605.032|91.160 +639790.948|219603.374|90.879 +639797.160|219601.652|90.971 +639803.424|219599.918|91.023 +639809.691|219598.180|91.108 +639822.312|219594.645|91.775 +639834.892|219591.152|92.028 +639841.228|219589.384|92.272 +639847.498|219587.631|92.534 +639853.899|219585.842|92.818 +639860.224|219584.077|93.071 +639866.548|219582.306|93.367 +639873.007|219580.499|93.693 +639879.328|219578.728|94.031 +639885.748|219576.942|94.205 +639898.382|219573.449|94.241 +639904.764|219571.681|94.305 +639911.131|219569.922|94.305 +639917.489|219568.167|94.281 +639923.832|219566.420|94.196 +639930.239|219564.658|94.113 +639936.625|219562.906|93.940 +639943.041|219561.135|93.949 +639949.445|219559.367|93.933 +639955.885|219557.572|94.144 +639962.338|219555.767|94.470 +639968.821|219553.963|94.619 +639975.338|219552.137|94.988 +639981.763|219550.345|95.241 +639988.197|219548.601|94.763 +639994.546|219546.892|94.168 +640001.023|219545.115|93.994 +640026.684|219538.153|92.297 +640039.465|219534.754|90.538 +640045.844|219533.047|89.809 +640052.345|219531.274|89.499 +640071.856|219525.906|89.203 +640078.461|219524.077|89.276 +640075.486|219528.917|89.233 +640069.064|219530.713|89.084 +640062.645|219532.471|89.410 +640056.268|219534.227|89.614 +640049.828|219535.998|89.855 +640043.567|219537.693|90.447 +640030.945|219541.094|91.876 +640024.633|219542.792|92.601 +640005.613|219548.013|93.434 +639999.274|219549.760|93.620 +639993.001|219551.457|94.229 +639986.844|219553.097|95.198 +639980.464|219554.871|95.168 +639974.140|219556.630|95.119 +639967.696|219558.447|94.763 +639961.408|219560.208|94.589 +639955.023|219562.004|94.269 +639948.674|219563.774|94.168 +639942.379|219565.533|94.046 +639936.058|219567.277|94.177 +639929.886|219568.947|94.787 +639910.967|219574.223|94.494 +639885.903|219581.203|94.269 +639879.712|219582.925|94.232 +639873.370|219584.720|93.766 +639867.106|219586.488|93.406 +639860.848|219588.250|93.092 +639848.318|219591.773|92.495 +639842.118|219593.517|92.233 +639835.858|219595.269|92.025 +639829.640|219596.995|92.062 +639823.562|219598.677|92.144 +639817.265|219600.448|91.833 +639811.071|219602.201|91.410 +639798.693|219605.669|90.998 +639786.507|219609.034|91.279 +639780.482|219610.671|91.763 +639768.527|219613.932|92.614 +639756.311|219617.325|92.638 +639750.221|219619.038|92.321 +639744.116|219620.739|92.254 +639738.075|219622.421|92.202 +639731.915|219624.174|91.644 +639725.758|219625.923|91.132 +639719.701|219627.630|90.794 +639713.672|219629.322|90.590 +639707.613|219631.007|90.575 +639701.614|219632.675|90.556 +639695.643|219634.345|90.383 +639689.645|219636.034|90.120 +639683.613|219637.716|90.026 +639677.685|219639.356|90.096 +639671.726|219641.014|90.069 +639665.855|219642.642|90.139 +639659.966|219644.275|90.154 +639654.066|219645.915|90.145 +639648.158|219647.558|90.133 +639642.239|219649.207|90.081 +639636.405|219650.826|90.123 +639630.608|219652.420|90.337 +639624.805|219654.020|90.532 +639619.044|219655.611|90.651 +639613.262|219657.196|90.962 +639607.495|219658.787|91.093 +639601.704|219660.393|91.145 +639595.876|219662.018|91.081 +639590.115|219663.621|91.026 +639584.358|219665.224|91.001 +639578.606|219666.818|91.032 +639572.848|219668.419|91.044 +639567.149|219670.004|91.038 +639561.321|219671.637|90.837 +639555.554|219673.256|90.617 +639549.821|219674.856|90.547 +639544.109|219676.459|90.325 +639538.339|219678.075|90.166 +639532.679|219679.647|90.163 +639526.973|219681.242|90.029 +639521.410|219682.781|90.163 +639515.835|219684.320|90.273 +639510.221|219685.881|90.270 +639504.738|219687.389|90.486 +639499.181|219688.916|90.715 +639493.622|219690.462|90.696 +639482.292|219693.677|89.788 +639466.394|219697.945|91.870 +639455.988|219700.718|93.491 +639445.777|219703.404|95.558 +639440.440|219704.876|95.720 +639517.838|219685.939|90.163 +639523.391|219684.418|89.965 +639529.030|219682.848|90.084 +639534.681|219681.290|90.017 +639540.390|219679.699|90.175 +639546.105|219678.105|90.379 +639551.884|219676.490|90.584 +639557.633|219674.893|90.703 +639563.357|219673.286|90.992 +639569.157|219671.677|91.087 +639574.857|219670.101|91.084 +639580.615|219668.510|91.053 +639586.378|219666.913|91.074 +639592.133|219665.322|91.068 +639598.046|219663.679|91.172 +639603.868|219662.067|91.209 +639609.644|219660.479|91.087 +639615.466|219658.884|90.888 +639621.208|219657.312|90.672 +639627.018|219655.718|90.471 +639632.915|219654.096|90.361 +639638.755|219652.505|90.047 +639644.684|219650.859|90.102 +639650.588|219649.228|90.078 +639656.498|219647.592|90.093 +639662.472|219645.940|90.117 +639668.440|219644.284|90.142 +639674.368|219642.657|90.011 +639680.419|219640.974|90.133 +639686.347|219639.341|90.047 +639692.419|219637.640|90.306 +639698.524|219635.942|90.447 +639704.556|219634.263|90.575 +639710.615|219632.586|90.568 +639716.635|219630.913|90.687 +639722.838|219629.172|91.047 +639729.053|219627.420|91.492 +639735.216|219625.676|92.022 +639741.287|219623.985|92.187 +639747.490|219622.257|92.355 +639753.601|219620.559|92.443 +639759.804|219618.828|92.659 +639772.048|219615.456|92.434 +639778.101|219613.811|92.035 +639784.157|219612.162|91.669 +639790.223|219610.531|91.053 +639815.131|219603.606|91.513 +639821.358|219601.862|91.775 +639833.916|219598.382|91.897 +639846.532|219594.852|92.412 +639859.196|219591.307|92.967 +639865.515|219589.542|93.205 +639871.824|219587.781|93.437 +639878.249|219585.964|93.952 +639884.653|219584.163|94.375 +639897.266|219580.679|94.293 +639922.717|219573.616|94.564 +639935.464|219570.072|94.802 +639941.706|219568.389|94.205 +639948.116|219566.615|94.217 +639954.541|219564.829|94.333 +639960.972|219563.034|94.528 +639967.422|219561.226|94.854 +639973.850|219559.431|95.086 +639980.315|219557.636|95.183 +639986.633|219555.944|94.388 +639993.001|219554.192|94.305 +639999.347|219552.479|93.711 +640005.805|219550.711|93.440 +640025.029|219545.456|92.589 +640044.146|219540.335|90.285 +640050.648|219538.561|89.983 +640057.055|219536.824|89.499 +640063.574|219535.029|89.374 +640070.094|219533.233|89.252 +640075.800|219535.803|89.194 +640069.436|219537.552|89.462 +640062.983|219539.336|89.587 +640056.597|219541.097|89.755 +640043.784|219544.621|90.273 +640037.462|219546.328|90.928 +640031.144|219548.035|91.611 +640024.895|219549.714|92.355 +640005.906|219554.911|93.440 +639999.584|219556.645|93.751 +639993.312|219558.343|94.391 +639986.978|219560.080|94.668 +639980.705|219561.775|95.336 +639974.380|219563.537|95.293 +639968.038|219565.308|95.171 +639961.640|219567.088|95.144 +639955.285|219568.895|94.610 +639948.933|219570.666|94.522 +639936.372|219574.132|94.863 +639930.084|219575.878|94.851 +639923.811|219577.618|94.927 +639898.631|219584.638|94.641 +639886.052|219588.140|94.537 +639873.427|219591.719|93.598 +639860.876|219595.239|93.150 +639842.131|219600.491|92.598 +639835.821|219602.277|92.163 +639829.673|219603.981|92.227 +639823.458|219605.727|91.992 +639817.356|219607.398|92.333 +639810.977|219609.245|91.337 +639798.657|219612.674|91.251 +639786.437|219616.060|91.398 +639762.392|219622.641|92.800 +639756.265|219624.338|92.897 +639750.197|219626.042|92.678 +639744.085|219627.746|92.601 +639738.020|219629.447|92.431 +639731.957|219631.138|92.321 +639725.773|219632.906|91.687 +639719.683|219634.634|91.205 +639713.557|219636.363|90.888 +639707.543|219638.042|90.785 +639701.553|219639.703|90.812 +639695.534|219641.386|90.724 +639689.550|219643.062|90.535 +639683.595|219644.723|90.480 +639677.581|219646.394|90.489 +639671.720|219648.018|90.581 +639665.736|219649.689|90.477 +639659.842|219651.328|90.474 +639653.925|219652.977|90.404 +639648.015|219654.623|90.379 +639642.102|219656.269|90.367 +639636.287|219657.876|90.492 +639630.517|219659.457|90.815 +639624.786|219661.033|91.035 +639619.032|219662.603|91.440 +639613.228|219664.200|91.684 +639607.465|219665.791|91.827 +639601.615|219667.431|91.666 +639595.818|219669.059|91.455 +639590.054|219670.665|91.401 +639584.303|219672.265|91.407 +639578.542|219673.865|91.401 +639572.842|219675.453|91.382 +639567.127|219677.047|91.327 +639561.379|219678.657|91.169 +639555.612|219680.275|90.965 +639549.836|219681.900|90.739 +639544.112|219683.509|90.483 +639538.403|219685.109|90.303 +639532.712|219686.701|90.206 +639527.131|219688.246|90.270 +639521.438|219689.837|90.191 +639515.933|219691.358|90.319 +639510.340|219692.909|90.379 +639504.841|219694.424|90.559 +639499.340|219695.942|90.742 +639493.826|219697.466|90.885 +639488.327|219698.996|90.867 +639482.512|219700.676|90.035 +639445.710|219710.618|93.979 +639521.422|219691.815|90.105 +639527.061|219690.248|90.203 +639532.712|219688.694|90.114 +639538.354|219687.124|90.255 +639544.090|219685.521|90.507 +639549.824|219683.918|90.782 +639555.612|219682.299|91.010 +639561.391|219680.687|91.230 +639567.149|219679.084|91.391 +639572.879|219677.496|91.477 +639578.655|219675.895|91.501 +639584.422|219674.301|91.501 +639590.234|219672.701|91.437 +639596.028|219671.089|91.593 +639601.893|219669.455|91.760 +639607.730|219667.833|91.852 +639613.515|219666.242|91.760 +639619.251|219664.676|91.504 +639625.088|219663.094|91.111 +639630.876|219661.515|90.831 +639636.741|219659.912|90.587 +639642.532|219658.330|90.337 +639648.451|219656.693|90.349 +639654.386|219655.044|90.443 +639660.366|219653.392|90.465 +639666.349|219651.734|90.526 +639672.326|219650.076|90.581 +639678.276|219648.436|90.535 +639684.223|219646.793|90.507 +639690.267|219645.117|90.614 +639696.277|219643.452|90.620 +639702.319|219641.773|90.760 +639708.396|219640.090|90.803 +639714.434|219638.408|90.983 +639720.640|219636.668|91.327 +639726.855|219634.897|92.031 +639732.994|219633.171|92.419 +639739.102|219631.483|92.428 +639745.237|219629.776|92.574 +639751.370|219628.069|92.723 +639757.521|219626.350|92.979 +639763.678|219624.646|92.992 +639775.849|219621.327|92.422 +639781.942|219619.681|91.891 +639787.980|219618.069|91.117 +639800.281|219614.679|90.989 +639806.539|219612.948|91.001 +639812.922|219611.113|91.940 +639825.424|219607.650|92.025 +639831.621|219605.953|91.827 +639837.933|219604.176|92.224 +639844.252|219602.420|92.348 +639863.253|219597.107|93.141 +639888.753|219589.966|94.415 +639907.830|219584.662|94.808 +639927.039|219579.304|95.442 +639939.624|219575.875|94.759 +639946.037|219574.101|94.747 +639952.441|219572.330|94.723 +639958.863|219570.547|94.833 +639965.355|219568.740|94.979 +639971.802|219566.932|95.296 +639978.273|219565.137|95.387 +639984.661|219563.369|95.400 +639990.946|219561.705|94.391 +639997.375|219559.934|94.278 +640003.855|219558.154|94.110 +640029.440|219551.241|91.885 +640035.837|219549.519|91.254 +640042.223|219547.803|90.568 +640048.688|219546.026|90.428 +640055.201|219544.240|90.209 +640061.660|219542.496|89.614 +640074.681|219538.924|89.218 +640081.219|219537.114|89.267 +640070.822|219544.267|88.819 +640064.556|219545.941|89.797 +640051.757|219549.458|90.392 +640045.384|219551.211|90.672 +640039.023|219552.954|91.047 +640026.526|219556.292|92.922 +640007.467|219561.549|93.552 +640001.124|219563.302|93.738 +639994.842|219565.009|94.314 +639988.478|219566.774|94.400 +639982.351|219568.392|95.576 +639975.962|219570.172|95.549 +639969.607|219571.955|95.357 +639963.261|219573.729|95.244 +639956.934|219575.488|95.262 +639950.649|219577.244|95.186 +639944.288|219579.024|95.058 +639938.057|219580.737|95.342 +639931.721|219582.495|95.403 +639925.439|219584.242|95.430 +639912.765|219587.805|94.964 +639906.507|219589.554|94.842 +639900.265|219591.295|94.817 +639887.750|219594.788|94.702 +639881.413|219596.559|94.613 +639862.409|219601.954|93.162 +639856.206|219603.703|92.864 +639849.979|219605.441|92.790 +639819.021|219614.070|92.681 +639800.227|219619.413|91.160 +639787.949|219622.814|91.376 +639781.945|219624.442|91.967 +639757.838|219631.056|93.226 +639751.763|219632.763|92.992 +639745.588|219634.485|92.928 +639739.513|219636.189|92.754 +639733.454|219637.884|92.647 +639727.382|219639.581|92.534 +639721.173|219641.361|91.843 +639715.047|219643.111|91.251 +639708.991|219644.815|90.983 +639702.968|219646.500|90.873 +639696.963|219648.171|90.873 +639690.928|219649.859|90.754 +639684.985|219651.511|90.764 +639679.050|219653.157|90.837 +639673.106|219654.809|90.879 +639667.141|219656.470|90.873 +639661.131|219658.156|90.681 +639655.239|219659.793|90.730 +639649.292|219661.460|90.581 +639643.449|219663.085|90.587 +639637.618|219664.682|90.931 +639631.751|219666.297|91.151 +639625.969|219667.885|91.446 +639620.294|219669.431|91.910 +639614.481|219671.031|92.129 +639608.702|219672.634|92.217 +639602.926|219674.249|92.096 +639597.092|219675.880|92.022 +639591.289|219677.489|92.086 +639585.446|219679.141|91.766 +639579.676|219680.748|91.733 +639573.906|219682.354|91.724 +639568.164|219683.963|91.590 +639562.409|219685.579|91.419 +639556.633|219687.203|91.196 +639550.845|219688.831|90.953 +639545.093|219690.456|90.611 +639539.363|219692.068|90.373 +639533.715|219693.656|90.187 +639528.070|219695.220|90.291 +639522.386|219696.820|90.023 +639516.887|219698.323|90.425 +639511.279|219699.880|90.456 +639505.743|219701.416|90.517 +639500.220|219702.943|90.639 +639494.731|219704.455|90.888 +639489.242|219705.979|90.919 +639483.716|219707.525|90.840 +639472.517|219710.685|90.248 +639525.239|219697.829|90.328 +639530.902|219696.262|90.279 +639536.592|219694.680|90.343 +639542.304|219693.086|90.495 +639548.068|219691.465|90.858 +639553.875|219689.834|91.141 +639559.641|219688.221|91.309 +639565.405|219686.612|91.489 +639571.190|219684.988|91.766 +639576.978|219683.381|91.818 +639582.764|219681.772|91.885 +639588.607|219680.132|92.178 +639594.367|219678.535|92.199 +639600.192|219676.919|92.205 +639606.090|219675.280|92.266 +639611.924|219673.658|92.358 +639617.755|219672.052|92.193 +639623.457|219670.500|91.812 +639629.270|219668.925|91.355 +639635.058|219667.340|91.077 +639640.840|219665.761|90.785 +639646.811|219664.109|90.727 +639652.703|219662.484|90.639 +639658.656|219660.820|90.818 +639664.633|219659.162|90.846 +639670.555|219657.516|90.931 +639676.596|219655.836|90.986 +639682.580|219654.191|90.828 +639688.526|219652.542|90.812 +639694.546|219650.874|90.831 +639700.569|219649.198|90.898 +639706.659|219647.506|90.980 +639712.703|219645.815|91.175 +639718.891|219644.062|91.705 +639725.124|219642.276|92.480 +639731.296|219640.548|92.726 +639737.361|219638.859|92.827 +639743.509|219637.140|93.016 +639749.627|219635.439|93.095 +639755.799|219633.726|93.147 +639761.883|219632.044|93.107 +639780.165|219627.051|92.077 +639786.212|219625.408|91.654 +639792.378|219623.710|91.492 +639804.622|219620.342|91.132 +639810.965|219618.553|91.553 +639861.181|219604.523|93.056 +639867.584|219602.725|93.379 +639873.900|219600.954|93.626 +639880.435|219599.064|94.683 +639886.726|219597.309|94.860 +639905.688|219592.045|94.961 +639912.070|219590.271|95.019 +639918.459|219588.491|95.147 +639924.777|219586.729|95.275 +639931.209|219584.943|95.326 +639943.964|219581.413|95.253 +639950.301|219579.661|95.208 +639956.681|219577.905|95.043 +639963.203|219576.043|95.771 +639969.540|219574.314|95.406 +639976.029|219572.501|95.595 +639982.427|219570.727|95.649 +639988.676|219569.087|94.412 +639995.055|219567.319|94.385 +640001.456|219565.597|93.702 +640007.881|219563.823|93.613 +640020.759|219560.281|93.254 +640027.099|219558.599|92.239 +640039.907|219555.136|91.062 +640046.332|219553.387|90.660 +640052.851|219551.595|90.465 +640059.210|219549.860|90.072 +640065.760|219548.074|89.681 +640072.218|219546.294|89.566 +640078.738|219544.493|89.477 +640077.461|219548.870|89.611 +640070.999|219550.671|89.639 +640058.304|219554.152|90.477 +640051.955|219555.892|90.901 +640039.215|219559.401|91.519 +640026.672|219562.784|93.068 +640007.616|219568.051|93.732 +640001.197|219569.834|93.851 +639994.997|219571.513|94.540 +639982.439|219574.927|95.768 +639976.130|219576.680|95.848 +639963.502|219580.194|95.973 +639931.827|219589.076|95.381 +639925.545|219590.826|95.421 +639919.297|219592.578|95.296 +639912.933|219594.352|95.299 +639906.675|219596.108|95.183 +639900.433|219597.851|95.174 +639894.099|219599.625|95.052 +639887.912|219601.356|95.025 +639881.636|219603.115|94.909 +639875.278|219604.926|94.400 +639868.843|219606.812|93.187 +639825.345|219618.959|93.028 +639800.416|219626.039|91.373 +639758.124|219637.679|93.546 +639752.053|219639.389|93.324 +639745.966|219641.084|93.351 +639739.852|219642.797|93.284 +639733.807|219644.507|92.955 +639727.739|219646.208|92.842 +639721.646|219647.924|92.638 +639715.477|219649.704|91.852 +639709.366|219651.447|91.349 +639703.321|219653.148|91.154 +639697.353|219654.824|91.010 +639691.343|219656.501|90.998 +639685.341|219658.171|91.047 +639679.489|219659.796|91.169 +639673.524|219661.463|91.126 +639667.638|219663.106|91.145 +639661.661|219664.776|91.090 +639655.721|219666.447|90.946 +639649.838|219668.080|91.035 +639644.004|219669.705|91.071 +639638.204|219671.311|91.260 +639632.434|219672.896|91.593 +639626.719|219674.451|92.138 +639620.961|219676.029|92.537 +639615.185|219677.614|92.888 +639609.437|219679.224|92.830 +639603.609|219680.854|92.754 +639597.796|219682.476|92.760 +639592.093|219684.073|92.681 +639586.321|219685.692|92.614 +639580.523|219687.319|92.480 +639574.650|219688.987|92.086 +639568.941|219690.584|92.053 +639563.144|219692.224|91.730 +639557.364|219693.854|91.492 +639551.662|219695.461|91.300 +639545.925|219697.082|91.017 +639540.165|219698.716|90.657 +639534.434|219700.331|90.431 +639528.835|219701.895|90.440 +639523.236|219703.455|90.465 +639517.539|219705.086|89.928 +639512.126|219706.546|90.636 +639506.609|219708.076|90.757 +639501.077|219709.612|90.843 +639495.603|219711.136|90.904 +639490.147|219712.648|91.044 +639484.624|219714.197|90.974 +639479.104|219715.742|90.925 +639452.443|219723.057|92.659 +639524.303|219704.681|90.410 +639529.908|219703.129|90.389 +639535.553|219701.553|90.511 +639541.280|219699.950|90.712 +639546.977|219698.344|91.059 +639552.722|219696.728|91.355 +639558.431|219695.131|91.544 +639564.250|219693.491|91.903 +639570.087|219691.858|92.099 +639575.820|219690.261|92.193 +639581.703|219688.599|92.598 +639587.494|219686.987|92.693 +639593.282|219685.375|92.787 +639599.058|219683.765|92.864 +639604.877|219682.150|92.867 +639610.714|219680.525|92.949 +639616.523|219678.916|92.949 +639622.293|219677.343|92.559 +639628.048|219675.780|92.114 +639633.851|219674.207|91.626 +639639.624|219672.631|91.285 +639645.491|219671.019|91.068 +639651.325|219669.406|91.007 +639657.312|219667.742|91.029 +639663.304|219666.075|91.096 +639669.293|219664.410|91.166 +639675.243|219662.765|91.105 +639681.205|219661.109|91.111 +639687.194|219659.457|90.980 +639693.202|219657.796|90.928 +639699.170|219656.132|91.020 +639705.278|219654.428|91.160 +639711.344|219652.727|91.425 +639717.629|219650.914|92.364 +639723.795|219649.167|92.818 +639729.842|219647.491|92.809 +639736.026|219645.754|93.098 +639742.174|219644.035|93.281 +639748.298|219642.331|93.357 +639754.391|219640.642|93.336 +639760.474|219638.960|93.284 +639772.694|219635.598|92.900 +639778.738|219633.955|92.428 +639790.894|219630.651|91.535 +639803.320|219627.216|91.355 +639809.462|219625.527|91.132 +639822.340|219621.821|92.940 +639834.642|219618.474|92.071 +639853.615|219613.149|92.858 +639860.047|219611.308|93.613 +639872.656|219607.815|93.568 +639885.555|219604.118|95.156 +639891.868|219602.371|95.092 +639898.186|219600.619|95.092 +639904.590|219598.833|95.223 +639910.900|219597.080|95.229 +639917.288|219595.300|95.336 +639923.662|219593.529|95.378 +639929.986|219591.761|95.540 +639955.742|219584.547|96.500 +639974.826|219579.304|95.848 +639981.269|219577.521|95.781 +639993.903|219574.110|94.537 +640000.285|219572.367|94.159 +640006.735|219570.575|94.208 +640025.925|219565.338|93.068 +640038.706|219561.894|91.736 +640051.617|219558.373|90.901 +640058.088|219556.615|90.395 +640064.437|219554.886|89.956 +640071.002|219553.088|89.672 +640077.464|219551.299|89.614 +640065.540|219558.809|90.322 +640059.182|219560.559|90.657 +640052.751|219562.327|90.983 +640040.141|219565.768|92.035 +640033.856|219567.484|92.519 +640008.570|219574.427|94.037 +640002.184|219576.216|93.949 +639995.912|219577.917|94.595 +639983.451|219581.288|96.037 +639977.139|219583.044|96.076 +639970.900|219584.748|96.579 +639964.590|219586.500|96.698 +639932.949|219595.385|95.915 +639926.624|219597.165|95.723 +639907.751|219602.448|95.479 +639901.515|219604.185|95.506 +639895.321|219605.919|95.433 +639889.009|219607.681|95.448 +639876.366|219611.281|94.442 +639870.056|219613.082|93.885 +639863.854|219614.813|93.888 +639857.572|219616.593|93.522 +639845.017|219620.166|92.601 +639838.732|219621.940|92.312 +639832.542|219623.677|92.184 +639826.479|219625.329|92.693 +639820.066|219627.203|91.544 +639813.888|219628.929|91.553 +639807.716|219630.669|91.291 +639801.577|219632.388|91.215 +639789.403|219635.756|91.620 +639783.377|219637.423|91.815 +639759.395|219643.980|93.650 +639753.296|219645.684|93.616 +639747.210|219647.381|93.656 +639741.229|219649.055|93.589 +639735.082|219650.786|93.409 +639728.946|219652.526|93.022 +639722.954|219654.203|92.973 +639716.922|219655.900|92.778 +639710.701|219657.687|92.105 +639704.571|219659.436|91.556 +639698.603|219661.113|91.422 +639692.568|219662.804|91.324 +639686.606|219664.471|91.266 +639680.659|219666.133|91.279 +639674.731|219667.779|91.394 +639668.821|219669.434|91.330 +639662.853|219671.098|91.324 +639656.995|219672.741|91.239 +639651.100|219674.380|91.300 +639645.232|219676.005|91.486 +639639.402|219677.608|91.821 +639633.711|219679.169|92.205 +639627.987|219680.729|92.717 +639622.275|219682.281|93.299 +639616.538|219683.863|93.549 +639610.756|219685.469|93.635 +639604.892|219687.121|93.427 +639599.086|219688.740|93.461 +639593.328|219690.349|93.437 +639587.512|219691.989|93.223 +639581.700|219693.626|93.040 +639575.960|219695.238|92.888 +639570.154|219696.887|92.510 +639564.381|219698.515|92.288 +639558.553|219700.173|91.885 +639552.789|219701.813|91.483 +639546.983|219703.452|91.196 +639541.259|219705.068|90.986 +639535.550|219706.689|90.596 +639529.871|219708.277|90.584 +639524.254|219709.847|90.550 +639518.646|219711.411|90.581 +639512.992|219713.017|90.221 +639507.606|219714.477|90.806 +639502.074|219716.013|90.901 +639496.526|219717.559|90.959 +639491.040|219719.086|91.007 +639485.535|219720.622|91.007 +639480.073|219722.155|90.934 +639529.045|219710.649|90.520 +639534.681|219709.076|90.611 +639540.369|219707.476|90.888 +639546.105|219705.863|91.126 +639551.848|219704.248|91.404 +639557.630|219702.608|91.846 +639563.433|219700.977|92.132 +639569.307|219699.304|92.699 +639575.104|219697.670|93.010 +639580.846|219696.064|93.153 +639586.598|219694.452|93.342 +639592.487|219692.800|93.549 +639598.263|219691.190|93.616 +639604.081|219689.575|93.604 +639609.927|219687.941|93.720 +639615.752|219686.323|93.763 +639621.491|219684.747|93.510 +639627.182|219683.195|93.086 +639632.903|219681.647|92.534 +639638.646|219680.086|92.074 +639644.458|219678.504|91.629 +639650.304|219676.904|91.340 +639656.138|219675.286|91.285 +639662.039|219673.649|91.248 +639667.974|219671.994|91.358 +639673.960|219670.324|91.431 +639679.879|219668.693|91.263 +639685.859|219667.026|91.343 +639691.885|219665.349|91.367 +639697.862|219663.679|91.486 +639703.922|219661.981|91.690 +639710.128|219660.216|92.248 +639716.242|219658.482|92.729 +639722.280|219656.790|92.922 +639728.355|219655.096|93.010 +639734.533|219653.361|93.263 +639740.638|219651.645|93.522 +639746.701|219649.951|93.632 +639752.784|219648.268|93.552 +639758.954|219646.552|93.571 +639807.652|219633.174|91.519 +639813.805|219631.501|91.032 +639820.075|219629.730|91.428 +639826.503|219627.853|92.629 +639845.194|219622.668|92.547 +639864.311|219617.233|94.180 +639876.948|219613.689|94.634 +639883.449|219611.817|95.521 +639902.423|219606.538|95.595 +639908.720|219604.798|95.509 +639915.036|219603.039|95.552 +639927.764|219599.476|95.893 +639934.217|219597.671|96.055 +639959.860|219590.496|96.753 +639966.248|219588.725|96.680 +639972.613|219586.973|96.482 +639978.943|219585.242|96.113 +639985.308|219583.486|95.942 +639991.571|219581.831|94.799 +639997.948|219580.093|94.354 +640004.370|219578.323|94.199 +640010.758|219576.573|93.854 +640023.658|219573.004|93.623 +640030.077|219571.260|93.107 +640036.407|219569.550|92.470 +640049.273|219566.064|91.291 +640055.698|219564.308|90.888 +640062.126|219562.549|90.532 +640068.686|219560.751|90.200 +640075.087|219558.977|90.136 +640079.412|219562.214|89.669 +640066.665|219565.707|90.572 +640060.295|219567.466|90.834 +640053.930|219569.218|91.157 +640047.588|219570.956|91.641 +640041.327|219572.659|92.251 +640009.679|219581.355|94.165 +640003.260|219583.172|93.863 +639997.015|219584.858|94.671 +639984.649|219588.189|96.296 +639978.267|219589.972|96.308 +639972.061|219591.679|96.634 +639965.691|219593.453|96.750 +639959.451|219595.181|96.914 +639934.159|219602.298|96.244 +639927.850|219604.066|96.134 +639909.025|219609.351|95.793 +639884.062|219616.313|95.945 +639877.740|219618.130|95.272 +639858.882|219623.488|94.031 +639846.309|219627.075|93.013 +639833.855|219630.578|92.699 +639821.392|219634.125|91.809 +639802.930|219639.298|91.605 +639790.683|219642.715|91.678 +639784.688|219644.361|92.031 +639778.595|219646.068|91.958 +639766.653|219649.308|93.254 +639754.671|219652.633|93.546 +639748.615|219654.309|93.729 +639742.583|219655.992|93.744 +639736.596|219657.668|93.690 +639730.561|219659.372|93.446 +639724.456|219661.094|93.220 +639718.366|219662.804|93.077 +639712.441|219664.459|93.077 +639706.449|219666.151|92.830 +639700.340|219667.891|92.391 +639694.260|219669.610|92.105 +639688.331|219671.281|91.907 +639682.318|219672.978|91.657 +639676.438|219674.618|91.702 +639670.470|219676.285|91.684 +639664.529|219677.956|91.526 +639658.628|219679.602|91.544 +639652.819|219681.214|91.681 +639646.964|219682.833|91.913 +639641.337|219684.360|92.531 +639635.628|219685.911|93.098 +639629.925|219687.459|93.705 +639624.155|219689.044|94.071 +639618.422|219690.626|94.318 +639612.661|219692.224|94.488 +639606.885|219693.845|94.360 +639601.128|219695.457|94.324 +639595.373|219697.064|94.321 +639589.548|219698.710|94.071 +639583.718|219700.356|93.818 +639577.978|219701.971|93.674 +639572.224|219703.593|93.491 +639566.408|219705.245|93.110 +639560.483|219706.955|92.364 +639554.713|219708.597|91.940 +639548.928|219710.246|91.498 +639543.191|219711.868|91.242 +639537.531|219713.465|91.035 +639531.892|219715.047|90.919 +639526.247|219716.635|90.800 +639520.627|219718.205|90.788 +639515.076|219719.756|90.791 +639509.413|219721.362|90.431 +639503.960|219722.859|90.803 +639498.501|219724.374|90.931 +639493.015|219725.904|90.983 +639487.495|219727.449|90.943 +639482.018|219728.970|91.056 +639476.513|219730.506|91.099 +639471.112|219732.000|91.273 +639533.806|219716.358|91.026 +639539.503|219714.770|91.093 +639545.169|219713.179|91.306 +639550.939|219711.545|91.672 +639556.791|219709.887|92.108 +639562.625|219708.216|92.742 +639568.517|219706.534|93.363 +639574.324|219704.894|93.699 +639580.069|219703.288|93.836 +639585.836|219701.666|94.071 +639591.679|219700.020|94.354 +639597.555|219698.374|94.528 +639603.304|219696.777|94.510 +639609.065|219695.174|94.546 +639614.960|219693.531|94.592 +639620.714|219691.946|94.397 +639626.512|219690.355|94.110 +639632.202|219688.804|93.702 +639637.914|219687.258|93.120 +639643.620|219685.719|92.519 +639649.390|219684.158|91.928 +639655.239|219682.552|91.650 +639661.109|219680.931|91.489 +639667.041|219679.276|91.574 +639673.042|219677.599|91.693 +639678.934|219675.962|91.666 +639684.936|219674.280|91.839 +639691.010|219672.576|92.050 +639697.045|219670.872|92.391 +639703.141|219669.153|92.736 +639709.228|219667.434|93.074 +639715.205|219665.782|92.976 +639721.311|219664.069|93.147 +639727.337|219662.384|93.293 +639733.442|219660.671|93.525 +639739.590|219658.951|93.656 +639745.643|219657.263|93.708 +639751.699|219655.596|93.501 +639757.682|219653.950|93.272 +639788.111|219645.580|92.044 +639818.944|219637.036|91.647 +639831.438|219633.537|91.958 +639850.360|219628.194|93.053 +639856.840|219626.323|93.991 +639863.186|219624.533|94.314 +639869.563|219622.699|95.153 +639875.838|219620.955|95.162 +639882.276|219619.123|95.704 +639888.585|219617.349|95.948 +639901.137|219613.868|95.820 +639913.859|219610.318|96.015 +639926.512|219606.809|95.899 +639932.827|219605.041|96.015 +639964.859|219596.062|96.966 +639971.201|219594.322|96.640 +639977.538|219592.584|96.308 +639983.997|219590.786|96.320 +639990.319|219589.055|95.942 +639996.558|219587.418|94.647 +640002.846|219585.708|94.083 +640009.329|219583.888|94.324 +640022.310|219580.255|94.613 +640034.947|219576.878|92.754 +640041.318|219575.131|92.406 +640060.596|219569.886|90.803 +640067.040|219568.112|90.559 +640080.223|219568.514|89.581 +640073.831|219570.258|90.142 +640067.509|219571.980|90.751 +640042.153|219578.905|92.845 +640035.901|219580.596|93.552 +640010.481|219587.643|94.278 +640004.044|219589.466|93.912 +639997.859|219591.133|94.726 +639991.538|219592.843|95.497 +639985.387|219594.486|96.515 +639979.053|219596.260|96.454 +639972.762|219597.997|96.689 +639966.431|219599.765|96.701 +639960.134|219601.509|96.914 +639934.854|219608.605|96.430 +639928.529|219610.385|96.253 +639878.280|219624.469|95.534 +639865.750|219628.014|94.939 +639859.431|219629.819|94.409 +639853.033|219631.672|93.519 +639846.636|219633.519|92.678 +639827.826|219638.856|91.547 +639815.567|219642.267|91.736 +639809.285|219644.053|91.306 +639797.105|219647.427|91.681 +639790.945|219649.158|91.571 +639784.855|219650.841|91.809 +639754.830|219659.119|93.354 +639748.791|219660.786|93.629 +639742.817|219662.432|93.915 +639736.770|219664.124|93.897 +639730.772|219665.806|93.818 +639724.670|219667.526|93.613 +639718.558|219669.251|93.397 +639712.593|219670.930|93.242 +639706.592|219672.607|93.242 +639700.633|219674.277|93.165 +639694.540|219676.005|92.830 +639688.523|219677.706|92.565 +639682.491|219679.416|92.245 +639676.487|219681.104|92.077 +639670.610|219682.763|91.885 +639664.627|219684.439|91.843 +639658.759|219686.067|92.004 +639652.932|219687.670|92.348 +639647.220|219689.224|92.885 +639641.517|219690.776|93.467 +639635.872|219692.312|94.031 +639630.175|219693.857|94.662 +639624.375|219695.461|94.912 +639618.608|219697.061|95.046 +639612.826|219698.670|95.147 +639607.108|219700.261|95.244 +639601.335|219701.880|95.162 +639595.559|219703.501|95.080 +639589.774|219705.123|94.991 +639583.958|219706.784|94.546 +639578.164|219708.427|94.211 +639572.315|219710.082|93.949 +639566.551|219711.725|93.522 +639560.745|219713.371|93.205 +639554.829|219715.093|92.281 +639549.037|219716.745|91.827 +639543.271|219718.382|91.483 +639537.635|219719.963|91.370 +639531.984|219721.554|91.224 +639526.415|219723.118|91.132 +639520.770|219724.703|91.053 +639515.171|219726.279|90.904 +639509.584|219727.846|90.809 +639504.043|219729.406|90.657 +639498.511|219730.942|90.788 +639493.009|219732.482|90.800 +639487.611|219733.978|90.940 +639482.097|219735.520|90.953 +639476.784|219736.987|91.175 +639531.487|219723.523|91.218 +639537.135|219721.945|91.330 +639542.798|219720.357|91.519 +639548.559|219718.732|91.824 +639554.353|219717.086|92.278 +639560.281|219715.370|93.223 +639566.054|219713.733|93.641 +639571.855|219712.100|93.936 +639577.698|219710.438|94.409 +639583.498|219708.802|94.747 +639589.378|219707.137|95.147 +639595.096|219705.540|95.223 +639600.930|219703.919|95.238 +639606.776|219702.285|95.326 +639612.597|219700.666|95.345 +639618.315|219699.085|95.238 +639624.091|219697.487|95.119 +639629.904|219695.887|94.897 +639635.631|219694.336|94.354 +639641.346|219692.790|93.784 +639647.055|219691.245|93.214 +639652.834|219689.681|92.644 +639658.644|219688.097|92.224 +639664.490|219686.490|91.955 +639670.397|219684.850|91.943 +639676.420|219683.159|92.150 +639682.442|219681.467|92.388 +639688.481|219679.766|92.699 +639694.503|219678.069|92.973 +639700.602|219676.350|93.309 +639706.610|219674.679|93.293 +639712.606|219673.015|93.251 +639718.665|219671.314|93.482 +639724.779|219669.598|93.702 +639730.872|219667.891|93.851 +639736.935|219666.203|93.891 +639742.976|219664.526|93.854 +639748.938|219662.896|93.501 +639754.994|219661.225|93.293 +639791.393|219651.243|91.440 +639803.842|219647.744|91.928 +639809.971|219646.065|91.608 +639816.149|219644.352|91.538 +639822.392|219642.620|91.474 +639828.692|219640.825|92.035 +639834.898|219639.115|91.846 +639841.301|219637.274|92.638 +639847.650|219635.467|93.199 +639854.021|219633.644|93.894 +639860.477|219631.788|94.726 +639873.168|219628.206|95.403 +639885.915|219624.582|96.475 +639917.435|219615.844|96.091 +639930.181|219612.271|96.503 +639936.616|219610.476|96.543 +639968.574|219601.579|96.668 +639981.348|219598.037|96.530 +639987.716|219596.278|96.369 +639993.970|219594.657|94.759 +640000.289|219592.929|94.354 +640006.756|219591.124|94.455 +640013.133|219589.381|94.037 +640026.169|219585.711|94.631 +640045.390|219580.490|92.922 +640051.760|219578.777|92.144 +640064.641|219575.272|91.111 +640071.063|219573.549|90.255 +640077.476|219571.797|89.800 +640080.890|219574.827|89.843 +640074.529|219576.579|90.172 +640068.223|219578.292|90.885 +640055.564|219581.749|92.013 +640049.230|219583.480|92.580 +640036.642|219586.909|93.830 +640011.274|219593.959|94.464 +640004.818|219595.803|93.985 +639998.573|219597.488|94.802 +639992.409|219599.144|95.741 +639986.176|219600.820|96.668 +639979.907|219602.579|96.594 +639973.591|219604.340|96.674 +639967.263|219606.108|96.692 +639961.006|219607.855|96.774 +639935.717|219614.941|96.600 +639929.465|219616.700|96.469 +639923.119|219618.498|96.198 +639910.574|219622.010|96.186 +639904.377|219623.723|96.454 +639898.211|219625.442|96.543 +639891.895|219627.207|96.567 +639873.095|219632.522|95.829 +639866.813|219634.308|95.457 +639860.534|219636.088|95.131 +639847.705|219639.844|92.897 +639835.157|219643.407|92.184 +639816.536|219648.646|91.800 +639810.447|219650.338|91.958 +639804.326|219652.048|91.995 +639791.985|219655.522|91.681 +639785.971|219657.184|91.964 +639779.857|219658.881|92.129 +639773.901|219660.506|92.708 +639755.820|219665.520|93.303 +639749.813|219667.190|93.437 +639743.863|219668.824|93.836 +639737.858|219670.491|94.010 +639731.835|219672.165|94.125 +639725.822|219673.856|94.013 +639719.717|219675.578|93.827 +639713.721|219677.273|93.568 +639707.692|219678.968|93.455 +639701.694|219680.644|93.501 +639695.744|219682.308|93.488 +639689.703|219684.024|93.126 +639683.668|219685.737|92.815 +639677.624|219687.450|92.492 +639671.628|219689.136|92.382 +639665.788|219690.770|92.367 +639659.982|219692.364|92.775 +639654.181|219693.955|93.223 +639648.457|219695.518|93.720 +639642.767|219697.064|94.360 +639636.997|219698.630|94.970 +639631.306|219700.194|95.363 +639625.570|219701.782|95.607 +639619.711|219703.416|95.668 +639613.954|219705.031|95.598 +639608.156|219706.647|95.668 +639602.390|219708.265|95.616 +639596.632|219709.875|95.613 +639590.758|219711.530|95.451 +639585.025|219713.145|95.320 +639579.191|219714.809|94.854 +639573.370|219716.470|94.446 +639567.560|219718.119|94.116 +639561.717|219719.787|93.671 +639555.868|219721.472|92.998 +639549.958|219723.191|92.126 +639544.249|219724.816|91.748 +639538.598|219726.407|91.599 +639532.938|219728.004|91.434 +639527.302|219729.586|91.364 +639521.633|219731.183|91.205 +639516.021|219732.765|91.026 +639510.416|219734.347|90.876 +639504.841|219735.904|90.861 +639499.337|219737.447|90.852 +639493.774|219739.017|90.678 +639488.318|219740.528|90.876 +639482.838|219742.052|91.004 +639535.099|219729.092|91.498 +639540.741|219727.513|91.602 +639546.434|219725.907|91.900 +639552.232|219724.243|92.583 +639558.075|219722.569|93.211 +639564.009|219720.863|93.946 +639569.764|219719.235|94.305 +639575.598|219717.577|94.729 +639581.432|219715.922|95.177 +639587.204|219714.294|95.421 +639593.002|219712.676|95.521 +639598.732|219711.069|95.653 +639604.505|219709.457|95.707 +639610.311|219707.845|95.656 +639616.066|219706.241|95.683 +639621.888|219704.617|95.723 +639627.676|219703.010|95.646 +639633.470|219701.419|95.369 +639639.228|219699.847|94.958 +639644.925|219698.307|94.318 +639650.621|219696.768|93.705 +639656.361|219695.201|93.269 +639662.161|219693.620|92.809 +639667.992|219692.022|92.489 +639673.960|219690.361|92.464 +639679.913|219688.691|92.665 +639685.972|219686.972|93.053 +639692.019|219685.265|93.406 +639698.064|219683.573|93.513 +639704.083|219681.897|93.522 +639710.091|219680.224|93.519 +639716.138|219678.526|93.693 +639722.188|219676.825|93.906 +639728.291|219675.115|94.074 +639734.359|219673.420|94.129 +639740.358|219671.768|93.900 +639746.396|219670.110|93.568 +639752.428|219668.455|93.239 +639758.451|219666.803|92.879 +639788.851|219658.424|91.727 +639801.202|219654.986|91.711 +639819.780|219649.817|91.660 +639832.356|219646.290|92.004 +639838.686|219644.495|92.434 +639844.980|219642.721|92.705 +639857.934|219638.957|94.817 +639877.039|219633.537|96.152 +639889.737|219629.965|96.655 +639896.068|219628.200|96.674 +639902.380|219626.445|96.628 +639915.060|219622.921|96.558 +639934.071|219617.636|96.408 +639940.493|219615.822|96.750 +639966.072|219608.705|96.680 +639972.524|219606.913|96.594 +639978.937|219605.121|96.671 +639985.335|219603.338|96.683 +639991.748|219601.570|96.439 +639997.926|219599.976|94.766 +640004.269|219598.257|94.110 +640010.725|219596.425|94.555 +640017.394|219594.492|95.579 +640049.346|219585.815|92.586 +640055.750|219584.074|92.019 +640062.187|219582.303|91.708 +640074.983|219578.859|90.120 +640080.774|219581.157|89.898 +640074.431|219582.901|90.346 +640061.831|219586.318|91.873 +640055.488|219588.058|92.361 +640036.599|219593.200|94.382 +640030.311|219594.928|94.842 +640017.702|219598.403|95.631 +640011.106|219600.323|94.644 +640004.723|219602.143|94.214 +639998.451|219603.853|94.872 +639986.134|219607.157|96.820 +639979.815|219608.925|96.856 +639973.512|219610.708|96.631 +639967.126|219612.491|96.710 +639954.547|219616.002|96.902 +639948.265|219617.761|96.899 +639941.974|219619.526|96.863 +639935.646|219621.315|96.649 +639916.825|219626.585|96.689 +639910.659|219628.310|96.750 +639904.362|219630.069|96.820 +639898.144|219631.797|96.991 +639891.877|219633.559|96.920 +639879.399|219637.088|96.479 +639873.120|219638.850|96.433 +639854.115|219644.330|94.308 +639841.375|219648.027|92.611 +639835.117|219649.811|92.187 +639804.296|219658.479|91.772 +639755.881|219671.942|93.174 +639749.880|219673.612|93.321 +639743.936|219675.249|93.732 +639737.965|219676.898|94.049 +639732.040|219678.541|94.293 +639725.992|219680.233|94.324 +639719.970|219681.933|94.193 +639713.919|219683.643|93.973 +639707.954|219685.326|93.851 +639701.938|219687.011|93.821 +639695.994|219688.679|93.827 +639690.017|219690.361|93.708 +639683.988|219692.074|93.415 +639677.977|219693.793|92.946 +639672.037|219695.470|92.781 +639666.187|219697.094|93.001 +639660.405|219698.676|93.498 +639654.593|219700.279|93.885 +639648.866|219701.849|94.357 +639643.263|219703.364|95.073 +639637.582|219704.909|95.744 +639631.830|219706.510|95.899 +639625.993|219708.137|96.009 +639620.193|219709.762|96.027 +639614.454|219711.371|96.027 +639608.720|219712.974|96.073 +639602.914|219714.599|96.119 +639597.217|219716.199|96.076 +639591.478|219717.821|95.906 +639585.662|219719.464|95.720 +639579.920|219721.082|95.579 +639574.189|219722.716|95.244 +639568.343|219724.389|94.772 +639562.534|219726.059|94.211 +639556.651|219727.766|93.403 +639550.808|219729.452|92.772 +639544.950|219731.144|92.108 +639539.302|219732.738|91.952 +639533.636|219734.341|91.757 +639528.058|219735.914|91.650 +639522.489|219737.477|91.590 +639516.860|219739.074|91.346 +639511.242|219740.662|91.154 +639505.646|219742.238|91.053 +639500.160|219743.774|91.108 +639494.731|219745.292|91.135 +639489.171|219746.865|90.980 +639483.764|219748.371|91.114 +639539.363|219734.399|92.059 +639545.008|219732.820|92.160 +639550.860|219731.140|92.772 +639556.724|219729.455|93.455 +639562.622|219727.751|94.278 +639568.459|219726.078|94.900 +639574.311|219724.410|95.372 +639580.042|219722.795|95.659 +639585.860|219721.161|95.799 +639591.621|219719.540|96.000 +639597.424|219717.915|96.122 +639603.200|219716.300|96.165 +639609.016|219714.684|96.125 +639614.768|219713.081|96.110 +639620.574|219711.466|96.076 +639626.380|219709.847|96.052 +639632.172|219708.238|95.988 +639638.003|219706.625|95.832 +639643.696|219705.086|95.174 +639649.426|219703.547|94.403 +639655.157|219701.986|93.909 +639660.920|219700.407|93.555 +639666.718|219698.826|93.086 +639672.579|219697.207|92.879 +639678.596|219695.518|93.043 +639684.674|219693.790|93.473 +639690.693|219692.096|93.699 +639696.677|219690.419|93.802 +639702.657|219688.746|93.903 +639708.680|219687.063|93.936 +639714.706|219685.381|93.994 +639720.777|219683.668|94.272 +639726.800|219681.982|94.360 +639732.896|219680.294|94.214 +639738.885|219678.645|93.933 +639744.866|219677.002|93.613 +639750.837|219675.362|93.281 +639781.259|219666.956|92.291 +639787.309|219665.304|91.812 +639799.644|219661.875|91.687 +639805.786|219660.162|91.684 +639818.219|219656.684|91.833 +639830.673|219653.209|91.864 +639837.046|219651.389|92.452 +639843.386|219649.588|92.915 +639862.720|219643.989|95.720 +639869.078|219642.166|96.418 +639875.454|219640.377|96.561 +639888.079|219636.829|96.966 +639894.407|219635.064|96.963 +639900.640|219633.336|96.814 +639907.038|219631.550|96.866 +639913.332|219629.803|96.744 +639919.629|219628.054|96.664 +639926.015|219626.271|96.713 +639932.294|219624.530|96.579 +639938.731|219622.732|96.622 +639945.068|219620.949|96.841 +639951.487|219619.160|96.835 +639957.906|219617.371|96.847 +639964.282|219615.606|96.649 +639970.683|219613.823|96.622 +639977.115|219612.018|96.774 +639983.515|219610.235|96.789 +639989.956|219608.446|96.692 +639996.110|219606.864|94.866 +640002.431|219605.133|94.455 +640008.975|219603.295|94.628 +640015.288|219601.567|94.205 +640028.358|219597.866|94.991 +640034.829|219596.105|94.403 +640041.208|219594.349|94.089 +640053.976|219590.893|92.681 +640060.353|219589.170|91.943 +640073.191|219585.687|90.639 +640079.561|219583.967|89.892 +640075.053|219589.106|90.337 +640068.847|219590.774|91.300 +640062.492|219592.493|92.144 +640056.165|219594.221|92.736 +640037.166|219599.442|94.092 +640030.741|219601.241|94.122 +640018.162|219604.691|95.131 +640011.703|219606.535|94.628 +640005.254|219608.376|94.193 +639999.042|219610.068|94.851 +639992.925|219611.662|96.475 +639986.673|219613.381|96.905 +639980.345|219615.155|96.893 +639973.972|219616.956|96.655 +639967.650|219618.721|96.741 +639961.298|219620.507|96.680 +639955.026|219622.260|96.725 +639936.125|219627.572|96.521 +639929.874|219629.304|96.771 +639923.662|219631.035|96.908 +639917.368|219632.790|96.972 +639911.147|219634.528|97.085 +639904.953|219636.265|97.033 +639898.634|219638.036|97.036 +639892.450|219639.764|97.079 +639873.723|219645.034|96.786 +639854.509|219650.649|93.662 +639848.160|219652.493|92.775 +639823.303|219659.509|92.065 +639817.177|219661.228|92.050 +639811.087|219662.923|92.217 +639804.878|219664.663|92.181 +639798.745|219666.404|91.888 +639792.634|219668.129|91.730 +639786.559|219669.805|92.059 +639756.393|219678.206|92.812 +639750.453|219679.836|93.242 +639744.561|219681.461|93.613 +639738.596|219683.107|93.961 +639732.668|219684.750|94.211 +639726.736|219686.393|94.467 +639720.814|219688.051|94.494 +639714.794|219689.742|94.415 +639708.765|219691.440|94.321 +639702.812|219693.110|94.284 +639696.841|219694.790|94.193 +639690.892|219696.479|93.936 +639684.875|219698.182|93.702 +639678.815|219699.908|93.324 +639672.969|219701.550|93.278 +639667.093|219703.187|93.403 +639661.362|219704.760|93.845 +639655.617|219706.342|94.247 +639649.841|219707.918|94.805 +639644.178|219709.451|95.549 +639638.481|219711.002|96.174 +639632.723|219712.602|96.332 +639626.960|219714.209|96.469 +639621.196|219715.830|96.378 +639615.392|219717.455|96.402 +639609.653|219719.061|96.442 +639603.889|219720.680|96.402 +639598.058|219722.313|96.396 +639592.337|219723.926|96.302 +639586.592|219725.547|96.137 +639580.834|219727.178|95.942 +639575.110|219728.784|95.906 +639569.297|219730.455|95.314 +639563.378|219732.168|94.619 +639557.508|219733.868|93.876 +639551.710|219735.545|93.165 +639545.968|219737.191|92.678 +639540.213|219738.840|92.175 +639534.565|219740.434|92.056 +639528.960|219742.019|91.864 +639523.315|219743.607|91.794 +639517.701|219745.195|91.608 +639512.056|219746.795|91.352 +639506.505|219748.365|91.181 +639500.992|219749.910|91.157 +639495.438|219751.480|91.017 +639489.888|219753.043|90.907 +639484.468|219754.537|91.245 +639543.082|219739.971|92.409 +639548.803|219738.346|92.803 +639554.710|219736.639|93.613 +639560.525|219734.978|94.135 +639566.426|219733.268|94.982 +639572.272|219731.589|95.656 +639578.054|219729.958|95.887 +639583.800|219728.348|96.000 +639589.564|219726.727|96.204 +639595.367|219725.099|96.317 +639601.161|219723.475|96.424 +639606.904|219721.881|96.357 +639612.664|219720.271|96.378 +639618.428|219718.662|96.418 +639624.308|219717.022|96.408 +639630.114|219715.404|96.408 +639635.945|219713.788|96.247 +639641.666|219712.215|95.954 +639647.348|219710.682|95.259 +639653.011|219709.161|94.497 +639658.839|219707.564|94.125 +639664.642|219705.976|93.684 +639670.473|219704.376|93.351 +639676.353|219702.745|93.235 +639682.324|219701.060|93.501 +639688.343|219699.365|93.723 +639694.406|219697.646|94.122 +639700.453|219695.951|94.223 +639706.436|219694.272|94.366 +639712.386|219692.611|94.382 +639718.421|219690.919|94.494 +639724.423|219689.246|94.488 +639730.430|219687.588|94.253 +639736.365|219685.951|94.004 +639742.351|219684.305|93.711 +639748.350|219682.668|93.202 +639754.369|219680.998|93.086 +639766.305|219677.736|92.169 +639778.537|219674.338|92.022 +639784.648|219672.628|92.114 +639790.686|219670.979|91.605 +639796.956|219669.193|92.147 +639803.076|219667.492|92.053 +639809.288|219665.758|92.074 +639821.709|219662.283|92.205 +639840.619|219656.906|93.577 +639846.712|219655.236|93.193 +639853.164|219653.383|93.930 +639859.626|219651.496|95.070 +639872.480|219647.784|96.796 +639878.749|219646.010|97.103 +639885.135|219644.211|97.347 +639897.623|219640.743|97.137 +639903.923|219638.996|97.018 +639910.257|219637.225|97.085 +639916.560|219635.473|97.021 +639922.860|219633.717|96.978 +639929.133|219631.980|96.799 +639935.467|219630.227|96.625 +639941.852|219628.438|96.741 +639954.553|219624.899|96.680 +639960.896|219623.134|96.637 +639967.318|219621.339|96.707 +639973.655|219619.574|96.674 +639980.178|219617.733|96.981 +639986.563|219615.959|96.908 +639992.998|219614.173|96.765 +639999.075|219612.619|94.878 +640005.418|219610.903|94.193 +640011.947|219609.046|94.677 +640018.418|219607.233|94.823 +640031.268|219603.694|94.226 +640037.666|219601.926|94.004 +640044.149|219600.125|93.915 +640056.981|219596.620|92.937 +640063.382|219594.879|92.352 +640069.783|219593.169|91.352 +640076.531|219595.327|91.827 +640063.967|219598.720|93.568 +640057.561|219600.512|93.623 +640051.233|219602.271|93.802 +640044.814|219604.069|93.827 +640038.483|219605.831|94.016 +640032.140|219607.565|94.574 +640019.494|219611.098|94.750 +640013.115|219612.887|94.723 +640006.711|219614.722|94.186 +640000.383|219616.438|94.936 +639994.360|219617.995|96.716 +639988.097|219619.727|97.073 +639981.763|219621.504|97.027 +639975.380|219623.314|96.732 +639969.031|219625.100|96.668 +639962.758|219626.856|96.677 +639956.412|219628.636|96.683 +639950.134|219630.395|96.701 +639943.824|219632.169|96.597 +639937.542|219633.924|96.655 +639931.367|219635.634|96.957 +639906.309|219642.642|97.186 +639887.665|219647.845|97.494 +639881.435|219649.603|97.344 +639875.137|219651.377|97.210 +639862.522|219655.007|95.954 +639849.665|219658.781|93.650 +639843.523|219660.491|93.784 +639837.287|219662.262|93.482 +639824.726|219665.877|92.220 +639812.409|219669.327|92.236 +639806.198|219671.095|91.870 +639787.916|219676.212|91.943 +639781.832|219677.913|91.958 +639751.742|219686.252|93.168 +639745.753|219687.914|93.409 +639739.888|219689.520|93.918 +639733.963|219691.160|94.189 +639727.967|219692.821|94.452 +639722.024|219694.467|94.677 +639716.111|219696.119|94.772 +639710.100|219697.801|94.756 +639704.129|219699.484|94.647 +639698.131|219701.179|94.458 +639692.114|219702.882|94.199 +639686.115|219704.595|93.778 +639680.178|219706.269|93.629 +639674.249|219707.936|93.534 +639668.409|219709.554|93.796 +639662.609|219711.146|94.241 +639656.888|219712.712|94.744 +639651.149|219714.288|95.180 +639645.476|219715.824|95.899 +639639.810|219717.376|96.381 +639634.065|219718.970|96.585 +639628.289|219720.582|96.686 +639622.476|219722.210|96.674 +639616.660|219723.840|96.661 +639610.894|219725.459|96.604 +639605.221|219727.047|96.655 +639599.451|219728.665|96.622 +639593.730|219730.275|96.524 +639587.991|219731.893|96.393 +639582.261|219733.506|96.311 +639576.500|219735.130|96.140 +639570.782|219736.752|95.893 +639564.920|219738.450|95.156 +639559.059|219740.144|94.452 +639553.241|219741.830|93.677 +639547.401|219743.509|93.101 +639541.710|219745.125|92.821 +639536.007|219746.761|92.275 +639530.365|219748.350|92.205 +639524.793|219749.913|92.156 +639519.261|219751.474|92.016 +639513.607|219753.080|91.724 +639507.996|219754.680|91.361 +639502.467|219756.235|91.288 +639496.977|219757.783|91.135 +639491.555|219759.295|91.227 +639486.090|219760.831|91.178 +639480.722|219762.312|91.483 +639541.618|219747.155|92.888 +639547.416|219745.512|93.269 +639553.228|219743.857|93.738 +639559.084|219742.162|94.616 +639564.991|219740.470|95.214 +639570.849|219738.785|95.921 +639576.576|219737.172|96.177 +639582.407|219735.536|96.326 +639588.158|219733.923|96.463 +639593.950|219732.308|96.518 +639599.762|219730.677|96.664 +639605.532|219729.068|96.686 +639611.281|219727.471|96.643 +639617.115|219725.843|96.668 +639622.942|219724.215|96.710 +639628.694|219722.612|96.732 +639634.534|219720.997|96.588 +639640.343|219719.396|96.344 +639646.101|219717.821|95.933 +639651.804|219716.278|95.308 +639657.516|219714.730|94.741 +639663.319|219713.148|94.281 +639669.126|219711.563|93.839 +639674.984|219709.948|93.620 +639680.970|219708.277|93.659 +639686.972|219706.595|93.781 +639693.040|219704.876|94.183 +639699.021|219703.181|94.543 +639705.080|219701.483|94.686 +639711.118|219699.795|94.778 +639717.114|219698.128|94.705 +639723.094|219696.472|94.589 +639729.031|219694.836|94.324 +639735.094|219693.168|94.022 +639741.013|219691.544|93.720 +639746.957|219689.922|93.232 +639753.010|219688.258|92.958 +639777.178|219681.610|91.803 +639783.362|219679.879|91.903 +639807.962|219673.003|92.190 +639820.444|219669.498|92.556 +639839.232|219664.185|93.601 +639858.096|219658.875|94.302 +639864.625|219656.946|95.784 +639883.672|219651.514|97.445 +639889.957|219649.759|97.509 +639896.263|219648.009|97.384 +639921.421|219641.023|97.055 +639927.703|219639.286|96.905 +639934.001|219637.533|96.860 +639940.328|219635.787|96.640 +639946.695|219634.010|96.680 +639953.054|219632.239|96.668 +639959.400|219630.474|96.622 +639965.749|219628.700|96.628 +639972.155|219626.914|96.622 +639978.526|219625.128|96.786 +639985.024|219623.299|96.994 +639991.349|219621.537|96.948 +639997.814|219619.733|97.003 +640003.843|219618.212|94.839 +640010.268|219616.432|94.668 +640016.638|219614.661|94.592 +640029.531|219611.061|94.662 +640042.427|219607.483|94.424 +640048.788|219605.739|93.994 +640055.208|219603.984|93.540 +640061.602|219602.213|93.367 +640068.125|219600.408|93.190 +640074.605|219598.598|93.199 +640080.930|219596.912|92.166 +640077.339|219601.902|93.196 +640071.005|219603.636|93.726 +640064.687|219605.361|94.360 +640020.003|219617.877|94.378 +640013.691|219619.614|94.796 +640007.320|219621.418|94.497 +640000.996|219623.162|94.887 +639995.015|219624.686|96.936 +639988.724|219626.429|97.155 +639982.378|219628.215|97.076 +639975.990|219630.026|96.780 +639969.656|219631.797|96.820 +639950.758|219637.082|96.927 +639944.507|219638.844|96.796 +639938.219|219640.599|96.856 +639931.949|219642.343|97.024 +639925.692|219644.102|96.939 +639888.323|219654.507|97.789 +639882.093|219656.263|97.658 +639863.015|219661.765|95.525 +639856.517|219663.682|94.208 +639819.082|219674.313|92.242 +639812.867|219676.060|92.175 +639806.630|219677.840|91.721 +639794.408|219681.245|92.019 +639782.182|219684.664|92.096 +639769.999|219688.075|92.141 +639763.998|219689.745|92.294 +639752.102|219693.019|93.120 +639746.039|219694.699|93.363 +639740.150|219696.320|93.772 +639734.192|219697.957|94.199 +639728.272|219699.594|94.519 +639722.301|219701.258|94.647 +639716.342|219702.913|94.836 +639710.350|219704.586|94.906 +639704.394|219706.257|94.887 +639698.399|219707.948|94.714 +639692.300|219709.679|94.421 +639686.298|219711.395|94.001 +639680.361|219713.069|93.857 +639674.481|219714.709|93.961 +639668.568|219716.345|94.223 +639662.807|219717.933|94.574 +639657.040|219719.509|95.162 +639651.350|219721.055|95.805 +639645.607|219722.630|96.256 +639639.853|219724.212|96.680 +639634.098|219725.813|96.860 +639628.322|219727.422|96.978 +639622.534|219729.037|97.064 +639616.697|219730.680|96.991 +639610.948|219732.290|97.012 +639605.191|219733.902|97.009 +639599.430|219735.517|97.018 +639593.681|219737.139|96.850 +639587.887|219738.770|96.771 +639582.206|219740.373|96.637 +639576.430|219742.007|96.421 +639570.748|219743.607|96.323 +639564.914|219745.289|95.698 +639559.044|219746.987|94.973 +639553.195|219748.673|94.351 +639547.431|219750.331|93.802 +639541.625|219752.004|93.144 +639535.907|219753.632|92.803 +639530.316|219755.211|92.675 +639524.739|219756.777|92.623 +639519.149|219758.350|92.534 +639513.513|219759.944|92.318 +639507.868|219761.563|91.849 +639502.253|219763.163|91.507 +639496.764|219764.711|91.373 +639491.348|219766.220|91.489 +639485.877|219767.756|91.443 +639545.118|219752.882|93.595 +639550.942|219751.205|94.318 +639556.685|219749.569|94.784 +639562.558|219747.880|95.494 +639568.417|219746.198|96.165 +639574.189|219744.576|96.320 +639579.932|219742.955|96.628 +639585.684|219741.342|96.744 +639591.508|219739.708|96.899 +639597.251|219738.096|97.027 +639603.030|219736.484|97.055 +639608.787|219734.883|97.027 +639614.536|219733.283|96.985 +639620.309|219731.671|97.039 +639626.115|219730.055|96.997 +639631.910|219728.446|96.920 +639637.737|219726.837|96.735 +639643.526|219725.246|96.415 +639649.283|219723.673|95.994 +639655.013|219722.115|95.479 +639660.689|219720.585|94.766 +639666.520|219718.988|94.409 +639672.338|219717.394|94.016 +639678.297|219715.742|93.927 +639684.201|219714.099|93.900 +639690.261|219712.383|94.250 +639696.250|219710.685|94.622 +639702.322|219708.981|94.796 +639708.369|219707.287|94.887 +639714.325|219705.626|94.912 +639720.296|219703.974|94.744 +639726.319|219702.312|94.525 +639732.320|219700.660|94.244 +639738.233|219699.039|93.882 +639744.195|219697.408|93.455 +639750.191|219695.756|93.199 +639756.134|219694.156|92.434 +639768.192|219690.831|91.995 +639780.536|219687.386|92.016 +639798.962|219682.269|91.779 +639805.149|219680.528|91.958 +639811.306|219678.809|92.019 +639817.536|219677.063|92.132 +639848.818|219668.275|93.074 +639855.316|219666.395|93.997 +639861.839|219664.471|95.412 +639868.322|219662.569|96.664 +639881.124|219658.915|97.838 +639887.396|219657.165|97.829 +639906.279|219651.920|97.582 +639912.567|219650.182|97.384 +639918.870|219648.430|97.314 +639925.161|219646.686|97.180 +639931.434|219644.952|96.991 +639937.795|219643.181|96.936 +639944.150|219641.416|96.860 +639950.502|219639.652|96.802 +639956.876|219637.865|96.896 +639963.283|219636.085|96.823 +639969.665|219634.293|97.012 +639982.491|219630.715|97.061 +639988.910|219628.919|97.158 +639995.311|219627.161|96.802 +640001.389|219625.606|94.909 +640007.781|219623.857|94.506 +640014.203|219622.052|94.699 +640020.600|219620.291|94.388 +640052.940|219611.272|94.503 +640059.475|219609.427|94.799 +640065.970|219607.611|94.860 +640078.811|219604.124|93.629 +640078.604|219608.464|94.318 +640021.097|219624.570|94.653 +640014.782|219626.344|94.650 +640008.445|219628.130|94.528 +640002.148|219629.855|95.070 +639996.116|219631.419|96.802 +639989.874|219633.135|97.301 +639983.604|219634.897|97.265 +639977.169|219636.713|97.073 +639970.881|219638.484|96.988 +639964.602|219640.246|96.988 +639958.324|219642.008|97.006 +639952.042|219643.766|97.033 +639945.775|219645.516|97.158 +639939.545|219647.262|97.161 +639933.299|219648.994|97.454 +639920.815|219652.496|97.439 +639914.521|219654.255|97.536 +639908.291|219655.995|97.640 +639889.719|219661.177|98.030 +639883.535|219662.905|98.131 +639864.637|219668.303|96.847 +639858.276|219670.159|95.857 +639845.441|219673.939|93.455 +639838.994|219675.819|92.492 +639814.446|219682.699|92.568 +639802.141|219686.179|92.147 +639795.965|219687.917|92.028 +639753.687|219699.694|93.007 +639747.807|219701.310|93.446 +639741.900|219702.937|93.793 +639735.935|219704.580|94.202 +639729.949|219706.235|94.522 +639724.066|219707.866|94.747 +639718.116|219709.515|94.979 +639712.188|219711.173|95.037 +639706.171|219712.859|95.043 +639700.191|219714.541|94.942 +639694.168|219716.248|94.686 +639688.176|219717.958|94.305 +639682.199|219719.653|94.016 +639676.340|219721.280|94.214 +639670.421|219722.923|94.449 +639664.651|219724.514|94.766 +639658.915|219726.090|95.214 +639653.197|219727.650|95.756 +639647.476|219729.214|96.299 +639641.718|219730.796|96.713 +639635.973|219732.393|96.927 +639630.154|219734.009|97.140 +639624.418|219735.612|97.173 +639618.693|219737.209|97.265 +639612.875|219738.840|97.283 +639607.202|219740.425|97.356 +639601.439|219742.040|97.356 +639595.727|219743.643|97.314 +639589.902|219745.289|97.137 +639584.141|219746.917|96.966 +639578.399|219748.532|96.872 +639572.672|219750.157|96.616 +639566.926|219751.791|96.311 +639561.068|219753.482|95.628 +639555.261|219755.147|95.153 +639549.498|219756.802|94.610 +639543.685|219758.481|93.930 +639537.903|219760.142|93.376 +639532.346|219761.700|93.363 +639526.799|219763.254|93.406 +639521.185|219764.839|93.248 +639515.552|219766.433|93.037 +639509.852|219768.061|92.629 +639504.143|219769.710|91.971 +639498.495|219771.325|91.541 +639493.055|219772.846|91.583 +639487.635|219774.355|91.718 +639550.116|219758.134|94.705 +639555.883|219756.485|95.241 +639561.638|219754.842|95.759 +639567.481|219753.165|96.378 +639573.147|219751.565|96.637 +639578.859|219749.959|96.826 +639584.568|219748.350|97.030 +639590.316|219746.737|97.152 +639596.144|219745.097|97.323 +639601.875|219743.491|97.417 +639607.614|219741.900|97.311 +639613.356|219740.303|97.228 +639619.111|219738.700|97.216 +639624.835|219737.112|97.106 +639630.623|219735.502|97.000 +639636.390|219733.908|96.829 +639642.062|219732.341|96.582 +639647.826|219730.766|96.174 +639653.563|219729.202|95.677 +639659.354|219727.626|95.147 +639665.093|219726.056|94.695 +639670.860|219724.471|94.360 +639676.737|219722.847|94.196 +639682.604|219721.222|94.028 +639688.566|219719.543|94.244 +639694.631|219717.821|94.631 +639700.584|219716.144|94.848 +639706.574|219714.462|94.979 +639712.535|219712.795|95.022 +639718.503|219711.146|94.817 +639724.487|219709.484|94.705 +639730.427|219707.848|94.436 +639736.356|219706.214|94.138 +639742.311|219704.589|93.677 +639748.304|219702.937|93.394 +639754.171|219701.337|92.879 +639772.377|219696.302|92.300 +639784.502|219692.943|91.952 +639790.674|219691.218|91.998 +639796.737|219689.535|91.870 +639809.209|219686.018|92.358 +639815.436|219684.274|92.449 +639821.669|219682.500|92.900 +639834.026|219679.090|92.428 +639840.354|219677.273|93.086 +639846.782|219675.417|93.952 +639853.256|219673.527|95.058 +639859.742|219671.625|96.277 +639878.816|219666.178|97.945 +639885.114|219664.414|98.039 +639891.368|219662.676|97.945 +639897.583|219660.963|97.673 +639910.168|219657.452|97.637 +639916.520|219655.693|97.460 +639922.827|219653.938|97.396 +639935.491|219650.414|97.280 +639941.776|219648.664|97.192 +639948.183|219646.887|97.058 +639954.471|219645.135|97.021 +639960.881|219643.352|96.957 +639967.242|219641.572|97.009 +639973.655|219639.786|96.997 +639986.502|219636.186|97.210 +639992.979|219634.372|97.277 +639999.066|219632.812|95.448 +640005.452|219631.062|95.009 +640011.880|219629.282|94.842 +640018.321|219627.490|94.766 +640024.795|219625.673|94.942 +640031.290|219623.869|94.845 +640079.192|219614.935|94.436 +640021.673|219631.050|94.805 +640015.340|219632.833|94.702 +640008.966|219634.616|94.784 +640002.654|219636.354|95.241 +639996.680|219637.902|96.939 +639990.367|219639.639|97.414 +639984.030|219641.419|97.393 +639977.660|219643.224|97.195 +639971.369|219644.995|97.109 +639965.087|219646.756|97.103 +639958.753|219648.527|97.207 +639952.490|219650.277|97.332 +639946.205|219652.036|97.384 +639939.993|219653.773|97.487 +639933.702|219655.532|97.551 +639927.408|219657.293|97.612 +639921.239|219659.022|97.670 +639914.996|219660.771|97.701 +639908.766|219662.509|97.832 +639896.333|219665.989|97.939 +639890.167|219667.708|98.112 +639883.983|219669.434|98.228 +639877.765|219671.183|98.182 +639852.664|219678.349|96.533 +639839.744|219682.177|93.824 +639833.532|219683.954|93.382 +639827.418|219685.667|93.415 +639814.903|219689.243|92.559 +639808.764|219690.968|92.547 +639802.604|219692.723|92.178 +639796.529|219694.403|92.504 +639790.366|219696.158|92.163 +639778.183|219699.597|91.891 +639766.147|219702.940|92.348 +639760.179|219704.592|92.681 +639754.156|219706.275|92.790 +639748.292|219707.863|93.580 +639742.363|219709.506|93.833 +639736.560|219711.097|94.348 +639730.570|219712.755|94.668 +639724.630|219714.404|94.921 +639718.726|219716.047|95.076 +639712.837|219717.684|95.296 +639706.927|219719.351|95.180 +639700.953|219721.033|95.107 +639694.897|219722.743|94.991 +639688.965|219724.438|94.589 +639682.948|219726.139|94.406 +639677.151|219727.754|94.577 +639671.262|219729.400|94.668 +639665.480|219731.003|94.930 +639659.674|219732.600|95.375 +639653.931|219734.179|95.823 +639648.268|219735.731|96.320 +639642.550|219737.313|96.625 +639636.820|219738.901|96.902 +639631.077|219740.495|97.149 +639625.308|219742.101|97.314 +639619.614|219743.683|97.527 +639613.817|219745.305|97.615 +639608.080|219746.908|97.701 +639602.399|219748.499|97.756 +639596.696|219750.102|97.750 +639590.960|219751.721|97.634 +639585.193|219753.351|97.445 +639579.475|219754.976|97.195 +639573.754|219756.600|96.957 +639568.051|219758.213|96.799 +639562.272|219759.865|96.393 +639556.529|219761.514|95.899 +639550.759|219763.175|95.339 +639544.950|219764.836|94.903 +639539.208|219766.500|94.232 +639533.645|219768.061|94.214 +639528.055|219769.640|94.107 +639522.428|219771.234|93.903 +639516.823|219772.834|93.549 +639511.163|219774.462|93.034 +639505.481|219776.099|92.470 +639499.782|219777.741|91.873 +639494.234|219779.323|91.571 +639549.531|219765.141|95.311 +639555.292|219763.498|95.808 +639561.031|219761.864|96.262 +639566.780|219760.225|96.765 +639572.507|219758.612|96.972 +639578.219|219757.006|97.143 +639584.019|219755.369|97.408 +639589.801|219753.741|97.618 +639595.480|219752.147|97.740 +639601.207|219750.547|97.801 +639606.956|219748.950|97.710 +639612.704|219747.353|97.628 +639618.447|219745.759|97.548 +639624.204|219744.171|97.298 +639629.919|219742.589|97.155 +639635.674|219741.001|96.911 +639641.416|219739.419|96.652 +639647.192|219737.837|96.265 +639652.889|219736.279|95.860 +639658.631|219734.713|95.384 +639664.459|219733.119|94.988 +639670.266|219731.515|94.784 +639676.142|219729.891|94.598 +639682.004|219728.269|94.388 +639687.947|219726.605|94.506 +639694.007|219724.889|94.845 +639700.029|219723.194|95.064 +639705.964|219721.527|95.214 +639711.926|219719.863|95.226 +639717.839|219718.226|95.070 +639723.813|219716.574|94.894 +639729.830|219714.916|94.631 +639735.703|219713.297|94.369 +639741.568|219711.703|93.790 +639747.527|219710.076|93.336 +639783.719|219700.081|92.016 +639802.208|219694.878|92.626 +639808.404|219693.135|92.839 +639814.540|219691.428|92.781 +639826.985|219687.920|93.251 +639833.221|219686.146|93.735 +639839.616|219684.314|94.388 +639852.539|219680.510|97.049 +639871.526|219675.136|98.112 +639877.768|219673.387|98.222 +639884.056|219671.631|98.240 +639890.304|219669.900|98.088 +639896.480|219668.190|97.914 +639902.740|219666.447|97.881 +639909.065|219664.685|97.835 +639915.362|219662.938|97.695 +639921.610|219661.201|97.640 +639927.981|219659.430|97.576 +639934.229|219657.687|97.582 +639940.590|219655.916|97.512 +639946.884|219654.166|97.454 +639953.261|219652.383|97.515 +639959.582|219650.637|97.295 +639965.910|219648.881|97.134 +639972.317|219647.098|97.076 +639978.700|219645.303|97.283 +639985.128|219643.501|97.384 +639991.526|219641.718|97.356 +639997.780|219640.039|96.506 +640003.961|219638.408|95.229 +640010.316|219636.683|94.592 +640016.693|219634.912|94.500 +640023.185|219633.083|94.744 +640029.680|219631.245|95.049 +640080.741|219621.248|94.077 +640023.255|219637.308|94.851 +640016.839|219639.121|94.668 +640010.451|219640.910|94.671 +640004.217|219642.620|95.214 +639998.060|219644.239|96.631 +639991.873|219645.912|97.469 +639985.533|219647.692|97.433 +639979.184|219649.475|97.390 +639972.890|219651.246|97.311 +639966.562|219653.014|97.423 +639960.293|219654.764|97.524 +639953.995|219656.531|97.497 +639947.729|219658.278|97.643 +639941.441|219660.037|97.710 +639935.144|219661.798|97.747 +639928.883|219663.560|97.658 +639922.580|219665.325|97.716 +639916.346|219667.065|97.817 +639910.168|219668.790|97.887 +639903.859|219670.552|97.978 +639897.674|219672.283|98.048 +639891.469|219674.021|98.048 +639885.281|219675.749|98.146 +639879.097|219677.471|98.301 +639872.873|219679.221|98.271 +639866.637|219680.976|98.192 +639860.473|219682.705|98.185 +639854.188|219684.485|97.942 +639847.894|219686.292|97.356 +639828.661|219691.943|93.872 +639816.247|219695.476|93.196 +639810.035|219697.244|92.867 +639797.770|219700.715|92.431 +639791.628|219702.434|92.492 +639785.480|219704.178|92.263 +639773.325|219707.592|92.190 +639761.294|219710.947|92.458 +639755.375|219712.566|93.013 +639749.368|219714.236|93.223 +639743.403|219715.879|93.632 +639737.605|219717.464|94.193 +639731.717|219719.083|94.659 +639725.758|219720.738|94.860 +639719.866|219722.377|95.067 +639713.913|219724.026|95.332 +639707.973|219725.691|95.381 +639702.059|219727.355|95.293 +639696.116|219729.037|95.110 +639690.096|219730.741|94.906 +639684.137|219732.430|94.699 +639678.191|219734.106|94.561 +639672.399|219735.716|94.796 +639666.572|219737.322|95.153 +639660.835|219738.916|95.360 +639655.062|219740.510|95.710 +639649.301|219742.098|96.113 +639643.599|219743.668|96.500 +639637.884|219745.247|96.841 +639632.144|219746.835|97.122 +639626.457|219748.417|97.344 +639620.763|219749.995|97.576 +639615.075|219751.574|97.829 +639609.385|219753.168|97.844 +639603.652|219754.769|97.978 +639597.949|219756.366|97.987 +639592.228|219757.975|97.948 +639586.555|219759.575|97.847 +639580.767|219761.215|97.612 +639575.025|219762.849|97.314 +639569.355|219764.461|97.049 +639563.656|219766.068|96.933 +639557.892|219767.726|96.384 +639552.210|219769.356|95.902 +639546.431|219771.018|95.345 +639540.722|219772.660|94.802 +639535.151|219774.230|94.756 +639529.530|219775.821|94.561 +639523.846|219777.446|94.171 +639518.277|219779.022|93.961 +639512.574|219780.671|93.324 +639506.920|219782.292|92.864 +639501.306|219783.908|92.327 +639495.691|219785.520|91.809 +639553.430|219771.146|96.018 +639559.260|219769.478|96.533 +639564.994|219767.842|96.975 +639570.693|219766.241|97.079 +639576.454|219764.608|97.405 +639582.209|219762.974|97.750 +639587.979|219761.352|97.908 +639593.715|219759.743|97.975 +639599.433|219758.143|97.999 +639605.200|219756.536|97.963 +639610.955|219754.933|97.902 +639616.670|219753.348|97.725 +639622.360|219751.779|97.469 +639628.118|219750.187|97.213 +639633.888|219748.590|97.027 +639639.624|219747.008|96.735 +639645.397|219745.426|96.332 +639651.155|219743.851|95.893 +639656.928|219742.266|95.528 +639662.731|219740.662|95.287 +639668.583|219739.050|94.994 +639674.374|219737.450|94.741 +639680.278|219735.804|94.683 +639686.283|219734.118|94.781 +639692.260|219732.430|95.043 +639698.252|219730.747|95.134 +639704.275|219729.050|95.363 +639710.231|219727.385|95.345 +639716.217|219725.724|95.192 +639722.115|219724.093|94.982 +639728.092|219722.435|94.830 +639734.039|219720.792|94.577 +639739.952|219719.189|93.915 +639745.939|219717.540|93.586 +639751.821|219715.934|93.101 +639757.896|219714.230|93.171 +639775.977|219709.244|92.318 +639794.344|219704.114|92.291 +639800.461|219702.395|92.412 +639806.697|219700.624|92.775 +639813.031|219698.813|93.321 +639825.498|219695.265|94.180 +639831.898|219693.434|94.805 +639844.798|219689.645|97.265 +639857.386|219686.067|98.085 +639863.646|219684.308|98.216 +639869.895|219682.552|98.316 +639876.122|219680.812|98.323 +639882.337|219679.077|98.310 +639888.594|219677.337|98.192 +639894.864|219675.588|98.164 +639901.119|219673.847|98.079 +639907.361|219672.110|97.969 +639913.606|219670.372|97.884 +639919.922|219668.611|97.841 +639926.222|219666.858|97.734 +639932.547|219665.087|97.789 +639938.865|219663.316|97.850 +639945.171|219661.554|97.841 +639951.502|219659.799|97.661 +639957.781|219658.052|97.554 +639964.127|219656.284|97.503 +639970.470|219654.517|97.442 +639976.825|219652.740|97.460 +639983.232|219650.954|97.433 +639989.581|219649.177|97.469 +639995.988|219647.384|97.497 +640001.956|219645.906|94.973 +640008.387|219644.096|95.159 +640014.821|219642.309|95.012 +640021.143|219640.575|94.604 +640027.608|219638.765|94.677 +640034.076|219636.948|94.805 +640079.305|219624.305|94.951 +640030.531|219642.053|94.641 +640024.200|219643.809|94.939 +640017.836|219645.613|94.677 +640011.548|219647.363|94.891 +640005.199|219649.125|95.156 +639999.088|219650.743|96.442 +639992.998|219652.346|97.847 +639986.688|219654.136|97.622 +639980.324|219655.931|97.497 +639973.990|219657.702|97.561 +639967.727|219659.451|97.667 +639961.469|219661.195|97.835 +639955.196|219662.947|97.951 +639948.930|219664.694|98.109 +639936.384|219668.217|98.073 +639930.126|219669.976|98.012 +639923.884|219671.726|98.045 +639917.633|219673.478|98.048 +639911.393|219675.225|98.140 +639905.209|219676.956|98.195 +639898.951|219678.706|98.246 +639892.752|219680.446|98.268 +639886.558|219682.174|98.359 +639880.298|219683.927|98.448 +639874.135|219685.658|98.399 +639867.923|219687.395|98.460 +639861.751|219689.133|98.408 +639823.791|219700.112|94.031 +639811.462|219703.611|93.488 +639786.803|219710.612|92.412 +639780.613|219712.356|92.312 +639774.572|219714.050|92.309 +639762.401|219717.470|92.251 +639756.466|219719.098|92.751 +639750.584|219720.716|93.214 +639744.689|219722.320|93.900 +639738.767|219723.956|94.226 +639732.896|219725.563|94.772 +639726.959|219727.209|95.058 +639721.049|219728.858|95.189 +639715.160|219730.491|95.436 +639709.192|219732.152|95.649 +639703.224|219733.829|95.610 +639697.283|219735.508|95.439 +639691.300|219737.194|95.378 +639685.405|219738.864|95.156 +639679.471|219740.534|95.070 +639673.554|219742.196|95.067 +639667.705|219743.817|95.351 +639661.905|219745.430|95.576 +639656.153|219747.030|95.738 +639650.380|219748.624|96.098 +639644.684|219750.194|96.506 +639638.966|219751.772|96.853 +639633.229|219753.360|97.137 +639627.472|219754.961|97.356 +639621.796|219756.530|97.652 +639616.127|219758.097|97.981 +639610.415|219759.688|98.161 +639604.718|219761.285|98.179 +639598.976|219762.888|98.289 +639593.331|219764.473|98.280 +639587.589|219766.095|98.176 +639581.864|219767.720|97.923 +639576.143|219769.341|97.701 +639570.410|219770.972|97.448 +639564.683|219772.593|97.241 +639558.992|219774.212|96.954 +639553.189|219775.891|96.287 +639547.425|219777.546|95.781 +639541.731|219779.180|95.296 +639536.135|219780.762|95.171 +639530.499|219782.362|94.918 +639524.949|219783.932|94.756 +639519.301|219785.553|94.275 +639513.595|219787.202|93.626 +639507.972|219788.827|93.034 +639502.394|219790.421|92.626 +639557.337|219776.659|96.756 +639563.137|219775.010|97.161 +639568.810|219773.413|97.378 +639574.561|219771.786|97.661 +639580.279|219770.179|97.832 +639586.095|219768.533|98.137 +639591.840|219766.924|98.213 +639597.516|219765.336|98.301 +639603.222|219763.745|98.271 +639608.973|219762.148|98.170 +639614.716|219760.557|98.054 +639620.388|219758.999|97.704 +639626.076|219757.433|97.426 +639631.824|219755.851|97.143 +639637.570|219754.269|96.847 +639643.379|219752.669|96.567 +639649.085|219751.108|96.162 +639654.873|219749.517|95.826 +639660.689|219747.914|95.607 +639666.504|219746.304|95.406 +639672.360|219744.692|95.119 +639678.264|219743.052|95.034 +639684.223|219741.379|95.174 +639690.187|219739.699|95.372 +639696.180|219738.023|95.430 +639702.187|219736.337|95.570 +639708.180|219734.658|95.662 +639714.154|219733.009|95.436 +639720.116|219731.366|95.183 +639726.032|219729.726|95.028 +639732.064|219728.059|94.820 +639738.026|219726.431|94.339 +639743.924|219724.819|93.882 +639749.843|219723.213|93.263 +639767.985|219718.208|92.510 +639780.146|219714.840|92.205 +639786.322|219713.115|92.199 +639792.454|219711.395|92.327 +639798.742|219709.600|92.870 +639823.711|219702.556|93.906 +639836.827|219698.652|97.192 +639843.185|219696.841|97.673 +639855.749|219693.287|98.310 +639862.055|219691.526|98.316 +639868.292|219689.788|98.316 +639874.589|219688.005|98.655 +639880.852|219686.268|98.509 +639887.101|219684.536|98.323 +639893.255|219682.866|97.689 +639899.625|219681.056|98.155 +639905.898|219679.306|98.152 +639912.226|219677.541|98.128 +639918.544|219675.783|98.057 +639924.856|219674.027|98.006 +639931.178|219672.262|98.015 +639937.515|219670.485|98.115 +639943.903|219668.696|98.188 +639950.252|219666.934|98.060 +639956.605|219665.169|97.987 +639962.935|219663.417|97.801 +639969.266|219661.661|97.652 +639975.679|219659.875|97.600 +639982.007|219658.116|97.487 +639988.423|219656.321|97.518 +639994.842|219654.523|97.585 +640000.965|219652.935|95.960 +640007.256|219651.225|95.329 +640013.636|219649.481|94.817 +640019.963|219647.744|94.430 +640026.507|219645.876|94.973 +640032.911|219644.108|94.686 +640078.180|219631.449|94.915 +640031.726|219648.219|94.854 +640025.325|219650.021|94.744 +640018.906|219651.834|94.570 +640012.709|219653.541|94.951 +640006.348|219655.306|95.168 +639994.116|219658.546|97.710 +639987.822|219660.317|97.594 +639981.488|219662.088|97.649 +639975.210|219663.847|97.667 +639968.934|219665.599|97.734 +639962.612|219667.355|97.939 +639956.403|219669.086|98.051 +639931.388|219676.093|98.109 +639925.128|219677.849|98.060 +639918.956|219679.571|98.164 +639912.634|219681.342|98.188 +639906.428|219683.083|98.158 +639900.226|219684.820|98.155 +639893.998|219686.569|98.073 +639887.863|219688.264|98.448 +639881.678|219689.983|98.612 +639856.889|219696.954|98.268 +639825.571|219705.933|95.555 +639806.813|219711.347|93.485 +639794.380|219714.892|92.675 +639782.179|219718.333|92.397 +639764.025|219723.408|92.632 +639758.006|219725.105|92.510 +639746.161|219728.358|93.409 +639740.345|219729.930|94.189 +639734.481|219731.534|94.778 +639728.544|219733.173|95.089 +639722.637|219734.816|95.256 +639716.736|219736.456|95.464 +639710.768|219738.114|95.692 +639704.885|219739.757|95.753 +639698.908|219741.437|95.707 +639692.976|219743.107|95.613 +639686.972|219744.799|95.509 +639681.095|219746.454|95.400 +639675.164|219748.121|95.354 +639669.336|219749.749|95.470 +639663.490|219751.382|95.540 +639657.641|219752.998|95.863 +639651.840|219754.604|96.140 +639646.135|219756.174|96.524 +639640.398|219757.762|96.820 +639634.662|219759.347|97.122 +639628.977|219760.923|97.375 +639623.238|219762.507|97.698 +639617.560|219764.077|98.006 +639611.799|219765.671|98.286 +639606.099|219767.268|98.310 +639600.366|219768.866|98.469 +639594.657|219770.466|98.484 +639588.899|219772.087|98.359 +639583.181|219773.709|98.143 +639577.451|219775.334|97.899 +639571.705|219776.964|97.622 +639565.972|219778.589|97.414 +639560.272|219780.210|97.106 +639554.426|219781.890|96.543 +639548.659|219783.563|95.811 +639542.911|219785.206|95.393 +639537.306|219786.788|95.256 +639531.676|219788.382|95.043 +639526.034|219789.979|94.823 +639520.298|219791.628|94.293 +639514.610|219793.265|93.726 +639508.886|219794.920|93.062 +639503.244|219796.529|92.684 +639562.430|219781.451|97.189 +639568.112|219779.848|97.426 +639573.827|219778.226|97.798 +639579.484|219776.635|97.996 +639585.202|219775.026|98.185 +639590.923|219773.413|98.411 +639596.669|219771.804|98.487 +639602.368|219770.219|98.420 +639608.044|219768.646|98.286 +639613.731|219767.064|98.219 +639619.394|219765.516|97.826 +639625.097|219763.943|97.585 +639630.712|219762.398|97.295 +639636.442|219760.825|96.945 +639642.203|219759.237|96.713 +639647.866|219757.679|96.396 +639653.654|219756.091|96.049 +639659.461|219754.488|95.796 +639665.285|219752.879|95.616 +639671.092|219751.276|95.384 +639676.968|219749.633|95.445 +639682.906|219747.972|95.494 +639688.782|219746.326|95.601 +639694.772|219744.652|95.628 +639700.770|219742.973|95.717 +639706.689|219741.318|95.774 +639712.609|219739.678|95.598 +639718.506|219738.053|95.332 +639724.490|219736.395|95.171 +639730.446|219734.752|94.915 +639736.362|219733.134|94.506 +639742.263|219731.518|94.061 +639778.388|219721.539|92.742 +639802.997|219714.632|93.296 +639821.779|219709.305|94.461 +639841.076|219703.684|97.652 +639847.343|219701.907|98.018 +639853.615|219700.148|98.140 +639859.882|219698.393|98.237 +639891.243|219689.636|98.326 +639897.507|219687.895|98.234 +639903.780|219686.146|98.225 +639910.092|219684.393|98.100 +639916.435|219682.619|98.149 +639922.753|219680.861|98.094 +639929.087|219679.090|98.155 +639935.390|219677.337|98.073 +639960.875|219670.229|98.030 +639967.190|219668.486|97.771 +639973.536|219666.721|97.704 +639979.882|219664.953|97.667 +639986.362|219663.149|97.655 +639992.705|219661.381|97.640 +640005.141|219658.104|95.073 +640011.639|219656.278|95.253 +640018.055|219654.507|94.982 +640024.462|219652.746|94.662 +640030.955|219650.920|94.881 +640033.823|219654.367|95.147 +640027.407|219656.181|94.939 +640021.033|219657.991|94.631 +640014.727|219659.726|95.119 +640008.488|219661.466|95.262 +640002.187|219663.191|95.835 +639989.901|219666.498|97.682 +639983.579|219668.263|97.792 +639977.300|219670.025|97.801 +639971.025|219671.781|97.859 +639964.752|219673.533|97.954 +639952.145|219677.102|97.509 +639933.485|219682.287|98.201 +639927.234|219684.040|98.195 +639920.973|219685.798|98.158 +639914.792|219687.530|98.210 +639908.550|219689.273|98.320 +639859.050|219703.166|98.225 +639852.869|219704.903|98.185 +639840.536|219708.399|97.701 +639821.599|219713.895|95.204 +639809.099|219717.491|93.970 +639790.659|219722.737|92.967 +639784.447|219724.514|92.501 +639778.446|219726.184|92.681 +639742.598|219736.161|93.671 +639736.734|219737.742|94.537 +639730.909|219739.340|95.022 +639725.038|219740.961|95.345 +639719.125|219742.607|95.500 +639713.236|219744.241|95.774 +639707.320|219745.884|95.966 +639701.422|219747.539|95.966 +639695.491|219749.209|95.860 +639689.599|219750.855|95.933 +639683.732|219752.507|95.854 +639677.794|219754.177|95.784 +639671.921|219755.829|95.729 +639666.059|219757.472|95.729 +639660.241|219759.091|95.915 +639654.498|219760.682|96.152 +639648.768|219762.267|96.445 +639643.056|219763.843|96.823 +639637.289|219765.446|97.009 +639631.626|219767.006|97.347 +639625.878|219768.597|97.640 +639620.196|219770.170|97.935 +639614.588|219771.719|98.259 +639608.873|219773.304|98.475 +639603.188|219774.892|98.563 +639597.495|219776.486|98.627 +639591.810|219778.086|98.515 +639586.107|219779.698|98.347 +639580.313|219781.341|98.121 +639574.659|219782.941|97.914 +639568.907|219784.575|97.643 +639563.183|219786.194|97.481 +639557.456|219787.827|97.094 +639551.613|219789.522|96.332 +639545.898|219791.165|95.787 +639540.241|219792.777|95.467 +639534.596|219794.377|95.208 +639528.933|219795.990|94.906 +639523.349|219797.575|94.656 +639517.585|219799.251|93.836 +639511.864|219800.906|93.171 +639506.252|219802.519|92.659 +639562.415|219788.187|97.466 +639568.093|219786.584|97.692 +639573.769|219784.983|97.923 +639579.487|219783.374|98.076 +639585.205|219781.765|98.256 +639590.932|219780.149|98.481 +639596.608|219778.558|98.551 +639602.344|219776.955|98.603 +639607.952|219775.398|98.475 +639613.625|219773.825|98.332 +639619.306|219772.261|97.996 +639624.978|219770.704|97.643 +639630.669|219769.137|97.375 +639636.405|219767.558|97.036 +639642.099|219765.988|96.799 +639647.829|219764.409|96.472 +639653.572|219762.828|96.198 +639659.323|219761.240|95.976 +639665.084|219759.642|95.805 +639670.915|219758.027|95.662 +639676.868|219756.357|95.741 +639682.747|219754.708|95.829 +639688.621|219753.065|95.899 +639694.543|219751.407|95.933 +639700.459|219749.755|95.951 +639706.369|219748.103|95.966 +639712.273|219746.472|95.707 +639718.183|219744.838|95.491 +639724.097|219743.201|95.308 +639729.967|219741.586|94.970 +639735.853|219739.983|94.433 +639741.787|219738.352|94.101 +639759.417|219733.545|92.504 +639777.684|219728.440|92.601 +639783.755|219726.736|92.708 +639789.900|219725.008|92.864 +639796.048|219723.277|93.046 +639814.763|219717.952|94.375 +639821.099|219716.117|95.229 +639846.346|219708.869|97.881 +639852.579|219707.113|98.091 +639908.790|219691.404|98.246 +639921.370|219687.898|98.121 +639927.621|219686.155|98.076 +639933.946|219684.390|98.091 +639952.813|219679.175|97.350 +639959.293|219677.322|97.945 +639965.578|219675.569|97.875 +639971.921|219673.807|97.771 +639978.334|219672.021|97.716 +639984.741|219670.235|97.649 +639991.084|219668.464|97.625 +639997.500|219666.669|97.664 +640009.932|219663.389|95.110 +640016.348|219661.588|95.201 +640022.704|219659.863|94.561 +640029.162|219658.028|94.967 +640034.737|219660.588|95.122 +640028.303|219662.414|94.820 +640021.951|219664.209|94.662 +640015.666|219665.925|95.296 +640009.311|219667.718|95.162 +640003.099|219669.379|96.259 +639997.082|219670.961|97.725 +639990.742|219672.738|97.725 +639984.469|219674.496|97.759 +639978.194|219676.255|97.798 +639971.851|219678.029|97.865 +639965.563|219679.794|97.884 +639959.293|219681.543|98.018 +639952.868|219683.396|97.353 +639940.414|219686.850|97.875 +639934.244|219688.551|98.289 +639859.693|219709.475|98.262 +639853.515|219711.210|98.249 +639847.291|219712.971|98.054 +639803.607|219725.523|94.171 +639797.374|219727.318|93.549 +639772.956|219734.237|92.720 +639754.848|219739.321|92.708 +639743.101|219742.540|93.781 +639737.221|219744.152|94.308 +639731.393|219745.753|94.793 +639725.511|219747.365|95.326 +639719.701|219748.971|95.643 +639713.794|219750.614|95.845 +639707.902|219752.248|96.125 +639702.038|219753.885|96.268 +639696.134|219755.543|96.274 +639690.227|219757.201|96.280 +639684.357|219758.856|96.192 +639678.416|219760.529|96.116 +639672.549|219762.181|96.073 +639666.642|219763.852|95.909 +639660.908|219765.443|96.165 +639655.108|219767.052|96.427 +639649.411|219768.637|96.597 +639643.675|219770.228|96.884 +639637.929|219771.822|97.152 +639632.251|219773.395|97.436 +639626.563|219774.971|97.701 +639620.909|219776.531|98.097 +639615.277|219778.095|98.335 +639609.644|219779.656|98.600 +639603.962|219781.247|98.694 +639598.330|219782.822|98.749 +639592.636|219784.435|98.594 +639586.955|219786.035|98.499 +639581.236|219787.657|98.301 +639575.604|219789.248|98.188 +639569.953|219790.848|98.018 +639564.296|219792.448|97.850 +639558.587|219794.094|97.286 +639552.753|219795.786|96.552 +639547.047|219797.425|96.046 +639541.454|219799.023|95.701 +639535.769|219800.647|95.311 +639530.134|219802.263|94.872 +639524.544|219803.854|94.601 +639518.810|219805.518|93.879 +639513.196|219807.133|93.345 +639567.392|219793.128|97.737 +639573.080|219791.521|97.993 +639578.829|219789.900|98.237 +639584.531|219788.303|98.338 +639590.298|219786.684|98.448 +639596.022|219785.072|98.664 +639601.753|219783.475|98.670 +639607.465|219781.881|98.649 +639613.131|219780.314|98.472 +639618.818|219778.753|98.137 +639624.506|219777.190|97.817 +639630.197|219775.626|97.524 +639635.872|219774.066|97.195 +639641.633|219772.478|96.942 +639647.369|219770.905|96.610 +639653.221|219769.280|96.482 +639658.976|219767.692|96.253 +639664.804|219766.080|96.061 +639670.665|219764.449|96.012 +639676.554|219762.800|96.085 +639682.516|219761.130|96.204 +639688.453|219759.469|96.253 +639694.382|219757.814|96.287 +639700.304|219756.162|96.302 +639706.241|219754.516|96.149 +639712.081|219752.906|95.887 +639718.049|219751.260|95.607 +639723.962|219749.627|95.406 +639729.796|219748.036|94.903 +639735.667|219746.445|94.284 +639741.629|219744.802|94.046 +639753.485|219741.565|93.077 +639759.441|219739.919|92.864 +639771.615|219736.529|92.772 +639777.656|219734.850|92.699 +639789.961|219731.375|93.287 +639808.548|219726.099|94.497 +639827.640|219720.582|97.058 +639840.137|219717.043|97.762 +639846.322|219715.297|98.018 +639852.561|219713.538|98.259 +639858.828|219711.786|98.323 +639865.027|219710.048|98.420 +639952.648|219685.679|97.414 +639959.137|219683.823|98.021 +639965.422|219682.077|97.923 +639971.781|219680.306|97.878 +639978.130|219678.541|97.817 +639984.475|219676.773|97.759 +639990.904|219674.978|97.814 +639997.244|219673.210|97.768 +640009.609|219669.955|95.156 +640016.035|219668.153|95.284 +640022.320|219666.450|94.601 +640028.751|219664.642|94.808 +640035.258|219662.804|95.107 +640075.282|219655.632|95.000 +640037.084|219666.325|95.183 +640030.659|219668.141|94.958 +640024.225|219669.967|94.683 +640018.068|219671.646|95.317 +640011.658|219673.448|95.256 +639993.168|219678.431|97.908 +639986.868|219680.205|97.798 +639980.525|219681.982|97.835 +639974.252|219683.735|97.914 +639967.961|219685.497|97.929 +639961.673|219687.255|97.987 +639862.010|219715.166|98.320 +639855.816|219716.906|98.256 +639849.674|219718.638|98.134 +639837.251|219722.158|97.637 +639805.993|219731.144|94.631 +639799.684|219732.960|93.985 +639787.385|219736.481|93.001 +639775.163|219739.925|92.748 +639769.097|219741.629|92.702 +639763.105|219743.308|92.711 +639757.082|219744.981|92.891 +639751.096|219746.637|93.232 +639739.340|219749.870|94.034 +639733.426|219751.498|94.455 +639727.635|219753.074|95.098 +639721.801|219754.671|95.598 +639715.910|219756.302|95.872 +639710.060|219757.929|96.061 +639704.160|219759.563|96.338 +639698.283|219761.200|96.454 +639692.379|219762.852|96.500 +639686.512|219764.504|96.421 +639680.580|219766.168|96.390 +639674.691|219767.826|96.283 +639668.882|219769.460|96.232 +639663.024|219771.100|96.277 +639657.281|219772.691|96.527 +639651.450|219774.309|96.710 +639645.738|219775.900|96.847 +639640.051|219777.479|97.088 +639634.308|219779.064|97.396 +639628.700|219780.616|97.701 +639623.015|219782.185|98.006 +639617.383|219783.746|98.256 +639611.777|219785.291|98.624 +639606.120|219786.864|98.813 +639600.399|219788.467|98.801 +639594.654|219790.083|98.725 +639588.957|219791.692|98.588 +639583.248|219793.305|98.435 +639577.628|219794.886|98.359 +639571.937|219796.502|98.067 +639566.262|219798.108|97.847 +639560.556|219799.733|97.545 +639554.798|219801.400|96.844 +639549.104|219803.028|96.390 +639543.420|219804.652|95.982 +639537.738|219806.292|95.375 +639532.118|219807.895|94.997 +639526.540|219809.474|94.778 +639520.980|219811.062|94.409 +639515.284|219812.717|93.610 +639572.419|219798.303|98.109 +639578.085|219796.706|98.310 +639583.779|219795.112|98.377 +639589.472|219793.515|98.466 +639595.196|219791.902|98.673 +639600.878|219790.308|98.755 +639606.599|219788.711|98.755 +639612.198|219787.163|98.582 +639617.806|219785.624|98.201 +639623.503|219784.054|97.920 +639629.197|219782.487|97.640 +639634.860|219780.933|97.259 +639640.624|219779.342|97.012 +639646.330|219777.763|96.823 +639652.103|219776.166|96.637 +639657.869|219774.568|96.454 +639663.694|219772.959|96.250 +639669.495|219771.341|96.223 +639675.383|219769.692|96.302 +639681.339|219768.021|96.387 +639687.264|219766.369|96.378 +639693.141|219764.720|96.466 +639699.051|219763.071|96.439 +639704.915|219761.450|96.256 +639710.813|219759.825|95.942 +639716.736|219758.185|95.759 +639722.640|219756.555|95.506 +639728.452|219754.976|94.918 +639734.326|219753.385|94.302 +639740.251|219751.757|93.924 +639758.027|219746.874|92.851 +639776.242|219741.802|92.669 +639788.477|219738.364|92.937 +639826.275|219727.495|97.161 +639832.624|219725.675|97.807 +639844.974|219722.222|97.881 +639851.272|219720.448|98.073 +639857.480|219718.708|98.173 +639863.701|219716.958|98.353 +639957.973|219690.657|98.036 +639964.255|219688.913|97.908 +639970.677|219687.124|97.868 +639976.974|219685.366|97.868 +639983.384|219683.579|97.801 +639989.739|219681.805|97.804 +639996.152|219680.019|97.792 +640002.410|219678.306|97.305 +640008.491|219676.752|95.430 +640014.888|219674.969|95.384 +640021.237|219673.222|95.064 +640027.632|219671.467|94.659 +640034.082|219669.641|95.003 +640079.265|219657.053|94.766 +640076.690|219661.765|94.939 +640032.192|219674.237|94.912 +640025.764|219676.054|94.695 +640019.555|219677.742|95.403 +640013.209|219679.526|95.339 +640007.317|219681.016|97.515 +640001.096|219682.735|97.807 +639994.784|219684.491|97.984 +639988.490|219686.265|97.896 +639982.214|219688.017|97.957 +639975.947|219689.764|98.082 +639969.644|219691.535|98.021 +639963.347|219693.299|98.039 +639957.126|219695.037|98.109 +639864.146|219721.076|98.420 +639857.938|219722.826|98.280 +639851.774|219724.569|98.064 +639839.515|219728.010|98.012 +639833.304|219729.778|97.649 +639827.195|219731.503|97.469 +639789.860|219742.229|93.982 +639771.508|219747.459|92.824 +639765.479|219749.142|92.952 +639759.554|219750.782|93.245 +639747.594|219754.116|93.452 +639741.726|219755.741|93.763 +639735.926|219757.323|94.357 +639730.034|219758.935|94.884 +639724.307|219760.493|95.521 +639718.436|219762.111|95.884 +639712.545|219763.742|96.174 +639706.695|219765.367|96.381 +639700.849|219766.988|96.625 +639695.025|219768.613|96.701 +639689.176|219770.252|96.701 +639683.253|219771.914|96.695 +639677.380|219773.566|96.637 +639671.476|219775.233|96.494 +639665.663|219776.864|96.448 +639659.842|219778.482|96.649 +639654.059|219780.098|96.750 +639648.357|219781.682|96.914 +639642.599|219783.280|97.149 +639636.917|219784.852|97.430 +639631.245|219786.419|97.750 +639625.561|219787.989|98.051 +639619.876|219789.559|98.365 +639614.234|219791.125|98.600 +639608.605|219792.680|98.896 +639602.975|219794.256|98.960 +639597.245|219795.865|98.926 +639591.542|219797.474|98.771 +639585.845|219799.081|98.649 +639580.206|219800.672|98.512 +639574.546|219802.272|98.326 +639568.843|219803.896|98.009 +639563.150|219805.512|97.743 +639557.441|219807.155|97.204 +639551.713|219808.801|96.631 +639546.035|219810.422|96.247 +639540.335|219812.053|95.814 +639534.654|219813.690|95.223 +639529.030|219815.296|94.851 +639523.425|219816.887|94.564 +639517.747|219818.536|93.821 +639578.006|219803.326|98.356 +639583.657|219801.741|98.496 +639589.381|219800.132|98.667 +639595.096|219798.526|98.832 +639600.774|219796.941|98.871 +639606.507|219795.341|98.902 +639612.094|219793.801|98.655 +639617.742|219792.247|98.405 +639623.387|219790.692|98.161 +639629.069|219789.135|97.814 +639634.686|219787.593|97.487 +639640.383|219786.026|97.231 +639646.098|219784.447|97.049 +639651.874|219782.850|96.866 +639657.641|219781.259|96.652 +639663.459|219779.656|96.405 +639669.296|219778.022|96.491 +639675.130|219776.388|96.594 +639681.028|219774.736|96.698 +639686.890|219773.102|96.686 +639692.821|219771.450|96.698 +639698.713|219769.817|96.579 +639704.589|219768.192|96.411 +639710.445|219766.577|96.186 +639716.294|219764.964|95.954 +639722.182|219763.346|95.625 +639728.022|219761.758|95.110 +639733.887|219760.173|94.439 +639739.766|219758.557|94.119 +639757.567|219753.674|93.092 +639775.696|219748.624|93.034 +639788.117|219745.106|93.766 +639825.671|219734.371|97.329 +639831.877|219732.622|97.603 +639838.101|219730.881|97.676 +639844.292|219729.138|97.914 +639850.601|219727.364|98.115 +639856.764|219725.633|98.286 +639863.034|219723.880|98.356 +639925.682|219706.397|98.591 +639957.263|219697.637|98.036 +639963.572|219695.878|98.015 +639969.943|219694.101|98.018 +639976.337|219692.309|98.161 +639982.726|219690.544|97.951 +639989.072|219688.782|97.868 +639995.500|219686.984|97.926 +640008.302|219683.421|97.807 +640014.273|219681.943|95.287 +640020.692|219680.144|95.372 +640027.032|219678.431|94.622 +640033.469|219676.618|94.851 +640078.772|219663.984|94.775 +640079.238|219667.730|94.863 +640034.676|219680.196|94.948 +640028.315|219681.991|94.738 +640022.009|219683.717|95.278 +640015.690|219685.475|95.387 +640009.704|219687.002|97.405 +639997.180|219690.468|97.954 +639990.895|219692.227|97.948 +639984.658|219693.952|98.225 +639978.389|219695.698|98.341 +639972.104|219697.451|98.405 +639965.800|219699.243|98.045 +639959.491|219701.011|98.021 +639953.267|219702.745|98.118 +639947.031|219704.486|98.176 +639940.801|219706.220|98.301 +639934.607|219707.957|98.283 +639928.331|219709.692|98.560 +639922.162|219711.408|98.704 +639866.411|219727.038|98.362 +639860.224|219728.775|98.320 +639854.076|219730.503|98.195 +639841.747|219733.981|97.850 +639835.559|219735.731|97.615 +639829.472|219737.441|97.561 +639823.334|219739.178|97.292 +639798.440|219746.344|94.714 +639792.323|219748.081|94.388 +639786.038|219749.895|93.659 +639773.907|219753.339|93.007 +639767.976|219754.982|93.278 +639755.826|219758.408|92.961 +639744.085|219761.651|93.580 +639738.276|219763.233|94.159 +639732.366|219764.854|94.625 +639726.636|219766.409|95.278 +639720.808|219768.000|95.826 +639714.992|219769.606|96.165 +639709.143|219771.228|96.384 +639703.273|219772.859|96.549 +639697.405|219774.489|96.735 +639691.583|219776.111|96.850 +639685.728|219777.748|96.863 +639679.849|219779.403|96.789 +639673.975|219781.049|96.774 +639668.132|219782.694|96.631 +639662.316|219784.325|96.610 +639656.486|219785.944|96.811 +639650.789|219787.526|97.003 +639645.071|219789.114|97.155 +639639.395|219790.680|97.469 +639633.690|219792.262|97.676 +639628.069|219793.814|97.978 +639622.446|219795.368|98.271 +639616.737|219796.947|98.533 +639611.159|219798.492|98.774 +639605.496|219800.062|98.975 +639599.765|219801.668|98.963 +639594.087|219803.265|98.899 +639588.430|219804.866|98.694 +639582.724|219806.472|98.576 +639577.061|219808.069|98.396 +639571.382|219809.678|98.176 +639565.649|219811.312|97.780 +639559.992|219812.922|97.439 +639554.268|219814.567|96.893 +639548.583|219816.189|96.494 +639542.883|219817.817|96.073 +639537.162|219819.472|95.369 +639531.511|219821.087|94.924 +639525.891|219822.687|94.592 +639520.365|219824.251|94.366 +639578.164|219809.486|98.402 +639583.812|219807.908|98.512 +639589.478|219806.310|98.722 +639595.120|219804.728|98.856 +639600.814|219803.134|98.947 +639606.462|219801.565|98.902 +639612.061|219800.019|98.694 +639617.724|219798.456|98.490 +639623.375|219796.901|98.256 +639629.057|219795.341|97.908 +639634.689|219793.792|97.637 +639640.389|219792.226|97.372 +639646.077|219790.659|97.094 +639651.801|219789.077|96.951 +639657.565|219787.486|96.732 +639663.289|219785.898|96.625 +639669.104|219784.276|96.625 +639675.011|219782.621|96.738 +639680.888|219780.985|96.753 +639686.777|219779.336|96.838 +639692.620|219777.714|96.759 +639698.454|219776.096|96.668 +639704.266|219774.486|96.518 +639710.128|219772.868|96.305 +639715.992|219771.246|96.113 +639721.856|219769.646|95.680 +639727.605|219768.088|95.073 +639733.405|219766.522|94.406 +639739.254|219764.925|93.955 +639757.076|219760.011|93.254 +639769.146|219756.628|93.488 +639775.117|219754.994|93.080 +639787.385|219751.529|93.708 +639805.954|219746.256|94.994 +639824.854|219740.806|97.408 +639837.141|219737.361|97.667 +639843.380|219735.612|97.814 +639855.813|219732.110|98.289 +639924.533|219712.919|98.765 +639930.757|219711.200|98.530 +639936.988|219709.478|98.353 +639943.266|219707.747|98.097 +639949.591|219705.982|98.118 +639955.897|219704.230|98.048 +639962.216|219702.465|98.079 +639968.525|219700.706|98.082 +639974.987|219698.868|98.579 +639981.321|219697.116|98.414 +639987.621|219695.384|98.070 +639994.010|219693.616|97.887 +640000.353|219691.855|97.829 +640006.503|219690.251|96.338 +640012.740|219688.590|95.311 +640019.177|219686.786|95.476 +640025.474|219685.079|94.839 +640031.838|219683.323|94.610 +640038.367|219681.476|94.997 +640077.190|219670.656|95.043 +640031.025|219688.014|94.647 +640024.773|219689.733|95.110 +640018.446|219691.477|95.528 +640012.173|219693.239|95.518 +639993.623|219698.265|97.881 +639987.392|219699.990|98.179 +639968.504|219705.290|98.146 +639962.265|219707.043|98.134 +639955.958|219708.811|98.137 +639949.728|219710.551|98.222 +639943.495|219712.295|98.310 +639937.286|219714.017|98.545 +639856.834|219736.599|98.362 +639850.598|219738.367|98.137 +639844.432|219740.108|97.969 +639838.321|219741.833|97.771 +639788.922|219755.942|94.269 +639776.669|219759.423|93.647 +639770.630|219761.127|93.461 +639764.586|219762.855|92.998 +639740.845|219769.460|93.690 +639735.054|219771.033|94.351 +639729.278|219772.618|94.820 +639723.505|219774.178|95.582 +639717.748|219775.751|96.140 +639711.923|219777.360|96.451 +639706.125|219778.973|96.622 +639700.285|219780.588|96.911 +639694.442|219782.225|96.939 +639688.618|219783.847|97.055 +639682.750|219785.493|97.036 +639676.950|219787.120|97.021 +639671.131|219788.757|96.957 +639665.297|219790.400|96.860 +639659.585|219791.991|96.985 +639653.797|219793.606|97.097 +639648.085|219795.194|97.253 +639642.401|219796.770|97.521 +639636.713|219798.343|97.795 +639631.087|219799.900|98.060 +639625.454|219801.461|98.320 +639619.882|219803.003|98.569 +639614.240|219804.567|98.819 +639608.638|219806.124|98.990 +639603.024|219807.688|99.130 +639597.348|219809.282|99.078 +639591.719|219810.870|98.957 +639586.061|219812.470|98.761 +639580.453|219814.061|98.515 +639574.793|219815.659|98.356 +639569.130|219817.277|97.957 +639563.491|219818.877|97.670 +639557.874|219820.468|97.469 +639552.204|219822.102|96.881 +639546.523|219823.724|96.509 +639540.884|219825.336|96.070 +639535.248|219826.964|95.433 +639529.622|219828.567|95.067 +639524.050|219830.158|94.686 +639584.263|219814.598|98.612 +639589.923|219813.004|98.786 +639595.644|219811.398|98.941 +639601.314|219809.816|98.947 +639606.980|219808.234|98.957 +639612.594|219806.679|98.801 +639618.248|219805.122|98.557 +639623.893|219803.567|98.292 +639629.547|219802.004|98.079 +639635.244|219800.437|97.786 +639640.877|219798.885|97.527 +639646.577|219797.316|97.271 +639652.356|219795.716|97.079 +639658.150|219794.109|96.963 +639663.938|219792.503|96.838 +639669.751|219790.884|96.817 +639675.597|219789.242|96.942 +639681.485|219787.596|97.000 +639687.353|219785.959|96.991 +639693.205|219784.331|96.936 +639699.109|219782.691|96.847 +639704.973|219781.070|96.628 +639710.777|219779.467|96.445 +639716.665|219777.848|96.088 +639722.463|219776.266|95.637 +639728.242|219774.712|94.872 +639734.064|219773.130|94.293 +639739.879|219771.551|93.696 +639751.745|219768.274|93.226 +639769.798|219763.257|92.998 +639775.916|219761.514|93.488 +639782.158|219759.737|93.946 +639788.263|219758.018|94.156 +639825.555|219747.377|97.314 +639831.731|219745.646|97.414 +639844.118|219742.156|97.862 +639850.308|219740.412|98.106 +639856.548|219738.657|98.295 +639931.282|219717.772|98.701 +639950.036|219712.581|98.176 +639956.330|219710.835|98.045 +639962.652|219709.067|98.082 +639968.952|219707.314|98.024 +639981.726|219703.681|98.926 +639988.002|219701.992|98.091 +639994.244|219700.270|97.807 +640006.741|219696.872|96.634 +640012.944|219695.232|95.442 +640019.372|219693.431|95.531 +640025.617|219691.727|94.991 +640031.939|219690.002|94.506 +640078.211|219681.132|95.451 +640040.019|219691.858|95.113 +640033.564|219693.696|94.735 +640027.254|219695.454|94.866 +640021.116|219697.119|95.622 +640014.687|219698.929|95.488 +640002.474|219702.181|97.795 +639996.201|219703.934|97.865 +639989.944|219705.674|98.027 +639977.657|219709.024|99.295 +639971.140|219710.938|98.118 +639964.840|219712.700|98.143 +639958.619|219714.434|98.259 +639933.668|219721.402|98.600 +639927.517|219723.109|98.838 +639859.373|219742.244|98.326 +639853.219|219743.979|98.198 +639828.597|219750.931|97.554 +639822.407|219752.681|97.372 +639810.123|219756.183|96.625 +639791.457|219761.572|94.543 +639785.395|219763.297|94.211 +639767.012|219768.533|93.107 +639749.102|219773.541|93.318 +639743.165|219775.184|93.644 +639737.313|219776.793|94.068 +639731.531|219778.382|94.516 +639725.764|219779.942|95.296 +639719.963|219781.518|95.966 +639714.160|219783.115|96.360 +639708.402|219784.706|96.692 +639702.532|219786.340|96.860 +639696.719|219787.958|97.009 +639690.898|219789.583|97.140 +639685.039|219791.223|97.158 +639679.187|219792.863|97.213 +639673.356|219794.505|97.106 +639667.529|219796.145|97.036 +639661.713|219797.779|97.021 +639656.013|219799.361|97.213 +639650.301|219800.952|97.372 +639644.592|219802.540|97.558 +639638.883|219804.125|97.759 +639633.199|219805.698|98.070 +639627.563|219807.261|98.310 +639621.933|219808.819|98.597 +639616.337|219810.376|98.777 +639610.689|219811.940|99.027 +639605.124|219813.498|99.103 +639599.448|219815.092|99.054 +639593.788|219816.680|99.075 +639588.140|219818.274|98.911 +639582.459|219819.889|98.655 +639576.850|219821.477|98.438 +639571.163|219823.090|98.201 +639565.494|219824.711|97.804 +639559.955|219826.275|97.643 +639554.249|219827.912|97.167 +639548.626|219829.521|96.765 +639542.990|219831.133|96.338 +639537.418|219832.727|95.909 +639531.770|219834.343|95.485 +639589.414|219819.743|98.810 +639595.065|219818.158|98.957 +639600.683|219816.588|98.999 +639606.364|219815.003|99.036 +639612.049|219813.434|98.865 +639617.642|219811.891|98.633 +639623.305|219810.331|98.414 +639628.953|219808.776|98.164 +639634.598|219807.219|97.923 +639640.310|219805.646|97.689 +639646.019|219804.073|97.451 +639651.792|219802.482|97.222 +639657.543|219800.882|97.177 +639663.304|219799.294|96.936 +639669.083|219797.678|97.024 +639674.984|219796.029|97.082 +639680.800|219794.408|97.103 +639686.661|219792.780|97.052 +639692.595|219791.125|97.042 +639698.448|219789.498|97.003 +639704.236|219787.907|96.725 +639710.115|219786.279|96.561 +639715.949|219784.679|96.226 +639721.820|219783.075|95.793 +639727.608|219781.521|95.046 +639733.399|219779.960|94.324 +639739.230|219778.375|93.769 +639757.158|219773.425|93.156 +639769.201|219770.067|93.202 +639775.361|219768.323|93.565 +639806.454|219759.466|96.140 +639818.877|219755.909|97.387 +639825.153|219754.144|97.597 +639831.298|219752.437|97.542 +639837.443|219750.703|97.814 +639843.667|219748.965|97.859 +639849.927|219747.203|98.103 +639856.100|219745.469|98.277 +639924.796|219726.297|98.609 +639930.992|219724.575|98.545 +639937.362|219722.813|98.384 +639943.608|219721.079|98.268 +639949.920|219719.326|98.188 +639956.172|219717.589|98.146 +639962.524|219715.803|98.329 +639968.861|219714.056|98.088 +639981.744|219710.380|99.194 +639994.217|219707.009|97.804 +640000.618|219705.235|97.670 +640013.035|219701.922|95.659 +640019.369|219700.161|95.573 +640025.764|219698.414|95.092 +640032.061|219696.677|94.833 +640081.250|219686.862|94.699 +640030.491|219701.069|94.936 +640024.273|219702.760|95.598 +640017.967|219704.541|95.421 +640011.648|219706.302|95.558 +640005.738|219707.805|97.634 +639999.469|219709.554|97.716 +639993.205|219711.301|97.835 +639980.867|219714.660|99.173 +639968.126|219718.308|98.091 +639961.887|219720.058|98.100 +639955.647|219721.801|98.152 +639949.405|219723.548|98.195 +639943.163|219725.291|98.274 +639930.767|219728.745|98.585 +639924.524|219730.506|98.402 +639862.759|219747.816|98.402 +639856.538|219749.569|98.268 +639838.092|219754.778|97.774 +639825.808|219758.240|97.533 +639807.368|219763.483|96.564 +639794.862|219767.125|94.753 +639776.477|219772.368|93.565 +639770.472|219774.053|93.546 +639764.324|219775.797|93.248 +639758.384|219777.443|93.534 +639746.399|219780.826|93.205 +639740.544|219782.438|93.616 +639734.694|219784.023|94.342 +639728.943|219785.593|94.927 +639723.167|219787.157|95.692 +639717.391|219788.736|96.210 +639711.636|219790.327|96.555 +639705.772|219791.954|96.762 +639699.926|219793.573|97.039 +639694.098|219795.197|97.158 +639688.246|219796.834|97.204 +639682.458|219798.456|97.244 +639676.657|219800.080|97.262 +639670.744|219801.748|97.131 +639664.926|219803.381|97.119 +639659.195|219804.981|97.192 +639653.422|219806.588|97.384 +639647.701|219808.179|97.533 +639642.059|219809.749|97.734 +639636.357|219811.327|97.987 +639630.721|219812.888|98.240 +639625.085|219814.449|98.512 +639619.413|219816.027|98.670 +639613.820|219817.582|98.877 +639608.242|219819.124|99.152 +639602.579|219820.712|99.152 +639596.882|219822.319|99.054 +639591.261|219823.900|98.987 +639585.580|219825.510|98.737 +639579.929|219827.104|98.615 +639574.293|219828.707|98.323 +639568.584|219830.329|98.042 +639562.936|219831.935|97.750 +639557.386|219833.505|97.564 +639551.713|219835.138|96.994 +639546.075|219836.751|96.564 +639540.436|219838.363|96.158 +639534.858|219839.960|95.729 +639590.661|219826.214|98.911 +639596.309|219824.626|99.042 +639601.942|219823.047|99.139 +639607.553|219821.477|99.173 +639613.146|219819.932|98.926 +639618.745|219818.384|98.719 +639624.344|219816.835|98.524 +639629.934|219815.290|98.307 +639635.570|219813.735|98.039 +639641.209|219812.178|97.783 +639646.900|219810.611|97.481 +639652.569|219809.035|97.378 +639658.275|219807.459|97.167 +639664.078|219805.844|97.076 +639669.830|219804.238|97.070 +639675.719|219802.592|97.088 +639681.498|219800.967|97.219 +639687.289|219799.355|97.161 +639693.150|219797.718|97.131 +639698.996|219796.093|97.055 +639704.784|219794.493|96.792 +639710.640|219792.881|96.521 +639716.495|219791.262|96.277 +639722.204|219789.708|95.741 +639727.931|219788.163|95.025 +639733.682|219786.602|94.415 +639739.544|219785.014|93.723 +639751.422|219781.710|93.531 +639757.387|219780.064|93.290 +639763.355|219778.391|93.367 +639775.458|219775.004|93.440 +639781.637|219773.224|94.171 +639800.382|219767.826|96.323 +639806.475|219766.110|96.521 +639825.065|219760.843|97.484 +639843.533|219755.659|97.844 +639855.880|219752.187|98.149 +639862.159|219750.425|98.225 +639937.030|219729.504|98.304 +639943.282|219727.763|98.222 +639949.582|219726.014|98.079 +639955.897|219724.255|98.030 +639962.207|219722.496|97.975 +639968.525|219720.732|97.984 +639981.501|219717.016|99.203 +639993.891|219713.663|97.731 +640000.285|219711.889|97.567 +640019.015|219706.823|95.357 +640025.502|219705.007|95.421 +640031.820|219703.282|94.909 +640038.239|219705.610|95.613 +640031.814|219707.448|95.089 +640025.617|219709.155|95.512 +640019.336|219710.920|95.485 +640000.782|219715.971|97.506 +639994.607|219717.684|97.768 +639969.659|219724.657|98.070 +639963.402|219726.416|98.009 +639957.229|219728.144|98.070 +639950.981|219729.894|98.097 +639864.780|219754.049|98.362 +639858.648|219755.774|98.323 +639852.482|219757.515|98.164 +639846.379|219759.237|98.003 +639828.149|219764.373|97.722 +639816.073|219767.768|97.585 +639779.125|219778.409|93.869 +639773.072|219780.125|93.653 +639767.073|219781.826|93.394 +639737.575|219790.043|94.171 +639731.826|219791.610|94.769 +639726.056|219793.192|95.290 +639720.280|219794.752|96.061 +639714.575|219796.313|96.594 +639708.777|219797.925|96.786 +639702.992|219799.532|97.033 +639697.201|219801.135|97.292 +639691.437|219802.744|97.402 +639685.582|219804.384|97.433 +639679.760|219806.024|97.366 +639673.929|219807.664|97.283 +639668.181|219809.279|97.262 +639662.374|219810.904|97.314 +639656.672|219812.492|97.497 +639651.011|219814.071|97.615 +639645.306|219815.656|97.826 +639639.664|219817.222|98.042 +639634.040|219818.777|98.332 +639628.389|219820.346|98.542 +639622.753|219821.907|98.826 +639617.172|219823.455|99.063 +639611.546|219825.025|99.173 +639605.941|219826.583|99.362 +639600.244|219828.192|99.246 +639594.632|219829.768|99.213 +639589.039|219831.350|99.027 +639583.361|219832.962|98.792 +639577.753|219834.550|98.588 +639572.126|219836.147|98.347 +639566.481|219837.754|98.045 +639560.854|219839.348|97.841 +639555.234|219840.954|97.442 +639549.592|219842.573|96.985 +639543.975|219844.173|96.640 +639538.415|219845.761|96.271 +639596.477|219831.176|99.097 +639602.097|219829.606|99.124 +639607.739|219828.024|99.255 +639613.353|219826.473|99.057 +639618.959|219824.928|98.853 +639624.570|219823.376|98.673 +639630.154|219821.837|98.417 +639635.817|219820.273|98.219 +639641.520|219818.704|97.932 +639647.171|219817.146|97.716 +639652.889|219815.567|97.506 +639658.607|219813.985|97.320 +639664.289|219812.406|97.268 +639670.092|219810.794|97.183 +639675.947|219809.154|97.295 +639681.705|219807.545|97.332 +639687.591|219805.902|97.344 +639693.470|219804.262|97.362 +639699.255|219802.674|97.042 +639705.068|219801.068|96.832 +639710.868|219799.468|96.604 +639716.659|219797.874|96.347 +639722.441|219796.301|95.811 +639728.156|219794.765|95.025 +639734.006|219793.173|94.513 +639739.794|219791.595|94.043 +639757.542|219786.690|93.437 +639763.620|219784.977|93.662 +639775.626|219781.640|93.546 +639781.826|219779.851|94.345 +639800.300|219774.587|95.835 +639831.219|219765.818|97.777 +639837.379|219764.099|97.783 +639843.490|219762.389|97.896 +639849.644|219760.670|97.929 +639855.904|219758.905|98.161 +639862.046|219757.192|98.173 +639868.252|219755.436|98.515 +639955.623|219731.104|98.033 +639962.012|219729.324|98.018 +639968.272|219727.574|98.048 +639981.092|219723.950|98.716 +639993.650|219720.521|97.719 +639999.901|219718.796|97.457 +640006.311|219717.016|97.362 +640018.717|219713.712|95.281 +640025.206|219711.868|95.695 +640031.464|219710.161|95.189 +640037.983|219708.320|95.464 +640041.626|219711.298|95.665 +640035.210|219713.133|95.177 +640028.842|219714.928|95.028 +640022.627|219716.614|95.756 +640016.352|219718.372|95.784 +640010.167|219720.037|96.707 +640003.980|219721.728|97.265 +639997.737|219723.456|97.542 +639991.498|219725.182|97.841 +639985.381|219726.849|98.463 +639979.004|219728.641|98.420 +639972.677|219730.446|97.978 +639966.419|219732.201|97.926 +639960.189|219733.939|98.039 +639879.755|219756.457|98.341 +639867.438|219759.911|98.295 +639861.290|219761.642|98.201 +639855.210|219763.352|98.134 +639849.034|219765.095|97.966 +639842.941|219766.808|97.890 +639836.842|219768.524|97.811 +639830.758|219770.231|97.811 +639824.632|219771.956|97.664 +639818.600|219773.651|97.643 +639812.598|219775.321|97.789 +639775.556|219785.995|93.912 +639769.573|219787.684|93.735 +639763.562|219789.391|93.470 +639751.660|219792.704|93.751 +639739.980|219795.947|94.183 +639734.182|219797.541|94.601 +639728.403|219799.126|95.098 +639722.691|219800.669|95.869 +639716.934|219802.238|96.479 +639711.167|219803.829|96.805 +639705.424|219805.426|96.975 +639699.618|219807.039|97.183 +639693.900|219808.621|97.475 +639688.103|219810.245|97.490 +639682.278|219811.882|97.417 +639676.459|219813.516|97.399 +639670.638|219815.150|97.369 +639664.889|219816.759|97.387 +639659.214|219818.347|97.445 +639653.499|219819.935|97.622 +639647.848|219821.508|97.789 +639642.215|219823.068|98.048 +639636.567|219824.635|98.271 +639630.986|219826.180|98.496 +639625.399|219827.732|98.710 +639619.809|219829.280|98.944 +639614.188|219830.847|99.078 +639608.589|219832.401|99.301 +639602.975|219833.980|99.243 +639597.342|219835.565|99.149 +639591.761|219837.141|99.011 +639586.116|219838.732|98.911 +639580.505|219840.320|98.701 +639574.933|219841.902|98.423 +639569.304|219843.499|98.192 +639563.735|219845.078|97.945 +639558.184|219846.645|97.792 +639552.600|219848.245|97.314 +639547.053|219849.827|96.975 +639541.515|219851.403|96.680 +639602.585|219836.050|99.142 +639608.199|219834.480|99.173 +639613.841|219832.913|99.066 +639619.468|219831.353|98.920 +639625.070|219829.807|98.701 +639630.739|219828.238|98.505 +639636.393|219826.680|98.256 +639642.035|219825.123|97.996 +639647.677|219823.568|97.734 +639653.419|219821.974|97.615 +639659.153|219820.383|97.469 +639664.941|219818.780|97.311 +639670.702|219817.173|97.298 +639676.535|219815.540|97.341 +639682.372|219813.906|97.399 +639688.206|219812.272|97.475 +639694.080|219810.636|97.457 +639699.804|219809.057|97.161 +639705.680|219807.435|96.927 +639711.484|219805.832|96.704 +639717.339|219804.216|96.427 +639723.042|219802.671|95.838 +639728.833|219801.107|95.086 +639734.560|219799.544|94.619 +639740.403|219797.953|94.083 +639752.260|219794.667|93.751 +639770.219|219789.647|93.827 +639776.300|219787.952|93.821 +639794.826|219782.618|95.973 +639813.473|219777.275|97.774 +639819.478|219775.611|97.615 +639825.650|219773.886|97.631 +639843.993|219768.744|97.908 +639850.159|219767.015|97.984 +639856.273|219765.296|98.155 +639862.415|219763.583|98.158 +639868.642|219761.834|98.283 +639918.062|219748.063|97.899 +639955.635|219737.560|98.070 +639961.887|219735.816|98.015 +639968.193|219734.064|97.932 +639974.548|219732.274|98.115 +639980.803|219730.525|98.146 +639987.210|219728.723|98.320 +639993.400|219727.041|97.704 +639999.642|219725.322|97.375 +640005.994|219723.581|96.948 +640018.476|219720.192|95.646 +640024.855|219718.400|95.799 +640031.147|219716.669|95.464 +640037.520|219714.907|95.241 +640043.997|219713.066|95.662 +640038.236|219718.872|95.400 +640031.912|219720.643|95.473 +640025.691|219722.368|95.790 +640019.311|219724.176|95.579 +640006.906|219727.565|96.866 +640000.685|219729.287|97.247 +639994.528|219730.985|97.640 +639988.279|219732.722|97.905 +639982.052|219734.469|97.951 +639975.746|219736.240|97.951 +639969.482|219738.008|97.856 +639963.264|219739.742|98.024 +639957.013|219741.498|98.039 +639950.783|219743.238|98.179 +639938.362|219746.713|98.399 +639925.923|219750.215|98.295 +639919.763|219751.949|98.249 +639913.600|219753.684|98.207 +639907.394|219755.421|98.295 +639895.108|219758.859|98.509 +639888.863|219760.615|98.484 +639882.757|219762.328|98.512 +639876.619|219764.062|98.405 +639870.386|219765.830|98.185 +639864.268|219767.543|98.234 +639858.126|219769.271|98.176 +639852.037|219770.990|98.079 +639845.877|219772.724|98.003 +639839.823|219774.416|98.118 +639821.550|219779.570|97.795 +639815.521|219781.262|97.811 +639809.489|219782.957|97.823 +639784.849|219790.055|95.427 +639766.543|219795.307|93.946 +639760.523|219797.017|93.665 +639754.610|219798.666|93.827 +639736.959|219803.573|94.506 +639731.208|219805.143|95.110 +639725.517|219806.697|95.695 +639719.832|219808.249|96.311 +639714.032|219809.843|96.762 +639708.229|219811.458|96.960 +639702.434|219813.068|97.204 +639696.707|219814.659|97.454 +639690.974|219816.250|97.704 +639685.146|219817.893|97.622 +639679.391|219819.514|97.567 +639673.548|219821.160|97.466 +639667.800|219822.776|97.478 +639662.051|219824.388|97.506 +639656.324|219825.988|97.631 +639650.676|219827.561|97.811 +639645.031|219829.131|98.024 +639639.466|219830.673|98.280 +639633.842|219832.231|98.600 +639628.246|219833.788|98.777 +639622.638|219835.352|98.935 +639617.090|219836.900|99.082 +639611.525|219838.455|99.176 +639605.956|219840.012|99.274 +639600.351|219841.588|99.271 +639594.776|219843.164|99.146 +639589.186|219844.746|98.987 +639583.571|219846.337|98.768 +639577.981|219847.919|98.646 +639572.440|219849.488|98.472 +639566.871|219851.070|98.228 +639561.330|219852.637|98.094 +639608.440|219840.853|99.194 +639614.015|219839.305|99.094 +639619.650|219837.741|98.966 +639625.274|219836.181|98.819 +639630.888|219834.626|98.664 +639636.536|219833.069|98.390 +639642.184|219831.511|98.137 +639647.829|219829.957|97.881 +639653.560|219828.369|97.701 +639659.284|219826.784|97.521 +639665.035|219825.184|97.463 +639670.775|219823.586|97.375 +639676.627|219821.947|97.466 +639682.403|219820.328|97.545 +639688.304|219818.676|97.606 +639694.101|219817.061|97.554 +639699.892|219815.470|97.228 +639705.717|219813.857|97.061 +639711.527|219812.251|96.838 +639717.382|219810.639|96.558 +639723.085|219809.090|95.960 +639728.888|219807.523|95.244 +639734.658|219805.957|94.668 +639740.537|219804.341|94.284 +639758.316|219799.419|93.757 +639764.321|219797.749|93.659 +639770.438|219796.011|94.046 +639782.704|219792.515|95.025 +639788.861|219790.769|95.372 +639807.575|219785.355|97.899 +639813.650|219783.673|97.728 +639819.761|219781.966|97.737 +639825.876|219780.256|97.777 +639850.372|219773.395|98.042 +639856.593|219771.655|98.073 +639862.747|219769.935|98.124 +639868.877|219768.226|98.088 +639875.089|219766.485|98.152 +639887.528|219762.992|98.426 +639893.718|219761.261|98.454 +639899.924|219759.542|98.268 +639906.087|219757.826|98.216 +639912.323|219756.085|98.213 +639918.614|219754.330|98.195 +639924.835|219752.595|98.167 +639931.053|219750.858|98.152 +639937.344|219749.099|98.198 +639943.675|219747.310|98.463 +639949.887|219745.600|98.143 +639956.132|219743.866|98.027 +639962.457|219742.101|98.003 +639968.711|219740.358|97.969 +639975.018|219738.602|97.893 +639981.324|219736.846|97.841 +639987.630|219735.088|97.811 +639993.973|219733.329|97.646 +640000.191|219731.625|97.189 +640006.436|219729.903|96.893 +640012.834|219728.129|96.725 +640019.064|219726.443|96.024 +640025.386|219724.691|95.835 +640031.695|219722.947|95.604 +640038.017|219721.192|95.470 +640044.448|219719.384|95.616 +640066.558|219717.171|95.076 +640041.367|219724.194|95.759 +640035.094|219725.956|95.756 +640028.693|219727.775|95.430 +640022.518|219729.495|95.643 +640016.385|219731.125|96.863 +640010.109|219732.911|96.567 +640003.885|219734.633|96.924 +639997.728|219736.331|97.329 +639991.568|219738.032|97.719 +639985.274|219739.797|97.771 +639979.056|219741.531|97.902 +639972.887|219743.259|97.954 +639966.651|219745.006|98.024 +639960.460|219746.743|98.024 +639954.066|219748.593|97.323 +639935.634|219753.702|98.225 +639929.480|219755.433|98.185 +639923.329|219757.161|98.182 +639917.099|219758.914|98.137 +639910.939|219760.642|98.137 +639904.791|219762.364|98.213 +639898.708|219764.065|98.298 +639892.551|219765.790|98.380 +639886.406|219767.525|98.231 +639880.289|219769.247|98.216 +639874.086|219770.993|98.158 +639868.042|219772.688|98.219 +639861.876|219774.431|98.060 +639855.813|219776.132|98.097 +639849.714|219777.854|97.984 +639831.459|219782.984|97.972 +639825.406|219784.694|97.856 +639813.360|219788.071|97.963 +639807.274|219789.796|97.768 +639788.793|219795.155|95.576 +639782.560|219796.956|94.891 +639776.495|219798.700|94.360 +639770.435|219800.419|94.159 +639764.495|219802.086|94.189 +639758.445|219803.814|93.805 +639752.489|219805.487|93.818 +639740.769|219808.740|94.391 +639735.027|219810.328|94.753 +639729.299|219811.882|95.476 +639723.551|219813.449|96.116 +639717.775|219815.034|96.658 +639711.996|219816.637|96.945 +639706.260|219818.231|97.152 +639700.450|219819.850|97.356 +639694.705|219821.450|97.564 +639688.941|219823.059|97.716 +639683.043|219824.723|97.637 +639677.276|219826.348|97.561 +639671.433|219827.997|97.478 +639665.709|219829.597|97.600 +639659.957|219831.213|97.631 +639654.276|219832.804|97.692 +639648.634|219834.373|97.917 +639643.007|219835.934|98.204 +639637.369|219837.501|98.466 +639631.769|219839.058|98.646 +639626.179|219840.616|98.862 +639620.559|219842.185|98.999 +639614.966|219843.740|99.234 +639609.388|219845.300|99.310 +639603.795|219846.870|99.347 +639598.141|219848.473|99.191 +639592.493|219850.068|99.078 +639586.909|219851.646|98.954 +639581.310|219853.234|98.804 +639613.853|219845.874|99.176 +639619.416|219844.331|99.036 +639625.015|219842.786|98.786 +639630.572|219841.247|98.658 +639636.165|219839.701|98.426 +639641.755|219838.159|98.198 +639647.400|219836.605|97.929 +639653.008|219835.050|97.798 +639658.729|219833.468|97.600 +639664.414|219831.886|97.524 +639670.147|219830.295|97.405 +639675.868|219828.692|97.506 +639681.705|219827.058|97.551 +639687.554|219825.418|97.655 +639693.330|219823.818|97.512 +639699.106|219822.215|97.381 +639704.861|219820.624|97.180 +639710.670|219819.021|96.963 +639716.473|219817.417|96.722 +639722.219|219815.848|96.293 +639727.967|219814.293|95.610 +639733.789|219812.717|94.961 +639739.562|219811.148|94.409 +639751.160|219807.978|93.531 +639763.263|219804.567|93.949 +639769.231|219802.900|93.979 +639775.303|219801.187|94.193 +639781.426|219799.446|94.634 +639787.626|219797.657|95.424 +639793.811|219795.895|95.899 +639806.323|219792.259|97.817 +639812.440|219790.552|97.814 +639824.736|219787.096|98.124 +639849.208|219780.259|98.222 +639855.341|219778.552|98.140 +639861.522|219776.836|98.003 +639867.682|219775.111|98.091 +639873.882|219773.383|98.079 +639880.084|219771.648|98.115 +639886.287|219769.914|98.155 +639892.484|219768.180|98.198 +639898.738|219766.433|98.228 +639904.968|219764.696|98.170 +639911.180|219762.974|98.027 +639917.477|219761.218|98.012 +639930.014|219757.710|98.100 +639936.317|219755.945|98.179 +639955.178|219750.693|98.015 +639961.454|219748.938|98.048 +639967.766|219747.182|97.963 +639974.060|219745.436|97.814 +639980.452|219743.649|97.847 +639986.740|219741.906|97.707 +639993.089|219740.144|97.551 +639999.392|219738.413|97.186 +640005.677|219736.691|96.732 +640012.051|219734.935|96.411 +640018.308|219733.204|96.219 +640024.724|219731.442|95.820 +640031.015|219729.714|95.457 +640037.493|219727.879|95.820 +640043.875|219726.108|95.665 +640050.312|219724.328|95.467 +640056.698|219722.554|95.357 +640063.157|219720.753|95.342 +640069.609|219718.955|95.305 +640075.471|219721.515|95.945 +640069.039|219723.374|95.244 +640062.742|219725.127|95.400 +640056.427|219726.898|95.451 +640043.811|219730.418|95.717 +640037.581|219732.149|95.960 +640031.168|219733.981|95.555 +640024.932|219735.712|95.793 +640018.720|219737.425|96.210 +640012.465|219739.169|96.381 +640006.305|219740.870|96.759 +640000.087|219742.586|97.173 +639993.909|219744.296|97.469 +639987.716|219746.018|97.716 +639981.498|219747.752|97.838 +639975.335|219749.477|97.932 +639969.098|219751.221|98.006 +639962.841|219752.979|97.990 +639938.112|219759.920|98.027 +639931.925|219761.645|98.149 +639925.728|219763.404|97.923 +639919.583|219765.123|97.975 +639913.369|219766.866|98.027 +639907.279|219768.570|98.073 +639901.173|219770.286|98.051 +639895.007|219772.014|98.091 +639888.899|219773.727|98.109 +639882.824|219775.419|98.313 +639876.689|219777.144|98.249 +639870.572|219778.860|98.292 +639864.494|219780.567|98.246 +639858.419|219782.274|98.234 +639852.265|219784.005|98.176 +639828.055|219790.796|98.216 +639809.922|219795.911|97.868 +639785.267|219803.046|94.979 +639779.232|219804.771|94.583 +639773.108|219806.521|94.138 +639737.806|219816.372|94.930 +639732.040|219817.945|95.503 +639726.358|219819.493|96.137 +639720.646|219821.057|96.677 +639714.818|219822.666|97.042 +639709.009|219824.278|97.247 +639703.276|219825.872|97.481 +639697.509|219827.482|97.612 +639691.742|219829.088|97.759 +639685.945|219830.713|97.814 +639680.166|219832.340|97.704 +639674.380|219833.974|97.591 +639668.550|219835.611|97.579 +639662.865|219837.205|97.606 +639657.150|219838.793|97.807 +639651.414|219840.393|97.942 +639645.836|219841.942|98.164 +639640.203|219843.502|98.463 +639634.595|219845.066|98.606 +639629.011|219846.614|98.856 +639623.400|219848.178|99.024 +639617.779|219849.741|99.179 +639612.219|219851.293|99.325 +639606.626|219852.860|99.362 +639601.024|219854.429|99.392 +639589.801|219857.611|98.972 +639578.618|219860.766|98.749 +639567.484|219863.927|98.304 +639561.949|219865.487|98.216 +639615.962|219852.320|99.240 +639621.504|219850.784|99.027 +639627.118|219849.226|98.847 +639632.672|219847.684|98.701 +639638.256|219846.145|98.432 +639643.839|219844.599|98.192 +639649.420|219843.057|97.945 +639655.087|219841.487|97.774 +639660.686|219839.930|97.637 +639666.428|219838.333|97.527 +639672.125|219836.739|97.518 +639677.855|219835.126|97.652 +639683.631|219833.505|97.731 +639689.474|219831.865|97.814 +639695.226|219830.274|97.579 +639701.008|219828.664|97.475 +639706.699|219827.086|97.301 +639712.517|219825.473|97.109 +639718.257|219823.882|96.899 +639723.981|219822.319|96.381 +639735.432|219819.213|95.125 +639741.190|219817.628|94.778 +639752.906|219814.378|94.388 +639770.579|219809.480|93.784 +639776.733|219807.697|94.601 +639782.728|219806.027|94.516 +639837.851|219790.345|98.045 +639850.031|219786.937|98.042 +639856.142|219785.218|98.164 +639862.217|219783.523|98.140 +639868.429|219781.783|98.167 +639874.583|219780.055|98.243 +639880.648|219778.360|98.243 +639886.827|219776.635|98.182 +639892.953|219774.943|97.893 +639899.147|219773.206|97.951 +639905.319|219771.481|97.920 +639911.488|219769.759|97.896 +639917.718|219768.015|97.878 +639930.221|219764.504|98.094 +639936.415|219762.782|97.960 +639961.564|219755.729|98.210 +639967.769|219754.013|97.923 +639974.018|219752.269|97.862 +639980.306|219750.523|97.692 +639986.606|219748.767|97.615 +639992.943|219747.011|97.393 +639999.203|219745.277|97.140 +640005.440|219743.561|96.777 +640011.731|219741.830|96.378 +640018.046|219740.083|96.116 +640024.359|219738.337|95.875 +640030.677|219736.584|95.677 +640037.136|219734.758|95.930 +640043.512|219732.988|95.756 +640056.244|219729.461|95.329 +640062.636|219727.675|95.293 +640068.988|219725.919|95.043 +640075.562|219724.026|95.777 +640077.187|219727.684|96.000 +640070.713|219729.571|95.076 +640058.109|219733.088|95.372 +640051.815|219734.841|95.579 +640045.524|219736.587|95.838 +640039.273|219738.331|95.973 +640032.954|219740.096|96.116 +640026.690|219741.848|96.213 +640020.390|219743.619|96.152 +640014.133|219745.366|96.323 +640007.973|219747.066|96.710 +640001.745|219748.785|97.091 +639995.552|219750.507|97.332 +639989.346|219752.236|97.521 +639983.080|219753.976|97.753 +639976.916|219755.701|97.856 +639970.683|219757.442|97.957 +639964.450|219759.185|98.082 +639958.263|219760.916|98.134 +639952.072|219762.651|98.192 +639939.697|219766.135|98.060 +639933.491|219767.875|98.109 +639927.325|219769.609|98.051 +639921.135|219771.362|97.893 +639914.993|219773.078|97.990 +639908.851|219774.794|98.109 +639902.761|219776.498|98.195 +639896.605|219778.220|98.277 +639884.400|219781.637|98.420 +639878.323|219783.353|98.326 +639872.199|219785.069|98.353 +639866.112|219786.788|98.262 +639860.047|219788.489|98.298 +639853.969|219790.196|98.289 +639847.885|219791.906|98.271 +639811.760|219802.077|97.981 +639781.116|219810.934|94.647 +639775.145|219812.620|94.537 +639739.864|219822.486|95.159 +639728.394|219825.626|96.283 +639722.734|219827.183|96.750 +639716.982|219828.768|97.149 +639711.255|219830.359|97.402 +639705.498|219831.965|97.548 +639699.752|219833.563|97.759 +639693.973|219835.178|97.868 +639688.264|219836.772|97.999 +639682.476|219838.412|97.850 +639676.782|219840.012|97.817 +639671.003|219841.643|97.750 +639665.328|219843.231|97.817 +639659.643|219844.825|97.875 +639654.023|219846.398|97.935 +639648.360|219847.980|98.100 +639642.794|219849.522|98.380 +639637.219|219851.067|98.652 +639631.632|219852.619|98.893 +639626.124|219854.146|99.182 +639620.528|219855.700|99.417 +639592.648|219863.561|99.063 +639575.921|219868.307|98.463 +639570.447|219869.840|98.551 +639564.841|219871.455|98.006 +639559.376|219872.998|97.935 +639553.868|219874.558|97.737 +639620.803|219857.489|99.444 +639626.393|219855.950|99.158 +639631.913|219854.429|98.880 +639637.536|219852.872|98.737 +639643.163|219851.329|98.377 +639648.725|219849.802|98.048 +639654.337|219848.245|97.911 +639660.037|219846.657|97.859 +639665.806|219845.051|97.826 +639671.549|219843.456|97.719 +639677.328|219841.841|97.759 +639683.110|219840.219|97.841 +639688.941|219838.592|97.856 +639694.677|219836.995|97.798 +639700.447|219835.394|97.631 +639706.226|219833.791|97.509 +639712.066|219832.173|97.381 +639717.851|219830.582|97.055 +639723.584|219829.018|96.558 +639729.327|219827.448|96.101 +639740.827|219824.321|95.025 +639758.438|219819.459|94.281 +639770.274|219816.168|94.159 +639776.251|219814.491|94.241 +639782.341|219812.748|94.796 +639801.107|219807.280|97.865 +639819.255|219802.202|98.048 +639825.275|219800.507|98.210 +639831.325|219798.815|98.243 +639837.403|219797.127|98.140 +639843.514|219795.420|98.182 +639849.616|219793.713|98.219 +639855.706|219792.009|98.231 +639861.863|219790.290|98.249 +639867.947|219788.589|98.277 +639874.092|219786.873|98.286 +639880.221|219785.163|98.262 +639886.433|219783.426|98.320 +639898.720|219780.006|98.192 +639904.889|219778.287|98.131 +639911.070|219776.562|98.134 +639917.322|219774.812|98.188 +639923.430|219773.130|97.893 +639929.678|219771.380|97.975 +639935.927|219769.625|98.094 +639942.163|219767.878|98.161 +639948.363|219766.156|98.079 +639954.648|219764.397|98.112 +639960.911|219762.654|98.057 +639967.102|219760.929|98.006 +639973.417|219759.170|97.926 +639979.654|219757.439|97.804 +639985.942|219755.695|97.634 +639992.153|219753.976|97.426 +639998.417|219752.248|97.164 +640004.711|219750.523|96.735 +640010.966|219748.798|96.454 +640017.214|219747.075|96.171 +640023.560|219745.311|96.076 +640029.936|219743.521|96.180 +640036.322|219741.754|95.979 +640042.674|219739.977|95.997 +640049.057|219738.206|95.851 +640055.332|219736.481|95.470 +640061.697|219734.719|95.241 +640068.134|219732.933|95.080 +640074.504|219731.165|94.927 +640080.988|219729.339|95.107 +640080.314|219733.597|94.903 +640073.992|219735.371|94.906 +640067.659|219737.124|95.238 +640061.398|219738.855|95.625 +640055.092|219740.611|95.777 +640048.779|219742.375|95.906 +640042.455|219744.143|96.000 +640036.188|219745.896|96.064 +640029.876|219747.655|96.256 +640023.560|219749.438|96.101 +640017.312|219751.172|96.351 +640011.072|219752.903|96.649 +640004.870|219754.604|97.164 +639998.640|219756.351|97.198 +639992.376|219758.091|97.433 +639986.173|219759.816|97.658 +639979.964|219761.541|97.875 +639973.734|219763.282|97.996 +639967.538|219765.022|97.984 +639961.286|219766.775|98.033 +639955.099|219768.506|98.112 +639948.887|219770.252|98.073 +639942.608|219772.014|98.073 +639936.457|219773.739|98.064 +639930.251|219775.477|98.131 +639924.024|219777.226|98.124 +639911.698|219780.683|98.149 +639905.547|219782.405|98.240 +639899.442|219784.115|98.277 +639887.162|219787.556|98.371 +639874.967|219790.979|98.353 +639868.822|219792.704|98.323 +639862.683|219794.426|98.332 +639856.606|219796.133|98.338 +639850.525|219797.837|98.347 +639844.432|219799.550|98.329 +639832.337|219802.955|98.179 +639826.229|219804.671|98.158 +639820.179|219806.371|98.124 +639808.243|219809.709|98.256 +639789.495|219815.208|95.104 +639783.459|219816.927|94.732 +639777.434|219818.643|94.406 +639747.822|219826.930|94.692 +639742.110|219828.497|95.195 +639736.331|219830.079|95.732 +639730.604|219831.652|96.198 +639724.883|219833.215|96.722 +639719.131|219834.800|97.131 +639713.425|219836.376|97.475 +639707.649|219837.991|97.561 +639701.883|219839.598|97.710 +639696.098|219841.216|97.795 +639690.386|219842.807|97.929 +639684.594|219844.426|98.030 +639678.834|219846.044|98.018 +639673.143|219847.641|98.024 +639667.416|219849.254|97.926 +639661.692|219850.866|97.847 +639656.019|219852.448|97.975 +639650.426|219854.006|98.155 +639644.848|219855.551|98.414 +639639.328|219857.066|98.877 +639633.833|219858.565|99.459 +639628.118|219860.199|99.033 +639622.574|219861.741|99.219 +639611.540|219864.811|99.594 +639605.983|219866.374|99.554 +639594.754|219869.575|98.896 +639589.262|219871.117|98.883 +639578.100|219874.290|98.335 +639572.672|219875.796|98.591 +639567.091|219877.396|98.137 +639561.528|219878.984|97.756 +639625.381|219862.638|99.280 +639630.928|219861.101|99.085 +639636.637|219859.495|99.237 +639642.145|219857.995|98.694 +639647.771|219856.447|98.344 +639653.419|219854.886|98.085 +639659.095|219853.311|97.929 +639664.819|219851.707|97.981 +639670.598|219850.092|97.993 +639676.401|219848.458|98.121 +639682.092|219846.867|98.097 +639687.895|219845.252|98.006 +639693.613|219843.664|97.875 +639699.402|219842.054|97.759 +639705.251|219840.427|97.640 +639711.085|219838.805|97.487 +639716.906|219837.193|97.295 +639722.618|219835.620|96.960 +639728.428|219834.029|96.503 +639745.783|219829.295|94.906 +639757.487|219826.080|94.177 +639781.503|219819.335|94.558 +639787.599|219817.606|94.875 +639818.563|219808.706|98.060 +639824.641|219806.996|98.188 +639830.765|219805.280|98.234 +639842.935|219801.866|98.377 +639849.095|219800.144|98.365 +639855.179|219798.447|98.335 +639861.327|219796.731|98.301 +639867.478|219795.008|98.316 +639873.620|219793.289|98.313 +639879.773|219791.564|98.387 +639892.115|219788.129|98.152 +639898.333|219786.379|98.283 +639904.502|219784.660|98.210 +639910.747|219782.917|98.192 +639935.601|219775.971|98.115 +639941.813|219774.236|98.060 +639948.146|219772.471|97.978 +639954.361|219770.734|97.981 +639960.631|219768.981|97.951 +639966.898|219767.229|97.942 +639973.158|219765.482|97.914 +639979.471|219763.721|97.832 +639985.747|219761.983|97.603 +639991.992|219760.267|97.207 +639998.295|219758.509|97.146 +640004.641|219756.719|97.347 +640010.926|219754.994|96.881 +640017.107|219753.315|96.232 +640023.429|219751.565|96.000 +640029.799|219749.779|96.064 +640036.170|219747.990|96.155 +640042.543|219746.225|95.915 +640048.813|219744.479|95.842 +640055.256|219742.689|95.680 +640061.563|219740.940|95.488 +640067.939|219739.169|95.357 +640074.337|219737.407|94.985 +640080.683|219735.658|94.692 +640075.718|219741.318|95.110 +640069.369|219743.086|95.348 +640063.129|219744.832|95.473 +640056.841|219746.585|95.723 +640050.575|219748.343|95.747 +640044.320|219750.096|95.854 +640037.950|219751.900|95.707 +640031.680|219753.659|95.781 +640025.377|219755.439|95.680 +640019.278|219757.103|96.378 +640013.047|219758.832|96.722 +640006.823|219760.554|97.122 +640000.639|219762.273|97.399 +639988.234|219765.732|97.814 +639982.004|219767.503|97.570 +639975.786|219769.241|97.740 +639957.278|219774.419|98.158 +639951.072|219776.166|98.152 +639944.925|219777.897|98.128 +639938.725|219779.634|98.201 +639932.571|219781.369|98.198 +639901.853|219789.994|98.423 +639895.733|219791.720|98.390 +639877.457|219796.849|98.524 +639871.312|219798.578|98.481 +639859.169|219801.988|98.509 +639853.097|219803.695|98.548 +639847.047|219805.405|98.414 +639841.033|219807.094|98.454 +639834.898|219808.828|98.292 +639828.890|219810.507|98.411 +639822.892|219812.205|98.289 +639816.917|219813.885|98.304 +639792.204|219821.060|95.217 +639786.111|219822.800|94.863 +639780.076|219824.525|94.503 +639750.556|219832.779|95.095 +639739.026|219835.958|95.948 +639727.559|219839.113|96.853 +639721.804|219840.701|97.244 +639716.035|219842.298|97.591 +639710.283|219843.904|97.762 +639704.495|219845.526|97.823 +639698.728|219847.135|97.969 +639692.940|219848.757|98.060 +639687.231|219850.351|98.207 +639681.580|219851.930|98.332 +639675.795|219853.564|98.240 +639669.997|219855.203|98.121 +639664.346|219856.779|98.298 +639658.647|219858.379|98.323 +639652.919|219859.995|98.262 +639647.311|219861.543|98.649 +639641.852|219863.028|99.316 +639625.198|219867.661|99.981 +639619.580|219869.246|99.917 +639613.902|219870.861|99.673 +639608.263|219872.470|99.344 +639602.755|219874.010|99.475 +639597.132|219875.610|99.237 +639591.481|219877.222|98.917 +639574.906|219881.919|98.426 +639563.881|219885.037|98.195 +639626.201|219868.843|99.984 +639631.736|219867.295|99.978 +639648.259|219862.784|98.573 +639653.880|219861.220|98.454 +639659.485|219859.669|98.283 +639670.820|219856.505|98.213 +639682.321|219853.283|98.320 +639688.020|219851.707|98.085 +639693.821|219850.092|97.984 +639699.566|219848.489|97.960 +639705.251|219846.916|97.728 +639711.051|219845.300|97.679 +639716.821|219843.697|97.542 +639722.591|219842.112|97.164 +639728.348|219840.533|96.756 +639734.103|219838.958|96.335 +639739.913|219837.367|95.890 +639751.458|219834.203|95.028 +639763.242|219830.938|94.625 +639787.141|219824.242|94.836 +639793.244|219822.511|95.183 +639805.856|219818.798|97.670 +639818.146|219815.311|98.374 +639824.178|219813.632|98.280 +639830.243|219811.931|98.353 +639836.275|219810.248|98.316 +639842.463|219808.514|98.377 +639848.559|219806.810|98.371 +639866.908|219801.677|98.420 +639873.043|219799.964|98.377 +639879.179|219798.251|98.353 +639891.520|219794.798|98.380 +639897.723|219793.061|98.426 +639903.892|219791.345|98.326 +639934.988|219782.664|98.137 +639941.276|219780.908|98.109 +639947.558|219779.156|98.076 +639953.773|219777.418|98.067 +639960.104|219775.654|98.003 +639966.364|219773.907|97.932 +639972.664|219772.157|97.765 +639978.882|219770.438|97.518 +639985.277|219768.625|97.871 +640004.120|219763.425|96.951 +640010.466|219761.663|96.796 +640016.687|219759.956|96.341 +640023.088|219758.179|96.174 +640029.376|219756.427|96.119 +640042.031|219752.940|95.424 +640048.459|219751.135|95.512 +640054.884|219749.334|95.595 +640061.279|219747.548|95.543 +640067.637|219745.789|95.281 +640074.005|219744.021|95.116 +640080.442|219742.232|94.976 +640077.647|219747.014|95.064 +640071.344|219748.779|95.183 +640064.946|219750.605|94.793 +640058.658|219752.382|94.689 +640052.336|219754.150|94.799 +640046.091|219755.893|94.973 +640039.855|219757.625|95.244 +640033.637|219759.344|95.619 +640027.401|219761.075|95.915 +640021.277|219762.754|96.482 +640014.977|219764.525|96.469 +640008.783|219766.250|96.698 +640002.636|219767.942|97.180 +639996.424|219769.676|97.347 +639990.334|219771.325|98.173 +639984.098|219773.075|98.240 +639977.883|219774.831|98.118 +639965.489|219778.314|98.118 +639959.339|219780.049|98.048 +639953.154|219781.780|98.155 +639947.022|219783.496|98.231 +639940.865|219785.230|98.192 +639934.628|219786.989|98.124 +639922.415|219790.406|98.341 +639904.039|219795.566|98.402 +639897.985|219797.270|98.387 +639855.469|219809.212|98.539 +639843.347|219812.623|98.509 +639837.397|219814.293|98.566 +639831.335|219816.006|98.460 +639825.296|219817.704|98.466 +639807.222|219822.843|97.686 +639788.623|219828.274|94.976 +639776.803|219831.594|95.022 +639758.807|219836.708|94.321 +639747.405|219839.814|95.665 +639741.659|219841.402|96.049 +639730.077|219844.602|96.789 +639724.322|219846.191|97.183 +639718.628|219847.766|97.561 +639712.874|219849.370|97.737 +639707.113|219850.979|97.902 +639701.392|219852.582|97.972 +639695.592|219854.210|98.027 +639672.591|219860.669|98.155 +639666.989|219862.217|98.518 +639661.460|219863.723|99.149 +639650.140|219866.899|99.280 +639644.568|219868.444|99.569 +639633.360|219871.568|99.953 +639627.792|219873.126|100.060 +639622.226|219874.683|100.179 +639616.526|219876.308|99.868 +639610.823|219877.951|99.325 +639605.227|219879.539|99.161 +639599.698|219881.087|99.252 +639582.815|219885.900|98.393 +639577.430|219887.403|98.560 +639571.815|219889.006|98.219 +639566.265|219890.594|97.884 +639630.995|219873.933|99.920 +639636.576|219872.379|99.840 +639642.139|219870.831|99.719 +639647.686|219869.310|99.322 +639653.364|219867.697|99.633 +639664.545|219864.622|98.960 +639670.034|219863.128|98.411 +639675.673|219861.568|98.164 +639681.525|219859.891|98.713 +639698.478|219855.203|97.999 +639704.211|219853.603|97.929 +639709.984|219852.000|97.777 +639715.727|219850.412|97.527 +639721.494|219848.812|97.381 +639727.181|219847.251|96.951 +639732.887|219845.685|96.597 +639738.663|219844.090|96.280 +639744.399|219842.521|95.820 +639750.163|219840.936|95.476 +639755.906|219839.378|94.802 +639761.758|219837.760|94.574 +639767.698|219836.086|94.720 +639779.549|219832.755|94.939 +639785.499|219831.094|94.909 +639797.584|219827.677|95.390 +639810.130|219823.980|97.890 +639822.398|219820.502|98.512 +639828.381|219818.829|98.509 +639834.440|219817.128|98.573 +639840.460|219815.451|98.475 +639864.844|219808.630|98.469 +639877.079|219805.207|98.502 +639901.692|219798.315|98.563 +639932.684|219789.680|98.103 +639938.911|219787.940|98.091 +639945.211|219786.172|98.137 +639951.429|219784.435|98.115 +639957.696|219782.688|98.045 +639963.969|219780.936|98.015 +639970.171|219779.201|97.990 +639995.403|219772.173|97.600 +640007.924|219768.738|96.668 +640014.258|219766.982|96.463 +640026.873|219763.501|95.805 +640033.225|219761.727|95.744 +640039.565|219759.990|95.278 +640045.890|219758.234|95.101 +640052.321|219756.457|94.814 +640058.670|219754.677|94.836 +640065.095|219752.903|94.558 +640071.472|219751.129|94.394 +640078.007|219749.273|94.799 +640079.589|219752.797|94.671 +640073.264|219754.574|94.689 +640066.997|219756.335|94.692 +640060.642|219758.106|94.945 +640054.427|219759.856|94.912 +640048.106|219761.627|95.037 +640041.805|219763.404|94.945 +640035.658|219765.077|95.713 +640029.458|219766.784|96.198 +640023.255|219768.518|96.341 +640016.982|219770.274|96.466 +640010.685|219772.042|96.491 +639986.115|219778.817|98.316 +639979.843|219780.588|98.240 +639973.652|219782.329|98.262 +639967.410|219784.100|98.033 +639948.878|219789.303|98.173 +639942.739|219791.025|98.231 +639936.579|219792.759|98.210 +639930.355|219794.509|98.225 +639912.040|219799.638|98.521 +639887.643|219806.472|98.893 +639875.497|219809.892|98.841 +639851.272|219816.713|98.704 +639845.191|219818.441|98.472 +639839.192|219820.118|98.624 +639833.252|219821.779|98.743 +639827.265|219823.465|98.701 +639796.599|219832.350|95.214 +639778.708|219837.412|94.753 +639772.810|219839.055|94.991 +639766.945|219840.716|94.845 +639755.189|219844.005|95.052 +639749.428|219845.581|95.634 +639743.668|219847.178|95.966 +639737.934|219848.757|96.415 +639732.219|219850.342|96.698 +639726.584|219851.884|97.283 +639720.887|219853.457|97.664 +639697.993|219859.839|98.420 +639692.233|219861.464|98.380 +639686.585|219863.022|98.777 +639680.861|219864.640|98.664 +639675.179|219866.252|98.469 +639669.650|219867.761|99.103 +639652.892|219872.412|99.944 +639647.156|219874.046|99.652 +639641.602|219875.601|99.776 +639636.018|219877.167|99.816 +639630.462|219878.719|99.956 +639624.884|219880.282|100.042 +639619.239|219881.895|99.682 +639613.640|219883.486|99.493 +639607.977|219885.107|99.109 +639602.573|219886.607|99.389 +639591.661|219889.655|99.636 +639574.985|219894.422|98.643 +639569.328|219896.062|97.960 +639637.073|219878.771|99.722 +639642.733|219877.189|99.694 +639648.335|219875.619|99.712 +639654.136|219873.976|99.965 +639665.383|219870.858|99.533 +639670.982|219869.325|99.118 +639682.208|219866.231|98.448 +639688.054|219864.573|98.731 +639693.708|219863.000|98.591 +639705.299|219859.751|98.637 +639710.832|219858.264|97.832 +639716.696|219856.627|97.771 +639728.178|219853.466|97.030 +639733.823|219851.930|96.451 +639739.611|219850.330|96.168 +639745.372|219848.748|95.790 +639751.135|219847.160|95.448 +639757.003|219845.529|95.262 +639774.687|219840.610|94.860 +639780.536|219838.985|94.659 +639792.536|219835.599|95.012 +639829.390|219824.998|98.819 +639835.419|219823.315|98.731 +639841.359|219821.663|98.588 +639847.452|219819.962|98.530 +639853.494|219818.268|98.563 +639859.565|219816.555|98.755 +639865.603|219814.881|98.530 +639871.797|219813.132|98.713 +639877.859|219811.440|98.643 +639896.260|219806.271|98.893 +639933.132|219795.999|98.182 +639939.307|219794.268|98.216 +639945.528|219792.527|98.192 +639951.728|219790.799|98.082 +639964.209|219787.309|98.006 +639970.436|219785.560|98.094 +639976.590|219783.856|97.844 +639989.230|219780.299|98.085 +640007.765|219775.224|96.561 +640014.090|219773.471|96.280 +640020.390|219771.712|96.247 +640026.581|219770.024|95.643 +640033.030|219768.183|96.113 +640039.151|219766.540|95.147 +640045.524|219764.775|94.875 +640051.870|219763.001|94.842 +640058.204|219761.233|94.750 +640064.595|219759.450|94.653 +640070.944|219757.670|94.711 +640075.038|219760.374|94.650 +640068.716|219762.148|94.711 +640062.389|219763.922|94.775 +640056.146|219765.665|94.964 +640049.794|219767.451|94.942 +640043.412|219769.259|94.759 +640037.319|219770.893|95.845 +640024.724|219774.437|95.823 +640018.534|219776.160|96.064 +640012.237|219777.900|96.463 +640000.026|219781.225|97.935 +639981.354|219786.440|98.402 +639975.075|219788.239|97.990 +639968.900|219789.964|98.124 +639956.391|219793.494|98.003 +639950.277|219795.200|98.173 +639944.062|219796.947|98.198 +639937.914|219798.672|98.249 +639931.754|219800.403|98.265 +639888.832|219812.446|98.664 +639876.640|219815.875|98.719 +639870.575|219817.579|98.768 +639864.485|219819.295|98.734 +639858.459|219820.993|98.707 +639852.430|219822.690|98.679 +639846.346|219824.400|98.734 +639834.303|219827.781|98.856 +639828.405|219829.414|99.191 +639809.736|219834.885|96.256 +639803.698|219836.617|95.826 +639797.669|219838.342|95.454 +639785.596|219841.774|95.009 +639773.761|219845.121|94.781 +639767.973|219846.718|95.217 +639750.471|219851.601|95.808 +639744.652|219853.231|95.924 +639704.681|219864.308|98.256 +639699.054|219865.859|98.707 +639693.367|219867.459|98.697 +639687.563|219869.105|98.527 +639681.888|219870.700|98.597 +639676.404|219872.184|99.374 +639670.912|219873.693|99.883 +639665.224|219875.305|99.716 +639659.656|219876.853|99.987 +639654.008|219878.445|99.987 +639648.387|219880.036|99.862 +639642.751|219881.633|99.703 +639637.125|219883.224|99.597 +639631.559|219884.784|99.712 +639626.048|219886.330|99.801 +639620.480|219887.902|99.706 +639614.880|219889.490|99.530 +639609.367|219891.051|99.420 +639603.847|219892.615|99.313 +639592.916|219895.693|99.277 +639587.534|219897.199|99.438 +639581.980|219898.790|99.054 +639640.944|219883.989|99.511 +639646.677|219882.370|99.722 +639652.386|219880.764|99.880 +639658.037|219879.188|99.837 +639663.761|219877.588|99.840 +639680.638|219872.946|98.883 +639686.307|219871.391|98.496 +639692.022|219869.788|98.548 +639697.844|219868.145|98.761 +639703.602|219866.557|98.502 +639720.850|219861.812|97.481 +639726.648|219860.196|97.433 +639732.344|219858.654|96.771 +639738.050|219857.105|96.149 +639773.249|219847.364|94.903 +639779.208|219845.681|95.128 +639785.273|219843.978|95.253 +639834.328|219829.978|99.109 +639840.418|219828.283|99.008 +639846.392|219826.634|98.713 +639852.497|219824.931|98.710 +639858.602|219823.221|98.725 +639864.704|219821.514|98.749 +639870.806|219819.804|98.810 +639876.945|219818.094|98.749 +639883.087|219816.378|98.719 +639889.201|219814.680|98.582 +639913.823|219807.810|98.435 +639932.385|219802.638|98.210 +639938.624|219800.891|98.228 +639944.842|219799.160|98.152 +639951.063|219797.425|98.112 +639957.336|219795.679|98.027 +639963.591|219793.917|98.204 +639969.812|219792.174|98.246 +639976.139|219790.409|98.179 +639988.618|219786.943|97.890 +640013.535|219780.098|96.283 +640026.041|219776.675|95.317 +640038.782|219773.084|95.701 +640044.960|219771.435|94.683 +640051.370|219769.618|94.985 +640057.695|219767.863|94.827 +640064.031|219766.095|94.759 +640070.496|219764.288|94.714 +640076.812|219762.532|94.564 +640077.638|219766.043|94.714 +640071.386|219767.796|94.808 +640065.059|219769.570|94.866 +640058.810|219771.316|95.028 +640052.458|219773.105|94.991 +640027.562|219780.027|96.067 +640021.286|219781.783|96.198 +640002.629|219786.977|96.930 +639990.340|219790.378|97.692 +639971.720|219795.600|97.884 +639965.611|219797.282|98.371 +639959.336|219799.074|98.042 +639953.154|219800.800|98.204 +639946.945|219802.543|98.262 +639940.840|219804.262|98.201 +639934.604|219806.021|98.155 +639928.465|219807.740|98.289 +639916.221|219811.169|98.475 +639897.830|219816.326|98.655 +639891.737|219818.027|98.826 +639885.680|219819.725|98.883 +639879.591|219821.441|98.801 +639873.470|219823.154|98.917 +639867.377|219824.870|98.880 +639861.336|219826.574|98.789 +639849.156|219829.993|98.847 +639818.627|219838.708|97.061 +639788.339|219847.355|95.235 +639776.336|219850.756|94.897 +639770.411|219852.427|94.802 +639752.806|219857.340|95.299 +639741.299|219860.516|96.073 +639729.857|219863.649|97.164 +639718.555|219866.743|98.298 +639712.801|219868.346|98.515 +639707.058|219869.959|98.527 +639695.555|219873.193|98.539 +639689.794|219874.811|98.545 +639684.110|219876.387|98.841 +639661.631|219882.626|99.886 +639655.964|219884.224|99.828 +639650.384|219885.793|99.856 +639644.647|219887.424|99.606 +639638.947|219889.052|99.258 +639633.290|219890.655|99.082 +639627.807|219892.182|99.271 +639622.266|219893.721|99.527 +639616.761|219895.257|99.682 +639611.247|219896.815|99.581 +639605.645|219898.400|99.444 +639600.101|219899.970|99.277 +639589.039|219903.109|98.874 +639578.192|219906.148|99.008 +639640.036|219890.252|99.158 +639645.775|219888.610|99.624 +639651.444|219887.003|99.874 +639656.995|219885.461|99.722 +639662.682|219883.858|99.831 +639679.559|219879.167|99.356 +639685.109|219877.655|98.792 +639690.767|219876.082|98.630 +639696.512|219874.482|98.548 +639702.212|219872.900|98.323 +639708.009|219871.266|98.475 +639713.779|219869.663|98.292 +639719.476|219868.081|98.115 +639730.854|219864.960|97.219 +639753.793|219858.703|94.991 +639759.670|219857.047|95.095 +639771.374|219853.807|94.613 +639777.409|219852.098|94.866 +639789.388|219848.726|95.058 +639795.380|219847.038|95.201 +639807.536|219843.575|95.979 +639826.394|219838.049|99.249 +639838.531|219834.663|99.094 +639856.706|219829.594|98.765 +639868.898|219826.180|98.765 +639875.043|219824.461|98.725 +639887.363|219821.005|98.835 +639893.480|219819.298|98.743 +639899.668|219817.567|98.682 +639905.831|219815.854|98.524 +639911.918|219814.162|98.350 +639918.163|219812.416|98.304 +639930.565|219808.950|98.195 +639936.777|219807.219|98.076 +639943.004|219805.475|98.039 +639949.247|219803.723|98.094 +639955.522|219801.970|98.024 +639968.071|219798.440|98.252 +639974.423|219796.654|98.301 +639986.774|219793.268|97.338 +640011.859|219786.322|96.250 +640018.257|219784.523|96.351 +640024.575|219782.774|96.052 +640030.945|219780.991|96.058 +640037.279|219779.229|95.887 +640043.421|219777.598|94.665 +640049.962|219775.718|95.320 +640056.223|219774.002|94.793 +640069.058|219770.405|94.854 +640075.434|219768.631|94.683 +640078.305|219771.706|94.671 +640053.126|219778.778|94.982 +640046.792|219780.582|94.714 +640040.583|219782.298|95.168 +640028.190|219785.733|95.896 +640015.605|219789.296|95.677 +640009.548|219790.955|96.320 +639990.980|219796.112|97.311 +639984.753|219797.855|97.484 +639972.573|219801.229|98.268 +639966.282|219803.006|98.192 +639953.941|219806.499|97.969 +639947.729|219808.246|98.018 +639941.642|219809.959|98.057 +639929.340|219813.412|98.213 +639923.232|219815.134|98.210 +639917.166|219816.826|98.426 +639911.006|219818.554|98.533 +639904.910|219820.264|98.655 +639898.854|219821.971|98.664 +639880.670|219827.064|99.075 +639874.586|219828.802|98.755 +639868.453|219830.524|98.835 +639826.391|219842.380|98.792 +639807.737|219847.839|96.049 +639801.714|219849.562|95.710 +639795.731|219851.259|95.561 +639783.676|219854.697|94.982 +639777.763|219856.371|94.912 +639760.084|219861.360|94.796 +639754.296|219862.958|95.284 +639731.528|219869.224|97.301 +639725.870|219870.779|97.841 +639714.416|219873.961|98.448 +639708.585|219875.610|98.387 +639702.867|219877.213|98.509 +639697.128|219878.826|98.560 +639691.431|219880.432|98.557 +639685.725|219882.026|98.765 +639680.135|219883.571|99.173 +639668.976|219886.665|99.856 +639657.635|219889.871|99.703 +639646.177|219893.139|99.225 +639640.423|219894.797|98.697 +639634.854|219896.358|98.819 +639629.401|219897.872|99.121 +639623.842|219899.427|99.310 +639618.361|219900.954|99.545 +639612.835|219902.505|99.639 +639607.324|219904.063|99.578 +639601.753|219905.636|99.551 +639596.220|219907.221|99.219 +639590.801|219908.726|99.505 +639585.147|219910.372|98.804 +639644.925|219895.050|98.826 +639656.376|219891.776|99.694 +639661.990|219890.219|99.530 +639667.647|219888.634|99.530 +639673.274|219887.046|99.682 +639678.846|219885.525|99.167 +639684.369|219884.010|98.740 +639690.020|219882.443|98.536 +639695.759|219880.843|98.426 +639701.450|219879.252|98.408 +639707.195|219877.649|98.341 +639712.938|219876.043|98.298 +639718.750|219874.418|98.271 +639724.484|219872.836|97.969 +639730.199|219871.260|97.618 +639735.731|219869.788|96.582 +639747.185|219866.643|95.777 +639752.928|219865.067|95.323 +639776.443|219858.507|94.994 +639782.371|219856.840|95.092 +639788.324|219855.158|95.302 +639794.411|219853.433|95.540 +639800.431|219851.729|95.796 +639806.420|219850.040|95.951 +639818.661|219846.544|96.863 +639831.051|219842.954|98.505 +639867.517|219832.715|98.835 +639873.668|219830.996|98.798 +639879.749|219829.295|98.771 +639885.839|219827.585|98.801 +639904.267|219822.443|98.548 +639910.461|219820.712|98.524 +639916.627|219818.993|98.408 +639922.772|219817.286|98.216 +639929.008|219815.546|98.149 +639935.177|219813.821|98.121 +639947.616|219810.349|97.951 +639953.843|219808.606|97.942 +639960.116|219806.832|98.176 +639966.492|219805.036|98.292 +639972.713|219803.290|98.329 +639985.149|219799.876|97.414 +639991.349|219798.166|97.073 +639997.682|219796.389|97.088 +640010.085|219792.988|96.146 +640029.156|219787.644|96.152 +640041.656|219784.240|94.863 +640048.014|219782.460|94.833 +640054.406|219780.658|95.015 +640079.994|219773.514|94.683 +640054.004|219784.663|95.067 +640047.597|219786.489|94.766 +640041.437|219788.193|95.153 +640028.995|219791.634|95.997 +640016.431|219795.200|95.573 +640010.329|219796.862|96.341 +639991.876|219801.982|97.308 +639985.731|219803.692|97.576 +639979.666|219805.350|98.262 +639967.236|219808.877|97.868 +639961.122|219810.587|98.045 +639954.943|219812.333|97.926 +639948.805|219814.052|98.036 +639942.654|219815.781|98.085 +639936.588|219817.475|98.265 +639930.428|219819.203|98.326 +639924.326|219820.919|98.368 +639912.183|219824.327|98.484 +639894.062|219829.387|99.078 +639888.018|219831.082|99.200 +639881.895|219832.819|98.993 +639863.814|219837.897|99.176 +639857.910|219839.518|99.719 +639852.009|219841.161|99.987 +639845.953|219842.896|99.618 +639839.774|219844.676|99.051 +639833.633|219846.456|98.384 +639809.425|219853.423|96.341 +639797.441|219856.825|95.970 +639791.433|219858.553|95.482 +639785.566|219860.217|95.311 +639779.622|219861.906|95.122 +639773.706|219863.576|95.070 +639761.980|219866.890|94.900 +639756.149|219868.526|94.979 +639739.181|219873.193|96.515 +639733.600|219874.683|97.594 +639727.940|219876.256|97.871 +639722.219|219877.844|98.195 +639716.522|219879.435|98.365 +639710.780|219881.051|98.390 +639705.089|219882.657|98.368 +639699.310|219884.288|98.292 +639693.665|219885.866|98.475 +639688.051|219887.442|98.533 +639682.406|219889.018|98.743 +639676.798|219890.569|99.109 +639671.201|219892.133|99.283 +639665.572|219893.712|99.353 +639659.930|219895.297|99.402 +639654.276|219896.906|99.173 +639648.488|219898.586|98.509 +639642.885|219900.165|98.518 +639637.381|219901.689|98.862 +639631.925|219903.203|99.158 +639626.405|219904.752|99.255 +639620.986|219906.264|99.463 +639615.481|219907.800|99.642 +639609.985|219909.348|99.633 +639604.474|219910.921|99.347 +639598.991|219912.463|99.408 +639593.624|219913.957|99.639 +639582.739|219917.038|99.426 +639649.710|219900.027|98.481 +639655.462|219898.375|99.002 +639661.186|219896.754|99.213 +639666.831|219895.178|99.158 +639672.515|219893.593|99.018 +639678.111|219892.042|98.829 +639683.765|219890.472|98.612 +639689.422|219888.899|98.423 +639695.171|219887.296|98.332 +639700.819|219885.726|98.152 +639706.583|219884.111|98.146 +639712.346|219882.495|98.170 +639723.993|219879.210|98.460 +639729.507|219877.747|97.341 +639735.158|219876.204|96.759 +639740.815|219874.680|95.945 +639752.266|219871.532|95.140 +639758.030|219869.944|94.775 +639763.910|219868.289|94.866 +639769.868|219866.606|95.031 +639775.785|219864.948|95.046 +639781.689|219863.293|95.043 +639787.715|219861.586|95.268 +639793.667|219859.900|95.494 +639799.748|219858.160|95.994 +639805.847|219856.426|96.308 +639811.779|219854.768|96.244 +639817.878|219853.012|96.890 +639830.155|219849.485|98.039 +639842.423|219845.974|98.987 +639866.777|219839.107|99.542 +639884.979|219834.026|99.274 +639897.150|219830.609|99.356 +639903.210|219828.936|99.002 +639933.787|219820.423|98.240 +639939.941|219818.704|98.128 +639946.095|219816.985|98.060 +639952.231|219815.278|97.908 +639964.807|219811.730|98.210 +639989.645|219804.792|97.847 +640014.379|219798.029|95.582 +640020.671|219796.276|95.442 +640026.922|219794.545|95.125 +640045.835|219789.299|94.400 +640052.245|219787.455|95.037 +640077.714|219780.344|94.674 +640080.454|219783.606|94.601 +640055.226|219790.674|95.076 +640048.898|219792.472|94.863 +640042.686|219794.188|95.311 +640030.205|219797.657|95.942 +640017.607|219801.251|95.345 +640011.371|219802.976|95.756 +640005.223|219804.668|96.308 +639998.984|219806.420|96.393 +639980.647|219811.462|98.042 +639968.263|219814.939|98.207 +639961.972|219816.738|97.844 +639955.794|219818.460|98.057 +639937.353|219823.638|98.301 +639925.109|219827.073|98.481 +639919.068|219828.747|98.838 +639913.033|219830.420|99.228 +639888.835|219837.168|100.093 +639882.666|219838.936|99.679 +639858.593|219845.669|100.313 +639834.203|219852.671|98.530 +639821.919|219856.221|97.283 +639815.820|219857.989|96.604 +639809.739|219859.727|96.302 +639803.759|219861.418|96.162 +639797.749|219863.131|95.924 +639791.768|219864.841|95.558 +639785.813|219866.539|95.302 +639779.884|219868.215|95.183 +639773.986|219869.874|95.214 +639768.052|219871.553|95.116 +639762.194|219873.208|95.064 +639756.341|219874.857|95.061 +639744.869|219878.039|95.735 +639739.218|219879.588|96.287 +639733.536|219881.154|96.744 +639727.900|219882.693|97.381 +639722.429|219884.163|98.384 +639716.598|219885.827|98.070 +639710.886|219887.424|98.213 +639705.165|219889.027|98.335 +639699.487|219890.624|98.384 +639693.879|219892.197|98.460 +639688.200|219893.791|98.539 +639682.534|219895.376|98.685 +639676.919|219896.949|98.789 +639671.339|219898.506|99.024 +639665.749|219900.064|99.240 +639660.198|219901.618|99.371 +639654.501|219903.249|99.008 +639648.820|219904.871|98.728 +639643.376|219906.364|99.277 +639632.422|219909.418|99.709 +639626.902|219910.964|99.813 +639621.446|219912.494|99.901 +639615.965|219914.036|99.929 +639610.409|219915.618|99.722 +639604.971|219917.151|99.694 +639599.552|219918.672|99.743 +639648.875|219906.904|98.932 +639654.611|219905.279|99.136 +639660.344|219903.636|99.603 +639665.986|219902.079|99.280 +639671.552|219900.543|98.947 +639677.215|219898.973|98.728 +639682.900|219897.388|98.600 +639688.587|219895.800|98.505 +639694.330|219894.200|98.377 +639700.081|219892.593|98.292 +639705.900|219890.966|98.234 +639711.670|219889.347|98.259 +639717.412|219887.759|97.945 +639723.286|219886.098|98.137 +639728.854|219884.608|97.207 +639734.505|219883.068|96.607 +639740.245|219881.496|96.082 +639745.993|219879.920|95.613 +639751.815|219878.320|95.174 +639757.609|219876.713|94.912 +639763.556|219875.043|94.988 +639769.521|219873.357|95.162 +639775.422|219871.705|95.098 +639781.353|219870.038|95.180 +639787.361|219868.343|95.311 +639793.408|219866.624|95.631 +639799.452|219864.905|95.960 +639805.451|219863.211|96.122 +639811.565|219861.467|96.515 +639817.634|219859.748|96.738 +639823.782|219857.983|97.311 +639829.993|219856.176|98.179 +639836.208|219854.408|98.533 +639854.829|219849.037|100.520 +639860.918|219847.337|100.447 +639873.107|219843.920|100.410 +639879.072|219842.265|100.157 +639885.278|219840.530|100.093 +639921.863|219830.350|99.021 +639928.045|219828.643|98.685 +639965.035|219818.332|97.865 +639977.550|219814.817|97.920 +639996.061|219809.718|96.674 +640002.291|219807.987|96.485 +640008.421|219806.320|95.796 +640014.672|219804.594|95.412 +640020.847|219802.891|95.000 +640027.212|219801.089|95.250 +640046.076|219795.850|94.564 +640052.461|219794.024|95.049 +640071.688|219788.589|95.592 +640077.860|219786.931|94.607 +640075.501|219791.418|95.409 +640056.424|219796.828|94.884 +640050.203|219798.575|94.933 +640043.942|219800.321|95.134 +640018.827|219807.395|95.070 +640000.243|219812.556|96.046 +639987.984|219815.924|97.116 +639981.912|219817.585|97.789 +639975.597|219819.377|97.606 +639944.858|219827.960|98.512 +639938.777|219829.640|98.941 +639920.528|219834.700|99.996 +639902.423|219839.707|101.236 +639884.001|219844.944|100.621 +639859.672|219851.829|100.194 +639847.413|219855.341|99.429 +639841.274|219857.096|99.060 +639835.151|219858.864|98.481 +639828.954|219860.672|97.646 +639822.910|219862.388|97.451 +639810.907|219865.786|97.219 +639804.750|219867.584|96.375 +639798.709|219869.313|96.027 +639792.674|219871.035|95.732 +639786.684|219872.748|95.357 +639780.735|219874.439|95.177 +639774.831|219876.101|95.195 +639768.920|219877.765|95.211 +639762.986|219879.441|95.144 +639757.085|219881.118|94.964 +639751.288|219882.733|95.204 +639745.588|219884.312|95.579 +639739.879|219885.894|95.924 +639734.204|219887.436|96.677 +639722.993|219890.481|98.210 +639717.290|219892.075|98.387 +639711.545|219893.694|98.411 +639705.839|219895.303|98.362 +639700.106|219896.912|98.472 +639694.418|219898.510|98.527 +639688.801|219900.088|98.597 +639683.128|219901.676|98.734 +639677.523|219903.243|98.880 +639671.866|219904.822|99.106 +639666.383|219906.340|99.469 +639655.178|219909.482|99.655 +639649.567|219911.067|99.618 +639638.499|219914.164|99.904 +639633.007|219915.700|100.084 +639627.487|219917.246|100.200 +639621.970|219918.809|100.100 +639616.478|219920.358|100.093 +639610.945|219921.924|99.987 +639605.459|219923.482|99.804 +639600.034|219925.009|99.844 +639594.639|219926.518|100.008 +639589.143|219928.078|99.856 +639652.782|219911.918|99.624 +639658.449|219910.318|99.837 +639664.002|219908.775|99.667 +639669.516|219907.269|99.149 +639675.136|219905.706|99.005 +639680.751|219904.145|98.859 +639686.350|219902.591|98.679 +639692.019|219901.015|98.521 +639697.774|219899.412|98.432 +639703.449|219897.830|98.335 +639709.192|219896.230|98.234 +639714.971|219894.605|98.295 +639720.728|219892.993|98.301 +639726.379|219891.441|97.920 +639731.951|219889.948|97.015 +639737.541|219888.445|96.180 +639743.278|219886.878|95.643 +639749.051|219885.290|95.262 +639754.866|219883.678|95.058 +639760.737|219882.032|95.083 +639766.619|219880.377|95.180 +639772.529|219878.725|95.140 +639778.467|219877.055|95.226 +639784.447|219875.381|95.226 +639790.491|219873.665|95.515 +639796.517|219871.943|96.009 +639802.592|219870.209|96.460 +639821.054|219864.914|98.128 +639826.945|219863.299|97.664 +639832.983|219861.598|97.807 +639839.296|219859.751|98.850 +639845.532|219857.947|99.612 +639863.933|219852.732|100.453 +639870.255|219850.912|101.118 +639882.416|219847.513|101.017 +639888.500|219845.834|100.715 +639894.706|219844.051|101.282 +639931.498|219833.858|99.807 +639937.579|219832.188|99.347 +639943.757|219830.481|99.030 +639949.881|219828.808|98.490 +639955.971|219827.128|98.109 +639962.222|219825.394|97.890 +639974.667|219821.934|97.551 +639981.004|219820.164|97.490 +639987.112|219818.490|96.972 +639999.505|219815.104|95.854 +640012.133|219811.580|95.677 +640018.421|219809.831|95.497 +640024.758|219808.051|95.589 +640031.195|219806.225|95.893 +640043.912|219802.674|95.723 +640050.047|219801.025|94.814 +640056.488|219799.215|94.875 +640075.699|219793.798|95.336 +640077.415|219797.654|94.726 +640071.179|219799.391|94.982 +640052.330|219804.698|95.055 +640045.884|219806.576|94.247 +640021.173|219813.437|95.616 +640014.888|219815.223|95.442 +640008.765|219816.920|95.793 +639996.402|219820.371|96.274 +639990.352|219822.017|97.049 +639971.835|219827.217|97.301 +639947.561|219833.907|99.356 +639917.346|219842.304|100.950 +639911.275|219843.993|101.206 +639905.212|219845.678|101.508 +639893.044|219849.117|101.392 +639886.991|219850.814|101.496 +639880.965|219852.515|101.453 +639874.854|219854.243|101.355 +639856.487|219859.501|100.194 +639837.970|219864.853|98.356 +639832.026|219866.533|98.283 +639820.127|219869.874|98.432 +639813.912|219871.687|97.588 +639795.670|219876.939|96.064 +639789.650|219878.670|95.582 +639783.682|219880.371|95.326 +639777.717|219882.047|95.369 +639771.853|219883.705|95.299 +639765.921|219885.379|95.256 +639760.063|219887.031|95.250 +639754.278|219888.655|95.281 +639748.389|219890.304|95.445 +639742.702|219891.874|95.884 +639736.938|219893.465|96.302 +639731.354|219894.977|97.152 +639725.813|219896.483|97.905 +639720.024|219898.104|98.027 +639714.303|219899.704|98.152 +639708.604|219901.295|98.371 +639702.949|219902.877|98.533 +639697.228|219904.474|98.707 +639691.541|219906.072|98.783 +639685.896|219907.644|99.014 +639680.254|219909.214|99.277 +639674.591|219910.793|99.490 +639668.964|219912.372|99.597 +639663.325|219913.954|99.676 +639657.741|219915.523|99.728 +639652.197|219917.072|99.923 +639646.641|219918.623|100.106 +639641.066|219920.184|100.237 +639635.467|219921.757|100.298 +639629.913|219923.323|100.289 +639624.430|219924.866|100.307 +639618.879|219926.426|100.359 +639613.356|219927.987|100.276 +639607.775|219929.578|100.020 +639602.265|219931.132|100.017 +639596.803|219932.675|99.956 +639658.415|219917.102|99.822 +639663.987|219915.545|99.719 +639669.571|219913.981|99.670 +639675.109|219912.442|99.487 +639680.711|219910.884|99.295 +639686.237|219909.348|99.094 +639691.797|219907.812|98.783 +639697.466|219906.230|98.643 +639703.068|219904.666|98.515 +639708.713|219903.097|98.310 +639714.413|219901.515|98.073 +639720.107|219899.936|97.826 +639725.794|219898.357|97.579 +639731.360|219896.845|96.890 +639736.938|219895.327|96.259 +639742.638|219893.758|95.845 +639748.325|219892.194|95.403 +639754.092|219890.585|95.268 +639759.941|219888.951|95.198 +639765.796|219887.308|95.183 +639771.725|219885.641|95.204 +639777.592|219883.989|95.268 +639783.447|219882.343|95.314 +639789.424|219880.645|95.579 +639795.432|219878.926|96.006 +639801.555|219877.161|96.640 +639807.578|219875.451|96.899 +639813.699|219873.684|97.573 +639819.767|219871.943|98.079 +639831.935|219868.481|98.719 +639837.857|219866.838|98.414 +639844.078|219865.042|99.088 +639856.359|219861.519|100.121 +639862.577|219859.739|100.587 +639881.020|219854.490|101.532 +639966.745|219830.679|98.124 +639972.829|219829.045|97.122 +639985.381|219825.504|97.372 +639997.740|219822.130|96.082 +640004.080|219820.346|96.116 +640016.574|219816.902|95.268 +640022.883|219815.134|95.198 +640029.107|219813.424|94.708 +640048.167|219808.072|94.705 +640054.668|219806.219|95.086 +640073.809|219800.870|94.747 +640080.207|219799.081|94.668 +640077.821|219803.930|94.741 +640071.551|219805.698|94.805 +640052.650|219811.023|94.985 +640015.209|219821.566|95.421 +640009.070|219823.282|95.692 +640002.821|219825.037|95.777 +639996.683|219826.750|96.082 +639972.186|219833.590|97.155 +639960.101|219836.900|98.576 +639923.756|219847.017|100.590 +639917.785|219848.678|100.971 +639905.761|219852.021|101.697 +639899.741|219853.707|101.910 +639875.537|219860.574|101.520 +639869.441|219862.318|101.212 +639863.311|219864.082|100.785 +639851.122|219867.600|99.761 +639844.962|219869.398|99.008 +639839.022|219871.062|99.197 +639833.026|219872.757|99.182 +639827.171|219874.391|99.472 +639821.157|219876.113|99.152 +639808.670|219879.840|96.448 +639802.677|219881.547|96.293 +639796.770|219883.221|96.232 +639790.769|219884.946|95.808 +639784.880|219886.628|95.592 +639779.009|219888.296|95.470 +639773.148|219889.957|95.406 +639767.238|219891.624|95.439 +639761.358|219893.291|95.336 +639755.601|219894.910|95.467 +639749.852|219896.519|95.649 +639744.110|219898.129|95.869 +639738.465|219899.698|96.210 +639732.780|219901.268|96.686 +639727.099|219902.838|97.167 +639721.487|219904.386|97.689 +639715.864|219905.941|98.164 +639710.252|219907.504|98.451 +639704.629|219909.074|98.713 +639698.993|219910.653|98.938 +639693.370|219912.219|99.234 +639687.749|219913.783|99.551 +639682.202|219915.325|99.892 +639676.679|219916.874|100.090 +639671.067|219918.447|100.240 +639665.502|219920.016|100.325 +639659.884|219921.607|100.249 +639654.276|219923.195|100.225 +639648.713|219924.756|100.374 +639643.199|219926.307|100.462 +639637.637|219927.883|100.410 +639632.138|219929.425|100.581 +639626.655|219930.974|100.596 +639621.171|219932.522|100.621 +639615.676|219934.077|100.624 +639610.098|219935.671|100.371 +639604.551|219937.250|100.237 +639599.073|219938.804|100.121 +639658.583|219923.646|100.228 +639669.827|219920.480|100.353 +639675.450|219918.913|100.203 +639686.573|219915.822|99.770 +639692.175|219914.280|99.353 +639697.743|219912.738|99.066 +639703.376|219911.177|98.789 +639709.003|219909.616|98.505 +639714.626|219908.059|98.222 +639720.274|219906.504|97.795 +639725.886|219904.971|97.253 +639731.515|219903.423|96.783 +639737.206|219901.862|96.293 +639742.869|219900.296|95.973 +639748.602|219898.708|95.686 +639754.348|219897.110|95.451 +639760.109|219895.504|95.296 +639766.013|219893.837|95.445 +639771.856|219892.200|95.375 +639777.732|219890.545|95.457 +639783.676|219888.869|95.558 +639789.574|219887.195|95.774 +639795.554|219885.495|96.061 +639801.495|219883.815|96.219 +639807.502|219882.117|96.384 +639813.781|219880.258|97.673 +639832.011|219875.019|99.280 +639838.007|219873.336|99.261 +639844.033|219871.635|99.383 +639850.022|219869.953|99.374 +639856.225|219868.145|100.292 +639862.442|219866.365|100.731 +639868.602|219864.597|101.243 +639874.686|219862.875|101.444 +639880.752|219861.159|101.608 +639886.869|219859.434|101.712 +639892.971|219857.715|101.785 +639899.049|219856.008|101.770 +639923.278|219849.266|100.932 +639929.346|219847.602|100.374 +639935.491|219845.892|100.176 +639947.622|219842.542|99.399 +639953.809|219840.823|99.149 +639984.503|219832.368|96.951 +639996.832|219828.966|96.122 +640003.023|219827.256|95.701 +640009.298|219825.491|95.729 +640034.704|219818.316|96.290 +640053.519|219813.129|94.982 +640072.560|219807.798|94.744 +640078.964|219806.006|94.662 +640080.043|219809.745|94.759 +640054.823|219816.835|95.125 +640048.633|219818.539|95.704 +640042.470|219820.221|96.457 +640029.778|219823.858|95.710 +640023.490|219825.647|95.521 +639998.652|219832.602|96.250 +639986.164|219836.150|95.909 +639943.666|219847.849|99.892 +639931.513|219851.253|100.228 +639913.509|219856.212|101.895 +639907.501|219857.889|102.148 +639901.490|219859.568|102.398 +639895.288|219861.360|101.831 +639889.311|219863.034|101.989 +639883.212|219864.783|101.639 +639877.131|219866.496|101.672 +639865.009|219869.959|101.133 +639858.870|219871.724|100.706 +639852.677|219873.537|99.795 +639834.690|219878.640|99.438 +639828.750|219880.322|99.395 +639822.706|219882.038|99.237 +639798.395|219889.109|96.405 +639792.402|219890.832|96.034 +639786.483|219892.523|95.720 +639780.607|219894.194|95.579 +639774.754|219895.846|95.564 +639768.890|219897.507|95.515 +639763.138|219899.119|95.659 +639757.332|219900.762|95.619 +639751.590|219902.365|95.835 +639745.841|219903.972|96.043 +639740.129|219905.560|96.399 +639734.579|219907.093|96.866 +639728.928|219908.659|97.231 +639723.335|219910.196|97.823 +639717.757|219911.741|98.222 +639712.167|219913.292|98.594 +639706.653|219914.816|99.021 +639701.063|219916.365|99.417 +639689.895|219919.471|100.063 +639684.372|219921.016|100.261 +639678.754|219922.592|100.386 +639673.207|219924.149|100.520 +639667.626|219925.722|100.566 +639656.486|219928.868|100.538 +639650.911|219930.453|100.407 +639645.400|219931.998|100.529 +639639.950|219933.531|100.624 +639634.491|219935.067|100.709 +639629.011|219936.613|100.734 +639623.528|219938.158|100.767 +639618.099|219939.691|100.773 +639612.600|219941.258|100.554 +639607.135|219942.809|100.471 +639601.689|219944.364|100.234 +639662.710|219928.852|100.688 +639668.251|219927.310|100.478 +639673.899|219925.728|100.417 +639679.544|219924.149|100.353 +639685.161|219922.580|100.218 +639690.821|219921.007|100.005 +639696.506|219919.419|99.886 +639702.056|219917.901|99.316 +639707.695|219916.353|98.829 +639713.337|219914.786|98.600 +639719.000|219913.222|98.231 +639724.630|219911.677|97.747 +639730.302|219910.125|97.180 +639736.008|219908.553|96.747 +639741.644|219907.001|96.332 +639747.429|219905.404|95.973 +639753.187|219903.801|95.777 +639759.039|219902.182|95.445 +639764.937|219900.515|95.573 +639770.768|219898.884|95.454 +639776.623|219897.239|95.451 +639782.557|219895.568|95.506 +639788.522|219893.880|95.698 +639794.557|219892.167|95.936 +639800.601|219890.426|96.491 +639806.819|219888.585|97.774 +639812.937|219886.820|98.411 +639819.091|219885.050|98.954 +639825.086|219883.352|99.152 +639831.139|219881.636|99.338 +639837.168|219879.935|99.444 +639849.214|219876.530|99.688 +639855.368|219874.772|100.112 +639861.522|219872.989|100.837 +639867.676|219871.224|101.316 +639873.833|219869.477|101.541 +639879.886|219867.770|101.639 +639886.019|219866.036|101.809 +639892.036|219864.344|101.800 +639898.296|219862.549|102.282 +639916.356|219857.550|101.285 +639922.424|219855.868|100.996 +639934.506|219852.527|100.231 +639940.618|219850.860|99.591 +639958.857|219845.834|98.228 +639976.987|219840.896|96.149 +639989.386|219837.427|95.942 +640001.889|219833.910|96.000 +640008.162|219832.148|96.000 +640020.613|219828.677|95.613 +640052.001|219819.880|95.320 +640058.304|219818.134|94.976 +640064.583|219816.378|94.872 +640070.947|219814.586|94.897 +640077.284|219812.812|94.808 +640075.687|219817.698|94.979 +640069.426|219819.453|95.125 +640063.123|219821.243|95.043 +640056.881|219822.983|95.326 +640050.666|219824.705|95.771 +640031.902|219830.021|95.552 +640019.464|219833.511|95.896 +640007.006|219837.007|96.210 +639982.141|219844.042|96.055 +639976.039|219845.745|96.302 +639970.010|219847.379|97.253 +639951.764|219852.445|98.435 +639945.793|219854.085|99.072 +639939.871|219855.694|99.944 +639927.786|219859.032|100.932 +639897.635|219867.444|102.309 +639879.362|219872.632|101.925 +639873.284|219874.363|101.715 +639867.149|219876.107|101.566 +639861.062|219877.859|101.075 +639854.847|219879.688|100.075 +639848.790|219881.401|100.057 +639842.752|219883.120|99.844 +639836.690|219884.851|99.566 +639830.722|219886.549|99.423 +639824.729|219888.259|99.185 +639818.713|219889.978|98.896 +639812.541|219891.767|98.268 +639806.414|219893.566|97.314 +639800.309|219895.352|96.479 +639794.304|219897.080|96.055 +639788.333|219898.784|95.796 +639782.384|219900.475|95.646 +639776.534|219902.128|95.643 +639770.670|219903.786|95.595 +639764.824|219905.435|95.640 +639759.078|219907.041|95.832 +639753.354|219908.638|96.116 +639747.572|219910.244|96.454 +639741.857|219911.832|96.802 +639736.209|219913.402|97.155 +639730.497|219914.984|97.548 +639724.883|219916.532|98.057 +639719.342|219918.059|98.591 +639713.617|219919.666|98.731 +639708.216|219921.110|99.801 +639696.997|219924.247|100.237 +639691.306|219925.847|100.310 +639685.649|219927.447|100.276 +639680.031|219929.023|100.407 +639674.478|219930.584|100.529 +639668.879|219932.147|100.743 +639663.359|219933.705|100.782 +639657.790|219935.268|100.898 +639652.097|219936.914|100.371 +639646.543|219938.484|100.346 +639641.151|219939.969|100.877 +639635.677|219941.514|100.907 +639630.099|219943.093|100.849 +639624.680|219944.623|100.865 +639619.199|219946.165|100.926 +639613.679|219947.744|100.651 +639608.266|219949.283|100.517 +639667.474|219934.537|100.538 +639673.058|219932.973|100.478 +639678.709|219931.388|100.417 +639690.123|219928.176|100.505 +639695.753|219926.600|100.432 +639701.471|219924.994|100.429 +639712.602|219921.940|99.408 +639718.177|219920.428|98.691 +639723.819|219918.876|98.237 +639729.446|219917.331|97.740 +639735.170|219915.749|97.366 +639740.876|219914.179|96.930 +639746.600|219912.597|96.579 +639752.400|219910.991|96.271 +639758.146|219909.391|96.037 +639763.961|219907.794|95.570 +639769.820|219906.148|95.537 +639775.705|219904.487|95.622 +639781.701|219902.801|95.640 +639787.638|219901.128|95.707 +639793.622|219899.427|95.973 +639799.666|219897.708|96.241 +639805.832|219895.919|97.012 +639812.007|219894.120|97.856 +639818.265|219892.292|98.786 +639824.303|219890.569|99.127 +639830.362|219888.853|99.316 +639836.477|219887.122|99.481 +639842.640|219885.360|99.868 +639848.690|219883.644|100.090 +639854.755|219881.938|100.118 +639861.086|219880.072|101.276 +639873.406|219876.579|101.688 +639879.511|219874.842|101.989 +639885.635|219873.132|101.813 +639910.174|219866.234|101.816 +639916.182|219864.591|101.221 +639922.333|219862.857|101.285 +639928.538|219861.132|101.020 +639934.601|219859.474|100.426 +639952.761|219854.530|98.280 +639965.142|219851.086|97.792 +639977.316|219847.766|96.381 +639983.546|219846.038|96.082 +639989.883|219844.240|96.311 +640015.010|219837.196|96.076 +640021.253|219835.449|95.948 +640027.577|219833.672|95.939 +640033.871|219831.914|95.796 +640040.379|219830.012|96.789 +640046.673|219828.274|96.351 +640052.827|219826.607|95.521 +640059.197|219824.815|95.521 +640065.452|219823.102|94.915 +640071.752|219821.331|94.930 +640078.171|219819.530|94.894 +640077.254|219823.760|94.866 +640070.954|219825.543|94.808 +640064.702|219827.290|95.034 +640058.585|219828.969|95.674 +640052.425|219830.679|96.073 +640046.283|219832.374|96.594 +640033.609|219836.019|95.640 +640021.201|219839.482|96.174 +640014.977|219841.250|96.049 +640008.777|219842.996|96.055 +639996.518|219846.401|96.823 +639990.157|219848.248|96.110 +639971.835|219853.369|96.832 +639929.654|219864.978|100.852 +639923.604|219866.661|101.197 +639875.329|219880.243|101.941 +639869.258|219881.971|101.779 +639850.881|219887.278|100.234 +639844.941|219888.939|100.432 +639838.759|219890.743|99.673 +639832.688|219892.481|99.383 +639826.702|219894.184|99.200 +639820.700|219895.897|98.972 +639814.540|219897.699|98.143 +639808.380|219899.497|97.338 +639802.290|219901.274|96.564 +639796.206|219903.027|96.116 +639790.266|219904.715|95.994 +639784.356|219906.404|95.738 +639778.446|219908.071|95.774 +639772.581|219909.729|95.735 +639766.638|219911.412|95.686 +639760.913|219912.991|96.216 +639755.186|219914.588|96.506 +639749.471|219916.176|96.850 +639743.747|219917.773|97.164 +639738.133|219919.303|97.911 +639732.570|219920.824|98.606 +639726.773|219922.452|98.707 +639721.018|219924.076|98.728 +639715.431|219925.609|99.365 +639698.679|219930.245|100.666 +639692.979|219931.855|100.718 +639681.723|219935.003|101.139 +639676.145|219936.576|101.185 +639659.281|219941.337|101.215 +639653.672|219942.940|100.990 +639636.960|219947.659|101.035 +639631.480|219949.204|101.087 +639625.951|219950.774|100.983 +639620.437|219952.334|100.950 +639614.908|219953.901|100.880 +639609.406|219955.471|100.694 +639672.796|219939.350|101.206 +639678.331|219937.795|101.215 +639683.902|219936.238|101.130 +639689.404|219934.717|100.816 +639695.015|219933.150|100.663 +639700.587|219931.590|100.624 +639706.266|219930.005|100.499 +639717.232|219927.027|99.133 +639722.862|219925.463|98.874 +639728.589|219923.866|98.737 +639734.313|219922.269|98.600 +639739.815|219920.775|97.920 +639745.347|219919.279|97.113 +639751.087|219917.691|96.817 +639756.799|219916.115|96.448 +639762.532|219914.524|96.168 +639768.183|219912.978|95.601 +639774.105|219911.302|95.808 +639780.015|219909.644|95.747 +639785.825|219908.007|95.826 +639791.784|219906.322|95.985 +639797.718|219904.648|96.073 +639803.753|219902.917|96.570 +639809.880|219901.131|97.463 +639816.003|219899.363|98.097 +639822.133|219897.589|98.795 +639828.152|219895.879|99.069 +639834.172|219894.163|99.374 +639840.256|219892.432|99.694 +639846.431|219890.643|100.410 +639852.463|219888.939|100.563 +639864.863|219885.363|101.779 +639870.873|219883.687|101.636 +639876.975|219881.953|101.895 +639883.044|219880.240|102.038 +639889.140|219878.527|102.038 +639895.218|219876.823|101.974 +639901.295|219875.119|101.941 +639937.911|219864.948|100.398 +639950.051|219861.616|99.322 +639956.217|219859.913|98.935 +639968.315|219856.627|97.430 +639993.214|219849.684|96.716 +639999.405|219847.977|96.268 +640005.708|219846.224|96.055 +640011.959|219844.478|95.930 +640024.682|219840.881|96.216 +640037.401|219837.281|96.582 +640050.075|219833.727|96.482 +640056.329|219832.017|95.851 +640062.562|219830.323|95.098 +640068.887|219828.561|94.869 +640075.227|219826.787|94.756 +640078.766|219829.905|94.915 +640072.493|219831.673|95.006 +640066.238|219833.428|95.201 +640060.081|219835.138|95.604 +640053.985|219836.809|96.351 +640047.731|219838.558|96.616 +640035.152|219842.173|95.811 +640028.998|219843.877|96.314 +640022.829|219845.614|96.430 +640016.608|219847.385|96.290 +640010.460|219849.104|96.549 +640004.211|219850.887|96.332 +639985.588|219856.197|95.771 +639979.401|219857.934|95.945 +639961.585|219862.784|98.542 +639943.593|219867.755|100.106 +639937.545|219869.441|100.435 +639925.490|219872.830|100.703 +639913.521|219876.158|101.447 +639907.559|219877.829|101.639 +639901.518|219879.527|101.794 +639895.495|219881.206|102.062 +639889.506|219882.892|102.184 +639877.436|219886.330|101.843 +639871.449|219888.027|101.761 +639865.457|219889.725|101.691 +639853.384|219893.172|101.221 +639847.306|219894.919|100.859 +639841.097|219896.757|99.709 +639835.044|219898.506|99.219 +639829.143|219900.183|99.109 +639822.986|219901.984|98.265 +639816.972|219903.722|97.743 +639811.004|219905.432|97.439 +639804.914|219907.212|96.668 +639798.910|219908.937|96.268 +639793.058|219910.595|96.213 +639787.166|219912.274|96.037 +639781.305|219913.935|95.988 +639775.437|219915.600|95.933 +639769.640|219917.240|95.918 +639763.971|219918.806|96.399 +639758.277|219920.385|96.799 +639752.614|219921.967|97.076 +639746.856|219923.579|97.271 +639741.278|219925.091|98.143 +639735.697|219926.621|98.774 +639729.976|219928.231|98.893 +639724.313|219929.825|98.990 +639718.644|219931.404|99.335 +639707.659|219934.415|100.596 +639701.983|219936.009|100.712 +639696.357|219937.597|100.773 +639690.745|219939.173|100.910 +639685.241|219940.709|101.191 +639679.620|219942.288|101.328 +639674.048|219943.858|101.410 +639668.470|219945.427|101.480 +639662.874|219947.009|101.517 +639657.275|219948.607|101.316 +639635.028|219954.922|100.974 +639629.593|219956.443|101.185 +639624.073|219958.007|101.130 +639618.629|219959.549|101.099 +639613.052|219961.140|100.889 +639673.500|219945.641|101.325 +639679.071|219944.080|101.215 +639684.652|219942.511|101.163 +639690.267|219940.944|100.996 +639695.765|219939.417|100.685 +639701.386|219937.844|100.572 +639707.019|219936.259|100.529 +639712.584|219934.714|100.255 +639718.089|219933.217|99.530 +639723.624|219931.702|98.932 +639729.351|219930.099|98.783 +639735.008|219928.517|98.649 +639740.656|219926.957|98.249 +639746.146|219925.481|97.280 +639751.757|219923.921|97.024 +639757.509|219922.318|96.796 +639763.154|219920.751|96.451 +639768.853|219919.178|96.052 +639774.578|219917.584|95.771 +639780.472|219915.917|95.896 +639786.334|219914.265|95.915 +639792.171|219912.604|96.125 +639798.044|219910.942|96.223 +639804.015|219909.242|96.475 +639809.950|219907.544|96.860 +639815.991|219905.819|97.167 +639822.005|219904.090|97.643 +639828.183|219902.262|98.826 +639834.181|219900.558|99.033 +639840.259|219898.802|99.588 +639846.514|219896.946|100.892 +639852.585|219895.212|101.212 +639864.643|219891.792|101.541 +639870.660|219890.085|101.703 +639876.695|219888.387|101.666 +639894.867|219883.245|101.992 +639900.896|219881.566|101.733 +639906.864|219879.901|101.520 +639912.908|219878.210|101.361 +639918.986|219876.518|101.078 +639924.969|219874.884|100.392 +639931.111|219873.129|100.724 +639943.199|219869.779|99.981 +639967.306|219863.180|97.414 +639973.423|219861.498|96.832 +639979.455|219859.870|95.875 +640023.310|219847.486|96.274 +640029.629|219845.688|96.555 +640035.834|219843.984|95.945 +640048.602|219840.335|96.655 +640054.842|219838.604|96.280 +640061.102|219836.885|95.689 +640067.378|219835.154|95.183 +640073.712|219833.380|95.031 +640080.067|219831.594|95.003 +640079.951|219835.605|95.168 +640073.730|219837.367|95.189 +640067.461|219839.131|95.314 +640061.233|219840.869|95.701 +640055.226|219842.478|96.927 +640048.798|219844.322|96.616 +640036.328|219847.867|96.408 +640017.665|219853.137|96.640 +640011.392|219854.917|96.610 +639992.699|219860.257|95.985 +639974.192|219865.484|96.165 +639962.234|219868.740|97.966 +639956.248|219870.392|98.545 +639950.335|219871.998|99.459 +639932.220|219877.049|100.575 +639926.185|219878.749|100.688 +639920.129|219880.441|101.014 +639914.219|219882.087|101.435 +639908.236|219883.772|101.535 +639902.143|219885.507|101.465 +639896.114|219887.195|101.703 +639890.246|219888.832|102.075 +639884.214|219890.545|102.041 +639878.204|219892.261|101.849 +639872.111|219894.005|101.602 +639866.140|219895.696|101.611 +639860.123|219897.415|101.453 +639854.124|219899.137|101.121 +639848.120|219900.844|101.063 +639835.836|219904.453|99.338 +639829.896|219906.154|99.069 +639823.919|219907.879|98.670 +639817.628|219909.760|97.320 +639811.721|219911.439|97.250 +639805.658|219913.207|96.594 +639799.757|219914.899|96.335 +639793.887|219916.569|96.219 +639788.013|219918.242|96.107 +639782.170|219919.897|96.131 +639776.315|219921.577|95.869 +639770.566|219923.174|96.296 +639764.940|219924.741|96.680 +639759.203|219926.350|96.920 +639753.540|219927.935|97.192 +639747.883|219929.514|97.503 +639742.250|219931.081|97.923 +639736.676|219932.611|98.576 +639731.058|219934.186|98.816 +639725.374|219935.796|98.847 +639719.857|219937.311|99.493 +639714.279|219938.862|99.926 +639708.741|219940.404|100.279 +639703.202|219941.947|100.639 +639697.606|219943.522|100.807 +639692.092|219945.068|101.044 +639686.563|219946.622|101.233 +639681.004|219948.189|101.346 +639675.438|219949.759|101.447 +639669.924|219951.316|101.505 +639664.423|219952.868|101.617 +639658.872|219954.447|101.578 +639653.285|219956.038|101.444 +639647.634|219957.684|100.874 +639642.172|219959.226|100.959 +639636.783|219960.728|101.297 +639631.361|219962.265|101.313 +639625.875|219963.831|101.136 +639620.464|219965.361|101.215 +639614.944|219966.943|100.962 +639678.044|219950.646|101.346 +639683.622|219949.079|101.267 +639689.261|219947.497|101.163 +639694.903|219945.930|100.852 +639700.590|219944.336|100.724 +639706.162|219942.788|100.441 +639711.780|219941.230|100.090 +639717.394|219939.676|99.740 +639723.045|219938.115|99.292 +639728.647|219936.582|98.682 +639734.377|219934.976|98.548 +639740.038|219933.409|98.176 +639745.713|219931.849|97.628 +639751.458|219930.251|97.350 +639757.259|219928.639|97.027 +639763.007|219927.039|96.792 +639768.805|219925.426|96.497 +639774.556|219923.838|96.052 +639780.411|219922.189|96.009 +639786.285|219920.531|96.052 +639792.238|219918.846|96.162 +639798.187|219917.160|96.283 +639804.119|219915.484|96.363 +639810.236|219913.698|97.189 +639816.277|219911.976|97.466 +639822.465|219910.165|98.368 +639828.594|219908.385|99.051 +639834.596|219906.678|99.258 +639846.849|219903.133|100.490 +639852.954|219901.381|100.919 +639859.035|219899.643|101.273 +639865.082|219897.921|101.517 +639871.138|219896.211|101.541 +639877.219|219894.486|101.678 +639883.291|219892.767|101.816 +639889.353|219891.048|101.931 +639901.426|219887.662|101.715 +639907.522|219885.940|101.752 +639913.497|219884.294|101.273 +639919.532|219882.605|101.075 +639925.573|219880.935|100.630 +639949.832|219874.186|99.438 +640011.082|219857.139|96.494 +640017.391|219855.347|96.680 +640023.664|219853.579|96.683 +640029.866|219851.829|96.710 +640048.743|219846.492|96.924 +640055.107|219844.679|97.204 +640061.090|219843.094|95.811 +640067.372|219841.359|95.329 +640073.651|219839.598|95.201 +640079.927|219837.839|95.092 +640076.208|219843.109|95.406 +640069.945|219844.871|95.576 +640063.660|219846.645|95.640 +640057.542|219848.303|96.640 +640051.373|219850.025|97.012 +640045.061|219851.838|96.658 +640038.675|219853.673|96.302 +640026.291|219857.130|96.960 +640020.027|219858.928|96.637 +640013.803|219860.699|96.527 +640001.297|219864.250|96.421 +639995.116|219865.987|96.600 +639988.889|219867.752|96.570 +639982.659|219869.544|96.219 +639976.474|219871.300|96.131 +639970.308|219873.022|96.469 +639928.221|219884.644|100.508 +639922.250|219886.305|100.935 +639916.221|219887.979|101.413 +639904.282|219891.310|102.075 +639892.118|219894.751|102.123 +639886.061|219896.477|102.002 +639879.996|219898.205|101.861 +639873.940|219899.948|101.502 +639867.904|219901.655|101.535 +639861.876|219903.377|101.340 +639855.734|219905.163|100.703 +639849.738|219906.861|100.703 +639831.435|219912.174|98.975 +639825.370|219913.926|98.512 +639819.310|219915.712|97.561 +639813.235|219917.465|97.113 +639807.179|219919.227|96.491 +639801.248|219920.915|96.399 +639795.399|219922.574|96.369 +639789.507|219924.256|96.201 +639783.645|219925.917|96.165 +639777.863|219927.554|96.192 +639772.075|219929.172|96.472 +639766.275|219930.797|96.728 +639760.502|219932.425|96.850 +639754.842|219934.007|97.146 +639749.185|219935.585|97.478 +639743.622|219937.109|98.167 +639738.020|219938.655|98.719 +639732.418|219940.218|99.036 +639726.724|219941.816|99.286 +639721.125|219943.373|99.645 +639715.519|219944.937|99.987 +639709.978|219946.479|100.343 +639704.348|219948.055|100.627 +639698.859|219949.588|100.947 +639693.254|219951.164|101.115 +639687.639|219952.743|101.267 +639682.144|219954.291|101.364 +639676.584|219955.858|101.505 +639671.067|219957.415|101.560 +639665.550|219958.973|101.636 +639660.043|219960.524|101.761 +639654.517|219962.103|101.602 +639648.936|219963.691|101.511 +639643.465|219965.255|101.334 +639637.935|219966.828|101.227 +639632.489|219968.376|101.169 +639627.142|219969.885|101.236 +639621.653|219971.451|101.078 +639681.671|219956.388|101.352 +639687.222|219954.837|101.185 +639692.842|219953.261|101.035 +639698.457|219951.688|100.874 +639704.092|219950.121|100.566 +639709.670|219948.567|100.313 +639715.300|219947.003|100.005 +639720.893|219945.455|99.588 +639726.511|219943.894|99.283 +639732.226|219942.294|99.088 +639737.898|219940.721|98.749 +639743.582|219939.136|98.475 +639749.224|219937.594|97.807 +639754.915|219936.024|97.338 +639760.578|219934.467|96.774 +639766.372|219932.858|96.454 +639772.109|219931.257|96.192 +639777.924|219929.633|95.988 +639783.767|219927.990|95.909 +639789.656|219926.320|96.027 +639795.688|219924.607|96.186 +639801.626|219922.924|96.274 +639807.533|219921.260|96.256 +639813.589|219919.526|96.582 +639819.670|219917.758|97.298 +639825.906|219915.938|98.115 +639832.066|219914.158|98.673 +639850.436|219908.854|100.319 +639856.578|219907.096|100.633 +639862.744|219905.325|101.069 +639868.886|219903.566|101.435 +639874.918|219901.868|101.358 +639881.115|219900.094|101.724 +639887.214|219898.354|101.983 +639893.355|219896.608|102.157 +639899.500|219894.879|102.081 +639905.563|219893.176|101.974 +639911.698|219891.450|101.904 +639917.596|219889.847|101.099 +639923.698|219888.158|100.624 +639929.764|219886.473|100.289 +639935.829|219884.784|99.975 +639954.117|219879.725|98.646 +639960.210|219878.057|97.926 +639966.169|219876.451|96.881 +639972.210|219874.796|96.241 +639978.465|219873.050|95.991 +639984.692|219871.294|95.957 +639991.056|219869.450|96.610 +640003.611|219865.893|96.826 +640009.780|219864.192|96.262 +640016.096|219862.397|96.457 +640022.405|219860.601|96.646 +640041.388|219855.222|96.978 +640047.755|219853.430|96.899 +640054.074|219851.643|96.930 +640060.319|219849.909|96.582 +640066.503|219848.239|95.579 +640072.795|219846.465|95.534 +640079.211|219844.660|95.448 +640078.503|219849.010|95.826 +640066.086|219852.488|96.405 +640059.990|219854.188|96.799 +640053.738|219855.941|97.079 +640047.435|219857.752|96.768 +640041.303|219859.471|97.036 +640028.772|219863.031|96.933 +640022.539|219864.811|96.753 +640010.121|219868.337|96.698 +640003.992|219870.047|97.103 +639997.606|219871.919|96.265 +639991.544|219873.629|96.393 +639985.250|219875.439|96.061 +639972.994|219878.886|96.433 +639955.026|219883.833|98.435 +639949.003|219885.510|98.868 +639942.959|219887.198|99.222 +639937.073|219888.811|100.002 +639907.108|219897.153|102.047 +639901.109|219898.848|102.120 +639882.925|219904.033|101.697 +639876.869|219905.758|101.614 +639864.677|219909.263|100.926 +639858.706|219910.970|100.718 +639852.698|219912.680|100.651 +639840.503|219916.212|99.597 +639834.395|219917.992|98.932 +639828.329|219919.748|98.472 +639822.197|219921.537|97.756 +639816.131|219923.308|97.082 +639810.166|219925.018|96.826 +639804.171|219926.743|96.472 +639798.279|219928.407|96.536 +639792.390|219930.090|96.375 +639786.422|219931.794|96.195 +639780.585|219933.443|96.280 +639774.846|219935.055|96.482 +639769.070|219936.668|96.835 +639763.337|219938.274|97.091 +639757.716|219939.834|97.542 +639752.074|219941.389|98.164 +639746.390|219942.965|98.652 +639740.736|219944.541|99.018 +639735.057|219946.129|99.307 +639729.351|219947.732|99.505 +639723.700|219949.320|99.673 +639718.156|219950.868|99.999 +639712.563|219952.423|100.414 +639706.985|219953.989|100.636 +639701.383|219955.547|101.044 +639695.832|219957.114|101.163 +639690.206|219958.699|101.270 +639684.671|219960.253|101.474 +639679.102|219961.826|101.578 +639673.591|219963.383|101.654 +639667.992|219964.968|101.688 +639662.481|219966.523|101.797 +639656.925|219968.099|101.770 +639651.426|219969.662|101.721 +639645.827|219971.259|101.593 +639640.206|219972.884|101.172 +639634.939|219974.338|101.715 +639623.784|219977.550|101.032 +639687.231|219961.689|101.447 +639692.775|219960.140|101.246 +639698.335|219958.580|101.118 +639703.916|219957.025|100.843 +639709.503|219955.468|100.606 +639715.065|219953.919|100.292 +639720.671|219952.368|99.904 +639726.297|219950.801|99.603 +639731.954|219949.219|99.435 +639737.660|219947.625|99.200 +639743.290|219946.055|98.957 +639748.926|219944.498|98.502 +639754.577|219942.934|98.115 +639760.212|219941.392|97.439 +639765.842|219939.837|96.997 +639771.557|219938.252|96.637 +639777.360|219936.634|96.366 +639783.176|219935.006|96.165 +639788.992|219933.379|95.982 +639795.011|219931.635|96.591 +639800.931|219929.968|96.579 +639812.818|219926.594|96.817 +639818.886|219924.856|97.183 +639824.967|219923.086|97.902 +639831.142|219921.281|98.755 +639837.254|219919.510|99.377 +639849.568|219915.950|100.538 +639855.597|219914.240|100.645 +639861.674|219912.521|100.688 +639867.807|219910.747|101.264 +639873.991|219908.986|101.517 +639880.057|219907.266|101.587 +639886.177|219905.517|101.907 +639892.289|219903.792|101.925 +639898.403|219902.060|101.992 +639922.732|219895.266|100.993 +639934.827|219891.917|100.151 +639946.878|219888.634|98.563 +639952.987|219886.939|98.155 +639959.107|219885.260|97.524 +639965.221|219883.556|97.198 +639971.299|219881.901|96.393 +639983.729|219878.414|96.119 +639990.017|219876.622|96.366 +639996.277|219874.866|96.198 +640002.523|219873.098|96.283 +640009.052|219871.190|97.155 +640015.212|219869.496|96.558 +640021.579|219867.688|96.674 +640027.949|219865.881|96.832 +640040.516|219862.345|96.683 +640046.868|219860.568|96.485 +640053.275|219858.724|96.939 +640059.648|219856.929|96.902 +640065.894|219855.191|96.564 +640072.206|219853.457|95.896 +640078.583|219851.656|95.933 +640080.174|219855.533|95.781 +640074.038|219857.209|96.646 +640067.777|219858.968|96.863 +640061.590|219860.729|96.786 +640055.424|219862.446|97.195 +640049.093|219864.271|96.762 +640042.927|219865.987|97.213 +640030.500|219869.502|97.335 +640024.267|219871.306|96.838 +640018.001|219873.083|96.860 +639999.502|219878.323|96.917 +639993.303|219880.093|96.728 +639987.133|219881.846|96.686 +639980.858|219883.663|96.180 +639974.746|219885.397|96.158 +639968.711|219887.083|96.506 +639962.597|219888.792|96.829 +639944.806|219893.669|99.164 +639932.931|219896.955|100.310 +639921.025|219900.277|101.072 +639903.011|219905.355|101.538 +639897.053|219907.026|101.825 +639891.051|219908.720|101.947 +639885.053|219910.430|101.822 +639879.045|219912.146|101.681 +639866.926|219915.612|101.319 +639860.867|219917.374|100.755 +639854.926|219919.062|100.712 +639848.976|219920.754|100.648 +639830.582|219926.143|98.396 +639824.562|219927.889|97.881 +639818.499|219929.657|97.234 +639812.516|219931.379|96.914 +639800.830|219934.677|97.161 +639794.734|219936.479|96.213 +639788.882|219938.137|96.235 +639783.136|219939.755|96.411 +639777.318|219941.392|96.588 +639771.584|219943.001|96.844 +639765.927|219944.565|97.405 +639760.270|219946.129|97.972 +639754.671|219947.677|98.524 +639749.020|219949.256|98.880 +639743.369|219950.832|99.274 +639737.669|219952.435|99.481 +639732.000|219954.035|99.578 +639726.355|219955.623|99.786 +639720.661|219957.217|100.078 +639715.029|219958.796|100.353 +639709.478|219960.344|100.697 +639703.900|219961.911|100.950 +639698.274|219963.484|101.291 +639692.708|219965.054|101.389 +639687.085|219966.642|101.532 +639681.516|219968.214|101.639 +639675.929|219969.793|101.709 +639670.330|219971.381|101.752 +639664.834|219972.930|101.925 +639659.281|219974.505|101.916 +639653.721|219976.084|101.913 +639648.140|219977.672|101.849 +639642.581|219979.266|101.651 +639636.994|219980.873|101.368 +639631.574|219982.406|101.438 +639625.920|219984.043|100.980 +639688.554|219968.065|101.529 +639694.125|219966.501|101.425 +639699.679|219964.947|101.270 +639705.159|219963.429|100.886 +639710.746|219961.871|100.633 +639716.236|219960.347|100.304 +639721.795|219958.802|99.996 +639727.440|219957.226|99.761 +639733.036|219955.660|99.603 +639738.696|219954.075|99.453 +639744.338|219952.496|99.252 +639749.938|219950.941|98.917 +639755.512|219949.399|98.499 +639761.118|219947.860|97.954 +639766.729|219946.314|97.448 +639772.319|219944.778|96.872 +639777.976|219943.205|96.561 +639783.755|219941.581|96.469 +639789.568|219939.956|96.271 +639795.335|219938.335|96.174 +639813.019|219933.290|96.945 +639818.944|219931.593|97.280 +639825.056|219929.828|97.835 +639831.075|219928.090|98.326 +639849.376|219922.756|100.654 +639855.335|219921.068|100.740 +639861.354|219919.364|100.813 +639867.399|219917.624|101.285 +639879.475|219914.185|101.706 +639885.479|219912.482|101.813 +639891.520|219910.778|101.806 +639897.537|219909.086|101.718 +639903.463|219907.428|101.544 +639909.498|219905.742|101.291 +639915.517|219904.066|100.983 +639921.592|219902.356|100.929 +639933.659|219899.000|100.237 +639951.444|219894.169|97.731 +639957.510|219892.502|97.128 +639963.490|219890.862|96.463 +639969.653|219889.131|96.351 +639975.865|219887.390|96.189 +639982.077|219885.626|96.347 +639988.310|219883.846|96.637 +639994.613|219882.041|96.969 +640019.546|219875.009|96.884 +640038.489|219869.639|97.216 +640044.884|219867.831|97.228 +640051.135|219866.070|97.198 +640057.439|219864.296|97.131 +640063.696|219862.552|96.835 +640069.679|219865.509|96.338 +640063.541|219867.216|96.869 +640057.369|219868.944|97.219 +640051.129|219870.715|97.259 +640044.896|219872.480|97.347 +640038.687|219874.229|97.573 +640019.997|219879.581|97.079 +640007.701|219883.056|97.362 +640001.441|219884.854|97.143 +639995.244|219886.631|96.939 +639989.044|219888.405|96.762 +639982.857|219890.176|96.643 +639976.682|219891.956|96.311 +639970.574|219893.694|96.311 +639964.493|219895.410|96.469 +639958.357|219897.141|96.689 +639952.441|219898.772|97.338 +639934.772|219903.597|99.981 +639922.869|219906.943|100.456 +639916.846|219908.638|100.703 +639899.055|219913.625|101.602 +639893.090|219915.298|101.877 +639887.098|219917.008|101.773 +639881.124|219918.706|101.767 +639875.125|219920.437|101.407 +639869.130|219922.144|101.355 +639857.142|219925.591|100.782 +639839.247|219930.742|99.911 +639827.037|219934.339|98.161 +639821.072|219936.073|97.618 +639815.031|219937.832|97.067 +639809.166|219939.523|96.698 +639803.265|219941.218|96.479 +639797.453|219942.858|96.622 +639791.677|219944.498|96.652 +639785.867|219946.153|96.582 +639780.110|219947.777|96.728 +639774.480|219949.350|97.109 +639768.856|219950.917|97.524 +639763.227|219952.484|97.942 +639757.670|219954.014|98.633 +639752.120|219955.556|99.109 +639746.530|219957.120|99.450 +639740.894|219958.705|99.652 +639735.240|219960.302|99.798 +639729.589|219961.893|99.972 +639724.014|219963.463|100.185 +639718.455|219965.020|100.468 +639712.901|219966.575|100.791 +639707.427|219968.105|101.154 +639701.910|219969.656|101.389 +639696.372|219971.214|101.575 +639690.864|219972.774|101.636 +639685.274|219974.362|101.660 +639679.760|219975.923|101.736 +639674.393|219977.404|102.322 +639669.040|219978.898|102.733 +639663.484|219980.477|102.706 +639657.909|219982.086|102.395 +639652.316|219983.698|102.056 +639646.869|219985.253|101.977 +639641.343|219986.829|101.892 +639635.796|219988.432|101.529 +639630.428|219989.959|101.535 +639694.165|219973.433|101.511 +639699.795|219971.851|101.383 +639705.412|219970.275|101.221 +639710.972|219968.729|100.874 +639716.525|219967.184|100.523 +639722.146|219965.621|100.179 +639727.711|219964.066|99.898 +639733.393|219962.469|99.798 +639739.123|219960.860|99.645 +639744.847|219959.253|99.484 +639750.532|219957.665|99.207 +639756.244|219956.080|98.780 +639761.831|219954.547|98.176 +639767.427|219953.005|97.603 +639773.157|219951.408|97.289 +639778.830|219949.841|96.789 +639784.584|219948.229|96.594 +639790.464|219946.561|96.643 +639796.313|219944.912|96.588 +639802.196|219943.260|96.436 +639808.075|219941.590|96.530 +639814.007|219939.889|96.866 +639820.045|219938.143|97.362 +639826.110|219936.381|98.006 +639832.097|219934.662|98.356 +639838.314|219932.827|99.392 +639844.447|219931.020|100.389 +639850.467|219929.294|100.676 +639856.404|219927.615|100.666 +639868.456|219924.171|101.160 +639874.467|219922.467|101.236 +639880.569|219920.705|101.709 +639886.525|219919.029|101.608 +639892.618|219917.288|101.819 +639898.531|219915.636|101.563 +639916.441|219910.628|100.801 +639922.452|219908.952|100.471 +639934.330|219905.663|99.508 +639952.093|219900.811|97.189 +639958.092|219899.159|96.579 +639964.167|219897.458|96.344 +639970.290|219895.727|96.344 +639976.438|219893.998|96.189 +639982.641|219892.212|96.610 +639988.834|219890.454|96.713 +639995.052|219888.677|96.945 +640001.297|219886.906|97.024 +640007.494|219885.141|97.201 +640019.921|219881.627|97.164 +640032.354|219878.106|97.244 +640044.832|219874.570|97.326 +640051.117|219872.809|97.122 +640057.390|219871.026|97.231 +640063.593|219869.288|96.988 +640076.059|219865.795|96.536 +640078.796|219869.392|96.780 +640072.441|219871.221|96.482 +640066.321|219872.918|97.091 +640060.084|219874.665|97.472 +640053.808|219876.463|97.308 +640047.554|219878.243|97.286 +640041.086|219880.139|96.546 +640022.557|219885.360|97.219 +640016.437|219887.070|97.655 +640010.121|219888.881|97.466 +640003.925|219890.661|97.244 +639997.679|219892.447|97.131 +639991.410|219894.245|96.936 +639985.219|219896.016|96.814 +639979.077|219897.775|96.640 +639972.771|219899.592|96.341 +639966.696|219901.308|96.521 +639960.570|219903.054|96.491 +639954.541|219904.737|96.930 +639948.564|219906.389|97.609 +639936.680|219909.668|99.018 +639900.832|219919.690|101.544 +639888.869|219923.086|101.706 +639882.803|219924.820|101.599 +639876.814|219926.530|101.557 +639870.773|219928.267|101.322 +639852.671|219933.476|100.569 +639846.663|219935.208|100.292 +639840.564|219937.009|99.405 +639834.477|219938.783|98.862 +639816.366|219944.065|97.177 +639810.422|219945.787|96.777 +639798.779|219949.091|96.960 +639792.878|219950.783|96.789 +639787.029|219952.447|96.829 +639781.347|219954.053|96.997 +639775.660|219955.641|97.420 +639769.920|219957.257|97.676 +639764.333|219958.805|98.246 +639758.819|219960.332|98.844 +639753.184|219961.905|99.267 +639747.514|219963.499|99.572 +639741.882|219965.087|99.780 +639736.240|219966.681|99.972 +639730.601|219968.269|100.191 +639724.999|219969.857|100.316 +639719.439|219971.421|100.596 +639713.852|219972.997|100.810 +639708.335|219974.533|101.276 +639702.797|219976.100|101.441 +639697.241|219977.672|101.557 +639691.702|219979.251|101.523 +639686.173|219980.809|101.764 +639680.708|219982.348|102.002 +639675.383|219983.811|102.739 +639669.921|219985.366|102.782 +639664.368|219986.947|102.764 +639658.915|219988.511|102.642 +639653.316|219990.133|102.279 +639647.729|219991.745|101.977 +639642.297|219993.293|101.983 +639636.869|219994.854|101.773 +639698.320|219979.087|101.523 +639703.943|219977.508|101.364 +639709.542|219975.941|101.139 +639715.105|219974.393|100.810 +639720.744|219972.820|100.517 +639726.389|219971.241|100.261 +639732.079|219969.641|100.179 +639737.788|219968.044|99.938 +639743.506|219966.440|99.746 +639749.218|219964.840|99.548 +639754.955|219963.243|99.200 +639760.648|219961.667|98.716 +639766.244|219960.128|98.137 +639771.999|219958.537|97.658 +639777.717|219956.943|97.311 +639783.478|219955.349|96.869 +639789.309|219953.709|96.716 +639795.234|219952.036|96.689 +639812.958|219947.019|96.759 +639819.045|219945.248|97.436 +639825.126|219943.495|97.844 +639831.249|219941.718|98.460 +639837.272|219939.978|98.957 +639843.450|219938.185|99.566 +639849.571|219936.402|100.249 +639855.584|219934.702|100.255 +639867.920|219931.135|101.319 +639873.964|219929.410|101.514 +639879.941|219927.743|101.179 +639886.061|219925.993|101.462 +639892.191|219924.232|101.809 +639898.226|219922.528|101.788 +639934.366|219912.479|99.402 +639940.270|219910.869|98.621 +639952.261|219907.593|97.030 +639958.360|219905.901|96.573 +639964.557|219904.148|96.570 +639970.674|219902.441|96.241 +639976.904|219900.668|96.436 +639983.153|219898.875|96.762 +639989.410|219897.098|96.835 +639995.616|219895.330|96.991 +640001.877|219893.550|97.137 +640008.137|219891.767|97.298 +640014.440|219889.954|97.704 +640020.576|219888.247|97.301 +640026.794|219886.510|96.994 +640033.076|219884.708|97.359 +640051.879|219879.408|97.079 +640058.170|219877.612|97.268 +640064.422|219875.845|97.268 +640070.704|219874.107|96.759 +640076.897|219872.373|96.506 +640080.917|219875.765|95.899 +640074.700|219877.503|96.357 +640068.573|219879.200|96.957 +640062.425|219880.913|97.448 +640056.085|219882.730|97.308 +640049.803|219884.553|96.829 +640043.528|219886.345|96.735 +640025.026|219891.572|97.237 +640006.421|219896.854|97.417 +640000.221|219898.634|97.216 +639994.046|219900.396|97.158 +639987.871|219902.155|97.113 +639981.638|219903.950|96.826 +639975.392|219905.752|96.518 +639969.263|219907.501|96.451 +639963.112|219909.239|96.622 +639951.115|219912.567|97.786 +639945.074|219914.256|98.207 +639909.235|219924.268|100.767 +639885.296|219931.020|101.648 +639873.223|219934.467|101.483 +639867.188|219936.198|101.313 +639836.766|219945.050|98.716 +639830.816|219946.759|98.484 +639824.781|219948.518|97.954 +639818.697|219950.283|97.512 +639812.659|219952.039|97.009 +639806.780|219953.721|96.893 +639800.937|219955.382|96.924 +639795.069|219957.056|96.881 +639789.284|219958.699|96.917 +639783.499|219960.323|97.228 +639777.748|219961.929|97.673 +639772.057|219963.517|98.109 +639766.430|219965.087|98.542 +639760.828|219966.642|99.078 +639755.147|219968.220|99.588 +639749.535|219969.796|99.880 +639743.820|219971.412|100.042 +639738.178|219973.003|100.243 +639732.491|219974.618|100.301 +639726.831|219976.218|100.478 +639721.192|219977.803|100.737 +639715.596|219979.382|100.923 +639710.048|219980.937|101.291 +639704.425|219982.528|101.407 +639698.874|219984.098|101.560 +639693.330|219985.661|101.752 +639682.186|219988.834|101.752 +639676.734|219990.364|102.066 +639671.494|219991.797|102.876 +639665.934|219993.382|102.846 +639660.411|219994.964|102.733 +639654.898|219996.536|102.669 +639649.353|219998.143|102.288 +639643.839|219999.734|102.032 +639638.417|220001.273|102.090 +639703.995|219984.805|101.343 +639709.554|219983.238|101.215 +639715.138|219981.674|100.953 +639720.661|219980.123|100.740 +639726.306|219978.541|100.474 +639731.896|219976.968|100.282 +639737.511|219975.386|100.185 +639743.174|219973.789|100.048 +639748.837|219972.192|99.917 +639754.500|219970.613|99.551 +639760.148|219969.040|99.146 +639765.702|219967.501|98.670 +639771.371|219965.934|98.112 +639782.746|219962.777|97.192 +639788.477|219961.173|96.914 +639794.335|219959.515|96.872 +639800.108|219957.882|96.799 +639805.981|219956.214|96.847 +639811.852|219954.544|96.920 +639817.865|219952.810|97.308 +639823.967|219951.042|97.786 +639830.009|219949.289|98.332 +639836.013|219947.555|98.743 +639842.100|219945.793|99.249 +639848.120|219944.065|99.514 +639866.441|219938.761|100.968 +639872.541|219937.000|101.383 +639884.693|219933.540|101.547 +639890.737|219931.806|101.816 +639908.681|219926.816|100.493 +639914.627|219925.155|100.130 +639932.787|219920.083|99.085 +639944.851|219916.712|98.390 +639950.917|219915.036|97.762 +639962.966|219911.717|96.472 +639969.141|219909.970|96.399 +639975.335|219908.211|96.415 +639981.595|219906.407|96.786 +639987.917|219904.587|97.155 +639994.101|219902.829|97.204 +640000.331|219901.064|97.195 +640006.650|219899.262|97.308 +640012.941|219897.455|97.637 +640025.432|219893.938|97.274 +640044.192|219888.661|96.671 +640050.477|219886.869|96.783 +640056.899|219885.010|97.301 +640063.279|219883.175|97.628 +640069.503|219881.471|96.808 +640076.483|219884.077|96.661 +640070.234|219885.836|96.969 +640064.181|219887.515|97.615 +640057.902|219889.317|97.463 +640051.605|219891.155|96.893 +640045.484|219892.871|97.265 +640026.971|219898.144|97.366 +640020.841|219899.863|97.759 +640014.703|219901.609|97.804 +640008.488|219903.402|97.512 +640002.322|219905.166|97.460 +639983.860|219910.461|97.036 +639977.675|219912.250|96.686 +639971.528|219914.015|96.539 +639965.453|219915.752|96.448 +639935.518|219924.134|98.536 +639929.474|219925.868|98.405 +639917.681|219929.151|99.469 +639888.128|219937.426|101.529 +639882.203|219939.100|101.761 +639876.268|219940.798|101.694 +639870.255|219942.541|101.319 +639858.056|219946.098|100.234 +639852.088|219947.829|99.856 +639846.087|219949.558|99.636 +639840.113|219951.286|99.280 +639834.114|219953.029|98.847 +639822.047|219956.550|97.792 +639816.076|219958.287|97.286 +639810.178|219959.988|97.076 +639804.408|219961.628|97.125 +639798.520|219963.316|96.997 +639792.710|219964.959|97.192 +639786.913|219966.614|97.192 +639769.859|219971.396|98.295 +639764.330|219972.911|99.106 +639758.810|219974.445|99.697 +639753.135|219976.042|99.984 +639747.514|219977.627|100.243 +639741.775|219979.254|100.337 +639736.090|219980.873|100.398 +639730.497|219982.455|100.557 +639724.807|219984.073|100.624 +639719.281|219985.618|101.051 +639713.675|219987.207|101.212 +639708.088|219988.782|101.453 +639702.526|219990.361|101.557 +639696.988|219991.925|101.767 +639691.416|219993.507|101.870 +639685.878|219995.086|101.867 +639680.464|219996.582|102.535 +639674.807|219998.222|102.169 +639669.482|219999.700|102.700 +639663.981|220001.258|102.879 +639658.467|220002.837|102.809 +639653.002|220004.403|102.687 +639647.457|220005.994|102.553 +639641.919|220007.601|102.221 +639704.483|219991.995|101.553 +639710.036|219990.434|101.389 +639715.568|219988.883|101.169 +639721.122|219987.319|101.035 +639726.602|219985.792|100.660 +639732.216|219984.210|100.542 +639737.874|219982.622|100.340 +639743.509|219981.028|100.316 +639749.182|219979.428|100.197 +639754.787|219977.864|99.859 +639760.429|219976.279|99.664 +639765.955|219974.758|99.066 +639788.504|219968.507|97.161 +639794.271|219966.882|97.024 +639800.068|219965.243|97.006 +639805.951|219963.569|97.085 +639811.751|219961.920|97.119 +639817.646|219960.238|97.277 +639823.657|219958.488|97.908 +639829.594|219956.778|98.283 +639835.702|219955.004|98.826 +639841.698|219953.276|99.216 +639847.660|219951.566|99.490 +639853.634|219949.847|99.840 +639859.711|219948.085|100.350 +639865.777|219946.330|100.852 +639871.916|219944.547|101.404 +639877.835|219942.895|101.075 +639883.946|219941.105|101.840 +639889.859|219939.450|101.532 +639913.466|219932.940|99.106 +639919.550|219931.221|99.030 +639925.588|219929.526|98.771 +639931.422|219927.956|97.643 +639937.637|219926.152|98.204 +639943.839|219924.378|98.432 +639961.932|219919.358|96.963 +639967.949|219917.691|96.436 +639974.155|219915.926|96.491 +639980.437|219914.112|96.927 +639986.716|219912.323|97.061 +639992.992|219910.510|97.518 +639999.255|219908.726|97.625 +640005.455|219906.980|97.460 +640011.642|219905.218|97.576 +640017.994|219903.392|97.878 +640024.188|219901.673|97.420 +640030.394|219899.915|97.384 +640042.973|219896.364|97.189 +640055.634|219892.746|97.536 +640061.941|219890.966|97.442 +640068.244|219889.210|97.021 +640074.544|219887.430|96.936 +640080.805|219885.674|96.671 +640078.314|219890.588|97.003 +640072.069|219892.368|96.991 +640065.872|219894.114|97.250 +640059.719|219895.858|97.396 +640053.418|219897.671|97.173 +640047.304|219899.384|97.570 +640034.853|219902.929|97.640 +640028.684|219904.697|97.506 +640022.582|219906.422|97.722 +640010.259|219909.918|97.942 +640004.001|219911.759|97.158 +639997.878|219913.469|97.670 +639991.718|219915.243|97.402 +639979.394|219918.794|96.914 +639973.201|219920.586|96.567 +639967.145|219922.311|96.576 +639961.082|219924.018|96.875 +639955.068|219925.698|97.405 +639937.125|219930.745|98.356 +639931.160|219932.431|98.585 +639919.190|219935.820|98.923 +639913.155|219937.545|98.896 +639901.606|219940.697|100.840 +639895.846|219942.294|101.459 +639878.009|219947.369|101.660 +639872.004|219949.106|101.337 +639866.033|219950.841|100.904 +639853.939|219954.355|100.048 +639847.952|219956.096|99.630 +639841.932|219957.851|99.112 +639836.056|219959.546|98.899 +639830.057|219961.283|98.512 +639824.190|219962.966|98.396 +639818.106|219964.770|97.466 +639812.178|219966.486|97.155 +639806.371|219968.150|97.076 +639800.580|219969.802|97.070 +639794.749|219971.476|96.939 +639788.986|219973.113|97.073 +639783.341|219974.697|97.417 +639777.498|219976.374|97.295 +639771.908|219977.925|97.881 +639766.516|219979.367|99.197 +639760.959|219980.915|99.667 +639755.348|219982.497|99.947 +639749.770|219984.058|100.371 +639744.076|219985.679|100.395 +639738.471|219987.274|100.505 +639732.863|219988.865|100.618 +639727.294|219990.434|100.883 +639721.713|219992.010|101.127 +639716.181|219993.574|101.313 +639710.646|219995.140|101.511 +639705.110|219996.704|101.712 +639699.670|219998.234|102.023 +639693.970|219999.886|101.697 +639688.520|220001.416|102.011 +639683.012|220002.980|102.139 +639677.691|220004.458|102.672 +639672.027|220006.101|102.306 +639666.562|220007.656|102.398 +639661.253|220009.143|102.782 +639655.733|220010.722|102.712 +639650.249|220012.298|102.559 +639710.704|219997.119|101.596 +639716.294|219995.552|101.340 +639721.820|219994.001|101.105 +639727.452|219992.406|101.026 +639733.064|219990.846|100.639 +639738.675|219989.261|100.514 +639744.341|219987.664|100.359 +639749.977|219986.085|100.106 +639755.674|219984.488|99.847 +639761.340|219982.884|99.743 +639766.912|219981.354|99.054 +639777.952|219978.349|97.332 +639783.685|219976.727|97.280 +639789.388|219975.139|96.872 +639795.243|219973.463|97.052 +639801.031|219971.823|97.006 +639806.926|219970.141|97.122 +639812.787|219968.480|97.128 +639818.728|219966.748|97.725 +639824.742|219964.993|98.368 +639830.597|219963.328|98.414 +639836.601|219961.594|98.807 +639842.627|219959.845|99.313 +639848.611|219958.122|99.661 +639854.637|219956.370|100.218 +639860.678|219954.626|100.590 +639872.723|219951.161|101.252 +639878.755|219949.417|101.669 +639896.565|219944.391|101.282 +639914.030|219939.600|99.039 +639920.096|219937.865|99.170 +639938.091|219932.806|98.524 +639956.004|219927.828|97.067 +639961.996|219926.155|96.719 +639968.089|219924.439|96.530 +639974.252|219922.677|96.692 +639980.446|219920.897|97.003 +639986.661|219919.096|97.466 +639992.842|219917.340|97.475 +639999.066|219915.557|97.707 +640005.181|219913.841|97.433 +640011.505|219911.988|98.204 +640023.764|219908.553|97.612 +640029.949|219906.809|97.460 +640036.170|219905.038|97.500 +640048.673|219901.478|97.634 +640054.906|219899.720|97.481 +640061.130|219897.967|97.301 +640067.339|219896.224|97.055 +640073.605|219894.437|97.146 +640079.963|219892.639|97.039 +640080.573|219897.040|96.936 +640074.291|219898.854|96.707 +640068.131|219900.582|97.152 +640061.925|219902.338|97.378 +640055.787|219904.075|97.631 +640049.489|219905.864|97.765 +640030.863|219911.198|97.637 +640024.676|219912.957|97.765 +639999.999|219920.007|97.820 +639993.772|219921.808|97.542 +639987.712|219923.525|97.756 +639981.522|219925.320|97.393 +639975.252|219927.142|97.000 +639969.129|219928.913|96.689 +639963.024|219930.651|96.789 +639956.943|219932.370|97.021 +639921.181|219942.413|99.304 +639903.362|219947.436|100.206 +639897.589|219949.021|101.051 +639885.781|219952.368|101.419 +639879.834|219954.053|101.590 +639867.807|219957.540|100.895 +639861.897|219959.241|100.727 +639837.839|219966.242|98.929 +639831.908|219967.967|98.527 +639826.040|219969.653|98.408 +639814.095|219973.137|97.417 +639808.203|219974.832|97.265 +639802.424|219976.481|97.305 +639796.682|219978.123|97.250 +639790.878|219979.782|97.231 +639785.176|219981.403|97.359 +639779.546|219983.000|97.512 +639773.898|219984.585|97.881 +639762.949|219987.581|99.652 +639757.402|219989.127|100.167 +639751.800|219990.721|100.255 +639746.152|219992.321|100.432 +639740.577|219993.900|100.639 +639735.097|219995.442|100.962 +639729.424|219997.067|100.865 +639718.458|220000.151|101.557 +639713.008|220001.688|101.803 +639707.552|220003.230|102.038 +639701.962|220004.842|101.828 +639696.262|220006.513|101.264 +639690.864|220008.018|101.745 +639685.570|220009.484|102.361 +639680.111|220011.039|102.431 +639674.682|220012.578|102.614 +639669.333|220014.087|102.849 +639663.825|220015.681|102.575 +639658.473|220017.193|102.824 +639653.011|220018.759|102.733 +639715.050|220002.867|101.822 +639720.573|220001.331|101.334 +639726.114|219999.789|100.919 +639731.848|219998.155|100.950 +639737.468|219996.567|100.846 +639743.104|219994.982|100.575 +639748.819|219993.376|100.353 +639754.510|219991.760|100.310 +639760.017|219990.245|99.615 +639776.861|219985.594|97.780 +639782.569|219984.000|97.378 +639788.367|219982.354|97.314 +639794.225|219980.693|97.247 +639800.086|219979.032|97.201 +639805.896|219977.377|97.237 +639811.754|219975.709|97.231 +639823.794|219972.213|98.237 +639829.783|219970.506|98.271 +639835.763|219968.787|98.554 +639841.823|219967.017|99.176 +639860.022|219961.743|100.478 +639872.153|219958.241|101.194 +639878.222|219956.495|101.462 +639884.111|219954.834|101.291 +639896.156|219951.429|101.011 +639907.824|219948.201|99.780 +639913.835|219946.522|99.368 +639925.890|219943.120|99.024 +639931.876|219941.432|98.835 +639949.993|219936.347|97.926 +639955.891|219934.750|96.838 +639961.990|219933.031|96.652 +639968.138|219931.276|96.710 +639974.292|219929.520|96.817 +639980.571|219927.703|97.213 +639986.795|219925.899|97.698 +639992.949|219924.155|97.573 +639999.191|219922.382|97.570 +640005.464|219920.562|98.057 +640024.011|219915.310|97.734 +640030.138|219913.579|97.606 +640048.895|219908.242|97.609 +640055.067|219906.523|97.125 +640061.297|219904.737|97.308 +640067.525|219902.978|97.164 +640073.712|219901.241|96.823 +640070.259|219906.642|97.061 +640064.160|219908.355|97.500 +640057.951|219910.113|97.740 +640045.402|219913.734|97.295 +640039.327|219915.423|97.945 +640033.085|219917.221|97.768 +640020.707|219920.745|98.024 +640008.402|219924.259|98.076 +640002.191|219926.051|97.862 +639996.064|219927.789|98.067 +639989.895|219929.553|98.082 +639983.643|219931.364|97.759 +639977.438|219933.171|97.356 +639971.244|219934.967|97.030 +639965.081|219936.744|96.875 +639959.031|219938.469|96.948 +639953.014|219940.176|97.183 +639947.025|219941.840|97.862 +639935.070|219945.196|98.765 +639929.026|219946.909|98.957 +639922.961|219948.637|99.082 +639916.929|219950.365|99.072 +639910.909|219952.084|99.133 +639893.325|219956.989|100.862 +639887.396|219958.668|101.099 +639881.529|219960.311|101.602 +639863.518|219965.511|101.005 +639845.328|219970.839|99.380 +639839.372|219972.561|99.139 +639827.308|219976.109|97.871 +639815.540|219979.498|97.579 +639809.651|219981.196|97.442 +639803.793|219982.872|97.439 +639798.072|219984.491|97.728 +639786.529|219987.795|97.713 +639775.111|219991.047|97.969 +639758.457|219995.649|100.197 +639752.854|219997.228|100.529 +639747.246|219998.810|100.862 +639741.632|220000.410|100.941 +639719.470|220006.665|102.203 +639713.974|220008.213|102.529 +639708.332|220009.844|102.364 +639702.773|220011.441|102.276 +639697.183|220013.057|102.084 +639691.666|220014.629|102.169 +639686.210|220016.187|102.245 +639680.742|220017.732|102.520 +639675.399|220019.244|102.770 +639669.991|220020.771|103.050 +639664.453|220022.384|102.678 +639659.076|220023.911|102.858 +639653.627|220025.474|102.815 +639719.055|220008.594|102.623 +639729.879|220005.623|101.130 +639741.132|220002.453|100.697 +639746.899|220000.798|100.886 +639758.131|219997.652|100.228 +639769.088|219994.668|98.393 +639774.791|219993.062|98.176 +639780.482|219991.462|97.926 +639786.325|219989.791|98.021 +639792.143|219988.133|98.033 +639797.956|219986.499|97.786 +639803.738|219984.878|97.442 +639809.550|219983.220|97.497 +639815.485|219981.531|97.506 +639827.329|219978.139|97.768 +639839.528|219974.579|98.957 +639845.526|219972.844|99.325 +639863.890|219967.492|101.011 +639876.040|219963.978|101.791 +639881.995|219962.295|101.602 +639887.991|219960.610|101.313 +639893.934|219958.955|100.834 +639911.622|219954.066|98.868 +639917.724|219952.331|98.822 +639923.842|219950.588|98.874 +639929.934|219948.856|98.838 +639936.049|219947.128|98.633 +639942.017|219945.470|98.091 +639948.043|219943.797|97.527 +639954.093|219942.108|97.088 +639960.271|219940.359|96.948 +639966.401|219938.618|96.893 +639972.600|219936.832|97.183 +639978.913|219935.019|97.402 +639985.134|219933.214|97.847 +639997.676|219929.630|98.045 +640003.833|219927.883|97.963 +640010.103|219926.088|98.112 +640016.388|219924.302|98.057 +640022.585|219922.549|97.908 +640047.578|219915.484|97.237 +640053.821|219913.719|97.091 +640060.246|219911.854|97.564 +640066.540|219910.074|97.408 +640072.697|219908.361|96.884 +640079.223|219910.814|96.393 +640073.066|219912.543|96.863 +640066.939|219914.249|97.506 +640060.764|219916.014|97.570 +640054.491|219917.840|97.167 +640048.331|219919.590|97.375 +640035.996|219923.095|97.740 +640023.767|219926.573|98.079 +640017.647|219928.313|98.240 +640011.402|219930.108|98.149 +640005.260|219931.882|97.932 +639999.152|219933.610|98.228 +639993.059|219935.351|98.289 +639986.908|219937.125|98.112 +639980.726|219938.917|97.826 +639974.478|219940.727|97.548 +639968.355|219942.501|97.274 +639962.213|219944.284|96.945 +639956.199|219945.985|97.210 +639950.070|219947.738|97.262 +639944.175|219949.387|97.801 +639932.236|219952.731|98.822 +639926.222|219954.450|98.871 +639920.217|219956.181|98.707 +639914.106|219957.955|98.396 +639896.739|219962.731|101.051 +639890.829|219964.401|101.364 +639866.996|219971.220|101.474 +639861.031|219972.954|101.118 +639854.865|219974.783|100.264 +639836.696|219980.108|98.627 +639824.672|219983.628|97.573 +639818.832|219985.298|97.612 +639812.979|219986.975|97.622 +639807.130|219988.645|97.667 +639801.379|219990.282|97.841 +639795.627|219991.916|98.027 +639789.900|219993.534|98.316 +639784.200|219995.156|98.481 +639772.767|219998.393|98.975 +639744.759|220006.253|101.188 +639738.989|220007.921|100.987 +639733.359|220009.527|101.051 +639722.548|220012.496|102.782 +639717.120|220014.011|103.340 +639711.450|220015.654|103.087 +639705.876|220017.260|102.946 +639700.237|220018.884|102.831 +639694.543|220020.552|102.325 +639688.846|220022.222|101.828 +639683.406|220023.752|102.203 +639678.047|220025.255|102.636 +639672.661|220026.773|102.995 +639667.187|220028.333|103.074 +639661.704|220029.900|103.135 +639720.539|220015.017|103.010 +639725.886|220013.553|102.160 +639731.281|220012.066|101.477 +639736.743|220010.539|101.041 +639747.975|220007.332|101.066 +639759.057|220004.242|100.130 +639764.601|220002.681|99.816 +639770.149|220001.139|99.280 +639775.711|219999.584|98.816 +639787.044|219996.381|98.429 +639792.738|219994.769|98.243 +639798.471|219993.156|97.957 +639804.238|219991.519|97.817 +639809.980|219989.898|97.609 +639815.781|219988.240|97.625 +639821.599|219986.591|97.478 +639827.540|219984.850|98.076 +639839.412|219981.412|98.789 +639845.477|219979.632|99.423 +639851.598|219977.840|100.036 +639857.654|219976.063|100.697 +639875.665|219970.854|101.645 +639881.630|219969.144|101.761 +639887.552|219967.474|101.456 +639893.474|219965.806|101.160 +639911.037|219960.936|99.243 +639916.874|219959.314|98.646 +639922.958|219957.565|98.832 +639929.038|219955.836|98.752 +639946.942|219950.826|97.420 +639953.047|219949.100|97.210 +639959.098|219947.381|97.085 +639965.267|219945.610|97.204 +639971.473|219943.818|97.521 +639977.718|219942.017|97.743 +639983.909|219940.231|98.033 +639990.133|219938.441|98.210 +639996.323|219936.671|98.252 +640002.486|219934.915|98.192 +640008.677|219933.165|97.975 +640014.943|219931.367|98.128 +640021.186|219929.578|98.204 +640039.748|219924.338|97.414 +640046.060|219922.525|97.594 +640058.618|219918.931|97.698 +640064.885|219917.166|97.387 +640071.085|219915.420|97.088 +640077.287|219913.695|96.491 +640073.819|219918.998|96.975 +640067.683|219920.714|97.564 +640061.572|219922.464|97.628 +640055.305|219924.287|97.283 +640049.136|219926.042|97.433 +640036.889|219929.520|97.923 +640018.598|219934.729|98.390 +640012.401|219936.518|98.222 +640006.324|219938.256|98.320 +640000.231|219939.999|98.368 +639994.077|219941.755|98.469 +639988.011|219943.501|98.384 +639981.936|219945.251|98.274 +639969.662|219948.805|97.853 +639963.520|219950.591|97.515 +639957.519|219952.310|97.533 +639951.399|219954.081|97.338 +639945.449|219955.766|97.625 +639933.677|219959.055|98.795 +639927.670|219960.774|98.871 +639915.804|219964.154|99.158 +639909.912|219965.819|99.508 +639892.502|219970.671|101.438 +639886.564|219972.378|101.380 +639874.763|219975.746|101.614 +639868.852|219977.435|101.733 +639856.910|219980.912|100.996 +639844.813|219984.497|99.478 +639832.782|219988.051|98.085 +639826.833|219989.788|97.673 +639821.118|219991.410|97.917 +639815.244|219993.098|97.850 +639809.514|219994.747|97.820 +639803.799|219996.363|98.128 +639792.311|219999.627|98.563 +639786.617|220001.246|98.737 +639780.920|220002.867|98.914 +639775.343|220004.440|99.295 +639758.609|220009.149|100.532 +639753.056|220010.722|100.810 +639730.778|220017.037|101.840 +639725.316|220018.555|102.514 +639719.896|220020.067|103.108 +639714.361|220021.640|103.306 +639708.796|220023.246|103.187 +639703.178|220024.862|103.141 +639697.655|220026.443|103.199 +639691.861|220028.184|102.136 +639686.176|220029.848|101.691 +639680.925|220031.296|102.474 +639675.594|220032.786|103.004 +639670.199|220034.329|103.108 +639725.718|220020.506|102.456 +639731.165|220018.994|101.934 +639753.333|220012.770|100.615 +639759.051|220011.136|100.648 +639764.629|220009.582|100.185 +639775.785|220006.467|99.316 +639781.430|220004.888|98.896 +639787.129|220003.279|98.691 +639792.844|220001.657|98.557 +639798.538|220000.051|98.356 +639804.293|219998.423|98.155 +639810.005|219996.820|97.811 +639815.796|219995.171|97.771 +639821.712|219993.470|97.975 +639827.448|219991.870|97.509 +639833.310|219990.175|97.798 +639839.427|219988.356|98.841 +639857.608|219983.009|100.971 +639869.614|219979.538|101.621 +639875.451|219977.889|101.447 +639881.398|219976.191|101.462 +639887.265|219974.539|101.185 +639893.209|219972.838|101.227 +639899.119|219971.180|100.871 +639910.723|219967.964|99.606 +639916.688|219966.291|99.249 +639922.692|219964.590|99.072 +639928.596|219962.929|98.780 +639934.601|219961.225|98.649 +639940.542|219959.561|98.256 +639946.455|219957.933|97.463 +639952.444|219956.236|97.320 +639958.567|219954.477|97.490 +639964.685|219952.721|97.649 +639970.903|219950.923|97.993 +639977.026|219949.158|98.240 +639983.183|219947.393|98.359 +639989.386|219945.620|98.411 +639995.512|219943.870|98.438 +640001.599|219942.145|98.298 +640007.838|219940.365|98.286 +640013.913|219938.646|98.124 +640020.134|219936.853|98.380 +640026.340|219935.089|98.271 +640032.360|219933.446|97.274 +640051.199|219928.029|97.884 +640057.320|219926.313|97.460 +640063.602|219924.515|97.539 +640069.844|219922.744|97.426 +640075.955|219921.083|96.329 +640076.147|219925.064|96.981 +640070.064|219926.768|97.515 +640063.836|219928.545|97.664 +640057.631|219930.328|97.631 +640026.794|219939.127|98.353 +640014.422|219942.696|98.109 +640008.311|219944.431|98.371 +640002.212|219946.177|98.405 +639996.137|219947.909|98.579 +639989.950|219949.686|98.551 +639983.890|219951.429|98.518 +639977.813|219953.182|98.423 +639965.496|219956.757|97.893 +639959.378|219958.528|97.707 +639953.249|219960.305|97.478 +639947.147|219962.064|97.399 +639941.264|219963.706|98.003 +639935.381|219965.352|98.621 +639929.386|219967.059|98.780 +639923.412|219968.757|99.033 +639917.444|219970.470|99.051 +639905.822|219973.704|100.453 +639899.945|219975.359|100.901 +639888.198|219978.703|101.310 +639882.294|219980.388|101.425 +639876.479|219982.043|101.639 +639870.523|219983.756|101.581 +639864.549|219985.481|101.465 +639852.524|219989.026|100.218 +639846.547|219990.788|99.636 +639840.439|219992.598|98.844 +639834.401|219994.391|98.079 +639828.405|219996.152|97.512 +639822.696|219997.771|97.807 +639816.930|219999.423|97.884 +639811.154|220001.075|97.960 +639805.527|220002.663|98.344 +639799.779|220004.297|98.551 +639794.076|220005.924|98.688 +639788.379|220007.549|98.862 +639782.697|220009.164|99.109 +639777.016|220010.774|99.374 +639771.493|220012.316|99.978 +639765.936|220013.892|100.237 +639760.383|220015.452|100.749 +639754.814|220017.031|100.993 +639749.157|220018.662|100.929 +639738.056|220021.820|101.358 +639732.725|220023.286|102.242 +639727.373|220024.761|103.065 +639721.823|220026.343|103.218 +639716.342|220027.907|103.382 +639710.798|220029.501|103.343 +639705.263|220031.092|103.352 +639699.807|220032.655|103.407 +639694.080|220034.344|102.809 +639688.328|220036.060|101.916 +639682.994|220037.572|102.215 +639677.755|220039.013|103.059 +639672.341|220040.565|103.117 +639667.010|220042.071|103.452 +639730.537|220025.614|102.913 +639735.840|220024.194|101.663 +639741.379|220022.643|101.246 +639752.720|220019.412|101.154 +639763.925|220016.269|100.389 +639769.518|220014.700|99.993 +639775.193|220013.105|99.658 +639780.814|220011.536|99.146 +639786.495|220009.935|98.865 +639792.277|220008.296|98.722 +639798.044|220006.662|98.536 +639803.845|220005.007|98.496 +639809.621|220003.385|98.124 +639815.378|220001.752|97.966 +639821.218|220000.093|97.865 +639826.994|219998.466|97.551 +639851.238|219991.352|100.090 +639863.381|219987.801|101.209 +639869.432|219986.042|101.596 +639875.342|219984.366|101.438 +639881.328|219982.665|101.334 +639887.272|219980.967|101.355 +639893.212|219979.266|101.392 +639899.137|219977.593|101.102 +639910.866|219974.344|99.780 +639916.663|219972.744|99.005 +639922.708|219971.019|98.987 +639928.767|219969.303|98.780 +639934.695|219967.623|98.600 +639940.648|219965.968|97.972 +639946.546|219964.325|97.408 +639952.740|219962.545|97.564 +639958.793|219960.805|97.716 +639964.953|219959.022|98.060 +639977.328|219955.452|98.502 +639983.403|219953.712|98.545 +639989.608|219951.935|98.600 +639995.713|219950.198|98.530 +640001.806|219948.463|98.420 +640007.951|219946.723|98.259 +640014.108|219944.967|98.179 +640026.465|219941.428|98.298 +640051.190|219934.418|97.567 +640057.390|219932.653|97.515 +640063.629|219930.858|97.698 +640069.859|219929.087|97.536 +640075.931|219927.402|96.908 +640072.563|219932.970|97.484 +640066.360|219934.732|97.756 +640060.212|219936.485|97.990 +640047.792|219940.063|97.908 +640041.491|219941.886|97.786 +640035.295|219943.687|97.545 +640029.202|219945.418|97.829 +640023.014|219947.186|98.003 +640016.879|219948.942|98.131 +640004.620|219952.441|98.484 +639998.542|219954.178|98.630 +639992.446|219955.928|98.713 +639986.335|219957.680|98.749 +639980.205|219959.448|98.716 +639974.060|219961.222|98.637 +639967.946|219962.996|98.423 +639961.734|219964.807|98.100 +639955.556|219966.614|97.658 +639949.515|219968.361|97.545 +639943.449|219970.098|97.637 +639937.460|219971.790|98.082 +639931.498|219973.481|98.377 +639925.600|219975.158|98.670 +639919.635|219976.849|98.978 +639907.836|219980.175|99.914 +639901.990|219981.833|100.218 +639896.172|219983.457|100.907 +639890.344|219985.082|101.587 +639884.364|219986.819|101.377 +639878.469|219988.502|101.547 +639872.608|219990.184|101.587 +639866.621|219991.919|101.422 +639860.705|219993.632|101.291 +639854.591|219995.436|100.673 +639848.601|219997.204|100.039 +639830.569|220002.538|98.057 +639824.665|220004.251|97.862 +639818.841|220005.918|97.978 +639813.077|220007.567|98.094 +639807.459|220009.152|98.515 +639801.726|220010.783|98.768 +639796.014|220012.420|98.862 +639790.336|220014.035|99.106 +639784.599|220015.681|99.152 +639779.015|220017.260|99.517 +639773.371|220018.857|99.923 +639767.793|220020.430|100.343 +639751.172|220025.118|101.587 +639745.542|220026.736|101.633 +639739.986|220028.327|101.715 +639734.548|220029.854|102.221 +639729.376|220031.238|103.650 +639723.664|220032.930|103.007 +639718.208|220034.463|103.486 +639712.718|220036.033|103.632 +639707.211|220037.627|103.498 +639701.645|220039.233|103.419 +639696.088|220040.851|103.163 +639690.413|220042.531|102.517 +639685.116|220044.027|102.922 +639679.855|220045.500|103.462 +639674.441|220047.054|103.519 +639669.040|220048.618|103.391 +639729.793|220033.018|103.425 +639735.011|220031.622|102.117 +639740.483|220030.086|101.694 +639746.109|220028.483|101.587 +639751.751|220026.870|101.557 +639757.314|220025.300|101.258 +639768.469|220022.176|100.322 +639774.038|220020.619|99.844 +639779.631|220019.046|99.463 +639785.300|220017.449|99.124 +639791.104|220015.791|99.051 +639796.804|220014.175|98.856 +639802.589|220012.526|98.743 +639808.334|220010.902|98.499 +639814.031|220009.301|98.088 +639819.862|220007.640|97.948 +639825.647|220005.988|97.902 +639831.630|220004.260|98.115 +639849.854|219998.886|100.228 +639855.914|219997.106|100.837 +639861.982|219995.339|101.243 +639867.990|219993.601|101.447 +639873.988|219991.873|101.624 +639879.895|219990.194|101.456 +639885.854|219988.502|101.252 +639891.795|219986.801|101.267 +639897.818|219985.091|101.075 +639921.394|219978.498|98.935 +639927.405|219976.810|98.502 +639933.397|219975.112|98.289 +639939.408|219973.420|97.893 +639945.424|219971.723|97.533 +639951.527|219969.973|97.564 +639957.677|219968.193|97.832 +639963.904|219966.386|98.170 +639970.202|219964.554|98.545 +639976.298|219962.801|98.655 +639982.449|219961.033|98.722 +639988.703|219959.247|98.682 +639994.827|219957.491|98.682 +640000.987|219955.736|98.560 +640007.113|219954.005|98.295 +640019.497|219950.469|98.146 +640025.666|219948.725|97.835 +640031.896|219946.939|97.844 +640038.056|219945.199|97.536 +640050.529|219941.639|97.387 +640056.850|219939.813|97.603 +640063.187|219937.975|97.926 +640069.405|219936.210|97.686 +640075.681|219934.436|97.408 +640080.649|219937.180|97.542 +640074.404|219938.972|97.597 +640068.235|219940.740|97.719 +640062.166|219942.465|98.033 +640049.666|219946.095|97.585 +640043.585|219947.823|97.899 +640037.349|219949.625|97.804 +640031.235|219951.374|97.987 +640025.090|219953.136|98.067 +640018.982|219954.876|98.316 +640006.772|219958.369|98.621 +640000.676|219960.119|98.694 +639994.592|219961.862|98.841 +639988.481|219963.621|98.877 +639982.446|219965.352|98.972 +639976.252|219967.157|98.685 +639964.136|219970.662|98.512 +639957.860|219972.515|97.929 +639951.688|219974.320|97.548 +639945.662|219976.057|97.536 +639939.810|219977.709|98.012 +639933.796|219979.416|98.365 +639927.813|219981.123|98.597 +639921.943|219982.784|99.027 +639916.072|219984.442|99.472 +639910.238|219986.079|100.090 +639904.228|219987.798|100.258 +639886.720|219992.760|101.392 +639880.731|219994.482|101.450 +639874.878|219996.143|101.806 +639868.932|219997.875|101.541 +639863.028|219999.581|101.465 +639857.044|220001.334|101.102 +639851.031|220003.099|100.645 +639826.903|220010.249|98.015 +639821.072|220011.920|98.118 +639815.308|220013.575|98.231 +639809.572|220015.193|98.716 +639803.784|220016.854|98.783 +639798.044|220018.491|99.036 +639792.351|220020.119|99.225 +639786.617|220021.765|99.292 +639780.936|220023.383|99.566 +639775.330|220024.974|99.877 +639769.701|220026.565|100.353 +639764.245|220028.089|100.990 +639758.618|220029.693|101.261 +639753.028|220031.272|101.685 +639747.417|220032.881|101.800 +639741.781|220034.502|101.855 +639736.145|220036.121|101.922 +639730.869|220037.563|103.010 +639725.383|220039.117|103.379 +639719.665|220040.793|102.977 +639714.215|220042.327|103.504 +639708.686|220043.918|103.544 +639703.114|220045.530|103.452 +639697.527|220047.167|103.099 +639692.083|220048.727|103.239 +639686.646|220050.282|103.416 +639681.193|220051.843|103.556 +639675.770|220053.403|103.593 +639734.414|220038.590|102.105 +639739.943|220037.023|101.874 +639745.521|220035.429|101.831 +639751.090|220033.838|101.767 +639756.646|220032.268|101.435 +639762.184|220030.711|101.051 +639767.762|220029.147|100.581 +639773.258|220027.611|100.072 +639778.848|220026.038|99.679 +639784.535|220024.429|99.399 +639790.208|220022.810|99.328 +639795.926|220021.183|99.188 +639801.616|220019.567|98.972 +639807.289|220017.961|98.691 +639812.958|220016.358|98.429 +639818.792|220014.696|98.280 +639824.605|220013.026|98.329 +639830.441|220011.362|98.228 +639848.495|220006.068|99.880 +639854.624|220004.227|101.011 +639860.589|220002.498|101.261 +639866.646|220000.734|101.630 +639872.528|219999.051|101.599 +639878.493|219997.338|101.651 +639884.382|219995.668|101.413 +639896.230|219992.324|100.740 +639902.051|219990.687|100.292 +639908.092|219988.965|100.191 +639913.932|219987.335|99.575 +639919.858|219985.679|99.024 +639925.884|219983.960|98.929 +639931.797|219982.305|98.371 +639937.795|219980.601|98.188 +639943.843|219978.907|97.667 +639949.881|219977.172|97.695 +639956.102|219975.371|97.957 +639962.286|219973.567|98.377 +639968.531|219971.747|98.801 +639974.697|219969.973|98.893 +639980.830|219968.217|98.865 +639987.033|219966.437|98.880 +639993.226|219964.663|98.880 +639999.392|219962.905|98.768 +640005.613|219961.131|98.624 +640011.804|219959.354|98.673 +640017.888|219957.644|98.231 +640024.161|219955.855|98.088 +640030.351|219954.096|97.887 +640036.557|219952.325|97.777 +640049.087|219948.725|97.878 +640061.752|219945.080|98.097 +640067.954|219943.327|97.753 +640074.264|219941.529|97.631 +640078.427|219944.833|97.494 +640072.234|219946.595|97.823 +640066.153|219948.329|98.064 +640059.911|219950.146|97.859 +640053.754|219951.904|98.085 +640035.249|219957.263|97.795 +640029.168|219958.991|98.158 +640023.121|219960.719|98.387 +640016.928|219962.515|98.262 +640010.896|219964.228|98.606 +640004.885|219965.950|98.758 +639998.731|219967.715|98.883 +639992.690|219969.452|98.941 +639986.643|219971.192|98.981 +639980.559|219972.951|98.883 +639974.432|219974.716|98.920 +639968.416|219976.453|98.868 +639962.347|219978.221|98.621 +639956.144|219980.047|98.094 +639950.036|219981.833|97.731 +639944.068|219983.558|97.698 +639938.167|219985.216|98.252 +639932.181|219986.926|98.469 +639926.307|219988.587|98.890 +639914.643|219991.879|99.834 +639908.754|219993.549|100.237 +639902.810|219995.247|100.426 +639896.998|219996.887|100.895 +639885.336|220000.209|101.459 +639879.459|220001.883|101.724 +639873.610|220003.559|101.843 +639867.594|220005.333|101.322 +639861.748|220007.006|101.489 +639855.780|220008.747|101.206 +639849.796|220010.533|100.359 +639843.636|220012.380|99.389 +639837.647|220014.148|98.841 +639831.746|220015.864|98.652 +639825.842|220017.595|98.222 +639820.033|220019.275|98.164 +639814.357|220020.878|98.624 +639808.670|220022.502|98.804 +639802.915|220024.148|98.996 +639797.224|220025.773|99.203 +639791.552|220027.388|99.478 +639785.813|220029.037|99.542 +639780.122|220030.662|99.786 +639774.517|220032.253|100.112 +639757.853|220036.956|101.474 +639752.321|220038.523|101.861 +639746.722|220040.123|102.044 +639741.141|220041.732|102.053 +639735.578|220043.329|102.148 +639719.201|220047.959|103.358 +639713.630|220049.557|103.489 +639708.043|220051.178|103.349 +639702.477|220052.787|103.291 +639697.036|220054.345|103.434 +639691.550|220055.924|103.458 +639686.082|220057.497|103.544 +639680.614|220059.063|103.654 +639739.943|220044.049|102.041 +639745.472|220042.464|102.056 +639751.074|220040.867|101.870 +639756.570|220039.312|101.563 +639762.087|220037.764|101.099 +639767.637|220036.194|100.773 +639773.127|220034.658|100.243 +639778.714|220033.085|99.828 +639784.279|220031.503|99.603 +639789.964|220029.876|99.566 +639795.661|220028.254|99.353 +639801.339|220026.645|99.082 +639807.036|220025.023|98.893 +639812.757|220023.386|98.807 +639818.414|220021.804|98.252 +639824.120|220020.171|98.158 +639830.067|220018.442|98.463 +639835.882|220016.748|98.813 +639841.893|220014.977|99.420 +639847.900|220013.206|100.029 +639859.971|220009.646|101.304 +639865.853|220007.942|101.514 +639883.501|220002.879|101.462 +639895.312|219999.508|101.172 +639906.849|219996.274|100.109 +639912.835|219994.558|100.075 +639918.693|219992.937|99.264 +639930.440|219989.611|98.633 +639936.433|219987.908|98.411 +639942.340|219986.252|97.850 +639948.338|219984.539|97.704 +639954.419|219982.778|97.929 +639960.655|219980.940|98.554 +639966.797|219979.157|98.816 +639972.902|219977.398|98.923 +639978.992|219975.642|98.996 +639985.137|219973.875|99.036 +639991.251|219972.125|98.957 +639997.366|219970.372|98.911 +640003.462|219968.632|98.783 +640009.628|219966.867|98.713 +640015.760|219965.124|98.496 +640021.929|219963.353|98.472 +640028.138|219961.579|98.344 +640034.222|219959.860|97.966 +640052.745|219954.568|97.597 +640059.051|219952.749|97.737 +640065.403|219950.896|98.124 +640071.545|219949.155|97.814 +640077.769|219947.381|97.622 +640072.862|219953.188|98.164 +640066.726|219954.962|98.146 +640060.490|219956.772|97.987 +640035.789|219963.917|97.789 +640023.706|219967.343|98.630 +640017.482|219969.156|98.377 +640011.536|219970.842|98.807 +640005.382|219972.610|98.920 +639999.234|219974.396|98.777 +639993.257|219976.100|99.115 +639987.219|219977.834|99.216 +639981.150|219979.590|99.188 +639975.075|219981.345|99.155 +639969.050|219983.092|99.066 +639962.978|219984.866|98.801 +639956.763|219986.704|98.231 +639950.652|219988.496|97.847 +639944.696|219990.215|97.862 +639938.880|219991.849|98.502 +639927.021|219995.229|99.124 +639921.184|219996.890|99.438 +639915.368|219998.542|99.847 +639909.431|220000.240|100.048 +639903.688|220001.846|100.791 +639880.346|220008.530|101.581 +639862.717|220013.633|101.413 +639850.863|220017.114|100.660 +639838.884|220020.674|99.283 +639827.110|220024.133|98.515 +639821.267|220025.837|98.323 +639815.592|220027.458|98.536 +639804.320|220030.662|99.286 +639798.684|220032.277|99.432 +639793.049|220033.893|99.609 +639787.413|220035.508|99.780 +639781.753|220037.136|99.889 +639776.144|220038.733|100.206 +639770.633|220040.294|100.636 +639765.104|220041.860|101.020 +639742.997|220048.161|102.212 +639737.471|220049.742|102.437 +639732.055|220051.279|102.806 +639726.712|220052.775|103.455 +639721.167|220054.378|103.416 +639715.644|220055.988|103.236 +639710.204|220057.554|103.346 +639704.754|220059.118|103.455 +639699.310|220060.682|103.590 +639693.912|220062.236|103.657 +639688.493|220063.803|103.675 +639683.095|220065.354|103.779 +639744.506|220049.837|102.108 +639750.066|220048.252|101.989 +639755.613|220046.688|101.602 +639761.227|220045.106|101.227 +639766.769|220043.546|100.852 +639772.365|220041.973|100.438 +639777.970|220040.394|100.072 +639783.667|220038.779|99.801 +639789.342|220037.157|99.728 +639795.039|220035.542|99.484 +639800.760|220033.911|99.362 +639806.484|220032.277|99.252 +639812.236|220030.644|99.024 +639817.823|220029.086|98.438 +639823.629|220027.440|98.188 +639829.597|220025.681|98.813 +639835.550|220023.950|99.146 +639841.542|220022.192|99.667 +639859.507|220016.918|101.313 +639865.408|220015.227|101.307 +639871.501|220013.444|101.806 +639877.314|220011.798|101.496 +639883.215|220010.100|101.563 +639912.607|220001.785|100.051 +639918.514|220000.118|99.691 +639924.424|219998.448|99.362 +639930.383|219996.765|98.987 +639936.247|219995.122|98.493 +639942.209|219993.437|98.149 +639948.149|219991.763|97.737 +639954.291|219989.986|97.920 +639960.457|219988.176|98.512 +639966.578|219986.387|98.944 +639972.750|219984.610|99.036 +639978.852|219982.851|99.142 +639984.905|219981.123|99.054 +639991.059|219979.352|99.136 +639997.180|219977.599|99.082 +640003.269|219975.865|98.929 +640009.378|219974.115|98.874 +640015.513|219972.375|98.652 +640021.618|219970.622|98.627 +640027.779|219968.864|98.557 +640033.844|219967.157|98.076 +640046.216|219963.594|98.307 +640052.269|219961.917|97.494 +640058.603|219960.058|98.064 +640064.864|219958.244|98.295 +640071.082|219956.483|98.024 +640077.321|219954.675|98.219 +640077.641|219959.241|98.176 +640071.481|219961.006|98.371 +640065.281|219962.795|98.371 +640059.057|219964.599|98.286 +640052.714|219966.477|97.652 +640040.406|219970.007|97.963 +640034.307|219971.744|98.249 +640028.236|219973.466|98.682 +640022.082|219975.237|98.749 +640015.922|219977.011|98.810 +640009.841|219978.757|98.947 +640003.742|219980.510|99.027 +639997.637|219982.266|99.109 +639991.550|219984.009|99.280 +639985.503|219985.750|99.350 +639979.346|219987.533|99.264 +639973.262|219989.291|99.222 +639967.193|219991.062|98.969 +639961.000|219992.885|98.502 +639954.791|219994.717|97.984 +639948.728|219996.475|97.841 +639942.818|219998.164|98.085 +639936.713|219999.947|97.811 +639930.962|220001.517|99.030 +639925.088|220003.178|99.472 +639901.676|220009.789|101.456 +639895.870|220011.447|101.706 +639889.969|220013.139|101.852 +639884.044|220014.864|101.657 +639878.082|220016.586|101.608 +639872.141|220018.318|101.395 +639866.313|220019.982|101.645 +639854.588|220023.383|101.404 +639848.394|220025.270|100.057 +639842.414|220027.038|99.539 +639830.597|220030.494|98.893 +639813.321|220035.466|99.103 +639802.046|220038.681|99.639 +639784.956|220043.585|100.045 +639779.296|220045.207|100.185 +639773.730|220046.798|100.423 +639768.210|220048.359|100.846 +639762.632|220049.953|101.069 +639757.100|220051.519|101.483 +639746.112|220054.644|102.117 +639740.592|220056.219|102.370 +639735.155|220057.765|102.678 +639729.717|220059.310|103.001 +639724.209|220060.892|103.105 +639718.665|220062.495|103.096 +639702.383|220067.156|103.644 +639697.003|220068.698|103.791 +639691.580|220070.262|103.812 +639686.173|220071.816|103.891 +639746.384|220056.393|101.980 +639751.961|220054.811|101.691 +639757.439|220053.269|101.297 +639763.029|220051.696|100.840 +639768.643|220050.093|100.718 +639774.145|220048.551|100.206 +639779.845|220046.917|100.176 +639785.575|220045.283|100.029 +639796.977|220042.022|99.819 +639808.426|220038.770|99.347 +639814.110|220037.172|98.871 +639831.578|220032.162|98.792 +639837.504|220030.442|99.027 +639849.616|220026.867|100.301 +639855.810|220025.008|101.377 +639861.723|220023.307|101.407 +639867.606|220021.625|101.331 +639873.592|220019.899|101.416 +639879.533|220018.177|101.611 +639885.559|220016.443|101.633 +639903.408|220011.331|101.432 +639909.336|220009.673|100.862 +639927.021|220004.702|99.374 +639938.701|220001.499|97.332 +639944.967|219999.648|97.999 +639950.984|219997.929|97.905 +639957.129|219996.149|98.100 +639963.405|219994.308|98.600 +639969.580|219992.507|98.981 +639975.725|219990.721|99.243 +639981.949|219988.929|99.304 +639988.066|219987.179|99.203 +639994.153|219985.423|99.292 +640000.313|219983.665|99.130 +640006.470|219981.909|98.975 +640012.648|219980.135|98.944 +640018.732|219978.422|98.484 +640025.032|219976.593|98.755 +640031.159|219974.850|98.533 +640037.322|219973.103|98.204 +640043.589|219971.287|98.390 +640056.046|219967.730|98.121 +640062.197|219965.983|97.817 +640068.509|219964.133|98.313 +640074.831|219962.326|98.234 +640081.009|219960.582|97.801 +640079.777|219965.282|98.377 +640073.587|219967.071|98.405 +640067.415|219968.845|98.554 +640061.145|219970.708|97.908 +640054.988|219972.494|97.850 +640042.686|219976.026|98.179 +640030.510|219979.501|98.868 +640024.432|219981.251|98.981 +640018.250|219983.064|98.624 +640012.237|219984.771|99.072 +640006.147|219986.527|99.179 +640000.063|219988.273|99.347 +639994.022|219990.017|99.414 +639987.901|219991.785|99.447 +639981.836|219993.540|99.463 +639975.749|219995.308|99.386 +639969.598|219997.109|99.072 +639963.423|219998.926|98.676 +639957.299|220000.731|98.234 +639951.286|220002.489|97.996 +639945.226|220004.230|98.173 +639939.021|220006.077|97.457 +639915.850|220012.532|100.855 +639910.013|220014.194|101.215 +639898.177|220017.610|101.313 +639892.218|220019.323|101.489 +639886.430|220020.972|101.834 +639880.484|220022.691|101.846 +639874.549|220024.426|101.645 +639868.609|220026.157|101.450 +639862.759|220027.836|101.630 +639856.834|220029.559|101.538 +639850.951|220031.275|101.364 +639832.983|220036.630|99.261 +639827.012|220038.389|98.862 +639815.369|220041.769|98.707 +639809.700|220043.372|99.222 +639798.392|220046.612|99.664 +639770.185|220054.705|100.648 +639764.525|220056.329|100.828 +639758.957|220057.920|101.102 +639747.950|220061.044|101.916 +639742.467|220062.608|102.282 +639736.993|220064.160|102.703 +639731.473|220065.735|102.983 +639726.020|220067.296|103.263 +639720.451|220068.914|103.166 +639709.695|220071.978|103.839 +639693.339|220076.702|103.995 +639751.239|220061.773|101.691 +639756.728|220060.221|101.331 +639762.255|220058.664|100.871 +639767.845|220057.073|100.645 +639773.371|220055.515|100.206 +639778.997|220053.903|100.136 +639790.330|220050.663|99.856 +639795.944|220049.072|99.548 +639801.693|220047.423|99.499 +639807.280|220045.841|99.130 +639812.973|220044.219|98.908 +639824.446|220040.943|98.585 +639836.370|220037.425|99.773 +639854.320|220032.152|101.215 +639860.345|220030.366|101.919 +639866.097|220028.736|101.581 +639872.080|220027.010|101.633 +639878.082|220025.255|102.035 +639884.004|220023.560|101.898 +639907.620|220016.836|100.944 +639913.564|220015.126|100.974 +639919.315|220013.544|99.975 +639925.198|220011.886|99.511 +639937.076|220008.539|98.551 +639942.943|220006.909|97.789 +639949.039|220005.138|98.012 +639955.245|220003.340|98.158 +639961.414|220001.541|98.463 +639967.596|219999.737|98.835 +639973.780|219997.926|99.246 +639979.955|219996.140|99.365 +639986.118|219994.360|99.441 +639992.257|219992.595|99.438 +639998.429|219990.828|99.310 +640004.525|219989.087|99.158 +640010.643|219987.328|99.127 +640016.854|219985.554|98.935 +640023.033|219983.777|98.911 +640029.199|219982.007|98.865 +640035.371|219980.257|98.542 +640041.498|219978.532|98.033 +640053.961|219974.966|97.756 +640060.365|219973.079|98.323 +640066.641|219971.250|98.621 +640072.919|219969.467|98.304 +640079.229|219967.614|98.819 +640080.957|219971.531|98.307 +640074.864|219973.280|98.509 +640068.664|219975.072|98.521 +640062.337|219976.947|97.951 +640056.277|219978.693|98.060 +640031.896|219985.686|98.954 +640025.809|219987.444|99.033 +640019.637|219989.252|98.743 +640013.675|219990.949|99.127 +640007.592|219992.699|99.280 +640001.572|219994.433|99.423 +639995.488|219996.201|99.325 +639989.474|219997.929|99.539 +639983.403|219999.688|99.530 +639977.368|220001.444|99.405 +639971.278|220003.233|99.066 +639965.191|220005.016|98.774 +639959.064|220006.827|98.320 +639952.959|220008.616|97.999 +639946.997|220010.341|98.015 +639941.047|220012.057|98.115 +639935.086|220013.758|98.454 +639929.307|220015.391|99.014 +639923.479|220017.031|99.664 +639911.942|220020.277|100.926 +639905.992|220021.987|101.124 +639900.146|220023.673|101.203 +639894.367|220025.319|101.578 +639876.768|220030.385|102.011 +639870.858|220032.101|101.944 +639865.021|220033.795|101.904 +639859.184|220035.487|101.898 +639853.308|220037.218|101.493 +639841.353|220040.754|100.508 +639823.617|220045.987|99.188 +639817.896|220047.642|99.246 +639812.050|220049.364|98.862 +639806.396|220050.977|99.203 +639800.812|220052.565|99.569 +639795.121|220054.196|99.810 +639783.743|220057.487|99.856 +639778.153|220059.078|100.264 +639772.542|220060.679|100.599 +639766.939|220062.291|100.743 +639761.352|220063.891|100.968 +639755.845|220065.467|101.233 +639750.376|220067.022|101.645 +639739.449|220070.121|102.547 +639733.975|220071.673|102.986 +639728.531|220073.227|103.303 +639723.051|220074.800|103.516 +639717.549|220076.382|103.663 +639712.103|220077.952|103.785 +639706.674|220079.494|104.205 +639751.175|220068.457|101.499 +639756.661|220066.906|101.124 +639762.166|220065.345|100.813 +639767.759|220063.748|100.593 +639773.307|220062.160|100.484 +639778.860|220060.584|100.148 +639784.426|220059.002|99.880 +639795.804|220055.735|99.780 +639807.018|220052.553|99.155 +639812.790|220050.882|99.231 +639818.509|220049.246|99.112 +639824.309|220047.560|99.313 +639830.094|220045.881|99.490 +639836.001|220044.149|99.883 +639841.942|220042.400|100.429 +639853.850|220038.895|101.438 +639859.788|220037.160|101.785 +639865.625|220035.478|101.773 +639871.513|220033.768|101.980 +639877.338|220032.091|101.962 +639883.269|220030.372|102.111 +639895.026|220027.010|101.788 +639906.666|220023.712|101.063 +639912.509|220022.057|100.682 +639929.998|220017.150|98.920 +639935.896|220015.480|98.557 +639941.776|220013.819|98.121 +639947.799|220012.090|98.018 +639953.837|220010.353|98.018 +639959.945|220008.570|98.323 +639966.084|220006.766|98.795 +639972.320|220004.946|99.124 +639978.462|220003.160|99.374 +639984.570|220001.389|99.499 +639990.623|219999.655|99.408 +639996.783|219997.871|99.502 +640002.888|219996.122|99.392 +640008.981|219994.378|99.231 +640015.132|219992.620|99.063 +640021.286|219990.858|98.920 +640027.431|219989.078|99.057 +640033.618|219987.313|98.816 +640052.278|219981.927|98.966 +640058.435|219980.178|98.658 +640064.608|219978.416|98.445 +640070.908|219976.593|98.539 +640077.104|219974.813|98.490 +640076.845|219979.306|98.582 +640070.734|219981.068|98.707 +640064.458|219982.909|98.368 +640058.371|219984.649|98.664 +640052.406|219986.313|99.545 +640039.910|219989.995|98.676 +640033.923|219991.715|98.893 +640027.864|219993.455|99.085 +640021.676|219995.253|99.021 +640015.657|219996.985|99.142 +640009.579|219998.731|99.325 +640003.568|220000.456|99.530 +639997.536|220002.191|99.658 +639991.428|220003.974|99.469 +639985.457|220005.690|99.609 +639979.343|220007.473|99.441 +639973.289|220009.241|99.258 +639967.178|220011.036|98.859 +639961.140|220012.810|98.518 +639955.020|220014.611|98.131 +639948.978|220016.361|98.103 +639943.001|220018.092|98.085 +639936.969|220019.875|97.585 +639931.224|220021.466|98.573 +639914.012|220026.279|100.849 +639896.470|220031.296|101.648 +639878.926|220036.365|101.794 +639867.356|220039.690|102.117 +639861.488|220041.397|101.986 +639843.828|220046.582|101.002 +639814.644|220055.156|99.310 +639809.014|220056.771|99.490 +639786.538|220063.218|100.285 +639780.939|220064.830|100.414 +639775.334|220066.446|100.532 +639769.722|220068.058|100.654 +639764.196|220069.646|100.843 +639758.670|220071.231|101.051 +639753.174|220072.795|101.380 +639747.731|220074.352|101.654 +639742.296|220075.882|102.221 +639736.923|220077.397|102.770 +639731.582|220078.912|103.196 +639726.145|220080.460|103.559 +639720.738|220082.009|103.797 +639715.230|220083.609|103.711 +639709.929|220085.115|104.099 +639757.244|220073.654|101.112 +639762.760|220072.084|100.837 +639768.363|220070.484|100.648 +639773.995|220068.866|100.569 +639779.628|220067.247|100.511 +639785.300|220065.620|100.377 +639802.165|220060.822|99.505 +639807.911|220059.170|99.444 +639813.671|220057.509|99.450 +639825.293|220054.144|99.658 +639831.182|220052.422|99.953 +639837.056|220050.709|100.215 +639843.066|220048.916|101.014 +639849.034|220047.146|101.678 +639854.963|220045.417|101.959 +639866.734|220042.019|102.008 +639872.513|220040.370|101.785 +639878.368|220038.675|101.864 +639884.281|220036.965|101.938 +639896.007|220033.597|101.742 +639913.603|220028.592|100.804 +639919.318|220026.992|100.182 +639925.149|220025.361|99.493 +639936.671|220022.182|97.582 +639942.703|220020.408|98.045 +639948.750|220018.665|98.048 +639954.812|220016.909|98.134 +639960.856|220015.145|98.445 +639966.965|220013.358|98.774 +639973.143|220011.548|99.136 +639979.218|220009.780|99.368 +639985.335|220008.003|99.523 +639991.330|220006.281|99.450 +639997.509|220004.486|99.624 +640003.556|220002.748|99.542 +640009.640|220001.011|99.325 +640015.657|219999.289|99.142 +640021.814|219997.524|99.005 +640027.907|219995.774|98.896 +640034.009|219994.019|98.856 +640058.661|219986.935|98.490 +640064.781|219985.183|98.338 +640070.996|219983.366|98.652 +640077.242|219981.577|98.490 +640078.247|219985.359|98.658 +640072.039|219987.161|98.655 +640065.888|219988.944|98.627 +640059.709|219990.721|98.810 +640053.705|219992.409|99.527 +640035.121|219997.829|99.085 +640029.004|219999.606|99.036 +640022.917|220001.361|99.142 +640016.693|220003.181|98.947 +640010.740|220004.870|99.411 +640004.720|220006.604|99.575 +639998.606|220008.372|99.645 +639992.544|220010.128|99.664 +639986.502|220011.892|99.505 +639980.419|220013.657|99.478 +639974.271|220015.462|99.188 +639968.175|220017.254|98.862 +639962.131|220019.031|98.505 +639956.053|220020.811|98.304 +639950.009|220022.563|98.280 +639943.977|220024.331|98.036 +639909.089|220034.207|101.258 +639897.363|220037.581|101.605 +639891.475|220039.294|101.566 +639868.289|220045.963|102.270 +639862.403|220047.685|102.084 +639833.087|220056.296|100.609 +639827.287|220057.996|100.362 +639815.573|220061.453|99.527 +639809.907|220063.074|99.825 +639804.192|220064.739|99.728 +639798.629|220066.318|100.194 +639792.981|220067.942|100.368 +639787.422|220069.536|100.624 +639781.753|220071.188|100.511 +639776.257|220072.764|100.782 +639770.612|220074.401|100.785 +639765.068|220075.998|100.923 +639759.554|220077.577|101.179 +639754.074|220079.156|101.331 +639748.578|220080.725|101.675 +639743.208|220082.240|102.224 +639737.855|220083.746|102.855 +639732.506|220085.267|103.269 +639721.737|220088.345|103.891 +639716.348|220089.885|104.214 +639710.990|220091.424|104.416 +639705.443|220093.045|104.239 +639760.761|220078.997|101.057 +639766.293|220077.421|100.837 +639771.926|220075.806|100.749 +639777.568|220074.187|100.700 +639783.213|220072.581|100.441 +639794.527|220069.332|100.304 +639800.205|220067.704|100.209 +639805.902|220066.086|99.959 +639811.599|220064.461|99.716 +639817.323|220062.821|99.600 +639829.128|220059.359|100.465 +639835.053|220057.622|100.898 +639852.844|220052.406|102.139 +639858.748|220050.712|102.072 +639888.018|220042.321|101.578 +639929.057|220030.720|98.679 +639934.891|220029.110|97.731 +639941.005|220027.312|98.246 +639947.040|220025.581|98.167 +639953.118|220023.822|98.286 +639959.186|220022.064|98.402 +639965.300|220020.280|98.725 +639971.518|220018.473|98.950 +639977.627|220016.687|99.292 +639983.765|220014.904|99.511 +639989.901|220013.139|99.459 +639996.094|220011.341|99.673 +640002.136|220009.612|99.527 +640008.259|220007.854|99.472 +640014.355|220006.132|99.027 +640020.512|220004.348|99.161 +640026.620|220002.593|99.109 +640032.853|220000.801|99.048 +640039.004|219999.039|98.914 +640045.231|219997.228|99.170 +640063.693|219991.967|98.411 +640069.975|219990.136|98.719 +640076.239|219988.337|98.624 +640075.903|219992.934|98.768 +640069.771|219994.708|98.816 +640063.526|219996.527|98.664 +640045.058|220001.855|98.999 +640038.998|220003.596|99.182 +640032.899|220005.363|99.213 +640026.718|220007.156|99.194 +640020.622|220008.914|99.283 +640014.523|220010.673|99.392 +640008.460|220012.432|99.371 +640002.361|220014.187|99.514 +639996.347|220015.913|99.749 +639990.191|220017.723|99.383 +639984.107|220019.485|99.368 +639978.011|220021.256|99.307 +639971.927|220023.039|99.036 +639965.819|220024.834|98.691 +639959.668|220026.632|98.478 +639953.666|220028.382|98.353 +639947.601|220030.144|98.262 +639941.608|220031.887|98.207 +639935.610|220033.606|98.435 +639923.854|220036.962|99.109 +639906.322|220041.940|100.496 +639900.491|220043.598|100.950 +639894.639|220045.283|101.072 +639877.116|220050.294|101.941 +639865.539|220053.623|102.306 +639859.617|220055.342|102.267 +639836.123|220062.224|101.261 +639830.195|220063.977|100.798 +639824.345|220065.680|100.651 +639818.399|220067.457|99.917 +639812.726|220069.079|100.206 +639807.060|220070.719|100.279 +639801.342|220072.380|100.191 +639795.652|220074.029|100.221 +639773.169|220080.485|101.002 +639767.558|220082.115|100.916 +639761.980|220083.712|101.200 +639756.466|220085.288|101.477 +639750.931|220086.876|101.700 +639745.548|220088.400|102.212 +639740.184|220089.909|102.800 +639734.771|220091.445|103.245 +639729.351|220092.985|103.681 +639723.944|220094.533|103.931 +639718.531|220096.084|104.178 +639713.099|220097.660|104.147 +639765.876|220084.218|100.980 +639771.478|220082.597|101.026 +639777.135|220080.966|101.029 +639788.303|220077.760|100.822 +639793.905|220076.153|100.688 +639805.173|220072.941|100.200 +639810.879|220071.292|100.243 +639816.536|220069.667|100.124 +639834.029|220064.553|101.044 +639857.599|220057.667|102.233 +639863.409|220055.985|102.337 +639875.080|220052.641|102.026 +639886.714|220049.313|101.633 +639892.602|220047.636|101.346 +639915.850|220041.074|99.417 +639921.787|220039.379|99.142 +639933.586|220036.017|98.600 +639945.586|220032.570|98.408 +639951.615|220030.836|98.323 +639957.659|220029.092|98.316 +639963.743|220027.324|98.505 +639969.936|220025.508|98.899 +639976.081|220023.722|99.106 +639982.199|220021.945|99.234 +639988.292|220020.186|99.261 +639994.570|220018.351|99.554 +640000.639|220016.605|99.530 +640006.756|220014.843|99.450 +640012.871|220013.087|99.371 +640019.037|220011.316|99.252 +640025.142|220009.561|99.167 +640031.387|220007.759|99.152 +640037.578|220005.970|99.216 +640056.101|220000.688|98.353 +640062.358|219998.850|98.819 +640068.643|219997.036|98.798 +640074.931|219995.223|98.829 +640081.119|219993.443|98.725 +640076.979|219999.021|98.920 +640070.868|220000.785|99.075 +640064.620|220002.636|98.585 +640046.435|220007.842|99.630 +640040.297|220009.637|99.447 +640034.192|220011.411|99.438 +640028.144|220013.169|99.411 +640021.960|220014.968|99.392 +640015.928|220016.711|99.490 +640009.945|220018.446|99.514 +640003.836|220020.213|99.612 +639997.850|220021.923|99.965 +639991.742|220023.731|99.508 +639985.667|220025.517|99.219 +639979.611|220027.269|99.331 +639973.554|220029.037|99.179 +639967.516|220030.817|98.832 +639961.494|220032.585|98.585 +639955.462|220034.335|98.597 +639949.487|220036.072|98.594 +639943.504|220037.809|98.585 +639937.603|220039.519|98.646 +639931.583|220041.296|98.234 +639919.830|220044.658|98.935 +639885.199|220054.510|101.749 +639879.432|220056.168|101.974 +639856.279|220062.852|102.486 +639827.189|220071.374|101.526 +639821.410|220073.081|101.145 +639809.672|220076.553|100.295 +639787.297|220082.963|101.514 +639776.001|220086.245|101.480 +639770.338|220087.891|101.441 +639764.684|220089.552|101.200 +639759.179|220091.128|101.508 +639753.726|220092.695|101.761 +639748.307|220094.225|102.376 +639732.079|220098.840|103.702 +639726.703|220100.376|104.050 +639721.286|220101.933|104.278 +639715.827|220103.509|104.382 +639710.451|220105.061|104.537 +639766.671|220090.531|101.322 +639772.304|220088.894|101.456 +639777.912|220087.269|101.523 +639783.502|220085.672|101.297 +639789.147|220084.026|101.526 +639794.697|220082.448|101.194 +639800.272|220080.875|100.712 +639805.896|220079.256|100.666 +639811.532|220077.644|100.444 +639828.975|220072.526|101.581 +639852.152|220065.772|102.425 +639858.020|220064.077|102.453 +639881.084|220057.472|101.730 +639892.560|220054.211|100.993 +639898.409|220052.559|100.538 +639904.215|220050.907|100.212 +639915.847|220047.609|99.405 +639933.571|220042.540|98.749 +639939.435|220040.864|98.487 +639945.449|220039.123|98.573 +639951.429|220037.398|98.539 +639957.482|220035.648|98.566 +639963.530|220033.902|98.576 +639969.568|220032.137|98.859 +639975.664|220030.357|99.127 +639981.781|220028.583|99.216 +639987.862|220026.831|99.179 +639993.967|220025.063|99.264 +640000.154|220023.240|99.740 +640006.208|220021.521|99.350 +640012.307|220019.753|99.475 +640018.418|220017.994|99.392 +640024.602|220016.211|99.350 +640030.735|220014.437|99.392 +640036.865|220012.660|99.459 +640067.723|220003.794|98.896 +640073.928|220002.008|98.829 +640080.216|220000.191|98.847 +640079.208|220004.550|98.969 +640072.993|220006.354|98.957 +640066.857|220008.152|98.704 +640060.721|220009.923|98.810 +640048.657|220013.355|99.709 +640042.476|220015.175|99.353 +640036.359|220016.931|99.618 +640030.296|220018.695|99.533 +640024.228|220020.463|99.459 +640018.110|220022.234|99.484 +640012.069|220023.984|99.566 +640005.970|220025.764|99.420 +640000.036|220027.462|99.725 +639993.936|220029.242|99.612 +639987.831|220031.040|99.225 +639981.833|220032.774|99.310 +639975.837|220034.530|99.136 +639969.754|220036.310|98.914 +639963.688|220038.081|98.777 +639957.680|220039.836|98.624 +639951.783|220041.543|98.685 +639945.793|220043.284|98.646 +639939.804|220045.024|98.637 +639933.900|220046.728|98.731 +639898.924|220056.762|100.340 +639870.340|220064.894|102.541 +639858.809|220068.235|102.645 +639853.021|220069.914|102.639 +639841.503|220073.258|102.645 +639824.016|220078.403|101.663 +639818.252|220080.098|101.364 +639801.254|220085.032|101.395 +639790.098|220088.236|101.816 +639778.897|220091.482|101.889 +639773.279|220093.122|101.773 +639767.634|220094.774|101.587 +639762.123|220096.371|101.639 +639756.567|220097.974|101.779 +639751.227|220099.474|102.447 +639740.495|220102.519|103.401 +639735.124|220104.052|103.757 +639729.726|220105.597|104.044 +639724.292|220107.161|104.224 +639718.802|220108.755|104.233 +639713.483|220110.273|104.589 +639771.853|220095.581|101.614 +639777.501|220093.932|101.813 +639783.161|220092.277|102.078 +639799.949|220087.462|101.575 +639805.487|220085.904|100.980 +639811.266|220084.212|101.270 +639816.988|220082.551|101.377 +639822.718|220080.884|101.529 +639828.622|220079.134|102.090 +639834.450|220077.427|102.383 +639840.287|220075.733|102.495 +639846.011|220074.081|102.459 +639851.845|220072.383|102.596 +639857.633|220070.713|102.581 +639869.179|220067.381|102.492 +639897.952|220059.219|100.392 +639903.652|220057.606|99.917 +639909.574|220055.902|99.783 +639915.301|220054.293|99.179 +639927.091|220050.913|98.795 +639933.019|220049.200|98.761 +639938.935|220047.496|98.710 +639944.937|220045.756|98.743 +639950.899|220044.043|98.633 +639956.815|220042.330|98.649 +639962.819|220040.586|98.749 +639968.882|220038.824|98.859 +639974.972|220037.047|99.097 +639981.037|220035.283|99.243 +639987.045|220033.551|99.185 +639993.220|220031.738|99.566 +639999.356|220029.943|99.816 +640005.272|220028.263|99.408 +640011.377|220026.489|99.557 +640017.498|220024.721|99.511 +640023.612|220022.957|99.456 +640029.674|220021.204|99.490 +640035.786|220019.439|99.453 +640041.967|220017.650|99.466 +640048.151|220015.858|99.517 +640066.446|220010.640|98.573 +640072.676|220008.811|98.929 +640078.909|220007.003|99.002 +640081.140|220010.472|99.124 +640075.013|220012.246|99.216 +640068.759|220014.075|99.027 +640050.495|220019.326|99.731 +640038.291|220022.868|99.752 +640032.180|220024.645|99.752 +640026.105|220026.416|99.652 +640020.046|220028.178|99.633 +640013.925|220029.952|99.667 +640007.881|220031.701|99.749 +639977.572|220040.537|99.298 +639971.579|220042.287|99.161 +639965.489|220044.073|98.932 +639959.491|220045.826|98.816 +639953.511|220047.563|98.810 +639947.628|220049.261|98.938 +639941.657|220050.989|99.011 +639935.656|220052.736|98.966 +639929.709|220054.467|98.908 +639923.793|220056.180|98.981 +639912.140|220059.536|99.368 +639906.309|220061.194|99.844 +639900.485|220062.870|100.087 +639872.004|220070.969|102.440 +639854.774|220075.940|102.870 +639848.973|220077.629|102.840 +639814.449|220087.733|101.819 +639797.672|220092.558|102.456 +639791.985|220094.225|102.282 +639780.863|220097.447|102.386 +639775.212|220099.105|102.157 +639769.542|220100.772|101.880 +639763.998|220102.388|101.816 +639758.566|220103.942|102.157 +639753.144|220105.490|102.538 +639747.737|220107.027|102.989 +639742.388|220108.551|103.407 +639737.026|220110.078|103.809 +639731.634|220111.623|104.105 +639726.221|220113.193|104.129 +639720.808|220114.763|104.166 +639715.452|220116.302|104.400 +639776.864|220100.665|102.248 +639782.530|220099.007|102.517 +639793.795|220095.761|102.383 +639799.501|220094.112|102.367 +639805.134|220092.503|102.102 +639810.834|220090.872|101.840 +639822.465|220087.462|102.471 +639828.226|220085.794|102.492 +639839.869|220082.408|102.782 +639845.685|220080.722|102.812 +639851.500|220079.037|102.867 +639868.926|220074.023|102.541 +639874.683|220072.383|102.197 +639891.914|220067.521|100.548 +639897.769|220065.842|100.377 +639903.627|220064.178|99.962 +639915.286|220060.859|99.231 +639927.213|220057.420|99.091 +639933.135|220055.713|99.021 +639939.133|220053.979|99.011 +639945.117|220052.254|98.950 +639951.075|220050.541|98.819 +639957.123|220048.795|98.792 +639963.219|220047.014|98.993 +639969.217|220045.274|99.082 +639975.283|220043.512|99.197 +639981.342|220041.772|99.027 +639993.626|220038.166|99.752 +639999.761|220036.374|99.975 +640005.827|220034.646|99.621 +640011.917|220032.881|99.691 +640017.970|220031.134|99.621 +640024.161|220029.345|99.588 +640030.302|220027.565|99.658 +640036.426|220025.791|99.676 +640042.564|220024.008|99.783 +640048.712|220022.243|99.633 +640067.012|220017.019|98.670 +640073.249|220015.190|99.039 +640079.494|220013.374|99.158 +640077.333|220018.168|99.237 +640071.142|220019.982|99.051 +640065.001|220021.759|99.139 +640052.882|220025.230|99.810 +640046.691|220027.035|99.719 +640040.647|220028.769|100.020 +640034.512|220030.561|99.908 +640028.373|220032.351|99.825 +640022.240|220034.137|99.786 +640016.184|220035.895|99.801 +640010.131|220037.651|99.862 +640004.044|220039.425|99.798 +639998.012|220041.165|99.990 +639991.836|220043.009|99.301 +639985.747|220044.780|99.289 +639979.745|220046.518|99.392 +639973.689|220048.285|99.277 +639967.644|220050.047|99.243 +639961.628|220051.809|99.057 +639955.553|220053.583|98.950 +639949.582|220055.314|98.996 +639943.635|220057.030|99.170 +639937.753|220058.725|99.359 +639931.806|220060.459|99.292 +639925.783|220062.215|99.213 +639919.577|220064.099|98.158 +639908.184|220067.299|99.636 +639902.292|220068.997|99.880 +639896.513|220070.643|100.328 +639879.493|220075.434|102.443 +639873.766|220077.086|102.617 +639867.947|220078.769|102.730 +639850.613|220083.780|103.105 +639844.907|220085.432|103.187 +639833.432|220088.769|103.190 +639827.564|220090.506|102.751 +639816.122|220093.850|102.498 +639810.425|220095.508|102.480 +639799.181|220098.754|102.797 +639793.530|220100.400|102.760 +639782.240|220103.680|102.773 +639776.580|220105.344|102.520 +639770.944|220107.011|102.136 +639765.306|220108.660|101.989 +639759.862|220110.221|102.300 +639754.409|220111.785|102.584 +639749.008|220113.321|103.065 +639743.646|220114.851|103.449 +639738.273|220116.387|103.812 +639727.404|220119.539|103.934 +639722.048|220121.078|104.172 +639781.320|220105.798|102.724 +639786.974|220104.149|102.949 +639792.585|220102.540|102.797 +639803.878|220099.279|102.803 +639809.477|220097.672|102.657 +639832.383|220091.022|103.126 +639838.168|220089.342|103.254 +639849.613|220086.044|103.120 +639866.981|220081.055|102.770 +639872.784|220079.390|102.581 +639878.560|220077.723|102.553 +639895.596|220072.962|100.404 +639901.314|220071.365|99.694 +639907.202|220069.682|99.402 +639912.963|220068.061|98.871 +639924.847|220064.614|99.054 +639930.922|220062.840|99.310 +639936.936|220061.099|99.335 +639942.824|220059.411|99.149 +639948.814|220057.686|99.106 +639954.764|220055.979|98.941 +639960.863|220054.202|99.118 +639966.953|220052.431|99.295 +639972.994|220050.684|99.280 +639979.068|220048.919|99.429 +639985.167|220047.158|99.432 +639991.254|220045.402|99.386 +639997.451|220043.576|99.850 +640003.559|220041.805|99.953 +640009.686|220040.041|99.874 +640015.818|220038.273|99.828 +640021.957|220036.499|99.837 +640028.089|220034.725|99.847 +640034.298|220032.924|99.926 +640040.434|220031.147|99.987 +640052.851|220027.562|99.938 +640058.856|220025.886|99.155 +640065.083|220024.090|99.124 +640071.295|220022.301|99.033 +640077.549|220020.485|99.167 +640080.024|220024.209|99.307 +640073.834|220026.026|99.112 +640067.665|220027.824|99.060 +640061.505|220029.641|98.743 +640043.479|220034.783|100.084 +640037.364|220036.563|100.084 +640031.308|220038.325|100.054 +640025.246|220040.089|100.042 +640019.177|220041.854|100.014 +640013.115|220043.616|100.033 +640007.073|220045.362|100.161 +639994.933|220048.929|99.664 +639988.819|220050.715|99.551 +639982.891|220052.428|99.676 +639976.883|220054.189|99.490 +639970.839|220055.948|99.456 +639964.855|220057.689|99.426 +639958.836|220059.453|99.246 +639952.895|220061.188|99.155 +639946.942|220062.907|99.304 +639940.950|220064.647|99.307 +639935.089|220066.333|99.591 +639923.162|220069.832|99.130 +639899.662|220076.632|99.588 +639877.149|220082.938|102.791 +639871.306|220084.639|102.803 +639865.551|220086.303|102.913 +639859.803|220087.964|103.062 +639854.045|220089.629|103.196 +639848.373|220091.259|103.410 +639842.661|220092.914|103.498 +639831.106|220096.273|103.504 +639825.333|220097.977|103.169 +639819.581|220099.647|103.187 +639813.836|220101.333|103.001 +639808.124|220102.997|102.953 +639802.564|220104.594|103.221 +639796.877|220106.259|103.050 +639791.214|220107.911|102.995 +639785.685|220109.505|103.172 +639779.933|220111.202|102.834 +639774.258|220112.873|102.553 +639768.582|220114.543|102.279 +639763.032|220116.162|102.227 +639757.573|220117.728|102.501 +639752.120|220119.292|102.797 +639746.673|220120.849|103.141 +639741.232|220122.404|103.510 +639730.391|220125.525|103.964 +639725.026|220127.067|104.178 +639782.249|220112.150|103.026 +639787.824|220110.538|102.977 +639793.369|220108.929|103.065 +639804.625|220105.661|103.190 +639810.248|220104.037|103.132 +639815.857|220102.421|103.044 +639827.275|220099.090|103.398 +639832.983|220097.428|103.483 +639844.353|220094.137|103.519 +639850.037|220092.506|103.315 +639855.731|220090.869|103.169 +639861.394|220089.248|102.916 +639867.167|220087.583|102.840 +639878.664|220084.273|102.559 +639901.237|220077.964|99.527 +639918.733|220072.953|98.789 +639924.722|220071.188|99.203 +639930.681|220069.439|99.527 +639936.622|220067.720|99.527 +639942.504|220066.031|99.316 +639948.475|220064.312|99.200 +639954.462|220062.581|99.173 +639960.418|220060.846|99.319 +639966.425|220059.100|99.414 +639972.479|220057.344|99.453 +639978.547|220055.576|99.575 +639984.604|220053.818|99.661 +640002.925|220048.474|100.164 +640008.997|220046.722|100.118 +640015.044|220044.978|99.999 +640021.189|220043.198|100.036 +640027.251|220041.443|100.017 +640033.384|220039.666|100.039 +640039.568|220037.877|100.020 +640045.646|220036.133|99.828 +640064.062|220030.860|99.024 +640070.213|220029.083|98.950 +640076.489|220027.248|99.182 +640080.972|220030.519|99.447 +640074.770|220032.341|99.210 +640068.643|220034.137|99.051 +640062.492|220035.947|98.789 +640044.539|220041.077|100.164 +640038.459|220042.836|100.313 +640032.335|220044.622|100.285 +640026.346|220046.368|100.292 +640020.277|220048.136|100.255 +640014.255|220049.880|100.444 +640008.271|220051.614|100.538 +640002.203|220053.403|100.279 +639996.094|220055.211|99.877 +639990.053|220056.978|99.789 +639984.058|220058.716|99.914 +639978.081|220060.459|99.853 +639972.082|220062.218|99.719 +639966.075|220063.980|99.581 +639960.076|220065.732|99.496 +639954.160|220067.457|99.496 +639948.247|220069.177|99.527 +639942.328|220070.902|99.545 +639936.442|220072.602|99.731 +639930.572|220074.312|99.728 +639924.640|220076.056|99.499 +639918.599|220077.863|98.850 +639907.001|220081.195|99.536 +639884.397|220087.593|102.066 +639867.304|220092.506|102.980 +639861.559|220094.170|103.132 +639855.877|220095.795|103.553 +639850.162|220097.456|103.602 +639844.560|220099.071|103.839 +639833.127|220102.406|103.775 +639816.061|220107.402|103.498 +639810.425|220109.044|103.471 +639804.796|220110.684|103.477 +639776.659|220118.926|102.901 +639770.975|220120.606|102.596 +639765.427|220122.227|102.535 +639759.904|220123.830|102.590 +639754.473|220125.403|102.727 +639749.066|220126.964|102.956 +639743.625|220128.539|103.099 +639738.264|220130.070|103.513 +639732.893|220131.624|103.681 +639727.547|220133.163|103.946 +639788.321|220117.305|103.416 +639793.908|220115.686|103.407 +639799.535|220114.043|103.559 +639805.131|220112.434|103.382 +639810.800|220110.785|103.486 +639816.454|220109.142|103.547 +639822.160|220107.487|103.565 +639827.884|220105.820|103.678 +639833.563|220104.177|103.632 +639839.284|220102.510|103.769 +639845.051|220100.833|103.836 +639850.702|220099.221|103.504 +639856.447|220097.553|103.532 +639862.132|220095.920|103.352 +639867.822|220094.298|102.959 +639879.359|220090.967|102.806 +639896.071|220086.337|99.904 +639901.807|220084.706|99.505 +639907.593|220083.042|99.322 +639919.334|220079.653|99.130 +639925.305|220077.900|99.453 +639931.306|220076.144|99.661 +639937.186|220074.437|99.682 +639943.084|220072.743|99.514 +639949.006|220071.030|99.469 +639954.998|220069.295|99.447 +639960.920|220067.579|99.444 +639966.931|220065.830|99.545 +639972.942|220064.077|99.673 +639979.026|220062.300|99.844 +639984.981|220060.578|99.780 +639991.029|220058.822|99.837 +639997.055|220057.055|100.124 +640003.193|220055.259|100.337 +640015.355|220051.715|100.630 +640021.341|220050.008|100.243 +640027.480|220048.228|100.252 +640033.561|220046.460|100.328 +640039.632|220044.695|100.389 +640045.792|220042.918|100.264 +640051.870|220041.168|100.090 +640063.910|220037.767|98.941 +640070.085|220035.972|98.978 +640076.278|220034.170|99.100 +640076.428|220038.736|99.008 +640070.274|220040.528|99.033 +640064.150|220042.318|98.926 +640046.146|220047.453|100.395 +640040.132|220049.194|100.557 +640034.003|220050.980|100.520 +640027.940|220052.748|100.511 +640021.893|220054.503|100.581 +640015.958|220056.210|100.883 +640003.736|220059.813|100.292 +639997.713|220061.569|100.273 +639991.730|220063.318|100.154 +639985.661|220065.098|99.984 +639979.721|220066.820|100.087 +639973.710|220068.585|99.920 +639967.754|220070.332|99.734 +639961.750|220072.090|99.630 +639955.757|220073.837|99.609 +639949.826|220075.565|99.584 +639943.931|220077.275|99.716 +639938.079|220078.973|99.783 +639932.220|220080.677|99.831 +639926.228|220082.435|99.639 +639920.278|220084.188|99.371 +639914.429|220085.901|99.258 +639902.868|220089.239|99.630 +639897.074|220090.915|99.783 +639874.741|220097.185|102.977 +639868.987|220098.852|103.093 +639863.363|220100.464|103.468 +639851.997|220103.747|103.818 +639846.309|220105.393|103.992 +639840.628|220107.051|103.961 +639834.922|220108.718|103.876 +639829.195|220110.398|103.715 +639823.559|220112.044|103.663 +639817.868|220113.699|103.681 +639812.327|220115.308|103.757 +639806.688|220116.951|103.748 +639801.132|220118.566|103.800 +639795.481|220120.234|103.541 +639784.343|220123.468|103.660 +639778.732|220125.126|103.361 +639773.130|220126.775|103.102 +639767.579|220128.415|102.824 +639762.044|220130.024|102.834 +639756.582|220131.612|102.879 +639751.148|220133.185|103.029 +639745.740|220134.760|103.056 +639740.278|220136.342|103.157 +639734.935|220137.879|103.422 +639729.641|220139.387|103.870 +639792.588|220122.922|103.541 +639798.288|220121.255|103.705 +639803.948|220119.612|103.742 +639809.572|220117.987|103.672 +639815.204|220116.354|103.654 +639820.874|220114.717|103.538 +639832.343|220111.370|103.833 +639838.110|220109.694|103.876 +639843.883|220108.011|103.964 +639849.516|220106.393|103.797 +639855.237|220104.738|103.733 +639861.031|220103.058|103.705 +639872.458|220099.806|102.846 +639894.916|220093.521|99.773 +639900.771|220091.838|99.566 +639906.663|220090.132|99.523 +639912.357|220088.541|98.716 +639918.413|220086.736|99.356 +639924.357|220084.996|99.578 +639930.267|220083.274|99.676 +639936.305|220081.515|99.780 +639942.184|220079.829|99.530 +639948.128|220078.101|99.563 +639954.096|220076.379|99.450 +639960.040|220074.651|99.520 +639966.053|220072.895|99.633 +639972.143|220071.118|99.798 +639978.172|220069.353|100.014 +639984.137|220067.625|99.984 +639990.209|220065.851|100.142 +639996.320|220064.074|100.212 +640002.401|220062.291|100.456 +640008.475|220060.511|100.706 +640014.605|220058.719|100.916 +640020.713|220056.957|100.776 +640026.642|220055.259|100.453 +640032.732|220053.485|100.563 +640038.928|220051.687|100.569 +640044.985|220049.931|100.581 +640051.050|220048.188|100.350 +640063.023|220044.823|98.902 +640069.207|220043.003|99.258 +640075.358|220041.220|99.200 +640072.511|220046.816|99.027 +640066.412|220048.572|99.344 +640048.389|220053.723|100.697 +640036.203|220057.256|100.923 +640030.135|220059.030|100.874 +640024.063|220060.801|100.840 +640018.055|220062.529|101.105 +640012.063|220064.272|101.160 +640005.854|220066.122|100.596 +639999.847|220067.869|100.636 +639993.830|220069.622|100.651 +639987.749|220071.411|100.429 +639981.781|220073.151|100.407 +639969.693|220076.696|100.097 +639963.667|220078.464|99.911 +639957.723|220080.204|99.801 +639951.737|220081.948|99.822 +639945.757|220083.685|99.883 +639939.895|220085.392|99.901 +639933.961|220087.120|99.923 +639928.078|220088.836|99.898 +639922.174|220090.561|99.807 +639916.249|220092.299|99.655 +639910.406|220093.990|99.844 +639904.532|220095.712|99.673 +639898.763|220097.377|99.923 +639892.987|220099.062|99.889 +639887.329|220100.656|100.599 +639870.492|220105.402|102.788 +639864.930|220106.978|103.385 +639853.631|220110.227|103.980 +639847.891|220111.900|103.961 +639842.298|220113.510|104.257 +639836.583|220115.186|104.126 +639830.835|220116.878|103.888 +639825.120|220118.548|103.806 +639819.533|220120.167|103.943 +639813.882|220121.819|103.870 +639791.521|220128.317|104.126 +639785.950|220129.954|103.937 +639774.748|220133.240|103.669 +639769.219|220134.867|103.446 +639763.663|220136.489|103.388 +639758.167|220138.098|103.318 +639752.702|220139.686|103.361 +639747.319|220141.247|103.477 +639741.943|220142.804|103.611 +639791.201|220130.466|104.083 +639808.115|220125.555|104.141 +639813.723|220123.940|104.007 +639819.392|220122.306|103.867 +639825.040|220120.663|103.922 +639830.746|220119.008|103.943 +639836.525|220117.329|104.007 +639842.271|220115.646|104.211 +639847.983|220114.001|104.062 +639853.747|220112.342|103.882 +639865.198|220109.066|103.282 +639870.867|220107.459|102.785 +639876.506|220105.868|102.203 +639882.224|220104.247|101.669 +639887.793|220102.714|100.578 +639893.480|220101.110|99.956 +639905.267|220097.703|99.804 +639917.038|220094.301|99.664 +639922.979|220092.564|99.850 +639928.935|220090.836|99.840 +639934.967|220089.086|99.880 +639940.901|220087.367|99.834 +639946.897|220085.633|99.773 +639952.840|220083.908|99.807 +639958.909|220082.146|99.813 +639964.947|220080.381|99.987 +639971.034|220078.607|100.127 +639977.081|220076.833|100.380 +639983.211|220075.050|100.456 +639989.304|220073.267|100.685 +640001.425|220069.753|100.654 +640007.525|220067.982|100.676 +640013.770|220066.141|101.087 +640019.863|220064.370|101.139 +640025.880|220062.645|100.877 +640032.079|220060.846|100.862 +640038.227|220059.057|100.926 +640044.265|220057.314|100.825 +640050.468|220055.534|100.581 +640056.503|220053.812|100.206 +640068.680|220050.340|99.386 +640074.843|220048.581|99.024 +640080.436|220051.458|99.097 +640074.349|220053.208|99.450 +640068.250|220054.982|99.472 +640056.238|220058.417|100.410 +640044.219|220061.870|101.072 +640038.114|220063.644|101.157 +640032.037|220065.421|101.087 +640025.974|220067.189|101.099 +640019.939|220068.939|101.255 +640013.852|220070.716|101.209 +640007.756|220072.520|100.855 +640001.803|220074.233|101.139 +639977.611|220081.329|100.581 +639971.506|220083.127|100.334 +639965.489|220084.892|100.203 +639959.461|220086.663|100.036 +639953.520|220088.400|99.984 +639947.558|220090.147|99.868 +639941.633|220091.872|99.908 +639935.710|220093.591|99.990 +639929.770|220095.322|100.017 +639923.860|220097.054|99.920 +639917.944|220098.785|99.813 +639912.107|220100.470|100.048 +639906.142|220102.229|99.801 +639900.314|220103.906|100.093 +639894.480|220105.603|100.130 +639888.701|220107.271|100.389 +639871.919|220111.986|102.809 +639866.225|220113.620|103.190 +639849.220|220118.502|104.193 +639832.023|220123.522|104.150 +639826.418|220125.153|104.220 +639820.764|220126.790|104.370 +639815.101|220128.448|104.272 +639809.386|220130.118|104.245 +639803.805|220131.728|104.477 +639798.230|220133.352|104.492 +639792.570|220135.004|104.473 +639786.986|220136.632|104.495 +639781.430|220138.263|104.391 +639775.766|220139.927|104.187 +639770.121|220141.600|103.824 +639764.559|220143.228|103.754 +639759.118|220144.807|103.879 +639753.610|220146.419|103.806 +639748.130|220148.013|103.833 +639742.653|220149.607|103.885 +639796.310|220135.809|104.467 +639801.833|220134.209|104.473 +639807.368|220132.618|104.294 +639813.001|220130.990|104.239 +639818.621|220129.350|104.394 +639829.853|220126.107|104.251 +639846.931|220121.160|104.245 +639852.594|220119.523|104.175 +639858.267|220117.899|103.910 +639869.380|220114.763|102.803 +639874.909|220113.235|101.794 +639891.853|220108.447|100.151 +639897.659|220106.780|99.975 +639903.435|220105.128|99.697 +639909.373|220103.378|100.063 +639915.161|220101.717|99.874 +639921.016|220100.013|99.959 +639926.984|220098.282|99.981 +639932.891|220096.566|100.039 +639938.813|220094.859|99.929 +639944.766|220093.131|99.947 +639950.716|220091.406|99.978 +639956.675|220089.674|100.057 +639962.694|220087.922|100.151 +639968.733|220086.160|100.319 +639974.771|220084.392|100.535 +639980.870|220082.612|100.731 +639993.050|220079.052|101.136 +639999.103|220077.293|101.209 +640005.080|220075.577|100.983 +640011.237|220073.773|101.270 +640017.342|220071.996|101.355 +640023.423|220070.234|101.355 +640029.534|220068.472|101.224 +640035.670|220066.695|101.212 +640041.808|220064.915|101.233 +640047.898|220063.163|101.060 +640054.028|220061.407|100.791 +640065.827|220058.137|98.795 +640072.136|220056.283|99.103 +640070.463|220061.304|99.563 +640064.394|220063.059|99.743 +640058.539|220064.702|100.612 +640052.580|220066.388|101.319 +640040.541|220069.875|101.630 +640034.524|220071.633|101.532 +640028.461|220073.401|101.544 +640022.490|220075.129|101.700 +640016.504|220076.867|101.794 +640010.423|220078.659|101.517 +640004.403|220080.415|101.514 +639998.396|220082.161|101.587 +639986.405|220085.694|101.054 +639980.361|220087.458|101.032 +639974.316|220089.239|100.767 +639968.352|220090.994|100.566 +639962.399|220092.738|100.438 +639956.431|220094.490|100.276 +639950.481|220096.228|100.206 +639944.525|220097.971|100.127 +639938.643|220099.687|100.100 +639932.790|220101.385|100.215 +639926.941|220103.101|100.087 +639921.062|220104.811|100.133 +639915.170|220106.527|100.151 +639909.354|220108.215|100.215 +639891.898|220113.303|100.231 +639886.290|220114.887|100.898 +639880.636|220116.500|101.404 +639869.447|220119.652|102.882 +639863.875|220121.230|103.486 +639858.285|220122.821|104.019 +639852.698|220124.428|104.333 +639846.977|220126.089|104.419 +639841.332|220127.723|104.562 +639835.611|220129.399|104.440 +639829.975|220131.045|104.400 +639824.330|220132.679|104.586 +639818.685|220134.325|104.550 +639813.037|220135.974|104.519 +639807.392|220137.620|104.519 +639801.790|220139.241|104.681 +639796.240|220140.850|104.806 +639790.641|220142.484|104.775 +639785.108|220144.100|104.754 +639779.485|220145.742|104.681 +639773.901|220147.382|104.525 +639762.840|220150.619|104.385 +639757.265|220152.250|104.309 +639751.696|220153.893|104.050 +639746.298|220155.459|104.129 +639802.260|220140.838|104.641 +639807.804|220139.241|104.489 +639813.394|220137.613|104.516 +639819.054|220135.967|104.565 +639824.641|220134.358|104.376 +639830.265|220132.731|104.327 +639841.646|220129.411|104.531 +639847.309|220127.774|104.437 +639852.957|220126.144|104.303 +639858.584|220124.541|103.864 +639864.241|220122.922|103.544 +639880.892|220118.240|101.493 +639886.510|220116.658|100.828 +639892.154|220115.061|100.270 +639897.943|220113.382|100.279 +639909.583|220110.017|100.078 +639915.411|220108.307|100.289 +639921.269|220106.621|100.118 +639927.094|220104.930|100.106 +639932.995|220103.214|100.136 +639938.862|220101.516|100.066 +639944.815|220099.785|100.072 +639950.722|220098.059|100.200 +639956.632|220096.334|100.346 +639962.597|220094.591|100.481 +639968.632|220092.826|100.642 +639974.661|220091.064|100.795 +639980.644|220089.309|101.063 +639986.646|220087.559|101.154 +639998.768|220084.005|101.621 +640004.723|220082.277|101.584 +640010.755|220080.521|101.621 +640016.894|220078.726|101.834 +640022.950|220076.973|101.718 +640028.952|220075.233|101.685 +640035.011|220073.480|101.627 +640041.159|220071.688|101.681 +640047.219|220069.932|101.663 +640053.281|220068.192|101.386 +640071.295|220063.096|99.548 +640077.330|220061.368|99.216 +640077.592|220065.665|99.118 +640071.594|220067.381|99.600 +640065.513|220069.146|99.734 +640047.645|220074.206|101.898 +640035.603|220077.720|101.944 +640029.552|220079.482|102.023 +640017.488|220082.999|102.105 +640011.441|220084.776|101.965 +640005.394|220086.550|101.846 +639999.380|220088.303|101.901 +639993.351|220090.086|101.624 +639987.347|220091.851|101.471 +639975.313|220095.389|101.142 +639969.333|220097.157|100.889 +639963.386|220098.901|100.785 +639957.400|220100.665|100.554 +639951.426|220102.424|100.383 +639945.479|220104.165|100.353 +639933.674|220107.627|100.167 +639927.880|220109.313|100.267 +639922.058|220111.010|100.279 +639910.424|220114.385|100.648 +639904.538|220116.116|100.462 +639898.729|220117.823|100.340 +639892.877|220119.554|100.066 +639887.287|220121.130|100.810 +639881.715|220122.700|101.627 +639864.866|220127.509|103.132 +639859.373|220129.067|103.782 +639853.774|220130.682|104.059 +639848.178|220132.295|104.358 +639836.882|220135.574|104.641 +639820.054|220140.494|104.617 +639814.446|220142.124|104.726 +639808.904|220143.734|104.851 +639803.339|220145.355|104.906 +639797.864|220146.946|105.056 +639792.357|220148.553|105.101 +639786.791|220150.186|104.967 +639781.298|220151.781|105.107 +639775.690|220153.439|104.867 +639770.158|220155.069|104.672 +639764.705|220156.657|104.757 +639759.280|220158.245|104.717 +639753.812|220159.836|104.787 +639748.365|220161.437|104.711 +639806.761|220146.087|104.772 +639812.412|220144.450|104.748 +639818.070|220142.804|104.778 +639823.870|220141.100|105.086 +639835.163|220137.839|104.906 +639840.783|220136.227|104.629 +639852.143|220132.974|104.065 +639857.785|220131.350|103.913 +639863.409|220129.750|103.462 +639874.729|220126.549|102.358 +639880.298|220124.998|101.496 +639885.979|220123.401|100.795 +639897.525|220120.081|100.398 +639903.435|220118.350|100.618 +639909.257|220116.668|100.523 +639921.114|220113.235|100.423 +639926.917|220111.562|100.304 +639932.845|220109.852|100.170 +639938.731|220108.145|100.154 +639944.723|220106.396|100.310 +639950.701|220104.652|100.429 +639956.687|220102.903|100.606 +639962.746|220101.126|100.837 +639968.711|220099.385|100.980 +639974.746|220097.621|101.145 +639986.899|220094.060|101.624 +639992.912|220092.305|101.773 +639998.996|220090.525|101.977 +640005.114|220088.745|102.041 +640011.121|220087.007|101.953 +640017.196|220085.230|102.175 +640023.274|220083.469|102.151 +640029.345|220081.707|102.117 +640035.402|220079.957|102.029 +640041.485|220078.186|102.102 +640047.588|220076.425|101.971 +640071.554|220069.646|99.615 +640077.513|220067.970|98.926 +640073.910|220073.188|99.453 +640067.744|220075.029|98.890 +640050.081|220079.948|102.023 +640037.962|220083.463|102.334 +640031.890|220085.233|102.319 +640019.838|220088.739|102.474 +640013.739|220090.525|102.401 +640007.582|220092.363|101.837 +639977.602|220101.126|101.593 +639971.488|220102.930|101.349 +639965.459|220104.701|101.191 +639953.493|220108.221|100.791 +639947.579|220109.959|100.624 +639941.575|220111.727|100.401 +639935.625|220113.464|100.404 +639929.797|220115.165|100.374 +639923.942|220116.863|100.529 +639906.367|220121.992|100.535 +639889.003|220127.043|100.740 +639883.382|220128.634|101.383 +639860.952|220135.023|103.519 +639855.408|220136.605|104.001 +639821.776|220146.312|105.421 +639816.107|220147.992|105.083 +639810.450|220149.647|105.053 +639804.881|220151.268|105.104 +639799.401|220152.856|105.248 +639793.841|220154.469|105.363 +639788.266|220156.109|105.208 +639782.765|220157.706|105.324 +639777.190|220159.358|104.976 +639771.719|220160.955|104.986 +639766.257|220162.543|105.059 +639760.782|220164.137|105.089 +639749.953|220167.295|105.150 +639805.737|220153.024|105.086 +639811.312|220151.406|105.040 +639816.966|220149.763|105.053 +639828.341|220146.413|105.595 +639833.922|220144.807|105.403 +639850.680|220140.018|104.242 +639856.301|220138.403|104.007 +639861.863|220136.836|103.324 +639867.569|220135.187|103.187 +639884.434|220130.432|101.160 +639907.559|220123.757|100.532 +639925.180|220118.643|100.401 +639931.050|220116.942|100.301 +639937.012|220115.208|100.310 +639942.940|220113.473|100.471 +639948.997|220111.699|100.627 +639954.998|220109.938|100.855 +639960.997|220108.176|101.099 +639967.038|220106.405|101.276 +639973.076|220104.637|101.447 +639979.154|220102.863|101.535 +639991.178|220099.349|101.794 +639997.292|220097.547|102.102 +640009.457|220093.999|102.239 +640015.596|220092.201|102.440 +640021.710|220090.415|102.556 +640027.855|220088.629|102.547 +640033.890|220086.885|102.373 +640039.967|220085.118|102.401 +640046.054|220083.362|102.194 +640052.202|220081.588|101.992 +640070.054|220076.592|99.389 +640076.178|220074.831|99.133 +640076.970|220078.659|99.261 +640053.330|220085.337|102.349 +640041.232|220088.842|102.739 +640035.231|220090.595|102.733 +640029.184|220092.354|102.837 +640023.185|220094.100|102.895 +640017.153|220095.868|102.815 +640011.100|220097.648|102.669 +639987.030|220104.722|102.084 +639980.973|220106.515|101.770 +639975.036|220108.234|101.956 +639969.043|220110.008|101.663 +639963.091|220111.754|101.566 +639957.095|220113.522|101.316 +639951.091|220115.296|101.044 +639945.089|220117.067|100.816 +639939.240|220118.786|100.682 +639933.339|220120.514|100.627 +639927.450|220122.233|100.639 +639921.696|220123.891|100.919 +639915.804|220125.610|100.962 +639909.879|220127.366|100.639 +639904.084|220129.045|100.819 +639886.766|220134.093|100.971 +639881.233|220135.654|101.703 +639869.907|220138.891|102.718 +639858.727|220142.073|103.830 +639819.566|220153.402|105.360 +639813.933|220155.045|105.403 +639808.331|220156.685|105.330 +639802.759|220158.309|105.388 +639797.297|220159.891|105.589 +639791.756|220161.495|105.784 +639786.133|220163.162|105.476 +639780.579|220164.805|105.187 +639775.050|220166.417|105.239 +639764.129|220169.596|105.385 +639758.871|220171.096|105.912 +639753.397|220172.690|105.973 +639811.477|220157.566|105.406 +639816.994|220155.981|105.159 +639822.736|220154.271|105.717 +639828.381|220152.631|105.717 +639839.329|220149.519|104.800 +639856.285|220144.627|104.330 +639861.751|220143.097|103.532 +639872.864|220139.954|102.373 +639884.074|220136.772|101.377 +639889.655|220135.190|100.816 +639907.160|220130.106|100.785 +639912.920|220128.439|100.706 +639918.800|220126.723|100.831 +639924.588|220125.056|100.636 +639930.498|220123.334|100.666 +639936.387|220121.627|100.633 +639942.376|220119.877|100.749 +639948.332|220118.124|101.020 +639954.282|220116.378|101.288 +639960.287|220114.613|101.529 +639966.337|220112.842|101.712 +639972.381|220111.074|101.889 +639978.340|220109.331|102.026 +639996.530|220104.012|102.453 +640008.600|220100.510|102.422 +640014.742|220098.687|102.898 +640020.847|220096.910|102.959 +640026.916|220095.152|102.892 +640032.994|220093.387|102.864 +640039.059|220091.628|102.824 +640045.247|220089.836|102.742 +640051.205|220088.138|102.264 +640068.914|220083.237|98.957 +640075.215|220081.369|99.475 +640078.851|220084.548|99.252 +640060.996|220089.638|100.883 +640049.304|220092.911|102.764 +640043.305|220094.640|103.050 +640031.326|220098.126|103.178 +640025.328|220099.870|103.245 +640019.314|220101.626|103.254 +640013.337|220103.378|103.154 +640007.287|220105.170|102.773 +639995.281|220108.676|102.757 +639977.425|220113.921|102.276 +639971.409|220115.683|102.181 +639965.462|220117.426|102.105 +639959.537|220119.173|101.867 +639953.541|220120.938|101.645 +639947.671|220122.669|101.410 +639941.666|220124.437|101.194 +639935.723|220126.186|100.980 +639929.895|220127.887|100.974 +639924.034|220129.609|100.852 +639918.166|220131.328|100.734 +639912.369|220133.008|100.901 +639906.584|220134.696|100.886 +639889.222|220139.744|101.154 +639877.945|220142.966|102.096 +639866.752|220146.154|103.151 +639844.170|220152.683|103.980 +639838.778|220154.198|104.815 +639827.753|220157.331|105.927 +639822.093|220158.989|105.860 +639816.387|220160.687|105.424 +639810.870|220162.278|105.653 +639805.283|220163.909|105.662 +639799.751|220165.509|105.872 +639794.301|220167.078|106.141 +639783.036|220170.413|105.498 +639777.501|220172.028|105.531 +639766.638|220175.171|105.879 +639761.197|220176.747|106.046 +639817.826|220162.071|105.351 +639823.568|220160.361|105.900 +639829.079|220158.760|105.894 +639839.994|220155.685|104.614 +639845.325|220154.216|103.529 +639851.040|220152.533|103.833 +639867.920|220147.681|103.151 +639873.418|220146.133|102.495 +639879.051|220144.526|102.081 +639884.650|220142.920|101.813 +639890.213|220141.350|101.182 +639895.739|220139.823|100.151 +639901.667|220138.043|100.913 +639907.468|220136.355|100.950 +639913.308|220134.663|100.910 +639919.129|220132.977|100.813 +639924.960|220131.286|100.770 +639930.800|220129.570|101.041 +639936.698|220127.857|101.038 +639942.584|220126.132|101.264 +639948.533|220124.382|101.511 +639954.465|220122.645|101.703 +639960.482|220120.877|101.986 +639966.407|220119.139|102.191 +639972.369|220117.399|102.303 +639978.282|220115.686|102.242 +639996.344|220110.386|102.943 +640002.364|220108.621|103.138 +640008.253|220106.938|102.791 +640014.383|220105.125|103.205 +640020.430|220103.363|103.294 +640026.456|220101.610|103.303 +640032.439|220099.882|103.166 +640038.520|220098.114|103.172 +640044.573|220096.362|103.087 +640050.593|220094.630|102.861 +640056.558|220092.951|102.123 +640068.244|220089.720|99.892 +640080.357|220086.267|99.021 +640081.024|220090.385|99.112 +640068.985|220093.859|99.655 +640051.565|220098.696|103.001 +640045.600|220100.406|103.431 +640039.617|220102.147|103.513 +640033.622|220103.893|103.550 +640027.629|220105.637|103.629 +640015.638|220109.148|103.532 +640009.585|220110.943|103.135 +639997.710|220114.412|103.099 +639991.733|220116.158|103.084 +639979.782|220119.664|102.858 +639973.893|220121.392|102.730 +639962.015|220124.885|102.386 +639950.164|220128.378|101.971 +639944.217|220130.134|101.712 +639938.353|220131.856|101.544 +639926.606|220135.312|101.191 +639920.729|220137.040|101.026 +639914.996|220138.702|101.176 +639909.223|220140.387|101.191 +639903.395|220142.103|101.020 +639886.366|220147.013|101.813 +639880.749|220148.623|102.236 +639875.144|220150.226|102.718 +639846.901|220158.443|103.102 +639819.673|220166.198|105.760 +639808.624|220169.410|105.936 +639803.067|220171.023|106.055 +639797.654|220172.592|106.214 +639792.113|220174.211|106.186 +639786.517|220175.878|105.754 +639781.015|220177.490|105.665 +639770.359|220180.526|106.689 +639764.979|220182.090|106.817 +639817.795|220168.292|105.476 +639829.180|220164.942|105.985 +639845.374|220160.419|103.410 +639850.891|220158.846|102.995 +639862.519|220155.417|103.596 +639879.338|220150.622|102.267 +639890.707|220147.364|101.605 +639902.182|220144.060|101.151 +639907.949|220142.387|101.063 +639913.768|220140.686|101.179 +639919.562|220139.015|100.971 +639925.530|220137.263|101.188 +639931.425|220135.532|101.401 +639937.262|220133.831|101.416 +639943.227|220132.078|101.685 +639949.183|220130.326|101.944 +639955.105|220128.591|102.093 +639961.109|220126.827|102.319 +639967.099|220125.071|102.504 +639973.024|220123.330|102.727 +639978.977|220121.590|102.828 +639990.940|220118.094|103.029 +640008.899|220112.861|103.132 +640015.020|220111.053|103.507 +640021.061|220109.291|103.553 +640027.090|220107.536|103.574 +640033.036|220105.807|103.553 +640039.114|220104.040|103.547 +640045.164|220102.287|103.437 +640068.689|220095.703|99.865 +640080.741|220092.241|99.295 +640076.912|220097.697|99.712 +640070.774|220099.522|99.304 +640059.197|220102.714|101.992 +640053.440|220104.299|103.324 +640047.523|220106.003|103.684 +640041.470|220107.770|103.739 +640035.423|220109.532|103.858 +640029.479|220111.269|103.855 +640023.469|220113.028|103.870 +640017.437|220114.796|103.824 +640011.389|220116.573|103.733 +640005.507|220118.289|103.797 +639999.499|220120.060|103.632 +639993.461|220121.846|103.373 +639987.472|220123.602|103.337 +639981.537|220125.342|103.260 +639975.517|220127.131|102.873 +639969.699|220128.823|103.047 +639951.786|220134.111|102.386 +639945.900|220135.855|102.114 +639939.996|220137.586|102.050 +639934.141|220139.311|101.925 +639922.360|220142.789|101.486 +639916.487|220144.517|101.371 +639910.714|220146.206|101.383 +639904.932|220147.897|101.389 +639899.214|220149.552|101.648 +639893.538|220151.198|101.834 +639882.169|220154.499|102.187 +639865.308|220159.352|103.282 +639859.602|220161.028|103.196 +639853.887|220162.726|102.870 +639848.220|220164.396|102.724 +639826.799|220170.410|106.196 +639821.200|220172.053|106.119 +639815.537|220173.732|105.842 +639810.117|220175.293|106.183 +639804.649|220176.878|106.375 +639788.105|220181.724|106.342 +639782.490|220183.401|105.872 +639772.020|220186.378|107.058 +639766.580|220187.976|106.988 +639822.492|220173.360|106.156 +639828.146|220171.715|106.156 +639833.736|220170.102|105.946 +639849.757|220165.698|102.504 +639855.533|220164.000|102.760 +639861.281|220162.311|102.940 +639867.039|220160.620|103.175 +639884.044|220155.758|102.017 +639889.807|220154.094|101.843 +639895.577|220152.427|101.709 +639901.344|220150.756|101.584 +639907.081|220149.104|101.361 +639912.948|220147.398|101.386 +639918.834|220145.675|101.508 +639924.814|220143.917|101.749 +639930.700|220142.195|101.910 +639936.613|220140.472|101.938 +639942.559|220138.729|102.120 +639948.482|220136.995|102.233 +639954.437|220135.245|102.489 +639960.436|220133.483|102.681 +639972.442|220129.957|103.160 +639978.398|220128.219|103.239 +639984.415|220126.461|103.324 +639990.501|220124.681|103.437 +639996.454|220122.940|103.574 +640002.486|220121.169|103.779 +640008.515|220119.420|103.733 +640014.651|220117.625|103.858 +640020.625|220115.884|103.897 +640026.663|220114.122|103.934 +640032.741|220112.358|103.888 +640038.821|220110.590|103.876 +640044.881|220108.834|103.785 +640050.907|220107.097|103.568 +640062.584|220103.869|101.252 +640074.544|220100.489|99.914 +640080.622|220098.757|99.411 +640074.428|220104.881|99.917 +640062.642|220108.197|101.675 +640051.023|220111.431|103.903 +640044.991|220113.184|104.068 +640039.007|220114.924|104.175 +640032.991|220116.689|104.144 +640026.925|220118.454|104.224 +640020.890|220120.225|104.172 +640014.925|220121.971|104.147 +640008.930|220123.733|104.019 +640002.913|220125.485|104.114 +639996.878|220127.268|103.864 +639990.904|220129.015|103.885 +639984.933|220130.777|103.675 +639978.907|220132.548|103.532 +639972.960|220134.291|103.468 +639967.059|220136.007|103.599 +639955.041|220139.582|102.803 +639949.128|220141.320|102.684 +639943.184|220143.072|102.471 +639937.237|220144.828|102.270 +639931.303|220146.572|102.142 +639925.402|220148.315|101.895 +639913.719|220151.750|101.669 +639907.833|220153.478|101.547 +639902.039|220155.176|101.532 +639896.263|220156.859|101.599 +639890.582|220158.489|102.035 +639879.365|220161.699|102.989 +639873.659|220163.357|103.135 +639867.981|220165.018|103.157 +639862.235|220166.713|102.943 +639856.551|220168.374|102.977 +639850.915|220170.005|103.193 +639829.256|220176.110|106.333 +639823.681|220177.740|106.348 +639818.036|220179.405|106.150 +639812.531|220180.996|106.439 +639807.008|220182.608|106.455 +639801.549|220184.187|106.705 +639790.531|220187.412|106.671 +639784.886|220189.106|106.110 +639768.920|220193.688|107.293 +639828.332|220178.320|106.257 +639839.183|220175.238|105.178 +639855.508|220170.636|103.087 +639861.232|220168.962|103.181 +639866.890|220167.322|103.050 +639872.595|220165.655|103.102 +639878.246|220164.018|102.992 +639889.567|220160.766|102.364 +639895.120|220159.196|101.688 +639900.808|220157.550|101.517 +639906.642|220155.840|101.657 +639912.479|220154.149|101.560 +639918.361|220152.427|101.666 +639924.204|220150.705|101.907 +639930.093|220148.976|102.069 +639941.959|220145.483|102.556 +639947.869|220143.755|102.617 +639953.806|220142.012|102.803 +639959.735|220140.271|102.974 +639965.831|220138.452|103.565 +639971.771|220136.720|103.562 +639977.691|220135.001|103.504 +639983.698|220133.246|103.538 +639989.715|220131.466|103.910 +639995.689|220129.731|103.849 +640001.749|220127.939|104.175 +640007.796|220126.177|104.187 +640013.806|220124.434|104.074 +640019.805|220122.675|104.202 +640025.849|220120.910|104.269 +640031.933|220119.136|104.251 +640038.017|220117.366|104.242 +640044.067|220115.613|104.114 +640050.114|220113.857|103.995 +640061.840|220110.596|101.886 +640073.642|220107.328|99.551 +640077.053|220110.553|99.996 +640071.139|220112.236|100.627 +640059.545|220115.457|102.940 +640047.813|220118.783|104.403 +640041.854|220120.511|104.595 +640035.831|220122.279|104.547 +640029.815|220124.041|104.534 +640023.865|220125.778|104.550 +640017.888|220127.534|104.473 +640011.795|220129.335|104.205 +640005.976|220131.011|104.553 +639993.988|220134.550|104.135 +639987.990|220136.312|104.068 +639982.095|220138.046|103.910 +639976.127|220139.805|103.742 +639970.269|220141.518|103.772 +639958.336|220145.044|103.297 +639946.552|220148.516|102.974 +639940.621|220150.263|102.821 +639934.793|220151.985|102.565 +639928.852|220153.753|102.160 +639917.093|220157.212|101.892 +639911.299|220158.913|101.849 +639899.787|220162.281|101.849 +639860.047|220173.821|103.068 +639854.463|220175.424|103.462 +639821.663|220184.806|106.415 +639816.012|220186.476|106.193 +639810.608|220188.027|106.613 +639805.134|220189.615|106.790 +639799.669|220191.197|107.025 +639788.556|220194.489|106.473 +639783.082|220196.092|106.488 +639839.683|220181.611|105.257 +639845.099|220180.075|104.696 +639855.834|220177.079|103.001 +639861.357|220175.500|102.602 +639867.106|220173.799|103.023 +639872.812|220172.135|103.065 +639878.512|220170.474|103.102 +639895.529|220165.585|102.276 +639901.143|220163.966|102.062 +639906.919|220162.293|101.977 +639912.555|220160.681|101.621 +639918.376|220158.977|101.739 +639924.283|220157.224|102.197 +639930.181|220155.496|102.376 +639936.058|220153.777|102.504 +639941.983|220152.027|102.840 +639947.857|220150.305|103.001 +639953.800|220148.565|103.187 +639959.674|220146.840|103.385 +639965.715|220145.057|103.745 +639971.573|220143.359|103.663 +639977.553|220141.606|103.812 +639983.546|220139.845|104.053 +639989.450|220138.135|103.940 +640001.505|220134.584|104.522 +640007.482|220132.846|104.507 +640013.444|220131.118|104.443 +640019.442|220129.362|104.559 +640025.483|220127.604|104.580 +640031.576|220125.830|104.580 +640037.599|220124.077|104.583 +640043.607|220122.334|104.528 +640049.651|220120.587|104.376 +640055.631|220118.877|103.964 +640072.947|220114.171|99.435 +640078.897|220116.585|99.962 +640072.828|220118.362|99.914 +640049.819|220124.754|104.559 +640043.851|220126.488|104.733 +640037.852|220128.238|104.797 +640031.829|220130.003|104.778 +640025.874|220131.746|104.781 +640019.973|220133.474|104.754 +640013.922|220135.248|104.687 +640007.994|220136.970|104.861 +640002.075|220138.705|104.818 +639996.040|220140.506|104.330 +639978.270|220145.724|104.086 +639972.314|220147.495|103.733 +639966.453|220149.208|103.775 +639960.600|220150.930|103.617 +639954.678|220152.674|103.477 +639948.805|220154.408|103.266 +639942.855|220156.164|103.062 +639925.271|220161.367|102.279 +639919.343|220163.144|101.718 +639913.478|220164.881|101.428 +639907.891|220166.478|101.938 +639890.758|220171.455|102.440 +639885.232|220173.034|102.977 +639879.575|220174.683|103.059 +639873.882|220176.351|103.029 +639868.145|220178.042|102.852 +639862.394|220179.758|102.413 +639856.862|220181.352|102.757 +639846.108|220184.364|104.589 +639840.713|220185.897|105.208 +639835.245|220187.451|105.833 +639824.278|220190.627|106.299 +639818.713|220192.249|106.388 +639813.257|220193.828|106.631 +639807.795|220195.410|106.872 +639802.394|220196.973|107.095 +639796.947|220198.561|107.189 +639780.506|220203.389|106.979 +639775.285|220204.868|107.646 +639834.498|220189.490|105.766 +639839.915|220187.957|105.174 +639845.413|220186.394|104.650 +639850.781|220184.885|103.919 +639856.173|220183.379|103.050 +639861.647|220181.828|102.474 +639867.371|220180.136|102.800 +639873.104|220178.457|102.937 +639878.795|220176.799|102.934 +639884.452|220175.159|102.837 +639889.972|220173.595|102.251 +639895.827|220171.858|102.657 +639901.625|220170.172|102.614 +639907.218|220168.581|102.102 +639912.835|220166.993|101.435 +639918.562|220165.326|101.435 +639924.524|220163.543|102.090 +639930.453|220161.775|102.645 +639936.415|220160.004|103.093 +639942.227|220158.319|102.992 +639948.131|220156.578|103.266 +639954.014|220154.850|103.486 +639959.872|220153.131|103.626 +639965.794|220151.396|103.772 +639971.732|220149.650|104.004 +639977.627|220147.928|104.077 +639983.640|220146.154|104.388 +639995.482|220142.685|104.608 +640001.416|220140.954|104.659 +640007.421|220139.198|104.748 +640013.352|220137.485|104.562 +640019.375|220135.715|104.769 +640025.346|220133.974|104.784 +640031.320|220132.231|104.836 +640037.331|220130.481|104.787 +640043.339|220128.738|104.733 +640049.322|220127.003|104.592 +640055.223|220125.318|104.126 +640061.197|220123.608|103.705 +640072.645|220120.499|100.679 +640078.546|220118.832|99.956 +640080.637|220122.885|99.764 +640074.538|220124.684|99.588 +640057.451|220129.356|104.135 +640051.501|220131.060|104.662 +640045.634|220132.755|104.979 +640039.708|220134.483|105.065 +640033.704|220136.239|105.110 +640027.690|220138.001|105.144 +640021.734|220139.744|105.159 +640015.821|220141.481|105.098 +640009.814|220143.252|104.940 +640003.873|220144.980|105.086 +639997.951|220146.721|105.040 +639986.112|220150.208|104.778 +639980.190|220151.960|104.537 +639956.592|220158.922|103.876 +639950.682|220160.681|103.529 +639927.167|220167.639|102.578 +639921.306|220169.398|102.023 +639915.481|220171.117|101.867 +639892.743|220177.747|102.291 +639881.569|220180.971|102.934 +639875.893|220182.617|103.202 +639870.291|220184.254|103.257 +639864.716|220185.876|103.437 +639859.090|220187.521|103.440 +639853.622|220189.082|104.025 +639837.357|220193.749|105.370 +639831.914|220195.309|105.842 +639826.467|220196.888|106.083 +639821.060|220198.446|106.473 +639815.521|220200.070|106.439 +639810.212|220201.588|106.951 +639804.802|220203.158|107.144 +639799.428|220204.709|107.470 +639794.027|220206.273|107.717 +639777.894|220210.991|107.860 +639839.156|220194.861|105.181 +639844.618|220193.300|104.760 +639850.168|220191.709|104.409 +639855.731|220190.128|103.873 +639861.254|220188.549|103.471 +639866.950|220186.891|103.440 +639872.574|220185.272|103.172 +639878.228|220183.635|103.020 +639883.897|220182.005|102.706 +639889.472|220180.414|102.297 +639895.300|220178.691|102.590 +639918.251|220172.056|101.858 +639924.201|220170.297|102.194 +639930.181|220168.520|102.666 +639953.785|220161.574|103.602 +639959.768|220159.803|103.949 +639965.715|220158.072|103.910 +639971.707|220156.295|104.330 +639977.630|220154.557|104.513 +639983.619|220152.796|104.708 +639989.520|220151.086|104.577 +639995.570|220149.309|104.787 +640001.520|220147.565|104.900 +640007.503|220145.822|104.885 +640013.422|220144.097|104.903 +640019.515|220142.304|105.120 +640025.547|220140.549|105.095 +640031.515|220138.805|105.107 +640037.535|220137.056|105.074 +640043.552|220135.303|105.043 +640055.470|220131.886|104.278 +640061.465|220130.167|103.919 +640072.944|220127.034|101.011 +640078.781|220125.409|99.993 +640076.531|220130.530|99.792 +640065.141|220133.636|103.038 +640047.530|220138.653|105.080 +640041.546|220140.399|105.220 +640035.545|220142.155|105.284 +640029.604|220143.892|105.357 +640023.569|220145.666|105.333 +640017.607|220147.416|105.348 +639999.755|220152.668|105.132 +639987.761|220156.212|104.806 +639981.918|220157.922|104.885 +639976.008|220159.669|104.726 +639969.982|220161.461|104.391 +639964.008|220163.241|104.019 +639958.113|220164.975|103.980 +639940.572|220170.139|103.754 +639934.686|220171.897|103.321 +639917.014|220177.155|102.352 +639893.934|220183.952|102.050 +639877.225|220188.768|103.260 +639871.608|220190.399|103.519 +639865.932|220192.060|103.586 +639860.361|220193.678|103.797 +639854.832|220195.276|104.172 +639849.293|220196.873|104.531 +639843.862|220198.430|105.037 +639832.987|220201.567|105.796 +639827.467|220203.170|106.031 +639822.066|220204.724|106.458 +639816.613|220206.306|106.720 +639811.199|220207.882|106.897 +639805.670|220209.504|106.927 +639794.966|220212.604|107.525 +639842.563|220200.579|105.098 +639848.086|220199.003|104.644 +639853.615|220197.421|104.230 +639859.145|220195.839|103.815 +639864.713|220194.233|103.565 +639870.376|220192.590|103.416 +639876.027|220190.957|103.248 +639881.651|220189.332|102.998 +639887.208|220187.747|102.520 +639892.767|220186.177|101.816 +639915.978|220179.380|102.209 +639921.787|220177.682|102.251 +639939.633|220172.376|103.586 +639945.495|220170.681|103.407 +639963.368|220165.414|104.092 +639969.303|220163.671|104.269 +639975.356|220161.876|104.672 +639981.269|220160.141|104.815 +639987.325|220158.358|105.016 +639999.298|220154.853|105.187 +640005.336|220153.079|105.385 +640011.283|220151.354|105.235 +640017.370|220149.565|105.400 +640023.344|220147.824|105.400 +640029.376|220146.066|105.382 +640035.399|220144.310|105.342 +640041.473|220142.545|105.254 +640047.456|220140.811|105.101 +640053.458|220139.086|104.739 +640065.281|220135.763|103.020 +640076.681|220132.679|99.752 +640078.759|220136.742|100.167 +640073.081|220138.281|101.861 +640067.287|220139.912|102.776 +640049.770|220144.865|105.248 +640043.793|220146.605|105.403 +640037.794|220148.358|105.498 +640031.854|220150.092|105.580 +640025.898|220151.835|105.607 +640013.898|220155.371|105.370 +640007.948|220157.105|105.495 +640002.053|220158.828|105.580 +639996.098|220160.583|105.446 +639978.197|220165.881|104.760 +639972.329|220167.600|104.787 +639948.582|220174.653|103.532 +639942.770|220176.329|103.885 +639924.884|220181.709|102.059 +639919.059|220183.425|101.931 +639913.420|220185.053|102.264 +639896.038|220190.176|101.886 +639890.338|220191.834|102.062 +639884.839|220193.398|102.730 +639879.249|220195.010|103.081 +639873.601|220196.653|103.242 +639867.953|220198.299|103.413 +639862.433|220199.887|103.821 +639856.907|220201.478|104.217 +639851.372|220203.072|104.583 +639845.922|220204.639|105.034 +639840.439|220206.221|105.382 +639834.974|220207.791|105.802 +639829.539|220209.363|106.098 +639824.031|220210.958|106.397 +639818.597|220212.524|106.735 +639813.150|220214.115|106.802 +639807.761|220215.658|107.314 +639802.354|220217.227|107.543 +639796.962|220218.785|107.845 +639791.521|220220.370|107.994 +639848.275|220205.831|104.858 +639853.762|220204.252|104.528 +639859.282|220202.673|104.080 +639864.756|220201.097|103.736 +639870.322|220199.509|103.242 +639875.909|220197.888|103.084 +639881.526|220196.269|102.803 +639887.131|220194.654|102.486 +639892.636|220193.093|101.831 +639898.452|220191.377|102.066 +639904.346|220189.597|102.855 +639910.028|220187.954|102.645 +639915.606|220186.366|102.072 +639921.242|220184.748|101.712 +639927.152|220182.986|102.148 +639945.065|220177.615|104.028 +639950.883|220175.921|103.961 +639980.495|220167.203|104.851 +639986.463|220165.433|105.226 +639998.338|220161.940|105.543 +640004.385|220160.156|105.769 +640010.298|220158.453|105.461 +640016.309|220156.688|105.580 +640022.240|220154.947|105.668 +640028.199|220153.210|105.616 +640034.228|220151.451|105.598 +640040.224|220149.708|105.464 +640046.213|220147.967|105.318 +640052.181|220146.242|105.101 +640058.118|220144.551|104.489 +640075.385|220139.814|100.316 +640079.976|220142.865|100.270 +640068.564|220146.026|102.852 +640057.042|220149.251|104.967 +640051.138|220150.951|105.421 +640045.231|220152.674|105.601 +640039.309|220154.402|105.729 +640033.372|220156.139|105.821 +640027.425|220157.880|105.888 +640021.478|220159.620|105.976 +640015.556|220161.360|105.912 +640009.643|220163.098|105.912 +640003.772|220164.808|106.092 +639997.768|220166.597|105.751 +639991.846|220168.353|105.507 +639985.960|220170.087|105.421 +639980.038|220171.839|105.214 +639962.249|220177.122|104.388 +639944.818|220182.242|104.345 +639933.010|220185.781|103.367 +639926.847|220187.695|101.950 +639920.995|220189.430|101.721 +639915.359|220191.042|102.309 +639904.060|220194.331|102.681 +639898.205|220196.099|102.029 +639892.511|220197.757|102.221 +639886.961|220199.351|102.693 +639881.422|220200.957|102.986 +639875.854|220202.576|103.181 +639870.331|220204.170|103.562 +639864.820|220205.755|103.995 +639859.263|220207.367|104.275 +639853.747|220208.955|104.714 +639842.810|220212.110|105.491 +639837.394|220213.673|105.839 +639831.956|220215.249|106.132 +639826.497|220216.819|106.595 +639821.102|220218.386|106.820 +639815.640|220219.971|107.073 +639810.206|220221.559|107.198 +639804.887|220223.083|107.720 +639799.425|220224.680|107.784 +639794.057|220226.243|107.951 +639788.723|220227.792|108.229 +639847.849|220212.683|105.193 +639853.295|220211.131|104.705 +639858.760|220209.565|104.294 +639864.329|220207.961|104.019 +639869.797|220206.395|103.644 +639875.345|220204.798|103.327 +639880.932|220203.197|102.910 +639886.558|220201.576|102.654 +639892.075|220199.994|102.276 +639897.702|220198.366|102.053 +639903.578|220196.620|102.501 +639920.687|220191.676|101.831 +639926.417|220190.003|101.819 +639932.553|220188.119|103.093 +639938.627|220186.266|104.181 +639944.449|220184.556|104.330 +639950.359|220182.812|104.580 +639961.920|220179.469|104.160 +639967.928|220177.682|104.595 +639979.797|220174.171|105.232 +639991.675|220170.687|105.452 +639997.631|220168.944|105.537 +640003.614|220167.161|106.019 +640009.536|220165.433|106.007 +640015.437|220163.717|105.924 +640021.433|220161.964|105.979 +640027.449|220160.214|105.876 +640033.350|220158.495|105.851 +640039.300|220156.764|105.778 +640045.295|220155.024|105.635 +640051.279|220153.289|105.467 +640057.189|220151.598|105.001 +640068.747|220148.397|102.678 +640080.341|220145.191|100.243 +640081.268|220149.467|100.298 +640069.728|220152.658|102.928 +640058.310|220155.840|105.223 +640052.379|220157.553|105.589 +640046.411|220159.288|105.808 +640040.483|220161.019|105.927 +640034.545|220162.753|106.034 +640028.614|220164.485|106.177 +640022.713|220166.213|106.199 +640016.736|220167.965|106.202 +640010.832|220169.697|106.235 +640004.958|220171.425|106.156 +639998.963|220173.205|105.876 +639981.162|220178.466|105.370 +639969.184|220182.062|104.275 +639963.338|220183.782|104.193 +639957.644|220185.415|104.708 +639951.822|220187.119|104.751 +639945.985|220188.850|104.501 +639940.197|220190.554|104.455 +639928.194|220194.215|102.578 +639922.321|220195.958|102.276 +639916.666|220197.598|102.568 +639905.255|220200.945|102.556 +639899.464|220202.658|102.386 +639893.816|220204.307|102.517 +639888.183|220205.944|102.715 +639882.645|220207.547|103.020 +639871.605|220210.729|103.803 +639866.060|220212.332|104.123 +639860.586|220213.914|104.473 +639855.088|220215.508|104.745 +639849.665|220217.057|105.303 +639838.778|220220.199|106.055 +639833.352|220221.763|106.403 +639827.963|220223.311|106.878 +639822.507|220224.893|107.150 +639817.097|220226.466|107.354 +639811.693|220228.033|107.592 +639806.210|220229.642|107.582 +639800.876|220231.190|107.851 +639795.490|220232.760|107.966 +639852.570|220217.883|105.101 +639858.105|220216.298|104.687 +639863.643|220214.710|104.300 +639869.182|220213.119|103.931 +639874.732|220211.521|103.620 +639880.313|220209.924|103.184 +639885.903|220208.321|102.794 +639891.481|220206.724|102.376 +639897.190|220205.051|102.443 +639902.929|220203.380|102.392 +639920.248|220198.318|102.468 +639926.073|220196.611|102.550 +639943.967|220191.237|104.534 +639949.838|220189.518|104.629 +639955.696|220187.802|104.693 +639961.478|220186.129|104.498 +639967.248|220184.480|104.001 +639973.344|220182.642|104.787 +639979.370|220180.840|105.336 +639991.291|220177.314|105.979 +639997.149|220175.604|105.940 +640003.141|220173.836|106.186 +640009.155|220172.074|106.269 +640015.065|220170.352|106.223 +640020.991|220168.621|106.250 +640026.962|220166.877|106.220 +640032.902|220165.152|106.092 +640038.843|220163.427|105.973 +640044.841|220161.684|105.839 +640050.742|220159.980|105.589 +640056.710|220158.255|105.370 +640079.637|220151.960|99.926 +640077.120|220157.358|100.401 +640054.302|220163.677|105.662 +640048.343|220165.411|105.915 +640042.430|220167.136|106.095 +640036.453|220168.877|106.308 +640030.522|220170.611|106.442 +640024.663|220172.321|106.628 +640018.692|220174.074|106.656 +640012.688|220175.866|106.287 +639994.951|220181.087|106.162 +639989.014|220182.834|106.144 +639983.080|220184.595|105.903 +639971.049|220188.210|104.851 +639965.163|220189.957|104.611 +639959.424|220191.621|104.949 +639953.617|220193.322|105.037 +639947.811|220195.038|104.903 +639941.922|220196.781|104.729 +639930.056|220200.354|103.602 +639924.183|220202.118|103.056 +639918.279|220203.904|102.407 +639906.764|220207.297|102.273 +639901.073|220208.973|102.224 +639895.437|220210.619|102.392 +639889.817|220212.253|102.629 +639884.230|220213.868|103.007 +639878.713|220215.463|103.391 +639873.196|220217.057|103.803 +639867.664|220218.654|104.169 +639862.205|220220.230|104.562 +639856.737|220221.812|104.943 +639851.329|220223.357|105.546 +639840.469|220226.487|106.382 +639835.038|220228.060|106.708 +639824.224|220231.196|107.314 +639818.859|220232.748|107.665 +639813.458|220234.318|107.915 +639802.537|220237.536|107.820 +639797.191|220239.091|108.067 +639857.099|220223.275|104.925 +639862.580|220221.699|104.559 +639868.029|220220.138|104.111 +639873.559|220218.553|103.708 +639879.063|220216.977|103.236 +639884.665|220215.365|102.879 +639890.201|220213.774|102.532 +639895.836|220212.140|102.322 +639901.536|220210.488|102.120 +639907.279|220208.812|102.084 +639913.058|220207.114|102.200 +639918.809|220205.432|102.227 +639924.844|220203.606|103.071 +639942.648|220198.284|104.656 +639948.488|220196.559|104.882 +639954.428|220194.812|104.992 +639960.283|220193.096|105.050 +639966.066|220191.438|104.605 +639971.985|220189.682|104.946 +639984.015|220186.092|105.949 +639990.005|220184.327|106.116 +639995.954|220182.587|106.150 +640001.947|220180.819|106.375 +640007.988|220179.039|106.552 +640013.925|220177.298|106.604 +640019.924|220175.540|106.656 +640025.889|220173.802|106.586 +640031.826|220172.077|106.430 +640037.822|220170.337|106.244 +640043.762|220168.609|106.132 +640049.779|220166.871|105.808 +640055.747|220165.146|105.562 +640061.563|220163.509|104.699 +640078.665|220158.870|99.776 +640079.122|220163.220|99.810 +640068.244|220166.060|104.717 +640056.457|220169.453|105.735 +640050.562|220171.166|105.985 +640044.668|220172.882|106.244 +640038.767|220174.598|106.503 +640032.838|220176.329|106.659 +640026.882|220178.079|106.720 +640015.087|220181.538|106.833 +640009.113|220183.309|106.619 +640003.190|220185.053|106.628 +639997.271|220186.811|106.400 +639991.318|220188.567|106.330 +639979.462|220192.103|105.659 +639950.097|220200.783|105.046 +639944.254|220202.521|104.790 +639920.434|220209.726|102.093 +639914.633|220211.451|101.861 +639908.943|220213.109|102.059 +639903.280|220214.771|102.108 +639897.674|220216.380|102.645 +639892.051|220218.038|102.626 +639886.442|220219.663|102.934 +639880.834|220221.290|103.245 +639869.813|220224.469|104.123 +639864.369|220226.036|104.574 +639858.904|220227.615|104.973 +639853.439|220229.194|105.376 +639847.998|220230.757|105.876 +639842.557|220232.321|106.385 +639837.089|220233.912|106.592 +639831.655|220235.488|106.912 +639820.904|220238.588|107.777 +639815.537|220240.139|108.140 +639861.933|220228.606|104.681 +639867.395|220227.039|104.260 +639872.876|220225.460|103.919 +639878.377|220223.884|103.428 +639883.900|220222.299|103.010 +639889.472|220220.687|102.788 +639895.032|220219.077|102.544 +639900.686|220217.432|102.401 +639906.288|220215.816|102.090 +639911.933|220214.173|101.956 +639917.566|220212.558|101.529 +639923.540|220210.747|102.376 +639929.578|220208.897|103.495 +639935.537|220207.090|104.352 +639941.441|220205.331|104.763 +639947.232|220203.633|104.790 +639953.145|220201.884|105.040 +639964.791|220198.467|105.162 +639970.744|220196.690|105.629 +639976.596|220194.971|105.726 +639982.479|220193.252|105.702 +639988.496|220191.453|106.223 +639994.436|220189.713|106.211 +640000.407|220187.939|106.595 +640006.403|220186.165|106.839 +640012.285|220184.458|106.656 +640018.263|220182.693|106.866 +640024.212|220180.962|106.726 +640030.162|220179.231|106.592 +640036.060|220177.506|106.549 +640042.061|220175.762|106.394 +640048.020|220174.040|106.077 +640053.982|220172.318|105.796 +640059.914|220170.608|105.412 +640065.748|220168.959|104.623 +640081.244|220169.523|100.231 +640069.960|220172.608|103.416 +640058.545|220175.793|105.769 +640052.653|220177.506|106.034 +640046.716|220179.225|106.406 +640040.793|220180.953|106.583 +640034.941|220182.660|106.784 +640029.056|220184.385|106.866 +640023.185|220186.101|107.040 +640017.229|220187.845|107.156 +640011.243|220189.622|106.897 +640005.418|220191.328|107.028 +639999.463|220193.105|106.674 +639993.531|220194.867|106.433 +639987.688|220196.577|106.552 +639981.674|220198.385|106.040 +639975.859|220200.094|106.052 +639969.964|220201.850|105.772 +639964.002|220203.639|105.278 +639958.077|220205.407|104.937 +639952.350|220207.081|105.098 +639946.482|220208.812|105.028 +639922.720|220215.999|102.334 +639916.904|220217.730|102.053 +639911.238|220219.376|102.343 +639905.651|220220.998|102.681 +639900.021|220222.638|102.876 +639894.251|220224.338|102.843 +639888.652|220225.978|102.943 +639883.035|220227.609|103.233 +639877.500|220229.212|103.596 +639871.980|220230.803|104.016 +639866.441|220232.406|104.391 +639860.894|220234.013|104.748 +639855.432|220235.589|105.174 +639850.016|220237.137|105.766 +639844.593|220238.707|106.116 +639839.095|220240.301|106.458 +639833.639|220241.886|106.723 +639828.329|220243.410|107.259 +639822.925|220244.964|107.732 +639817.597|220246.494|108.232 +639812.227|220248.049|108.597 +639806.899|220249.594|108.902 +639862.001|220235.732|104.626 +639867.490|220234.147|104.294 +639872.961|220232.571|103.913 +639878.420|220231.001|103.501 +639883.967|220229.401|103.169 +639889.533|220227.789|102.922 +639895.157|220226.140|102.904 +639900.887|220224.454|103.032 +639906.538|220222.808|102.892 +639912.104|220221.208|102.459 +639917.718|220219.580|102.224 +639923.543|220217.849|102.523 +639929.544|220216.020|103.489 +639947.192|220210.738|104.992 +639952.935|220209.046|105.092 +639958.671|220207.394|104.690 +639964.651|220205.605|105.214 +639970.622|220203.816|105.738 +639976.471|220202.097|105.818 +639982.418|220200.317|106.305 +639994.253|220196.809|106.848 +640000.194|220195.068|106.842 +640006.104|220193.322|107.012 +640011.941|220191.621|106.900 +640017.933|220189.844|107.171 +640023.819|220188.128|107.034 +640029.760|220186.400|106.863 +640035.709|220184.665|106.741 +640041.635|220182.943|106.546 +640047.560|220181.221|106.369 +640053.443|220179.520|106.037 +640059.368|220177.814|105.616 +640077.565|220177.338|103.419 +640060.142|220182.297|105.763 +640048.545|220185.656|106.522 +640042.641|220187.375|106.775 +640036.737|220189.094|107.031 +640030.857|220190.816|107.144 +640025.060|220192.508|107.336 +640019.244|220194.212|107.467 +640013.279|220195.980|107.284 +640007.430|220197.702|107.311 +639978.005|220206.440|106.299 +639972.146|220208.193|105.903 +639960.457|220211.662|105.543 +639948.756|220215.167|104.714 +639942.904|220216.910|104.458 +639925.451|220222.144|103.184 +639919.669|220223.875|102.776 +639913.951|220225.551|102.864 +639897.141|220230.474|103.236 +639891.490|220232.144|103.141 +639885.891|220233.787|103.251 +639874.863|220236.988|103.879 +639869.401|220238.566|104.272 +639863.963|220240.148|104.519 +639858.480|220241.739|104.873 +639853.055|220243.312|105.193 +639847.626|220244.888|105.522 +639842.280|220246.433|105.906 +639836.906|220247.976|106.446 +639831.575|220249.512|106.900 +639826.293|220251.021|107.540 +639815.717|220254.059|108.573 +639810.422|220255.590|108.966 +639866.566|220241.112|104.278 +639872.062|220239.523|103.964 +639877.609|220237.929|103.599 +639883.175|220236.320|103.309 +639888.765|220234.699|103.126 +639894.474|220233.025|103.135 +639900.155|220231.352|103.309 +639911.579|220228.014|103.209 +639917.169|220226.405|102.861 +639922.939|220224.710|102.937 +639934.784|220221.144|104.269 +639940.666|220219.401|104.568 +639946.458|220217.724|104.306 +639952.471|220215.901|105.144 +639964.292|220212.387|105.882 +639970.095|220210.677|105.997 +639975.941|220208.964|106.046 +639981.982|220207.154|106.607 +639993.982|220203.575|107.476 +639999.850|220201.862|107.427 +640005.677|220200.168|107.256 +640011.575|220198.433|107.369 +640017.577|220196.678|107.372 +640023.502|220194.943|107.375 +640029.382|220193.233|107.201 +640035.243|220191.533|106.982 +640041.187|220189.804|106.833 +640047.097|220188.094|106.570 +640052.998|220186.388|106.293 +640058.938|220184.678|105.903 +640064.708|220183.047|105.104 +640079.515|220183.544|102.379 +640074.059|220184.976|104.766 +640068.235|220186.653|105.290 +640062.285|220188.381|105.586 +640056.427|220190.054|106.287 +640050.538|220191.767|106.586 +640044.658|220193.471|106.945 +640038.791|220195.190|107.098 +640032.890|220196.903|107.396 +640027.004|220198.628|107.509 +640015.218|220202.085|107.723 +640009.350|220203.813|107.701 +640003.391|220205.575|107.598 +639997.545|220207.291|107.698 +639991.724|220209.010|107.643 +639973.881|220214.353|106.424 +639967.958|220216.121|106.074 +639962.149|220217.843|105.921 +639956.251|220219.596|105.711 +639950.335|220221.394|104.937 +639932.873|220226.600|104.108 +639926.957|220228.389|103.446 +639921.156|220230.114|103.227 +639915.514|220231.766|103.358 +639898.476|220236.777|103.437 +639892.795|220238.466|103.245 +639887.174|220240.118|103.291 +639881.633|220241.739|103.398 +639876.085|220243.349|103.727 +639870.572|220244.955|103.961 +639865.152|220246.528|104.284 +639859.657|220248.122|104.608 +639843.341|220252.862|105.528 +639832.734|220255.903|106.644 +639827.454|220257.409|107.299 +639822.248|220258.875|108.210 +639816.963|220260.402|108.637 +639811.620|220261.957|108.887 +639871.169|220246.369|103.876 +639876.692|220244.766|103.657 +639882.239|220243.166|103.303 +639887.869|220241.517|103.257 +639893.514|220239.862|103.279 +639899.268|220238.161|103.465 +639916.395|220233.144|103.394 +639922.116|220231.474|103.291 +639927.901|220229.767|103.440 +639933.900|220227.956|104.135 +639939.874|220226.158|104.766 +639951.545|220222.711|105.086 +639957.540|220220.915|105.616 +639963.411|220219.169|105.967 +639969.363|220217.410|106.135 +639987.228|220212.082|107.314 +639993.187|220210.318|107.589 +639999.152|220208.562|107.665 +640005.074|220206.831|107.585 +640011.045|220205.072|107.710 +640016.867|220203.374|107.546 +640022.911|220201.588|107.738 +640028.763|220199.893|107.461 +640034.707|220198.162|107.296 +640040.687|220196.431|107.019 +640046.615|220194.706|106.827 +640052.507|220193.002|106.500 +640058.435|220191.295|106.065 +640064.376|220189.600|105.421 +640081.262|220189.375|100.776 +640064.422|220193.989|105.632 +640058.664|220195.626|106.467 +640052.702|220197.367|106.744 +640046.813|220199.083|107.052 +640040.912|220200.802|107.345 +640035.063|220202.512|107.576 +640029.193|220204.231|107.750 +640017.382|220207.708|107.854 +640011.520|220209.418|108.119 +639999.700|220212.933|107.777 +639993.796|220214.682|107.671 +639987.877|220216.441|107.512 +639964.237|220223.509|106.244 +639958.351|220225.280|105.821 +639952.505|220227.024|105.565 +639934.860|220232.324|104.297 +639928.987|220234.095|103.794 +639923.214|220235.808|103.666 +639917.563|220237.469|103.763 +639911.835|220239.173|103.590 +639900.396|220242.565|103.376 +639894.751|220244.236|103.312 +639889.091|220245.912|103.227 +639883.529|220247.537|103.486 +639877.896|220249.195|103.526 +639866.917|220252.389|104.163 +639861.491|220253.968|104.480 +639856.026|220255.565|104.684 +639845.096|220258.759|105.129 +639839.741|220260.296|105.748 +639834.443|220261.817|106.333 +639829.262|220263.292|107.083 +639824.059|220264.761|107.997 +639818.862|220266.242|108.713 +639876.439|220251.359|103.544 +639881.989|220249.737|103.425 +639887.552|220248.110|103.367 +639898.775|220244.833|103.154 +639915.993|220239.728|103.858 +639921.662|220238.070|103.797 +639927.386|220236.396|103.711 +639933.232|220234.653|104.077 +639950.972|220229.337|105.574 +639956.787|220227.621|105.674 +639962.743|220225.844|106.071 +639986.420|220218.785|107.582 +639992.370|220217.041|107.549 +639998.280|220215.301|107.637 +640004.214|220213.542|107.860 +640010.158|220211.781|108.125 +640016.062|220210.055|108.006 +640022.015|220208.303|108.088 +640027.943|220206.581|107.820 +640033.811|220204.877|107.598 +640039.730|220203.158|107.345 +640045.658|220201.436|107.125 +640051.635|220199.698|106.863 +640057.542|220197.982|106.610 +640063.401|220196.318|105.872 +640069.247|220194.639|105.388 +640060.727|220201.551|106.595 +640054.854|220203.258|106.961 +640049.014|220204.965|107.211 +640043.171|220206.669|107.467 +640037.267|220208.391|107.753 +640031.400|220210.107|107.948 +640025.532|220211.823|108.162 +640019.674|220213.554|108.155 +640013.877|220215.246|108.402 +640007.921|220217.011|108.320 +640002.038|220218.748|108.271 +639984.347|220224.021|107.585 +639966.584|220229.337|106.558 +639960.692|220231.108|106.116 +639954.782|220232.888|105.644 +639948.853|220234.677|105.110 +639942.959|220236.460|104.489 +639937.195|220238.173|104.364 +639931.388|220239.904|104.108 +639925.631|220241.608|104.047 +639919.867|220243.312|103.983 +639902.716|220248.396|103.681 +639885.714|220253.422|103.580 +639880.151|220255.062|103.629 +639874.567|220256.708|103.629 +639869.081|220258.302|103.974 +639863.582|220259.902|104.291 +639858.172|220261.472|104.684 +639852.604|220263.106|104.797 +639836.541|220267.745|106.199 +639831.255|220269.257|106.848 +639826.052|220270.726|107.771 +639875.826|220258.116|103.529 +639881.340|220256.498|103.510 +639886.964|220254.855|103.407 +639903.758|220249.920|103.437 +639920.922|220244.842|103.980 +639926.621|220243.163|104.035 +639932.376|220241.471|104.065 +639938.195|220239.743|104.345 +639943.937|220238.054|104.367 +639949.762|220236.299|104.973 +639955.736|220234.497|105.644 +639961.646|220232.726|106.110 +639967.483|220230.977|106.577 +639979.358|220227.438|107.311 +639985.204|220225.716|107.375 +639991.090|220223.970|107.604 +639997.085|220222.159|108.280 +640002.904|220220.452|108.290 +640008.799|220218.715|108.360 +640014.757|220216.959|108.442 +640020.558|220215.274|108.180 +640026.492|220213.533|108.192 +640032.360|220211.823|107.976 +640038.215|220210.125|107.713 +640044.131|220208.406|107.442 +640050.044|220206.690|107.183 +640055.887|220204.993|106.921 +640061.767|220203.295|106.549 +640073.425|220199.994|104.879 +640079.671|220203.051|102.111 +640062.815|220207.708|106.378 +640057.045|220209.351|107.186 +640051.205|220211.055|107.439 +640045.369|220212.759|107.720 +640039.522|220214.466|107.966 +640033.673|220216.170|108.238 +640027.882|220217.861|108.475 +640021.963|220219.608|108.494 +640016.132|220221.318|108.622 +640010.298|220223.031|108.744 +639998.493|220226.548|108.271 +639992.522|220228.353|107.668 +639986.649|220230.102|107.467 +639980.769|220231.852|107.265 +639974.929|220233.595|106.976 +639957.391|220238.847|105.924 +639951.438|220240.648|105.315 +639945.525|220242.443|104.617 +639939.743|220244.163|104.431 +639933.988|220245.866|104.361 +639928.212|220247.579|104.230 +639922.534|220249.256|104.236 +639916.846|220250.954|103.971 +639899.738|220256.044|103.391 +639894.130|220257.693|103.489 +639888.576|220259.326|103.559 +639882.995|220260.972|103.541 +639877.426|220262.612|103.593 +639871.910|220264.225|103.830 +639866.490|220265.797|104.184 +639860.967|220267.407|104.434 +639855.514|220268.998|104.696 +639850.144|220270.558|105.019 +639844.737|220272.122|105.473 +639839.418|220273.652|105.991 +639834.148|220275.158|106.689 +639828.954|220276.636|107.418 +639823.724|220278.117|108.265 +639881.380|220263.475|103.522 +639886.967|220261.835|103.522 +639892.602|220260.183|103.477 +639898.208|220258.531|103.577 +639909.504|220255.212|103.657 +639915.362|220253.450|104.227 +639921.068|220251.770|104.269 +639926.746|220250.106|104.248 +639932.455|220248.424|104.339 +639938.222|220246.726|104.416 +639943.995|220245.022|104.544 +639949.917|220243.251|104.986 +639955.946|220241.419|105.842 +639961.826|220239.648|106.433 +639973.515|220236.186|106.900 +639979.446|220234.418|107.247 +639985.253|220232.702|107.393 +639991.224|220230.928|107.674 +639997.244|220229.105|108.433 +640014.974|220223.878|108.771 +640020.716|220222.211|108.539 +640026.672|220220.455|108.628 +640032.527|220218.757|108.344 +640038.398|220217.051|108.137 +640044.241|220215.359|107.823 +640050.096|220213.655|107.592 +640056.052|220211.933|107.235 +640061.889|220210.263|106.668 +640078.631|220205.724|101.566 +640081.274|220209.016|103.736 +640064.041|220213.884|106.699 +640058.332|220215.511|107.473 +640052.428|220217.233|107.747 +640046.533|220218.953|108.064 +640040.684|220220.659|108.320 +640034.905|220222.345|108.600 +640029.104|220224.040|108.814 +640017.266|220227.530|108.884 +640005.495|220231.032|108.509 +639999.609|220232.790|108.229 +639993.836|220234.500|108.140 +639987.914|220236.277|107.756 +639982.025|220238.030|107.531 +639976.188|220239.755|107.515 +639946.887|220248.582|105.071 +639935.369|220251.996|104.891 +639929.666|220253.688|104.790 +639923.899|220255.413|104.473 +639912.494|220258.805|104.129 +639906.834|220260.485|104.010 +639901.180|220262.161|103.931 +639895.541|220263.844|103.684 +639889.951|220265.496|103.632 +639884.312|220267.160|103.663 +639878.841|220268.760|103.821 +639873.293|220270.388|103.961 +639867.865|220271.966|104.294 +639862.415|220273.558|104.556 +639851.561|220276.724|105.065 +639846.209|220278.276|105.464 +639840.975|220279.779|106.049 +639835.699|220281.284|106.732 +639830.493|220282.769|107.433 +639885.754|220268.717|103.650 +639891.338|220267.081|103.641 +639897.022|220265.404|103.760 +639902.716|220263.722|103.931 +639925.579|220256.964|104.635 +639948.786|220250.100|105.415 +639954.724|220248.323|105.918 +639960.594|220246.561|106.455 +639978.294|220241.291|107.491 +639984.232|220239.542|107.604 +639990.160|220237.777|107.954 +639996.030|220236.043|108.119 +640001.983|220234.281|108.354 +640007.936|220232.498|108.866 +640013.864|220230.745|109.055 +640019.787|220229.011|108.981 +640025.730|220227.267|109.003 +640031.552|220225.573|108.823 +640037.483|220223.851|108.570 +640043.336|220222.156|108.287 +640049.246|220220.443|107.988 +640055.150|220218.736|107.671 +640060.983|220217.047|107.360 +640078.619|220216.456|105.019 +640067.012|220219.757|106.628 +640055.448|220223.073|107.899 +640049.547|220224.789|108.210 +640037.858|220228.194|108.789 +640032.000|220229.901|109.052 +640026.181|220231.605|109.219 +640020.207|220233.379|109.052 +640014.428|220235.073|109.158 +640008.509|220236.832|108.991 +640002.529|220238.624|108.600 +639996.588|220240.410|108.143 +639984.777|220243.934|107.555 +639979.087|220245.589|107.851 +639961.323|220250.923|106.525 +639955.458|220252.691|106.001 +639949.606|220254.450|105.549 +639943.852|220256.153|105.476 +639938.045|220257.882|105.232 +639932.309|220259.589|105.022 +639909.342|220266.431|104.053 +639903.688|220268.105|103.980 +639898.049|220269.766|103.989 +639892.420|220271.439|103.809 +639886.787|220273.094|103.879 +639881.182|220274.752|103.812 +639875.704|220276.356|103.971 +639870.163|220277.974|104.156 +639864.732|220279.550|104.504 +639859.337|220281.123|104.751 +639853.868|220282.717|105.001 +639848.507|220284.268|105.394 +639843.234|220285.792|105.848 +639837.958|220287.295|106.546 +639891.371|220273.445|103.876 +639896.976|220271.790|103.952 +639902.557|220270.150|103.974 +639908.236|220268.470|104.099 +639931.145|220261.673|105.031 +639936.905|220259.957|105.315 +639942.703|220258.241|105.513 +639948.463|220256.544|105.580 +639954.303|220254.797|105.970 +639960.146|220253.051|106.388 +639966.108|220251.252|107.028 +639972.094|220249.457|107.528 +639983.692|220246.037|107.692 +639989.605|220244.275|107.991 +639995.457|220242.553|108.064 +640001.441|220240.767|108.421 +640007.467|220238.957|108.957 +640013.416|220237.189|109.219 +640019.287|220235.464|109.201 +640025.194|220233.720|109.338 +640031.076|220232.004|109.146 +640036.935|220230.303|108.863 +640042.863|220228.581|108.607 +640054.616|220225.170|108.012 +640060.450|220223.479|107.701 +640077.790|220218.596|104.803 +640080.155|220222.543|105.342 +640062.946|220227.444|107.881 +640057.073|220229.151|108.274 +640051.230|220230.861|108.533 +640045.396|220232.562|108.850 +640039.550|220234.272|109.131 +640033.759|220235.963|109.384 +640027.891|220237.682|109.622 +640021.948|220239.463|109.308 +640016.096|220241.188|109.375 +640004.217|220244.754|108.637 +639998.316|220246.522|108.320 +639992.352|220248.308|108.040 +639986.579|220250.018|107.991 +639968.940|220255.303|107.049 +639963.106|220257.059|106.610 +639945.638|220262.286|105.802 +639939.895|220263.984|105.787 +639934.150|220265.700|105.540 +639905.547|220274.252|104.288 +639899.884|220275.932|104.199 +639894.282|220277.596|104.111 +639888.692|220279.251|104.080 +639883.120|220280.897|104.123 +639877.588|220282.537|104.086 +639872.086|220284.155|104.178 +639866.594|220285.756|104.537 +639861.202|220287.331|104.790 +639855.752|220288.919|105.092 +639850.375|220290.486|105.424 +639845.008|220292.047|105.796 +639839.738|220293.552|106.510 +639834.489|220295.064|107.073 +639891.645|220280.135|104.120 +639897.251|220278.480|104.184 +639902.853|220276.828|104.257 +639908.470|220275.167|104.403 +639919.766|220271.842|104.470 +639931.373|220268.373|105.248 +639937.106|220266.657|105.653 +639942.821|220264.968|105.775 +639948.631|220263.243|106.016 +639954.376|220261.533|106.287 +639960.162|220259.820|106.482 +639965.947|220258.101|106.695 +639971.857|220256.333|107.140 +639989.438|220251.115|107.796 +639995.302|220249.366|108.162 +640001.179|220247.622|108.344 +640007.171|220245.833|108.732 +640013.145|220244.035|109.329 +640019.040|220242.297|109.381 +640024.971|220240.535|109.603 +640030.820|220238.822|109.521 +640036.706|220237.106|109.332 +640042.503|220235.421|109.076 +640048.346|220233.726|108.756 +640060.093|220230.319|108.131 +640065.924|220228.648|107.534 +640053.107|220237.042|108.689 +640047.286|220238.737|109.064 +640041.482|220240.438|109.250 +640035.630|220242.151|109.530 +640029.869|220243.843|109.664 +640024.029|220245.562|109.771 +640018.116|220247.323|109.600 +640012.194|220249.088|109.423 +639994.503|220254.404|108.283 +639988.648|220256.163|107.936 +639982.823|220257.900|107.726 +639976.990|220259.640|107.506 +639971.107|220261.411|107.119 +639965.240|220263.167|106.817 +639959.470|220264.886|106.653 +639953.755|220266.590|106.455 +639947.954|220268.324|106.208 +639942.227|220270.034|106.007 +639936.521|220271.729|105.903 +639930.700|220273.490|105.397 +639924.963|220275.197|105.223 +639919.227|220276.926|104.830 +639907.907|220280.288|104.641 +639902.249|220281.964|104.577 +639896.641|220283.631|104.467 +639891.005|220285.311|104.291 +639885.418|220286.963|104.294 +639879.822|220288.621|104.278 +639874.314|220290.245|104.348 +639868.843|220291.849|104.559 +639863.454|220293.421|104.827 +639858.053|220295.003|105.074 +639852.683|220296.567|105.424 +639847.330|220298.118|105.854 +639896.659|220285.561|104.440 +639902.283|220283.893|104.583 +639907.922|220282.238|104.556 +639930.724|220275.459|105.504 +639936.512|220273.731|105.857 +639942.312|220272.012|106.040 +639948.046|220270.311|106.247 +639953.852|220268.586|106.488 +639959.619|220266.879|106.604 +639965.453|220265.154|106.741 +639971.262|220263.423|107.052 +639977.154|220261.661|107.445 +639983.003|220259.921|107.701 +639988.852|220258.177|107.985 +639994.686|220256.446|108.226 +640000.642|220254.675|108.442 +640012.535|220251.109|109.390 +640018.391|220249.375|109.548 +640024.301|220247.625|109.676 +640030.153|220245.909|109.606 +640035.984|220244.205|109.460 +640041.851|220242.495|109.219 +640047.694|220240.801|108.896 +640053.534|220239.109|108.567 +640059.374|220237.411|108.259 +640065.275|220235.698|107.945 +640071.057|220234.055|107.162 +640066.860|220240.151|107.476 +640061.160|220241.776|108.314 +640055.326|220243.477|108.634 +640049.572|220245.150|109.000 +640043.735|220246.851|109.332 +640037.941|220248.549|109.579 +640032.125|220250.252|109.765 +640026.285|220251.972|109.868 +640020.344|220253.749|109.600 +640014.572|220255.446|109.740 +640008.643|220257.229|109.305 +640002.767|220258.982|109.088 +639996.887|220260.738|108.884 +639985.250|220264.225|108.235 +639979.358|220265.998|107.793 +639973.539|220267.748|107.396 +639967.745|220269.485|107.113 +639961.972|220271.204|106.927 +639956.211|220272.917|106.808 +639950.426|220274.640|106.625 +639944.702|220276.346|106.436 +639933.272|220279.763|105.927 +639910.479|220286.579|104.928 +639904.892|220288.234|104.876 +639899.311|220289.886|104.864 +639893.685|220291.559|104.711 +639888.101|220293.226|104.486 +639882.553|220294.875|104.403 +639871.550|220298.112|104.605 +639866.134|220299.703|104.772 +639860.708|220301.294|104.940 +639855.395|220302.843|105.257 +639850.037|220304.397|105.677 +639844.773|220305.918|106.177 +639901.932|220291.291|104.958 +639907.602|220289.621|105.019 +639930.419|220282.851|105.708 +639936.207|220281.123|106.049 +639942.044|220279.382|106.336 +639947.762|220277.691|106.464 +639953.517|220275.975|106.747 +639959.375|220274.234|106.936 +639965.136|220272.533|107.031 +639970.924|220270.814|107.244 +639976.810|220269.056|107.595 +639988.666|220265.502|108.436 +639994.583|220263.740|108.713 +640000.438|220261.993|109.039 +640006.388|220260.226|109.237 +640012.301|220258.461|109.582 +640018.180|220256.714|109.804 +640024.087|220254.965|109.905 +640030.007|220253.230|109.811 +640035.853|220251.517|109.704 +640041.653|220249.829|109.445 +640047.496|220248.134|109.106 +640053.345|220246.436|108.796 +640059.228|220244.733|108.372 +640065.050|220243.047|107.991 +640068.384|220246.570|107.893 +640062.575|220248.241|108.567 +640056.704|220249.963|108.735 +640050.879|220251.661|109.103 +640045.100|220253.346|109.411 +640039.257|220255.050|109.734 +640033.381|220256.772|109.960 +640027.544|220258.488|110.082 +640021.670|220260.247|109.817 +640009.905|220263.743|109.561 +640003.977|220265.529|109.152 +639998.140|220267.257|109.125 +639992.306|220269.001|108.866 +639986.451|220270.756|108.546 +639974.664|220274.304|107.701 +639968.876|220276.036|107.451 +639963.097|220277.758|107.265 +639957.339|220279.471|107.159 +639951.545|220281.199|106.955 +639945.781|220282.927|106.634 +639940.072|220284.625|106.519 +639934.314|220286.347|106.257 +639928.542|220288.093|105.729 +639911.616|220293.123|105.391 +639905.953|220294.805|105.318 +639900.363|220296.460|105.281 +639894.788|220298.124|105.080 +639889.125|220299.819|104.824 +639883.556|220301.477|104.687 +639878.009|220303.123|104.626 +639872.559|220304.729|104.687 +639867.142|220306.318|104.876 +639861.735|220307.899|105.107 +639856.301|220309.497|105.269 +639850.921|220311.063|105.613 +639845.630|220312.596|106.037 +639900.704|220298.109|105.376 +639906.282|220296.472|105.336 +639911.860|220294.833|105.321 +639928.965|220289.758|105.955 +639934.708|220288.039|106.348 +639940.538|220286.307|106.592 +639946.275|220284.607|106.766 +639952.057|220282.878|107.128 +639957.830|220281.174|107.229 +639963.606|220279.468|107.351 +639969.458|220277.730|107.540 +639975.255|220276.008|107.790 +639981.132|220274.256|108.104 +639987.121|220272.457|108.610 +639992.982|220270.711|108.911 +639998.822|220268.976|109.155 +640004.684|220267.245|109.247 +640010.655|220265.468|109.521 +640016.669|220263.667|109.987 +640022.460|220261.972|109.868 +640028.397|220260.210|110.085 +640034.304|220258.482|109.945 +640040.129|220256.784|109.747 +640045.981|220255.087|109.430 +640051.824|220253.392|109.079 +640057.652|220251.709|108.677 +640063.553|220249.999|108.323 +640069.387|220248.329|107.713 +640080.899|220245.077|105.888 +640071.624|220252.346|107.698 +640065.860|220254.008|108.283 +640054.220|220257.391|109.064 +640048.407|220259.080|109.497 +640042.558|220260.786|109.807 +640036.816|220262.469|110.021 +640031.000|220264.173|110.234 +640025.127|220265.907|110.237 +640019.314|220267.626|110.240 +640013.331|220269.424|109.865 +640007.473|220271.165|109.728 +639995.729|220274.679|109.173 +639984.000|220278.197|108.503 +639978.163|220279.955|108.052 +639972.323|220281.696|107.857 +639966.547|220283.415|107.683 +639960.698|220285.158|107.500 +639943.428|220290.312|106.851 +639937.756|220292.004|106.656 +639931.971|220293.741|106.321 +639926.304|220295.427|106.183 +639909.303|220300.493|105.638 +639903.700|220302.157|105.559 +639898.058|220303.839|105.370 +639892.362|220305.549|105.007 +639886.802|220307.201|104.900 +639881.230|220308.860|104.766 +639875.717|220310.484|104.845 +639870.245|220312.100|104.854 +639864.683|220313.749|104.806 +639853.948|220316.885|105.348 +639906.873|220302.788|105.613 +639912.475|220301.133|105.684 +639923.832|220297.737|106.409 +639929.395|220296.119|106.150 +639935.089|220294.424|106.372 +639940.791|220292.726|106.653 +639946.583|220290.992|107.022 +639952.261|220289.304|107.256 +639957.991|220287.603|107.448 +639963.697|220285.911|107.579 +639969.488|220284.192|107.777 +639975.194|220282.500|107.945 +639980.979|220280.778|108.180 +639986.914|220278.992|108.719 +639992.772|220277.246|109.015 +639998.603|220275.511|109.231 +640004.416|220273.786|109.396 +640010.246|220272.052|109.643 +640016.160|220270.287|109.981 +640021.990|220268.565|110.021 +640027.867|220266.818|110.252 +640033.704|220265.112|110.100 +640039.522|220263.414|109.887 +640045.335|220261.719|109.664 +640051.102|220260.049|109.283 +640056.920|220258.366|108.850 +640062.745|220256.681|108.466 +640068.567|220254.992|108.082 +640074.395|220253.322|107.457 +640079.049|220256.577|107.293 +640073.261|220258.257|107.762 +640067.512|220259.912|108.418 +640055.875|220263.304|109.183 +640050.120|220264.977|109.579 +640044.338|220266.669|109.875 +640038.541|220268.367|110.140 +640032.728|220270.077|110.347 +640026.946|220271.781|110.438 +640021.088|220273.530|110.259 +640015.300|220275.237|110.365 +640009.469|220276.987|110.067 +639997.743|220280.498|109.551 +639991.894|220282.253|109.259 +639980.214|220285.768|108.546 +639974.435|220287.496|108.320 +639968.733|220289.197|108.146 +639962.941|220290.931|107.924 +639957.229|220292.635|107.762 +639951.514|220294.339|107.598 +639945.772|220296.058|107.372 +639940.033|220297.792|106.927 +639928.630|220301.194|106.604 +639923.003|220302.876|106.382 +639911.628|220306.275|106.034 +639906.056|220307.942|105.818 +639900.402|220309.634|105.577 +639894.733|220311.335|105.299 +639889.170|220312.993|105.174 +639883.602|220314.651|105.040 +639878.134|220316.272|105.037 +639872.608|220317.906|105.086 +639867.170|220319.509|105.214 +639861.702|220321.143|105.019 +639856.328|220322.710|105.391 +639913.149|220307.546|106.077 +639924.536|220304.150|106.634 +639930.178|220302.489|106.647 +639935.814|220300.810|106.897 +639941.550|220299.112|107.031 +639947.296|220297.387|107.464 +639953.035|220295.683|107.656 +639958.784|220293.970|107.896 +639964.478|220292.291|107.960 +639970.235|220290.568|108.280 +639975.975|220288.877|108.308 +639981.790|220287.139|108.634 +639987.630|220285.387|109.064 +639993.394|220283.677|109.241 +639999.277|220281.915|109.631 +640005.190|220280.153|109.908 +640011.008|220278.425|110.094 +640016.833|220276.691|110.335 +640022.621|220274.996|110.192 +640028.495|220273.253|110.396 +640034.295|220271.546|110.347 +640040.099|220269.857|110.060 +640045.911|220268.163|109.826 +640051.702|220266.480|109.521 +640057.454|220264.819|109.073 +640063.215|220263.149|108.686 +640069.049|220261.460|108.323 +640074.803|220259.811|107.662 +640069.853|220265.788|108.408 +640058.289|220269.150|109.225 +640052.486|220270.833|109.707 +640046.755|220272.512|109.951 +640041.040|220274.179|110.283 +640035.304|220275.859|110.533 +640029.519|220277.566|110.621 +640023.691|220279.291|110.576 +640017.860|220281.022|110.521 +640006.214|220284.506|110.033 +639994.619|220287.972|109.558 +639988.852|220289.694|109.347 +639983.031|220291.446|108.954 +639977.221|220293.190|108.631 +639971.457|220294.906|108.491 +639965.730|220296.619|108.262 +639960.027|220298.316|108.137 +639954.309|220300.020|107.970 +639948.643|220301.712|107.781 +639937.195|220305.156|107.028 +639914.704|220311.871|106.247 +639909.034|220313.572|105.933 +639903.459|220315.236|105.741 +639897.891|220316.900|105.574 +639892.304|220318.567|105.373 +639886.805|220320.204|105.248 +639881.240|220321.859|105.156 +639875.860|220323.444|105.242 +639870.325|220325.096|105.046 +639864.777|220326.773|104.611 +639859.468|220328.300|105.199 +639917.822|220312.977|106.061 +639923.601|220311.240|106.519 +639934.961|220307.866|106.817 +639940.712|220306.138|107.247 +639946.506|220304.400|107.610 +639952.176|220302.715|107.790 +639957.979|220300.990|107.991 +639963.709|220299.283|108.186 +639969.507|220297.561|108.390 +639975.289|220295.838|108.573 +639981.068|220294.122|108.759 +639986.963|220292.355|109.146 +639992.793|220290.620|109.320 +639998.694|220288.846|109.768 +640004.541|220287.103|110.045 +640010.445|220285.341|110.295 +640016.291|220283.613|110.353 +640022.036|220281.921|110.316 +640027.989|220280.147|110.560 +640033.859|220278.419|110.521 +640039.693|220276.709|110.347 +640045.469|220275.033|109.972 +640051.254|220273.350|109.652 +640057.036|220271.668|109.329 +640062.901|220269.958|109.079 +640068.728|220268.284|108.439 +640080.344|220264.923|107.570 +640072.298|220272.098|108.189 +640066.631|220273.725|108.917 +640060.874|220275.402|109.295 +640055.031|220277.108|109.609 +640049.276|220278.785|110.030 +640043.515|220280.461|110.438 +640037.797|220282.132|110.765 +640031.945|220283.857|110.853 +640026.209|220285.554|110.880 +640020.317|220287.322|110.594 +640014.507|220289.038|110.643 +640008.698|220290.773|110.460 +640002.821|220292.528|110.292 +639997.024|220294.269|109.948 +639985.356|220297.777|109.283 +639979.623|220299.496|108.991 +639973.844|220301.221|108.792 +639968.150|220302.919|108.674 +639962.432|220304.626|108.494 +639956.702|220306.339|108.283 +639950.972|220308.049|108.104 +639945.272|220309.762|107.802 +639939.569|220311.472|107.512 +639933.818|220313.209|107.073 +639928.145|220314.898|106.939 +639922.534|220316.571|106.787 +639916.901|220318.257|106.586 +639911.311|220319.933|106.308 +639905.666|220321.622|106.101 +639900.116|220323.274|105.994 +639894.520|220324.947|105.763 +639889.024|220326.587|105.647 +639883.529|220328.220|105.559 +639878.009|220329.869|105.394 +639872.525|220331.494|105.376 +639867.030|220333.140|105.114 +639861.723|220334.685|105.479 +639917.877|220320.000|106.537 +639929.169|220316.650|106.756 +639934.909|220314.934|107.098 +639940.663|220313.203|107.518 +639946.369|220311.499|107.793 +639952.087|220309.786|108.131 +639957.821|220308.082|108.299 +639963.639|220306.348|108.539 +639969.351|220304.653|108.671 +639975.130|220302.937|108.817 +639980.986|220301.194|109.018 +639986.786|220299.463|109.286 +639992.653|220297.713|109.561 +639998.475|220295.963|109.954 +640004.422|220294.183|110.323 +640010.225|220292.461|110.438 +640016.108|220290.712|110.612 +640021.914|220289.005|110.530 +640027.888|220287.219|110.838 +640033.701|220285.506|110.804 +640039.544|220283.793|110.658 +640045.341|220282.104|110.344 +640051.114|220280.431|109.957 +640056.905|220278.764|109.378 +640062.782|220277.047|109.158 +640068.588|220275.368|108.680 +640080.283|220271.979|107.826 +640080.856|220276.353|108.229 +640074.916|220278.120|108.116 +640069.225|220279.739|109.033 +640063.376|220281.455|109.317 +640057.591|220283.147|109.612 +640051.791|220284.832|110.115 +640046.100|220286.487|110.542 +640040.309|220288.182|110.865 +640034.487|220289.892|111.066 +640028.708|220291.596|111.210 +640022.783|220293.382|110.801 +640016.952|220295.113|110.780 +640011.085|220296.884|110.377 +639993.534|220302.133|109.777 +639987.731|220303.876|109.454 +639981.882|220305.626|109.241 +639976.173|220307.332|109.061 +639970.397|220309.058|108.905 +639964.621|220310.783|108.759 +639958.891|220312.496|108.567 +639953.227|220314.187|108.381 +639947.454|220315.922|108.076 +639941.742|220317.641|107.762 +639935.927|220319.396|107.345 +639919.001|220324.450|106.851 +639913.369|220326.136|106.671 +639907.736|220327.815|106.519 +639902.219|220329.452|106.537 +639896.601|220331.140|106.235 +639891.005|220332.814|106.031 +639885.485|220334.466|105.857 +639879.901|220336.130|105.726 +639874.479|220337.742|105.690 +639868.990|220339.370|105.677 +639940.289|220320.024|107.592 +639945.961|220318.327|107.963 +639951.682|220316.614|108.296 +639957.434|220314.901|108.515 +639963.100|220313.218|108.692 +639968.833|220311.511|108.884 +639974.551|220309.814|109.042 +639980.254|220308.122|109.167 +639986.027|220306.409|109.314 +639991.833|220304.675|109.612 +639997.658|220302.928|109.999 +640015.157|220297.722|110.609 +640020.960|220295.997|110.758 +640032.704|220292.510|111.094 +640038.486|220290.815|110.960 +640044.232|220289.139|110.691 +640050.008|220287.466|110.301 +640055.817|220285.789|109.783 +640061.535|220284.146|109.195 +640067.336|220282.452|108.948 +640072.557|220285.917|108.872 +640066.772|220287.615|109.152 +640060.999|220289.304|109.490 +640038.062|220295.991|111.106 +640032.293|220297.692|111.283 +640020.613|220301.188|110.896 +640014.809|220302.922|110.731 +640003.047|220306.455|110.170 +639997.295|220308.174|110.024 +639991.501|220309.914|109.740 +639985.704|220311.655|109.463 +639979.946|220313.374|109.353 +639974.240|220315.077|109.213 +639968.541|220316.778|109.100 +639962.798|220318.497|108.869 +639957.080|220320.207|108.728 +639951.368|220321.926|108.402 +639945.571|220323.676|108.024 +639939.728|220325.465|107.281 +639917.383|220332.094|107.348 +639911.695|220333.807|107.003 +639906.175|220335.444|107.015 +639900.610|220337.105|106.897 +639895.035|220338.773|106.753 +639889.423|220340.473|106.284 +639883.928|220342.110|106.214 +639878.423|220343.747|106.138 +639872.903|220345.396|106.022 +639940.977|220326.779|107.589 +639946.656|220325.069|107.994 +639952.404|220323.341|108.408 +639958.107|220321.634|108.698 +639963.844|220319.927|108.881 +639969.516|220318.235|109.097 +639975.222|220316.541|109.210 +639980.925|220314.846|109.326 +639986.691|220313.133|109.448 +639992.437|220311.414|109.768 +639998.213|220309.692|109.969 +640004.053|220307.933|110.420 +640015.547|220304.534|110.457 +640021.436|220302.760|110.911 +640027.352|220300.990|111.237 +640033.106|220299.289|111.234 +640038.876|220297.597|111.045 +640044.637|220295.912|110.832 +640050.355|220294.250|110.472 +640056.101|220292.589|109.978 +640061.840|220290.931|109.469 +640067.601|220289.258|109.058 +640073.346|220287.597|108.591 +640080.152|220290.861|108.329 +640074.300|220292.580|108.597 +640068.570|220294.247|109.082 +640062.806|220295.933|109.466 +640057.113|220297.597|109.868 +640051.370|220299.271|110.347 +640045.682|220300.929|110.801 +640039.879|220302.632|111.088 +640022.563|220307.781|111.106 +640016.848|220309.487|111.021 +640011.030|220311.231|110.832 +639999.417|220314.721|110.338 +639993.543|220316.492|110.012 +639987.880|220318.177|109.975 +639982.104|220319.909|109.792 +639976.383|220321.628|109.579 +639970.689|220323.325|109.494 +639959.268|220326.760|108.997 +639953.575|220328.473|108.722 +639947.893|220330.196|108.277 +639942.163|220331.927|107.921 +639930.901|220335.310|107.473 +639914.307|220340.227|107.729 +639908.781|220341.869|107.717 +639903.271|220343.506|107.759 +639892.161|220346.856|107.153 +639886.653|220348.502|107.034 +639875.726|220351.779|106.683 +639929.675|220337.401|107.509 +639940.941|220334.060|107.646 +639946.717|220332.320|108.125 +639952.474|220330.586|108.564 +639958.205|220328.864|108.927 +639963.993|220327.129|109.271 +639969.748|220325.410|109.521 +639975.453|220323.716|109.618 +639981.147|220322.030|109.686 +639986.938|220320.305|109.881 +639992.723|220318.580|110.079 +639998.542|220316.851|110.170 +640004.352|220315.111|110.493 +640010.167|220313.386|110.612 +640016.041|220311.621|110.972 +640021.835|220309.905|111.054 +640027.775|220308.119|111.456 +640039.309|220304.745|111.002 +640045.061|220303.065|110.734 +640050.831|220301.392|110.295 +640056.509|220299.752|109.783 +640062.258|220298.091|109.283 +640068.058|220296.396|109.012 +640073.910|220294.689|108.695 +640079.729|220293.004|108.256 +640076.062|220298.914|108.549 +640070.246|220300.612|108.978 +640064.416|220302.337|109.106 +640058.649|220304.022|109.497 +640052.986|220305.668|110.045 +640047.377|220307.278|110.819 +640041.580|220308.978|111.142 +640035.773|220310.701|111.188 +640030.132|220312.346|111.618 +640024.267|220314.120|111.219 +640018.439|220315.852|111.234 +640001.044|220321.079|110.484 +639995.256|220322.819|110.228 +639989.553|220324.529|110.057 +639983.814|220326.239|110.021 +639978.120|220327.937|109.923 +639972.421|220329.641|109.823 +639966.770|220331.332|109.664 +639961.030|220333.073|109.225 +639955.318|220334.795|108.899 +639949.570|220336.538|108.460 +639943.907|220338.245|108.116 +639921.677|220344.856|108.125 +639916.173|220346.490|108.174 +639910.726|220348.109|108.195 +639905.200|220349.752|108.204 +639899.683|220351.407|108.030 +639894.209|220353.053|107.781 +639888.689|220354.705|107.631 +639883.212|220356.351|107.418 +639877.771|220357.975|107.336 +639934.433|220343.284|107.774 +639940.017|220341.629|107.787 +639945.763|220339.900|108.155 +639951.435|220338.194|108.524 +639957.202|220336.450|109.000 +639962.984|220334.716|109.314 +639968.717|220332.988|109.725 +639974.445|220331.278|109.896 +639980.153|220329.580|110.015 +639985.917|220327.867|110.100 +639991.641|220326.172|110.060 +639997.472|220324.438|110.185 +640003.300|220322.682|110.576 +640014.937|220319.217|110.844 +640020.814|220317.449|111.219 +640026.626|220315.715|111.386 +640032.488|220313.971|111.493 +640038.315|220312.264|111.246 +640055.454|220307.299|109.777 +640061.215|220305.626|109.326 +640067.076|220303.913|109.021 +640072.953|220302.191|108.792 +640078.814|220300.474|108.518 +640079.287|220305.342|108.863 +640073.398|220307.083|109.000 +640067.595|220308.789|109.237 +640061.791|220310.499|109.478 +640039.038|220317.107|111.615 +640027.465|220320.549|111.630 +640021.515|220322.353|111.191 +640015.718|220324.084|111.091 +640009.887|220325.834|110.877 +640004.156|220327.544|110.810 +639998.368|220329.284|110.557 +639992.608|220331.006|110.414 +639986.944|220332.695|110.399 +639981.184|220334.414|110.304 +639975.469|220336.127|110.140 +639969.808|220337.825|109.954 +639964.023|220339.571|109.582 +639958.299|220341.303|109.210 +639952.548|220343.046|108.768 +639946.805|220344.783|108.375 +639941.240|220346.438|108.381 +639935.656|220348.103|108.329 +639919.084|220353.007|108.683 +639913.561|220354.650|108.686 +639902.612|220357.911|108.597 +639897.065|220359.584|108.329 +639891.554|220361.230|108.210 +639886.116|220362.855|108.116 +639880.673|220364.483|108.018 +639940.176|220348.926|108.308 +639945.763|220347.271|108.344 +639951.402|220345.585|108.582 +639957.181|220343.838|109.082 +639962.908|220342.119|109.423 +639968.662|220340.382|109.887 +639974.396|220338.675|110.054 +639980.144|220336.956|110.292 +639985.850|220335.261|110.396 +639991.553|220333.567|110.521 +639997.320|220331.851|110.640 +640003.077|220330.141|110.740 +640008.841|220328.425|110.893 +640014.660|220326.693|111.014 +640020.503|220324.950|111.249 +640026.334|220323.210|111.459 +640038.011|220319.732|111.743 +640043.747|220318.061|111.405 +640049.520|220316.367|111.216 +640060.938|220313.108|109.606 +640066.741|220311.414|109.317 +640072.560|220309.710|109.106 +640078.436|220307.988|108.881 +640076.504|220313.291|109.210 +640064.903|220316.708|109.722 +640059.304|220318.314|110.527 +640047.923|220321.634|111.453 +640042.141|220323.344|111.584 +640036.432|220325.011|112.017 +640024.670|220328.559|111.386 +640018.948|220330.266|111.322 +640013.163|220331.991|111.280 +640007.390|220333.725|111.063 +639995.896|220337.160|110.880 +639990.239|220338.843|110.893 +639984.466|220340.571|110.755 +639978.718|220342.302|110.478 +639972.960|220344.037|110.195 +639967.251|220345.762|109.853 +639961.512|220347.502|109.436 +639955.791|220349.227|109.106 +639950.045|220350.968|108.704 +639944.458|220352.638|108.634 +639922.366|220359.170|109.192 +639916.852|220360.810|109.222 +639911.287|220362.477|109.100 +639905.809|220364.111|109.055 +639900.198|220365.799|108.817 +639894.663|220367.461|108.616 +639889.216|220369.091|108.506 +639946.814|220353.854|108.619 +639952.450|220352.169|108.838 +639958.138|220350.456|109.247 +639963.877|220348.731|109.625 +639969.610|220347.005|110.009 +639975.322|220345.292|110.335 +639981.016|220343.585|110.615 +639986.758|220341.869|110.853 +639992.431|220340.190|110.847 +639998.115|220338.501|110.917 +640003.797|220336.819|110.978 +640009.506|220335.133|110.920 +640015.315|220333.390|111.249 +640021.070|220331.674|111.405 +640026.876|220329.949|111.517 +640032.789|220328.160|112.048 +640038.495|220326.486|111.822 +640044.256|220324.801|111.563 +640049.992|220323.109|111.481 +640055.762|220321.417|111.292 +640061.325|220319.845|110.313 +640067.086|220318.171|109.862 +640078.631|220314.812|109.079 +640079.677|220319.427|108.963 +640074.026|220321.070|109.527 +640068.354|220322.722|110.021 +640062.639|220324.377|110.633 +640051.294|220327.675|111.694 +640045.567|220329.376|111.776 +640039.855|220331.064|111.935 +640034.149|220332.750|112.130 +640028.382|220334.487|111.862 +640022.566|220336.249|111.438 +640016.790|220337.971|111.432 +640010.999|220339.718|111.139 +640005.382|220341.382|111.255 +639999.667|220343.080|111.286 +639993.976|220344.783|111.170 +639988.279|220346.490|111.051 +639982.634|220348.182|110.899 +639976.898|220349.907|110.679 +639971.183|220351.635|110.313 +639965.459|220353.367|109.939 +639959.777|220355.092|109.497 +639954.117|220356.802|109.152 +639948.512|220358.484|109.009 +639942.931|220360.148|108.975 +639937.326|220361.825|108.875 +639926.417|220365.043|109.289 +639915.560|220368.244|109.701 +639910.037|220369.905|109.503 +639904.517|220371.560|109.329 +639898.979|220373.227|109.106 +639893.547|220374.852|109.027 +639888.107|220376.477|108.948 +639947.381|220360.490|108.945 +639952.990|220358.816|109.064 +639958.711|220357.100|109.344 +639964.462|220355.366|109.759 +639970.208|220353.629|110.185 +639975.920|220351.913|110.505 +639981.635|220350.194|110.853 +639987.344|220348.493|110.966 +639993.056|220346.789|111.103 +639998.804|220345.082|111.149 +640004.553|220343.372|111.203 +640010.222|220341.708|111.002 +640016.041|220339.955|111.362 +640021.777|220338.248|111.438 +640027.623|220336.496|111.691 +640033.515|220334.716|112.139 +640039.230|220333.036|111.944 +640045.024|220331.329|111.801 +640050.815|220329.623|111.670 +640056.604|220327.916|111.551 +640062.255|220326.288|110.917 +640067.854|220324.688|110.097 +640073.578|220323.036|109.509 +640079.241|220321.399|108.948 +640075.818|220326.986|109.433 +640053.181|220333.554|111.953 +640047.402|220335.267|112.106 +640041.662|220336.974|112.157 +640024.282|220342.202|111.588 +640018.564|220343.912|111.539 +640012.849|220345.618|111.530 +640007.119|220347.331|111.490 +640001.465|220349.017|111.487 +639995.707|220350.742|111.383 +639990.023|220352.446|111.310 +639984.360|220354.150|111.094 +639978.687|220355.860|110.859 +639972.981|220357.588|110.530 +639967.279|220359.313|110.231 +639961.530|220361.060|109.789 +639955.919|220362.748|109.618 +639950.295|220364.440|109.414 +639944.763|220366.098|109.317 +639939.252|220367.729|109.533 +639933.671|220369.408|109.308 +639928.356|220370.963|109.753 +639922.881|220372.584|109.917 +639917.419|220374.215|109.905 +639911.939|220375.855|109.844 +639906.514|220377.479|109.756 +639900.957|220379.159|109.475 +639895.541|220380.777|109.454 +639952.075|220365.668|109.542 +639957.720|220363.992|109.554 +639963.402|220362.279|109.939 +639969.144|220360.545|110.332 +639974.850|220358.832|110.609 +639980.641|220357.088|110.969 +639986.365|220355.378|111.109 +639992.111|220353.656|111.353 +639997.862|220351.946|111.392 +640003.614|220350.236|111.450 +640009.344|220348.538|111.441 +640015.108|220346.816|111.591 +640020.869|220345.116|111.484 +640026.742|220343.348|111.822 +640044.210|220338.142|112.133 +640050.008|220336.432|112.008 +640055.869|220334.701|111.898 +640072.788|220329.851|109.594 +640078.634|220328.144|109.222 +640078.583|220332.521|109.405 +640072.798|220334.219|109.737 +640050.197|220340.775|112.237 +640044.396|220342.500|112.316 +640027.017|220347.706|112.014 +640021.161|220349.471|111.731 +640004.068|220354.570|111.716 +639998.374|220356.277|111.606 +639992.681|220357.984|111.502 +639986.954|220359.706|111.310 +639981.208|220361.435|111.072 +639975.505|220363.160|110.752 +639969.802|220364.882|110.466 +639964.081|220366.613|110.131 +639958.354|220368.347|109.798 +639952.761|220370.021|109.716 +639947.183|220371.685|109.701 +639941.697|220373.316|109.780 +639936.113|220374.998|109.542 +639925.256|220378.189|110.170 +639919.812|220379.811|110.228 +639914.323|220381.454|110.143 +639908.818|220383.103|110.033 +639903.383|220384.734|109.935 +639897.970|220386.349|109.923 +639957.918|220370.256|109.686 +639963.594|220368.543|110.048 +639969.269|220366.827|110.438 +639974.963|220365.117|110.676 +639980.681|220363.388|111.021 +639986.365|220361.681|111.264 +639992.089|220359.969|111.423 +639997.747|220358.271|111.615 +640003.425|220356.579|111.648 +640014.788|220353.208|111.557 +640020.527|220351.498|111.624 +640026.328|220349.752|111.929 +640032.180|220347.990|112.212 +640043.820|220344.518|112.334 +640049.560|220342.820|112.240 +640055.244|220341.150|111.965 +640066.516|220337.901|110.573 +640072.179|220336.282|109.722 +640077.964|220334.588|109.375 +640076.135|220339.218|109.698 +640070.414|220340.903|110.015 +640042.089|220349.191|112.404 +640036.313|220350.919|112.362 +640030.485|220352.675|112.145 +640024.718|220354.415|111.923 +640019.104|220356.085|112.026 +639984.774|220366.385|111.466 +639979.077|220368.107|111.176 +639973.366|220369.838|110.844 +639967.733|220371.542|110.563 +639961.993|220373.285|110.182 +639956.355|220374.989|109.926 +639950.789|220376.650|109.948 +639945.263|220378.290|110.118 +639939.676|220379.979|109.856 +639928.822|220383.176|110.481 +639923.311|220384.819|110.536 +639917.855|220386.447|110.554 +639912.347|220388.102|110.423 +639906.907|220389.738|110.295 +639901.393|220391.393|110.179 +639964.801|220374.044|110.347 +639970.467|220372.334|110.697 +639976.194|220370.609|111.024 +639981.830|220368.914|111.304 +639987.527|220367.204|111.572 +639993.190|220365.510|111.746 +639998.908|220363.800|111.895 +640004.574|220362.117|111.871 +640015.885|220358.746|112.048 +640021.579|220357.064|111.929 +640027.337|220355.345|112.066 +640033.045|220353.650|112.048 +640038.773|220351.943|112.109 +640044.564|220350.200|112.426 +640061.517|220345.277|110.899 +640067.171|220343.646|110.252 +640072.874|220341.988|109.801 +640078.564|220340.312|109.588 +640078.397|220344.503|109.704 +640072.727|220346.173|109.981 +640067.022|220347.850|110.384 +640044.390|220354.482|112.115 +640038.645|220356.210|111.944 +640033.012|220357.871|112.215 +640027.297|220359.581|112.191 +640021.536|220361.316|112.017 +640015.879|220363.007|111.993 +640004.589|220366.372|112.093 +639998.914|220368.070|112.057 +639993.251|220369.774|111.853 +639987.600|220371.475|111.703 +639981.909|220373.194|111.432 +639976.206|220374.919|111.130 +639970.537|220376.641|110.743 +639964.898|220378.345|110.475 +639959.192|220380.067|110.237 +639953.642|220381.737|110.073 +639948.198|220383.347|110.295 +639942.730|220384.968|110.451 +639926.313|220389.851|110.731 +639920.858|220391.479|110.758 +639915.435|220393.103|110.688 +639910.004|220394.734|110.597 +639904.505|220396.380|110.530 +639965.282|220379.802|110.478 +639970.942|220378.095|110.792 +639976.670|220376.367|111.118 +639982.382|220374.648|111.408 +639988.081|220372.932|111.688 +639993.732|220371.243|111.813 +639999.411|220369.536|112.054 +640005.068|220367.860|111.990 +640010.758|220366.162|112.072 +640016.464|220364.473|111.969 +640022.182|220362.776|111.938 +640027.964|220361.038|112.161 +640033.698|220359.328|112.221 +640039.321|220357.679|111.901 +640045.100|220355.963|111.908 +640062.084|220350.998|110.731 +640067.799|220349.328|110.320 +640073.517|220347.658|109.923 +640079.253|220345.972|109.625 +640076.187|220350.965|109.932 +640070.463|220352.656|110.256 +640064.812|220354.318|110.624 +640059.185|220355.970|111.091 +640047.877|220359.313|111.615 +640042.281|220360.959|111.993 +640030.967|220364.321|112.337 +640025.264|220366.025|112.362 +640019.592|220367.729|112.270 +640002.669|220372.798|112.206 +639997.030|220374.495|112.072 +639991.382|220376.196|111.923 +639980.178|220379.579|111.514 +639974.521|220381.298|111.146 +639968.882|220383.008|110.862 +639963.274|220384.697|110.713 +639957.690|220386.389|110.423 +639952.185|220388.038|110.420 +639946.790|220389.641|110.576 +639941.395|220391.241|110.746 +639935.887|220392.887|110.786 +639930.517|220394.490|110.847 +639925.119|220396.090|111.054 +639919.724|220397.706|111.054 +639914.292|220399.340|110.947 +639908.888|220400.955|110.954 +639971.585|220383.514|110.966 +639977.240|220381.807|111.274 +639982.967|220380.076|111.615 +639988.639|220378.372|111.798 +639994.290|220376.681|111.911 +640000.017|220374.965|112.069 +640005.632|220373.307|111.847 +640017.065|220369.875|112.200 +640022.752|220368.192|112.051 +640028.516|220366.464|112.203 +640045.585|220361.416|111.679 +640051.279|220359.743|111.395 +640057.055|220358.039|111.167 +640062.745|220356.381|110.646 +640068.421|220354.714|110.332 +640074.157|220353.028|110.009 +640079.896|220351.340|109.701 +640078.973|220355.049|109.951 +640061.843|220360.097|111.133 +640056.119|220361.803|111.252 +640050.422|220363.492|111.481 +640044.753|220365.165|111.847 +640027.861|220370.185|112.426 +640022.085|220371.932|112.206 +640016.483|220373.599|112.386 +639999.463|220378.708|112.273 +639993.805|220380.415|112.097 +639988.164|220382.115|111.981 +639982.561|220383.807|111.783 +639976.849|220385.541|111.472 +639971.275|220387.236|111.173 +639965.645|220388.940|110.941 +639960.064|220390.631|110.670 +639954.501|220392.296|110.704 +639949.091|220393.908|110.813 +639943.611|220395.545|110.929 +639938.213|220397.148|111.109 +639932.781|220398.770|111.188 +639927.374|220400.379|111.362 +639921.979|220401.994|111.362 +639916.560|220403.625|111.301 +639911.153|220405.244|111.301 +639977.459|220386.608|111.408 +639983.110|220384.898|111.725 +639988.788|220383.191|111.901 +639994.403|220381.503|112.124 +640000.042|220379.811|112.215 +640005.720|220378.116|112.215 +640017.028|220374.733|112.350 +640022.701|220373.060|112.127 +640028.422|220371.335|112.365 +640045.448|220366.305|111.670 +640051.202|220364.614|111.338 +640056.872|220362.931|111.216 +640074.142|220357.817|110.670 +640079.744|220356.204|109.847 +640077.333|220360.005|110.259 +640054.570|220366.735|111.469 +640048.834|220368.445|111.575 +640043.208|220370.109|111.853 +640037.547|220371.773|112.273 +640031.866|220373.468|112.377 +640026.212|220375.163|112.356 +640020.494|220376.876|112.371 +640014.864|220378.555|112.465 +640009.177|220380.265|112.377 +639997.984|220383.612|112.432 +639992.348|220385.307|112.337 +639986.618|220387.053|111.932 +639980.922|220388.778|111.664 +639975.286|220390.485|111.399 +639969.638|220392.198|111.109 +639964.026|220393.890|110.960 +639958.513|220395.545|110.926 +639953.017|220397.185|110.981 +639947.534|220398.821|111.085 +639942.114|220400.437|111.191 +639936.634|220402.068|111.338 +639931.279|220403.662|111.466 +639925.859|220405.274|111.618 +639920.425|220406.911|111.508 +639915.011|220408.532|111.484 +639985.561|220388.903|111.825 +639991.218|220387.187|112.179 +639996.820|220385.496|112.371 +640002.437|220383.813|112.386 +640007.890|220382.207|112.072 +640013.575|220380.485|112.359 +640019.232|220378.793|112.331 +640024.801|220377.135|112.234 +640030.479|220375.431|112.322 +640036.112|220373.752|112.246 +640041.720|220372.100|111.853 +640047.292|220370.451|111.600 +640052.995|220368.747|111.584 +640075.699|220362.047|110.298 +640080.652|220363.663|110.079 +640074.913|220365.363|110.356 +640046.734|220373.697|112.139 +640041.068|220375.404|112.026 +640035.463|220377.062|112.404 +640029.839|220378.744|112.478 +640024.157|220380.457|112.365 +640018.549|220382.128|112.538 +640007.226|220385.544|112.298 +639990.389|220390.604|112.249 +639984.759|220392.314|111.962 +639979.123|220394.027|111.685 +639973.567|220395.709|111.456 +639967.967|220397.401|111.341 +639962.420|220399.074|111.188 +639956.940|220400.714|111.280 +639951.511|220402.342|111.325 +639946.068|220403.957|111.575 +639940.602|220405.603|111.523 +639929.819|220408.825|111.749 +639924.390|220410.443|111.874 +639919.059|220412.044|111.883 +639986.618|220393.140|111.972 +639992.315|220391.403|112.447 +639997.896|220389.729|112.548 +640009.012|220386.434|112.139 +640014.718|220384.706|112.490 +640020.384|220383.014|112.471 +640026.050|220381.320|112.474 +640031.695|220379.634|112.420 +640037.291|220377.979|112.203 +640042.988|220376.281|112.118 +640076.900|220366.284|110.213 +640078.586|220369.216|110.243 +640073.023|220370.853|110.701 +640039.269|220380.872|112.340 +640033.652|220382.554|112.444 +640028.004|220384.249|112.462 +640022.374|220385.950|112.307 +640016.809|220387.614|112.417 +640005.653|220390.951|112.578 +640000.136|220392.604|112.657 +639994.567|220394.283|112.578 +639988.877|220396.023|112.093 +639983.326|220397.709|111.868 +639977.694|220399.416|111.630 +639972.146|220401.095|111.456 +639966.632|220402.753|111.423 +639961.210|220404.378|111.475 +639955.788|220406.003|111.551 +639950.359|220407.627|111.621 +639928.816|220414.074|111.935 +639923.503|220415.665|112.005 +639918.163|220417.271|111.999 +639993.376|220396.179|112.453 +639999.045|220394.472|112.618 +640004.659|220392.792|112.612 +640021.497|220387.763|112.441 +640027.096|220386.087|112.456 +640032.802|220384.383|112.374 +640066.869|220374.255|111.408 +640072.444|220372.636|110.697 +640078.089|220370.975|110.283 +640076.239|220375.931|110.569 +640070.579|220377.610|110.920 +640065.031|220379.244|111.453 +640031.226|220389.351|112.502 +640025.663|220391.019|112.590 +640020.091|220392.692|112.654 +640014.450|220394.405|112.490 +639992.211|220401.104|112.444 +639986.637|220402.805|112.130 +639981.083|220404.494|111.911 +639975.520|220406.185|111.673 +639970.013|220407.847|111.642 +639964.584|220409.480|111.664 +639959.171|220411.105|111.761 +639953.764|220412.723|111.892 +639948.390|220414.342|111.908 +639921.677|220422.358|112.322 +640000.081|220400.220|112.682 +640016.702|220395.258|112.395 +640022.307|220393.579|112.404 +640027.903|220391.902|112.389 +640067.479|220380.134|111.057 +640073.148|220378.461|110.704 +640078.823|220376.781|110.380 +640079.884|220380.954|110.487 +640074.203|220382.652|110.749 +640068.521|220384.343|111.036 +640062.965|220385.983|111.536 +640029.245|220396.084|112.493 +640023.575|220397.797|112.450 +640017.979|220399.486|112.447 +640012.380|220401.171|112.450 +640006.756|220402.872|112.380 +639990.120|220407.889|112.395 +639984.503|220409.596|112.188 +639978.946|220411.288|111.965 +639973.402|220412.970|111.813 +639967.955|220414.616|111.767 +639962.451|220416.277|111.789 +639957.117|220417.875|111.926 +639951.716|220419.493|112.084 +639930.440|220425.857|112.819 +639925.106|220427.467|112.819 +640006.165|220404.808|112.514 +640011.691|220403.156|112.429 +640017.272|220401.491|112.319 +640022.877|220399.812|112.319 +640028.519|220398.108|112.465 +640034.057|220396.462|112.252 +640051.010|220391.384|112.206 +640056.604|220389.720|112.023 +640062.166|220388.089|111.481 +640067.753|220386.447|111.042 +640073.364|220384.785|110.710 +640079.058|220383.097|110.451 +640078.607|220388.217|110.640 +640072.993|220389.891|110.920 +640067.418|220391.546|111.353 +640061.776|220393.234|111.563 +640056.219|220394.893|111.844 +640050.568|220396.581|112.048 +640044.954|220398.270|112.157 +640039.340|220399.955|112.279 +640033.792|220401.623|112.410 +640028.187|220403.299|112.602 +640022.579|220404.997|112.554 +640011.435|220408.362|112.532 +640005.842|220410.062|112.350 +640000.368|220411.696|112.602 +639994.820|220413.373|112.612 +639989.282|220415.058|112.435 +639983.717|220416.753|112.188 +639978.160|220418.448|111.981 +639972.631|220420.121|111.901 +639967.199|220421.761|111.923 +639961.731|220423.401|112.075 +639956.379|220425.010|112.176 +639950.947|220426.644|112.252 +639945.546|220428.277|112.206 +639934.903|220431.456|112.706 +639929.636|220433.029|112.926 +640007.723|220411.739|112.228 +640013.258|220410.062|112.420 +640018.759|220408.401|112.511 +640024.200|220406.771|112.401 +640029.769|220405.088|112.520 +640035.173|220403.476|112.325 +640040.641|220401.848|112.118 +640046.213|220400.175|112.060 +640051.687|220398.541|111.911 +640057.207|220396.895|111.685 +640062.840|220395.203|111.661 +640068.293|220393.594|111.225 +640073.840|220391.948|110.908 +640079.470|220390.275|110.649 +640080.436|220394.938|110.655 +640069.234|220398.279|111.341 +640063.617|220399.955|111.636 +640057.978|220401.647|111.871 +640052.419|220403.323|111.917 +640046.801|220405.015|112.020 +640041.260|220406.682|112.157 +640035.731|220408.340|112.368 +640030.220|220409.986|112.648 +640024.572|220411.708|112.462 +640019.052|220413.376|112.502 +640013.465|220415.076|112.337 +640007.890|220416.771|112.225 +640002.544|220418.359|112.679 +639997.042|220420.026|112.615 +639991.596|220421.666|112.755 +639986.018|220423.373|112.465 +639980.486|220425.056|112.353 +639975.005|220426.723|112.200 +639969.577|220428.363|112.243 +639964.228|220429.975|112.325 +639958.820|220431.600|112.471 +639953.477|220433.206|112.606 +639937.475|220438.022|112.980 +639932.245|220439.598|113.093 +640022.902|220414.336|112.578 +640028.516|220412.647|112.606 +640034.051|220411.001|112.362 +640039.593|220409.352|112.148 +640045.210|220407.673|111.993 +640050.779|220406.006|111.917 +640056.390|220404.332|111.764 +640062.062|220402.638|111.609 +640067.656|220400.970|111.429 +640073.291|220399.297|111.161 +640078.903|220397.633|110.829 +640078.430|220402.860|110.984 +640072.916|220404.497|111.395 +640067.326|220406.176|111.545 +640061.672|220407.874|111.731 +640056.134|220409.538|111.859 +640050.538|220411.218|112.029 +640044.981|220412.891|112.127 +640039.431|220414.561|112.249 +640033.884|220416.226|112.410 +640028.385|220417.881|112.514 +640022.920|220419.517|112.752 +640017.360|220421.206|112.670 +640011.914|220422.846|112.761 +640001.093|220426.083|113.246 +639995.595|220427.747|113.209 +639990.062|220429.448|112.837 +639984.463|220431.164|112.499 +639979.096|220432.788|112.484 +639968.394|220435.998|112.868 +639963.036|220437.629|112.706 +639957.653|220439.256|112.715 +639952.337|220440.863|112.734 +639946.988|220442.484|112.654 +639941.840|220444.014|113.023 +639936.664|220445.544|113.535 +640017.607|220423.172|112.670 +640023.170|220421.493|112.731 +640028.699|220419.850|112.441 +640034.268|220418.182|112.310 +640039.830|220416.518|112.170 +640045.411|220414.842|112.115 +640051.035|220413.159|111.984 +640056.655|220411.477|111.856 +640062.322|220409.785|111.676 +640067.927|220408.109|111.527 +640073.569|220406.429|111.283 +640079.235|220404.750|110.896 +640076.790|220411.224|111.307 +640071.158|220412.918|111.539 +640065.507|220414.619|111.725 +640059.969|220416.293|111.840 +640054.369|220417.984|111.990 +640048.746|220419.685|112.078 +640043.204|220421.358|112.231 +640037.654|220423.035|112.365 +640032.107|220424.705|112.535 +640026.611|220426.366|112.654 +640021.125|220428.021|112.816 +640004.696|220432.977|113.288 +639999.240|220434.645|113.148 +639993.778|220436.297|113.243 +639988.365|220437.940|113.285 +639982.759|220439.683|112.691 +639977.374|220441.308|112.865 +639972.058|220442.908|113.057 +639966.693|220444.535|113.096 +639961.317|220446.184|112.883 +639955.998|220447.785|113.108 +639950.685|220449.394|113.142 +639940.124|220452.582|113.456 +640024.569|220428.805|112.627 +640030.171|220427.119|112.587 +640035.725|220425.461|112.392 +640041.293|220423.791|112.264 +640046.923|220422.105|112.133 +640052.541|220420.423|111.975 +640058.164|220418.734|111.862 +640063.836|220417.039|111.688 +640069.509|220415.339|111.533 +640075.199|220413.629|111.463 +640080.774|220411.986|110.972 +640079.360|220418.094|111.289 +640073.730|220419.786|111.542 +640068.131|220421.477|111.676 +640062.544|220423.163|111.865 +640056.994|220424.842|111.962 +640051.388|220426.534|112.124 +640045.783|220428.226|112.289 +640040.214|220429.911|112.377 +640034.655|220431.591|112.502 +640029.184|220433.240|112.712 +640023.642|220434.925|112.694 +640007.073|220439.942|112.941 +640001.627|220441.588|113.078 +639996.256|220443.207|113.264 +639990.800|220444.855|113.407 +639985.332|220446.526|113.282 +639979.757|220448.254|112.825 +639974.502|220449.821|113.230 +639969.068|220451.470|113.267 +639963.615|220453.146|113.038 +639947.781|220457.925|113.499 +640029.339|220435.379|112.554 +640034.835|220433.733|112.383 +640040.275|220432.100|112.276 +640045.792|220430.441|112.218 +640051.346|220428.777|112.066 +640056.832|220427.134|111.923 +640062.379|220425.470|111.783 +640067.927|220423.806|111.655 +640073.459|220422.148|111.490 +640079.052|220420.478|111.301 +640078.781|220426.311|111.569 +640073.233|220427.976|111.886 +640067.573|220429.701|111.804 +640062.023|220431.380|111.892 +640056.472|220433.060|112.008 +640050.943|220434.724|112.203 +640045.387|220436.406|112.319 +640039.882|220438.074|112.401 +640034.408|220439.723|112.596 +640028.982|220441.359|112.740 +640018.019|220444.679|112.923 +640012.566|220446.328|113.026 +640001.809|220449.562|113.541 +639996.415|220451.192|113.654 +639990.916|220452.881|113.422 +639985.433|220454.557|113.264 +639980.028|220456.206|113.157 +639974.664|220457.834|113.200 +639969.351|220459.449|113.200 +639963.984|220461.092|113.044 +639958.708|220462.683|113.194 +639948.329|220465.789|113.892 +640038.044|220440.939|112.410 +640043.549|220439.284|112.295 +640049.054|220437.626|112.194 +640054.610|220435.958|112.045 +640060.157|220434.291|111.886 +640065.720|220432.618|111.798 +640077.046|220429.186|111.904 +640076.050|220434.840|111.609 +640053.958|220441.521|112.167 +640048.471|220443.182|112.289 +640042.897|220444.874|112.356 +640037.486|220446.507|112.551 +640032.061|220448.147|112.697 +640026.629|220449.790|112.831 +640015.757|220453.079|113.133 +640010.368|220454.713|113.233 +640005.053|220456.319|113.368 +639999.743|220457.907|113.761 +639994.330|220459.568|113.590 +639988.941|220461.214|113.511 +639983.631|220462.814|113.724 +639972.960|220466.073|113.557 +639967.632|220467.697|113.523 +639962.274|220469.337|113.407 +639956.982|220470.940|113.520 +640042.948|220447.154|112.273 +640048.538|220445.468|112.215 +640054.165|220443.761|112.301 +640070.890|220438.741|111.856 +640076.278|220437.184|110.899 +640079.622|220441.497|111.749 +640074.032|220443.203|111.682 +640068.448|220444.901|111.661 +640062.873|220446.599|111.685 +640057.405|220448.230|112.121 +640051.879|220449.894|112.356 +640046.347|220451.579|112.337 +640040.842|220453.247|112.441 +640035.411|220454.890|112.569 +640029.961|220456.542|112.657 +640024.493|220458.203|112.691 +640008.216|220463.140|112.871 +640002.873|220464.747|113.166 +639997.548|220466.356|113.300 +639992.291|220467.929|113.678 +639981.589|220471.175|113.846 +639976.234|220472.815|113.706 +639970.912|220474.433|113.700 +639965.608|220476.040|113.773 +639960.338|220477.649|113.730 +640048.389|220452.725|112.285 +640053.888|220451.067|112.161 +640059.243|220449.491|111.527 +640064.891|220447.766|111.719 +640070.402|220446.102|111.676 +640076.022|220444.389|111.810 +640080.997|220448.102|111.871 +640075.343|220449.833|111.810 +640069.783|220451.525|111.877 +640058.652|220454.911|112.014 +640053.147|220456.587|112.075 +640047.588|220458.273|112.200 +640042.171|220459.913|112.377 +640036.679|220461.580|112.535 +640031.238|220463.232|112.642 +640025.700|220464.917|112.682 +640020.290|220466.569|112.688 +640014.812|220468.240|112.724 +640009.417|220469.880|112.825 +640003.995|220471.532|112.846 +639998.719|220473.120|113.154 +639993.260|220474.790|113.087 +639987.877|220476.436|113.051 +639982.631|220478.006|113.499 +639977.435|220479.563|113.883 +639972.143|220481.172|113.980 +639961.603|220484.397|113.886 +640060.944|220455.938|112.203 +640066.467|220454.283|111.935 +640071.972|220452.619|111.862 +640077.528|220450.945|111.740 +640079.589|220455.100|112.264 +640074.002|220456.807|112.228 +640068.442|220458.517|112.063 +640062.858|220460.220|112.069 +640057.323|220461.912|112.036 +640051.931|220463.540|112.273 +640046.411|220465.219|112.322 +640040.955|220466.880|112.371 +640035.463|220468.560|112.310 +640030.016|220470.215|112.417 +640024.648|220471.839|112.590 +640019.174|220473.510|112.630 +640013.831|220475.137|112.676 +640008.411|220476.786|112.718 +640002.992|220478.435|112.764 +639997.640|220480.066|112.825 +639992.284|220481.694|112.898 +639986.981|220483.312|112.919 +639976.392|220486.531|113.072 +640056.671|220463.726|111.868 +640062.212|220462.040|111.898 +640067.787|220460.336|112.063 +640073.398|220458.626|112.139 +640078.985|220456.932|112.136 +640077.424|220461.964|112.209 +640071.877|220463.668|112.087 +640066.363|220465.347|112.109 +640060.828|220467.042|112.063 +640055.329|220468.727|111.929 +640049.916|220470.367|112.109 +640044.506|220472.004|112.319 +640039.053|220473.662|112.389 +640033.673|220475.296|112.493 +640028.245|220476.957|112.450 +640022.844|220478.600|112.514 +640017.318|220480.313|112.164 +640012.115|220481.861|112.700 +640001.444|220485.120|112.676 +639996.094|220486.747|112.770 +639990.870|220488.338|112.819 +639985.570|220489.954|112.868 +639980.275|220491.563|112.953 +639975.057|220493.145|113.069 +639969.885|220494.703|113.361 +640063.093|220468.167|111.965 +640068.622|220466.487|111.953 +640074.239|220464.774|112.036 +640079.902|220463.052|112.054 +640079.037|220467.548|111.941 +640073.508|220469.243|111.886 +640067.973|220470.937|111.840 +640062.453|220472.623|111.868 +640057.009|220474.281|111.935 +640051.449|220475.985|111.850 +640046.030|220477.628|112.039 +640040.693|220479.243|112.289 +640035.304|220480.883|112.371 +640029.854|220482.553|112.267 +640024.496|220484.178|112.490 +640019.116|220485.808|112.645 +640013.816|220487.430|112.627 +640008.433|220489.079|112.578 +640003.117|220490.707|112.538 +639997.811|220492.310|112.779 +639992.626|220493.880|112.977 +639987.322|220495.516|112.795 +639982.034|220497.123|112.913 +639976.810|220498.711|113.023 +639971.567|220500.308|113.090 +640067.433|220472.809|111.755 +640073.035|220471.108|111.764 +640078.577|220469.419|111.816 +640077.086|220474.217|111.618 +640071.496|220475.927|111.612 +640065.958|220477.618|111.575 +640060.410|220479.316|111.523 +640054.857|220481.017|111.463 +640049.480|220482.636|111.807 +640043.994|220484.312|111.780 +640038.581|220485.949|112.020 +640033.250|220487.555|112.316 +640027.785|220489.234|112.182 +640022.402|220490.868|112.331 +640016.964|220492.529|112.316 +640011.670|220494.126|112.569 +640006.314|220495.757|112.636 +640000.987|220497.373|112.798 +639995.637|220499.015|112.682 +639990.340|220500.628|112.752 +639985.018|220502.252|112.761 +639979.836|220503.819|113.014 +639974.545|220505.441|112.926 +640075.035|220476.192|111.490 +640080.582|220474.497|111.572 +640080.588|220478.789|111.527 +640075.047|220480.490|111.450 +640069.494|220482.197|111.356 +640064.025|220483.873|111.325 +640058.451|220485.589|111.182 +640053.135|220487.177|111.731 +640047.655|220488.856|111.709 +640042.238|220490.515|111.700 +640036.892|220492.136|111.935 +640031.537|220493.758|112.167 +640026.078|220495.440|112.045 +640020.753|220497.062|112.170 +640015.410|220498.692|112.246 +640010.054|220500.326|112.307 +640004.720|220501.951|112.441 +639999.374|220503.578|112.557 +639994.129|220505.166|112.785 +639988.919|220506.751|112.932 +639983.607|220508.376|112.968 +639978.328|220509.997|112.904 +640075.782|220481.852|111.313 +640071.274|220487.244|111.146 +640065.787|220488.930|111.066 +640060.279|220490.624|110.941 +640049.593|220493.846|111.633 +640044.088|220495.535|111.563 +640038.730|220497.181|111.533 +640033.369|220498.805|111.755 +640028.096|220500.396|112.054 +640022.679|220502.067|111.874 +640017.376|220503.676|112.103 +640012.118|220505.273|112.261 +640006.802|220506.901|112.246 +640001.563|220508.489|112.493 +639996.311|220510.098|112.484 +639991.081|220511.692|112.566 +639985.853|220513.283|112.673 +639980.726|220514.841|112.889 +640079.601|220486.311|111.136 +640079.168|220490.463|111.030 +640073.621|220492.164|110.963 +640068.155|220493.837|110.960 +640062.639|220495.538|110.795 +640057.417|220497.092|111.444 +640051.958|220498.756|111.508 +640046.487|220500.445|111.319 +640041.147|220502.079|111.353 +640035.746|220503.728|111.429 +640030.528|220505.291|111.914 +640025.145|220506.959|111.624 +640014.447|220510.238|111.545 +640009.198|220511.848|111.517 +640003.861|220513.487|111.444 +639993.476|220516.621|112.075 +639988.398|220518.151|112.444 +640080.479|220495.949|110.771 +640074.937|220497.647|110.737 +640069.430|220499.345|110.597 +640064.077|220500.954|111.018 +640058.694|220502.579|111.353 +640053.284|220504.234|111.359 +640047.697|220505.968|111.021 +640042.342|220507.608|111.018 +640036.935|220509.257|111.094 +640031.625|220510.872|111.274 +640026.264|220512.512|111.301 +640020.966|220514.131|111.328 +640015.571|220515.789|111.271 +639999.740|220520.623|111.450 +639994.613|220522.162|111.886 +639989.432|220523.732|112.154 +640078.845|220502.685|110.505 +640073.340|220504.377|110.368 +640067.954|220506.005|110.670 +640062.471|220507.684|110.652 +640057.024|220509.342|110.768 +640051.580|220511.015|110.682 +640046.137|220512.686|110.606 +640040.797|220514.316|110.670 +640035.423|220515.947|110.862 +640030.074|220517.578|110.932 +640024.700|220519.224|110.926 +640019.427|220520.830|111.051 +640014.038|220522.494|110.795 +639998.188|220527.319|111.185 +639993.098|220528.837|111.752 +640081.228|220507.852|110.164 +640075.696|220509.565|109.935 +640070.402|220511.144|110.554 +640059.469|220514.505|110.402 +640054.061|220516.179|110.204 +640048.633|220517.843|110.185 +640043.302|220519.471|110.283 +640037.980|220521.092|110.420 +640032.646|220522.720|110.533 +640027.391|220524.320|110.697 +640022.003|220525.972|110.664 +640016.729|220527.597|110.563 +640011.581|220529.151|110.896 +640001.166|220532.324|111.210 +640076.611|220515.307|109.981 +640071.319|220516.901|110.393 +640060.276|220520.339|109.652 +640054.930|220521.973|109.679 +640049.547|220523.613|109.835 +640044.256|220525.234|109.850 +640038.934|220526.856|109.999 +640028.294|220530.108|110.137 +640023.033|220531.724|110.076 +640007.415|220536.482|110.542 +640078.689|220520.763|109.439 +640067.845|220524.076|109.588 +640062.291|220525.807|109.131 +640056.930|220527.435|109.341 +640051.565|220529.081|109.323 +640046.216|220530.718|109.372 +640040.897|220532.336|109.536 +640035.572|220533.970|109.472 +640030.214|220535.607|109.533 +640024.916|220537.228|109.588 +640019.747|220538.792|109.853 +640014.501|220540.380|110.112 +640009.277|220541.974|110.216 +640081.274|220525.774|108.744 +640075.815|220527.441|108.817 +640070.368|220529.118|108.719 +640064.842|220530.818|108.591 +640059.420|220532.477|108.610 +640054.025|220534.122|108.735 +640048.676|220535.756|108.796 +640043.290|220537.393|108.985 +640037.901|220539.045|108.951 +640032.552|220540.679|109.049 +640027.276|220542.285|109.189 +640022.100|220543.836|109.673 +640011.594|220547.022|110.170 +640006.449|220548.573|110.560 +640080.192|220532.598|108.536 +640074.709|220534.293|108.305 +640069.256|220535.973|108.189 +640063.812|220537.646|108.113 +640058.484|220539.267|108.229 +640053.141|220540.901|108.296 +640047.816|220542.523|108.448 +640042.397|220544.193|108.296 +640037.230|220545.741|108.780 +640031.896|220547.381|108.716 +640016.272|220552.106|109.618 +640076.693|220540.042|107.878 +640071.228|220541.730|107.720 +640065.872|220543.370|107.738 +640060.526|220545.007|107.787 +640055.223|220546.634|107.762 +640049.858|220548.277|107.793 +640044.576|220549.893|107.881 +640034.182|220553.041|108.427 +640023.856|220556.153|109.247 +640018.753|220557.696|109.542 +640079.878|220545.729|107.451 +640074.456|220547.406|107.226 +640069.024|220549.070|107.223 +640063.669|220550.707|107.250 +640058.362|220552.334|107.235 +640052.998|220553.974|107.265 +640047.853|220555.513|107.817 +640042.638|220557.086|108.149 +640027.169|220561.774|108.887 +640022.012|220563.331|109.231 +640016.867|220564.910|109.170 +640073.337|220555.202|106.680 +640068.024|220556.818|106.848 +640062.645|220558.470|106.805 +640057.369|220560.076|106.903 +640052.166|220561.631|107.482 +640046.880|220563.243|107.570 +640031.342|220567.937|108.512 +640026.175|220569.495|108.826 +640020.988|220571.067|109.070 +640078.183|220561.490|106.244 +640072.752|220563.152|106.250 +640067.378|220564.798|106.241 +640062.056|220566.416|106.418 +640056.875|220567.971|106.851 +640051.608|220569.574|107.006 +640046.365|220571.162|107.256 +640036.048|220574.259|108.128 +640031.076|220575.731|108.856 +640025.816|220577.343|108.869 +640078.510|220569.516|105.927 +640073.172|220571.159|105.793 +640067.912|220572.759|105.936 +640062.626|220574.390|105.778 +640057.539|220575.895|106.528 +640052.388|220577.453|106.839 +640047.298|220578.974|107.366 +640037.136|220582.037|108.076 +640032.113|220583.549|108.415 +640027.166|220585.021|109.006 +640077.040|220577.666|105.357 +640071.764|220579.276|105.452 +640066.467|220580.897|105.488 +640061.352|220582.418|106.150 +640056.168|220583.991|106.354 +640051.212|220585.442|107.332 +640035.895|220590.075|108.165 +640077.824|220585.314|105.083 +640072.542|220586.923|105.171 +640067.348|220588.487|105.568 +640062.236|220590.017|106.025 +640057.192|220591.513|106.711 +640041.799|220596.152|107.750 +640036.895|220597.603|108.475 +640080.518|220592.778|104.778 +640075.266|220594.375|104.964 +640070.179|220595.893|105.488 +640065.117|220597.399|106.104 +640054.991|220600.407|107.366 +640049.953|220601.913|107.863 +640044.774|220603.495|107.902 +640076.973|220601.761|104.592 +640072.060|220603.184|105.714 +640066.991|220604.708|106.095 +640062.032|220606.171|106.854 +640051.974|220609.189|107.692 +640046.850|220610.755|107.707 +640079.183|220609.558|104.242 +640069.347|220612.435|105.997 +640080.128|220617.092|105.077 +640074.998|220618.631|105.479 +640070.030|220620.119|105.961 +640055.058|220624.602|107.265 +640077.744|220625.255|105.104 +640062.623|220629.793|106.147 +640080.732|220631.717|104.845 +640070.487|220634.844|104.845 +640077.458|220640.038|105.046 +640078.510|220647.335|104.626 +640073.593|220648.798|105.098 +640078.708|220654.287|104.848 diff --git a/grass/data/lid_mr_pts.txt b/grass/data/lid_mr_pts.txt new file mode 100644 index 00000000..b823e7a4 --- /dev/null +++ b/grass/data/lid_mr_pts.txt @@ -0,0 +1,36944 @@ +639046.19571947|220854.10657942|117.7127155|1|1 +639043.9756028|220852.43356765|117.61282373|2|1 +639038.41316646|220853.2973544|117.61264699|3|1 +639043.57948005|220848.7424677|117.41914214|4|1 +639044.32340331|220844.36329699|117.09714254|5|1 +639039.20801479|220848.86129035|117.24398039|6|1 +639033.99321787|220853.44886034|117.55511551|7|1 +639032.4393729|220850.71280542|117.32023635|8|1 +639037.60627569|220846.1552306|117.14488856|9|1 +639042.77419229|220841.59685556|116.97608923|10|1 +639044.6244536|220836.43311406|116.68738069|11|1 +639039.50792088|220840.93316518|116.85718462|12|1 +639034.29536416|220845.51761953|117.0162543|13|1 +639029.08207999|220850.10396967|117.27574595|14|1 +639023.91550237|220854.65163799|117.73139347|15|1 +639020.5714672|220853.65712701|117.66202082|16|1 +639025.73890884|220849.09528048|117.30235834|17|1 +639030.90686908|220844.53367379|116.99921344|18|1 +639036.07423844|220839.97383621|116.79630449|19|1 +639041.15334987|220835.54185221|120.63431046|20|1 +639041.2416047|220835.41469791|116.64990383|21|2 +639045.95715155|220831.4921758|135.7437347|22|1 +639046.42331905|220830.83596496|115.9417689|23|2 +639047.36346124|220826.00703192|115.39159673|24|1 +639041.97482048|220830.84386006|123.11051775|25|1 +639042.14483716|220830.6012059|115.65406495|26|2 +639036.96111652|220835.17355752|116.6314119|27|1 +639031.7474142|220839.76278788|116.84488767|28|1 +639026.53591474|220844.34946252|117.00889659|29|1 +639021.37071877|220848.89789091|117.37530287|30|1 +639016.15820129|220853.48819905|117.75880581|31|1 +639009.58174499|220854.74580426|118.02436222|32|1 +639014.70039078|220850.22814027|117.56932862|33|1 +639019.86907296|220845.666831|117.14138179|34|1 +639025.02069091|220841.16748641|120.35113648|35|1 +639030.20504404|220836.55255501|116.66112177|36|1 +639035.37915166|220831.98759972|116.22782643|37|1 +639040.54931496|220827.42933761|116.05091594|38|1 +639045.73915509|220822.84417219|115.11247832|39|1 +639043.371772|220820.89847727|115.12365906|40|1 +639038.13561919|220825.51642744|116.11787943|41|1 +639032.92113076|220830.10449735|116.25711772|42|1 +639027.4367704|220835.13415487|132.53827743|43|1 +639027.75454186|220834.65161444|116.49278753|44|2 +639022.48073353|220839.3342369|119.98086066|45|1 +639017.32713917|220843.82941236|117.01086857|46|1 +639012.16028758|220848.38017024|117.51617827|47|1 +639006.94836155|220852.96918284|117.90754121|48|1 +639003.0684079|220852.23624243|117.88228689|49|1 +639008.2827943|220847.63190295|117.39197165|50|1 +639013.39432615|220843.12385432|117.35429015|51|1 +639018.61214743|220838.51634151|116.85231049|52|1 +639023.40093792|220834.53918755|136.29212092|53|1 +639028.89996724|220829.43845079|116.28026054|54|1 +639034.08957999|220824.84877166|115.13390031|55|1 +639039.2865537|220820.27713523|115.92640236|56|1 +639043.86648326|220816.51372653|137.66340741|57|1 +639044.44082436|220815.71435976|114.44728969|58|2 +639044.38943083|220811.95294622|113.96438796|59|1 +639039.14116585|220816.58717637|115.31626164|60|1 +639034.01152438|220821.10754487|115.92438388|61|1 +639028.81274525|220825.67317549|115.29751856|62|1 +639023.20493534|220830.894181|138.01415879|63|1 +639018.43806322|220834.83396559|117.9719002|64|1 +639013.21072135|220839.44798705|119.18275895|65|1 +639008.08863555|220843.92606366|116.97274989|66|1 +639002.92231994|220848.47800779|117.52402897|67|1 +638997.71123155|220853.06754302|117.93025615|68|1 +638994.00634008|220852.15046579|117.8734688|69|1 +638999.16779019|220847.59477305|117.50438362|70|1 +639004.33483357|220843.03067118|116.86069139|71|1 +639009.46700764|220838.56434292|121.51028665|72|1 +639014.35927187|220834.40309165|133.56395641|73|1 +639014.64644362|220833.94348721|117.24831501|74|2 +639019.89262657|220829.2925571|115.25228402|75|1 +639025.0552932|220824.74068805|115.2720503|76|1 +639030.21305496|220820.19635935|115.54812702|77|1 +639035.33312475|220815.70579357|117.44807996|78|1 +639040.5859546|220811.02750951|113.75936751|79|1 +639045.5363449|220806.76857275|122.14703975|80|1 +639045.62338203|220806.64944265|118.79411212|81|2 +639045.75531554|220806.46886165|113.71164009|82|3 +639045.26881335|220803.03388297|113.12065173|83|1 +639040.08489396|220807.59952974|113.69045065|84|1 +639034.87419876|220812.20452323|115.50329246|85|1 +639029.67795024|220816.76382829|114.71622265|86|1 +639024.50968166|220821.31032361|114.86245587|87|1 +639019.34515511|220825.85179086|114.87153441|88|1 +639014.15047026|220830.44169429|116.60484603|89|1 +639008.90350551|220835.1220285|121.8367511|90|1 +639003.79000212|220839.58545666|119.23565815|91|1 +638998.49744555|220844.32108121|125.66021839|92|1 +638998.61449853|220844.10964337|117.12008072|93|2 +638993.41845516|220848.71766132|120.18565788|94|1 +638988.28834744|220853.20150714|118.04094729|95|1 +638984.70720416|220852.38138612|121.23353089|96|1 +638989.87172333|220847.81077819|120.13727004|97|1 +638995.0466663|220843.22434344|118.51653781|98|1 +639000.07578216|220838.93956219|130.56055233|99|1 +639000.28472587|220838.57410549|116.24830894|100|2 +639005.18000988|220834.50278211|135.83221319|101|1 +639005.46510106|220834.0258308|118.01626037|102|2 +639010.59522324|220829.48431858|116.82583763|103|1 +639015.81221455|220824.87600904|116.40192777|104|1 +639021.01185845|220820.26442423|114.51479268|105|1 +639026.18615385|220815.69461825|114.07079098|106|1 +639031.41233385|220811.07863765|113.57346221|107|1 +639036.55605909|220806.55394223|114.54773027|108|1 +639041.76617761|220801.93711905|112.86848987|109|1 +639046.94668952|220797.3627597|112.4821871|110|1 +639047.17250744|220793.61661602|114.4766926|111|1 +639041.979182|220798.17234509|113.52017233|112|1 +639036.8213914|220802.702566|113.02252729|113|1 +639031.63738744|220807.26967009|113.61789679|114|1 +639026.42528614|220811.85109691|113.38681276|115|1 +639021.23680315|220816.42711842|114.37641015|116|1 +639016.0681177|220820.97499118|114.51694139|117|1 +639010.82134702|220825.61314663|116.36091624|118|1 +639005.65532836|220830.16001719|116.60839|119|1 +639000.47503204|220834.73248246|117.88689127|120|1 +638995.05263797|220839.70049644|133.60796311|121|1 +638995.26902383|220839.31023421|117.78959469|122|2 +638990.09952261|220843.86854958|118.7002479|123|1 +638984.92852869|220848.43338978|120.02356512|124|1 +638979.60343901|220853.27963142|132.88627549|125|1 +638979.65003417|220853.1766739|127.98142088|126|2 +638973.05197212|220855.06313578|131.42927314|127|1 +638978.20500935|220850.49483791|129.50550764|128|1 +638983.45064045|220845.74499321|119.64717804|129|1 +638988.56046828|220841.28192965|123.0537025|130|1 +638988.6077096|220841.19205555|119.2238821|131|2 +638993.82412451|220836.57851039|118.14036467|132|1 +638998.94332846|220832.05348992|117.28485239|133|1 +639004.14044723|220827.43970225|114.8322344|134|1 +639009.3168041|220822.89830039|116.67348384|135|1 +639014.47809936|220818.31346475|114.01348274|136|1 +639019.6403731|220813.76138428|114.04799233|137|1 +639024.82224623|220809.17846551|113.20852561|138|1 +639029.96556876|220804.65185775|114.14293556|139|1 +639035.15373543|220800.06205933|113.1979774|140|1 +639040.29944556|220795.5317014|114.00168809|141|1 +639045.46799277|220790.94791606|112.1617316|142|1 +639043.42506973|220788.63234674|112.44548229|143|1 +639038.19337234|220793.24523062|112.89457205|144|1 +639033.04743742|220797.76460549|111.92950345|145|1 +639027.78053377|220802.42887852|113.98445189|146|1 +639022.62047633|220806.969106|113.68197673|147|1 +639017.4568403|220811.51463019|113.54836601|148|1 +639012.23219306|220816.12228918|114.07486516|149|1 +639007.01520573|220820.7192497|114.28962458|150|1 +639001.43072806|220825.96449583|140.0997845|151|1 +638996.61275567|220829.90309545|116.1156191|152|1 +638991.44011963|220834.47019957|117.05827042|153|1 +638986.21170161|220839.09721985|118.84935537|154|1 +638980.98128134|220843.73487685|121.34083619|155|1 +638975.71260866|220848.46841098|128.73784134|156|1 +638975.78557581|220848.30481518|120.90256439|157|2 +638970.59009254|220852.95059432|126.46445928|158|1 +638970.63252704|220852.84534099|121.10952891|159|2 +638966.24723817|220852.23748595|117.76314974|160|1 +638971.29902368|220848.0019403|135.06525382|161|1 +638971.42873261|220847.69442576|119.94425817|162|2 +638976.42996275|220843.47171833|134.76416462|163|1 +638976.48887159|220843.34428188|128.85346242|164|2 +638976.58464531|220843.1370962|119.24388092|165|3 +638981.68446042|220838.64029307|119.41068968|166|1 +638986.90507247|220834.01334382|117.72523569|167|1 +638992.08525657|220829.4192991|115.82621293|168|1 +638997.25697224|220824.84445432|114.84593592|169|1 +639002.42509003|220820.27796856|114.27201631|170|1 +639007.57640862|220815.73953479|114.73529129|171|1 +639012.7277945|220811.20055898|115.16127544|172|1 +639017.94508468|220806.56366561|112.45227259|173|1 +639023.09693313|220802.02701128|113.04750256|174|1 +639028.21377339|220797.51336652|113.0283502|175|1 +639033.35456642|220792.99155393|114.02350075|176|1 +639038.55839044|220788.38300793|112.57753031|177|1 +639043.73644678|220783.81113013|112.22463021|178|1 +639043.37516667|220779.92688072|111.69473591|179|1 +639038.05765601|220784.65425099|115.2066216|180|1 +639032.96941242|220789.09386375|112.06636049|181|1 +639027.71920156|220793.73242652|113.28808371|182|1 +639022.47193198|220798.36914214|114.56672449|183|1 +639017.36345038|220802.8317555|111.82648628|184|1 +639012.11953439|220807.46528759|113.08737928|185|1 +639006.87150301|220812.10825526|114.79866429|186|1 +639001.70441622|220816.65971194|114.9448231|187|1 +638996.43227354|220821.3507422|118.73751081|188|1 +638996.4996265|220821.2362745|114.45841461|189|2 +638991.27917915|220825.84000213|115.00947975|190|1 +638986.10289456|220830.41133415|116.06880326|191|1 +638980.8768929|220835.03156377|117.5205315|192|1 +638975.48314969|220840.01832328|135.95508036|193|1 +638970.35321394|220844.53202679|135.71043434|194|1 +638970.51789023|220844.14471219|116.90303307|195|2 +638965.29588827|220848.76941425|118.97487355|196|1 +638960.06956209|220853.42062451|122.80945646|197|1 +638960.09362832|220853.34735615|118.76652306|198|2 +638958.41206207|220850.69361651|118.20592359|199|1 +638963.55906854|220846.1483769|118.23805193|200|1 +638968.55039954|220841.97128065|136.16554235|201|1 +638968.71868077|220841.57371325|116.85203143|202|2 +638973.69424002|220837.46357791|138.89172559|203|1 +638973.76665698|220837.30733784|131.73145065|204|2 +638973.9247614|220836.96622634|116.09880148|205|3 +638979.07683514|220832.4152226|116.03181009|206|1 +638984.26752302|220827.84081965|116.79137455|207|1 +638989.44091195|220823.25191442|115.244331|208|1 +638994.61019761|220818.67396248|114.26614689|209|1 +638999.78306665|220814.09260458|113.26956387|210|1 +639004.99481305|220809.4861744|112.98756191|211|1 +639010.10357669|220804.97510998|113.05753918|212|1 +639015.32416323|220800.35802823|112.50153479|213|1 +639020.44949466|220795.85335516|114.11682547|214|1 +639025.64952751|220791.24065685|112.46630897|215|1 +639030.84093928|220786.64265313|111.36577859|216|1 +639035.98097611|220782.09306838|110.50631305|217|1 +639041.15144623|220777.52649957|110.41166748|218|1 +639046.30527174|220773.00364449|112.56771693|219|1 +639042.74318015|220772.50402276|112.34123728|220|1 +639037.51402493|220777.13903757|114.40094824|221|1 +639032.39570291|220781.60136572|110.63313347|222|1 +639027.17705786|220786.22431756|112.47522007|223|1 +639021.98893694|220790.80686477|113.26877322|224|1 +639016.78695425|220795.38307421|112.61764887|225|1 +639011.62752171|220799.92491499|112.21288207|226|1 +639006.42478881|220804.53354528|114.03188165|227|1 +639001.23285257|220809.09401678|112.84479825|228|1 +638995.56904734|220814.43685013|140.13666604|229|1 +638996.01516348|220813.6951996|113.05733454|230|2 +638990.77212409|220818.42423207|121.47644679|231|1 +638990.88464954|220818.22916401|114.0237612|232|2 +638985.65255036|220822.85978369|115.53659282|233|1 +638980.49480557|220827.40291153|115.34607383|234|1 +638975.06397212|220832.50835301|140.15993908|235|1 +638969.88566208|220837.07886796|140.68807535|236|1 +638964.90973173|220841.15338138|116.51667449|237|1 +638959.78457711|220845.7021719|119.0028998|238|1 +638954.58927092|220850.26528934|117.78794827|239|1 +638949.38668664|220854.84849369|117.6357061|240|1 +638944.21436301|220854.89721584|117.43140188|241|1 +638949.37097961|220850.45192706|125.99885886|242|1 +638949.41040085|220850.30036537|117.00666416|243|2 +638954.54001631|220845.80554357|119.92440818|244|1 +638959.70602983|220841.19842474|116.66861901|245|1 +638964.81396353|220836.81872878|126.97965677|246|1 +638964.90715904|220836.59505122|116.08882998|247|2 +638969.84757466|220832.5013616|137.03900706|248|1 +638970.05913404|220832.0383761|115.7643003|249|2 +638975.01033668|220827.94587883|137.54005655|250|1 +638975.26613213|220827.4273115|114.99170406|251|2 +638980.41605684|220822.87787906|115.08637754|252|1 +638985.57616423|220818.31028989|114.47534384|253|1 +638990.76578285|220813.73451772|115.24080563|254|1 +638995.47221056|220809.91775963|141.61545315|255|1 +638995.95780255|220809.11621032|112.89386512|256|2 +639001.11817644|220804.55333118|112.66488329|257|1 +639006.34728088|220799.91740631|111.48284145|258|1 +639011.47488721|220795.407631|113.0220343|259|1 +639016.67390561|220790.7916187|111.22646589|260|1 +639021.89348437|220786.17590009|110.85154849|261|1 +639026.99007963|220781.68277054|111.55815793|262|1 +639032.05820686|220777.2755473|116.94677933|263|1 +639032.24407788|220777.02094778|109.97281897|264|2 +639037.36308126|220772.52063198|111.65033854|265|1 +639042.57475167|220767.89597496|110.05058182|266|1 +639046.22135832|220761.17506642|109.3147834|267|1 +639041.03039441|220765.75886334|109.84671479|268|1 +639035.82834349|220770.35866059|110.85976195|269|1 +639030.61101509|220774.98113528|112.58503684|270|1 +639025.46023949|220779.48886283|109.96856806|271|1 +639020.27361303|220784.07047987|110.62694779|272|1 +639015.14007905|220788.6042179|111.20703447|273|1 +639009.92905903|220793.19560626|110.95184954|274|1 +639004.75662221|220797.75956945|111.21155514|275|1 +638999.48597842|220802.44616734|114.25522661|276|1 +638993.85524292|220807.7697629|142.03189368|277|1 +638994.34833593|220806.95792204|112.84798876|278|2 +638983.9115699|220816.21805361|117.32255249|279|1 +638978.78901513|220820.70128043|114.7353378|280|1 +638973.62742119|220825.25581623|115.00335918|281|1 +638968.19197143|220830.34636152|138.07577376|282|1 +638963.20670483|220834.45687768|115.99372862|283|1 +638958.03751466|220839.03935322|117.90615525|284|1 +638952.88494545|220843.58257078|117.91304786|285|1 +638947.60843929|220848.45960318|135.31002077|286|1 +638942.53434658|220852.69989732|117.20803832|287|1 +638934.98055502|220855.12495788|118.44071903|288|1 +638940.17047325|220850.51044846|116.92613869|289|1 +638945.28011767|220846.24633976|136.95850949|290|1 +638950.43316124|220841.71272465|139.16873249|291|1 +638955.67051161|220836.84624471|121.46382428|292|1 +638955.70574115|220836.7493724|116.39622579|293|2 +638960.90692629|220832.13454575|115.62722002|294|1 +638966.06069551|220827.56336791|114.99478294|295|1 +638971.26342108|220822.95107012|114.52659663|296|1 +638976.42053572|220818.37773616|113.95732791|297|1 +638981.62084733|220813.77324629|113.92737619|298|1 +638986.41969386|220809.86402711|140.13504753|299|1 +638991.58581272|220805.21362601|134.24132107|300|1 +638991.93419639|220804.63497543|113.37770632|301|2 +638997.12250312|220800.05155282|114.15478602|302|1 +639002.38502619|220795.35282571|111.05359237|303|1 +639007.48941738|220790.84031632|111.33352933|304|1 +639012.03735848|220787.20054744|140.96361257|305|1 +639017.88305465|220781.63059229|110.24640282|306|1 +639023.05509404|220777.04958895|109.8551701|307|1 +639028.1410171|220772.58787687|112.79210368|308|1 +639033.43213358|220767.8684688|109.84462189|309|1 +639038.54155086|220763.35100763|110.08815169|310|1 +639043.61044716|220758.90733211|113.2561414|311|1 +639043.62678269|220755.50713758|110.96728119|312|1 +639038.47528194|220760.04270814|110.28038221|313|1 +639033.08849888|220764.87086638|116.17070422|314|1 +639033.28257459|220764.61080632|109.29101736|315|2 +639028.08937082|220769.22547877|111.8852735|316|1 +639022.97102591|220773.71553865|109.9379001|317|1 +639017.7492524|220778.32380996|110.07352|318|1 +639012.09220157|220783.62001208|133.76415854|319|1 +639012.62625452|220782.84471549|110.20222868|320|2 +639002.22931957|220792.02514249|110.86521279|321|1 +638997.05897603|220796.58956196|111.12349522|322|1 +638991.88059384|220801.16818698|111.93176378|323|1 +638986.69454363|220805.76218565|113.40879286|324|1 +638981.50859896|220810.3602156|115.20485426|325|1 +638976.30769516|220814.94345222|114.82552782|326|1 +638971.15619826|220819.48152389|114.32950129|327|1 +638965.99282019|220824.04402887|114.91457373|328|1 +638960.83362548|220828.59970619|115.25625588|329|1 +638955.46411593|220833.62666308|137.75426716|330|1 +638955.62934538|220833.19142855|115.30331357|331|2 +638950.32553678|220838.1916953|140.2343533|332|1 +638950.36621559|220838.06799979|133.42323914|333|2 +638950.47369746|220837.74117028|115.42690627|334|3 +638945.17261542|220842.6942043|136.87730498|335|1 +638945.2091016|220842.55915129|128.89745052|336|2 +638940.1124136|220846.89844472|116.73004794|337|1 +638934.96024293|220851.44425126|116.78572837|338|1 +638929.8441657|220852.026262|116.92565499|339|1 +638934.98348189|220847.47663028|116.70490524|340|1 +638940.17650326|220842.8814619|116.63528144|341|1 +638945.22580706|220838.65795563|135.5803769|342|1 +638945.31886522|220838.33757761|117.0712743|343|2 +638950.32079387|220834.19765564|139.25905274|344|1 +638950.47320922|220833.757218|115.49537665|345|2 +638955.67209672|220829.15188556|115.03949658|346|1 +638960.7781404|220824.62482228|114.28774562|347|1 +638965.9315327|220820.06041575|113.88738786|348|1 +638971.13184721|220815.45800626|113.75752576|349|1 +638976.23670171|220810.93906275|113.55600277|350|1 +638981.01662386|220807.07651557|142.05730614|351|1 +638981.4516934|220806.31243268|112.55229459|352|2 +638986.58491654|220801.78715144|113.8085367|353|1 +638991.6813958|220797.28347692|114.21953569|354|1 +638996.94351385|220792.58565585|110.9872335|355|1 +639002.09745787|220788.02627402|111.16365099|356|1 +639006.57638892|220784.43544305|140.25314288|357|1 +639007.21945486|220783.4853055|110.57597406|358|2 +639012.38607925|220778.90844532|110.26572261|359|1 +639017.55644122|220774.32716106|109.86837862|360|1 +639022.70577457|220769.77586991|110.35798693|361|1 +639027.87308559|220765.19993723|110.16728191|362|1 +639032.95793609|220760.71267045|111.20370444|363|1 +639038.16506132|220756.0849192|109.72128963|364|1 +639042.27038409|220752.88487723|143.51723855|365|1 +639043.33197297|220751.5112641|109.68126409|366|2 +639046.24283816|220745.14733276|110.49546718|367|1 +639041.06892731|220749.7012643|109.01665216|368|1 +639035.88289776|220754.29084965|109.47638316|369|1 +639030.64979487|220758.94439595|111.67203028|370|1 +639025.52009804|220763.46057706|110.29716261|371|1 +639019.6714561|220768.97204612|136.87620737|372|1 +639020.35689398|220768.02173411|110.11495011|373|2 +639015.14641037|220772.6241167|109.88664731|374|1 +639009.90890625|220777.29315541|112.98362726|375|1 +639004.20657858|220782.65768694|138.20208258|376|1 +639004.79371902|220781.78625785|110.81034162|377|2 +638999.60760922|220786.38416709|111.90978368|378|1 +638994.42370938|220790.98117393|113.09083954|379|1 +638989.26109558|220795.54643599|113.26663381|380|1 +638984.1051318|220800.10132803|113.09290453|381|1 +638978.48786696|220805.43048362|141.41711137|382|1 +638978.90616987|220804.68933195|112.53651877|383|2 +638973.79187869|220809.21383138|112.86486218|384|1 +638968.55530122|220813.87551102|115.45179782|385|1 +638963.41863434|220818.39449802|113.81099237|386|1 +638958.25741445|220822.96459662|114.45715887|387|1 +638953.09432472|220827.54326118|115.64099595|388|1 +638947.79496799|220832.53413795|139.52669275|389|1 +638942.68770161|220837.01743224|137.13119697|390|1 +638937.58642415|220841.26468925|116.77512435|391|1 +638932.43661547|220845.81710549|116.82912116|392|1 +638927.29209902|220850.36276198|116.72091359|393|1 +638922.14227381|220854.91400116|116.68159498|394|1 +638920.90749157|220851.97610563|116.55039343|395|1 +638926.04543025|220847.42905339|116.69052469|396|1 +638931.18753947|220842.87838845|116.83713929|397|1 +638936.32960271|220838.32719831|116.94021227|398|1 +638941.3824413|220834.09055138|135.37769119|399|1 +638946.4726107|220829.63960694|139.71098885|400|1 +638951.76760198|220824.64308501|115.68851873|401|1 +638956.85480944|220820.15251899|116.73460581|402|1 +638961.80118931|220816.07717866|140.40130158|403|1 +638962.08249178|220815.48102394|113.37240431|404|2 +638967.21809548|220810.94901487|114.52649431|405|1 +638972.27928284|220806.50537332|117.43454588|406|1 +638977.10699635|220802.5105922|139.20420946|407|1 +638977.20109259|220802.3442786|132.73842375|408|2 +638977.50592898|220801.80548493|111.79177205|409|3 +638982.63920651|220797.27648575|113.02131806|410|1 +638987.79961092|220792.70125206|112.52069645|411|1 +638992.60090676|220788.69271322|131.3269629|412|1 +638992.99035797|220788.08082976|110.51506603|413|2 +638997.53790275|220784.41399431|138.41816285|414|1 +639008.39974941|220774.44996286|111.1307041|415|1 +639013.18248675|220770.38965844|124.60372262|416|1 +639013.53101784|220769.89663802|110.22296234|417|2 +639017.91854961|220766.40005011|140.3689593|418|1 +639018.67818706|220765.34731857|110.72303514|419|2 +639023.85985077|220760.75080517|109.92469158|420|1 +639028.93875873|220756.24897775|109.42037717|421|1 +639034.11404132|220751.66331983|109.0283631|422|1 +639039.29054117|220747.07690812|108.66167777|423|1 +639044.35421826|220742.59712078|108.82535183|424|1 +639044.89885148|220738.36773968|108.41545975|425|1 +639039.61546213|220743.08136094|111.85362886|426|1 +639028.45145943|220753.29487827|138.81865083|427|1 +639024.06460471|220756.8017904|110.0373919|428|1 +639018.89183786|220761.37552873|110.20049855|429|1 +639013.68945767|220765.96624672|109.64314541|430|1 +639008.44647526|220770.61486105|110.79730053|431|1 +639003.18552717|220775.32076164|115.17708846|432|1 +638997.98956954|220779.90616007|114.64643142|433|1 +638992.33574553|220785.20385502|138.05075198|434|1 +638992.85890748|220784.38939492|110.65595073|435|2 +638987.64410731|220789.00045763|110.82555932|436|1 +638982.40425266|220793.65431334|112.60110101|437|1 +638977.20103432|220798.2489882|112.29084956|438|1 +638972.03850927|220802.8148997|112.5450392|439|1 +638966.80962517|220807.45965298|114.36609448|440|1 +638961.33589456|220812.62117082|139.57388996|441|1 +638961.61769614|220812.03411495|113.25750877|442|2 +638956.22237759|220817.13182367|138.89926003|443|1 +638956.32016632|220816.91067355|128.40851194|444|2 +638956.45785135|220816.59929738|113.63774678|445|3 +638951.05819364|220821.68882733|138.34222314|446|1 +638951.25004922|220821.20827481|114.1232623|447|2 +638945.88105032|220826.2804874|139.59140521|448|1 +638940.7808912|220830.74173304|135.9866971|449|1 +638935.6811775|220835.00180193|116.73355471|450|1 +638930.53135597|220839.5534367|116.74681904|451|1 +638925.38186153|220844.10398998|116.69781728|452|1 +638920.18839861|220848.69345823|116.64856438|453|1 +638914.98990458|220853.28650941|116.53098062|454|1 +638912.21531255|220852.2628357|116.65614532|455|1 +638917.4038972|220847.66311108|116.64516923|456|1 +638922.49075153|220843.15494744|116.75212105|457|1 +638927.67921637|220838.5546926|116.69179903|458|1 +638932.86718203|220833.95813315|116.88814093|459|1 +638937.89933667|220829.65443665|129.28709263|460|1 +638937.96067823|220829.43757813|116.48309508|461|2 +638942.99727277|220825.28608208|141.18130204|462|1 +638948.1106234|220820.74247438|140.34573277|463|1 +638953.22265725|220816.20566197|139.95396985|464|1 +638958.32723519|220811.68639451|140.42461183|465|1 +638958.61064828|220811.08763836|113.02695494|466|2 +638963.76129261|220806.51783662|112.7303864|467|1 +638968.91459898|220801.94432436|112.32788923|468|1 +638974.05890837|220797.38805974|112.6565768|469|1 +638979.13454842|220792.94715685|117.28328969|470|1 +638979.22872948|220792.78850543|111.35504434|471|2 +638984.35912127|220788.25590069|112.5774838|472|1 +638988.98702983|220784.50746795|140.55211128|473|1 +638994.56091113|220779.27357853|117.49595621|474|1 +638994.70475957|220779.05510288|110.3196264|475|2 +638999.80594211|220774.56391972|112.7979638|476|1 +639004.99841955|220769.93766441|111.00473944|477|1 +639010.09131051|220765.4292775|111.55104207|478|1 +639015.27054491|220760.82536754|110.59526594|479|1 +639020.43840715|220756.23849766|110.18935502|480|1 +639025.53430624|220751.72664781|110.67351248|481|1 +639030.74514385|220747.08452147|108.91352337|482|1 +639035.80632771|220742.61845447|110.58388057|483|1 +639040.95547421|220738.0386752|109.43297177|484|1 +639046.1364644|220733.43858335|108.90364488|485|1 +639044.31651906|220731.65818947|108.38826136|486|1 +639038.25637724|220737.36924641|135.85578389|487|1 +639039.13308189|220736.25183757|108.78740058|488|2 +639033.04791193|220742.01133829|138.34265103|489|1 +639033.93296895|220740.86789176|109.79240171|490|2 +639028.78982511|220745.41085553|109.0001043|491|1 +639023.53881428|220750.07519003|110.25891371|492|1 +639018.39674623|220754.61682434|109.43604136|493|1 +639013.14666881|220759.28279121|110.88963926|494|1 +639007.91989033|220763.94396461|113.60177681|495|1 +639002.15615883|220769.35695359|138.25681423|496|1 +639002.78588294|220768.44897252|110.43561955|497|2 +638997.57002981|220773.0701919|110.74196426|498|1 +638991.79529667|220778.57269141|141.73670181|499|1 +638986.7315788|220782.98677591|136.29325574|500|1 +638987.20621938|220782.2425654|110.5652119|501|2 +638981.97809134|220786.88632109|111.79754845|502|1 +638976.42862432|220792.11518491|136.90814037|503|1 +638971.23658926|220796.73170576|138.51773836|504|1 +638971.61538823|220796.06201375|111.96071091|505|2 +638966.3698671|220800.74682881|115.23142014|506|1 +638961.1817713|220805.3815957|118.56694414|507|1 +638955.72644976|220810.47799845|139.78224975|508|1 +638950.57280091|220815.02651463|138.68835155|509|1 +638945.46513378|220819.5336179|137.53969378|510|1 +638945.62741755|220819.10957651|115.25729768|511|2 +638940.23672503|220824.19347303|140.03206756|512|1 +638935.17885142|220828.37894493|116.81794972|513|1 +638930.03391316|220832.93174735|116.67557673|514|1 +638924.8400983|220837.52941323|116.65770802|515|1 +638919.59793517|220842.16974848|116.6272354|516|1 +638909.26339257|220851.31858548|116.63190489|517|1 +638903.22590725|220852.85975463|116.64519713|518|1 +638908.41306228|220848.26028412|116.6691027|519|1 +638913.55166951|220843.70288602|116.61798944|520|1 +638923.92138114|220834.50778174|116.64896435|521|1 +638929.05979315|220829.9525089|116.75491159|522|1 +638934.24697199|220825.35317369|116.79328141|523|1 +638939.29856134|220821.15441273|139.22761273|524|1 +638944.39267921|220816.66089474|141.13328627|525|1 +638944.58382184|220816.17011865|115.464225|526|2 +638949.60899531|220811.9473156|134.11137525|527|1 +638949.79511802|220811.51890393|113.06700838|528|2 +638954.72146068|220807.41813861|134.46796815|529|1 +638954.94259942|220806.95152312|112.84958866|530|2 +638960.09573676|220802.37412291|112.23255532|531|1 +638965.29667896|220797.75719991|111.84240161|532|1 +638970.13260466|220793.78217488|136.89141578|533|1 +638975.28874474|220789.17651436|134.23142398|534|1 +638975.65592177|220788.56017874|110.98674981|535|2 +638980.77780785|220784.03890195|112.65736745|536|1 +638985.64368267|220779.94643701|130.50777405|537|1 +638985.98698001|220779.41096766|112.03162765|538|2 +638990.56707144|220775.70584693|140.59689933|539|1 +638991.14034438|220774.83848111|111.88509677|540|2 +638996.31944086|220770.22873089|110.58346199|541|1 +639000.84919678|220766.55415604|138.02761846|542|1 +639001.47542624|220765.65454747|110.48754207|543|2 +639006.64671476|220761.05937847|109.79867111|544|1 +639011.78896964|220756.50548624|110.35274073|545|1 +639016.95349597|220751.92115466|110.05165152|546|1 +639022.12463125|220747.32877941|109.5760889|547|1 +639027.31091557|220742.7175127|108.6639288|548|1 +639032.41923525|220738.18849006|108.80387403|549|1 +639037.54109162|220733.6612615|110.04567978|550|1 +639042.77066469|220728.99781418|108.02993833|551|1 +639043.63386433|220724.59563147|108.27563545|552|1 +639038.462168|220729.17470324|108.35693297|553|1 +639033.19379836|220733.87804156|111.5281504|554|1 +639028.10500608|220738.37231962|110.70222707|555|1 +639022.99136195|220742.87775719|109.00542492|556|1 +639017.75826036|220747.51944514|109.74056291|557|1 +639012.57841105|220752.13638239|112.27394823|558|1 +639007.42254005|220756.67487795|110.2253622|559|1 +639002.26206948|220761.2432914|110.24656095|560|1 +638996.68187087|220766.42261296|129.40322531|561|1 +638997.10597997|220765.80579968|110.10566694|562|2 +638991.94340444|220770.37819775|110.2960464|563|1 +638986.34590573|220775.58817285|130.67781983|564|1 +638986.7170322|220775.01781605|111.34021731|565|2 +638981.60616688|220779.54474086|111.55842768|566|1 +638976.39956964|220784.15631911|111.76025763|567|1 +638971.17057094|220788.80734431|113.53061822|568|1 +638966.041685|220793.32747266|111.92354101|569|1 +638960.83266852|220797.94677097|112.57035864|570|1 +638955.61618697|220802.58392696|114.11742079|571|1 +638950.5281886|220807.07206695|112.84987702|572|1 +638945.13676603|220812.14350888|136.76102347|573|1 +638939.94913594|220816.7787811|140.20362953|574|1 +638929.72096503|220825.54137234|116.84527834|575|1 +638924.57841964|220830.09099686|116.62759817|576|1 +638919.43525753|220834.64390675|116.62883531|577|1 +638914.19528377|220839.28215382|116.59175843|578|1 +638909.00835173|220843.87645101|116.79953221|579|1 +638903.86476098|220848.42680417|116.56426238|580|1 +638893.89477727|220853.72763244|116.6272261|581|1 +638899.08089341|220849.12113645|116.53525014|582|1 +638904.26790799|220844.5167095|116.67496282|583|1 +638909.40582628|220839.95256684|116.55222588|584|1 +638914.53958477|220835.39334746|116.52963186|585|1 +638919.72610089|220830.78836007|116.58921904|586|1 +638924.91236038|220826.18475705|116.74299601|587|1 +638930.05073104|220821.62137074|116.71509068|588|1 +638935.19045499|220817.26085873|133.18631359|589|1 +638940.25967516|220812.83955907|139.68836693|590|1 +638945.4215875|220808.1770742|133.3371884|591|1 +638950.60178631|220803.6176719|136.63033351|592|1 +638950.83447356|220803.12343772|113.35599597|593|2 +638955.98678906|220798.53964915|112.68004518|594|1 +638961.16513868|220793.95683264|113.94904933|595|1 +638971.51346106|220784.7594203|113.31904002|596|1 +638976.7315923|220780.10921579|111.98433742|597|1 +638981.95198669|220775.45865617|110.77520881|598|1 +638986.59001917|220771.6916334|139.24079335|599|1 +638987.15564563|220770.83591626|110.61605541|600|2 +638992.31248496|220766.25428105|110.4238342|601|1 +638997.50504462|220761.64872397|110.85890619|602|1 +639002.67678958|220757.04699596|110.11161077|603|1 +639007.80362694|220752.53216696|113.17008137|604|1 +639012.91587018|220748.03344764|116.48459266|605|1 +639013.11397991|220747.76607142|109.07348602|606|2 +639018.26437758|220743.19616917|109.37021269|607|1 +639023.39178805|220738.65629998|110.44751652|608|1 +639027.59011151|220735.33095241|143.09365425|609|1 +639027.90977125|220734.91950632|132.75074861|610|2 +639028.64651575|220733.97121455|108.91278853|611|3 +639033.77580921|220729.42874518|109.91578048|612|1 +639038.98337776|220724.78744132|108.54119186|613|1 +639044.158987|220720.18745201|108.21554597|614|1 +639045.34139911|220716.45403416|142.56562961|615|1 +639046.56966125|220714.94965765|108.56559972|616|2 +639041.50856484|220719.42867966|108.2528461|617|1 +639035.52698727|220725.04286641|134.05473674|618|1 +639036.38047316|220723.97386287|108.49191105|619|2 +639031.25662676|220728.51429377|108.64996684|620|1 +639025.38314586|220734.01880865|133.32082658|621|1 +639026.13990669|220733.0461173|108.62087088|622|2 +639020.88321412|220737.74054171|111.74131921|623|1 +639020.98017569|220737.61408057|108.42646375|624|2 +639015.85270529|220742.16078387|108.834635|625|1 +639010.72422816|220746.70975131|109.35532984|626|1 +639005.55114166|220751.29742442|109.80477308|627|1 +639000.49357045|220755.7743194|109.57284258|628|1 +638995.30205054|220760.39009081|110.98445227|629|1 +638990.20632963|220764.89614466|110.36909325|630|1 +638985.09550999|220769.42436368|110.4719709|631|1 +638979.90822814|220774.0396724|112.15309955|632|1 +638974.81246507|220778.54653731|111.60037869|633|1 +638969.66120263|220783.10733294|111.43304904|634|1 +638964.49242077|220787.69892981|112.51544095|635|1 +638959.3694825|220792.25583819|114.0871249|636|1 +638954.24163981|220796.77528105|112.23359712|637|1 +638949.07199574|220801.37735042|114.11031423|638|1 +638943.82533078|220806.23434463|131.27229636|639|1 +638943.95961648|220805.92414316|115.62002975|640|2 +638938.66354396|220810.87096019|136.54942666|641|1 +638933.58993893|220815.27549327|129.22318013|642|1 +638928.56768131|220819.5714701|116.73592666|643|1 +638923.37657706|220824.16801813|116.60098579|644|1 +638918.23352226|220828.7241736|116.64838764|645|1 +638913.13934372|220833.23447214|116.49033186|646|1 +638907.61296209|220838.13076814|116.54716571|647|1 +638902.80924489|220842.38460094|116.48570887|648|1 +638897.71534788|220846.89839738|116.63415592|649|1 +638892.52423125|220851.49675027|116.64493668|650|1 +638886.0011449|220853.42954395|116.61461289|651|1 +638891.13882142|220848.86953646|116.84128788|652|1 +638896.27376436|220844.30518114|116.51195849|653|1 +638901.45927416|220839.7015907|116.64562501|654|1 +638906.54314507|220835.18559402|116.56635528|655|1 +638911.72805459|220830.58056379|116.5381802|656|1 +638916.86436794|220826.02115793|116.71601156|657|1 +638922.00098578|220821.45912589|116.70031946|658|1 +638927.13776213|220816.89725813|116.70983518|659|1 +638937.2812449|220808.10819991|134.73803593|660|1 +638942.4686162|220803.46424072|131.69336917|661|1 +638942.53539861|220803.31110692|123.98283835|662|2 +638947.78048607|220798.51110515|112.3277497|663|1 +638952.92062319|220793.95082741|112.71352228|664|1 +638958.05244402|220789.40523074|113.69927803|665|1 +638963.22068501|220784.79415753|111.96133413|666|1 +638968.37516108|220780.21020519|111.44823884|667|1 +638973.52806656|220775.62785468|111.11663051|668|1 +638978.68268059|220771.04319407|110.76658606|669|1 +638983.83431412|220766.46399333|110.6479605|670|1 +638989.02981029|220761.84916785|110.80051894|671|1 +638994.14096237|220757.30236433|110.39279417|672|1 +638999.30266456|220752.71066118|109.98153473|673|1 +639004.51215204|220748.07788464|109.67948745|674|1 +639008.93895317|220744.45327789|135.13979826|675|1 +639009.64426058|220743.50541379|108.69177832|676|2 +639014.14210617|220739.79369301|132.17401056|677|1 +639014.79679656|220738.92861682|108.8372488|678|2 +639018.94246113|220735.66187027|143.19856899|679|1 +639019.10400764|220735.45171099|137.71133946|680|2 +639019.95107352|220734.3497447|108.93929859|681|3 +639025.07044997|220729.79663504|108.61398756|682|1 +639029.52392885|220726.10530513|130.53661886|683|1 +639029.86901684|220725.66860219|119.82006086|684|2 +639030.21732147|220725.22782859|109.00363898|685|3 +639035.33326314|220720.69764446|110.31095715|686|1 +639040.55593107|220716.03468688|108.49197616|687|1 +639045.71387359|220711.4528754|108.6204523|688|1 +639045.71225516|220707.80025029|118.50265026|689|1 +639046.08579056|220707.34520767|108.36997406|690|2 +639040.9047339|220711.94671577|108.74825871|691|1 +639035.586394|220716.70251325|111.78821877|692|1 +639030.51174626|220721.17286017|109.15320224|693|1 +639025.2123603|220725.92771334|113.49635978|694|1 +639019.33991911|220731.41020085|135.81560952|695|1 +639020.13449955|220730.38118856|109.24175515|696|2 +639014.97326485|220734.96042847|109.23514159|697|1 +639009.33340218|220740.17980382|126.90406123|698|1 +639009.80713262|220739.54660706|109.44111083|699|2 +639004.48605031|220744.32132398|113.83435843|700|1 +638999.42793023|220748.76190899|109.95758266|701|1 +638994.26781476|220753.3418566|110.0897516|702|1 +638989.07007251|220757.94962873|109.76391967|703|1 +638983.89248352|220762.55658518|110.83989336|704|1 +638978.49604755|220767.50198136|123.7590097|705|1 +638978.73708288|220767.13183686|110.92939505|706|2 +638973.50023294|220771.8030151|112.95982402|707|1 +638968.32400581|220776.37902362|111.59267682|708|1 +638963.22740662|220780.89627488|111.2040486|709|1 +638958.00845865|220785.54481789|112.68006379|710|1 +638952.81859076|220790.14239014|112.08868475|711|1 +638947.7125364|220794.67968232|112.65650239|712|1 +638942.49693496|220799.33364163|114.82133272|713|1 +638937.13396211|220804.36276786|137.06968432|714|1 +638927.00793501|220813.09964047|116.72850384|715|1 +638921.81926559|220817.70243045|116.65196883|716|1 +638916.72766812|220822.21855405|116.53356651|717|1 +638911.53884114|220826.8238551|116.65144793|718|1 +638906.39887341|220831.38359973|116.5890144|719|1 +638901.26295735|220835.94074243|116.60808305|720|1 +638896.12259028|220840.50085321|116.54609601|721|1 +638890.93407406|220845.10476786|116.5717038|722|1 +638885.84226334|220849.62217386|116.54150093|723|1 +638880.65423682|220854.22627628|116.6177941|724|1 +638878.7581585|220851.79960861|116.66042414|725|1 +638883.94084934|220847.19364106|116.63353271|726|1 +638889.02704384|220842.6742574|116.68187404|727|1 +638894.21008|220838.06897503|116.73688474|728|1 +638899.34407062|220833.50441339|116.56075561|729|1 +638904.4744234|220828.94406801|116.46604492|730|1 +638909.60893922|220824.38170551|116.50905633|731|1 +638914.74352624|220819.81912639|116.5397708|732|1 +638919.87775871|220815.25853751|116.70817946|733|1 +638925.01241743|220810.69588988|116.73930321|734|1 +638935.1489449|220801.90349782|134.43565378|735|1 +638940.42741953|220796.98482844|115.74048776|736|1 +638945.58944674|220792.36847382|113.36073058|737|1 +638950.69077033|220787.82595759|112.6167931|738|1 +638955.87894982|220783.21817476|112.84462151|739|1 +638960.57525303|220779.37958536|140.34483049|740|1 +638961.00330178|220778.63891154|110.76408388|741|2 +638966.12484078|220774.10660695|112.32139659|742|1 +638971.29597912|220769.49574561|110.84290714|743|1 +638976.40288234|220764.95521711|110.45579511|744|1 +638981.55477107|220760.37797323|110.33333722|745|1 +638986.66870284|220755.82891862|109.75910135|746|1 +638991.62525954|220751.50512648|116.20432084|747|1 +638991.76954976|220751.29969842|109.85943031|748|2 +638996.16323783|220747.78025845|141.303639|749|1 +638996.93762906|220746.7016107|109.20680838|750|2 +639001.53924596|220742.87821164|130.85828359|751|1 +639002.07768567|220742.1430126|109.75342727|752|2 +639006.55190756|220738.45492871|133.22992032|753|1 +639007.18860554|220737.60111689|109.54815567|754|2 +639011.51038748|220734.12145195|139.0252991|755|1 +639011.68530027|220733.8907866|132.83844576|756|2 +639012.35830216|220733.00326858|109.03378604|757|3 +639017.41396894|220728.53445678|110.80145842|758|1 +639021.74231831|220724.99542518|135.88874009|759|1 +639022.54641467|220723.96576304|109.96598216|760|2 +639027.68959057|220719.40301704|110.40106345|761|1 +639032.85248663|220714.79801658|108.80465538|762|1 +639037.94002013|220710.28789382|109.50501403|763|1 +639043.08136037|220705.71176074|108.70783319|764|1 +639047.12784358|220698.36886381|109.0880433|765|1 +639040.77615122|220704.39622545|141.41414411|766|1 +639041.97550355|220702.9322402|108.67582577|767|2 +639036.74703494|220707.57268144|109.04026937|768|1 +639031.60849622|220712.13671466|109.68690097|769|1 +639026.38533982|220716.77215943|110.02746691|770|1 +639021.18941126|220721.39260705|111.12091863|771|1 +639016.08028399|220725.90197095|109.42448855|772|1 +639010.01044308|220731.65584881|139.83917663|773|1 +639005.69504852|220735.11743504|110.00593329|774|1 +639000.49633377|220739.72308087|109.68094783|775|1 +638989.65635224|220749.59081886|130.64256609|776|1 +638990.14531273|220748.89420609|109.11611606|777|2 +638984.95853755|220753.51009092|110.49983902|778|1 +638979.76460257|220758.10976777|110.03300146|779|1 +638974.5385588|220762.79062668|113.88489498|780|1 +638969.187734|220767.64457823|122.84522179|781|1 +638969.40238691|220767.3013449|110.32703992|782|2 +638964.18987045|220771.93171884|111.02344531|783|1 +638959.0413193|220776.49435661|110.82260136|784|1 +638953.64911284|220781.45678565|125.66451581|785|1 +638953.8398993|220781.10796847|110.95145887|786|2 +638948.62639488|220785.74595791|112.19918055|787|1 +638943.46031433|220790.34788388|113.94251949|788|1 +638938.24556406|220795.00056439|116.30353358|789|1 +638927.91353778|220804.16226307|116.34190341|790|1 +638922.72230734|220808.76962806|116.69858003|791|1 +638917.53386098|220813.36881429|116.58705173|792|1 +638912.39361684|220817.92651083|116.58290314|793|1 +638907.20508726|220822.52761226|116.62214733|794|1 +638902.01679041|220827.12783428|116.60560877|795|1 +638896.88049101|220831.67991484|116.42737743|796|1 +638891.69197626|220836.28126127|116.48660185|797|1 +638886.50433631|220840.88336031|116.67127001|798|1 +638881.36358451|220845.43987218|116.5313806|799|1 +638876.17492072|220850.04038538|116.51060043|800|1 +638870.9873261|220854.6414829|116.61527332|801|1 +638866.22740722|220855.07329289|116.57675466|802|1 +638871.36019334|220850.50777938|116.5329898|803|1 +638876.59187796|220845.85761885|116.75167457|804|1 +638881.72402288|220841.29184255|116.6398114|805|1 +638886.85664567|220836.72609395|116.56564834|806|1 +638892.08690653|220832.07546296|116.64218336|807|1 +638902.39722748|220822.90570103|116.63957886|808|1 +638907.57879402|220818.29459644|116.4109691|809|1 +638912.71166962|220813.73213014|116.62579363|810|1 +638917.84530418|220809.16526655|116.53461762|811|1 +638923.02677071|220804.55859316|116.6633356|812|1 +638928.16218629|220799.98817015|116.41023426|813|1 +638933.33674368|220795.39888056|117.4645162|814|1 +638938.53437152|220790.75560134|115.76368639|815|1 +638943.65169285|220786.17046472|112.9796182|816|1 +638948.80962256|220781.61426285|115.54078792|817|1 +638954.01777117|220776.96210048|113.87889534|818|1 +638959.15349106|220772.35826962|110.90209434|819|1 +638964.28900963|220767.7978857|111.4757628|820|1 +638969.4776101|220763.18693049|111.75184882|821|1 +638974.58501266|220758.63778858|111.18081277|822|1 +638979.685446|220754.15824863|115.82338519|823|1 +638984.9390052|220749.42326162|110.6458397|824|1 +638989.5520018|220745.57604451|131.68258841|825|1 +638990.04908706|220744.87340636|110.2128141|826|2 +638995.19630806|220740.29720891|110.32581208|827|1 +639000.35758052|220735.70215232|109.91458985|828|1 +639005.42212676|220731.21529366|111.33638498|829|1 +639010.62809998|220726.56215827|109.41482401|830|1 +639015.73707785|220722.0172327|109.30726756|831|1 +639020.5922331|220717.79644784|117.31409718|832|1 +639020.76328891|220717.57831315|111.87127433|833|2 +639025.99246708|220712.89963783|109.5451698|834|1 +639036.2225029|220703.79745078|109.19983205|835|1 +639040.22816206|220700.59776425|139.12260498|836|1 +639041.13108772|220699.49843354|114.67702496|837|2 +639041.34656464|220699.23608587|108.84328566|838|3 +639046.3256548|220694.83470023|111.05337843|839|1 +639046.52249103|220691.25448654|138.86137389|840|1 +639047.67065956|220689.87653058|109.45421703|841|2 +639042.49347212|220694.47470578|109.73127044|842|1 +639037.34893836|220699.0335498|109.16015067|843|1 +639032.17973665|220703.62274114|109.28192022|844|1 +639026.95694071|220708.27953016|111.04539751|845|1 +639020.87055201|220714.03313643|139.89132239|846|1 +639021.84082646|220712.80334392|109.67009266|847|2 +639016.65681247|220717.39396805|108.82847723|848|1 +639011.27069092|220722.2676743|116.49277822|849|1 +639011.49307216|220721.97780468|108.90799811|850|2 +639005.54237882|220727.60411159|137.20068124|851|1 +639006.31178849|220726.58535691|109.65586094|852|2 +639001.09599379|220731.21844613|109.98301372|853|1 +638995.85746876|220735.88359168|111.28484383|854|1 +638990.77354317|220740.38427169|110.35701954|855|1 +638985.55970027|220745.01716689|110.81056486|856|1 +638980.35493041|220749.63790866|110.92745098|857|1 +638975.20143239|220754.2120779|110.95964443|858|1 +638970.01059103|220758.81240328|110.41536028|859|1 +638964.72326292|220763.53255034|112.67429669|860|1 +638959.58081889|220768.091674|112.27672016|861|1 +638954.40468373|220772.6673269|110.77810166|862|1 +638949.17051726|220777.34706978|113.59694919|863|1 +638944.03903824|220781.88582333|112.3256475|864|1 +638938.75312043|220786.62917206|116.59388853|865|1 +638933.44101571|220791.52186608|131.2243643|866|1 +638933.556562|220791.25188717|117.47154835|867|2 +638923.18622907|220800.44600413|116.67263737|868|1 +638917.99837695|220805.0497521|116.62691914|869|1 +638912.85928235|220809.60952486|116.52619021|870|1 +638907.62300784|220814.25750883|116.5806149|871|1 +638902.43553769|220818.86314355|116.71750914|872|1 +638897.24825458|220823.46542851|116.59239095|873|1 +638892.06451244|220828.0648796|116.49275032|874|1 +638886.8772226|220832.66969334|116.57477338|875|1 +638881.68962794|220837.27349249|116.55101665|876|1 +638876.50281272|220841.87804818|116.64646217|877|1 +638871.31578192|220846.4821207|116.68611565|878|1 +638866.1275305|220851.0856857|116.59498614|879|1 +638858.91004715|220853.47540198|116.55611402|880|1 +638864.09279893|220848.86755342|116.59575819|881|1 +638869.27391192|220844.25911039|116.46712393|882|1 +638874.4081073|220839.69448401|116.51402348|883|1 +638879.59073624|220835.08713452|116.58614946|884|1 +638884.7726587|220830.4789663|116.53998474|885|1 +638889.90619104|220825.91333257|116.4565013|886|1 +638895.08480758|220821.31054351|116.61106892|887|1 +638900.26669717|220816.70264204|116.58487511|888|1 +638905.40020672|220812.13915951|116.67722315|889|1 +638910.58247275|220807.53062314|116.62680752|890|1 +638915.76479449|220802.92295339|116.6518386|891|1 +638920.89854408|220798.35911018|116.73255012|892|1 +638926.08084726|220793.7520671|116.80835029|893|1 +638931.13348501|220789.45228758|132.65574026|894|1 +638931.25771195|220789.15807912|117.55943153|895|2 +638936.41167607|220784.54987576|115.47286635|896|1 +638941.41660102|220780.24595745|127.50087251|897|1 +638941.55929933|220779.9611565|114.5238154|898|2 +638946.77248329|220775.30044438|112.44583576|899|1 +638951.84708558|220770.84795726|117.3576667|900|1 +638951.90836762|220770.73935007|112.9095014|901|2 +638957.09585206|220766.12932018|113.11907973|902|1 +638962.27994148|220761.48964165|110.60356313|903|1 +638966.97722767|220757.61826811|135.64139655|904|1 +638972.5666332|220752.34904091|110.96444415|905|1 +638977.7833569|220747.69909783|109.9577873|906|1 +638982.88451008|220743.16386334|109.93985347|907|1 +638988.07206318|220738.55786289|110.41419756|908|1 +638992.4377544|220735.0600346|141.94523833|909|1 +638993.23660467|220733.95950522|109.83724558|910|2 +638998.34184948|220729.41987813|109.75736192|911|1 +639003.49408091|220724.8396835|109.77410512|912|1 +639007.9109361|220721.22149845|135.15537873|913|1 +639008.66867419|220720.23058348|109.0482596|914|2 +639013.72054805|220715.76131641|110.85400415|915|1 +639017.84720557|220712.48532126|143.17177057|916|1 +639023.03806018|220707.84091706|140.73369126|917|1 +639024.08308166|220706.52914342|109.22903032|918|2 +639028.14060247|220703.29179411|139.67816288|919|1 +639034.3514468|220697.40042327|109.23089068|920|1 +639039.40421641|220692.91162651|109.49787027|921|1 +639044.51317946|220688.38597764|110.83920503|922|1 +639042.33377742|220687.11522055|139.42515456|923|1 +639043.50415341|220685.7095012|109.25626592|924|2 +639038.23932619|220690.42835567|113.22710126|925|1 +639038.38757595|220690.2485912|109.26529795|926|2 +639032.40921139|220695.8274184|131.87106101|927|1 +639033.17633673|220694.88763657|110.58109934|928|2 +639027.32753582|220700.33493927|131.8327749|929|1 +639028.11090297|220699.36479719|109.23016514|930|2 +639021.84966019|220705.32160146|142.27593509|931|1 +639016.89006396|220709.68040403|138.91821705|932|1 +639017.83356963|220708.48334538|109.3393959|933|2 +639011.70010816|220714.31295732|141.25579067|934|1 +639012.67087719|220713.0645235|109.43954813|935|2 +639007.50320811|220717.65269977|109.75226455|936|1 +639002.34942286|220722.22325033|109.62829977|937|1 +638997.19564803|220726.81640366|111.36807613|938|1 +638986.87813731|220735.97538127|111.86467007|939|1 +638981.65934558|220740.64219853|114.91437839|940|1 +638975.99307697|220745.94452175|137.57358015|941|1 +638976.5700104|220745.09563077|109.855691|942|2 +638971.40432124|220749.68656263|110.53909251|943|1 +638966.21288089|220754.31940917|112.79068051|944|1 +638955.90770661|220763.43207236|110.37179076|945|1 +638950.71154302|220768.08278635|113.74915416|946|1 +638945.31658325|220773.06584988|129.95824371|947|1 +638945.5164841|220772.69391902|113.94540304|948|2 +638940.35762342|220777.28747572|115.34324609|949|1 +638935.03456814|220782.17704614|129.11155881|950|1 +638935.10671866|220782.0227038|121.67616523|951|2 +638935.16825889|220781.89105862|115.33421407|952|3 +638929.96017798|220786.5391906|117.62507417|953|1 +638924.82908158|220791.08072534|116.76835265|954|1 +638919.6436213|220795.67904672|116.61065034|955|1 +638914.45776492|220800.27848165|116.51587454|956|1 +638909.27157104|220804.87974556|116.54653319|957|1 +638904.08580402|220809.47965179|116.49640592|958|1 +638898.90009713|220814.08019501|116.50296367|959|1 +638888.58121502|220823.23425166|116.48646232|960|1 +638883.3478746|220827.87956329|116.69405936|961|1 +638878.16210546|220832.47935788|116.63364433|962|1 +638873.02542455|220837.03691149|116.68608774|963|1 +638867.78987337|220841.67927848|116.48915983|964|1 +638862.60401009|220846.2797867|116.4800813|965|1 +638857.46865269|220850.83777662|116.66474017|966|1 +638851.02503605|220852.74493125|116.59509777|967|1 +638856.20629068|220848.13232619|116.4915783|968|1 +638861.34150664|220843.56343681|116.62006373|969|1 +638866.4744974|220838.99395871|116.53629193|970|1 +638871.70533325|220834.33889229|116.56508093|971|1 +638876.8393107|220829.77020597|116.61947772|972|1 +638881.97288475|220825.2011187|116.61159912|973|1 +638887.15532188|220820.59014116|116.72922008|974|1 +638892.28474866|220816.02406861|116.66561453|975|1 +638897.46655529|220811.41138934|116.59653024|976|1 +638902.64864576|220806.79899334|116.57165729|977|1 +638907.78259598|220802.22913468|116.5277343|978|1 +638912.96502498|220797.61712898|116.55989984|979|1 +638918.14730914|220793.00593909|116.64876902|980|1 +638923.28049616|220788.43957625|116.83696256|981|1 +638928.38070795|220784.02043593|126.75545605|982|1 +638928.45739232|220783.84097868|117.57022159|983|2 +638933.65513603|220779.19584832|115.9920543|984|1 +638938.83243096|220774.54357961|112.3261777|985|1 +638944.03833302|220769.89545027|111.09907806|986|1 +638949.23299723|220765.2704842|110.95962583|987|1 +638954.37601366|220760.69457709|111.08120935|988|1 +638959.28642387|220756.53013385|128.05867213|989|1 +638959.57775871|220756.05983537|110.61782275|990|2 +638964.74126704|220751.48602807|112.37245404|991|1 +638969.3919345|220747.6541194|137.73494737|992|1 +638969.93281531|220746.83699926|109.97784193|993|2 +638975.0928123|220742.26676823|111.77067562|994|1 +638980.2129235|220737.72491198|112.98052047|995|1 +638985.41075362|220733.0728086|110.79337518|996|1 +638989.9854909|220729.30276348|135.69067736|997|1 +638990.6251469|220728.42479885|110.15809175|998|2 +638995.77968836|220723.83630888|110.04509377|999|1 +639000.08348209|220720.37501788|140.54910681|1000|1 +639005.195571|220715.84523505|142.16638807|1001|1 +639005.3161562|220715.68804839|138.03998052|1002|2 +639010.31378353|220711.30615658|143.46547416|1003|1 +639016.4494404|220705.4398016|109.86804376|1004|1 +639020.59458378|220702.13452153|141.60768617|1005|1 +639025.75299896|220697.52827228|140.31432067|1006|1 +639026.82567992|220696.20109214|109.47470884|1007|2 +639030.8712273|220692.95655299|138.92421669|1008|1 +639031.94331023|220691.6443076|109.27328818|1009|2 +639037.14162518|220687.021753|109.55998753|1010|1 +639041.08591309|220683.88897792|140.8040778|1011|1 +639047.41619344|220677.87815016|109.56149442|1012|1 +639045.77972384|220676.11272728|129.26527997|1013|1 +639046.5799216|220675.16314657|109.50473498|1014|2 +639040.4163783|220680.9585817|136.26669917|1015|1 +639041.45891602|220679.71050557|109.61688649|1016|2 +639036.19993702|220684.42504592|113.4226339|1017|1 +639029.97390266|220690.30765454|142.80794089|1018|1 +639031.18465577|220688.82983753|109.50721855|1019|2 +639024.92924097|220694.76125289|140.77379122|1020|1 +639026.00860039|220693.4296078|109.90957619|1021|2 +639019.89201177|220699.23861215|141.25510233|1022|1 +639014.71634773|220703.85554311|143.10901149|1023|1 +639009.6154964|220708.3791019|142.73507077|1024|1 +639005.4921147|220711.65342335|110.82052706|1025|1 +638999.50066843|220717.3322611|140.5982853|1026|1 +638994.99507553|220721.07863029|119.65452644|1027|1 +638995.24970493|220720.73730474|110.12049397|1028|2 +638990.12727247|220725.29240804|110.77107882|1029|1 +638984.96531526|220729.87936041|111.15068431|1030|1 +638979.82898523|220734.43080583|110.47520791|1031|1 +638974.09808043|220739.87615802|140.09283607|1032|1 +638974.7139822|220738.97817984|111.03262617|1033|2 +638969.1958338|220744.10112747|129.60105549|1034|1 +638969.57642336|220743.53109184|110.38870139|1035|2 +638964.47638087|220748.05718114|110.28427035|1036|1 +638959.32258836|220752.63492346|110.50266676|1037|1 +638953.84840629|220757.74499197|131.24269811|1038|1 +638954.00709181|220757.4817916|121.11632851|1039|2 +638954.14600312|220757.25138925|112.25185651|1040|3 +638949.06421057|220761.74912079|111.14197785|1041|1 +638943.87098989|220766.40223331|114.70357223|1042|1 +638938.51142237|220771.38801594|133.58557374|1043|1 +638938.73436279|220770.95666107|114.25458478|1044|2 +638933.63622094|220775.48784038|114.71318096|1045|1 +638928.42073227|220780.15364325|117.68733096|1046|1 +638923.3390517|220784.6543624|116.83408831|1047|1 +638918.20289499|220789.21154071|116.64835044|1048|1 +638913.06670635|220793.7682957|116.42531244|1049|1 +638907.97744487|220798.28773764|116.56573206|1050|1 +638902.84059165|220802.84794539|116.58046607|1051|1 +638897.65560134|220807.44933783|116.46361716|1052|1 +638892.56758651|220811.96774509|116.61057592|1053|1 +638887.43481153|220816.52229845|116.45722684|1054|1 +638882.29830655|220821.08295309|116.53528734|1055|1 +638877.21037234|220825.60007835|116.58239154|1056|1 +638872.0733492|220830.15931113|116.50450776|1057|1 +638866.9374198|220834.7196082|116.59557216|1058|1 +638861.84802768|220839.23576069|116.45533857|1059|1 +638856.71302296|220843.7962159|116.62795164|1060|1 +638851.57406423|220848.35581016|116.43830702|1061|1 +638846.43834678|220852.91607338|116.54258924|1062|1 +638844.24438495|220851.12877298|116.46895638|1063|1 +638849.4283447|220846.52166948|116.62486345|1064|1 +638854.51369316|220842.0009262|116.67579068|1065|1 +638859.64646796|220837.43706698|116.64515062|1066|1 +638864.77814943|220832.87253182|116.47722565|1067|1 +638869.91114706|220828.30848522|116.44699488|1068|1 +638875.04469702|220823.74507855|116.51071205|1069|1 +638880.17839729|220819.18251876|116.65587557|1070|1 +638885.31162818|220814.61977904|116.75125599|1071|1 +638890.44040304|220810.05957982|116.72804806|1072|1 +638895.57319726|220805.49281449|116.45510603|1073|1 +638900.65769573|220800.97420871|116.61914286|1074|1 +638905.79090324|220796.41030878|116.61521751|1075|1 +638910.97313658|220791.80196668|116.53741745|1076|1 +638916.05755662|220787.28336647|116.69546393|1077|1 +638921.19137068|220782.71909333|116.70465409|1078|1 +638926.31744287|220778.17287703|117.64507299|1079|1 +638931.4689806|220773.57090258|115.82393399|1080|1 +638936.60877167|220768.99743975|115.50891073|1081|1 +638941.79648321|220764.33770848|111.55175831|1082|1 +638946.94121619|220759.76219487|111.43107706|1083|1 +638951.95291103|220755.40766465|119.91282747|1084|1 +638952.09253973|220755.17599405|110.94209198|1085|2 +638957.19288443|220750.63530272|110.71387289|1086|1 +638962.32190321|220746.08294994|111.63712071|1087|1 +638966.8568725|220742.4188995|142.60971073|1088|1 +638967.48479407|220741.47870252|110.74295955|1089|2 +638972.58475241|220736.94031135|110.67748434|1090|1 +638977.72890996|220732.3654576|110.84557674|1091|1 +638982.81837078|220727.86685298|113.31821216|1092|1 +638988.02651969|220723.20346448|110.8453628|1093|1 +638993.134595|220718.65563187|110.59309863|1094|1 +638997.47073755|220715.14606055|139.7117702|1095|1 +638998.23557546|220714.13863988|112.38539281|1096|2 +638998.28939563|220714.06774961|110.46250169|1097|3 +639003.37890805|220709.54518669|110.94092925|1098|1 +639007.64572813|220706.09342867|139.74286603|1099|1 +639008.54645947|220704.94164282|110.44875366|1100|2 +639012.66934249|220701.65721828|142.53765917|1101|1 +639013.70466316|220700.35075151|110.31899388|1102|2 +639017.82776417|220697.03327546|139.66820998|1103|1 +639022.88383431|220692.55513275|141.37072342|1104|1 +639027.89398463|220688.11580223|142.90723735|1105|1 +639034.242628|220682.07504597|110.09528616|1106|1 +639038.23340497|220678.86740572|138.79659632|1107|1 +639043.36724367|220674.2815828|137.28280662|1108|1 +639044.36303381|220673.10107873|112.63798255|1109|2 +639044.4706531|220672.9734966|109.97452119|1110|3 +639047.2643188|220666.49408382|115.22955978|1111|1 +639047.47870612|220666.24123394|110.07783602|1112|2 +639041.12400581|220672.2447421|139.64227662|1113|1 +639036.11022113|220676.67990343|138.06936484|1114|1 +639037.19725945|220675.37542896|110.0902632|1115|2 +639030.82695969|220681.40929213|141.02442758|1116|1 +639026.80260251|220684.61707113|110.67034988|1117|1 +639020.61064683|220690.49498638|141.81881789|1118|1 +639016.52833458|220693.74611051|110.78504078|1119|1 +639010.31630607|220699.64622561|142.30157078|1120|1 +639011.32471403|220698.36790638|110.69420894|1121|2 +639005.32793241|220704.04748269|139.79232358|1122|1 +639006.21756238|220702.90460263|110.65396015|1123|2 +639000.19879682|220708.60970629|140.25109649|1124|1 +639001.05903846|220707.48841433|110.73558324|1125|2 +638994.96910446|220713.28502073|142.67386508|1126|1 +638990.74185401|220716.65775038|111.03089604|1127|1 +638985.06808918|220721.95030482|131.86933088|1128|1 +638985.23364712|220721.72310657|125.24419644|1129|2 +638985.41465328|220721.47470841|118.00087524|1130|3 +638980.29753771|220725.98282255|114.86567429|1131|1 +638975.28931725|220730.3834575|110.84236763|1132|1 +638970.08387719|220735.01135144|111.12332779|1133|1 +638964.93645117|220739.58275046|110.99482375|1134|1 +638959.84281405|220744.10306519|110.59382417|1135|1 +638954.60776573|220748.78074834|112.81873467|1136|1 +638949.3436706|220753.55090737|120.56241703|1137|1 +638949.49292555|220753.30033056|110.79824|1138|2 +638944.34342279|220757.87644944|110.90814979|1139|1 +638939.19082095|220762.45909613|111.3307202|1140|1 +638933.78807655|220767.53708174|134.36498819|1141|1 +638933.97815024|220767.16204737|117.29552153|1142|2 +638928.85078204|220771.70453955|116.25056927|1143|1 +638923.70424535|220776.28813401|117.1990063|1144|1 +638918.57108836|220780.84188429|116.66056367|1145|1 +638913.43457026|220785.40337578|116.51599546|1146|1 +638908.29737046|220789.9671338|116.50910284|1147|1 +638903.16050366|220794.53021987|116.47120741|1148|1 +638898.02367813|220799.09394889|116.48976445|1149|1 +638892.88708432|220803.65981103|116.70226353|1150|1 +638887.79935382|220808.17924867|116.6654285|1151|1 +638882.66656976|220812.73720247|116.50330784|1152|1 +638877.53013918|220817.30088464|116.5476029|1153|1 +638872.39303435|220821.86328194|116.43587926|1154|1 +638867.25751813|220826.42758574|116.59935798|1155|1 +638862.16908935|220830.94741418|116.54413333|1156|1 +638857.03183213|220835.51040124|116.47043536|1157|1 +638851.89682136|220840.07418141|116.62819349|1158|1 +638846.75842394|220844.63735486|116.48619257|1159|1 +638841.66964031|220849.15794808|116.46874243|1160|1 +638836.53290099|220853.72168319|116.4958013|1161|1 +638833.12398442|220852.63863168|116.50146608|1162|1 +638838.25968603|220848.07294374|116.58257757|1163|1 +638843.39503773|220843.50741786|116.65141072|1164|1 +638848.52730941|220838.94175915|116.48296485|1165|1 +638853.71099246|220834.33359521|116.57688489|1166|1 +638858.84526846|220829.76850449|116.60272522|1167|1 +638863.97931172|220825.203469|116.61627791|1168|1 +638869.16184441|220820.59558941|116.64881552|1169|1 +638874.24736048|220816.07382272|116.67526978|1170|1 +638879.38097566|220811.50811892|116.60197178|1171|1 +638885.09610361|220806.42436334|116.40843902|1172|1 +638889.64470418|220802.38058291|116.51844183|1173|1 +638894.82707056|220797.77294627|116.55885804|1174|1 +638899.91272151|220793.25061112|116.54827262|1175|1 +638905.04703629|220788.6851302|116.54474725|1176|1 +638910.18208889|220784.11785946|116.44772042|1177|1 +638915.31629802|220779.55391409|116.5633601|1178|1 +638920.45025352|220774.99057449|116.7104584|1179|1 +638925.48111798|220770.65255066|127.91099713|1180|1 +638925.58228629|220770.43136179|117.05770301|1181|2 +638930.4789725|220766.34656098|139.33580169|1182|1 +638930.75394231|220765.79152212|113.65007164|1183|2 +638935.86661131|220761.22440704|111.92203412|1184|1 +638941.01929698|220756.63408585|111.21418754|1185|1 +638946.11635058|220752.10095317|111.14830306|1186|1 +638951.23301167|220747.57333611|112.92092399|1187|1 +638956.00158779|220743.59246776|134.2388747|1188|1 +638956.41736829|220742.93732755|110.61463224|1189|2 +638960.97357288|220739.23331988|139.22498963|1190|1 +638966.64287558|220733.86120865|111.67870895|1191|1 +638971.78470416|220729.29397574|111.93414504|1192|1 +638976.224147|220725.69280982|140.47656225|1193|1 +638976.81752652|220724.85519631|114.80389189|1194|2 +638981.81547138|220720.48503226|120.78560385|1195|1 +638982.03958736|220720.17530875|111.63753929|1196|2 +638987.14167845|220715.63980696|111.59738352|1197|1 +638991.52754862|220712.05884554|137.87958999|1198|1 +638992.253348|220711.09194808|111.23885585|1199|2 +638996.65735157|220707.49290578|137.35962069|1200|1 +638997.3874824|220706.53594528|111.85734027|1201|2 +639001.52682111|220703.22518596|142.37697098|1202|1 +639006.66985968|220698.62262398|139.80007196|1203|1 +639007.57977815|220697.46355696|110.78813828|1204|2 +639011.65211997|220694.22522059|142.37887785|1205|1 +639016.74215863|220689.69170336|141.61841112|1206|1 +639017.78056477|220688.40125373|111.17664557|1207|2 +639021.80715581|220685.19001634|141.65055806|1208|1 +639027.04542781|220680.46203763|135.69543057|1209|1 +639027.95537629|220679.35520234|111.00003274|1210|2 +639031.94670964|220676.16076639|140.27605316|1211|1 +639037.21345881|220671.41977345|135.33646572|1212|1 +639038.20987701|220670.2304949|110.17235137|1213|2 +639043.04593506|220665.99936584|115.76124002|1214|1 +639043.26666538|220665.738157|110.37220934|1215|2 +639047.17579663|220662.60699719|138.84650035|1216|1 +639043.09861677|220662.52348388|137.70627929|1217|1 +639044.2121957|220661.21070925|110.94973804|1218|2 +639038.03111808|220666.99848066|136.1731419|1219|1 +639039.05270955|220665.78388369|110.77954343|1220|2 +639032.84108953|220671.60444998|136.47013832|1221|1 +639033.83665226|220670.40997912|110.83034974|1222|2 +639027.63069911|220676.2513511|138.6556372|1223|1 +639028.65805289|220675.00685457|111.21619672|1224|2 +639022.92596804|220680.28182644|127.01459424|1225|1 +639023.49017167|220679.59134516|111.36534141|1226|2 +639017.31121231|220685.41046456|139.33092756|1227|1 +639018.28409677|220684.20662109|111.25545952|1228|2 +639012.21963575|220689.91454985|138.43516649|1229|1 +639013.12667819|220688.77895595|111.16825537|1230|2 +639007.17602894|220694.33889755|134.47155864|1231|1 +639007.90854338|220693.41008828|111.48375302|1232|2 +639001.82016156|220699.17978294|142.00889969|1233|1 +639002.73527947|220698.00360926|111.98404907|1234|2 +638996.72871123|220703.68488931|141.20752375|1235|1 +638997.57630971|220702.57944163|112.0727136|1236|2 +638991.52535978|220708.31663506|142.65710328|1237|1 +638986.42558807|220712.81096995|140.35484851|1238|1 +638986.9855871|220712.05579705|119.05730589|1239|2 +638987.18046284|220711.79300211|111.6459481|1240|3 +638981.41645512|220717.20146619|136.12582377|1241|1 +638982.01697556|220716.37625725|112.0167076|1242|2 +638976.30262495|220721.70835266|133.82966165|1243|1 +638976.77506985|220721.0454708|113.73408528|1244|2 +638970.91068428|220726.61141491|143.85535812|1245|1 +638965.8496858|220731.07209436|141.61877389|1246|1 +638966.47635152|220730.14946236|111.38374962|1247|2 +638960.70193022|220735.63052097|141.09127015|1248|1 +638961.27839917|220734.75742378|111.26652864|1249|2 +638956.07483461|220739.37437765|111.48085087|1250|1 +638950.71387987|220744.28273361|124.21616411|1251|1 +638950.92225495|220743.9451757|111.62269366|1252|2 +638945.27051227|220749.32026586|141.57415327|1253|1 +638945.37962744|220749.13613487|134.37122968|1254|2 +638945.73006531|220748.54477347|111.23819543|1255|3 +638940.5254066|220753.16596521|111.72255753|1256|1 +638935.30455175|220757.81925659|113.66941003|1257|1 +638929.93351814|220762.778458|129.86236099|1258|1 +638924.72159045|220767.45268258|134.19166819|1259|1 +638924.89016522|220767.08941393|116.55909059|1260|2 +638919.749047|220771.64959584|116.66574476|1261|1 +638914.51307544|220776.29150777|116.56416936|1262|1 +638909.32564424|220780.89024228|116.45804539|1263|1 +638904.18580119|220785.44937557|116.57195495|1264|1 +638898.99858052|220790.04823742|116.4916062|1265|1 +638893.81110092|220794.64998287|116.63042591|1266|1 +638888.67261638|220799.20617019|116.60147878|1267|1 +638883.2473979|220804.01611686|116.49545714|1268|1 +638878.30225657|220808.4002989|116.44368345|1269|1 +638873.16360234|220812.95740024|116.47808142|1270|1 +638867.97692463|220817.5577648|116.56265317|1271|1 +638862.78951507|220822.15712246|116.51018185|1272|1 +638857.65028419|220826.71353571|116.44544148|1273|1 +638852.46379117|220831.31367634|116.52499028|1274|1 +638847.32403723|220835.87032579|116.44203703|1275|1 +638842.18535662|220840.4273913|116.47180272|1276|1 +638837.04694783|220844.98451958|116.52675761|1277|1 +638831.90624393|220849.54179399|116.42569381|1278|1 +638826.76980769|220854.09853112|116.59354437|1279|1 +638826.32381521|220850.60608922|116.62958875|1280|1 +638831.50339333|220845.99663388|116.4387256|1281|1 +638836.63882975|220841.42965224|116.51770699|1282|1 +638841.77264353|220836.8628284|116.49064812|1283|1 +638846.95585379|220832.25326501|116.55712791|1284|1 +638852.137794|220827.64362932|116.5240694|1285|1 +638857.27117606|220823.07697648|116.47915112|1286|1 +638862.45376467|220818.46783756|116.53437577|1287|1 +638867.58697529|220813.90089181|116.45250153|1288|1 +638872.77011912|220809.2933128|116.67725105|1289|1 +638877.95169824|220804.68259001|116.52747385|1290|1 +638883.08133619|220800.11921023|116.47770005|1291|1 +638888.26336975|220795.50975788|116.46619375|1292|1 +638893.44561264|220790.8999795|116.44264165|1293|1 +638898.57930753|220786.33475413|116.53750117|1294|1 +638903.71323085|220781.76856778|116.57008529|1295|1 +638908.89670826|220777.15642291|116.44142312|1296|1 +638914.02857433|220772.59662324|116.84948275|1297|1 +638919.16006345|220768.03655635|117.20774067|1298|1 +638924.15604628|220763.82224158|136.15597082|1299|1 +638924.33998865|220763.43273592|117.50509055|1300|2 +638929.23941845|220759.27573131|134.10703132|1301|1 +638929.3764163|220759.0061783|121.91103508|1302|2 +638934.63154168|220754.21048337|111.89232425|1303|1 +638939.57329589|220750.03077792|129.72103911|1304|1 +638939.82333737|220749.59234539|111.87855762|1305|2 +638944.43193428|220745.87575806|143.49661651|1306|1 +638944.58244167|220745.62345412|133.71374292|1307|2 +638944.91930652|220745.05874857|111.81783562|1308|3 +638950.06205655|220740.48573463|111.91528103|1309|1 +638955.19715028|220735.9250104|112.45645838|1310|1 +638959.77024281|220732.21172192|141.7167495|1311|1 +638960.35417675|220731.33064982|111.82984422|1312|2 +638964.84099557|220727.72139571|143.3494252|1313|1 +638965.49959755|220726.75470624|111.87184174|1314|2 +638969.94961528|220723.14855494|140.95148305|1315|1 +638970.06128049|220722.98863508|135.94288573|1316|2 +638970.59301478|220722.22711867|112.09274962|1317|3 +638975.05379847|220718.61035947|141.08547514|1318|1 +638975.74658654|220717.64022723|111.82914658|1319|2 +638980.15366106|220714.07828066|141.40694453|1320|1 +638980.89177621|220713.06556061|111.95925983|1321|2 +638985.21732263|220709.57279251|141.26995727|1322|1 +638985.98093755|220708.54425883|112.38649972|1323|2 +638990.25629369|220705.10051694|142.06317556|1324|1 +638995.38488641|220700.53088296|141.39221982|1325|1 +639000.54019384|220695.90886984|138.35890123|1326|1 +639001.33534139|220694.88714562|112.34793456|1327|2 +639005.51451958|220691.51983022|141.28054269|1328|1 +639010.62952518|220686.9696168|141.21556978|1329|1 +639015.6767562|220682.48682825|141.74639426|1330|1 +639020.80593449|220677.9035534|139.99334427|1331|1 +639025.80613557|220673.47850686|141.84060265|1332|1 +639031.12208073|220668.67312705|135.45278443|1333|1 +639032.02459302|220667.58956204|112.20856604|1334|2 +639036.11535087|220664.257342|137.55587887|1335|1 +639037.16357152|220663.01003253|111.48235775|1336|2 +639041.08123225|220659.8584074|139.04319571|1337|1 +639047.22032875|220654.09883768|114.26714218|1338|1 +639045.46499786|220652.34530257|117.22796273|1339|1 +639045.6926762|220652.07914054|111.9208807|1340|2 +639039.48710575|220657.8872357|136.9491333|1341|1 +639040.51394062|220656.67718996|112.2130774|1342|2 +639035.30388236|220661.32769367|114.54944179|1343|1 +639030.23468993|220665.79651295|112.19125544|1344|1 +639024.03777638|220671.62889506|139.87428153|1345|1 +639025.08295033|220670.36352718|111.89803554|1346|2 +639018.94156477|220676.15728161|140.46771626|1347|1 +639013.7607725|220680.7575224|140.79218083|1348|1 +639008.63121548|220685.29437144|139.63180282|1349|1 +639003.55449963|220689.80002776|139.77642684|1350|1 +638999.2075694|220693.33063785|112.79236413|1351|1 +638993.20948546|220698.9825139|140.15351156|1352|1 +638994.00905845|220697.94028704|112.59166901|1353|2 +638988.8313035|220702.54381343|113.41205778|1354|1 +638983.02726023|220707.99261077|138.22158841|1355|1 +638983.6892739|220707.10064311|112.99034314|1356|2 +638977.72735925|220712.75960397|143.60661932|1357|1 +638973.33422039|220716.28830301|113.05676713|1358|1 +638967.71738816|220721.47330497|129.77416155|1359|1 +638968.09291477|220720.93451484|112.7371953|1360|2 +638962.29348181|220726.4585427|144.13211387|1361|1 +638957.20272594|220730.9347639|140.80111983|1362|1 +638952.55046631|220734.71990389|112.43441317|1363|1 +638947.35051691|220739.33470461|112.55645248|1364|1 +638941.74663723|220744.67053886|142.7482979|1365|1 +638942.18502955|220743.93090201|113.67413533|1366|2 +638936.96026449|220748.54966066|112.29603995|1367|1 +638931.75697833|220753.17263429|112.85067697|1368|1 +638926.34812516|220758.26161278|136.93112506|1369|1 +638926.49851596|220757.96161479|123.11674994|1370|2 +638926.60224575|220757.75469561|113.58851248|1371|3 +638921.32878417|220762.47295008|116.87950888|1372|1 +638916.03108306|220767.33554278|130.3640058|1373|1 +638911.00168631|220771.63210139|116.64405301|1374|1 +638905.76573029|220776.27536241|116.4753746|1375|1 +638900.57708811|220780.8796353|116.55820692|1376|1 +638895.38938787|220785.48089223|116.46027782|1377|1 +638890.20139765|220790.08504548|116.58152647|1378|1 +638884.96542863|220794.72999144|116.55275608|1379|1 +638879.83030471|220799.2843532|116.43798146|1380|1 +638874.59438414|220803.93115117|116.56658782|1381|1 +638869.40624287|220808.53251878|116.4460554|1382|1 +638864.21869474|220813.13517023|116.47596061|1383|1 +638859.03160302|220817.73801968|116.55631866|1384|1 +638853.79538429|220822.3832979|116.53738024|1385|1 +638848.60776184|220826.98572691|116.54377986|1386|1 +638843.41934152|220831.58811546|116.48813664|1387|1 +638838.23224306|220836.19083672|116.55795577|1388|1 +638833.04392253|220840.79359585|116.54072888|1389|1 +638827.85441822|220845.39650683|116.44897616|1390|1 +638822.66694467|220849.99927132|116.49515948|1391|1 +638817.47967319|220854.60208855|116.56054167|1392|1 +638814.66688582|220853.17742287|116.60290196|1393|1 +638819.85074831|220848.57136506|116.50944701|1394|1 +638825.03628212|220843.96510995|116.52266483|1395|1 +638830.17246494|220839.40215818|116.49335493|1396|1 +638835.35784846|220834.79597279|116.50111262|1397|1 +638840.54332031|220830.19001508|116.53431996|1398|1 +638845.67937068|220825.62712095|116.49963363|1399|1 +638850.86448781|220821.02149128|116.53363163|1400|1 +638856.04919132|220816.41585898|116.53683144|1401|1 +638861.185889|220811.85383235|116.62175666|1402|1 +638866.3695841|220807.24707643|116.45699429|1403|1 +638871.55446265|220802.64168154|116.49267591|1404|1 +638876.69094475|220798.07986138|116.57847549|1405|1 +638881.87138456|220793.47729127|116.52115794|1406|1 +638887.05590979|220788.87192843|116.53306422|1407|1 +638892.19197808|220784.31033845|116.60721798|1408|1 +638897.37726246|220779.70243094|116.46367297|1409|1 +638902.56227566|220775.09702906|116.50807035|1410|1 +638907.69862347|220770.53550532|116.60808305|1411|1 +638912.77808785|220766.19032001|130.4876171|1412|1 +638917.93877075|220761.61381461|131.13884377|1413|1 +638923.18998232|220756.79512122|118.34307829|1414|1 +638928.25931861|220752.40889894|128.06735069|1415|1 +638928.42875694|220752.08608092|113.74104301|1416|2 +638933.63457378|220747.4484175|112.63852205|1417|1 +638938.50610468|220743.34579721|131.33858082|1418|1 +638938.77634934|220742.88331009|112.84049153|1419|2 +638943.46927016|220739.05430271|141.10381824|1420|1 +638943.92337859|220738.30955858|112.71157821|1421|2 +638948.70803255|220734.34324417|136.30943153|1422|1 +638953.8097202|220729.81980017|136.99180055|1423|1 +638954.25236907|220729.14324595|113.41868995|1424|2 +638958.79616838|220725.46665764|143.32671026|1425|1 +638963.97388739|220720.85440161|142.23756526|1426|1 +638964.18624985|220720.54740531|132.38861185|1427|2 +638964.59858726|220719.95132023|113.26526645|1428|3 +638969.69367995|220715.42804531|113.47264955|1429|1 +638974.20109488|220711.76503496|141.82918007|1430|1 +638979.32646487|220707.20533185|141.24440529|1431|1 +638980.03887411|220706.23977109|113.54600336|1432|2 +638984.37284371|220702.75187633|143.66303459|1433|1 +638990.34226624|220697.08695368|113.48060257|1434|1 +638994.81437231|220693.38791139|136.23946357|1435|1 +638995.52019025|220692.47728687|112.61808605|1436|2 +639000.6189198|220687.95095878|112.83888232|1437|1 +639005.08089399|220684.26027282|135.54751372|1438|1 +639005.33565627|220683.94030909|127.7458999|1439|2 +639005.84803563|220683.29679611|112.05531928|1440|3 +639010.65766644|220679.1299874|120.8324662|1441|1 +639010.84051667|220678.90306364|115.45924855|1442|2 +639015.33022239|220675.1235436|132.82782313|1443|1 +639020.20244236|220670.87991459|139.83914872|1444|1 +639026.31124805|220665.1280993|112.70700173|1445|1 +639030.52410556|220661.65874322|135.43539941|1446|1 +639031.34480874|220660.6807152|114.68137819|1447|2 +639035.53457914|220657.24316832|138.3529667|1448|1 +639036.60792883|220655.97515398|112.13116596|1449|2 +639040.63545146|220652.6922321|136.68410708|1450|1 +639045.75324741|220648.13651727|135.86780179|1451|1 +639046.78460941|220646.93713936|112.25253554|1452|2 +639045.02920468|220645.51283972|135.95548964|1453|1 +639046.0418704|220644.33890534|112.87680566|1454|2 +639039.96015694|220650.00090863|135.56061062|1455|1 +639040.90247775|220648.90022575|113.38968701|1456|2 +639034.78426784|220654.6148128|137.76661062|1457|1 +639035.81085235|220653.40606492|112.80503315|1458|2 +639030.65309167|220657.99031048|113.87340729|1459|1 +639024.68204887|220663.55032844|136.24096115|1460|1 +639025.50131974|220662.56864527|114.89221226|1461|2 +639019.51959013|220668.15232346|138.44782621|1462|1 +639020.47072995|220667.00164151|112.74173457|1463|2 +639015.35751238|220671.53400898|112.77487679|1464|1 +639009.34981733|220677.1720521|138.95627061|1465|1 +639010.25611523|220676.05216534|112.49607465|1466|2 +639004.80551473|220681.00698921|122.84606825|1467|1 +639005.03943579|220680.71453408|115.73109296|1468|2 +639000.02353643|220685.12644431|112.90599464|1469|1 +638994.8618358|220689.70352713|113.07986344|1470|1 +638989.74646795|220694.24101293|113.38193863|1471|1 +638983.84007427|220699.82594398|142.64737362|1472|1 +638978.76279456|220704.3098249|141.28830968|1473|1 +638974.37312314|220707.87217081|113.83019123|1474|1 +638968.68422158|220713.19132186|136.9926284|1475|1 +638968.81287191|220713.01108016|131.45342055|1476|2 +638969.22928244|220712.4276805|113.52439533|1477|3 +638963.4566784|220717.88453202|142.00347676|1478|1 +638958.48274814|220722.26949403|140.0432297|1479|1 +638953.32319324|220726.87198208|142.50660054|1480|1 +638948.21976811|220731.39187897|142.22197548|1481|1 +638943.62146705|220735.1297575|113.95974638|1482|1 +638938.07149657|220740.33244012|137.69234523|1483|1 +638938.16418723|220740.17618376|131.48889752|1484|2 +638938.43861956|220739.71355019|113.12216792|1485|3 +638933.04505237|220744.75332465|134.83558366|1486|1 +638933.13424228|220744.59577371|128.26320889|1487|2 +638933.34492429|220744.22361098|112.73819059|1488|3 +638928.18737037|220748.80479415|113.56467203|1489|1 +638923.02251039|220753.40356995|115.32242872|1490|1 +638917.86076423|220758.00234022|117.31173453|1491|1 +638912.61967568|220762.79809951|129.91140926|1492|1 +638907.58360773|220767.10734797|116.97980063|1493|1 +638902.44671876|220771.65410675|116.45794307|1494|1 +638897.30668319|220776.20976825|116.44869711|1495|1 +638892.11833073|220780.80869136|116.47017491|1496|1 +638887.02723475|220785.32084806|116.45583157|1497|1 +638881.83938366|220789.92038188|116.565453|1498|1 +638876.704237|220794.47163996|116.55094223|1499|1 +638871.56488455|220799.02715969|116.58033585|1500|1 +638866.37689291|220803.6249623|116.53481295|1501|1 +638861.236923|220808.17939567|116.42724721|1502|1 +638856.09814997|220812.7352251|116.52612509|1503|1 +638850.90965594|220817.33311329|116.45045514|1504|1 +638845.72207832|220821.93161002|116.49397815|1505|1 +638840.63159578|220826.44405876|116.54949116|1506|1 +638835.44261302|220831.04246341|116.48116961|1507|1 +638830.25548813|220835.64109299|116.56953648|1508|1 +638825.11689305|220840.19648887|116.6450111|1509|1 +638819.97540236|220844.75229457|116.53947314|1510|1 +638814.78821362|220849.35084433|116.61642674|1511|1 +638809.64765961|220853.9069389|116.60517159|1512|1 +638807.86769926|220852.09284315|116.64675053|1513|1 +638813.00363047|220847.52434434|116.58186134|1514|1 +638818.14112214|220842.95563357|116.61718018|1515|1 +638828.46127802|220833.77621212|116.52530654|1516|1 +638833.59918163|220829.20789525|116.62391467|1517|1 +638838.73470243|220824.63970543|116.55401182|1518|1 +638843.91974891|220820.02874006|116.58397284|1519|1 +638849.05553976|220815.46068429|116.54588207|1520|1 +638854.23915267|220810.84908547|116.41415961|1521|1 +638859.37606055|220806.2818268|116.52662739|1522|1 +638864.56103919|220801.67168151|116.62070556|1523|1 +638869.6970301|220797.10391867|116.62124506|1524|1 +638874.88151695|220792.49283247|116.597386|1525|1 +638880.01335785|220787.92846184|116.57346183|1526|1 +638885.14938594|220783.35971506|116.49354097|1527|1 +638890.33397547|220778.74936377|116.53955686|1528|1 +638895.47034545|220774.1812905|116.54145442|1529|1 +638905.83796326|220764.9659987|116.97300104|1530|1 +638916.10851133|220755.83559967|117.29751211|1531|1 +638921.31374065|220751.18465466|115.4590253|1532|1 +638926.47388767|220746.57577892|113.79454683|1533|1 +638931.67329829|220741.94456751|113.18799659|1534|1 +638936.47194816|220737.94935929|136.27579631|1535|1 +638936.58902948|220737.75283895|128.4480538|1536|2 +638936.81468961|220737.37406962|113.36107474|1537|3 +638941.6596733|220733.28128949|131.66903573|1538|1 +638941.94480109|220732.82179574|114.22154487|1539|2 +638946.61606853|220729.01400406|143.55577581|1540|1 +638951.853955|220724.27283852|136.50733613|1541|1 +638952.2894939|220723.61679088|113.73394575|1542|2 +638956.92302573|220719.79052093|138.6724176|1543|1 +638957.07815484|220719.56332668|131.10882694|1544|2 +638957.43901366|220719.03483101|113.51460056|1545|3 +638962.07501825|220715.21298575|139.00990466|1546|1 +638962.20568586|220715.02642327|133.04563352|1547|2 +638962.61766631|220714.43821237|114.24101349|1548|3 +638967.10294581|220710.78397568|142.59259546|1549|1 +638972.19566029|220706.26198702|143.17761209|1550|1 +638972.9224428|220705.26834297|113.72898791|1551|2 +638977.44701506|220701.52675572|137.64368764|1552|1 +638982.52630435|220697.04621295|140.72338489|1553|1 +638987.61103949|220692.51583018|140.0013438|1554|1 +638993.53696374|220686.92932138|113.13957154|1555|1 +638998.71987296|220682.32703684|113.70627297|1556|1 +639003.11065536|220678.67696915|135.31194623|1557|1 +639003.73736502|220677.89581262|116.32001633|1558|2 +639008.73445222|220673.50432211|120.75907519|1559|1 +639009.01062904|220673.16407536|112.72745634|1560|2 +639013.16867331|220669.79503912|140.61642376|1561|1 +639023.47206069|220660.61218479|138.90119479|1562|1 +639024.40639607|220659.49578471|114.66419781|1563|2 +639029.60220634|220654.8636294|113.67583756|1564|1 +639033.78627227|220651.4067616|136.09215133|1565|1 +639034.73300872|220650.29496648|113.17667633|1566|2 +639039.13431485|220646.59042073|130.96104032|1567|1 +639039.88053968|220645.72104059|113.48647199|1568|2 +639044.10267533|220642.21725901|134.79215367|1569|1 +639045.05840368|220641.1121359|113.11686591|1570|2 +639044.67172566|220638.79745569|136.41958317|1571|1 +639039.60215255|220643.28466856|136.01251883|1572|1 +639040.57158498|220642.16316608|113.61832467|1573|2 +639034.47817129|220647.82186086|135.75097148|1574|1 +639029.53663039|220652.15870449|132.19390706|1575|1 +639030.30152221|220651.25974602|113.31871445|1576|2 +639025.10992366|220655.868182|114.02191015|1577|1 +639019.0813112|220661.49398005|138.26305573|1578|1 +639020.01656801|220660.37506464|113.49403434|1579|2 +639014.02827765|220665.94747022|136.22410633|1580|1 +639014.77900549|220665.04045798|115.58314821|1581|2 +639009.48651199|220669.7752001|119.43903219|1582|1 +639009.70656335|220669.50653578|113.1487524|1583|2 +639003.82076447|220675.00844237|137.63205112|1584|1 +639004.64937517|220673.9855765|112.98650151|1585|2 +638998.66575165|220679.58707616|138.56387517|1586|1 +638998.79853525|220679.42117831|134.44444396|1587|2 +638994.20070848|220683.29377251|117.24287348|1588|1 +638994.33067802|220683.12927297|113.02941991|1589|2 +638989.20434301|220687.67859662|113.63184946|1590|1 +638983.28874173|220693.23711028|140.69650276|1591|1 +638978.91540894|220696.80734831|114.65950041|1592|1 +638973.16805075|220702.19713459|140.05824276|1593|1 +638967.98550434|220706.82155863|142.82127033|1594|1 +638963.5638343|220710.40674779|114.3928836|1595|1 +638957.83250494|220715.80577196|141.79974925|1596|1 +638952.97910225|220719.95360655|128.75531938|1597|1 +638953.26119649|220719.53706261|114.51451362|1598|2 +638947.66426476|220724.81129241|141.44648638|1599|1 +638942.59567873|220729.27327774|138.95761937|1600|1 +638937.92093635|220733.12377431|114.0248216|1601|1 +638932.82743524|220737.6321351|113.61657594|1602|1 +638927.68051781|220742.19173888|113.53778989|1603|1 +638922.52189406|220746.7738431|114.49640307|1604|1 +638917.40628073|220751.3276421|116.30021285|1605|1 +638912.25200343|220755.90982635|117.59675956|1606|1 +638901.97458177|220765.00915377|116.98513055|1607|1 +638896.83607102|220769.5561215|116.46400783|1608|1 +638891.74335913|220774.06785211|116.40629961|1609|1 +638886.6020429|220778.62394215|116.45413865|1610|1 +638881.46108999|220783.17898431|116.43970229|1611|1 +638876.36892337|220787.6932849|116.64462972|1612|1 +638871.23182343|220792.24264809|116.43678153|1613|1 +638866.09075085|220796.79778922|116.42283817|1614|1 +638860.99864507|220801.31057421|116.50290786|1615|1 +638855.85799062|220805.86585776|116.53300841|1616|1 +638850.71697156|220810.42080758|116.50708436|1617|1 +638845.62419224|220814.93279686|116.468575|1618|1 +638840.48361046|220819.48815489|116.51167943|1619|1 +638835.34206671|220824.04342186|116.47376539|1620|1 +638830.24898735|220828.55588983|116.45415725|1621|1 +638825.10949331|220833.11137528|116.59152588|1622|1 +638820.01512323|220837.62396173|116.48449034|1623|1 +638814.87512825|220842.17931025|116.57215958|1624|1 +638809.73226578|220846.73545102|116.51007023|1625|1 +638804.64077451|220851.24795394|116.61566399|1626|1 +638800.87926389|220850.82941934|116.5575744|1627|1 +638806.0197567|220846.26705291|116.64521574|1628|1 +638811.15527283|220841.70626691|116.48938308|1629|1 +638816.29330092|220837.14493174|116.4774861|1630|1 +638821.43127783|220832.58379203|116.47830466|1631|1 +638826.61890751|220827.97960303|116.56611343|1632|1 +638831.75696721|220823.41861737|116.58621457|1633|1 +638836.89466358|220818.85781384|116.59402806|1634|1 +638842.03226403|220814.29717257|116.60830629|1635|1 +638847.16941347|220809.73649925|116.58528439|1636|1 +638852.30630146|220805.17562487|116.52499028|1637|1 +638857.4445728|220800.61614756|116.68988287|1638|1 +638862.58083437|220796.05409265|116.48000689|1639|1 +638867.71854756|220791.49424613|116.57032713|1640|1 +638873.38912188|220786.46003505|116.53389208|1641|1 +638877.98906408|220782.3773213|116.61404548|1642|1 +638883.12645153|220777.81501279|116.467496|1643|1 +638888.26380131|220773.25535931|116.54612391|1644|1 +638893.40176983|220768.69341683|116.47499323|1645|1 +638898.53807502|220764.13738968|116.78526328|1646|1 +638908.81075723|220755.02281108|117.19392753|1647|1 +638913.95093763|220750.45710513|116.96742927|1648|1 +638919.06086289|220745.90014542|115.18395317|1649|1 +638924.21606367|220741.31102321|114.08944105|1650|1 +638929.36455883|220736.7364318|113.73246677|1651|1 +638934.45433626|220732.222868|114.14234025|1652|1 +638939.58680721|220727.67326984|114.84774046|1653|1 +638944.34167201|220723.69995363|136.46656644|1654|1 +638944.43438632|220723.55769088|131.30697338|1655|2 +638949.81701665|220718.58971366|115.28879349|1656|1 +638954.46633273|220714.73618182|139.15374733|1657|1 +638954.57973482|220714.57193783|133.68250755|1658|2 +638954.97664331|220713.99708205|114.53316369|1659|3 +638959.49755561|220710.3085253|142.78726304|1660|1 +638964.66946899|220705.65790696|137.98112818|1661|1 +638965.21798716|220704.8996092|114.6253815|1662|2 +638969.72976604|220701.18761524|140.16574339|1663|1 +638970.37692838|220700.31080184|114.14539123|1664|2 +638975.45536462|220695.80851209|114.96167792|1665|1 +638980.03037081|220691.98462648|135.70346731|1666|1 +638980.62846779|220691.20221461|114.05761037|1667|2 +638985.66705619|220686.7705256|117.90477858|1668|1 +638985.78516863|220686.61838966|113.83443284|1669|2 +638996.01277594|220677.52436464|113.17034182|1670|1 +639001.16089937|220672.95288833|113.35362402|1671|1 +639006.22342841|220668.45360169|113.21192076|1672|1 +639010.46095531|220664.98553607|138.79835435|1673|1 +639015.49977441|220660.51970954|139.72459734|1674|1 +639020.69289854|220655.87009703|136.62050154|1675|1 +639021.57595918|220654.82086576|113.77466893|1676|2 +639025.68714412|220651.45753957|138.72577259|1677|1 +639030.84203375|220646.85601686|136.83874912|1678|1 +639031.7887814|220645.75004172|113.97309443|1679|2 +639036.08838009|220642.150213|132.962764|1680|1 +639036.89813119|220641.21159078|114.03501635|1681|2 +639041.15822085|220637.65064502|133.35299212|1682|1 +639046.40361949|220632.9381225|128.8255943|1683|1 +639047.09417056|220632.14897022|113.65590385|1684|2 +639046.00817559|220629.04520142|114.50624434|1685|1 +639040.59140785|220633.91633697|120.16253366|1686|1 +639040.84827427|220633.62021637|114.35714617|1687|2 +639034.99245735|220639.00371211|130.46670671|1688|1 +639035.69831833|220638.183921|113.99633956|1689|2 +639029.56331789|220643.88704297|136.22894326|1690|1 +639024.39309217|220648.48398407|137.16888777|1691|1 +639019.19284836|220653.11781945|138.98271556|1692|1 +639014.12507645|220657.59432863|137.40927357|1693|1 +639014.92445298|220656.63329117|115.97119041|1694|2 +639008.87614436|220662.27396887|139.44506966|1695|1 +639004.42057826|220665.99837607|120.08013852|1696|1 +639004.64921729|220665.71769044|113.45266934|1697|2 +638999.35060054|220670.44991882|116.21131577|1698|1 +638994.23539342|220674.95471297|113.45956195|1699|1 +638988.54236255|220680.21221516|131.15462889|1700|1 +638989.07101258|220679.53841812|113.71354696|1701|2 +638983.3310868|220684.84739536|132.25028513|1702|1 +638983.86099547|220684.1620761|113.92116261|1703|2 +638978.68619062|220688.76082528|114.66918356|1704|1 +638973.51675159|220693.35371576|115.32395421|1705|1 +638967.70221998|220698.80319491|140.19851355|1706|1 +638962.55528477|220703.36004744|139.48581144|1707|1 +638963.12474573|220702.56849188|115.08707517|1708|2 +638957.41087516|220707.93842525|140.79930599|1709|1 +638952.38827127|220712.31418559|134.05387167|1710|1 +638952.76443871|220711.76573272|115.75386371|1711|2 +638947.56766621|220716.37590414|115.81510661|1712|1 +638942.07794506|220721.47191269|135.13690541|1713|1 +638942.30019432|220721.12803239|122.63138325|1714|2 +638942.42952549|220720.92792172|115.35419428|1715|3 +638937.23944524|220725.52798711|115.06021164|1716|1 +638932.10061644|220730.08025321|114.56859415|1717|1 +638926.96053252|220734.6340008|114.10840737|1718|1 +638921.76215297|220739.24810498|114.38410272|1719|1 +638916.60654955|220743.83181612|115.30529484|1720|1 +638911.4464907|220748.42871015|117.01409628|1721|1 +638906.2196391|220753.11906521|121.64013015|1722|1 +638906.25646906|220753.03269631|117.05993544|1723|2 +638895.97581154|220762.15023576|116.96123429|1724|1 +638890.78893668|220766.74521166|116.47705822|1725|1 +638885.64830748|220771.30450759|116.4502319|1726|1 +638880.50774582|220775.86455275|116.49236895|1727|1 +638875.31899843|220780.4669855|116.50301018|1728|1 +638870.18288145|220785.02286876|116.52699016|1729|1 +638865.04225601|220789.58158176|116.45115278|1730|1 +638859.90243769|220794.14206709|116.58802842|1731|1 +638854.7613678|220798.70029925|116.43763729|1732|1 +638849.62254142|220803.26085733|116.65619183|1733|1 +638844.43340526|220807.86277129|116.59397225|1734|1 +638839.34034976|220812.3786857|116.46900288|1735|1 +638834.20121916|220816.93841939|116.59447455|1736|1 +638829.013436|220821.54096894|116.6895108|1737|1 +638823.91950298|220826.05758895|116.55858829|1738|1 +638818.77987969|220830.61710351|116.62847254|1739|1 +638813.63880587|220835.17680729|116.60482742|1740|1 +638808.54505781|220839.69399215|116.53658959|1741|1 +638798.26266777|220848.81457041|116.57143405|1742|1 +638793.16972758|220853.3318564|116.57837317|1743|1 +638788.77527581|220853.3958594|116.66114038|1744|1 +638793.91199164|220848.83205299|116.6083621|1745|1 +638799.05188978|220844.26739813|116.72451338|1746|1 +638804.18860132|220839.70403825|116.70966775|1747|1 +638809.37204954|220835.09824435|116.61278044|1748|1 +638814.45873782|220830.57848343|116.53064576|1749|1 +638819.64529295|220825.97242791|116.64689936|1750|1 +638824.78081162|220821.40962434|116.58927485|1751|1 +638829.91659986|220816.84680284|116.55061667|1752|1 +638835.10180928|220812.24122213|116.60548785|1753|1 +638840.23675495|220807.67834629|116.49861974|1754|1 +638845.37284581|220803.11584506|116.51070275|1755|1 +638850.55765021|220798.51070845|116.57293163|1756|1 +638855.69275966|220793.94733254|116.4355723|1757|1 +638860.82938911|220789.3861184|116.5983999|1758|1 +638865.96489205|220784.82232424|116.45519905|1759|1 +638871.09697098|220780.2642046|116.5371663|1760|1 +638876.23266967|220775.70213427|116.55685816|1761|1 +638881.41704624|220771.09622941|116.52118585|1762|1 +638886.50458369|220766.5768968|116.54064517|1763|1 +638891.64028097|220762.01608292|116.66720514|1764|1 +638896.82413545|220757.41298689|116.8324884|1765|1 +638901.83860128|220753.07571778|126.87507689|1766|1 +638906.9612214|220748.52534001|126.90194973|1767|1 +638907.04260803|220748.34372387|117.54801825|1768|2 +638912.2395445|220743.71281003|116.3271601|1769|1 +638917.34258004|220739.16591541|115.16633561|1770|1 +638922.49171772|220734.58361629|114.47579963|1771|1 +638927.631137|220730.01988065|114.63519487|1772|1 +638932.71518992|220725.51044086|115.23649891|1773|1 +638937.85030507|220720.95548788|115.65853911|1774|1 +638942.92227458|220716.4972983|119.49751246|1775|1 +638942.98518949|220716.40144285|116.07451455|1776|2 +638948.12397455|220711.84131037|116.26581488|1777|1 +638952.82562376|220707.91078525|137.13017377|1778|1 +638953.26102327|220707.28374467|116.54477515|1779|2 +638953.28678271|220707.24664721|115.32689357|1780|3 +638958.01612501|220703.23811828|131.62248033|1781|1 +638958.38663121|220702.71702856|115.17277244|1782|2 +638962.9021522|220699.0159224|141.53624853|1783|1 +638963.53043733|220698.15121002|115.25856272|1784|2 +638968.10591322|220694.33026214|135.92289621|1785|1 +638968.62672595|220693.62731029|115.32317286|1786|2 +638973.11430391|220689.91074555|138.2461451|1787|1 +638973.25543776|220689.72362024|132.95145304|1788|2 +638973.69997726|220689.13421797|116.27440042|1789|3 +638978.26947112|220685.31759615|136.85717594|1790|1 +638983.3450974|220680.80929819|136.68916725|1791|1 +638983.43691494|220680.69134294|133.56780735|1792|2 +638984.01793795|220679.94491994|113.81590371|1793|3 +638988.57792929|220676.10234412|131.45875977|1794|1 +638988.8990882|220675.69546291|121.02811977|1795|2 +638989.09089983|220675.45245375|114.79845965|1796|3 +638994.19580475|220670.91938744|114.73230542|1797|1 +638998.47483667|220667.40729871|139.32436051|1798|1 +638999.3363729|220666.34264457|113.63644453|1799|2 +639003.5368848|220662.9160086|139.58041981|1800|1 +639004.43931087|220661.81322443|113.73276443|1801|2 +639008.63818714|220658.37734879|138.76316573|1802|1 +639009.53235704|220657.29601174|114.12240654|1803|2 +639013.74582947|220653.83212015|137.8649769|1804|1 +639018.82584003|220649.32074399|137.7654758|1805|1 +639024.0900046|220644.59313189|133.14365564|1806|1 +639024.49537621|220644.11625824|123.11341061|1807|2 +639029.25347111|220639.97335212|130.10300725|1808|1 +639035.00139832|220634.69246857|114.86272562|1809|1 +639040.06046708|220630.2020826|114.96743572|1810|1 +639045.12678343|220625.70366148|114.93481439|1811|1 +639043.42713838|220623.62776666|115.15266199|1812|1 +639038.25488926|220628.21051129|115.27063643|1813|1 +639033.08772682|220632.78779624|115.30791794|1814|1 +639027.87988489|220637.39931312|115.18550657|1815|1 +639022.01691005|220642.79645498|132.57094527|1816|1 +639016.71479911|220647.54238769|136.79736551|1817|1 +639011.45143376|220652.23082885|139.04341896|1818|1 +639012.29469313|220651.21986348|116.53240379|1819|2 +639006.41122533|220656.65142954|135.30641168|1820|1 +639007.16947062|220655.73318768|114.27809037|1821|2 +639001.12477701|220661.38656082|139.79756978|1822|1 +638996.02562094|220665.87760387|137.61473121|1823|1 +638996.82356592|220664.88959599|113.63013793|1824|2 +638991.53639985|220669.60213836|116.13256693|1825|1 +638986.440754|220674.09305605|114.20712712|1826|1 +638980.47164917|220679.66898396|138.8326314|1827|1 +638981.17464249|220678.76283893|114.64784529|1828|2 +638975.39519858|220684.12617835|135.47694114|1829|1 +638975.89389714|220683.47321665|117.45232157|1830|2 +638970.20409894|220688.75374103|137.99942478|1831|1 +638970.79139564|220687.97168155|115.65256736|1832|2 +638964.90083891|220693.49184775|141.46635498|1833|1 +638965.53425588|220692.63236856|115.99553316|1834|2 +638959.69129928|220698.12941328|143.44448005|1835|1 +638955.19800433|220701.78145771|115.45456045|1836|1 +638949.95217439|220706.42768218|115.41846956|1837|1 +638944.74448068|220711.04674582|115.95367517|1838|1 +638939.54272336|220715.65806341|116.27707003|1839|1 +638934.30613427|220720.29166501|115.86191314|1840|1 +638929.11858082|220724.88090446|115.37427682|1841|1 +638923.9301202|220729.47103079|114.89331917|1842|1 +638918.73330563|220734.07572311|115.02507883|1843|1 +638913.482725|220738.734687|115.7182007|1844|1 +638908.27822983|220743.35869356|116.91952512|1845|1 +638903.0826772|220747.96725193|117.47780844|1846|1 +638892.6573226|220757.19592774|116.98265628|1847|1 +638887.4694296|220761.7848576|116.44263235|1848|1 +638882.23046307|220766.42544684|116.44600889|1849|1 +638877.04014472|220771.02362997|116.51316772|1850|1 +638871.85016683|220775.62062985|116.50579141|1851|1 +638866.61568304|220780.25653739|116.44853898|1852|1 +638861.4254521|220784.85385098|116.44841805|1853|1 +638856.23538179|220789.45124636|116.467496|1854|1 +638851.0458491|220794.04904195|116.56201135|1855|1 +638845.8077437|220798.68935864|116.60712496|1856|1 +638840.66520994|220803.24291192|116.48368109|1857|1 +638835.47600688|220807.84043522|116.5795638|1858|1 +638830.23755658|220812.48070715|116.59513497|1859|1 +638825.0978197|220817.03507896|116.75390699|1860|1 +638819.90459662|220821.63260269|116.54492398|1861|1 +638814.71590226|220826.22984132|116.65508492|1862|1 +638809.57371111|220830.78434875|116.63974629|1863|1 +638804.383776|220835.38189295|116.68195775|1864|1 +638799.19327076|220839.97972882|116.70589122|1865|1 +638794.04748406|220844.53597399|116.5664669|1866|1 +638788.85454937|220849.1372535|116.47246315|1867|1 +638783.7142631|220853.69457114|116.57104337|1868|1 +638782.14940173|220851.5209585|116.62142179|1869|1 +638787.23901756|220847.00058372|116.57390832|1870|1 +638792.42887219|220842.39321756|116.69239435|1871|1 +638797.61364498|220837.78782332|116.5926607|1872|1 +638802.7541497|220833.22440905|116.7256761|1873|1 +638807.93889939|220828.61934381|116.65172698|1874|1 +638813.12356543|220824.01435778|116.57822434|1875|1 +638818.26031122|220819.45233633|116.54340779|1876|1 +638823.44917128|220814.84713317|116.77065019|1877|1 +638828.63295418|220810.24215783|116.62964456|1878|1 +638833.76958325|220805.68025545|116.59569308|1879|1 +638838.95511376|220801.07555998|116.61170144|1880|1 +638844.13997023|220796.47059918|116.55317466|1881|1 +638849.27643045|220791.90850532|116.48885288|1882|1 +638854.46206065|220787.30410422|116.53733373|1883|1 +638859.64740701|220782.69931264|116.53004114|1884|1 +638864.83271573|220778.09376388|116.4544363|1885|1 +638869.96559279|220773.53559955|116.45377588|1886|1 +638875.19940544|220768.88827675|116.48578329|1887|1 +638880.33644526|220764.32628819|116.4733003|1888|1 +638885.52197085|220759.72203002|116.52436706|1889|1 +638890.70500958|220755.12579075|117.07580427|1890|1 +638900.97636653|220746.00862678|117.42771838|1891|1 +638906.16396008|220741.39944203|117.21165671|1892|1 +638911.31330685|220736.81415686|116.1323902|1893|1 +638916.4605365|220732.2360612|115.50953395|1894|1 +638921.65194838|220727.6243806|115.36969104|1895|1 +638926.78773883|220723.06827252|115.76580719|1896|1 +638931.92213911|220718.51398317|116.21209712|1897|1 +638937.11098573|220713.90521458|116.28586021|1898|1 +638942.21751407|220709.36066619|115.60625382|1899|1 +638947.36329542|220704.78800654|115.50362732|1900|1 +638952.10493651|220700.81528727|136.1820437|1901|1 +638952.54652631|220700.1885402|115.95325659|1902|2 +638957.13956395|220696.35927406|137.63111164|1903|1 +638957.62584409|220695.68440257|116.67308386|1904|2 +638962.14051959|220691.97030883|142.27972091|1905|1 +638967.91905224|220686.53830613|116.52574372|1906|1 +638972.51544476|220682.68764196|136.61588786|1907|1 +638977.59421299|220678.19192484|138.01771207|1908|1 +638982.77380712|220673.56673206|135.97366531|1909|1 +638983.42506542|220672.73788042|114.36234586|1910|2 +638988.50978598|220668.22736932|114.94543702|1911|1 +638993.62612453|220663.69458166|116.02489887|1912|1 +638998.06081041|220659.98046377|135.51723644|1913|1 +638998.79162504|220659.08434891|114.19281169|1914|2 +639003.22132313|220655.38447687|134.52943429|1915|1 +639003.93537589|220654.5183326|114.50509092|1916|2 +639008.17525912|220651.03773197|139.21994807|1917|1 +639013.76576878|220645.90084264|124.51206292|1918|1 +639014.06506625|220645.54477521|116.71986249|1919|2 +639018.69805364|220641.58056259|129.82674449|1920|1 +639019.27800476|220640.89672656|115.25464667|1921|2 +639024.37519029|220636.37177446|115.54495511|1922|1 +639029.48415728|220631.83324784|115.56712125|1923|1 +639034.59645977|220627.29118992|115.53951357|1924|1 +639039.66269041|220622.78966284|115.48264251|1925|1 +639044.78088765|220618.2415839|115.38658307|1926|1 +639045.04960421|220614.40738093|115.57774388|1927|1 +639039.92653919|220618.94894661|115.68830479|1928|1 +639034.80921962|220623.48433076|115.70547587|1929|1 +639029.69481196|220628.01669625|115.68536543|1930|1 +639024.58001225|220632.54984307|115.70276905|1931|1 +639019.47021297|220637.07746394|115.62670843|1932|1 +639013.73041631|220642.3379374|130.53178194|1933|1 +639014.32520754|220641.63256863|115.22868541|1934|2 +639008.38383973|220647.15590464|137.3706433|1935|1 +639003.25091334|220651.72203324|138.8446772|1936|1 +638998.96431921|220655.23990562|114.70457682|1937|1 +638993.78747656|220659.83463232|115.28717498|1938|1 +638988.66174747|220664.38406471|115.87346595|1939|1 +638977.82322266|220674.20160369|134.08956259|1940|1 +638978.22033252|220673.69136647|120.48647733|1941|2 +638978.38271237|220673.48272834|114.92413595|1942|3 +638972.63695913|220678.82275597|136.2296688|1943|1 +638967.39013227|220683.50600889|139.091844|1944|1 +638962.8754414|220687.24904959|116.9141859|1945|1 +638957.09901065|220692.65371578|141.44546319|1946|1 +638957.68878424|220691.84078031|116.49122483|1947|2 +638952.02456511|220697.13051006|139.69689665|1948|1 +638947.39748515|220700.9591772|116.30701245|1949|1 +638942.21511195|220705.54428554|115.64156336|1950|1 +638937.0679584|220710.10594557|115.64695839|1951|1 +638931.91057984|220714.684217|116.30225924|1952|1 +638926.71761255|220719.28605459|116.26887516|1953|1 +638921.52900229|220723.88076628|115.95481929|1954|1 +638916.43397369|220728.39534717|115.88804183|1955|1 +638911.18907123|220733.04765936|116.23547249|1956|1 +638905.99049759|220737.66318519|116.95363474|1957|1 +638900.84301324|220742.23312552|117.64854255|1958|1 +638895.59312782|220746.98796269|126.44722308|1959|1 +638890.47090057|220751.41427009|116.70008692|1960|1 +638885.3297816|220755.97066022|116.71479302|1961|1 +638880.14109658|220760.56661764|116.50400547|1962|1 +638874.95181679|220765.16506396|116.46238932|1963|1 +638869.76261094|220769.76431563|116.49622918|1964|1 +638864.57757962|220774.35914253|116.4680541|1965|1 +638859.38848344|220778.95895955|116.55902548|1966|1 +638854.19943202|220783.55793938|116.58169391|1967|1 +638849.00992812|220788.15616279|116.50483333|1968|1 +638843.82144739|220792.7555099|116.60341355|1969|1 +638838.6315351|220797.35381091|116.50246137|1970|1 +638833.44318127|220801.95298056|116.59569308|1971|1 +638828.25422137|220806.55189271|116.62063114|1972|1 +638823.06575027|220811.15087929|116.68978055|1973|1 +638817.87573084|220815.74993894|116.64688075|1974|1 +638812.68926896|220820.34860114|116.8419111|1975|1 +638807.49701663|220824.94805164|116.66243332|1976|1 +638802.30830895|220829.54711371|116.72088569|1977|1 +638797.11553862|220834.14746448|116.57982425|1978|1 +638791.92700638|220838.74657437|116.68294374|1979|1 +638786.73541536|220843.34486436|116.70528661|1980|1 +638781.53960473|220847.94500937|116.56564834|1981|1 +638776.3953567|220852.50122051|116.58101488|1982|1 +638770.84425395|220853.04870634|116.83330696|1983|1 +638775.98224451|220848.48578942|116.74624233|1984|1 +638781.12190055|220843.92235021|116.74061476|1985|1 +638786.26085162|220839.35939756|116.72271814|1986|1 +638791.40073507|220834.79635641|116.7675434|1987|1 +638796.53854836|220830.2342013|116.73134088|1988|1 +638801.7240379|220825.62939516|116.66307515|1989|1 +638806.86165412|220821.06757163|116.63992303|1990|1 +638812.00143138|220816.50567114|116.77322678|1991|1 +638817.13947921|220811.94413038|116.80675039|1992|1 +638822.32549488|220807.33968935|116.80867585|1993|1 +638827.46154951|220802.77816805|116.69275712|1994|1 +638832.59809219|220798.21658148|116.60829699|1995|1 +638837.78418592|220793.61238337|116.63633254|1996|1 +638842.92169567|220789.05134775|116.67115839|1997|1 +638848.05877637|220784.49003615|116.64994104|1998|1 +638853.24413524|220779.88511334|116.56035563|1999|1 +638863.56744413|220770.71886124|116.51337236|2000|1 +638868.70063301|220766.16109342|116.4994383|2001|1 +638873.83800355|220761.60006274|116.52326015|2002|1 +638879.02381654|220756.99674679|116.60428792|2003|1 +638884.15937123|220752.44284207|117.09732858|2004|1 +638889.30135883|220747.86760098|116.25953618|2005|1 +638894.4265574|220743.42016684|125.03363212|2006|1 +638899.54771062|220738.94835065|131.42691979|2007|1 +638899.66489548|220738.6817706|117.58026751|2008|2 +638904.80742798|220734.10995313|117.07459504|2009|1 +638909.95133307|220729.53736369|116.60666918|2010|1 +638915.14254219|220724.92556775|116.37178072|2011|1 +638920.28147189|220720.36422334|116.48550424|2012|1 +638925.47110413|220715.75640798|116.4701098|2013|1 +638930.62243006|220711.17670938|115.90350139|2014|1 +638935.77024496|220706.60621614|115.70574562|2015|1 +638940.95500078|220702.01062601|116.16004438|2016|1 +638946.08356375|220697.46880669|116.94970009|2017|1 +638950.74639241|220693.58388928|138.50477169|2018|1 +638955.87346147|220689.05227696|140.05140596|2019|1 +638961.41426615|220683.93630526|123.08129157|2020|1 +638961.57016026|220683.7252406|116.88072741|2021|2 +638966.23146312|220679.80354189|135.1913115|2022|1 +638971.50779812|220675.07703914|131.4133857|2023|1 +638971.94720574|220674.50262719|115.68035177|2024|2 +638977.05957996|220669.96166225|115.31980562|2025|1 +638981.55431022|220666.22403479|136.72903466|2026|1 +638982.21774364|220665.38189426|115.11233879|2027|2 +638986.79997553|220661.54191049|134.41350625|2028|1 +638991.80086912|220657.13136642|136.74166648|2029|1 +638992.53169202|220656.22690109|114.90435107|2030|2 +638996.94244022|220652.5631412|136.26468999|2031|1 +639002.13641624|220647.94790738|135.74175342|2032|1 +639007.21456173|220643.44212167|135.79215044|2033|1 +639012.86406777|220638.27263369|122.46501168|2034|1 +639013.13160269|220637.95491013|115.60898854|2035|2 +639018.27861909|220633.39085049|115.89658087|2036|1 +639023.39156329|220628.85300575|115.84350493|2037|1 +639028.54681719|220624.2797443|115.96940447|2038|1 +639033.65749708|220619.74516099|116.02265714|2039|1 +639038.77357961|220615.20468759|115.98249207|2040|1 +639043.94341578|220610.61565769|115.86603383|2041|1 +639044.91622469|220606.41924763|115.9187284|2042|1 +639039.84000649|220610.91228778|116.03878642|2043|1 +639034.76258954|220615.40711094|116.22111984|2044|1 +639029.64799108|220619.93230377|116.18078734|2045|1 +639024.58834841|220624.40736873|116.02000614|2046|1 +639019.47837563|220628.92773092|115.91734243|2047|1 +639014.36383968|220633.4537402|115.95198225|2048|1 +639009.30528725|220637.92826305|115.82832443|2049|1 +639003.69748834|220643.0478212|129.24651828|2050|1 +639004.20589979|220642.43675596|115.51358022|2051|2 +638998.57359998|220647.60820633|131.51391|2052|1 +638993.28622875|220652.35516919|137.34772372|2053|1 +638988.20236042|220656.85555516|137.51559288|2054|1 +638983.86464625|220660.43664648|115.60925829|2055|1 +638978.11761648|220665.77098438|136.84316746|2056|1 +638978.76555839|220664.9457462|115.36926316|2057|2 +638973.16311228|220670.10534698|132.61577983|2058|1 +638973.65538704|220669.46926457|115.52257504|2059|2 +638968.51670869|220674.03074046|116.7622972|2060|1 +638963.13858787|220678.91377301|127.35571829|2061|1 +638963.41333477|220678.5469944|116.80965254|2062|2 +638958.17882163|220683.24203155|122.20851519|2063|1 +638958.3008728|220683.07604686|117.2629095|2064|2 +638952.70896989|220688.27151866|138.37438869|2065|1 +638947.82017559|220692.50036208|130.10449554|2066|1 +638947.95085103|220692.31489235|124.14643799|2067|2 +638948.10453874|220692.09676092|117.13917727|2068|3 +638943.00454641|220696.6102335|117.20533151|2069|1 +638937.91822098|220701.10377823|116.60316241|2070|1 +638932.78280626|220705.64051839|115.97386933|2071|1 +638927.73465752|220710.10608273|115.87332642|2072|1 +638922.58449687|220714.66611717|116.1187538|2073|1 +638917.48139991|220719.18671937|116.55978822|2074|1 +638912.33535226|220723.74172881|116.6868877|2075|1 +638907.23690639|220728.25638237|116.97186622|2076|1 +638902.09248636|220732.81016512|117.11803433|2077|1 +638896.99607538|220737.32323408|117.42185826|2078|1 +638881.62204374|220750.92260559|117.05045693|2079|1 +638876.48131428|220755.46888768|116.83498128|2080|1 +638871.38878741|220759.97163996|116.55157475|2081|1 +638866.19870387|220764.56407842|116.54210555|2082|1 +638861.10985604|220769.06766328|116.60885509|2083|1 +638855.96821884|220773.61738534|116.61900333|2084|1 +638850.82716851|220778.1679049|116.74185189|2085|1 +638845.68611545|220782.71762399|116.79615566|2086|1 +638840.54333394|220787.2657261|116.58192645|2087|1 +638835.40235316|220791.81560327|116.65537328|2088|1 +638830.26188338|220796.36546786|116.7665109|2089|1 +638825.12197614|220800.9152011|116.90909783|2090|1 +638819.97950794|220805.46457243|116.82690734|2091|1 +638814.83908771|220810.0141726|116.91989719|2092|1 +638809.69536702|220814.56399845|116.78185883|2093|1 +638804.55377192|220819.11369729|116.79399765|2094|1 +638799.45748284|220823.62131676|116.64281588|2095|1 +638789.12631096|220832.76570657|116.79417438|2096|1 +638784.03264902|220837.27618209|116.87448592|2097|1 +638778.89003169|220841.82992916|116.94383067|2098|1 +638773.69540587|220846.42826429|116.88384351|2099|1 +638768.60005163|220850.93987502|116.93322664|2100|1 +638760.15547575|220855.09589375|116.95226738|2101|1 +638765.24924443|220850.57208044|116.92902224|2102|1 +638770.39022993|220846.00603475|116.87283951|2103|1 +638775.58296582|220841.39583533|116.96526196|2104|1 +638780.67588979|220836.87307022|116.96738276|2105|1 +638785.86987377|220832.26315771|117.17924002|2106|1 +638791.00230616|220827.70080466|116.78671436|2107|1 +638796.14149549|220823.13622514|116.71932299|2108|1 +638801.28215774|220818.57143594|116.74589816|2109|1 +638806.4239371|220814.00674736|116.86643989|2110|1 +638811.56453968|220809.44259976|116.9434679|2111|1 +638816.70419371|220804.87850093|116.95196972|2112|1 +638821.89321743|220800.27172089|117.05393579|2113|1 +638827.03095342|220795.70773919|116.92553407|2114|1 +638832.16964981|220791.14385223|116.87858801|2115|1 +638837.30802292|220786.57967125|116.78185883|2116|1 +638842.44757025|220782.01627055|116.84159484|2117|1 +638847.63555304|220777.4102326|116.92665959|2118|1 +638852.77444104|220772.84634002|116.893229|2119|1 +638857.91348162|220768.28231124|116.86001236|2120|1 +638863.2952563|220763.50476121|116.96679675|2121|1 +638868.23588564|220759.11630116|116.90726538|2122|1 +638873.37470815|220754.5540804|117.01231034|2123|1 +638878.56396059|220749.94071656|116.56221599|2124|1 +638893.87560092|220736.50556216|130.54543695|2125|1 +638893.97958534|220736.25883378|117.22341416|2126|2 +638898.97439653|220732.00632735|133.01938391|2127|1 +638899.02056708|220731.90711488|127.9956805|2128|2 +638899.12129256|220731.6906733|117.03602057|2129|3 +638904.26210957|220727.12525847|117.01755654|2130|1 +638909.45502727|220722.51064492|116.73846605|2131|1 +638914.55283599|220717.97972383|116.40658796|2132|1 +638919.74868054|220713.36223782|116.10327564|2133|1 +638924.89334963|220708.7929935|116.04847887|2134|1 +638930.03168787|220704.23477217|116.40618799|2135|1 +638935.16376744|220699.68635376|117.08266898|2136|1 +638940.29928194|220695.13221145|117.52821477|2137|1 +638945.4415273|220690.5681913|117.63671069|2138|1 +638950.23850382|220686.48421436|132.733438|2139|1 +638955.33988638|220681.96634928|133.69683229|2140|1 +638955.49133847|220681.7601853|127.50224917|2141|2 +638960.88477034|220676.85520974|117.42043509|2142|1 +638965.73768884|220672.67212812|128.2501678|2143|1 +638970.8756285|220668.10889411|128.09685593|2144|1 +638971.22590155|220667.65626115|115.85425778|2145|2 +638975.72034607|220663.90085823|136.14962701|2146|1 +638981.24630871|220658.86476956|124.89481241|2147|1 +638981.54390188|220658.49088212|115.41331637|2148|2 +638985.98557595|220654.78187541|135.6741388|2149|1 +638991.1036677|220650.24102706|135.93296073|2150|1 +638996.94522961|220644.82257116|115.84292822|2151|1 +639002.04981111|220640.2917191|115.93207644|2152|1 +639007.20564368|220635.71490491|115.97520878|2153|1 +639012.31047752|220631.18426398|116.10205711|2154|1 +639017.41814417|220626.65053874|116.17907582|2155|1 +639022.57502081|220622.07331715|116.26658693|2156|1 +639027.73368814|220617.49429565|116.33572703|2157|1 +639032.84263634|220612.95987294|116.45065978|2158|1 +639038.01326115|220608.36779799|116.30840771|2159|1 +639043.13737285|220603.81683054|116.15565394|2160|1 +639045.82310154|220598.14588889|116.16909501|2161|1 +639040.64341814|220602.73339319|116.36992966|2162|1 +639035.42116137|220607.35757184|116.47940227|2163|1 +639030.29814394|220611.89375584|116.58581459|2164|1 +639025.13956847|220616.45837801|116.42617751|2165|1 +639019.97180815|220621.03387743|116.50384734|2166|1 +639014.8136096|220625.59859973|116.38227312|2167|1 +639009.65649563|220630.16228812|116.25476437|2168|1 +639004.50253763|220634.72245534|116.06516626|2169|1 +638999.34322512|220639.28924218|116.03807019|2170|1 +638994.18315103|220643.85727923|116.0612037|2171|1 +638988.5925597|220648.93757977|127.41474736|2172|1 +638988.98599133|220648.454617|115.77542523|2173|2 +638983.56490555|220653.36476139|125.40201968|2174|1 +638983.88448424|220652.96783254|115.54666664|2175|2 +638978.39632165|220657.9314517|124.6559707|2176|1 +638978.67985022|220657.57474344|115.51754278|2177|2 +638972.95917928|220662.8591304|134.56956216|2178|1 +638967.90278964|220667.30547306|132.01121087|2179|1 +638962.91481154|220671.65912414|126.67418643|2180|1 +638963.16875422|220671.32500751|117.22120964|2181|2 +638958.0062551|220675.90008509|117.67119237|2182|1 +638952.54236675|220680.88758768|130.71700821|2183|1 +638952.85903266|220680.45528685|117.57197032|2184|2 +638947.40447145|220685.41469235|128.89910624|2185|1 +638947.65798267|220685.06111925|117.72657515|2186|2 +638942.5546796|220689.58059187|117.90512275|2187|1 +638937.41127402|220694.13139448|117.71919884|2188|1 +638932.22275137|220698.72014355|117.35650398|2189|1 +638927.13298444|220703.21996861|116.87326739|2190|1 +638921.99405772|220707.7632719|116.38187314|2191|1 +638916.84972943|220712.315029|116.20926008|2192|1 +638911.75061396|220716.82969055|116.29465969|2193|1 +638906.55359218|220721.43267166|116.51448857|2194|1 +638901.40594113|220725.99212639|116.75493949|2195|1 +638896.3076954|220730.50802717|117.01564038|2196|1 +638891.16535517|220735.05787224|116.83153962|2197|1 +638875.78553895|220748.66599809|116.31874199|2198|1 +638865.54707282|220757.73062882|116.46514265|2199|1 +638860.40856078|220762.28305242|116.80078795|2200|1 +638855.31449399|220766.79349074|116.91191627|2201|1 +638850.1709717|220771.34335531|116.64161595|2202|1 +638845.02960119|220775.89794113|116.94647237|2203|1 +638839.98387532|220780.36372208|116.90147038|2204|1 +638834.83987121|220784.91487083|116.70654235|2205|1 +638829.69834253|220789.46771405|116.84930601|2206|1 +638824.60647062|220793.97748219|117.07310675|2207|1 +638819.46520616|220798.52965727|117.17866331|2208|1 +638814.37067375|220803.03874725|117.14005164|2209|1 +638809.27457544|220807.54820754|117.01391955|2210|1 +638804.12992405|220812.10078057|116.89488472|2211|1 +638799.08471306|220816.5672162|116.94903966|2212|1 +638793.94017716|220821.12032965|116.88644801|2213|1 +638788.84663909|220825.62995587|116.9727964|2214|1 +638783.75064096|220830.13895605|116.9528906|2215|1 +638778.65758553|220834.64625227|117.08290152|2216|1 +638773.56386072|220839.1538559|117.18789067|2217|1 +638768.46310057|220843.66459181|117.02421662|2218|1 +638763.37132696|220848.17161466|117.22911615|2219|1 +638758.31357059|220852.64255149|116.91979487|2220|1 +638754.57146003|220852.15685953|116.99536251|2221|1 +638759.71461921|220847.5964952|116.94566311|2222|1 +638764.86095539|220843.03490663|117.03363001|2223|1 +638770.00529738|220838.47451372|117.07186032|2224|1 +638775.14949095|220833.91447244|117.12907554|2225|1 +638780.28937758|220829.35630803|117.01780769|2226|1 +638785.43121876|220824.79756995|117.00673858|2227|1 +638790.62275882|220820.19571778|117.0759531|2228|1 +638795.76661209|220815.63700982|117.22166542|2229|1 +638800.90545221|220811.07972118|117.10513277|2230|1 +638806.04659708|220806.52212599|117.1388052|2231|1 +638811.18078154|220801.96486701|116.6664796|2232|1 +638816.32426107|220797.40694106|116.85054315|2233|1 +638821.54233217|220792.81137385|119.50293539|2234|1 +638826.63498303|220788.30138733|119.93788646|2235|1 +638831.79720585|220783.69257036|117.14760468|2236|1 +638836.93699572|220779.13526898|117.10141206|2237|1 +638842.02699656|220774.61907064|116.79290934|2238|1 +638847.21608461|220770.01866988|116.79716956|2239|1 +638852.35762457|220765.46458722|117.16408743|2240|1 +638857.44933613|220760.95070088|117.18708142|2241|1 +638862.63368642|220756.3513472|116.9173206|2242|1 +638867.72571772|220751.83574465|116.81549406|2243|1 +638872.86622342|220747.27906754|116.87688578|2244|1 +638878.00688681|220742.72196756|116.91348827|2245|1 +638883.09895192|220738.20843074|116.99306497|2246|1 +638888.24149732|220733.64708041|116.80502026|2247|1 +638893.38174569|220729.09201678|116.98586539|2248|1 +638898.47786489|220724.57079633|116.7094445|2249|1 +638903.62229901|220720.00814553|116.55321187|2250|1 +638908.76735595|220715.44516537|116.41596416|2251|1 +638913.86176261|220710.92950201|116.48966213|2252|1 +638918.99966721|220706.37927002|116.90876297|2253|1 +638924.08582038|220701.87667724|117.4822826|2254|1 +638929.17450586|220697.36676204|117.81214219|2255|1 +638934.31150449|220692.81324419|118.12541672|2256|1 +638939.4039681|220688.29687188|118.23673108|2257|1 +638944.50041104|220683.77510813|118.18565502|2258|1 +638949.64736592|220679.20803705|118.08718642|2259|1 +638954.69912886|220674.72491304|117.95243158|2260|1 +638959.80447257|220670.19261577|117.67041102|2261|1 +638964.9631929|220665.61169016|117.27274148|2262|1 +638969.70504761|220661.52708031|127.90047682|2263|1 +638975.19080694|220656.52888775|116.42844714|2264|1 +638980.25408692|220652.03406683|116.16236982|2265|1 +638985.35736098|220647.50736502|116.20535333|2266|1 +638990.4634358|220642.97753643|116.19222853|2267|1 +638995.52293062|220638.48866511|116.15058447|2268|1 +639000.63045886|220633.95777542|116.15620275|2269|1 +639005.68471669|220629.47577657|116.30776589|2270|1 +639010.78492422|220624.95403583|116.54420775|2271|1 +639015.84254676|220620.46848602|116.64560641|2272|1 +639020.90480224|220615.97782793|116.65953117|2273|1 +639026.01701462|220611.44287965|116.67140954|2274|1 +639031.08305566|220606.94851146|116.65401522|2275|1 +639036.15216854|220602.4509964|116.59908823|2276|1 +639041.2227305|220597.95220013|116.54406822|2277|1 +639046.300353|220593.44585905|116.37677577|2278|1 +639043.16806336|220592.0896704|116.59053989|2279|1 +639037.94583838|220596.71417213|116.65374547|2280|1 +639032.7736886|220601.29436139|116.72211352|2281|1 +639027.60277011|220605.87353569|116.79709514|2282|1 +639022.38509748|220610.49401957|116.86194713|2283|1 +639017.17229872|220615.10924394|116.84632014|2284|1 +639012.01073964|220619.6786842|116.7979044|2285|1 +639006.80663297|220624.28432968|116.62112414|2286|1 +639001.60532967|220628.88684243|116.38872855|2287|1 +638996.45050862|220633.44901254|116.22915658|2288|1 +638991.24118906|220638.06161741|116.25352723|2289|1 +638986.03341369|220642.67271411|116.26596371|2290|1 +638980.87176634|220647.2442166|116.38837509|2291|1 +638975.61652147|220651.89778189|116.43605599|2292|1 +638970.40421857|220656.51595971|116.71232805|2293|1 +638965.23663501|220661.09680538|117.18565825|2294|1 +638960.02574733|220665.71468383|117.54413941|2295|1 +638954.76883741|220670.37302309|117.87550589|2296|1 +638949.61367633|220674.93982178|118.08795847|2297|1 +638944.4129266|220679.54618543|118.2295222|2298|1 +638939.21197516|220684.15345983|118.43407757|2299|1 +638934.01664325|220688.75321695|118.42053418|2300|1 +638928.82320554|220693.3505004|118.33876226|2301|1 +638923.6315532|220697.94526109|118.17626023|2302|1 +638918.44513477|220702.5316048|117.68936804|2303|1 +638913.25773351|220707.11897392|117.21539603|2304|1 +638908.07065158|220711.70504175|116.65439659|2305|1 +638902.87652051|220716.30339844|116.61238977|2306|1 +638897.6811413|220720.90468366|116.72705277|2307|1 +638892.48627719|220725.5058078|116.86720263|2308|1 +638887.33976617|220730.06555619|117.13392177|2309|1 +638882.0985966|220734.70668888|117.18639309|2310|1 +638876.90691754|220739.30260414|117.12173644|2311|1 +638871.7635912|220743.85656026|117.13328925|2312|1 +638866.57213764|220748.45242611|117.08191554|2313|1 +638861.38069924|220753.04973951|117.15599488|2314|1 +638856.24214229|220757.59889553|117.11847152|2315|1 +638851.05078126|220762.19592923|117.17457053|2316|1 +638845.85911541|220766.79156265|117.08738498|2317|1 +638840.71622183|220771.34500672|117.08820354|2318|1 +638835.52559645|220775.94205202|117.20178753|2319|1 +638830.33427293|220780.53826844|117.19083934|2320|1 +638825.24173559|220785.04927198|117.37971191|2321|1 +638820.05319624|220789.64593717|117.61940008|2322|1 +638814.85849817|220794.24166217|117.30960442|2323|1 +638809.76256604|220798.75226129|117.20514547|2324|1 +638804.56673301|220803.34943692|116.9335243|2325|1 +638799.41741756|220807.9044405|116.58022422|2326|1 +638794.28271132|220812.45689548|117.12074115|2327|1 +638789.13941018|220817.01100838|117.14905576|2328|1 +638783.99496045|220821.56563196|117.13385666|2329|1 +638778.90031518|220826.07817432|117.16121318|2330|1 +638773.75591247|220830.63444514|117.14632104|2331|1 +638768.60579843|220835.19330799|116.91924607|2332|1 +638763.51331389|220839.70566236|117.08425958|2333|1 +638758.35911843|220844.26712496|116.77009209|2334|1 +638753.26944033|220848.77844212|117.06014008|2335|1 +638748.11643867|220853.34008384|116.85256163|2336|1 +638742.8247247|220853.96746829|117.03240218|2337|1 +638747.95857054|220849.40794067|116.7125699|2338|1 +638753.10742148|220844.84118369|116.91142328|2339|1 +638758.30279098|220840.23282517|117.07746929|2340|1 +638763.44466884|220835.67005532|117.08952439|2341|1 +638768.58798148|220831.10697057|117.18304445|2342|1 +638773.77220416|220826.50411432|116.9754195|2343|1 +638778.90151128|220821.94634851|116.46342182|2344|1 +638784.09700825|220817.33965001|116.78144025|2345|1 +638789.23611472|220812.77876597|116.74487497|2346|1 +638794.38007147|220808.2170223|117.00222722|2347|1 +638799.57280221|220803.61300556|117.34017006|2348|1 +638804.71442461|220799.05311154|117.57934663|2349|1 +638809.85317873|220794.4936444|117.63751064|2350|1 +638815.04087857|220789.89160977|117.76412642|2351|1 +638820.17693669|220785.33233726|117.63535263|2352|1 +638825.31189433|220780.77229022|117.35679233|2353|1 +638830.49787998|220776.16988264|117.32203159|2354|1 +638835.63495816|220771.60993549|117.21274502|2355|1 +638840.77244492|220767.04991573|117.12867557|2356|1 +638845.95913415|220762.44784545|117.17626345|2357|1 +638851.09757603|220757.89042636|117.3864557|2358|1 +638856.23543701|220753.33176779|117.44687073|2359|1 +638861.41721314|220748.7323775|117.35177867|2360|1 +638866.50681447|220744.21383637|117.18705351|2361|1 +638871.69297786|220739.61334494|117.33014274|2362|1 +638876.83060598|220735.05555817|117.4477451|2363|1 +638881.96837397|220730.49728316|117.53430743|2364|1 +638887.10875505|220725.9328122|117.28991256|2365|1 +638892.24930065|220721.36929892|117.13946563|2366|1 +638897.38998115|220716.8063993|117.05174057|2367|1 +638902.5282742|220712.24861633|117.22040038|2368|1 +638907.66455494|220707.69436933|117.53921877|2369|1 +638912.79887825|220703.14310651|117.96443088|2370|1 +638917.93563798|220698.58741849|118.19618463|2371|1 +638923.07214024|220694.03231812|118.44063532|2372|1 +638928.16275696|220689.52038813|118.58938933|2373|1 +638933.3025639|220684.96460502|118.71539119|2374|1 +638938.44577002|220680.40413241|118.69797827|2375|1 +638943.54279782|220675.88374466|118.60961139|2376|1 +638948.69549442|220671.31106326|118.26784552|2377|1 +638953.80123573|220666.78003297|117.92989338|2378|1 +638958.90564604|220662.25149889|117.70440902|2379|1 +638964.06479244|220657.67252888|117.31337164|2380|1 +638969.17960084|220653.13193304|116.84468303|2381|1 +638974.29132509|220648.59604664|116.54463563|2382|1 +638979.40052392|220644.06393352|116.37576188|2383|1 +638984.50711434|220639.53551847|116.32554159|2384|1 +638989.61174786|220635.00986468|116.36274869|2385|1 +638994.66740218|220630.52799968|116.43376776|2386|1 +638999.76887102|220626.00667876|116.60198108|2387|1 +639004.86974156|220621.48625726|116.80142977|2388|1 +639009.9234339|220617.00736913|116.97816352|2389|1 +639015.02841423|220612.48250028|117.1089558|2390|1 +639020.0914131|220607.99324456|117.10458397|2391|1 +639025.15843964|220603.49969101|117.03771349|2392|1 +639030.27801446|220598.95897275|116.91913445|2393|1 +639035.29740967|220594.50807547|116.89118261|2394|1 +639040.41828628|220589.96664191|116.81005252|2395|1 +639045.49630307|220585.46217877|116.64319725|2396|1 +639044.72444778|220582.78846489|116.74746086|2397|1 +639039.54546874|220587.37140496|116.87840197|2398|1 +639034.42004419|220591.90615352|116.94582125|2399|1 +639029.29007124|220596.44646189|117.14430255|2400|1 +639024.12157255|220601.01875092|117.15773432|2401|1 +639018.99747485|220605.55320692|117.30053519|2402|1 +639013.83360449|220610.1208906|117.27090903|2403|1 +639008.67341973|220614.68459178|117.17924002|2404|1 +639003.51588659|220619.2454394|117.04420613|2405|1 +638998.36197751|220623.80220853|116.83461851|2406|1 +638993.2058519|220628.36181625|116.70016133|2407|1 +638988.05241175|220632.91839005|116.50982838|2408|1 +638982.89440967|220637.48076137|116.46955169|2409|1 +638977.68573036|220642.0890778|116.5198557|2410|1 +638972.52339544|220646.65761745|116.68002298|2411|1 +638967.30501391|220651.27926555|117.13707507|2412|1 +638962.14016252|220655.85237061|117.49778866|2413|1 +638956.97684052|220660.42427062|117.8713294|2414|1 +638951.768164|220665.03574548|118.19251043|2415|1 +638946.5590781|220669.64860344|118.60168628|2416|1 +638941.40622267|220674.20870139|118.7578352|2417|1 +638936.20750705|220678.80860719|118.8431976|2418|1 +638931.01159951|220683.40494042|118.8353748|2419|1 +638925.81807096|220687.99807631|118.73432961|2420|1 +638920.62681948|220692.58789562|118.52131893|2421|1 +638915.48474573|220697.13366208|118.26688744|2422|1 +638910.29357153|220701.72327225|118.04214722|2423|1 +638905.054363|220706.35492182|117.77248872|2424|1 +638899.91188434|220710.90091319|117.50653233|2425|1 +638894.71902005|220715.49335123|117.39558074|2426|1 +638889.52582105|220720.08667362|117.33508198|2427|1 +638884.28386899|220724.7239062|117.33638423|2428|1 +638879.13758413|220729.27969134|117.62162321|2429|1 +638873.89698478|220733.91501647|117.56159884|2430|1 +638868.70512663|220738.50666543|117.45928861|2431|1 +638863.56145726|220743.05730743|117.50181633|2432|1 +638858.32107155|220747.69501251|117.66223476|2433|1 +638853.13373961|220752.28339205|117.62379982|2434|1 +638847.9417691|220756.87545391|117.5482787|2435|1 +638842.74963407|220761.46752145|117.46069317|2436|1 +638837.55714828|220766.05953662|117.34231877|2437|1 +638832.36559296|220770.65291769|117.41186815|2438|1 +638827.17392334|220775.24597779|117.44437786|2439|1 +638821.93544941|220779.88254986|117.65263533|2440|1 +638816.79559975|220784.43297428|117.96695166|2441|1 +638811.6051255|220789.02549768|118.04454708|2442|1 +638806.36393526|220793.66100173|117.95453379|2443|1 +638801.2187978|220798.21095713|117.82612276|2444|1 +638796.02400306|220802.80426153|117.64259871|2445|1 +638790.82754652|220807.39846567|117.4095427|2446|1 +638785.67982741|220811.95020963|117.2382877|2447|1 +638780.43596808|220816.58834315|117.14479554|2448|1 +638775.23998136|220821.18517293|117.03186268|2449|1 +638770.1452148|220825.69477|117.12878719|2450|1 +638764.94356891|220830.29451098|116.83538125|2451|1 +638759.74716517|220834.89252699|116.79235124|2452|1 +638754.59156662|220839.45138859|116.49180154|2453|1 +638749.41574541|220844.04013322|117.21796332|2454|1 +638744.25139379|220848.60391837|116.67441401|2455|1 +638739.08750109|220853.16824765|116.21235757|2456|1 +638735.20522248|220853.19681876|116.52757617|2457|1 +638740.40579012|220848.5860226|116.74380526|2458|1 +638745.51256854|220844.06010094|117.11459268|2459|1 +638750.69075749|220839.46105115|116.63196071|2460|1 +638755.89732466|220834.84877803|117.18055157|2461|1 +638761.0414475|220830.28644229|117.26279788|2462|1 +638766.23482941|220825.68117272|117.40618476|2463|1 +638771.42889846|220821.07609571|117.61878617|2464|1 +638776.56935447|220816.51629716|117.63951052|2465|1 +638781.75796936|220811.91389716|117.66548108|2466|1 +638786.94569272|220807.31200455|117.66691356|2467|1 +638792.08939373|220802.75238299|117.95098051|2468|1 +638797.27932679|220798.15092849|118.15943332|2469|1 +638802.46789139|220793.55018719|118.32460496|2470|1 +638807.65498762|220788.949738|118.40273058|2471|1 +638812.79177492|220784.39243143|118.35680771|2472|1 +638817.97545583|220779.79177162|118.15449407|2473|1 +638823.15867104|220775.19029858|117.84637273|2474|1 +638828.34457878|220770.58948491|117.8011847|2475|1 +638833.530061|220765.98804294|117.66895065|2476|1 +638838.66833488|220761.4308118|117.74328114|2477|1 +638843.8548115|220756.83045118|117.78056266|2478|1 +638854.17924037|220747.67460951|118.0184742|2479|1 +638859.36084692|220743.07750042|117.96317514|2480|1 +638864.54717168|220738.47584935|117.8771151|2481|1 +638869.73360628|220733.87512268|117.87901266|2482|1 +638874.92047717|220729.27357864|117.84385195|2483|1 +638880.10994504|220724.66591427|117.47797587|2484|1 +638885.24866398|220720.10833447|117.55501319|2485|1 +638895.62325644|220710.90743274|117.73760706|2486|1 +638900.76175148|220706.35071158|117.87175728|2487|1 +638905.94754345|220701.75320127|118.10151115|2488|1 +638911.13261989|220697.15676103|118.36919768|2489|1 +638916.26754971|220692.6057406|118.72285122|2490|1 +638926.59010245|220683.4484433|119.08318343|2491|1 +638931.73007223|220678.88574719|119.11283749|2492|1 +638936.92048161|220674.27767774|119.08268113|2493|1 +638942.11431198|220669.66528279|118.9406151|2494|1 +638947.21524333|220665.13376474|118.6751145|2495|1 +638952.4159565|220660.51332413|118.36526302|2496|1 +638957.57329237|220655.92984761|117.92820976|2497|1 +638962.67983084|220651.39307803|117.63831059|2498|1 +638967.89092058|220646.76151314|117.16125039|2499|1 +638973.05019264|220642.17784248|116.85631955|2500|1 +638978.15777184|220637.64167415|116.69815215|2501|1 +638983.31226018|220633.06499876|116.63093751|2502|1 +638988.46279593|220628.49349058|116.70755624|2503|1 +638993.55774037|220623.97365116|116.99287893|2504|1 +638998.70606683|220619.40518415|117.16352002|2505|1 +639003.80677373|220614.87879779|117.32425472|2506|1 +639008.91024474|220610.34938568|117.43513189|2507|1 +639014.01912065|220605.8139581|117.44007114|2508|1 +639019.12863781|220601.2781023|117.45756778|2509|1 +639024.24758473|220596.73180454|117.29435881|2510|1 +639029.36152869|220592.1916022|117.27469485|2511|1 +639034.48526601|220587.64070249|117.08063189|2512|1 +639039.6090211|220583.09021638|116.92414811|2513|1 +639044.68065239|220578.58708864|116.86886765|2514|1 +639044.5051339|220574.93292015|116.83499058|2515|1 +639039.42795234|220579.42940387|116.89936817|2516|1 +639034.29652534|220583.97563364|117.10855582|2517|1 +639029.21526186|220588.47754818|117.32876608|2518|1 +639024.09254385|220593.01482926|117.43221113|2519|1 +639018.97029522|220597.55198978|117.56075238|2520|1 +639013.90113245|220602.04136702|117.62506486|2521|1 +639008.78771054|220606.56911041|117.61653514|2522|1 +639003.67797624|220611.09286041|117.54572071|2523|1 +638998.57090978|220615.61374132|117.43131816|2524|1 +638993.46747102|220620.13053799|117.24209213|2525|1 +638988.36663868|220624.64437287|116.99674847|2526|1 +638983.26575134|220629.15840092|116.7639064|2527|1 +638978.15583193|220633.68370115|116.81192217|2528|1 +638973.04422122|220638.21151739|116.94739325|2529|1 +638967.87869841|220642.78960391|117.29824695|2530|1 +638962.71727437|220647.36318973|117.57454692|2531|1 +638957.64787182|220651.85807998|118.09425577|2532|1 +638952.49088074|220656.42738112|118.33974825|2533|1 +638947.33224121|220660.99959858|118.71044265|2534|1 +638942.22524326|220665.52544263|119.02780996|2535|1 +638937.02514104|220670.13255434|119.24041136|2536|1 +638931.87747263|220674.69179327|119.33095485|2537|1 +638926.78106313|220679.20455759|119.33026652|2538|1 +638921.58959008|220683.80069675|119.25669877|2539|1 +638911.31044634|220692.89686039|118.75230994|2540|1 +638906.17189689|220697.44302413|118.41295323|2541|1 +638901.03052428|220701.99387069|118.26122266|2542|1 +638895.84170654|220706.58571967|118.02075313|2543|1 +638890.69953602|220711.13815177|117.94453438|2544|1 +638885.55696732|220715.69173824|117.93727899|2545|1 +638880.36737916|220720.28515699|117.7728887|2546|1 +638875.22507519|220724.8388773|117.79740818|2547|1 +638870.03301937|220729.44095414|118.18996175|2548|1 +638864.89202069|220733.99316315|118.18381327|2549|1 +638859.70287993|220738.58707607|118.0959673|2550|1 +638854.56214609|220743.13956377|118.13409528|2551|1 +638849.37717138|220747.73001506|118.06581094|2552|1 +638844.23593732|220752.28099252|117.93572559|2553|1 +638839.04729138|220756.87797022|118.149406|2554|1 +638833.90631903|220761.42952098|118.08859099|2555|1 +638828.71629009|220766.02381398|117.96557499|2556|1 +638823.57514967|220770.57588498|117.93655345|2557|1 +638818.38823782|220775.17199765|118.2080258|2558|1 +638813.20247486|220779.76760531|118.52370018|2559|1 +638808.06540807|220784.31955838|118.79549809|2560|1 +638802.87610838|220788.91410007|118.7494729|2561|1 +638797.6870796|220793.50876996|118.73513886|2562|1 +638792.54521669|220798.06070398|118.63908872|2563|1 +638787.35178807|220802.6566706|118.40057257|2564|1 +638782.15907746|220807.25302078|118.25000471|2565|1 +638777.01317018|220811.8063007|118.06738294|2566|1 +638771.8211617|220816.40083252|118.04883519|2567|1 +638766.62225208|220820.99828976|117.75583854|2568|1 +638761.4295307|220825.59375323|117.76322415|2569|1 +638756.27647579|220830.15036024|117.45068446|2570|1 +638751.07718599|220834.74947702|117.27147644|2571|1 +638745.92786803|220839.30531706|117.17821683|2572|1 +638740.72524082|220843.90688914|116.95615552|2573|1 +638735.52812926|220848.50604779|116.94694676|2574|1 +638730.38358788|220853.06027212|117.07951568|2575|1 +638728.08090426|220851.22468862|117.039825|2576|1 +638733.18054041|220846.70442977|117.10759774|2577|1 +638738.32934367|220842.14116009|117.22320952|2578|1 +638743.47665107|220837.57900252|117.32032937|2579|1 +638748.62640244|220833.01606201|117.53640033|2580|1 +638753.7731769|220828.45496162|117.68399162|2581|1 +638758.9240369|220823.89257352|118.03175713|2582|1 +638764.07566488|220819.33059416|118.47349849|2583|1 +638769.21738388|220814.77310135|118.5468523|2584|1 +638774.35769564|220810.21642167|118.5829432|2585|1 +638779.44795241|220805.70344999|118.56420012|2586|1 +638784.58786093|220801.14741953|118.62560114|2587|1 +638789.72875278|220796.59153584|118.77469002|2588|1 +638794.86798956|220792.03639549|118.86150349|2589|1 +638800.00769137|220787.48149714|119.00477876|2590|1 +638805.14569784|220782.92686292|119.04200447|2591|1 +638810.28061155|220778.37206137|118.82945887|2592|1 +638815.41560265|220773.81675597|118.57962246|2593|1 +638820.55101959|220769.2608545|118.31123831|2594|1 +638825.68870775|220764.70556285|118.26803156|2595|1 +638830.82690802|220760.1506915|118.30002036|2596|1 +638835.96517972|220755.59619245|118.36971858|2597|1 +638841.10296088|220751.04082156|118.32712574|2598|1 +638846.28938559|220746.44214031|118.26635724|2599|1 +638851.42765225|220741.88997914|118.53675988|2600|1 +638856.56082978|220737.33941798|118.55733541|2601|1 +638861.6983886|220732.78541099|118.61563894|2602|1 +638866.83681715|220728.22823686|118.46793603|2603|1 +638871.97640136|220723.66894961|118.22671306|2604|1 +638877.16385637|220719.0699534|118.2179973|2605|1 +638882.30403035|220714.51159991|118.10230181|2606|1 +638887.44308505|220709.95642179|118.17426965|2607|1 +638892.58170876|220705.40228061|118.30268997|2608|1 +638897.72016371|220700.84850784|118.45004872|2609|1 +638902.86011794|220696.29217237|118.49141372|2610|1 +638908.04402679|220691.70069188|118.85966174|2611|1 +638913.13181582|220687.19338821|119.1432636|2612|1 +638923.40814068|220678.08687681|119.48356909|2613|1 +638928.54774303|220673.5316568|119.59469742|2614|1 +638933.69127343|220668.97106795|119.54367717|2615|1 +638938.83944268|220664.40448495|119.33052697|2616|1 +638943.98939853|220659.83610342|119.09892204|2617|1 +638949.14468451|220655.26125792|118.71775384|2618|1 +638954.25350553|220650.72747849|118.32776756|2619|1 +638959.40893143|220646.15396654|118.07197801|2620|1 +638964.57085841|220641.57280916|117.65420733|2621|1 +638969.73504872|220636.98958095|117.23053932|2622|1 +638974.84147704|220632.46148273|117.14713029|2623|1 +638980.00105893|220627.88551167|116.97366146|2624|1 +638985.10213586|220623.3653047|117.12141088|2625|1 +638990.24933587|220618.8052203|117.3540297|2626|1 +638995.39697215|220614.24475182|117.58690898|2627|1 +639000.50006503|220609.72269025|117.72874246|2628|1 +639005.65370613|220605.15552874|117.84353569|2629|1 +639010.81221746|220600.58296876|117.8650786|2630|1 +639015.92999044|220596.04471769|117.73297477|2631|1 +639021.09418785|220591.46632801|117.6865031|2632|1 +639026.21714333|220586.92298295|117.51114601|2633|1 +639031.33887915|220582.38144432|117.39827825|2634|1 +639036.52039335|220577.78475517|117.09717975|2635|1 +639041.59785271|220573.28224876|116.96740137|2636|1 +639046.77280997|220568.69376591|116.87257906|2637|1 +639045.75084512|220566.18614861|116.88767584|2638|1 +639040.66693771|220570.68434668|117.0477036|2639|1 +639035.48845166|220575.26609113|117.18557453|2640|1 +639030.35755705|220579.80637917|117.38465115|2641|1 +639025.22621827|220584.34764108|117.63378063|2642|1 +639020.10286742|220588.88031003|117.75215504|2643|1 +639014.98002552|220593.41282463|117.89560703|2644|1 +639009.86150901|220597.9407886|117.97683944|2645|1 +639004.69670456|220602.50950215|118.03536622|2646|1 +638999.58828074|220607.02643282|117.93601395|2647|1 +638994.48364025|220611.53915225|117.76185679|2648|1 +638989.3791712|220616.0518655|117.60021052|2649|1 +638984.27556548|220620.56374302|117.43235996|2650|1 +638979.12403118|220625.11804062|117.26102124|2651|1 +638973.96474362|220629.68210545|117.33959335|2652|1 +638968.85378114|220634.20390275|117.46541848|2653|1 +638963.68569933|220638.78002978|117.91275951|2654|1 +638958.57463841|220643.30314872|118.14497836|2655|1 +638953.46145023|220647.82966716|118.50837085|2656|1 +638948.29963672|220652.40011017|118.94398235|2657|1 +638943.19144865|220656.92163207|119.25769406|2658|1 +638938.03715191|220661.48361739|119.53769613|2659|1 +638932.93562726|220665.99742876|119.69549147|2660|1 +638927.83797559|220670.50629689|119.72215036|2661|1 +638922.69514593|220675.05364967|119.61544038|2662|1 +638917.60193066|220679.55656556|119.46729099|2663|1 +638912.46063844|220684.10190574|119.30466803|2664|1 +638907.36919524|220688.60216907|119.06286835|2665|1 +638902.27814236|220693.10164774|118.7835267|2666|1 +638897.13574162|220697.6490003|118.70873112|2667|1 +638892.0441156|220702.14927842|118.45441125|2668|1 +638886.9493937|220706.65563416|118.48746976|2669|1 +638881.85684939|220711.15774529|118.32054008|2670|1 +638876.7623009|220715.66474535|118.42226431|2671|1 +638871.66731905|220720.17422485|118.70518714|2672|1 +638866.52609654|220724.72156145|118.71848868|2673|1 +638861.43361122|220729.22586413|118.74525919|2674|1 +638856.34130243|220733.73088019|118.84697412|2675|1 +638851.24950396|220738.23327753|118.76116523|2676|1 +638846.16191373|220742.73390285|118.84409057|2677|1 +638841.06960875|220747.2361707|118.70818231|2678|1 +638835.92934073|220751.78332262|118.77830841|2679|1 +638830.83710485|220756.28640113|118.71743758|2680|1 +638825.69636434|220760.83266837|118.67533774|2681|1 +638820.60457285|220765.33644257|118.70823812|2682|1 +638815.51346637|220769.84040762|118.80985073|2683|1 +638810.37414723|220774.38716726|118.9180862|2684|1 +638805.28454147|220778.89088759|119.11346071|2685|1 +638800.1952336|220783.39427753|119.30253792|2686|1 +638795.05609692|220787.94044894|119.3736221|2687|1 +638789.96471836|220792.44357509|119.3814914|2688|1 +638784.82232453|220796.99038641|119.25911723|2689|1 +638779.72609558|220801.4952764|119.04832037|2690|1 +638774.63138619|220806.00019773|118.95622348|2691|1 +638769.48732766|220810.5487142|118.85300167|2692|1 +638764.389603|220815.05544035|118.68599758|2693|1 +638759.29313709|220819.5620617|118.60643948|2694|1 +638754.14719978|220824.1123908|118.51612854|2695|1 +638749.04062253|220828.62428779|118.11805901|2696|1 +638743.93295684|220833.13735741|117.73876048|2697|1 +638738.82481219|220837.65129239|117.396976|2698|1 +638733.72101779|220842.16354856|117.24259442|2699|1 +638728.62087531|220846.67423227|117.23188808|2700|1 +638723.51491557|220851.188342|117.07128361|2701|1 +638716.06736001|220854.48924784|117.25667731|2702|1 +638721.21621765|220849.92089061|117.3121159|2703|1 +638726.36584544|220845.35242803|117.41778408|2704|1 +638731.51409587|220840.78504547|117.51123903|2705|1 +638736.66350815|220836.21742139|117.67366665|2706|1 +638741.77130577|220831.68985711|118.11321279|2707|1 +638746.97424822|220827.0779498|118.54904752|2708|1 +638752.11849056|220822.51434654|118.66231525|2709|1 +638757.21606214|220817.99333676|118.88366963|2710|1 +638762.41092467|220813.38680345|119.16448096|2711|1 +638767.55267598|220808.82555957|119.29097581|2712|1 +638772.69430754|220804.26478354|119.44894788|2713|1 +638777.8336904|220799.70513652|119.53217088|2714|1 +638783.02162427|220795.10289803|119.65207077|2715|1 +638788.11190333|220790.58713887|119.76801742|2716|1 +638793.2955106|220785.98637175|119.68237596|2717|1 +638798.43136153|220781.4282854|119.62910469|2718|1 +638803.56547428|220776.87002202|119.42604691|2719|1 +638808.69863245|220772.31116994|119.0982151|2720|1 +638813.83474713|220767.75235818|119.00182079|2721|1 +638818.9710822|220763.19342078|118.91188192|2722|1 +638824.15745175|220758.59252812|119.02831225|2723|1 +638829.24547201|220754.07648079|118.94513577|2724|1 +638834.3824233|220749.51772729|118.91832805|2725|1 +638839.56778292|220744.91522616|118.8170224|2726|1 +638844.65671297|220740.39987993|118.86535443|2727|1 +638849.78960327|220735.84659926|119.00162545|2728|1 +638854.9265147|220731.28839337|119.01940115|2729|1 +638860.06354112|220726.73015984|119.04363228|2730|1 +638865.20082826|220722.1714058|119.04308347|2731|1 +638870.33967743|220717.60868778|118.81778515|2732|1 +638875.43068796|220713.08877673|118.62909861|2733|1 +638880.56877076|220708.53019035|118.70408023|2734|1 +638885.70706471|220703.97134306|118.773025|2735|1 +638890.79814201|220699.45324308|118.74698933|2736|1 +638895.98206711|220694.85708176|119.08650416|2737|1 +638901.1219725|220690.29588459|119.07488625|2738|1 +638916.48705663|220676.66664972|119.55780657|2739|1 +638921.62500856|220672.10927617|119.7281221|2740|1 +638926.76443833|220667.54987735|119.83619944|2741|1 +638931.90647877|220662.98701407|119.84458034|2742|1 +638937.0028099|220658.46362249|119.7632363|2743|1 +638942.15140218|220653.89266394|119.57219642|2744|1 +638947.25795789|220649.3566948|119.18509369|2745|1 +638952.4157382|220644.77501426|118.76976938|2746|1 +638957.5749646|220640.192267|118.373523|2747|1 +638962.68651982|220635.65216041|118.01192575|2748|1 +638967.84267036|220631.07466273|117.8347176|2749|1 +638972.95426122|220626.53574424|117.57955127|2750|1 +638978.05893033|220622.00540536|117.56787754|2751|1 +638983.20770219|220617.43769152|117.70966452|2752|1 +638988.30698758|220612.91428606|117.89165378|2753|1 +638993.4092816|220608.38749187|118.01130253|2754|1 +638998.51185627|220603.86059732|118.14348077|2755|1 +639003.56749291|220599.37502845|118.25290687|2756|1 +639008.72745451|220594.7953965|118.22093666|2757|1 +639013.84577484|220590.2511725|118.06027638|2758|1 +639018.91527605|220585.75066008|117.93893471|2759|1 +639024.03518147|220581.20546719|117.8158536|2760|1 +639029.11368172|220576.69561525|117.5760445|2761|1 +639034.24113087|220572.14280133|117.37217747|2762|1 +639039.37116609|220567.58755857|117.15605069|2763|1 +639044.45173366|220563.07673437|116.9911581|2764|1 +639047.26735913|220557.36137313|116.89173142|2765|1 +639042.03161413|220561.99972166|117.15010686|2766|1 +639036.85709808|220566.58152868|117.20848481|2767|1 +639031.6764378|220571.17056318|117.42306749|2768|1 +639026.49355736|220575.76256351|117.72535662|2769|1 +639021.27167697|220580.38729056|117.8676924|2770|1 +639016.09862825|220584.9691627|118.0462586|2771|1 +639010.87858882|220589.59269654|118.22715955|2772|1 +639005.71095933|220594.16927436|118.36298409|2773|1 +639000.5526596|220598.73545207|118.31205686|2774|1 +638995.34790083|220603.34246536|118.23254528|2775|1 +638990.14624839|220607.94609217|118.09741837|2776|1 +638984.99246336|220612.50777803|118.00395412|2777|1 +638979.84195493|220617.06577864|117.84214972|2778|1 +638974.64118358|220621.66906077|117.74578332|2779|1 +638969.48144976|220626.23886798|117.90293683|2780|1 +638964.27522071|220630.84962954|118.03845441|2781|1 +638959.06712474|220635.46325487|118.28065407|2782|1 +638953.90319394|220640.04013706|118.73239484|2783|1 +638948.69358587|220644.65717424|119.15665816|2784|1 +638943.48649785|220649.27177384|119.56275512|2785|1 +638938.33320099|220653.83717216|119.83465534|2786|1 +638933.1381628|220658.43696726|119.87950851|2787|1 +638927.94439743|220663.03542174|119.90613019|2788|1 +638922.80128146|220667.58824501|119.86679298|2789|1 +638917.61178836|220672.18121202|119.74432579|2790|1 +638912.42159785|220676.77543875|119.67854363|2791|1 +638907.28100223|220681.32524926|119.57139647|2792|1 +638902.09330191|220685.91592333|119.38771429|2793|1 +638896.90335559|220690.51051403|119.37315701|2794|1 +638891.71655884|220695.09974986|119.13412926|2795|1 +638886.52922019|220699.68983007|118.92678336|2796|1 +638881.38824355|220704.24126501|118.93362017|2797|1 +638871.01018219|220713.42984551|118.99579324|2798|1 +638865.86974174|220717.98223613|119.12846448|2799|1 +638860.72985162|220722.53442173|119.28635283|2800|1 +638855.54267944|220727.12593282|119.21877542|2801|1 +638850.35552145|220731.71750548|119.1579046|2802|1 +638845.26954555|220736.21900958|119.06089637|2803|1 +638840.08173924|220740.81030224|118.92563924|2804|1 +638834.9428343|220745.36069456|119.00351372|2805|1 +638829.80391755|220749.91038512|119.01910349|2806|1 +638824.61675397|220754.50311124|119.05991969|2807|1 +638819.47770446|220759.05249114|119.0385163|2808|1 +638814.38730286|220763.55912125|119.04830177|2809|1 +638809.20125609|220768.15200176|119.19007014|2810|1 +638804.1127886|220772.65876474|119.36248787|2811|1 +638798.97943404|220777.20815637|119.78547685|2812|1 +638793.84276092|220781.75707002|119.90868818|2813|1 +638788.70657442|220786.30555242|120.03208555|2814|1 +638783.61748955|220790.81129135|120.06720906|2815|1 +638778.47780459|220795.36066514|119.99716668|2816|1 +638773.38543483|220799.86774219|119.89484714|2817|1 +638768.24464815|220804.41809146|119.82511172|2818|1 +638763.14989186|220808.92671289|119.67288815|2819|1 +638758.05309817|220813.43656801|119.47066753|2820|1 +638752.90493659|220817.9910994|119.19518612|2821|1 +638747.80080296|220822.50524948|118.79942344|2822|1 +638742.70033499|220827.01828479|118.59108225|2823|1 +638737.55045889|220831.57519187|118.39107545|2824|1 +638732.43632018|220836.09614047|117.81436532|2825|1 +638727.33327664|220840.61194979|117.64994712|2826|1 +638722.23059365|220845.12793837|117.52926587|2827|1 +638717.1782009|220849.60025786|117.48724975|2828|1 +638712.0803603|220854.11408438|117.55383186|2829|1 +638709.48533748|220852.24862217|117.69046565|2830|1 +638714.62885804|220847.6864879|117.60039655|2831|1 +638719.82691379|220843.07822896|117.70173941|2832|1 +638724.92966762|220838.55541484|117.88942135|2833|1 +638730.13419401|220833.94459474|118.26635724|2834|1 +638735.28354498|220829.38075428|118.47724711|2835|1 +638740.43418379|220824.81678362|118.77585274|2836|1 +638745.58679081|220820.25250888|119.19966958|2837|1 +638750.78565817|220815.64700906|119.60329226|2838|1 +638755.88615088|220811.1287955|120.01685854|2839|1 +638761.07907952|220806.52719859|120.3025347|2840|1 +638766.2135124|220801.97271644|120.17763974|2841|1 +638771.34939407|220797.41781531|120.12794035|2842|1 +638776.53733612|220792.81914314|120.28354047|2843|1 +638781.6763925|220788.26401986|120.45933474|2844|1 +638786.81150258|220783.71009856|120.43537337|2845|1 +638791.99271607|220779.11359306|120.26088134|2846|1 +638797.12427061|220774.55945151|119.94370937|2847|1 +638802.2569531|220770.00474206|119.6642282|2848|1 +638807.43917171|220765.40664052|119.42829794|2849|1 +638812.57624257|220760.85214627|119.50555849|2850|1 +638817.71156377|220756.2969798|119.38927699|2851|1 +638822.89604477|220751.69903757|119.34191234|2852|1 +638828.03232745|220747.14417271|119.32615513|2853|1 +638833.16823841|220742.58813119|119.1793545|2854|1 +638838.3532316|220737.98946489|119.10808429|2855|1 +638843.49017208|220733.4360348|119.26802833|2856|1 +638848.62219743|220728.88638926|119.37813346|2857|1 +638853.80692062|220724.28926741|119.42041933|2858|1 +638864.08005845|220715.17956725|119.43572076|2859|1 +638869.21803622|220710.62157077|119.27808355|2860|1 +638874.35694693|220706.06246316|119.09567572|2861|1 +638879.49452729|220701.50726721|119.15091897|2862|1 +638884.63245677|220696.95161654|119.19388387|2863|1 +638889.71892677|220692.4447084|119.51044193|2864|1 +638894.85567383|220687.89133088|119.65990287|2865|1 +638899.99266658|220683.3375944|119.79707617|2866|1 +638905.12808401|220678.78647594|120.04065248|2867|1 +638910.21817886|220674.27334358|120.09503067|2868|1 +638915.35775139|220669.71603536|120.12026639|2869|1 +638920.49622887|220665.16063475|120.22693916|2870|1 +638925.63910619|220660.59917983|120.14646949|2871|1 +638930.73442606|220656.07984553|120.0637674|2872|1 +638935.83053287|220651.55988594|119.9873161|2873|1 +638940.97799448|220646.99359079|119.83868301|2874|1 +638946.03258535|220642.50831035|119.57850302|2875|1 +638951.1909832|220637.92895977|119.13677096|2876|1 +638956.30092406|220633.39330354|118.76096059|2877|1 +638961.41297571|220628.85570894|118.37901105|2878|1 +638966.56918035|220624.28125015|118.19398011|2879|1 +638971.62709982|220619.79445016|118.08352152|2880|1 +638976.73145281|220615.26536306|118.07017347|2881|1 +638981.83159211|220610.74165884|118.20038904|2882|1 +638986.88464626|220606.25942098|118.30814082|2883|1 +638991.98673617|220601.73384655|118.4258548|2884|1 +638997.09141019|220597.20547887|118.49997135|2885|1 +639002.14801788|220592.71980503|118.58247811|2886|1 +639007.25978545|220588.18379724|118.53813654|2887|1 +639012.33113158|220583.68184176|118.33986917|2888|1 +639017.40628541|220579.17600737|118.09789276|2889|1 +639022.47981267|220574.67248072|117.93065612|2890|1 +639027.55663703|220570.16566724|117.73219342|2891|1 +639032.68763532|220565.6100501|117.46375346|2892|1 +639037.71566375|220561.1473546|117.34136068|2893|1 +639042.79394123|220556.6401845|117.22377693|2894|1 +639043.92046741|220551.38411184|117.16515713|2895|1 +639038.7292312|220555.98544873|117.48977983|2896|1 +639033.55564301|220560.56766585|117.51577829|2897|1 +639028.37149153|220565.16208112|117.78525076|2898|1 +639023.19430753|220569.74916727|117.95544536|2899|1 +639017.96928985|220574.3788853|118.14643873|2900|1 +639012.84145698|220578.92302906|118.38438748|2901|1 +639007.61966526|220583.55004586|118.58892424|2902|1 +639002.40318561|220588.17142045|118.71303784|2903|1 +638997.24271289|220592.74154723|118.69838754|2904|1 +638992.03440059|220597.35417214|118.69257393|2905|1 +638986.83012334|220601.96235491|118.61247634|2906|1 +638981.67617982|220606.52569515|118.51167299|2907|1 +638976.43117482|220611.1679802|118.26046921|2908|1 +638971.22690623|220615.77697879|118.25060933|2909|1 +638966.06843789|220620.34674375|118.35698444|2910|1 +638960.80954497|220625.00717792|118.6070255|2911|1 +638955.59855942|220629.62607686|118.9359084|2912|1 +638950.38798242|220634.2452027|119.31530926|2913|1 +638945.17867073|220638.86350533|119.7202621|2914|1 +638939.92739437|220643.51693336|119.94823003|2915|1 +638934.77727183|220648.07948559|120.06981355|2916|1 +638929.52916269|220652.72990717|120.28034066|2917|1 +638924.33302593|220657.33314621|120.39408278|2918|1 +638919.13981198|220661.93270935|120.41464901|2919|1 +638913.94838922|220666.53003914|120.37947899|2920|1 +638908.71176941|220671.16558652|120.18660666|2921|1 +638903.52056754|220675.76317133|120.1899739|2922|1 +638898.33167834|220680.35732989|120.07511557|2923|1 +638893.14332963|220684.95072687|119.93572845|2924|1 +638887.95552917|220689.54320819|119.75930165|2925|1 +638882.76873938|220694.13363697|119.48335515|2926|1 +638877.5316565|220698.77051424|119.36901772|2927|1 +638872.34392865|220703.36244477|119.15030505|2928|1 +638867.15253493|220707.96395213|119.47569049|2929|1 +638861.91448139|220712.60542385|119.68191087|2930|1 +638856.7261609|220717.20145871|119.77089167|2931|1 +638851.53879563|220721.7940379|119.63534618|2932|1 +638846.30272021|220726.43116371|119.61842625|2933|1 +638841.1193628|220731.02020572|119.48393186|2934|1 +638835.93106963|220735.61333668|119.32484358|2935|1 +638830.74325349|220740.20874058|119.39742534|2936|1 +638825.50727087|220744.84690447|119.47663927|2937|1 +638820.36878706|220749.39925857|119.60643626|2938|1 +638815.1332516|220754.03689759|119.67429272|2939|1 +638809.94563806|220758.63120131|119.66754893|2940|1 +638804.75872116|220763.22576758|119.73624255|2941|1 +638799.57292902|220767.82036036|119.89288446|2942|1 +638794.3891781|220772.41467583|120.18119302|2943|1 +638789.25524637|220776.96541894|120.51917307|2944|1 +638784.0707745|220781.55863978|120.65826253|2945|1 +638778.88391747|220786.15230972|120.65405813|2946|1 +638773.74235981|220790.70408662|120.49920216|2947|1 +638768.60131634|220795.25613607|120.40705876|2948|1 +638763.41528789|220799.85025143|120.50395536|2949|1 +638758.27540426|220804.40237064|120.50608547|2950|1 +638753.13036023|220808.95681768|120.31474793|2951|1 +638747.98141416|220813.51341834|120.01121236|2952|1 +638742.82347344|220818.07472993|119.42680035|2953|1 +638737.67089096|220822.63434634|119.10505191|2954|1 +638732.51516088|220827.19610186|118.72735328|2955|1 +638727.40859777|220831.71514013|118.42267359|2956|1 +638722.25783125|220836.27540882|118.29525786|2957|1 +638717.14597098|220840.79827243|117.9158477|2958|1 +638712.03880091|220845.319087|117.71759894|2959|1 +638706.89174946|220849.87869998|117.78434848|2960|1 +638701.79912905|220854.39302463|118.00462385|2961|1 +638697.0337551|220854.42903638|117.95216183|2962|1 +638702.17877597|220849.86355311|117.94658077|2963|1 +638707.32391313|220845.29826011|117.96622612|2964|1 +638712.52433333|220840.68651102|118.20218428|2965|1 +638717.67488877|220836.11898037|118.4410632|2966|1 +638722.81985807|220831.55486462|118.54905682|2967|1 +638728.01789918|220826.94581723|118.83627708|2968|1 +638733.17064217|220822.37877397|119.28220424|2969|1 +638738.37052147|220817.77015217|119.74524667|2970|1 +638743.57037198|220813.16236964|120.27751292|2971|1 +638748.71030981|220808.60330465|120.4371221|2972|1 +638753.90117338|220804.00077349|120.73909497|2973|1 +638759.08666787|220799.40087969|120.86035293|2974|1 +638764.1707153|220794.88879565|120.80349117|2975|1 +638769.40107053|220790.24773971|120.80550035|2976|1 +638774.53613524|220785.69241291|120.91656356|2977|1 +638779.72037587|220781.09444031|121.10811504|2978|1 +638784.89828271|220776.49790103|120.94391078|2979|1 +638790.07462634|220771.90113862|120.64265415|2980|1 +638795.20380993|220767.34654598|120.37364678|2981|1 +638800.38229634|220762.74854759|120.12935422|2982|1 +638805.56305679|220758.15059062|120.06048387|2983|1 +638810.69597841|220753.59576417|120.05477258|2984|1 +638815.92593437|220748.95523836|120.07404586|2985|1 +638821.10641778|220744.35665287|119.93147753|2986|1 +638826.23878365|220739.80056006|119.77672388|2987|1 +638831.42009519|220735.20117022|119.6286582|2988|1 +638836.60223649|220730.60368913|119.70602108|2989|1 +638841.78427992|220726.00732441|119.87131364|2990|1 +638846.96131935|220721.41421789|119.93698419|2991|1 +638852.14265654|220716.81767604|120.03439239|2992|1 +638857.27616086|220712.26153538|119.96262918|2993|1 +638862.45792214|220707.66403366|120.01078448|2994|1 +638867.64222222|220703.06017107|119.70945343|2995|1 +638872.77778094|220698.50155061|119.58231675|2996|1 +638877.95986443|220693.90494293|119.73166607|2997|1 +638883.14006227|220689.31198979|120.0501403|2998|1 +638888.27257671|220684.76010049|120.26749491|2999|1 +638893.45547118|220680.16182557|120.33681174|3000|1 +638898.63800144|220675.56438558|120.45028411|3001|1 +638903.72425339|220671.0519404|120.53534886|3002|1 +638908.90908165|220666.45129576|120.54954337|3003|1 +638914.04407917|220661.89595912|120.66194604|3004|1 +638919.1826362|220657.33563748|120.61842302|3005|1 +638924.32266984|220652.77364036|120.54390649|3006|1 +638929.51324527|220648.16629493|120.42222996|3007|1 +638934.60828684|220643.64340381|120.28322421|3008|1 +638939.75523674|220639.07351737|120.05961881|3009|1 +638944.90378341|220634.50214292|119.83005096|3010|1 +638950.0534427|220629.92992957|119.61326376|3011|1 +638955.20818782|220625.35181648|119.27817657|3012|1 +638960.31787303|220620.81300885|118.89021808|3013|1 +638965.42520841|220616.27782531|118.63343324|3014|1 +638970.57690124|220611.70700612|118.56744644|3015|1 +638975.67813488|220607.18462759|118.61667144|3016|1 +638980.77840937|220602.66368618|118.71585628|3017|1 +638985.92821479|220598.09882061|118.81270638|3018|1 +638990.9836431|220593.61698929|118.85821997|3019|1 +638996.09089464|220589.08861816|118.85151339|3020|1 +639001.20094292|220584.55732925|118.80746948|3021|1 +639006.31756049|220580.01882785|118.64505116|3022|1 +639011.43558338|220575.47915521|118.48901386|3023|1 +639016.45919226|220571.022829|118.30526657|3024|1 +639021.58550081|220566.47464091|118.04955143|3025|1 +639026.66070423|220561.97278613|117.88269617|3026|1 +639031.73613746|220557.47109336|117.74693674|3027|1 +639036.82477306|220552.9551412|117.39304135|3028|1 +639041.91848281|220548.43410451|116.98932565|3029|1 +639046.95283587|220543.96846128|116.82328894|3030|1 +639043.70875054|220543.17090186|116.75178619|3031|1 +639038.6706422|220547.63016292|116.89068031|3032|1 +639033.52437348|220552.18809289|117.26853708|3033|1 +639028.42185372|220556.7089972|117.79487809|3034|1 +639023.28469283|220561.25790532|118.09211636|3035|1 +639018.20955528|220565.74912223|118.15734972|3036|1 +639013.08250078|220570.28754409|118.32394453|3037|1 +639007.95412282|220574.8279485|118.55928878|3038|1 +639002.82684898|220579.36759757|118.81351563|3039|1 +638997.70810699|220583.89784964|118.91198424|3040|1 +638992.59186519|220588.42559961|118.9856357|3041|1 +638987.47823109|220592.95067376|119.02818203|3042|1 +638982.3228401|220597.51102457|118.92352774|3043|1 +638977.16643676|220602.07285925|118.86907514|3044|1 +638972.06055814|220606.58959988|118.78728462|3045|1 +638966.90339242|220611.15300316|118.80818571|3046|1 +638961.7411888|220615.72307881|119.01662922|3047|1 +638956.62804225|220620.25008233|119.25982416|3048|1 +638951.46317464|220624.82480457|119.66231203|3049|1 +638946.25701071|220629.43396611|119.88111772|3050|1 +638941.14826007|220633.95730953|120.14365105|3051|1 +638935.94621295|220638.56231561|120.31960346|3052|1 +638930.794538|220643.12242757|120.47371529|3053|1 +638925.64334096|220647.68248776|120.65932293|3054|1 +638920.44734915|220652.28089629|120.73040711|3055|1 +638915.29946089|220656.83744568|120.86669674|3056|1 +638910.15495047|220661.38953489|120.87831466|3057|1 +638904.9637287|220665.98226726|120.82569451|3058|1 +638899.82160709|220670.53136069|120.76292612|3059|1 +638894.63169187|220675.12258322|120.67987056|3060|1 +638889.44247737|220679.7128136|120.56603542|3061|1 +638884.25387882|220684.3020675|120.41516061|3062|1 +638879.11409426|220688.84771409|120.23488288|3063|1 +638873.92565521|220693.43661635|120.06601843|3064|1 +638868.73726863|220698.02525252|119.87885738|3065|1 +638863.59489503|220702.57747372|120.06186053|3066|1 +638858.40434718|220707.17370745|120.35663383|3067|1 +638853.21572635|220711.76536962|120.40815637|3068|1 +638848.02786217|220716.35415455|120.27264809|3069|1 +638842.83970518|220720.94571234|120.35004817|3070|1 +638837.6559455|220725.53028786|120.16546372|3071|1 +638832.46702305|220730.11870802|119.91877131|3072|1 +638827.23024854|220734.75343836|120.0035477|3073|1 +638822.04245721|220739.34528682|120.13282379|3074|1 +638816.93747496|220744.0150583|133.10553696|3075|1 +638811.66860022|220748.52835671|120.46771564|3076|1 +638806.48077302|220753.11870463|120.46708312|3077|1 +638801.29260428|220757.70907156|120.44189391|3078|1 +638796.05708387|220762.34266876|120.52391698|3079|1 +638790.87143192|220766.93324902|120.70595274|3080|1 +638785.68871645|220771.52329507|121.06342001|3081|1 +638780.50708202|220776.11231089|121.41504576|3082|1 +638775.31946311|220780.70214904|121.3859219|3083|1 +638770.12862078|220785.29308253|121.20727198|3084|1 +638764.94026697|220789.88372677|121.19153337|3085|1 +638759.75055613|220794.47506909|121.1325136|3086|1 +638754.56071834|220799.06675105|121.0926927|3087|1 +638749.41907115|220803.6158579|121.06420136|3088|1 +638744.220656|220808.21176006|120.73780202|3089|1 +638739.01877652|220812.80986458|120.33691406|3090|1 +638733.81613467|220817.4090147|119.96778237|3091|1 +638728.65636881|220821.96859574|119.46589572|3092|1 +638723.44734294|220826.5723108|119.00398811|3093|1 +638718.28812813|220831.13303284|118.64021423|3094|1 +638713.08328162|220835.73578094|118.41033943|3095|1 +638707.93424241|220840.29191745|118.42194805|3096|1 +638702.7736703|220844.8552853|118.14033677|3097|1 +638697.56507899|220849.46228795|117.91181073|3098|1 +638692.41445589|220854.02112413|117.95558489|3099|1 +638688.95510359|220853.27528196|118.11489641|3100|1 +638694.09966903|220848.70928754|118.08522374|3101|1 +638699.25053455|220844.13992265|118.2431307|3102|1 +638704.39970824|220839.57191602|118.38882442|3103|1 +638709.54421992|220835.00685863|118.43487752|3104|1 +638714.69980795|220830.43620343|118.83717005|3105|1 +638719.8509702|220825.868506|119.15856503|3106|1 +638725.00423036|220821.30035897|119.59891112|3107|1 +638730.20371619|220816.69107639|120.0250255|3108|1 +638735.35210184|220812.12673563|120.42232297|3109|1 +638740.49716822|220807.5646005|120.75741017|3110|1 +638745.68952618|220802.96068442|121.10358508|3111|1 +638750.8270932|220798.40291159|121.2456046|3112|1 +638755.96241676|220793.84639783|121.32536733|3113|1 +638761.14631054|220789.2472615|121.44152792|3114|1 +638766.27959603|220784.69210804|121.48433469|3115|1 +638771.46175152|220780.09422451|121.57628275|3116|1 +638776.64386019|220775.49675653|121.69990336|3117|1 +638781.77083633|220770.94350755|121.43110063|3118|1 +638786.94499609|220766.34680984|121.02429674|3119|1 +638792.12206323|220761.74916537|120.75539168|3120|1 +638797.25323702|220757.19427991|120.66235531|3121|1 +638802.43352348|220752.59651645|120.62541796|3122|1 +638807.61413164|220747.99892338|120.62641325|3123|1 +638812.74573628|220743.44395528|120.55919861|3124|1 +638817.92547852|220738.84536293|120.4109562|3125|1 +638823.10577008|220734.24665382|120.29438634|3126|1 +638828.23852084|220729.69230358|120.36548912|3127|1 +638838.93973287|220720.19763278|120.52531224|3128|1 +638843.77676493|220715.90446753|120.51926609|3129|1 +638848.95758316|220711.30642083|120.49848592|3130|1 +638854.13882976|220706.70755914|120.44065677|3131|1 +638859.27217498|220702.15085028|120.35727565|3132|1 +638864.45504294|220697.54930242|120.19399227|3133|1 +638869.68549106|220692.90796417|120.23232489|3134|1 +638879.99864841|220683.75960467|120.59405237|3135|1 +638885.18017622|220679.16251872|120.70745033|3136|1 +638890.31287976|220674.60912656|120.8570694|3137|1 +638895.49449213|220670.01211722|120.98372239|3138|1 +638900.67607752|220665.41528412|121.12332345|3139|1 +638905.81130858|220660.8582555|121.15509832|3140|1 +638910.99646903|220656.25641407|121.1393132|3141|1 +638916.18283447|220651.65321384|121.0990086|3142|1 +638921.32403445|220647.08869055|120.94434797|3143|1 +638926.51378921|220642.48168201|120.83619621|3144|1 +638931.65988194|220637.91157214|120.57600692|3145|1 +638936.80582089|220633.34233602|120.37854881|3146|1 +638941.99828778|220628.73330581|120.30290677|3147|1 +638947.14936174|220624.1584946|120.0187282|3148|1 +638952.30495953|220619.57856495|119.6412249|3149|1 +638957.45434803|220615.00717368|119.51996695|3150|1 +638962.61001184|220610.42845086|119.24922014|3151|1 +638967.76203307|220605.85295213|119.12239042|3152|1 +638972.91182565|220601.27958659|119.08949934|3153|1 +638978.0613576|220596.70689173|119.09433626|3154|1 +638983.16154475|220592.17848456|119.14552394|3155|1 +638988.31294321|220587.60421775|119.15709535|3156|1 +638993.42061858|220583.06762346|119.07755586|3157|1 +638998.57978626|220578.48499194|118.96492995|3158|1 +639003.69505158|220573.9404164|118.77973158|3159|1 +639008.8146425|220569.39134263|118.53856442|3160|1 +639013.93441542|220564.84255064|118.33496714|3161|1 +639019.05031855|220560.29859127|118.24996751|3162|1 +639024.13111862|220555.78287709|117.92347515|3163|1 +639029.32174307|220551.16750862|117.40122692|3164|1 +639034.41001143|220546.64458912|117.02513749|3165|1 +639039.53680978|220542.09030435|116.88476438|3166|1 +639044.6128231|220537.58186026|116.81403368|3167|1 +639047.1975536|220531.27729281|116.36347423|3168|1 +639042.14230184|220535.75722105|116.76529237|3169|1 +639037.00531397|220540.30664167|116.91985069|3170|1 +639031.91484526|220544.81578354|117.15445079|3171|1 +639026.7728648|220549.37172264|117.48381739|3172|1 +639021.67831975|220553.8864977|117.88680755|3173|1 +639016.59136074|220558.39328222|118.18384118|3174|1 +639011.45892996|220562.94009051|118.45758316|3175|1 +639006.33538454|220567.47723996|118.58188279|3176|1 +639001.25755849|220571.97511293|118.81043674|3177|1 +638996.1315056|220576.51612679|119.07212362|3178|1 +638991.01384586|220581.04784237|119.17804295|3179|1 +638985.89940957|220585.57618076|119.24042066|3180|1 +638980.78846481|220590.10075478|119.24674587|3181|1 +638975.72713624|220594.58139672|119.25690341|3182|1 +638970.56905023|220599.14801338|119.2846041|3183|1 +638965.45734934|220603.67467805|119.40973159|3184|1 +638960.34494183|220608.2027214|119.59735772|3185|1 +638955.23541632|220612.72768953|119.74137713|3186|1 +638950.12685274|220617.25195625|119.89795393|3187|1 +638944.96519116|220621.82571466|120.25758851|3188|1 +638939.85887193|220626.34829598|120.43941034|3189|1 +638934.7547106|220630.86858907|120.59007121|3190|1 +638929.60161406|220635.43305612|120.8067933|3191|1 +638924.49863964|220639.95297408|121.01386014|3192|1 +638919.39794107|220644.47035686|121.17726445|3193|1 +638914.25072666|220649.02849569|121.30089436|3194|1 +638909.10561944|220653.5840982|121.36859269|3195|1 +638903.9623491|220658.13740012|121.38029432|3196|1 +638898.81972219|220662.69013914|121.39224711|3197|1 +638893.72813436|220667.19609399|121.27505402|3198|1 +638888.54064422|220671.78634171|121.09820865|3199|1 +638883.40107157|220676.33466122|120.96711872|3200|1 +638878.30964042|220680.84078226|120.87519856|3201|1 +638873.1223944|220685.43067856|120.68681899|3202|1 +638867.98275516|220689.9794448|120.58760624|3203|1 +638857.70275156|220699.07972024|120.56475177|3204|1 +638852.5141825|220703.67447396|120.68400055|3205|1 +638847.42346551|220708.18087271|120.66772244|3206|1 +638842.23613462|220712.77199628|120.57516046|3207|1 +638837.04874922|220717.36481596|120.62052523|3208|1 +638831.9624828|220721.86720271|120.5983963|3209|1 +638826.7746278|220726.45843264|120.47565936|3210|1 +638821.6354168|220731.00782482|120.45976262|3211|1 +638816.49719542|220735.55843361|120.61906485|3212|1 +638811.31094702|220740.15154607|120.77239533|3213|1 +638806.17281011|220744.70097011|120.83848445|3214|1 +638801.03480066|220749.25028456|120.90475961|3215|1 +638795.84851541|220753.84246973|120.97794598|3216|1 +638790.66191836|220758.43456729|121.02034348|3217|1 +638785.575463|220762.94072898|121.29925725|3218|1 +638780.39452131|220767.5319402|121.6859786|3219|1 +638775.21133811|220772.12274758|121.87315825|3220|1 +638770.07228787|220776.67143857|121.80976664|3221|1 +638764.88446327|220781.26345093|121.75401179|3222|1 +638759.74626419|220785.81243909|121.7786429|3223|1 +638754.60483565|220790.36272659|121.67227708|3224|1 +638749.41384432|220794.95674332|121.54891693|3225|1 +638744.27017024|220799.50865605|121.41188316|3226|1 +638739.12365472|220804.06219388|121.20010961|3227|1 +638733.92117164|220808.6626006|120.75933563|3228|1 +638728.76716524|220813.22076533|120.3795348|3229|1 +638723.60903888|220817.78161793|119.91880851|3230|1 +638718.40438575|220822.38516278|119.57931228|3231|1 +638713.24678053|220826.94705868|119.24419718|3232|1 +638708.08516613|220831.51168682|118.84069542|3233|1 +638702.87575383|220836.11954397|118.50880804|3234|1 +638697.7666338|220840.63916058|118.31561014|3235|1 +638692.56918084|220845.23991473|118.38416423|3236|1 +638687.41852552|220849.79885585|118.42526878|3237|1 +638682.30696862|220854.3206461|118.25753915|3238|1 +638681.24461914|220850.84941948|118.3850293|3239|1 +638686.39121882|220846.28133541|118.40826514|3240|1 +638691.4935383|220841.75413409|118.56573491|3241|1 +638696.63976802|220837.1869047|118.63310768|3242|1 +638701.73972815|220832.66179103|118.79076348|3243|1 +638706.89801517|220828.0888149|119.26448435|3244|1 +638712.04801269|220823.52090815|119.5511465|3245|1 +638717.15048537|220818.99606623|119.91527384|3246|1 +638722.29974026|220814.42972897|120.27731758|3247|1 +638727.44883113|220809.86414543|120.68961882|3248|1 +638732.54898814|220805.34249154|121.14778712|3249|1 +638737.6950962|220800.77977924|121.57923142|3250|1 +638742.83009245|220796.22235968|121.63608387|3251|1 +638747.96755308|220791.66434375|121.82435183|3252|1 +638753.05312565|220787.15098086|121.90178912|3253|1 +638758.23607188|220782.55193707|122.03285115|3254|1 +638763.31937482|220778.03996973|122.06046812|3255|1 +638768.44965125|220773.48566104|122.03076755|3256|1 +638773.58211322|220768.93116324|122.14498406|3257|1 +638778.70878723|220764.37768869|121.92194607|3258|1 +638783.83538105|220759.82367172|121.64909706|3259|1 +638788.96246453|220755.26899532|121.3576817|3260|1 +638794.0936998|220750.7144405|121.37891766|3261|1 +638799.22387816|220746.15975688|121.31285644|3262|1 +638804.35413719|220741.60499693|121.24699057|3263|1 +638809.48322926|220737.04906851|121.00006561|3264|1 +638814.61404533|220732.49389294|120.9408319|3265|1 +638819.74448893|220727.93752526|120.75679625|3266|1 +638824.87590233|220723.3820427|120.71669629|3267|1 +638830.00775622|220718.82815061|120.8392844|3268|1 +638835.1349151|220714.2763652|120.79327782|3269|1 +638840.26628568|220709.7216065|120.80999311|3270|1 +638845.39746276|220705.16853601|120.95188241|3271|1 +638850.48106576|220700.65443625|120.83064305|3272|1 +638855.66156174|220696.05575688|120.81756476|3273|1 +638860.79381079|220691.50006014|120.82256911|3274|1 +638865.87711237|220686.98895945|120.92651646|3275|1 +638871.05783363|220682.39091916|120.98312707|3276|1 +638876.18871413|220677.8388714|121.18866843|3277|1 +638881.27315565|220673.32583686|121.21787601|3278|1 +638886.40530375|220668.77152541|121.32997171|3279|1 +638891.53678398|220664.21848197|121.49848269|3280|1 +638896.67007097|220659.66254711|121.56099993|3281|1 +638901.80263426|220655.10801373|121.68620184|3282|1 +638906.93856501|220650.5485172|121.64919938|3283|1 +638912.0758705|220645.9874174|121.58120339|3284|1 +638917.21663944|220641.42180611|121.39478649|3285|1 +638922.30988944|220636.89844034|121.21857364|3286|1 +638927.45418806|220632.32916619|120.98884767|3287|1 +638932.59972853|220627.75886333|120.76564224|3288|1 +638937.6970379|220623.23181732|120.58353206|3289|1 +638942.84323507|220618.66184743|120.43568963|3290|1 +638947.99392809|220614.08660003|120.18203018|3291|1 +638953.09539645|220609.55585828|120.00030138|3292|1 +638958.24491513|220604.9832515|119.87820626|3293|1 +638963.34850714|220600.4531179|119.72788955|3294|1 +638968.50134721|220595.87976263|119.59998083|3295|1 +638973.65443381|220591.30657418|119.50358652|3296|1 +638978.75751058|220586.77858608|119.47849963|3297|1 +638983.86400566|220582.24688408|119.39735093|3298|1 +638989.02240567|220577.66861189|119.2704933|3299|1 +638994.0835183|220573.1770129|119.17919637|3300|1 +638999.2474415|220568.59316515|118.99667691|3301|1 +639004.36520822|220564.05003205|118.79760959|3302|1 +639009.49209847|220559.49691483|118.44284914|3303|1 +639014.61496649|220554.9489586|118.21917863|3304|1 +639019.74999379|220550.38772112|117.79002257|3305|1 +639024.88313364|220545.82921875|117.44835902|3306|1 +639030.01765145|220541.26972706|117.12562458|3307|1 +639035.10197384|220536.75558197|116.87271858|3308|1 +639040.23731567|220532.19619435|116.6188638|3309|1 +639045.3836672|220527.62515652|116.20955774|3310|1 +639046.5448922|220522.72713212|115.71131738|3311|1 +639041.38816355|220527.29606822|116.16975544|3312|1 +639036.18741438|220531.90359187|116.5921212|3313|1 +639031.04580719|220536.45692263|116.87062568|3314|1 +639025.86275288|220541.04579215|117.05090341|3315|1 +639020.66632543|220545.65027259|117.53699565|3316|1 +639015.48027856|220550.24364958|117.86778542|3317|1 +639010.29151191|220554.84074464|118.30500612|3318|1 +639005.1167943|220559.42233645|118.49332988|3319|1 +638999.93500751|220564.01264284|118.88158603|3320|1 +638994.75801157|220568.59802721|119.21415244|3321|1 +638989.59415527|220573.16855902|119.28519011|3322|1 +638984.42792342|220577.7423501|119.45013851|3323|1 +638979.26698489|220582.31030229|119.52186451|3324|1 +638974.10621602|220586.87849791|119.62512353|3325|1 +638968.94525741|220591.44740339|119.77237065|3326|1 +638963.7857802|220596.01499627|119.91995263|3327|1 +638958.58138105|220600.62161921|120.00202221|3328|1 +638953.47335183|220605.14358845|120.14740897|3329|1 +638948.26994808|220609.74995039|120.28025694|3330|1 +638943.11631984|220614.3122296|120.4166954|3331|1 +638937.96257453|220618.87523628|120.60337275|3332|1 +638932.80971359|220623.43769441|120.80907223|3333|1 +638927.65825272|220627.99891702|121.01505077|3334|1 +638922.50756299|220632.55976805|121.24628363|3335|1 +638917.30885404|220637.16370284|121.51903962|3336|1 +638912.16296592|220641.71916013|121.65726402|3337|1 +638907.01962093|220646.27144278|121.72078585|3338|1 +638901.87585488|220650.82495218|121.85324314|3339|1 +638896.73634225|220655.37231902|121.7922886|3340|1 +638891.59676093|220659.92012914|121.76278337|3341|1 +638886.45844284|220664.46613894|121.67727214|3342|1 +638881.32183298|220669.00925807|121.47949777|3343|1 +638876.18190144|220673.55885422|121.56931572|3344|1 +638871.04514882|220678.1025683|121.40941819|3345|1 +638865.90740053|220682.64854464|121.36218376|3346|1 +638860.77052671|220687.19268113|121.22768008|3347|1 +638855.63289878|220691.73902485|121.21832249|3348|1 +638850.54403864|220696.24198939|121.19759813|3349|1 +638845.3585617|220700.8304447|121.16273507|3350|1 +638840.22152903|220705.37696422|121.21021134|3351|1 +638835.13331412|220709.87768165|121.05220207|3352|1 +638830.00073518|220714.41925676|121.01874358|3353|1 +638824.8637987|220718.9657842|121.07292642|3354|1 +638819.72727477|220723.51247158|121.17103226|3355|1 +638814.59115683|220728.05897309|121.28184432|3356|1 +638809.50367465|220732.56211856|121.37405283|3357|1 +638804.36836287|220737.10821448|121.51011922|3358|1 +638799.23256249|220741.65367282|121.55887913|3359|1 +638794.14436839|220746.15592594|121.52618338|3360|1 +638789.00998284|220750.70159632|121.69394092|3361|1 +638783.87633987|220755.24699683|121.89314777|3362|1 +638778.79073516|220759.74918346|122.04176225|3363|1 +638773.65914158|220764.29354256|122.30369097|3364|1 +638768.57269329|220768.79525764|122.35233926|3365|1 +638763.48430677|220773.29753474|122.30719774|3366|1 +638758.34809645|220777.84284732|122.3132532|3367|1 +638753.2587271|220782.34592839|122.26190739|3368|1 +638748.11796113|220786.89328943|122.10577707|3369|1 +638743.02566905|220791.39812072|121.98576555|3370|1 +638737.93032186|220795.90458094|121.77827083|3371|1 +638732.83528359|220800.41138871|121.62073594|3372|1 +638727.73283821|220804.92199885|121.23830271|3373|1 +638722.62709489|220809.43483745|120.79967744|3374|1 +638717.51916635|220813.94946667|120.34859709|3375|1 +638712.41511255|220818.46281375|120.07244596|3376|1 +638707.30494517|220822.97989235|119.65891688|3377|1 +638702.19205979|220827.49906983|119.22046835|3378|1 +638697.08318905|220832.01683129|118.94445674|3379|1 +638691.97391161|220836.53769867|118.71852589|3380|1 +638686.86792437|220841.05711175|118.61128571|3381|1 +638681.8072037|220845.5357401|118.45113702|3382|1 +638676.706542|220850.05266381|118.52490941|3383|1 +638671.60299693|220854.57153211|118.54877777|3384|1 +638667.3972973|220854.64403251|118.7389805|3385|1 +638672.5424028|220850.07274887|118.71151235|3386|1 +638677.68325923|220845.5042302|118.60316526|3387|1 +638682.77708993|220840.9780661|118.54797782|3388|1 +638687.92668608|220836.40494426|118.69601559|3389|1 +638693.07880474|220831.83083487|118.9442521|3390|1 +638698.18281137|220827.30002886|119.2453506|3391|1 +638703.38493093|220822.68316689|119.62272367|3392|1 +638708.49050072|220818.15275147|120.06781367|3393|1 +638713.63457009|220813.58508462|120.26089064|3394|1 +638718.79067271|220809.01205699|120.88522588|3395|1 +638723.93966992|220804.44333874|121.34745905|3396|1 +638729.08087277|220799.87891867|121.59756522|3397|1 +638734.22033446|220795.31581358|121.82918875|3398|1 +638739.31038823|220790.79661046|122.06894204|3399|1 +638744.49551915|220786.19276421|122.28065047|3400|1 +638749.62869127|220781.63362487|122.38177008|3401|1 +638754.71329457|220777.1178752|122.50937185|3402|1 +638759.89311347|220772.51712543|122.59088332|3403|1 +638765.02305072|220767.96001111|122.62389532|3404|1 +638770.10281867|220763.44639189|122.57680043|3405|1 +638775.27635449|220758.84729876|122.34058181|3406|1 +638780.40197759|220754.29054615|122.09296853|3407|1 +638785.48030509|220749.77619298|121.88359484|3408|1 +638790.65574122|220745.17557418|121.66079869|3409|1 +638795.73481685|220740.66040713|121.43908155|3410|1 +638800.86571098|220736.10344366|121.55458171|3411|1 +638806.04303846|220731.50254071|121.44522072|3412|1 +638811.12418437|220726.98776999|121.40496263|3413|1 +638816.25368145|220722.42958774|121.32107921|3414|1 +638821.38367691|220717.87188917|121.31237275|3415|1 +638826.51389148|220713.31491634|121.37888045|3416|1 +638831.63957546|220708.76088767|121.35803517|3417|1 +638836.7694954|220704.20295012|121.32492085|3418|1 +638841.85094409|220699.68952428|121.41624569|3419|1 +638846.98141148|220695.1306333|121.34591496|3420|1 +638852.11173118|220690.5732676|121.38827525|3421|1 +638857.24238452|220686.01529863|121.405837|3422|1 +638862.37250373|220681.45903794|121.52356959|3423|1 +638867.50306148|220676.90184399|121.59776986|3424|1 +638872.63319664|220672.34572556|121.728404|3425|1 +638877.76430885|220667.78781655|121.78427047|3426|1 +638882.84712819|220663.27286198|121.85113164|3427|1 +638887.97820918|220658.71551551|121.95102342|3428|1 +638893.10954395|220654.15795093|122.05111983|3429|1 +638898.19428854|220649.64059278|122.06190059|3430|1 +638903.32921441|220645.07799397|122.01240584|3431|1 +638908.46644299|220640.51242336|121.88819922|3432|1 +638913.55611595|220635.98907348|121.76805748|3433|1 +638918.69568264|220631.4212823|121.63173994|3434|1 +638923.83851679|220626.84951551|121.40826476|3435|1 +638928.93592291|220622.3172246|121.11985389|3436|1 +638934.0809686|220617.74380121|120.92180046|3437|1 +638939.17985436|220613.21089127|120.68982346|3438|1 +638944.27779929|220608.67982278|120.53904166|3439|1 +638949.42452546|220604.10591423|120.42279736|3440|1 +638954.47725041|220599.61471601|120.25642579|3441|1 +638959.62853949|220595.03637015|120.11567131|3442|1 +638964.73010026|220590.50299869|120.0465033|3443|1 +638969.78534878|220586.0103344|119.94871373|3444|1 +638974.94124894|220581.42773737|119.79610878|3445|1 +638980.05096642|220576.8858158|119.62116097|3446|1 +638985.15665744|220572.34915896|119.58356319|3447|1 +638990.26654416|220567.80793165|119.47746713|3448|1 +638995.34423675|220563.29103102|119.03042375|3449|1 +639000.46806013|220558.73458276|118.69381107|3450|1 +639005.59146876|220554.17920064|118.41351134|3451|1 +639010.6675675|220549.66593939|118.14741542|3452|1 +639015.80437553|220545.09635372|117.68042904|3453|1 +639020.93751892|220540.53156427|117.33834691|3454|1 +639026.02418089|220536.00800302|116.99769725|3455|1 +639031.16138419|220531.43976502|116.66847018|3456|1 +639036.25108673|220526.91388762|116.3591396|3457|1 +639041.40286768|220522.33055777|115.85595071|3458|1 +639046.50474188|220517.79234183|115.42232049|3459|1 +639045.5451529|220515.04099525|115.30406701|3460|1 +639040.34023223|220519.65678532|115.73192082|3461|1 +639035.13294066|220524.27583809|116.25377838|3462|1 +639029.93999169|220528.87955906|116.5644112|3463|1 +639024.74486263|220533.48629935|116.96277838|3464|1 +639019.55927675|220538.08288504|117.22457688|3465|1 +639014.32058216|220542.72820904|117.61914893|3466|1 +639009.12872334|220547.33315558|118.10640389|3467|1 +639003.94887426|220551.92497351|118.39468454|3468|1 +638998.72352492|220556.55686747|118.66024096|3469|1 +638993.54379502|220561.14975623|119.04303696|3470|1 +638988.31844524|220565.78289695|119.40961067|3471|1 +638983.14715824|220570.36715134|119.6998354|3472|1 +638977.9894872|220574.93570496|119.69728671|3473|1 +638972.77472539|220579.55801133|119.9470022|3474|1 +638967.56570221|220584.17391889|120.09125415|3475|1 +638962.40951747|220588.74201834|120.1585711|3476|1 +638957.20314272|220593.35566977|120.31007844|3477|1 +638952.04748999|220597.92407871|120.44056376|3478|1 +638946.84648423|220602.53197215|120.51193629|3479|1 +638941.69303939|220607.09858591|120.65562083|3480|1 +638936.48997251|220611.71025414|120.88400734|3481|1 +638931.34126773|220616.27174469|120.95350092|3482|1 +638926.13842374|220620.88445987|121.2827559|3483|1 +638920.93868332|220625.49373667|121.55634905|3484|1 +638915.79049119|220630.05648591|121.76429956|3485|1 +638910.59625649|220634.65941807|121.92017873|3486|1 +638905.45297792|220639.21635122|122.0101176|3487|1 +638900.26207105|220643.81556876|122.10439111|3488|1 +638895.07260985|220648.41312652|122.16792224|3489|1 +638889.9339417|220652.96443128|122.13388704|3490|1 +638884.79592077|220657.51500621|122.0875735|3491|1 +638879.61012676|220662.10770385|122.0210658|3492|1 +638874.42398182|220666.70140726|122.01123382|3493|1 +638869.28850245|220671.24803588|121.82834229|3494|1 +638864.10412631|220675.83856159|121.6880622|3495|1 +638858.96784062|220680.38699402|121.59316548|3496|1 +638853.8314913|220684.93579791|121.52345796|3497|1 +638848.64681108|220689.52753051|121.4592478|3498|1 +638843.51117116|220694.07393122|121.24633944|3499|1 +638838.37398291|220698.62913554|121.63354449|3500|1 +638833.19008601|220703.21716436|121.32669749|3501|1 +638828.05422079|220707.76709991|121.38321508|3502|1 +638822.92238138|220712.31246171|121.3587142|3503|1 +638817.78601382|220716.86098606|121.26563133|3504|1 +638812.6501086|220721.41073099|121.30399185|3505|1 +638807.51474093|220725.96077513|121.40503705|3506|1 +638802.38104953|220730.51157896|121.6875227|3507|1 +638797.29419923|220735.01766915|121.7137258|3508|1 +638792.15919914|220739.56677636|121.76525764|3509|1 +638787.02379015|220744.11577361|121.77948006|3510|1 +638781.89299395|220748.66509641|122.15011864|3511|1 +638776.80863154|220753.17083819|122.32648962|3512|1 +638771.67791892|220757.71885454|122.59739456|3513|1 +638766.59408141|220762.22374334|122.74253948|3514|1 +638761.46185518|220766.77147599|122.8824661|3515|1 +638756.372948|220771.27761057|122.7651893|3516|1 +638751.28391426|220775.78416956|122.67288778|3517|1 +638746.14542279|220780.33436695|122.56324774|3518|1 +638741.10149306|220784.79989828|122.38822551|3519|1 +638735.95856914|220789.35263914|122.16634094|3520|1 +638730.8636202|220793.86312091|121.96786894|3521|1 +638725.765135|220798.37565887|121.68195093|3522|1 +638720.66754451|220802.88833132|121.47100525|3523|1 +638715.55888777|220807.40687286|120.94152023|3524|1 +638710.49601362|220811.90306203|121.88608772|3525|1 +638705.34441813|220816.44475691|120.15127851|3526|1 +638700.28528008|220820.92182864|119.81930741|3527|1 +638695.1715312|220825.44581397|119.36488773|3528|1 +638690.06063203|220829.96793152|119.0416696|3529|1 +638685.00752809|220834.44032854|119.00280678|3530|1 +638679.89262712|220838.96377515|118.66083627|3531|1 +638674.843268|220843.43462717|118.76529522|3532|1 +638669.74108205|220847.95127757|118.78535915|3533|1 +638664.69093247|220852.42298304|118.90197552|3534|1 +638659.08327511|220853.10277218|119.19724181|3535|1 +638664.22320283|220848.53831415|119.03981855|3536|1 +638669.36529089|220843.97272465|118.94505205|3537|1 +638674.4572353|220839.45133591|118.82864962|3538|1 +638679.6510172|220834.84126839|118.84369989|3539|1 +638684.79983408|220830.27253536|118.97447357|3540|1 +638689.90677649|220825.74356733|119.31429537|3541|1 +638695.0629089|220821.17179367|119.7202714|3542|1 +638700.21498772|220816.60283438|120.06411156|3543|1 +638705.36852334|220812.0337599|120.50191827|3544|1 +638710.5669675|220807.42419693|120.88782107|3545|1 +638715.72005431|220802.85685424|121.4325145|3546|1 +638720.86188061|220798.29558102|121.66515192|3547|1 +638726.00422098|220793.73463632|121.96050193|3548|1 +638731.14602166|220789.1745605|122.28734775|3549|1 +638736.28358348|220784.61683515|122.50196764|3550|1 +638741.41903576|220780.06043199|122.67307381|3551|1 +638746.55412893|220775.50466107|122.8693878|3552|1 +638751.68578353|220770.95044993|122.94720647|3553|1 +638756.86853388|220766.35301985|123.19278266|3554|1 +638761.94815271|220761.84340788|123.14717606|3555|1 +638767.12080481|220757.24858288|122.88721931|3556|1 +638772.24773327|220752.69613573|122.77221215|3557|1 +638777.37268394|220748.1433231|122.48864749|3558|1 +638782.49928049|220743.58998939|122.28025049|3559|1 +638787.67448811|220738.99329907|122.05285927|3560|1 +638792.75399381|220734.48229147|121.88900848|3561|1 +638797.93316616|220729.88655695|122.0184613|3562|1 +638803.06169419|220725.33253059|121.89217108|3563|1 +638808.19015707|220720.77770167|121.69732677|3564|1 +638813.3199229|220716.22391236|121.67766281|3565|1 +638818.4981328|220711.62684287|121.63347007|3566|1 +638823.62812742|220707.07253605|121.58929594|3567|1 +638828.75384668|220702.52069028|121.43903504|3568|1 +638833.88392427|220697.96787948|121.52022095|3569|1 +638839.01384535|220693.41575369|121.64533914|3570|1 +638844.14461774|220688.8598179|121.52693683|3571|1 +638849.27435445|220684.30856271|121.70867494|3572|1 +638854.40451228|220679.75575804|121.79686508|3573|1 +638859.58296178|220675.16044724|121.91149087|3574|1 +638864.66492239|220670.65029923|121.99256515|3575|1 +638869.79464364|220666.09874069|122.15005353|3576|1 +638874.9245895|220661.54674975|122.28900346|3577|1 +638880.00748453|220657.03529623|122.33269391|3578|1 +638885.13822344|220652.48220824|122.44065963|3579|1 +638890.27217592|220647.92399611|122.36767789|3580|1 +638895.35748249|220643.40961667|122.34904643|3581|1 +638900.49304872|220638.84989391|122.27013946|3582|1 +638905.58182449|220634.3311784|122.15167204|3583|1 +638910.71932287|220629.76966299|122.06686774|3584|1 +638915.81123619|220625.24753493|121.8985707|3585|1 +638920.90727646|220620.72025701|121.6116388|3586|1 +638926.05297724|220616.1491197|121.34004554|3587|1 +638931.14751306|220611.62528501|121.22191298|3588|1 +638936.24519278|220607.09780342|121.03513331|3589|1 +638941.34462926|220602.56860096|120.83591716|3590|1 +638946.44393841|220598.04013563|120.68670736|3591|1 +638951.54366138|220593.51161525|120.56877014|3592|1 +638956.64607859|220588.98014173|120.41344908|3593|1 +638961.7465863|220584.4515358|120.35180621|3594|1 +638966.80239914|220579.96166849|120.21785132|3595|1 +638971.91193551|220575.42294383|119.98779979|3596|1 +638976.96779623|220570.93396765|119.92852887|3597|1 +638982.0836907|220566.38866704|119.62372826|3598|1 +638987.15260201|220561.8851464|119.32732716|3599|1 +638992.27253872|220557.33626308|119.02273119|3600|1 +638997.34805781|220552.82617603|118.67019386|3601|1 +639002.42405838|220548.3161325|118.35501247|3602|1 +639007.5034147|220543.80279974|118.01485581|3603|1 +639012.58964899|220539.28219507|117.58119769|3604|1 +639017.67558223|220534.76255807|117.20363858|3605|1 +639022.76004764|220530.24516228|116.90084716|3606|1 +639027.80292878|220525.76349518|116.50567049|3607|1 +639032.894452|220521.23929222|116.15918862|3608|1 +639037.94865032|220516.74617752|115.65163719|3609|1 +639043.05677625|220512.20475281|115.10589266|3610|1 +639046.94031488|220504.71837986|114.48469213|3611|1 +639041.78487486|220509.29394424|114.88021296|3612|1 +639036.6247699|220513.87531397|115.40684234|3613|1 +639031.41642488|220518.50004874|115.97836208|3614|1 +639026.27137556|220523.06594615|116.33762459|3615|1 +639021.08030427|220527.67261701|116.69210599|3616|1 +639015.89200896|220532.27675545|117.0408761|3617|1 +639010.70427983|220536.88087331|117.42752304|3618|1 +639005.51634173|220541.48589263|117.87077129|3619|1 +639000.33100427|220546.08861359|118.31450323|3620|1 +638995.15076747|220550.68611278|118.70261055|3621|1 +638989.97399781|220555.28022715|119.06621699|3622|1 +638984.7547321|220559.91089209|119.33874974|3623|1 +638979.58619225|220564.49654046|119.6097756|3624|1 +638974.36941719|220569.12549111|119.92090141|3625|1 +638969.15492473|220573.75234865|120.22641826|3626|1 +638963.99660197|220578.32745864|120.38029755|3627|1 +638958.79223397|220582.94306688|120.50596455|3628|1 +638953.54041808|220587.60089334|120.64118447|3629|1 +638948.38792583|220592.17030654|120.75272207|3630|1 +638943.13868261|220596.82595056|120.89554155|3631|1 +638937.93906644|220601.4377001|121.04850926|3632|1 +638932.73903526|220606.05061631|121.26445|3633|1 +638927.54285068|220610.65902545|121.39353075|3634|1 +638922.29945235|220615.30929412|121.52036977|3635|1 +638917.1495722|220619.87904341|121.84056482|3636|1 +638911.90692804|220624.5296925|122.0498734|3637|1 +638906.71684107|220629.13210039|122.13118022|3638|1 +638901.52582718|220633.73652307|122.30665824|3639|1 +638896.33574714|220638.34028221|122.49514013|3640|1 +638891.10099181|220642.98176843|122.5321519|3641|1 +638885.91467441|220647.5808701|122.61551442|3642|1 +638880.73139341|220652.17531477|122.5431652|3643|1 +638875.499795|220656.812852|122.48834984|3644|1 +638870.31738127|220661.40630592|122.39828073|3645|1 +638865.13555868|220665.99877489|122.27116266|3646|1 +638859.90534202|220670.63424727|122.14943961|3647|1 +638854.72409105|220675.22543946|121.96083679|3648|1 +638849.54156255|220679.82014032|121.96012056|3649|1 +638844.3115305|220684.45532569|121.82770047|3650|1 +638839.12976751|220689.0479466|121.71551174|3651|1 +638833.94743128|220693.64487093|121.90372389|3652|1 +638828.71753616|220698.27909757|121.70434961|3653|1 +638823.53596492|220702.87378451|121.76857838|3654|1 +638818.35846578|220707.46447332|121.80202756|3655|1 +638813.12847766|220712.10165589|121.82941199|3656|1 +638807.9468811|220716.69552298|121.8263145|3657|1 +638802.76602436|220721.29008494|121.92989908|3658|1 +638797.58581042|220725.88463711|122.0776671|3659|1 +638792.35578545|220730.52102705|122.03866476|3660|1 +638787.17650747|220735.11531931|122.23117432|3661|1 +638781.99781179|220739.70925902|122.43661335|3662|1 +638776.82057556|220744.30286023|122.71747119|3663|1 +638771.64479547|220748.8958892|123.05500475|3664|1 +638766.46416215|220753.48865407|123.03050387|3665|1 +638761.2879288|220758.08083837|123.2689084|3666|1 +638756.10930173|220762.67334183|123.36400046|3667|1 +638750.9764086|220767.22368566|123.3333139|3668|1 +638745.78904323|220771.81915041|123.04801912|3669|1 +638740.65151223|220776.37181382|122.87417822|3670|1 +638735.46500055|220780.96811206|122.71465275|3671|1 +638730.32498098|220785.52267806|122.51638539|3672|1 +638725.18150228|220790.07921842|122.23089527|3673|1 +638720.03434747|220794.63800286|121.86444248|3674|1 +638714.8404483|220799.23963014|121.60653213|3675|1 +638709.74162154|220803.75670728|121.33221344|3676|1 +638704.58348269|220808.32281646|120.77295344|3677|1 +638699.42636362|220812.88920758|120.30767858|3678|1 +638694.31679031|220817.41378756|119.87137876|3679|1 +638689.15966559|220821.98153737|119.51275807|3680|1 +638684.0487207|220826.50966903|119.12668784|3681|1 +638678.94576079|220831.0348905|118.97795243|3682|1 +638673.79365032|220835.60391641|118.8447975|3683|1 +638668.70021243|220840.12423682|118.97718969|3684|1 +638663.65602903|220844.60121285|119.13752441|3685|1 +638658.51366377|220849.16514291|119.28572961|3686|1 +638653.46638061|220853.644319|119.40218785|3687|1 +638652.33039244|220850.90534005|119.59390677|3688|1 +638657.4667968|220846.33895433|119.37177104|3689|1 +638662.60750064|220841.77009162|119.25598253|3690|1 +638667.74250619|220837.20478302|119.02185682|3691|1 +638672.88523159|220832.6350734|118.98148711|3692|1 +638678.08033517|220828.02034251|119.05710125|3693|1 +638683.23171817|220823.44633204|119.28587844|3694|1 +638688.38883827|220818.86967776|119.70852325|3695|1 +638693.59040885|220814.25283871|120.07274361|3696|1 +638698.74695094|220809.67788075|120.58982936|3697|1 +638703.95098146|220805.06122421|121.14237349|3698|1 +638709.10026041|220800.491529|121.56650659|3699|1 +638714.28914382|220795.88374622|121.75774181|3700|1 +638719.48173208|220791.27480722|122.11812053|3701|1 +638724.62486845|220786.7100069|122.49957708|3702|1 +638729.81235891|220782.10464718|122.78587646|3703|1 +638734.99624169|220777.50130332|122.97893483|3704|1 +638740.17882827|220772.89895712|123.159966|3705|1 +638745.31319152|220768.34005112|123.39278946|3706|1 +638750.49335704|220763.73953889|123.54962671|3707|1 +638755.66880416|220759.14060723|123.50070867|3708|1 +638760.79590915|220754.58475051|123.46570609|3709|1 +638765.9685598|220749.98640695|123.26755965|3710|1 +638771.14500569|220745.38761998|123.30106464|3711|1 +638776.26714698|220740.83142599|122.8919074|3712|1 +638781.44163689|220736.2319248|122.73240984|3713|1 +638786.66408669|220731.58899828|122.50423727|3714|1 +638791.79188688|220727.03227912|122.45222174|3715|1 +638796.96800176|220722.43244744|122.38151893|3716|1 +638802.14354565|220717.83170278|122.19876693|3717|1 +638807.27118883|220713.27346247|122.01633119|3718|1 +638812.44806607|220708.67255729|121.91556505|3719|1 +638817.62555822|220704.07261082|121.93398256|3720|1 +638822.79880807|220699.47642927|121.95280006|3721|1 +638827.97608638|220694.87469752|121.8158314|3722|1 +638833.15314972|220690.27821247|122.07926701|3723|1 +638838.28276811|220685.71813211|121.89235711|3724|1 +638843.45993556|220681.12021731|122.05030128|3725|1 +638848.63727914|220676.52143314|122.15243478|3726|1 +638853.7668523|220671.96399453|122.17259173|3727|1 +638858.94328609|220667.36759662|122.40043875|3728|1 +638864.12119896|220662.76775652|122.46003523|3729|1 +638869.2495027|220658.21349334|122.64346626|3730|1 +638874.37937732|220653.65625987|122.70214186|3731|1 +638879.5581518|220649.05549778|122.75031576|3732|1 +638884.67052078|220644.52831037|123.95895138|3733|1 +638889.87011396|220639.89321605|122.75230634|3734|1 +638895.00525825|220635.32885664|122.61843518|3735|1 +638900.09361319|220630.80559158|122.45131016|3736|1 +638905.27989478|220626.19548653|122.28898486|3737|1 +638910.41934395|220621.62667202|122.1059073|3738|1 +638915.5589697|220617.05824801|121.96680853|3739|1 +638920.70389004|220612.48307774|121.66562631|3740|1 +638925.79579883|220607.95782889|121.59288642|3741|1 +638930.93821249|220603.38732451|121.48570205|3742|1 +638936.08549559|220598.81092109|121.2539576|3743|1 +638941.18453196|220594.27783667|121.06298282|3744|1 +638946.28420921|220589.74449915|120.89703913|3745|1 +638951.43445354|220585.16854998|120.72833281|3746|1 +638956.48289927|220580.68609222|120.73994143|3747|1 +638961.63377078|220576.11125937|120.6339942|3748|1 +638966.74301427|220571.5715044|120.38104169|3749|1 +638971.80928259|220567.06865486|120.03069028|3750|1 +638976.9260752|220562.52101777|119.68432003|3751|1 +638982.03868689|220557.9789785|119.4877921|3752|1 +638987.11541165|220553.46558072|119.03766054|3753|1 +638992.23746243|220548.91358801|118.71660972|3754|1 +638997.31549311|220544.39997173|118.34133886|3755|1 +639002.39435109|220539.88601198|117.99721034|3756|1 +639007.48156259|220535.36306304|117.5283915|3757|1 +639012.56858451|220530.84098645|117.11569029|3758|1 +639017.65586773|220526.31922997|116.7466144|3759|1 +639022.74425555|220521.79680198|116.40248588|3760|1 +639027.83910071|220517.26770002|115.98362689|3761|1 +639032.88840776|220512.778859|115.55323369|3762|1 +639037.94820131|220508.27897909|114.9856672|3763|1 +639043.00415206|220503.78399673|114.53628908|3764|1 +639042.77626969|220500.48330492|114.2478689|3765|1 +639037.71910336|220504.96969544|114.66336065|3766|1 +639032.60667411|220509.50719353|115.24144745|3767|1 +639027.45225104|220514.08111029|115.75207777|3768|1 +639022.35888295|220518.59863106|116.08753703|3769|1 +639017.21099407|220523.16653463|116.57996378|3770|1 +639012.0762996|220527.72012489|116.8670445|3771|1 +639006.98740391|220532.2344004|117.25885393|3772|1 +639001.84799557|220536.79462894|117.73948602|3773|1 +638996.71357282|220541.34980584|118.17050243|3774|1 +638991.58502104|220545.89883955|118.5269093|3775|1 +638986.45437671|220550.45099354|118.98328235|3776|1 +638981.33177104|220554.9943679|119.30889103|3777|1 +638976.21178413|220559.53526131|119.62219347|3778|1 +638971.04292639|220564.1202741|119.99405058|3779|1 +638965.92826842|220568.65606053|120.27657344|3780|1 +638960.76591347|220573.23452956|120.58667606|3781|1 +638955.65482283|220577.76723448|120.87578457|3782|1 +638950.51071384|220582.32417283|120.76211687|3783|1 +638945.35612194|220586.8947489|120.99196376|3784|1 +638940.20412641|220591.46263406|121.19092876|3785|1 +638935.05549374|220596.02674962|121.32775789|3786|1 +638929.90691406|220600.59138018|121.50857512|3787|1 +638924.75870287|220605.15616255|121.72713896|3788|1 +638919.61867341|220609.71038278|121.68372757|3789|1 +638914.42152377|220614.320153|122.02506556|3790|1 +638909.28080631|220618.87641023|122.09468005|3791|1 +638904.08322375|220623.48863008|122.59929212|3792|1 +638898.8984279|220628.0828154|122.57356341|3793|1 +638893.75715135|220632.64211063|122.84402186|3794|1 +638888.57210834|220637.2378705|122.92528218|3795|1 +638883.3645547|220641.87213552|124.47501394|3796|1 +638878.25479118|220646.38094593|122.95980107|3797|1 +638873.0744268|220650.97021757|122.85486773|3798|1 +638867.89331803|220655.56117354|122.83160399|3799|1 +638862.71306337|220660.15083241|122.76503117|3800|1 +638857.53417001|220664.73771456|122.57391688|3801|1 +638852.35509156|220669.32484766|122.38948125|3802|1 +638847.17532138|220673.91370634|122.29293812|3803|1 +638841.99548723|220678.50294064|122.22181673|3804|1 +638836.81622494|220683.08986634|122.00738288|3805|1 +638831.63582682|220687.68293368|122.19957619|3806|1 +638826.45638947|220692.2704204|122.01723346|3807|1 +638820.84564851|220697.24491711|122.16861987|3808|1 +638816.10185538|220701.44969357|122.2975425|3809|1 +638810.92245054|220706.03939275|122.29144053|3810|1 +638805.74335609|220710.62945102|122.33575419|3811|1 +638800.56450609|220715.21945367|122.39299733|3812|1 +638795.38577316|220719.80928618|122.44439894|3813|1 +638790.20824898|220724.39955283|122.61497492|3814|1 +638785.03153391|220728.98958288|122.82347424|3815|1 +638779.85447344|220733.57905538|122.9636334|3816|1 +638774.63046312|220738.21132188|123.19231758|3817|1 +638769.45530061|220742.80023674|123.42091803|3818|1 +638764.32611332|220747.34589901|123.45535321|3819|1 +638759.10201684|220751.97715738|123.59815408|3820|1 +638753.92486553|220756.56573596|123.65927605|3821|1 +638748.7465499|220761.15472033|123.67082886|3822|1 +638743.56696321|220765.74428865|123.6390819|3823|1 +638738.37936353|220770.33686982|123.28285177|3824|1 +638733.24394444|220774.88581457|123.13793939|3825|1 +638728.05848932|220779.47879984|122.96368921|3826|1 +638722.86949081|220784.07375493|122.69619803|3827|1 +638717.67796053|220788.67041325|122.38544428|3828|1 +638712.48141861|220793.2700247|121.95649286|3829|1 +638707.33324288|220797.82740545|121.58207776|3830|1 +638702.18834175|220802.38377884|121.35781193|3831|1 +638696.98132625|220806.99073713|120.77401384|3832|1 +638691.77354092|220811.5989445|120.2344736|3833|1 +638686.66681404|220816.11961006|119.86500704|3834|1 +638681.4614836|220820.72931197|119.48867577|3835|1 +638676.30328558|220825.29758595|119.12248344|3836|1 +638671.20866023|220829.81461519|119.16559717|3837|1 +638666.01327071|220834.42021002|119.1401103|3838|1 +638660.92443978|220838.93424051|119.35202337|3839|1 +638655.78373173|220843.4934899|119.49867518|3840|1 +638650.64303727|220848.05289225|119.65805182|3841|1 +638645.53814231|220852.57732696|119.56444804|3842|1 +638642.39263505|220852.19822735|119.8056152|3843|1 +638647.4830359|220847.67080574|119.61969129|3844|1 +638652.63392192|220843.09308345|119.70496998|3845|1 +638657.72544649|220838.56536179|119.57541483|3846|1 +638662.86235072|220833.9966175|119.38651436|3847|1 +638667.95173866|220829.47048269|119.23216068|3848|1 +638678.24495514|220820.32263952|119.40482956|3849|1 +638683.40121094|220815.74390887|119.79130907|3850|1 +638688.50833529|220811.20921688|120.21192609|3851|1 +638693.66173117|220806.63334101|120.62390177|3852|1 +638698.82140837|220802.05493531|121.27976072|3853|1 +638703.96656947|220797.48473305|121.56119527|3854|1 +638709.11336317|220792.91433402|121.94286576|3855|1 +638714.25976235|220788.34483438|122.36852435|3856|1 +638719.40230807|220783.77781932|122.71950828|3857|1 +638724.58971285|220779.17002125|122.99403161|3858|1 +638729.72668402|220774.60663035|123.23942177|3859|1 +638734.86012449|220770.04512396|123.38510619|3860|1 +638740.04442984|220765.44032621|123.67957253|3861|1 +638745.17521565|220760.88071105|123.7883289|3862|1 +638750.30422538|220756.32196552|123.84106997|3863|1 +638755.47918063|220751.72109755|123.7867476|3864|1 +638760.60456963|220747.16346167|123.67128465|3865|1 +638765.77837447|220742.56283448|123.55523568|3866|1 +638770.90656276|220738.0048284|123.60900925|3867|1 +638776.07721958|220733.40348552|123.21248383|3868|1 +638781.20422506|220728.84512422|123.15428261|3869|1 +638786.3791496|220724.24359283|123.04598203|3870|1 +638791.50363342|220719.68348303|122.66956704|3871|1 +638796.67911965|220715.08099354|122.52451514|3872|1 +638806.98402503|220705.92027657|122.50430238|3873|1 +638812.16072309|220701.31820757|122.47918759|3874|1 +638817.33748275|220696.71530526|122.39202994|3875|1 +638822.51008096|220692.11445294|122.17403351|3876|1 +638827.63872047|220687.55661256|122.27457641|3877|1 +638832.81621791|220682.95283441|122.16986631|3878|1 +638837.99320584|220678.35263377|122.31556004|3879|1 +638843.17008211|220673.75246198|122.45545875|3880|1 +638848.34686356|220669.15237819|122.59579465|3881|1 +638853.47493623|220664.59590766|122.76653806|3882|1 +638858.65049968|220659.99831958|123.02009519|3883|1 +638863.82921774|220655.39402308|122.96168003|3884|1 +638868.95812352|220650.83596213|123.06454838|3885|1 +638874.13551155|220646.23496507|123.17561159|3886|1 +638879.3131926|220641.63362945|123.28086119|3887|1 +638884.44679417|220637.06835492|123.14097177|3888|1 +638889.62963347|220632.45947846|123.0096772|3889|1 +638894.81199694|220627.85196319|122.95381073|3890|1 +638899.95301754|220623.27737187|122.59630625|3891|1 +638905.09362525|220618.70432199|122.33274972|3892|1 +638910.28216431|220614.08977484|122.15325334|3893|1 +638915.42355356|220609.51704858|121.97156174|3894|1 +638920.56310086|220604.94745751|121.90878405|3895|1 +638925.75430317|220600.33101813|121.76806678|3896|1 +638930.90107979|220595.75281669|121.53115983|3897|1 +638936.09438441|220591.13475813|121.41012512|3898|1 +638941.24293492|220586.55545676|121.21142057|3899|1 +638946.39112117|220581.97718454|121.06920571|3900|1 +638951.53410636|220577.4028603|121.0958646|3901|1 +638956.69065721|220572.81208386|120.77339062|3902|1 +638961.85197154|220568.21614143|120.37644661|3903|1 +638967.00601928|220563.62969909|120.22318124|3904|1 +638972.1696639|220559.03223096|119.87067182|3905|1 +638977.28908483|220554.47335539|119.46453766|3906|1 +638982.462215|220549.86598252|118.99427705|3907|1 +638987.62957356|220545.26609137|118.71153095|3908|1 +638992.7573765|220540.69937044|118.275073|3909|1 +638997.93261124|220536.09153927|117.91829406|3910|1 +639003.06896777|220531.51629247|117.40764514|3911|1 +639008.20341681|220526.94391027|116.99076743|3912|1 +639013.34040628|220522.36927208|116.57415947|3913|1 +639018.47734211|220517.79530592|116.20766948|3914|1 +639023.62247815|220513.21273156|115.73556712|3915|1 +639028.7655716|220508.63306393|115.35099447|3916|1 +639033.8733588|220504.0823188|114.77444246|3917|1 +639038.97955408|220499.53400562|114.27897404|3918|1 +639044.08460079|220494.98756256|113.85211552|3919|1 +639045.16610306|220490.19149132|113.44902304|3920|1 +639040.00828222|220494.77482524|113.91397233|3921|1 +639034.90403895|220499.31019319|114.34744442|3922|1 +639029.79346033|220503.85323167|114.94293484|3923|1 +639024.68638513|220508.39308311|115.532314|3924|1 +639019.5960636|220512.91484013|115.8663966|3925|1 +639014.45185126|220517.48626589|116.3449637|3926|1 +639009.36678968|220522.00327814|116.67297224|3927|1 +639004.23062945|220526.56685556|117.0958775|3928|1 +638999.14609338|220531.08450474|117.51125763|3929|1 +638994.00830293|220535.65134224|118.07790325|3930|1 +638988.93368016|220540.15885651|118.38741055|3931|1 +638983.80424433|220544.71741857|118.88581834|3932|1 +638978.6877499|220549.26142818|119.14122651|3933|1 +638973.61445021|220553.76934344|119.57551715|3934|1 +638968.49233882|220558.32141044|120.07438072|3935|1 +638963.38183253|220562.86018803|120.33635596|3936|1 +638958.27869344|220567.39054146|120.44871211|3937|1 +638953.16362541|220571.93620579|120.93553919|3938|1 +638948.05755791|220576.47144287|121.22905674|3939|1 +638943.00869286|220580.95326573|121.31385173|3940|1 +638937.86360528|220585.52067179|121.41065532|3941|1 +638932.76571501|220590.04724078|121.59202136|3942|1 +638927.67228045|220594.56851888|121.66731924|3943|1 +638922.52623205|220599.13891148|121.93327563|3944|1 +638917.48246781|220603.61668052|122.05524982|3945|1 +638912.3434898|220608.17868006|122.15293708|3946|1 +638907.25237258|220612.69908706|122.32210849|3947|1 +638902.16150311|220617.21982714|122.53500755|3948|1 +638897.0211028|220621.78600921|122.86428113|3949|1 +638891.92138037|220626.32224075|123.68320022|3950|1 +638886.84733378|220630.81947792|123.21544179|3951|1 +638881.71473006|220635.37599529|123.32657942|3952|1 +638876.63185689|220639.88799365|123.40853737|3953|1 +638871.50331443|220644.43871037|123.34507135|3954|1 +638866.37533225|220648.98869672|123.26303898|3955|1 +638861.2959749|220653.49553555|123.18268094|3956|1 +638856.14379024|220658.09988022|125.7126618|3957|1 +638851.03913225|220662.59937258|123.26302038|3958|1 +638845.96310334|220667.09862418|122.81407014|3959|1 +638840.83612618|220671.64702925|122.67648756|3960|1 +638835.70931169|220676.19450793|122.47659239|3961|1 +638830.58209653|220680.7428967|122.3206109|3962|1 +638825.45433848|220685.29546558|122.45853764|3963|1 +638820.33158407|220689.83880103|122.21547292|3964|1 +638815.20418636|220694.39255055|122.472481|3965|1 +638810.07693248|220698.94326832|122.49845156|3966|1 +638804.95016729|220703.49449892|122.59958978|3967|1 +638799.82355633|220708.0452034|122.66966936|3968|1 +638794.64931511|220712.6391426|122.81499102|3969|1 +638789.52320178|220717.18941412|122.88554499|3970|1 +638784.39884289|220721.74017515|123.11876843|3971|1 +638779.27434072|220726.29027776|123.28966997|3972|1 +638774.15003048|220730.84005868|123.44824665|3973|1 +638768.97781436|220735.43254182|123.62018069|3974|1 +638763.85367061|220739.98178955|123.74797779|3975|1 +638758.72850351|220744.53085127|123.78845912|3976|1 +638753.60512453|220749.07966376|123.93535278|3977|1 +638748.48099968|220753.62859245|124.03867691|3978|1 +638743.35329046|220758.1785879|123.97347146|3979|1 +638738.17500707|220762.7725643|123.83486569|3980|1 +638733.04443817|220767.32424538|123.70144101|3981|1 +638727.95623968|220771.83570251|123.36040998|3982|1 +638722.82043372|220776.3904719|123.10234149|3983|1 +638717.63696634|220780.98844879|122.91508743|3984|1 +638712.54312614|220785.50421959|122.51817133|3985|1 +638707.3988768|220790.06461721|122.11088375|3986|1 +638702.25149184|220794.62725672|121.66013827|3987|1 +638697.10556039|220799.18986603|121.30960082|3988|1 +638691.9540696|220803.75600471|120.84692116|3989|1 +638686.80004805|220808.32400412|120.37205617|3990|1 +638681.6402695|220812.89434262|119.81631224|3991|1 +638676.486204|220817.46220013|119.46693752|3992|1 +638671.3921123|220821.98093033|119.44580388|3993|1 +638666.24272588|220826.54698944|119.28417621|3994|1 +638661.10761766|220831.10492194|119.48487134|3995|1 +638655.97381008|220835.66217319|119.72323867|3996|1 +638650.83225958|220840.22426399|119.79957834|3997|1 +638645.73035646|220844.74900163|119.70414212|3998|1 +638640.64720595|220849.26225865|120.02056995|3999|1 +638635.50456303|220853.82564427|120.1224058|4000|1 +638630.30803327|220854.77756522|120.29870236|4001|1 +638635.40691116|220850.24355751|120.24712401|4002|1 +638640.500927|220845.71284248|120.11448998|4003|1 +638645.58752002|220841.18691718|119.83838536|4004|1 +638650.68976437|220836.65148205|119.91177637|4005|1 +638655.83315285|220832.07774558|119.84466405|4006|1 +638660.91669452|220827.55405349|119.53129651|4007|1 +638666.05736667|220822.98225445|119.42713522|4008|1 +638671.15478026|220818.4507114|119.46976526|4009|1 +638676.30807019|220813.87226522|119.72817791|4010|1 +638681.41050115|220809.33869253|119.96460116|4011|1 +638686.57400704|220804.75580102|120.59195017|4012|1 +638691.67932364|220800.2219395|121.00975806|4013|1 +638696.83385114|220795.64537453|121.50651013|4014|1 +638701.98394689|220791.07180071|121.92862474|4015|1 +638707.08404948|220786.54273127|122.3593714|4016|1 +638712.23145278|220781.9719413|122.81318647|4017|1 +638717.37306181|220777.40449591|123.12360535|4018|1 +638722.51032578|220772.83949655|123.32183551|4019|1 +638727.64994479|220768.27412958|123.65775986|4020|1 +638732.78582123|220763.71083416|123.89396917|4021|1 +638737.91812953|220759.14929431|124.01794325|4022|1 +638743.05162862|220754.58787488|124.23587457|4023|1 +638748.13099343|220750.07139758|124.20520661|4024|1 +638753.25678634|220745.51249747|124.07978146|4025|1 +638758.38273193|220740.95354385|123.96079314|4026|1 +638768.63421463|220731.83505631|123.64842088|4027|1 +638773.76160488|220727.27544358|123.58002492|4028|1 +638778.88786017|220722.71551107|123.40559801|4029|1 +638784.01369842|220718.15491641|123.15012472|4030|1 +638789.14164095|220713.59474176|123.07609188|4031|1 +638794.26935251|220709.03406146|122.94601584|4032|1 +638799.39788201|220704.47375038|122.90364625|4033|1 +638804.52669687|220699.91366078|122.89896745|4034|1 +638809.65550969|220695.35325874|122.86949943|4035|1 +638814.78433917|220690.79134586|122.72150816|4036|1 +638819.91370321|220686.2284908|122.53622608|4037|1 +638830.16768163|220677.11304014|122.64741021|4038|1 +638835.29682149|220672.55407474|122.75645494|4039|1 +638840.42588514|220667.99525544|122.87195509|4040|1 +638845.60255612|220663.39551257|123.0950303|4041|1 +638850.72803863|220658.84497492|123.61719482|4042|1 +638855.83510193|220654.33301874|125.90776656|4043|1 +638860.9895013|220649.71919422|123.43746589|4044|1 +638866.09445039|220645.20597289|125.47837796|4045|1 +638871.24899075|220640.59940606|123.59600537|4046|1 +638876.38106406|220636.03587405|123.55065921|4047|1 +638881.51296711|220631.47312152|123.55552404|4048|1 +638886.64848778|220626.9050334|123.3919616|4049|1 +638891.76667782|220622.36419236|124.17178533|4050|1 +638896.87567003|220617.80699644|123.0008033|4051|1 +638902.06907481|220613.18408728|122.56559179|4052|1 +638907.20981441|220608.61121427|122.39062537|4053|1 +638912.302765|220604.08105634|122.23819716|4054|1 +638917.44514499|220599.50711925|122.09489399|4055|1 +638922.58787367|220594.93326198|121.98309594|4056|1 +638927.73577509|220590.35308996|121.73425482|4057|1 +638932.87800101|220585.78094037|121.72292526|4058|1 +638938.02237965|220581.20640939|121.6744351|4059|1 +638943.1223555|220576.67016192|121.53544795|4060|1 +638948.27678825|220572.08429086|121.26277568|4061|1 +638953.39355726|220567.52983055|120.73090941|4062|1 +638958.5469986|220562.9476395|120.58356927|4063|1 +638963.70194696|220558.36411067|120.4365733|4064|1 +638968.8248209|220553.80439495|119.91789694|4065|1 +638973.9974188|220549.20096675|119.43475337|4066|1 +638979.12491277|220544.63730751|118.9290902|4067|1 +638984.24671327|220540.08105403|118.610709|4068|1 +638989.42196124|220535.47661875|118.23469399|4069|1 +638994.55226829|220530.91172224|117.82958302|4070|1 +638999.6937909|220526.33459714|117.24395248|4071|1 +639004.87680706|220521.72319511|116.86292381|4072|1 +639010.01668186|220517.14934402|116.42132198|4073|1 +639015.15460425|220512.57831982|116.06723126|4074|1 +639020.2966487|220508.00324918|115.68227724|4075|1 +639025.3989625|220503.46198431|115.18014874|4076|1 +639030.60968084|220498.82271781|114.53962842|4077|1 +639035.71801337|220494.2761128|114.03800222|4078|1 +639040.87559981|220489.68631427|113.57958277|4079|1 +639046.05202192|220485.07650931|112.86009967|4080|1 +639046.02735858|220481.82007928|112.28626378|4081|1 +639040.85027252|220486.41766178|113.02837811|4082|1 +639035.63308986|220491.0497723|113.68435798|4083|1 +639030.48140903|220495.62085169|114.10984914|4084|1 +639025.32101189|220500.20223438|114.74117001|4085|1 +639020.11335732|220504.82599686|115.40496338|4086|1 +639014.97904491|220509.37964534|115.66954311|4087|1 +639009.78750391|220513.98669771|116.14117108|4088|1 +639004.60154863|220518.58810398|116.55721163|4089|1 +638999.46665241|220523.14423774|116.97851699|4090|1 +638994.28226313|220527.74520434|117.47019029|4091|1 +638989.09973149|220532.34475827|117.98103455|4092|1 +638983.9759229|220536.89013053|118.32841869|4093|1 +638978.804265|220541.47841242|118.70907528|4094|1 +638973.63308264|220546.06682572|119.1338037|4095|1 +638968.46151225|220550.65644374|119.62755129|4096|1 +638963.29004667|220555.24676262|120.18408588|4097|1 +638958.17794824|220559.78168774|120.52648427|4098|1 +638953.02469396|220564.35132268|120.72179367|4099|1 +638947.86868905|220568.92496187|121.04222126|4100|1 +638942.71188456|220573.50033846|121.44409521|4101|1 +638937.56344238|220578.06587561|121.65283637|4102|1 +638932.41655243|220582.63004038|121.86185659|4103|1 +638927.32639492|220587.14098631|121.84328094|4104|1 +638922.18587232|220591.69785451|121.9216019|4105|1 +638917.04443219|220596.25649177|122.07509981|4106|1 +638911.95407518|220600.76910283|122.17537296|4107|1 +638906.81504115|220605.32561259|122.32924295|4108|1 +638901.67452026|220609.88492746|122.60198964|4109|1 +638896.5802936|220614.40528434|123.04598203|4110|1 +638891.4409562|220618.964815|123.41904838|4111|1 +638886.35779793|220623.47034552|123.46343645|4112|1 +638881.22487248|220628.02160488|123.630701|4113|1 +638876.09604073|220632.56681469|123.6045165|4114|1 +638871.01678467|220637.06740114|123.53032553|4115|1 +638865.88712296|220641.61499792|123.63557513|4116|1 +638860.80805743|220646.11612326|123.61759479|4117|1 +638855.73124072|220650.61297743|123.41836935|4118|1 +638850.6032711|220655.15900322|123.51765651|4119|1 +638845.5261927|220659.6567248|123.3683816|4120|1 +638840.40162615|220664.19464103|123.06172994|4121|1 +638835.3238787|220668.69374239|122.97488855|4122|1 +638830.24631623|220673.19213221|122.8442358|4123|1 +638825.12074713|220677.73001204|122.46281646|4124|1 +638820.04700609|220682.23197658|122.88836343|4125|1 +638814.96913977|220686.73283325|122.93254687|4126|1 +638809.84318587|220691.27654593|122.98881331|4127|1 +638804.76600519|220695.77741854|123.08296589|4128|1 +638799.64062716|220700.32070501|123.14568777|4129|1 +638794.56410861|220704.82115593|123.25231403|4130|1 +638789.43956532|220709.36433482|123.3652283|4131|1 +638784.3636141|220713.86428585|123.47180805|4132|1 +638779.28834534|220718.36418064|123.62205034|4133|1 +638774.21243143|220722.86363069|123.69097651|4134|1 +638769.08763836|220727.4059406|123.71667732|4135|1 +638764.01292385|220731.90534829|123.86679869|4136|1 +638758.98839439|220736.36127883|124.10349169|4137|1 +638753.86603292|220740.90284831|124.2417719|4138|1 +638748.79131092|220745.40156068|124.33539428|4139|1 +638743.71641617|220749.90034919|124.42268215|4140|1 +638738.63861643|220754.40007205|124.37868474|4141|1 +638733.55662892|220758.9014705|124.1721667|4142|1 +638728.47321648|220763.40390572|123.94684977|4143|1 +638723.39081868|220767.90645457|123.80270014|4144|1 +638718.34767954|220772.37028875|123.35061521|4145|1 +638713.21297356|220776.91852872|123.14571568|4146|1 +638708.17257466|220781.38243227|122.89323756|4147|1 +638703.07636981|220785.89340839|122.44278043|4148|1 +638697.97690793|220790.40672912|121.94860496|4149|1 +638692.87544891|220794.92182469|121.45445739|4150|1 +638687.77204857|220799.43978309|120.96660712|4151|1 +638682.66957545|220803.95973788|120.56627727|4152|1 +638677.60940054|220808.44068421|120.05086583|4153|1 +638672.50061211|220812.96547158|119.58808385|4154|1 +638667.40467957|220817.48346374|119.49372663|4155|1 +638662.31470447|220821.99828894|119.5679269|4156|1 +638657.22296868|220826.51436664|119.61716121|4157|1 +638652.19890738|220830.97595238|120.1124622|4158|1 +638647.09383673|220835.50050093|119.89320072|4159|1 +638642.00965868|220840.01245988|120.14825543|4160|1 +638636.96654175|220844.48610932|120.25610953|4161|1 +638631.82935623|220849.04425109|120.43995914|4162|1 +638626.78190751|220853.52104069|120.49145378|4163|1 +638623.60272805|220853.29433575|120.72052862|4164|1 +638628.74794582|220848.71419634|120.59952181|4165|1 +638633.84123272|220844.17953311|120.42640645|4166|1 +638638.93630227|220839.64391966|120.30326024|4167|1 +638644.07500093|220835.0684107|120.08932868|4168|1 +638649.17725761|220830.52873102|120.15365046|4169|1 +638654.32129987|220825.95034942|120.0899798|4170|1 +638659.45110629|220821.38066641|119.7082442|4171|1 +638664.54594001|220816.84611252|119.65438692|4172|1 +638669.6884496|220812.26917984|119.59769259|4173|1 +638674.84360882|220807.6853675|119.89094039|4174|1 +638679.96184474|220803.13880469|120.54309724|4175|1 +638685.11618215|220798.55674089|120.91809835|4176|1 +638690.27532648|220793.97281351|121.48703221|4177|1 +638695.42995114|220789.39205833|121.98760731|4178|1 +638700.63049578|220784.77034812|122.47384837|4179|1 +638705.7319549|220780.23653392|122.95225733|4180|1 +638710.87417397|220775.66401717|123.22890146|4181|1 +638716.06172784|220771.05044102|123.44154937|4182|1 +638721.15867133|220766.52088088|123.93919441|4183|1 +638726.29466443|220761.9528197|124.1292018|4184|1 +638731.47844626|220757.34253961|124.33675234|4185|1 +638736.56521236|220752.81883579|124.57867294|4186|1 +638741.74521443|220748.21084177|124.69947511|4187|1 +638746.87150208|220743.64744756|124.57188264|4188|1 +638751.95045482|220739.12680924|124.50171004|4189|1 +638757.12261624|220734.52073412|124.21736404|4190|1 +638762.2491788|220729.95694926|124.0779025|4191|1 +638767.37605425|220725.39274004|123.92617192|4192|1 +638772.50642064|220720.82885536|124.0496158|4193|1 +638777.63382497|220716.26464342|123.93581787|4194|1 +638782.76092507|220711.70001077|123.76597673|4195|1 +638787.88866229|220707.1351982|123.62761281|4196|1 +638793.0170953|220702.57047701|123.54570136|4197|1 +638798.14584264|220698.00571329|123.48276554|4198|1 +638803.27455368|220693.44012918|123.35130354|4199|1 +638808.35537497|220688.91738296|123.24470518|4200|1 +638813.48490499|220684.35045382|123.06357169|4201|1 +638818.66324111|220679.74424042|123.20822361|4202|1 +638823.74620084|220675.21282317|122.55826199|4203|1 +638828.87007514|220670.65940873|123.05887429|4204|1 +638834.04816292|220666.05304158|123.17328614|4205|1 +638839.12965781|220661.53204324|123.2547697|4206|1 +638849.38905953|220652.40531401|123.48902564|4207|1 +638854.51956651|220647.8403467|123.53464155|4208|1 +638859.64882563|220643.27812623|123.71168226|4209|1 +638864.77878141|220638.71458404|123.83271698|4210|1 +638869.86042668|220634.19400872|123.95843049|4211|1 +638875.04293746|220629.58079463|123.8380841|4212|1 +638880.1292775|220625.0531733|123.73289961|4213|1 +638885.2632354|220620.48437724|123.71734704|4214|1 +638890.40260731|220615.90782379|123.46470149|4215|1 +638895.49335414|220611.37535967|123.28488885|4216|1 +638900.64062983|220606.78891176|122.80164297|4217|1 +638905.78740954|220602.20422602|122.42488381|4218|1 +638910.83250667|220597.71305069|122.30520716|4219|1 +638915.9751694|220593.13545287|122.20356665|4220|1 +638921.12247549|220588.55219017|121.97737535|4221|1 +638926.16613928|220584.06439111|122.02620038|4222|1 +638931.31549289|220579.47953726|121.81912423|4223|1 +638936.41713868|220574.93732996|121.63400958|4224|1 +638941.52194045|220570.3916985|121.39907461|4225|1 +638946.67701674|220565.8013899|121.16160026|4226|1 +638951.74118421|220561.28982792|120.79229183|4227|1 +638956.84984374|220556.74036328|120.57645341|4228|1 +638961.96632047|220552.18200954|120.20479163|4229|1 +638967.09484133|220547.6099229|119.59007443|4230|1 +638972.22175854|220543.04057813|119.08163934|4231|1 +638977.29875735|220538.51668412|118.66266872|4232|1 +638982.42629544|220533.94803994|118.25434864|4233|1 +638987.55363302|220529.38027536|117.90238803|4234|1 +638992.64425316|220524.84256143|117.34652317|4235|1 +638997.78161369|220520.26457258|116.88899669|4236|1 +639002.9197217|220515.68638832|116.46914241|4237|1 +639008.00932471|220511.15183336|116.09442965|4238|1 +639013.15878462|220506.56210297|115.55668465|4239|1 +639018.25015704|220502.02674741|115.24452634|4240|1 +639023.41217825|220497.42429413|114.58278866|4241|1 +639028.5269034|220492.8642422|113.95333745|4242|1 +639033.63215113|220488.31532415|113.5420036|4243|1 +639038.80430454|220483.70379942|112.87505693|4244|1 +639043.93710973|220479.12597951|112.1093812|4245|1 +639043.74414222|220475.96642837|111.77045237|4246|1 +639038.473065|220480.65108177|112.46139763|4247|1 +639033.24865572|220485.29552876|113.25229047|4248|1 +639028.09304029|220489.87539534|113.76293939|4249|1 +639022.84023558|220494.54213309|114.31918562|4250|1 +639017.63023403|220499.17294727|115.04349635|4251|1 +639012.44101694|220503.78127277|115.44444942|4252|1 +639007.2020331|220508.43466929|115.91564951|4253|1 +639002.01936604|220513.03687368|116.29281794|4254|1 +638996.78763199|220517.68336912|116.72798294|4255|1 +638991.60372845|220522.28830862|117.23710637|4256|1 +638986.37095297|220526.93744683|117.81073762|4257|1 +638981.19908416|220531.52991957|118.17752527|4258|1 +638975.97726904|220536.16778034|118.62773125|4259|1 +638970.76086271|220540.7999884|119.01000635|4260|1 +638965.58809798|220545.39566572|119.57161971|4261|1 +638960.31703925|220550.07985737|120.2318412|4262|1 +638955.15648784|220554.66252353|120.6198648|4263|1 +638949.95698331|220559.2772513|120.80490504|4264|1 +638944.7512069|220563.90034683|121.21512268|4265|1 +638939.55183393|220568.51620286|121.5011244|4266|1 +638934.35709482|220573.12686254|121.70031264|4267|1 +638929.1646651|220577.73516322|121.87504651|4268|1 +638923.97054472|220582.34628496|122.15642525|4269|1 +638918.83510771|220586.9015302|122.13538463|4270|1 +638913.59868261|220591.54871451|122.29618444|4271|1 +638908.41274688|220596.1507101|122.42922774|4272|1 +638903.22709037|220600.752929|122.600213|4273|1 +638898.03734425|220605.36173423|123.00898886|4274|1 +638892.85276593|220609.96400979|123.26213671|4275|1 +638887.66934893|220614.56540817|123.52825123|4276|1 +638882.4875639|220619.16520684|123.78234786|4277|1 +638877.31038839|220623.75850447|123.84325589|4278|1 +638872.13097231|220628.35620263|124.09825479|4279|1 +638866.9568815|220632.94559471|124.06634039|4280|1 +638861.78409428|220637.53297846|123.96611375|4281|1 +638856.66037462|220642.07626795|123.82406632|4282|1 +638851.44059201|220646.7040434|123.61692507|4283|1 +638846.2681112|220651.29115819|123.51790766|4284|1 +638841.14267654|220655.83899795|123.62040393|4285|1 +638835.97129648|220660.42373334|123.40959777|4286|1 +638830.79919954|220665.01035335|123.29918569|4287|1 +638825.68164225|220669.54544304|122.940072|4288|1 +638820.50854399|220674.13396314|122.91154345|4289|1 +638815.38384097|220678.68620134|123.42141103|4290|1 +638810.25993795|220683.22956061|123.27528012|4291|1 +638805.08820624|220687.81935522|123.44769785|4292|1 +638799.9653433|220692.36552665|123.60197711|4293|1 +638794.84253966|220696.91062317|123.67518209|4294|1 +638789.67146907|220701.49835341|123.72983003|4295|1 +638784.5495647|220706.04343264|123.86596153|4296|1 +638779.4282888|220710.58834045|124.03349582|4297|1 +638774.30651467|220715.13267479|124.11994653|4298|1 +638769.18493964|220719.67691121|124.21279686|4299|1 +638764.06142557|220724.22100177|124.15582348|4300|1 +638758.94114153|220728.76517287|124.33648258|4301|1 +638753.86824287|220733.26601119|124.41642205|4302|1 +638748.74964879|220737.80930087|124.64725493|4303|1 +638743.62948923|220742.35273489|124.77825185|4304|1 +638738.55565356|220746.85377143|124.80819427|4305|1 +638733.4782607|220751.35609661|124.68809903|4306|1 +638728.34977383|220755.90271973|124.48194376|4307|1 +638723.3151322|220760.36502978|124.1978117|4308|1 +638718.18435822|220764.91360016|123.98556377|4309|1 +638713.09999546|220769.42054391|123.74043405|4310|1 +638708.0577608|220773.88786997|123.31842176|4311|1 +638702.92162566|220778.44049347|123.05021434|4312|1 +638697.8743784|220782.91156401|122.57174026|4313|1 +638692.77663889|220787.42741676|122.08910829|4314|1 +638687.72197637|220791.90220542|121.50411027|4315|1 +638682.66798046|220796.37657717|121.00009351|4316|1 +638677.56397157|220800.89554448|120.51102471|4317|1 +638672.50433943|220805.37444676|119.96927995|4318|1 +638667.45557424|220809.84780613|119.75825985|4319|1 +638662.36444393|220814.36107588|119.73108006|4320|1 +638657.37577314|220818.78522195|119.85368678|4321|1 +638652.35126468|220823.24494763|120.27865704|4322|1 +638647.2979903|220827.72222307|120.06046527|4323|1 +638642.26491406|220832.18737223|120.31013425|4324|1 +638637.27602151|220836.61223115|120.4748129|4325|1 +638632.2825682|220841.04012279|120.55789636|4326|1 +638627.24275145|220845.50991966|120.7004926|4327|1 +638622.20416929|220849.97908589|120.88027733|4328|1 +638617.20834003|220854.40906722|120.96219808|4329|1 +638612.89834961|220854.61068032|121.15484717|4330|1 +638618.04705752|220850.03538606|121.04056554|4331|1 +638623.14526338|220845.50467634|120.90554096|4332|1 +638628.29109006|220840.93163916|120.76681426|4333|1 +638633.38691495|220836.40281816|120.61331635|4334|1 +638638.57945722|220831.78818869|120.46527858|4335|1 +638643.66861418|220827.26382232|120.19353648|4336|1 +638648.82527363|220822.68491674|120.3554153|4337|1 +638653.96016722|220818.11944125|120.04323838|4338|1 +638659.10277862|220813.54944688|119.91857597|4339|1 +638664.24734613|220808.97849965|119.85661684|4340|1 +638669.4463955|220804.36132178|119.96695451|4341|1 +638674.56127902|220799.82353921|120.45161427|4342|1 +638679.77127204|220795.20139699|120.94373405|4343|1 +638684.93161471|220790.62369283|121.46386148|4344|1 +638690.09187241|220786.04684652|122.04678521|4345|1 +638695.29740441|220781.4294659|122.6028547|4346|1 +638700.44895947|220776.85864799|123.04913533|4347|1 +638705.59649086|220772.29047675|123.4207506|4348|1 +638710.79594019|220767.67851818|123.97821536|4349|1 +638715.98100947|220763.0735084|124.06765194|4350|1 +638721.12147056|220758.51038819|124.34037073|4351|1 +638726.26070276|220753.94836521|124.61334066|4352|1 +638731.44570585|220749.34491084|124.82269574|4353|1 +638736.62778645|220744.74289374|124.93880981|4354|1 +638741.8080929|220740.14176045|124.99915044|4355|1 +638746.98166007|220735.54226713|124.71001402|4356|1 +638752.11160232|220730.98471575|124.67841589|4357|1 +638757.28811903|220726.38448348|124.54001475|4358|1 +638762.46553038|220721.78377534|124.42705398|4359|1 +638767.64462855|220717.18313068|124.43953697|4360|1 +638772.82510002|220712.58305934|124.59619748|4361|1 +638778.00111042|220707.98183221|124.34084512|4362|1 +638783.13034872|220703.42362163|124.20485315|4363|1 +638788.30832089|220698.82221887|124.0752608|4364|1 +638793.53477369|220694.17723477|123.9024617|4365|1 +638798.66553615|220689.61893235|123.86744051|4366|1 +638803.84451213|220685.01627383|123.70796155|4367|1 +638809.02400888|220680.41300828|123.53643679|4368|1 +638814.15563302|220675.85682901|123.73352283|4369|1 +638819.33602597|220671.25161645|123.46905473|4370|1 +638824.51722301|220666.6462415|123.24879796|4371|1 +638829.64336252|220662.09432825|123.3966497|4372|1 +638834.82366376|220657.49333233|123.46461778|4373|1 +638840.0023097|220652.89683831|123.77673889|4374|1 +638845.13379218|220648.33973126|123.88805324|4375|1 +638850.26527324|220643.78270885|124.00584164|4376|1 +638855.44548804|220639.18212697|124.10036629|4377|1 +638860.57864304|220634.62223287|124.10623571|4378|1 +638865.70452898|220630.07554411|124.65584978|4379|1 +638870.89093382|220625.46467826|124.36418327|4380|1 +638876.03055093|220620.89518605|124.0585269|4381|1 +638881.1694172|220616.32783793|123.87181234|4382|1 +638886.30892142|220611.76024034|123.71035211|4383|1 +638891.45388826|220607.18524082|123.34306216|4384|1 +638896.59633726|220602.61480652|123.16341696|4385|1 +638901.74553553|220598.03552019|122.75301328|4386|1 +638906.88935294|220593.46458152|122.63014611|4387|1 +638912.03497035|220588.89174064|122.48260134|4388|1 +638917.1809493|220584.31897064|122.36657098|4389|1 +638922.28486203|220579.7813541|122.07296971|4390|1 +638927.43444324|220575.20501069|121.92621558|4391|1 +638932.53937024|220570.66735378|121.70157768|4392|1 +638937.69134385|220566.08905216|121.56784604|4393|1 +638942.85146704|220561.50112098|121.24100022|4394|1 +638947.92032264|220556.992908|120.8073421|4395|1 +638953.02923032|220552.45266205|120.65815091|4396|1 +638958.15108891|220547.89566106|120.20344287|4397|1 +638963.28251332|220543.3275105|119.56805713|4398|1 +638968.41187899|220538.76266692|119.05142717|4399|1 +638973.48974055|220534.2451332|118.66169204|4400|1 +638978.62279386|220529.67741485|118.17658579|4401|1 +638983.70453079|220525.15667931|117.80566816|4402|1 +638988.79712381|220520.62407051|117.25396119|4403|1 +638993.88950061|220516.09243133|116.76465055|4404|1 +638998.98081623|220511.56266627|116.35016339|4405|1 +639004.07785667|220507.02704817|115.87341944|4406|1 +639009.17498033|220502.49198167|115.44659813|4407|1 +639014.22081307|220498.00363358|115.11428287|4408|1 +639019.33897882|220493.44634184|114.40097614|4409|1 +639024.40393302|220488.93800982|113.82562406|4410|1 +639029.4697989|220484.42933715|113.2875535|4411|1 +639034.59465281|220479.86681864|112.63060624|4412|1 +639039.67816361|220475.34017377|111.90579322|4413|1 +639044.7621636|220470.81371616|111.23079121|4414|1 +639047.35765373|220464.5293223|114.93726076|4415|1 +639042.51827447|220468.77537314|111.04753691|4416|1 +639037.34499125|220473.37476236|111.70091229|4417|1 +639032.16999953|220477.97675953|112.4418825|4418|1 +639027.00481243|220482.56872852|113.07744498|4419|1 +639021.79690618|220487.19800984|113.66434986|4420|1 +639016.6390166|220491.78334498|114.28833163|4421|1 +639011.48134766|220496.36918808|114.96872867|4422|1 +639006.29423031|220500.97736603|115.34534829|4423|1 +639001.15813626|220505.54031095|115.72742806|4424|1 +638995.92071636|220510.19480631|116.23715611|4425|1 +638990.78613458|220514.75734445|116.6947663|4426|1 +638985.60246773|220519.36426041|117.21656805|4427|1 +638980.37027565|220524.01498259|117.79672915|4428|1 +638975.19719047|220528.61110465|118.20737467|4429|1 +638970.02678155|220533.20477285|118.61221589|4430|1 +638964.80795218|220537.84208128|119.06949122|4431|1 +638959.63657253|220542.43841037|119.61874251|4432|1 +638954.46258664|220547.03877071|120.3056787|4433|1 +638949.25734853|220551.66206964|120.60870267|4434|1 +638944.10449684|220556.23820786|120.85979482|4435|1 +638938.89832891|220560.86405522|121.30115481|4436|1 +638933.50224316|220565.73139731|127.57221713|4437|1 +638928.40278197|220570.24445532|126.57052743|4438|1 +638928.56463414|220570.03669713|121.4461602|4439|2 +638923.36318984|220574.65874761|121.92028105|4440|1 +638918.17028762|220579.27048713|122.17649848|4441|1 +638912.98070615|220583.87850084|122.37079398|4442|1 +638907.78993026|220588.48882613|122.66550217|4443|1 +638902.60326131|220593.09425812|122.86081157|4444|1 +638897.4671847|220597.65434174|123.02169509|4445|1 +638892.28241032|220602.25848624|123.24908632|4446|1 +638887.04843814|220606.90760813|123.58083417|4447|1 +638881.9152226|220611.46577821|123.79276585|4448|1 +638876.68494326|220616.11115948|124.08822747|4449|1 +638871.50539426|220620.71083086|124.33013877|4450|1 +638866.33042932|220625.30362536|124.34759821|4451|1 +638861.15714647|220629.89391304|124.28428101|4452|1 +638855.93499387|220634.52842839|124.28852262|4453|1 +638850.76388647|220639.11507473|124.08869256|4454|1 +638845.59202123|220643.70325417|123.95801191|4455|1 +638840.37211027|220648.3336067|123.78901723|4456|1 +638835.1989434|220652.9254425|123.85921774|4457|1 +638830.03275707|220657.51014928|123.85497613|4458|1 +638824.86095831|220662.09773256|123.68227005|4459|1 +638819.64016699|220666.73098767|123.68420481|4460|1 +638814.46789417|220671.32250593|123.79364952|4461|1 +638809.24764474|220675.95458596|123.74053637|4462|1 +638804.07600513|220680.54500202|123.8071743|4463|1 +638798.90517031|220685.13657676|124.02420335|4464|1 +638793.73463506|220689.72687207|124.16039996|4465|1 +638788.51619631|220694.35977582|124.30324734|4466|1 +638783.39469941|220698.90630578|124.42151012|4467|1 +638778.1770085|220703.53855142|124.5653993|4468|1 +638773.00730564|220708.12733539|124.64083671|4469|1 +638767.88496497|220712.67289955|124.6224471|4470|1 +638762.71449453|220717.26158838|124.6360742|4471|1 +638757.5444371|220721.85037978|124.68759674|4472|1 +638747.20780783|220731.02705314|124.96681746|4473|1 +638742.03754408|220735.61564262|124.98829526|4474|1 +638736.91838376|220740.1607196|125.15893635|4475|1 +638731.79291103|220744.70765932|125.02981839|4476|1 +638726.61664317|220749.29877772|124.82735593|4477|1 +638721.48789183|220753.84777162|124.63000014|4478|1 +638716.30883329|220758.44098277|124.39704645|4479|1 +638711.17648461|220762.9924703|124.14398232|4480|1 +638706.04486748|220767.54416551|123.95985366|4481|1 +638700.9002744|220772.1023993|123.37614858|4482|1 +638695.7113537|220776.70250316|122.99474784|4483|1 +638690.61479166|220781.22024743|122.49683306|4484|1 +638685.46497337|220785.78431405|121.91390003|4485|1 +638680.31373115|220790.34995784|121.35623993|4486|1 +638675.20860768|220794.87462718|120.79622648|4487|1 +638670.06136278|220799.43952297|120.4638275|4488|1 +638664.90870933|220804.00805479|120.03805729|4489|1 +638659.81850814|220808.52600362|120.00289657|4490|1 +638654.72972221|220813.04339203|120.02392789|4491|1 +638649.65941508|220817.54988774|120.48812374|4492|1 +638644.55942981|220822.07441395|120.28443344|4493|1 +638639.48076244|220826.58614766|120.5738117|4494|1 +638634.44312823|220831.05954043|120.70980368|4495|1 +638629.35431792|220835.57786197|120.80558407|4496|1 +638624.31749037|220840.05106954|120.98490371|4497|1 +638619.23071282|220844.56843117|121.14921959|4498|1 +638614.18863966|220849.0453529|121.25332508|4499|1 +638609.19950017|220853.47646419|121.45283888|4500|1 +638603.95617882|220854.37554366|121.99242563|4501|1 +638609.03665014|220849.85487007|121.51905822|4502|1 +638614.1363165|220845.32167724|121.40746481|4503|1 +638619.23352169|220840.79028293|121.26475696|4504|1 +638624.33030273|220836.25934264|121.12835571|4505|1 +638629.42423563|220831.73039178|120.94833843|4506|1 +638634.51966615|220827.20065982|120.8120488|4507|1 +638639.66226215|220822.62886956|120.65989034|4508|1 +638644.74783038|220818.10548007|120.3303191|4509|1 +638649.90623768|220813.52449659|120.56559824|4510|1 +638655.03492627|220808.96148231|120.12701018|4511|1 +638660.12888185|220804.43346441|120.02247681|4512|1 +638665.28235127|220799.85633538|120.21484685|4513|1 +638670.44361133|220795.27534098|120.65104435|4514|1 +638675.60558786|220790.69464575|121.16252113|4515|1 +638680.76538914|220786.11589148|121.67436068|4516|1 +638685.92743445|220781.53678916|122.31768084|4517|1 +638691.08221125|220776.96227038|122.81144704|4518|1 +638696.23247806|220772.3907509|123.22432499|4519|1 +638701.38793023|220767.81759801|123.87487263|4520|1 +638706.53211975|220763.25046776|124.20714138|4521|1 +638711.7200481|220758.64302224|124.41923119|4522|1 +638716.86039855|220754.07877006|124.70842342|4523|1 +638721.99606478|220749.51688741|124.85416365|4524|1 +638727.17978971|220744.91264944|125.02374433|4525|1 +638732.3155949|220740.35174407|125.25755379|4526|1 +638737.44415147|220735.793307|125.17291692|4527|1 +638742.62152392|220731.19191778|125.11871547|4528|1 +638747.79759185|220726.59083998|124.99621108|4529|1 +638752.9255759|220722.03261016|124.88745471|4530|1 +638758.10325064|220717.4311347|124.84697338|4531|1 +638763.28071843|220712.82961696|124.78819545|4532|1 +638768.41059664|220708.2712095|124.79903202|4533|1 +638773.5876421|220703.66960968|124.70353068|4534|1 +638778.71681111|220699.11098869|124.64616663|4535|1 +638783.89449461|220694.50938319|124.59519289|4536|1 +638789.07230062|220689.90767701|124.54467494|4537|1 +638794.25987565|220685.32594056|126.7881983|4538|1 +638799.37951909|220680.74490426|124.25720354|4539|1 +638804.55785814|220676.14009894|123.99544225|4540|1 +638809.73705418|220671.53828544|124.03410044|4541|1 +638814.91639508|220666.93549341|124.00447428|4542|1 +638820.09577012|220662.33376779|124.06280572|4543|1 +638825.27494724|220657.73300942|124.18407298|4544|1 +638830.40553593|220653.17568367|124.3297574|4545|1 +638835.57806386|220648.58060558|124.4329048|4546|1 +638840.80516259|220643.93719599|124.54415404|4547|1 +638845.93644296|220639.37771234|124.56584579|4548|1 +638851.11636231|220634.77516401|124.59550915|4549|1 +638856.29930857|220630.16728582|124.41323154|4550|1 +638861.43190593|220625.60672998|124.44208565|4551|1 +638866.61349295|220621.00256888|124.46054968|4552|1 +638871.79756396|220616.39472994|124.36079743|4553|1 +638876.93389381|220611.82940236|124.27191895|4554|1 +638882.12739235|220607.20829635|123.77953872|4555|1 +638887.31690743|220602.59432479|123.57500196|4556|1 +638892.46124493|220598.0193378|123.28109373|4557|1 +638897.65432647|220593.40174963|123.04002889|4558|1 +638902.84570869|220588.78723429|122.92438921|4559|1 +638907.94818965|220584.24837045|122.54762075|4560|1 +638913.14446212|220579.62852044|122.35166023|4561|1 +638918.29666424|220575.04650968|122.05330575|4562|1 +638923.29513755|220570.66421754|126.8237962|4563|1 +638928.39997412|220566.1413129|127.8925238|4564|1 +638933.55656281|220561.5704994|128.80249799|4565|1 +638938.91540627|220556.7124405|121.08176311|4566|1 +638944.08031444|220552.1177845|120.67285702|4567|1 +638949.23780433|220547.53290974|120.52015906|4568|1 +638954.40825459|220542.9328824|120.07463187|4569|1 +638959.59019163|220538.31996144|119.40497839|4570|1 +638964.72008106|220533.75755174|118.91252374|4571|1 +638969.898834|220529.15245306|118.47446588|4572|1 +638975.07948615|220524.54583545|118.04934679|4573|1 +638980.16735593|220520.02099692|117.57826763|4574|1 +638985.36272725|220515.39876349|116.94817459|4575|1 +638990.50329063|220510.82753536|116.50711226|4576|1 +638995.65079958|220506.24906261|115.97906902|4577|1 +639000.79731414|220501.67241272|115.52613762|4578|1 +639005.94190161|220497.09856863|115.16072663|4579|1 +639011.09571855|220492.51498522|114.67103462|4580|1 +639016.26069944|220487.91963371|114.03221652|4581|1 +639021.33402202|220483.40504156|113.34547567|4582|1 +639026.50202495|220478.80780093|112.76951897|4583|1 +639031.63655851|220474.23771617|111.98905342|4584|1 +639036.76647602|220469.67344544|111.34578907|4585|1 +639041.89125464|220465.1154499|110.83966082|4586|1 +639046.70105331|220460.8991896|115.31787085|4587|1 +639047.01910455|220460.5547342|110.3337558|4588|2 +639045.89061221|220457.97842707|110.23227342|4589|1 +639040.77801873|220462.51008608|110.57069065|4590|1 +639035.65585932|220467.05272503|111.10838914|4591|1 +639030.53049411|220471.59954115|111.75207206|4592|1 +639025.35849521|220476.18795291|112.41521431|4593|1 +639020.28702999|220480.68731109|113.08974193|4594|1 +639015.12842883|220485.26236838|113.63508647|4595|1 +639009.96204502|220489.84681796|114.38011226|4596|1 +639004.85730071|220494.37438776|114.94995768|4597|1 +638999.71797005|220498.92993293|115.30301591|4598|1 +638994.62487233|220503.44568451|115.75466366|4599|1 +638989.48162874|220508.00695314|116.28881817|4600|1 +638984.3429965|220512.56366821|116.78581209|4601|1 +638979.20620474|220517.11898375|117.30175372|4602|1 +638974.07073935|220521.67351186|117.84909815|4603|1 +638968.89335005|220526.26409321|118.30506193|4604|1 +638963.76720457|220530.80917606|118.75938859|4605|1 +638958.641229|220535.35481495|119.27002821|4606|1 +638953.46643454|220539.9446572|119.85176131|4607|1 +638948.34496353|220544.48652691|120.38157189|4608|1 +638943.18805027|220549.05621171|120.62083218|4609|1 +638938.07694243|220553.58685989|120.98878255|4610|1 +638932.71645278|220558.41425971|127.38817218|4611|1 +638927.49944164|220563.04715481|128.41818579|4612|1 +638922.42589582|220567.53542327|128.06330442|4613|1 +638917.32438232|220572.03978946|127.01235251|4614|1 +638912.32451255|220576.40776792|122.27180448|4615|1 +638907.17799786|220580.96884955|122.56296869|4616|1 +638902.03723168|220585.5227976|122.69205874|4617|1 +638896.89029595|220590.08605011|123.12736327|4618|1 +638891.75110112|220594.63922793|123.30690616|4619|1 +638886.61061891|220599.19503307|123.60534435|4620|1 +638881.42598256|220603.7882604|123.76435822|4621|1 +638876.26454641|220608.37885244|125.35633865|4622|1 +638871.12863287|220612.93170048|125.74311582|4623|1 +638866.01983959|220617.44005904|124.49965435|4624|1 +638860.8409311|220622.02719483|124.57890548|4625|1 +638855.6631704|220626.61291615|124.62733053|4626|1 +638850.53483735|220631.15433694|124.64022279|4627|1 +638845.35911634|220635.73715279|124.60189017|4628|1 +638840.2314319|220640.27830848|124.64024139|4629|1 +638835.06380418|220644.85285467|124.51528133|4630|1 +638829.88865861|220649.43477432|124.44676445|4631|1 +638824.71391432|220654.01555519|124.3161675|4632|1 +638819.58709786|220658.55530328|124.30550767|4633|1 +638814.41220562|220663.13699837|124.23806979|4634|1 +638809.23728713|220667.72059784|124.32102303|4635|1 +638804.06260044|220672.30203343|124.24813431|4636|1 +638798.93664384|220676.84234614|124.34470535|4637|1 +638788.58957365|220686.00866065|124.6381485|4638|1 +638783.4168412|220690.59134237|124.80421311|4639|1 +638778.24340802|220695.17284365|124.82693735|4640|1 +638773.07094452|220699.75473386|124.95003706|4641|1 +638767.94690573|220704.29342397|125.05438439|4642|1 +638762.77315416|220708.8746596|125.03442277|4643|1 +638757.59962621|220713.45608955|125.04610581|4644|1 +638752.4746836|220717.9947153|125.08241994|4645|1 +638747.30196057|220722.57597404|125.13850035|4646|1 +638742.13106853|220727.1569481|125.30120702|4647|1 +638737.00725138|220731.695199|125.38820654|4648|1 +638731.83191959|220736.27728298|125.32662878|4649|1 +638726.70577819|220740.81649504|125.32658227|4650|1 +638721.57428365|220745.35778747|125.11426922|4651|1 +638716.39342374|220749.94289861|124.90374212|4652|1 +638711.25904996|220754.48635028|124.6606867|4653|1 +638706.12505642|220759.03016254|124.47405586|4654|1 +638700.93765007|220763.61998596|124.15215858|4655|1 +638695.79357731|220768.17140441|123.71624013|4656|1 +638690.64176373|220772.7273335|123.09317924|4657|1 +638685.4923426|220777.28294973|122.61404474|4658|1 +638680.33942156|220781.84112311|122.09147094|4659|1 +638675.18077209|220786.40312037|121.46926581|4660|1 +638669.97638027|220791.00746928|120.98741519|4661|1 +638664.86522128|220795.52855786|120.46303685|4662|1 +638659.71065682|220800.09046902|120.12271276|4663|1 +638654.56851516|220804.6456777|120.12603349|4664|1 +638649.49125723|220809.14836641|120.53217695|4665|1 +638644.34377342|220813.70712966|120.44221017|4666|1 +638639.26110297|220818.21321101|120.73605329|4667|1 +638634.17562972|220822.72107133|120.97369507|4668|1 +638629.03599038|220827.27562423|121.102627|4669|1 +638623.94683034|220831.78604768|121.28420697|4670|1 +638618.85645518|220836.29738594|121.45330397|4671|1 +638613.7634703|220840.81057234|121.58497991|4672|1 +638608.71304895|220845.28476395|121.61900581|4673|1 +638603.63242768|220849.79018979|122.00629457|4674|1 +638598.5717396|220854.28239045|122.74898561|4675|1 +638595.49980486|220853.67830197|123.04440073|4676|1 +638600.57378846|220849.16379946|122.43995269|4677|1 +638605.65530531|220844.6442402|121.96642716|4678|1 +638610.75504237|220840.11281765|121.83598835|4679|1 +638615.85300878|220835.58274098|121.68689018|4680|1 +638620.89873878|220831.09827042|121.47926522|4681|1 +638625.99416591|220826.57014258|121.30521969|4682|1 +638631.09137195|220822.04106607|121.18113399|4683|1 +638636.18387888|220817.515066|120.96974182|4684|1 +638641.27541464|220812.98978001|120.74589457|4685|1 +638646.36040445|220808.46850942|120.37851161|4686|1 +638651.47001927|220803.93273945|120.59792191|4687|1 +638656.60559862|220799.36742301|120.2962839|4688|1 +638661.66309798|220794.87745852|120.48133344|4689|1 +638666.82645182|220790.29697199|120.93552058|4690|1 +638671.93890234|220785.76151791|121.3801734|4691|1 +638677.05461418|220781.2250556|121.97479876|4692|1 +638682.21741058|220776.64719662|122.59840845|4693|1 +638687.37156385|220772.07459128|123.02873654|4694|1 +638692.48107112|220767.54388761|123.64263518|4695|1 +638697.63242449|220762.9742462|124.11095171|4696|1 +638702.78136703|220758.40652519|124.56082283|4697|1 +638707.9213657|220753.8433772|124.74234699|4698|1 +638713.06113343|220749.28083654|124.95535767|4699|1 +638718.20102591|220744.71881415|125.21860725|4700|1 +638723.33946171|220740.15793921|125.46961569|4701|1 +638728.47086515|220735.599792|125.43968257|4702|1 +638733.60579183|220731.04095017|125.60368219|4703|1 +638738.73489259|220726.48383955|125.49295384|4704|1 +638743.91140083|220721.88397476|125.32528002|4705|1 +638748.99313001|220717.36961546|125.27213897|4706|1 +638754.17201992|220712.76929699|125.23635504|4707|1 +638759.30308354|220708.21188621|125.23908046|4708|1 +638764.43426104|220703.65469029|125.26700439|4709|1 +638769.6125353|220699.05440186|125.18859042|4710|1 +638774.74278276|220694.49703005|125.13582144|4711|1 +638779.87297965|220689.93947953|125.06451402|4712|1 +638785.00298618|220685.38132292|124.93092191|4713|1 +638790.18150375|220680.77943884|124.74146333|4714|1 +638795.31238571|220676.22052132|124.60842002|4715|1 +638800.49196687|220671.61740369|124.39474891|4716|1 +638805.62394834|220667.0601033|124.46849339|4717|1 +638810.75608111|220662.50041194|124.36121601|4718|1 +638815.93638498|220657.90145111|124.52988512|4719|1 +638821.11742829|220653.29871252|124.44904338|4720|1 +638826.22147131|220648.8326219|129.82916295|4721|1 +638826.24920284|220648.74288253|124.62387957|4722|2 +638831.42908007|220644.14456778|124.8125289|4723|1 +638836.60983043|220639.54383864|124.87042315|4724|1 +638841.73678038|220634.98847819|124.7397518|4725|1 +638846.91713143|220630.38890386|124.86089813|4726|1 +638852.05096566|220625.82878483|124.83720651|4727|1 +638857.23371403|220621.22530872|124.81545896|4728|1 +638862.41938794|220616.61729339|124.63801827|4729|1 +638867.55555174|220612.05482053|124.59029086|4730|1 +638872.74091918|220607.44866039|124.53864739|4731|1 +638877.93595813|220602.82814309|124.02528235|4732|1 +638883.13036878|220598.20983997|123.64363977|4733|1 +638888.27109783|220593.64311863|123.57860175|4734|1 +638893.46903957|220589.0214657|123.17918347|4735|1 +638898.66559224|220584.40270165|122.91145974|4736|1 +638903.81264627|220579.82906846|122.74137676|4737|1 +638908.90097334|220575.35665078|126.49525746|4738|1 +638909.01683346|220575.20144365|122.30607222|4739|2 +638914.05947937|220570.78760087|127.50224917|4740|1 +638919.16487072|220566.26680802|128.60002622|4741|1 +638924.32437602|220561.67591013|127.93153545|4742|1 +638929.54812119|220557.02316264|126.87369093|4743|1 +638934.89362371|220552.20230567|121.01426012|4744|1 +638940.10797483|220547.56627959|120.62592026|4745|1 +638945.26973117|220542.97897793|120.40291017|4746|1 +638950.44386089|220538.37726993|119.90579533|4747|1 +638955.67323221|220533.72530061|119.3071237|4748|1 +638960.85127663|220529.12053637|118.84223952|4749|1 +638966.03357139|220524.51061644|118.3279443|4750|1 +638971.21627641|220519.8990042|117.84533093|4751|1 +638976.40245063|220515.28408948|117.34451399|4752|1 +638981.59632369|220510.66102239|116.7382335|4753|1 +638986.78747023|220506.04187179|116.25095064|4754|1 +638991.93314036|220501.46292776|115.75310096|4755|1 +638997.12786558|220496.84108864|115.30416933|4756|1 +639002.32725835|220492.21464534|114.81842126|4757|1 +639007.48363878|220487.6256782|114.27818339|4758|1 +639012.69847024|220482.98338013|113.61910602|4759|1 +639017.91066072|220478.34476168|113.0665526|4760|1 +639023.08757046|220473.73518639|112.33471673|4761|1 +639028.30924578|220469.08755104|111.73357083|4762|1 +639033.4955452|220464.46920265|110.96545804|4763|1 +639038.66814514|220459.86652407|110.47791473|4764|1 +639043.87611353|220455.23575151|110.25203039|4765|1 +639043.68508701|220451.52865851|110.20727024|4766|1 +639038.53104752|220456.09750182|110.42455974|4767|1 +639033.38009594|220460.6634472|110.62971042|4768|1 +639028.26429363|220465.20160421|111.10236158|4769|1 +639023.0341501|220469.84532479|111.90629552|4770|1 +639017.90751384|220474.39686133|112.67837086|4771|1 +639012.7471275|220478.97573281|113.24592805|4772|1 +639007.5891683|220483.55261198|113.82629379|4773|1 +639002.48054859|220488.08635901|114.4557543|4774|1 +638997.28641649|220492.6937507|114.91323427|4775|1 +638992.19522845|220497.2092018|115.31873591|4776|1 +638987.05098141|220501.77344672|115.86279681|4777|1 +638981.86049383|220506.37878901|116.41491305|4778|1 +638976.77078565|220510.89465166|116.95793216|4779|1 +638971.63254179|220515.45428123|117.55886412|4780|1 +638966.50374269|220520.00364023|118.01037235|4781|1 +638961.37821116|220524.54986627|118.44336074|4782|1 +638956.25202379|220529.09761681|118.95136796|4783|1 +638951.12840394|220533.64308871|119.45955191|4784|1 +638946.0028125|220538.19180066|120.08643583|4785|1 +638940.84278876|220542.76713582|120.40405428|4786|1 +638935.7336238|220547.29726426|120.71313371|4787|1 +638930.62697808|220551.82491957|121.00359098|4788|1 +638925.30894288|220556.6039381|126.35861436|4789|1 +638925.46942671|220556.39931763|121.42181745|4790|2 +638920.18676919|220561.15591936|127.4861943|4791|1 +638915.07140596|220565.7006776|128.5203379|4792|1 +638909.95519524|220570.22668141|128.00965177|4793|1 +638904.89996232|220574.69250306|127.01498491|4794|1 +638899.87699063|220579.08901336|122.79549449|4795|1 +638894.78125532|220583.60752644|123.13037705|4796|1 +638889.64221381|220588.16250997|123.3128872|4797|1 +638884.55228911|220592.67428806|123.52300503|4798|1 +638879.41397289|220597.22972574|123.79330535|4799|1 +638874.32102552|220601.74796086|124.30334035|4800|1 +638869.18582959|220606.30062796|124.57398484|4801|1 +638864.10356351|220610.803867|124.64687356|4802|1 +638858.97384411|220615.34899588|124.70541894|4803|1 +638853.84143113|220619.89974377|125.02029338|4804|1 +638848.75780363|220624.40827874|125.41816756|4805|1 +638843.63557827|220628.94107993|125.02730691|4806|1 +638838.56421463|220633.4346334|125.10048399|4807|1 +638833.43788299|220637.97595801|125.09717256|4808|1 +638828.3125304|220642.51515122|124.99405306|4809|1 +638823.20933655|220647.10156575|130.19112298|4810|1 +638818.11028904|220651.55056957|124.78914423|4811|1 +638812.98507781|220656.08884189|124.62388887|4812|1 +638807.90784861|220660.58717836|124.66562594|4813|1 +638802.78253563|220665.12837382|124.72553868|4814|1 +638797.65763566|220669.66982929|124.8356066|4815|1 +638792.58151256|220674.16796152|124.93985161|4816|1 +638787.45754618|220678.70898036|125.08136884|4817|1 +638782.33382475|220683.24938578|125.19179953|4818|1 +638777.25851395|220687.74639151|125.26478127|4819|1 +638772.13505888|220692.28615844|125.34415333|4820|1 +638767.01176041|220696.82578698|125.42367421|4821|1 +638761.88844413|220701.36526907|125.49086094|4822|1 +638756.76534343|220705.90471811|125.57068879|4823|1 +638751.63942622|220710.44414033|125.45069587|4824|1 +638746.51541502|220714.98368333|125.47460144|4825|1 +638741.39276368|220719.52296421|125.57363745|4826|1 +638736.31894035|220724.01925161|125.69677437|4827|1 +638731.19605073|220728.55857794|125.78349483|4828|1 +638726.06668216|220733.09986738|125.57046555|4829|1 +638720.9874015|220737.59822408|125.4749084|4830|1 +638715.85804185|220742.14044637|125.33708397|4831|1 +638710.67743427|220746.72710012|125.1198875|4832|1 +638705.64064381|220751.18608027|124.89154749|4833|1 +638700.5063183|220755.73170624|124.67922514|4834|1 +638695.3631065|220760.28190349|124.20474152|4835|1 +638690.21877423|220764.83340719|123.75547503|4836|1 +638685.12016328|220769.34402455|123.27923337|4837|1 +638679.96742361|220773.9012453|122.69295171|4838|1 +638674.85946253|220778.41825835|122.06700727|4839|1 +638669.70203426|220782.97962953|121.48119069|4840|1 +638664.64660595|220787.45301467|121.09003239|4841|1 +638659.48835254|220792.01629515|120.59822887|4842|1 +638654.39076781|220796.53023115|120.4596324|4843|1 +638649.30896564|220801.03528039|120.72680732|4844|1 +638644.21025031|220805.55044435|120.60694463|4845|1 +638639.08139513|220810.09787478|120.92731642|4846|1 +638634.04869496|220814.55980325|121.22853584|4847|1 +638628.91163681|220819.11237145|121.38056407|4848|1 +638623.87471901|220823.57708102|121.60659724|4849|1 +638618.73400563|220828.13225549|121.70894469|4850|1 +638613.64601374|220832.64189131|121.90742599|4851|1 +638608.60351785|220837.11058221|122.05822639|4852|1 +638603.51325219|220841.62198325|122.2378809|4853|1 +638598.44380486|220846.11979503|122.80419165|4854|1 +638588.3414629|220855.08018351|123.71385888|4855|1 +638588.22524542|220851.59398164|123.75981896|4856|1 +638598.34678722|220842.60135166|122.90462293|4857|1 +638603.42476795|220838.08814444|122.34694423|4858|1 +638608.47468301|220833.60466565|122.17373585|4859|1 +638613.57487854|220829.07720431|122.04637593|4860|1 +638618.66870769|220824.55397341|121.80679007|4861|1 +638623.77238299|220820.02469051|121.77938704|4862|1 +638628.86362606|220815.50336534|121.50866814|4863|1 +638633.91016995|220811.02280475|121.32877178|4864|1 +638639.04753095|220806.46009322|121.01725529|4865|1 +638649.24277691|220797.41056394|120.82555498|4866|1 +638654.33569166|220792.88879668|120.6361243|4867|1 +638659.44620336|220788.35726191|120.90873147|4868|1 +638664.60707849|220783.78223777|121.27241232|4869|1 +638669.72246886|220779.24922324|121.77012247|4870|1 +638674.83726316|220774.71729253|122.31165329|4871|1 +638679.95173115|220770.18636406|122.90949706|4872|1 +638685.11127797|220765.61506505|123.47399397|4873|1 +638690.21832347|220761.08954013|123.97843861|4874|1 +638695.37193774|220756.52280285|124.48723647|4875|1 +638700.46912056|220752.00335388|124.77952619|4876|1 +638705.61267831|220747.44246947|125.04512912|4877|1 +638710.75515076|220742.88262849|125.31722468|4878|1 +638715.84640232|220738.36734634|125.52234746|4879|1 +638720.98321895|220733.81064169|125.64487045|4880|1 +638726.07222743|220729.29711871|125.83137107|4881|1 +638731.20763132|220724.74175175|125.96047973|4882|1 +638736.33816185|220720.18779817|125.85860667|4883|1 +638741.41947023|220715.6768564|125.70785278|4884|1 +638746.55112307|220711.12278457|125.67500821|4885|1 +638751.68367324|220706.56854987|125.69236533|4886|1 +638756.81598243|220702.01445916|125.70369489|4887|1 +638761.8997927|220697.50344239|125.72189847|4888|1 +638767.03021668|220692.94906233|125.57728375|4889|1 +638772.16210917|220688.39511645|125.57036323|4890|1 +638777.29400786|220683.84125305|125.56990744|4891|1 +638782.42592322|220679.28745932|125.57590708|4892|1 +638787.55699074|220674.73189748|125.38212318|4893|1 +638792.68828426|220670.174572|125.06355594|4894|1 +638797.82092707|220665.61928019|125.00144798|4895|1 +638802.90549931|220661.11092929|125.28272439|4896|1 +638808.03858684|220656.5522623|124.98343974|4897|1 +638818.28092674|220647.53967028|131.01572546|4898|1 +638823.41057113|220642.97808216|130.2420316|4899|1 +638828.56490526|220638.35356698|126.21306017|4900|1 +638833.65707123|220633.82290824|125.25751658|4901|1 +638838.79109621|220629.26769848|125.29686309|4902|1 +638843.92630508|220624.71041751|125.25520974|4903|1 +638849.05331867|220620.16087856|125.25098673|4904|1 +638854.19159266|220615.59869015|125.03484135|4905|1 +638859.28153267|220611.08018531|124.88579899|4906|1 +638864.42122587|220606.51730133|124.71375333|4907|1 +638869.54340965|220601.98301704|125.57886505|4908|1 +638874.65695438|220597.42919375|124.28703434|4909|1 +638879.80672277|220592.85329896|123.79089619|4910|1 +638884.95468684|220588.28121885|123.46993839|4911|1 +638890.05246349|220583.75540462|123.290349|4912|1 +638895.20470258|220579.17891779|122.91991505|4913|1 +638900.23524142|220574.76974338|127.26382604|4914|1 +638905.29714035|220570.29116404|128.30795044|4915|1 +638910.43736424|220565.72927592|128.25001898|4916|1 +638915.56019565|220561.17033209|127.20294591|4917|1 +638920.87641248|220556.38392251|121.70915863|4918|1 +638925.9931452|220551.83795402|121.26222688|4919|1 +638931.15882431|220547.24928769|120.86890126|4920|1 +638936.27636283|220542.70387892|120.52223335|4921|1 +638941.44112284|220538.11776909|120.26683448|4922|1 +638946.5688532|220533.56129348|119.75839938|4923|1 +638951.70109658|220529.00019442|119.20027419|4924|1 +638956.88193808|220524.39686831|118.70888925|4925|1 +638961.96594181|220519.87997719|118.26559449|4926|1 +638967.1537826|220515.26990877|117.73126325|4927|1 +638972.29145935|220510.7071324|117.29263798|4928|1 +638977.44109281|220506.13234866|116.65473145|4929|1 +638982.59109589|220501.5579546|116.0732402|4930|1 +638987.7394154|220496.98623946|115.58553876|4931|1 +638992.89078674|220492.41175231|115.09192139|4932|1 +638998.04298407|220487.83701418|114.63599482|4933|1 +639003.15369869|220483.29796443|114.09420355|4934|1 +639008.31628536|220478.71293594|113.55163094|4935|1 +639013.48682748|220474.11977007|112.92223554|4936|1 +639018.66030616|220469.52409133|112.29950021|4937|1 +639023.79921713|220464.95671325|111.4909526|4938|1 +639028.93023461|220460.39877244|110.87564009|4939|1 +639034.09233028|220455.81760491|110.60254923|4940|1 +639039.23989561|220451.25269886|110.59739605|4941|1 +639044.3397971|220446.7301237|110.59880992|4942|1 +639043.31540309|220444.32379706|110.8249175|4943|1 +639038.07115155|220448.96159962|110.86192927|4944|1 +639032.89093968|220453.54001869|110.68777211|4945|1 +639027.69343608|220458.13758561|110.81904808|4946|1 +639022.48467934|220462.74793717|111.17493404|4947|1 +639017.20830166|220467.42281282|111.8994029|4948|1 +639011.97959677|220472.0565529|112.71119683|4949|1 +639006.77122253|220476.66853246|113.2246828|4950|1 +639001.55978865|220481.28463381|113.85085048|4951|1 +638996.30760739|220485.93567771|114.38529335|4952|1 +638991.11110618|220490.53643941|114.84447554|4953|1 +638985.91206415|220495.14079058|115.41009796|4954|1 +638980.6692566|220499.78338741|115.93413214|4955|1 +638975.47579627|220504.38287844|116.50712156|4956|1 +638970.23277249|220509.02731516|117.1634084|4957|1 +638965.04717916|220513.61929445|117.6938515|4958|1 +638959.81687487|220518.25051844|118.19557072|4959|1 +638954.64415041|220522.82882892|118.54613607|4960|1 +638949.46688627|220527.41327823|119.06551005|4961|1 +638944.24349417|220532.0386179|119.58766527|4962|1 +638939.06979651|220536.62046035|120.15164128|4963|1 +638933.90742906|220541.1892075|120.47265489|4964|1 +638928.69832175|220545.7993958|120.79673808|4965|1 +638923.53470056|220550.37121077|121.27455173|4966|1 +638918.37947872|220554.93315787|121.55922329|4967|1 +638913.17622679|220559.53816407|121.88472966|4968|1 +638907.87496106|220564.29503867|127.38283296|4969|1 +638902.71134154|220568.87401323|128.43061296|4970|1 +638897.53983263|220573.44211335|128.05863493|4971|1 +638892.481402|220577.90162751|127.01798009|4972|1 +638887.39039673|220582.35387325|123.10568083|4973|1 +638882.24181068|220586.91260326|123.60480485|4974|1 +638877.10230713|220591.45897078|123.76069332|4975|1 +638871.91050982|220596.05493615|124.17694782|4976|1 +638866.76992297|220600.60485498|124.53952176|4977|1 +638861.68168134|220605.10661118|124.76059708|4978|1 +638856.49760646|220609.69337755|124.99047188|4979|1 +638851.41177182|220614.19292158|125.20546384|4980|1 +638846.28789212|220618.7250471|125.33162383|4981|1 +638841.1564556|220623.2635409|125.43266903|4982|1 +638836.00152215|220627.85564932|128.13940225|4983|1 +638830.89552362|220632.33904862|125.6540234|4984|1 +638825.76401768|220636.88168698|126.08050985|4985|1 +638820.66196343|220641.44821262|130.47620382|4986|1 +638815.53677694|220645.99241229|131.47169854|4987|1 +638810.46747096|220650.4631228|130.56214294|4988|1 +638805.40049928|220654.87509201|125.15293671|4989|1 +638800.27236074|220659.40970465|125.17993046|4990|1 +638795.19283951|220663.90116005|125.20121293|4991|1 +638790.11409026|220668.39437144|125.41615838|4992|1 +638784.98705842|220672.92877395|125.50585541|4993|1 +638779.90940944|220677.42092231|125.71450355|4994|1 +638774.83126176|220681.91161183|125.77305824|4995|1 +638769.7530895|220686.40208668|125.81277682|4996|1 +638764.67341378|220690.89191345|125.69617905|4997|1 +638759.59594642|220695.38270259|125.81071183|4998|1 +638754.51882854|220699.87332834|125.93766247|4999|1 +638749.43934962|220704.3637505|125.88328429|5000|1 +638744.35990124|220708.8543815|125.84758407|5001|1 +638739.28214025|220713.34476631|125.91175702|5002|1 +638734.2055414|220717.83499343|126.04459569|5003|1 +638729.12620277|220722.32581908|126.0336196|5004|1 +638724.09513785|220726.77402133|126.03379633|5005|1 +638719.01116261|220731.26673565|125.84758407|5006|1 +638713.97332499|220735.71784933|125.60358917|5007|1 +638708.8893567|220740.2138197|125.48588449|5008|1 +638703.80154812|220744.71258696|125.24943334|5009|1 +638698.75716159|220749.17112678|124.87366017|5010|1 +638693.71377144|220753.6298795|124.58508186|5011|1 +638688.61455407|220758.1355837|124.09845943|5012|1 +638683.56100429|220762.60048877|123.5846572|5013|1 +638678.45806222|220767.10956577|123.10419255|5014|1 +638673.39398889|220771.5814193|122.40272698|5015|1 +638668.3347203|220776.05160521|121.90717484|5016|1 +638663.27407275|220780.52324608|121.43016115|5017|1 +638658.21643377|220784.99386874|121.08408855|5018|1 +638653.15830653|220789.46531116|120.76903739|5019|1 +638648.11837825|220793.92668627|120.93447878|5020|1 +638643.06416421|220798.39661666|120.77507424|5021|1 +638638.0256825|220802.85747966|121.00243756|5022|1 +638632.99284076|220807.31499512|121.36060246|5023|1 +638627.95766988|220811.77393332|121.66855637|5024|1 +638622.91962856|220816.23470233|121.92006711|5025|1 +638617.92068431|220820.65850049|121.98663992|5026|1 +638612.87975459|220825.1213406|122.20009709|5027|1 +638607.88344946|220829.54380541|122.34697214|5028|1 +638602.83768058|220834.01005189|122.49122408|5029|1 +638597.81101802|220838.46392332|122.99696167|5030|1 +638592.77399246|220842.9246085|123.31533357|5031|1 +638587.79504662|220847.3359878|123.80359311|5032|1 +638582.81983996|220851.7448232|124.35366297|5033|1 +638578.00384282|220852.78557068|124.74495149|5034|1 +638583.09070287|220848.27029416|124.31976729|5035|1 +638588.16922699|220843.76060783|123.75119621|5036|1 +638593.25790538|220839.24208129|123.35711715|5037|1 +638598.35120302|220834.72019519|123.05036317|5038|1 +638603.38745731|220830.24691932|122.59174838|5039|1 +638608.48736844|220825.72091131|122.4221677|5040|1 +638613.58567342|220821.19608737|122.23393695|5041|1 +638618.68614041|220816.67006386|122.10190753|5042|1 +638623.83670067|220812.10026989|122.01630329|5043|1 +638628.92881514|220807.57978016|121.73473851|5044|1 +638634.01427935|220803.06338106|121.30964733|5045|1 +638639.15759484|220798.49838419|121.09355776|5046|1 +638644.2518705|220793.97678153|120.87460325|5047|1 +638649.36133008|220789.44651235|121.03647276|5048|1 +638654.51204438|220784.87780034|121.04573733|5049|1 +638659.67561071|220780.30226194|121.41744562|5050|1 +638664.84053848|220775.72662457|121.87691617|5051|1 +638670.00627909|220771.151296|122.41792609|5052|1 +638675.12600905|220766.61846791|123.09904866|5053|1 +638680.28310952|220762.04924459|123.51571244|5054|1 +638685.44168245|220757.48005915|124.03887225|5055|1 +638690.59855217|220752.9125491|124.5748406|5056|1 +638695.79436007|220748.30725136|124.84686175|5057|1 +638700.89624081|220743.7871512|125.2791153|5058|1 +638706.08876059|220739.18455258|125.53317472|5059|1 +638711.23049748|220734.62633172|125.73928349|5060|1 +638716.37234774|220730.06864164|125.99562184|5061|1 +638721.50989335|220725.51289676|126.1022574|5062|1 +638726.6473858|220720.95759978|126.24035158|5063|1 +638731.78127413|220716.40354358|126.22246426|5064|1 +638736.96254439|220711.80697936|126.16012376|5065|1 +638742.09532982|220707.25336965|126.09903899|5066|1 +638747.23015141|220702.6996068|126.16940693|5067|1 +638752.36307336|220698.14589321|126.10875004|5068|1 +638757.54403145|220693.54925499|126.01660665|5069|1 +638762.62832511|220689.03823164|125.92557946|5070|1 +638767.81016663|220684.44168872|125.90284592|5071|1 +638772.94347632|220679.8878975|125.8619088|5072|1 +638778.07694268|220675.33414292|125.83369652|5073|1 +638783.21038671|220670.78009291|125.78068569|5074|1 +638788.39261668|220666.18364498|125.7906572|5075|1 +638793.52563335|220661.62458449|125.30698343|5076|1 +638798.6616355|220657.11560348|129.02313612|5077|1 +638803.84337124|220652.4742788|125.42208361|5078|1 +638808.964438|220648.00317821|131.10089252|5079|1 +638814.08799253|220643.47049894|132.04915282|5080|1 +638819.25673266|220638.89963457|133.14226038|5081|1 +638824.37827947|220634.27105558|126.31020792|5082|1 +638829.56271498|220629.67046387|126.14190158|5083|1 +638834.67973104|220625.15616306|128.09086558|5084|1 +638839.838116|220620.55110284|125.72879108|5085|1 +638844.98043816|220616.03412556|129.24782983|5086|1 +638850.08100328|220611.53135149|130.95324543|5087|1 +638855.28046904|220606.86114672|126.29943646|5088|1 +638860.44129067|220602.26526292|124.83844365|5089|1 +638865.58627415|220597.69792775|124.5334384|5090|1 +638870.73294861|220593.12894245|124.21621992|5091|1 +638875.88050043|220588.55958668|123.93053446|5092|1 +638881.03143111|220583.98614986|123.55770996|5093|1 +638886.09216775|220579.5422498|127.13811253|5094|1 +638891.20681928|220575.01844532|128.15809882|5095|1 +638901.46019956|220565.91350666|127.32980354|5096|1 +638906.75007132|220561.15722987|122.19485088|5097|1 +638911.86036194|220556.62081492|121.90187283|5098|1 +638917.02280896|220552.03747565|121.54986571|5099|1 +638922.13644675|220547.49819075|121.26349192|5100|1 +638927.30911629|220542.9034655|120.72489116|5101|1 +638932.42956931|220538.35714726|120.35780585|5102|1 +638937.55161793|220533.80957553|120.00337096|5103|1 +638942.73214588|220529.2076856|119.44710613|5104|1 +638947.86335275|220524.65053156|118.974641|5105|1 +638952.99701139|220520.09120965|118.50240842|5106|1 +638958.13182229|220515.53127262|118.06157863|5107|1 +638963.26988783|220510.96822679|117.60228481|5108|1 +638968.41301652|220506.40000064|117.08712453|5109|1 +638973.56380539|220501.82366773|116.46627746|5110|1 +638978.71888252|220497.24235495|115.80833491|5111|1 +638983.86962817|220492.66665585|115.30030909|5112|1 +638989.02474801|220488.08669983|114.76144788|5113|1 +638994.13159301|220483.55006088|114.26770029|5114|1 +638999.29048186|220478.96724761|113.76679033|5115|1 +639004.40913317|220474.41875667|113.16125398|5116|1 +639009.52743504|220469.87136464|112.61817907|5117|1 +639014.7052855|220465.26959697|111.94380958|5118|1 +639019.84202078|220460.70330622|111.19574212|5119|1 +639024.94850477|220456.17086395|111.0081718|5120|1 +639030.03904695|220451.65622452|111.11321676|5121|1 +639035.13059362|220447.14077915|111.22447531|5122|1 +639040.29188355|220442.55982461|111.03703521|5123|1 +639045.36107757|220438.05971506|110.79387747|5124|1 +639046.79201833|220433.16382525|110.80879752|5125|1 +639041.62816617|220437.73369614|111.04619746|5126|1 +639036.36909082|220442.38776856|111.27798843|5127|1 +639031.16614363|220446.99122196|111.43564423|5128|1 +639025.98708359|220451.56904914|111.23905119|5129|1 +639020.79726575|220456.15891094|111.24207427|5130|1 +639015.58948686|220460.76890738|111.58177514|5131|1 +639010.31152179|220465.44630053|112.34000945|5132|1 +639005.05564044|220470.09998484|112.76905388|5133|1 +638999.84100986|220474.71958265|113.39101716|5134|1 +638994.58037846|220479.37998733|114.02091486|5135|1 +638989.33422225|220484.02482763|114.43356026|5136|1 +638984.13552791|220488.62866698|114.92660092|5137|1 +638978.88589965|220493.27886252|115.52136581|5138|1 +638973.58606795|220497.97469384|116.21201341|5139|1 +638968.3932273|220502.57413326|116.76930143|5140|1 +638963.15248483|220507.21654428|117.37257745|5141|1 +638957.87261642|220511.89164448|117.8226625|5142|1 +638952.64640806|220516.51851836|118.21542071|5143|1 +638947.46578114|220521.10674777|118.74385463|5144|1 +638942.1929343|220525.77579363|119.20877602|5145|1 +638936.9668742|220530.40489472|119.79064864|5146|1 +638931.748488|220535.02547184|120.23592468|5147|1 +638926.53565856|220539.63994673|120.58819225|5148|1 +638921.27160822|220544.30152525|121.0811957|5149|1 +638916.11187946|220548.86888617|121.42557537|5150|1 +638910.85370262|220553.52471283|121.87629295|5151|1 +638905.65198887|220558.12808771|122.13110581|5152|1 +638900.33844554|220562.88239449|126.506987|5153|1 +638900.45051055|220562.73188195|122.43639941|5154|2 +638895.12479431|220567.50641014|127.56238515|5155|1 +638889.86545639|220572.17137615|128.65945527|5156|1 +638884.74914762|220576.6869062|127.94527418|5157|1 +638879.61584384|220581.1708002|123.52918141|5158|1 +638874.41999012|220585.77110235|123.95581669|5159|1 +638869.22756579|220590.36734314|124.30174045|5160|1 +638864.03930324|220594.95808673|124.50450057|5161|1 +638858.80124391|220599.59484349|124.86193063|5162|1 +638853.65136579|220604.1622632|125.91091986|5163|1 +638848.37522801|220608.88013233|130.03080686|5164|1 +638843.20111192|220613.45503815|129.97329398|5165|1 +638838.06388808|220617.95428809|126.50477318|5166|1 +638832.88617146|220622.53158606|126.38544069|5167|1 +638827.70817415|220627.10968049|126.31024513|5168|1 +638822.50674795|220631.75402636|129.8471898|5169|1 +638817.31884106|220636.37828928|132.74112127|5170|1 +638812.15109843|220640.94493482|132.47984367|5171|1 +638807.03294412|220645.45840411|131.48227466|5172|1 +638801.86378216|220650.01850122|130.60293123|5173|1 +638796.69226435|220654.57823645|129.53020386|5174|1 +638791.5139697|220659.11711895|126.32675578|5175|1 +638786.38413742|220663.64767679|125.86746196|5176|1 +638781.20747373|220668.22723287|126.00813273|5177|1 +638776.07871171|220672.76242328|125.99298944|5178|1 +638770.90192912|220677.34081639|126.03434514|5179|1 +638765.77336354|220681.87613669|126.0446422|5180|1 +638760.64571853|220686.41181687|126.1488407|5181|1 +638755.51689293|220690.94703967|126.13445085|5182|1 +638750.38983891|220695.48257506|126.27021958|5183|1 +638745.30959946|220699.97508926|126.28045154|5184|1 +638740.18183373|220704.51037686|126.34767547|5185|1 +638735.05214177|220709.04578857|126.29006957|5186|1 +638729.97133566|220713.53854077|126.28155845|5187|1 +638724.84292662|220718.07414109|126.33039277|5188|1 +638719.76031571|220722.56776798|126.26563381|5189|1 +638714.67433307|220727.06279617|126.07584966|5190|1 +638709.53977573|220731.59889695|125.8812379|5191|1 +638704.49802579|220736.05130565|125.56482867|5192|1 +638699.41088222|220740.54594816|125.41232604|5193|1 +638694.31509751|220745.04476908|124.98491872|5194|1 +638689.27207467|220749.49945286|124.76162958|5195|1 +638684.16907389|220754.00299621|124.20289047|5196|1 +638679.06574426|220758.50752429|123.70038991|5197|1 +638674.00902337|220762.97084696|123.20179609|5198|1 +638668.90141325|220767.47906994|122.69297031|5199|1 +638663.83650568|220771.94820485|122.08168547|5200|1 +638658.77272196|220776.41751569|121.56388348|5201|1 +638653.71479072|220780.88423289|121.25194841|5202|1 +638648.66402057|220785.34735514|121.15831673|5203|1 +638643.60747066|220789.81416381|120.95208705|5204|1 +638638.61594102|220794.22864475|121.16070729|5205|1 +638633.57562631|220798.68633905|121.37209946|5206|1 +638628.54465892|220803.13841952|121.7954233|5207|1 +638623.55700215|220807.55069409|122.10257726|5208|1 +638618.51136544|220812.0118837|122.21943548|5209|1 +638613.56558413|220816.38553488|122.40339671|5210|1 +638608.52015808|220820.84690847|122.55072755|5211|1 +638603.52244468|220825.26599018|122.69382608|5212|1 +638598.5394411|220829.67565852|123.12336351|5213|1 +638593.5512604|220834.08871717|123.45883207|5214|1 +638588.60942399|220838.46029471|123.75827486|5215|1 +638583.57867466|220842.9124713|124.209318|5216|1 +638578.69489077|220847.23478633|124.67753222|5217|1 +638573.72148033|220851.63801611|125.27254825|5218|1 +638567.45720452|220853.30565214|125.82026475|5219|1 +638572.49702848|220848.83917103|125.40170342|5220|1 +638577.52447547|220844.38102795|124.77717285|5221|1 +638582.56421103|220839.91462989|124.35813712|5222|1 +638587.65046521|220835.40662902|123.90334537|5223|1 +638592.6924479|220830.93882031|123.52760011|5224|1 +638597.78489821|220826.42691061|123.18494127|5225|1 +638602.82541242|220821.96021655|122.78389518|5226|1 +638607.93052867|220817.44036255|122.69691427|5227|1 +638613.02920214|220812.92479089|122.49768882|5228|1 +638618.08071268|220808.45147144|122.33954002|5229|1 +638623.22674249|220803.89397267|122.13676129|5230|1 +638628.26946878|220799.42629972|121.80994338|5231|1 +638633.35864059|220794.91694492|121.43592825|5232|1 +638638.4534973|220790.40422957|121.19297515|5233|1 +638643.54965907|220785.8908435|120.98749891|5234|1 +638648.71292364|220781.32408124|121.25360413|5235|1 +638653.82446727|220776.80256627|121.47910709|5236|1 +638658.9345823|220772.28232524|121.70469378|5237|1 +638664.10427833|220767.71378047|122.27748787|5238|1 +638669.2270728|220763.18819723|122.96546585|5239|1 +638674.3872459|220758.62627582|123.39517072|5240|1 +638679.55010054|220754.06381362|123.96883917|5241|1 +638684.66023097|220749.54715953|124.47617666|5242|1 +638689.81118853|220744.99191417|124.78796291|5243|1 +638694.96363302|220740.43670933|125.20622658|5244|1 +638700.06304162|220735.92703045|125.51401306|5245|1 +638705.26023722|220731.33199304|125.91234304|5246|1 +638710.4019124|220726.78309707|126.07520784|5247|1 +638715.5431191|220722.23486254|126.25704827|5248|1 +638720.68304318|220717.6875345|126.42036886|5249|1 +638725.81964356|220713.14149191|126.45267393|5250|1 +638730.95549586|220708.59588436|126.46644986|5251|1 +638736.140036|220704.00767679|126.51706082|5252|1 +638741.27468566|220699.46267836|126.49386219|5253|1 +638746.45789362|220694.87464195|126.46397558|5254|1 +638751.59213518|220690.32947061|126.3975423|5255|1 +638756.77563224|220685.74167822|126.4059139|5256|1 +638761.90929028|220681.19625186|126.27749357|5257|1 +638767.09314417|220676.60879902|126.33662496|5258|1 +638772.22730164|220672.06326786|126.23371011|5259|1 +638777.41067426|220667.47547394|126.23109631|5260|1 +638782.54550334|220662.93007993|126.1849595|5261|1 +638787.72781007|220658.33684276|125.67688717|5262|1 +638792.86790594|220653.83761048|129.64339718|5263|1 +638798.046487|220649.26699331|130.66089059|5264|1 +638803.22244164|220644.69831553|131.64752072|5265|1 +638808.34789728|220640.17273066|132.50873499|5266|1 +638813.52287557|220635.59401853|132.63364854|5267|1 +638818.65370385|220631.04526959|132.03932084|5268|1 +638823.87064536|220626.35852325|126.56001643|5269|1 +638829.05469269|220621.77135611|126.64880188|5270|1 +638834.19683994|220617.2132685|126.10555023|5271|1 +638839.3367437|220612.71498241|130.13124745|5272|1 +638844.52159215|220608.12231673|129.83998092|5273|1 +638849.72076726|220603.46266963|125.25557251|5274|1 +638854.90418681|220598.87192759|125.01499136|5275|1 +638860.04948821|220594.31474028|124.7606994|5276|1 +638865.24291032|220589.7161271|124.5962626|5277|1 +638870.39581053|220585.14900111|124.08654385|5278|1 +638875.59152982|220580.54861997|123.9417431|5279|1 +638880.68565404|220576.09538412|128.3250099|5280|1 +638880.79983703|220575.93071668|123.29161404|5281|2 +638885.83008959|220571.53972478|128.12832383|5282|1 +638891.04603294|220566.91003375|127.07921368|5283|1 +638896.30904854|220562.19550016|122.61272389|5284|1 +638901.5162888|220557.58294025|122.3080163|5285|1 +638906.68085565|220553.00636988|121.8634565|5286|1 +638911.88887824|220548.39432952|121.65341308|5287|1 +638917.05481044|220543.81760374|121.29081123|5288|1 +638922.22948664|220539.23062921|120.72887232|5289|1 +638927.39727783|220534.65315112|120.43567102|5290|1 +638932.57310003|220530.06645142|119.97437733|5291|1 +638937.80454996|220525.42902471|119.39256051|5292|1 +638942.93751971|220520.87997631|118.90958438|5293|1 +638948.1194594|220516.28829708|118.48078179|5294|1 +638953.30798496|220511.68954545|117.95263622|5295|1 +638958.4443988|220507.13866614|117.56408242|5296|1 +638963.6398126|220502.53337297|116.99937157|5297|1 +638968.83952926|220497.92389518|116.40400207|5298|1 +638973.99424751|220493.35402371|115.7920289|5299|1 +638979.20136875|220488.73726254|115.16648443|5300|1 +638984.35897702|220484.16245838|114.59896445|5301|1 +638989.51568186|220479.58941328|114.10654701|5302|1 +638994.6741976|220475.01501448|113.6331517|5303|1 +638999.84163011|220470.43132692|113.04796765|5304|1 +639005.01010339|220465.84719416|112.5005395|5305|1 +639010.17913198|220461.26313999|111.99708085|5306|1 +639015.30176773|220456.72022634|111.50083108|5307|1 +639020.49616855|220452.11995642|111.48937129|5308|1 +639025.5835065|220447.61662353|111.65336161|5309|1 +639030.73128867|220443.05777701|111.65530568|5310|1 +639035.84536471|220438.52609278|111.44607152|5311|1 +639040.96216449|220433.99192993|111.2307354|5312|1 +639046.08925653|220429.44717933|110.89735043|5313|1 +639043.48994553|220427.30413434|111.11222147|5314|1 +639038.3218324|220431.87279041|111.3673878|5315|1 +639033.10278744|220436.48735803|111.69147099|5316|1 +639027.94869642|220441.0417681|111.80432014|5317|1 +639022.80426029|220445.58603562|111.79297197|5318|1 +639017.61283697|220450.17177701|111.77609855|5319|1 +639012.43031605|220454.74804003|111.63514873|5320|1 +639007.26642307|220459.31496182|112.0481197|5321|1 +639002.01006123|220463.96303146|112.41327024|5322|1 +638996.84849167|220468.5286212|112.88316808|5323|1 +638991.63386184|220473.14282582|113.48529067|5324|1 +638986.38084178|220477.78915351|113.94591463|5325|1 +638981.17732041|220482.39225938|114.44957792|5326|1 +638975.96903648|220487.0015846|115.10959477|5327|1 +638970.71745013|220491.64858124|115.7218749|5328|1 +638965.51466494|220496.25328644|116.40178825|5329|1 +638960.32063173|220500.84865102|116.95752288|5330|1 +638955.08435647|220505.48027112|117.42839741|5331|1 +638949.89739642|220510.06890204|117.94777139|5332|1 +638944.61650124|220514.7403304|118.44703494|5333|1 +638939.3884572|220519.3645212|118.90746357|5334|1 +638934.20788268|220523.94799264|119.46592362|5335|1 +638928.97963998|220528.57421132|120.07104139|5336|1 +638923.76412965|220533.18547803|120.38976676|5337|1 +638918.5474462|220537.79898655|120.80268191|5338|1 +638913.32915122|220542.41545237|121.33478073|5339|1 +638908.0714813|220547.06388482|121.64583213|5340|1 +638902.91099755|220551.62718529|122.01998679|5341|1 +638897.65426384|220556.27607953|122.43226943|5342|1 +638892.45576037|220560.86974836|122.55470871|5343|1 +638887.24989858|220565.47434671|123.02109048|5344|1 +638881.95650282|220570.20555173|127.3097024|5345|1 +638876.80493692|220574.70768168|123.54705012|5346|1 +638871.56952999|220579.3603602|125.72014043|5347|1 +638866.40711521|220583.90419286|124.45246643|5348|1 +638861.21016014|220588.50140275|124.95902257|5349|1 +638855.97603851|220593.12421873|124.90190967|5350|1 +638850.7957359|220597.70309511|125.1287893|5351|1 +638845.60541022|220602.29235521|125.4744247|5352|1 +638840.32428753|220607.00805791|129.40506706|5353|1 +638835.18183168|220611.56506598|130.53439574|5354|1 +638829.97184173|220616.14677122|128.94328967|5355|1 +638824.76363313|220620.71748566|126.62164069|5356|1 +638819.60141945|220625.33443804|131.05124894|5357|1 +638819.62900653|220625.25647026|126.88966208|5358|2 +638814.37456151|220629.96074072|131.76750433|5359|1 +638809.19878132|220634.5405273|132.37906822|5360|1 +638804.02538448|220639.11603438|132.82234438|5361|1 +638798.8549506|220643.67009708|131.80367894|5362|1 +638793.63349555|220648.26926878|130.78485537|5363|1 +638788.49932782|220652.74227373|125.96149362|5364|1 +638783.31869526|220657.31830566|125.95005244|5365|1 +638778.09172551|220661.9410214|126.38256644|5366|1 +638772.96103194|220666.47466287|126.50957289|5367|1 +638767.78141292|220671.0500398|126.51809332|5368|1 +638762.60141498|220675.62518867|126.48326747|5369|1 +638757.42221841|220680.20083239|126.54257559|5370|1 +638752.29093271|220684.73346747|126.55185877|5371|1 +638741.93299511|220693.88467367|126.69726414|5372|1 +638736.80141123|220698.4174022|126.69476196|5373|1 +638731.6213678|220702.99290665|126.6871159|5374|1 +638726.48920895|220707.52589771|126.66631713|5375|1 +638721.35644259|220712.05926212|126.6331935|5376|1 +638716.22221701|220716.5936663|126.54401737|5377|1 +638711.08516068|220721.13041954|126.3362808|5378|1 +638705.94742445|220725.66792888|126.14125045|5379|1 +638700.80902378|220730.20618457|125.95891703|5380|1 +638695.71068344|220734.70545313|125.50012551|5381|1 +638690.56603197|220739.24745882|125.1806467|5382|1 +638685.46486421|220743.74945582|124.74071918|5383|1 +638680.36268574|220748.25266397|124.32577624|5384|1 +638675.25734575|220752.75809926|123.86713355|5385|1 +638670.14505292|220757.26774854|123.25862064|5386|1 +638665.03501132|220761.77708906|122.78130928|5387|1 +638659.91908029|220766.29026433|122.19789256|5388|1 +638654.853982|220770.76005931|121.73671979|5389|1 +638649.74890934|220775.26868282|121.5466752|5390|1 +638644.67856244|220779.74261977|121.04780233|5391|1 +638639.6326952|220784.20309386|121.18552443|5392|1 +638634.54002537|220788.70562607|121.37611783|5393|1 +638624.51116903|220797.57561865|122.0153452|5394|1 +638619.47074605|220802.03316209|122.30181201|5395|1 +638614.47640363|220806.44934225|122.54069093|5396|1 +638609.43010661|220810.91069604|122.72046636|5397|1 +638604.48169608|220815.28578389|122.92342182|5398|1 +638599.43586823|220819.74710115|123.13367918|5399|1 +638594.44228338|220824.1632026|123.42065758|5400|1 +638589.50052934|220828.53428756|123.77152989|5401|1 +638584.51364436|220832.94612023|124.1883797|5402|1 +638579.5222977|220837.36092094|124.52991302|5403|1 +638569.65997251|220846.08913945|125.60730058|5404|1 +638564.6734405|220850.5007631|126.03436374|5405|1 +638559.73467974|220854.86998897|126.44978107|5406|1 +638556.21618441|220854.22071232|126.89768951|5407|1 +638561.24721089|220849.75854397|126.34876378|5408|1 +638566.23873225|220845.33322354|125.94768048|5409|1 +638571.32306668|220840.82491981|125.47455493|5410|1 +638576.30358212|220836.40697728|124.89198467|5411|1 +638581.39338178|220831.89506136|124.51213733|5412|1 +638586.43243402|220827.42758526|124.09914776|5413|1 +638591.47682802|220822.95667349|123.7857151|5414|1 +638596.56824593|220818.44452572|123.44935356|5415|1 +638601.61341971|220813.97501016|123.16687722|5416|1 +638606.66547493|220809.50126018|123.02765753|5417|1 +638611.76312703|220804.98660151|122.84088716|5418|1 +638616.80939376|220800.51676473|122.60779395|5419|1 +638621.90055219|220796.00631795|122.30238872|5420|1 +638627.03665342|220791.45513535|121.91875556|5421|1 +638632.07672312|220786.98916687|121.56046973|5422|1 +638637.22169417|220782.43282269|121.38302905|5423|1 +638642.27108728|220777.96160068|121.25548309|5424|1 +638647.43587584|220773.39453507|121.60276491|5425|1 +638652.54707789|220768.87374504|121.86567962|5426|1 +638657.65722548|220764.35405318|122.14116103|5427|1 +638662.82951971|220759.78497913|122.84510087|5428|1 +638667.94116176|220755.26591235|123.27073155|5429|1 +638673.05500922|220750.74652131|123.8213316|5430|1 +638678.21396546|220746.18675292|124.3323898|5431|1 +638683.36976749|220741.62929532|124.8062688|5432|1 +638688.47328946|220737.11718466|125.21361219|5433|1 +638693.62323226|220732.56387268|125.60670527|5434|1 +638698.7717272|220728.01192003|126.00631888|5435|1 +638703.91545585|220723.46249382|126.27496349|5436|1 +638709.05898908|220718.91381308|126.58758689|5437|1 +638714.14841007|220714.41031104|126.69554331|5438|1 +638719.28607357|220709.86448533|126.82728437|5439|1 +638724.42244502|220705.31940371|126.9279947|5440|1 +638729.55833646|220700.77483356|127.03516047|5441|1 +638734.6900829|220696.23101778|126.91755811|5442|1 +638739.87173271|220691.64414722|126.88067656|5443|1 +638745.00571537|220687.10007113|126.89481526|5444|1 +638750.13861176|220682.55599074|126.83413978|5445|1 +638755.27160744|220678.01190533|126.77991042|5446|1 +638760.40498978|220673.46797378|126.76337186|5447|1 +638765.58593167|220668.88055546|126.63443994|5448|1 +638770.720546|220664.33781367|126.793398|5449|1 +638775.90196244|220659.75047395|126.70270568|5450|1 +638781.03417378|220655.20250862|126.29344612|5451|1 +638786.21720333|220650.61732353|126.47848636|5452|1 +638791.35406614|220646.13272377|131.28173766|5453|1 +638796.5291937|220641.56498036|132.27359538|5454|1 +638801.70256225|220636.99393868|132.89087987|5455|1 +638806.83106476|220632.44467561|132.12665522|5456|1 +638812.00921556|220627.85438102|131.58235247|5457|1 +638817.18974292|220623.26085832|130.951013|5458|1 +638822.35160693|220618.63796065|126.77605018|5459|1 +638827.50866278|220614.11115362|129.69464997|5460|1 +638832.68231439|220609.53991769|130.31421339|5461|1 +638837.86380285|220604.899614|126.13434853|5462|1 +638843.0576717|220600.29499593|125.55528505|5463|1 +638848.24867771|220595.69728614|125.31407138|5464|1 +638853.39274254|220591.14080708|125.05266356|5465|1 +638858.57281488|220586.55536193|125.01179155|5466|1 +638863.77068162|220581.94902345|124.57201286|5467|1 +638868.92462647|220577.37979117|123.99930249|5468|1 +638874.12251893|220572.77579857|123.74159678|5469|1 +638879.25124966|220568.27240924|126.53183204|5470|1 +638884.48061194|220563.59772285|122.96282415|5471|1 +638889.6828023|220558.99020383|122.7253498|5472|1 +638894.88819051|220554.37906039|122.42597212|5473|1 +638900.04498095|220549.81164968|122.1865444|5474|1 +638905.20896599|220545.23546223|121.76016027|5475|1 +638910.42199324|220540.61662641|121.38736367|5476|1 +638915.59303519|220536.03308359|120.87446372|5477|1 +638920.81437637|220531.40538074|120.38419499|5478|1 +638925.98290527|220526.82675321|120.07812934|5479|1 +638931.16307303|220522.23444442|119.51039542|5480|1 +638936.39205784|220517.59986072|119.00936453|5481|1 +638941.57528479|220513.00559506|118.49878072|5482|1 +638946.76083799|220508.40937171|117.99489419|5483|1 +638951.99942679|220503.76576393|117.45207043|5484|1 +638957.19055879|220499.16454542|116.94301211|5485|1 +638962.38636248|220494.55864221|116.39081215|5486|1 +638967.58588396|220489.94922081|115.82042722|5487|1 +638972.79194396|220485.33305744|115.17578621|5488|1 +638977.99683651|220480.71907118|114.61896327|5489|1 +638983.21847502|220476.08854659|113.80720655|5490|1 +638988.36986447|220471.52904866|113.49563424|5491|1 +638993.58395624|220466.91138285|112.97152565|5492|1 +638998.79379435|220462.29918636|112.57882325|5493|1 +639003.96186391|220457.72288095|112.10649765|5494|1 +639009.11546475|220453.16324546|111.93340089|5495|1 +639014.30611767|220448.57392695|111.99665297|5496|1 +639019.45944369|220444.01544058|111.89268702|5497|1 +639024.60351027|220439.46748288|111.96951039|5498|1 +639029.70398227|220434.95726314|111.98448625|5499|1 +639034.87904129|220430.37637122|111.63239541|5500|1 +639040.05313699|220425.79706509|111.33668263|5501|1 +639045.18456108|220421.25475864|110.98521501|5502|1 +639043.09331861|220419.4193863|111.08513469|5503|1 +639037.96160062|220423.94902978|111.45753131|5504|1 +639032.83672152|220428.47181425|111.76787578|5505|1 +639027.66302173|220433.03821938|112.11584594|5506|1 +639022.51132534|220437.58114052|112.15298793|5507|1 +639017.37276595|220442.11002591|112.00363861|5508|1 +639012.22329606|220446.65121721|112.05990505|5509|1 +639007.12067641|220451.15189206|112.1842419|5510|1 +639001.98822104|220455.67496833|112.00418741|5511|1 +638996.82491014|220460.2328315|112.40353128|5512|1 +638991.70183158|220464.75789118|113.01395105|5513|1 +638986.50094094|220469.34750753|113.30278981|5514|1 +638981.34207736|220473.90232417|113.77154353|5515|1 +638976.1723352|220478.47032824|114.51480198|5516|1 +638970.96643643|220483.06776995|115.06665777|5517|1 +638965.85891166|220487.57891161|115.66567357|5518|1 +638960.65572043|220492.17486013|116.28690201|5519|1 +638955.45885931|220496.76423918|116.83380925|5520|1 +638950.36488379|220501.26195497|117.32110141|5521|1 +638945.17500852|220505.84468068|117.83126664|5522|1 +638939.98650934|220510.4265918|118.37306721|5523|1 +638934.8540509|220514.95742743|118.79440978|5524|1 +638929.669989|220519.53566197|119.35563246|5525|1 +638924.48970033|220524.11016342|119.88607556|5526|1 +638919.31666584|220528.67646955|120.27962442|5527|1 +638914.14554805|220533.2411633|120.67975894|5528|1 +638909.01796465|220537.77036448|121.30822416|5529|1 +638903.85076387|220542.33183381|121.72766916|5530|1 +638898.63768047|220546.9335594|122.12567357|5531|1 +638893.52807616|220551.44183183|122.3677523|5532|1 +638888.36887804|220555.99517729|122.70696018|5533|1 +638883.16525166|220560.58651636|122.95010862|5534|1 +638878.05863821|220565.09302601|123.26133676|5535|1 +638872.85418697|220569.68737107|123.68010273|5536|1 +638867.69960277|220574.23801909|124.12669032|5537|1 +638862.54920271|220578.7834233|124.4548849|5538|1 +638857.40091124|220583.32655019|124.75208595|5539|1 +638852.21566927|220587.90189672|125.01670289|5540|1 +638847.11803513|220592.40046038|125.32877749|5541|1 +638841.92470147|220596.98368114|125.64987481|5542|1 +638836.73338554|220601.5644631|125.92145878|5543|1 +638831.6093784|220606.12320492|129.06424067|5544|1 +638826.4135236|220610.72331605|130.51124362|5545|1 +638826.44940079|220610.64161519|126.67486546|5546|2 +638821.31126182|220615.17404923|126.84255788|5547|1 +638816.17547578|220619.70139912|126.77923139|5548|1 +638810.96884675|220624.34808982|131.07048502|5549|1 +638805.83702962|220628.87998824|131.62637778|5550|1 +638800.70666978|220633.41248262|132.32616902|5551|1 +638795.53023217|220637.98420053|132.91300879|5552|1 +638790.40345271|220642.49387603|132.107168|5553|1 +638785.26677111|220646.9545103|126.87058414|5554|1 +638780.08297402|220651.52179752|126.62086865|5555|1 +638774.94931246|220656.05139791|126.87792324|5556|1 +638769.81541306|220660.57899835|126.96640174|5557|1 +638764.63183236|220665.14780132|126.84887379|5558|1 +638759.49830273|220669.67531997|126.95653255|5559|1 +638754.36457613|220674.20243841|127.02061249|5560|1 +638749.18200758|220678.77213068|127.04152288|5561|1 +638744.09606897|220683.25628527|127.04924336|5562|1 +638738.91376504|220687.82615331|127.10196583|5563|1 +638733.77913669|220692.35324025|127.10429127|5564|1 +638728.64515791|220696.8801518|127.13802881|5565|1 +638723.51101041|220701.40721466|127.17192449|5566|1 +638718.37293751|220705.93564779|127.03727197|5567|1 +638713.28143954|220710.42252667|126.86405429|5568|1 +638708.09169096|220714.99590157|126.66855885|5569|1 +638702.94896902|220719.52748005|126.45325064|5570|1 +638697.8518969|220724.01779856|126.16778842|5571|1 +638692.70380651|220728.55255848|125.83405929|5572|1 +638687.55006784|220733.0903482|125.35062736|5573|1 +638682.44547146|220737.58583347|124.95290201|5574|1 +638677.29250413|220742.12481329|124.61349879|5575|1 +638672.1779698|220746.62638313|124.00979489|5576|1 +638667.0168836|220751.17073565|123.53337651|5577|1 +638661.89525916|220755.67757667|122.85493284|5578|1 +638656.78061355|220760.18168068|122.43884578|5579|1 +638651.66502666|220764.68693839|122.0477712|5580|1 +638646.55247923|220769.19113871|121.78163807|5581|1 +638641.43737696|220773.69725994|121.49055758|5582|1 +638636.33188135|220778.19840463|121.46796357|5583|1 +638631.23355011|220782.69566391|121.63265152|5584|1 +638626.13977485|220787.19036298|121.90966772|5585|1 +638621.05241978|220791.68125718|122.33019173|5586|1 +638610.96566618|220800.58271828|122.97034929|5587|1 +638605.91813866|220805.03608548|123.21202804|5588|1 +638600.86762197|220809.49142824|123.40356092|5589|1 +638595.76543407|220813.99181674|123.54895699|5590|1 +638590.77020296|220818.40021709|123.8857092|5591|1 +638585.72350281|220822.85347891|124.1763153|5592|1 +638580.679579|220827.30500977|124.52280647|5593|1 +638575.68341688|220831.71420637|124.85833084|5594|1 +638570.65409726|220836.15617021|125.45979301|5595|1 +638560.67298076|220844.96722632|126.32806733|5596|1 +638555.68730749|220849.36947873|126.84247417|5597|1 +638550.7109508|220853.76537194|127.49966328|5598|1 +638548.39532821|220852.03726916|127.70582785|5599|1 +638553.37884736|220847.62505688|127.15852063|5600|1 +638558.41240812|220843.16891644|126.63080294|5601|1 +638563.40027311|220838.7537681|126.15117545|5602|1 +638568.48867587|220834.25053164|125.724196|5603|1 +638573.42578642|220829.8797709|125.21091468|5604|1 +638578.51010653|220825.37924422|124.71496256|5605|1 +638583.55338738|220820.91674441|124.35419317|5606|1 +638588.5991482|220816.45271099|124.04308595|5607|1 +638593.6508606|220811.98498455|123.85026943|5608|1 +638598.70508361|220807.51456709|123.71333798|5609|1 +638603.74864543|220803.05024215|123.37652065|5610|1 +638608.79784467|220798.58251374|123.15803123|5611|1 +638613.89119687|220794.0746779|122.85465379|5612|1 +638618.98176216|220789.56857248|122.49511223|5613|1 +638624.02160635|220785.10664146|122.08892225|5614|1 +638629.06730763|220780.64126623|121.81355246|5615|1 +638634.16291016|220776.13228267|121.5723295|5616|1 +638639.26617006|220771.61909127|121.52463929|5617|1 +638644.37411266|220767.10357946|121.61433632|5618|1 +638649.49616495|220762.58087698|122.10370278|5619|1 +638654.60991744|220758.06328623|122.42455825|5620|1 +638659.72929575|220753.54345191|122.951569|5621|1 +638664.84735506|220749.02511808|123.50364803|5622|1 +638669.96240409|220744.50912003|124.03082621|5623|1 +638675.12536667|220739.95144336|124.60590854|5624|1 +638680.22968814|220735.44205314|124.91469031|5625|1 +638685.3863381|220730.88890224|125.40904252|5626|1 +638690.49178609|220726.38058761|125.87417785|5627|1 +638695.64053029|220721.83229127|126.20650241|5628|1 +638700.73883525|220717.32824004|126.51560044|5629|1 +638705.88385407|220712.78267687|126.80455083|5630|1 +638710.97682558|220708.28161932|126.98254032|5631|1 +638716.1167388|220703.73868686|127.12809451|5632|1 +638721.25579291|220699.19643515|127.26761186|5633|1 +638726.39318503|220694.65492215|127.3511046|5634|1 +638731.52630948|220690.11405767|127.19732764|5635|1 +638736.61462014|220685.61566141|127.2631377|5636|1 +638741.74966757|220681.07451235|127.21584747|5637|1 +638746.88512049|220676.53350708|127.20624804|5638|1 +638752.02040606|220671.9925714|127.19059315|5639|1 +638757.15524824|220667.45146639|127.13138734|5640|1 +638762.29028999|220662.91035015|127.08485986|5641|1 +638767.42585884|220658.36968576|127.10728644|5642|1 +638772.56158416|220653.82946745|127.17363601|5643|1 +638777.69623921|220649.28657944|126.96521111|5644|1 +638782.83225215|220644.7471072|127.10693297|5645|1 +638788.01625618|220640.16148652|126.96189968|5646|1 +638793.14773985|220635.69939481|132.67223231|5647|1 +638798.27736479|220631.15546509|132.0458972|5648|1 +638803.45724834|220626.56749855|131.44564426|5649|1 +638808.5909845|220622.01946183|130.78235319|5650|1 +638813.74682829|220617.41049901|126.97622441|5651|1 +638818.93302869|220612.8240699|126.91459084|5652|1 +638824.07182839|220608.27875504|126.79579785|5653|1 +638829.2398438|220603.73260104|128.57184184|5654|1 +638834.40591335|220599.13185452|126.07316145|5655|1 +638839.59971987|220594.53447083|125.68826324|5656|1 +638844.74562491|220589.98027662|125.3707378|5657|1 +638849.94283707|220585.3796608|124.96797088|5658|1 +638855.09206555|220580.82230767|124.63234419|5659|1 +638860.27884487|220576.23330791|124.41115725|5660|1 +638865.47656471|220571.63482545|124.20338347|5661|1 +638870.63261566|220567.06974883|123.73763422|5662|1 +638875.83773124|220562.46221111|123.33718344|5663|1 +638880.99315719|220557.90017529|123.05950681|5664|1 +638886.20188131|220553.28947459|122.66004202|5665|1 +638891.28497816|220548.82785488|125.15508542|5666|1 +638896.5659304|220544.12015855|122.23437413|5667|1 +638901.73454342|220539.54355734|121.73345487|5668|1 +638906.90468435|220534.96594609|121.25788295|5669|1 +638912.13262175|220530.33455234|120.57390472|5670|1 +638917.30337798|220525.75806507|120.22404631|5671|1 +638922.4783595|220521.17703458|119.81216365|5672|1 +638927.71035318|220516.54350311|119.23601162|5673|1 +638932.89266355|220511.95511219|118.75645853|5674|1 +638938.12900012|220507.31809804|118.20650961|5675|1 +638943.316386|220502.72525658|117.72797972|5676|1 +638948.50869937|220498.12733557|117.1937787|5677|1 +638953.75261212|220493.48383306|116.65821962|5678|1 +638958.95013903|220488.88141563|116.131367|5679|1 +638964.15452804|220484.27180042|115.51776602|5680|1 +638969.35535168|220479.66715345|115.04183133|5681|1 +638974.56784937|220475.04982421|114.38570262|5682|1 +638979.78199485|220470.43146727|113.76131158|5683|1 +638985.04042902|220465.77421605|113.27975862|5684|1 +638990.25152603|220461.15815423|112.81874397|5685|1 +638995.41882543|220456.58021585|112.31560158|5686|1 +639000.65500473|220451.94890697|112.3779979|5687|1 +639005.85045786|220447.35202867|112.32342438|5688|1 +639011.00013306|220442.79526355|112.24496389|5689|1 +639016.18898292|220438.206452|112.35933854|5690|1 +639021.38811767|220433.60667598|112.33103323|5691|1 +639026.5447479|220429.04346699|112.22872299|5692|1 +639031.7642114|220424.42240159|111.94628385|5693|1 +639036.94129979|220419.83794046|111.60217394|5694|1 +639042.16899493|220415.20905466|111.27736521|5695|1 +639047.35464647|220410.61648316|110.89070896|5696|1 +639047.5057551|220406.36021831|110.91635396|5697|1 +639042.27077728|220410.98240437|111.28009063|5698|1 +639037.03994468|220415.60068766|111.62584696|5699|1 +639031.86915667|220420.16430962|111.84785246|5700|1 +639026.64811239|220424.77303982|112.12630113|5701|1 +639021.4343011|220429.37439279|112.33067046|5702|1 +639016.22814037|220433.96782833|112.44846816|5703|1 +639011.03146866|220438.55123156|112.44227318|5704|1 +639005.89422927|220443.08016536|112.28653353|5705|1 +639000.68428784|220447.67910293|112.5675588|5706|1 +638995.50446244|220452.24480646|112.35088322|5707|1 +638990.3583971|220456.78468714|112.43260863|5708|1 +638985.08973374|220461.43946683|113.01509517|5709|1 +638979.87544181|220466.04565592|113.55360291|5710|1 +638974.71556883|220470.60312887|114.04148109|5711|1 +638969.50161915|220475.21051422|114.69314494|5712|1 +638964.293234|220479.81232828|115.29550007|5713|1 +638959.14308802|220484.36087649|115.7595564|5714|1 +638953.94386019|220488.95360632|116.28800892|5715|1 +638948.74254984|220493.54967045|116.92918037|5716|1 +638943.55026279|220498.13586071|117.42742072|5717|1 +638938.36158672|220502.71852819|117.90116019|5718|1 +638933.22399719|220507.25615061|118.3792715|5719|1 +638928.03817303|220511.83704781|118.90990064|5720|1 +638922.85584116|220516.41452893|119.41599169|5721|1 +638917.677515|220520.98788829|119.87879227|5722|1 +638912.50172823|220525.55892446|120.33575134|5723|1 +638907.32762154|220530.12872645|120.81180696|5724|1 +638902.15428304|220534.6985155|121.33814797|5725|1 +638896.98298128|220539.26666967|121.87734405|5726|1 +638891.81947077|220543.82536809|122.22336083|5727|1 +638886.70796696|220548.33735807|122.51011599|5728|1 +638881.49916154|220552.93616143|122.86637403|5729|1 +638876.34274738|220557.48758586|123.13835797|5730|1 +638871.23469254|220561.99735626|123.48804895|5731|1 +638866.07890407|220566.54980785|123.87911424|5732|1 +638860.92745813|220571.09667453|124.13930353|5733|1 +638855.78791459|220575.63278848|124.38144737|5734|1 +638850.63498654|220580.18395487|124.86696289|5735|1 +638845.48313354|220584.73492224|125.4089588|5736|1 +638840.33613576|220589.27893515|125.75129208|5737|1 +638835.1933631|220593.81629954|125.87521034|5738|1 +638830.09674044|220598.31669171|126.28202354|5739|1 +638824.95457|220602.85543366|126.5499426|5740|1 +638819.81303276|220607.39444698|126.88055564|5741|1 +638809.5746388|220616.45095139|128.88693021|5742|1 +638804.43277025|220621.00882782|130.61156327|5743|1 +638799.34759777|220625.50183408|131.22495032|5744|1 +638794.215882|220630.03657485|131.88758096|5745|1 +638789.13544946|220634.45505802|127.22657242|5746|1 +638783.99980903|220638.9868395|127.4081524|5747|1 +638778.86373387|220643.51350222|127.17744044|5748|1 +638773.77736834|220648.00228256|127.39710189|5749|1 +638768.69019988|220652.48810418|127.34170051|5750|1 +638763.55446635|220657.01678297|127.28624332|5751|1 +638758.46748168|220661.50317853|127.28707118|5752|1 +638753.33237596|220666.03254725|127.32557123|5753|1 +638748.24608998|220670.51923119|127.39512061|5754|1 +638743.15935427|220675.00572003|127.42085863|5755|1 +638738.02436684|220679.53505459|127.46587922|5756|1 +638732.93692448|220684.02165868|127.45409387|5757|1 +638727.84990632|220688.50821509|127.46724658|5758|1 +638722.71374302|220693.03765588|127.4437875|5759|1 +638717.6240409|220697.52464476|127.36319691|5760|1 +638712.48432457|220702.05502328|127.24000419|5761|1 +638707.39153358|220706.54346053|127.07819979|5762|1 +638702.29500872|220711.03351883|126.79137951|5763|1 +638697.19789923|220715.52442314|126.5295345|5764|1 +638692.0975085|220720.01713528|126.18642918|5765|1 +638686.99672065|220724.51069159|125.88080071|5766|1 +638681.8886442|220729.00792835|125.36901697|5767|1 +638676.77898787|220733.50671763|124.86974412|5768|1 +638671.67348134|220738.00442205|124.56412496|5769|1 +638666.55562423|220742.50861128|123.92749278|5770|1 +638661.48726678|220746.97039961|123.38846414|5771|1 +638656.37139541|220751.47532448|122.93917903|5772|1 +638651.25495464|220755.98124006|122.5274173|5773|1 +638646.18679557|220760.44507895|122.15667639|5774|1 +638641.06686197|220764.95415557|121.75116545|5775|1 +638636.00709442|220769.41448288|121.67362584|5776|1 +638630.95475125|220773.87091308|121.79562794|5777|1 +638625.85692315|220778.3686041|122.0017367|5778|1 +638620.81371333|220782.81995289|122.34806974|5779|1 +638615.77310806|220787.26973535|122.75028786|5780|1 +638610.72961863|220791.72122557|123.0898213|5781|1 +638605.68234021|220796.17505321|123.35421499|5782|1 +638600.59037545|220800.66944675|123.70325485|5783|1 +638595.5886935|220805.08237319|123.91968859|5784|1 +638590.53303078|220809.54174569|124.04611833|5785|1 +638585.48065758|220813.99920317|124.24717623|5786|1 +638580.4381471|220818.45043882|124.63510681|5787|1 +638575.44426948|220822.85875943|125.0246187|5788|1 +638570.45753527|220827.26242673|125.53833721|5789|1 +638565.41760123|220831.71202143|125.97511142|5790|1 +638560.42441941|220836.1199444|126.38196182|5791|1 +638555.38728214|220840.5677145|126.86797964|5792|1 +638550.4052956|220844.96813682|127.45467988|5793|1 +638545.42838856|220849.36506183|128.11560831|5794|1 +638540.43846132|220853.77080752|128.57666946|5795|1 +638536.09209224|220853.52832382|129.03416803|5796|1 +638541.07807006|220849.1121566|128.51015245|5797|1 +638546.11443332|220844.65187761|128.01178188|5798|1 +638551.09236373|220840.24111307|127.36230394|5799|1 +638556.12607078|220835.78258253|126.81969412|5800|1 +638561.165201|220831.32044296|126.36410241|5801|1 +638566.2090609|220826.85521058|125.98931524|5802|1 +638571.25008837|220822.39190478|125.57067018|5803|1 +638576.28814144|220817.93054166|125.10190716|5804|1 +638581.33038355|220813.46649123|124.70773508|5805|1 +638586.42162904|220808.9593066|124.32171136|5806|1 +638591.47810863|220804.48640643|124.20165333|5807|1 +638596.53473641|220800.01361579|124.10012445|5808|1 +638601.62742922|220795.50917706|123.77019974|5809|1 +638606.66961135|220791.04919473|123.40645377|5810|1 +638611.76170365|220786.54554597|123.07015735|5811|1 +638621.94370787|220777.53958439|122.35383685|5812|1 +638627.03811856|220773.03465543|122.07366734|5813|1 +638632.08727621|220768.57079673|121.87766961|5814|1 +638637.18889193|220764.06204072|121.78466115|5815|1 +638642.35231409|220759.50352702|122.04477602|5816|1 +638647.42684265|220755.02699015|122.56654057|5817|1 +638652.58936769|220750.47020672|122.89572113|5818|1 +638657.70501389|220745.9560899|123.32130531|5819|1 +638662.82150645|220741.44233093|123.8281498|5820|1 +638667.98982802|220736.88508878|124.5015054|5821|1 +638673.09584358|220732.37788507|124.80871517|5822|1 +638678.20536675|220727.86986516|125.28459405|5823|1 +638683.36322171|220723.32002112|125.82116702|5824|1 +638688.46527966|220718.81673434|126.15979819|5825|1 +638693.56669664|220714.31444181|126.52966473|5826|1 +638698.71403651|220709.77101945|126.85433393|5827|1 +638703.85849955|220705.22920833|127.11049555|5828|1 +638709.00277581|220700.68816257|127.41062667|5829|1 +638714.09421922|220696.19155953|127.54961382|5830|1 +638719.2321357|220691.65300911|127.61883764|5831|1 +638724.36956698|220687.11488815|127.68824749|5832|1 +638729.45703944|220682.6199394|127.6898753|5833|1 +638734.59340276|220678.08209709|127.70955786|5834|1 +638739.72992933|220673.54453815|127.76067112|5835|1 +638744.8641697|220669.00663589|127.6369947|5836|1 +638749.99888432|220664.46865421|127.53848889|5837|1 +638755.13459506|220659.93106962|127.53392172|5838|1 +638765.35752685|220650.89878095|127.53150326|5839|1 +638770.49386292|220646.36260115|127.67110432|5840|1 +638775.62871906|220641.82266261|127.4359182|5841|1 +638780.76511394|220637.28779273|127.67589473|5842|1 +638785.9008612|220632.74843348|127.54107478|5843|1 +638791.03237788|220628.27126932|131.73090184|5844|1 +638796.16440927|220623.7287732|131.12145875|5845|1 +638801.31101316|220619.12931614|127.25028265|5846|1 +638811.58631266|220610.0498128|127.16985949|5847|1 +638816.72577143|220605.5065332|126.98625173|5848|1 +638821.86658161|220600.961383|126.75286085|5849|1 +638827.00844529|220596.41531237|126.51969322|5850|1 +638832.15063386|220591.86980152|126.34921957|5851|1 +638837.27355325|220587.36140728|127.66583021|5852|1 +638842.42497177|220582.79931901|126.87103992|5853|1 +638847.54323069|220578.25607958|125.30623928|5854|1 +638852.69891426|220573.69201319|124.64316215|5855|1 +638857.89126137|220569.09832506|124.18200798|5856|1 +638862.99371056|220564.58712487|123.95444932|5857|1 +638868.14734486|220560.02994845|123.66694072|5858|1 +638873.30409829|220555.46910089|123.31101754|5859|1 +638878.41222026|220550.95214717|123.02762032|5860|1 +638883.62091436|220546.34551461|122.67501788|5861|1 +638888.73624683|220541.8202702|122.24839191|5862|1 +638893.89926336|220537.25433933|121.92482031|5863|1 +638899.0718133|220532.67654609|121.34566381|5864|1 +638904.24571654|220528.09807268|120.80433763|5865|1 +638909.37125638|220523.56316309|120.32861688|5866|1 +638914.54637673|220518.98506027|119.89403788|5867|1 +638919.72239863|220514.40667967|119.49728921|5868|1 +638924.85711212|220509.86284825|118.95988838|5869|1 +638930.04226734|220505.27481977|118.44530481|5870|1 +638935.17989672|220500.72918634|117.9645611|5871|1 +638940.36861681|220496.13852979|117.48817992|5872|1 +638945.5609357|220491.54437271|116.98731647|5873|1 +638950.71112071|220486.98616174|116.3952398|5874|1 +638955.91056142|220482.38523092|115.85782036|5875|1 +638961.06446414|220477.82433967|115.31005735|5876|1 +638966.21759907|220473.26514748|114.83736898|5877|1 +638971.42948506|220468.65216454|114.22027983|5878|1 +638976.58788966|220464.08842117|113.75453989|5879|1 +638981.76698244|220459.50179489|112.94644806|5880|1 +638986.97082476|220454.90257784|112.65466064|5881|1 +638992.05831273|220450.41132235|112.73882311|5882|1 +638997.20176562|220445.86933144|112.7225264|5883|1 +639002.35045104|220441.32188682|112.64418684|5884|1 +639007.50022605|220436.77365937|112.5785442|5885|1 +639012.69294791|220432.18930781|112.6434799|5886|1 +639017.79988077|220427.67831466|112.53514211|5887|1 +639022.96341998|220423.11619758|112.33960017|5888|1 +639028.08015518|220418.59539022|112.14440239|5889|1 +639033.25159157|220414.0256514|111.89964475|5890|1 +639038.42720373|220409.45189947|111.63038622|5891|1 +639043.56014332|220404.91505339|111.30522403|5892|1 +639046.15769415|220398.93441202|111.09070646|5893|1 +639040.91942495|220403.54996694|111.45549422|5894|1 +639035.69035395|220408.15614937|111.7276363|5895|1 +639030.46226772|220412.76180618|112.02529314|5896|1 +639025.24286376|220417.358544|112.23023918|5897|1 +639020.03250494|220421.94586641|112.32995423|5898|1 +639014.81419905|220426.54240439|112.59201317|5899|1 +639009.60661095|220431.12763479|112.71768947|5900|1 +639004.40766913|220435.7037212|112.73180027|5901|1 +638999.15815546|220440.32518024|112.80307048|5902|1 +638993.96266231|220444.89823163|112.81820447|5903|1 +638988.76607204|220449.47292958|112.88360526|5904|1 +638983.58018608|220454.03590453|112.78123921|5905|1 +638978.37870712|220458.61702775|113.00324471|5906|1 +638973.15948721|220463.21914022|113.61828747|5907|1 +638967.93913433|220467.82344256|114.32113899|5908|1 +638962.73107371|220472.41436851|114.83756432|5909|1 +638957.52755762|220477.00078237|115.3171081|5910|1 +638952.32531248|220481.58649655|115.82828722|5911|1 +638947.1236203|220486.17241114|116.38984477|5912|1 +638941.92344295|220490.75741121|116.98304695|5913|1 +638936.72792975|220495.33771453|117.53305169|5914|1 +638931.53907586|220499.91079147|117.98371346|5915|1 +638926.35311319|220504.48115174|118.42230152|5916|1 +638921.16744358|220509.05201965|118.91744438|5917|1 +638915.98204706|220513.6234979|119.47537423|5918|1 +638910.80622485|220518.18372841|119.82776273|5919|1 +638905.63058547|220522.74456959|120.23667812|5920|1 +638900.45532815|220527.30583973|120.7021018|5921|1 +638895.27602548|220531.87356643|121.38010829|5922|1 +638890.10605246|220536.42991947|121.82750513|5923|1 +638884.93837514|220540.98417088|122.26897674|5924|1 +638879.77229642|220545.53726874|122.72949839|5925|1 +638874.61162097|220550.0837336|123.05293976|5926|1 +638869.45106381|220554.6310233|123.4453538|5927|1 +638864.29686743|220559.16982088|123.62569664|5928|1 +638859.19003603|220563.66848718|123.92726023|5929|1 +638854.04757664|220568.19778743|124.17089236|5930|1 +638848.88526485|220572.75283133|125.02013525|5931|1 +638843.76405404|220577.28058577|126.52754392|5932|1 +638838.62931652|220581.79167557|125.93421151|5933|1 +638833.48249329|220586.32490366|126.18442|5934|1 +638828.33343225|220590.92086028|130.89723943|5935|1 +638823.2408163|220595.34561946|126.69315275|5936|1 +638818.14629147|220599.83222444|126.90769822|5937|1 +638813.0043218|220604.36056535|127.11471856|5938|1 +638807.91202709|220608.84452292|127.27929489|5939|1 +638802.8208917|220613.3263349|127.36257369|5940|1 +638797.73056893|220617.80624042|127.35828558|5941|1 +638792.64063823|220622.28477395|127.27895072|5942|1 +638787.54885867|220626.80588713|130.20541981|5943|1 +638782.4127197|220631.29194975|127.68819168|5944|1 +638777.32378228|220635.77155383|127.75247626|5945|1 +638772.23505089|220640.25063104|127.79168324|5946|1 +638767.1467851|220644.73005334|127.88704506|5947|1 +638762.10548579|220649.16413396|127.69489826|5948|1 +638757.01688655|220653.64290878|127.72124089|5949|1 +638751.92817172|220658.12152537|127.72874743|5950|1 +638746.83935928|220662.60013821|127.72991945|5951|1 +638741.75104945|220667.07897848|127.78100481|5952|1 +638731.57481473|220676.03665946|127.90793685|5953|1 +638726.4851562|220680.51548885|127.87129715|5954|1 +638721.4437946|220684.95175266|127.82116988|5955|1 +638716.3538497|220689.43489122|127.75299716|5956|1 +638711.2614279|220693.91884764|127.58478383|5957|1 +638706.21759911|220698.36052044|127.45900521|5958|1 +638701.12291862|220702.84603542|127.25931467|5959|1 +638696.07394062|220707.29019395|126.98312633|5960|1 +638690.9732636|220711.77885688|126.62705433|5961|1 +638685.91776279|220716.22671344|126.20051207|5962|1 +638680.86166444|220720.67560279|125.81121412|5963|1 +638675.75440382|220725.16912491|125.38614154|5964|1 +638670.69060264|220729.62283941|124.85281489|5965|1 +638665.63362673|220734.07427748|124.59410458|5966|1 +638660.51170601|220738.57689062|123.88778349|5967|1 +638655.48897712|220742.99381746|123.31406853|5968|1 +638650.37428298|220747.49465397|122.94487172|5969|1 +638645.30398466|220751.95543572|122.51059968|5970|1 +638640.23320749|220756.41714966|122.11360917|5971|1 +638635.16889136|220760.87596706|121.92247627|5972|1 +638630.16191605|220765.28748703|121.97158034|5973|1 +638625.10948509|220769.74032602|122.11074422|5974|1 +638620.06571108|220774.18833344|122.45564479|5975|1 +638615.0228043|220778.63582184|122.81898148|5976|1 +638610.02958877|220783.03977195|123.20350761|5977|1 +638605.03399268|220787.44512816|123.53759952|5978|1 +638599.99260448|220791.89168842|123.93105536|5979|1 +638594.99264701|220796.29976858|124.1831428|5980|1 +638589.93691022|220800.75530894|124.30771219|5981|1 +638584.93356767|220805.16576707|124.51530924|5982|1 +638579.93826725|220809.57125011|124.87835757|5983|1 +638574.89607287|220814.01856953|125.27638988|5984|1 +638569.94881439|220818.38159872|125.6341362|5985|1 +638564.90697698|220822.82875867|126.04388876|5986|1 +638559.91263459|220827.23378792|126.43624699|5987|1 +638554.92074257|220831.63724221|126.87174686|5988|1 +638549.93342258|220836.03767155|127.38154002|5989|1 +638545.00461172|220840.38854234|128.04158477|5990|1 +638540.01289664|220844.79190028|128.48167972|5991|1 +638535.07689305|220849.14756562|129.02818699|5992|1 +638530.09162725|220853.54656824|129.56684356|5993|1 +638526.13508855|220853.90851461|129.94588164|5994|1 +638531.11601987|220849.50355677|129.32549036|5995|1 +638536.15887213|220845.04663413|128.89876207|5996|1 +638541.19650121|220840.59330354|128.39704285|5997|1 +638551.21214249|220831.73692434|127.22317727|5998|1 +638556.25061513|220827.28302774|126.73303877|5999|1 +638561.29731084|220822.82374758|126.3797759|6000|1 +638566.34218705|220818.36573725|126.00136104|6001|1 +638571.38537983|220813.9088766|125.59777556|6002|1 +638576.48247148|220809.40578713|125.28946818|6003|1 +638581.5222022|220804.95122647|124.82939302|6004|1 +638586.57063528|220800.49119611|124.53122458|6005|1 +638591.67077026|220795.98645637|124.29756395|6006|1 +638596.72602603|220791.52201916|124.14877274|6007|1 +638601.82200993|220787.01753192|123.85255767|6008|1 +638606.91328396|220782.51593649|123.46274812|6009|1 +638611.95697548|220778.05660146|123.0950489|6010|1 +638617.09348722|220773.51405835|122.62689049|6011|1 +638622.14093017|220769.05252114|122.34005161|6012|1 +638627.24070922|220764.54606655|122.14355159|6013|1 +638632.3935021|220759.99444115|122.06273775|6014|1 +638637.50083814|220755.4842147|122.07866239|6015|1 +638642.62110046|220750.96751488|122.4567703|6016|1 +638647.7942331|220746.40644227|123.00098934|6017|1 +638652.90690102|220741.89500727|123.27321513|6018|1 +638658.02594615|220737.38109098|123.77658076|6019|1 +638663.19588979|220732.82413133|124.41519422|6020|1 +638668.35757456|220728.27192453|124.86674895|6021|1 +638673.51627602|220723.72184847|125.28110588|6022|1 +638678.62743199|220719.21500152|125.79130832|6023|1 +638683.78140253|220714.66851461|126.16235618|6024|1 +638688.98517581|220710.07963175|126.64449516|6025|1 +638694.08748023|220705.57874469|127.01768243|6026|1 +638699.23520868|220701.03685826|127.32074361|6027|1 +638704.42827084|220696.45379778|127.53530768|6028|1 +638709.57115576|220691.91450291|127.7139762|6029|1 +638714.71181202|220687.37616272|127.81786775|6030|1 +638719.85166472|220682.83836435|127.90946234|6031|1 +638724.98951088|220678.30107437|127.90752757|6032|1 +638730.17772089|220673.72107163|128.03009708|6033|1 +638735.31400943|220669.1837286|127.92241971|6034|1 +638740.45138687|220664.64653576|127.8961794|6035|1 +638745.58890568|220660.10948005|127.8888682|6036|1 +638750.77470543|220655.52968348|127.86907402|6037|1 +638755.863535|220651.03532141|127.84358716|6038|1 +638761.04987657|220646.45617262|127.90564861|6039|1 +638766.18756919|220641.91984289|127.96171042|6040|1 +638771.32515698|220637.38360838|128.01797686|6041|1 +638776.46233196|220632.84537286|127.89943502|6042|1 +638781.65331651|220628.38007098|136.64318857|6043|1 +638781.64842046|220628.26393788|127.77538653|6044|2 +638786.78669203|220623.72228976|127.47612978|6045|1 +638791.92516542|220619.18547467|127.54578148|6046|1 +638797.11227867|220614.60528654|127.57901673|6047|1 +638802.25190598|220610.0647583|127.44921974|6048|1 +638807.31002671|220605.7703787|140.1479677|6049|1 +638812.53238562|220600.98400632|127.29020587|6050|1 +638817.72403763|220596.39526102|126.98745166|6051|1 +638822.82778337|220591.93623027|130.52611716|6052|1 +638822.87063907|220591.84343657|126.47749107|6053|2 +638827.9461517|220587.43705995|132.05919874|6054|1 +638833.20807951|220582.71084035|126.19727505|6055|1 +638838.35766571|220578.15794119|125.800638|6056|1 +638843.51192384|220573.59837521|125.21686782|6057|1 +638848.71536357|220568.99666904|124.72293419|6058|1 +638853.87074406|220564.43842751|124.30850284|6059|1 +638859.01199587|220559.89603975|124.14367536|6060|1 +638864.17715684|220555.32486188|123.41128139|6061|1 +638869.38249226|220550.72483943|123.16265421|6062|1 +638874.54028551|220546.16696603|122.93059349|6063|1 +638879.7074379|220541.59668629|122.3928857|6064|1 +638884.87298635|220537.02978586|121.9991229|6065|1 +638890.0437104|220532.45680355|121.49332951|6066|1 +638895.16722443|220527.92583793|121.01593444|6067|1 +638900.39247966|220523.30423728|120.47038525|6068|1 +638905.51917239|220518.77107826|120.03721083|6069|1 +638910.69620696|220514.1937554|119.62019359|6070|1 +638915.87876835|220509.61030111|119.10998185|6071|1 +638921.01336397|220505.06976341|118.6463255|6072|1 +638926.19558254|220500.48849123|118.27408701|6073|1 +638931.33458468|220495.944177|117.81715585|6074|1 +638936.47805922|220491.39524799|117.3105346|6075|1 +638941.67567466|220486.7977097|116.7398241|6076|1 +638946.82857408|220482.23921535|116.14027811|6077|1 +638951.98014895|220477.6831684|115.63453122|6078|1 +638957.17811884|220473.08772555|115.23965221|6079|1 +638962.28780864|220468.56813436|114.69865159|6080|1 +638967.49982542|220463.95786747|114.12382041|6081|1 +638972.67188434|220459.3812512|113.43241937|6082|1 +638977.83002856|220454.82140371|113.07159416|6083|1 +638982.96503126|220450.28807048|113.18449912|6084|1 +638988.06427157|220445.78155016|113.06176218|6085|1 +638993.21090037|220441.23409219|113.00054719|6086|1 +638998.35171749|220436.69354405|113.07031052|6087|1 +639003.45005075|220432.18928294|113.05366034|6088|1 +639008.61005119|220427.62818539|112.8560906|6089|1 +639013.7711177|220423.06641513|112.6775151|6090|1 +639018.88726436|220418.54383823|112.46829955|6091|1 +639024.00249156|220414.02275403|112.30896012|6092|1 +639029.11827232|220409.50151949|112.17459596|6093|1 +639034.24418337|220404.96975512|111.92217365|6094|1 +639039.37475213|220400.43346618|111.63881363|6095|1 +639044.51275676|220395.88969571|111.28723439|6096|1 +639045.130548|220391.58345031|111.27719777|6097|1 +639039.88898401|220396.20342039|111.65439411|6098|1 +639034.65841501|220400.8120866|111.91411831|6099|1 +639029.42879899|220405.4202626|112.19935728|6100|1 +639024.1636485|220410.05746514|112.317248|6101|1 +639018.94540601|220414.65425326|112.50426021|6102|1 +639013.68037109|220419.2922975|112.69207238|6103|1 +639008.46215647|220423.89009037|112.955015|6104|1 +639003.2032406|220428.52240811|113.11939599|6105|1 +638997.9511775|220433.14757933|113.20360497|6106|1 +638992.7063001|220437.76514685|113.19512175|6107|1 +638987.50999076|220442.34040404|113.22383634|6108|1 +638982.26428721|220446.95972271|113.29134863|6109|1 +638977.02489766|220451.57229376|113.2723265|6110|1 +638971.77933265|220456.1923483|113.40350015|6111|1 +638966.52076502|220460.82796076|113.83448866|6112|1 +638961.24801329|220465.4808523|114.61527047|6113|1 +638955.99198895|220470.11516933|115.11637576|6114|1 +638950.74496651|220474.73967669|115.48107051|6115|1 +638945.49234318|220479.37160037|116.02728943|6116|1 +638940.24175146|220484.00199292|116.59294906|6117|1 +638934.99246548|220488.63174991|117.19675527|6118|1 +638929.74783424|220493.25680701|117.75760588|6119|1 +638924.51314767|220497.87054285|118.13201168|6120|1 +638919.28366478|220502.47859285|118.42594781|6121|1 +638914.00019303|220507.13699713|118.92274639|6122|1 +638908.76483613|220511.75423392|119.51132559|6123|1 +638903.58546762|220516.32020839|119.96043396|6124|1 +638898.31078528|220520.9702804|120.41580243|6125|1 +638893.08489917|220525.57832679|120.94385497|6126|1 +638887.86517222|220530.17915015|121.3414129|6127|1 +638882.64356761|220534.78359731|121.88312975|6128|1 +638877.42611581|220539.38344677|122.3567576|6129|1 +638872.21188643|220543.97985974|122.78722521|6130|1 +638867.00209299|220548.57091245|123.11208975|6131|1 +638861.74180455|220553.2087451|123.60364213|6132|1 +638856.58446839|220557.75333703|123.91325176|6133|1 +638851.33758068|220562.38005609|124.45653131|6134|1 +638846.13360425|220566.96658406|124.82724431|6135|1 +638840.97970063|220571.50908309|125.20665447|6136|1 +638835.72804962|220576.1399162|125.74505989|6137|1 +638830.52771196|220580.72477637|126.22970104|6138|1 +638825.31788834|220585.38790133|131.82697989|6139|1 +638820.1407095|220589.93603292|131.11932864|6140|1 +638814.99126201|220594.41477473|127.12549002|6141|1 +638809.84766319|220598.94639086|127.37566129|6142|1 +638804.65748389|220603.51716457|127.48744074|6143|1 +638799.46836429|220608.08581133|127.51217416|6144|1 +638794.32815268|220612.61110582|127.51943885|6145|1 +638789.1395355|220617.18049994|127.63236242|6146|1 +638783.99510973|220621.83306979|136.67650753|6147|1 +638784.00002355|220621.7043992|127.58385365|6148|2 +638778.86077576|220626.23147651|127.78549756|6149|1 +638773.72207339|220630.75704763|127.91230868|6150|1 +638768.58431625|220635.28357658|128.17052599|6151|1 +638763.4457304|220639.80638827|128.10395318|6152|1 +638758.30684779|220644.3291159|128.01253532|6153|1 +638753.16850307|220648.85273303|128.02126969|6154|1 +638748.0785097|220653.33354874|128.01747457|6155|1 +638742.93972158|220657.8570348|127.98893672|6156|1 +638737.84959881|220662.33804143|127.99136448|6157|1 +638732.71122605|220666.8619177|128.01927911|6158|1 +638727.62123119|220671.34314116|128.04668214|6159|1 +638722.53071679|220675.8243883|128.0427754|6160|1 +638717.43994824|220680.30467657|128.01378176|6161|1 +638712.34766587|220684.78344455|127.90973209|6162|1 +638707.3037613|220689.21989542|127.82944846|6163|1 +638702.15997095|220693.74287981|127.63893877|6164|1 +638697.11120133|220698.18146845|127.40209694|6165|1 +638692.01156092|220702.66414068|127.1102351|6166|1 +638686.91068433|220707.14789188|126.81834536|6167|1 +638681.85194083|220711.5919164|126.33725748|6168|1 +638676.79138895|220716.03752662|125.85592776|6169|1 +638671.72825049|220720.4850612|125.34937162|6170|1 +638666.6684159|220724.93198878|125.01125205|6171|1 +638661.55329447|220729.42544939|124.51269544|6172|1 +638656.53210405|220733.83561757|123.97828978|6173|1 +638651.46052624|220738.29030825|123.45213479|6174|1 +638646.39640719|220742.74200128|123.18807597|6175|1 +638641.3225455|220747.1992882|122.70525796|6176|1 +638636.30174265|220751.61206799|122.38803948|6177|1 +638631.28715402|220756.02200933|122.26392588|6178|1 +638626.22943956|220760.4721266|122.29846337|6179|1 +638621.22217156|220764.87858704|122.39203924|6180|1 +638616.22263147|220769.28078914|122.67237618|6181|1 +638611.2306792|220773.67859432|123.1207125|6182|1 +638606.23601684|220778.07792841|123.506113|6183|1 +638601.24292088|220782.47629839|123.92218146|6184|1 +638596.29340246|220786.83482764|124.23417235|6185|1 +638591.28651932|220791.24164764|124.38081485|6186|1 +638586.2828927|220795.64661774|124.60186227|6187|1 +638581.33396578|220800.0050152|124.94308863|6188|1 +638576.34117881|220804.40331331|125.37509103|6189|1 +638571.39044656|220808.76293476|125.69002128|6190|1 +638566.39306191|220813.16423789|126.04606537|6191|1 +638561.49525072|220817.47831489|126.44241407|6192|1 +638556.49426038|220821.88208915|126.74737281|6193|1 +638546.61257342|220830.58881552|127.73870033|6194|1 +638541.68036235|220834.93638821|128.36721206|6195|1 +638536.78197982|220839.25098473|128.76555133|6196|1 +638531.83818067|220843.60635218|129.21800834|6197|1 +638526.90656598|220847.95344234|129.8503524|6198|1 +638521.95413262|220852.31476617|130.18301183|6199|1 +638515.83989005|220853.62759428|130.59211326|6200|1 +638520.84044994|220849.21161457|130.25556569|6201|1 +638525.83650993|220844.79882088|129.86251912|6202|1 +638530.81824138|220840.39579296|129.26347542|6203|1 +638535.86253425|220835.94049862|128.8706335|6204|1 +638540.85356731|220831.53125982|128.4140186|6205|1 +638545.8384882|220827.12610411|127.86344645|6206|1 +638550.86808874|220822.6806338|127.24527829|6207|1 +638555.90746345|220818.22871823|126.78266375|6208|1 +638560.95859772|220813.76921513|126.51929325|6209|1 +638565.9545502|220809.356927|126.1540962|6210|1 +638571.04329346|220804.8617827|125.71128514|6211|1 +638576.09076835|220800.40489689|125.40357307|6212|1 +638581.13318574|220795.95124817|125.00830339|6213|1 +638586.2266226|220791.45327867|124.65875193|6214|1 +638591.27617169|220786.99534294|124.40657147|6215|1 +638596.3281738|220782.53646911|124.2040718|6216|1 +638601.42232742|220778.03927638|123.86670567|6217|1 +638606.46581879|220773.58617052|123.48909075|6218|1 +638611.6032387|220769.04924247|123.0358803|6219|1 +638616.64473457|220764.59720526|122.60802649|6220|1 +638621.74836046|220760.09470668|122.48890794|6221|1 +638626.90355953|220755.54793635|122.45422162|6222|1 +638631.96469198|220751.08545159|122.51915732|6223|1 +638637.12331615|220746.53749429|122.61586789|6224|1 +638642.23747427|220742.03067337|122.85283994|6225|1 +638647.36233282|220737.51911327|123.42707581|6226|1 +638652.5254129|220732.97062704|123.76794871|6227|1 +638657.64994045|220728.46101727|124.46110778|6228|1 +638662.80889052|220723.91600794|124.78993488|6229|1 +638667.96990527|220719.37083594|125.2377038|6230|1 +638673.13017118|220714.82685051|125.72321932|6231|1 +638678.28801513|220710.28474498|126.19027081|6232|1 +638683.44633211|220705.74344329|126.74502876|6233|1 +638688.54919136|220701.24826278|127.10165887|6234|1 +638693.69645094|220696.71237594|127.34438872|6235|1 +638698.89246108|220692.1343819|127.6485196|6236|1 +638703.98811774|220687.64339251|127.84923334|6237|1 +638709.17823413|220683.06800099|127.96655664|6238|1 +638714.31790705|220678.53604609|128.01027499|6239|1 +638719.45831402|220674.00440413|128.1229102|6240|1 +638724.64549647|220669.43032096|128.147532|6241|1 +638729.78382737|220664.89895864|128.14816452|6242|1 +638734.92160008|220660.36765762|128.11772911|6243|1 +638740.10826582|220655.79387867|128.13087252|6244|1 +638745.29497108|220651.22033177|128.16317759|6245|1 +638750.38422639|220646.7320703|128.15236893|6246|1 +638755.57062964|220642.15863178|128.17277702|6247|1 +638760.75724598|220637.58570804|128.24360075|6248|1 +638765.89516039|220633.0554483|128.29582092|6249|1 +638771.08090562|220628.47992441|128.12362644|6250|1 +638776.26723068|220623.90372291|127.93935825|6251|1 +638781.4031332|220619.50778873|137.54121927|6252|1 +638781.40570454|220619.37151478|127.88612418|6253|2 +638786.59304732|220614.7957354|127.79632483|6254|1 +638791.78082118|220610.21975839|127.71944565|6255|1 +638796.92013448|220605.68787067|127.74199315|6256|1 +638802.10815243|220601.11307983|127.76582431|6257|1 +638807.29842484|220596.5324978|127.51516004|6258|1 +638812.44099876|220591.99437491|127.29483816|6259|1 +638817.5845671|220587.52232627|131.89958956|6260|1 +638822.77678857|220582.93337241|131.16887921|6261|1 +638827.93479207|220578.36190565|129.52484604|6262|1 +638833.17474298|220573.6906093|125.8901676|6263|1 +638838.37545642|220569.09819356|125.44839833|6264|1 +638843.52913721|220564.54746555|125.02380015|6265|1 +638848.73278485|220559.95300093|124.62041001|6266|1 +638854.47373939|220554.88426951|124.16178592|6267|1 +638859.03626745|220550.85612644|123.85347854|6268|1 +638864.2479524|220546.25270086|123.31397551|6269|1 +638869.46130051|220541.6481692|122.80001516|6270|1 +638874.62863174|220537.0839898|122.27133939|6271|1 +638879.84229208|220532.48136659|121.91447674|6272|1 +638885.0189255|220527.90658326|121.21180195|6273|1 +638890.19100148|220523.33928761|120.75920541|6274|1 +638895.41461807|220518.72627678|120.2852613|6275|1 +638900.5868737|220514.16066041|119.96456395|6276|1 +638905.76543795|220509.58767162|119.51317665|6277|1 +638910.94518218|220505.01408617|119.09336888|6278|1 +638916.13422713|220500.42963164|118.48053994|6279|1 +638921.31659228|220495.85453087|118.11769625|6280|1 +638926.50035798|220491.27846603|117.7739677|6281|1 +638931.64370865|220486.73589403|117.27683426|6282|1 +638936.84403942|220482.14127118|116.64697377|6283|1 +638942.04545405|220477.54630865|116.06125021|6284|1 +638947.19830268|220472.99495585|115.5339046|6285|1 +638952.39476667|220468.40757223|115.17973016|6286|1 +638957.59771764|220463.81327226|114.73876085|6287|1 +638962.72120295|220459.28455958|113.97701047|6288|1 +638967.92445994|220454.69147426|113.64279765|6289|1 +638973.06782441|220450.15473746|113.56569522|6290|1 +638978.2151869|220445.61387874|113.44518141|6291|1 +638983.35761311|220441.07839949|113.44950673|6292|1 +638988.50230705|220436.53988588|113.44163743|6293|1 +638993.65002082|220431.99837037|113.40907191|6294|1 +638998.74853419|220427.5006624|113.40840218|6295|1 +639003.85578305|220422.99362178|113.28946037|6296|1 +639009.02213715|220418.43268434|113.03954954|6297|1 +639014.18971042|220413.87093737|112.80863294|6298|1 +639019.30894841|220409.3521439|112.60301717|6299|1 +639024.42805256|220404.83398849|112.43482245|6300|1 +639029.49401847|220400.36396314|112.35985013|6301|1 +639034.67984834|220395.78434904|111.99925747|6302|1 +639039.76415313|220391.29541199|111.72532946|6303|1 +639044.90731951|220386.75323341|111.35240264|6304|1 +639047.61583168|220380.12175687|111.07356328|6305|1 +639042.41148658|220384.71115938|111.54686557|6306|1 +639037.21298359|220389.29489489|111.98336073|6307|1 +639032.02394613|220393.86898309|112.32707067|6308|1 +639026.8435429|220398.43424647|112.58412527|6309|1 +639021.63038359|220403.02540429|112.63003883|6310|1 +639016.4096343|220407.62535031|112.82580402|6311|1 +639011.23720832|220412.18342055|113.07172439|6312|1 +639006.02533855|220416.77458948|113.20006099|6313|1 +639000.80922803|220421.37098818|113.43475412|6314|1 +638995.64778694|220425.91842571|113.61338543|6315|1 +638990.44722081|220430.4984245|113.65600617|6316|1 +638985.25185043|220435.07297742|113.6368166|6317|1 +638980.05665872|220439.64772623|113.64298368|6318|1 +638974.80874715|220444.27034259|113.75031688|6319|1 +638969.616795|220448.8422444|113.75747925|6320|1 +638964.41949108|220453.4207899|113.90215908|6321|1 +638959.16505365|220458.0525834|114.25438014|6322|1 +638953.95347516|220462.64913406|114.78656268|6323|1 +638948.69521951|220467.28701543|115.33339551|6324|1 +638943.44537433|220471.91574505|115.75631008|6325|1 +638938.24454364|220476.50205609|116.23414233|6326|1 +638932.99117847|220481.13678545|116.86415165|6327|1 +638927.74307375|220485.7660998|117.43877819|6328|1 +638922.50478885|220490.38423045|117.83322002|6329|1 +638917.27134131|220494.99714477|118.15969377|6330|1 +638912.03635862|220499.61281738|118.5866267|6331|1 +638906.80173354|220504.22896827|119.07036558|6332|1 +638901.62350528|220508.79320704|119.39595566|6333|1 +638896.34662654|220513.44576233|119.8213259|6334|1 +638891.1177146|220518.05742163|120.34440199|6335|1 +638885.88906055|220522.66990924|120.94298991|6336|1 +638880.66471804|220527.27772663|121.47977682|6337|1 +638875.39272975|220531.92827822|122.07050474|6338|1 +638870.22285748|220536.48754252|122.56761957|6339|1 +638864.95660535|220541.13252838|123.1222938|6340|1 +638859.7423445|220545.73104702|123.63031032|6341|1 +638854.53152572|220550.32566409|124.07642352|6342|1 +638849.33714364|220554.90292228|124.31744185|6343|1 +638844.07874808|220559.5411868|124.88734309|6344|1 +638838.87376543|220564.1301506|125.29761654|6345|1 +638833.67136244|220568.71605611|125.65218165|6346|1 +638828.46942522|220573.30269476|126.08844427|6347|1 +638823.23430347|220577.9592733|129.43029348|6348|1 +638818.02682603|220582.56804259|131.09848336|6349|1 +638812.78353303|220587.19697217|131.95359567|6350|1 +638807.63306042|220591.66957878|127.48714308|6351|1 +638802.44047859|220596.2448439|127.70095372|6352|1 +638797.24868652|220600.81985423|127.9464462|6353|1 +638792.05928762|220605.38733164|127.80493828|6354|1 +638786.86916397|220609.95930359|127.93881874|6355|1 +638781.67953074|220614.53303461|128.22934113|6356|1 +638776.49785092|220619.26068906|140.01277568|6357|1 +638776.49074255|220619.10199889|128.23283859|6358|2 +638771.30245737|220623.67279677|128.39923807|6359|1 +638766.11360191|220628.23928952|128.22232759|6360|1 +638760.92600039|220632.80949348|128.38956423|6361|1 +638755.78553956|220637.33396749|128.25731157|6362|1 +638750.5488338|220641.94516487|128.26281822|6363|1 +638745.40868517|220646.47067981|128.22488558|6364|1 +638740.26896907|220650.9966011|128.24337751|6365|1 +638735.0801646|220655.56507872|128.2124584|6366|1 +638729.89181612|220660.13385601|128.23196423|6367|1 +638724.79930614|220664.61721764|128.18182765|6368|1 +638719.60995995|220669.18626706|128.15818254|6369|1 +638714.47031618|220673.71268096|128.159029|6370|1 +638709.3294015|220678.2396692|128.07881978|6371|1 +638704.18721705|220682.76724949|127.96130114|6372|1 +638699.04437977|220687.29540481|127.84396853|6373|1 +638693.89756334|220691.82505457|127.58311881|6374|1 +638688.74841201|220696.35606183|127.27250459|6375|1 +638683.64644024|220700.84547705|126.96048581|6376|1 +638678.53959933|220705.33734477|126.51725616|6377|1 +638673.3791839|220709.87477812|125.9571962|6378|1 +638668.31589513|220714.32763066|125.46841576|6379|1 +638663.15605781|220718.86664947|125.05856088|6380|1 +638658.0429775|220723.36444117|124.64675264|6381|1 +638652.97260884|220727.82290785|124.11399339|6382|1 +638647.85425838|220732.32472616|123.65842959|6383|1 +638642.72891317|220736.8307837|123.06554367|6384|1 +638637.66635235|220741.28759594|122.90715302|6385|1 +638632.55678056|220745.7868204|122.82003258|6386|1 +638627.54218386|220750.20193193|122.70213256|6387|1 +638622.42940033|220754.70362811|122.58985082|6388|1 +638617.42034893|220759.11636551|122.65233085|6389|1 +638612.36765462|220763.56933634|122.84245916|6390|1 +638607.32463998|220768.01682304|123.25076994|6391|1 +638602.33264623|220772.41999711|123.70522683|6392|1 +638597.29269217|220776.86555179|124.1690134|6393|1 +638592.28921545|220781.27550869|124.38544714|6394|1 +638587.28429484|220785.68646547|124.58270061|6395|1 +638582.28740834|220790.09259814|124.94168406|6396|1 +638577.28934537|220794.49949366|125.28145935|6397|1 +638572.29277578|220798.90549752|125.6519305|6398|1 +638567.34305631|220803.26980557|125.99266387|6399|1 +638562.34857469|220807.67455572|126.40568135|6400|1 +638557.39309046|220812.0426951|126.6578246|6401|1 +638552.448042|220816.40415056|127.09005025|6402|1 +638547.49699793|220820.76956871|127.4280675|6403|1 +638542.5681638|220825.12036236|128.12059406|6404|1 +638537.6251943|220829.48046322|128.58803623|6405|1 +638532.68164843|220833.84096917|129.04851137|6406|1 +638527.73493369|220838.20364477|129.46468215|6407|1 +638522.84358386|220842.51892918|129.98067959|6408|1 +638517.89141525|220846.88542257|130.3268266|6409|1 +638513.03676647|220851.16608779|130.67982901|6410|1 +638505.73486916|220853.87192994|131.14351326|6411|1 +638510.74074791|220849.45129434|130.86594826|6412|1 +638515.69077068|220845.07862231|130.50005358|6413|1 +638520.68906737|220840.66342404|130.13436354|6414|1 +638525.68724698|220836.24841567|129.77447781|6415|1 +638530.67037252|220831.84359707|129.19609335|6416|1 +638535.66539138|220827.43083604|128.79789361|6417|1 +638540.65726589|220823.02022135|128.35561274|6418|1 +638545.69231603|220818.57036422|127.8270672|6419|1 +638550.67668754|220814.16468738|127.26550036|6420|1 +638555.71716553|220809.71126391|126.82355436|6421|1 +638560.72000884|220805.29368843|126.57284358|6422|1 +638565.76183301|220800.83951527|126.16148182|6423|1 +638570.80562226|220796.38413465|125.78728065|6424|1 +638575.85397079|220791.92596333|125.50015342|6425|1 +638580.89696789|220787.47118321|125.11923637|6426|1 +638585.94082983|220783.01590622|124.75677405|6427|1 +638590.98645438|220778.55960042|124.43149093|6428|1 +638596.08806641|220774.05641913|124.27086785|6429|1 +638601.12490709|220769.6058468|123.78927768|6430|1 +638606.16377956|220765.15399925|123.3448388|6431|1 +638611.25504732|220760.65709242|122.97799535|6432|1 +638616.30516693|220756.19884494|122.78279757|6433|1 +638621.4107918|220751.6941248|122.75913385|6434|1 +638626.47596487|220747.22815589|122.95689892|6435|1 +638631.63165261|220742.68051318|123.01778835|6436|1 +638636.7390195|220738.17592719|123.1128339|6437|1 +638641.80276051|220733.71209372|123.37279064|6438|1 +638646.92279746|220729.20231904|123.89242508|6439|1 +638652.03352854|220724.69776033|124.19977438|6440|1 +638657.14921996|220720.19164624|124.70701885|6441|1 +638662.3100234|220715.64514972|125.16852648|6442|1 +638667.4237754|220711.14171217|125.74468782|6443|1 +638672.53008041|220706.64220336|126.13347417|6444|1 +638677.68847193|220702.09951364|126.71423058|6445|1 +638682.74206085|220697.64603041|127.07350239|6446|1 +638687.89130767|220693.1083204|127.43583449|6447|1 +638693.03798086|220688.57218261|127.74840208|6448|1 +638698.13211824|220684.080499|127.93120989|6449|1 +638703.27335756|220679.54694683|128.08785181|6450|1 +638708.41337344|220675.01413727|128.21970449|6451|1 +638713.50200427|220670.52475798|128.22138811|6452|1 +638718.68731041|220665.95019462|128.22149973|6453|1 +638723.77721808|220661.46101353|128.31703827|6454|1 +638728.91400662|220656.92929551|128.3245076|6455|1 +638734.05076435|220652.39777967|128.34465525|6456|1 +638739.18715595|220647.86633012|128.34622725|6457|1 +638744.3236252|220643.33507949|128.36672836|6458|1 +638749.50837029|220638.76112877|128.37485812|6459|1 +638754.64543814|220634.23111481|128.52082159|6460|1 +638759.78036276|220629.69771689|128.29197929|6461|1 +638764.91767279|220625.16943663|128.57577649|6462|1 +638770.07710187|220620.78922383|140.75855491|6463|1 +638770.05339874|220620.6360434|128.3972754|6464|2 +638775.2464391|220616.27630262|144.13647641|6465|1 +638775.23828115|220616.06085036|128.32576334|6466|2 +638780.37494362|220611.52980849|128.37272801|6467|1 +638785.50089076|220607.07535407|133.18788559|6468|1 +638785.51219444|220606.99499572|128.18864585|6469|2 +638790.69876585|220602.41640003|127.98067674|6470|1 +638795.8850179|220597.84134426|128.00434976|6471|1 +638801.02447413|220593.30433844|127.80233378|6472|1 +638806.13479051|220588.8469499|131.43072421|6473|1 +638811.31516232|220584.28008714|131.66773348|6474|1 +638816.46617261|220579.71346303|130.08551061|6475|1 +638821.69479267|220575.05008026|126.48729514|6476|1 +638826.89083254|220570.46063603|126.10093655|6477|1 +638832.03911718|220565.91403293|125.76939334|6478|1 +638837.24084348|220561.31738865|125.22772299|6479|1 +638842.44445928|220556.71926798|124.69906583|6480|1 +638847.59949793|220552.16549959|124.28110911|6481|1 +638852.73852279|220547.63058592|124.20015575|6482|1 +638857.94678818|220543.02874096|123.6977482|6483|1 +638863.15574257|220538.42717271|123.25833228|6484|1 +638868.32351152|220533.85878057|122.59821312|6485|1 +638873.53744921|220529.25249008|122.13482652|6486|1 +638878.70545648|220524.68635892|121.65031559|6487|1 +638883.92570067|220520.07356114|121.11929578|6488|1 +638889.15041732|220515.45586511|120.52023347|6489|1 +638894.32619557|220510.88256104|120.01207743|6490|1 +638899.5542026|220506.26277489|119.47031406|6491|1 +638904.78817925|220501.63632838|118.82934725|6492|1 +638909.97101546|220497.05700443|118.33510667|6493|1 +638915.20261499|220492.43566355|117.9074761|6494|1 +638920.43461018|220487.81468716|117.53040999|6495|1 +638925.61842769|220483.23671472|117.19360197|6496|1 +638930.80978685|220478.65026376|116.72623421|6497|1 +638936.05685931|220474.01330784|116.15761662|6498|1 +638941.25371357|220469.42194425|115.68507707|6499|1 +638946.45828546|220464.82220784|115.10079529|6500|1 +638951.69807853|220460.19643397|114.87078096|6501|1 +638956.90387723|220455.59686379|114.37489396|6502|1 +638962.10593067|220451.0024454|114.01039455|6503|1 +638967.29862363|220446.41953014|113.87694196|6504|1 +638972.48233829|220441.84742478|113.94952372|6505|1 +638977.72412039|220437.22214497|113.87829072|6506|1 +638982.86521986|220432.68881445|113.8965315|6507|1 +638988.06025306|220428.10798567|113.85818028|6508|1 +638993.26025773|220423.52199538|113.76425094|6509|1 +638998.41345902|220418.97715928|113.6650475|6510|1 +639003.62185061|220414.38274297|113.49729926|6511|1 +639008.83435864|220409.7842708|113.29896678|6512|1 +639014.00282871|220405.22398655|113.05773451|6513|1 +639019.17129396|220400.66424136|112.85417444|6514|1 +639024.38628343|220396.06457253|112.72572621|6515|1 +639029.55602493|220391.50441831|112.57272129|6516|1 +639034.7422751|220386.92683375|112.21489125|6517|1 +639039.93668602|220382.34101931|111.78289815|6518|1 +639045.13198016|220377.75487314|111.38246598|6519|1 +639043.08816125|220375.85706016|111.49601276|6520|1 +639037.88746791|220380.43537766|111.90397937|6521|1 +639032.74287089|220384.96350624|112.25683296|6522|1 +639027.54860399|220389.53609657|112.65937664|6523|1 +639022.42173034|220394.04607195|112.83235247|6524|1 +639017.29876579|220398.55225856|112.98054837|6525|1 +639012.12451792|220403.10458493|113.19738208|6526|1 +639007.00173519|220407.61158133|113.41430881|6527|1 +639001.83444448|220412.15725825|113.59432609|6528|1 +638996.67082783|220416.69934529|113.74974017|6529|1 +638991.56235262|220421.1918955|113.83634901|6530|1 +638986.35443377|220425.77284769|113.98043353|6531|1 +638981.20239601|220430.30333607|114.03696972|6532|1 +638976.1038015|220434.78604083|114.04293216|6533|1 +638970.90573238|220439.35718461|114.10705861|6534|1 +638965.76442557|220443.87664647|114.0520479|6535|1 +638960.6172827|220448.40327111|114.1405078|6536|1 +638955.4152685|220452.9804572|114.38639096|6537|1 +638950.30303797|220457.48160831|114.84779627|6538|1 +638945.09263341|220462.07016063|115.37490934|6539|1 +638939.90102986|220466.63704032|115.54089954|6540|1 +638934.75584824|220471.16442556|115.8051444|6541|1 +638929.55647608|220475.74204269|116.24623464|6542|1 +638924.35930793|220480.31781277|116.69399425|6543|1 +638919.21105149|220484.85135193|117.20228982|6544|1 +638914.0157693|220489.42661821|117.73190507|6545|1 +638908.82420247|220493.99817659|118.23075004|6546|1 +638903.63295532|220498.57034183|118.7924099|6547|1 +638898.44018411|220503.14561586|119.47929028|6548|1 +638893.2525203|220507.71543126|120.09794212|6549|1 +638888.07134463|220512.27776575|120.59216411|6550|1 +638882.88978208|220516.84178157|121.18038054|6551|1 +638877.71368965|220521.39947725|121.66283578|6552|1 +638872.54128559|220525.95313355|122.08944315|6553|1 +638867.32481132|220530.54415311|122.41371238|6554|1 +638862.19799284|220535.06185332|123.13717665|6555|1 +638856.98534406|220539.64961378|123.46855243|6556|1 +638851.8171278|220544.20224638|124.08387424|6557|1 +638846.64274923|220548.77447022|125.69930445|6558|1 +638841.46180431|220553.31442322|124.6266515|6559|1 +638836.30027426|220557.86038854|125.18668355|6560|1 +638831.14099029|220562.40429086|125.74074386|6561|1 +638825.93877779|220566.98235106|126.03714497|6562|1 +638820.78568303|220571.51806795|126.39816552|6563|1 +638815.63401426|220576.05262017|126.7656601|6564|1 +638810.40663328|220580.69684057|130.16849176|6565|1 +638805.20404937|220585.29313382|131.72878104|6566|1 +638800.06845727|220589.80106398|131.21629036|6567|1 +638794.94626761|220594.25824563|127.95450154|6568|1 +638789.75359336|220598.82590344|128.10988771|6569|1 +638784.59990662|220603.41775703|132.39711367|6570|1 +638784.60992513|220603.35156971|128.34775274|6571|2 +638779.41870311|220607.91884788|128.56635379|6572|1 +638774.28126923|220612.63938646|142.94680711|6573|1 +638774.27666113|220612.43733254|128.39851253|6574|2 +638769.16320156|220617.1705048|145.16034154|6575|1 +638769.13471137|220616.95892464|128.45579287|6576|2 +638763.94518465|220621.52516423|128.70665248|6577|1 +638758.75522691|220626.08788706|128.68294225|6578|1 +638753.61216595|220630.60550663|128.3910153|6579|1 +638748.47151617|220635.12720289|128.53671833|6580|1 +638743.2806244|220639.68960782|128.43274307|6581|1 +638738.13927041|220644.21033478|128.4664062|6582|1 +638732.99743758|220648.73086494|128.45649051|6583|1 +638727.85531089|220653.25147818|128.43424996|6584|1 +638722.6644186|220657.81496041|128.40654927|6585|1 +638717.52125804|220662.33595728|128.34726905|6586|1 +638712.37831227|220666.85818764|128.30691794|6587|1 +638707.23521299|220671.38085788|128.27298506|6588|1 +638702.09012989|220675.90412588|128.1579965|6589|1 +638696.94361753|220680.42812332|128.00571712|6590|1 +638691.79675365|220684.9526939|127.87236685|6591|1 +638686.64568872|220689.47892945|127.59550878|6592|1 +638681.53985343|220693.96415958|127.23606023|6593|1 +638676.38242626|220698.49396897|126.81583388|6594|1 +638671.22351877|220703.02517337|126.40207226|6595|1 +638666.10995173|220707.51570418|125.93665788|6596|1 +638660.94586417|220712.05068216|125.4670763|6597|1 +638655.77765651|220716.58830888|124.92904295|6598|1 +638650.65058026|220721.08746786|124.2328701|6599|1 +638645.53668825|220725.5813912|123.98641023|6600|1 +638640.4189232|220730.07775136|123.67129395|6601|1 +638635.25269526|220734.61745047|123.40257493|6602|1 +638630.142531|220739.11101388|123.36238195|6603|1 +638625.07643289|220743.56448292|123.23191524|6604|1 +638619.95749327|220748.06347123|123.02933185|6605|1 +638614.84226658|220752.56086719|122.94539262|6606|1 +638609.78475136|220757.01066536|123.08920738|6607|1 +638604.68508428|220761.49975953|123.38591545|6608|1 +638599.64117302|220765.9419074|123.83514474|6609|1 +638594.60022902|220770.38222981|124.3402405|6610|1 +638589.49549249|220774.87436766|124.53678704|6611|1 +638584.49203356|220779.27851918|124.81925408|6612|1 +638579.4437223|220783.72328746|125.18004208|6613|1 +638569.39579458|220792.57003559|125.90914322|6614|1 +638564.34944183|220797.01368514|126.31269149|6615|1 +638559.34814823|220801.41678407|126.65546195|6616|1 +638554.34168954|220805.82327553|126.91670234|6617|1 +638549.34492276|220810.22360753|127.34579329|6618|1 +638544.35694282|220814.61823166|127.91775022|6619|1 +638539.36517917|220819.01529233|128.42685505|6620|1 +638534.41453615|220823.37447323|128.81831101|6621|1 +638529.41676149|220827.77557482|129.23909547|6622|1 +638524.47342783|220832.12997448|129.74762358|6623|1 +638519.47123521|220836.53416096|130.11127653|6624|1 +638514.57234348|220840.84861312|130.56322194|6625|1 +638509.56783018|220845.25456221|130.90707141|6626|1 +638504.65717135|220849.57723072|131.20798388|6627|1 +638499.6848096|220853.95193568|131.34577109|6628|1 +638494.60173933|220855.13223132|131.58679872|6629|1 +638499.5671759|220850.7526441|131.39647507|6630|1 +638504.57762465|220846.33288256|131.16875828|6631|1 +638509.53466432|220841.95943697|130.89017008|6632|1 +638514.5353634|220837.54665988|130.54945531|6633|1 +638519.53115145|220833.13731643|130.14603727|6634|1 +638524.53071615|220828.72552773|129.80444813|6635|1 +638529.51367045|220824.32491416|129.21943151|6636|1 +638534.5068362|220819.91751179|128.78968014|6637|1 +638539.50645918|220815.50592014|128.46539231|6638|1 +638544.49437013|220811.10207051|127.95989657|6639|1 +638549.53037682|220806.655703|127.44305266|6640|1 +638554.56757382|220802.20854968|126.94463558|6641|1 +638559.57152706|220797.7944514|126.71219349|6642|1 +638564.61487001|220793.34346856|126.32538842|6643|1 +638569.61093863|220788.93453479|125.96740955|6644|1 +638574.65393363|220784.48385363|125.57997196|6645|1 +638579.74629819|220779.98989776|125.20706374|6646|1 +638584.74410989|220775.58003522|124.89164051|6647|1 +638589.83900187|220771.08464557|124.57461736|6648|1 +638594.8861268|220766.63070904|124.28606696|6649|1 +638599.92098785|220762.18390071|123.74141074|6650|1 +638605.012544|220757.68949566|123.36163781|6651|1 +638610.06145225|220753.23456078|123.11610812|6652|1 +638615.17013262|220748.73074349|123.13566046|6653|1 +638620.28666266|220744.22302199|123.36750723|6654|1 +638625.34992141|220739.76111193|123.52108886|6655|1 +638630.45804309|220735.25876207|123.60929761|6656|1 +638635.5156767|220730.8005627|123.67515419|6657|1 +638640.67435827|220726.25524151|123.87319831|6658|1 +638645.78972217|220721.75076496|124.26123121|6659|1 +638650.85067188|220717.29248016|124.5266388|6660|1 +638656.01680546|220712.74573925|125.08736849|6661|1 +638661.08623391|220708.28538435|125.73362801|6662|1 +638666.24230824|220703.74476704|126.10103887|6663|1 +638671.35160262|220699.24705784|126.58916819|6664|1 +638676.45788607|220694.75138359|127.03357916|6665|1 +638681.56074887|220690.25774748|127.40926861|6666|1 +638686.66094964|220685.76574409|127.73495171|6667|1 +638691.75776015|220681.27540019|127.96689151|6668|1 +638696.90059204|220676.74353136|128.12888194|6669|1 +638701.99354863|220672.25516501|128.26089275|6670|1 +638707.1339612|220667.72472249|128.37315589|6671|1 +638712.2728466|220663.19483033|128.42935722|6672|1 +638717.3632257|220658.70784711|128.49894381|6673|1 +638722.50087855|220654.17815834|128.49289766|6674|1 +638727.59021106|220649.69139161|128.5124779|6675|1 +638732.72824151|220645.16225793|128.56914432|6676|1 +638737.86521982|220640.63290454|128.54474576|6677|1 +638743.0024045|220636.10372688|128.54552711|6678|1 +638748.0922927|220631.61868701|128.72144231|6679|1 +638753.22842737|220627.08849127|128.58494804|6680|1 +638758.36683366|220622.56258487|128.89234384|6681|1 +638763.51519477|220618.08224801|133.03079719|6682|1 +638773.77784929|220609.18995378|144.01381388|6683|1 +638773.77759712|220609.04987924|134.12125374|6684|2 +638773.77745249|220608.96953307|128.44693758|6685|3 +638778.91506756|220604.44185348|128.5800367|6686|1 +638784.05340031|220599.90902793|128.39460579|6687|1 +638789.19259587|220595.3750912|128.18437634|6688|1 +638794.3328274|220590.83980228|127.94307896|6689|1 +638799.4913509|220586.35221952|132.20207402|6690|1 +638804.63670033|220581.79647943|130.83647093|6691|1 +638809.80910162|220577.18351599|127.11565804|6692|1 +638814.95494659|220572.64161547|126.75661877|6693|1 +638820.0851538|220568.1328901|127.76597313|6694|1 +638825.30050303|220563.50943174|125.97229298|6695|1 +638830.44985756|220558.96542823|125.6827938|6696|1 +638835.60317978|220554.4157199|125.23736893|6697|1 +638840.76047786|220549.86083153|124.67354175|6698|1 +638845.92536188|220545.33073487|126.3294812|6699|1 +638851.06084433|220540.77023279|124.01460391|6700|1 +638856.27287242|220536.16683656|123.4291408|6701|1 +638861.43739019|220531.60604976|122.89779543|6702|1 +638866.60399888|220527.04351814|122.37300781|6703|1 +638871.76643916|220522.48811555|122.09204765|6704|1 +638876.98342412|220517.88250778|121.65832442|6705|1 +638882.15483155|220513.31656409|121.19083574|6706|1 +638887.33303158|220508.74251668|120.57391402|6707|1 +638892.55970475|220504.12707269|120.04811251|6708|1 +638897.74335525|220499.54815359|119.42585157|6709|1 +638902.92909868|220494.96766021|118.82272439|6710|1 +638908.16552693|220490.34285454|118.24247027|6711|1 +638913.35650785|220485.75785505|117.64656127|6712|1 +638918.54686304|220481.17465478|117.13842383|6713|1 +638923.78919863|220476.545467|116.61612908|6714|1 +638928.98163136|220471.96151075|116.18385693|6715|1 +638934.16626053|220467.38779062|115.98899401|6716|1 +638939.40609203|220462.76402133|115.69298358|6717|1 +638944.59709581|220458.18390903|115.44296113|6718|1 +638949.80312205|220453.58668474|114.91911299|6719|1 +638955.053974|220448.95199768|114.53772156|6720|1 +638960.25111488|220444.36668027|114.30168898|6721|1 +638965.44199537|220439.78918018|114.22811193|6722|1 +638970.6256441|220435.22044031|114.32315748|6723|1 +638975.82002082|220430.63978275|114.244204|6724|1 +638981.01346244|220426.05813419|114.19687656|6725|1 +638986.21500289|220421.46772364|114.03792781|6726|1 +638991.41859852|220416.87550579|113.87947205|6727|1 +638996.61681727|220412.28979146|113.84603216|6728|1 +639001.77803764|220407.73429677|113.64533703|6729|1 +639006.98514865|220403.13962113|113.53189257|6730|1 +639012.20111586|220398.53565361|113.3132078|6731|1 +639017.37116898|220393.97195131|113.08260746|6732|1 +639022.5890568|220389.36692466|112.90851542|6733|1 +639027.81098905|220384.75799177|112.71014573|6734|1 +639033.00094705|220380.1742255|112.30059782|6735|1 +639038.24046838|220375.54734532|111.92934532|6736|1 +639043.44326121|220370.95096783|111.4276354|6737|1 +639042.6981798|220367.54034395|111.4574569|6738|1 +639037.44167673|220372.17481637|111.94981853|6739|1 +639032.24030284|220376.76021927|112.40607996|6740|1 +639027.00148253|220381.37682592|112.73817199|6741|1 +639021.81923156|220385.9426437|113.00272381|6742|1 +639016.59411888|220390.54541537|113.2115952|6743|1 +639011.41894354|220395.10456806|113.44592555|6744|1 +639006.20023153|220399.7013609|113.63098439|6745|1 +639000.98687196|220404.29273741|113.76682753|6746|1 +638995.82133861|220408.84279486|113.9588255|6747|1 +638990.66387261|220413.38432727|114.0515084|6748|1 +638985.46210966|220417.96417498|114.09529186|6749|1 +638980.25373373|220422.55199133|114.28900136|6750|1 +638975.09856966|220427.09240237|114.44496424|6751|1 +638969.90066181|220431.66931876|114.5211923|6752|1 +638964.76383991|220436.18957627|114.39737635|6753|1 +638959.56877517|220440.76409089|114.48058074|6754|1 +638954.36776091|220445.34607919|114.72001777|6755|1 +638949.21425177|220449.88728093|115.03322719|6756|1 +638944.04827159|220454.44401503|115.66458526|6757|1 +638938.85404097|220459.02004591|115.90520361|6758|1 +638933.71886747|220463.54136938|115.95734007|6759|1 +638928.52410054|220468.11930776|116.29845481|6760|1 +638923.3330521|220472.69344409|116.6025857|6761|1 +638918.18805591|220477.22877702|117.02965816|6762|1 +638912.9969886|220481.8045446|117.44678702|6763|1 +638907.84797043|220486.34681228|118.11143615|6764|1 +638902.70451043|220490.88312045|118.70141992|6765|1 +638897.46564902|220495.50370783|119.30950495|6766|1 +638892.3259555|220500.03741842|119.95003458|6767|1 +638887.14582666|220504.60419966|120.41267703|6768|1 +638881.96296364|220509.17580256|121.04423974|6769|1 +638876.83524566|220513.69692429|121.54190339|6770|1 +638871.66237563|220518.25714884|121.99305815|6771|1 +638866.49542937|220522.81001967|122.29469615|6772|1 +638861.41812256|220527.28946249|122.98289738|6773|1 +638856.25187549|220531.84368582|123.422304|6774|1 +638851.0876055|220536.39617211|123.86202687|6775|1 +638845.98567613|220540.893084|124.25492461|6776|1 +638840.82695554|220545.43899305|124.5763847|6777|1 +638835.6672126|220549.98794766|125.04802197|6778|1 +638830.55851775|220554.49143907|125.48443342|6779|1 +638825.40495856|220559.03254586|125.78782946|6780|1 +638820.29976729|220563.53277394|126.21190675|6781|1 +638815.14860597|220568.0723983|126.55940251|6782|1 +638810.0470766|220572.56878024|126.93987307|6783|1 +638804.94780447|220577.06192583|127.23286042|6784|1 +638799.77732852|220581.66350051|130.72996559|6785|1 +638794.67766543|220586.17383844|132.20411111|6786|1 +638794.70549521|220586.08407003|127.6301765|6787|2 +638789.60345917|220590.59792616|129.2041859|6788|1 +638784.46587614|220595.10750709|128.28402627|6789|1 +638779.37224239|220599.59497415|128.52710959|6790|1 +638774.23110643|220604.1223089|128.63198712|6791|1 +638769.14735327|220608.74556122|139.00520726|6792|1 +638769.13883609|220608.60483376|128.61262082|6793|2 +638764.04720815|220613.09026869|128.83691456|6794|1 +638758.90762791|220617.61704108|128.99835619|6795|1 +638753.76672522|220622.1396325|128.78501065|6796|1 +638748.72260018|220626.57779656|128.6282013|6797|1 +638743.58357651|220631.10408456|128.78993129|6798|1 +638738.49078869|220635.58546181|128.65793908|6799|1 +638733.398706|220640.06773406|128.63212665|6800|1 +638728.2577034|220644.59274143|128.58166451|6801|1 +638723.16508502|220649.07530866|128.5433598|6802|1 +638718.02410599|220653.60083456|128.53062566|6803|1 +638712.93134805|220658.08373381|128.51105473|6804|1 +638707.83822134|220662.56558868|128.42892934|6805|1 +638702.69591678|220667.09059145|128.33525115|6806|1 +638697.60090306|220671.57348407|128.20938882|6807|1 +638692.50602763|220676.05678631|128.12096613|6808|1 +638687.40683563|220680.54157597|127.87004141|6809|1 +638682.30671541|220685.02727147|127.62533028|6810|1 +638677.20549822|220689.51393247|127.38059124|6811|1 +638672.09656711|220694.00391547|126.89218286|6812|1 +638666.98668665|220698.49517805|126.43501915|6813|1 +638661.87558111|220702.98778855|125.99660783|6814|1 +638656.76212467|220707.48220118|125.53946272|6815|1 +638651.64051983|220711.98103444|124.88873835|6816|1 +638646.57918813|220716.43271325|124.65420336|6817|1 +638641.46232277|220720.93101773|124.25950108|6818|1 +638636.34939515|220725.42807997|124.02097563|6819|1 +638631.24006365|220729.92384094|123.91359592|6820|1 +638626.18088952|220734.37636627|123.8721193|6821|1 +638621.11673735|220738.83184969|123.73054626|6822|1 +638615.99417862|220743.33588027|123.38576662|6823|1 +638610.92565386|220747.7946771|123.20645628|6824|1 +638605.86582213|220752.24901232|123.25167221|6825|1 +638600.81816442|220756.69662204|123.57752274|6826|1 +638595.73083362|220761.18188368|124.09378994|6827|1 +638590.68355383|220765.62924099|124.42544477|6828|1 +638585.68306961|220770.03487991|124.72191099|6829|1 +638580.58728431|220774.52509034|125.06300713|6830|1 +638575.59259972|220778.92729747|125.47725244|6831|1 +638570.55112924|220783.37120431|125.92625849|6832|1 +638565.49858278|220787.82201895|126.17540657|6833|1 +638555.40284187|220796.71806452|126.86010103|6834|1 +638550.45326546|220801.07982327|127.22416326|6835|1 +638545.41335143|220805.52286225|127.70903696|6836|1 +638540.42576777|220809.92062728|128.251191|6837|1 +638535.42832948|220814.32484629|128.63702869|6838|1 +638530.38374284|220818.77100878|129.0523344|6839|1 +638525.43279122|220823.13393057|129.41354098|6840|1 +638520.44607901|220827.53116067|129.97240101|6841|1 +638515.49397082|220831.89499368|130.32608245|6842|1 +638510.49553895|220836.30022443|130.72193815|6843|1 +638505.53873841|220840.66746192|131.02458075|6844|1 +638500.5770611|220845.03818569|131.27055693|6845|1 +638495.61397258|220849.4100558|131.50967769|6846|1 +638490.64893958|220853.7834518|131.73574807|6847|1 +638488.29123887|220852.38490812|131.85265279|6848|1 +638493.25157702|220848.00408904|131.5992724|6849|1 +638498.26759444|220843.57573711|131.451616|6850|1 +638503.27112216|220839.15614973|131.14795951|6851|1 +638508.27431346|220834.73694467|130.85012593|6852|1 +638513.27327512|220830.32074481|130.50205346|6853|1 +638518.26866776|220825.90705678|130.10996498|6854|1 +638523.31453924|220821.44935479|129.74964207|6855|1 +638528.29883358|220817.04319966|129.20100469|6856|1 +638533.29436719|220812.62962859|128.82633844|6857|1 +638538.39030654|220808.12836771|128.50394817|6858|1 +638543.37468547|220803.72219595|127.96031515|6859|1 +638548.40877788|220799.27243532|127.43029993|6860|1 +638553.44922073|220794.81858957|127.0060087|6861|1 +638558.49990208|220790.35829921|126.76229286|6862|1 +638563.59289513|220785.85925537|126.41438781|6863|1 +638568.63544496|220781.40425042|126.0393774|6864|1 +638573.67750747|220776.9495793|125.65787434|6865|1 +638578.76536992|220772.45379401|125.22235586|6866|1 +638583.8092202|220767.99807245|124.87789248|6867|1 +638588.9040448|220763.49876696|124.58574229|6868|1 +638593.9440316|220759.04784779|124.17858493|6869|1 +638599.03176461|220754.55455249|123.7490475|6870|1 +638604.12586699|220750.05760743|123.45678568|6871|1 +638609.18272448|220745.59725371|123.42979193|6872|1 +638614.34948306|220741.04465583|123.72117007|6873|1 +638619.46705307|220736.53578259|124.040714|6874|1 +638624.52478763|220732.07616712|124.11960237|6875|1 +638629.68090083|220727.53070963|124.2553804|6876|1 +638634.78734644|220723.02903963|124.39396756|6877|1 +638639.89311|220718.52814683|124.54505632|6878|1 +638645.00050426|220714.02697662|124.77734028|6879|1 +638650.1102432|220709.5253431|125.12207341|6880|1 +638655.27428984|220704.9792435|125.70211359|6881|1 +638660.38204898|220700.48007016|126.0969926|6882|1 +638665.4911681|220695.98121571|126.59806069|6883|1 +638670.64449201|220691.44214935|127.00998986|6884|1 +638675.79648649|220686.90442989|127.43464386|6885|1 +638680.89442434|220682.41202489|127.69855386|6886|1 +638686.03796069|220677.87835949|127.88610558|6887|1 +638691.13385192|220673.38784262|128.15632218|6888|1 +638696.27509541|220668.85593176|128.32540987|6889|1 +638701.41472111|220664.32482054|128.45094665|6890|1 +638706.55283737|220659.79432401|128.52667241|6891|1 +638711.69048285|220655.2642423|128.6025656|6892|1 +638716.82646992|220650.73400849|128.56616775|6893|1 +638721.91521504|220646.24682592|128.63043373|6894|1 +638727.10064538|220641.67455972|128.70008543|6895|1 +638732.2366397|220637.14494928|128.70794543|6896|1 +638737.32517528|220632.65892583|128.84111896|6897|1 +638742.45995879|220628.12877108|128.73670652|6898|1 +638747.64519824|220623.55811031|128.90751504|6899|1 +638752.75687871|220619.12286102|134.01542743|6900|1 +638752.73246341|220619.07204254|128.95959569|6901|2 +638757.86815129|220614.54350109|129.02441977|6902|1 +638763.00341579|220610.01301205|128.92693715|6903|1 +638768.13906196|220605.48191866|128.81087889|6904|1 +638773.32366827|220600.90771182|128.69566708|6905|1 +638778.41204202|220596.41681516|128.47929846|6906|1 +638783.54958955|220591.88314947|128.30129037|6907|1 +638788.68774352|220587.34940067|128.15470367|6908|1 +638793.82746595|220582.81230393|127.87084136|6909|1 +638798.95259265|220578.31737996|129.63663479|6910|1 +638804.11076077|220573.73400158|127.25375221|6911|1 +638809.2550646|220569.19144069|126.87054693|6912|1 +638814.40101704|220564.64724574|126.4750726|6913|1 +638819.54689189|220560.10491529|126.20478158|6914|1 +638824.64814364|220555.59926234|125.75168275|6915|1 +638829.79811459|220551.05215831|125.40054069|6916|1 +638834.99817555|220546.46096703|125.05176129|6917|1 +638840.10497758|220541.95015945|124.58034726|6918|1 +638845.25874073|220537.40051912|124.28618788|6919|1 +638850.40645058|220532.85370535|123.81686675|6920|1 +638855.56836893|220528.29358196|123.29217215|6921|1 +638860.72687738|220523.73976962|122.99881272|6922|1 +638865.89437236|220519.17393008|122.4185493|6923|1 +638871.06159575|220514.60976524|121.93851253|6924|1 +638876.22727443|220510.04883903|121.58990055|6925|1 +638881.35125924|220505.52218093|121.06989404|6926|1 +638886.5271664|220500.94938639|120.52211243|6927|1 +638891.70739385|220496.37198952|119.91854806|6928|1 +638896.84104057|220491.83584052|119.33055487|6929|1 +638902.02838454|220487.25146583|118.67777481|6930|1 +638907.21906732|220482.66397148|118.01296754|6931|1 +638912.36095716|220478.12056561|117.42578361|6932|1 +638917.50336452|220473.57750375|116.89494983|6933|1 +638922.68887837|220468.99939801|116.5680575|6934|1 +638927.82546609|220464.46512738|116.29343185|6935|1 +638933.00315563|220459.89783694|116.24160236|6936|1 +638938.13782404|220455.36704273|116.09211351|6937|1 +638943.28580099|220450.82095764|115.69343937|6938|1 +638948.43620809|220446.27273289|115.29499778|6939|1 +638953.58569927|220441.72629308|114.96536142|6940|1 +638958.73466011|220437.18112786|114.69204733|6941|1 +638963.8747847|220432.64677823|114.63078583|6942|1 +638969.01122357|220428.11710177|114.6693975|6943|1 +638974.15030876|220423.58519681|114.68321064|6944|1 +638979.30666741|220419.03528443|114.41063138|6945|1 +638984.45746228|220414.49223526|114.27530914|6946|1 +638989.61317309|220409.94414216|114.09042703|6947|1 +638994.71144335|220405.44914979|114.08049274|6948|1 +638999.8704717|220400.89831477|113.90846568|6949|1 +639004.9798381|220396.39185219|113.78043603|6950|1 +639010.1395899|220391.84118693|113.66487076|6951|1 +639015.31086269|220387.27832619|113.40653253|6952|1 +639020.43803645|220382.75377663|113.11103369|6953|1 +639025.5622985|220378.2329487|112.89651613|6954|1 +639030.74774626|220373.65627808|112.54580195|6955|1 +639035.89400034|220369.11270209|112.09551225|6956|1 +639041.04431655|220364.56536938|111.63303723|6957|1 +639046.19924363|220360.01371363|111.1521912|6958|1 +639044.81503701|220357.82419753|111.1212721|6959|1 +639039.5103911|220362.49509823|111.56907822|6960|1 +639034.25556227|220367.1226949|112.05573786|6961|1 +639029.0053716|220371.74594373|112.52450088|6962|1 +639023.769513|220376.35428157|112.83232457|6963|1 +639018.48895599|220381.00164818|113.11571249|6964|1 +639013.25776023|220385.6060826|113.43737722|6965|1 +639008.03610216|220390.20061406|113.65389467|6966|1 +639002.7716697|220394.83195603|113.80892737|6967|1 +638997.55778265|220399.41896127|113.97689885|6968|1 +638992.30226026|220404.0414157|114.05867077|6969|1 +638987.10103889|220408.61523876|114.08460412|6970|1 +638981.88906679|220413.20165548|114.32893388|6971|1 +638976.63558371|220417.82332742|114.48114815|6972|1 +638971.37870863|220422.44941724|114.73373789|6973|1 +638966.18669216|220427.01473464|114.7306218|6974|1 +638960.9487906|220431.62005184|114.69792605|6975|1 +638955.74751712|220436.1970101|114.93875834|6976|1 +638950.4990765|220440.81563549|115.18767388|6977|1 +638945.24803293|220445.43798485|115.5370114|6978|1 +638940.04688769|220450.01682508|115.91658899|6979|1 +638934.80003639|220454.63568461|116.27968383|6980|1 +638929.56874438|220459.23649569|116.33792225|6981|1 +638924.34542853|220463.82806161|116.24085821|6982|1 +638919.15334069|220468.39869299|116.60374842|6983|1 +638913.91505955|220473.00987849|116.95683455|6984|1 +638908.71702676|220477.5896853|117.59514105|6985|1 +638903.47304377|220482.21001464|118.23640552|6986|1 +638898.23218712|220486.82750922|118.87209822|6987|1 +638892.99398084|220491.44277673|119.51471144|6988|1 +638887.80821919|220496.01145719|120.13013557|6989|1 +638882.57656621|220500.62053581|120.74268546|6990|1 +638877.39837488|220505.18149818|121.28410465|6991|1 +638872.17976683|220509.77509173|121.6168385|6992|1 +638866.96265919|220514.36755311|121.96260413|6993|1 +638861.78969849|220518.92474392|122.56144319|6994|1 +638856.62453462|220523.47185902|122.93582109|6995|1 +638851.40985733|220528.06435026|123.43285221|6996|1 +638846.1982403|220532.65353251|123.88668588|6997|1 +638841.04763646|220537.18919844|124.35634188|6998|1 +638835.88978386|220541.72972707|124.71952974|6999|1 +638830.73316486|220546.26953816|125.10796262|7000|1 +638825.52941726|220550.85111128|125.51344566|7001|1 +638820.37668647|220555.38697722|125.86499699|7002|1 +638815.22507636|220559.92230371|126.24801624|7003|1 +638810.07551764|220564.45520998|126.58753108|7004|1 +638804.92700288|220568.98773876|126.96474602|7005|1 +638799.77996645|220573.51897166|127.3421749|7006|1 +638794.6237768|220578.08006417|129.24441608|7007|1 +638789.49025976|220582.57742632|128.08513569|7008|1 +638784.3968312|220587.05834299|128.2454239|7009|1 +638779.25554429|220591.5819434|128.44228669|7010|1 +638774.11516616|220596.10367684|128.5643353|7011|1 +638769.02356802|220600.68679812|135.98626921|7012|1 +638769.02382304|220600.58222484|128.68716526|7013|2 +638763.88469786|220605.10465049|128.93440648|7014|1 +638758.79388931|220609.57934304|128.81973418|7015|1 +638753.70431571|220614.05795316|129.0549482|7016|1 +638748.56525482|220618.57559868|128.97122291|7017|1 +638743.47477735|220623.05107312|128.93141131|7018|1 +638738.38301774|220627.52562818|128.74779424|7019|1 +638733.29277275|220632.00188397|128.77656463|7020|1 +638728.20296252|220636.47829993|128.84276538|7021|1 +638723.11123345|220640.9540839|128.74638967|7022|1 +638718.01945715|220645.43026857|128.67494273|7023|1 +638712.97654619|220649.86411501|128.65273008|7024|1 +638707.88455199|220654.34171804|128.61225805|7025|1 +638702.79209749|220658.82083637|128.56547012|7026|1 +638697.69792934|220663.30047893|128.44987694|7027|1 +638692.65070898|220667.73812516|128.28932828|7028|1 +638687.6031347|220672.17635385|128.14723435|7029|1 +638682.50590806|220676.65807144|127.98750424|7030|1 +638677.45399644|220681.09851107|127.73249604|7031|1 +638672.35102399|220685.58314767|127.42261666|7032|1 +638667.29435048|220690.02653029|127.07974388|7033|1 +638662.23444681|220694.47186373|126.67413992|7034|1 +638657.1693272|220698.92008919|126.14962205|7035|1 +638652.10497166|220703.36889617|125.71233624|7036|1 +638647.04211285|220707.81781401|125.37475617|7037|1 +638641.97577667|220712.26898644|124.98075152|7038|1 +638636.96242933|220716.67595161|124.75895067|7039|1 +638631.90321003|220721.12487314|124.64542248|7040|1 +638626.84390806|220725.57423214|124.55661842|7041|1 +638621.78210905|220730.02524643|124.43014217|7042|1 +638616.76613163|220734.43532235|124.26305436|7043|1 +638611.7451714|220738.84853348|124.00813918|7044|1 +638606.67005886|220743.30814934|123.66230843|7045|1 +638601.656538|220747.7181924|123.64386301|7046|1 +638596.6591491|220752.11929414|123.99318192|7047|1 +638591.65786342|220756.5226633|124.26084984|7048|1 +638586.66152199|220760.92319086|124.63411152|7049|1 +638581.61919558|220765.36498604|125.06051426|7050|1 +638576.67068742|220769.7231365|125.41653975|7051|1 +638571.67655961|220774.1223259|125.83191988|7052|1 +638566.67629981|220778.52530596|126.13453457|7053|1 +638561.68093089|220782.92531238|126.53021353|7054|1 +638556.68508019|220787.32564582|126.91914871|7055|1 +638551.72873427|220791.68897424|127.15350697|7056|1 +638546.73117172|220796.09054218|127.52264797|7057|1 +638541.79590179|220800.44046648|128.11727332|7058|1 +638531.85339638|220809.19831123|128.92896494|7059|1 +638526.90165524|220813.55906709|129.2659869|7060|1 +638521.96187459|220817.91195492|129.78920252|7061|1 +638517.01017951|220822.27283037|130.137275|7062|1 +638512.01213356|220826.67514496|130.5273729|7063|1 +638507.10689043|220830.99483592|130.85626511|7064|1 +638502.14721318|220835.36147474|131.11512424|7065|1 +638497.19031647|220839.72637461|131.42313396|7066|1 +638492.22286683|220844.0986971|131.5997933|7067|1 +638487.30974056|220848.4244037|131.86326612|7068|1 +638482.34005399|220852.79867959|132.0385953|7069|1 +638480.869692|220851.27565397|132.11300021|7070|1 +638485.82994495|220846.89747595|131.86201968|7071|1 +638490.84223391|220842.47424426|131.66684981|7072|1 +638495.80225799|220838.09660516|131.43966322|7073|1 +638500.80966935|220833.67712418|131.20627235|7074|1 +638505.81127376|220829.26178302|130.90398322|7075|1 +638510.7620017|220824.89098226|130.58172318|7076|1 +638515.75455208|220820.4820107|130.16634305|7077|1 +638520.75420466|220816.06836794|129.86262144|7078|1 +638525.78780025|220811.6217324|129.34161965|7079|1 +638530.78649107|220807.20892213|129.03710739|7080|1 +638535.7834391|220802.79737776|128.71344278|7081|1 +638540.82108426|220798.34822179|128.26623197|7082|1 +638545.84703866|220793.90661377|127.62549771|7083|1 +638550.88655882|220789.45624024|127.20888974|7084|1 +638555.93555587|220784.99990469|126.96040209|7085|1 +638560.97738447|220780.54819814|126.59318656|7086|1 +638566.02036204|220776.09582686|126.25066725|7087|1 +638571.10992246|220771.60191349|125.87274537|7088|1 +638576.14863863|220767.15222981|125.45495609|7089|1 +638581.2374422|220762.65880271|125.06437449|7090|1 +638586.27544945|220758.20823224|124.62112624|7091|1 +638591.36966516|220753.70911452|124.32381356|7092|1 +638596.46167121|220749.21132469|123.98280114|7093|1 +638601.55894303|220744.7105772|123.76035846|7094|1 +638606.67158317|220740.2014257|123.89995022|7095|1 +638611.79603758|220735.68630223|124.3517375|7096|1 +638616.90594984|220731.17964472|124.49770097|7097|1 +638622.0148645|220726.67395327|124.64994315|7098|1 +638627.12113529|220722.17005732|124.76475497|7099|1 +638632.27344862|220717.62502548|124.83957846|7100|1 +638637.37894181|220713.12234059|124.99201598|7101|1 +638642.4864715|220708.61919488|125.23815028|7102|1 +638647.64599208|220704.07233977|125.632034|7103|1 +638652.80146122|220699.52799107|125.95122446|7104|1 +638657.91267957|220695.02540595|126.46625452|7105|1 +638663.0673991|220690.48295781|126.87330956|7106|1 +638668.22112395|220685.941747|127.30559101|7107|1 +638673.37076963|220681.40280003|127.64440822|7108|1 +638678.51661068|220676.86578584|127.88348248|7109|1 +638683.61232995|220672.37259637|128.09911626|7110|1 +638688.75472735|220667.8377242|128.27601744|7111|1 +638693.89615116|220663.30363029|128.44686317|7112|1 +638699.03608137|220658.77031163|128.58040877|7113|1 +638704.22231734|220654.19494444|128.62581074|7114|1 +638709.35937814|220649.66256222|128.64737226|7115|1 +638714.49723066|220645.13018903|128.71910756|7116|1 +638719.63373295|220640.59794428|128.71602867|7117|1 +638724.77196227|220636.06648775|128.87560995|7118|1 +638729.908053|220631.53469515|128.87914462|7119|1 +638735.09240842|220626.96019511|128.87021492|7120|1 +638740.22759321|220622.42769277|128.76796979|7121|1 +638745.36516568|220617.89815069|129.02213153|7122|1 +638750.58584355|220613.40617368|137.06979594|7123|1 +638750.54867779|220613.32236229|128.87047537|7124|2 +638755.69446406|220608.82618591|131.98110102|7125|1 +638760.87451742|220604.2543352|131.89261322|7126|1 +638766.00550124|220599.68476058|128.92303971|7127|1 +638771.14206455|220595.14917875|128.69088597|7128|1 +638776.31297001|220590.67078217|134.60875984|7129|1 +638776.32776875|220590.57138768|128.53471845|7130|2 +638781.4662669|220586.03294854|128.22182529|7131|1 +638786.60515613|220581.49621293|128.05284922|7132|1 +638791.79384423|220576.91446397|127.8040267|7133|1 +638796.93578372|220572.37264488|127.46687451|7134|1 +638802.08026704|220567.82671522|126.99873471|7135|1 +638807.27254085|220563.24190456|126.7572885|7136|1 +638812.41911032|220558.69538821|126.37719001|7137|1 +638817.5668774|220554.14817295|126.02233654|7138|1 +638822.71680067|220549.59843715|125.62399727|7139|1 +638827.9185436|220545.00164951|125.12798934|7140|1 +638833.06830103|220540.45499526|124.93641926|7141|1 +638838.22423404|220535.89916623|124.48278092|7142|1 +638843.76889887|220531.00218458|124.1234533|7143|1 +638848.52922861|220526.7943666|123.63197534|7144|1 +638853.69444427|220522.22796958|123.01057947|7145|1 +638858.90453954|220517.62562439|122.64200588|7146|1 +638864.01477733|220513.11366999|122.44308739|7147|1 +638869.23862806|220508.49388044|121.70080563|7148|1 +638874.40458828|220503.93110017|121.38052687|7149|1 +638879.52488801|220499.4079732|121.0199156|7150|1 +638884.70261437|220494.8311891|120.44429377|7151|1 +638889.9323391|220490.20828414|119.84758481|7152|1 +638895.0677473|220485.66829798|119.23811382|7153|1 +638900.25716765|220481.07971134|118.55767027|7154|1 +638905.44491037|220476.49438164|118.00244724|7155|1 +638910.63578892|220471.90611092|117.435197|7156|1 +638915.828144|220467.31699112|116.89958211|7157|1 +638920.97012713|220462.77370493|116.46627746|7158|1 +638926.13835072|220458.21561211|116.61740343|7159|1 +638931.26619348|220453.69064149|116.59608375|7160|1 +638936.40559191|220449.15229154|116.35045174|7161|1 +638941.60178188|220444.56211312|115.97878066|7162|1 +638946.74687448|220440.01830988|115.70253651|7163|1 +638951.89596402|220435.47045379|115.38911315|7164|1 +638957.04509884|220430.92317522|115.11955697|7165|1 +638962.19119199|220426.38000038|114.94992048|7166|1 +638967.33151617|220421.84394808|114.92379179|7167|1 +638972.47232662|220417.30634525|114.91033212|7168|1 +638977.58400285|220412.78854726|114.5678035|7169|1 +638982.73639955|220408.23752444|114.41154296|7170|1 +638987.88899464|220403.68676376|114.28666661|7171|1 +638992.99451712|220399.17749392|114.16242278|7172|1 +638998.14687366|220394.62791611|114.10643539|7173|1 +639003.26031543|220390.11077205|113.92017662|7174|1 +639008.4234931|220385.55015878|113.75888382|7175|1 +639013.54679571|220381.02316543|113.49207166|7176|1 +639018.67726145|220376.48889032|113.15698447|7177|1 +639023.80361249|220371.95965547|112.92156581|7178|1 +639028.94167115|220367.41824406|112.55575485|7179|1 +639034.09200329|220362.8641525|112.0596539|7180|1 +639039.24199362|220358.31107542|111.61354071|7181|1 +639044.3919338|220353.75866144|111.21120167|7182|1 +639045.23623235|220349.63015018|111.1500797|7183|1 +639039.98131092|220354.26267593|111.56417618|7184|1 +639034.73138174|220358.89046093|111.95417176|7185|1 +639029.4708713|220363.53031374|112.53759778|7186|1 +639024.22951938|220368.15011815|112.89800441|7187|1 +639018.94748462|220372.80463951|113.17797858|7188|1 +639013.71353931|220377.41758866|113.51498194|7189|1 +639008.43410525|220382.07045984|113.84017204|7190|1 +639003.21725873|220386.66580042|113.99815341|7191|1 +638997.95084444|220391.30545683|114.20047635|7192|1 +638992.69285948|220395.93628499|114.30402373|7193|1 +638987.43579271|220400.56658008|114.42700251|7194|1 +638982.22837067|220405.15347658|114.57507749|7195|1 +638976.97433409|220409.78138675|114.71812021|7196|1 +638971.71197195|220414.41929342|115.04874255|7197|1 +638966.47031575|220419.03419633|115.043794|7198|1 +638961.22758552|220423.65076233|115.0893541|7199|1 +638955.97725247|220428.27659691|115.31628954|7200|1 +638950.72563399|220432.90454944|115.61249531|7201|1 +638945.4766036|220437.53014357|115.90318513|7202|1 +638940.17939606|220442.19867064|116.22731483|7203|1 +638934.98208599|220446.77920991|116.55526756|7204|1 +638929.69441575|220451.43776574|116.76882704|7205|1 +638924.46771851|220456.03921409|116.74440058|7206|1 +638919.24609788|220460.63487177|116.62700286|7207|1 +638913.96204363|220465.29071522|116.87411385|7208|1 +638908.71292366|220469.92159147|117.5315076|7209|1 +638903.470055|220474.54572556|118.1022925|7210|1 +638898.22858368|220479.16917162|118.71119609|7211|1 +638892.93959827|220483.8351586|119.36712016|7212|1 +638887.70480481|220488.45229609|119.94629526|7213|1 +638882.47285803|220493.06684881|120.5198707|7214|1 +638877.19248815|220497.72519051|121.17202755|7215|1 +638871.97548606|220502.32181379|121.40990188|7216|1 +638866.75258004|220506.92754346|121.92301577|7217|1 +638861.53086355|220511.53285279|122.48043402|7218|1 +638856.31857993|220516.12578819|122.75120873|7219|1 +638851.10412217|220520.72294796|123.18486685|7220|1 +638845.84067889|220525.36484152|123.72902077|7221|1 +638840.64076519|220529.94956314|124.1894029|7222|1 +638835.48118307|220534.49788712|124.58952811|7223|1 +638830.22730149|220539.12846532|124.92948013|7224|1 +638825.0247413|220543.71278844|125.19721316|7225|1 +638819.86820339|220548.26030576|125.72966545|7226|1 +638814.66750743|220552.84424097|126.08572815|7227|1 +638809.46855569|220557.4263808|126.42351286|7228|1 +638804.31933906|220561.96498027|126.78204053|7229|1 +638799.0744711|220566.58802157|127.1505118|7230|1 +638793.92808732|220571.12422655|127.51595999|7231|1 +638788.78325095|220575.65871729|127.85663755|7232|1 +638783.59171094|220580.23293778|128.09651176|7233|1 +638778.37394336|220584.94189754|136.21670212|7234|1 +638778.40163049|220584.80393428|128.1993522|7235|2 +638773.26001728|220589.33612895|128.57837168|7236|1 +638768.11981474|220593.86451672|128.77635069|7237|1 +638762.98239488|220598.43090637|131.83044015|7238|1 +638757.84823867|220602.95812895|132.32255063|7239|1 +638752.7136627|220607.477938|132.26487032|7240|1 +638747.6094657|220612.05940119|138.45060744|7241|1 +638747.57850425|220611.99675862|132.10112184|7242|2 +638742.42455175|220616.49054494|129.00025375|7243|1 +638737.28501827|220621.01419869|128.90556167|7244|1 +638732.19322096|220625.49507803|128.76087254|7245|1 +638727.05538518|220630.02042929|128.89139506|7246|1 +638721.91584154|220634.54489908|128.8533415|7247|1 +638716.87208407|220638.98396711|128.74568274|7248|1 +638711.73178831|220643.50892281|128.6952485|7249|1 +638706.63992573|220647.99145499|128.66297134|7250|1 +638701.59633121|220652.42895396|128.60475152|7251|1 +638696.45644621|220656.95093961|128.59821237|7252|1 +638691.41128036|220661.38810046|128.49588353|7253|1 +638686.31519365|220665.86891533|128.30701096|7254|1 +638681.26754333|220670.30755712|128.15421998|7255|1 +638676.21713139|220674.74748115|127.91992684|7256|1 +638671.11449358|220679.23194401|127.58073756|7257|1 +638666.06145211|220683.67400814|127.33352425|7258|1 +638661.00548742|220688.11776261|127.02357976|7259|1 +638655.94408954|220692.56435266|126.57595967|7260|1 +638650.8799542|220697.01291702|126.09688098|7261|1 +638645.81917833|220701.46082107|125.77997876|7262|1 +638640.80603248|220705.86698105|125.47928023|7263|1 +638635.74315928|220710.31707995|125.18678587|7264|1 +638630.68494281|220714.76546877|125.06268157|7265|1 +638625.67627591|220719.17094782|124.99189505|7266|1 +638620.61745099|220723.62040148|124.90467229|7267|1 +638615.60431817|220728.02892596|124.7706337|7268|1 +638610.58896308|220732.43904666|124.61115474|7269|1 +638605.56343718|220736.8552128|124.24526006|7270|1 +638600.54049088|220741.27051812|123.97882928|7271|1 +638595.53452505|220745.67660597|124.11765829|7272|1 +638590.53653319|220750.07822343|124.43699758|7273|1 +638585.53145067|220754.48405662|124.61230816|7274|1 +638580.53735642|220758.88347521|125.01799584|7275|1 +638575.59338061|220763.23910851|125.45054704|7276|1 +638570.59741225|220767.6396341|125.81766025|7277|1 +638565.65382267|220771.9950031|126.25505769|7278|1 +638560.65318762|220776.39848792|126.5399618|7279|1 +638555.70801388|220780.7548872|126.95106311|7280|1 +638550.75369528|220785.11712857|127.20554111|7281|1 +638545.80511271|220789.47580638|127.56531521|7282|1 +638540.82444545|220793.86671442|128.20325895|7283|1 +638535.88139445|220798.22183619|128.65516715|7284|1 +638530.97952472|220802.53899295|128.98931486|7285|1 +638526.02837468|220806.89955823|129.32125806|7286|1 +638521.0849493|220811.25507685|129.77711952|7287|1 +638516.18131614|220815.57367848|130.10247705|7288|1 +638511.23255617|220819.93291197|130.48827753|7289|1 +638506.28071608|220824.29431872|130.83601514|7290|1 +638501.41971383|220828.57445055|131.09729274|7291|1 +638496.46020222|220832.9413713|131.3563007|7292|1 +638491.59424163|220837.22523343|131.5720182|7293|1 +638486.63191708|220841.59443732|131.8170921|7294|1 +638481.7150558|220845.92313501|132.03065159|7295|1 +638476.78883273|220850.25857397|132.13760341|7296|1 +638471.91103859|220854.55150031|132.25620106|7297|1 +638469.50393333|220853.331505|132.26561446|7298|1 +638474.47886544|220848.94027597|132.18813996|7299|1 +638479.44700313|220844.55404978|132.04167419|7300|1 +638484.45843577|220840.1288471|131.83895128|7301|1 +638489.42128683|220835.74672567|131.65409707|7302|1 +638494.43001244|220831.32380234|131.44429551|7303|1 +638499.38707948|220826.94604602|131.20854198|7304|1 +638504.43516574|220822.48690226|130.89278388|7305|1 +638509.38491096|220818.11442384|130.57499799|7306|1 +638514.37903229|220813.70202653|130.20152237|7307|1 +638519.42396375|220809.24537341|129.86610961|7308|1 +638524.41065239|220804.83808601|129.39213759|7309|1 +638529.45668442|220800.3808891|129.08731838|7310|1 +638534.45141123|220795.96844944|128.74960809|7311|1 +638539.4888231|220791.51705701|128.31955906|7312|1 +638544.51757095|220787.07125576|127.74585339|7313|1 +638549.55706466|220782.61854679|127.3526673|7314|1 +638554.59848394|220778.16466476|126.99664181|7315|1 +638559.5908482|220773.75398843|126.63827227|7316|1 +638564.67755566|220769.25939794|126.22769186|7317|1 +638569.72230417|220764.80361921|125.94575502|7318|1 +638574.75967711|220760.3523835|125.52631931|7319|1 +638579.84246738|220755.86015925|125.04053404|7320|1 +638584.83485849|220751.45097978|124.68662005|7321|1 +638589.93185615|220746.95220181|124.48758994|7322|1 +638595.02555281|220742.45544271|124.22614491|7323|1 +638600.07797023|220737.99751472|124.13639207|7324|1 +638605.24569192|220733.44414752|124.48345065|7325|1 +638610.3135443|220728.97855107|124.81179406|7326|1 +638615.42035712|220724.47580645|124.94355372|7327|1 +638620.52476786|220719.97473069|125.04411522|7328|1 +638625.63183902|220715.47272329|125.24459641|7329|1 +638630.73175522|220710.97471354|125.282743|7330|1 +638635.8836409|220706.43262464|125.44339398|7331|1 +638640.98943552|220701.93271052|125.71272691|7332|1 +638646.14389296|220697.39056781|126.02990819|7333|1 +638651.24647457|220692.89330346|126.28687906|7334|1 +638656.40403521|220688.35135378|126.81055977|7335|1 +638661.55404901|220683.81321362|127.13459646|7336|1 +638666.65549906|220679.31861964|127.51049054|7337|1 +638671.80325708|220674.78281628|127.85983736|7338|1 +638676.94665092|220670.2490827|128.08444736|7339|1 +638682.08858684|220665.71636566|128.29050961|7340|1 +638687.2281394|220661.18477014|128.42803637|7341|1 +638692.36877662|220656.65354891|128.65947387|7342|1 +638697.50463467|220652.12351608|128.67863553|7343|1 +638702.68902174|220647.5510447|128.72215854|7344|1 +638707.82403614|220643.02139731|128.71678212|7345|1 +638712.9600224|220638.49186967|128.78032255|7346|1 +638718.144494|220633.9200309|128.8748193|7347|1 +638723.27949369|220629.39101459|128.91382165|7348|1 +638728.41301674|220624.86143228|128.82174336|7349|1 +638733.5963108|220620.28992219|128.86722905|7350|1 +638738.73248722|220615.76305906|129.13183668|7351|1 +638743.958881|220611.39371157|146.07652931|7352|1 +638743.86551116|220611.23266802|128.95287981|7353|2 +638749.09854208|220606.79306804|141.36703991|7354|1 +638749.04848497|220606.66161737|129.01184377|7355|2 +638754.19271753|220602.17702388|132.75172529|7356|1 +638759.36972812|220597.60385673|132.29263612|7357|1 +638764.50011451|220593.03067318|128.93993173|7358|1 +638769.68377137|220588.45440395|128.6753148|7359|1 +638774.80886059|220583.98364826|132.20339488|7360|1 +638774.8201386|220583.91874968|128.33528836|7361|2 +638780.00514126|220579.34360388|128.23387109|7362|1 +638785.14277765|220574.8088692|128.03805009|7363|1 +638790.33059279|220570.2282273|127.72491509|7364|1 +638795.47179816|220565.68759498|127.3359055|7365|1 +638800.66339034|220561.1019396|126.90484258|7366|1 +638805.80628901|220556.56149845|126.63509106|7367|1 +638811.0001593|220551.9747251|126.26730813|7368|1 +638816.19520636|220547.38727169|125.92498415|7369|1 +638821.34555887|220542.83706749|125.43127376|7370|1 +638826.54520128|220538.24441175|125.00860104|7371|1 +638831.69354598|220533.70050188|124.83407181|7372|1 +638836.89656893|220529.10478279|124.40602266|7373|1 +638842.09017319|220524.51744969|123.9841778|7374|1 +638847.25011461|220519.95835182|123.46091567|7375|1 +638852.45959879|220515.35632372|122.99057135|7376|1 +638857.67023678|220510.75381397|122.55824338|7377|1 +638862.82868937|220506.20028724|122.33582861|7378|1 +638867.99998398|220501.62967726|121.70792149|7379|1 +638873.21585582|220497.02300611|121.30826137|7380|1 +638878.38269285|220492.46067076|120.98702452|7381|1 +638883.61242911|220487.83744123|120.28259169|7382|1 +638888.78751371|220483.26615563|119.84362226|7383|1 +638893.97401906|220478.68108539|119.14297525|7384|1 +638899.15966152|220474.09828345|118.54882428|7385|1 +638904.39618903|220469.47085453|117.97146302|7386|1 +638909.53699882|220464.92814716|117.41797942|7387|1 +638914.72556561|220460.3446308|116.95612761|7388|1 +638919.95346062|220455.73048698|116.7795892|7389|1 +638925.07066646|220451.21876323|116.94414693|7390|1 +638930.24484307|220446.65448447|116.94490037|7391|1 +638935.43010497|220442.07742493|116.73406631|7392|1 +638940.57279788|220437.53659376|116.43166555|7393|1 +638945.76693637|220432.95029758|116.12185129|7394|1 +638950.91688409|220428.40227443|115.76392823|7395|1 +638956.11306415|220423.81488681|115.50478074|7396|1 +638961.30779944|220419.22974873|115.31465243|7397|1 +638966.40147446|220414.73506066|115.2202301|7398|1 +638971.5888884|220410.1592449|115.23005277|7399|1 +638976.74912907|220405.60237553|114.88604518|7400|1 +638981.85265365|220401.09799326|114.71720863|7401|1 +638987.00767441|220396.54811101|114.54174923|7402|1 +638992.16255301|220391.99888669|114.4039062|7403|1 +638997.31794844|220387.44955943|114.29122448|7404|1 +639002.48298088|220382.89006355|114.06061484|7405|1 +639007.59438952|220378.37934437|113.93604545|7406|1 +639012.72208158|220373.85127085|113.60006529|7407|1 +639017.85335969|220369.31985964|113.25181608|7408|1 +639022.98744034|220364.78597638|112.90374361|7409|1 +639028.16820544|220360.21200173|112.63099692|7410|1 +639033.27360456|220355.70049406|112.07767145|7411|1 +639038.42060449|220351.15443303|111.67432782|7412|1 +639043.51916392|220346.65150588|111.30139169|7413|1 +639045.60546206|220340.87948621|111.14306616|7414|1 +639040.40920818|220345.46454139|111.43009107|7415|1 +639035.25767035|220350.01159816|111.81777051|7416|1 +639030.06002884|220354.59931632|112.20509648|7417|1 +639024.80356937|220359.24148074|112.77266297|7418|1 +639019.67040974|220363.77050083|113.03091749|7419|1 +639014.4352947|220368.39076842|113.38209676|7420|1 +639009.24760537|220372.97019984|113.80250915|7421|1 +639004.07747871|220377.5309655|113.99940915|7422|1 +638998.85825387|220382.13557699|114.23410227|7423|1 +638993.64030895|220386.73933774|114.48804077|7424|1 +638988.43656452|220391.32784344|114.54962783|7425|1 +638983.22879207|220395.92133159|114.71132061|7426|1 +638978.01881815|220400.51783718|114.94825546|7427|1 +638972.80691887|220405.11711562|115.26045098|7428|1 +638967.56467379|220409.73902022|115.28132417|7429|1 +638962.42005175|220414.27534409|115.33833475|7430|1 +638957.17098766|220418.90603593|115.55345694|7431|1 +638951.92469121|220423.53412767|115.75685888|7432|1 +638946.77093399|220428.08270594|116.10787072|7433|1 +638941.52349471|220432.71342595|116.42466132|7434|1 +638936.27719614|220437.34351102|116.76709691|7435|1 +638931.08667985|220441.92296936|117.00880357|7436|1 +638925.85531064|220446.53654707|117.11558797|7437|1 +638920.63458861|220451.13773462|117.01099879|7438|1 +638915.46347481|220455.6952424|116.91115352|7439|1 +638910.17520229|220460.36342385|117.32746383|7440|1 +638904.93865546|220464.98579132|117.72990519|7441|1 +638899.74562488|220469.57268562|118.33646472|7442|1 +638894.5083585|220474.19793265|118.89612471|7443|1 +638889.26842283|220478.82776502|119.61245451|7444|1 +638884.03933312|220483.44467593|120.09233315|7445|1 +638878.80712687|220488.06683121|120.74759679|7446|1 +638873.58673213|220492.67432714|121.10391064|7447|1 +638868.36775457|220497.28085255|121.47953498|7448|1 +638863.14192335|220501.89804651|122.18037732|7449|1 +638857.88343101|220506.53683732|122.37327756|7450|1 +638852.66910147|220511.14010252|122.80695428|7451|1 +638847.45665433|220515.741809|123.2474306|7452|1 +638842.24486886|220520.34383032|123.75090785|7453|1 +638836.99876602|220524.9753086|124.19691873|7454|1 +638831.79016378|220529.57499305|124.73278477|7455|1 +638826.589686|220534.16264506|124.9256664|7456|1 +638821.38898948|220538.75174622|125.20647773|7457|1 +638816.18740317|220543.34385918|125.64395888|7458|1 +638810.93837568|220547.97860108|126.13642283|7459|1 +638805.69273502|220552.60859748|126.50468946|7460|1 +638800.54636221|220557.15003473|126.80169518|7461|1 +638795.30414198|220561.77624207|127.1149139|7462|1 +638790.11142055|220566.35935832|127.46759075|7463|1 +638784.91903944|220570.94458016|127.98943901|7464|1 +638779.68185677|220575.56372696|128.11706869|7465|1 +638774.475517|220580.23470035|133.81405327|7466|1 +638774.49400993|220580.13850009|128.18377172|7467|2 +638769.30603675|220584.71783061|128.56335862|7468|1 +638764.11719339|220589.36177481|133.44281938|7469|1 +638764.11951624|220589.29145808|128.63093602|7470|2 +638758.93689328|220593.91582785|132.51725542|7471|1 +638753.80773457|220598.45653013|133.82977327|7472|1 +638748.61174671|220602.9710762|129.14270116|7473|1 +638738.38445127|220612.19400891|143.6740944|7474|1 +638738.32726057|220612.11956551|134.86852125|7475|2 +638738.28902513|220612.06979558|128.98147347|7476|3 +638733.10533065|220616.64276739|129.17630847|7477|1 +638727.91752531|220621.21228753|128.87161018|7478|1 +638722.78106947|220625.7415766|128.92324435|7479|1 +638717.5950292|220630.31319524|128.87548903|7480|1 +638712.45717635|220634.84231671|128.82760348|7481|1 +638707.31885091|220639.37168497|128.76739308|7482|1 +638702.13253454|220643.94402174|128.75190562|7483|1 +638696.99469207|220648.47421546|128.68592812|7484|1 +638691.8564812|220653.00485154|128.62011806|7485|1 +638686.71689961|220657.53608311|128.51076637|7486|1 +638681.57600578|220662.06803654|128.37035606|7487|1 +638676.48192572|220666.55815663|128.19126896|7488|1 +638671.33683128|220671.09232289|127.94493001|7489|1 +638666.19208067|220675.62699011|127.75503425|7490|1 +638661.08760416|220680.12240156|127.30122848|7491|1 +638655.94010963|220684.6593259|127.09916599|7492|1 +638650.83037732|220689.15841186|126.57676893|7493|1 +638645.72611159|220693.6560431|126.2917718|7494|1 +638640.62046114|220698.1549007|126.00677467|7495|1 +638635.56463004|220702.61093895|125.8006473|7496|1 +638630.45577583|220707.11245358|125.50308348|7497|1 +638625.35393988|220711.61105391|125.43660368|7498|1 +638620.29677263|220716.06916169|125.29250056|7499|1 +638615.19196412|220720.57003734|125.20095248|7500|1 +638610.17841289|220724.98875508|124.99117882|7501|1 +638605.1163229|220729.45076734|124.81525432|7502|1 +638600.04605239|220733.91778845|124.48307858|7503|1 +638595.03540977|220738.33623577|124.43456982|7504|1 +638589.98133079|220742.79489403|124.52009965|7505|1 +638584.98095427|220747.20790268|124.7266921|7506|1 +638579.93812536|220751.66025562|125.06749059|7507|1 +638574.94522038|220756.06896298|125.43545956|7508|1 +638569.95418878|220760.4765431|125.84036589|7509|1 +638564.96215683|220764.88473657|126.22605475|7510|1 +638560.01745067|220769.25086157|126.58844265|7511|1 +638555.02238493|220773.66101562|126.92313917|7512|1 +638550.07581183|220778.02842196|127.25926817|7513|1 +638545.13038233|220782.39516503|127.61961898|7514|1 +638540.14821993|220786.79718317|128.18331594|7515|1 +638535.21124893|220791.15847838|128.68571418|7516|1 +638530.25985016|220795.5292327|128.95677725|7517|1 +638525.31620822|220799.89498788|129.35802798|7518|1 +638520.37266583|220804.2607359|129.76480396|7519|1 +638515.47011783|220808.58875089|130.05983771|7520|1 +638510.5261694|220812.95492957|130.47133899|7521|1 +638505.62416711|220817.28279705|130.78959927|7522|1 +638500.66918057|220821.65667331|131.05640213|7523|1 +638495.81413324|220825.94302976|131.36740702|7524|1 +638490.85387168|220830.32084025|131.58290128|7525|1 +638485.93954449|220834.65778507|131.77328073|7526|1 +638481.02409904|220838.99570766|131.96283233|7527|1 +638476.15248273|220843.29426411|132.10196831|7528|1 +638471.23121277|220847.6366915|132.24623886|7529|1 +638466.34998671|220851.9424747|132.29636613|7530|1 +638462.21650325|220852.47741808|132.04252995|7531|1 +638467.21507937|220848.06461033|132.27816255|7532|1 +638472.18600742|220843.67162208|132.18984219|7533|1 +638477.15401215|220839.28093602|132.08231365|7534|1 +638482.11544664|220834.89506375|131.90576594|7535|1 +638487.12542921|220830.46652681|131.74151517|7536|1 +638492.07816087|220826.08708011|131.4767308|7537|1 +638497.08458257|220821.66139695|131.2929463|7538|1 +638502.03414763|220817.28445215|131.00833055|7539|1 +638507.03002664|220812.86628515|130.69907439|7540|1 +638512.02103785|220808.45152576|130.32707774|7541|1 +638517.0152675|220804.03470487|130.01070572|7542|1 +638522.04562641|220799.583374|129.50822376|7543|1 +638527.04524855|220795.16317406|129.29074823|7544|1 +638532.02943325|220790.75324543|128.83598438|7545|1 +638537.06981674|220786.29549851|128.50703636|7546|1 +638542.04993609|220781.88825259|127.98906694|7547|1 +638547.07390665|220777.44109218|127.38514911|7548|1 +638552.11830172|220772.98091773|127.1363731|7549|1 +638557.16214828|220768.52121776|126.88736454|7550|1 +638562.19510823|220764.06838608|126.44476742|7551|1 +638567.23235159|220759.61290505|126.08298412|7552|1 +638572.26850361|220755.15811653|125.70221591|7553|1 +638577.30399545|220750.70377519|125.30869495|7554|1 +638582.3888604|220746.20714366|124.92384326|7555|1 +638587.43317537|220741.74871496|124.71087908|7556|1 +638592.48331481|220737.28706746|124.63495799|7557|1 +638597.58749627|220732.7797084|124.69919605|7558|1 +638602.64690483|220728.31347631|124.87889707|7559|1 +638607.75752268|220723.80341665|125.15532726|7560|1 +638612.86402341|220719.29609918|125.36937974|7561|1 +638617.91535538|220714.83555662|125.44880761|7562|1 +638623.01437221|220710.33297967|125.53165853|7563|1 +638628.11709997|220705.82897081|125.7456459|7564|1 +638633.22066416|220701.32509461|126.022104|7565|1 +638638.32050697|220696.82352844|126.22985917|7566|1 +638643.42050796|220692.32243192|126.4813513|7567|1 +638648.51995465|220687.8221723|126.757828|7568|1 +638653.66630893|220683.28039197|127.02615635|7569|1 +638658.7656804|220678.78150383|127.39644146|7570|1 +638663.86367852|220674.2839079|127.77295877|7571|1 +638669.00393823|220669.74634871|127.96050118|7572|1 +638674.09537931|220665.25223303|128.17465598|7573|1 +638679.23424141|220660.71624537|128.38746202|7574|1 +638684.32163939|220656.22427247|128.50166923|7575|1 +638689.45668165|220651.69014853|128.60851874|7576|1 +638694.59055213|220647.15660987|128.68430031|7577|1 +638699.72414033|220642.62349447|128.7727509|7578|1 +638704.85546465|220638.0905206|128.73014877|7579|1 +638709.98887779|220633.55772561|128.83143581|7580|1 +638715.12083238|220629.02506669|128.85165787|7581|1 +638720.25258871|220624.49257456|128.87204737|7582|1 +638725.38340785|220619.95976141|128.81136258|7583|1 +638730.51570401|220615.42801952|128.91957945|7584|1 +638735.74884329|220610.91710878|136.81489006|7585|1 +638735.69558808|220610.85322477|128.95298212|7586|2 +638740.91322375|220606.47100096|145.00415541|7587|1 +638740.82654048|220606.32054158|128.91166363|7588|2 +638745.97054033|220601.82182017|132.09523382|7589|1 +638751.15066917|220597.2724457|133.94817559|7590|1 +638756.27321928|220592.72557229|132.3763149|7591|1 +638761.40062373|220588.14603461|128.79240556|7592|1 +638766.58130275|220583.56716891|128.59030586|7593|1 +638771.69496326|220579.13951427|134.91793229|7594|1 +638771.71485381|220579.02732168|128.20654247|7595|2 +638776.89664095|220574.44985565|128.17389324|7596|1 +638782.03081827|220569.91323387|128.05931396|7597|1 +638787.21676543|220565.32566013|127.57124045|7598|1 +638792.35479438|220560.78228695|127.21974492|7599|1 +638797.5424651|220556.1953882|126.88865749|7600|1 +638802.68266214|220551.65079958|126.58768921|7601|1 +638807.87278733|220547.06199864|126.27615411|7602|1 +638813.06701844|220542.46684316|125.77142112|7603|1 +638818.21315055|220537.91551092|125.36518464|7604|1 +638823.40893898|220533.32082521|124.99249967|7605|1 +638828.60179817|220528.73224943|124.8701441|7606|1 +638833.80278435|220524.13139411|124.38601454|7607|1 +638838.94494225|220519.58319852|123.95563995|7608|1 +638844.15147881|220514.9762106|123.38496667|7609|1 +638849.35707213|220510.37198915|122.95223873|7610|1 +638854.5159709|220505.80902249|122.52350125|7611|1 +638859.72273642|220501.20526498|122.19787396|7612|1 +638864.93056397|220496.60092256|121.89777075|7613|1 +638870.14822343|220491.98402954|121.32356279|7614|1 +638875.35915429|220487.37730174|121.04955106|7615|1 +638880.53434268|220482.79722626|120.42946674|7616|1 +638885.75807218|220478.17550983|119.89440995|7617|1 +638890.98849175|220473.54621723|119.24144385|7618|1 +638896.22044101|220468.91610769|118.62657783|7619|1 +638901.40330592|220464.33048869|118.09585567|7620|1 +638906.63541071|220459.70217906|117.61946519|7621|1 +638911.82064907|220455.11542886|117.15833893|7622|1 +638916.98867323|220450.55046358|117.16536177|7623|1 +638922.20543472|220445.94290275|117.20202007|7624|1 +638927.37280175|220441.37948013|117.27841556|7625|1 +638932.60459052|220436.75479214|117.04184348|7626|1 +638937.79036662|220432.17046223|116.78872354|7627|1 +638942.98097207|220427.58108203|116.47996968|7628|1 +638948.18044799|220422.98202908|116.04082351|7629|1 +638953.37030003|220418.39480528|115.83894706|7630|1 +638958.56318302|220413.8046394|115.61884843|7631|1 +638963.75383159|220409.2177108|115.48019615|7632|1 +638968.94024884|220404.63844448|115.47277333|7633|1 +638974.0867823|220400.09253676|115.33568375|7634|1 +638979.29529671|220395.48929129|115.01154474|7635|1 +638984.50073793|220390.89007582|114.78133508|7636|1 +638989.65486208|220386.33719977|114.62663724|7637|1 +638994.85898809|220381.74045723|114.49071968|7638|1 +639000.02660956|220377.17364997|114.19362094|7639|1 +639005.18986212|220372.61218567|114.00264617|7640|1 +639010.41038679|220367.99895732|113.72512767|7641|1 +639015.54557737|220363.45891909|113.29835287|7642|1 +639020.72681556|220358.87947611|112.95927521|7643|1 +639025.91134143|220354.29704348|112.61441185|7644|1 +639031.10599502|220349.704271|112.17056829|7645|1 +639036.25469033|220345.15204335|111.72641776|7646|1 +639041.45060519|220340.55912087|111.35181662|7647|1 +639046.59133522|220336.01653994|111.09467832|7648|1 +639043.74361888|220335.31786016|111.16726938|7649|1 +639038.54753076|220339.9033447|111.46434021|7650|1 +639033.3997991|220344.4468568|111.81237548|7651|1 +639028.19553436|220349.04227198|112.30294187|7652|1 +639023.00034432|220353.62856663|112.71323392|7653|1 +639017.85993564|220358.16599699|113.08710952|7654|1 +639012.67420016|220362.74327314|113.44848354|7655|1 +639007.49092862|220367.31847825|113.81648972|7656|1 +639002.3624301|220371.84473321|114.14142867|7657|1 +638997.19314463|220376.40579192|114.37947974|7658|1 +638992.02590397|220380.96514457|114.62410715|7659|1 +638986.86909345|220385.51347689|114.73835157|7660|1 +638981.70572825|220390.06960189|114.99605729|7661|1 +638976.54438592|220394.62404359|115.26029285|7662|1 +638971.38292149|220399.17921323|115.5684235|7663|1 +638966.24162258|220403.7121581|115.55924264|7664|1 +638961.09746616|220408.24876231|115.63121979|7665|1 +638955.94745491|220412.79254961|115.84669544|7666|1 +638950.80050494|220417.33338419|116.04371636|7667|1 +638945.64899316|220421.88008339|116.37181792|7668|1 +638940.45029282|220426.46864433|116.71403958|7669|1 +638935.3049316|220431.00950198|117.0115848|7670|1 +638930.16663692|220435.5426521|117.20336883|7671|1 +638924.98020893|220440.11868009|117.42204429|7672|1 +638919.85509126|220444.63716802|117.39604583|7673|1 +638914.73508725|220449.14984815|117.27662032|7674|1 +638909.55373385|220453.72134406|117.48995656|7675|1 +638904.41813083|220458.25417155|117.82618787|7676|1 +638899.23178468|220462.83331799|118.27100812|7677|1 +638894.09366657|220467.37100395|118.79485627|7678|1 +638888.90601368|220471.95376814|119.41509872|7679|1 +638883.72387407|220476.53054602|119.95464826|7680|1 +638878.59020012|220481.06572817|120.57911372|7681|1 +638873.41704069|220485.63286732|120.99451245|7682|1 +638868.29802275|220490.15060353|121.294811|7683|1 +638863.17163428|220494.67938744|121.91980666|7684|1 +638858.00965264|220499.23416057|122.15494626|7685|1 +638852.84412752|220503.79486311|122.59018568|7686|1 +638847.73033678|220508.30923888|122.97846043|7687|1 +638842.51983324|220512.90989987|123.43039654|7688|1 +638837.41059857|220517.41975395|123.78155721|7689|1 +638832.26159983|220521.96730981|124.31833482|7690|1 +638827.10577051|220526.5192471|124.73617992|7691|1 +638821.95503501|220531.06399518|124.96065969|7692|1 +638816.80339273|220535.61147342|125.32281505|7693|1 +638811.65386293|220540.15657063|125.6477354|7694|1 +638806.5518461|220544.66237482|126.16203062|7695|1 +638801.40399794|220549.20775582|126.61227381|7696|1 +638796.26063359|220553.74535083|126.78784484|7697|1 +638791.11651499|220558.28632278|127.15733|7698|1 +638785.97432595|220562.82464585|127.45829828|7699|1 +638780.83326617|220567.36215684|127.77197278|7700|1 +638775.74150872|220571.85721081|128.16181953|7701|1 +638770.55503018|220576.43238141|128.29995091|7702|1 +638765.41753116|220580.96520897|128.50173435|7703|1 +638760.3276636|220585.51987348|133.27877325|7704|1 +638760.32927672|220585.45335653|128.61684383|7705|2 +638755.14488162|220590.02908261|128.92461171|7706|1 +638750.01970903|220594.60847435|133.23905466|7707|1 +638744.93497833|220599.07913855|132.32322966|7708|1 +638739.73816225|220603.61429072|128.93844345|7709|1 +638734.65154461|220608.10024885|128.99759344|7710|1 +638729.51539306|220612.62767869|128.89426931|7711|1 +638724.37917079|220617.15552616|128.81611579|7712|1 +638719.2423465|220621.68348235|128.70689433|7713|1 +638714.10748489|220626.21242075|128.7915777|7714|1 +638708.97180742|220630.74112941|128.80769768|7715|1 +638703.88378223|220635.22715569|128.7795505|7716|1 +638698.74702445|220639.75604117|128.75214747|7717|1 +638693.60849514|220644.28493732|128.66870123|7718|1 +638688.51907653|220648.77134235|128.64686996|7719|1 +638683.42700695|220653.25852417|128.5125058|7720|1 +638678.28691783|220657.78882527|128.42937583|7721|1 +638673.19232587|220662.27754756|128.24506113|7722|1 +638668.04688276|220666.81032628|127.99975468|7723|1 +638662.90113434|220671.34381723|127.78589754|7724|1 +638657.8037714|220675.8351027|127.60798246|7725|1 +638652.65071807|220680.37253688|127.21328018|7726|1 +638647.59683486|220684.82420129|126.94600294|7727|1 +638642.44185251|220689.36388078|126.58903797|7728|1 +638637.34622123|220693.85645681|126.61108318|7729|1 +638632.24018208|220698.35422058|126.34581512|7730|1 +638627.13274257|220702.85322862|126.08055636|7731|1 +638622.02687062|220707.35199468|125.89651141|7732|1 +638616.91687639|220711.85335726|125.63755926|7733|1 +638611.8123453|220716.35235116|125.5534619|7734|1 +638606.74802632|220720.81336192|125.2916355|7735|1 +638601.63584148|220725.31738783|125.08262458|7736|1 +638596.52384313|220729.82177224|124.91111843|7737|1 +638591.46088597|220734.28343477|124.7800564|7738|1 +638586.35429532|220738.78550577|124.78328411|7739|1 +638581.30774689|220743.23818585|125.04510121|7740|1 +638576.26367516|220747.68946837|125.36281269|7741|1 +638571.22132376|220752.13975518|125.71771267|7742|1 +638566.17821828|220756.59054199|126.05985991|7743|1 +638561.13960013|220761.03858738|126.48909038|7744|1 +638556.14874228|220765.44424527|126.90143813|7745|1 +638551.1031202|220769.89673833|127.20528066|7746|1 +638546.05353488|220774.35186804|127.44653153|7747|1 +638541.07047778|220778.75264087|128.00105693|7748|1 +638536.03588915|220783.1981967|128.50353889|7749|1 +638531.08622132|220787.56594652|128.8031119|7750|1 +638521.09536043|220796.3838689|129.51600005|7751|1 +638516.11054118|220800.78585839|130.04308521|7752|1 +638511.10860032|220805.19939149|130.3142599|7753|1 +638506.1602454|220809.56676359|130.66691815|7754|1 +638501.16213521|220813.97796552|131.01185592|7755|1 +638496.25701676|220818.30630113|131.30172718|7756|1 +638491.24228754|220822.72921765|131.43388682|7757|1 +638486.28567641|220827.10283131|131.70934032|7758|1 +638481.31884229|220831.48372566|131.85968494|7759|1 +638476.40290348|220835.82029944|132.0532549|7760|1 +638471.43458698|220840.20267836|132.21476165|7761|1 +638466.50642803|220844.54829222|132.28241347|7762|1 +638461.51139349|220848.95008524|132.14415186|7763|1 +638456.55339322|220853.31752575|131.88706006|7764|1 +638455.06514049|220851.8868795|131.85541542|7765|1 +638460.05355972|220847.47988787|131.95613505|7766|1 +638465.05714908|220843.06250345|132.27411628|7767|1 +638470.07839135|220838.62441494|132.22472385|7768|1 +638474.99092162|220834.28061506|132.0501016|7769|1 +638479.99982615|220829.85166944|131.87536773|7770|1 +638485.01165779|220825.42090219|131.75628639|7771|1 +638489.96437897|220821.04060439|131.51176129|7772|1 +638494.97024502|220816.61438947|131.34202247|7773|1 +638499.96848786|220812.19359903|131.07849385|7774|1 +638504.96122035|220807.77671203|130.74601115|7775|1 +638509.95292235|220803.3606343|130.40685908|7776|1 +638514.9416121|220798.9466862|130.02987669|7777|1 +638519.93467782|220794.52989642|129.72720618|7778|1 +638524.96963792|220790.07471794|129.32576942|7779|1 +638529.95631322|220785.6623366|128.93502039|7780|1 +638534.94757245|220781.24701635|128.62481545|7781|1 +638539.97427861|220776.79736487|128.09771169|7782|1 +638545.00435251|220772.34550583|127.62640928|7783|1 +638549.9951436|220767.93064558|127.321218|7784|1 +638555.03292521|220763.47394382|126.99270716|7785|1 +638560.06741859|220759.01935722|126.60780895|7786|1 +638565.14827374|220754.52323003|126.1813132|7787|1 +638570.13737933|220750.10963536|125.86213205|7788|1 +638575.21554997|220745.61419227|125.3853881|7789|1 +638580.26002638|220741.1506749|125.224086|7790|1 +638585.29869877|220736.69071575|124.95022309|7791|1 +638590.39851946|220732.18065876|124.95990624|7792|1 +638595.45492883|220727.71089607|125.11011133|7793|1 +638600.55659087|220723.20049733|125.21337035|7794|1 +638605.66398874|220718.68736157|125.48522407|7795|1 +638610.71714735|220714.2206983|125.65380016|7796|1 +638615.81913069|220709.71146331|125.86317385|7797|1 +638620.92205311|220705.20225706|126.13501826|7798|1 +638626.02059098|220700.69579062|126.32570468|7799|1 +638631.12065584|220696.18909328|126.5975956|7800|1 +638636.21212443|220691.68694738|126.65089478|7801|1 +638641.30436409|220687.18480819|126.7541445|7802|1 +638646.40432544|220682.67982407|127.14470749|7803|1 +638651.49833704|220678.17800899|127.38536305|7804|1 +638656.59386162|220673.67623203|127.72595689|7805|1 +638661.73246136|220669.13429435|127.91496899|7806|1 +638666.82164867|220664.6360247|128.10569261|7807|1 +638671.91116603|220660.13823479|128.35261757|7808|1 +638676.99660126|220655.64213312|128.46205297|7809|1 +638682.13077783|220651.10364359|128.62025758|7810|1 +638687.26250989|220646.56609499|128.69117433|7811|1 +638692.29616497|220642.11460392|128.7203633|7812|1 +638697.42657051|220637.5778629|128.76639779|7813|1 +638702.55723272|220633.04123925|128.83759359|7814|1 +638707.63807277|220628.54741905|128.82205032|7815|1 +638712.76696307|220624.01087455|128.78723377|7816|1 +638717.89594481|220619.47441365|128.76508624|7817|1 +638722.9789844|220614.98226651|129.0120391|7818|1 +638728.15659602|220610.40395978|129.07127282|7819|1 +638733.23634092|220605.91028885|128.99960263|7820|1 +638738.42523484|220601.48275622|140.65211468|7821|1 +638738.36540001|220601.37494834|129.06550571|7822|2 +638743.4941258|220596.83920649|129.08157918|7823|1 +638748.63166431|220592.34662841|132.77247756|7824|1 +638753.75142333|220587.76411544|128.8455001|7825|1 +638758.87747678|220583.34778783|137.30480532|7826|1 +638758.87950396|220583.27251378|132.00545307|7827|2 +638758.88078531|220583.22493484|128.65586478|7828|3 +638764.01080391|220578.68551195|128.49139077|7829|1 +638769.14153091|220574.14528764|128.31460121|7830|1 +638774.27293919|220569.60463254|128.15049927|7831|1 +638779.40593295|220565.06057196|127.84286162|7832|1 +638784.53982169|220560.51623533|127.57292407|7833|1 +638789.72368447|220555.92707296|127.25453356|7834|1 +638794.8122597|220551.42161635|126.90243342|7835|1 +638799.99897128|220546.8296705|126.56597886|7836|1 +638805.13999948|220542.27658233|126.12207949|7837|1 +638810.23357773|220537.76608001|125.72657726|7838|1 +638815.42569558|220533.16856901|125.33496317|7839|1 +638820.56961951|220528.61472768|125.02298159|7840|1 +638825.71374|220524.06166403|124.77995408|7841|1 +638830.86287896|220519.50156426|124.34980273|7842|1 +638836.00444916|220514.94701356|123.83819572|7843|1 +638841.15688941|220510.38407507|123.41482537|7844|1 +638846.35898701|220505.77772921|123.02562974|7845|1 +638851.46579006|220501.25558373|122.63764335|7846|1 +638856.62430143|220496.68709698|122.20269228|7847|1 +638861.82792688|220492.08147554|121.96460401|7848|1 +638866.99067346|220487.50906849|121.51793271|7849|1 +638872.15672704|220482.93321405|121.03414732|7850|1 +638877.32244724|220478.35877931|120.63186409|7851|1 +638882.49910165|220473.77104764|119.96783818|7852|1 +638887.67248018|220469.18863023|119.47894611|7853|1 +638892.89932758|220464.55806976|118.92557413|7854|1 +638898.03027352|220460.01265061|118.40256315|7855|1 +638903.20645871|220455.42938979|118.03342215|7856|1 +638908.4354313|220450.79885603|117.61891639|7857|1 +638913.5549093|220446.26977911|117.54583233|7858|1 +638918.76944138|220441.65796666|117.56264064|7859|1 +638923.93662114|220437.08792626|117.57556081|7860|1 +638929.11400106|220432.50619184|117.39558074|7861|1 +638934.29469564|220427.92109121|117.18483969|7862|1 +638939.48192812|220423.32891967|116.88105298|7863|1 +638944.67171969|220418.73439921|116.57149916|7864|1 +638949.86509891|220414.13636221|116.23750027|7865|1 +638955.05424364|220409.54378899|116.02859168|7866|1 +638960.24368558|220404.95013132|115.84509553|7867|1 +638965.42937928|220400.35850509|115.74931514|7868|1 +638970.61012308|220395.77288915|115.77231843|7869|1 +638975.76247014|220391.20787034|115.47255939|7870|1 +638980.96664291|220386.59697264|115.16646583|7871|1 +638986.1201225|220382.03181257|114.92969841|7872|1 +638991.32458003|220377.42169299|114.69929341|7873|1 +638996.53062514|220372.81033567|114.4819016|7874|1 +639001.69697222|220368.23258676|114.15927878|7875|1 +639006.91005632|220363.61457988|113.91186083|7876|1 +639012.0898258|220359.02332588|113.47197982|7877|1 +639017.26702465|220354.43546038|113.11338704|7878|1 +639022.49798879|220349.79974722|112.7309259|7879|1 +639027.68557367|220345.20183749|112.31121115|7880|1 +639032.87674904|220340.60066607|111.8857851|7881|1 +639038.06078645|220336.00769447|111.59755095|7882|1 +639043.25195723|220331.40763578|111.25388752|7883|1 +639043.18179616|220327.65290338|111.26137545|7884|1 +639037.98588432|220332.24557048|111.57616617|7885|1 +639032.74703134|220336.87560449|111.84713622|7886|1 +639027.55374524|220341.46659415|112.20652895|7887|1 +639022.30990269|220346.10315189|112.62797384|7888|1 +639017.07183862|220350.73409643|113.01286274|7889|1 +639011.88587145|220355.31901874|113.39881205|7890|1 +639006.65087559|220359.94790097|113.82852622|7891|1 +639001.42635815|220364.56598293|114.14697253|7892|1 +638996.25681647|220369.1347861|114.41626826|7893|1 +638990.99100547|220373.78889371|114.69865159|7894|1 +638985.82654986|220378.35323747|114.9689147|7895|1 +638980.61896966|220382.95494796|115.18387876|7896|1 +638975.40633442|220387.56287296|115.52389589|7897|1 +638970.19955446|220392.16486396|115.80845584|7898|1 +638965.00993424|220396.74806628|115.83201724|7899|1 +638959.81992961|220401.33214119|115.89339966|7900|1 +638954.62399835|220405.92346723|116.09850383|7901|1 +638949.4781094|220410.47081313|116.32167205|7902|1 +638944.23493584|220415.10464743|116.57870804|7903|1 +638939.08712301|220419.65545697|116.92722699|7904|1 +638933.89819107|220424.24109381|117.16527806|7905|1 +638928.70928202|220428.82733339|117.44741954|7906|1 +638923.57558555|220433.36344963|117.63476662|7907|1 +638918.39788373|220437.93755837|117.75555018|7908|1 +638913.22762368|220442.50319649|117.73952322|7909|1 +638908.10559868|220447.02678019|117.76540077|7910|1 +638902.92566255|220451.60524953|118.05557898|7911|1 +638897.79388231|220456.14208192|118.41245094|7912|1 +638892.61475351|220460.72108125|118.79066117|7913|1 +638887.4253945|220465.31399754|119.518674|7914|1 +638882.30063533|220469.84457317|119.8700393|7915|1 +638877.16930135|220474.38461994|120.48364959|7916|1 +638871.99937396|220478.95554344|120.86318997|7917|1 +638866.87474707|220483.48890242|121.42106401|7918|1 +638861.70729477|220488.05853386|121.86362393|7919|1 +638856.54859071|220492.61706175|122.06306332|7920|1 +638851.43529161|220497.13792739|122.44044569|7921|1 +638846.27278105|220501.70375285|122.92133823|7922|1 +638841.16361604|220506.22082027|123.28650736|7923|1 +638836.00773369|220510.77916056|123.64925804|7924|1 +638830.33005615|220515.79935543|124.04953208|7925|1 +638825.75655555|220519.84496379|124.56570626|7926|1 +638820.60648975|220524.39751018|124.87918543|7927|1 +638815.45822143|220528.94822068|125.17418196|7928|1 +638810.35879609|220533.45674027|125.54002083|7929|1 +638805.21182063|220538.00798603|125.95408941|7930|1 +638800.11516995|220542.51450865|126.35130317|7931|1 +638795.02002673|220547.01979854|126.75476772|7932|1 +638789.87916617|220551.56376142|127.03187694|7933|1 +638784.78771527|220556.0644189|127.33546832|7934|1 +638779.64905857|220560.60680198|127.63787837|7935|1 +638774.56015871|220565.10479079|127.9102995|7936|1 +638769.47226896|220569.60206973|128.1951664|7937|1 +638764.33730954|220574.13931195|128.36047757|7938|1 +638759.2514338|220578.63344125|128.54540619|7939|1 +638754.16627147|220583.12703279|128.73652979|7940|1 +638749.08166027|220587.61902048|128.84635586|7941|1 +638743.99740553|220592.11035169|128.93113225|7942|1 +638738.91334565|220596.60108872|128.98459886|7943|1 +638733.87600929|220601.15960421|136.88740671|7944|1 +638733.82898208|220601.09088757|128.95049855|7945|2 +638728.74469319|220605.58088696|128.93509481|7946|1 +638718.57545641|220614.56081058|128.85410424|7947|1 +638713.48936829|220619.05060458|128.7072664|7948|1 +638708.40501412|220623.54130949|128.73536707|7949|1 +638703.31989137|220628.0320084|128.71340557|7950|1 +638698.28447353|220632.48014705|128.79062892|7951|1 +638693.15124128|220637.01351238|128.78178293|7952|1 +638688.11356726|220641.46142254|128.70866167|7953|1 +638683.02667128|220645.95261098|128.61760658|7954|1 +638677.93908519|220650.44433112|128.52024488|7955|1 +638672.85018725|220654.93678222|128.39160131|7956|1 +638667.76056093|220659.42988903|128.26291124|7957|1 +638662.66891333|220663.92409698|128.08420551|7958|1 +638657.62670234|220668.3756233|127.97875127|7959|1 +638652.48190211|220672.91538727|127.69547497|7960|1 +638647.43093884|220677.37136758|127.35235104|7961|1 +638642.33392865|220681.8698297|127.13597312|7962|1 +638637.2295465|220686.37212831|126.72596012|7963|1 +638632.18390761|220690.82749769|126.67593516|7964|1 +638627.09321287|220695.32439347|126.74672168|7965|1 +638622.04005275|220699.78408578|126.52770205|7966|1 +638616.97996982|220704.24782258|126.15860757|7967|1 +638611.87797293|220708.75160843|126.00436551|7968|1 +638606.82066262|220713.21499025|125.78483428|7969|1 +638601.76297875|220717.67905561|125.59008299|7970|1 +638596.70311349|220722.14479581|125.37641189|7971|1 +638591.64648489|220726.60915514|125.26867871|7972|1 +638586.53596176|220731.11991398|125.07046716|7973|1 +638581.53514157|220735.53784498|125.17118679|7974|1 +638576.48913548|220739.9969063|125.35614331|7975|1 +638566.46211534|220748.86246804|126.07716121|7976|1 +638561.42509147|220753.31628953|126.45466451|7977|1 +638556.48910465|220757.68179843|126.90488909|7978|1 +638551.44680454|220762.13899224|127.18806307|7979|1 +638546.40232907|220766.59768188|127.43982495|7980|1 +638541.42048714|220771.00449031|127.94260457|7981|1 +638536.43801866|220775.41167797|128.43239891|7982|1 +638531.44804281|220779.82377297|128.79701924|7983|1 +638526.40708356|220784.28050009|129.12849734|7984|1 +638521.46275088|220788.65174522|129.45627334|7985|1 +638516.4828909|220793.05733026|129.99395323|7986|1 +638511.48415802|220797.47562214|130.24453378|7987|1 +638506.49221422|220801.88946901|130.60681937|7988|1 +638501.49635417|220806.30609193|130.91882885|7989|1 +638496.54509218|220810.68260466|131.18137149|7990|1 +638491.54692037|220815.10110284|131.47995852|7991|1 +638486.6337266|220819.44223636|131.61738296|7992|1 +638481.62686148|220823.86712401|131.82157556|7993|1 +638476.66486809|220828.25183019|131.98837501|7994|1 +638471.69736718|220832.64062864|132.09858246|7995|1 +638466.73042102|220837.02928343|132.23313265|7996|1 +638461.80398264|220841.38091037|132.28001361|7997|1 +638456.78793463|220845.80503166|131.8411651|7998|1 +638451.85810964|220850.1597422|131.89296669|7999|1 +638446.93906676|220854.51511478|132.67803662|8000|1 +638447.61915119|220850.93022844|132.58871166|8001|1 +638452.58489399|220846.51838754|131.86385213|8002|1 +638457.52154723|220842.1440876|131.99080278|8003|1 +638462.56347832|220837.67836191|132.24152286|8004|1 +638467.53537573|220833.2712042|132.24926194|8005|1 +638472.53675231|220828.83475972|132.02650299|8006|1 +638477.50177732|220824.4329613|131.98350088|8007|1 +638482.45610988|220820.03887603|131.81546429|8008|1 +638487.50182146|220815.56298443|131.57955264|8009|1 +638492.4565651|220811.16901821|131.4479046|8010|1 +638497.49417182|220806.69906189|131.12425859|8011|1 +638502.48618742|220802.27019325|130.85553027|8012|1 +638507.47409438|220797.84424494|130.53653515|8013|1 +638512.51011872|220793.37572894|130.21830277|8014|1 +638517.496832|220788.95080842|129.8985449|8015|1 +638522.52079165|220784.49051206|129.4052624|8016|1 +638527.55463888|220780.02370866|129.07377499|8017|1 +638532.58877715|220775.55678987|128.75451942|8018|1 +638537.61626552|220771.09427814|128.32904687|8019|1 +638542.64077454|220766.6336939|127.85343774|8020|1 +638547.66950019|220762.17039762|127.45237304|8021|1 +638552.75292185|220757.66029362|127.16545975|8022|1 +638557.78094041|220753.19750184|126.75777219|8023|1 +638562.85956027|220748.69049389|126.38961718|8024|1 +638567.88873531|220744.22700181|126.00645841|8025|1 +638572.9704679|220739.71996483|125.70055089|8026|1 +638578.04800375|220735.21683301|125.30729969|8027|1 +638583.14231685|220730.70387547|125.275962|8028|1 +638588.2410424|220726.18865024|125.36323127|8029|1 +638593.34426712|220721.67125114|125.58162768|8030|1 +638598.44256057|220717.15707891|125.7189219|8031|1 +638603.54162398|220712.64290784|125.90619456|8032|1 +638608.5894593|220708.17356848|126.05881811|8033|1 +638613.73900408|220703.61640254|126.3682324|8034|1 +638618.83692264|220699.10433715|126.63676538|8035|1 +638623.93005892|220694.59518905|126.81163878|8036|1 +638629.0167187|220690.08958542|126.83037256|8037|1 +638634.15123444|220685.54168678|126.853134|8038|1 +638639.24460642|220681.0337706|127.1342895|8039|1 +638644.38849435|220676.48276887|127.53216368|8040|1 +638649.47719914|220671.97808754|127.75096007|8041|1 +638654.5647643|220667.47440884|127.96973785|8042|1 +638659.69974792|220662.92882341|128.19312931|8043|1 +638664.78209563|220658.42799374|128.28701214|8044|1 +638669.91211628|220653.88495506|128.3794718|8045|1 +638675.04187205|220649.34239818|128.49086987|8046|1 +638680.17107292|220644.80041279|128.60871408|8047|1 +638685.29867825|220640.2591345|128.67673797|8048|1 +638690.42579173|220635.71828153|128.74493859|8049|1 +638695.50358529|220631.22063316|128.78284333|8050|1 +638700.67679045|220626.63722716|128.72563741|8051|1 +638705.80130688|220622.09655747|128.64435849|8052|1 +638710.92668833|220617.55606793|128.63200573|8053|1 +638716.05397178|220613.0165784|128.8135485|8054|1 +638721.17965246|220608.47692998|128.88277232|8055|1 +638726.30456566|220603.93699856|128.88341414|8056|1 +638731.42952941|220599.39718614|128.89672498|8057|1 +638736.55410924|220594.856661|128.83521233|8058|1 +638741.67884138|220590.31573051|128.75511474|8059|1 +638746.80407307|220585.77573441|128.77517867|8060|1 +638751.92929186|220581.2340893|128.67666355|8061|1 +638757.05500995|220576.69069647|128.48459117|8062|1 +638762.18132151|220572.14754695|128.34894337|8063|1 +638767.26025729|220567.64463991|128.09383285|8064|1 +638772.43665786|220563.05629534|127.89696075|8065|1 +638777.56625364|220558.50768824|127.58065384|8066|1 +638782.64821554|220554.00198648|127.31951577|8067|1 +638787.77925868|220549.45347117|127.10346341|8068|1 +638792.91305979|220544.90016118|126.71891867|8069|1 +638798.04879955|220540.34460552|126.29711102|8070|1 +638803.18435236|220535.79111662|126.01297895|8071|1 +638808.32393013|220531.23144857|125.54167655|8072|1 +638813.4637491|220526.67295106|125.17056357|8073|1 +638818.6031001|220522.11650841|124.91838311|8074|1 +638823.69777163|220517.59773628|124.53305703|8075|1 +638828.83212412|220513.0436027|124.13083891|8076|1 +638833.97813948|220508.47949834|123.75435881|8077|1 +638839.12490351|220503.91533067|123.42186681|8078|1 +638844.27606445|220499.34570165|122.97726051|8079|1 +638849.42907268|220494.7745132|122.53922125|8080|1 +638854.53529301|220490.24485251|122.11102327|8081|1 +638859.68792373|220485.67615351|121.82956082|8082|1 +638864.83998032|220481.10899562|121.62330323|8083|1 +638870.00698107|220476.5226199|120.98668965|8084|1 +638875.16732818|220471.94611162|120.63754748|8085|1 +638880.28919076|220467.40030651|120.0480939|8086|1 +638885.45645699|220462.81662234|119.62467704|8087|1 +638890.63100295|220458.22458166|119.06440314|8088|1 +638895.75585113|220453.67783887|118.60046774|8089|1 +638900.87593673|220449.13781843|118.31759142|8090|1 +638906.04393383|220444.5563179|118.10137163|8091|1 +638911.15938|220440.02315768|118.01845559|8092|1 +638916.32099653|220435.45040377|118.02733879|8093|1 +638921.44318468|220430.91004479|117.85749765|8094|1 +638926.56683459|220426.36846527|117.69403754|8095|1 +638931.69822194|220421.81830356|117.40609175|8096|1 +638936.82837771|220417.2701679|117.18691399|8097|1 +638941.96525664|220412.71477793|116.87445802|8098|1 +638947.15103856|220408.11669735|116.6047251|8099|1 +638952.23725298|220403.60778121|116.41223414|8100|1 +638957.37411348|220399.05523301|116.22501729|8101|1 +638962.51412115|220394.50043616|116.0192992|8102|1 +638967.5998038|220389.99552916|115.94523846|8103|1 +638972.73584514|220385.44613034|115.8768518|8104|1 +638977.89058198|220380.87628579|115.52859329|8105|1 +638983.0490934|220376.30283868|115.16199168|8106|1 +638988.14564243|220371.78767616|115.0447986|8107|1 +638993.26064918|220367.25262643|114.67257871|8108|1 +638998.42211065|220362.67758719|114.38143311|8109|1 +639003.59118781|220358.09476933|114.01601282|8110|1 +639008.71065376|220353.55652595|113.70044076|8111|1 +639013.89014231|220348.96353217|113.26734074|8112|1 +639019.02233004|220344.41264118|112.85278847|8113|1 +639024.1462751|220339.87119338|112.59383632|8114|1 +639029.28300052|220335.31653223|112.1983806|8115|1 +639034.46674354|220330.72122215|111.87242775|8116|1 +639039.6004882|220326.17082671|111.59559758|8117|1 +639044.74092349|220321.61381147|111.26933777|8118|1 +639044.30456818|220318.59336244|111.22124759|8119|1 +639039.11066899|220323.18885148|111.53769402|8120|1 +639033.87017897|220327.82569555|111.85991686|8121|1 +639028.63036585|220332.46239087|112.21394247|8122|1 +639023.39494758|220337.0949588|112.55006216|8123|1 +639018.16736447|220341.71966061|112.81852073|8124|1 +639012.93162444|220346.35375754|113.24307241|8125|1 +639007.70584101|220350.97768547|113.56885783|8126|1 +639002.42800897|220355.64892538|113.98215436|8127|1 +638997.20386564|220360.27230308|114.37158253|8128|1 +638991.98464994|220364.89090826|114.73055668|8129|1 +638986.72515385|220369.54391779|114.99697816|8130|1 +638981.51484662|220374.15389706|115.30128578|8131|1 +638976.2604304|220378.80245226|115.56923275|8132|1 +638970.99969598|220383.45868883|115.98740341|8133|1 +638965.81503892|220388.04171502|115.98232464|8134|1 +638960.57786069|220392.67257554|116.07188214|8135|1 +638955.38055537|220397.27088774|116.36056277|8136|1 +638950.1403777|220401.90625233|116.58225201|8137|1 +638944.90139211|220406.54083566|116.82335406|8138|1 +638939.66427515|220411.17387694|117.07139523|8139|1 +638934.48182959|220415.75747166|117.24397108|8140|1 +638929.24711011|220420.38894694|117.53067974|8141|1 +638924.01718194|220425.01541985|117.76196841|8142|1 +638918.78982478|220429.63946957|117.98146243|8143|1 +638913.56738521|220434.25823703|118.13301627|8144|1 +638908.34954143|220438.87200657|118.21659273|8145|1 +638903.1341982|220443.48323118|118.27582644|8146|1 +638897.91608928|220448.09839515|118.44167712|8147|1 +638892.69633071|220452.71624686|118.69547609|8148|1 +638887.51536327|220457.3042159|119.27182346|8149|1 +638882.29383597|220461.92599633|119.69521241|8150|1 +638877.07122105|220466.55014579|120.21907916|8151|1 +638871.85412599|220471.16813342|120.64995605|8152|1 +638866.68618194|220475.74334924|121.13463441|8153|1 +638861.4702394|220480.36190814|121.67895576|8154|1 +638856.26461368|220484.96746138|121.94295878|8155|1 +638851.10908678|220489.52871204|122.21039415|8156|1 +638845.9030839|220494.13662648|122.61896538|8157|1 +638840.69875591|220498.74324967|123.0405684|8158|1 +638835.54329934|220503.30759188|123.53393462|8159|1 +638830.34585809|220507.90625272|123.81910848|8160|1 +638825.20649079|220512.455355|124.23873952|8161|1 +638820.05943916|220517.01006069|124.57065481|8162|1 +638814.86384603|220521.60911832|125.00071314|8163|1 +638809.72147895|220526.15841102|125.23954555|8164|1 +638804.57762427|220530.71171471|125.67228279|8165|1 +638799.38789609|220535.30477112|126.04109822|8166|1 +638794.24831715|220539.85319089|126.39320767|8167|1 +638789.10956644|220544.40176138|126.80802969|8168|1 +638783.9248625|220548.98964101|127.12176931|8169|1 +638778.79017532|220553.53256337|127.3871862|8170|1 +638773.65669612|220558.07417578|127.63404604|8171|1 +638768.52431084|220562.61457398|127.86235814|8172|1 +638763.44118528|220567.11154623|128.10421363|8173|1 +638758.26220688|220571.69374236|128.3695468|8174|1 +638753.18096565|220576.18621575|128.40529353|8175|1 +638748.05185985|220580.72358489|128.62171796|8176|1 +638742.97148205|220585.21574793|128.68870005|8177|1 +638737.842776|220589.74976571|128.68662576|8178|1 +638732.76320553|220594.24210051|128.81607858|8179|1 +638727.63534828|220598.77651116|128.89545064|8180|1 +638722.55486798|220603.26690459|128.82489666|8181|1 +638717.47393722|220607.75736059|128.7292744|8182|1 +638712.39268937|220612.24810715|128.63358703|8183|1 +638707.3601285|220616.69651295|128.59360799|8184|1 +638702.27830566|220621.18787313|128.50390166|8185|1 +638697.19990534|220625.67976036|128.67035695|8186|1 +638692.16792779|220630.12854295|128.69218822|8187|1 +638687.0880235|220634.621165|128.71463341|8188|1 +638682.00567431|220639.11478328|128.61203481|8189|1 +638676.97262634|220643.56577315|128.58319931|8190|1 +638671.9375438|220648.01753444|128.47909382|8191|1 +638666.90152937|220652.46995224|128.3621984|8192|1 +638661.81722472|220656.9656028|128.27778478|8193|1 +638656.78044399|220661.41906352|128.18542744|8194|1 +638651.74261581|220665.87329473|128.08030806|8195|1 +638646.69776218|220670.3307239|127.75627138|8196|1 +638641.65729471|220674.78695568|127.62563723|8197|1 +638636.60809739|220679.24747035|127.24488762|8198|1 +638631.56338877|220683.70661412|127.05128045|8199|1 +638626.52007552|220688.165569|126.93238514|8200|1 +638621.47688137|220692.62485586|126.84447405|8201|1 +638616.48271871|220697.04130107|126.79745357|8202|1 +638611.43483247|220701.50372506|126.63400276|8203|1 +638606.37860092|220705.97104073|126.28925102|8204|1 +638601.37638719|220710.39298933|126.12245156|8205|1 +638596.32401292|220714.859241|125.94576432|8206|1 +638591.31947878|220719.28334841|125.78443431|8207|1 +638586.26273518|220723.752968|125.56978652|8208|1 +638581.3081389|220728.13410829|125.4979489|8209|1 +638576.26368124|220732.59727187|125.60094747|8210|1 +638571.27114521|220737.01562029|125.78744808|8211|1 +638566.28247914|220741.43175322|126.06082729|8212|1 +638561.29800419|220745.84539346|126.42104789|8213|1 +638556.36506245|220750.21420763|126.83917204|8214|1 +638551.38209145|220754.62695662|127.22945597|8215|1 +638546.43937454|220759.00201405|127.47159051|8216|1 +638541.460232|220763.41241807|127.93560033|8217|1 +638536.48221088|220767.82208939|128.41778582|8218|1 +638531.54697427|220772.19251834|128.80140038|8219|1 +638526.60236052|220776.56918143|129.03468893|8220|1 +638521.66444813|220780.94155284|129.38571937|8221|1 +638516.68855037|220785.34996423|129.90919544|8222|1 +638511.79548935|220789.68194468|130.21028464|8223|1 +638506.80235852|220794.10209033|130.4771061|8224|1 +638501.86395904|220798.47516323|130.84413559|8225|1 +638496.91775787|220802.85367746|131.10460393|8226|1 +638491.97163174|220807.23230449|131.37687623|8227|1 +638487.01934049|220811.61535944|131.57377623|8228|1 +638482.06464717|220816.00028646|131.75138435|8229|1 +638477.15756149|220820.34305438|131.92878783|8230|1 +638472.19588308|220824.73331113|132.04284621|8231|1 +638467.28447063|220829.07957261|132.19383265|8232|1 +638462.31913049|220833.47290664|132.29418021|8233|1 +638457.37379512|220837.8437817|132.05182243|8234|1 +638452.38740559|220842.25275016|131.93336431|8235|1 +638442.58190953|220850.93511364|132.60194809|8236|1 +638439.58972481|220851.23355944|132.67559025|8237|1 +638444.60580733|220846.78281229|132.58474911|8238|1 +638449.47966198|220842.4508924|131.96550194|8239|1 +638454.45099646|220838.04088856|131.95472118|8240|1 +638459.44068845|220833.6180853|132.19851144|8241|1 +638464.45886861|220829.16687071|132.21178508|8242|1 +638469.4161281|220824.76776453|132.08763427|8243|1 +638474.42121769|220820.32633735|131.96949241|8244|1 +638479.37441314|220815.93054643|131.82563113|8245|1 +638484.37418106|220811.49329654|131.66932408|8246|1 +638489.37408657|220807.05616422|131.53132293|8247|1 +638494.31674863|220802.66829912|131.28624902|8248|1 +638499.35084211|220798.19837864|130.96767248|8249|1 +638504.33849789|220793.77018709|130.69142833|8250|1 +638509.32339102|220789.34400589|130.38361394|8251|1 +638514.35516135|220784.87602172|130.05794015|8252|1 +638519.32327936|220780.46127184|129.5000289|8253|1 +638524.35547862|220775.99313789|129.19246566|8254|1 +638529.33811068|220771.56881683|128.87677267|8255|1 +638534.41872676|220767.05793725|128.58285514|8256|1 +638539.44377007|220762.59474623|128.17481411|8257|1 +638544.41339107|220758.17901994|127.64600812|8258|1 +638549.49448116|220753.6680299|127.37662868|8259|1 +638554.57015125|220749.16055341|127.01368267|8260|1 +638559.59409724|220744.69811699|126.59219127|8261|1 +638564.66892608|220740.19119799|126.21657624|8262|1 +638569.70092571|220735.720876|125.95677762|8263|1 +638574.78362187|220731.20574744|125.74935731|8264|1 +638579.87595195|220726.68505526|125.76037061|8265|1 +638584.96558267|220722.16623294|125.73396287|8266|1 +638590.11054329|220717.60078422|125.885433|8267|1 +638595.20816936|220713.07809938|126.09642519|8268|1 +638600.30382119|220708.55698344|126.29497161|8269|1 +638605.39684795|220704.03775696|126.46233847|8270|1 +638610.49593929|220699.51579202|126.82331251|8271|1 +638615.63360594|220694.95659963|126.96320192|8272|1 +638620.71739453|220690.44347671|126.9808846|8273|1 +638625.80358613|220685.92949869|127.09224547|8274|1 +638630.93793867|220681.3731272|127.22636778|8275|1 +638636.07340203|220676.81671237|127.42943486|8276|1 +638641.16268149|220672.30278285|127.74714634|8277|1 +638646.29566436|220667.74854498|127.95056689|8278|1 +638651.37853315|220663.23840175|128.13095624|8279|1 +638656.50840626|220658.68638525|128.29721619|8280|1 +638661.63523256|220654.13587356|128.37620687|8281|1 +638666.76139342|220649.58593408|128.4554022|8282|1 +638671.88772789|220645.03634989|128.57227902|8283|1 +638677.01286391|220640.4874729|128.664348|8284|1 +638682.08907972|220635.98196879|128.75762622|8285|1 +638687.21166455|220631.43422732|128.76872324|8286|1 +638692.33345389|220626.88675457|128.74875232|8287|1 +638697.45396082|220622.33903651|128.62896405|8288|1 +638702.57606186|220617.79135525|128.61559739|8289|1 +638707.74702724|220613.20111573|128.65822743|8290|1 +638712.86934247|220608.65391301|128.69532292|8291|1 +638717.99379261|220604.10839767|128.99506336|8292|1 +638723.16202911|220599.51739176|128.80747444|8293|1 +638728.28372453|220594.97054264|128.83271016|8294|1 +638733.40482483|220590.42266284|128.74564553|8295|1 +638738.57468152|220585.83209202|128.69654145|8296|1 +638743.69644759|220581.28438065|128.66618045|8297|1 +638748.8666806|220576.69182823|128.49905544|8298|1 +638753.98908491|220572.14327834|128.45043505|8299|1 +638759.11219983|220567.59170309|128.22700638|8300|1 +638764.2845269|220562.99641857|127.99843383|8301|1 +638769.40933031|220558.4434068|127.78176755|8302|1 +638774.5352241|220553.88899658|127.53405194|8303|1 +638779.70995742|220549.29224389|127.35654614|8304|1 +638784.8386158|220544.73416462|127.02188683|8305|1 +638789.96859673|220540.17490917|126.68745076|8306|1 +638795.1492086|220535.56976004|126.27989343|8307|1 +638800.28237708|220531.00732151|125.9210588|8308|1 +638805.41759083|220526.44254829|125.52497986|8309|1 +638810.55171668|220521.88103694|125.29782118|8310|1 +638815.6910868|220517.31170738|124.8397831|8311|1 +638820.83020642|220512.74413215|124.49445465|8312|1 +638826.00874502|220508.14145582|124.13871752|8313|1 +638831.10024902|220503.61732357|123.8852255|8314|1 +638836.24803862|220499.03946729|123.35333133|8315|1 +638841.39667519|220494.46163227|122.87795474|8316|1 +638846.54337646|220489.88763949|122.55898753|8317|1 +638851.69364124|220485.30953468|122.17166156|8318|1 +638856.84529341|220480.73045419|121.80337632|8319|1 +638861.94628552|220476.19811193|121.56956687|8320|1 +638867.15258079|220471.56951106|121.12398387|8321|1 +638872.31528073|220466.97838773|120.59446165|8322|1 +638877.42856069|220462.4323905|120.16162209|8323|1 +638882.64165289|220457.79774477|119.71753668|8324|1 +638887.76009703|220453.24690196|119.26653074|8325|1 +638892.93245065|220448.64719433|118.7384968|8326|1 +638898.10244623|220444.05128593|118.33564617|8327|1 +638903.20086867|220439.52722478|118.54651744|8328|1 +638908.36109346|220434.94431886|118.46236427|8329|1 +638913.5268859|220430.35519367|118.28505381|8330|1 +638918.59490043|220425.85338831|118.15522891|8331|1 +638923.76648321|220421.25842649|117.92860043|8332|1 +638928.94212463|220416.65926298|117.6587745|8333|1 +638934.02316949|220412.14373555|117.37343321|8334|1 +638939.19960751|220407.54479668|117.1728218|8335|1 +638944.32692541|220402.99000885|117.01739841|8336|1 +638949.46013043|220398.42896874|116.7874492|8337|1 +638954.5958792|220393.86328722|116.53284098|8338|1 +638959.68970687|220389.33320189|116.1920797|8339|1 +638964.82091102|220384.77329971|116.09357389|8340|1 +638969.9021414|220380.25837829|116.04562323|8341|1 +638975.00089934|220375.72432013|115.73624615|8342|1 +638980.15030532|220371.1455128|115.4391195|8343|1 +638985.25603619|220366.60482429|115.09893493|8344|1 +638990.41055565|220362.02147177|114.8023943|8345|1 +638995.52155696|220357.47608982|114.46259111|8346|1 +639000.63777349|220352.92555501|114.08563662|8347|1 +639005.75598191|220348.37342066|113.72129534|8348|1 +639010.87877331|220343.81687152|113.33227644|8349|1 +639016.00051618|220339.2620094|112.99941238|8350|1 +639021.12282152|220334.70705844|112.69783948|8351|1 +639026.19885091|220330.19311512|112.39568058|8352|1 +639031.37579048|220325.58972926|112.09535412|8353|1 +639036.46269028|220321.06518813|111.72510621|8354|1 +639041.59685466|220316.49959761|111.4181662|8355|1 +639046.68039288|220311.979633|111.16607875|8356|1 +639044.25012366|220310.54192963|111.2993267|8357|1 +639039.01203998|220315.18798836|111.58752364|8358|1 +639033.77547468|220319.83297517|111.89511478|8359|1 +639028.58718186|220324.43584167|112.25404243|8360|1 +639023.35427132|220329.07804579|112.59407817|8361|1 +639018.0802737|220333.75578647|112.86582026|8362|1 +639012.89913164|220338.35270307|113.25144401|8363|1 +639007.63080268|220343.02545623|113.52481391|8364|1 +639002.35672077|220347.70503472|113.92346945|8365|1 +638997.13629311|220352.33669291|114.29833104|8366|1 +638991.87388472|220357.00476894|114.61162417|8367|1 +638986.65756567|220361.63316153|115.01279118|8368|1 +638981.39912164|220366.29809919|115.35259438|8369|1 +638976.14796811|220370.95557117|115.61856937|8370|1 +638970.88889733|220375.62247454|116.05965031|8371|1 +638965.70377137|220380.21858169|116.12121877|8372|1 +638960.41883718|220384.90422446|116.25317377|8373|1 +638955.17545446|220389.5553069|116.55343511|8374|1 +638949.98435824|220394.15974584|116.83482315|8375|1 +638944.70220042|220398.8439318|117.03788093|8376|1 +638939.47224801|220403.48145649|117.2157774|8377|1 +638934.24428081|220408.11723559|117.39437151|8378|1 +638928.96646016|220412.79814694|117.63743623|8379|1 +638923.73895102|220417.43458722|117.8923235|8380|1 +638918.5104096|220422.07290123|118.21648111|8381|1 +638913.24280739|220426.74361243|118.37478804|8382|1 +638908.02278495|220431.37304219|118.60065378|8383|1 +638902.81241067|220435.99136935|118.6400468|8384|1 +638897.55940224|220440.64595373|118.56371642|8385|1 +638892.34648349|220445.26836521|118.73539931|8386|1 +638887.07469816|220449.9474203|119.22829114|8387|1 +638881.85568596|220454.57903754|119.67586472|8388|1 +638876.63816357|220459.20969314|120.14903678|8389|1 +638871.37807518|220463.8766357|120.51331295|8390|1 +638866.16258528|220468.50663686|121.06901038|8391|1 +638860.9012117|220473.17732753|121.62213121|8392|1 +638855.70332457|220477.78576465|121.74220784|8393|1 +638850.49936138|220482.40329104|122.13126394|8394|1 +638845.24895174|220487.06200352|122.51806901|8395|1 +638839.99972596|220491.72011728|122.9368908|8396|1 +638834.84958378|220496.29022656|123.34920134|8397|1 +638829.60280639|220500.94714961|123.8380562|8398|1 +638824.36182368|220505.59646615|124.14658682|8399|1 +638819.22975762|220510.14914101|124.45455003|8400|1 +638813.99112983|220514.79666439|124.78303296|8401|1 +638808.80103577|220519.40236515|125.20168732|8402|1 +638803.61334758|220524.00534598|125.57712562|8403|1 +638798.42810071|220528.60532578|125.89057688|8404|1 +638793.24299101|220533.20665369|126.31071952|8405|1 +638788.06046206|220537.80451111|126.64386264|8406|1 +638782.87954453|220542.40061294|126.95249558|8407|1 +638777.70014551|220546.99495249|127.23033964|8408|1 +638772.522143|220551.58755935|127.47114403|8409|1 +638767.39355508|220556.13617642|127.70090721|8410|1 +638762.21742533|220560.72757921|127.97370971|8411|1 +638757.04254366|220565.31651868|128.1469739|8412|1 +638751.91666997|220569.86276798|128.37755563|8413|1 +638746.79153841|220574.40631871|128.45834156|8414|1 +638741.61853977|220578.99277579|128.57014891|8415|1 +638736.49434838|220583.53611702|128.69514618|8416|1 +638731.36990721|220588.07772515|128.67658914|8417|1 +638726.24609552|220592.6201552|128.75821223|8418|1 +638721.12168323|220597.161591|128.72749776|8419|1 +638715.99711946|220601.70308441|128.69071854|8420|1 +638710.92065981|220606.20181751|128.6475583|8421|1 +638705.79620376|220610.74375457|128.64848847|8422|1 +638700.71994792|220615.24292479|128.64906518|8423|1 +638695.6413748|220619.74210431|128.49959494|8424|1 +638690.51770607|220624.2845732|128.58831528|8425|1 +638685.4426359|220628.7838311|128.67004999|8426|1 +638680.36663196|220633.28095568|128.71423343|8427|1 +638675.28721626|220637.77884154|128.59587763|8428|1 +638670.25692897|220642.23407115|128.5449597|8429|1 +638665.17700023|220646.73286478|128.45761602|8430|1 +638660.14535027|220651.18914919|128.39373142|8431|1 +638655.11453586|220655.6454644|128.3857877|8432|1 +638650.0309345|220660.14660565|128.22934113|8433|1 +638644.99542416|220664.60539947|128.09601877|8434|1 +638639.95645381|220669.06607409|127.87496205|8435|1 +638634.9140186|220673.52880496|127.57870977|8436|1 +638629.92353209|220677.94754795|127.43616935|8437|1 +638624.88415598|220682.40988238|127.30794436|8438|1 +638619.89035131|220686.83107773|127.12708062|8439|1 +638614.84842082|220691.2955223|126.98576803|8440|1 +638609.85816699|220695.71571079|126.96018815|8441|1 +638604.81367508|220700.18227701|126.80579726|8442|1 +638599.81780419|220704.60617887|126.68573924|8443|1 +638594.86287165|220708.99166383|126.41239723|8444|1 +638589.81134152|220713.46346506|126.18210385|8445|1 +638584.80800959|220717.89289196|125.97958558|8446|1 +638579.81491964|220722.31674092|126.03253129|8447|1 +638574.81779711|220726.74323318|126.0163741|8448|1 +638569.87370846|220731.12423853|126.11473109|8449|1 +638564.83349433|220735.59099654|126.24477922|8450|1 +638559.94134196|220739.92724092|126.43797712|8451|1 +638554.96805219|220744.33978209|126.94379842|8452|1 +638549.9869631|220748.75719797|127.29937743|8453|1 +638545.0508857|220753.13384388|127.59416002|8454|1 +638540.12640109|220757.50311474|128.10025107|8455|1 +638535.15054521|220761.91726588|128.5538615|8456|1 +638530.21409063|220766.29433931|128.8528206|8457|1 +638525.32242684|220770.63092482|129.09658295|8458|1 +638520.3386004|220775.0505366|129.42994001|8459|1 +638515.46305346|220779.37657983|129.94630022|8460|1 +638510.52239454|220783.75688365|130.20494542|8461|1 +638505.63461241|220788.09130179|130.53882338|8462|1 +638500.69429514|220792.47164735|130.82092766|8463|1 +638495.75327561|220796.85261867|131.1023622|8464|1 +638490.8614935|220801.19016535|131.40260494|8465|1 +638485.95614806|220805.53726696|131.52137933|8466|1 +638481.05815497|220809.87947088|131.75762584|8467|1 +638476.15140627|220814.22799339|131.88718099|8468|1 +638471.24339977|220818.57763232|132.01592687|8469|1 +638466.33648092|220822.92673309|132.17496865|8470|1 +638461.47121015|220827.23784704|132.25864743|8471|1 +638456.53264139|220831.61000011|132.04894818|8472|1 +638451.65502445|220835.93053684|132.01882903|8473|1 +638446.7685513|220840.26592426|132.49790772|8474|1 +638441.90289799|220844.57831463|132.64622455|8475|1 +638436.96453219|220848.9515697|132.52671532|8476|1 +638432.1406679|220853.22626778|132.62911858|8477|1 +638427.09848493|220854.61392244|132.2580056|8478|1 +638432.0431866|220850.22184479|132.48756415|8479|1 +638436.9608311|220845.84975865|132.42433067|8480|1 +638441.93938133|220841.42585573|132.52792455|8481|1 +638446.89202641|220837.02092015|132.33879153|8482|1 +638451.78171781|220832.66965987|131.98747274|8483|1 +638456.74668562|220828.25630382|131.98369622|8484|1 +638461.77881442|220823.7868687|132.24086243|8485|1 +638466.68751968|220819.42275725|132.18616799|8486|1 +638471.68182249|220814.98071999|131.99450488|8487|1 +638476.62813089|220810.58163027|131.82688687|8488|1 +638481.62596075|220806.13753448|131.71530276|8489|1 +638486.61721205|220801.69823379|131.52863471|8490|1 +638491.60998614|220797.25807761|131.37894122|8491|1 +638496.58851636|220792.82789938|131.03576149|8492|1 +638501.52445545|220788.43688873|130.79073409|8493|1 +638506.55321027|220783.96267219|130.49135642|8494|1 +638511.52831729|220779.53513331|130.12190846|8495|1 +638516.54775329|220775.06736225|129.69108739|8496|1 +638521.52329382|220770.63965505|129.33948954|8497|1 +638526.54967917|220766.16738997|129.03270765|8498|1 +638531.57740109|220761.6943495|128.75687277|8499|1 +638536.55454572|220757.26584878|128.45396042|8500|1 +638541.56981104|220752.80100879|127.97172843|8501|1 +638546.58686249|220748.33499366|127.52038763|8502|1 +638551.6075879|220743.86663882|127.13737769|8503|1 +638556.62884853|220739.39796508|126.76657167|8504|1 +638561.65101401|220734.92884889|126.41420178|8505|1 +638566.73483111|220730.40960071|126.31997478|8506|1 +638571.77251464|220725.93222404|126.29166948|8507|1 +638576.85295218|220721.41543387|126.15990981|8508|1 +638581.93779065|220716.89626647|126.14048771|8509|1 +638586.98127987|220712.41634576|126.30525007|8510|1 +638592.07537944|220707.8926122|126.55417491|8511|1 +638597.16816278|220703.37011887|126.80937845|8512|1 +638602.25252838|220698.85268756|126.88980161|8513|1 +638607.3386961|220694.33467273|127.04515988|8514|1 +638612.41840738|220689.82040639|127.05689872|8515|1 +638617.55265381|220685.2603956|127.26601195|8516|1 +638622.63435767|220680.74587749|127.39026508|8517|1 +638627.71503945|220676.23225342|127.51449031|8518|1 +638632.84457136|220671.67587905|127.68658247|8519|1 +638637.97375116|220667.12015122|127.88389175|8520|1 +638643.05439994|220662.60797602|128.11448279|8521|1 +638648.18014023|220658.05467947|128.26837138|8522|1 +638653.30494132|220653.50220614|128.42245531|8523|1 +638658.37739085|220648.9944424|128.4470213|8524|1 +638663.49704767|220644.4443703|128.44516094|8525|1 +638668.61856804|220639.89408998|128.54971291|8526|1 +638673.74017308|220635.3442379|128.69191847|8527|1 +638678.85848877|220630.79540784|128.69685771|8528|1 +638683.97637934|220626.24685992|128.69570429|8529|1 +638689.09192701|220621.69858076|128.56348884|8530|1 +638694.25768944|220617.10704818|128.53076519|8531|1 +638699.37658143|220612.55869195|128.6114674|8532|1 +638704.49450298|220608.01050185|128.64234|8533|1 +638709.66011458|220603.4194188|128.63559621|8534|1 +638714.77741263|220598.87133275|128.63567993|8535|1 +638719.89441415|220594.32306853|128.60467711|8536|1 +638725.06034224|220589.73262001|128.66765013|8537|1 +638730.17722265|220585.18401523|128.60584913|8538|1 +638735.34288344|220580.59318609|128.62576423|8539|1 +638740.50819797|220575.99999883|128.45235122|8540|1 +638745.6258772|220571.45082402|128.40378664|8541|1 +638750.79225516|220566.85658918|128.22482977|8542|1 +638755.9592904|220562.26193261|128.05878375|8543|1 +638761.12694571|220557.66697779|127.9118994|8544|1 +638766.24714445|220553.11364021|127.72691498|8545|1 +638771.41666116|220548.51607091|127.51202534|8546|1 +638776.58759603|220543.91637762|127.23508355|8547|1 +638781.75984022|220539.31525544|126.93984516|8548|1 +638786.93397382|220534.71159277|126.58257323|8549|1 +638792.06075508|220530.15047887|126.26161544|8550|1 +638797.23747976|220525.54475618|125.92388654|8551|1 +638802.41519103|220520.93857852|125.6178674|8552|1 +638807.59763739|220516.32536064|125.10617668|8553|1 +638812.77857283|220511.71622021|124.79488343|8554|1 +638817.96063414|220507.10632992|124.50280765|8555|1 +638823.08466964|220502.54811078|124.2208336|8556|1 +638828.27291681|220497.93039792|123.76097238|8557|1 +638833.46244445|220493.31197131|123.33286742|8558|1 +638838.65269425|220488.69358193|122.9552432|8559|1 +638843.79607792|220484.11695173|122.58781373|8560|1 +638848.99224629|220479.49217799|122.1299989|8561|1 +638854.18606703|220474.87162422|121.82881668|8562|1 +638859.3309636|220470.29550654|121.59988136|8563|1 +638864.52956278|220465.67009798|121.25599468|8564|1 +638869.74077747|220461.02902871|120.58816435|8565|1 +638874.89465332|220456.44354588|120.26062089|8566|1 +638880.10758278|220451.80231249|119.69378924|8567|1 +638885.27102638|220447.20635063|119.22361235|8568|1 +638890.43374512|220442.61213589|118.83494692|8569|1 +638895.63442239|220437.98860309|118.7688299|8570|1 +638900.7854444|220433.40997428|118.7615001|8571|1 +638905.9355591|220428.8328254|118.80436268|8572|1 +638911.14623233|220424.19851563|118.60256994|8573|1 +638916.30831624|220419.60789755|118.4405237|8574|1 +638921.47917111|220415.00743674|118.12925835|8575|1 +638926.64801715|220410.40994611|117.90569946|8576|1 +638931.82411738|220405.80455186|117.57662121|8577|1 +638936.99363676|220401.20738676|117.42248148|8578|1 +638942.16404961|220396.60967622|117.28747549|8579|1 +638947.29689946|220392.04277645|116.97946577|8580|1 +638952.47234902|220387.43874868|116.82666549|8581|1 +638957.61327308|220382.86241131|116.45710591|8582|1 +638962.74776052|220378.29391762|116.24351852|8583|1 +638967.925908|220373.68832715|116.15420287|8584|1 +638973.06351841|220369.11730038|115.95994457|8585|1 +638978.21415867|220364.53230348|115.59171514|8586|1 +638983.36712359|220359.94532275|115.23007138|8587|1 +638988.47673686|220355.39625209|114.82525807|8588|1 +638993.62948138|220350.81064454|114.55133936|8589|1 +638998.74678501|220346.25429959|114.11585809|8590|1 +639003.91090295|220341.65738045|113.75555378|8591|1 +639009.02367291|220337.10708874|113.46980321|8592|1 +639014.138668|220332.55489626|113.19042435|8593|1 +639019.26044006|220327.99590919|112.85532786|8594|1 +639024.32728495|220323.4873105|112.63764769|8595|1 +639029.45654648|220318.92131153|112.2780038|8596|1 +639034.58977384|220314.35161164|111.9062211|8597|1 +639039.67263617|220309.82739553|111.58938399|8598|1 +639044.75048419|220305.30897913|111.37192707|8599|1 +639042.95428225|220302.60725374|111.4035531|8600|1 +639037.81766121|220307.17513328|111.69370342|8601|1 +639032.68490848|220311.73942285|111.97172421|8602|1 +639027.49423783|220316.35736831|112.40433123|8603|1 +639022.36966541|220320.91399099|112.65195382|8604|1 +639017.19835977|220325.51226985|112.9052784|8605|1 +639012.07114887|220330.07282416|113.26531296|8606|1 +639006.90577732|220334.66578119|113.5132146|8607|1 +639001.73874227|220339.26109708|113.8237079|8608|1 +638996.61918425|220343.81507457|114.19704399|8609|1 +638991.40591266|220348.45214858|114.55170213|8610|1 +638986.24677638|220353.04058622|114.86967405|8611|1 +638981.08440513|220357.63321226|115.28136137|8612|1 +638975.87799138|220362.26460014|115.66260398|8613|1 +638970.72171768|220366.85175786|116.06897999|8614|1 +638965.53966598|220371.45714338|116.13382267|8615|1 +638960.35336052|220376.0677951|116.30502187|8616|1 +638955.21131648|220380.64073|116.59430711|8617|1 +638949.97166238|220385.30111312|116.92921757|8618|1 +638944.789323|220389.9089929|117.15179048|8619|1 +638939.60783424|220394.51647974|117.39977584|8620|1 +638934.42916869|220399.12130838|117.63578981|8621|1 +638929.20818328|220403.76260929|117.78638557|8622|1 +638924.03152499|220408.36630249|118.06707598|8623|1 +638918.81063619|220413.00868138|118.29995525|8624|1 +638913.64133058|220417.60493157|118.51310546|8625|1 +638908.4755766|220422.19752561|118.6892532|8626|1 +638903.26767561|220426.82610367|118.75552836|8627|1 +638898.05765045|220431.45779954|118.9097239|8628|1 +638892.90289156|220436.03861533|118.93758272|8629|1 +638887.70026738|220440.66222854|118.98059414|8630|1 +638882.48560607|220445.30155772|119.38603997|8631|1 +638877.31918136|220449.89901258|119.86443033|8632|1 +638872.05942716|220454.57896111|120.30494386|8633|1 +638866.90059558|220459.16850245|120.69701373|8634|1 +638861.68670655|220463.81085757|121.36702999|8635|1 +638856.48776681|220468.43434255|121.63196319|8636|1 +638851.29069592|220473.05610497|121.8912223|8637|1 +638846.14093159|220477.63723699|122.25386135|8638|1 +638840.94355449|220482.2612943|122.65772588|8639|1 +638835.74905805|220486.88229837|123.02469026|8640|1 +638830.55454|220491.5044641|123.47338935|8641|1 +638825.36311725|220496.12321075|123.87267741|8642|1 +638820.1736705|220500.74013652|124.26625417|8643|1 +638814.99827313|220505.34321592|124.56091585|8644|1 +638809.76586529|220509.99646961|124.81598916|8645|1 +638804.58244579|220514.60680863|125.11749694|8646|1 +638799.39757754|220519.22121704|125.61941149|8647|1 +638794.21662425|220523.83009837|125.97190231|8648|1 +638788.98872403|220528.48090446|126.3357785|8649|1 +638783.85920309|220533.04393745|126.67833502|8650|1 +638778.63514284|220537.68999711|126.94343565|8651|1 +638773.41257357|220542.3341505|127.16550626|8652|1 +638768.28695642|220546.89360068|127.49672391|8653|1 +638763.06692451|220551.53434023|127.63245544|8654|1 +638757.89566969|220556.13259739|127.83222969|8655|1 +638752.72519702|220560.73052251|128.0574443|8656|1 +638747.55563748|220565.32628089|128.183102|8657|1 +638742.38666605|220569.92205432|128.34669234|8658|1 +638737.21773154|220574.51437064|128.26073462|8659|1 +638732.05025388|220579.11118371|128.59391495|8660|1 +638726.88136208|220583.70272939|128.45255586|8661|1 +638721.761585|220588.25311081|128.49287906|8662|1 +638716.5931828|220592.84589845|128.47098267|8663|1 +638711.47343798|220597.39611625|128.49929728|8664|1 +638706.30573085|220601.98936228|128.55311736|8665|1 +638701.18597347|220606.53954242|128.57565556|8666|1 +638696.01596218|220611.13246274|128.45521616|8667|1 +638690.8954029|220615.68296753|128.44699339|8668|1 +638685.77386498|220620.23358109|128.38270882|8669|1 +638680.65758306|220624.78402515|128.60607237|8670|1 +638675.5388486|220629.33552602|128.62960587|8671|1 +638670.41912204|220633.88740845|128.61584854|8672|1 +638665.29549172|220638.44054|128.43982172|8673|1 +638660.17434107|220642.99346274|128.40770269|8674|1 +638655.05423738|220647.54633074|128.43825902|8675|1 +638649.93103335|220652.10050927|128.36279371|8676|1 +638644.85642885|220656.61197063|128.32325186|8677|1 +638639.73153362|220661.16751192|128.23559192|8678|1 +638634.64623161|220665.68421547|127.88378013|8679|1 +638629.56489348|220670.19981533|127.70687895|8680|1 +638624.43728151|220674.75790449|127.62590699|8681|1 +638619.35642589|220679.27413525|127.52405253|8682|1 +638614.27306951|220683.79200259|127.37848903|8683|1 +638609.13665795|220688.35573014|127.13561965|8684|1 +638604.10061964|220692.83201794|127.02495642|8685|1 +638599.01426084|220697.3527668|126.89193171|8686|1 +638593.98063189|220701.82848174|126.89331768|8687|1 +638588.93850043|220706.3092771|126.71344923|8688|1 +638583.84319847|220710.83630128|126.45543655|8689|1 +638578.80130633|220715.31785092|126.34397337|8690|1 +638573.76890747|220719.79414485|126.46323144|8691|1 +638568.73287917|220724.27281811|126.51986066|8692|1 +638563.74150279|220728.71096438|126.51646551|8693|1 +638558.70681728|220733.18931907|126.63495154|8694|1 +638553.73291254|220737.61708825|127.00510643|8695|1 +638548.75691623|220742.04620832|127.33734728|8696|1 +638543.77932428|220746.47641002|127.64414777|8697|1 +638538.81464849|220750.89838663|128.18744593|8698|1 +638533.84559829|220755.32314474|128.6491582|8699|1 +638528.91345775|220759.71236096|128.91261242|8700|1 +638523.93030734|220764.14649854|129.14258023|8701|1 +638518.99890326|220768.53549459|129.43594896|8702|1 +638514.07672763|220772.91842724|129.88444341|8703|1 +638509.14921824|220777.30499255|130.25122176|8704|1 +638504.17026057|220781.73679022|130.5787373|8705|1 +638499.23189504|220786.13096297|130.79473386|8706|1 +638494.34636134|220790.47918925|131.08578644|8707|1 +638489.41583319|220794.86827923|131.43740289|8708|1 +638484.46801413|220799.26950079|131.55172172|8709|1 +638479.52299578|220803.66900462|131.72147914|8710|1 +638474.62092951|220808.02946157|131.82887745|8711|1 +638469.67077765|220812.43302617|131.95999529|8712|1 +638464.81946801|220816.74919963|132.12838535|8713|1 +638459.86436936|220821.15674289|132.22703069|8714|1 +638454.93692019|220825.5362821|132.0763047|8715|1 +638450.01333074|220829.91341669|131.99953714|8716|1 +638445.17236932|220834.22311967|132.36340403|8717|1 +638440.26239613|220838.59096336|132.49024306|8718|1 +638435.39493233|220842.92022436|132.55994127|8719|1 +638430.45169449|220847.31279578|132.33092223|8720|1 +638425.56975534|220851.65322855|132.27461858|8721|1 +638419.63449066|220854.02042325|132.11946495|8722|1 +638424.56893208|220849.62169018|132.27586502|8723|1 +638429.54548658|220845.18475787|132.38137507|8724|1 +638434.50630562|220840.75959628|132.32483887|8725|1 +638439.42750909|220836.37147756|132.39870427|8726|1 +638444.43289882|220831.90649872|132.33467085|8727|1 +638449.31451549|220827.54743186|131.95953951|8728|1 +638454.32389955|220823.08005571|131.98175215|8729|1 +638459.24906559|220818.6902811|132.19627902|8730|1 +638464.2475258|220814.23130418|132.12440419|8731|1 +638469.18984092|220809.82118166|131.97090628|8732|1 +638474.18089917|220805.36790459|131.83600261|8733|1 +638479.16979688|220800.91636015|131.6882997|8734|1 +638484.11020312|220796.50821289|131.55817715|8735|1 +638489.0988627|220792.05726106|131.44075153|8736|1 +638494.07028615|220787.61838923|131.08625153|8737|1 +638499.0469484|220783.17602948|130.8185278|8738|1 +638504.02529303|220778.73266416|130.58776003|8739|1 +638508.99845956|220774.29294129|130.28801028|8740|1 +638514.0145678|220769.81387869|129.90823736|8741|1 +638518.97908885|220765.38010405|129.48301595|8742|1 +638524.00016354|220760.89786485|129.19613986|8743|1 +638528.97467|220756.45763613|128.95087992|8744|1 +638533.99394488|220751.97678942|128.65095344|8745|1 +638539.0079395|220747.49942035|128.26348795|8746|1 +638544.00793381|220743.0309936|127.62002826|8747|1 +638549.03054295|220738.54814436|127.39417183|8748|1 +638554.04909309|220734.0679526|127.09946365|8749|1 +638559.06759279|220729.58823344|126.81074581|8750|1 +638564.1442821|220725.06018387|126.73033195|8751|1 +638569.17455106|220720.57426627|126.70959829|8752|1 +638574.25153308|220716.04651802|126.67279116|8753|1 +638579.27938655|220711.56254257|126.63925826|8754|1 +638584.36353572|220707.03121513|126.80832735|8755|1 +638589.44578196|220702.50139469|126.96495996|8756|1 +638594.47139425|220698.01961294|126.94972365|8757|1 +638599.55153456|220693.49171983|127.11251404|8758|1 +638604.62829241|220688.96604977|127.2191217|8759|1 +638609.70874695|220684.43887509|127.4568751|8760|1 +638614.83297879|220679.87146874|127.60477335|8761|1 +638619.91141843|220675.34631521|127.86139076|8762|1 +638624.97900919|220670.82676866|127.8244627|8763|1 +638630.0968008|220666.26359818|127.86660905|8764|1 +638635.12236137|220661.78489801|128.0815545|8765|1 +638640.24130245|220657.22204842|128.22383448|8766|1 +638645.36181082|220652.65907862|128.46003448|8767|1 +638650.42816945|220648.14175127|128.51061754|8768|1 +638655.49376344|220643.62499723|128.5549033|8769|1 +638660.60462763|220639.06644584|128.4915582|8770|1 +638665.71950695|220634.50705548|128.62833152|8771|1 +638670.82953939|220629.9491307|128.5590891|8772|1 +638675.89419399|220625.43384188|128.65349283|8773|1 +638681.00063671|220620.87658609|128.40325644|8774|1 +638686.11212464|220616.31886865|128.44688177|8775|1 +638691.22399474|220611.76114074|128.51567771|8776|1 +638696.33462159|220607.20356013|128.51590095|8777|1 +638701.49375742|220602.60328117|128.55338711|8778|1 +638706.55528298|220598.08870734|128.50435745|8779|1 +638716.82327009|220588.93054786|128.41219545|8780|1 +638721.93344395|220584.37303889|128.39462439|8781|1 +638727.09250831|220579.77371319|128.50241338|8782|1 +638732.20227424|220575.21491162|128.36656093|8783|1 +638737.31245921|220570.65546477|128.21213284|8784|1 +638742.47151165|220566.05456096|128.20841213|8785|1 +638747.63079599|220561.45241248|128.13010978|8786|1 +638752.74250004|220556.89097176|127.93270748|8787|1 +638757.90316092|220552.28619809|127.75514587|8788|1 +638763.06435054|220547.68154001|127.62173979|8789|1 +638768.17862456|220543.11716514|127.38139119|8790|1 +638773.29369591|220538.55242002|127.1662225|8791|1 +638778.50759257|220533.89772034|126.81033653|8792|1 +638783.62507333|220529.33045647|126.57084369|8793|1 +638788.7931304|220524.71679333|126.23321711|8794|1 +638793.96285047|220520.10138092|125.87732185|8795|1 +638799.08688157|220515.52558056|125.4450683|8796|1 +638804.26033549|220510.90630036|125.05253333|8797|1 +638809.43238693|220506.29067162|124.83539266|8798|1 +638814.55876721|220501.71463458|124.54154955|8799|1 +638819.72595113|220497.10098852|124.15609323|8800|1 +638824.9522972|220492.43555622|123.83657721|8801|1 +638830.08636732|220487.85056805|123.39397079|8802|1 +638835.26997221|220483.22193413|122.9855949|8803|1 +638840.4558287|220478.59111383|122.56528483|8804|1 +638845.59380296|220474.00365104|122.19874833|8805|1 +638850.7810886|220469.37273666|121.86682374|8806|1 +638856.0157282|220464.70098793|121.63229805|8807|1 +638861.15840665|220460.10964771|121.29204837|8808|1 +638866.35997132|220455.46229989|120.69347906|8809|1 +638871.55820833|220450.82030853|120.27025753|8810|1 +638876.7091741|220446.22078272|119.87517388|8811|1 +638881.91553672|220441.57016718|119.35326981|8812|1 +638887.11077287|220436.93434942|119.18759587|8813|1 +638892.25947034|220432.33981452|119.01222018|8814|1 +638897.45409505|220427.7058113|118.94115461|8815|1 +638902.65013228|220423.07054169|118.87069365|8816|1 +638907.75192336|220418.51871591|118.76704395|8817|1 +638912.95516772|220413.87571524|118.60402102|8818|1 +638918.16281892|220409.22801436|118.3855409|8819|1 +638923.27682564|220404.66321282|118.13323021|8820|1 +638928.48846903|220400.01193858|117.915857|8821|1 +638933.70055247|220395.3606894|117.73031446|8822|1 +638938.82398992|220390.7865966|117.41679809|8823|1 +638943.99537253|220386.17220107|117.17106376|8824|1 +638949.16469981|220381.56333881|117.01917505|8825|1 +638954.35079933|220376.93592701|116.60623199|8826|1 +638959.53276548|220372.31381459|116.31211912|8827|1 +638964.71014449|220367.69740984|116.13683645|8828|1 +638969.83517188|220363.12890222|116.05578077|8829|1 +638975.03451409|220358.48897198|115.59511959|8830|1 +638980.18365983|220353.8946776|115.20365433|8831|1 +638985.38367505|220349.25524748|114.82502552|8832|1 +638990.536006|220344.65861016|114.47176266|8833|1 +638995.68774851|220340.06317113|114.16866427|8834|1 +639000.8481774|220335.45878428|113.77890124|8835|1 +639006.00367254|220330.86032426|113.50147576|8836|1 +639011.11023403|220326.30593113|113.26112716|8837|1 +639016.27104733|220321.70271203|112.98440861|8838|1 +639021.43969732|220317.09156011|112.6397964|8839|1 +639026.55101672|220312.53349076|112.44376146|8840|1 +639031.72636692|220307.91618222|112.08755923|8841|1 +639036.803856|220303.38648416|111.76667585|8842|1 +639041.9813043|220298.76796668|111.46094507|8843|1 +639047.05864832|220294.23939514|111.21486657|8844|1 +639045.94541838|220291.83556649|111.13768973|8845|1 +639040.8109951|220296.40990472|111.43103055|8846|1 +639035.6329966|220301.02266473|111.69239187|8847|1 +639030.45209355|220305.639055|112.02879061|8848|1 +639025.31939566|220310.21319087|112.41638633|8849|1 +639020.15663653|220314.81124129|112.5921806|8850|1 +639014.98775616|220319.41638722|112.8864516|8851|1 +639009.91548976|220323.93621469|113.23838431|8852|1 +639004.70686545|220328.57613927|113.48310475|8853|1 +638999.60165828|220333.12332202|113.68572535|8854|1 +638994.43442639|220337.72895207|114.11830446|8855|1 +638989.27768194|220342.32372604|114.43939248|8856|1 +638984.12648266|220346.91297932|114.71731095|8857|1 +638978.96676899|220351.51222791|115.16982377|8858|1 +638973.81393603|220356.10451432|115.56051699|8859|1 +638968.71119125|220360.6525079|115.97613896|8860|1 +638963.53108772|220365.26549297|116.10024326|8861|1 +638958.44658441|220369.79420076|116.29215751|8862|1 +638953.25891765|220374.41677412|116.6225194|8863|1 +638948.12183926|220378.99443828|116.96504802|8864|1 +638942.99297284|220383.56335099|117.20198287|8865|1 +638937.86497729|220388.13185527|117.46407902|8866|1 +638932.74014634|220392.69729426|117.70772975|8867|1 +638927.61620217|220397.26230641|117.97654179|8868|1 +638922.44935774|220401.86457763|118.17221396|8869|1 +638917.32990417|220406.42553679|118.43533331|8870|1 +638912.16728682|220411.02399674|118.62550813|8871|1 +638907.00680748|220415.62048718|118.80986933|8872|1 +638901.89677528|220420.17200238|118.99271435|8873|1 +638896.74686162|220424.7568099|119.00935523|8874|1 +638891.59722627|220429.34173483|119.05128764|8875|1 +638886.49146519|220433.88966907|119.24722956|8876|1 +638881.34206167|220438.47536468|119.35834858|8877|1 +638876.18039266|220443.07721253|119.85040325|8878|1 +638871.07384408|220447.62829263|120.22166505|8879|1 +638865.91997894|220452.22194955|120.62078568|8880|1 +638860.76168032|220456.82239473|121.2262383|8881|1 +638855.66406601|220461.36445377|121.51698393|8882|1 +638850.518779|220465.949501|121.84216473|8883|1 +638845.37582784|220470.53223035|122.14893732|8884|1 +638840.23395045|220475.11436405|122.48100143|8885|1 +638835.09290487|220479.69628849|122.85083076|8886|1 +638830.00111106|220484.23487137|123.2610577|8887|1 +638824.81503827|220488.85719594|123.64759302|8888|1 +638819.67908541|220493.43489664|124.0370584|8889|1 +638814.59441337|220497.96607959|124.36662034|8890|1 +638809.47265214|220502.53074212|124.72573402|8891|1 +638804.34368638|220507.10039227|124.97843538|8892|1 +638799.21592839|220511.66907038|125.23762008|8893|1 +638794.08754898|220516.24020426|125.63448967|8894|1 +638788.96001586|220520.81144927|126.09407184|8895|1 +638783.88410805|220525.33474801|126.41175541|8896|1 +638778.71321286|220529.94244937|126.70782165|8897|1 +638773.5922445|220534.5049992|126.95566749|8898|1 +638768.47205136|220539.06747462|127.24746421|8899|1 +638763.35355067|220543.62717858|127.44573158|8900|1 +638758.23579026|220548.18666443|127.67544825|8901|1 +638753.11926151|220552.74362615|127.79912467|8902|1 +638747.95499641|220557.34408076|127.99101101|8903|1 +638742.83972567|220561.89995555|128.11518042|8904|1 +638737.72489415|220566.45451721|128.17078644|8905|1 +638732.61025016|220571.0083318|128.18281364|8906|1 +638727.49634322|220575.56347266|128.33876722|8907|1 +638722.38137741|220580.11564141|128.20740754|8908|1 +638717.21911872|220584.71247121|128.2574697|8909|1 +638712.15283427|220589.22273356|128.23268977|8910|1 +638706.99146368|220593.81983669|128.35831956|8911|1 +638701.87784414|220598.37344285|128.41526503|8912|1 +638696.81250572|220602.88402191|128.47189425|8913|1 +638691.65025555|220607.4805161|128.49216282|8914|1 +638686.53526069|220612.03412487|128.45588589|8915|1 +638681.46832614|220616.54480521|128.41268844|8916|1 +638676.35237186|220621.09899094|128.35790098|8917|1 +638671.24091171|220625.65289343|128.57824146|8918|1 +638666.1731851|220630.16464366|128.56635379|8919|1 +638661.05744359|220634.71957793|128.58073433|8920|1 +638655.94034908|220639.27513854|128.55155466|8921|1 +638650.87205488|220643.78778822|128.56474458|8922|1 +638645.75320042|220648.34452554|128.50459929|8923|1 +638640.67709197|220652.86075603|128.2679435|8924|1 +638635.60362024|220657.37644125|128.16244275|8925|1 +638630.48244441|220661.93530016|128.10267884|8926|1 +638625.4045785|220666.45374284|127.9098065|8927|1 +638620.33094007|220670.97065286|127.87932458|8928|1 +638615.20665252|220675.53207846|127.80123617|8929|1 +638610.17631719|220680.00909972|127.6746576|8930|1 +638605.0450442|220684.57491224|127.45942379|8931|1 +638599.96135836|220689.09853746|127.26044019|8932|1 +638594.87809369|220693.62240077|127.10518424|8933|1 +638589.7961658|220698.14593825|127.01238972|8934|1 +638584.76640509|220702.62456651|127.03512326|8935|1 +638579.68185729|220707.15029891|126.92976204|8936|1 +638574.59894085|220711.67545035|126.88684364|8937|1 +638569.56637478|220716.15662034|126.9091586|8938|1 +638564.48198778|220720.6832838|126.87866738|8939|1 +638559.44655973|220725.1667762|126.88196951|8940|1 +638554.42277571|220729.64330996|127.13461506|8941|1 +638549.39892898|220734.12000082|127.39326956|8942|1 +638544.3696666|220738.60025237|127.55810634|8943|1 +638539.36503804|220743.06486362|128.18424611|8944|1 +638534.34900684|220747.53675549|128.59804494|8945|1 +638529.37423801|220751.97019122|128.88871615|8946|1 +638524.34717137|220756.44947081|129.12108383|8947|1 +638519.37326535|220760.88258344|129.44212534|8948|1 +638514.39661725|220765.31763817|129.72529932|8949|1 +638509.42607119|220769.74870745|130.11395544|8950|1 +638504.45440498|220774.18061748|130.4896914|8951|1 +638499.5231255|220778.57492197|130.74771338|8952|1 +638494.54172542|220783.01374094|130.99159665|8953|1 +638489.61616954|220787.40440521|131.35431012|8954|1 +638484.62416359|220791.85090458|131.46646164|8955|1 +638479.68525906|220796.2511877|131.65985487|8956|1 +638474.7889422|220800.61257867|131.78471262|8957|1 +638469.79513701|220805.06104535|131.92031391|8958|1 +638464.89491762|220809.42567133|132.02509843|8959|1 +638459.94379882|220813.83550868|132.11644187|8960|1 +638455.02340575|220818.21506655|131.99579783|8961|1 +638450.11477416|220822.58652317|132.04860401|8962|1 +638445.16294435|220826.99769588|132.18788881|8963|1 +638440.2613875|220831.36456135|132.36368309|8964|1 +638435.34042757|220835.74574951|132.32109955|8965|1 +638430.47037707|220840.08223462|132.32707129|8966|1 +638425.54187082|220844.46956893|132.23949507|8967|1 +638420.61287435|220848.857598|132.16990848|8968|1 +638415.72879802|220853.20531688|132.08021145|8969|1 +638412.41923529|220853.35837201|132.19452098|8970|1 +638417.37265501|220848.931822|132.04787848|8971|1 +638422.29890592|220844.53315291|132.16861553|8972|1 +638427.26100067|220840.10077054|132.16387163|8973|1 +638432.19128815|220835.69981041|132.38288195|8974|1 +638437.1493516|220831.27097886|132.37712415|8975|1 +638442.10559522|220826.84374953|132.37086406|8976|1 +638447.02838505|220822.44091607|131.96603214|8977|1 +638451.97723896|220818.01947218|131.90271495|8978|1 +638456.99845203|220813.53793266|132.16880157|8979|1 +638461.94234411|220809.12061904|132.08590414|8980|1 +638466.88201023|220804.70654168|131.96509267|8981|1 +638471.86846706|220800.25060621|131.83799319|8982|1 +638476.85364104|220795.79579544|131.71053095|8983|1 +638481.83581933|220791.34329783|131.55779578|8984|1 +638486.81599241|220786.89239923|131.39221486|8985|1 +638491.79256237|220782.44418289|131.18885942|8986|1 +638496.81095986|220777.95743963|130.89898817|8987|1 +638501.73442944|220773.55596699|130.65006333|8988|1 +638506.74946044|220769.07176343|130.32837069|8989|1 +638511.71620495|220764.63078933|130.01745881|8990|1 +638516.72111493|220760.1535405|129.5455797|8991|1 +638521.74000749|220755.66702731|129.31031917|8992|1 +638526.70465789|220751.2276901|128.98574298|8993|1 +638531.72166265|220746.74265302|128.73743206|8994|1 +638536.73603145|220742.25943658|128.45145825|8995|1 +638541.74123551|220737.78216992|128.00307542|8996|1 +638546.74746265|220733.30422645|127.5731194|8997|1 +638551.76583797|220728.81865741|127.37994011|8998|1 +638556.82854443|220724.29241596|127.12666204|8999|1 +638561.84874144|220719.8057807|127.00802718|9000|1 +638566.87526822|220715.31552207|127.03891838|9001|1 +638571.95088593|220710.78197896|127.10990954|9002|1 +638576.9705064|220706.29640152|127.03438842|9003|1 +638582.04535884|220701.76393869|127.13650332|9004|1 +638587.11434719|220697.23516094|127.12627137|9005|1 +638592.1378107|220692.74822886|127.20632245|9006|1 +638597.20938068|220688.21864869|127.30834434|9007|1 +638602.28360765|220683.68804542|127.5102673|9008|1 +638607.35650687|220679.15861202|127.71220887|9009|1 +638612.47390471|220674.58847409|127.84301975|9010|1 +638617.4926173|220670.10595653|127.9411814|9011|1 +638622.60715546|220665.53800206|128.04722165|9012|1 +638627.67143318|220661.01441618|128.11804537|9013|1 +638632.73052152|220656.49339731|128.03891516|9014|1 +638637.84545072|220651.9264169|128.24525647|9015|1 +638642.91076217|220647.40356477|128.44102165|9016|1 +638647.97267862|220642.88244813|128.54303423|9017|1 +638653.07950039|220638.31976678|128.53730434|9018|1 +638658.13813803|220633.80034958|128.55185232|9019|1 +638663.24451838|220629.23829056|128.56509805|9020|1 +638668.30194454|220624.71967122|128.56087504|9021|1 +638673.40392011|220620.15878747|128.37438373|9022|1 +638678.50991222|220615.59737544|128.4130047|9023|1 +638683.56628256|220611.07930901|128.38380643|9024|1 +638688.67207718|220606.51804549|128.42263204|9025|1 +638693.77717017|220601.95696878|128.43038042|9026|1 +638698.83267854|220597.43869117|128.33244202|9027|1 +638703.93733441|220592.87763279|128.31539186|9028|1 +638709.04092196|220588.31589768|128.17976266|9029|1 +638714.09735346|220583.79760037|128.14432289|9030|1 +638719.20213535|220579.23630943|128.12139401|9031|1 +638724.35544003|220574.63246045|128.15505714|9032|1 +638729.41224607|220570.11447006|128.16974465|9033|1 +638734.51728848|220565.55341285|128.18478562|9034|1 +638739.62236611|220560.99069721|128.08125685|9035|1 +638744.72787534|220556.42757726|127.97789551|9036|1 +638749.83393262|220551.86353195|127.84345693|9037|1 +638754.94076958|220547.29809579|127.65919804|9038|1 +638760.04865957|220542.73093967|127.41887735|9039|1 +638765.20514537|220538.12160222|127.26738862|9040|1 +638770.31505705|220533.55227682|127.00256704|9041|1 +638775.42565273|220528.98292502|126.78167776|9042|1 +638780.53751944|220524.41208527|126.53599924|9043|1 +638785.69993184|220519.79477621|126.19219628|9044|1 +638790.81586765|220515.21857374|125.8221158|9045|1 +638795.93360468|220510.64049891|125.43351549|9046|1 +638801.05234046|220506.06203194|125.08264318|9047|1 +638806.17030265|220501.48602976|124.86317707|9048|1 +638811.48523717|220496.73236821|124.50924448|9049|1 +638816.45188375|220492.29020113|124.20193239|9050|1 +638821.57741215|220487.70494329|123.80216994|9051|1 +638826.70373816|220483.1195552|123.4463863|9052|1 +638831.83424029|220478.52906848|122.99098063|9053|1 +638836.9627325|220473.94249066|122.69196572|9054|1 +638842.14200597|220469.31019569|122.36498037|9055|1 +638847.22431389|220464.76537755|122.10728396|9056|1 +638852.35986649|220460.17152737|121.74049631|9057|1 +638857.54526049|220455.53339706|121.38981934|9058|1 +638862.64007174|220450.97431315|120.90802453|9059|1 +638867.78763087|220446.36733718|120.36752621|9060|1 +638872.97380932|220441.73060436|120.1742632|9061|1 +638878.0750961|220437.16579327|119.69945402|9062|1 +638883.21609118|220432.56949287|119.51567883|9063|1 +638888.36565798|220427.96314874|119.15760694|9064|1 +638893.50352472|220423.3718282|119.13670585|9065|1 +638898.64052709|220418.78195181|119.16602505|9066|1 +638903.78688786|220414.18115992|119.00860179|9067|1 +638908.93833521|220409.57479714|118.77673641|9068|1 +638914.08822982|220404.97082745|118.62008519|9069|1 +638919.24378726|220400.36069125|118.38279687|9070|1 +638924.39982921|220395.75053797|118.17709739|9071|1 +638929.56386011|220391.13162959|117.85344208|9072|1 +638934.72274042|220386.51926068|117.67354572|9073|1 +638939.88575897|220381.90182638|117.45679573|9074|1 +638945.05302979|220377.27959983|117.20317349|9075|1 +638950.17873448|220372.69328723|116.86362145|9076|1 +638955.3556691|220368.0612249|116.52373454|9077|1 +638960.53257604|220363.42976833|116.22796595|9078|1 +638965.65753521|220358.84595489|116.02648947|9079|1 +638970.83156083|220354.21875198|115.85615535|9080|1 +638975.98182495|220349.60782551|115.32560062|9081|1 +638981.12763648|220345.00248312|114.91366215|9082|1 +638986.31940733|220340.35728598|114.58933711|9083|1 +638991.46506537|220335.75324334|114.26538415|9084|1 +638996.61473138|220331.14535756|113.92318109|9085|1 +639001.76414855|220326.53827245|113.62491033|9086|1 +639006.90694801|220321.93886821|113.45758998|9087|1 +639012.06347896|220317.32507228|113.13528342|9088|1 +639017.22333151|220312.70822045|112.80722837|9089|1 +639022.32495102|220308.14552952|112.64018707|9090|1 +639027.49233465|220303.52159851|112.28809623|9091|1 +639032.61479166|220298.93756717|111.92289919|9092|1 +639037.78234305|220294.31447797|111.64622715|9093|1 +639042.90635299|220289.72979906|111.33760351|9094|1 +639044.98548087|220283.87069231|111.02085012|9095|1 +639039.80266343|220288.50379278|111.36156489|9096|1 +639034.67436925|220293.08778723|111.67311859|9097|1 +639029.44590711|220297.76222064|112.05091954|9098|1 +639024.26763405|220302.39218363|112.45542589|9099|1 +639019.10752017|220307.00322231|112.66168348|9100|1 +639013.95186478|220311.60995712|112.84356111|9101|1 +639008.78747419|220316.22664815|113.1812249|9102|1 +639003.58112994|220320.88008161|113.46285478|9103|1 +638998.43200753|220325.48130386|113.66479635|9104|1 +638993.27601541|220330.09056037|114.00392981|9105|1 +638988.07194554|220334.7432214|114.37439166|9106|1 +638982.88055922|220339.38253515|114.59623903|9107|1 +638977.73042598|220343.9871332|114.97417951|9108|1 +638972.57607725|220348.59704992|115.46452265|9109|1 +638967.38295038|220353.24011773|115.84356074|9110|1 +638962.25142353|220357.82585552|116.05472967|9111|1 +638957.07342988|220362.45314768|116.26673576|9112|1 +638951.88913106|220367.08813971|116.62871439|9113|1 +638946.75754974|220371.67569355|116.96557822|9114|1 +638941.58080124|220376.3033899|117.28494541|9115|1 +638936.45880052|220380.88123143|117.53530272|9116|1 +638931.29033261|220385.50063364|117.7870553|9117|1 +638926.12122916|220390.12139535|118.09537198|9118|1 +638921.01038121|220394.68805395|118.25321383|9119|1 +638915.84741115|220399.30286496|118.52495592|9120|1 +638910.68916758|220403.91270958|118.74104549|9121|1 +638905.58397827|220408.47437106|118.89969659|9122|1 +638900.47808675|220413.03744552|119.11462343|9123|1 +638895.32993196|220417.63688587|119.22569595|9124|1 +638890.23544652|220422.18716698|119.24771325|9125|1 +638885.09365807|220426.77976381|119.2720746|9126|1 +638879.9881822|220431.34475902|119.64998718|9127|1 +638874.84226769|220435.94373042|119.86833708|9128|1 +638869.6952124|220440.54485081|120.16815193|9129|1 +638864.64241677|220445.06355077|120.60020084|9130|1 +638859.49544744|220449.66625314|121.01910634|9131|1 +638854.35024965|220454.26756391|121.4508483|9132|1 +638849.30504235|220458.7790221|121.84560639|9133|1 +638844.16652452|220463.37320572|122.19043254|9134|1 +638839.03153717|220467.96340393|122.47316934|9135|1 +638833.94644735|220472.50906637|122.75901293|9136|1 +638828.814106|220477.09727992|123.06720868|9137|1 +638823.72937843|220481.64435945|123.47817977|9138|1 +638818.59962205|220486.23081121|123.82432677|9139|1 +638813.47117256|220490.81637264|124.18948661|9140|1 +638808.40347398|220495.34735277|124.53263845|9141|1 +638803.27846488|220499.92945043|124.86696289|9142|1 +638798.15549512|220504.50931879|125.17031243|9143|1 +638793.08252627|220509.04420335|125.45077959|9144|1 +638787.96224707|220513.62178976|125.76077059|9145|1 +638782.89132507|220518.15556099|126.09133712|9146|1 +638777.77234765|220522.73389526|126.53913394|9147|1 +638772.65719251|220527.30559398|126.74974476|9148|1 +638767.59084068|220531.83439355|127.01180371|9149|1 +638762.47778193|220536.40408469|127.2102199|9150|1 +638757.36555112|220540.97322369|127.42134232|9151|1 +638752.30248069|220545.49811763|127.60856847|9152|1 +638747.24016457|220550.0225235|127.80824041|9153|1 +638742.1305209|220554.58803952|127.9197408|9154|1 +638737.06953899|220559.1095787|127.99445267|9155|1 +638731.96081025|220563.67414615|128.09370262|9156|1 +638726.90015461|220568.19372317|128.04343582|9157|1 +638721.83948917|220572.71340985|127.99937331|9158|1 +638716.73074835|220577.27641837|127.98018374|9159|1 +638711.67039013|220581.79663063|127.99236907|9160|1 +638706.61077823|220586.31729948|128.0857403|9161|1 +638701.50289982|220590.88070047|128.14809011|9162|1 +638696.44349988|220595.40104031|128.22895975|9163|1 +638691.38429656|220599.92130681|128.31602438|9164|1 +638686.32393795|220604.44142831|128.31553139|9165|1 +638681.26487904|220608.9616819|128.40872588|9166|1 +638676.15694512|220613.52470712|128.43400811|9167|1 +638671.09450747|220618.04511677|128.3522362|9168|1 +638666.03450629|220622.56534323|128.4266318|9169|1 +638660.97452764|220627.08564781|128.5072224|9170|1 +638655.91132575|220631.60697242|128.45030483|9171|1 +638650.80167702|220636.17111925|128.48854443|9172|1 +638645.74002225|220640.69245208|128.53162095|9173|1 +638640.67387477|220645.21568477|128.41846484|9174|1 +638635.60623463|220649.73992463|128.28029626|9175|1 +638630.53292609|220654.26702892|127.97970005|9176|1 +638625.47015302|220658.79001127|128.066374|9177|1 +638620.40562699|220663.31397782|128.1092831|9178|1 +638615.33516171|220667.84105332|127.98979248|9179|1 +638610.2663256|220672.3677059|127.94523697|9180|1 +638605.19328947|220676.89685189|127.80700327|9181|1 +638600.1675375|220681.38379864|127.67236006|9182|1 +638595.0893577|220685.91654587|127.45909823|9183|1 +638590.0609797|220690.40577844|127.31789726|9184|1 +638584.98741098|220694.93681547|127.27939721|9185|1 +638579.95861365|220699.42704199|127.18158903|9186|1 +638574.93171398|220703.9165189|127.15223262|9187|1 +638569.90638576|220708.40536745|127.17884501|9188|1 +638564.8784124|220712.89607901|127.1678038|9189|1 +638559.85093794|220717.38678275|127.18775611|9190|1 +638554.78150159|220721.91700874|127.3547323|9191|1 +638549.81061877|220726.35982091|127.57018934|9192|1 +638544.78552605|220730.84970097|127.683085|9193|1 +638539.78046017|220735.32696058|128.18248808|9194|1 +638534.81579558|220739.76610775|128.533965|9195|1 +638529.79995279|220744.25038456|128.83937953|9196|1 +638524.82641405|220748.69552379|129.04661381|9197|1 +638519.80925409|220753.18091409|129.34523804|9198|1 +638514.8344293|220757.6272192|129.55169096|9199|1 +638509.87701194|220762.06196351|130.05065685|9200|1 +638504.8572813|220766.54942084|130.32966364|9201|1 +638499.93915635|220770.94720975|130.69191202|9202|1 +638494.91290308|220775.43941438|130.88928641|9203|1 +638489.9919788|220779.83937741|131.22549912|9204|1 +638485.01598558|220784.28736556|131.47297288|9205|1 +638480.02911576|220788.74313553|131.57682722|9206|1 +638475.04276706|220793.19878747|131.70521964|9207|1 +638470.10553093|220797.61089596|131.85868034|9208|1 +638465.16203743|220802.02766898|131.94308466|9209|1 +638460.17096018|220806.4874013|132.05776626|9210|1 +638455.27561001|220810.86158336|132.17245717|9211|1 +638450.25602747|220815.34232223|131.95654433|9212|1 +638445.35943786|220819.71796048|132.09483384|9213|1 +638440.41994661|220824.13313406|132.31961127|9214|1 +638435.50843327|220828.52008801|132.30724921|9215|1 +638430.59353347|220832.90981909|132.27553945|9216|1 +638425.62971663|220837.34353941|132.26232163|9217|1 +638420.75261005|220841.69838958|132.14792838|9218|1 +638415.82907556|220846.09542944|132.08314151|9219|1 +638410.90179298|220850.49557089|131.99908136|9220|1 +638406.01535845|220854.85834713|131.85130403|9221|1 +638404.97810218|220852.83193944|132.0354513|9222|1 +638409.94424558|220848.37963821|132.0762954|9223|1 +638414.8504773|220843.97949877|132.0118806|9224|1 +638419.815809|220839.52838599|132.08905744|9225|1 +638424.7779575|220835.07993587|132.15340713|9226|1 +638429.73078836|220830.63861991|132.13029221|9227|1 +638434.70169756|220826.18439948|132.34920022|9228|1 +638439.65514861|220821.7432404|132.38114252|9229|1 +638444.62614824|220817.28135029|132.04556233|9230|1 +638449.56858089|220812.84864075|131.97706405|9231|1 +638454.52948832|220808.40294707|132.16936898|9232|1 +638459.51374297|220803.9321843|132.05659424|9233|1 +638464.49615488|220799.46296401|131.93725245|9234|1 +638469.48265432|220794.99107788|131.89227836|9235|1 +638474.41250519|220790.56858196|131.75293775|9236|1 +638479.43900887|220786.05976147|131.627001|9237|1 +638484.41494865|220781.59599642|131.48758597|9238|1 +638489.43236149|220777.09391045|131.26159001|9239|1 +638494.39261715|220772.64132387|130.9159267|9240|1 +638499.41005586|220768.13951348|130.71435721|9241|1 +638504.41913817|220763.64355619|130.39421797|9242|1 +638509.37767577|220759.19243935|130.04744774|9243|1 +638514.43083198|220754.65624518|129.67222338|9244|1 +638519.44330106|220750.15829594|129.43244219|9245|1 +638524.45044394|220745.66398528|129.11140068|9246|1 +638529.51195729|220741.12255615|128.90429663|9247|1 +638534.52057826|220736.6274793|128.62656419|9248|1 +638539.52507423|220732.13513554|128.27998|9249|1 +638544.57355067|220727.60234583|127.85434001|9250|1 +638549.59199775|220723.10130107|127.78808346|9251|1 +638554.6957032|220718.52398878|127.50215615|9252|1 +638559.76032701|220713.98460056|127.41346371|9253|1 +638564.77952496|220709.48691274|127.40312944|9254|1 +638569.8889099|220704.90687568|127.27355569|9255|1 +638574.91239471|220700.40718881|127.40032961|9256|1 +638580.02952588|220695.82316818|127.48948713|9257|1 +638585.09196682|220691.28632421|127.45078244|9258|1 +638590.16011424|220686.74656981|127.57440305|9259|1 +638595.22853181|220682.20707159|127.73549121|9260|1 +638600.29454705|220677.66927823|127.86539052|9261|1 +638605.40890279|220673.08868751|128.0302459|9262|1 +638610.47265319|220668.55288578|128.16025683|9263|1 +638615.53287115|220664.01919813|128.21531405|9264|1 +638620.63881535|220659.44386565|128.21823481|9265|1 +638625.69391033|220654.91310817|128.15466647|9266|1 +638630.75110962|220650.38164408|128.17852552|9267|1 +638635.86182411|220645.80523326|128.41919038|9268|1 +638640.96758546|220641.2312792|128.51639395|9269|1 +638646.02213554|220636.70187605|128.52162155|9270|1 +638651.12491881|220632.12961417|128.55035473|9271|1 +638656.22471379|220627.55846876|128.46680618|9272|1 +638661.32524924|220622.98724661|128.42718061|9273|1 +638666.42517246|220618.41629989|128.36897939|9274|1 +638671.47937316|220613.88822622|128.45564405|9275|1 +638676.57942234|220609.31764968|128.43517084|9276|1 +638681.72733239|220604.70403889|128.40163793|9277|1 +638686.77828048|220600.17634911|128.3072435|9278|1 +638691.87743722|220595.60549299|128.21228167|9279|1 +638697.02436152|220590.99127171|128.07338754|9280|1 +638702.07611129|220586.46340508|128.0228789|9281|1 +638707.22394523|220581.84910942|127.94080932|9282|1 +638712.32411573|220577.27805173|127.90290459|9283|1 +638717.42458315|220572.70722489|127.90267204|9284|1 +638722.52509648|220568.13642205|127.90884842|9285|1 +638727.62592349|220563.56669393|128.01519563|9286|1 +638732.72642999|220558.99603999|128.03422706|9287|1 +638737.82701408|220554.42316383|127.8972026|9288|1 +638742.92795845|220549.85165417|127.88533353|9289|1 +638748.02970879|220545.27659518|127.66741151|9290|1 +638753.13205173|220540.70175053|127.50593267|9291|1 +638758.28336856|220536.08282595|127.32696649|9292|1 +638763.33942171|220531.54858971|127.10856078|9293|1 +638768.49294174|220526.92680998|126.86773779|9294|1 +638773.55050075|220522.39179366|126.69323647|9295|1 +638778.65959441|220517.8075847|126.29532508|9296|1 +638783.76936845|220513.22369124|125.96636775|9297|1 +638788.88112491|220508.63740559|125.59391532|9298|1 +638793.99261382|220504.05297176|125.34039541|9299|1 +638799.10637982|220499.46563011|125.02463731|9300|1 +638804.17417917|220494.91878149|124.66326329|9301|1 +638809.28002905|220490.3387371|124.36613665|9302|1 +638814.39837022|220485.74691557|124.02601719|9303|1 +638819.51777291|220481.15445782|123.71114276|9304|1 +638824.64008364|220476.55862658|123.34033674|9305|1 +638829.76338791|220471.96230988|123.00105445|9306|1 +638834.83609752|220467.41335721|122.81527937|9307|1 +638839.96438137|220462.81170315|122.41403794|9308|1 +638845.09209221|220458.21173888|122.10050297|9309|1 +638850.22364291|220453.60738858|121.71862784|9310|1 +638855.35796302|220449.00020398|121.31213091|9311|1 +638860.44611021|220444.43427931|120.90251788|9312|1 +638865.58397229|220439.82415147|120.51534074|9313|1 +638870.72482364|220435.21098869|120.103579|9314|1 +638875.81077618|220430.65013928|119.92544068|9315|1 +638880.95669119|220426.03207872|119.4893548|9316|1 +638886.0396978|220421.47605276|119.47375572|9317|1 +638891.12570742|220416.91672451|119.41458712|9318|1 +638896.26454241|220412.30913394|119.28499477|9319|1 +638901.35614128|220407.7439178|119.16382053|9320|1 +638906.45528439|220403.17014141|118.91186331|9321|1 +638911.59885255|220398.55836093|118.78942403|9322|1 +638916.65443123|220394.02321565|118.51445422|9323|1 +638921.75977962|220389.44375207|118.25681361|9324|1 +638926.91044211|220384.82515211|118.10411565|9325|1 +638931.97419472|220380.28213216|117.79204105|9326|1 +638937.08570472|220375.70036023|117.53485624|9327|1 +638942.15349397|220371.15728344|117.22891151|9328|1 +638947.27475613|220366.56572779|116.87868102|9329|1 +638952.39998071|220361.97027239|116.50383804|9330|1 +638957.47728638|220357.4181206|116.16090945|9331|1 +638962.54922185|220352.87255034|115.94876383|9332|1 +638967.67171467|220348.28179649|115.74265507|9333|1 +638972.76389375|220343.71467499|115.28184507|9334|1 +638977.90577231|220339.10348077|114.85230763|9335|1 +638982.99649192|220334.53917036|114.5039096|9336|1 +638988.08280818|220329.98022815|114.26137508|9337|1 +638993.2246661|220325.37071684|113.95714188|9338|1 +638998.27598381|220320.84136412|113.5901961|9339|1 +639003.41622849|220316.23463384|113.3859942|9340|1 +639008.51467312|220311.6644422|113.11933088|9341|1 +639013.61902287|220307.08835656|112.80935848|9342|1 +639018.71257465|220302.52438521|112.67974753|9343|1 +639023.76919553|220297.99173579|112.42499978|9344|1 +639028.94040065|220293.35409079|111.9925974|9345|1 +639034.00325035|220288.81575439|111.73190581|9346|1 +639039.13290351|220284.21508668|111.28649955|9347|1 +639044.2159726|220279.65624783|110.85228333|9348|1 +639045.52095898|220274.83982443|110.68319563|9349|1 +639040.30188225|220279.51155614|110.91320996|9350|1 +639035.07021527|220284.19721887|111.33641288|9351|1 +639029.89569433|220288.83087251|111.69964725|9352|1 +639024.66872132|220293.51272397|112.14922071|9353|1 +639019.40907405|220298.22158261|112.4308785|9354|1 +639014.25742328|220302.83237339|112.61593734|9355|1 +639009.00932947|220307.52983188|112.81850213|9356|1 +639003.80281072|220312.19194465|113.15935642|9357|1 +638998.60493958|220316.84523472|113.42011312|9358|1 +638993.40458477|220321.50178859|113.75613979|9359|1 +638988.16086067|220326.19672265|114.05524771|9360|1 +638983.02109479|220330.79777646|114.29958678|9361|1 +638977.77908498|220335.49199326|114.65617968|9362|1 +638972.58466887|220340.14444036|115.07580142|9363|1 +638967.39474939|220344.79254532|115.47116412|9364|1 +638962.16618289|220349.47369366|115.74922212|9365|1 +638956.99065715|220354.10691759|115.99650985|9366|1 +638951.8099022|220358.74663443|116.37509215|9367|1 +638946.58389846|220363.42676188|116.74248441|9368|1 +638941.35916953|220368.10611032|117.13558679|9369|1 +638936.18944403|220372.73525858|117.46001414|9370|1 +638930.97649451|220377.40241279|117.7299517|9371|1 +638925.81314048|220382.02547726|118.02435292|9372|1 +638920.65361922|220386.64470144|118.28806758|9373|1 +638915.45040894|220391.30235712|118.4975901|9374|1 +638910.24773761|220395.95998152|118.73895259|9375|1 +638905.1007747|220400.56616055|118.86708456|9376|1 +638899.9009092|220405.22166196|119.13457574|9377|1 +638894.70763257|220409.86983988|119.29672431|9378|1 +638889.56458984|220414.47299742|119.4574404|9379|1 +638884.37571916|220419.11693188|119.59574852|9380|1 +638879.24390691|220423.70726892|119.55146276|9381|1 +638874.05235391|220428.35570288|119.84053407|9382|1 +638868.86229411|220433.00299486|120.14269297|9383|1 +638863.72068951|220437.60762253|120.49896961|9384|1 +638858.58194269|220442.20936634|120.83064305|9385|1 +638853.39236681|220446.85859721|121.30286634|9386|1 +638848.20717574|220451.50298809|121.70703782|9387|1 +638843.07299579|220456.1013955|122.08992685|9388|1 +638837.94009776|220460.6990168|122.4981074|9389|1 +638832.76393796|220465.33384924|122.79137381|9390|1 +638827.63933749|220469.92160927|123.01923012|9391|1 +638822.51500767|220474.50982944|123.29731603|9392|1 +638817.39208048|220479.09689896|123.58193178|9393|1 +638812.26772005|220483.6872293|124.01044602|9394|1 +638807.099351|220488.31537151|124.31832552|9395|1 +638802.03784683|220492.84869286|124.69389404|9396|1 +638796.92156283|220497.42921021|124.92952664|9397|1 +638791.804269|220502.01269452|125.31533642|9398|1 +638786.69057028|220506.59102142|125.55771281|9399|1 +638781.57707085|220511.17029862|125.88152625|9400|1 +638776.4650275|220515.74820611|126.19931214|9401|1 +638771.40168432|220520.28361643|126.59996756|9402|1 +638766.29264214|220524.85844685|126.88683434|9403|1 +638761.23376391|220529.38665448|127.05012703|9404|1 +638756.17575114|220533.91393225|127.20087161|9405|1 +638751.07013572|220538.48454891|127.40061796|9406|1 +638746.01358438|220543.01072187|127.56387344|9407|1 +638740.90958288|220547.57967854|127.74511855|9408|1 +638735.85441432|220552.10421966|127.87713866|9409|1 +638730.79974125|220556.6279014|127.9778583|9410|1 +638725.69692565|220561.19252197|127.91565732|9411|1 +638720.64196152|220565.7136009|127.80387787|9412|1 +638715.58721873|220570.23560668|127.77325643|9413|1 +638710.53230767|220574.75752296|127.72382679|9414|1 +638705.47809496|220579.28019022|127.77431683|9415|1 +638700.42405811|220583.80280577|127.83099255|9416|1 +638695.37101005|220588.32566076|127.96883558|9417|1 +638690.36627598|220592.80514366|128.099879|9418|1 +638680.2600303|220601.84977856|128.28124504|9419|1 +638675.2542561|220606.32878307|128.30536455|9420|1 +638670.20141315|220610.85090183|128.38636441|9421|1 +638665.19578958|220615.33216451|128.41625102|9422|1 +638660.13891672|220619.8574233|128.30329955|9423|1 +638655.13427995|220624.33885712|128.40768409|9424|1 +638650.1286951|220628.82064148|128.47428481|9425|1 +638645.12366174|220633.30236837|128.57183253|9426|1 +638640.1134496|220637.78610667|128.47541032|9427|1 +638635.05527874|220642.31328799|128.41172106|9428|1 +638630.04559864|220646.79751681|128.38358318|9429|1 +638625.07947249|220651.24090822|128.22198342|9430|1 +638620.02126103|220655.769107|128.22654129|9431|1 +638615.06190544|220660.21003839|128.32650748|9432|1 +638610.04879796|220664.69704975|128.27219441|9433|1 +638605.03112753|220669.18671371|128.11145971|9434|1 +638600.01416202|220673.67643929|128.00044301|9435|1 +638594.99498171|220678.1677403|127.8579677|9436|1 +638590.02446866|220682.61599948|127.75614116|9437|1 +638585.00378673|220687.10892866|127.63182292|9438|1 +638579.98167731|220691.60306305|127.50104924|9439|1 +638575.01920149|220696.04773653|127.66025845|9440|1 +638569.99838677|220700.54176351|127.60381527|9441|1 +638565.03149606|220704.98947841|127.6935402|9442|1 +638560.00424093|220709.48802238|127.54294444|9443|1 +638555.03465265|220713.93792245|127.61316355|9444|1 +638550.02429772|220718.42663511|127.84888917|9445|1 +638545.05484021|220722.87686418|127.94947858|9446|1 +638540.09942134|220727.31835993|128.33032121|9447|1 +638535.13578321|220731.76518711|128.56096806|9448|1 +638530.12805594|220736.25270245|128.87644711|9449|1 +638525.20794116|220740.6596358|129.03957236|9450|1 +638520.19784324|220745.14895942|129.32939711|9451|1 +638515.27891216|220749.55544338|129.53502218|9452|1 +638510.32375099|220753.99728104|129.9503558|9453|1 +638505.40749664|220758.40223687|130.21704703|9454|1 +638500.44852669|220762.84682611|130.58145342|9455|1 +638495.48307703|220767.29595355|130.85193048|9456|1 +638490.56207721|220771.70459256|131.07321044|9457|1 +638485.59515884|220776.15505973|131.34271081|9458|1 +638480.66776859|220780.56850775|131.49428325|9459|1 +638475.73840829|220784.9835597|131.632796|9460|1 +638470.80565429|220789.40123362|131.73956179|9461|1 +638465.8711705|220793.82038459|131.83952799|9462|1 +638460.98707443|220798.1949863|131.98284976|9463|1 +638455.9996011|220802.66129753|132.0563896|9464|1 +638451.09037827|220807.0544392|131.90589616|9465|1 +638446.14131275|220811.48516501|131.89154352|9466|1 +638441.21428333|220815.9002262|132.1752384|9467|1 +638436.31107925|220820.28995429|132.16585291|9468|1 +638431.40454342|220824.68241486|132.13708251|9469|1 +638426.4914522|220829.07999663|132.0516736|9470|1 +638421.54573891|220833.50971679|132.17748013|9471|1 +638416.67248215|220837.87083839|132.03421417|9472|1 +638411.72003378|220842.30610335|132.12155785|9473|1 +638406.83312827|220846.6780311|131.87118193|9474|1 +638401.93657424|220851.0649027|132.08062073|9475|1 +638396.59476637|220853.29173415|131.52150025|9476|1 +638401.58730891|220848.81348748|131.87828849|9477|1 +638406.44122776|220844.45371568|131.80176277|9478|1 +638411.41489155|220839.99025936|132.00234628|9479|1 +638416.3402202|220835.570582|132.23431398|9480|1 +638421.28415193|220831.1297973|132.14192874|9481|1 +638426.22798681|220826.68933019|132.06770986|9482|1 +638431.17627846|220822.2458596|132.06760754|9483|1 +638436.1347862|220817.79522907|132.21627784|9484|1 +638441.07628924|220813.35730304|132.17791731|9485|1 +638446.04761079|220808.88964568|131.92132781|9486|1 +638450.9942097|220804.44854352|131.987789|9487|1 +638456.03678877|220799.92148248|132.06674248|9488|1 +638460.96765696|220795.49226027|131.97059932|9489|1 +638465.94513762|220791.02111777|131.86816816|9490|1 +638470.92038382|220786.55179046|131.75293775|9491|1 +638475.8934817|220782.08420579|131.62488019|9492|1 +638480.91379785|220777.57424902|131.49733423|9493|1 +638485.88156743|220773.1108153|131.32505603|9494|1 +638490.8893423|220768.60996457|131.04132395|9495|1 +638495.85242204|220764.15011297|130.82472278|9496|1 +638500.85991988|220759.64973061|130.55917567|9497|1 +638505.85787237|220755.15595116|130.15006494|9498|1 +638510.81808428|220750.69844608|129.91989248|9499|1 +638515.8640725|220746.16164|129.51811155|9500|1 +638520.87260437|220741.66102536|129.30776118|9501|1 +638525.8797328|220737.16148431|129.08472318|9502|1 +638530.93186969|220732.62089173|128.81363221|9503|1 +638535.93883328|220728.12172081|128.60896523|9504|1 +638540.98540514|220723.58491027|128.25040035|9505|1 +638545.99524341|220719.08357821|128.12021269|9506|1 +638551.04830012|220714.53963949|127.89862577|9507|1 +638556.10750063|220709.99203965|127.81431447|9508|1 +638561.16647193|220705.44479944|127.74250475|9509|1 +638566.23030367|220700.89487657|127.79553418|9510|1 +638571.28751015|220696.34918459|127.72377097|9511|1 +638576.34290524|220691.80476804|127.6270325|9512|1 +638581.45321004|220687.21348408|127.70833933|9513|1 +638586.51359604|220682.66676283|127.77405638|9514|1 +638591.57561429|220678.11948932|127.90845775|9515|1 +638596.68499114|220673.52984593|128.0527376|9516|1 +638601.78983575|220668.94298554|128.10359041|9517|1 +638606.8983179|220664.35462447|128.28581221|9518|1 +638612.0020795|220659.7690547|128.36212398|9519|1 +638617.04995807|220655.23066673|128.22220666|9520|1 +638622.15115051|220650.64686177|128.26133924|9521|1 +638627.25380297|220646.06275172|128.37564877|9522|1 +638632.35643334|220641.47907292|128.5214076|9523|1 +638642.59581407|220632.27492879|128.36217049|9524|1 +638647.64682614|220627.73670006|128.44763522|9525|1 +638657.8839883|220618.53422229|128.27113401|9526|1 +638662.98093232|220613.95420741|128.3182289|9527|1 +638668.12515595|220609.33149331|128.34579007|9528|1 +638673.21897494|220604.75239536|128.255907|9529|1 +638683.45547133|220595.55056106|128.09478163|9530|1 +638688.59667781|220590.92762449|127.91130409|9531|1 +638693.69118813|220586.34785576|127.8223605|9532|1 +638698.78504247|220581.76755401|127.65233333|9533|1 +638703.92876524|220577.14478747|127.6511148|9534|1 +638714.1679563|220567.94235118|127.63730166|9535|1 +638719.26375509|220563.36314117|127.68072235|9536|1 +638724.40780283|220558.74173766|127.80592426|9537|1 +638729.55146473|220554.11931177|127.83155066|9538|1 +638734.6470946|220549.53988195|127.85075883|9539|1 +638739.79117795|220544.91459362|127.69587495|9540|1 +638744.93592587|220540.28852425|127.52892666|9541|1 +638750.03335424|220535.70464183|127.3427144|9542|1 +638755.17973436|220531.07666626|127.1452749|9543|1 +638760.27864465|220526.49168407|126.97832661|9544|1 +638765.42609154|220521.86374399|126.85663147|9545|1 +638770.52888783|220517.27202807|126.45278555|9546|1 +638775.68041433|220512.63768851|126.13194868|9547|1 +638780.83343712|220508.00183145|125.79909391|9548|1 +638785.93921665|220503.40884191|125.50239515|9549|1 +638791.09541203|220498.76977271|125.14539297|9550|1 +638796.20282559|220494.17622716|124.91802034|9551|1 +638801.36060326|220489.53674138|124.63684625|9552|1 +638806.46277769|220484.94590886|124.26594721|9553|1 +638811.57650611|220480.34487715|123.90826601|9554|1 +638816.73978125|220475.69957773|123.56588622|9555|1 +638821.85348235|220471.10050043|123.35251277|9556|1 +638826.97039737|220466.49750818|123.06450187|9557|1 +638832.08790641|220461.89447542|122.81424687|9558|1 +638837.25769897|220457.24328729|122.47363442|9559|1 +638842.33277262|220452.67708489|122.13359869|9560|1 +638847.46050476|220448.06247114|121.70950279|9561|1 +638852.58953649|220443.44701449|121.31072634|9562|1 +638857.67554899|220438.86883363|120.81522071|9563|1 +638862.85057935|220434.21467663|120.60786551|9564|1 +638867.98576897|220429.59366063|120.21019596|9565|1 +638873.07001477|220425.02008729|119.94008168|9566|1 +638878.19970376|220420.40737806|119.79257411|9567|1 +638883.28222191|220415.83710528|119.65381951|9568|1 +638888.36472445|220411.26734142|119.55260688|9569|1 +638893.49932095|220406.65010743|119.39971358|9570|1 +638898.58901581|220402.07259557|119.20535296|9571|1 +638903.73043353|220397.44819981|118.9783152|9572|1 +638908.82585116|220392.86492843|118.74077574|9573|1 +638913.92173828|220388.28164158|118.53460186|9574|1 +638919.01831369|220383.69806794|118.35354279|9575|1 +638924.12283547|220379.10573946|118.05430464|9576|1 +638929.22852275|220374.51223183|117.77401421|9577|1 +638934.33668431|220369.91475907|117.48155706|9578|1 +638939.39785643|220365.35961323|117.2026712|9579|1 +638944.5152022|220360.75276707|116.82969787|9580|1 +638949.59083955|220356.18232579|116.38290564|9581|1 +638954.66225338|220351.61726822|116.05452503|9582|1 +638959.78444985|220347.00669705|115.73210685|9583|1 +638964.85975886|220342.43836671|115.42270187|9584|1 +638969.93364515|220337.87214401|115.17562808|9585|1 +638975.06949841|220333.2480103|114.76070374|9586|1 +638980.10631126|220328.71366238|114.4143521|9587|1 +638985.19538487|220324.13223831|114.05573141|9588|1 +638990.27782731|220319.55861266|113.83409798|9589|1 +638995.36665351|220314.97847433|113.5566539|9590|1 +639000.41247691|220310.43631577|113.23527752|9591|1 +639005.45426539|220305.89903619|113.00708634|9592|1 +639010.55107571|220301.31168452|112.72999572|9593|1 +639015.59524657|220296.7727278|112.53912327|9594|1 +639020.64767362|220292.2253348|112.27368778|9595|1 +639025.70625574|220287.67181469|111.96480369|9596|1 +639030.77664069|220283.10615011|111.54422387|9597|1 +639035.8965889|220278.49644026|111.15624678|9598|1 +639040.91024638|220273.98400448|110.9081684|9599|1 +639045.96882125|220269.43235638|110.74228052|9600|1 +639045.16562613|220266.25677316|110.52619095|9601|1 +639039.98708249|220270.90988628|110.91024269|9602|1 +639034.8203935|220275.55092507|111.18939831|9603|1 +639029.70449923|220280.14653848|111.48287865|9604|1 +639024.48420406|220284.83763402|111.8983704|9605|1 +639019.36765518|220289.43505898|112.27964092|9606|1 +639014.16984232|220294.10312069|112.4853125|9607|1 +639009.01883245|220298.7300138|112.75468264|9608|1 +639003.87285886|220303.35197877|112.99344994|9609|1 +638998.68346789|220308.01245418|113.19474968|9610|1 +638993.48179474|220312.68687522|113.60805551|9611|1 +638988.34175296|220317.30399909|113.87945344|9612|1 +638983.15900558|220321.9588318|114.1012636|9613|1 +638977.97095152|220326.6200646|114.44187605|9614|1 +638972.78206838|220331.28283261|114.83911772|9615|1 +638967.55451705|220335.97884134|115.12513804|9616|1 +638962.37819824|220340.62884025|115.41175368|9617|1 +638957.20215285|220345.27912228|115.73631126|9618|1 +638951.97972956|220349.97119239|116.06816143|9619|1 +638946.80672445|220354.61930185|116.4313586|9620|1 +638941.58076809|220359.31671965|116.92039019|9621|1 +638936.36496258|220364.00325877|117.27946666|9622|1 +638931.20728384|220368.63579472|117.50755552|9623|1 +638925.99511533|220373.31945421|117.89297463|9624|1 +638920.79342154|220377.99160231|118.12337963|9625|1 +638915.59077575|220382.66548002|118.41682277|9626|1 +638910.44276714|220387.28916123|118.62846609|9627|1 +638905.20177826|220391.99585895|118.80011177|9628|1 +638900.05455842|220396.61981383|119.081444|9629|1 +638894.86450902|220401.28119198|119.28398088|9630|1 +638889.62707506|220405.98544856|119.50784673|9631|1 +638884.44152048|220410.6425812|119.69308231|9632|1 +638879.30934229|220415.25064076|119.79565299|9633|1 +638874.08368628|220419.94209503|119.85331471|9634|1 +638868.90113192|220424.59727792|120.09027746|9635|1 +638863.71705593|220429.25513016|120.42143|9636|1 +638858.53667975|220433.90900012|120.70328313|9637|1 +638853.3573263|220438.56231415|121.01069754|9638|1 +638848.17284797|220443.22331654|121.54338237|9639|1 +638842.9478769|220447.91830248|121.89873813|9640|1 +638837.77035168|220452.57200082|122.35161372|9641|1 +638832.60020645|220457.21645138|122.61154256|9642|1 +638827.42910548|220461.86314475|122.97191198|9643|1 +638822.21291854|220466.54965099|123.28019146|9644|1 +638817.09807063|220471.14315442|123.44450734|9645|1 +638811.88564955|220475.82589785|123.72284439|9646|1 +638806.72075158|220480.46744975|124.11044942|9647|1 +638801.55924698|220485.10477593|124.41113864|9648|1 +638796.40840296|220489.73314931|124.75647639|9649|1 +638791.20227906|220494.40981988|124.99993179|9650|1 +638786.09300952|220499.00013264|125.29152387|9651|1 +638780.88791999|220503.67753459|125.65488847|9652|1 +638775.733338|220508.30857983|125.94561549|9653|1 +638770.57991963|220512.9387707|126.24929058|9654|1 +638765.4274622|220517.56862994|126.59094483|9655|1 +638760.27664401|220522.19652293|126.8955501|9656|1 +638755.12811001|220526.82000189|127.02565405|9657|1 +638750.02808758|220531.40069086|127.21342901|9658|1 +638744.88096081|220536.02311489|127.35678799|9659|1 +638739.73443288|220540.64553227|127.53807961|9660|1 +638734.63672031|220545.22368597|127.68917767|9661|1 +638729.49147708|220549.843199|127.73995607|9662|1 +638724.34618756|220554.46064431|127.63492971|9663|1 +638719.24911394|220559.03597788|127.61807489|9664|1 +638714.10359135|220563.6536743|127.51375547|9665|1 +638709.0062563|220568.22885227|127.46613967|9666|1 +638703.90944702|220572.80468487|127.49993303|9667|1 +638698.81277641|220577.38049484|127.54016321|9668|1 +638693.71610272|220581.95623635|127.57431933|9669|1 +638688.62078179|220586.53231224|127.72114787|9670|1 +638683.52517183|220591.10807408|127.82439759|9671|1 +638678.47984643|220595.64061169|128.07087606|9672|1 +638673.38428095|220600.21593658|128.14310436|9673|1 +638668.3369231|220604.74786182|128.20834702|9674|1 +638663.28969743|220609.27872662|128.27350596|9675|1 +638658.19286912|220613.85094033|128.24601921|9676|1 +638653.14408122|220618.38023619|128.23616863|9677|1 +638648.0931994|220622.91041045|128.15128992|9678|1 +638643.04911201|220627.43866617|128.37248616|9679|1 +638637.99993043|220631.96870331|128.38745272|9680|1 +638632.95151142|220636.49866542|128.44607252|9681|1 +638627.95114225|220640.98560444|128.51526843|9682|1 +638622.9441431|220645.47562131|128.37179783|9683|1 +638617.89204646|220650.00790549|128.35507324|9684|1 +638612.88531903|220654.49855336|128.27363619|9685|1 +638607.83456541|220659.03076004|128.33790216|9686|1 +638602.82872537|220663.52157095|128.32474945|9687|1 +638597.81442631|220668.0170993|128.09899533|9688|1 +638592.8075249|220672.50913716|128.1040648|9689|1 +638587.84326883|220676.9612135|127.98742053|9690|1 +638582.8319118|220681.45634431|127.92319176|9691|1 +638577.81982157|220685.95223059|127.86495334|9692|1 +638572.85447822|220690.40599285|127.79709688|9693|1 +638567.84726879|220694.89963821|127.89432835|9694|1 +638562.89028848|220699.34896795|128.05031914|9695|1 +638557.92482517|220703.80363058|128.03734316|9696|1 +638552.96501221|220708.25509663|128.16118701|9697|1 +638548.00451723|220712.70717925|128.28455647|9698|1 +638543.03915429|220717.16254296|128.32634935|9699|1 +638538.13165921|220721.56866785|128.5695629|9700|1 +638533.17368229|220726.01970714|128.77874125|9701|1 +638528.26278135|220730.42830409|128.97699001|9702|1 +638523.30182901|220734.881607|129.1539284|9703|1 +638518.39608327|220739.28711929|129.46313805|9704|1 +638513.4814335|220743.69868162|129.62825389|9705|1 +638508.57917199|220748.10209388|130.01085455|9706|1 +638503.66467128|220752.51387319|130.19951318|9707|1 +638498.71397257|220756.9609704|130.5918249|9708|1 +638493.85326878|220761.32588064|130.88639356|9709|1 +638488.94070445|220765.73678207|131.1353277|9710|1 +638484.07450732|220770.10578474|131.36590013|9711|1 +638479.15524237|220774.52170183|131.53865273|9712|1 +638474.22842291|220778.94313878|131.61735506|9713|1 +638469.35313015|220783.31913671|131.75837929|9714|1 +638464.47305839|220787.69874794|131.84874605|9715|1 +638459.59533427|220792.07693712|131.98809596|9716|1 +638454.70936067|220796.46126858|132.03327469|9717|1 +638449.80902661|220800.85621521|131.90966338|9718|1 +638444.91735524|220805.2452457|131.92219287|9719|1 +638440.04125191|220809.623267|132.1516863|9720|1 +638435.15802172|220814.00667733|132.30572372|9721|1 +638430.29697895|220818.36598852|132.15401174|9722|1 +638425.39408748|220822.76435333|132.10748426|9723|1 +638420.58147752|220827.08081737|132.00328576|9724|1 +638415.69326046|220831.46897659|132.17267111|9725|1 +638410.86813098|220835.79533409|131.96700883|9726|1 +638405.95732168|220840.20082841|131.91730944|9727|1 +638401.15091041|220844.51393399|131.97059932|9728|1 +638396.24504971|220848.90903683|131.48357691|9729|1 +638391.36458177|220853.28556487|131.30630365|9730|1 +638389.65506966|220851.33968866|131.39821451|9731|1 +638394.51819943|220846.96162133|131.4505463|9732|1 +638399.42934393|220842.5405719|131.5196864|9733|1 +638404.36027895|220838.105127|131.83670025|9734|1 +638409.3233596|220833.63857931|131.99708147|9735|1 +638414.18928202|220829.2597802|132.18321002|9736|1 +638419.11614718|220824.82060571|131.96965054|9737|1 +638424.05976902|220820.36934088|131.973148|9738|1 +638429.00305015|220815.91861406|131.99482114|9739|1 +638433.95554391|220811.46981699|132.75626456|9740|1 +638438.84542536|220807.05856779|132.16117411|9741|1 +638443.75882439|220802.63035017|131.87022385|9742|1 +638448.69789247|220798.18383024|131.92711351|9743|1 +638453.68445113|220793.69473783|131.99625362|9744|1 +638458.61249528|220789.25671283|131.95264689|9745|1 +638463.58155178|220784.78065224|131.8281054|9746|1 +638468.502716|220780.34799017|131.72744158|9747|1 +638473.4705223|220775.87326582|131.6207223|9748|1 +638478.43749234|220771.39935717|131.51987244|9749|1 +638483.39904263|220766.92944021|131.35635651|9750|1 +638488.35259084|220762.4652323|131.08652128|9751|1 +638493.36017873|220757.95377973|130.91719174|9752|1 +638498.30667428|220753.49466731|130.5593617|9753|1 +638503.30608013|220748.98906585|130.28356403|9754|1 +638508.25727844|220744.52696883|130.01839829|9755|1 +638513.24996086|220740.02608256|129.64851315|9756|1 +638518.25275263|220735.51857997|129.4591941|9757|1 +638523.24953511|220731.0151698|129.17612244|9758|1 +638528.2523494|220726.50794766|129.01128566|9759|1 +638533.25274533|220722.00245172|128.81505538|9760|1 +638538.25608538|220717.49523467|128.68720247|9761|1 +638543.30581518|220712.94673667|128.53035591|9762|1 +638548.31175394|220708.43997298|128.46453654|9763|1 +638553.36300249|220703.89185607|128.3574824|9764|1 +638558.36405322|220699.38850509|128.22268105|9765|1 +638563.41360394|220694.84179743|128.10925519|9766|1 +638568.41394412|220690.33922172|127.98655546|9767|1 +638573.51554451|220685.74733143|127.99474102|9768|1 +638578.56666748|220681.20036903|127.96868675|9769|1 +638583.62247033|220676.65107807|128.0799639|9770|1 +638588.67593458|220672.10344369|128.16004289|9771|1 +638593.72652507|220667.55768717|128.19016204|9772|1 +638598.78073709|220663.0103829|128.34515754|9773|1 +638603.87599533|220658.42376883|128.32913058|9774|1 +638608.92362335|220653.88045895|128.34681326|9775|1 +638613.97014333|220649.33795567|128.35198505|9776|1 +638619.0653495|220644.75220811|128.39879159|9777|1 +638624.15910491|220640.16740727|128.42081819|9778|1 +638629.2563637|220635.5815116|128.59296617|9779|1 +638634.29660385|220631.04269853|128.46088095|9780|1 +638639.38084631|220626.46210063|128.17097248|9781|1 +638644.52002052|220621.83592728|128.16095447|9782|1 +638649.56497466|220617.29593478|128.25394433|9783|1 +638654.70362659|220612.67046598|128.26326471|9784|1 +638659.79291704|220608.0887231|128.22408562|9785|1 +638664.88199343|220603.50716046|128.18508327|9786|1 +638670.01900647|220598.88252749|128.15166199|9787|1 +638675.10712807|220594.3011079|128.06311838|9788|1 +638680.19391627|220589.71923401|127.85599573|9789|1 +638685.32927278|220585.09381397|127.6610584|9790|1 +638690.46632604|220580.46849571|127.58527683|9791|1 +638695.55472349|220575.8859126|127.43513685|9792|1 +638700.69297978|220571.26095543|127.4662885|9793|1 +638705.78238892|220566.67855881|127.39784603|9794|1 +638710.92079588|220562.05404681|127.47345087|9795|1 +638716.01090985|220557.47271462|127.53045216|9796|1 +638721.14890784|220552.84802873|127.56924987|9797|1 +638726.23887959|220548.26671347|127.62046545|9798|1 +638731.42490828|220543.59827878|127.62306994|9799|1 +638736.51513018|220539.01507322|127.55612506|9800|1 +638741.65395125|220534.38727668|127.42772334|9801|1 +638746.79363088|220529.75783551|127.23724156|9802|1 +638751.93372551|220525.1289588|127.11593709|9803|1 +638757.02655015|220520.54232951|126.9750989|9804|1 +638762.16961712|220515.90808544|126.66082908|9805|1 +638767.31405623|220511.27242341|126.33451346|9806|1 +638772.41189448|220506.67849036|125.99458934|9807|1 +638777.60614538|220501.99904608|125.74572962|9808|1 +638782.75560574|220497.35780568|125.34582764|9809|1 +638787.85584216|220492.76331687|125.1256453|9810|1 +638793.00635569|220488.12274505|124.84526185|9811|1 +638798.44776048|220483.21982619|124.52222046|9812|1 +638803.3036018|220478.84307524|124.1480658|9813|1 +638808.45782988|220474.19930402|123.88161642|9814|1 +638813.61293828|220469.55507741|123.64063529|9815|1 +638818.76767399|220464.91220975|123.47511018|9816|1 +638823.92817131|220460.26165356|123.12900038|9817|1 +638829.08828439|220455.61255152|122.86459739|9818|1 +638834.20429068|220451.00188427|122.51029273|9819|1 +638839.37098041|220446.34529955|122.13449166|9820|1 +638844.54172229|220441.68411492|121.69059228|9821|1 +638849.66491177|220437.06635068|121.29383431|9822|1 +638854.83850499|220432.40318554|120.89467648|9823|1 +638860.01443695|220427.73782261|120.48990038|9824|1 +638865.1317655|220423.12994521|120.4313736|9825|1 +638870.26015816|220418.50849028|120.11114135|9826|1 +638875.43213807|220413.85017984|119.96368028|9827|1 +638880.55777962|220409.23341516|119.80648026|9828|1 +638885.68295089|220404.61774952|119.69950983|9829|1 +638890.86396295|220399.94991101|119.45383131|9830|1 +638895.95031192|220395.36720685|119.2060971|9831|1 +638901.08477232|220390.74186276|119.00674143|9832|1 +638906.22403928|220386.11132518|118.74547314|9833|1 +638911.31417196|220381.52578008|118.5421177|9834|1 +638916.45783251|220376.89118186|118.27536136|9835|1 +638921.60428646|220372.25388899|117.99659642|9836|1 +638926.70358285|220367.65860987|117.73182135|9837|1 +638931.8584132|220363.01134368|117.37294952|9838|1 +638936.96410177|220358.40906979|117.07145104|9839|1 +638942.07711166|220353.79900019|116.68304606|9840|1 +638947.24277854|220349.14118742|116.26950769|9841|1 +638952.31107086|220344.57168473|115.90720349|9842|1 +638957.43360584|220339.95267231|115.49489295|9843|1 +638962.5496352|220335.34155954|115.2323038|9844|1 +638967.62145056|220330.76979574|114.93898159|9845|1 +638972.74037853|220326.15648152|114.70804638|9846|1 +638977.82504996|220321.57149967|114.29691717|9847|1 +638982.90756861|220316.98946738|113.96058354|9848|1 +638988.03376619|220312.36966625|113.73673629|9849|1 +638993.06595488|220307.83426457|113.49977353|9850|1 +638998.15963479|220303.24155963|113.12044709|9851|1 +639003.24670829|220298.6565758|112.87183851|9852|1 +639008.2853752|220294.11555938|112.65359093|9853|1 +639013.37581596|220289.52786743|112.43009715|9854|1 +639018.42301944|220284.97854106|112.16842888|9855|1 +639023.48176077|220280.41728357|111.79500906|9856|1 +639028.49132249|220275.90084906|111.46370769|9857|1 +639033.5506207|220271.33999878|111.15857222|9858|1 +639038.61493265|220266.77428476|110.82867542|9859|1 +639043.64443361|220262.23806545|110.36687012|9860|1 +639043.79630581|220257.7186727|110.42161108|9861|1 +639038.74246867|220262.26959521|110.54126913|9862|1 +639033.62462368|220266.88119803|110.87658887|9863|1 +639028.54866634|220271.45682625|111.33781745|9864|1 +639023.44550152|220276.05377765|111.56816664|9865|1 +639018.33207006|220280.66232839|111.9664501|9866|1 +639013.22797582|220285.26136349|112.28431041|9867|1 +639008.13472487|220289.84918501|112.49682809|9868|1 +639003.04408201|220294.43467634|112.70957832|9869|1 +638997.90687746|220299.06221072|112.92803054|9870|1 +638992.80816127|220303.65760624|113.32773718|9871|1 +638987.71980067|220308.24222357|113.62200818|9872|1 +638982.59014695|220312.86310832|113.84773438|9873|1 +638977.45759854|220317.4877461|114.15469301|9874|1 +638972.32082664|220322.11767997|114.5677942|9875|1 +638967.19655087|220326.73430408|114.83202046|9876|1 +638962.07711333|220331.34606986|115.05927216|9877|1 +638956.95852061|220335.95744392|115.31174098|9878|1 +638951.78482147|220340.62056794|115.71433116|9879|1 +638946.66502489|220345.23453812|116.07342624|9880|1 +638941.54572034|220349.84860737|116.47023072|9881|1 +638936.37919764|220354.50559612|116.89302436|9882|1 +638931.26833921|220359.11132121|117.23454839|9883|1 +638926.05834515|220363.80762132|117.6655834|9884|1 +638920.95736574|220368.40319275|117.91447103|9885|1 +638915.80694162|220373.04421477|118.22715955|9886|1 +638910.61798251|220377.71783532|118.38590367|9887|1 +638905.52571451|220382.30492776|118.58596627|9888|1 +638900.33362311|220386.98349863|118.89541777|9889|1 +638895.19495212|220391.61307107|119.14149627|9890|1 +638890.058544|220396.24054308|119.38175185|9891|1 +638884.87516061|220400.9105596|119.63686237|9892|1 +638879.74692414|220405.52924393|119.77203578|9893|1 +638874.61929289|220410.14775109|119.93251003|9894|1 +638869.44515638|220414.80812663|120.08946821|9895|1 +638864.26308583|220419.47931234|120.50904344|9896|1 +638859.14689298|220424.08506897|120.48990968|9897|1 +638853.96956977|220428.7516798|120.88563516|9898|1 +638848.79660104|220433.41343991|121.21333674|9899|1 +638843.67134468|220438.03332124|121.61980576|9900|1 +638838.49934594|220442.69564123|122.04843162|9901|1 +638833.33175008|220447.35289079|122.3965134|9902|1 +638828.16536087|220452.00942421|122.77012855|9903|1 +638823.00371853|220456.66015051|123.03190844|9904|1 +638817.84140041|220461.31280472|123.38789673|9905|1 +638812.73202252|220465.91591568|123.60960457|9906|1 +638807.52762184|220470.60476877|123.83920962|9907|1 +638802.37204526|220475.25012364|124.10309171|9908|1 +638797.21846372|220479.89326928|124.33626864|9909|1 +638792.07372872|220484.53038194|124.70777229|9910|1 +638786.9219127|220489.17250556|124.97936556|9911|1 +638781.77081825|220493.81460677|125.29518877|9912|1 +638776.62219031|220498.45338714|125.53027257|9913|1 +638771.4249226|220503.1381557|125.92043558|9914|1 +638766.3269707|220507.73116912|126.14556648|9915|1 +638761.13301137|220512.41231571|126.48693237|9916|1 +638755.98902511|220517.04735266|126.74900992|9917|1 +638750.84577786|220521.68261095|127.07401399|9918|1 +638745.70487302|220526.31231805|127.14952581|9919|1 +638740.56438783|220530.94210314|127.25670088|9920|1 +638735.37640131|220535.61522067|127.40107375|9921|1 +638730.28507646|220540.20059351|127.49737504|9922|1 +638725.0980145|220544.86997923|127.43036504|9923|1 +638719.9591607|220549.49717444|127.45188935|9924|1 +638714.86788238|220554.07936305|127.31785075|9925|1 +638709.72914904|220558.70649145|127.3401006|9926|1 +638704.58994964|220563.33285195|127.27526722|9927|1 +638699.49814072|220567.91575358|127.15452086|9928|1 +638694.36052452|220572.5436766|127.3028935|9929|1 +638689.22211861|220577.17086135|127.34544912|9930|1 +638684.13227844|220581.75490664|127.4317045|9931|1 +638678.99660458|220586.38235815|127.66870446|9932|1 +638673.86040322|220591.00935479|127.83738287|9933|1 +638668.77388866|220595.59263134|128.08063363|9934|1 +638663.68415635|220600.17579334|128.10534845|9935|1 +638653.45817135|220609.38691932|128.20644945|9936|1 +638648.37094926|220613.9707668|128.34428318|9937|1 +638643.27647575|220618.55683897|128.16989347|9938|1 +638638.18450971|220623.14257164|128.13314215|9939|1 +638633.0985127|220627.72640649|128.346497|9940|1 +638628.01143718|220632.31062463|128.51630093|9941|1 +638622.96456842|220636.85488346|128.41576733|9942|1 +638617.87099453|220641.44222223|128.38593653|9943|1 +638612.7757845|220646.03062087|128.32508431|9944|1 +638607.72900311|220650.57588793|128.29965325|9945|1 +638602.68151748|220655.1218043|128.2742129|9946|1 +638597.63595974|220659.66703466|128.32368904|9947|1 +638592.58729645|220664.21412817|128.30445297|9948|1 +638587.53305873|220668.76453081|128.16032195|9949|1 +638582.48236555|220673.31339713|128.13484438|9950|1 +638577.43207854|220677.86234344|128.14057427|9951|1 +638572.42734604|220682.36969665|128.10575773|9952|1 +638567.42383849|220686.87664903|128.12065917|9953|1 +638562.4208783|220691.38355063|128.16653553|9954|1 +638557.42232872|220695.88804518|128.32453551|9955|1 +638552.42323925|220700.39303745|128.48227503|9956|1 +638547.4211211|220704.90007829|128.58985938|9957|1 +638542.46842015|220709.36315557|128.7371065|9958|1 +638537.46613408|220713.87071439|128.8690894|9959|1 +638532.50474888|220718.3397355|128.87830746|9960|1 +638527.54838751|220722.80579147|128.99937008|9961|1 +638522.59642035|220727.26919012|129.21353418|9962|1 +638517.64490605|220731.73244633|129.44594837|9963|1 +638512.68877704|220736.19892153|129.60932477|9964|1 +638507.79208161|220740.61463084|129.973387|9965|1 +638502.84180702|220745.07748298|130.25417972|9966|1 +638497.93927276|220749.49734245|130.53592123|9967|1 +638492.98384947|220753.96398686|130.75339676|9968|1 +638488.12588718|220758.34319401|130.99768931|9969|1 +638483.17301418|220762.80841514|131.27637984|9970|1 +638478.30847997|220767.19251781|131.44437922|9971|1 +638473.39071721|220771.62380042|131.55466108|9972|1 +638468.46779473|220776.05896514|131.60830443|9973|1 +638463.5980919|220780.4473913|131.74911472|9974|1 +638458.67749071|220784.88142198|131.8699634|9975|1 +638453.80072499|220789.27536112|131.94701001|9976|1 +638448.86096883|220793.72365452|131.84880186|9977|1 +638443.97679067|220798.12350773|131.86842861|9978|1 +638439.10075381|220802.51774879|132.01173177|9979|1 +638434.25936096|220806.87862517|131.99863487|9980|1 +638429.36125909|220811.28949089|131.90397999|9981|1 +638424.55054185|220815.6284838|132.30569581|9982|1 +638419.6203969|220820.0635092|131.86759145|9983|1 +638414.78591867|220824.42048112|132.01881042|9984|1 +638409.92744328|220828.79547474|131.90807278|9985|1 +638405.070616|220833.16958658|131.83997447|9986|1 +638400.19843569|220837.55547745|131.62191293|9987|1 +638395.37556661|220841.89743654|131.43929115|9988|1 +638390.53082345|220846.2634949|131.57346927|9989|1 +638385.68617063|220850.62251441|131.20261675|9990|1 +638380.84089143|220854.98244342|130.85566049|9991|1 +638377.84245169|220854.39460285|130.61240043|9992|1 +638382.83774334|220849.88738667|131.06339706|9993|1 +638387.74713975|220845.45982603|131.67178905|9994|1 +638392.62420325|220841.04954517|131.42771044|9995|1 +638397.58050805|220836.57276196|131.542206|9996|1 +638402.48335405|220832.14376002|131.62610803|9997|1 +638407.38833395|220827.71349607|131.75908622|9998|1 +638412.34050718|220823.24080484|131.90327306|9999|1 +638417.27576681|220818.78092388|131.87301438|10000|1 +638422.2174541|220814.31660311|131.94176381|10001|1 +638427.13890576|220809.86739899|131.7862009|10002|1 +638432.06035921|220805.42683913|132.25219199|10003|1 +638437.01973257|220800.94215958|132.00842964|10004|1 +638441.88513299|220796.54293073|131.81389229|10005|1 +638446.85692524|220792.04970013|131.7620907|10006|1 +638451.84481119|220787.545213|131.94648911|10007|1 +638456.76714821|220783.09697722|131.92478807|10008|1 +638461.72638576|220778.61352325|131.76613697|10009|1 +638466.69192882|220774.12584471|131.71296802|10010|1 +638471.65000065|220769.64366416|131.57227865|10011|1 +638476.61325988|220765.15807995|131.52463495|10012|1 +638481.56103505|220760.68349387|131.26482703|10013|1 +638486.5116933|220756.20706608|131.06067164|10014|1 +638491.50855724|220751.68869043|130.83867545|10015|1 +638496.45787091|220747.21351391|130.64002671|10016|1 +638501.45157549|220742.69759975|130.39259016|10017|1 +638506.44049041|220738.18503008|130.07636696|10018|1 +638511.3755535|220733.71977864|129.67088393|10019|1 +638516.37545463|220729.20012097|129.55983002|10020|1 +638521.36396234|220724.68811713|129.26148484|10021|1 +638526.36292655|220720.16944404|129.16248603|10022|1 +638531.40558259|220715.61040498|128.99687721|10023|1 +638536.40283043|220711.09324236|128.89757144|10024|1 +638541.39656152|220706.57946779|128.74191552|10025|1 +638546.39428428|220702.06379428|128.67962152|10026|1 +638551.39320423|220697.54762527|128.66077612|10027|1 +638556.42955018|220692.99475493|128.4323524|10028|1 +638561.46917273|220688.44004236|128.28504947|10029|1 +638566.46410648|220683.92689055|128.22829003|10030|1 +638571.50753566|220679.37036085|128.19942661|10031|1 +638576.55091522|220674.81411518|128.18928768|10032|1 +638581.59519606|220670.2576563|128.22284849|10033|1 +638586.6392723|220665.70161731|128.27514307|10034|1 +638591.68609515|220661.14448079|128.42732944|10035|1 +638596.72001619|220656.59434249|128.24853999|10036|1 +638601.7590238|220652.0417797|128.22583436|10037|1 +638606.79883502|220647.48908368|128.24680986|10038|1 +638611.88548988|220642.89390544|128.25315367|10039|1 +638616.87597994|220638.38569312|128.27618487|10040|1 +638621.96404709|220633.79051479|128.37639291|10041|1 +638627.04634732|220629.1979952|128.29562559|10042|1 +638632.08346699|220624.64789555|128.33539068|10043|1 +638637.16212719|220620.05697012|128.13616523|10044|1 +638642.25056491|220615.46305127|128.35572436|10045|1 +638647.28323152|220610.91508868|128.26435301|10046|1 +638652.36193427|220606.32433764|128.08427062|10047|1 +638657.44434796|220601.7328397|128.09181436|10048|1 +638662.52521033|220597.14176196|128.03079471|10049|1 +638667.60494458|220592.55081794|127.90746246|10050|1 +638672.68490835|220587.9595637|127.77803754|10051|1 +638677.76249232|220583.36764457|127.44880116|10052|1 +638682.84300874|220578.7755982|127.30095873|10053|1 +638687.92345186|220574.18316586|127.12203906|10054|1 +638693.00639531|220569.5916031|127.16826889|10055|1 +638698.0881341|220564.99936633|127.08967818|10056|1 +638703.17071394|220560.40774701|127.1112583|10057|1 +638708.2533668|220555.8164035|127.15800903|10058|1 +638713.38414053|220551.18249842|127.26769558|10059|1 +638718.46649612|220546.59112735|127.29614971|10060|1 +638723.54882069|220541.99915353|127.28103432|10061|1 +638728.67927885|220537.36514338|127.36671299|10062|1 +638733.76189742|220532.77253385|127.32706881|10063|1 +638738.84497555|220528.17879174|127.23762293|10064|1 +638743.9767681|220523.54031246|127.09308263|10065|1 +638749.06153545|220518.94352895|126.89788485|10066|1 +638754.19500757|220514.30307168|126.72286263|10067|1 +638759.28264566|220509.70175321|126.39070549|10068|1 +638764.4183996|220505.05868336|126.17895985|10069|1 +638769.50758121|220500.45708183|125.92858394|10070|1 +638774.64771919|220495.80750036|125.53643035|10071|1 +638779.73957909|220491.20327491|125.27412955|10072|1 +638784.88204246|220486.55218513|124.92655007|10073|1 +638790.02445174|220481.90243687|124.67315108|10074|1 +638795.11081599|220477.30251061|124.36760633|10075|1 +638800.2557423|220472.65029564|124.10253361|10076|1 +638805.40010519|220467.999886|123.93162277|10077|1 +638810.5002522|220463.38765972|123.64000277|10078|1 +638815.64937653|220458.73162114|123.37630671|10079|1 +638820.80078463|220454.07307467|123.08191479|10080|1 +638825.90543353|220449.45683804|122.7976153|10081|1 +638831.06078862|220444.79435354|122.47919689|10082|1 +638836.22192055|220440.1247319|122.02400516|10083|1 +638841.33543692|220435.49879892|121.62228934|10084|1 +638846.44819545|220430.87475674|121.30829857|10085|1 +638851.61294648|220426.20296881|120.93575313|10086|1 +638856.72949141|220421.57548042|120.62257162|10087|1 +638861.88406742|220416.91834272|120.64417034|10088|1 +638867.0128973|220412.27643681|120.09473301|10089|1 +638872.12419452|220407.65756679|120.06345114|10090|1 +638877.29185564|220402.98545092|119.86196536|10091|1 +638882.41212847|220398.35637006|119.68181785|10092|1 +638887.53786924|220393.72112277|119.41472665|10093|1 +638892.71314164|220389.04140549|119.16501116|10094|1 +638897.84200952|220384.40357428|118.9175653|10095|1 +638902.97287507|220379.76392813|118.67054733|10096|1 +638908.10425741|220375.1242388|118.45512749|10097|1 +638913.23917618|220370.48091092|118.20897458|10098|1 +638918.37587097|220365.83605118|117.96951895|10099|1 +638923.5190283|220361.18685507|117.6681879|10100|1 +638928.62048792|220356.57515411|117.29350304|10101|1 +638933.77572859|220351.91420594|116.86851418|10102|1 +638938.92944681|220347.25566359|116.51879529|10103|1 +638944.04301046|220342.63195935|116.07054269|10104|1 +638949.2023701|220337.96821913|115.71561481|10105|1 +638954.36323374|220333.30337806|115.379923|10106|1 +638959.47544168|220328.68303439|115.08854485|10107|1 +638964.63912785|220324.01614555|114.79124147|10108|1 +638969.75073786|220319.39753688|114.58777441|10109|1 +638974.87089308|220314.76990205|114.2913454|10110|1 +638979.9991634|220310.13380387|113.91447463|10111|1 +638985.12256134|220305.50365377|113.64992281|10112|1 +638990.25120072|220300.86823921|113.34848944|10113|1 +638995.3334884|220296.27471512|113.05302782|10114|1 +639000.46352069|220291.63880049|112.80826087|10115|1 +639005.54707357|220287.04488835|112.56922382|10116|1 +639010.62901973|220282.45319215|112.38629509|10117|1 +639015.72215623|220277.84982342|112.09180084|10118|1 +639020.82745927|220273.23381843|111.67960192|10119|1 +639025.92900373|220268.62239826|111.35462576|10120|1 +639031.04014626|220264.0011831|110.94929155|10121|1 +639036.09293636|220259.43474951|110.69776222|10122|1 +639041.13394157|220254.88135814|110.61997146|10123|1 +639046.22242161|220250.28574302|110.58749896|10124|1 +639047.52874268|220245.30776252|110.58894073|10125|1 +639042.42851696|220249.91124188|110.70682215|10126|1 +639037.33975563|220254.50089014|110.71341711|10127|1 +639032.18351181|220259.15467457|110.97304829|10128|1 +639027.08696156|220263.75320457|111.1354108|10129|1 +639021.93593338|220268.40240992|111.40220435|10130|1 +639016.83697448|220273.00453844|111.66454235|10131|1 +639011.72175931|220277.62483886|112.17556334|10132|1 +639006.58102472|220282.26455784|112.42505559|10133|1 +639001.49720013|220286.85185735|112.60135216|10134|1 +638996.36678001|220291.48134808|112.7832949|10135|1 +638991.2242297|220296.12468157|113.1707418|10136|1 +638986.14026104|220300.71373742|113.45972008|10137|1 +638981.01465016|220305.33955093|113.68632066|10138|1 +638975.88152669|220309.97426098|114.06256821|10139|1 +638970.75374659|220314.6036454|114.40191562|10140|1 +638965.64114512|220319.21664275|114.54882788|10141|1 +638960.52681538|220323.83209537|114.75827598|10142|1 +638955.40598407|220328.4554404|115.11118537|10143|1 +638950.29009233|220333.07382312|115.42711091|10144|1 +638945.168675|220337.69912592|115.88033066|10145|1 +638940.05588816|220342.31526749|116.23429116|10146|1 +638934.94813859|220346.9262706|116.5449891|10147|1 +638929.83940758|220351.53905037|116.91826938|10148|1 +638924.68014074|220356.19873381|117.38000026|10149|1 +638919.58021891|220360.80263652|117.6854706|10150|1 +638914.48230076|220365.40484066|117.99743358|10151|1 +638909.34658425|220370.03887838|118.14269012|10152|1 +638904.25541127|220374.63433301|118.40537228|10153|1 +638899.11592409|220379.27408334|118.71343782|10154|1 +638894.02926578|220383.86540741|118.97040869|10155|1 +638888.89736462|220388.49730264|119.20442278|10156|1 +638883.76634148|220393.12877504|119.46379352|10157|1 +638878.73702332|220397.66728912|119.64463865|10158|1 +638873.61350099|220402.29071826|119.81100093|10159|1 +638868.49425675|220406.90934047|119.90910676|10160|1 +638863.41088655|220411.50077649|120.37946969|10161|1 +638858.29452111|220416.11701747|120.49064452|10162|1 +638853.17719531|220420.73510094|120.67078272|10163|1 +638848.10372481|220425.31608179|121.02946852|10164|1 +638842.93713283|220429.98067508|121.3503426|10165|1 +638837.86850233|220434.5568862|121.67827673|10166|1 +638832.75097634|220439.17855121|122.09681946|10167|1 +638827.63585356|220443.79788707|122.50323268|10168|1 +638822.57318445|220448.36859366|122.81917682|10169|1 +638817.46342463|220452.98225637|123.1636588|10170|1 +638812.35847125|220457.58976464|123.37731131|10171|1 +638807.25241791|220462.19985289|123.70362692|10172|1 +638802.14966907|220466.80584585|123.94904499|10173|1 +638797.04901745|220471.40944012|124.15725596|10174|1 +638792.00741288|220475.96000926|124.38706564|10175|1 +638786.86051447|220480.60564849|124.61230816|10176|1 +638781.76134372|220485.20962194|124.93988882|10177|1 +638776.71230811|220489.76764914|125.21955603|10178|1 +638771.61604156|220494.3689489|125.54125797|10179|1 +638766.47358804|220499.01144328|125.8241622|10180|1 +638761.37976817|220503.61092253|126.17144402|10181|1 +638756.28819662|220508.2069048|126.4127321|10182|1 +638751.19768238|220512.80195086|126.65421552|10183|1 +638746.10825666|220517.39585314|126.88342059|10184|1 +638741.0198657|220521.98858645|127.09407792|10185|1 +638735.93282|220526.57757997|127.12370408|10186|1 +638730.84605814|220531.16695173|127.19726252|10187|1 +638725.71176283|220535.79865995|127.22664684|10188|1 +638720.67352087|220540.34249514|127.1761847|10189|1 +638715.53915833|220544.97203641|127.0436902|10190|1 +638710.45297679|220549.55964798|127.0243332|10191|1 +638705.4145653|220554.10359832|126.9677784|10192|1 +638700.32848549|220558.69141041|126.96740633|10193|1 +638695.19415948|220563.32230953|126.92983645|10194|1 +638690.15536485|220567.86656808|126.86720759|10195|1 +638685.07088796|220572.45526416|127.02984915|10196|1 +638679.98552065|220577.04337989|127.09268265|10197|1 +638674.90314239|220581.63179027|127.36815476|10198|1 +638669.82079207|220586.21966929|127.60631744|10199|1 +638664.78582296|220590.76369987|127.76881018|10200|1 +638659.70365628|220595.35065653|127.95092966|10201|1 +638654.61838503|220599.93801216|127.97700254|10202|1 +638649.53348013|220604.52545226|128.03450612|10203|1 +638644.49866529|220609.06912626|128.19709187|10204|1 +638639.40898775|220613.65820103|128.0611371|10205|1 +638634.36924822|220618.20373571|128.03630136|10206|1 +638629.2819078|220622.79275218|128.04431019|10207|1 +638624.20048186|220627.37967499|128.2836542|10208|1 +638619.21088623|220631.88159372|128.37568598|10209|1 +638614.1183877|220636.47340771|128.24660522|10210|1 +638609.02831737|220641.0645248|128.22392749|10211|1 +638603.98652441|220645.61245533|128.23041083|10212|1 +638598.94239547|220650.16180899|128.18691572|10213|1 +638593.90261288|220654.70927218|128.28703074|10214|1 +638588.8607744|220659.25798833|128.34339021|10215|1 +638583.77044884|220663.8505705|128.40246579|10216|1 +638578.76836072|220668.36092609|128.28123574|10217|1 +638573.72134886|220672.91331785|128.26263218|10218|1 +638568.67451222|220677.46592246|128.2690039|10219|1 +638563.67499851|220681.97583158|128.2784173|10220|1 +638558.63150769|220686.52701862|128.39701495|10221|1 +638553.63733154|220691.03422689|128.55586138|10222|1 +638548.59113345|220695.58745532|128.64312135|10223|1 +638543.59605912|220700.0955959|128.80783721|10224|1 +638538.59691947|220704.60646209|128.90367341|10225|1 +638533.59437437|220709.11971551|128.94940094|10226|1 +638528.59684636|220713.63002696|129.10718697|10227|1 +638523.64751825|220718.09700825|129.27931635|10228|1 +638518.64646674|220722.61000521|129.39912323|10229|1 +638513.70028848|220727.07529422|129.65152693|10230|1 +638508.70202883|220731.58684308|129.84560849|10231|1 +638503.75801401|220736.05099051|130.15331126|10232|1 +638498.81506411|220740.51453544|130.48547769|10233|1 +638493.81638607|220745.02684576|130.70362296|10234|1 +638488.91424467|220749.45216421|130.93654874|10235|1 +638483.91564093|220753.96478619|131.17897164|10236|1 +638479.00696144|220758.39497847|131.33606004|10237|1 +638474.05153938|220762.86793039|131.52896958|10238|1 +638469.13563503|220767.30362531|131.61018339|10239|1 +638464.22108571|220771.73862327|131.72815782|10240|1 +638459.30082574|220776.17792132|131.78328014|10241|1 +638454.38143175|220780.61688173|131.86895881|10242|1 +638449.40631044|220785.10505827|131.87283765|10243|1 +638444.51670314|220789.51425077|131.75237964|10244|1 +638439.59368002|220793.95669151|131.84886697|10245|1 +638434.72537939|220798.35108877|132.0443159|10246|1 +638429.78264425|220802.80839677|131.92812741|10247|1 +638424.94566014|220807.17207271|131.94778206|10248|1 +638420.02262497|220811.61559784|132.11643257|10249|1 +638415.1677396|220815.99301749|131.96034876|10250|1 +638410.22505094|220820.45161543|131.93510374|10251|1 +638405.41635922|220824.78765197|131.80163255|10252|1 +638400.53112011|220829.19643728|131.92345791|10253|1 +638395.66157618|220833.5861586|131.69579694|10254|1 +638390.74448487|220838.01938719|131.50565932|10255|1 +638385.9411228|220842.35279277|131.52370477|10256|1 +638381.03646102|220846.77008597|130.99567083|10257|1 +638376.19501934|220851.13294252|130.65798844|10258|1 +638371.20718286|220852.71385087|130.2635001|10259|1 +638376.12807303|220848.26219274|130.47159944|10260|1 +638381.01810886|220843.84148831|130.89773243|10261|1 +638385.95621906|220839.37769399|131.35308229|10262|1 +638390.85858794|220834.9411473|131.44776507|10263|1 +638395.76643901|220830.5008394|131.62881484|10264|1 +638400.68654178|220826.05178227|131.97701754|10265|1 +638405.55123567|220821.6442645|131.71570274|10266|1 +638410.50318034|220817.16442768|131.92541129|10267|1 +638415.3835481|220812.74582614|131.88652056|10268|1 +638420.32380153|220808.27529903|132.00824361|10269|1 +638425.19495069|220803.86402541|131.89965467|10270|1 +638430.14808583|220799.38476828|132.2318118|10271|1 +638435.05228871|220794.94145137|131.9725899|10272|1 +638439.96550007|220790.49179986|131.84343473|10273|1 +638444.8731061|220786.04640331|131.65771546|10274|1 +638449.80358561|220781.58483887|131.79503759|10275|1 +638454.72297503|220777.13153681|131.80737174|10276|1 +638459.68408049|220772.63952356|131.75127273|10277|1 +638464.63936995|220768.1518809|131.63255416|10278|1 +638469.5481675|220763.70686718|131.55623308|10279|1 +638474.50305807|220759.21997411|131.4678104|10280|1 +638479.45256254|220754.73705951|131.31670304|10281|1 +638484.39453339|220750.25953802|131.06549926|10282|1 +638489.3420865|220745.77834292|130.91357335|10283|1 +638494.2824407|220741.30224021|130.66150451|10284|1 +638499.27222694|220736.78186295|130.44169423|10285|1 +638504.20412916|220732.31169988|130.07039522|10286|1 +638509.19374418|220727.79170064|129.86872341|10287|1 +638514.17872332|220723.27491022|129.59822775|10288|1 +638519.17011521|220718.75405378|129.45222707|10289|1 +638524.15967723|220714.23457093|129.28729727|10290|1 +638529.09932282|220709.75992522|129.10117803|10291|1 +638534.13952693|220705.19567731|129.01288556|10292|1 +638539.12982782|220700.67648558|128.89715286|10293|1 +638544.1196794|220696.15777794|128.78741981|10294|1 +638549.10612024|220691.64134868|128.62129008|10295|1 +638554.09458481|220687.12385634|128.51108263|10296|1 +638559.13192535|220682.56261768|128.43478946|10297|1 +638564.12091218|220678.04523313|128.36789109|10298|1 +638569.15783868|220673.48468711|128.31644296|10299|1 +638574.19478144|220668.92437137|128.28369141|10300|1 +638579.19264694|220664.40284627|128.49725089|10301|1 +638584.22469258|220659.84578846|128.38319251|10302|1 +638589.2102105|220655.33154313|128.32163335|10303|1 +638594.24435503|220650.7737807|128.29482563|10304|1 +638599.27511082|220646.21793086|128.1867948|10305|1 +638604.31095776|220641.65982403|128.24734937|10306|1 +638609.34405185|220637.10331992|128.2454146|10307|1 +638614.37969846|220632.54597874|128.3496224|10308|1 +638619.41004397|220627.99122297|128.29763477|10309|1 +638624.43288885|220623.43955672|127.98320682|10310|1 +638629.51312176|220618.84093769|128.02317655|10311|1 +638634.49530116|220614.33007843|127.99763388|10312|1 +638639.5723283|220609.7330129|127.94400914|10313|1 +638644.65475747|220605.13473236|128.15301075|10314|1 +638649.68164254|220600.58205164|128.03216207|10315|1 +638654.75700437|220595.98592853|127.94146045|10316|1 +638664.8588719|220586.8371465|127.71137171|10317|1 +638669.98001942|220582.19727544|127.4578983|10318|1 +638675.00612922|220577.64355576|127.21842407|10319|1 +638680.08191368|220573.04636755|127.08468312|10320|1 +638685.15633479|220568.44829828|126.80112777|10321|1 +638690.23450045|220563.8514749|126.84895751|10322|1 +638700.38908606|220554.65682351|126.76390206|10323|1 +638705.41972636|220550.10470453|126.93707323|10324|1 +638710.54513613|220545.46447927|126.94201248|10325|1 +638715.6228154|220540.86820583|127.00319026|10326|1 +638720.70049628|220536.27279429|127.12704341|10327|1 +638725.77800932|220531.67611662|127.1510606|10328|1 +638730.85563212|220527.07932919|127.17526382|10329|1 +638735.93347425|220522.48197981|127.1746406|10330|1 +638741.060466|220517.83710457|126.95648604|10331|1 +638746.14019002|220513.23548513|126.77513861|10332|1 +638751.22113172|220508.63196561|126.53772937|10333|1 +638756.30269648|220504.02848331|126.34428033|10334|1 +638761.38585847|220499.42258004|126.08228649|10335|1 +638766.47114545|220494.81351325|125.73304199|10336|1 +638771.60540084|220490.16060258|125.41698623|10337|1 +638776.69209593|220485.55164359|125.16826603|10338|1 +638781.78057363|220480.94053452|124.88230152|10339|1 +638786.91835669|220476.28483852|124.59866245|10340|1 +638791.99942296|220471.68032018|124.30657737|10341|1 +638797.08818992|220467.07136388|124.19629551|10342|1 +638802.22929875|220462.41280746|123.92631145|10343|1 +638807.3244369|220457.7954419|123.62928713|10344|1 +638812.46895208|220453.1335206|123.34146226|10345|1 +638817.56595245|220448.51514943|123.0950675|10346|1 +638822.66740204|220443.89116422|122.73656774|10347|1 +638827.81797163|220439.22312891|122.40639188|10348|1 +638832.9743518|220434.54790483|121.93944271|10349|1 +638838.08052783|220429.92005499|121.61335033|10350|1 +638843.18873563|220425.29026905|121.28133272|10351|1 +638848.35018126|220420.61096283|120.85335799|10352|1 +638853.45733742|220415.98411768|120.66567605|10353|1 +638858.61588424|220411.31012877|120.43217355|10354|1 +638863.72508899|220406.68185049|120.27648972|10355|1 +638868.84918526|220402.03528273|119.77806334|10356|1 +638874.00598704|220397.36538004|119.72701519|10357|1 +638879.11894399|220392.73411483|119.60369223|10358|1 +638884.23721422|220388.09680943|119.39343488|10359|1 +638889.36008241|220383.45446107|119.12120909|10360|1 +638894.53332009|220378.76651197|118.84780198|10361|1 +638899.61135708|220374.16489771|118.59050554|10362|1 +638904.74191754|220369.51512589|118.28841175|10363|1 +638909.91902606|220364.82435347|118.06652717|10364|1 +638915.00140644|220360.2192987|117.84759126|10365|1 +638920.18911203|220355.51520837|117.51492253|10366|1 +638925.28579104|220350.89258228|117.12249919|10367|1 +638930.43244289|220346.22498265|116.74828872|10368|1 +638935.57885407|220341.55829745|116.42445668|10369|1 +638940.73137486|220336.88519512|116.03889804|10370|1 +638945.83625758|220332.25562517|115.68545845|10371|1 +638950.9933768|220327.57852174|115.31340599|10372|1 +638956.10277469|220322.94501463|114.97323073|10373|1 +638961.26452156|220318.2638801|114.61473096|10374|1 +638966.41646167|220313.59431079|114.44968024|10375|1 +638971.52294905|220308.96567423|114.27254651|10376|1 +638976.64778057|220304.31712367|113.85950113|10377|1 +638981.82027767|220299.62621896|113.50330821|10378|1 +638986.93786231|220294.98681316|113.27774943|10379|1 +638992.06290703|220290.33968925|112.98425048|10380|1 +638997.19253172|220285.68806296|112.66634367|10381|1 +639002.3082906|220281.05209976|112.57255386|10382|1 +639007.43720897|220276.40222263|112.33631664|10383|1 +639012.52596532|220271.78760751|112.02484666|10384|1 +639017.66628776|220267.12634727|111.71496728|10385|1 +639022.74895818|220262.5192969|111.55316288|10386|1 +639027.84079003|220257.9028186|111.31092602|10387|1 +639032.98362331|220253.24029809|111.07686542|10388|1 +639037.92676052|220248.77585159|112.08649883|10389|1 +639043.08872583|220244.08554092|111.10697527|10390|1 +639047.58767395|220235.72564965|111.4988033|10391|1 +639042.47397295|220240.34729973|111.27609086|10392|1 +639037.25918707|220245.07806192|112.26937176|10393|1 +639032.22162575|220249.62197383|111.19124006|10394|1 +639027.12799695|220254.23469322|111.38670759|10395|1 +639021.93232329|220258.94113187|111.67263489|10396|1 +639016.79956966|220263.58861027|111.81792864|10397|1 +639011.66358295|220268.24009119|112.03819471|10398|1 +639006.47745136|220272.93778969|112.31375983|10399|1 +639001.34464579|220277.58687866|112.56620074|10400|1 +638996.21915104|220282.22848845|112.75697088|10401|1 +638991.05345695|220286.9053804|112.86667603|10402|1 +638985.92455931|220291.55178975|113.1765089|10403|1 +638980.80191003|220296.19185932|113.43706096|10404|1 +638975.62405303|220300.88388267|113.83446075|10405|1 +638970.49646473|220305.53066665|114.25145008|10406|1 +638965.34284436|220310.19683243|114.37021517|10407|1 +638960.23352197|220314.82430665|114.58907666|10408|1 +638955.11724203|220319.46021375|114.95761305|10409|1 +638949.95714997|220324.13538864|115.29567681|10410|1 +638944.84668043|220328.76598722|115.65885537|10411|1 +638939.6929867|220333.43515032|115.97932017|10412|1 +638934.54183573|220338.1020345|116.30034307|10413|1 +638929.43952453|220342.72522134|116.65854518|10414|1 +638924.33807565|220347.34808944|117.0481966|10415|1 +638919.19084765|220352.01245619|117.43914096|10416|1 +638914.09811399|220356.62650445|117.76099172|10417|1 +638908.96343492|220361.27743571|118.0033123|10418|1 +638903.82966388|220365.92792353|118.27104533|10419|1 +638898.74607863|220370.53304095|118.54399666|10420|1 +638893.61858638|220375.17726679|118.76888571|10421|1 +638888.54136529|220379.77595496|118.99248181|10422|1 +638883.41398699|220384.42135279|119.30538427|10423|1 +638878.29214559|220389.06061294|119.53765892|10424|1 +638873.22702646|220393.64619883|119.60609209|10425|1 +638868.11747725|220398.27119614|119.61446369|10426|1 +638862.6997318|220403.29100763|127.81383077|10427|1 +638863.00205865|220402.90417099|119.81031259|10428|2 +638857.9247446|220407.50720088|120.32849595|10429|1 +638852.8124333|220412.1376685|120.54368325|10430|1 +638847.70283729|220416.76525729|120.72803516|10431|1 +638842.63652983|220421.35643472|121.10960333|10432|1 +638837.52620062|220425.9865777|121.42557537|10433|1 +638832.4142049|220430.61992493|121.86048923|10434|1 +638827.35547794|220435.20350075|122.18646068|10435|1 +638822.25055829|220439.82889031|122.50954858|10436|1 +638817.19360905|220444.41186081|122.90449271|10437|1 +638812.09180241|220449.03473597|123.24682599|10438|1 +638806.99485232|220453.65129372|123.45207898|10439|1 +638801.94451139|220458.22744883|123.78498956|10440|1 +638796.84897646|220462.84373216|124.05938266|10441|1 +638791.75570203|220467.45737087|124.29030857|10442|1 +638786.72197468|220472.01686177|124.50532843|10443|1 +638781.63110649|220476.62809535|124.71786472|10444|1 +638776.58880003|220481.19591477|124.96999867|10445|1 +638771.49832146|220485.80894374|125.33283306|10446|1 +638766.41142068|220490.41628568|125.52098009|10447|1 +638761.37194812|220494.98273479|125.8545697|10448|1 +638756.33382789|220499.54797267|126.18815931|10449|1 +638751.24998479|220504.15303958|126.40797889|10450|1 +638746.16701121|220508.75760225|126.64675549|10451|1 +638741.13346926|220513.31592504|126.78055224|10452|1 +638736.05252188|220517.91789346|126.96337866|10453|1 +638731.02026844|220522.47569847|127.14095887|10454|1 +638725.94107991|220527.07214624|127.04284373|10455|1 +638720.90975067|220531.62579815|126.9829682|10456|1 +638715.83048892|220536.22252278|126.89758719|10457|1 +638710.79903473|220540.77596808|126.81271779|10458|1 +638705.71973295|220545.37329565|126.76507409|10459|1 +638700.68827149|220549.92730881|126.71770944|10460|1 +638695.6078131|220554.52378018|126.53282733|10461|1 +638690.57747367|220559.07927628|126.66044771|10462|1 +638680.42007325|220568.27564748|126.75380033|10463|1 +638675.43953429|220572.78748246|126.98097762|10464|1 +638670.36317663|220577.38561512|127.17159892|10465|1 +638665.28766183|220581.98344316|127.39364163|10466|1 +638660.30883425|220586.49385914|127.62663252|10467|1 +638655.23208335|220591.09087976|127.71755739|10468|1 +638650.20392617|220595.64385353|127.86379992|10469|1 +638645.17363503|220600.19727464|127.90374174|10470|1 +638640.09232166|220604.79509967|127.81377496|10471|1 +638635.10745586|220609.30632754|127.777312|10472|1 +638630.02964402|220613.90365049|127.87491554|10473|1 +638625.00084362|220618.4572767|128.02099064|10474|1 +638620.01358318|220622.97009392|127.94030703|10475|1 +638615.02742808|220627.52914269|131.21147204|10476|1 +638610.27271343|220631.95948171|140.22711651|10477|1 +638604.9172852|220636.63653349|128.12788665|10478|1 +638599.88256037|220641.19365772|128.13620244|10479|1 +638594.89636645|220645.70732836|128.17956732|10480|1 +638589.86198956|220650.26477727|128.23143403|10481|1 +638584.82588363|220654.82336914|128.25204676|10482|1 +638579.83862969|220659.33829929|128.31360592|10483|1 +638574.80616819|220663.89537529|128.45892757|10484|1 +638569.81262277|220668.41426921|128.39523831|10485|1 +638564.77315393|220672.97578533|128.40307971|10486|1 +638559.78204724|220677.49389846|128.43891945|10487|1 +638554.78956875|220682.01309188|128.46204367|10488|1 +638549.75041454|220686.57523991|128.53208604|10489|1 +638544.76311592|220691.09178625|128.69840181|10490|1 +638539.77495285|220695.60903863|128.85823423|10491|1 +638534.78364818|220700.128445|128.96792078|10492|1 +638529.83809877|220704.6060076|129.04851137|10493|1 +638524.7980141|220709.16985573|129.17416907|10494|1 +638519.8585894|220713.6439068|129.39754192|10495|1 +638514.86867862|220718.16323513|129.58732607|10496|1 +638509.87735884|220722.68367544|129.76441329|10497|1 +638504.93676373|220727.15898863|129.99912501|10498|1 +638499.94997961|220731.67674513|130.27542498|10499|1 +638495.06016589|220736.10697418|130.57315624|10500|1 +638490.06716871|220740.62923705|130.7677587|10501|1 +638485.11912317|220745.11027962|130.92603773|10502|1 +638480.17624285|220749.58797149|131.17734382|10503|1 +638475.23010654|220754.06809032|131.3908661|10504|1 +638470.32067197|220758.51279299|131.44916033|10505|1 +638465.36646266|220762.99901328|131.57458549|10506|1 +638460.45797186|220767.44357531|131.68162103|10507|1 +638455.49909423|220771.93360508|131.77507598|10508|1 +638450.581624|220776.3850884|131.79392138|10509|1 +638445.6504769|220780.84668849|131.65041357|10510|1 +638440.72823295|220785.30224716|131.6495392|10511|1 +638435.82507711|220789.7442857|131.91567233|10512|1 +638430.90374429|220794.1997324|131.96348346|10513|1 +638426.05702573|220798.5924919|132.35891128|10514|1 +638421.10349972|220803.07203634|132.0448833|10515|1 +638416.20646767|220807.50224604|131.86065232|10516|1 +638411.32703629|220811.91984021|131.91197952|10517|1 +638406.43048381|220816.35041259|131.78238717|10518|1 +638401.52686463|220820.78660524|131.59624002|10519|1 +638396.69163403|220825.16441955|131.66335234|10520|1 +638391.78688122|220829.60217292|131.51311935|10521|1 +638386.88541003|220834.03783312|131.42440831|10522|1 +638382.00374763|220838.45151707|131.04829098|10523|1 +638377.12838352|220842.86089922|130.77080038|10524|1 +638372.22909491|220847.28881593|130.26915558|10525|1 +638367.35087306|220851.70123248|130.02129115|10526|1 +638361.52903568|220854.14209503|145.99519458|10527|1 +638364.89199245|220850.86051586|130.26541627|10528|1 +638369.77437458|220846.42111836|130.10522107|10529|1 +638374.72603051|220841.92958747|130.70166028|10530|1 +638379.63503263|220837.47074692|130.87557559|10531|1 +638384.56697413|220832.99503158|131.32838607|10532|1 +638389.47842597|220828.53514602|131.58823119|10533|1 +638394.43935543|220824.03097787|131.89014825|10534|1 +638399.31350056|220819.5996988|131.78245229|10535|1 +638404.27298413|220815.08939842|131.56091188|10536|1 +638409.19122838|220810.62599132|132.01144342|10537|1 +638414.17351917|220806.09945663|132.10627503|10538|1 +638419.08153623|220801.63612585|131.90898435|10539|1 +638424.04777038|220797.1304489|132.4512128|10540|1 +638429.03000302|220792.6050436|132.6261141|10541|1 +638433.88970262|220788.17762319|131.87378643|10542|1 +638438.84402032|220783.67291512|131.72444641|10543|1 +638443.79983094|220779.16735356|131.61212746|10544|1 +638448.77904656|220774.64531641|131.83561194|10545|1 +638453.73574947|220770.1396964|131.77873158|10546|1 +638458.69497735|220765.63256472|131.77756885|10547|1 +638463.68868321|220761.09168686|131.60249082|10548|1 +638468.64289625|220756.58861994|131.56964624|10549|1 +638473.63594524|220752.04864409|131.4191063|10550|1 +638478.57850012|220747.55416535|131.24861404|10551|1 +638483.56583898|220743.01853877|131.0415751|10552|1 +638488.55191828|220738.48394605|130.82813653|10553|1 +638493.48824258|220733.99425015|130.60056857|10554|1 +638498.5167775|220729.42016463|130.31965493|10555|1 +638503.49621102|220724.89047725|130.03081617|10556|1 +638508.4812278|220720.35720789|129.84775721|10557|1 +638513.51187685|220715.78211495|129.63527673|10558|1 +638518.44660279|220711.29420741|129.43736283|10559|1 +638523.47628884|220706.72004443|129.23092851|10560|1 +638528.51154288|220702.14249483|129.14301742|10561|1 +638533.49275731|220697.61319562|128.95292631|10562|1 +638538.57350044|220692.99704088|128.84262585|10563|1 +638543.5575373|220688.46858567|128.7334788|10564|1 +638548.5886625|220683.89735699|128.62063896|10565|1 +638553.61966066|220679.32640277|128.52030069|10566|1 +638558.60543557|220674.79755098|128.49806945|10567|1 +638563.68439673|220670.18354529|128.43197102|10568|1 +638568.72150165|220665.60983288|128.53139771|10569|1 +638573.75025553|220661.04110857|128.44977462|10570|1 +638578.82430443|220656.43053659|128.31544767|10571|1 +638583.85217756|220651.86266508|128.24015909|10572|1 +638588.88083381|220647.29459677|128.20231016|10573|1 +638593.95712663|220642.68345223|128.17455366|10574|1 +638598.98310534|220638.11715295|128.0930608|10575|1 +638604.26351786|220633.43422346|136.05649763|10576|1 +638604.00211669|220633.55423452|127.80541267|10577|2 +638609.26053182|220628.86374589|133.83084298|10578|1 +638609.08048489|220628.94275462|127.89045881|10579|2 +638614.10801649|220624.37632762|127.90267204|10580|1 +638619.18296704|220619.76693653|127.91930362|10581|1 +638624.25472747|220615.15901446|127.83618294|10582|1 +638629.28055125|220610.5939916|127.8422663|10583|1 +638634.34802404|220605.98770047|127.60321065|10584|1 +638639.42415478|220601.37895475|127.74546272|10585|1 +638644.49717376|220596.7714202|127.77544234|10586|1 +638649.56697222|220592.16475173|127.66189556|10587|1 +638654.59048744|220587.60129814|127.6369668|10588|1 +638659.65976157|220582.99471347|127.49865868|10589|1 +638664.72712151|220578.38781858|127.21679625|10590|1 +638669.79581775|220573.78021901|126.97259672|10591|1 +638674.86468845|220569.17209542|126.70358004|10592|1 +638679.9363785|220564.56423789|126.63471899|10593|1 +638685.00710261|220559.95572836|126.45978978|10594|1 +638690.07875366|220555.34725448|126.34754525|10595|1 +638695.15216359|220550.74018643|126.44796723|10596|1 +638700.22500418|220546.13290983|126.49856889|10597|1 +638705.29786312|220541.52604035|126.58061056|10598|1 +638710.37068513|220536.9198149|126.70657521|10599|1 +638715.4432451|220532.31372323|126.82645651|10600|1 +638720.51559098|220527.70683454|126.87779301|10601|1 +638725.58788298|220523.10086214|126.99179559|10602|1 +638730.66044583|220518.49251339|126.95600235|10603|1 +638735.78142738|220513.83943243|126.86512399|10604|1 +638740.80764404|220509.27102301|126.685023|10605|1 +638745.88231641|220504.65910417|126.53733869|10606|1 +638751.00601452|220500.00201966|126.34119214|10607|1 +638756.03591505|220495.42835552|126.03015003|10608|1 +638761.11468223|220490.81073024|125.7456366|10609|1 +638766.19421228|220486.19293055|125.49884187|10610|1 +638771.2759887|220481.5719204|125.17105657|10611|1 +638776.35880039|220476.9503162|124.86851629|10612|1 +638781.44125632|220472.3305284|124.67240694|10613|1 +638786.52460616|220467.71009267|124.48903172|10614|1 +638791.59998563|220463.0957947|124.23046094|10615|1 +638796.68706555|220458.47070412|123.9601048|10616|1 +638801.7291386|220453.88540752|123.61881333|10617|1 +638806.86624349|220449.21548039|123.38900364|10618|1 +638811.91041277|220444.62887198|123.09174677|10619|1 +638817.0049062|220439.99620076|122.7662032|10620|1 +638822.10230005|220435.36026413|122.39728544|10621|1 +638827.1516486|220430.76882139|122.09422427|10622|1 +638832.25532165|220426.12591417|121.63844652|10623|1 +638837.35784271|220421.48555099|121.28912761|10624|1 +638842.41615122|220416.88442709|120.88050988|10625|1 +638847.52366868|220412.23906072|120.50058812|10626|1 +638852.626396|220407.60076994|120.31445027|10627|1 +638857.25768598|220403.55412512|131.67242157|10628|1 +638862.40253447|220398.85720454|130.0508708|10629|1 +638862.80076579|220398.34777431|119.62113307|10630|2 +638867.85976629|220393.74940435|119.45684509|10631|1 +638872.95686721|220389.12050506|119.57751704|10632|1 +638878.01818979|220384.52017533|119.42605621|10633|1 +638883.08495276|220379.91365441|119.18743774|10634|1 +638888.2018931|220375.261583|118.94731238|10635|1 +638893.27539578|220370.64803351|118.6468278|10636|1 +638898.34657172|220366.03790828|118.44004931|10637|1 +638903.42027549|220361.42529294|118.22101108|10638|1 +638908.49816693|220356.80824903|117.95855215|10639|1 +638913.58076681|220352.18709554|117.64643104|10640|1 +638918.66762377|220347.56416919|117.29703772|10641|1 +638923.75862389|220342.93703501|116.9167718|10642|1 +638928.85043766|220338.30958805|116.56793658|10643|1 +638933.94261895|220333.6823293|116.25675495|10644|1 +638938.99175225|220329.09339988|115.89654366|10645|1 +638944.09002018|220324.46032937|115.56719566|10646|1 +638949.14011708|220319.87147344|115.2757431|10647|1 +638954.24073129|220315.2368663|114.99049482|10648|1 +638959.34544698|220310.59817644|114.68071776|10649|1 +638964.35337835|220306.04779074|114.40836175|10650|1 +638969.45245017|220301.41648975|114.26077046|10651|1 +638974.5209506|220296.80963393|113.88308114|10652|1 +638979.64212122|220292.15473028|113.48744868|10653|1 +638984.70759993|220287.55235668|113.23459849|10654|1 +638989.77073027|220282.95307066|113.05027449|10655|1 +638994.83676054|220278.35105191|112.85991363|10656|1 +638999.90062323|220273.75186806|112.73183748|10657|1 +639004.98439223|220269.13134639|112.37415627|10658|1 +639010.05041677|220264.53070379|112.2837337|10659|1 +639015.12907652|220259.91673424|112.06314207|10660|1 +639020.16283547|220255.34328177|111.82891404|10661|1 +639025.24237694|220250.72927604|111.66457025|10662|1 +639030.23836747|220246.2057619|112.53648157|10663|1 +639035.36059668|220241.54648909|111.91345788|10664|1 +639040.35536798|220237.00840377|111.68390865|10665|1 +639045.44055424|220232.38992728|111.56990607|10666|1 +639044.39558931|220229.77377873|111.62531676|10667|1 +639039.27203003|220234.41675079|111.59381164|10668|1 +639034.03667455|220239.18021609|112.90862704|10669|1 +639029.02628018|220243.70201405|111.58792362|10670|1 +639023.78603829|220248.47203439|113.05929721|10671|1 +639018.76626478|220253.00423352|111.86923724|10672|1 +639013.58444688|220257.70367926|112.09927947|10673|1 +639008.45689649|220262.35335937|112.29403076|10674|1 +639003.2839268|220267.04420867|112.48194525|10675|1 +638998.11172398|220271.73474006|112.69539312|10676|1 +638992.94081421|220276.42438787|112.92817007|10677|1 +638987.77841411|220281.10518632|113.08084013|10678|1 +638982.66474501|220285.74221423|113.26583386|10679|1 +638977.44792566|220290.47467713|113.57457842|10680|1 +638972.28281813|220295.16012984|113.87837444|10681|1 +638967.13121857|220299.83104866|114.0211381|10682|1 +638961.97904108|220304.50313944|114.20801079|10683|1 +638956.77362237|220309.22518728|114.50744427|10684|1 +638951.60761703|220313.91411497|114.99426204|10685|1 +638946.46067477|220318.58205283|115.22036032|10686|1 +638941.26174267|220323.29864723|115.5469736|10687|1 +638936.11453631|220327.96811637|115.86144806|10688|1 +638930.9207749|220332.68007126|116.18954962|10689|1 +638925.77618773|220337.34781943|116.54883073|10690|1 +638920.5868514|220342.05599336|116.89082914|10691|1 +638915.3980612|220346.76422316|117.27097414|10692|1 +638910.2598519|220351.42662201|117.65699786|10693|1 +638905.13322026|220356.07597247|117.86281827|10694|1 +638899.90839415|220360.81560725|118.14658756|10695|1 +638894.78559224|220365.46161841|118.35977498|10696|1 +638889.61163815|220370.15562723|118.68095601|10697|1 +638884.44547412|220374.84082247|118.87812577|10698|1 +638879.32968478|220379.4801787|119.0678634|10699|1 +638874.16694925|220384.1623992|119.27240947|10700|1 +638869.01533019|220388.83128089|119.24682958|10701|1 +638863.85297369|220393.5142689|119.52744557|10702|1 +638858.24810956|220398.78517951|132.93777012|10703|1 +638853.14633879|220403.39811252|132.15409546|10704|1 +638848.14604997|220407.87707899|128.41941363|10705|1 +638848.44152367|220407.48821999|119.91487386|10706|2 +638843.32724264|220412.13061972|120.40718898|10707|1 +638838.16800547|220416.81355337|120.87774725|10708|1 +638833.01241478|220421.49257674|121.30522899|10709|1 +638827.9083654|220426.12416353|121.68653671|10710|1 +638822.75663099|220430.79991154|122.12752463|10711|1 +638817.60966528|220435.46994959|122.46921608|10712|1 +638812.46435411|220440.13858735|122.81767923|10713|1 +638807.32084143|220444.80562239|123.16668188|10714|1 +638802.22852118|220449.42525579|123.4500884|10715|1 +638797.09036142|220454.08614866|123.70633374|10716|1 +638791.99957178|220458.70549262|124.0653358|10717|1 +638786.86495305|220463.36277345|124.29122014|10718|1 +638781.78905406|220467.96705488|124.53884273|10719|1 +638776.65647325|220472.62261885|124.77176851|10720|1 +638771.52573867|220477.27590955|124.96143173|10721|1 +638766.490479|220481.84407043|125.26120938|10722|1 +638761.36108808|220486.49733673|125.53276545|10723|1 +638756.28073186|220491.1062064|125.81252567|10724|1 +638751.2012622|220495.71481727|126.1299674|10725|1 +638746.07566707|220500.36443741|126.38388729|10726|1 +638740.99943658|220504.96820286|126.56438826|10727|1 +638735.92414969|220509.57077607|126.7200907|10728|1 +638730.84964931|220514.17238269|126.85721748|10729|1 +638725.77599621|220518.7715593|126.87579313|10730|1 +638720.70264904|220523.36958987|126.83205618|10731|1 +638715.62929739|220527.96648994|126.70723564|10732|1 +638710.60377902|220532.52095075|126.65174124|10733|1 +638705.5302293|220537.11841551|126.55212852|10734|1 +638700.50419019|220541.672322|126.42160599|10735|1 +638695.47813755|220546.22686043|126.33476461|10736|1 +638690.40388782|220550.82493553|126.22915224|10737|1 +638685.37776219|220555.38019906|126.1860385|10738|1 +638680.35365952|220559.93657518|126.34908004|10739|1 +638675.33044606|220564.49278062|126.55578412|10740|1 +638670.30594156|220569.04831001|126.63118432|10741|1 +638665.28534044|220573.60403277|126.96897833|10742|1 +638660.21679147|220578.20253318|127.25123143|10743|1 +638655.24275656|220582.71350621|127.41310094|10744|1 +638650.22066117|220587.26881634|127.55068352|10745|1 +638645.19771298|220591.82585387|127.63820393|10746|1 +638640.22089804|220596.33992699|127.64942188|10747|1 +638635.19225862|220600.89878882|127.4992633|10748|1 +638630.2133607|220605.41406923|127.46003771|10749|1 +638615.24374241|220618.99904909|127.98592294|10750|1 +638610.21361141|220623.55995961|127.8788874|10751|1 +638605.40971968|220627.99793061|133.57882995|10752|1 +638600.26230758|220632.58981965|128.1537828|10753|1 +638595.27845429|220637.10889007|128.05657923|10754|1 +638590.29936343|220641.62595504|128.12149633|10755|1 +638585.31931851|220646.14372129|128.17365139|10756|1 +638580.38720263|220650.61819606|128.24160087|10757|1 +638575.40673881|220655.13663195|128.31183858|10758|1 +638570.42769991|220659.65449591|128.43174778|10759|1 +638565.49466484|220664.13010562|128.51716599|10760|1 +638560.51269828|220668.650027|128.59274293|10761|1 +638555.57342479|220673.12972579|128.56494922|10762|1 +638550.63488535|220677.60929951|128.57413007|10763|1 +638545.65029117|220682.13155707|128.64249813|10764|1 +638540.71600451|220686.60906251|128.77567166|10765|1 +638535.77921736|220691.08831983|128.87094046|10766|1 +638530.83910519|220695.56988258|128.91582153|10767|1 +638525.90849271|220700.04567503|129.15988154|10768|1 +638520.96739779|220704.52833766|129.21631542|10769|1 +638516.035953|220709.00499334|129.46566814|10770|1 +638511.10085091|220713.48418231|129.65840094|10771|1 +638506.21857851|220717.91675544|129.94603047|10772|1 +638501.27890305|220722.39931785|130.08162247|10773|1 +638496.39435202|220726.83370481|130.34926248|10774|1 +638491.4607115|220731.31257571|130.60850299|10775|1 +638486.57339972|220735.74914048|130.8499585|10776|1 +638481.63723563|220740.23004808|131.08947924|10777|1 +638476.74029274|220744.6735963|131.20509102|10778|1 +638471.80201857|220749.15635373|131.43741219|10779|1 +638466.89703258|220753.6059831|131.4646757|10780|1 +638462.00105108|220758.0495662|131.64080483|10781|1 +638457.09166194|220762.50285198|131.64196756|10782|1 +638452.23431707|220766.90995073|131.71780494|10783|1 +638447.27741896|220771.40710494|131.76708575|10784|1 +638442.39630546|220775.83182255|131.56149789|10785|1 +638437.49235105|220780.28241799|131.71591668|10786|1 +638432.64402846|220784.68408377|131.98180796|10787|1 +638427.73375716|220789.13972272|132.0851786|10788|1 +638422.84181547|220793.57368101|131.83335161|10789|1 +638417.96268109|220797.99866206|131.76742061|10790|1 +638413.08778252|220802.42086593|131.77540154|10791|1 +638408.18808364|220806.86171238|131.5091754|10792|1 +638403.30179101|220811.2930403|131.42878944|10793|1 +638398.43445334|220815.7106003|131.59007295|10794|1 +638393.61335379|220820.08607311|131.74356156|10795|1 +638388.70081349|220824.53799051|131.43121721|10796|1 +638383.8360373|220828.94687214|131.14209939|10797|1 +638378.98911209|220833.342723|131.07573122|10798|1 +638374.03897154|220837.82430822|130.44496846|10799|1 +638369.21409087|220842.19695164|130.15232527|10800|1 +638364.31357577|220846.64186525|130.11003009|10801|1 +638359.94380877|220850.66844758|134.54908895|10802|1 +638355.91782075|220854.4379833|142.86965818|10803|1 +638353.96121298|220853.73181126|130.36386627|10804|1 +638359.60019851|220848.71572129|138.51145036|10805|1 +638363.6351289|220844.92564062|130.16249211|10806|1 +638368.51436471|220840.48358002|130.02496535|10807|1 +638373.46472733|220835.98784361|130.66895523|10808|1 +638378.40392481|220831.50110605|131.23188944|10809|1 +638383.29969802|220827.04762069|131.35350087|10810|1 +638388.19868449|220822.59206746|131.53665284|10811|1 +638393.19731391|220818.06225738|132.88097348|10812|1 +638398.00206048|220813.67019777|131.49038581|10813|1 +638402.94359171|220809.17606751|131.68363951|10814|1 +638407.85716176|220804.70305166|131.57193448|10815|1 +638412.7419836|220800.25974499|131.7150051|10816|1 +638417.71445992|220795.73558004|131.77608987|10817|1 +638422.64917512|220791.24792172|131.99257011|10818|1 +638427.57128401|220786.76986663|132.07799763|10819|1 +638432.51510413|220782.26758365|131.84576018|10820|1 +638437.41861058|220777.8035996|131.7311902|10821|1 +638442.36195468|220773.30206541|131.52302574|10822|1 +638447.2892959|220768.82145407|131.76845311|10823|1 +638452.24239187|220764.31346833|131.7338319|10824|1 +638457.24345268|220759.76213129|131.71826073|10825|1 +638462.19096032|220755.25866941|131.64574408|10826|1 +638467.13375075|220750.75877694|131.52304434|10827|1 +638472.07744159|220746.25848335|131.43109629|10828|1 +638477.05910615|220741.72173548|131.2028865|10829|1 +638482.04312043|220737.1835374|131.0243296|10830|1 +638486.97419549|220732.69255897|130.7818695|10831|1 +638492.00305699|220728.11322338|130.57939773|10832|1 +638496.92931066|220723.62580119|130.28019679|10833|1 +638501.90789822|220719.0919459|130.06333518|10834|1 +638506.93531008|220714.51406088|129.87306734|10835|1 +638511.9114587|220709.98212933|129.63717429|10836|1 +638516.93545496|220705.40679299|129.40940169|10837|1 +638521.91377309|220700.87373603|129.23554219|10838|1 +638526.93787926|220696.29862606|129.03261463|10839|1 +638531.92060083|220691.76183635|128.96440471|10840|1 +638536.94901118|220687.18181482|128.86107127|10841|1 +638541.97753759|220682.60194112|128.77648092|10842|1 +638547.00325395|220678.02399295|128.64822802|10843|1 +638552.03280911|220673.44394561|128.619839|10844|1 +638557.06203049|220668.86435879|128.60395157|10845|1 +638562.08879791|220664.2864657|128.55061518|10846|1 +638567.16132036|220659.66647575|128.46313198|10847|1 +638572.18545343|220655.09051059|128.37869975|10848|1 +638577.20780998|220650.51570194|128.26305076|10849|1 +638582.27770048|220645.89771514|128.15102947|10850|1 +638587.30333368|220641.32157821|128.15408976|10851|1 +638592.37411082|220636.7035429|128.09859536|10852|1 +638597.44516722|220632.08560672|128.06829947|10853|1 +638602.46884853|220627.51119442|128.07155509|10854|1 +638607.53428286|220622.8962294|127.89164944|10855|1 +638612.60869388|220618.27757684|128.03052496|10856|1 +638617.62440441|220613.70711916|127.80279887|10857|1 +638622.68704435|220609.09342077|127.53589369|10858|1 +638627.75389247|220604.47817586|127.43160218|10859|1 +638632.82388428|220599.86208443|127.47121844|10860|1 +638637.89186935|220595.24683767|127.44229922|10861|1 +638642.96208722|220590.63130454|127.538554|10862|1 +638648.02827678|220586.01687858|127.45378691|10863|1 +638653.09449878|220581.40249018|127.37545666|10864|1 +638658.1598543|220576.7881776|127.24732469|10865|1 +638663.2227373|220572.17336751|126.92564135|10866|1 +638668.28743572|220567.55795503|126.67913497|10867|1 +638673.40060382|220562.89862906|126.44486974|10868|1 +638678.46713124|220558.28258695|126.27383797|10869|1 +638683.53443172|220553.6664416|126.1467385|10870|1 +638688.60295356|220549.05084641|126.13856224|10871|1 +638693.71957383|220544.39213119|126.17438338|10872|1 +638698.78866437|220539.77767381|126.28545589|10873|1 +638703.85746398|220535.16338092|126.39046365|10874|1 +638708.97391179|220530.5060168|126.51480979|10875|1 +638714.04235207|220525.89290878|126.68280918|10876|1 +638719.11048723|220521.27944978|126.80725764|10877|1 +638724.22650778|220516.6205117|126.79516533|10878|1 +638729.29495601|220512.00480379|126.78261724|10879|1 +638734.36396146|220507.38770102|126.70778445|10880|1 +638739.48138259|220502.72631504|126.61552943|10881|1 +638744.55240735|220498.1054165|126.40374658|10882|1 +638749.62510998|220493.48174309|126.10472238|10883|1 +638754.74678819|220488.81363913|125.81364189|10884|1 +638759.8215717|220484.18849646|125.54642975|10885|1 +638764.89793573|220479.56146021|125.2482055|10886|1 +638770.02230943|220474.89193347|125.03328796|10887|1 +638775.10091965|220470.26310647|124.7544207|10888|1 +638780.180009|220465.63452778|124.52577373|10889|1 +638785.24973484|220461.01470927|124.31565591|10890|1 +638790.33207306|220456.38228169|124.0250312|10891|1 +638795.41482095|220451.75016574|123.7846454|10892|1 +638800.50073202|220447.11402244|123.46334344|10893|1 +638805.63597774|220442.4331347|123.15126884|10894|1 +638810.67804028|220437.83636256|122.79665721|10895|1 +638815.76990318|220433.19424671|122.43880857|10896|1 +638820.86271138|220428.5516963|122.11249296|10897|1 +638825.95982853|220423.90398512|121.69912201|10898|1 +638831.05936173|220419.25389989|121.27361225|10899|1 +638836.16537618|220414.59596607|120.71118034|10900|1 +638841.22390964|220409.98203176|120.20801004|10901|1 +638845.87393638|220405.92639449|132.95541559|10902|1 +638846.33186269|220405.32355075|119.73361945|10903|2 +638850.95376208|220401.2983058|132.82316294|10904|1 +638851.43092274|220400.67754584|119.5715918|10905|2 +638855.99006204|220396.70867416|132.6124963|10906|1 +638856.48124067|220396.07667718|119.4684072|10907|2 +638861.07796552|220392.0713656|132.34975833|10908|1 +638866.64372897|220386.81528042|119.02324278|10909|1 +638871.73232253|220382.18446721|119.26777718|10910|1 +638876.79142522|220377.57450577|119.09045742|10911|1 +638881.8536202|220372.96127555|118.88213483|10912|1 +638886.9687175|220368.29903054|118.61002067|10913|1 +638892.03441567|220363.6826797|118.40841397|10914|1 +638897.10350248|220359.06280041|118.17585095|10915|1 +638902.17211464|220354.44404862|117.9933408|10916|1 +638907.19625671|220349.86520189|117.77480486|10917|1 +638912.27995245|220345.22870894|117.36834514|10918|1 +638917.36136644|220340.59463461|117.04315503|10919|1 +638922.44482554|220335.95878143|116.72446687|10920|1 +638927.5317434|220331.31950703|116.3874077|10921|1 +638932.57424466|220326.72026571|116.02629414|10922|1 +638937.61820025|220322.11994444|115.68396086|10923|1 +638942.70855112|220317.47848055|115.41610691|10924|1 +638947.7533028|220312.87837274|115.14254166|10925|1 +638952.80914093|220308.26624249|114.7322217|10926|1 +638957.85655108|220303.66422012|114.49622633|10927|1 +638962.95190161|220299.01920051|114.30407954|10928|1 +638968.00617621|220294.41046934|114.0373604|10929|1 +638973.0030153|220289.85631602|113.93824067|10930|1 +638978.05650793|220285.24940649|113.7525214|10931|1 +638983.11682754|220280.63539149|113.50480579|10932|1 +638988.17883469|220276.02000933|113.26970339|10933|1 +638993.2448134|220271.40073884|113.01617418|10934|1 +638998.21364245|220266.870295|112.79808473|10935|1 +639003.33535011|220262.19997721|112.52107783|10936|1 +639008.30556418|220257.66894095|112.35252964|10937|1 +639013.37189625|220253.05113288|112.22995083|10938|1 +639018.31434107|220248.55953502|113.06801298|10939|1 +639023.3046423|220244.01615402|113.32242586|10940|1 +639028.47616069|220239.28582387|112.00904294|10941|1 +639033.47039751|220234.73092773|111.70361911|10942|1 +639038.48522036|220230.16239677|111.75968092|10943|1 +639043.50053389|220225.5936778|111.83431837|10944|1 +639044.85987652|220220.68228748|111.92103883|10945|1 +639039.78623478|220225.30053841|111.94908369|10946|1 +639034.7282772|220229.90234464|111.82236559|10947|1 +639029.60691056|220234.5622408|111.88638972|10948|1 +639024.459046|220239.25806555|112.88322389|10949|1 +639019.32981064|220243.92618157|113.11589852|10950|1 +639014.20193217|220248.59334468|113.36771621|10951|1 +639009.2173837|220253.11362175|112.45430037|10952|1 +639004.10466909|220257.76500304|112.56395901|10953|1 +638998.980198|220262.42973034|112.86036012|10954|1 +638993.86974705|220267.07961068|113.00817465|10955|1 +638988.70144121|220271.78444651|113.31711455|10956|1 +638983.64051327|220276.39008149|113.52255358|10957|1 +638978.48258915|220281.08454146|113.76426024|10958|1 +638973.32858387|220285.77519606|113.98797727|10959|1 +638968.23101637|220290.41335823|114.13183854|10960|1 +638963.08813954|220295.09260604|114.26338426|10961|1 +638957.98980699|220299.73264011|114.48890583|10962|1 +638952.84749765|220304.4122903|114.68369433|10963|1 +638947.69162141|220309.10790512|115.13417006|10964|1 +638942.5463192|220313.79215933|115.46080194|10965|1 +638937.41178904|220318.46470224|115.65109768|10966|1 +638932.22100767|220323.19094124|116.01674121|10967|1 +638927.08651913|220327.86462533|116.28917164|10968|1 +638921.94887683|220332.5426067|116.6617636|10969|1 +638916.76723885|220337.26023324|117.00463638|10970|1 +638911.63835102|220341.92932473|117.30991138|10971|1 +638906.46068458|220346.6436438|117.67286669|10972|1 +638901.2920408|220351.34793236|117.90571806|10973|1 +638896.1731265|220356.00712543|118.15036408|10974|1 +638891.009836|220360.70622963|118.35954243|10975|1 +638885.84822964|220365.40391343|118.575632|10976|1 +638880.68857562|220370.09984185|118.79237269|10977|1 +638875.5321787|220374.79238793|118.97858495|10978|1 +638870.37887617|220379.48169951|119.13424088|10979|1 +638865.24152667|220384.15150106|118.93501543|10980|1 +638859.53563469|220389.54564011|133.41956493|10981|1 +638854.42266032|220394.19225958|133.14818561|10982|1 +638854.93520722|220393.53260427|119.43642769|10983|2 +638849.21508362|220398.96217321|135.51633417|10984|1 +638844.18403057|220403.50271937|133.00608237|10985|1 +638844.64638619|220402.89373062|119.64700131|10986|2 +638839.1448333|220408.05166279|130.56443117|10987|1 +638839.50808369|220407.56705539|119.63143943|10988|2 +638834.33878221|220412.28276026|120.62119495|10989|1 +638829.18481362|220416.97916899|121.2309264|10990|1 +638824.0383972|220421.66635401|121.67275148|10991|1 +638818.89465211|220426.3508642|122.09643809|10992|1 +638813.75478097|220431.03090147|122.45200779|10993|1 +638808.61784268|220435.70767096|122.76441726|10994|1 +638803.43445358|220440.42689195|123.0871796|10995|1 +638798.34706492|220445.05968516|123.47826348|10996|1 +638793.16763827|220449.77498778|123.7773342|10997|1 +638788.03821199|220454.4443874|124.04823914|10998|1 +638782.96815369|220459.05988108|124.32854817|10999|1 +638777.79394243|220463.76953496|124.56072051|11000|1 +638772.66920587|220468.4338438|124.77057789|11001|1 +638767.59197617|220473.05643987|125.08893118|11002|1 +638762.46896612|220477.72000202|125.35582705|11003|1 +638757.29967148|220482.42535177|125.59662214|11004|1 +638752.22641252|220487.04438505|125.91600794|11005|1 +638747.10780827|220491.70276523|126.09681587|11006|1 +638741.98949879|220496.36212402|126.36553488|11007|1 +638736.9204793|220500.97567681|126.56705787|11008|1 +638731.75704892|220505.67420654|126.69808269|11009|1 +638726.6900958|220510.28380184|126.75024706|11010|1 +638721.57593866|220514.93461767|126.67687464|11011|1 +638716.50959777|220519.54210498|126.61703632|11012|1 +638711.39553531|220524.19348832|126.58810779|11013|1 +638706.32894144|220528.79956464|126.40998807|11014|1 +638701.2141908|220533.44949992|126.23177534|11015|1 +638696.14733878|220538.05716488|126.14784541|11016|1 +638691.07992865|220542.66456186|126.00785368|11017|1 +638686.01317237|220547.273137|125.99301734|11018|1 +638680.94653751|220551.88187769|125.99711012|11019|1 +638675.88170018|220556.49137323|126.17010456|11020|1 +638670.81602619|220561.10023894|126.24327234|11021|1 +638665.80076792|220565.66584415|126.50351744|11022|1 +638660.73968743|220570.27451412|126.85811976|11023|1 +638655.67750616|220574.88243756|127.08790154|11024|1 +638650.66319567|220579.44634097|127.28565731|11025|1 +638645.6458249|220584.00834431|127.34587701|11026|1 +638640.62691634|220588.56955598|127.35603455|11027|1 +638635.60431187|220593.13194204|127.20993154|11028|1 +638630.58702233|220597.69319849|127.32617584|11029|1 +638625.56583475|220602.25581884|127.2861596|11030|1 +638620.54766461|220606.81763814|127.3835306|11031|1 +638615.53371581|220611.37791195|127.6432548|11032|1 +638610.56059979|220615.89747272|127.65115201|11033|1 +638605.59314134|220620.41479777|127.86489753|11034|1 +638600.56956825|220624.97947309|127.8118588|11035|1 +638595.60175489|220629.4971358|128.02511132|11036|1 +638590.62626826|220634.01863483|128.01322365|11037|1 +638585.65075568|220638.54043045|128.01980931|11038|1 +638580.67731573|220643.0614031|128.10104172|11039|1 +638575.7036099|220647.58271507|128.18825518|11040|1 +638570.77663079|220652.06127127|128.25987886|11041|1 +638565.75181321|220656.62838737|128.29316061|11042|1 +638560.82644695|220661.10646286|128.43268726|11043|1 +638555.85287316|220665.62848176|128.57487422|11044|1 +638550.92178596|220670.11028049|128.60739323|11045|1 +638545.98786591|220674.59405497|128.5957567|11046|1 +638541.05887507|220679.07510559|128.70845703|11047|1 +638536.12920695|220683.55677923|128.82067366|11048|1 +638531.19726783|220688.0400823|128.90121774|11049|1 +638526.26610258|220692.52313204|129.01247629|11050|1 +638521.3795792|220696.96487055|129.07562605|11051|1 +638516.45315804|220701.44528185|129.30435673|11052|1 +638511.57253702|220705.8835822|129.50343335|11053|1 +638506.64674863|220710.36386816|129.76226458|11054|1 +638501.7645353|220714.80354405|129.95381606|11055|1 +638496.88344771|220719.24263763|130.17584016|11056|1 +638492.0043305|220723.68055548|130.44081056|11057|1 +638487.12230516|220728.12059233|130.66767159|11058|1 +638482.23995089|220732.56102541|130.90009508|11059|1 +638477.35443998|220737.00379878|131.09443709|11060|1 +638472.46806003|220741.44738848|131.28811868|11061|1 +638467.6276114|220745.84889526|131.46343856|11062|1 +638462.72954811|220750.30109912|131.51244962|11063|1 +638457.88520205|220754.70581203|131.66125014|11064|1 +638452.98232633|220759.16196079|131.6778073|11065|1 +638448.12517333|220763.57631977|131.68185357|11066|1 +638443.25498882|220768.00035164|131.52949978|11067|1 +638438.39543364|220772.41707697|131.54443843|11068|1 +638433.53904834|220776.83179542|131.62082462|11069|1 +638428.68265692|220781.24677919|131.71508882|11070|1 +638423.8066353|220785.67639788|131.57840852|11071|1 +638419.00169319|220790.04568283|131.75181223|11072|1 +638414.11429035|220794.48435228|131.52031892|11073|1 +638409.23224253|220798.91945952|131.3814248|11074|1 +638404.39569246|220803.3130476|131.23514506|11075|1 +638399.57183391|220807.69754526|131.26198069|11076|1 +638394.75212583|220812.07922248|131.35623559|11077|1 +638389.91324028|220816.47555072|131.25074414|11078|1 +638385.08050467|220820.86759956|131.23756352|11079|1 +638380.22886998|220825.27422798|131.03721256|11080|1 +638375.39324683|220829.66170476|130.51198776|11081|1 +638370.53386355|220834.0750397|130.28516394|11082|1 +638365.73246297|220838.43739435|130.18646279|11083|1 +638361.57861898|220842.30567778|136.85617134|11084|1 +638356.89600444|220846.5835212|138.43060862|11085|1 +638356.04727208|220847.23320563|129.70849101|11086|2 +638353.26766168|220850.04514413|150.18574717|11087|1 +638348.14202431|220854.65453575|146.66828042|11088|1 +638344.87687286|220854.49663485|145.7559901|11089|1 +638350.00675332|220849.86956506|149.31765889|11090|1 +638348.27141469|220851.20247611|131.81040412|11091|2 +638353.49603337|220846.48710504|135.23510426|11092|1 +638358.46956174|220841.97947363|137.1748409|11093|1 +638357.77204434|220842.51253474|129.94682112|11094|2 +638362.69357594|220838.02973623|130.29940496|11095|1 +638367.52362856|220833.62423059|130.22463728|11096|1 +638372.42647052|220829.15639283|130.43333194|11097|1 +638377.33010955|220824.68833397|130.6787407|11098|1 +638382.24113507|220820.2151093|131.03540802|11099|1 +638387.11071429|220815.77346308|130.9567522|11100|1 +638392.04950247|220811.27240487|131.13756943|11101|1 +638396.94355618|220806.81308206|131.38706168|11102|1 +638401.8506276|220802.33639055|131.25004651|11103|1 +638406.71524984|220797.89961054|131.20001225|11104|1 +638411.66659014|220793.3907352|131.6401258|11105|1 +638416.58386|220788.90741826|131.69435516|11106|1 +638421.48439935|220784.43668141|131.56152579|11107|1 +638426.438459|220779.91837699|131.51526806|11108|1 +638431.30417602|220775.48233822|131.59287278|11109|1 +638436.25816092|220770.96467953|131.58937531|11110|1 +638441.20080913|220766.45547827|131.45489023|11111|1 +638446.11893138|220761.97346649|131.66191987|11112|1 +638451.07013257|220757.45872813|131.68853225|11113|1 +638456.0135831|220752.9497964|131.62766142|11114|1 +638460.9500924|220748.44602423|131.48546517|11115|1 +638465.84618755|220743.98091152|131.47273104|11116|1 +638470.82671749|220739.43663548|131.30582926|11117|1 +638475.75856648|220734.93678441|131.14379232|11118|1 +638480.73236579|220730.39754507|130.90164847|11119|1 +638485.66006204|220725.90091229|130.70148355|11120|1 +638490.5839155|220721.40705272|130.45101461|11121|1 +638495.60321338|220716.82622145|130.20345714|11122|1 +638500.52650478|220712.33301267|129.96478285|11123|1 +638505.50003752|220707.79472289|129.77744508|11124|1 +638510.46836498|220703.26000865|129.50881908|11125|1 +638515.43923782|220698.72375402|129.29608745|11126|1 +638520.4565595|220694.1449101|129.06666844|11127|1 +638525.43395307|220689.60479947|129.00328613|11128|1 +638530.45532111|220685.02379341|128.86729416|11129|1 +638535.47919133|220680.44144517|128.7936892|11130|1 +638540.4530445|220675.90427966|128.69238356|11131|1 +638545.4753066|220671.32336872|128.61868558|11132|1 +638550.49762507|220666.74265505|128.56370278|11133|1 +638555.51781072|220662.16343005|128.47751252|11134|1 +638560.53524364|220657.58599055|128.34136242|11135|1 +638565.55494026|220653.007448|128.27386873|11136|1 +638570.62169897|220648.38595365|128.20358451|11137|1 +638575.6398851|220643.80867204|128.12992374|11138|1 +638580.65682155|220639.23224812|128.03751989|11139|1 +638585.72338819|220634.61151108|128.01134469|11140|1 +638590.74096721|220630.03518309|127.9689472|11141|1 +638595.75096972|220625.46264883|127.70791145|11142|1 +638600.820494|220620.84121369|127.82576495|11143|1 +638605.88450115|220616.22258197|127.78767418|11144|1 +638610.89453355|220611.65024475|127.54545592|11145|1 +638615.95175881|220607.03449671|127.27647645|11146|1 +638621.01695903|220602.4158029|127.31378588|11147|1 +638626.07845025|220597.79862102|127.22008908|11148|1 +638631.14089106|220593.18126981|127.17656607|11149|1 +638636.15491228|220588.60779498|127.11571385|11150|1 +638641.22168278|220583.98992317|127.31612993|11151|1 +638646.32908666|220579.33020771|127.17831481|11152|1 +638651.34225761|220574.75737757|127.11138852|11153|1 +638656.44898046|220570.09755463|126.92416237|11154|1 +638661.50730335|220565.48052353|126.64423471|11155|1 +638666.56563077|220560.86285593|126.32073753|11156|1 +638671.67375481|220556.20137328|126.10950349|11157|1 +638676.73476238|220551.58310047|125.91770086|11158|1 +638686.90827477|220542.30408861|125.85332326|11159|1 +638692.01966852|220537.64365605|125.9309931|11160|1 +638697.08336061|220533.02749182|126.06512471|11161|1 +638702.19456494|220528.36827535|126.21851101|11162|1 +638707.30546819|220523.70958966|126.39105896|11163|1 +638712.3682059|220519.09373139|126.48845786|11164|1 +638717.47857985|220514.43471127|126.60547421|11165|1 +638722.58896957|220509.77469524|126.6541597|11166|1 +638727.69949528|220505.11437261|126.6907715|11167|1 +638732.81070273|220500.45191403|126.62157558|11168|1 +638737.92330321|220495.7861456|126.4090951|11169|1 +638742.98875985|220491.16385596|126.23325432|11170|1 +638748.10317401|220486.49641513|126.02153659|11171|1 +638753.21935626|220481.82629573|125.73530233|11172|1 +638758.28883155|220477.19889878|125.46036972|11173|1 +638763.40665514|220472.5281499|125.23741544|11174|1 +638768.52605527|220467.85551455|124.98370019|11175|1 +638773.59939695|220463.22438586|124.69720547|11176|1 +638778.72135338|220458.54940382|124.44432738|11177|1 +638783.88272355|220453.83798093|124.15623276|11178|1 +638788.95941312|220449.2040396|123.88955083|11179|1 +638794.03857659|220444.56712496|123.57316951|11180|1 +638799.21523191|220439.84122739|123.24981186|11181|1 +638804.29805635|220435.20069542|122.91550601|11182|1 +638809.38129507|220430.56048202|122.63143906|11183|1 +638814.56565723|220425.82612924|122.21004999|11184|1 +638819.60730639|220421.22235688|121.82385883|11185|1 +638824.74619044|220416.53020121|121.45668051|11186|1 +638829.8965268|220411.82327824|120.7842737|11187|1 +638834.66681906|220407.60851208|130.424765|11188|1 +638839.72067632|220403.02618171|132.34831655|11189|1 +638844.77025042|220398.44774105|134.27197042|11190|1 +638845.30526491|220397.74554758|119.09171316|11191|2 +638849.84467246|220393.81696422|134.09570176|11192|1 +638850.39520332|220393.10268839|119.06057081|11193|2 +638854.94583166|220389.17023109|134.51627228|11194|1 +638860.06780668|220384.47987185|133.19301087|11195|1 +638865.72999599|220379.11143955|118.73004149|11196|1 +638870.86044531|220374.43590183|119.00398811|11197|1 +638875.96493034|220369.77700603|118.78146171|11198|1 +638881.06736988|220365.12119741|118.64661386|11199|1 +638886.22167472|220360.41746261|118.46695935|11200|1 +638891.33081868|220355.75455993|118.26448758|11201|1 +638896.39673414|220351.13019525|118.00143334|11202|1 +638901.55741586|220346.42045156|117.81097017|11203|1 +638906.62877778|220341.79074963|117.5236755|11204|1 +638911.74862788|220337.11623348|117.27311355|11205|1 +638916.87440335|220332.4350279|116.95455561|11206|1 +638921.95327906|220327.79684496|116.65592208|11207|1 +638927.03879934|220323.15153859|116.28287434|11208|1 +638932.12582978|220318.50511339|115.92882082|11209|1 +638937.21022132|220313.86231563|115.66223191|11210|1 +638942.29127059|220309.22387127|115.48932119|11211|1 +638947.39711156|220304.55772629|114.95583641|11212|1 +638952.48221377|220299.91574883|114.79604119|11213|1 +638957.51993263|220295.31722003|114.65508207|11214|1 +638962.61565396|220290.66422671|114.40254814|11215|1 +638967.65957499|220286.05966882|114.23705094|11216|1 +638972.7088105|220281.44964329|114.02817024|11217|1 +638977.75652199|220276.84178562|113.87536996|11218|1 +638982.86125556|220272.18071663|113.63647244|11219|1 +638987.87174317|220267.60553143|113.39626336|11220|1 +638992.93606298|220262.98074816|113.11974946|11221|1 +638997.9931883|220258.36435419|112.973879|11222|1 +639003.0038049|220253.79041933|112.83318963|11223|1 +639007.9922615|220249.24973967|113.61875255|11224|1 +639012.99857656|220244.68109662|113.57723873|11225|1 +639018.01016742|220240.10711021|113.49845268|11226|1 +639023.11993993|220235.42732233|112.26577197|11227|1 +639028.14463266|220230.84022653|112.10659067|11228|1 +639033.15708503|220226.26672933|112.12107353|11229|1 +639038.12483631|220221.73367625|112.11487855|11230|1 +639043.13902953|220217.15900382|112.16022471|11231|1 +639045.34362793|220210.78557567|112.39132735|11232|1 +639040.28136635|220215.39614704|112.29029145|11233|1 +639035.26271515|220219.96810702|112.27209718|11234|1 +639030.19728739|220224.5828382|112.25818172|11235|1 +639025.17896696|220229.15910518|112.30194658|11236|1 +639020.11001853|220233.78277543|112.39985708|11237|1 +639014.96842528|220238.48594082|113.42259669|11238|1 +639009.88632381|220243.12510539|113.76325565|11239|1 +639004.91163894|220247.64732011|112.77574186|11240|1 +638999.84393367|220252.27152311|112.98634338|11241|1 +638994.74222842|220256.92454272|113.04086109|11242|1 +638989.62656907|220261.59341967|113.3131985|11243|1 +638984.56527488|220266.2120932|113.54334305|11244|1 +638979.46221301|220270.8681003|113.71706303|11245|1 +638974.35197991|220275.53261963|114.0279284|11246|1 +638969.24882044|220280.18981647|114.27708578|11247|1 +638964.16086023|220284.83050696|114.34010532|11248|1 +638959.0687662|220289.47631708|114.49674723|11249|1 +638953.92254015|220294.17332594|114.77804225|11250|1 +638948.7848318|220298.86125097|114.96662647|11251|1 +638943.6857604|220303.51668681|115.34855741|11252|1 +638938.55478023|220308.19807578|115.50708758|11253|1 +638933.42041516|220312.88390721|115.75952849|11254|1 +638928.32839265|220317.53314868|116.15519816|11255|1 +638923.19541138|220322.21864881|116.47090975|11256|1 +638918.06388163|220326.90311337|116.80584811|11257|1 +638912.9425699|220331.57623466|116.99808793|11258|1 +638907.81875503|220336.25290264|117.27803419|11259|1 +638902.64902182|220340.97151842|117.55959896|11260|1 +638897.53037145|220345.64334401|117.82818776|11261|1 +638892.41661402|220350.30992708|118.04117983|11262|1 +638887.25931931|220355.01548609|118.19999836|11263|1 +638882.14774694|220359.68065233|118.45137887|11264|1 +638876.99392314|220364.38318253|118.61764812|11265|1 +638871.89134259|220369.0384972|118.75153789|11266|1 +638866.75986038|220373.71420171|118.46374093|11267|1 +638861.11011881|220379.0472929|131.12407255|11268|1 +638855.9396297|220383.79752843|133.5686352|11269|1 +638850.84525269|220388.434035|132.90351168|11270|1 +638845.75981975|220393.05858035|131.97047839|11271|1 +638846.22687303|220392.44719776|118.96852973|11272|2 +638840.59598352|220397.78641431|133.26529497|11273|1 +638835.51797773|220402.42159891|133.55349191|11274|1 +638830.781486|220406.55008951|120.14269297|11275|1 +638825.61909906|220411.27231048|121.13241128|11276|1 +638820.52742153|220415.92064576|121.46435448|11277|1 +638815.33574429|220420.6633822|122.01528009|11278|1 +638810.199556|220425.35270036|122.37018937|11279|1 +638805.0664514|220430.03851408|122.67570622|11280|1 +638799.88795864|220434.76529508|122.94787619|11281|1 +638794.75633575|220439.45096141|123.33578818|11282|1 +638789.62835153|220444.13208524|123.63679366|11283|1 +638784.45390052|220448.85578576|123.94850549|11284|1 +638779.33933748|220453.52462264|124.24488799|11285|1 +638774.21612804|220458.20092363|124.51004443|11286|1 +638769.04555145|220462.92133924|124.83620192|11287|1 +638763.92638812|220467.5926602|125.00874987|11288|1 +638758.80700732|220472.26562165|125.28173841|11289|1 +638753.68855097|220476.93820997|125.5864367|11290|1 +638748.5248592|220481.65030326|125.76517963|11291|1 +638743.40857566|220486.32139403|126.10217369|11292|1 +638738.2947013|220490.98808752|126.2834281|11293|1 +638733.18190341|220495.65328679|126.42764285|11294|1 +638728.06968553|220500.31851155|126.60978093|11295|1 +638722.95867877|220504.98051916|126.64238366|11296|1 +638717.84825357|220509.63961765|126.50669864|11297|1 +638712.73768449|220514.29948913|126.41516916|11298|1 +638707.67471931|220518.91514314|126.26833132|11299|1 +638702.5639611|220523.57540837|126.19002897|11300|1 +638697.45261771|220528.23454065|125.99341732|11301|1 +638692.34109792|220532.89456448|125.8472213|11302|1 +638687.22975119|220537.55552043|125.77644408|11303|1 +638682.16581594|220542.17295687|125.68724005|11304|1 +638677.10325037|220546.79156039|125.76695627|11305|1 +638671.9941469|220551.45399315|125.940946|11306|1 +638666.8849753|220556.11597826|126.07785885|11307|1 +638661.82508595|220560.73432822|126.30834756|11308|1 +638656.7677534|220565.35231448|126.67649327|11309|1 +638651.70864621|220569.96954123|126.87609079|11310|1 +638646.60192018|220574.62990831|127.05180134|11311|1 +638641.54069392|220579.24741018|127.05188506|11312|1 +638636.47887902|220583.86531075|127.03341173|11313|1 +638631.41517299|220588.48397534|126.94638431|11314|1 +638626.35539348|220593.10182604|127.05325242|11315|1 +638621.34136431|220597.6768475|127.08379015|11316|1 +638616.28058515|220602.29528519|127.16591554|11317|1 +638611.21802189|220606.91456821|127.19200702|11318|1 +638606.25619578|220611.44470733|127.41439389|11319|1 +638601.20356266|220616.0599233|127.79043681|11320|1 +638596.19002563|220620.63535895|127.87718517|11321|1 +638591.16976123|220625.21419703|127.77027056|11322|1 +638586.15798018|220629.78920715|127.93813971|11323|1 +638581.18879113|220634.32336858|127.96608225|11324|1 +638576.17129382|220638.90166917|127.99637814|11325|1 +638571.20441804|220643.43506958|128.11758958|11326|1 +638566.23487999|220647.97010991|128.18233925|11327|1 +638561.21678397|220652.54943505|128.24355424|11328|1 +638556.29364801|220657.04209996|128.30484365|11329|1 +638551.3264995|220661.57640639|128.46873164|11330|1 +638546.35945795|220666.11080032|128.64483288|11331|1 +638541.43154466|220670.60696321|128.64250743|11332|1 +638536.45707821|220675.14628988|128.68696062|11333|1 +638531.53307982|220679.64057345|128.80241427|11334|1 +638526.60711626|220684.13630375|128.89243686|11335|1 +638521.68259806|220688.63134081|129.02567551|11336|1 +638516.70803574|220693.17167644|129.13128788|11337|1 +638511.78774969|220697.66436924|129.36977612|11338|1 +638506.9163407|220702.11283707|129.63471862|11339|1 +638501.99289866|220706.60788955|129.83472542|11340|1 +638497.11824123|220711.05879711|130.06098183|11341|1 +638492.19530137|220715.55384389|130.29113568|11342|1 +638487.31857701|220720.00646935|130.50368127|11343|1 +638482.39269934|220724.5038536|130.70790177|11344|1 +638477.51881129|220728.95486989|130.98777362|11345|1 +638472.68585756|220733.36712819|131.16845133|11346|1 +638467.75550174|220737.8681735|131.33990167|11347|1 +638462.91478027|220742.28628766|131.43184973|11348|1 +638458.02394516|220746.74995744|131.5096963|11349|1 +638453.17900983|220751.17156896|131.57519941|11350|1 +638448.2842274|220755.63858285|131.63307506|11351|1 +638443.41707389|220760.07668483|131.42941266|11352|1 +638438.56766508|220764.5023847|131.49266474|11353|1 +638433.71024591|220768.93416382|131.46801504|11354|1 +638428.85638535|220773.36366696|131.51105436|11355|1 +638423.99562858|220777.79849579|131.48490706|11356|1 +638419.17875078|220782.19283409|131.42683607|11357|1 +638414.30536955|220786.63760456|131.2871885|11358|1 +638409.49227321|220791.02981281|131.32065629|11359|1 +638404.65418596|220795.44086974|131.07341508|11360|1 +638399.84258258|220799.83259525|131.16719559|11361|1 +638395.01977708|220804.23296118|131.14816415|11362|1 +638390.19289045|220808.63670021|131.1033854|11363|1 +638385.36729294|220813.03979081|131.0950045|11364|1 +638380.57285827|220817.41204676|130.91703361|11365|1 +638375.76471483|220821.7950543|130.61384221|11366|1 +638370.91309219|220826.21890955|130.39163207|11367|1 +638366.12162792|220830.59003512|130.32249197|11368|1 +638362.23410178|220834.27111559|139.79049113|11369|1 +638358.00657968|220838.20922467|145.49363349|11370|1 +638356.49022324|220839.37037664|129.74678642|11371|2 +638353.33324197|220842.48773872|146.49753701|11372|1 +638348.91622636|220846.56201181|149.60057242|11373|1 +638343.84953488|220851.14345571|146.63880309|11374|1 +638342.0794232|220852.50904015|128.96743709|11375|2 +638339.47169754|220852.00544094|149.4219039|11376|1 +638338.73532129|220852.57435468|142.13745954|11377|2 +638344.43190936|220847.48695755|150.88578026|11378|1 +638349.19682291|220843.11948254|150.4267562|11379|1 +638353.67623879|220838.97105788|147.03861205|11380|1 +638352.96618277|220839.5155786|139.73080163|11381|2 +638351.97945583|220840.27226994|129.57555932|11382|3 +638358.52128847|220834.53477942|146.89179281|11383|1 +638362.35791507|220830.87520615|136.60477223|11384|1 +638361.77061151|220831.32318923|130.39237621|11385|2 +638366.63635249|220826.86834449|130.27169497|11386|1 +638371.5197338|220822.40036944|130.36144781|11387|1 +638376.36898266|220817.9661341|130.63180394|11388|1 +638381.33403627|220813.42959353|131.1479037|11389|1 +638386.13224539|220809.03459317|130.90137872|11390|1 +638391.05667006|220804.52937064|131.0127861|11391|1 +638395.93391554|220800.06776732|131.16170754|11392|1 +638400.84866005|220795.57045979|131.21004887|11393|1 +638405.75421291|220791.08028718|131.1709163|11394|1 +638410.62964685|220786.62107377|131.3740857|11395|1 +638415.5294575|220782.13574291|131.30902907|11396|1 +638420.48506051|220777.6011123|131.36161202|11397|1 +638425.38779051|220773.11422562|131.37654137|11398|1 +638430.29397416|220768.62513828|131.45941089|11399|1 +638435.24307705|220764.09620471|131.49854347|11400|1 +638440.12865556|220759.62261891|131.35021734|11401|1 +638445.09021102|220755.08537783|131.60652779|11402|1 +638450.03584594|220750.55990935|131.66957523|11403|1 +638454.96679314|220746.04517424|131.54549883|11404|1 +638459.89611203|220741.5318124|131.41481818|11405|1 +638464.83092626|220737.01483708|131.38342468|11406|1 +638469.80464095|220732.46062696|131.23444743|11407|1 +638474.72690234|220727.95285734|131.04665387|11408|1 +638479.6443531|220723.44856691|130.79611982|11409|1 +638484.6083422|220718.90158373|130.53417249|11410|1 +638489.57654455|220714.35188973|130.3530483|11411|1 +638494.54099344|220709.80489465|130.12185265|11412|1 +638499.45571511|220705.30301571|129.86987683|11413|1 +638504.46723756|220700.71309013|129.64631794|11414|1 +638509.43253984|220696.16597206|129.46433798|11415|1 +638514.38818101|220691.62525702|129.11371682|11416|1 +638519.35720578|220687.07603181|129.02482905|11417|1 +638524.32253184|220682.52943859|128.87959111|11418|1 +638529.33683598|220677.94054373|128.76166319|11419|1 +638534.30423612|220673.39498044|128.678496|11420|1 +638539.27403619|220668.84819001|128.66375269|11421|1 +638544.28603998|220664.26134683|128.54559222|11422|1 +638549.29713164|220659.67523202|128.42118096|11423|1 +638554.25838251|220655.1341483|128.26238104|11424|1 +638559.26966074|220650.54827165|128.16902841|11425|1 +638564.28157623|220645.96224656|128.10686464|11426|1 +638569.29211703|220641.37719397|128.02595779|11427|1 +638574.30208652|220636.79264734|127.94501373|11428|1 +638579.31330066|220632.20766118|127.9140016|11429|1 +638584.36533372|220627.58273837|127.69947473|11430|1 +638589.37925445|220622.99685477|127.78093039|11431|1 +638594.39032633|220618.41266582|127.79990601|11432|1 +638599.44217021|220613.78823419|127.61068928|11433|1 +638604.44878093|220609.20639093|127.51102074|11434|1 +638609.49368411|220604.58479171|127.07841373|11435|1 +638614.50266353|220600.00209553|127.07244199|11436|1 +638619.55762296|220595.37663546|127.0148919|11437|1 +638624.60935603|220590.7523208|126.83257708|11438|1 +638629.66295999|220586.12744785|126.73166211|11439|1 +638634.66992116|220581.54599933|126.68833443|11440|1 +638639.77578721|220576.87690295|126.83653963|11441|1 +638644.78418911|220572.29580114|126.91206076|11442|1 +638649.88417736|220567.62812351|126.78591937|11443|1 +638654.93502113|220563.00374177|126.54839851|11444|1 +638659.9383998|220558.42227734|126.28037712|11445|1 +638665.03634451|220553.75277017|125.89887406|11446|1 +638670.09046405|220549.12713724|125.78684347|11447|1 +638675.14435135|220544.50107807|125.63125265|11448|1 +638680.19916798|220539.87514668|125.5445787|11449|1 +638685.30264622|220535.20625405|125.56433567|11450|1 +638690.31104153|220530.62529382|125.6592324|11451|1 +638695.41502416|220525.95823932|125.84206811|11452|1 +638700.47092027|220521.33546416|126.04993491|11453|1 +638705.52620791|220516.71198137|126.17049524|11454|1 +638710.62900522|220512.04463323|126.26059224|11455|1 +638715.68399203|220507.42113258|126.36287458|11456|1 +638720.73859507|220502.79966629|126.58404291|11457|1 +638725.84181768|220498.12913175|126.48142572|11458|1 +638730.89797597|220493.50130757|126.35940501|11459|1 +638736.0024893|220488.82930052|126.23877958|11460|1 +638741.10883687|220484.15355765|125.97487888|11461|1 +638746.16850055|220479.52053011|125.71622438|11462|1 +638751.22806172|220474.88918686|125.570233|11463|1 +638756.3371134|220470.21157033|125.35118547|11464|1 +638761.4473313|220465.53278155|125.12635223|11465|1 +638766.51224707|220460.89409981|124.81259401|11466|1 +638771.62591038|220456.21125774|124.5261272|11467|1 +638776.74039411|220451.52809539|124.27137015|11468|1 +638781.79911126|220446.89495124|123.95184483|11469|1 +638786.91619681|220442.2092167|123.68542335|11470|1 +638792.03566095|220437.52067502|123.37577651|11471|1 +638797.10994813|220432.87273795|123.02029982|11472|1 +638802.23235486|220428.18166714|122.72407545|11473|1 +638807.35783138|220423.48697959|122.37219855|11474|1 +638812.43817802|220418.8330317|121.98663062|11475|1 +638817.5689381|220414.13269111|121.57955698|11476|1 +638822.70284955|220409.42893171|121.1356204|11477|1 +638827.79621843|220404.75984233|120.52661449|11478|1 +638832.58253011|220400.52713869|130.81724415|11479|1 +638837.55433566|220396.01593055|133.48393323|11480|1 +638842.6139246|220391.38666607|133.50493664|11481|1 +638843.13582008|220390.69989251|118.8243429|11482|2 +638847.77054556|220386.65005445|132.21997994|11483|1 +638852.76898212|220382.10090939|133.93840872|11484|1 +638857.91479604|220377.3626799|131.8521505|11485|1 +638863.58476426|220371.9820286|118.33362768|11486|1 +638868.67321964|220367.32546542|118.29569504|11487|1 +638873.7537313|220362.67918103|118.47010335|11488|1 +638878.84742729|220358.0169118|118.37051853|11489|1 +638883.94444472|220353.35106648|118.23391264|11490|1 +638889.04556563|220348.68074843|118.04785851|11491|1 +638894.19918322|220343.96171529|117.81110039|11492|1 +638899.25538694|220339.33262244|117.63966865|11493|1 +638904.37112937|220334.64667123|117.28673135|11494|1 +638909.48243038|220329.97052467|117.08996157|11495|1 +638914.54621243|220325.3381593|116.91935769|11496|1 +638919.66475136|220320.65457983|116.66738187|11497|1 +638924.79129126|220315.96225592|116.31630492|11498|1 +638929.87582901|220311.30742422|115.90397578|11499|1 +638934.99787611|220306.62150592|115.71573573|11500|1 +638940.077689|220301.97328652|115.46599233|11501|1 +638945.20267511|220297.28502052|115.30360192|11502|1 +638950.29398146|220292.62476854|114.94887868|11503|1 +638955.38270418|220287.96802387|114.67538785|11504|1 +638960.46520948|220283.31881734|114.53285673|11505|1 +638965.54653303|220278.67138952|114.44039707|11506|1 +638970.58728301|220274.05986682|114.26691894|11507|1 +638975.6858179|220269.39411641|113.99480477|11508|1 +638980.73866329|220264.77009714|113.72233714|11509|1 +638985.78684646|220260.15174465|113.54946362|11510|1 +638990.88914437|220255.48332523|113.33431353|11511|1 +638995.89678573|220250.90144885|113.12352598|11512|1 +639000.94865852|220246.2804021|113.00090996|11513|1 +639006.00196177|220241.65821166|112.89090715|11514|1 +639011.05567678|220237.03598572|112.80592612|11515|1 +639016.06587665|220232.45304791|112.6885098|11516|1 +639021.07700177|220227.8695156|112.58969703|11517|1 +639026.08533215|220223.28940808|112.5529085|11518|1 +639031.0949222|220218.70830968|112.52850994|11519|1 +639036.10304748|220214.12915636|112.54749487|11520|1 +639041.11506886|220209.54616223|112.54788554|11521|1 +639046.12550752|220204.96521708|112.5916597|11522|1 +639043.90694373|220203.31434404|112.71491754|11523|1 +639038.88853879|220207.90003114|112.73435826|11524|1 +639033.83542435|220212.51559415|112.62156492|11525|1 +639028.77156778|220217.14311631|112.65778603|11526|1 +639023.70578527|220221.77266076|112.74388328|11527|1 +639018.65160289|220226.3875564|112.71249908|11528|1 +639013.59348561|220231.0071289|112.75575234|11529|1 +639008.53619141|220235.62623067|112.8178324|11530|1 +639003.47338097|220240.25180562|112.97945076|11531|1 +638998.41217899|220244.87610839|113.15371024|11532|1 +638993.34596367|220249.50643031|113.42755454|11533|1 +638988.30211343|220254.11259361|113.44079097|11534|1 +638983.24432494|220258.73461667|113.67157734|11535|1 +638978.1453073|220263.39347681|113.83967905|11536|1 +638973.13218088|220267.97646876|114.19590918|11537|1 +638968.03781971|220272.63119461|114.37082908|11538|1 +638962.94712496|220277.28231539|114.5274617|11539|1 +638957.9095361|220281.88435602|114.64743601|11540|1 +638952.82215455|220286.53275316|114.8233233|11541|1 +638947.78135485|220291.13944324|115.06178364|11542|1 +638942.69236298|220295.79076876|115.33777665|11543|1 +638937.60549283|220300.44026611|115.62034601|11544|1 +638932.57680955|220305.03476886|115.7784483|11545|1 +638927.49542306|220309.67910328|116.04908349|11546|1 +638922.41178176|220314.32666812|116.40096969|11547|1 +638917.33001727|220318.97271735|116.76563653|11548|1 +638912.21725477|220323.64333139|116.86362145|11549|1 +638907.19604605|220328.2319706|117.08478978|11550|1 +638902.0799639|220332.90761367|117.3205154|11551|1 +638897.0151133|220337.53612707|117.53685612|11552|1 +638891.95168675|220342.16353748|117.76588446|11553|1 +638886.84455173|220346.83025479|117.94668309|11554|1 +638881.78626172|220351.45264639|118.15130356|11555|1 +638876.73239564|220356.07020263|118.30000176|11556|1 +638871.63351816|220360.72853333|118.41946448|11557|1 +638866.60359029|220365.31729187|118.08221927|11558|1 +638861.04688746|220370.55496253|129.45257123|11559|1 +638861.51494011|220369.96363381|118.01518137|11560|2 +638855.85229889|220375.34247782|132.48701534|11561|1 +638850.83938747|220379.91734986|132.26407966|11562|1 +638851.37925409|220379.22182986|118.12930486|11563|2 +638845.88022332|220384.40393655|129.29858033|11564|1 +638846.28361901|220383.87862033|118.34385034|11565|2 +638840.68739539|220389.2147206|134.07296822|11566|1 +638835.62334555|220393.83974369|134.08383269|11567|1 +638830.86999558|220398.04557653|124.63445569|11568|1 +638831.02848038|220397.83149732|119.79188578|11569|2 +638825.97150672|220402.46070176|120.54789696|11570|1 +638820.87596153|220407.12222472|121.09486001|11571|1 +638815.78339298|220411.78077252|121.62347066|11572|1 +638810.70118446|220416.42567998|121.85903815|11573|1 +638805.61467821|220421.07774503|122.31966212|11574|1 +638800.53502285|220425.72079941|122.58706029|11575|1 +638795.45387111|220430.36711247|122.98588325|11576|1 +638790.37703434|220435.00789232|123.27259191|11577|1 +638785.3018474|220439.64708711|123.55333812|11578|1 +638780.22682705|220444.28713278|123.90304771|11579|1 +638775.16490766|220448.91414417|124.17854772|11580|1 +638770.04568281|220453.59391818|124.47672547|11581|1 +638764.97505105|220458.22982545|124.81479853|11582|1 +638759.90735441|220462.8615491|125.04693366|11583|1 +638754.7934174|220467.53520294|125.25260524|11584|1 +638749.72758759|220472.16579027|125.52280324|11585|1 +638744.66343679|220476.79414981|125.74323674|11586|1 +638739.55342348|220481.46302356|125.86256923|11587|1 +638734.4907915|220486.09082767|126.13979007|11588|1 +638729.42987917|220490.7154648|126.30471987|11589|1 +638724.32245422|220495.38122953|126.36890213|11590|1 +638719.26327572|220500.00244609|126.40313266|11591|1 +638714.15685231|220504.66581554|126.36181417|11592|1 +638709.09820157|220509.28229489|126.09655542|11593|1 +638704.03931633|220513.90186553|126.03145228|11594|1 +638698.98012212|220518.52030678|125.86653179|11595|1 +638693.8729557|220523.18282255|125.71403846|11596|1 +638688.86060267|220527.75799963|125.51847792|11597|1 +638683.75285467|220532.42144021|125.39157378|11598|1 +638678.69320319|220537.04215135|125.35248772|11599|1 +638673.63457932|220541.66363498|125.43231556|11600|1 +638668.57674406|220546.28521706|125.56856798|11601|1 +638663.51950334|220550.90662419|125.73000031|11602|1 +638658.46448196|220555.52798629|126.02908963|11603|1 +638653.41078574|220560.14877757|126.37209264|11604|1 +638648.35575258|220564.76884387|126.57778282|11605|1 +638643.29938493|220569.38880046|126.68366494|11606|1 +638638.23907201|220574.01019942|126.60851589|11607|1 +638633.22399979|220578.58887402|126.43865615|11608|1 +638628.16582727|220583.21049099|126.51374009|11609|1 +638623.10764304|220587.8322212|126.59525155|11610|1 +638618.0991146|220592.40977641|126.76288817|11611|1 +638613.04099858|220597.03166021|126.85714307|11612|1 +638607.98284858|220601.6536819|126.9578441|11613|1 +638602.97662615|220606.23041861|127.21301043|11614|1 +638597.96171363|220610.83354223|128.75690998|11615|1 +638592.86678594|220615.47193978|127.64622206|11616|1 +638587.9554934|220620.00303621|130.78073468|11617|1 +638582.79279048|220624.67579258|127.73430059|11618|1 +638577.78081382|220629.25564127|127.83342962|11619|1 +638572.76679283|220633.83674959|127.8888217|11620|1 +638567.70359443|220638.46254205|127.92194532|11621|1 +638562.73697325|220643.00063551|127.99954074|11622|1 +638557.72084866|220647.58361806|128.04863552|11623|1 +638552.70693649|220652.16557699|128.1663774|11624|1 +638547.74038094|220656.70427148|128.28716097|11625|1 +638542.72675269|220661.28644409|128.43597079|11626|1 +638537.76021695|220665.82549703|128.58133895|11627|1 +638532.79102812|220670.36636785|128.68278412|11628|1 +638527.76828883|220674.95477492|128.6815935|11629|1 +638522.84573535|220679.45313155|128.79139166|11630|1 +638517.82750834|220684.03921701|128.91479833|11631|1 +638512.9057386|220688.53750445|129.06758001|11632|1 +638507.94379568|220693.07474235|129.37373868|11633|1 +638503.02146403|220697.57373149|129.53820339|11634|1 +638498.10230948|220702.07080705|129.77079431|11635|1 +638493.13824151|220706.60984519|130.06353981|11636|1 +638488.21682061|220711.10874433|130.27663421|11637|1 +638483.29239735|220715.60985943|130.45188898|11638|1 +638478.37141701|220720.10882174|130.69526996|11639|1 +638473.44814358|220724.60952547|130.913285|11640|1 +638468.5732789|220729.06623954|131.15072214|11641|1 +638463.64385444|220733.57160975|131.2992436|11642|1 +638458.7070487|220738.08240533|131.35395665|11643|1 +638453.86707422|220742.50508951|131.44104919|11644|1 +638448.93992051|220747.00956379|131.66916595|11645|1 +638444.03571543|220751.48825241|131.56125604|11646|1 +638439.11920531|220755.97615733|131.3096709|11647|1 +638434.22870302|220760.44570291|131.43727266|11648|1 +638429.36563325|220764.88651605|131.30939184|11649|1 +638424.45973643|220769.36784677|131.27401719|11650|1 +638419.59232045|220773.81255662|131.13861123|11651|1 +638414.70254781|220778.28270786|131.35093358|11652|1 +638409.86288558|220782.69909379|131.00876773|11653|1 +638404.95770075|220787.18122097|131.07062454|11654|1 +638400.13404656|220791.58652996|130.9756348|11655|1 +638395.3040622|220796.00501577|131.39619602|11656|1 +638390.44744504|220800.43559499|130.95770098|11657|1 +638385.6057807|220804.85543103|130.72348225|11658|1 +638380.78700354|220809.25841905|130.77420483|11659|1 +638375.92778816|220813.69227275|130.39550161|11660|1 +638371.14841813|220818.058481|130.39368776|11661|1 +638366.25983518|220822.52295588|130.27539707|11662|1 +638361.52621632|220826.84755914|130.28889395|11663|1 +638357.84701421|220830.38051569|142.39213288|11664|1 +638357.38545164|220830.73352681|137.55196282|11665|2 +638353.64626952|220834.30192547|148.29624012|11666|1 +638348.89648847|220838.64349998|148.45924445|11667|1 +638342.2340318|220844.45938131|129.36572055|11668|1 +638339.65724521|220847.11942031|150.94372103|11669|1 +638333.73420184|220852.36981144|139.60411143|11670|1 +638332.66564438|220853.19722534|129.10968915|11671|2 +638330.57112647|220852.51563887|130.46836243|11672|1 +638337.44425455|220846.50768573|150.67256494|11673|1 +638341.6738437|220842.54921849|144.85258297|11674|1 +638340.08926843|220843.77300763|128.92190489|11675|2 +638346.43919194|220838.17608927|144.35715175|11676|1 +638351.15798413|220833.83884152|143.38916239|11677|1 +638349.80185218|220834.88097545|129.38720765|11678|2 +638356.30985191|220829.1624063|146.44554008|11679|1 +638354.70870442|220830.38958312|129.68552492|11680|2 +638360.66454962|220825.1040859|141.65904128|11681|1 +638359.77971924|220825.78042922|132.26875846|11682|2 +638364.5218091|220821.40852727|130.3676707|11683|1 +638369.33655628|220816.99594024|130.28080141|11684|1 +638374.22342573|220812.5213494|130.4776456|11685|1 +638379.09396799|220808.05947527|130.51864783|11686|1 +638384.02959204|220803.54107606|130.7756187|11687|1 +638388.92039482|220799.06468327|131.10132971|11688|1 +638393.80370273|220794.58626964|130.8043891|11689|1 +638398.66017946|220790.13621861|130.77466062|11690|1 +638403.5742229|220785.63537746|130.88064506|11691|1 +638408.48968681|220781.13383928|131.02972463|11692|1 +638413.39750984|220776.63830439|131.10995245|11693|1 +638418.2940943|220772.15135758|131.07151751|11694|1 +638423.15970233|220767.69620726|131.2751241|11695|1 +638428.0951175|220763.17260526|131.16111222|11696|1 +638433.0061281|220758.67611414|131.38252241|11697|1 +638437.94109904|220754.15341441|131.30513163|11698|1 +638442.84629924|220749.66185199|131.50076659|11699|1 +638447.79345991|220745.13106142|131.64056299|11700|1 +638452.71804991|220740.61666427|131.48113054|11701|1 +638457.64280331|220736.10236426|131.34000399|11702|1 +638462.57471289|220731.58327022|131.32306545|11703|1 +638467.49791275|220727.07053714|131.19364054|11704|1 +638472.45648052|220722.52284729|130.88436577|11705|1 +638477.37350377|220718.01475784|130.68565192|11706|1 +638482.28969387|220713.50741516|130.48651019|11707|1 +638487.25080165|220708.95841632|130.25114734|11708|1 +638492.21268746|220704.40904505|130.04049931|11709|1 +638497.17101787|220699.86220219|129.77975192|11710|1 +638502.1354017|220695.31148978|129.637258|11711|1 +638507.09150569|220690.76639073|129.35733965|11712|1 +638512.04553159|220686.22273516|129.04596268|11713|1 +638516.95873261|220681.71845441|128.87547972|11714|1 +638521.96996597|220677.12450292|128.77181143|11715|1 +638526.93209307|220672.57355289|128.67181733|11716|1 +638531.94016223|220667.98020322|128.54932224|11717|1 +638536.90253105|220663.4295354|128.48641432|11718|1 +638541.85960529|220658.88227498|128.32341929|11719|1 +638546.86542111|220654.29085925|128.19441296|11720|1 +638551.87066788|220649.69995203|128.06539732|11721|1 +638556.83107277|220645.1512858|128.02046974|11722|1 +638561.83813006|220640.55976036|127.96621248|11723|1 +638566.84237531|220635.97000117|127.85574458|11724|1 +638571.84980802|220631.37872512|127.84514055|11725|1 +638576.84988014|220626.79150954|127.64718015|11726|1 +638581.81044846|220622.24395808|127.6950936|11727|1 +638586.95542423|220617.56658987|130.48638927|11728|1 +638591.86522472|220613.02323442|127.56513848|11729|1 +638596.86258519|220608.43774242|127.31701359|11730|1 +638601.86433417|220603.85035295|127.21874033|11731|1 +638606.97146047|220599.22150515|130.98742015|11732|1 +638606.85316762|220599.26819196|126.65812226|11733|2 +638611.8629616|220594.67776742|126.86584953|11734|1 +638616.90720975|220590.04873282|126.57844324|11735|1 +638621.90893394|220585.46157814|126.49879213|11736|1 +638626.95784205|220580.83101622|126.40529998|11737|1 +638631.96730911|220576.24235135|126.71930935|11738|1 +638637.02155195|220571.61141662|126.9447379|11739|1 +638642.06496286|220566.98247295|126.61421788|11740|1 +638647.06535059|220562.39639253|126.52838108|11741|1 +638652.11122536|220557.76641643|126.28554891|11742|1 +638657.15647769|220553.13566556|125.94915016|11743|1 +638662.20386126|220548.50455076|125.72539593|11744|1 +638667.25027464|220543.87245354|125.37057037|11745|1 +638672.30145943|220539.24175324|125.42214872|11746|1 +638677.35083067|220534.60994916|125.2801571|11747|1 +638682.40180298|220529.97924969|125.31958733|11748|1 +638687.45325279|220525.34961595|125.46542989|11749|1 +638692.50420466|220520.71998344|125.58020451|11750|1 +638697.55511724|220516.09144102|125.77014678|11751|1 +638702.60554941|220511.4627097|125.91651953|11752|1 +638707.65571789|220506.83456595|126.08805359|11753|1 +638712.7055602|220502.20697407|126.27850746|11754|1 +638717.75541756|220497.57758272|126.3441594|11755|1 +638722.80560798|220492.94689774|126.34123864|11756|1 +638727.85671529|220488.31367265|126.21978535|11757|1 +638732.95617682|220483.63608779|126.09348583|11758|1 +638737.96228977|220479.04162138|125.80249836|11759|1 +638743.0631522|220474.36309374|125.70182523|11760|1 +638748.11824169|220469.72485072|125.48756811|11761|1 +638753.17412818|220465.08613144|125.29225871|11762|1 +638758.23170577|220460.44514644|125.04719411|11763|1 +638763.33881466|220455.75820036|124.76056917|11764|1 +638768.39885114|220451.11494703|124.51608128|11765|1 +638773.46156993|220446.46806795|124.19064933|11766|1 +638778.51456295|220441.83061662|123.90243379|11767|1 +638783.5789664|220437.18280319|123.62117598|11768|1 +638788.69335339|220432.48871238|123.30525044|11769|1 +638793.76175936|220427.83659146|122.98094401|11770|1 +638798.832265|220423.18227655|122.63819215|11771|1 +638803.95076946|220418.48484113|122.35483214|11772|1 +638809.02859883|220413.82175958|121.86920499|11773|1 +638814.10324549|220409.16424815|121.57119468|11774|1 +638819.23577676|220404.44977157|120.99588911|11775|1 +638824.31641083|220399.78578939|120.63000374|11776|1 +638829.40881281|220395.10675245|119.96493602|11777|1 +638834.12135201|220390.95525713|131.9144724|11778|1 +638839.15569131|220386.34802671|132.55926224|11779|1 +638839.65274843|220385.69341547|118.55869347|11780|2 +638844.21923756|220381.70249125|132.39316042|11781|1 +638844.74644265|220381.016025|118.09466505|11782|2 +638849.33514127|220376.99007491|130.89872772|11783|1 +638854.35200148|220372.40584692|132.03692098|11784|1 +638859.41700782|220367.7601011|131.95282362|11785|1 +638865.11694873|220362.33594956|118.04302158|11786|1 +638870.14148298|220357.73192068|118.28738855|11787|1 +638875.22986504|220353.06459269|118.19350572|11788|1 +638880.32270281|220348.3922853|118.03768236|11789|1 +638885.4187986|220343.71654778|117.85109803|11790|1 +638890.51187243|220339.04499161|117.76464732|11791|1 +638895.61478434|220334.3621116|117.51661545|11792|1 +638900.7172277|220329.67949446|117.3126554|11793|1 +638905.82066058|220324.99432847|117.11542984|11794|1 +638910.87287238|220320.35739204|117.01288705|11795|1 +638915.97994797|220315.66895685|116.82271223|11796|1 +638921.09805905|220310.96818494|116.47739309|11797|1 +638926.16687554|220306.31344742|116.19530742|11798|1 +638931.2832992|220301.6158086|115.96301415|11799|1 +638936.40395571|220296.91384361|115.70015525|11800|1 +638941.47607651|220292.25694128|115.48147049|11801|1 +638946.55851609|220287.58880072|115.13871863|11802|1 +638951.68007343|220282.88740815|114.97688633|11803|1 +638956.75687626|220278.22672406|114.79667371|11804|1 +638961.82920214|220273.57154904|114.71628776|11805|1 +638966.91011573|220268.90716528|114.54299566|11806|1 +638971.99694062|220264.23665621|114.32035764|11807|1 +638977.13822321|220259.51557041|114.04922016|11808|1 +638982.18145643|220254.88504238|113.83285154|11809|1 +638987.26765055|220250.21667542|113.72330452|11810|1 +638992.3633167|220245.5383033|113.52100949|11811|1 +638997.40405153|220240.91189283|113.43587033|11812|1 +639002.55171366|220236.18616682|113.25437407|11813|1 +639007.59826851|220231.55423657|113.15746816|11814|1 +639012.65079375|220226.91619681|113.0173462|11815|1 +639017.69760919|220222.28479745|112.97671604|11816|1 +639022.7441266|220217.65410287|112.96732125|11817|1 +639027.79879254|220213.01495646|112.88993977|11818|1 +639032.8434869|220208.38697217|112.95539637|11819|1 +639037.89307878|220203.75405012|112.99008269|11820|1 +639042.95778264|220199.10524472|112.88251695|11821|1 +639043.41282786|220194.73887627|112.79237344|11822|1 +639038.28325379|220199.43784434|113.00359818|11823|1 +639033.16811386|220204.12174349|113.08528638|11824|1 +639028.01575536|220208.83832671|113.06627354|11825|1 +639022.96303983|220213.46357015|113.0456236|11826|1 +639017.81436224|220218.17712412|113.03392197|11827|1 +639012.70968929|220222.8517376|113.09893208|11828|1 +639007.60945103|220227.52195268|113.13960875|11829|1 +639002.45624875|220232.24195278|113.26619663|11830|1 +638997.29878903|220236.96712589|113.48041654|11831|1 +638992.1938449|220241.643937|113.67794906|11832|1 +638987.04603616|220246.35950641|113.83762335|11833|1 +638981.96104905|220251.01521614|113.83741871|11834|1 +638976.8180356|220255.7264281|113.99831154|11835|1 +638971.66284508|220260.45176391|114.36493176|11836|1 +638966.5706757|220265.1169618|114.56504087|11837|1 +638961.43527989|220269.82125387|114.72780336|11838|1 +638956.30811103|220274.51678215|114.80413373|11839|1 +638951.22390134|220279.17456125|114.99319234|11840|1 +638946.09581472|220283.87212758|115.15141556|11841|1 +638940.96054687|220288.57843516|115.4595276|11842|1 +638935.87764624|220293.23640521|115.74322248|11843|1 +638930.70161276|220297.97958341|116.01536455|11844|1 +638925.57697787|220302.67549275|116.27549803|11845|1 +638920.50361679|220307.3242387|116.52319503|11846|1 +638915.3854554|220312.0138093|116.75317215|11847|1 +638910.27192077|220316.69852428|116.94007275|11848|1 +638905.16348023|220321.37779245|117.07142313|11849|1 +638900.00524656|220326.10371551|117.27277869|11850|1 +638894.95036845|220330.73346468|117.37289371|11851|1 +638889.84110919|220335.41540953|117.63647814|11852|1 +638884.69671042|220340.12639141|117.67756409|11853|1 +638879.6453356|220344.75351369|117.81602103|11854|1 +638874.54734252|220349.42349004|117.96251471|11855|1 +638869.45410326|220354.08815077|118.04083567|11856|1 +638864.37644626|220358.73380642|117.78906448|11857|1 +638858.73958854|220364.08657764|131.11983094|11858|1 +638853.66842699|220368.73107045|131.20082151|11859|1 +638843.46943575|220378.09554125|133.00440805|11860|1 +638844.03562412|220377.3580337|117.74556938|11861|2 +638838.41409691|220382.74091424|134.15712139|11862|1 +638833.41558536|220387.29242761|132.3925558|11863|1 +638833.88303381|220386.66924287|118.79641896|11864|2 +638828.51199528|220391.71414437|127.63880855|11865|1 +638823.71922955|220396.00036066|120.51624301|11866|1 +638818.63273677|220400.66338001|120.90379222|11867|1 +638813.54717426|220405.32609977|121.32915316|11868|1 +638808.50986113|220409.94545494|121.81410127|11869|1 +638803.43684193|220414.59214919|121.92162981|11870|1 +638798.35442489|220419.25355329|122.45402628|11871|1 +638793.3265238|220423.86226988|122.79586656|11872|1 +638788.25013855|220428.51701347|123.24761664|11873|1 +638783.18143435|220433.16079457|123.42488989|11874|1 +638778.1600456|220437.76241959|123.68594425|11875|1 +638772.67151489|220442.7934634|124.03162616|11876|1 +638768.08165963|220446.99993131|124.31891153|11877|1 +638763.01551089|220451.64339826|124.63436267|11878|1 +638757.95071162|220456.28572989|124.95631576|11879|1 +638752.93681397|220460.87938913|125.13656558|11880|1 +638747.87624067|220465.51582118|125.3151969|11881|1 +638742.86348962|220470.1096169|125.57676285|11882|1 +638737.85315696|220474.69905707|125.68836556|11883|1 +638732.79533559|220479.33309696|125.87366625|11884|1 +638727.73864599|220483.96548788|126.01543462|11885|1 +638722.73033138|220488.55356552|126.15842153|11886|1 +638717.67528389|220493.18340192|126.22548734|11887|1 +638712.66855413|220497.7671876|126.16855117|11888|1 +638707.66192305|220502.35008851|126.05531134|11889|1 +638702.60746038|220506.97576345|125.86648528|11890|1 +638697.60021364|220511.55764175|125.64077767|11891|1 +638692.59248435|220516.13997025|125.41501426|11892|1 +638687.53699762|220520.76724989|125.27024141|11893|1 +638682.57689207|220525.30800949|125.18829276|11894|1 +638677.52089283|220529.93596018|125.05616103|11895|1 +638672.51361167|220534.52150508|125.08028053|11896|1 +638667.50563779|220539.10671175|125.0356134|11897|1 +638662.50174879|220543.69337068|125.35337139|11898|1 +638657.49960142|220548.27952036|125.74604588|11899|1 +638652.49628926|220552.86469081|125.99493351|11900|1 +638647.49218714|220557.44943315|126.16252361|11901|1 +638642.48926186|220562.03355462|126.36130258|11902|1 +638637.48000953|220566.61782089|126.21633439|11903|1 +638632.49951028|220571.1961691|127.56474781|11904|1 +638627.51428701|220575.74136487|126.29371587|11905|1 +638622.50621425|220580.32559955|126.28596749|11906|1 +638617.49924129|220584.9097299|126.34065263|11907|1 +638612.4932713|220589.49366577|126.44526971|11908|1 +638607.70237201|220593.99601282|134.62141026|11909|1 +638607.48847039|220594.07725079|126.59982803|11910|2 +638602.92276513|220598.45847457|140.73335639|11911|1 +638602.78385567|220598.51479683|135.77321202|11912|2 +638602.53192873|220598.61694319|126.77748266|11913|3 +638597.53232625|220603.19837753|127.11297913|11914|1 +638592.524451|220607.78337611|127.1673108|11915|1 +638587.52616043|220612.36407356|127.53390311|11916|1 +638582.64679104|220616.88655983|131.4479046|11917|1 +638577.70069468|220621.41903588|131.7867218|11918|1 +638572.54448036|220626.07960333|127.61907018|11919|1 +638567.58857945|220630.61947412|127.84531729|11920|1 +638562.62333967|220635.16451434|127.83400633|11921|1 +638557.61195718|220639.75270484|127.8815384|11922|1 +638552.64567004|220644.29889864|127.88235696|11923|1 +638547.68415928|220648.84259772|128.01402361|11924|1 +638542.67343448|220653.43110152|128.12371946|11925|1 +638537.75982364|220657.93130513|128.28286355|11926|1 +638532.75112053|220662.5189552|128.46094606|11927|1 +638527.83286883|220667.0223502|128.54448531|11928|1 +638522.87089932|220671.56721725|128.72485606|11929|1 +638517.9010737|220676.11723758|128.76150506|11930|1 +638512.98175488|220680.6219777|128.86885686|11931|1 +638508.02341015|220685.16505912|129.1544679|11932|1 +638503.11328368|220689.66415416|129.45436648|11933|1 +638498.14786931|220694.21212001|129.62712837|11934|1 +638493.23178462|220698.71543482|129.83890191|11935|1 +638488.31613468|220703.2186185|130.06893484|11936|1 +638483.40096545|220707.72163687|130.31722716|11937|1 +638478.48017641|220712.22864987|130.48403592|11938|1 +638473.56556168|220716.73161352|130.76258692|11939|1 +638468.64672616|220721.23764272|130.98462962|11940|1 +638463.72546083|220725.7455502|131.18132498|11941|1 +638458.8466622|220730.21356559|131.31008017|11942|1 +638453.91286003|220734.73074176|131.35015223|11943|1 +638448.99153695|220739.23933386|131.58914277|11944|1 +638444.09435154|220743.72117847|131.50460822|11945|1 +638439.18731943|220748.21044645|131.30749428|11946|1 +638434.2946766|220752.68973665|131.33397644|11947|1 +638429.39724156|220757.17279385|131.31634957|11948|1 +638424.48770618|220761.66498861|131.16131686|11949|1 +638419.58863581|220766.14991051|131.16756766|11950|1 +638414.68249008|220770.64033282|131.10488299|11951|1 +638409.80903455|220775.09839844|130.87365013|11952|1 +638404.9196309|220779.57713459|131.06488535|11953|1 +638400.03890269|220784.04132673|130.79514313|11954|1 +638395.1854574|220788.48558585|130.87908236|11955|1 +638390.33145496|220792.93053329|130.97474183|11956|1 +638385.43488601|220797.40773129|130.59747108|11957|1 +638380.61140278|220801.82246423|130.53564217|11958|1 +638375.7238953|220806.29367533|130.31865033|11959|1 +638370.96212531|220810.6546636|130.45288427|11960|1 +638366.0728701|220815.12792096|130.26554649|11961|1 +638361.28773604|220819.50729003|130.18673254|11962|1 +638353.43406336|220826.96452035|149.01585345|11963|1 +638351.57172496|220828.39326785|129.58241473|11964|2 +638348.49610609|220831.46590028|147.67256532|11965|1 +638346.72448874|220832.82860637|129.43430255|11966|2 +638341.93632173|220837.21172393|129.42011734|11967|1 +638338.8279569|220840.29663967|146.27119689|11968|1 +638337.08723091|220841.64224048|128.81584604|11969|2 +638334.6017135|220844.2418683|151.64487033|11970|1 +638328.09258908|220849.95843549|134.59036093|11971|1 +638324.38913288|220853.49749795|145.06208688|11972|1 +638322.65113787|220854.8503438|128.28757025|11973|2 +638319.54852426|220855.04007128|147.00533959|11974|1 +638324.1688642|220850.77198433|145.60545945|11975|1 +638329.09144469|220846.26215959|146.68120989|11976|1 +638327.26619411|220847.67976489|128.79266601|11977|2 +638333.82603231|220841.89869794|145.94010016|11978|1 +638332.09994072|220843.23612084|128.80393046|11979|2 +638338.47693246|220837.59298096|143.8751523|11980|1 +638337.01718013|220838.72125972|129.19083785|11981|2 +638343.78823723|220832.78465166|148.99913816|11982|1 +638341.84412533|220834.28354531|129.18216859|11983|2 +638348.80478882|220828.19816015|150.74178876|11984|1 +638353.26670659|220824.03802967|146.74477823|11985|1 +638352.62395963|220824.53097008|140.01218967|11986|2 +638351.62340476|220825.29832323|129.53169214|11987|3 +638357.52183245|220820.03473742|140.46147477|11988|1 +638356.54655861|220820.78063827|130.10290493|11989|2 +638361.42752881|220816.29566704|130.25784462|11990|1 +638366.28842014|220811.82633097|130.21975385|11991|1 +638371.20162258|220807.30995185|130.2482824|11992|1 +638376.079012|220802.82873616|130.43886649|11993|1 +638380.99221262|220798.3130365|130.51622937|11994|1 +638385.90272182|220793.79969903|130.58696938|11995|1 +638390.80901115|220789.28985148|130.63245506|11996|1 +638395.7143366|220784.78106111|130.68993074|11997|1 +638400.61662561|220780.27484693|130.73455136|11998|1 +638405.5204973|220775.76779432|130.82223921|11999|1 +638410.49411723|220771.20102869|131.20790016|12000|1 +638415.41236745|220766.6753793|130.92161009|12001|1 +638420.31034801|220762.17367863|131.00812591|12002|1 +638425.26238845|220757.62389077|131.20019829|12003|1 +638430.175819|220753.11174013|131.54728477|12004|1 +638435.09017882|220748.58995298|131.28438867|12005|1 +638440.02010849|220744.0571711|131.25145108|12006|1 +638445.01881044|220739.46586667|131.53646681|12007|1 +638449.94707348|220734.93494702|131.52793708|12008|1 +638454.86373811|220730.41249977|131.36958364|12009|1 +638459.83221908|220725.84358375|131.2866583|12010|1 +638464.74587065|220721.32368682|131.11518005|12011|1 +638469.70053709|220716.76481868|130.85111192|12012|1 +638474.6568357|220712.20497556|130.6242416|12013|1 +638479.61312965|220707.64529418|130.40963101|12014|1 +638484.56792385|220703.08679976|130.1823421|12015|1 +638489.52275|220698.52843966|129.96731294|12016|1 +638494.52372001|220693.92748975|129.73524292|12017|1 +638499.48067061|220689.36804212|129.582238|12018|1 +638504.43345447|220684.81150953|129.36666933|12019|1 +638509.42497009|220680.21712547|128.99091477|12020|1 +638514.42244802|220675.61895861|128.73365554|12021|1 +638519.43106918|220671.01542461|128.7010063|12022|1 +638524.43284193|220666.41752708|128.54362025|12023|1 +638529.38524385|220661.86460045|128.36477499|12024|1 +638534.39015144|220657.26514789|128.30085318|12025|1 +638539.38588934|220652.67139764|128.04968662|12026|1 +638544.38730822|220648.07439592|127.93580497|12027|1 +638549.38760314|220643.47823696|127.80941243|12028|1 +638554.39167361|220638.88013017|127.78914386|12029|1 +638559.39642711|220634.28192364|127.80631494|12030|1 +638564.44317165|220629.64333897|127.69590285|12031|1 +638569.39723552|220625.09101852|127.67201589|12032|1 +638574.44711691|220620.45124716|127.680434|12033|1 +638579.44698572|220615.85666181|127.64143165|12034|1 +638584.44202167|220611.26460245|127.47123705|12035|1 +638589.43843514|220606.67199033|127.35094647|12036|1 +638594.42824002|220602.082367|127.01822193|12037|1 +638609.45747557|220588.2641809|126.41155077|12038|1 +638614.50134525|220583.62811874|126.30207817|12039|1 +638619.54507503|220578.99217922|126.19277299|12040|1 +638624.54567849|220574.39887005|126.29735286|12041|1 +638629.59298854|220569.76250591|126.38824052|12042|1 +638634.58465002|220565.17152536|126.08667693|12043|1 +638639.6308099|220560.53574403|126.14656177|12044|1 +638644.67471378|220555.9004008|126.09414626|12045|1 +638649.7174339|220551.26478191|125.94815487|12046|1 +638654.75801602|220546.62849672|125.62110442|12047|1 +638659.79849214|220541.99131168|125.22548126|12048|1 +638664.84038427|220537.35344752|124.87377179|12049|1 +638669.83766383|220532.75983377|124.75365795|12050|1 +638674.93249954|220528.08031196|124.88331542|12051|1 +638679.93154491|220523.48839309|124.99454606|12052|1 +638684.97812879|220518.85338572|125.14337448|12053|1 +638690.07198578|220514.1750069|125.29266799|12054|1 +638695.07037936|220509.5850025|125.49780937|12055|1 +638700.11603439|220504.95253393|125.76590517|12056|1 +638705.16111888|220500.31832101|125.87792646|12057|1 +638710.20607625|220495.68421923|125.99012449|12058|1 +638715.25095563|220491.0500887|126.09624846|12059|1 +638720.29629188|220486.4138165|126.08382128|12060|1 +638725.2947952|220481.81922288|125.98296212|12061|1 +638730.34172998|220477.17974508|125.85206752|12062|1 +638735.38942566|220472.53947833|125.71510817|12063|1 +638740.39119131|220467.93986267|125.47690828|12064|1 +638745.44111455|220463.29680958|125.29024953|12065|1 +638750.49253781|220458.65173955|125.06008638|12066|1 +638755.5440343|220454.0076599|124.90510018|12067|1 +638760.59893101|220449.35811718|124.5879189|12068|1 +638765.60696541|220444.75206973|124.30638204|12069|1 +638770.6551704|220440.10809812|123.95162158|12070|1 +638775.7118421|220435.45851343|123.74744759|12071|1 +638780.72192937|220430.85171831|123.54731987|12072|1 +638785.78515219|220426.19340424|123.15617087|12073|1 +638790.85263473|220421.52964122|122.65916766|12074|1 +638795.86746634|220416.91827424|122.44689182|12075|1 +638800.93280782|220412.25978977|122.18138191|12076|1 +638806.00072413|220407.59839357|121.87869281|12077|1 +638811.02692565|220402.97305305|121.42335225|12078|1 +638816.10069683|220398.30518066|121.04628614|12079|1 +638821.1803517|220393.63010506|120.54474365|12080|1 +638826.2164565|220388.99411609|119.98389304|12081|1 +638830.84844013|220384.92095453|132.72984752|12082|1 +638835.8660842|220380.30411643|132.32402961|12083|1 +638836.3603363|220379.64973481|118.40473976|12084|2 +638840.89526783|220375.69169308|132.95773174|12085|1 +638846.1397039|220370.80027128|127.94648341|12086|1 +638846.54547647|220370.27481989|117.3362354|12087|2 +638851.21689716|220366.11121861|126.32544423|12088|1 +638851.56735247|220365.66192162|117.47522255|12089|2 +638855.95560329|220361.85397687|133.10499746|12090|1 +638861.35986645|220356.76945814|124.87860872|12091|1 +638861.66994788|220356.37918953|117.55197151|12092|2 +638866.70081084|220351.75594243|117.54789733|12093|1 +638871.72002705|220347.14750532|117.83068993|12094|1 +638876.75741626|220342.51690282|117.73330033|12095|1 +638881.79817514|220337.88264851|117.59867572|12096|1 +638886.83821263|220333.24977027|117.51407607|12097|1 +638891.87861507|220328.61690663|117.454554|12098|1 +638896.92606571|220323.97795176|117.29545642|12099|1 +638901.97262415|220319.34185156|117.19256017|12100|1 +638906.97556202|220314.7450591|117.04083889|12101|1 +638912.03237188|220310.09782891|116.8199217|12102|1 +638917.03607726|220305.50111979|116.72433665|12103|1 +638922.09231567|220300.85556183|116.58472628|12104|1 +638927.10874781|220296.24499784|116.33987562|12105|1 +638932.13434681|220291.62439552|115.98308739|12106|1 +638937.20297142|220286.96610279|115.75075692|12107|1 +638942.27793459|220282.30108655|115.45654173|12108|1 +638947.30480974|220277.68072392|115.1998313|12109|1 +638952.32544029|220273.06796612|115.07382944|12110|1 +638957.35075815|220268.45035592|114.91060187|12111|1 +638962.42142694|220263.79221334|114.82259776|12112|1 +638967.44906143|220259.17291367|114.69078229|12113|1 +638972.48792148|220254.54150499|114.434816|12114|1 +638977.57449804|220249.86695062|114.22340523|12115|1 +638982.54428982|220245.30390582|114.31473937|12116|1 +638987.63655434|220240.62393821|114.09146883|12117|1 +638992.67450985|220235.99538678|113.97915918|12118|1 +638997.73787109|220231.33930834|113.57528535|12119|1 +639002.78748937|220226.69887788|113.38272928|12120|1 +639007.77724269|220222.11584767|113.36254443|12121|1 +639012.82579727|220217.47744946|113.24478394|12122|1 +639017.81073859|220212.90042886|113.33626691|12123|1 +639022.85292884|220208.26972495|113.34905685|12124|1 +639027.89737102|220203.63695507|113.36205143|12125|1 +639032.85661815|220199.08075473|113.26548039|12126|1 +639037.91688734|220194.4316523|113.15479855|12127|1 +639042.95172693|220189.80261847|112.81897652|12128|1 +639043.16226071|220186.26820784|112.91910084|12129|1 +639038.04505932|220190.95957869|113.01662996|12130|1 +639033.01851684|220195.56921446|113.21838549|12131|1 +639027.90245213|220200.26027856|113.36639536|12132|1 +639022.7939566|220204.94361527|113.45917128|12133|1 +639017.69276933|220209.61945785|113.49665744|12134|1 +639012.60094202|220214.28421013|113.44155371|12135|1 +639007.5602622|220218.90138659|113.37610642|12136|1 +639002.40746944|220223.62459234|113.52497205|12137|1 +638997.29774889|220228.30971758|113.77527355|12138|1 +638992.19424997|220232.98852565|113.98263805|12139|1 +638987.0480029|220237.70605053|114.15206991|12140|1 +638981.90386583|220242.42174216|114.32840368|12141|1 +638976.81055741|220247.09080526|114.50633736|12142|1 +638971.68318486|220251.78882582|114.52235502|12143|1 +638966.54244456|220256.50227465|114.75648073|12144|1 +638961.41469298|220261.20166431|114.84207568|12145|1 +638956.28996923|220265.89812138|114.91583877|12146|1 +638951.16320182|220270.59736696|115.05235164|12147|1 +638946.03501649|220275.29873138|115.24541931|12148|1 +638940.90402395|220280.00386712|115.51995194|12149|1 +638935.77869999|220284.70309083|115.74531538|12150|1 +638930.65042425|220289.40630204|116.05836666|12151|1 +638925.47510017|220294.15308782|116.39722108|12152|1 +638920.35675684|220298.84605885|116.63063985|12153|1 +638915.2449878|220303.53193939|116.78988627|12154|1 +638910.08821854|220308.25889811|116.93165464|12155|1 +638904.98324606|220312.93786076|117.04217835|12156|1 +638899.83204787|220317.6592918|117.15411592|12157|1 +638894.73174672|220322.3337339|117.24698486|12158|1 +638889.6297466|220327.01073826|117.40883577|12159|1 +638884.49134258|220331.71833838|117.37302393|12160|1 +638879.3530925|220336.42616894|117.36275477|12161|1 +638874.26080776|220341.09287395|117.42636962|12162|1 +638869.07204412|220345.8488501|117.53733051|12163|1 +638863.99287033|220350.50024318|117.3712752|12164|1 +638858.33867919|220355.86038987|129.77845897|12165|1 +638853.16308763|220360.62425803|131.27559849|12166|1 +638848.09192813|220365.25593916|130.24757546|12167|1 +638842.88056258|220370.06902914|132.88147577|12168|1 +638837.75995111|220374.76634093|133.2581233|12169|1 +638832.70059266|220379.38319335|131.95075863|12170|1 +638833.16833821|220378.76192692|118.61748069|12171|2 +638827.81482847|220383.78587684|126.83461417|12172|1 +638828.07210984|220383.43986383|119.20321355|12173|2 +638822.87462902|220388.214453|120.04452202|12174|1 +638817.73632396|220392.93101683|120.62798525|12175|1 +638812.65162036|220397.59681513|121.10298046|12176|1 +638807.52375452|220402.3010496|121.49405505|12177|1 +638802.34835984|220407.0498904|121.95139549|12178|1 +638797.27411852|220411.7038917|122.27169286|12179|1 +638792.15796955|220416.39391636|122.42095846|12180|1 +638787.03780237|220421.09098106|122.80176389|12181|1 +638781.96764703|220425.74182058|123.16064503|12182|1 +638776.83996786|220430.45382189|124.09822688|12183|1 +638771.73643416|220435.12748175|123.91218205|12184|1 +638766.68578104|220439.75678361|124.01649217|12185|1 +638761.5747023|220444.44451524|124.32464142|12186|1 +638756.46507058|220449.13093681|124.63328367|12187|1 +638751.40546367|220453.77038331|124.86921392|12188|1 +638746.30005206|220458.45107531|125.04750107|12189|1 +638741.19543158|220463.13132877|125.24496848|12190|1 +638736.18711851|220467.7231201|125.43950584|12191|1 +638731.08464355|220472.40107551|125.6126491|12192|1 +638725.98314866|220477.07787237|125.76749577|12193|1 +638720.97803328|220481.66514566|125.84991881|12194|1 +638715.87804433|220486.34023086|125.98040413|12195|1 +638710.82674203|220490.96777077|125.9121663|12196|1 +638705.77549914|220495.59516682|125.83785441|12197|1 +638700.72422692|220500.22161831|125.69498843|12198|1 +638695.62510223|220504.8918352|125.5393232|12199|1 +638690.62028492|220509.47269022|125.19103678|12200|1 +638685.56806178|220514.10031759|125.06743478|12201|1 +638680.51459551|220518.72676286|124.78152608|12202|1 +638675.4619655|220523.35551685|124.70828389|12203|1 +638670.40914173|220527.98446193|124.63521844|12204|1 +638665.40377388|220532.56992507|124.56832006|12205|1 +638660.35413261|220537.20056942|124.81422182|12206|1 +638655.30659166|220541.83101169|125.17902819|12207|1 +638650.30858723|220546.41705488|125.6183883|12208|1 +638645.30800431|220551.00213453|125.82645973|12209|1 +638640.25857378|220555.63047344|125.92282614|12210|1 +638635.30368537|220560.17135478|125.97367895|12211|1 +638630.2992342|220564.75783829|125.96286098|12212|1 +638625.29867431|220569.34418204|126.16444908|12213|1 +638620.28926739|220573.93280413|125.95983791|12214|1 +638615.28500227|220578.52041193|126.01136045|12215|1 +638610.33040803|220583.06375023|126.15499848|12216|1 +638605.33015278|220587.65012422|126.37499479|12217|1 +638600.86040309|220592.00102453|144.02881765|12218|1 +638600.63327688|220592.0911861|135.82636238|12219|2 +638600.37207246|220592.19487559|126.39322627|12220|3 +638595.82535803|220596.56668039|140.59764348|12221|1 +638595.42242813|220596.73630598|126.71728156|12222|2 +638590.59899258|220601.24429396|132.752302|12223|1 +638590.421178|220601.32308011|126.89939174|12224|2 +638585.64471944|220605.76246166|131.1683397|12225|1 +638580.51521394|220610.4086873|127.30889314|12226|1 +638575.75202446|220614.85692702|133.03405281|12227|1 +638570.89674452|220619.32739568|134.4404628|12228|1 +638570.64888571|220619.45481441|127.50243521|12229|2 +638565.68945232|220624.00130791|127.54999519|12230|1 +638560.72317911|220628.55173972|127.43494152|12231|1 +638555.76874263|220633.09600349|127.6443245|12232|1 +638550.85470337|220637.60070233|127.68190368|12233|1 +638545.89265004|220642.1496289|127.72833815|12234|1 +638540.93395345|220646.69682767|127.86817175|12235|1 +638536.02004|220651.20214746|127.95449224|12236|1 +638531.11093837|220655.70476562|128.15892668|12237|1 +638526.14971002|220660.25404286|128.27906842|12238|1 +638521.23596635|220664.75985168|128.4077771|12239|1 +638516.32626069|220669.26330356|128.62959657|12240|1 +638511.4096411|220673.77131094|128.72618621|12241|1 +638506.49782272|220678.27644607|128.92836962|12242|1 +638501.59627902|220682.77502925|129.32965756|12243|1 +638496.68005856|220687.28331395|129.46853308|12244|1 +638491.76836377|220691.78879903|129.70049148|12245|1 +638486.90504491|220696.25016213|129.9524487|12246|1 +638481.99289325|220700.75624894|130.19583898|12247|1 +638477.1234383|220705.22207924|130.36551268|12248|1 +638472.20951099|220709.72971919|130.60167549|12249|1 +638467.34237098|220714.19432892|130.83245256|12250|1 +638462.47245048|220718.66104293|131.03141756|12251|1 +638457.59959043|220723.13000232|131.19858908|12252|1 +638452.71858567|220727.6049168|131.25924597|12253|1 +638447.84659115|220732.07372057|131.46876848|12254|1 +638443.00626843|220736.5103016|131.46043409|12255|1 +638438.10266367|220741.00218781|131.25771117|12256|1 +638433.20514963|220745.49010982|131.16655376|12257|1 +638428.37871241|220749.91763199|131.41133001|12258|1 +638423.51652884|220754.37131827|131.19477535|12259|1 +638418.6041827|220758.87106656|130.97742074|12260|1 +638413.7395109|220763.32739514|130.7845112|12261|1 +638408.88302802|220767.77809903|130.72154748|12262|1 +638404.02566118|220772.2297949|130.6703226|12263|1 +638399.19549782|220776.66163235|130.97280706|12264|1 +638394.29796397|220781.14382821|130.47878042|12265|1 +638389.48852792|220785.5524926|130.49331909|12266|1 +638384.62338975|220790.01132589|130.43928507|12267|1 +638379.75297487|220794.47446648|130.34730911|12268|1 +638374.9289997|220798.89503471|130.26002124|12269|1 +638370.11684194|220803.30700118|130.32713355|12270|1 +638365.2270788|220807.78584346|130.09026382|12271|1 +638360.41034776|220812.20191757|130.14958125|12272|1 +638357.09660802|220815.46983144|146.24004524|12273|1 +638351.68204308|220820.3340557|139.33032295|12274|1 +638350.92325738|220820.91542873|131.3562914|12275|2 +638347.56189491|220824.21406558|146.54466911|12276|1 +638345.90414756|220825.48761164|129.35911629|12277|2 +638342.77472208|220828.60537322|146.764498|12278|1 +638341.06943157|220829.91884818|129.32207661|12279|2 +638338.38279232|220832.68468782|150.50403536|12280|1 +638333.59130624|220837.07219301|150.18597972|12281|1 +638333.03754451|220837.50082524|144.66782178|12282|2 +638331.45651928|220838.72459768|128.91317052|12283|3 +638326.66839454|220843.11382262|128.92741154|12284|1 +638322.487357|220847.03124748|134.85919157|12285|1 +638321.83790186|220847.53629716|128.55021521|12286|2 +638319.53529049|220849.98899873|152.45445974|12287|1 +638314.85514011|220851.50609468|146.86059465|12288|1 +638312.86647093|220853.06008539|127.92207555|12289|2 +638319.79410504|220846.9804279|148.09499619|12290|1 +638324.7587088|220842.43557478|149.63285888|12291|1 +638324.14312167|220842.91444923|143.62083243|12292|2 +638322.55972563|220844.14619669|128.15689889|12293|3 +638329.66989763|220837.93991054|151.17878622|12294|1 +638327.42298971|220839.68376471|128.95414485|12295|2 +638334.218683|220833.71876737|148.67338995|12296|1 +638332.26080968|220835.23464295|129.05433428|12297|2 +638338.89288308|220829.39307352|146.908536|12298|1 +638337.15282887|220830.73693662|129.23882571|12299|2 +638343.77234|220824.9160087|147.72457155|12300|1 +638341.99106613|220826.28820309|129.39350495|12301|2 +638348.02417563|220820.92178338|142.03753056|12302|1 +638346.84520485|220821.82761625|129.73978218|12303|2 +638353.63272421|220815.87870192|150.05493629|12304|1 +638357.05155142|220812.51230797|134.83483022|12305|1 +638361.46941062|220808.37881176|130.06929761|12306|1 +638366.33308675|220803.90499193|130.10761163|12307|1 +638371.21351531|220799.41881031|130.35648066|12308|1 +638376.12186253|220794.90407577|130.40514755|12309|1 +638381.0146668|220790.40137151|130.2980562|12310|1 +638385.87530544|220785.93117701|130.39621785|12311|1 +638390.77294016|220781.42543972|130.38753929|12312|1 +638395.677469|220776.9148754|130.48408243|12313|1 +638400.56777385|220772.41521712|130.43095068|12314|1 +638405.5108725|220767.86819888|130.45801885|12315|1 +638410.42127082|220763.35435889|130.70258116|12316|1 +638415.36666493|220758.80637187|130.80993296|12317|1 +638420.26825163|220754.29979471|130.99773582|12318|1 +638425.26774895|220749.70405495|131.24171212|12319|1 +638430.15809556|220745.20643369|131.33544612|12320|1 +638435.07836908|220740.67806917|131.20510963|12321|1 +638440.0194126|220736.1351071|131.38572222|12322|1 +638444.9985524|220731.55551518|131.4547414|12323|1 +638449.9119676|220727.03288125|131.2861095|12324|1 +638454.82765909|220722.50886174|131.16690723|12325|1 +638459.79254087|220717.94018247|131.08582365|12326|1 +638464.70312702|220713.42020014|130.92233562|12327|1 +638469.65477559|220708.86114435|130.66632283|12328|1 +638474.60955538|220704.30010032|130.4724087|12329|1 +638479.56014336|220699.74208442|130.22220021|12330|1 +638484.51155536|220695.18366403|129.99668795|12331|1 +638489.46229353|220690.62585211|129.77096174|12332|1 +638494.46130021|220686.02397538|129.56567153|12333|1 +638499.41246203|220681.46620076|129.37078071|12334|1 +638504.35998|220676.91095688|129.11951183|12335|1 +638509.3496925|220672.31552365|128.77049987|12336|1 +638514.30178161|220667.75540177|128.61229526|12337|1 +638519.2984005|220663.15321044|128.40024266|12338|1 +638524.29633165|220658.5503507|128.22562042|12339|1 +638529.29690641|220653.94604475|128.11963598|12340|1 +638534.29199|220649.34524508|127.90755547|12341|1 +638539.28915157|220644.74333366|127.75162049|12342|1 +638544.29058627|220640.13911491|127.70803237|12343|1 +638549.34059477|220635.4908432|127.70516742|12344|1 +638554.34245239|220630.88693817|127.71164146|12345|1 +638559.38814923|220626.24162631|127.64044566|12346|1 +638564.56668063|220621.54489078|132.46147266|12347|1 +638569.55907599|220616.94940151|132.4496408|12348|1 +638569.37978986|220617.04154921|127.42252364|12349|2 +638574.52737151|220612.3461617|130.3682102|12350|1 +638579.56626898|220607.70680949|130.27908058|12351|1 +638584.56571774|220603.1076057|130.46086519|12352|1 +638589.5368203|220598.49868974|128.16700992|12353|1 +638599.57832256|220589.23280485|126.57150412|12354|1 +638604.62888687|220584.58757341|126.82038245|12355|1 +638609.65523019|220579.95114079|126.13856224|12356|1 +638614.64739812|220575.35353206|125.97062797|12357|1 +638619.91824136|220570.62004904|134.12271412|12358|1 +638619.73628548|220570.66799585|125.86877351|12359|2 +638624.73003287|220566.07000006|125.77595109|12360|1 +638629.8222384|220561.38402614|125.85590916|12361|1 +638634.86386055|220556.74255843|125.79976364|12362|1 +638639.90681069|220552.1011295|125.83128736|12363|1 +638644.94599922|220547.45971525|125.62552276|12364|1 +638649.9863738|220542.81784298|125.46368115|12365|1 +638655.02349768|220538.17488801|125.02079567|12366|1 +638660.06217605|220533.53113109|124.62182388|12367|1 +638665.15140298|220528.84380707|124.42279377|12368|1 +638670.19569869|220524.20155857|124.48676208|12369|1 +638675.23960957|220519.55930251|124.52592256|12370|1 +638680.33194422|220514.87489599|124.72789203|12371|1 +638685.37609669|220510.2345781|124.91752735|12372|1 +638690.42016573|220505.59613394|125.23233667|12373|1 +638695.5109631|220500.91367456|125.4728155|12374|1 +638700.55361704|220496.27399806|125.61311419|12375|1 +638705.59607321|220491.63431765|125.74108803|12376|1 +638710.68601368|220486.95082547|125.85760208|12377|1 +638715.72871736|220482.30910216|125.86108095|12378|1 +638720.77204589|220477.66580564|125.79601502|12379|1 +638725.86395956|220472.97679229|125.65737204|12380|1 +638730.90924224|220468.3301504|125.48659143|12381|1 +638736.00180869|220463.64188791|125.44243589|12382|1 +638741.04985034|220458.99108115|125.15973631|12383|1 +638746.0977481|220454.34202845|124.98970913|12384|1 +638751.14734354|220449.69059249|124.76367597|12385|1 +638756.24634317|220444.99315456|124.49610107|12386|1 +638761.2523886|220440.38016862|124.16241844|12387|1 +638766.34245146|220435.69219555|123.98254069|12388|1 +638776.43827282|220426.4020554|124.20106732|12389|1 +638781.51114639|220421.71773206|123.18346228|12390|1 +638786.57372094|220417.05154352|122.7657009|12391|1 +638791.6337736|220412.39028367|122.52930556|12392|1 +638796.69590445|220407.72675394|122.2682233|12393|1 +638801.76667633|220403.05148527|121.74524022|12394|1 +638806.83457823|220398.38147056|121.40363248|12395|1 +638811.90560689|220393.70794673|121.01866916|12396|1 +638816.93560087|220389.0699048|120.48087766|12397|1 +638822.01609455|220384.38532663|119.93424946|12398|1 +638827.10351751|220379.6924813|119.25699642|12399|1 +638831.61050214|220375.75280753|133.76246562|12400|1 +638836.68117703|220371.07605072|133.13422364|12401|1 +638841.72574154|220366.43430799|133.26739717|12402|1 +638846.76233802|220361.78555541|132.41128028|12403|1 +638851.88224194|220357.06577899|131.93798729|12404|1 +638857.29172494|220351.94831237|122.37775171|12405|1 +638857.51508741|220351.66621789|117.07131151|12406|2 +638862.53699194|220347.04550487|117.22168403|12407|1 +638867.62032845|220342.36424752|117.08997087|12408|1 +638872.64464186|220337.74122009|117.23442746|12409|1 +638877.6808477|220333.10391318|117.14839533|12410|1 +638882.76089954|220328.42801622|117.1796214|12411|1 +638887.74492121|220323.84074632|117.23850164|12412|1 +638892.7821296|220319.20226|117.20900571|12413|1 +638897.81846332|220314.565024|117.22329324|12414|1 +638902.86403357|220309.91722384|117.09451014|12415|1 +638907.90731768|220305.27260039|117.04067146|12416|1 +638912.91095534|220300.6626968|116.86932344|12417|1 +638917.96255748|220296.00924203|116.73489416|12418|1 +638922.97360314|220291.39169553|116.50769827|12419|1 +638927.98842285|220286.77031699|116.25567594|12420|1 +638933.05529329|220282.10073612|115.97875276|12421|1 +638938.07648059|220277.47312942|115.70214583|12422|1 +638943.0940726|220272.85016437|115.51894735|12423|1 +638948.11600108|220268.22276102|115.30476464|12424|1 +638953.1360955|220263.59793612|115.15286663|12425|1 +638958.16316993|220258.9656972|114.93270289|12426|1 +638963.13660137|220254.38435207|114.82393722|12427|1 +638968.15597422|220249.76169589|114.77793063|12428|1 +638973.18014229|220245.13408444|114.69477275|12429|1 +638978.15177954|220240.55598485|114.69770281|12430|1 +638983.17317992|220235.93225046|114.70784174|12431|1 +638988.18286417|220231.31276635|114.2698397|12432|1 +638993.18308089|220226.70432043|113.99331649|12433|1 +638998.17817957|220222.10200857|113.81611765|12434|1 +639003.22719691|220217.44962121|113.6033023|12435|1 +639008.21372373|220212.85759283|113.59374938|12436|1 +639013.14685089|220208.31586544|113.66915888|12437|1 +639018.18392378|220203.67775986|113.68616253|12438|1 +639023.14158746|220199.11004192|113.52566968|12439|1 +639028.15028117|220194.49544306|113.36719531|12440|1 +639033.15562309|220189.88491105|113.27695878|12441|1 +639038.10732081|220185.32490284|113.27110796|12442|1 +639043.14737492|220180.67776496|112.85883463|12443|1 +639044.96338483|220175.40080416|112.39614567|12444|1 +639039.90962772|220180.05026646|112.84910497|12445|1 +639034.79828696|220184.75472293|113.44245599|12446|1 +639029.74322882|220189.39890323|113.44768358|12447|1 +639024.68676807|220194.04501355|113.49659233|12448|1 +639019.61837125|220198.704538|113.71316559|12449|1 +639014.61378859|220203.30326295|113.78318006|12450|1 +639009.52020971|220207.98287959|113.787617|12451|1 +639004.48037106|220212.61080259|113.74454978|12452|1 +638999.37731464|220217.29987961|113.91110739|12453|1 +638994.28133405|220221.98165089|114.02232873|12454|1 +638989.22012011|220226.63445728|114.34017043|12455|1 +638984.09507576|220231.34945929|114.89931881|12456|1 +638979.00587004|220236.02531567|115.03054827|12457|1 +638973.93971351|220240.67592996|114.88267793|12458|1 +638968.86978858|220245.33110563|114.80967759|12459|1 +638963.7393176|220250.04484013|114.93516786|12460|1 +638958.66846841|220254.70188266|114.93134483|12461|1 +638953.53435104|220259.4207095|115.17607457|12462|1 +638948.40406804|220264.13576014|115.40280537|12463|1 +638943.28321729|220268.84062052|115.5244447|12464|1 +638938.15895171|220273.54989921|115.73374397|12465|1 +638933.08207423|220278.21633658|115.99337515|12466|1 +638927.90796753|220282.97301136|116.30970066|12467|1 +638922.79058533|220287.67609766|116.52701806|12468|1 +638917.6769643|220292.37537948|116.71999272|12469|1 +638912.56875102|220297.06888736|116.85747297|12470|1 +638907.41203734|220301.80765226|117.03972268|12471|1 +638902.30924928|220306.49584427|117.15343689|12472|1 +638897.16392908|220311.22217917|117.20002949|12473|1 +638892.02319183|220315.94350388|117.19123931|12474|1 +638886.9332358|220320.61776871|117.15703668|12475|1 +638881.79998779|220325.33088258|117.05598218|12476|1 +638876.6652323|220330.04621205|117.01163131|12477|1 +638871.57400013|220334.72331884|117.09104988|12478|1 +638866.44698942|220339.42992994|116.9356451|12479|1 +638861.31030397|220344.14897897|117.02396547|12480|1 +638855.64969469|220349.5305774|129.57764292|12481|1 +638856.19172686|220348.84569597|116.72007643|12482|2 +638850.6115471|220354.13121707|127.7480021|12483|1 +638851.06061407|220353.55856707|116.73478254|12484|2 +638845.33470129|220359.03782418|131.88106042|12485|1 +638845.94232077|220358.25541115|116.45695708|12486|2 +638840.21033164|220363.75088449|132.33536848|12487|1 +638835.09591527|220368.451823|132.58444215|12488|1 +638835.64484955|220367.72974423|117.59971752|12489|2 +638830.00244585|220373.12564341|132.29128736|12490|1 +638825.33874377|220377.22041104|119.31934623|12491|1 +638820.20077919|220381.94745867|119.87448555|12492|1 +638815.01731289|220386.716499|120.43940104|12493|1 +638809.93191992|220391.39538091|121.00546994|12494|1 +638804.75919067|220396.15168384|121.37214597|12495|1 +638799.58773855|220400.90719721|121.76463442|12496|1 +638794.5143518|220405.57218548|122.13251038|12497|1 +638789.34632306|220410.32485681|122.54511858|12498|1 +638784.23358792|220415.02311461|122.71141574|12499|1 +638779.10990616|220419.7396977|123.44651652|12500|1 +638774.00352359|220424.4298828|123.45775307|12501|1 +638763.73299841|220433.8736994|124.19157951|12502|1 +638758.64064237|220438.54985892|124.12363003|12503|1 +638753.48557953|220443.28909511|124.42858877|12504|1 +638748.38093883|220447.98046937|124.62987922|12505|1 +638743.32373233|220452.6298041|124.93952605|12506|1 +638738.17337928|220457.36375677|125.17758641|12507|1 +638733.07293537|220462.04995437|125.28659393|12508|1 +638727.97288235|220466.73644043|125.43979419|12509|1 +638722.87364152|220471.42219321|125.59345954|12510|1 +638717.77533224|220476.1066498|125.716336|12511|1 +638712.72563785|220480.74488557|125.73437215|12512|1 +638707.58125381|220485.46918228|125.68221709|12513|1 +638702.48455652|220490.14993444|125.65019107|12514|1 +638697.43547547|220494.78474052|125.46920641|12515|1 +638692.33861737|220499.46439286|125.35043202|12516|1 +638687.28856214|220504.09839723|125.05121248|12517|1 +638682.23770838|220508.73287011|124.73342659|12518|1 +638677.13888726|220513.41246023|124.48447385|12519|1 +638672.04016714|220518.09342088|124.33594308|12520|1 +638667.03662286|220522.68750566|124.2313353|12521|1 +638661.93915753|220527.37023222|124.28342525|12522|1 +638656.89167486|220532.00990837|124.5355592|12523|1 +638651.84735933|220536.64958201|124.98785808|12524|1 +638646.80325291|220541.28816656|125.37786296|12525|1 +638641.75652865|220545.92590525|125.54307181|12526|1 +638636.7578129|220550.5194037|125.70136014|12527|1 +638631.66071638|220555.20059077|125.66782724|12528|1 +638626.66048599|220559.794229|125.73878119|12529|1 +638621.65975279|220564.38626287|125.74717139|12530|1 +638616.61562917|220569.02111338|125.95679623|12531|1 +638611.61376698|220573.6137331|125.93396967|12532|1 +638606.61442192|220578.2057701|126.02980587|12533|1 +638601.61936033|220582.79632076|126.29428328|12534|1 +638596.62071908|220587.38817557|126.42125253|12535|1 +638591.62519122|220591.97880016|126.66061514|12536|1 +638586.83310841|220596.47902965|133.56484938|12537|1 +638581.83135089|220601.04673361|131.82779845|12538|1 +638576.81893702|220605.64266166|131.36083067|12539|1 +638571.72098169|220610.2621456|127.09438488|12540|1 +638566.77113691|220614.81021231|127.29329406|12541|1 +638562.04117467|220619.24186901|133.40532392|12542|1 +638556.86488431|220623.91012015|127.53418217|12543|1 +638551.90575582|220628.46365666|127.51999696|12544|1 +638546.99588798|220632.97275582|127.56502686|12545|1 +638542.03751842|220637.52640571|127.60642907|12546|1 +638537.08004046|220642.07978642|127.68505698|12547|1 +638532.17221847|220646.58836511|127.82252794|12548|1 +638527.21544545|220651.14173601|127.94424168|12549|1 +638522.35664862|220655.6059924|128.13346772|12550|1 +638517.39650951|220660.1618279|128.21080269|12551|1 +638512.49378101|220664.6678961|128.4962277|12552|1 +638507.59333979|220669.17258049|128.83107304|12553|1 +638502.68639553|220673.68152889|129.04691146|12554|1 +638497.82742016|220678.1465773|129.27684207|12555|1 +638492.91693029|220682.65815075|129.44796685|12556|1 +638488.0617522|220687.12096462|129.76392029|12557|1 +638483.15178934|220691.63250836|129.96521074|12558|1 +638478.28896063|220696.10072384|130.1676732|12559|1 +638473.38172904|220700.61074552|130.43651314|12560|1 +638468.5135845|220705.08294438|130.57542587|12561|1 +638463.65162202|220709.55107921|130.8258483|12562|1 +638458.78530344|220714.02240708|131.01953919|12563|1 +638453.9110599|220718.49947866|131.10667823|12564|1 +638449.03815083|220722.97586732|131.23058719|12565|1 +638444.21070658|220727.4101854|131.33601353|12566|1 +638439.32802737|220731.89401585|131.35273812|12567|1 +638434.47258657|220736.34891906|131.10177619|12568|1 +638429.59338604|220740.83089733|131.21067209|12569|1 +638424.74230953|220745.28340668|131.0704013|12570|1 +638419.88832449|220749.73840596|130.9169592|12571|1 +638415.03086836|220754.19631828|130.7441601|12572|1 +638410.19855484|220758.63617143|130.91903349|12573|1 +638405.30711261|220763.11982151|130.36541967|12574|1 +638400.45373584|220767.57587225|130.32119902|12575|1 +638395.66637942|220771.97472267|130.51840598|12576|1 +638390.81991986|220776.4262079|130.59697809|12577|1 +638385.98453258|220780.86145299|130.25782602|12578|1 +638381.17049985|220785.28111114|130.1975226|12579|1 +638376.36530257|220789.69444611|130.26059795|12580|1 +638371.52863102|220794.13184759|129.98733966|12581|1 +638366.72229239|220798.54667038|130.07972491|12582|1 +638361.90232982|220802.97211761|130.04081557|12583|1 +638358.12207793|220806.60487597|141.25612553|12584|1 +638357.05844497|220807.41613661|129.76515743|12585|2 +638353.56878801|220810.81729505|143.43389463|12586|1 +638352.29191779|220811.79394594|129.82876298|12587|2 +638349.26580378|220814.84450193|148.7076763|12588|1 +638347.59297682|220816.12755146|131.12766304|12589|2 +638344.63428891|220819.11538707|149.9565142|12590|1 +638342.6417391|220820.64772589|129.29669207|12591|2 +638339.76628821|220823.57555897|149.26393183|12592|1 +638337.79451788|220825.09587336|129.09233204|12593|2 +638335.02696388|220827.92979556|149.42479675|12594|1 +638333.01359638|220829.48607864|129.09627599|12595|2 +638330.10425705|220832.42637709|147.7740756|12596|1 +638328.25168798|220833.86186068|129.31001221|12597|2 +638325.46432472|220836.70423152|148.96826556|12598|1 +638324.40347029|220837.5281969|138.52950511|12599|2 +638323.40056964|220838.30714957|128.66102727|12600|3 +638320.99231429|220840.84445236|151.31766174|12601|1 +638313.82782449|220847.09156721|128.25090264|12602|1 +638311.59010302|220849.48817413|152.01631817|12603|1 +638306.51217717|220854.10883802|149.0794683|12604|1 +638305.92230627|220854.57105123|143.55515259|12605|2 +638305.56042955|220851.73624364|151.70514584|12606|1 +638302.94054312|220853.78775578|127.16762706|12607|2 +638310.00502921|220847.60078639|148.74614844|12608|1 +638309.47186383|220848.01739085|143.69131199|12609|2 +638312.67288772|220844.84303154|128.21660699|12610|1 +638319.59219559|220838.77774538|148.98535293|12611|1 +638324.43637632|220834.32402524|149.40327244|12612|1 +638329.15166945|220829.97055514|148.56809384|12613|1 +638334.0092806|220825.50715869|149.17047688|12614|1 +638332.01958004|220827.04377591|129.06486389|12615|2 +638338.5493837|220821.28888683|146.55915198|12616|1 +638336.85443326|220822.59454093|129.20330223|12617|2 +638343.62786928|220816.64897195|148.9883388|12618|1 +638347.98135232|220812.5732228|144.38222934|12619|1 +638346.74694611|220813.51903502|131.39395429|12620|2 +638353.19469578|220807.8314377|148.33125201|12621|1 +638361.19291087|220800.19838518|129.97878203|12622|1 +638366.05047228|220795.72640821|129.99398113|12623|1 +638370.90821192|220791.25461545|130.03338346|12624|1 +638375.78068699|220786.77206563|130.26474654|12625|1 +638380.6682215|220782.27045305|130.14064224|12626|1 +638385.56205611|220777.76439397|130.10926735|12627|1 +638390.477884|220773.24226298|130.36338258|12628|1 +638395.35150563|220768.75186454|130.13214042|12629|1 +638400.27050108|220764.22815633|130.4786874|12630|1 +638405.15281328|220759.73191345|130.39567835|12631|1 +638410.09271379|220755.19376161|131.07108963|12632|1 +638415.0008318|220750.67029204|130.75085738|12633|1 +638420.03870968|220746.0527947|132.16643892|12634|1 +638424.87525901|220741.58178262|130.93073513|12635|1 +638429.81597355|220737.03556243|131.10740377|12636|1 +638434.73820981|220732.50296393|131.05344416|12637|1 +638439.68818277|220727.95093062|131.41634367|12638|1 +638444.6053431|220723.42261551|131.33683208|12639|1 +638449.56238465|220718.85615267|131.15824728|12640|1 +638454.47629269|220714.33062125|131.06561089|12641|1 +638459.43204589|220709.765504|130.89902537|12642|1 +638464.38643136|220705.2015439|130.72603093|12643|1 +638469.28856945|220700.68480383|130.49528177|12644|1 +638474.28567229|220696.08072004|130.26721151|12645|1 +638479.18637163|220691.56527907|130.03579262|12646|1 +638484.13785301|220687.00403809|129.86806298|12647|1 +638489.12790813|220682.40513862|129.55236069|12648|1 +638494.07490664|220677.84718059|129.32815067|12649|1 +638499.06914441|220673.24578184|129.10584752|12650|1 +638504.02126314|220668.68500693|128.99977936|12651|1 +638509.00291692|220664.09342909|128.5465317|12652|1 +638513.94681307|220659.5394627|128.29035148|12653|1 +638518.94146858|220654.9398241|128.10518102|12654|1 +638523.93882506|220650.33869724|127.98861115|12655|1 +638528.93093532|220645.74093348|127.77217742|12656|1 +638533.92681811|220641.14105892|127.64932886|12657|1 +638538.9239792|220636.54063861|127.57015214|12658|1 +638543.92201973|220631.93995038|127.52840576|12659|1 +638548.9218261|220627.33854205|127.54906501|12660|1 +638554.12432879|220622.60908145|131.57543195|12661|1 +638553.96510746|220622.69590214|127.48577572|12662|2 +638559.07898292|220618.03444713|130.58492299|12663|1 +638563.99573174|220613.45947423|127.18122626|12664|1 +638569.03333605|220608.8203152|126.9997486|12665|1 +638574.13494754|220604.1709461|130.15586925|12666|1 +638579.25556559|220599.49530293|132.71054633|12667|1 +638584.28790361|220594.88515052|134.18717543|12668|1 +638589.456294|220590.19597102|138.82903161|12669|1 +638589.30848465|220590.25871937|133.80669557|12670|2 +638589.09394012|220590.34979829|126.51680037|12671|3 +638594.42256012|220585.56992347|135.04874317|12672|1 +638594.18420356|220585.66533033|126.55277964|12673|2 +638599.17058178|220581.07203055|126.28646048|12674|1 +638604.20346592|220576.43518185|125.96849786|12675|1 +638609.2916489|220571.75189374|125.95537305|12676|1 +638614.32864037|220567.11363017|125.80029384|12677|1 +638619.36234374|220562.47611108|125.48917732|12678|1 +638624.40436444|220557.83667447|125.57186081|12679|1 +638629.44328863|220553.19807818|125.51725938|12680|1 +638634.53006332|220548.51580439|125.4869542|12681|1 +638639.56924004|220543.87742635|125.46404392|12682|1 +638644.60529612|220539.23854506|125.21007752|12683|1 +638649.68853547|220534.5552396|124.88701752|12684|1 +638654.77054106|220529.8706108|124.39562328|12685|1 +638659.76138061|220525.27378629|124.17388753|12686|1 +638664.84807678|220520.58902635|123.9705414|12687|1 +638669.9375132|220515.90602521|124.06131743|12688|1 +638674.97995567|220511.26826355|124.28990859|12689|1 +638680.06971272|220506.58796837|124.58762125|12690|1 +638685.15870865|220501.90837245|124.88573388|12691|1 +638690.19916151|220497.27179352|125.07131362|12692|1 +638695.28688031|220492.59309582|125.3513529|12693|1 +638700.37407475|220487.9129685|125.500572|12694|1 +638705.41374303|220483.27464511|125.51814305|12695|1 +638710.50066184|220478.59504122|125.68679356|12696|1 +638715.5884217|220473.91147858|125.63713138|12697|1 +638720.62950091|220469.26975767|125.51173413|12698|1 +638725.71920602|220464.58258419|125.33783742|12699|1 +638730.80953579|220459.89519898|125.18934386|12700|1 +638735.85245664|220455.25232282|125.10224203|12701|1 +638740.94551951|220450.56096793|124.85454502|12702|1 +638746.0397379|220445.86855057|124.6073038|12703|1 +638751.0873675|220441.21915341|124.3711038|12704|1 +638756.18456358|220436.52344986|124.08717637|12705|1 +638761.27027822|220431.8407608|123.97192736|12706|1 +638771.40623609|220422.51517303|124.23459093|12707|1 +638776.51985345|220417.79573204|123.35909843|12708|1 +638781.58178967|220413.12844095|122.80003376|12709|1 +638786.64240805|220408.46454124|122.39111837|12710|1 +638791.74781252|220403.76219924|122.17267545|12711|1 +638796.81099731|220399.09647978|121.80192524|12712|1 +638801.92280738|220394.38652001|121.46578695|12713|1 +638806.99062346|220389.71608609|121.06456413|12714|1 +638812.06352361|220385.0395228|120.56380299|12715|1 +638817.13994185|220380.35917805|120.02596498|12716|1 +638822.26689556|220375.63220623|119.47961584|12717|1 +638827.09917269|220371.26043053|124.71653456|12718|1 +638827.32191485|220370.96261117|118.32749781|12719|2 +638831.93064017|220366.90356883|130.92942358|12720|1 +638832.41025012|220366.26985349|117.69107027|12721|2 +638836.89729881|220362.36389355|133.12399169|12722|1 +638842.06444511|220357.56313848|130.04786632|12723|1 +638847.02759951|220353.02703678|132.26749342|12724|1 +638852.23237323|220348.18270403|128.57539511|12725|1 +638852.72896447|220347.55271611|116.66516805|12726|2 +638857.28406424|220343.51858608|127.59228106|12727|1 +638857.754851|220342.92650716|116.65617323|12728|2 +638862.82224479|220338.26461485|116.82015425|12729|1 +638867.85333669|220333.63270366|116.74913518|12730|1 +638872.93041449|220328.95954155|116.75160015|12731|1 +638877.95630024|220324.33485683|116.849213|12732|1 +638882.98103642|220319.71160908|116.99056279|12733|1 +638888.00645005|220315.0858888|117.12581062|12734|1 +638893.03458675|220310.4572073|117.23002772|12735|1 +638898.06862572|220305.82182321|117.2471709|12736|1 +638903.10895847|220301.17938192|117.17729595|12737|1 +638908.1043779|220296.57791134|117.08332941|12738|1 +638913.15510626|220291.92418199|116.89547073|12739|1 +638918.20241779|220287.27494899|116.80123443|12740|1 +638923.16073469|220282.70634703|116.62059393|12741|1 +638928.21855199|220278.04590598|116.42083829|12742|1 +638933.23839541|220273.41860099|116.09697834|12743|1 +638938.25681101|220268.79350763|115.83542169|12744|1 +638943.27153306|220264.17316655|115.66725487|12745|1 +638948.24286343|220259.59220084|115.46150888|12746|1 +638953.26857111|220254.96038967|115.20015687|12747|1 +638958.23994836|220250.38036268|115.06266731|12748|1 +638963.25376856|220245.76290834|115.03761762|12749|1 +638968.23405387|220241.17377155|114.83786198|12750|1 +638973.18228189|220236.62088856|115.10389278|12751|1 +638978.15568636|220232.04023392|115.05294695|12752|1 +638983.13218838|220227.45654015|114.98947163|12753|1 +638988.14049607|220222.83808106|114.54723727|12754|1 +638993.10576722|220218.25883664|114.07880911|12755|1 +638998.08351058|220213.67515506|114.09581276|12756|1 +639003.03036866|220209.11716521|113.92494843|12757|1 +639008.01361132|220204.52823072|113.92931096|12758|1 +639012.9523344|220199.97995911|113.91311657|12759|1 +639017.89919067|220195.42320565|113.8284518|12760|1 +639022.85176742|220190.86063861|113.70637529|12761|1 +639027.75641984|220186.34248999|113.60662304|12762|1 +639032.77201862|220181.72042689|113.38111077|12763|1 +639037.71314332|220177.16375837|112.94013215|12764|1 +639042.71187473|220172.55321365|112.43960357|12765|1 +639047.65021498|220168.00062114|112.10354899|12766|1 +639045.73825802|220165.37115569|112.11866437|12767|1 +639040.70735724|220169.99989073|112.30580681|12768|1 +639035.65452536|220174.6528377|112.76567734|12769|1 +639030.6514338|220179.2604081|113.2529974|12770|1 +639025.5718097|220183.93562946|113.54993801|12771|1 +639020.55177781|220188.55467257|113.75645605|12772|1 +639015.4974959|220193.20330585|113.83087957|12773|1 +639010.49034071|220197.80923553|113.95090969|12774|1 +639005.45295317|220202.4402333|113.88310904|12775|1 +639000.40286808|220207.08672086|114.00162297|12776|1 +638995.41200581|220211.68069025|114.03500705|12777|1 +638990.364331|220216.32895314|114.20349013|12778|1 +638985.24542601|220221.04762043|114.69996314|12779|1 +638980.24351009|220225.65535212|114.97586313|12780|1 +638975.16707704|220230.32790672|114.9950527|12781|1 +638970.1404994|220234.95468337|115.0217674|12782|1 +638965.07006081|220239.62137545|115.01676304|12783|1 +638959.99807637|220244.2902334|115.06182085|12784|1 +638954.97245215|220248.91725722|115.16374971|12785|1 +638949.89702981|220253.59094691|115.3213218|12786|1 +638944.81602223|220258.27152684|115.59740783|12787|1 +638939.79268598|220262.89747695|115.76838378|12788|1 +638934.67377158|220267.6117824|115.96420478|12789|1 +638929.60062463|220272.28506833|116.23523064|12790|1 +638924.52614456|220276.96050726|116.56883885|12791|1 +638919.41854308|220281.66343037|116.69774287|12792|1 +638914.36107815|220286.32020822|116.82677711|12793|1 +638909.25291404|220291.02486484|117.03755536|12794|1 +638904.15428309|220295.71883672|117.11810875|12795|1 +638899.10585613|220300.36650261|117.19214159|12796|1 +638894.01646047|220305.05044038|117.16765001|12797|1 +638888.92756535|220309.73420444|117.16228288|12798|1 +638883.84991175|220314.40479389|116.96419225|12799|1 +638878.7282355|220319.11502283|116.70542614|12800|1 +638873.65054074|220323.78622492|116.54556581|12801|1 +638868.56195609|220328.4712182|116.64161595|12802|1 +638863.43290716|220333.19157378|116.60879928|12803|1 +638857.78291657|220338.58344123|129.6424856|12804|1 +638858.37103715|220337.84403158|116.16338372|12805|2 +638852.77243583|220343.17716294|128.41961827|12806|1 +638853.28447841|220342.5278378|116.30435214|12807|2 +638847.56367792|220348.00675676|130.82820165|12808|1 +638842.68014039|220352.43674478|126.41266699|12809|1 +638843.08655415|220351.91157393|116.12807418|12810|2 +638837.5582648|220357.17371206|127.9595524|12811|1 +638832.31945051|220362.048146|131.53691329|12812|1 +638827.27226028|220366.69101287|131.35724018|12813|1 +638827.74915637|220366.05422906|117.88727264|12814|2 +638822.5942818|220370.81440825|118.94446604|12815|1 +638817.45661939|220375.55280249|119.59682752|12816|1 +638812.37157604|220380.24181457|120.18461608|12817|1 +638807.24297187|220384.97015682|120.71960775|12818|1 +638802.12053759|220389.6909095|121.12415131|12819|1 +638797.04589916|220394.3687285|121.60100687|12820|1 +638791.9308125|220399.08091071|121.88176239|12821|1 +638786.81948563|220403.78836279|122.07567652|12822|1 +638781.70303967|220408.5046631|122.55110892|12823|1 +638776.59125438|220413.21494564|122.90847387|12824|1 +638771.47765252|220417.92947806|123.44124241|12825|1 +638766.36516922|220422.64381855|124.030789|12826|1 +638756.16351215|220432.03614898|124.19340266|12827|1 +638751.07598946|220436.71738765|124.09153891|12828|1 +638745.97425391|220441.41693829|124.34578436|12829|1 +638740.8741321|220446.11455801|124.56929675|12830|1 +638735.77486245|220450.81177214|124.8182774|12831|1 +638730.67755559|220455.50590924|124.98027713|12832|1 +638725.58068571|220460.20048116|125.1989712|12833|1 +638720.48587653|220464.89078751|125.25568413|12834|1 +638715.39074973|220469.58377949|125.47530837|12835|1 +638710.29747422|220474.27150808|125.45170046|12836|1 +638705.20418939|220478.96072313|125.52850523|12837|1 +638700.15915627|220483.60242916|125.39402945|12838|1 +638695.01886641|220488.33254995|125.30850892|12839|1 +638689.9734111|220492.973293|125.08093166|12840|1 +638684.87969059|220497.65737393|124.77816814|12841|1 +638679.78581393|220502.34344222|124.60082977|12842|1 +638674.73815959|220506.98459457|124.26158468|12843|1 +638669.64236675|220511.67071239|123.96626258|12844|1 +638664.59474298|220516.31487689|123.83375878|12845|1 +638659.50195343|220521.00475031|123.98292206|12846|1 +638654.45765417|220525.65072324|124.18216611|12847|1 +638649.41554374|220530.29670149|124.51909506|12848|1 +638644.32754689|220534.98585398|124.91930399|12849|1 +638639.28582753|220539.63030075|125.17549352|12850|1 +638634.2417881|220544.27423991|125.25065187|12851|1 +638629.19747386|220548.9180749|125.30101169|12852|1 +638624.15364243|220553.56193126|125.38280221|12853|1 +638619.06129032|220558.24992534|125.41600025|12854|1 +638614.06404359|220562.85075693|125.44076157|12855|1 +638609.02234439|220567.49463721|125.61062131|12856|1 +638603.98179486|220572.13810534|125.82441334|12857|1 +638598.93827455|220576.78257885|125.91970074|12858|1 +638593.89782556|220581.42596743|126.13387414|12859|1 +638588.90751809|220586.0244535|126.43379132|12860|1 +638583.91350458|220590.62443615|126.60248834|12861|1 +638579.10335903|220595.1619189|134.0749495|12862|1 +638574.00682499|220599.80670239|130.85181886|12863|1 +638568.87561466|220604.47265777|126.89213635|12864|1 +638563.87574218|220609.07604153|126.92344613|12865|1 +638558.87872504|220613.67816934|127.04839689|12866|1 +638553.8844318|220618.27897898|127.25451496|12867|1 +638549.14914501|220622.73648272|133.97249043|12868|1 +638548.88967563|220622.88012675|127.45435432|12869|2 +638543.93624802|220627.4410902|127.50760699|12870|1 +638538.9322424|220632.04784056|127.50754188|12871|1 +638533.97541306|220636.61130077|127.51677854|12872|1 +638529.02391574|220641.17185836|127.66309549|12873|1 +638524.06897608|220645.73467403|127.74677427|12874|1 +638519.11508639|220650.29707052|127.86767876|12875|1 +638514.21231649|220654.81362828|128.07203879|12876|1 +638509.26409271|220659.37281154|128.32962358|12877|1 +638504.36944921|220663.88443263|128.70783381|12878|1 +638499.42326173|220668.44246715|129.01471801|12879|1 +638494.56253221|220672.91925082|129.14468243|12880|1 +638489.61197991|220677.48039014|129.3885099|12881|1 +638484.71013348|220681.99708219|129.65892184|12882|1 +638479.80632549|220686.515213|129.90393063|12883|1 +638474.90042724|220691.0349012|130.12355488|12884|1 +638470.04280717|220695.51043645|130.362964|12885|1 +638465.13355861|220700.03274712|130.5504599|12886|1 +638460.27408773|220704.50988466|130.7824276|12887|1 +638455.35911123|220709.03655345|130.90668073|12888|1 +638450.49049714|220713.52046345|131.0253528|12889|1 +638445.62836141|220718.00003871|131.25553456|12890|1 +638440.74858932|220722.492304|131.24220511|12891|1 +638435.85589083|220726.994106|131.06643874|12892|1 +638430.9723724|220731.48972239|131.04581671|12893|1 +638426.13377142|220735.94371865|131.00645159|12894|1 +638421.23171357|220740.45340135|130.7792743|12895|1 +638416.48504432|220744.84115756|132.00178817|12896|1 +638411.47124051|220749.43303905|130.35483424|12897|1 +638406.68270002|220753.84274116|130.43726659|12898|1 +638401.76860154|220758.36286234|130.16444549|12899|1 +638396.98919069|220762.76640756|130.4006827|12900|1 +638392.08769983|220767.27790302|130.33195187|12901|1 +638387.25833465|220771.71918214|130.00078073|12902|1 +638382.39889828|220776.19167589|129.91179063|12903|1 +638377.63279779|220780.57812825|129.81454056|12904|1 +638372.78654429|220785.04136669|129.92287835|12905|1 +638367.96350075|220789.47942098|129.76870141|12906|1 +638363.15769769|220793.90475955|129.83108842|12907|1 +638358.39923261|220798.28667324|129.90385622|12908|1 +638354.76606419|220801.81725449|142.66574463|12909|1 +638353.57371688|220802.72761114|129.79056058|12910|2 +638350.63609137|220805.71593489|149.29430213|12911|1 +638344.19000421|220811.39792002|131.93676876|12912|1 +638340.99007698|220814.58067995|148.21008707|12913|1 +638339.16308438|220815.98721771|129.27525147|12914|2 +638335.34333996|220819.64606389|139.05036738|12915|1 +638334.39295672|220820.37963589|129.33064355|12916|2 +638330.7592794|220823.89292252|140.87625028|12917|1 +638329.62391807|220824.77149108|129.41599665|12918|2 +638326.97852977|220827.5162436|150.67982033|12919|1 +638321.86889249|220832.16953362|147.18178499|12920|1 +638319.98610528|220833.63355676|128.66001337|12921|2 +638315.90043481|220837.48696063|134.98103554|12922|1 +638315.22999482|220838.00948509|128.46761543|12923|2 +638311.08499891|220841.91515369|134.62728898|12924|1 +638307.04444314|220845.73051124|141.18962713|12925|1 +638305.61445569|220846.84997598|127.63596221|12926|2 +638303.30776213|220849.30546328|150.46035422|12927|1 +638300.81846997|220851.25835366|127.14945139|12928|2 +638298.33679222|220853.84781879|148.10997205|12929|1 +638299.37431297|220849.75122255|143.41773745|12930|1 +638297.63861712|220851.11411746|127.24285053|12931|2 +638304.06253592|220845.41713835|142.68767822|12932|1 +638302.44520566|220846.68441024|127.43190914|12933|2 +638307.97952233|220841.68608681|134.59613733|12934|1 +638307.2762325|220842.23596123|127.88031987|12935|2 +638314.22570748|220836.12857156|148.37865386|12936|1 +638312.13397643|220837.76033801|128.1522108|12937|2 +638319.2197304|220831.55106081|150.27225369|12938|1 +638323.47794715|220827.54589293|144.93712681|12939|1 +638322.43051326|220828.35917864|134.54657747|12940|2 +638321.84054927|220828.81725937|128.69413229|12941|3 +638328.6928862|220822.79795498|149.09871368|12942|1 +638333.37726001|220818.46185465|147.9893001|12943|1 +638331.54031999|220819.8811058|129.28307426|12944|2 +638338.51764153|220813.76701938|151.08301513|12945|1 +638342.6613021|220809.84706047|144.35641691|12946|1 +638341.25035864|220810.93144399|129.59477679|12947|2 +638347.75145583|220805.19186052|146.99620525|12948|1 +638351.2874464|220801.72581059|133.01258431|12949|1 +638355.86468325|220797.46081127|130.01222191|12950|1 +638360.70120766|220792.99787715|129.81696833|12951|1 +638365.53734526|220788.53546064|129.63342567|12952|1 +638370.42321293|220784.03574036|130.03312301|12953|1 +638375.29826301|220779.53654832|129.78537019|12954|1 +638380.17376399|220775.0454446|130.12188986|12955|1 +638385.10339568|220770.49767132|129.99065109|12956|1 +638389.9489165|220766.0297153|130.0215516|12957|1 +638394.85965914|220761.50511906|130.28777774|12958|1 +638399.73913593|220757.00405125|130.19288102|12959|1 +638404.63613395|220752.49036858|130.34007233|12960|1 +638409.64083341|220747.88918252|131.28946744|12961|1 +638414.45805331|220743.43462832|130.45280986|12962|1 +638419.40203429|220738.87864268|130.66745765|12963|1 +638424.2968235|220734.36812815|130.89388149|12964|1 +638429.28115823|220729.77433943|131.06492255|12965|1 +638434.15233621|220725.28155721|131.01663703|12966|1 +638439.14022682|220720.68601669|131.29320675|12967|1 +638444.05477003|220716.15301734|131.22625256|12968|1 +638448.95930843|220711.62731536|131.02811543|12969|1 +638453.91604046|220707.05473339|130.911713|12970|1 +638458.82340978|220702.52748883|130.7876273|12971|1 +638463.77327443|220697.96012458|130.5959735|12972|1 +638468.67369087|220693.43808572|130.39014379|12973|1 +638473.6656258|220688.8309853|130.1310242|12974|1 +638478.61057878|220684.26747952|129.89509395|12975|1 +638483.50814657|220679.74785183|129.67577666|12976|1 +638488.49547819|220675.14424292|129.36641818|12977|1 +638493.43937183|220670.58187221|129.14223607|12978|1 +638498.38249713|220666.01981042|128.92409081|12979|1 +638503.36974055|220661.41572166|128.66441311|12980|1 +638508.30154447|220656.86055449|128.25875334|12981|1 +638513.28941582|220652.25623568|128.02383698|12982|1 +638518.27776266|220647.65174025|127.80760789|12983|1 +638523.22223786|220643.088968|127.68215483|12984|1 +638528.26471382|220638.43701692|127.63094855|12985|1 +638533.20648368|220633.87626515|127.47400898|12986|1 +638538.19764388|220629.27079309|127.36990349|12987|1 +638543.24695127|220624.61572635|127.53752151|12988|1 +638548.50699072|220619.87969436|135.46547205|12989|1 +638548.18364178|220620.05844474|127.29897745|12990|2 +638553.21827914|220615.41205575|127.1358801|12991|1 +638558.20483415|220610.80988513|126.96932249|12992|1 +638563.43492022|220606.06396182|132.32698758|12993|1 +638563.23549921|220606.16577532|126.71280741|12994|2 +638568.29098541|220601.52971034|128.57599043|12995|1 +638573.44213487|220596.82945529|132.07978357|12996|1 +638578.46260221|220592.2157068|133.26274629|12997|1 +638583.29241681|220587.66403445|126.66064304|12998|1 +638588.27071568|220583.06624786|126.27547509|12999|1 +638593.35072304|220578.3780157|126.11157778|13000|1 +638598.38069598|220573.73451371|125.85603008|13001|1 +638603.37198909|220569.13175763|125.95204302|13002|1 +638608.39583905|220564.49006336|125.43429684|13003|1 +638613.47713696|220559.80135831|125.32154071|13004|1 +638618.46329447|220555.20031381|125.21150999|13005|1 +638623.54688925|220550.51131216|125.22429994|13006|1 +638633.61450311|220541.22194493|125.04026429|13007|1 +638638.69656928|220536.53325823|124.9790586|13008|1 +638643.72889899|220531.88791717|124.75008607|13009|1 +638648.75881896|220527.2414234|124.29004812|13010|1 +638653.79199499|220522.59475285|124.02391499|13011|1 +638658.8740895|220517.90411895|123.83271698|13012|1 +638663.90958765|220513.2573048|123.7045292|13013|1 +638668.99506116|220508.56884496|123.87650974|13014|1 +638674.08086666|220503.88217663|124.19263991|13015|1 +638679.11799134|220499.23933321|124.44016018|13016|1 +638684.20232031|220494.55429201|124.77574037|13017|1 +638689.23815469|220489.91263198|125.02370713|13018|1 +638694.32100817|220485.22722044|125.24122917|13019|1 +638699.40359836|220480.54022267|125.33418182|13020|1 +638704.43872648|220475.89619687|125.37665373|13021|1 +638709.52158975|220471.20803874|125.40780538|13022|1 +638714.60518828|220466.5177443|125.33939082|13023|1 +638719.64211136|220461.86959614|125.21391915|13024|1 +638724.72799265|220457.17509523|125.00251768|13025|1 +638729.81454886|220452.4804337|124.82280736|13026|1 +638734.90202058|220447.78492916|124.64351562|13027|1 +638739.94332219|220443.13136749|124.42549128|13028|1 +638745.03252337|220438.43454743|124.26572397|13029|1 +638750.11912801|220433.74357451|124.34378448|13030|1 +638765.38335283|220419.65684547|123.91177277|13031|1 +638770.44043793|220414.98163035|123.20849337|13032|1 +638775.54077473|220410.27126342|122.82656243|13033|1 +638780.64145093|220405.56150162|122.50759521|13034|1 +638785.70000108|220400.8882163|122.03025595|13035|1 +638790.80728989|220396.17063301|121.59361196|13036|1 +638795.91166934|220391.45836954|121.33854795|13037|1 +638800.97036289|220386.78795802|121.06837785|13038|1 +638806.08225802|220382.0666824|120.67072691|13039|1 +638811.20128599|220377.33646472|120.11138319|13040|1 +638816.27703002|220372.64524458|119.49297319|13041|1 +638821.40396784|220367.90656542|118.8536528|13042|1 +638831.05395224|220359.18993004|131.58034329|13043|1 +638836.26827187|220354.33331542|128.37759284|13044|1 +638841.16558611|220349.87155749|132.21956136|13045|1 +638846.86911727|220344.37675245|116.17407146|13046|1 +638851.31438126|220340.50656192|132.01202943|13047|1 +638856.56370987|220335.59734273|127.41782625|13048|1 +638857.05442425|220334.9815387|116.20194888|13049|2 +638862.11622714|220330.31518274|116.41063424|13050|1 +638867.18833738|220325.63632716|116.41392707|13051|1 +638872.26178693|220320.95623736|116.41759197|13052|1 +638877.32970201|220316.28447279|116.56487629|13053|1 +638882.39414523|220311.61906075|116.80587602|13054|1 +638887.41201744|220306.99636894|117.03574152|13055|1 +638892.48672736|220302.31912906|117.11530891|13056|1 +638897.56307641|220297.64028416|117.18903479|13057|1 +638902.60041998|220292.99537138|117.12680591|13058|1 +638907.64093128|220288.34717354|117.03988081|13059|1 +638912.69096123|220283.68829582|116.82245178|13060|1 +638917.73236307|220279.03999556|116.78576558|13061|1 +638922.83165447|220274.33646917|116.61847313|13062|1 +638927.8427995|220269.71276073|116.35846988|13063|1 +638932.90486758|220265.04205889|116.09240186|13064|1 +638937.96942626|220260.36906158|115.82667802|13065|1 +638942.98587591|220255.74090671|115.5982915|13066|1 +638948.03932662|220251.08158632|115.56939088|13067|1 +638953.06561399|220246.4432759|115.26673898|13068|1 +638958.08666097|220241.81142182|115.07610837|13069|1 +638963.1493269|220237.14305756|115.01068898|13070|1 +638968.11228381|220232.56758552|115.01830714|13071|1 +638973.13190085|220227.93866417|114.93985595|13072|1 +638978.14806591|220223.3140121|114.93606083|13073|1 +638983.13206171|220218.71632665|114.7510578|13074|1 +638988.18499743|220214.05181102|114.33776127|13075|1 +638993.14067665|220209.47754452|113.9713829|13076|1 +638998.15334883|220204.85844164|114.12928055|13077|1 +639003.10011449|220200.2949024|113.93638962|13078|1 +639008.07899529|220195.70506832|113.96842493|13079|1 +639013.06374094|220191.10919131|113.95699305|13080|1 +639018.00734543|220186.55035126|113.88763901|13081|1 +639023.02306688|220181.92158239|113.57858748|13082|1 +639027.99973526|220177.327749|113.19918663|13083|1 +639032.97747547|220172.7332832|112.84450059|13084|1 +639037.9619449|220168.13207003|112.45261675|13085|1 +639042.93068362|220163.54831914|112.26504643|13086|1 +639046.19510009|220156.8816619|111.88665016|13087|1 +639041.14746021|220161.53150751|112.2439407|13088|1 +639036.0151256|220166.25794563|112.50342305|13089|1 +639030.98714763|220170.88761044|112.71899172|13090|1 +639025.90162118|220175.57225945|113.06869201|13091|1 +639020.81341479|220180.26038631|113.4870301|13092|1 +639015.74430211|220184.92830169|113.72607645|13093|1 +639010.68345545|220189.58769999|113.90349853|13094|1 +639005.68565088|220194.18697194|113.94046379|13095|1 +639000.59366087|220198.87295768|113.97395949|13096|1 +638995.55631494|220203.5079212|113.95992311|13097|1 +638990.51339337|220208.14930644|114.04542504|13098|1 +638985.45744194|220212.80544518|114.32983615|13099|1 +638980.39573705|220217.46852942|114.72629647|13100|1 +638975.36172548|220222.10137815|114.80017118|13101|1 +638970.28503173|220226.77290683|114.82973222|13102|1 +638965.25865057|220231.39810829|114.86057691|13103|1 +638960.18617581|220236.06576831|114.89078908|13104|1 +638955.14901848|220240.70400569|115.133305|13105|1 +638950.12390046|220245.32915273|115.23927083|13106|1 +638945.03089155|220250.02158225|115.66824086|13107|1 +638940.02129684|220254.63007934|115.6129418|13108|1 +638934.94500997|220259.30457282|115.8684895|13109|1 +638929.86924082|220263.97905108|116.15552372|13110|1 +638924.79603085|220268.65118531|116.44293001|13111|1 +638919.72990279|220273.3157115|116.6560337|13112|1 +638914.67349345|220277.96947059|116.74499589|13113|1 +638909.61173742|220282.62998311|116.95871351|13114|1 +638904.56072016|220287.27842681|117.02331434|13115|1 +638899.55986727|220291.88056316|117.08125511|13116|1 +638894.46840211|220296.56520067|117.0722789|13117|1 +638889.42648682|220301.20418746|117.06282829|13118|1 +638884.39632736|220305.82942817|116.85420805|13119|1 +638879.32283463|220310.49352166|116.57211308|13120|1 +638874.29650562|220315.11461204|116.32023027|13121|1 +638869.25936895|220319.74922424|116.3114959|13122|1 +638864.17617719|220324.4261076|116.29197148|13123|1 +638858.73759958|220329.56285192|125.31658286|13124|1 +638853.57952732|220334.33907317|127.36879658|13125|1 +638854.08218104|220333.7062589|115.77846691|13126|2 +638848.33674171|220339.24190844|132.73725173|13127|1 +638849.04276376|220338.34537461|115.93259734|13128|2 +638843.33661457|220343.83947352|132.52565492|13129|1 +638838.33056728|220348.42718664|131.26838961|13130|1 +638838.92852211|220347.65344098|116.05013459|13131|2 +638833.40436351|220352.9096479|127.84665674|13132|1 +638833.8294736|220352.35384996|116.63748596|13133|2 +638828.30241471|220357.64022134|130.3111159|13134|1 +638823.68439655|220361.70709588|117.89845338|13135|1 +638818.62963497|220366.37181631|118.83389582|13136|1 +638813.53951401|220371.06513894|119.4977543|13137|1 +638808.45590398|220375.75073749|120.04347092|13138|1 +638803.42126333|220380.39182541|120.63031069|13139|1 +638798.35127934|220385.06040989|120.87084533|13140|1 +638793.28218418|220389.72855036|121.1366808|13141|1 +638788.21084032|220394.40096604|121.55265624|13142|1 +638783.14131445|220399.07180399|121.97523594|13143|1 +638778.07360529|220403.74107258|122.4043734|13144|1 +638773.05717862|220408.36195389|122.7551992|13145|1 +638767.94902508|220413.06599345|123.01381649|13146|1 +638762.88539634|220417.73253203|123.51257774|13147|1 +638757.82051928|220422.40297752|124.19902093|13148|1 +638747.72490433|220431.68600332|123.76755803|13149|1 +638742.6794077|220436.33258567|124.04286271|13150|1 +638737.57928178|220441.02828044|124.23512113|13151|1 +638732.57538764|220445.63529006|124.42477505|13152|1 +638727.47623174|220450.33176115|124.73020818|13153|1 +638722.4271959|220454.97970997|124.87501823|13154|1 +638717.37845015|220459.62849368|125.09501455|13155|1 +638712.33144917|220464.27348468|125.16527086|13156|1 +638707.23750994|220468.96134524|125.20976126|13157|1 +638702.2391635|220473.56071769|125.2251743|13158|1 +638697.1459993|220478.24760775|125.25155414|13159|1 +638692.10062334|220482.8871931|125.05402162|13160|1 +638687.05496935|220487.52768603|124.90043999|13161|1 +638682.00864271|220492.16679197|124.60955483|13162|1 +638676.91394694|220496.85000084|124.2873506|13163|1 +638671.91393014|220501.4469186|124.02836124|13164|1 +638666.86517195|220506.08764518|123.69430654|13165|1 +638661.77016306|220510.77483442|123.62302703|13166|1 +638656.77055066|220515.37487072|123.60175387|13167|1 +638651.72535455|220520.01966039|123.76825567|13168|1 +638646.68310004|220524.664768|124.14119179|13169|1 +638641.64113317|220529.30897698|124.47056769|13170|1 +638636.59800555|220533.95243171|124.67514166|13171|1 +638626.51091374|220543.23811574|124.94738605|13172|1 +638621.46539058|220547.88105277|124.96505943|13173|1 +638616.42078415|220552.5239762|125.03918528|13174|1 +638611.37538015|220557.16749159|125.06975092|13175|1 +638606.38129709|220561.76654892|125.26156285|13176|1 +638601.34089481|220566.40894554|125.49858142|13177|1 +638596.30217492|220571.05062273|125.79202456|13178|1 +638591.33737196|220575.66346046|128.76567225|13179|1 +638586.31514445|220580.24781089|126.18201084|13180|1 +638581.38310536|220584.84273175|129.99254866|13181|1 +638581.27328628|220584.89056671|126.35083808|13182|2 +638576.43232406|220589.44165351|132.89715857|13183|1 +638576.22699017|220589.53540559|126.38244551|13184|2 +638571.23548365|220594.13321572|126.64935999|13185|1 +638566.1978531|220598.77410883|126.95606746|13186|1 +638561.41386421|220603.26608296|133.04950306|13187|1 +638561.1874392|220603.38148379|126.68594387|13188|2 +638556.45187874|220607.8452059|133.89670886|13189|1 +638551.37064468|220612.50616072|132.82957186|13190|1 +638546.46151885|220617.038383|133.79877045|13191|1 +638541.21075847|220621.7796045|127.54739999|13192|1 +638536.20897379|220626.38371441|127.59570412|13193|1 +638531.19500038|220630.99521868|127.38184698|13194|1 +638526.1958521|220635.59836834|127.53005218|13195|1 +638521.24191726|220640.1592722|127.63739468|13196|1 +638516.28701186|220644.72097972|127.73825384|13197|1 +638511.28513438|220649.32638497|127.86752993|13198|1 +638506.381284|220653.84246044|128.06410437|13199|1 +638501.3977885|220658.43650531|128.57370219|13200|1 +638496.44844752|220662.99528364|128.82347349|13201|1 +638491.49797004|220667.55492707|129.06054787|13202|1 +638486.549052|220672.11367956|129.33480144|13203|1 +638481.6489077|220676.62789369|129.63563019|13204|1 +638476.69725835|220681.18870879|129.87814611|13205|1 +638471.79393135|220685.70530384|130.14077246|13206|1 +638466.88811332|220690.22373209|130.37178208|13207|1 +638461.98082041|220694.74333735|130.58990874|13208|1 +638457.06838801|220699.2666689|130.73905342|13209|1 +638452.10836544|220703.83410563|130.90533198|13210|1 +638447.23683277|220708.31867882|130.98009966|13211|1 +638442.32297235|220712.84368611|131.15299177|13212|1 +638437.44261364|220717.33501535|131.13326271|13213|1 +638432.50145493|220721.87997478|130.95038048|13214|1 +638427.62534553|220726.36893018|131.03552894|13215|1 +638422.72835806|220730.87320342|130.85245138|13216|1 +638417.82446333|220735.39230056|131.2473583|13217|1 +638412.92013641|220739.89330993|130.37909328|13218|1 +638407.9510735|220744.46060398|129.96433637|13219|1 +638403.21197929|220748.84161864|131.29742976|13220|1 +638398.27948715|220753.36492492|130.17884464|13221|1 +638393.42844327|220757.82876003|130.12328512|13222|1 +638388.52346441|220762.34155645|130.01766345|13223|1 +638383.63888532|220766.83108796|129.60655284|13224|1 +638378.82106532|220771.27112354|130.0153101|13225|1 +638373.95156|220775.75012715|129.83292087|13226|1 +638369.12984101|220780.18545272|129.67397212|13227|1 +638364.26941564|220784.65835083|129.64558309|13228|1 +638359.45271806|220789.09058154|129.59067471|13229|1 +638354.62395909|220793.54002287|129.95211383|13230|1 +638349.98162541|220797.83211404|131.29726233|13231|1 +638346.02974555|220801.60282851|140.48105501|13232|1 +638344.97528178|220802.41014352|129.26583807|13233|2 +638340.17935041|220806.8277531|129.51797202|13234|1 +638336.94297671|220810.04499467|145.92425923|13235|1 +638332.37179109|220814.27923408|147.7945023|13236|1 +638325.72375911|220820.12716444|129.18803801|13237|1 +638322.96329017|220822.959911|149.28073084|13238|1 +638320.89064735|220824.56762177|128.65972502|13239|2 +638318.2531626|220827.30140975|149.73269485|13240|1 +638313.11582261|220831.97598765|146.04987972|13241|1 +638301.96670707|220842.00783807|130.28425237|13242|1 +638297.06939695|220846.50041623|129.27450733|13243|1 +638294.18942449|220849.40779368|146.94398507|13244|1 +638289.51159076|220853.71268958|146.92619078|13245|1 +638289.27078212|220850.94040915|147.2247778|13246|1 +638287.036763|220852.69982523|126.77814308|13247|2 +638293.19043995|220847.21097862|139.42668935|13248|1 +638291.82133062|220848.28703886|126.74589382|13249|2 +638301.74440329|220839.17864854|129.64338788|13250|1 +638308.02758626|220833.59025991|143.64716576|13251|1 +638306.90307903|220834.46837334|132.84112467|13252|2 +638306.37886673|220834.87772407|127.80367323|13253|3 +638311.65361946|220830.08444721|132.63929472|13254|1 +638311.21031699|220830.42983556|128.32581915|13255|2 +638318.30844854|220824.20667407|150.2727839|13256|1 +638316.08651705|220825.93374374|128.37194666|13257|2 +638322.70624747|220820.10009624|146.81153708|13258|1 +638320.87292072|220821.52171423|128.5082735|13259|2 +638327.58214571|220815.60848078|147.1457127|13260|1 +638325.77189097|220817.00869833|128.83220786|13261|2 +638330.64822945|220812.52081548|129.44897145|13262|1 +638337.35643012|220806.61659005|148.63936405|13263|1 +638341.58311179|220802.62469623|142.23898843|13264|1 +638340.69781376|220803.304056|132.91191119|13265|2 +638340.33320936|220803.58384602|129.07061239|13266|3 +638346.38608861|220798.18950763|141.83738424|13267|1 +638351.35590705|220793.62716313|143.25397037|13268|1 +638355.69409187|220789.54623079|137.79035805|13269|1 +638355.14894068|220789.96094091|131.7982281|13270|2 +638359.78824411|220785.64834924|129.46697969|13271|1 +638364.6308377|220781.18138267|129.38906801|13272|1 +638369.54074938|220776.65590267|129.55197932|13273|1 +638374.43818049|220772.14018593|129.59645111|13274|1 +638379.29823342|220767.66109496|129.79019781|13275|1 +638384.20077744|220763.14228509|129.94558399|13276|1 +638389.09955008|220758.62666639|130.08189222|13277|1 +638394.10420588|220754.03311122|131.5610142|13278|1 +638399.11650705|220749.43496223|133.20810765|13279|1 +638403.71625889|220745.14056688|129.62960264|13280|1 +638408.66370222|220740.58160704|129.86983962|13281|1 +638413.84802179|220735.86022141|133.93058593|13282|1 +638418.52535082|220731.49857225|130.64181265|13283|1 +638423.47050234|220726.9427071|130.94978517|13284|1 +638428.34145749|220722.45028048|130.92067061|13285|1 +638433.31752949|220717.86328026|131.04815145|13286|1 +638438.19004379|220713.37039919|131.0866329|13287|1 +638443.15540033|220708.7917113|131.10780374|13288|1 +638448.05539266|220704.26968179|130.88478435|13289|1 +638452.96539211|220699.74088275|130.82955971|13290|1 +638457.91487425|220695.17407231|130.66309512|13291|1 +638462.81328838|220690.65374727|130.45758167|13292|1 +638467.75796808|220686.09062039|130.24070145|13293|1 +638472.70153784|220681.528417|130.0173751|13294|1 +638477.6422612|220676.96828608|129.75639516|13295|1 +638482.58207808|220672.40889312|129.48893188|13296|1 +638487.47256161|220667.89465096|129.20046519|13297|1 +638492.45833911|220663.29215943|128.92829521|13298|1 +638497.39067743|220658.73712782|128.56027043|13299|1 +638502.32830201|220654.17877098|128.29799754|13300|1 +638507.30556276|220649.58164117|127.88199419|13301|1 +638512.24868958|220645.02002353|127.74407675|13302|1 +638517.24099749|220640.41376108|127.65232403|13303|1 +638522.18365022|220635.85284641|127.53271249|13304|1 +638527.17315187|220631.24870706|127.40959417|13305|1 +638532.17495256|220626.63761177|127.58605818|13306|1 +638537.11878252|220622.0767773|127.54706513|13307|1 +638542.17836082|220617.43422982|129.21556197|13308|1 +638547.44221973|220612.6819721|136.26012281|13309|1 +638552.39487746|220608.10338422|135.56292677|13310|1 +638557.32236293|220603.53740583|134.14118745|13311|1 +638562.3463509|220598.9215419|135.39208104|13312|1 +638567.3565966|220594.29348741|134.94198668|13313|1 +638567.17034661|220594.38409895|129.39596062|13314|2 +638572.06229806|220589.82931641|126.49938745|13315|1 +638577.21743505|220585.1530832|131.89126447|13316|1 +638577.03782068|220585.23364902|126.07595198|13317|2 +638582.07874312|220580.58626105|126.23764476|13318|1 +638587.14051228|220575.9556432|128.86268978|13319|1 +638592.03662375|220571.3916248|125.59671516|13320|1 +638597.0694348|220566.74796723|125.50254397|13321|1 +638602.0976684|220562.10587838|125.22736022|13322|1 +638607.0812591|220557.50659331|125.06615113|13323|1 +638617.1444178|220548.22008189|124.77872624|13324|1 +638622.17911671|220543.57632595|124.79772047|13325|1 +638627.21033421|220538.9331314|124.63565562|13326|1 +638632.19519594|220534.33357746|124.53701028|13327|1 +638637.27539099|220529.64596615|124.42448669|13328|1 +638642.3076862|220525.00196096|124.27538852|13329|1 +638647.29037868|220520.40084124|123.93312035|13330|1 +638652.36911889|220515.71138438|123.60270265|13331|1 +638657.40254739|220511.06596704|123.42907569|13332|1 +638662.43825495|220506.4219207|123.49309982|13333|1 +638667.47421484|220501.77864578|123.6260315|13334|1 +638672.51119783|220497.13835236|124.02784964|13335|1 +638677.54683288|220492.49811151|124.3485842|13336|1 +638682.58170038|220487.85867191|124.67571837|13337|1 +638687.66321862|220483.17442626|124.87858081|13338|1 +638692.69677677|220478.53500814|125.12490115|13339|1 +638697.7302307|220473.89249206|125.15265765|13340|1 +638702.811373|220469.20604141|125.18148386|13341|1 +638707.79808238|220464.60503606|125.10242806|13342|1 +638712.88020759|220459.9165913|125.05684006|13343|1 +638717.91604557|220455.26914322|124.89791921|13344|1 +638722.9539517|220450.61759727|124.58923975|13345|1 +638728.03953793|220445.92377872|124.39472101|13346|1 +638733.07818584|220441.2736562|124.23023769|13347|1 +638738.11774006|220436.62269616|124.06595902|13348|1 +638743.24487734|220431.89992734|124.51156992|13349|1 +638753.32329906|220422.59344486|123.82796377|13350|1 +638758.36450329|220417.9422465|123.75213569|13351|1 +638763.46347635|220413.23082522|123.19797306|13352|1 +638768.51342917|220408.56710436|122.81670254|13353|1 +638773.56262009|220403.90572228|122.54810445|13354|1 +638778.66204718|220399.19735915|122.23253238|13355|1 +638783.71724124|220394.52872119|121.84594125|13356|1 +638788.8238667|220389.8116404|121.38768924|13357|1 +638793.83841501|220385.17877863|120.88637|13358|1 +638798.94407533|220380.46523812|120.61001422|13359|1 +638804.00360459|220375.794256|120.3371094|13360|1 +638809.07452963|220371.10831102|119.75870634|13361|1 +638814.14758895|220366.42058188|119.19317694|13362|1 +638819.28074712|220361.6733418|118.3446968|13363|1 +638824.31772557|220357.01635965|117.60783797|13364|1 +638828.9016781|220352.99321031|131.69450399|13365|1 +638834.01398385|220348.25110008|129.88160637|13366|1 +638839.0233243|220343.6263055|129.60569708|13367|1 +638839.57549409|220342.91566196|115.77904362|13368|2 +638844.09224466|220338.95992876|130.24263622|13369|1 +638844.69044789|220338.19733564|115.76287713|13370|2 +638849.19697298|220334.2318237|128.9114683|13371|1 +638849.75845586|220333.52239107|115.7553613|13372|2 +638854.20551358|220329.61004444|128.7921079|13373|1 +638859.83989442|220324.22619854|115.97354376|13374|1 +638864.89955621|220319.56268324|116.2224407|13375|1 +638869.96999905|220314.88493353|116.25979663|13376|1 +638875.03921853|220310.20840569|116.34739146|13377|1 +638880.04990286|220305.58920095|116.66695399|13378|1 +638885.11241976|220300.92130161|116.92328304|13379|1 +638890.13373426|220296.2897525|117.06870701|13380|1 +638895.16369351|220291.64823577|117.07722744|13381|1 +638900.24250134|220286.96187607|117.09774716|13382|1 +638905.27983672|220282.31247154|117.03203011|13383|1 +638910.32043084|220277.65970018|116.94162614|13384|1 +638915.41623029|220272.95477643|116.76407384|13385|1 +638920.46345393|220268.29526186|116.63073287|13386|1 +638925.51706899|220263.62885892|116.42921919|13387|1 +638930.58540402|220258.94607737|116.03519594|13388|1 +638935.64634513|220254.27237687|115.79702395|13389|1 +638940.65494415|220249.64836329|115.65834377|13390|1 +638945.71983822|220244.97120679|115.43317567|13391|1 +638950.72995711|220240.34642526|115.33830685|13392|1 +638955.80985222|220235.6533559|114.97081227|13393|1 +638960.8246786|220231.02423459|114.87630622|13394|1 +638965.88577159|220226.35331441|114.83878285|13395|1 +638970.90124357|220221.72430925|114.79432036|13396|1 +638975.90983785|220217.1033795|114.86795322|13397|1 +638980.94111137|220212.45764237|114.67473672|13398|1 +638986.00455115|220207.77682977|114.10933754|13399|1 +638991.02505181|220203.14401034|114.12140195|13400|1 +638996.06092272|220198.49467464|113.97232238|13401|1 +639000.98839936|220193.94770988|113.99357694|13402|1 +639006.01031881|220189.31448661|114.06794464|13403|1 +639011.01325135|220184.69411239|113.824266|13404|1 +639016.01855308|220180.0716389|113.58686607|13405|1 +639021.06903381|220175.40856267|113.4200201|13406|1 +639026.03631612|220170.8203678|113.1309767|13407|1 +639031.05785212|220166.1817566|112.81339545|13408|1 +639036.01935731|220161.60077701|112.65437228|13409|1 +639041.04892593|220156.95448434|112.31844793|13410|1 +639046.09189938|220152.29430607|111.87754373|13411|1 +639042.6646151|220151.76581935|111.95190213|13412|1 +639037.50774412|220156.51907518|112.45274698|13413|1 +639032.42248442|220161.20329418|112.74645057|13414|1 +639027.34609889|220165.87843621|112.97866941|13415|1 +639022.21669596|220170.60368689|113.29570186|13416|1 +639017.14213636|220175.27789478|113.57846656|13417|1 +639012.04124106|220179.97317758|113.6425744|13418|1 +639006.92433728|220184.68640041|113.92423219|13419|1 +639001.87804163|220189.3312189|113.97888943|13420|1 +638996.73920291|220194.06102161|114.0117247|13421|1 +638991.66659246|220198.72699885|113.85455259|13422|1 +638986.61920958|220203.37430629|114.00953879|13423|1 +638981.4712979|220208.11746708|114.24251108|13424|1 +638976.34602783|220212.84576408|114.8437314|13425|1 +638971.27721376|220217.5118393|114.75010902|13426|1 +638966.2046754|220222.18244522|114.73137524|13427|1 +638961.12642011|220226.85988017|114.8186166|13428|1 +638956.00670722|220231.57461219|114.84339653|13429|1 +638950.92541121|220236.25641732|115.03720835|13430|1 +638945.83758075|220240.94616812|115.36197987|13431|1 +638940.7086135|220245.67292301|115.62465273|13432|1 +638935.59173089|220250.38645687|115.74495261|13433|1 +638930.52271765|220255.05643023|115.90331535|13434|1 +638925.39166279|220259.78733439|116.31705837|13435|1 +638920.32203189|220264.45917149|116.56337871|13436|1 +638915.21316625|220269.16562763|116.70448666|13437|1 +638910.1060429|220273.87058242|116.8523663|13438|1 +638905.04868907|220278.52975953|117.00655254|13439|1 +638899.95347023|220283.22175203|117.01841231|13440|1 +638894.8132562|220287.9548681|117.00654324|13441|1 +638889.76895902|220292.60002566|117.02483984|13442|1 +638884.68576873|220297.27894969|116.9010518|13443|1 +638879.61427286|220301.94408906|116.57206657|13444|1 +638874.54273826|220306.60945148|116.25588988|13445|1 +638869.46002847|220311.28868759|116.18307558|13446|1 +638864.38175837|220315.96283468|116.04208855|13447|1 +638859.01239393|220320.99905348|122.29687277|13448|1 +638859.31444687|220320.62369058|115.68330974|13449|2 +638853.82906331|220325.80835331|124.76956399|13450|1 +638854.23396456|220325.30116864|115.63029891|13451|2 +638848.556875|220330.73266085|129.50030795|13452|1 +638843.45722542|220335.44210651|130.42256048|13453|1 +638838.46762456|220340.01136306|128.70109002|13454|1 +638838.99537301|220339.33248672|115.57328832|13455|2 +638833.40335667|220344.6943102|130.03982028|13456|1 +638828.26268149|220349.44217282|131.00302853|13457|1 +638823.70232309|220353.44040941|117.31624589|13458|1 +638818.65301152|220358.10052012|118.03706845|13459|1 +638813.51350679|220362.84274745|118.68857417|13460|1 +638808.41887349|220367.54623834|119.51895305|13461|1 +638803.38927844|220372.18307453|119.89132177|13462|1 +638798.26914993|220376.90189265|120.16374289|13463|1 +638793.18961412|220381.58792761|120.75196863|13464|1 +638788.16415265|220386.22197491|121.1937379|13465|1 +638783.04507476|220390.94250575|121.64863197|13466|1 +638778.02594114|220395.56936182|121.99720674|13467|1 +638772.96122676|220400.23801161|122.33075914|13468|1 +638767.85151729|220404.94746007|122.61840727|13469|1 +638762.83799427|220409.5687022|122.93632339|13470|1 +638757.78004618|220414.22957936|123.16459828|13471|1 +638752.71519235|220418.90387611|123.87410058|13472|1 +638747.67664828|220423.53168576|123.06604596|13473|1 +638742.61613922|220428.20061732|123.68240027|13474|1 +638737.56976366|220432.85296012|124.05573637|13475|1 +638732.56888089|220437.45635076|123.9495938|13476|1 +638727.51781436|220442.11000083|124.11677463|13477|1 +638722.41943866|220446.80834227|124.35775575|13478|1 +638717.41743356|220451.41753987|124.57683118|13479|1 +638712.36808179|220456.07219299|124.91967606|13480|1 +638707.32164977|220460.71912497|124.91909005|13481|1 +638702.32281088|220465.32330538|124.99464838|13482|1 +638697.27688714|220469.97105985|125.08184323|13483|1 +638692.23161041|220474.61474416|124.93177767|13484|1 +638687.23371722|220479.21568443|124.8450014|13485|1 +638682.18791448|220483.85857799|124.60774099|13486|1 +638677.1413998|220488.50122041|124.30816798|13487|1 +638672.09459056|220493.14542158|124.09630142|13488|1 +638667.04579087|220497.78789219|123.64090505|13489|1 +638662.04478597|220502.38915092|123.37943211|13490|1 +638657.04385132|220506.99163147|123.20542378|13491|1 +638651.99803126|220511.64006631|123.34410396|13492|1 +638647.00065145|220516.24458579|123.53262307|13493|1 +638641.95854964|220520.89308379|123.90906596|13494|1 +638636.9629138|220525.49672771|124.14761932|13495|1 +638631.96571987|220530.09989268|124.254906|13496|1 +638621.92470041|220539.34922259|124.47031654|13497|1 +638616.87944542|220543.99588213|124.522453|13498|1 +638611.88234732|220548.59869477|124.61108033|13499|1 +638606.8875249|220553.20096749|124.80589673|13500|1 +638601.89317079|220557.80313086|125.01316821|13501|1 +638596.89850332|220562.4053435|125.20165011|13502|1 +638591.90506432|220567.00706701|125.43383175|13503|1 +638586.8623615|220571.65321449|125.59905921|13504|1 +638581.9166195|220576.21095156|125.82936189|13505|1 +638576.86833998|220580.85958988|125.81360468|13506|1 +638571.87370178|220585.4618717|126.00829086|13507|1 +638567.30307091|220589.83976673|137.56778515|13508|1 +638562.31408083|220594.43280227|137.48675737|13509|1 +638557.20627826|220599.08715526|134.11466808|13510|1 +638552.20969377|220603.66795637|132.71988531|13511|1 +638547.09580449|220608.33205154|129.62945381|13512|1 +638541.96459749|220613.00910166|126.33347166|13513|1 +638537.01812302|220617.56804019|126.59975361|13514|1 +638532.05061322|220622.15555151|127.49310552|13515|1 +638527.09812398|220626.71783736|127.60912658|13516|1 +638522.12895102|220631.29028956|127.36917796|13517|1 +638517.12758666|220635.89775842|127.49446358|13518|1 +638512.17605079|220640.4601647|127.67861085|13519|1 +638507.21939587|220645.02591632|127.7689311|13520|1 +638502.26952722|220649.58760254|128.00878671|13521|1 +638497.33024761|220654.14262804|128.46049957|13522|1 +638492.38310202|220658.70271135|128.7622399|13523|1 +638487.48001173|220663.22130302|129.00346287|13524|1 +638482.53628872|220667.77931953|129.37945927|13525|1 +638477.63159696|220672.29919665|129.60741791|13526|1 +638472.67884221|220676.86342587|129.83943212|13527|1 +638467.72919054|220681.42571025|130.13358219|13528|1 +638462.82263276|220685.94729031|130.36046182|13529|1 +638457.91496702|220690.46979468|130.58067207|13530|1 +638453.0029429|220694.99548718|130.74439264|13531|1 +638448.0360477|220699.5703679|130.81313277|13532|1 +638443.17560645|220704.04980155|131.06442956|13533|1 +638438.24581652|220708.58866599|131.00900958|13534|1 +638433.31267145|220713.13025188|130.92835387|13535|1 +638428.38000447|220717.67185184|130.87855216|13536|1 +638423.50158423|220722.16509647|130.9410694|13537|1 +638418.60033245|220726.67509661|130.71047836|13538|1 +638413.96653985|220731.00085846|134.73601745|13539|1 +638409.11283392|220735.46674109|134.48551131|13540|1 +638403.89157554|220740.22032073|130.74391825|13541|1 +638398.94613772|220744.75536722|129.44166955|13542|1 +638394.30364529|220749.08517352|133.19576419|13543|1 +638389.36512161|220753.61574487|132.02294041|13544|1 +638384.34719563|220758.21477498|130.52692641|13545|1 +638379.42202911|220762.7371251|129.63346288|13546|1 +638374.56255681|220767.21092263|129.56000675|13547|1 +638369.65575961|220771.72879679|129.51772088|13548|1 +638364.78126897|220776.21460126|129.3188861|13549|1 +638359.93532742|220780.67917557|129.46731455|13550|1 +638355.62973447|220784.72562479|135.07878791|13551|1 +638355.12007339|220785.11289586|129.44010685|13552|2 +638351.38266031|220788.73308918|141.71282415|13553|1 +638350.27699222|220789.57581036|129.65539647|13554|2 +638346.72396342|220793.04523956|143.23967354|13555|1 +638346.13049094|220793.49890111|136.85834796|13556|2 +638345.41347326|220794.04700292|129.14861709|13557|3 +638341.13020395|220798.08134328|135.33917253|13558|1 +638337.12174101|220801.89490327|143.7526014|13559|1 +638331.6542469|220806.83006036|136.90694974|13560|1 +638330.89785158|220807.41308374|129.10278723|13561|2 +638327.73948108|220810.56824056|146.07152496|13562|1 +638326.0683806|220811.8596642|129.058641|13563|2 +638322.956099|220814.97617009|146.28955859|13564|1 +638322.44445924|220815.37256454|141.14897837|13565|2 +638318.72082621|220818.95167329|151.48298221|13566|1 +638317.7038705|220819.74148094|141.39623819|13567|2 +638312.1719476|220824.73354332|134.38018729|13568|1 +638311.56173305|220825.20859333|128.4051261|13569|2 +638307.52150671|220829.03386692|135.61846767|13570|1 +638306.73772048|220829.64544774|128.03976162|13571|2 +638302.39318492|220833.70776605|132.28299018|13572|1 +638299.54302691|220836.59765254|150.54030298|13573|1 +638293.26773121|220842.17154551|136.4569484|13574|1 +638292.63914485|220842.66524755|130.59881984|13575|2 +638292.28631212|220842.94236815|127.31059537|13576|3 +638289.33168297|220845.90956721|144.27089638|13577|1 +638284.60396518|220850.26312116|144.27851453|13578|1 +638282.64117122|220851.81102049|126.4153459|13579|2 +638280.21919542|220854.3459814|147.39140052|13580|1 +638277.55440388|220853.67148883|146.58849909|13581|1 +638281.23545537|220850.11820952|136.30681773|13582|1 +638280.06764203|220851.03950187|125.71089446|13583|2 +638286.83020187|220845.05495214|143.37201921|13584|1 +638284.96130494|220846.52633146|126.21134864|13585|2 +638291.53835151|220840.6976639|142.83845072|13586|1 +638289.83181768|220842.0384382|126.98027068|13587|2 +638296.94105839|220835.78270276|147.94115411|13588|1 +638305.02231401|220828.09917462|133.25266316|13589|1 +638304.47685396|220828.52489516|127.99181096|13590|2 +638310.09378161|220823.45106516|135.72906579|13591|1 +638309.32472481|220824.04990551|128.2171558|13592|2 +638316.40184421|220817.83665428|150.05075979|13593|1 +638315.43450697|220818.58807484|140.47896211|13594|2 +638314.19964486|220819.54730674|128.26004629|13595|3 +638320.67534228|220813.80465356|144.37472281|13596|1 +638319.12230423|220815.00805341|128.80469321|13597|2 +638325.79643655|220809.11562765|147.18005486|13598|1 +638323.98578134|220810.51507064|128.78464788|13599|2 +638330.28034623|220804.919229|143.52201966|13600|1 +638328.8754432|220806.00222017|129.05559932|13601|2 +638334.77276169|220800.71512928|139.87418851|13602|1 +638334.26869486|220801.10264727|134.61254567|13603|2 +638338.67430186|220796.95537301|129.38366367|13604|1 +638343.54014017|220792.46199552|129.48568556|13605|1 +638349.62277059|220787.03394099|142.33849884|13606|1 +638348.41059413|220787.95778731|129.13890603|13607|2 +638354.32863841|220782.6655718|140.90821119|13608|1 +638353.26339528|220783.47495599|129.14045013|13609|2 +638358.17602517|220778.93922621|129.29565957|13610|1 +638363.08953772|220774.40321646|129.48780636|13611|1 +638367.99575918|220769.87310679|129.62367741|13612|1 +638372.94394833|220765.30365687|129.71503946|13613|1 +638377.84882825|220760.77531749|129.8875409|13614|1 +638382.79368337|220756.20910659|129.99087434|13615|1 +638387.80064363|220751.60590523|131.47472162|13616|1 +638392.55563364|220747.18094841|129.27664674|13617|1 +638397.45000037|220742.66172067|129.41021094|13618|1 +638402.69998128|220737.86443959|132.93419824|13619|1 +638407.7643279|220733.22303586|135.41976312|13620|1 +638412.61118931|220728.72212165|133.81740191|13621|1 +638417.30750485|220724.3388542|130.7761303|13622|1 +638422.55144237|220719.56124677|135.26026556|13623|1 +638427.20098643|220715.20077501|130.83599654|13624|1 +638432.17327818|220710.60905263|130.92518197|13625|1 +638437.52978978|220705.7569668|137.40376692|13626|1 +638437.09596457|220706.06303994|131.01339071|13627|2 +638442.06186137|220701.47656422|131.05869967|13628|1 +638447.00870544|220696.90371361|130.83600584|13629|1 +638451.96267043|220692.3261237|130.73774187|13630|1 +638456.91315812|220687.75117907|130.60192663|13631|1 +638461.85577891|220683.18183316|130.35372733|13632|1 +638466.84590964|220678.5688083|130.1131834|13633|1 +638471.78648369|220674.00116192|129.85220345|13634|1 +638476.77570819|220669.38905721|129.61778939|13635|1 +638481.7147893|220664.82268485|129.35022379|13636|1 +638486.69799485|220660.21720195|129.02847534|13637|1 +638491.63871916|220655.65264481|128.81051612|13638|1 +638496.57211297|220651.09291794|128.46131813|13639|1 +638501.54713857|220646.49310192|127.99575492|13640|1 +638506.53335994|220641.88626223|127.75473659|13641|1 +638511.52722118|220637.27484818|127.68217343|13642|1 +638516.51882466|220632.66505848|127.57841211|13643|1 +638521.51675359|220628.05172809|127.63066019|13644|1 +638526.50896652|220623.44210473|127.57682151|13645|1 +638531.51118886|220618.81044934|126.65218773|13646|1 +638536.44663869|220614.2499766|126.38280828|13647|1 +638541.48017541|220609.60018943|126.1886337|13648|1 +638546.47165891|220604.99140959|126.14721289|13649|1 +638551.56638697|220600.32884679|128.92203511|13650|1 +638556.62599074|220595.66788321|129.60270191|13651|1 +638556.49750138|220595.73317517|125.98688747|13652|2 +638561.65245405|220591.04475809|130.77940453|13653|1 +638561.47075757|220591.13412038|125.46461133|13654|2 +638566.51973338|220586.47753237|125.77691847|13655|1 +638571.55129293|220581.82955775|125.58353454|13656|1 +638576.53751805|220577.22450821|125.46728094|13657|1 +638581.52581985|220572.61873466|125.43219464|13658|1 +638586.56032949|220567.9698733|125.36404052|13659|1 +638591.59370537|220563.32160215|125.26484638|13660|1 +638596.62425431|220558.67437506|125.05961198|13661|1 +638601.65346335|220554.02746397|124.79206499|13662|1 +638606.6354672|220549.42408529|124.52596907|13663|1 +638611.66805066|220544.77598566|124.38984688|13664|1 +638616.70127131|220540.12776223|124.28512748|13665|1 +638621.73559143|220535.4794439|124.24308345|13666|1 +638626.76882598|220530.83129898|124.14495901|13667|1 +638631.80185077|220526.18288307|124.01577594|13668|1 +638636.83503034|220521.53414477|123.87424941|13669|1 +638641.86679228|220516.88478285|123.60165155|13670|1 +638646.89923207|220512.23488748|123.33548122|13671|1 +638651.93247643|220507.58452124|123.0882307|13672|1 +638656.96853259|220502.93542772|123.10362514|13673|1 +638662.00583363|220498.28794415|123.30668292|13674|1 +638667.04364855|220493.64274462|123.69740404|13675|1 +638672.08057384|220488.99882488|124.11954655|13676|1 +638677.11586837|220484.35364613|124.3543606|13677|1 +638682.15056515|220479.70837931|124.54560512|13678|1 +638687.18489836|220475.06445876|124.8057572|13679|1 +638692.21886241|220470.41876396|124.92234567|13680|1 +638697.2529805|220465.77135964|124.93286598|13681|1 +638702.28738928|220461.12341591|124.92481994|13682|1 +638707.32304275|220456.47165861|124.73573343|13683|1 +638712.35948154|220451.81926923|124.55309305|13684|1 +638717.39725923|220447.16472628|124.30816798|13685|1 +638722.43549963|220442.51067164|124.12591827|13686|1 +638727.47538621|220437.85409288|123.87515168|13687|1 +638732.51482761|220433.19985518|123.75579129|13688|1 +638737.54245171|220428.5606427|123.91741895|13689|1 +638742.58348154|220423.90420063|123.74845218|13690|1 +638747.61808751|220419.26048717|124.04192323|13691|1 +638752.66959646|220414.58676108|123.35495914|13692|1 +638757.71689601|220409.9221554|123.02428099|13693|1 +638762.73164364|220405.27768265|122.0232052|13694|1 +638767.76672426|220400.6354617|122.44858474|13695|1 +638772.8643883|220395.92566388|122.20241323|13696|1 +638777.87316319|220391.2947874|121.75137939|13697|1 +638782.92993389|220386.62062707|121.36574634|13698|1 +638787.98790227|220381.94572714|121.00539553|13699|1 +638793.00240521|220377.30965974|120.56105897|13700|1 +638798.07216248|220372.61994781|119.93284489|13701|1 +638803.13990314|220367.93429752|119.4547894|13702|1 +638808.15682049|220363.29793269|119.14208228|13703|1 +638813.23605033|220358.59857532|118.45247648|13704|1 +638818.31840626|220353.89624737|117.75706637|13705|1 +638823.35605781|220349.23507056|117.05822391|13706|1 +638827.93946912|220345.18912692|129.70609115|13707|1 +638832.80917949|220340.74133931|132.98550684|13708|1 +638837.94958703|220335.94291045|129.39805352|13709|1 +638842.96285569|220331.32693982|130.2430548|13710|1 +638843.58742588|220330.53176225|115.3401672|13711|2 +638847.93671766|220326.72787979|129.76994785|13712|1 +638853.2903988|220321.68565593|122.97845113|13713|1 +638853.62915961|220321.26157079|115.38550406|13714|2 +638858.02135075|220317.40798015|129.12433015|13715|1 +638863.602375|220312.06467728|115.95600991|13716|1 +638868.67095623|220307.38915609|116.04278619|13717|1 +638873.64348443|220302.80258575|116.15717943|13718|1 +638878.65487351|220298.18310796|116.46972842|13719|1 +638883.66490814|220293.56542724|116.81970776|13720|1 +638888.63758553|220288.97943957|116.98371668|13721|1 +638893.66625472|220284.33999193|117.02235626|13722|1 +638898.65224232|220279.73888925|116.993251|13723|1 +638903.69008875|220275.08942212|116.92629682|13724|1 +638908.68243286|220270.48171969|116.84743636|13725|1 +638913.68344538|220265.86437772|116.6565546|13726|1 +638918.72658764|220261.21011996|116.59627909|13727|1 +638923.73618238|220256.58385447|116.33715951|13728|1 +638928.75265212|220251.95024609|116.00969977|13729|1 +638933.75488974|220247.33351023|115.93733195|13730|1 +638938.77761001|220242.69386399|115.59143609|13731|1 +638943.79367143|220238.06236937|115.38245308|13732|1 +638948.82526384|220233.41381264|114.98715549|13733|1 +638953.7983096|220228.82195402|114.77772599|13734|1 +638958.8070532|220224.20022384|114.77407969|13735|1 +638963.77191073|220219.6184733|114.7384818|13736|1 +638968.78374273|220214.99407222|114.74731848|13737|1 +638973.76038674|220210.39998459|114.61222879|13738|1 +638978.76812043|220205.77184635|114.11084443|13739|1 +638983.79238809|220201.13497338|114.05164793|13740|1 +638988.77223223|220196.53875411|113.9724433|13741|1 +638993.75902784|220191.93529909|113.8373443|13742|1 +638998.67728638|220187.39901367|113.97330837|13743|1 +639003.66777033|220182.79233666|113.8504319|13744|1 +639008.66724881|220178.17627124|113.65317843|13745|1 +639013.26260577|220173.9929047|117.54444637|13746|1 +639018.32959484|220169.30346377|116.59028875|13747|1 +639023.55914233|220164.43058343|113.35438677|13748|1 +639028.58493378|220159.78779229|112.98995247|13749|1 +639033.56346376|220155.18889151|112.64782383|13750|1 +639038.56166486|220150.56930677|112.13234729|13751|1 +639043.5453055|220145.96596674|111.8088036|13752|1 +639042.86583686|220143.53258874|111.92552229|13753|1 +639037.84735772|220148.15244367|111.9774169|13754|1 +639032.80150833|220152.80224961|112.35140412|13755|1 +639027.70623782|220157.49830688|112.77267227|13756|1 +639022.71171203|220162.10147729|113.19312187|13757|1 +639017.35399379|220167.08371224|116.63901145|13758|1 +639012.2494242|220171.79236003|117.33495176|13759|1 +639007.54283156|220176.06748458|113.474975|13760|1 +639002.52943146|220180.68512937|113.69550151|13761|1 +638997.47218041|220185.34289692|113.89568504|13762|1 +638992.45144063|220189.96102559|113.68675784|13763|1 +638987.35547597|220194.65365363|113.8300331|13764|1 +638982.31625612|220199.2929085|113.90081032|13765|1 +638977.28034488|220203.92890772|113.959365|13766|1 +638972.21034175|220208.60255497|114.49004995|13767|1 +638967.12428632|220213.2854453|114.64119452|13768|1 +638962.09949052|220217.90979932|114.65089627|13769|1 +638957.02811977|220222.577172|114.66607677|13770|1 +638951.95923906|220227.24216533|114.67540645|13771|1 +638946.93221526|220231.87031014|114.80377096|13772|1 +638941.84478482|220236.5572374|115.14314628|13773|1 +638936.75724001|220241.24491579|115.52649109|13774|1 +638931.67588545|220245.92616832|115.86053648|13775|1 +638926.60812825|220250.5924311|116.02705688|13776|1 +638921.53671613|220255.26344113|116.28722757|13777|1 +638916.42279102|220259.97292373|116.49809884|13778|1 +638911.36867519|220264.62499896|116.55372346|13779|1 +638906.30534507|220269.28830244|116.7963417|13780|1 +638901.25550784|220273.93635401|116.84629224|13781|1 +638896.15835689|220278.62831093|116.9157579|13782|1 +638891.11617586|220283.26822276|116.89157329|13783|1 +638886.0284916|220287.94982672|116.8497432|13784|1 +638881.00068314|220292.57330235|116.60803654|13785|1 +638875.97722775|220297.19178008|116.29791531|13786|1 +638870.85809159|220301.8985678|115.99651915|13787|1 +638865.83135197|220306.52144551|115.78028075|13788|1 +638860.36850484|220311.6676753|123.84864162|13789|1 +638860.76504868|220311.17843718|115.40354951|13790|2 +638855.38253999|220316.22863745|121.97108735|13791|1 +638855.68545784|220315.85207085|115.32629826|13792|2 +638849.97936527|220321.32694023|130.52151278|13793|1 +638844.97277457|220325.91625108|129.28087905|13794|1 +638839.81113784|220330.70246993|131.72558122|13795|1 +638835.46041491|220334.46551157|115.35355246|13796|1 +638829.75677314|220339.95239293|131.5196585|13797|1 +638824.90816951|220344.31532595|124.76758271|13798|1 +638825.22520818|220343.89886807|116.29017623|13799|2 +638820.17093903|220348.56205249|117.09259398|13800|1 +638815.07725718|220353.25942616|117.74807156|13801|1 +638809.98684229|220357.95361456|118.39152194|13802|1 +638804.90538879|220362.63671106|118.84195116|13803|1 +638799.7720501|220367.37071341|119.50163314|13804|1 +638794.69275734|220372.0531218|120.04035483|13805|1 +638789.61377376|220376.73635097|120.65436509|13806|1 +638784.54281067|220381.40917537|121.06274098|13807|1 +638779.47334474|220386.08089623|121.49018551|13808|1 +638774.407357|220390.74851297|121.85551278|13809|1 +638769.29752171|220395.45522922|122.13113372|13810|1 +638764.23259144|220400.12352875|122.60959849|13811|1 +638759.17692528|220404.77789381|122.71990826|13812|1 +638754.12235688|220409.4311558|122.82422768|13813|1 +638749.06534537|220414.08961076|123.12866552|13814|1 +638744.00336505|220418.75869628|123.84563714|13815|1 +638738.90541372|220423.4515812|123.92383718|13816|1 +638733.86411485|220428.08274298|123.35457776|13817|1 +638728.82122202|220432.7267453|123.56045398|13818|1 +638723.72371161|220437.42016113|123.70221305|13819|1 +638718.72133476|220442.02729884|123.94099896|13820|1 +638713.62508777|220446.72056678|124.15218649|13821|1 +638708.57705428|220451.37015143|124.41499888|13822|1 +638703.57756316|220455.97518947|124.6915779|13823|1 +638698.48482661|220460.66268135|124.72880361|13824|1 +638693.43995909|220465.30642497|124.79227893|13825|1 +638688.39556365|220469.94837349|124.76221559|13826|1 +638683.35123029|220474.58925079|124.66360746|13827|1 +638678.30656005|220479.22879812|124.45268968|13828|1 +638673.26134263|220483.86839576|124.21072257|13829|1 +638668.21492497|220488.50717365|123.83769343|13830|1 +638663.1672905|220493.14644066|123.42111337|13831|1 +638658.16687088|220497.74365144|123.10469484|13832|1 +638653.07149061|220502.43006102|122.90100454|13833|1 +638648.07449777|220507.03126503|123.07219444|13834|1 +638643.02962106|220511.67570781|123.18122986|13835|1 +638637.98803498|220516.32060656|123.52792567|13836|1 +638632.94572621|220520.96461748|123.76857193|13837|1 +638627.95005737|220525.56433636|123.92117687|13838|1 +638622.90523854|220530.20755091|123.9496124|13839|1 +638617.90800223|220534.80698148|123.98350807|13840|1 +638612.86404529|220539.45023447|124.06844259|13841|1 +638607.82106759|220544.09331805|124.2035602|13842|1 +638602.82662901|220548.69228605|124.38127994|13843|1 +638597.83479682|220553.2904833|124.66515155|13844|1 +638592.79624984|220557.9337604|124.99431351|13845|1 +638587.79935916|220562.53513747|125.08455005|13846|1 +638582.75576671|220567.18013803|125.21405868|13847|1 +638577.80465373|220571.7386421|125.25870721|13848|1 +638572.80254841|220576.34271183|125.20520339|13849|1 +638567.75781548|220580.98868458|125.32873098|13850|1 +638562.80676922|220585.54776708|125.41668858|13851|1 +638557.81344965|220590.14823807|125.66914809|13852|1 +638552.81450389|220594.75160033|125.76545868|13853|1 +638547.81464415|220599.35562724|125.84926769|13854|1 +638542.81741056|220603.95842622|126.01423469|13855|1 +638537.86107756|220608.52118628|126.02023434|13856|1 +638532.92101882|220613.07499132|126.43802363|13857|1 +638527.9281529|220617.67559717|126.72755072|13858|1 +638522.98761612|220622.22956032|127.12616905|13859|1 +638518.00686731|220626.82293673|127.68387566|13860|1 +638513.0341274|220631.3963245|127.38308411|13861|1 +638508.09055041|220635.95226456|127.72485928|13862|1 +638503.13298772|220640.51696824|127.78560918|13863|1 +638498.19040492|220645.07244559|128.15808952|13864|1 +638493.24807224|220649.62778167|128.53653229|13865|1 +638488.30164347|220654.18579238|128.83987252|13866|1 +638483.35043958|220658.74700834|129.06188732|13867|1 +638478.44995443|220663.26241379|129.34800066|13868|1 +638473.50231865|220667.82152975|129.65051304|13869|1 +638468.55352293|220672.3815301|129.94032848|13870|1 +638463.64640209|220676.90175468|130.13802844|13871|1 +638458.74273547|220681.4198012|130.4038453|13872|1 +638453.83296819|220685.94218545|130.58198362|13873|1 +638448.87370507|220690.50999387|130.74600185|13874|1 +638443.9559958|220695.03831979|130.82998759|13875|1 +638439.09198937|220699.51869936|131.02051587|13876|1 +638434.16520824|220704.05391485|131.00398662|13877|1 +638429.22435141|220708.59945036|130.80654711|13878|1 +638424.30571136|220713.12953242|130.95129205|13879|1 +638419.42342998|220717.62399615|130.95304079|13880|1 +638414.47891542|220722.17325523|130.77955336|13881|1 +638409.57322628|220726.68535618|130.51277841|13882|1 +638404.98680423|220730.96519224|134.47054475|13883|1 +638400.04581737|220735.50295548|133.73562069|13884|1 +638394.82539809|220740.24687607|129.49843829|13885|1 +638389.89796966|220744.77680662|129.08080714|13886|1 +638385.16037301|220749.15785298|130.44092219|13887|1 +638380.18635522|220753.72304806|129.49999169|13888|1 +638375.49953745|220758.07443189|132.02737736|13889|1 +638370.43253643|220762.70176937|129.48160208|13890|1 +638365.73131153|220767.05535249|131.25446485|13891|1 +638360.72072176|220771.6420059|129.47879294|13892|1 +638355.8400202|220776.13136043|129.23109594|13893|1 +638352.10164921|220779.75329931|141.6198715|13894|1 +638351.59698064|220780.13669876|136.04965152|13895|2 +638350.96628455|220780.615842|129.08843459|13896|3 +638347.72456331|220783.8570656|146.72659326|13897|1 +638341.28923904|220789.5320783|129.63322103|13898|1 +638337.5503545|220793.14021291|141.0491517|13899|1 +638332.51028701|220797.74411586|138.59810571|13900|1 +638331.87166168|220798.23493056|131.93422007|13901|2 +638328.40709874|220801.63458682|146.37216767|13902|1 +638323.73395594|220805.95553313|147.68414603|13903|1 +638321.88318482|220807.3854813|128.88563726|13904|2 +638318.40633952|220810.78321561|142.42194507|13905|1 +638317.0337381|220811.8463934|128.66252485|13906|2 +638314.163395|220814.7640061|147.57419903|13907|1 +638312.2070262|220816.28303188|128.21354671|13908|2 +638307.77742666|220820.41799858|132.14791908|13909|1 +638307.38220201|220820.72560332|128.28656566|13910|2 +638304.29636224|220823.80504147|144.69078787|13911|1 +638302.53657952|220825.17783347|127.71211585|13912|2 +638299.86804257|220827.93517714|148.37638423|13913|1 +638297.67426238|220829.65039323|127.47388805|13914|2 +638294.74905459|220832.5988285|145.03955797|13915|1 +638292.85119236|220834.08591162|127.17682652|13916|2 +638290.38243097|220836.67319083|148.79967087|13917|1 +638287.99374804|220838.54883136|126.58794966|13918|2 +638285.71441225|220840.9836947|149.72164434|13919|1 +638276.07098586|220849.84113727|148.37174264|13920|1 +638270.97524934|220854.48438795|145.10520991|13921|1 +638268.89870201|220853.61028392|140.64819863|13922|1 +638267.2241886|220854.93718195|125.80136354|13923|2 +638274.12770727|220848.83884732|144.2788587|13924|1 +638279.21116712|220844.19025473|147.13355528|13925|1 +638284.22090842|220839.594583|148.95833127|13926|1 +638289.08117707|220835.12391072|149.90648924|13927|1 +638293.57222713|220830.93031936|146.51982407|13928|1 +638291.48588526|220832.56700986|126.88589486|13929|2 +638298.41546177|220826.47351767|147.34217552|13930|1 +638303.41224185|220821.88386067|148.76050109|13931|1 +638306.70154294|220818.63243537|134.02295257|13932|1 +638306.09891569|220819.10202366|128.13490949|13933|2 +638313.34346142|220812.75560152|151.1571875|13934|1 +638317.91108012|220808.50829806|148.92519834|13935|1 +638315.87253737|220810.08914076|128.48138206|13936|2 +638322.87117403|220803.94973723|150.1565861|13937|1 +638327.44709065|220799.68838415|147.48589727|13938|1 +638325.63611328|220801.0855865|128.83216135|13939|2 +638331.15822195|220796.08436829|135.23172771|13940|1 +638336.41727005|220791.295367|139.55603055|13941|1 +638340.36351129|220787.50540808|129.41079696|13942|1 +638346.67313426|220781.91617974|145.26401914|13943|1 +638350.64712494|220778.1026765|135.25767967|13944|1 +638355.00574888|220773.99354764|129.29033895|13945|1 +638360.92539212|220768.70244576|140.93848847|13946|1 +638360.01801143|220769.3881604|130.60732166|13947|2 +638364.98306071|220764.81114527|130.88597498|13948|1 +638369.75830399|220760.38526634|129.53065965|13949|1 +638374.86873154|220755.70007768|131.58018516|13950|1 +638379.56695794|220751.33175647|129.30354747|13951|1 +638384.49546355|220746.78315789|129.22035239|13952|1 +638389.4218869|220742.23638602|129.13065536|13953|1 +638394.38340119|220737.66406984|129.50719127|13954|1 +638399.69748986|220732.83389741|134.48748328|13955|1 +638404.48467156|220728.39097946|132.717718|13956|1 +638409.48360464|220723.78435242|133.10696013|13957|1 +638414.23527055|220719.36644513|130.80677966|13958|1 +638419.17832838|220714.81004821|131.10783165|13959|1 +638424.13481883|220710.23464492|130.95478022|13960|1 +638429.04231358|220705.70440016|130.80078001|13961|1 +638434.0692927|220701.06938257|131.01569755|13962|1 +638438.98032194|220696.53723909|130.95462209|13963|1 +638443.93220359|220691.96617328|130.80709592|13964|1 +638448.88583285|220687.39413206|130.70300904|13965|1 +638453.83133912|220682.8279424|130.4865567|13966|1 +638458.82881672|220678.21504225|130.35242508|13967|1 +638463.76969324|220673.652393|130.08579897|13968|1 +638468.75814245|220669.04599812|129.82692123|13969|1 +638473.74464013|220664.44048183|129.54305892|13970|1 +638478.68309443|220659.87647651|129.2570665|13971|1 +638483.66923522|220655.26862289|128.97917593|13972|1 +638488.6605732|220650.6575305|128.8072977|13973|1 +638493.63898935|220646.05489416|128.39838231|13974|1 +638498.6199099|220641.4506777|128.03931514|13975|1 +638503.61080235|220636.84027279|127.88609628|13976|1 +638508.59482714|220632.23428431|127.60183399|13977|1 +638513.59766239|220627.61696933|127.72942645|13978|1 +638518.58320606|220623.01040263|127.50130039|13979|1 +638523.59253579|220618.37403744|126.73314109|13980|1 +638528.58108592|220613.76570374|126.57367143|13981|1 +638533.60725426|220609.11928079|126.1802342|13982|1 +638538.64103817|220604.46857406|125.97426496|13983|1 +638543.63016748|220599.86026382|125.85238378|13984|1 +638548.6649733|220595.20925552|125.69040265|13985|1 +638553.69771184|220590.55943282|125.47866631|13986|1 +638558.68344908|220585.95325356|125.28819384|13987|1 +638563.71776362|220581.30280504|125.13291928|13988|1 +638568.80132695|220576.60783827|125.03818069|13989|1 +638573.79400205|220571.99891295|125.09777717|13990|1 +638578.82989038|220567.34830328|125.03053463|13991|1 +638583.86508362|220562.69815645|124.95098584|13992|1 +638588.90354293|220558.04700478|125.00906613|13993|1 +638593.93249548|220553.39933686|124.70497246|13994|1 +638598.96183975|220548.75131164|124.40104621|13995|1 +638603.99242646|220544.1026921|124.13477356|13996|1 +638609.07192104|220539.40969587|123.91749337|13997|1 +638614.10652988|220534.75993666|123.82663362|13998|1 +638619.14285184|220530.11005312|123.83594469|13999|1 +638624.17745825|220525.46048267|123.75794|14000|1 +638629.25930733|220520.76680074|123.64194684|14001|1 +638634.29293092|220516.11659527|123.45818095|14002|1 +638639.32536294|220511.46566743|123.14959452|14003|1 +638644.40592741|220506.77018231|122.82836697|14004|1 +638654.52784864|220497.42605923|122.91844537|14005|1 +638659.56587308|220492.7774745|123.12326119|14006|1 +638664.60450649|220488.13144021|123.54075282|14007|1 +638669.6893676|220483.44197519|123.90245239|14008|1 +638674.72589021|220478.79771073|124.30790753|14009|1 +638679.80861897|220474.10703137|124.45158277|14010|1 +638684.84356493|220469.46040216|124.59502546|14011|1 +638694.9610806|220460.11970055|124.63959957|14012|1 +638700.04422936|220455.42564545|124.5784776|14013|1 +638705.08098622|220450.77253465|124.39167933|14014|1 +638710.11878349|220446.1180083|124.17385033|14015|1 +638715.20574787|220441.41698754|123.87636091|14016|1 +638720.24642758|220436.75853686|123.57157891|14017|1 +638725.28562013|220432.10511252|123.51693097|14018|1 +638730.36667877|220427.41046984|123.28272154|14019|1 +638735.40549746|220422.7589477|123.33477428|14020|1 +638740.43962617|220418.11668637|123.72433268|14021|1 +638745.53835465|220413.39929949|123.04803772|14022|1 +638750.58418967|220408.73704028|122.80727054|14023|1 +638755.62951251|220404.07662266|122.6604234|14024|1 +638760.67129025|220399.42276769|122.73864203|14025|1 +638765.72420719|220394.75153126|122.32999639|14026|1 +638770.77998377|220390.0770254|121.87793006|14027|1 +638775.88043183|220385.36430259|121.62877268|14028|1 +638780.89302228|220380.7292162|121.14953585|14029|1 +638785.95345455|220376.05106995|120.74209944|14030|1 +638791.06437175|220371.32598175|120.30694374|14031|1 +638796.08273067|220366.68586432|119.84706391|14032|1 +638801.15910946|220361.98847534|119.128604|14033|1 +638806.23698408|220357.29035297|118.45423452|14034|1 +638811.31302014|220352.59594799|117.91754992|14035|1 +638816.39731384|220347.89156213|117.21907953|14036|1 +638821.10035198|220343.6720919|125.64997713|14037|1 +638821.44105683|220343.22286573|116.40486714|14038|2 +638825.90835157|220339.32563236|132.01218756|14039|1 +638831.05394356|220334.53729624|129.43581873|14040|1 +638831.41189911|220334.07510731|120.39240846|14041|2 +638831.62296982|220333.80257472|115.05991398|14042|3 +638835.95010211|220330.05388612|131.98841222|14043|1 +638841.07844025|220325.29067458|130.04287127|14044|1 +638846.17668721|220320.5515095|127.84425688|14045|1 +638846.74467636|220319.83767163|114.8327646|14046|2 +638851.31324081|220315.76664854|124.95433448|14047|1 +638851.76325465|220315.20560646|114.95541783|14048|2 +638856.20142539|220311.30573747|128.64577236|14049|1 +638861.48258193|220306.34489561|122.92128241|14050|1 +638861.8475369|220305.8966432|115.27454317|14051|2 +638866.80869341|220301.31994619|115.64816762|14052|1 +638871.86496829|220296.6558919|116.04424657|14053|1 +638876.83207416|220292.07225034|116.31806296|14054|1 +638881.84460167|220287.44763993|116.65310364|14055|1 +638886.86484929|220282.81398988|116.85744507|14056|1 +638891.84884794|220278.2109517|116.86953738|14057|1 +638896.8838183|220273.56054849|116.85613352|14058|1 +638901.87640032|220268.94823062|116.7748918|14059|1 +638906.87118911|220264.33378103|116.6874179|14060|1 +638911.92507011|220259.6626711|116.45043654|14061|1 +638916.91959511|220255.0494721|116.43158184|14062|1 +638921.92463884|220250.42457313|116.2758887|14063|1 +638926.93996765|220245.7883671|115.99587733|14064|1 +638931.95990444|220241.14746414|115.68490964|14065|1 +638937.00488709|220236.47865084|115.04458465|14066|1 +638941.97470547|220231.88558495|114.8453406|14067|1 +638946.99593849|220227.24493915|114.63422749|14068|1 +638951.95673739|220222.66300437|114.62753951|14069|1 +638956.96719477|220218.03539001|114.62780926|14070|1 +638961.93238996|220213.44930754|114.61474026|14071|1 +638966.90480613|220208.8555603|114.5332474|14072|1 +638971.96657041|220204.17210254|113.95004462|14073|1 +638976.93099703|220199.58817878|114.03621628|14074|1 +638981.91865064|220194.97893289|113.85541765|14075|1 +638986.90032591|220190.3767418|113.78010117|14076|1 +638991.84125144|220185.81118362|113.6409838|14077|1 +638996.80533242|220181.2291084|113.83220042|14078|1 +639001.76311606|220176.64591313|113.55008684|14079|1 +639006.79353387|220172.00035242|113.58199193|14080|1 +639011.38283937|220167.81100411|116.99752982|14081|1 +639016.36273563|220163.21233996|117.05117316|14082|1 +639021.64673665|220158.27675862|113.24310031|14083|1 +639026.63804912|220153.65955702|112.74997594|14084|1 +639031.62495269|220149.04768904|112.34359063|14085|1 +639036.6000995|220144.44901101|112.09816326|14086|1 +639041.22091486|220140.22409901|115.067867|14087|1 +639046.55595664|220135.23978025|111.14635899|14088|1 +639043.01803245|220135.19591743|111.21284808|14089|1 +639037.68557473|220140.16706262|115.04625897|14090|1 +639032.89893843|220144.53703542|112.18364658|14091|1 +639027.90918159|220149.14080524|112.50192547|14092|1 +639022.87436745|220153.78607416|112.81769287|14093|1 +639017.77050948|220158.49885717|113.39770514|14094|1 +639012.39231329|220163.51842843|117.66149992|14095|1 +639007.70682979|220167.77763096|113.60084664|14096|1 +639002.71610421|220172.37690954|113.55185418|14097|1 +638997.65984667|220177.03992734|113.73037387|14098|1 +638992.67628851|220181.6321423|113.65051812|14099|1 +638987.6302259|220186.28485649|113.76746005|14100|1 +638982.59468678|220190.92641926|113.78538458|14101|1 +638977.55300427|220195.57518836|113.90903309|14102|1 +638972.52878807|220200.20504424|113.840479|14103|1 +638967.49621959|220204.84370141|113.90248464|14104|1 +638962.38152825|220209.56308466|114.43566247|14105|1 +638957.34648562|220214.20352406|114.59148582|14106|1 +638952.32332333|220218.83110461|114.6170192|14107|1 +638947.25670139|220223.49819512|114.60469435|14108|1 +638942.18463606|220228.17185067|114.69838184|14109|1 +638937.12069934|220232.83674134|114.70540468|14110|1 +638932.02116686|220237.54262947|115.27235725|14111|1 +638926.97475771|220242.19918755|115.81518102|14112|1 +638921.89031894|220246.8892573|116.25241102|14113|1 +638916.82295857|220251.56031867|116.46612864|14114|1 +638911.77134059|220256.2136832|116.46241723|14115|1 +638906.66551598|220260.9189403|116.58991668|14116|1 +638901.61271319|220265.57458405|116.66777254|14117|1 +638896.55927272|220270.23145612|116.78947699|14118|1 +638891.46570256|220274.92378822|116.80622018|14119|1 +638886.42315668|220279.56870826|116.79778347|14120|1 +638881.3434544|220284.24535121|116.61603606|14121|1 +638876.27224841|220288.91207215|116.29139477|14122|1 +638871.24870463|220293.53511053|115.98466869|14123|1 +638866.17964079|220298.19958754|115.64187962|14124|1 +638860.61508894|220303.47194999|125.64444257|14125|1 +638861.10510011|220302.87093668|115.42405993|14126|2 +638855.47448262|220308.24452773|128.18799473|14127|1 +638850.41862779|220312.89885343|127.98495555|14128|1 +638851.01792541|220312.15281376|114.73227751|14129|2 +638845.36410032|220317.55178026|127.76973105|14130|1 +638845.93577879|220316.83437029|114.73353325|14131|2 +638840.25994024|220322.26776124|128.73949705|14132|1 +638840.86525591|220321.50165828|114.49200332|14133|2 +638835.23814335|220326.87995116|127.80160824|14134|1 +638830.18130137|220331.53683725|127.71202283|14135|1 +638830.67640447|220330.89853068|115.25724187|14136|2 +638824.92883363|220336.44884916|132.74369786|14137|1 +638819.93393824|220341.02768683|131.22049477|14138|1 +638820.48356347|220340.30419985|116.37361317|14139|2 +638815.18247708|220345.28116847|122.78457421|14140|1 +638815.38912368|220345.00603429|116.98866523|14141|2 +638810.29359327|220349.71051551|117.71649202|14142|1 +638805.15326372|220354.45634489|118.44749073|14143|1 +638800.11279625|220359.10948542|119.13611054|14144|1 +638794.98426163|220363.84162471|119.67478571|14145|1 +638789.90578026|220368.52767312|120.21726531|14146|1 +638784.8320878|220373.20803126|120.6727454|14147|1 +638779.71341095|220377.92954883|121.10692442|14148|1 +638774.64252404|220382.60814983|121.61943369|14149|1 +638769.58171742|220387.27253834|121.79511634|14150|1 +638764.46689565|220391.99178916|122.31819244|14151|1 +638759.35992657|220396.69979782|122.56708937|14152|1 +638754.35490708|220401.30978874|122.54011422|14153|1 +638749.25388713|220406.00940467|122.58991593|14154|1 +638744.15209947|220410.71109578|122.73390743|14155|1 +638739.09227714|220415.38051922|123.31763111|14156|1 +638733.99719611|220420.07165935|123.16264491|14157|1 +638728.94856046|220424.72147264|123.10981082|14158|1 +638723.89738342|220429.37745652|123.31960308|14159|1 +638718.80799808|220434.0678289|123.47215222|14160|1 +638713.75843326|220438.72224089|123.6762518|14161|1 +638708.70921508|220443.37761061|123.96805782|14162|1 +638703.61392065|220448.07462134|124.20274164|14163|1 +638698.56735686|220452.72599499|124.3889074|14164|1 +638693.52181123|220457.37533904|124.50030547|14165|1 +638688.42932567|220462.06758123|124.58615156|14166|1 +638678.34030639|220471.35798397|124.37279672|14167|1 +638673.29534938|220476.00213771|124.16641821|14168|1 +638668.20196291|220480.68929591|123.84746029|14169|1 +638663.15476917|220485.33232424|123.42288071|14170|1 +638658.10664455|220489.97657876|123.02348103|14171|1 +638653.05916749|220494.62333666|122.83677578|14172|1 +638648.01158022|220499.27083511|122.69403072|14173|1 +638642.96483715|220503.91928799|122.67022747|14174|1 +638637.92235862|220508.56910149|123.00910049|14175|1 +638632.87965487|220513.21801719|123.27317792|14176|1 +638627.83697018|220517.86637597|123.49995523|14177|1 +638622.79265066|220522.51432841|123.59570771|14178|1 +638617.7468478|220527.16209957|123.58541995|14179|1 +638612.70087749|220531.81011454|123.58158762|14180|1 +638607.70430383|220536.41412688|123.68305139|14181|1 +638602.66150421|220541.06168088|123.84821374|14182|1 +638597.62253864|220545.70806948|124.17603624|14183|1 +638592.6317434|220550.31011747|124.50878869|14184|1 +638587.58980341|220554.95600881|124.6931685|14185|1 +638582.59488352|220559.55604087|124.87600422|14186|1 +638577.54747702|220564.20193221|124.88573388|14187|1 +638572.54689453|220568.80453702|124.88746401|14188|1 +638567.54886739|220573.40623507|124.98910452|14189|1 +638562.49448778|220578.05609127|124.83062085|14190|1 +638557.49268872|220582.66007695|124.85115917|14191|1 +638552.54769066|220587.21576274|125.1502578|14192|1 +638547.50962823|220591.85803932|125.50418109|14193|1 +638542.55755469|220596.41741366|125.60939348|14194|1 +638537.55358984|220601.02320258|125.61726278|14195|1 +638532.55747144|220605.62485086|125.83739862|14196|1 +638527.62039069|220610.17612321|126.33539713|14197|1 +638522.63089733|220614.77392666|126.71139354|14198|1 +638517.68593242|220619.32962712|127.0154221|14199|1 +638512.75435083|220623.87727136|127.61250313|14200|1 +638507.80243886|220628.43717706|127.76619638|14201|1 +638502.84600764|220633.00006367|127.83854559|14202|1 +638497.89591975|220637.55918495|128.05417937|14203|1 +638492.95112652|220642.11506641|128.38187166|14204|1 +638488.00381481|220646.67261624|128.66563165|14205|1 +638483.05210323|220651.23312823|128.874317|14206|1 +638478.15068979|220655.74811356|129.14092452|14207|1 +638473.20136997|220660.30731603|129.41140157|14208|1 +638468.30223836|220664.8209939|129.73330815|14209|1 +638463.34974547|220669.38256116|129.96581535|14210|1 +638458.40113063|220673.94163876|130.2729042|14211|1 +638453.53835283|220678.41943777|130.43305288|14212|1 +638448.58180508|220682.98426192|130.63355267|14213|1 +638443.66820112|220687.50860426|130.77276306|14214|1 +638438.75767606|220692.03100859|130.97387677|14215|1 +638433.83030753|220696.56547651|130.9378975|14216|1 +638428.93680872|220701.06608389|130.72182653|14217|1 +638423.9717214|220705.63811341|130.87742665|14218|1 +638419.14905507|220710.07887036|131.03471038|14219|1 +638414.21055457|220714.6225653|130.92874455|14220|1 +638409.31804619|220719.12385947|130.82288103|14221|1 +638404.43715771|220723.62632419|131.53149036|14222|1 +638399.42031759|220728.21905088|129.83804615|14223|1 +638394.77220303|220732.54206657|132.95340641|14224|1 +638389.58077963|220737.26465504|129.13212504|14225|1 +638384.71874135|220741.73671974|128.94942885|14226|1 +638379.80500757|220746.25616063|128.74777564|14227|1 +638374.96895754|220750.70959493|128.93070437|14228|1 +638370.22601382|220755.1017981|130.79780344|14229|1 +638365.33653252|220759.58729746|129.80389003|14230|1 +638361.66208862|220763.17310526|143.9023879|14231|1 +638356.87871272|220767.58443122|144.52697428|14232|1 +638356.20218106|220768.09642629|136.88027225|14233|2 +638351.51619838|220772.43547658|138.70407155|14234|1 +638350.65801115|220773.0870139|129.14601259|14235|2 +638340.98817714|220781.98761942|129.22861236|14236|1 +638336.14617263|220786.44752978|129.48053237|14237|1 +638331.29768065|220790.90522756|129.17175991|14238|1 +638327.72934632|220794.37735591|142.18275919|14239|1 +638326.45706788|220795.35727475|128.97398554|14240|2 +638321.91358743|220799.58025067|131.84592761|14241|1 +638318.90970395|220802.61047987|150.22593085|14242|1 +638311.93555227|220808.71540548|128.5376392|14243|1 +638309.23075607|220811.5072869|149.47503564|14244|1 +638308.09782271|220812.3886833|138.31715486|14245|2 +638304.39575283|220815.95286459|149.18847582|14246|1 +638302.73671329|220817.246581|133.05658171|14247|2 +638302.19942009|220817.66556138|127.83215527|14248|3 +638299.38166274|220820.53207599|146.74896403|14249|1 +638294.1917132|220825.2568726|143.17833763|14250|1 +638293.39549964|220825.88053922|135.62713693|14251|2 +638292.82070955|220826.33076691|130.17589597|14252|3 +638288.54376585|220830.3361605|134.97363132|14253|1 +638287.71416759|220830.98736668|127.20123438|14254|2 +638282.86328641|220835.44419675|126.68514392|14255|1 +638278.96702302|220839.14908434|134.9337267|14256|1 +638278.01821136|220839.89693682|126.25504838|14257|2 +638275.57605325|220842.45238744|147.57763139|14258|1 +638270.33346733|220847.21058429|142.97391249|14259|1 +638268.30130525|220848.81857396|124.81441716|14260|2 +638266.12337243|220851.15831165|148.04262719|14261|1 +638261.92827066|220851.52254769|140.47812495|14262|1 +638260.24441533|220852.8572649|125.67725924|14263|2 +638267.49626331|220846.49030171|147.50560773|14264|1 +638272.18126204|220842.15803103|146.77569734|14265|1 +638269.6729207|220844.13876222|124.21381076|14266|2 +638276.26410594|220838.29392846|140.13059198|14267|1 +638274.67688082|220839.54480643|125.68398442|14268|2 +638279.78920804|220834.8730088|128.65514855|14269|1 +638284.4295093|220830.56643069|126.8683145|14270|1 +638289.73688548|220825.73708691|131.35447755|14271|1 +638289.3345526|220826.05218641|127.55752033|14272|2 +638296.16123138|220820.0368324|146.64694215|14273|1 +638294.53699343|220821.30610747|131.12724446|14274|2 +638294.15184383|220821.60708601|127.44711754|14275|3 +638299.68507215|220816.60405299|134.28265816|14276|1 +638299.01386642|220817.12738796|127.7883067|14277|2 +638306.26051434|220810.79317232|151.52750982|14278|1 +638309.30799174|220807.71991834|133.74279236|14279|1 +638315.84724351|220801.93715581|150.63223244|14280|1 +638325.61025482|220792.95324277|152.09266715|14281|1 +638328.40833429|220790.05865266|130.81509544|14282|1 +638333.14958362|220785.6599345|129.08904851|14283|1 +638338.01640273|220781.1725432|129.20689272|14284|1 +638343.3465102|220776.32506436|133.88655132|14285|1 +638348.79654895|220771.39669271|140.58705805|14286|1 +638352.69604178|220767.63684806|129.52392516|14287|1 +638358.96372111|220762.08645275|145.19524181|14288|1 +638362.6110594|220758.5128427|130.98354131|14289|1 +638367.41499555|220754.05855072|129.40673208|14290|1 +638372.26103218|220749.58086614|128.88010271|14291|1 +638377.18113512|220745.03963656|128.67574268|14292|1 +638382.11605046|220740.48767187|128.67004999|14293|1 +638387.07788778|220735.91618166|129.02483835|14294|1 +638391.98472692|220731.39456663|129.32349978|14295|1 +638396.99013611|220726.78308915|129.69040836|14296|1 +638402.09310176|220722.11044562|132.01732214|14297|1 +638406.9538113|220717.60533012|130.54230225|14298|1 +638411.89233946|220713.05331062|130.75940571|14299|1 +638416.82869101|220708.50329478|130.97624872|14300|1 +638421.82842483|220703.8885653|130.7645961|14301|1 +638426.74648431|220699.35230182|130.7693028|14302|1 +638431.71843163|220694.76801675|130.88673773|14303|1 +638436.67951129|220690.19174087|130.86700866|14304|1 +638441.63797818|220685.61759855|130.82845279|14305|1 +638446.63225952|220681.00799259|130.62278122|14306|1 +638451.58175344|220676.44056554|130.47804558|14307|1 +638456.5302856|220671.87402722|130.33309599|14308|1 +638461.51603899|220667.27082029|130.02752334|14309|1 +638466.45726199|220662.70925486|129.78246804|14310|1 +638471.43981332|220658.10767488|129.4330375|14311|1 +638476.37912033|220653.54721049|129.16886705|14312|1 +638481.36538883|220648.94339268|128.90032477|14313|1 +638486.35615082|220644.33680877|128.72532115|14314|1 +638491.34112422|220639.73409952|128.45050016|14315|1 +638496.32636303|220635.13133038|128.18810635|14316|1 +638501.30182589|220630.53473657|127.73224489|14317|1 +638506.30347218|220625.92206066|127.82545799|14318|1 +638511.33355488|220621.27745218|127.52835926|14319|1 +638516.30151943|220616.68540013|126.91015389|14320|1 +638521.28830744|220612.08212782|126.71005408|14321|1 +638526.31123774|220607.44165104|126.2446769|14322|1 +638531.33886728|220602.79840502|125.88558182|14323|1 +638536.35880794|220598.15932092|125.32685202|14324|1 +638541.53291267|220593.43762131|128.82695236|14325|1 +638546.39297107|220588.90240379|125.29890018|14326|1 +638551.41894151|220584.25997271|124.89039407|14327|1 +638557.00405071|220579.34485015|141.04507752|14328|1 +638556.45374664|220579.61306125|124.73186389|14329|2 +638561.49014304|220574.96551605|124.62972109|14330|1 +638566.5308282|220570.31621464|124.67768104|14331|1 +638571.61738128|220565.62415269|124.6926383|14332|1 +638576.60970186|220561.01974948|124.76168539|14333|1 +638581.6943303|220556.32910881|124.75227199|14334|1 +638591.75718146|220547.03993751|124.32532975|14335|1 +638596.7866825|220542.39576099|124.01838043|14336|1 +638601.81783373|220537.75089181|123.76780918|14337|1 +638606.84892814|220533.10580286|123.49865298|14338|1 +638611.93196004|220528.41594213|123.44111219|14339|1 +638616.96829405|220523.76997265|123.44111219|14340|1 +638622.05181622|220519.0804068|123.43425678|14341|1 +638627.08596256|220514.43435733|123.29097222|14342|1 +638632.16764169|220509.74421656|123.1285725|14343|1 +638637.20012271|220505.09706117|122.80450791|14344|1 +638642.28205056|220500.40588215|122.58656729|14345|1 +638647.31847935|220495.75912613|122.537919|14346|1 +638652.35670038|220491.11392368|122.70817872|14347|1 +638657.44281375|220486.42641201|123.00367755|14348|1 +638662.5285503|220481.74044515|123.38082738|14349|1 +638667.56587052|220477.09956687|123.78930559|14350|1 +638672.64955596|220472.41495507|124.12963898|14351|1 +638677.73228038|220467.72894921|124.31413972|14352|1 +638682.76716813|220463.08502421|124.36087184|14353|1 +638692.93249499|220453.70803512|124.38169852|14354|1 +638698.01614379|220449.0165415|124.24900868|14355|1 +638703.10100731|220444.32256445|124.02301272|14356|1 +638708.1394952|220439.67086908|123.76491633|14357|1 +638713.22682592|220434.97381029|123.48342597|14358|1 +638718.36189746|220430.23423622|123.30387378|14359|1 +638723.39474568|220425.58857953|123.10268566|14360|1 +638728.43620367|220420.93526965|122.9206964|14361|1 +638733.52279495|220416.24395232|122.98441357|14362|1 +638738.56653147|220411.58800576|122.76547766|14363|1 +638743.65963953|220406.88603671|122.51139964|14364|1 +638748.70386671|220402.23120477|122.39921091|14365|1 +638753.7918528|220397.53963806|122.53315649|14366|1 +638758.84237647|220392.87572456|122.19670194|14367|1 +638763.9308367|220388.18428685|122.36891503|14368|1 +638768.99133934|220383.50661806|121.72086026|14369|1 +638774.04517102|220378.84049813|121.44150931|14370|1 +638779.10452609|220374.167101|121.0126044|14371|1 +638784.16710583|220369.4900992|120.54031601|14372|1 +638789.23203214|220364.81085043|120.06211168|14373|1 +638794.3485071|220360.08331878|119.53139883|14374|1 +638799.3733281|220355.43963416|118.95694902|14375|1 +638804.45203914|220350.74468994|118.27389167|14376|1 +638809.58278511|220346.00120409|117.55126457|14377|1 +638814.13768444|220341.98536418|130.28488489|14378|1 +638819.07296499|220337.47518586|133.1947503|14379|1 +638824.22828393|220332.67632575|130.23488784|14380|1 +638829.31135243|220327.95642939|128.11998944|14381|1 +638829.84070677|220327.27491382|114.88590565|14382|2 +638834.24919196|220323.44106865|130.83645232|14383|1 +638839.29249472|220318.79027887|130.9400276|14384|1 +638844.54358116|220313.86260207|125.26643698|14385|1 +638845.01161268|220313.2759052|114.64943589|14386|2 +638849.45718007|220309.37422048|128.43187801|14387|1 +638850.09263904|220308.58398348|114.45019184|14388|2 +638854.42423797|220304.80266984|129.27973493|14389|1 +638859.5957452|220299.99478954|126.85438044|14390|1 +638865.16524454|220294.69077719|115.58961294|14391|1 +638870.17503303|220290.07276654|115.95339612|14392|1 +638875.19147101|220285.44689882|116.19886069|14393|1 +638880.20639246|220280.82307043|116.48801572|14394|1 +638885.17916281|220276.23674179|116.68457155|14395|1 +638890.20972837|220271.59485658|116.72472732|14396|1 +638895.24714722|220266.94529016|116.67166999|14397|1 +638900.24085408|220262.33539466|116.57564775|14398|1 +638905.28300233|220257.681209|116.50423801|14399|1 +638910.22782561|220253.11747496|116.48313228|14400|1 +638915.27367013|220248.45989082|116.41196439|14401|1 +638920.2965992|220243.81815908|115.98020384|14402|1 +638925.26943422|220239.22369335|115.62300632|14403|1 +638930.3352297|220234.5343631|114.63806912|14404|1 +638935.291005|220229.96063274|114.62285141|14405|1 +638940.29810888|220225.33932378|114.58938362|14406|1 +638945.25860114|220220.76106187|114.5614969|14407|1 +638950.21838087|220216.1840056|114.57073356|14408|1 +638955.20207078|220211.58054888|114.28164365|14409|1 +638960.17730705|220206.9870666|114.1415682|14410|1 +638965.22352492|220202.32426479|113.73560147|14411|1 +638970.13783978|220197.79028519|113.82396835|14412|1 +638975.11201033|220193.19933352|113.78923551|14413|1 +638980.0451431|220188.64528156|113.69083202|14414|1 +638985.02279506|220184.05130033|113.66825661|14415|1 +638989.96114237|220179.49235651|113.56321165|14416|1 +638994.93604893|220174.90217444|113.62725438|14417|1 +638999.8796548|220170.3382852|113.51561446|14418|1 +639004.81175602|220165.78735374|113.56491387|14419|1 +639009.75039165|220161.22967585|113.56437437|14420|1 +639014.72359287|220156.63487972|113.20423749|14421|1 +639019.69951285|220152.03766985|112.85024909|14422|1 +639024.62354137|220147.48934355|112.56792157|14423|1 +639029.5897261|220142.90364157|112.38708574|14424|1 +639034.57294766|220138.30006749|112.05760751|14425|1 +639039.53738784|220133.70978323|111.45288043|14426|1 +639044.46415592|220129.16046872|111.27495605|14427|1 +639043.69765461|220126.31777084|111.12822982|14428|1 +639038.71013846|220130.92081055|111.81034769|14429|1 +639033.69088022|220135.54365564|111.84921982|14430|1 +639028.68770706|220140.15716935|112.26244193|14431|1 +639023.6529198|220144.79769133|112.53067726|14432|1 +639018.61959104|220149.43714303|112.81772078|14433|1 +639013.64887066|220154.01710745|112.98343192|14434|1 +639008.60850972|220158.66522397|113.419462|14435|1 +639003.60243778|220163.27654846|113.50241524|14436|1 +638998.60741252|220167.87623646|113.48623945|14437|1 +638993.61776576|220172.47041918|113.43285655|14438|1 +638988.61629897|220177.07795032|113.54692424|14439|1 +638983.62902058|220181.67031043|113.51833988|14440|1 +638978.63835609|220186.2667911|113.55797475|14441|1 +638973.59288233|220190.91540421|113.70788218|14442|1 +638968.61505309|220195.49850302|113.64206281|14443|1 +638963.58854812|220200.12689692|113.60599982|14444|1 +638958.60477426|220204.71835405|113.67673983|14445|1 +638953.53280562|220209.4002331|114.32417137|14446|1 +638948.49963472|220214.03924306|114.48737104|14447|1 +638943.52761711|220218.61971089|114.50230969|14448|1 +638938.50984487|220223.24224796|114.51032782|14449|1 +638933.49441792|220227.86252877|114.51223469|14450|1 +638928.4833686|220232.4782281|114.47690654|14451|1 +638923.4263185|220237.14699897|115.16926567|14452|1 +638918.36653148|220241.8197554|115.96146076|14453|1 +638913.33333639|220246.46271039|116.3931469|14454|1 +638908.27871587|220251.11975423|116.43937673|14455|1 +638903.28486723|220255.71813632|116.30515209|14456|1 +638898.22413156|220260.383192|116.5136142|14457|1 +638893.22510866|220264.98844237|116.52266483|14458|1 +638888.1744386|220269.64267049|116.62573782|14459|1 +638883.13689415|220274.28178867|116.5235578|14460|1 +638878.10694842|220278.9121672|116.30321732|14461|1 +638873.07760702|220283.54208187|116.08924856|14462|1 +638868.05296667|220288.16656768|115.80064234|14463|1 +638863.02900045|220292.79043212|115.51214775|14464|1 +638857.32182361|220298.23826915|128.47408017|14465|1 +638852.30942867|220302.85386143|128.34974332|14466|1 +638852.95618598|220302.05444192|114.4819016|14467|2 +638847.24939306|220307.51365893|128.24580527|14468|1 +638847.88488135|220306.72214253|114.20778755|14469|2 +638842.16619867|220312.21881637|129.78008678|14470|1 +638837.25507257|220316.70798502|127.39916688|14471|1 +638832.1113958|220321.4754061|129.37865002|14472|1 +638827.13628298|220326.02787216|127.29261503|14473|1 +638827.52227014|220325.53006364|117.60078723|14474|2 +638822.01490379|220330.78733544|130.13174044|14475|1 +638822.58435146|220330.04555682|115.33035383|14476|2 +638816.9828741|220335.41383489|129.51799993|14477|1 +638811.86422898|220340.1554593|131.31260096|14478|1 +638812.38800889|220339.45794167|116.65763361|14479|2 +638806.959724|220344.63129357|128.43817531|14480|1 +638802.24329185|220348.82619814|118.22127153|14481|1 +638797.15351438|220353.52557942|118.94885648|14482|1 +638792.07275989|220358.21372306|119.47717877|14483|1 +638786.9909671|220362.90456413|120.12448939|14484|1 +638781.96617921|220367.53934791|120.53183279|14485|1 +638776.84847767|220372.25949332|120.92089819|14486|1 +638771.78077711|220376.93333135|121.29464357|14487|1 +638766.73184851|220381.60902278|122.97643265|14488|1 +638761.64627873|220386.28319568|122.24919186|14489|1 +638756.59552899|220390.93345829|122.08060647|14490|1 +638751.53558678|220395.59932758|122.39939695|14491|1 +638746.4391776|220400.2910023|122.18534447|14492|1 +638741.38407514|220404.95022226|122.35488795|14493|1 +638736.33109386|220409.60648258|122.45597965|14494|1 +638731.23025361|220414.30801352|122.63664806|14495|1 +638726.17881659|220418.96312947|122.75709676|14496|1 +638721.12856283|220423.61669881|122.84654264|14497|1 +638716.02943212|220428.31831274|123.14088805|14498|1 +638710.93947845|220433.01056034|123.37345107|14499|1 +638705.89031974|220437.66523045|123.60752097|14500|1 +638700.79450081|220442.36316321|123.85941308|14501|1 +638695.74742423|220447.01564065|124.07532591|14502|1 +638690.70144795|220451.66610326|124.22270325|14503|1 +638685.60874649|220456.35815448|124.2695284|14504|1 +638680.51641828|220461.04922598|124.27307237|14505|1 +638675.47170664|220465.69459561|124.15260507|14506|1 +638670.37902449|220470.38270725|123.93192042|14507|1 +638665.33306024|220475.02640086|123.61824592|14508|1 +638660.28604036|220479.67024591|123.24852821|14509|1 +638655.19042664|220484.35869479|122.86644844|14510|1 +638650.1426486|220489.00543752|122.64723348|14511|1 +638645.09420168|220493.6527052|122.42198166|14512|1 +638640.0006714|220498.34582694|122.49095433|14513|1 +638634.95564386|220502.99525027|122.62870434|14514|1 +638629.91414687|220507.64498485|123.01038413|14515|1 +638624.87021284|220512.29367421|123.1672865|14516|1 +638619.826151|220516.94211796|123.29939032|14517|1 +638614.7800991|220521.59029482|123.28796774|14518|1 +638609.68480389|220526.28277574|123.20278207|14519|1 +638604.68723752|220530.88743994|123.27200589|14520|1 +638599.64644908|220535.53497103|123.54863142|14521|1 +638594.60634586|220540.18205359|123.83795388|14522|1 +638589.56876748|220544.82808806|124.21493627|14523|1 +638584.52649718|220549.4754317|124.38593083|14524|1 +638579.4820715|220554.12344198|124.4946779|14525|1 +638574.48302945|220558.72847898|124.54555861|14526|1 +638569.43050636|220563.38009197|124.41099911|14527|1 +638564.3821047|220568.03027795|124.43908118|14528|1 +638559.33318811|220572.68093998|124.46739579|14529|1 +638554.72931429|220577.11391327|137.66761181|14530|1 +638554.49098786|220577.230616|130.62274401|14531|2 +638554.27864877|220577.33459333|124.34605411|14532|3 +638549.71553034|220581.72009191|136.86871014|14533|1 +638549.28382048|220581.93865453|124.59722998|14534|2 +638544.29946982|220586.53725189|125.1356168|14535|1 +638539.23900203|220591.19472227|124.90234685|14536|1 +638534.2555183|220595.79269329|125.45326316|14537|1 +638529.26309818|220600.39543082|125.76687255|14538|1 +638524.28117004|220604.99214192|126.33015093|14539|1 +638519.28611203|220609.59629591|126.57501089|14540|1 +638514.28942937|220614.20148903|126.78864479|14541|1 +638509.30818418|220618.79746422|127.34552354|14542|1 +638504.36519647|220623.35511534|127.69288908|14543|1 +638499.36890775|220627.96020191|127.92508002|14544|1 +638494.41468729|220632.5250022|128.05367708|14545|1 +638489.47033213|220637.08370992|128.38794572|14546|1 +638484.52742641|220641.64152944|128.75314276|14547|1 +638479.56920154|220646.20935916|128.83742616|14548|1 +638474.57918922|220650.81091328|129.22508699|14549|1 +638469.67470638|220655.33114243|129.4419207|14550|1 +638464.72432275|220659.89427593|129.70019382|14551|1 +638459.8211768|220664.41388899|129.95990872|14552|1 +638454.8719115|220668.97652192|130.25503549|14553|1 +638449.96296323|220673.50037344|130.43919206|14554|1 +638445.04960675|220678.02745905|130.56686824|14555|1 +638440.09626911|220682.59336646|130.8300341|14556|1 +638435.22016766|220687.08420329|130.82728077|14557|1 +638430.28850461|220691.62485943|130.72957491|14558|1 +638425.36710094|220696.15859753|130.8059425|14559|1 +638420.44483504|220700.69321238|130.8881981|14560|1 +638415.51680533|220705.23222002|130.90785276|14561|1 +638410.71241212|220709.66319406|131.33280441|14562|1 +638405.81604727|220714.18916147|132.4590542|14563|1 +638400.806187|220718.76969359|130.15680873|14564|1 +638395.83220792|220723.34366079|129.67110717|14565|1 +638390.91918631|220727.86444126|129.3906214|14566|1 +638385.99434377|220732.39438301|128.99156589|14567|1 +638381.06972344|220736.92465634|128.62949425|14568|1 +638376.21733782|220741.39314919|128.5962776|14569|1 +638371.31305452|220745.90910457|128.53798337|14570|1 +638366.48313648|220750.36140136|128.81432985|14571|1 +638361.68891864|220754.78703558|129.51868826|14572|1 +638357.25014707|220758.94451321|134.29780146|14573|1 +638356.80792752|220759.27812197|129.22806356|14574|2 +638352.19871631|220763.56393451|132.03654891|14575|1 +638347.14392706|220768.17936939|129.2900785|14576|1 +638342.22071242|220772.71143519|129.14163145|14577|1 +638337.49038274|220777.08135035|130.06431186|14578|1 +638332.79706612|220781.42283566|131.37682042|14579|1 +638328.06435208|220785.79435937|132.25979155|14580|1 +638324.33753002|220789.39824487|144.07489865|14581|1 +638318.65336725|220794.49522081|134.57425025|14582|1 +638314.84868339|220798.14792393|144.81784083|14583|1 +638314.2520439|220798.60990802|138.78998276|14584|2 +638313.21283319|220799.41457955|128.29085377|14585|3 +638308.7811953|220803.55349387|132.25204317|14586|1 +638304.04768226|220807.92611257|133.16093834|14587|1 +638303.52500516|220808.33281078|128.01597698|14588|2 +638299.34440037|220812.26828653|133.89296954|14589|1 +638298.72146456|220812.75412347|127.83813632|14590|2 +638296.06591657|220815.49675391|148.30439778|14591|1 +638293.87520235|220817.20919088|127.27527652|14592|2 +638291.01267404|220820.11069809|145.55555542|14593|1 +638289.11474358|220821.59754069|127.56037597|14594|2 +638284.19682334|220826.11631236|126.83749772|14595|1 +638282.03310591|220828.45578496|150.74554668|14596|1 +638277.27145892|220832.84173927|150.79308806|14597|1 +638271.7358068|220837.83935949|143.86499476|14598|1 +638270.0115456|220839.20134578|128.28188686|14599|2 +638266.35399464|220842.71787215|138.49232591|14600|1 +638264.68475546|220844.03895281|123.58124345|14601|2 +638260.15735757|220848.23833598|125.6398568|14602|1 +638257.58156139|220850.88706559|144.7150562|14603|1 +638253.53936809|220851.21190371|142.59241873|14604|1 +638258.35633836|220846.77178489|142.94451887|14605|1 +638256.76274875|220848.03547979|128.95429368|14606|2 +638263.63110331|220841.96974724|147.3912982|14607|1 +638268.52876928|220837.46111413|148.14222131|14608|1 +638272.59390143|220833.61585558|141.80243746|14609|1 +638270.77999641|220835.04598269|125.31370861|14610|2 +638278.05453609|220828.66418122|147.7264226|14611|1 +638275.68434367|220830.52910053|125.92185875|14612|2 +638282.57519037|220824.45299284|145.06358446|14613|1 +638282.20542944|220824.74332214|141.62058773|14614|2 +638288.17645042|220819.38787488|152.08976499|14615|1 +638290.35886382|220817.00509423|127.14053099|14616|1 +638297.58184386|220810.67498341|149.83627943|14617|1 +638296.93884133|220811.17651229|143.62089754|14618|2 +638301.94592483|220806.58532253|145.61895633|14619|1 +638300.12057063|220808.00575928|127.7495462|14620|2 +638305.54254305|220803.08317741|133.22585544|14621|1 +638305.02431305|220803.48547761|128.08639143|14622|2 +638312.12862204|220797.26158431|150.56651539|14623|1 +638316.75145859|220792.96353774|148.40166646|14624|1 +638314.77802971|220794.48781606|128.30609939|14625|2 +638319.67732908|220789.97225064|128.68503515|14626|1 +638325.44763375|220784.78797142|138.20971934|14627|1 +638324.53436171|220785.48963324|128.65402303|14628|2 +638330.11944323|220780.44952148|136.36785599|14629|1 +638334.59439186|220776.25345299|131.86023374|14630|1 +638339.33366402|220771.86215851|130.6546491|14631|1 +638344.18515275|220767.36987223|129.61347336|14632|1 +638349.00769016|220762.91518824|129.31896052|14633|1 +638353.9124103|220758.39067229|129.42665649|14634|1 +638359.03053973|220753.70607602|132.03188872|14635|1 +638363.60215441|220749.43245102|128.31084329|14636|1 +638368.55207717|220744.86662066|128.44143093|14637|1 +638373.44672245|220740.35082748|128.51004083|14638|1 +638378.39134237|220735.7896977|128.6276804|14639|1 +638383.34574872|220731.22173885|128.89438093|14640|1 +638388.29670387|220726.65677311|129.14844965|14641|1 +638398.21969144|220717.51289308|130.02939299|14642|1 +638403.23475736|220712.90298054|131.24759084|14643|1 +638408.14059436|220708.36319374|130.38105595|14644|1 +638413.1416946|220703.75494555|130.83400596|14645|1 +638418.05186192|220699.2220942|130.71344563|14646|1 +638423.01510737|220694.64171152|130.68673093|14647|1 +638427.98027286|220690.06028936|130.70971562|14648|1 +638432.9513225|220685.47508752|130.8447123|14649|1 +638437.91205331|220680.89747403|130.84878648|14650|1 +638442.85391297|220676.33323803|130.57852336|14651|1 +638447.80402924|220671.76349164|130.45137738|14652|1 +638452.79714131|220667.15323234|130.26323965|14653|1 +638457.7403079|220662.58931907|130.04227595|14654|1 +638462.72791155|220657.98409982|129.77296162|14655|1 +638467.6700057|220653.42151854|129.55162585|14656|1 +638472.65233294|220648.82006336|129.2073392|14657|1 +638477.63911973|220644.2157827|128.95032182|14658|1 +638482.58357157|220639.65212321|128.80331654|14659|1 +638487.5622253|220635.05332817|128.40889332|14660|1 +638492.54083523|220630.4545709|128.01440498|14661|1 +638497.53253256|220625.8476884|127.88816127|14662|1 +638502.55562323|220621.20707758|127.43388111|14663|1 +638507.54065281|220616.60451562|127.18287268|14664|1 +638512.51841225|220612.00636862|126.77578043|14665|1 +638517.54626321|220607.36283998|126.42161529|14666|1 +638522.48336653|220602.80448775|126.17360203|14667|1 +638527.51959608|220598.15626504|126.02555496|14668|1 +638532.53968488|220593.51706757|125.47812681|14669|1 +638537.51980884|220588.9173895|125.11459478|14670|1 +638542.54903901|220584.27297597|124.78587001|14671|1 +638547.58018126|220579.62753303|124.5072818|14672|1 +638552.77106178|220574.90396512|128.94416404|14673|1 +638552.61518446|220574.98018334|124.341273|14674|2 +638558.05539689|220570.14214677|136.64841617|14675|1 +638557.75046956|220570.28572228|127.26713747|14676|2 +638562.64502588|220565.72629838|124.267975|14677|1 +638567.73131113|220561.03396699|124.25659893|14678|1 +638572.77272279|220556.38466862|124.35994166|14679|1 +638577.80740034|220551.73837426|124.24482288|14680|1 +638582.84302416|220547.09186013|124.17361778|14681|1 +638587.87745744|220542.44589138|124.06510326|14682|1 +638592.90687792|220537.80143833|123.7443222|14683|1 +638597.98269951|220533.11311475|123.3474619|14684|1 +638603.01447855|220528.46741375|123.08957946|14685|1 +638608.05064441|220523.82078649|123.04432631|14686|1 +638613.13583885|220519.13034776|123.09208163|14687|1 +638618.17298631|220514.48410809|123.13477679|14688|1 +638623.20699074|220509.83765354|122.9651682|14689|1 +638628.28965723|220505.14718492|122.85142607|14690|1 +638633.32242558|220500.49968679|122.53228213|14691|1 +638638.35761283|220495.85225239|122.36953824|14692|1 +638643.44218538|220491.16160024|122.3630177|14693|1 +638648.47995047|220486.51555394|122.45696564|14694|1 +638653.51835084|220481.8709404|122.68857057|14695|1 +638658.60439402|220477.18435745|123.05176773|14696|1 +638663.68956127|220472.49886057|123.43410795|14697|1 +638668.72602277|220467.85714865|123.74143864|14698|1 +638673.76163167|220463.21448766|123.93019029|14699|1 +638678.84444396|220458.52770276|124.07603284|14700|1 +638683.87970244|220453.88281245|124.09025526|14701|1 +638688.96298086|220449.1923209|124.01182268|14702|1 +638694.04687061|220444.50081653|123.90254541|14703|1 +638699.083969|220439.85196|123.76131654|14704|1 +638704.17031223|220435.15573509|123.48406779|14705|1 +638709.20953097|220430.50411603|123.28709338|14706|1 +638714.29081788|220425.81173797|122.95412699|14707|1 +638719.33254112|220421.15672077|122.68268255|14708|1 +638724.42171412|220416.45956547|122.51938986|14709|1 +638729.46460566|220411.80467312|122.32969874|14710|1 +638734.55413092|220407.10876751|122.27337648|14711|1 +638739.64511139|220402.41088919|122.17378236|14712|1 +638744.68960771|220397.75563484|122.05992862|14713|1 +638749.77586727|220393.06706157|122.29837966|14714|1 +638754.82595301|220388.40373851|121.98521675|14715|1 +638759.87428725|220383.74423364|121.82219382|14716|1 +638764.97052323|220379.04118567|121.6995778|14717|1 +638770.02848902|220374.36851758|121.24371634|14718|1 +638775.13513623|220369.65159585|120.82855945|14719|1 +638780.18393852|220364.99442963|120.85411143|14720|1 +638785.24871608|220360.31486952|120.35557343|14721|1 +638790.32388628|220355.62180609|119.58900473|14722|1 +638795.44716165|220350.88566819|118.90739846|14723|1 +638800.30492215|220346.4708596|123.46102729|14724|1 +638800.48397566|220346.22645314|118.0383707|14725|2 +638805.04511964|220342.22994302|132.49114533|14726|1 +638810.129518|220337.54068639|132.56443403|14727|1 +638815.19210684|220332.84291598|130.68409853|14728|1 +638820.25941972|220328.15949369|130.08064578|14729|1 +638820.83227754|220327.41358302|115.19192479|14730|2 +638825.26889884|220323.55166035|130.99934503|14731|1 +638830.36983847|220318.80962432|128.50901764|14732|1 +638830.94447574|220318.07582536|114.55919936|14733|2 +638835.53842905|220314.0036415|125.76181239|14734|1 +638836.02298187|220313.39041393|114.37638224|14735|2 +638840.36058469|220309.62041109|130.02477931|14736|1 +638845.3862165|220304.99597437|130.61973954|14737|1 +638850.48306853|220300.28346512|129.68159027|14738|1 +638851.19507227|220299.40389147|114.41760772|14739|2 +638855.56322297|220295.57806737|128.17828368|14740|1 +638861.20298232|220290.19264776|115.44715624|14741|1 +638866.27913532|220285.51351045|115.48420521|14742|1 +638871.23757866|220280.94934366|115.9658884|14743|1 +638876.30421337|220276.28217879|116.22137099|14744|1 +638881.33149807|220271.64919052|116.33471314|14745|1 +638886.30919268|220267.06263892|116.49861974|14746|1 +638891.39447765|220262.37429583|116.48086265|14747|1 +638896.38752637|220257.77041157|116.42698676|14748|1 +638901.43715921|220253.11275059|116.26078262|14749|1 +638906.46861569|220248.47667044|116.42463341|14750|1 +638911.48418043|220243.84804362|116.09721088|14751|1 +638916.50394956|220239.21518474|115.74499912|14752|1 +638921.62513745|220234.47760156|114.62198635|14753|1 +638926.63389844|220229.85872104|114.53147076|14754|1 +638931.64005496|220225.24324268|114.50939765|14755|1 +638936.60084776|220220.66937697|114.47437646|14756|1 +638941.61044682|220216.05082375|114.45852623|14757|1 +638946.64179438|220211.40823544|114.16935261|14758|1 +638951.66854968|220206.77133798|113.9797731|14759|1 +638956.66685005|220202.15728716|113.55950954|14760|1 +638961.63364514|220197.57889754|113.59256805|14761|1 +638966.60818365|220192.99228534|113.55098911|14762|1 +638971.59079117|220188.39715|113.43484713|14763|1 +638976.55735083|220183.82016088|113.54826369|14764|1 +638981.54653434|220179.2186048|113.40716505|14765|1 +638986.51919651|220174.63563156|113.49556913|14766|1 +638991.50953095|220170.03365543|113.39782606|14767|1 +638996.43281587|220165.49705801|113.54609638|14768|1 +639001.38602215|220160.92817543|113.37168807|14769|1 +639006.32990415|220156.36987595|113.33343917|14770|1 +639011.29843543|220151.78524217|113.04714909|14771|1 +639016.3025776|220147.17036972|112.93667189|14772|1 +639021.23563821|220142.61729665|112.57337241|14773|1 +639026.20585846|220138.03228765|112.36731016|14774|1 +639031.18258395|220133.44074333|112.1240408|14775|1 +639035.82892988|220129.19679984|114.83575047|14776|1 +639041.06796709|220124.31739515|111.43323507|14777|1 +639046.0647482|220119.70583765|111.08453938|14778|1 +639045.05758383|220117.64883484|111.04207677|14779|1 +639040.01565897|220122.29139765|111.22451251|14780|1 +639034.60617026|220127.32109506|114.74590461|14781|1 +639029.8413544|220131.66762847|112.12579884|14782|1 +639024.79992751|220136.31117173|112.40824728|14783|1 +639019.71452281|220140.9950051|112.67597101|14784|1 +639014.67836745|220145.63387098|112.97141403|14785|1 +639009.61763453|220150.29200291|113.03546606|14786|1 +639004.55947184|220154.94776986|113.09985296|14787|1 +638999.48929109|220159.61704072|113.33193228|14788|1 +638994.39181629|220164.30835868|113.35159623|14789|1 +638989.40266162|220168.89832954|113.26387118|14790|1 +638984.30047519|220173.59561187|113.3959285|14791|1 +638979.26533293|220178.22827645|113.33159742|14792|1 +638974.23021859|220182.86127115|113.29227881|14793|1 +638969.14403386|220187.54219149|113.31383102|14794|1 +638964.05332835|220192.22854132|113.42275482|14795|1 +638958.78512568|220197.12201924|116.53258983|14796|1 +638953.94030625|220201.53573344|113.46906837|14797|1 +638948.85024741|220206.22171865|113.66626603|14798|1 +638943.74934982|220210.92019023|114.05033638|14799|1 +638938.65322495|220215.61390797|114.41005467|14800|1 +638933.62926456|220220.23673503|114.4662188|14801|1 +638928.51652857|220224.94014317|114.44085286|14802|1 +638923.49860018|220229.55696118|114.46636763|14803|1 +638918.38630228|220234.26069844|114.49162195|14804|1 +638913.25102151|220239.00225535|115.66205518|14805|1 +638908.21575787|220243.64073816|116.08030025|14806|1 +638903.09820455|220248.35240456|116.31864897|14807|1 +638898.05190239|220252.99337143|116.20873918|14808|1 +638892.99753598|220257.64411962|116.26087564|14809|1 +638887.89618537|220262.33833199|116.32629503|14810|1 +638882.85333926|220266.97638779|116.23584456|14811|1 +638877.81013216|220271.61522815|116.17673177|14812|1 +638872.72554724|220276.29074604|116.01907596|14813|1 +638867.69648878|220280.91328842|115.73617173|14814|1 +638862.61887506|220285.58093734|115.47946131|14815|1 +638856.9910578|220290.93390298|127.49773781|14816|1 +638851.9422387|220295.58645495|128.02715771|14817|1 +638852.58966938|220294.79159701|114.37843794|14818|2 +638846.82440117|220300.29510294|128.04259866|14819|1 +638847.46223961|220299.50615153|114.19254193|14820|2 +638841.76235878|220304.96572764|128.97792019|14821|1 +638836.6779719|220309.6497118|129.41661057|14822|1 +638837.3460389|220308.81010229|113.99801388|14823|2 +638831.616463|220314.3055483|129.36936684|14824|1 +638826.59143753|220318.93219845|129.62598425|14825|1 +638821.51834217|220323.60397302|129.94102612|14826|1 +638816.42882125|220328.27966333|129.48523907|14827|1 +638816.94882385|220327.60091136|115.74965001|14828|2 +638811.32606915|220333.01075292|132.000858|14829|1 +638806.30367084|220337.61814291|131.10053906|14830|1 +638801.15387633|220342.3971471|133.93171144|14831|1 +638796.3780453|220346.66777679|125.49351195|14832|1 +638796.61201764|220346.34724911|118.27332427|14833|2 +638791.51959046|220351.04290235|119.00735535|14834|1 +638786.42476307|220355.74340216|119.92284549|14835|1 +638781.38416494|220360.39236144|120.72956995|14836|1 +638776.2988529|220365.05681797|119.7700173|14837|1 +638771.25881434|220369.70708137|120.7020646|14838|1 +638766.14682447|220374.44019837|122.77415622|14839|1 +638761.11765499|220379.0484403|121.50615666|14840|1 +638756.05384495|220383.71020846|121.72446935|14841|1 +638750.98658096|220388.37861058|122.18039592|14842|1 +638745.93555801|220393.02097112|121.87466514|14843|1 +638740.87838258|220397.67399494|121.91267219|14844|1 +638735.821933|220402.32634655|121.9509397|14845|1 +638730.76498751|220406.98033614|122.07065357|14846|1 +638725.75835975|220411.5860122|122.05499868|14847|1 +638720.70116845|220416.24241113|122.32502924|14848|1 +638715.5977443|220420.94118766|122.58123737|14849|1 +638710.59088511|220425.55070293|122.81585608|14850|1 +638705.35364778|220430.37368464|123.13773475|14851|1 +638700.49123755|220434.85038214|123.38905015|14852|1 +638695.48729629|220439.4568424|123.59887962|14853|1 +638690.38915725|220444.1497572|123.78800334|14854|1 +638685.3396105|220448.79665983|123.8909554|14855|1 +638680.33830137|220453.39723163|123.86362678|14856|1 +638675.2895867|220458.04272888|123.92313955|14857|1 +638670.24067804|220462.68367348|123.65789939|14858|1 +638665.19140358|220467.32595804|123.461604|14859|1 +638660.14097013|220471.96685495|123.09676973|14860|1 +638655.08990243|220476.60905896|122.78213714|14861|1 +638650.03784804|220481.25181128|122.44270602|14862|1 +638644.98572288|220485.89608277|122.20348293|14863|1 +638639.98338335|220490.49876541|122.25797274|14864|1 +638634.93382567|220495.14530201|122.33777268|14865|1 +638629.88486556|220499.79183684|122.45527272|14866|1 +638624.88601226|220504.39466359|122.74113491|14867|1 +638619.83753492|220509.04066005|122.85269112|14868|1 +638614.7881979|220513.68644411|122.89569323|14869|1 +638609.78497835|220518.2884659|122.8504959|14870|1 +638604.73320604|220522.9347669|122.77507709|14871|1 +638599.73404387|220527.53649969|122.96738202|14872|1 +638594.68985053|220532.18127104|123.26717827|14873|1 +638589.69715761|220536.78076165|123.71570063|14874|1 +638584.65387403|220541.42460097|124.00950654|14875|1 +638579.64953314|220546.0275464|123.95824445|14876|1 +638574.64938545|220550.62917054|124.08188366|14877|1 +638569.6446783|220555.23304893|124.03057506|14878|1 +638564.64261399|220559.83614336|124.08544624|14879|1 +638559.59180868|220564.48380062|124.11743505|14880|1 +638554.63781197|220569.04321835|124.21387587|14881|1 +638549.58752657|220573.69103287|124.28980627|14882|1 +638545.1643954|220577.97913421|139.34878697|14883|1 +638544.87659002|220578.12640087|131.24914424|14884|2 +638544.6302796|220578.25243502|124.31728372|14885|3 +638539.63846915|220582.85106791|124.71554858|14886|1 +638534.65010057|220587.44770743|125.19495283|14887|1 +638529.71174528|220591.99896094|125.72138687|14888|1 +638524.71243795|220596.6013944|125.90710614|14889|1 +638519.71411863|220601.20337182|126.12403286|14890|1 +638514.76764475|220605.75908828|126.44386514|14891|1 +638504.8322436|220614.91128465|127.19849036|14892|1 +638499.83375121|220619.51358583|127.42758381|14893|1 +638494.89855882|220624.06233553|127.98369051|14894|1 +638489.94152367|220628.62475338|128.09654897|14895|1 +638484.98565871|220633.18662841|128.24662383|14896|1 +638480.05589234|220637.73181061|128.90172934|14897|1 +638475.09758885|220642.29546827|129.02014095|14898|1 +638470.14677811|220646.85439553|129.28803211|14899|1 +638465.24613787|220651.367854|129.60744581|14900|1 +638460.29040426|220655.93030361|129.80617826|14901|1 +638455.3869657|220660.4458684|130.09363106|14902|1 +638450.42910591|220665.0100846|130.27938754|14903|1 +638445.51940167|220669.5302249|130.48504981|14904|1 +638440.60691363|220674.05247029|130.65915116|14905|1 +638435.64445583|220678.62044482|130.81298394|14906|1 +638430.76591811|220683.10879025|130.80679826|14907|1 +638425.78221379|220687.69224101|130.67983831|14908|1 +638420.90444675|220692.18067295|130.72881217|14909|1 +638415.99672601|220696.70065864|131.0505141|14910|1 +638411.02805179|220701.26455434|130.53131685|14911|1 +638406.12795884|220705.76999003|130.33613767|14912|1 +638401.19730053|220710.30736324|130.40155707|14913|1 +638396.28058701|220714.82564604|130.03752275|14914|1 +638391.5562762|220719.21257766|132.82736734|14915|1 +638386.62882702|220723.73004941|131.72812061|14916|1 +638381.45978555|220728.44426114|128.85623435|14917|1 +638376.58983581|220732.92115392|128.60878849|14918|1 +638371.67821272|220737.43796242|128.46678757|14919|1 +638366.77323974|220741.95017376|128.43008276|14920|1 +638361.8430968|220746.48158245|128.11947785|14921|1 +638356.99683919|220750.94221095|128.25524657|14922|1 +638352.21323737|220755.35578006|129.12340927|14923|1 +638347.49020391|220759.73126308|131.20897917|14924|1 +638342.50078454|220764.29307703|129.23596077|14925|1 +638337.65830518|220768.7593094|129.99716234|14926|1 +638333.29494423|220772.84422505|134.88319945|14927|1 +638327.84080593|220777.77107039|128.57767405|14928|1 +638324.00288819|220781.45099973|138.89611602|14929|1 +638323.00915927|220782.21488219|128.48395865|14930|2 +638318.72679322|220786.24290558|134.58870521|14931|1 +638318.26700114|220786.59730267|129.83661368|14932|2 +638313.91785664|220790.66864338|134.690755|14933|1 +638313.29991562|220791.14617347|128.38906193|14934|2 +638310.0179335|220794.39743852|144.4427374|14935|1 +638308.38180207|220795.66501994|127.97883499|14936|2 +638303.6146062|220800.05317395|128.14082542|14937|1 +638300.02896844|220803.53550612|140.85145175|14938|1 +638298.70081321|220804.56946201|127.82873222|14939|2 +638295.46674374|220807.76191928|142.87406722|14940|1 +638293.89420119|220808.98893683|127.64814753|14941|2 +638291.30339253|220811.68265696|149.14101816|14942|1 +638290.76039129|220812.10730357|143.94915723|14943|2 +638289.01669146|220813.47093986|127.27697875|14944|3 +638286.28994142|220816.26110748|146.79208707|14945|1 +638281.75400176|220820.47216766|149.42469443|14946|1 +638279.28205722|220822.4136651|126.36328385|14947|2 +638276.54084633|220825.20915531|145.32902926|14948|1 +638274.46812903|220826.84045379|126.22304097|14949|2 +638271.90677249|220829.4911734|146.62559457|14950|1 +638270.26506893|220830.78584869|131.67128676|14951|2 +638269.61545269|220831.29814707|125.75393378|14952|3 +638267.27290174|220833.77288851|147.9144115|14953|1 +638261.72216523|220838.78032667|141.03524555|14954|1 +638259.74144932|220840.34841185|123.40940243|14955|2 +638257.33280544|220842.86302393|144.12590959|14956|1 +638255.31517279|220844.46328794|126.3745111|14957|2 +638252.79563867|220847.06856006|146.30196716|14958|1 +638254.29805142|220842.54841708|126.22132944|14959|1 +638261.05555252|220836.56845357|143.24745913|14960|1 +638258.80006547|220838.355195|123.15905442|14961|2 +638266.24655807|220831.83316149|146.58049026|14962|1 +638263.87740963|220833.70635963|125.2308949|14963|2 +638270.76435113|220827.63692262|144.31542398|14964|1 +638268.74610013|220829.22958721|125.9131988|14965|2 +638275.64300952|220823.14316814|144.45759233|14966|1 +638273.6385112|220824.72177289|125.95800546|14967|2 +638281.12850836|220818.18585064|151.19345512|14968|1 +638285.08008376|220814.42108541|142.70127742|14969|1 +638283.39416231|220815.74326504|126.75735361|14970|2 +638290.19189421|220809.75229353|145.58830697|14971|1 +638288.9042784|220810.75991122|133.25893256|14972|2 +638288.28635075|220811.24346756|127.34208188|14973|3 +638295.15772288|220805.18538396|146.22196259|14974|1 +638294.54689205|220805.66229952|140.29752166|14975|2 +638293.74629331|220806.28737927|132.53254754|14976|3 +638293.23385816|220806.68747087|127.56245957|14977|4 +638298.07283608|220802.23013106|127.69389367|14978|1 +638302.97226344|220797.71924066|127.97142147|14979|1 +638307.86259497|220793.21583087|128.18650645|14980|1 +638313.81773964|220787.88234317|138.81980425|14981|1 +638312.78912585|220788.67771775|128.30632263|14982|2 +638318.25135178|220783.73403774|134.5011848|14983|1 +638323.23409466|220779.15465914|135.34760925|14984|1 +638322.57899284|220779.65853978|128.46592251|14985|2 +638327.94080974|220774.795066|133.81206269|14986|1 +638332.82094312|220770.29502583|133.60865145|14987|1 +638337.32172308|220766.08451584|129.26323358|14988|1 +638342.33266287|220761.48463053|130.48638927|14989|1 +638347.29339488|220756.91581462|130.65890932|14990|1 +638351.94650223|220752.59567771|128.43474295|14991|1 +638356.85165413|220748.06898093|127.97865825|14992|1 +638361.80077003|220743.50942317|128.05048657|14993|1 +638366.71691312|220738.98319972|128.32770741|14994|1 +638371.65858798|220734.42995738|128.36172401|14995|1 +638376.61238549|220729.86806838|128.56962801|14996|1 +638381.56581067|220725.30688076|128.80221893|14997|1 +638386.75545055|220720.58123741|132.71112304|14998|1 +638391.48845498|220716.17428049|129.56545759|14999|1 +638396.45039115|220711.60831564|130.00905931|15000|1 +638401.39246712|220707.05731551|130.22220952|15001|1 +638406.37121268|220702.47076435|130.31109729|15002|1 +638411.32994267|220697.90865557|130.8164535|15003|1 +638416.30056095|220693.32878582|130.84910274|15004|1 +638421.20716186|220688.80479962|130.66904825|15005|1 +638426.17484306|220684.22764067|130.70133472|15006|1 +638431.14710353|220679.64760927|130.8269273|15007|1 +638436.10592831|220675.07735088|130.77173056|15008|1 +638441.10541825|220670.46832178|130.62421369|15009|1 +638446.00554736|220665.95011808|130.43023444|15010|1 +638451.00147784|220661.3428823|130.25130547|15011|1 +638455.99473284|220656.73762878|130.04123415|15012|1 +638460.93619827|220652.17923332|129.77324067|15013|1 +638465.92494576|220647.57733074|129.50692151|15014|1 +638470.86640049|220643.01921787|129.25725253|15015|1 +638475.85816733|220638.41562348|129.06560803|15016|1 +638480.83425328|220633.8223361|128.58702234|15017|1 +638485.81559887|220629.22564963|128.20815168|15018|1 +638490.80369531|220624.62473105|127.96650083|15019|1 +638495.78715642|220620.0268235|127.63744119|15020|1 +638500.77810859|220615.4243654|127.47057662|15021|1 +638505.75740722|220610.82913378|127.06028456|15022|1 +638510.73712573|220606.23360738|126.65615028|15023|1 +638515.76452954|220601.59413829|126.24879759|15024|1 +638520.7526639|220596.99366376|126.03814956|15025|1 +638525.7369953|220592.39543873|125.74004623|15026|1 +638530.77028551|220587.75263524|125.47654551|15027|1 +638535.75128314|220583.15623101|125.09099618|15028|1 +638540.72759308|220578.56216728|124.56797589|15029|1 +638545.75648463|220573.92145738|124.16732978|15030|1 +638550.74846119|220569.31919076|124.07517708|15031|1 +638555.78898032|220564.672828|124.0245103|15032|1 +638560.82843887|220560.027183|123.95528648|15033|1 +638565.82122652|220555.4251783|123.93192972|15034|1 +638570.8614265|220550.77967602|123.91917699|15035|1 +638575.89996737|220546.13507663|123.86289194|15036|1 +638580.89204322|220541.53410561|123.86459416|15037|1 +638585.97608083|220536.8467999|123.75083344|15038|1 +638591.00778935|220532.20473696|123.43264757|15039|1 +638595.99107778|220527.60638047|123.05336764|15040|1 +638601.07155425|220522.91950163|122.74049309|15041|1 +638606.10938605|220518.27533692|122.66646955|15042|1 +638611.15023857|220513.63100779|122.77383066|15043|1 +638616.18849463|220508.98719201|122.75013903|15044|1 +638621.22609119|220504.34308534|122.6641162|15045|1 +638626.26284545|220499.69877457|122.50952068|15046|1 +638631.34716745|220495.01030706|122.32969874|15047|1 +638636.38472836|220490.36553898|122.19430208|15048|1 +638646.51110978|220481.03405726|122.28644548|15049|1 +638651.55157152|220476.39223033|122.53914684|15050|1 +638656.59167496|220471.75164174|122.85450496|15051|1 +638661.67871023|220467.06847993|123.21409303|15052|1 +638666.71703815|220462.4285531|123.46115752|15053|1 +638671.75480636|220457.78887938|123.68962775|15054|1 +638676.83971459|220453.10518818|123.87519819|15055|1 +638681.87745325|220448.45961416|123.69166484|15056|1 +638686.91530486|220443.81664812|123.69577622|15057|1 +638691.95405146|220439.17088559|123.56259339|15058|1 +638696.9934177|220434.52464813|123.43583808|15059|1 +638702.02779148|220429.88040556|123.12786557|15060|1 +638707.11755989|220425.18518896|122.82166969|15061|1 +638712.11332364|220420.57658668|122.51911081|15062|1 +638717.20459863|220415.88126403|122.30103066|15063|1 +638722.2494232|220411.22860526|122.07537887|15064|1 +638727.29652302|220406.57269338|121.76874581|15065|1 +638732.33867624|220401.92719389|121.86834923|15066|1 +638737.38451062|220397.2754314|121.76827142|15067|1 +638742.38236206|220392.66881853|121.73486874|15068|1 +638747.46756878|220387.9881428|122.14331904|15069|1 +638752.52336795|220383.32174703|121.6629288|15070|1 +638757.5732208|220378.66596303|121.53873148|15071|1 +638762.62563761|220374.00692811|121.35234248|15072|1 +638767.6812166|220369.34390924|121.09128813|15073|1 +638772.75946648|220364.64851966|120.03139722|15074|1 +638777.82442629|220359.97418992|119.58369342|15075|1 +638782.85286419|220355.35255607|120.45959519|15076|1 +638787.94637424|220350.63964104|119.1573651|15077|1 +638793.01650244|220345.9608565|118.72934386|15078|1 +638797.61428698|220341.92232471|132.56024823|15079|1 +638802.61876481|220337.32500693|133.59148967|15080|1 +638807.72616188|220332.59106327|131.7154795|15081|1 +638812.73700472|220327.96727389|131.31462874|15082|1 +638817.79826388|220323.29685954|130.89920211|15083|1 +638818.40667724|220322.51041522|115.1872553|15084|2 +638822.83754039|220318.63828526|129.89996808|15085|1 +638827.86668212|220313.9920317|129.23157033|15086|1 +638832.88019355|220309.38246642|130.11407637|15087|1 +638837.89019026|220304.76135536|129.9697221|15088|1 +638842.8712154|220300.17661636|130.49866761|15089|1 +638848.01210434|220295.41020794|128.63269406|15090|1 +638848.69361512|220294.57331343|114.0918037|15091|2 +638852.9276402|220290.90624277|130.58280218|15092|1 +638858.08922132|220286.08925198|126.52702302|15093|1 +638863.71461305|220280.74461474|115.48608417|15094|1 +638868.67696775|220276.17534437|115.89371592|15095|1 +638873.70343383|220271.54281733|116.00754176|15096|1 +638878.73007998|220266.91040011|116.14018509|15097|1 +638883.71617603|220262.31372078|116.16151406|15098|1 +638888.7507668|220257.67265557|116.20093499|15099|1 +638893.74173327|220253.07105289|116.19114952|15100|1 +638898.72796551|220248.47533318|116.28711595|15101|1 +638903.78213817|220243.81276175|116.084207|15102|1 +638908.79714056|220239.18474203|115.77586241|15103|1 +638913.87520966|220234.48512842|114.52838257|15104|1 +638918.8831088|220229.86661934|114.42564445|15105|1 +638923.88723663|220225.25284193|114.41001747|15106|1 +638928.94012002|220220.59445364|114.41353354|15107|1 +638933.90070881|220216.0205893|114.38509801|15108|1 +638938.93442443|220211.37474778|114.03404897|15109|1 +638943.97191281|220206.72526488|113.67077739|15110|1 +638949.0086638|220202.07718453|113.35741915|15111|1 +638953.97479797|220197.49894341|113.37860859|15112|1 +638958.73393669|220193.15971196|116.76010198|15113|1 +638963.9655542|220188.28783866|113.36599538|15114|1 +638968.95494552|220183.68506851|113.16968139|15115|1 +638973.98022|220179.0519677|113.16106795|15116|1 +638978.95025833|220174.47131289|113.26263404|15117|1 +638983.92685264|220169.88382443|113.30825926|15118|1 +638988.9233678|220165.27495637|113.14296669|15119|1 +638993.85561887|220160.72836842|113.19270329|15120|1 +638998.84531412|220156.12775217|113.16369105|15121|1 +639003.79182545|220151.56642646|113.10144356|15122|1 +639008.74805533|220146.99499371|112.95843805|15123|1 +639013.70926415|220142.41862201|112.79050378|15124|1 +639018.66525441|220137.84830312|112.70914114|15125|1 +639023.65585833|220133.24121447|112.28710094|15126|1 +639028.62936546|220128.65299354|112.08172702|15127|1 +639033.62202355|220124.04473608|111.70920948|15128|1 +639038.57399997|220119.47326825|111.29034118|15129|1 +639043.55404292|220114.87948644|111.11574684|15130|1 +639046.81313238|220108.81921304|110.94794279|15131|1 +639041.80599268|220113.42591583|111.23365616|15132|1 +639036.71503897|220118.10824484|111.41430596|15133|1 +639031.65705725|220122.76303106|111.79022795|15134|1 +639026.60731812|220127.40952304|112.11696215|15135|1 +639021.52011501|220132.08929378|112.36077101|15136|1 +639016.47468928|220136.73216779|112.71290836|15137|1 +639011.40740629|220141.39146968|112.80886549|15138|1 +639006.38836513|220146.00685207|112.93849504|15139|1 +639001.32754407|220150.66003117|113.02263891|15140|1 +638996.26391603|220155.3166847|113.16908608|15141|1 +638991.22052287|220159.9517732|113.11124763|15142|1 +638986.11581672|220164.64584804|113.23164053|15143|1 +638981.07897143|220169.27455233|113.14958956|15144|1 +638976.03654403|220173.90973008|113.1607982|15145|1 +638970.94956446|220178.58562376|113.15209173|15146|1 +638965.91251079|220183.21567525|113.1514034|15147|1 +638960.81442421|220187.90464475|113.34212703|15148|1 +638955.77429122|220192.53895659|113.44129326|15149|1 +638950.707748|220197.19381097|113.27880053|15150|1 +638945.62442595|220201.86781902|113.36507451|15151|1 +638940.53109574|220206.55450614|113.60055828|15152|1 +638935.42810143|220211.2525965|114.01052477|15153|1 +638930.33030241|220215.94545414|114.38992563|15154|1 +638925.26245324|220220.60502798|114.37189879|15155|1 +638920.14538787|220225.31052793|114.39746007|15156|1 +638915.08122908|220229.96670522|114.38020527|15157|1 +638909.95363794|220234.68511224|114.63070211|15158|1 +638904.76756471|220239.47138613|115.85864822|15159|1 +638899.69698337|220244.13670057|116.06679407|15160|1 +638894.58503904|220248.83901673|116.20090708|15161|1 +638889.4372308|220253.57184631|116.16174661|15162|1 +638884.38960785|220258.21182635|116.07856082|15163|1 +638879.2472379|220262.93903007|115.99697494|15164|1 +638874.1526085|220267.62273009|115.94640118|15165|1 +638869.06268491|220272.30120766|115.83398921|15166|1 +638863.98773948|220276.96204713|115.45410466|15167|1 +638858.25109368|220282.40833338|127.35022094|15168|1 +638853.07449621|220287.21208021|130.40512895|15169|1 +638847.95140068|220291.92427333|130.51597822|15170|1 +638842.94246116|220296.49619827|128.17778138|15171|1 +638843.59691047|220295.68898688|113.92220441|15172|2 +638837.96352746|220301.04459733|126.12462818|15173|1 +638838.49441408|220300.38468311|114.20497841|15174|2 +638832.90358503|220305.69308121|125.8482631|15175|1 +638827.61261423|220310.61740481|129.97028951|15176|1 +638822.55589891|220315.26427166|129.78869093|15177|1 +638817.5655769|220319.80829227|126.70299403|15178|1 +638812.2628415|220324.77445072|132.9842325|15179|1 +638807.35840004|220329.22361708|128.79876797|15180|1 +638807.80048732|220328.64173846|116.6209567|15181|2 +638802.0735698|220334.15551021|133.84315853|15182|1 +638802.65163855|220333.38561254|117.29026603|15183|2 +638797.03854115|220338.75690449|131.88791583|15184|1 +638797.51282684|220338.11720476|117.74815527|15185|2 +638792.21255161|220343.09188104|124.78150747|15186|1 +638792.40893165|220342.82343862|118.67820269|15187|2 +638787.27205825|220347.55477477|119.24343443|15188|1 +638782.19418661|220352.22755428|119.5129348|15189|1 +638777.12726199|220356.8855042|119.45195236|15190|1 +638771.97359224|220361.64468734|120.88032384|15191|1 +638766.86121694|220366.34514399|120.86724554|15192|1 +638761.78815769|220371.01493102|121.23831201|15193|1 +638756.67364361|220375.72005334|121.41350166|15194|1 +638751.56143318|220380.42233986|121.53928959|15195|1 +638746.50447369|220385.0690514|121.33695735|15196|1 +638741.3935741|220389.77040264|121.48238132|15197|1 +638736.28415923|220394.47003032|121.60333232|15198|1 +638731.22547541|220399.12102201|121.58938896|15199|1 +638726.11908467|220403.81651883|121.61751753|15200|1 +638721.01179226|220408.51455538|121.76483906|15201|1 +638715.95144275|220413.17138598|122.05175236|15202|1 +638710.84519313|220417.86981061|122.29365435|15203|1 +638705.73911421|220422.56960249|122.64228493|15204|1 +638700.68284854|220427.22195431|122.88023368|15205|1 +638695.58655072|220431.91140413|123.13615345|15206|1 +638690.48419539|220436.60651454|123.39862168|15207|1 +638685.43103081|220441.25394451|123.49377885|15208|1 +638680.33086879|220445.94416769|123.55710534|15209|1 +638675.2786562|220450.59143684|123.70281767|15210|1 +638670.22674428|220455.23268195|123.44879546|15211|1 +638665.12682941|220459.9189043|123.25078854|15212|1 +638660.07383945|220464.56086936|122.97855345|15213|1 +638655.0197199|220469.20243554|122.60655681|15214|1 +638649.9180203|220473.89003429|122.39090443|15215|1 +638644.86293101|220478.5339265|122.11944138|15216|1 +638639.80798468|220483.17911807|121.94817708|15217|1 +638634.75588531|220487.82635789|122.10212147|15218|1 +638629.70325499|220492.47300692|122.18127959|15219|1 +638624.65162674|220497.11971869|122.32939178|15220|1 +638619.60043318|220501.76620442|122.49022879|15221|1 +638614.59453463|220506.36865789|122.48804288|15222|1 +638609.54150882|220511.01476238|122.5054558|15223|1 +638604.48752756|220515.66111574|122.47934572|15224|1 +638594.4354527|220524.90872882|122.87020636|15225|1 +638589.38937097|220529.55318719|123.21952527|15226|1 +638584.39052902|220534.15360507|123.53008368|15227|1 +638579.3393328|220538.79926135|123.63602161|15228|1 +638574.28614837|220543.44576144|123.67346126|15229|1 +638569.27752117|220548.04987814|123.61559491|15230|1 +638564.2219827|220552.69783244|123.60340028|15231|1 +638559.26306645|220557.25769512|123.64351884|15232|1 +638554.20934958|220561.90521774|123.71275197|15233|1 +638549.20818406|220566.50667178|123.9423012|15234|1 +638544.20134292|220571.11101047|124.00945073|15235|1 +638539.20955|220575.7076797|124.50749574|15236|1 +638534.21907723|220580.30339189|125.02421873|15237|1 +638529.22246573|220584.90223865|125.36604971|15238|1 +638524.22649018|220589.50067188|125.72032647|15239|1 +638519.2735106|220594.05786869|125.95920539|15240|1 +638514.27546902|220598.65746672|126.26338278|15241|1 +638509.28177847|220603.25448987|126.66740543|15242|1 +638504.38185263|220607.76466286|127.03344894|15243|1 +638499.38402205|220612.36413384|127.34356086|15244|1 +638494.43293254|220616.92034478|127.63758071|15245|1 +638489.48378377|220621.47538919|127.97503056|15246|1 +638484.47143593|220626.08425525|128.01036801|15247|1 +638479.56546241|220630.59850193|128.27491053|15248|1 +638474.63699648|220635.14029718|129.01706206|15249|1 +638469.67888416|220639.70140031|129.20386034|15250|1 +638464.72745599|220644.25821869|129.52140438|15251|1 +638459.76992142|220648.81921782|129.73895433|15252|1 +638454.86249803|220653.33483029|130.00787798|15253|1 +638449.90254187|220657.89776531|130.20621976|15254|1 +638444.98888116|220662.41792749|130.3933715|15255|1 +638440.02418436|220666.98449234|130.54139067|15256|1 +638435.10916182|220671.5059737|130.73409557|15257|1 +638430.18016352|220676.0374402|130.72704483|15258|1 +638425.20060493|220680.61514919|130.69998596|15259|1 +638420.31013692|220685.10980425|130.59984304|15260|1 +638415.38609336|220689.63864927|130.72884007|15261|1 +638410.4498094|220694.17650737|130.70183701|15262|1 +638405.50739895|220698.71910254|130.61228881|15263|1 +638400.58724237|220703.23656879|130.19921553|15264|1 +638395.6439779|220707.78054723|130.15266013|15265|1 +638390.69040423|220712.33240505|129.99386021|15266|1 +638386.06471094|220716.62579181|132.85217518|15267|1 +638380.81434803|220721.3968415|128.93532735|15268|1 +638375.92785303|220725.88308682|128.50804095|15269|1 +638371.01181683|220730.40025864|128.34167868|15270|1 +638366.1043603|220734.91139254|128.30548547|15271|1 +638361.17247127|220739.44116711|128.00159643|15272|1 +638356.30186826|220743.91718939|127.88317552|15273|1 +638351.41290977|220748.41536519|128.13152365|15274|1 +638346.58218727|220752.86178933|128.50891532|15275|1 +638342.14788081|220757.00708895|133.32625882|15276|1 +638336.92740059|220761.74997108|129.36697629|15277|1 +638332.13440447|220766.16044435|129.66012177|15278|1 +638327.73976403|220770.27305898|134.74551456|15279|1 +638327.13497657|220770.73676099|128.27157119|15280|2 +638323.14609574|220774.52968566|137.10242657|15281|1 +638322.30080695|220775.17957262|128.17854413|15282|2 +638317.43353947|220779.65543294|128.26628778|15283|1 +638313.98675865|220783.02653023|142.47005386|15284|1 +638313.46504654|220783.4297704|137.11054702|15285|2 +638312.5846557|220784.11023942|128.06638331|15286|3 +638309.84985568|220786.9342542|149.80951822|15287|1 +638303.64180936|220792.43454886|135.29726803|15288|1 +638302.89623826|220793.01368615|127.83814562|15289|2 +638298.3417335|220797.24718251|131.09732064|15290|1 +638293.89517494|220801.38203453|134.40597181|15291|1 +638293.3834547|220801.78139636|129.41685241|15292|2 +638290.34521384|220804.82133844|146.74858266|15293|1 +638288.31326651|220806.41071159|127.18701197|15294|2 +638285.7341808|220809.08175724|148.26003761|15295|1 +638283.45130122|220810.87129326|126.55333775|15296|2 +638280.83615006|220813.57387657|147.51170039|15297|1 +638275.71413244|220818.23646141|144.27740762|15298|1 +638274.07316972|220819.52821736|129.05146003|15299|2 +638270.63621309|220822.87200403|141.98737538|15300|1 +638268.87238783|220824.26329835|125.81794861|15301|2 +638266.47999331|220826.76762031|147.24880429|15302|1 +638264.036672|220828.69863931|125.11088338|15303|2 +638261.57005939|220831.27099089|146.52294947|15304|1 +638259.8107537|220832.66410196|130.76972138|15305|2 +638259.19299108|220833.15327898|125.23815958|15306|3 +638256.51754296|220835.8757524|143.71836156|15307|1 +638254.85302234|220837.19624302|128.98349195|15308|2 +638254.27791572|220837.65248421|123.89248089|15309|3 +638252.65308003|220836.36392547|131.10890135|15310|1 +638259.38043152|220830.40722904|147.94071693|15311|1 +638256.74933615|220832.49299745|124.44224378|15312|2 +638263.91589255|220826.19082038|145.38512827|15313|1 +638261.67240734|220827.96592593|125.11130196|15314|2 +638267.78195919|220822.50246215|136.66842429|15315|1 +638266.90268016|220823.1968116|128.62747576|15316|2 +638271.52279787|220818.90370019|126.15474733|15317|1 +638278.59704012|220812.68643423|147.09277629|15318|1 +638276.36904094|220814.43866662|126.21590651|15319|2 +638283.42726761|220808.2314978|146.82747102|15320|1 +638281.30726947|220809.89523519|126.71376549|15321|2 +638288.7917324|220803.35843715|151.71036414|15322|1 +638291.9408856|220800.21831405|135.18283758|15323|1 +638291.16518787|220800.82436707|127.6343716|15324|2 +638297.33416122|220795.31632372|139.89476404|15325|1 +638296.11123368|220796.2695649|127.83800609|15326|2 +638302.75929645|220790.39851348|145.55287651|15327|1 +638300.95174604|220791.80410074|127.49777502|15328|2 +638307.9059746|220785.69225818|148.07931339|15329|1 +638312.03113225|220781.78471796|140.70820439|15330|1 +638310.77360368|220782.75772179|127.80600798|15331|2 +638316.16576112|220777.8601589|132.75470186|15332|1 +638315.72497203|220778.20032273|128.16970744|15333|2 +638320.60634692|220773.70450948|128.33612552|15334|1 +638326.20098145|220768.64695962|135.12831987|15335|1 +638325.76058565|220768.98495945|130.41723986|15336|2 +638330.48964275|220764.59943669|128.48980947|15337|1 +638335.55283413|220759.95092426|129.67724634|15338|1 +638340.512824|220755.38941137|130.30705102|15339|1 +638345.28992077|220750.95939204|128.35781726|15340|1 +638350.36468631|220746.30387489|129.8000577|15341|1 +638355.09672697|220741.91548206|127.8626744|15342|1 +638360.11156845|220737.29799517|128.10470662|15343|1 +638365.07072024|220732.73086318|128.28510528|15344|1 +638370.0194454|220728.17191191|128.3658633|15345|1 +638375.01462001|220723.57031546|128.45245354|15346|1 +638379.99360691|220718.98974257|128.96831145|15347|1 +638385.30308221|220714.15772931|133.17331901|15348|1 +638389.96462998|220709.81179449|129.6639355|15349|1 +638394.97900712|220705.19796407|130.13006612|15350|1 +638399.97082685|220700.60107497|130.32864974|15351|1 +638404.95823685|220696.00779864|130.49610963|15352|1 +638409.94228076|220691.41736158|130.64485433|15353|1 +638414.92522354|220686.82811914|130.80600761|15354|1 +638419.87951025|220682.25964638|130.57473754|15355|1 +638424.85575377|220677.67585814|130.68589377|15356|1 +638429.82494262|220673.09741265|130.71596641|15357|1 +638434.83888145|220668.4774631|130.72224511|15358|1 +638439.79093253|220663.91223019|130.52787519|15359|1 +638444.74294125|220659.34922303|130.35212743|15360|1 +638449.74081058|220654.74378653|130.15906906|15361|1 +638454.69223674|220650.18159133|130.00171091|15362|1 +638459.68350944|220645.58098769|129.72128095|15363|1 +638464.67672685|220640.97921977|129.48447633|15364|1 +638469.66801094|220636.37888279|129.22272434|15365|1 +638474.62630983|220631.8001737|128.34968751|15366|1 +638479.57743777|220627.23889415|128.23521985|15367|1 +638484.6218277|220622.59143936|128.09418632|15368|1 +638489.61371131|220617.99110114|127.86971585|15369|1 +638494.60634883|220613.39043332|127.67019274|15370|1 +638499.64052406|220608.74981636|127.34860243|15371|1 +638504.62481611|220604.1544338|126.98060555|15372|1 +638509.6583155|220599.51427169|126.64677409|15373|1 +638514.68705144|220594.87690005|126.20076322|15374|1 +638519.67343586|220590.28023242|125.87648469|15375|1 +638524.70986405|220585.63837724|125.61172823|15376|1 +638529.74261972|220580.99857882|125.25348891|15377|1 +638534.72432125|220576.40436261|124.79812045|15378|1 +638539.75740072|220571.76418788|124.43383498|15379|1 +638544.83021666|220567.084046|123.83001946|15380|1 +638549.82257648|220562.48396135|123.6495464|15381|1 +638554.86373505|220557.8395841|123.51059646|15382|1 +638559.90672702|220553.19450811|123.44055408|15383|1 +638564.95166454|220548.54880847|123.45190225|15384|1 +638569.99739224|220543.90309971|123.5134335|15385|1 +638575.04065978|220539.25868527|123.50643857|15386|1 +638580.0338901|220534.65917491|123.41995065|15387|1 +638585.11917163|220529.97316273|123.20560051|15388|1 +638590.10890996|220525.37473863|122.96927028|15389|1 +638595.1447047|220520.73268136|122.6442011|15390|1 +638600.18272875|220516.08983137|122.40677326|15391|1 +638605.22466277|220511.44624352|122.36948243|15392|1 +638610.26745843|220506.80276188|122.39485768|15393|1 +638615.35707792|220502.1155752|122.37596577|15394|1 +638620.35070373|220497.51583857|122.29614723|15395|1 +638625.43905041|220492.82832999|122.17160574|15396|1 +638630.47834317|220488.18382654|121.89782656|15397|1 +638635.52117864|220483.54034597|121.9241971|15398|1 +638640.56289547|220478.89621223|121.83200719|15399|1 +638645.65518092|220474.21118222|122.13371961|15400|1 +638650.65128104|220469.6142834|122.41057768|15401|1 +638655.74136105|220464.92915957|122.56290357|15402|1 +638660.7840395|220460.29040797|122.90898547|15403|1 +638665.82572869|220455.65106226|123.1489992|15404|1 +638670.91449965|220450.96761792|123.33354645|15405|1 +638676.00284508|220446.28564225|123.59350319|15406|1 +638680.99669456|220441.68408452|123.39596137|15407|1 +638686.08615325|220436.99593943|123.2940511|15408|1 +638691.12893761|220432.34974841|123.12274959|15409|1 +638696.16592569|220427.70844992|122.92020341|15410|1 +638701.21068739|220423.05911662|122.65553066|15411|1 +638706.30469986|220418.36370543|122.33628439|15412|1 +638711.30463689|220413.75498415|122.0268329|15413|1 +638716.40079866|220409.05815053|121.74573321|15414|1 +638721.44915597|220404.4067917|121.56949246|15415|1 +638726.49888763|220399.75382377|121.36848107|15416|1 +638731.54505114|220395.1082427|121.4550341|15417|1 +638736.59376736|220390.45854067|121.41685961|15418|1 +638741.59711348|220385.84939218|121.29540631|15419|1 +638746.69201549|220381.15939061|121.40985537|15420|1 +638751.69636405|220376.54977855|121.31984208|15421|1 +638756.74960043|220371.89506033|121.21999681|15422|1 +638761.80752633|220367.23390094|120.97053247|15423|1 +638766.81654181|220362.61921435|120.8245876|15424|1 +638771.87797568|220357.95448875|120.55059447|15425|1 +638776.93585974|220353.29561842|120.45791157|15426|1 +638781.97778497|220348.63680012|119.33861021|15427|1 +638787.04445526|220343.96755259|119.08417872|15428|1 +638791.65467715|220339.89782647|131.43229621|15429|1 +638792.08359866|220339.31549502|118.25868327|15430|2 +638796.59131439|220335.39701728|134.6027788|15431|1 +638797.16941275|220334.62233869|117.56181278|15432|2 +638801.62126716|220330.75038393|133.5639099|15433|1 +638806.76040293|220325.98087303|130.95075255|15434|1 +638807.29758968|220325.27776311|116.29027855|15435|2 +638811.74928347|220321.3911556|131.25376722|15436|1 +638816.85580352|220316.65115422|128.56910711|15437|1 +638822.00970386|220311.8551437|124.91210441|15438|1 +638822.42471145|220311.32806273|114.71564594|15439|2 +638826.88252109|220307.41671758|128.2025055|15440|1 +638831.91243281|220302.79536338|128.79687971|15441|1 +638836.82820791|220298.28483666|129.79997398|15442|1 +638841.88852751|220293.62574969|129.70868635|15443|1 +638846.9248763|220288.96772562|128.14352294|15444|1 +638851.86919581|220284.43678913|129.55597908|15445|1 +638856.92553576|220279.77031683|128.68769546|15446|1 +638862.57397193|220274.38330496|115.47343375|15447|1 +638867.54353579|220269.81367739|115.79820528|15448|1 +638872.57933513|220265.17849836|115.79812156|15449|1 +638877.56097623|220260.59511123|115.93589017|15450|1 +638882.54804636|220256.00567048|115.99883529|15451|1 +638887.48480879|220251.46340613|116.12441858|15452|1 +638892.47649455|220246.86928493|116.1559702|15453|1 +638897.48035808|220242.26148573|116.01323444|15454|1 +638902.50100637|220237.6348863|115.63408473|15455|1 +638907.52927695|220232.98941509|114.42143075|15456|1 +638912.486528|220228.42593497|114.37827981|15457|1 +638917.49092571|220223.81970839|114.37868908|15458|1 +638922.45106427|220219.25375763|114.34765836|15459|1 +638927.41010639|220214.68943862|114.35995531|15460|1 +638932.39543984|220210.09598133|114.02399375|15461|1 +638937.39958179|220205.48204535|113.46426865|15462|1 +638942.42995624|220200.8489492|113.25334157|15463|1 +638947.36270336|220196.30635166|113.09034654|15464|1 +638952.3268201|220191.73853596|113.18274109|15465|1 +638957.29175771|220187.17014733|113.28738607|15466|1 +638962.23889945|220182.61290293|113.02428533|15467|1 +638967.21036668|220178.03807375|113.09752751|15468|1 +638972.12894292|220173.51303018|113.24976039|15469|1 +638977.1189846|220168.91856154|113.14271554|15470|1 +638982.0569605|220164.37302724|113.10828037|15471|1 +638986.98878701|220159.83456543|113.17277888|15472|1 +638991.93871869|220155.27680286|113.05097212|15473|1 +638996.87927383|220150.72961081|113.06532476|15474|1 +639001.82483431|220146.17737623|113.04842344|15475|1 +639006.7772298|220141.61815059|112.9817297|15476|1 +639011.68834397|220137.09616682|112.86276928|15477|1 +639016.65566329|220132.5217216|112.69031435|15478|1 +639021.59206908|220127.97348078|112.36022221|15479|1 +639026.52405863|220123.43044992|112.11033928|15480|1 +639031.51654627|220118.83048985|111.77033145|15481|1 +639036.40526989|220114.32739955|111.52931312|15482|1 +639041.32890052|220109.7946177|111.4580057|15483|1 +639046.24987254|220105.25817028|110.95639811|15484|1 +639046.95973063|220101.90807316|110.78064104|15485|1 +639041.9491257|220106.51312733|111.06574049|15486|1 +639036.62172831|220111.45517058|114.59234159|15487|1 +639031.94393123|220115.70762373|111.57426861|15488|1 +639026.88761782|220120.35569415|111.93088941|15489|1 +639021.89372149|220124.94483708|112.17916313|15490|1 +639016.85108085|220129.57927763|112.46190923|15491|1 +639011.86457637|220134.16143405|112.69786739|15492|1 +639006.84733177|220138.76953718|112.77029102|15493|1 +639001.78210139|220143.4220764|112.86528076|15494|1 +638996.76293782|220148.03307172|113.01857404|15495|1 +638991.72180108|220152.66038446|112.89712074|15496|1 +638986.75550397|220157.22287176|113.05878561|15497|1 +638981.72127328|220161.84338739|112.90653414|15498|1 +638976.67965794|220166.47226162|112.86611792|15499|1 +638971.64417625|220171.09478642|112.77624416|15500|1 +638966.59873809|220175.72856451|112.83548717|15501|1 +638961.5677912|220180.34682416|112.73975329|15502|1 +638956.52336768|220184.98027093|112.84282627|15503|1 +638951.48270867|220189.60998412|112.92749104|15504|1 +638946.4099486|220194.2665696|112.82501337|15505|1 +638941.32350736|220198.93871017|112.9341046|15506|1 +638936.280123|220203.57264935|113.14998953|15507|1 +638931.15229503|220208.29184421|113.91866973|15508|1 +638926.06665033|220212.96444731|114.13471279|15509|1 +638921.03588494|220217.58572201|114.28934552|15510|1 +638915.96950756|220222.2375395|114.28838744|15511|1 +638910.85800044|220226.93058488|114.26895603|15512|1 +638905.79404186|220231.5804339|114.28736424|15513|1 +638900.64738425|220236.31457593|114.89104953|15514|1 +638895.57803978|220240.98280774|115.86211778|15515|1 +638890.4767185|220245.66622499|115.82594318|15516|1 +638885.37010444|220250.35617308|115.90852435|15517|1 +638880.32334261|220254.98862555|115.8166507|15518|1 +638875.22570345|220259.66891835|115.8004191|15519|1 +638870.13228144|220264.34462593|115.73481367|15520|1 +638865.05431413|220269.00234761|115.40176357|15521|1 +638859.91579612|220273.71936055|115.32558202|15522|1 +638854.10479477|220279.25900455|129.72952233|15523|1 +638849.01754896|220283.93442745|130.04780121|15524|1 +638844.16334077|220288.32645872|125.46764371|15525|1 +638844.69357699|220287.68009401|114.21142454|15526|2 +638839.01205685|220293.07984661|127.13880086|15527|1 +638839.62074083|220292.33238814|113.83024705|15528|2 +638833.8973441|220297.77464506|127.04193216|15529|1 +638828.886744|220302.3555657|125.65932542|15530|1 +638829.38123475|220301.73856274|114.15550226|15531|2 +638823.61412452|220307.26540017|130.51262958|15532|1 +638819.14233439|220311.14639284|114.63881326|15533|1 +638813.54192502|220316.47688775|127.94441841|15534|1 +638814.0408417|220315.83699583|115.10784604|15535|2 +638808.42809323|220321.19101005|129.27622816|15536|1 +638808.93851399|220320.52959914|115.66465967|15537|2 +638803.17683783|220326.06841746|133.2251299|15538|1 +638798.17901415|220330.61471943|130.22464658|15539|1 +638793.04227528|220335.36461466|132.60032028|15540|1 +638788.00611457|220339.98099501|132.06855632|15541|1 +638783.13471493|220344.34778331|124.58698872|15542|1 +638783.30770451|220344.10900097|118.93856871|15543|2 +638778.22454297|220348.78248401|119.39227216|15544|1 +638773.08560018|220353.51241357|120.21158193|15545|1 +638767.96023011|220358.22431488|120.63822651|15546|1 +638762.90118283|220362.86593522|120.40649135|15547|1 +638757.82554103|220367.53276582|120.88055639|15548|1 +638752.71272076|220372.22846102|120.97768553|15549|1 +638747.60012461|220376.92446684|121.11279384|15550|1 +638742.53983599|220381.56986829|121.0696429|15551|1 +638737.43244958|220386.25853017|121.02451068|15552|1 +638732.3225337|220390.9520836|121.16098634|15553|1 +638727.21621903|220395.63993648|121.12929519|15554|1 +638722.1082789|220400.3314048|121.24800446|15555|1 +638717.04805267|220404.97990983|121.43141689|15556|1 +638711.94133404|220409.67095933|121.60094176|15557|1 +638706.83336|220414.36624663|121.98962579|15558|1 +638701.77517056|220419.01472127|122.30519786|15559|1 +638696.67075812|220423.70541374|122.60101295|15560|1 +638691.56741842|220428.3953847|122.91603621|15561|1 +638686.52003892|220433.03083168|123.01397462|15562|1 +638681.41886213|220437.71651748|123.1673051|15563|1 +638676.31836911|220442.40157004|123.32108207|15564|1 +638671.26626726|220447.03826449|123.20101474|15565|1 +638666.16629139|220451.71719059|122.95560597|15566|1 +638661.06587627|220456.39696536|122.74187905|15567|1 +638656.0600098|220460.98893402|122.4666953|15568|1 +638650.9586132|220465.66977856|122.26609319|15569|1 +638645.85656383|220470.35087382|122.04093439|15570|1 +638640.84863569|220474.9444577|121.74735172|15571|1 +638635.7940927|220479.58372063|121.65390608|15572|1 +638630.69338629|220484.26780704|121.72967835|15573|1 +638625.68916817|220488.86449543|121.89880325|15574|1 +638620.63750268|220493.50463225|122.05592885|15575|1 +638615.58511103|220498.14446189|122.14451897|15576|1 +638610.53231741|220502.78421592|122.20205046|15577|1 +638605.47788067|220507.42388347|122.1473002|15578|1 +638600.42514235|220512.06357896|122.20523167|15579|1 +638595.4215042|220516.65925395|122.34346537|15580|1 +638590.37271901|220521.29804216|122.59537607|15581|1 +638585.37243366|220525.89257263|122.87109933|15582|1 +638580.32399742|220530.53084983|123.1107782|15583|1 +638575.27420099|220535.16949539|123.28817238|15584|1 +638570.31408243|220539.72272358|123.25612776|15585|1 +638565.25890992|220544.36374152|123.25252797|15586|1 +638560.20190518|220549.00581829|123.20542378|15587|1 +638555.24008355|220553.56086931|123.1793509|15588|1 +638550.18591764|220558.20275478|123.26989439|15589|1 +638545.18588094|220562.79775663|123.56442584|15590|1 +638540.19644169|220567.38723555|124.15868843|15591|1 +638535.20202527|220571.97899255|124.59049549|15592|1 +638530.25724981|220576.5256771|125.06327688|15593|1 +638525.26080769|220581.11822114|125.41991629|15594|1 +638520.26327477|220585.7113196|125.74529243|15595|1 +638515.3151588|220590.25955081|126.11129873|15596|1 +638510.32069947|220594.85077754|126.50513594|15597|1 +638505.37089665|220599.39992266|126.82700531|15598|1 +638500.4255921|220603.94632873|127.2484502|15599|1 +638495.4716571|220608.49801738|127.48239918|15600|1 +638490.52279348|220613.0466205|127.82841596|15601|1 +638485.56204661|220617.60278809|127.93707931|15602|1 +638480.61359343|220622.15125389|128.30130897|15603|1 +638475.64509158|220626.7127685|128.28476111|15604|1 +638470.74069854|220631.21994595|128.59451027|15605|1 +638465.80874485|220635.75770946|129.2759305|15606|1 +638460.9009946|220640.26715076|129.52867837|15607|1 +638455.94774061|220644.81909913|129.82906063|15608|1 +638451.03305148|220649.3334898|129.9812656|15609|1 +638446.12314041|220653.84479646|130.22654414|15610|1 +638441.20872545|220658.35935027|130.4090636|15611|1 +638436.24794349|220662.91702722|130.62721816|15612|1 +638431.36846724|220667.39698588|130.63575719|15613|1 +638426.38939788|220671.96793241|130.60416836|15614|1 +638421.46630174|220676.48945181|130.71670125|15615|1 +638416.52712352|220681.02266387|130.61087494|15616|1 +638411.59702395|220685.54971873|130.66044411|15617|1 +638406.7028149|220690.04166085|130.56086859|15618|1 +638401.75616862|220694.58126463|130.42292325|15619|1 +638396.83896927|220699.0906183|130.06103764|15620|1 +638391.90115945|220703.62453937|130.09676576|15621|1 +638386.97408342|220708.14198182|129.66570284|15622|1 +638382.03985569|220712.66520422|129.17828045|15623|1 +638377.04777037|220717.24037108|128.60356089|15624|1 +638372.13439226|220721.74914711|128.45144894|15625|1 +638367.21477785|220726.26294091|128.24920042|15626|1 +638362.34186996|220730.7339504|128.05855121|15627|1 +638357.38004079|220735.2882957|127.98028606|15628|1 +638352.56285761|220739.71005201|127.93089363|15629|1 +638347.96803061|220743.97947642|131.56656736|15630|1 +638343.02348154|220748.50548197|130.60894947|15631|1 +638338.03983234|220753.06954683|129.801146|15632|1 +638333.247466|220757.48063529|130.6127632|15633|1 +638328.49700074|220761.85959302|131.87664207|15634|1 +638328.1471218|220762.12763297|128.08347997|15635|2 +638324.75351536|220765.4647327|143.88967237|15636|1 +638323.51608002|220766.41538857|130.66286257|15637|2 +638320.24903285|220769.65168199|147.56922258|15638|1 +638314.29968212|220774.94641515|135.64751712|15639|1 +638313.58065838|220775.50176001|128.17139106|15640|2 +638309.95367447|220779.01140982|141.00692164|15641|1 +638308.69580475|220779.98543357|128.10484615|15642|2 +638303.88183142|220784.40749628|128.29019335|15643|1 +638301.28256568|220787.10646579|150.61569388|15644|1 +638295.75732658|220792.08639625|144.00873511|15645|1 +638295.19337431|220792.52625441|138.44837502|15646|2 +638294.07804156|220793.39616525|127.45164751|15647|3 +638291.54167303|220796.03864237|149.87127272|15648|1 +638289.19746183|220797.87117654|127.05231294|15649|2 +638286.68773782|220800.48916299|149.47236603|15650|1 +638284.33163666|220802.33506164|126.8259077|15651|2 +638281.02227024|220805.57080727|140.94315796|15652|1 +638280.024599|220806.35410219|131.47161482|15653|2 +638279.51956371|220806.75061715|126.67700487|15654|3 +638276.68819114|220809.61458062|145.57989817|15655|1 +638274.60908989|220811.25035155|126.08386779|15656|2 +638264.91324099|220820.14619447|125.70454135|15657|1 +638262.09952806|220822.98158024|143.73504894|15658|1 +638260.03959013|220824.61190486|125.10085606|15659|2 +638257.80941279|220826.98811856|148.59865948|15660|1 +638257.23844722|220827.44086043|143.49423526|15661|2 +638255.15666577|220829.09158973|124.88320379|15662|3 +638256.60836564|220825.27580621|147.55690703|15663|1 +638259.36034664|220822.47850432|128.83735174|15664|1 +638258.95211389|220822.80190835|125.14269545|15665|2 +638264.45450506|220817.82329867|131.14235054|15666|1 +638270.30902992|220812.56289694|140.1259969|15667|1 +638268.78233393|220813.76762655|125.97170697|15668|2 +638275.9049434|220807.5095909|146.92727908|15669|1 +638275.33749706|220807.95645312|141.60110981|15670|2 +638273.68793929|220809.25547465|126.11807042|15671|3 +638281.19080967|220802.70264935|150.97463083|15672|1 +638285.97436985|220798.29783302|150.77502401|15673|1 +638284.84183933|220799.18592826|139.87605817|15674|2 +638283.46914883|220800.26234948|126.66594506|15675|3 +638290.69145506|220793.93870255|149.47542632|15676|1 +638288.37642915|220795.7500566|126.9101725|15677|2 +638295.32568568|220789.63745034|146.8708266|15678|1 +638293.31889264|220791.20402534|127.05274082|15679|2 +638300.57464395|220784.86352554|150.85137299|15680|1 +638304.36270247|220781.22643598|140.14740959|15681|1 +638303.77246614|220781.68501157|134.16274897|15682|2 +638303.14675347|220782.17114999|127.81838864|15683|3 +638310.02049973|220776.12961876|147.89680324|15684|1 +638309.43870023|220776.58050883|141.91703535|15685|2 +638308.07291631|220777.63898066|127.87945481|15686|3 +638314.61327734|220771.85938925|144.78523811|15687|1 +638313.52367838|220772.70164468|133.43113634|15688|2 +638312.96994653|220773.12967706|127.66102119|15689|3 +638319.70040494|220767.21423638|147.33921755|15690|1 +638323.15024848|220763.81482376|131.41257645|15691|1 +638328.18445543|220759.20924065|133.31813836|15692|1 +638332.90909652|220754.82653241|130.82521578|15693|1 +638337.82268708|220750.30664302|130.93444654|15694|1 +638342.86674299|220745.68034582|132.00529494|15695|1 +638347.53236416|220741.34142187|128.7643328|15696|1 +638352.35856184|220736.88809965|127.89030068|15697|1 +638357.36005947|220732.28681695|127.95297605|15698|1 +638362.26498484|220727.77455736|128.03517585|15699|1 +638367.26946271|220723.17177178|128.18473911|15700|1 +638372.22967172|220718.61072062|128.40916307|15701|1 +638377.23941754|220714.00485523|128.68310038|15702|1 +638382.21599452|220709.43261671|129.18101517|15703|1 +638387.41400105|220704.69830873|132.63443919|15704|1 +638392.25320851|220700.21040283|130.13976787|15705|1 +638397.19664493|220695.6640196|130.30765563|15706|1 +638402.18192911|220691.07841328|130.41978855|15707|1 +638407.16707353|220686.49329292|130.55677581|15708|1 +638412.15158059|220681.90902857|130.71238523|15709|1 +638417.17274908|220677.28917652|130.73181664|15710|1 +638422.12995013|220672.72504492|130.53233074|15711|1 +638427.10936267|220668.14548785|130.68778203|15712|1 +638432.12111385|220663.53207823|130.63250157|15713|1 +638437.07888218|220658.96609174|130.50112328|15714|1 +638442.03486959|220654.40156824|130.35709458|15715|1 +638447.03181986|220649.79803967|130.11473679|15716|1 +638452.03466683|220645.19067399|129.98460494|15717|1 +638457.0280488|220640.58991854|129.70488192|15718|1 +638461.97551261|220636.03194585|129.46682156|15719|1 +638466.94517862|220631.44714331|128.76909531|15720|1 +638471.9396831|220626.84590425|128.52657939|15721|1 +638476.94142717|220622.24011435|128.43376627|15722|1 +638481.93604182|220617.63914688|128.21618841|15723|1 +638486.97616485|220612.99587024|127.9637289|15724|1 +638491.96749999|220608.39723025|127.69630283|15725|1 +638497.00695609|220603.75459908|127.44414097|15726|1 +638501.99436076|220599.1585287|127.10186351|15727|1 +638507.02876102|220594.5190721|126.74385673|15728|1 +638512.06243144|220589.88003486|126.36728362|15729|1 +638517.04613744|220585.28608787|125.93142098|15730|1 +638522.08143931|220580.64600975|125.58628787|15731|1 +638527.11900613|220576.00464964|125.29753282|15732|1 +638532.10372819|220571.40987762|124.86793028|15733|1 +638537.13579649|220566.77131395|124.41702667|15734|1 +638542.1647744|220562.13411182|123.86011071|15735|1 +638547.19642184|220557.49525031|123.35954491|15736|1 +638552.28342542|220552.80866196|123.08186828|15737|1 +638557.32950131|220548.16279207|123.02524837|15738|1 +638562.37676105|220543.51663512|123.02504373|15739|1 +638567.42517509|220538.87030085|123.08750516|15740|1 +638572.47146777|220534.22514467|123.09395129|15741|1 +638577.51452573|220529.58139516|122.98814358|15742|1 +638587.64201953|220520.25212137|122.50711152|15743|1 +638592.682305|220515.60902199|122.26449328|15744|1 +638597.77185041|220510.92162435|122.08973151|15745|1 +638602.81625207|220506.27757358|122.04753865|15746|1 +638607.86101799|220501.63364896|122.0367951|15747|1 +638612.95381488|220496.94593159|122.05052452|15748|1 +638617.9977456|220492.30191758|121.97775672|15749|1 +638623.04133441|220487.65779094|121.87392099|15750|1 +638628.13103766|220482.96910412|121.6137131|15751|1 +638633.17647521|220478.32522869|121.64785062|15752|1 +638638.26905591|220473.63743574|121.6383442|15753|1 +638643.36272011|220468.95094386|121.7917398|15754|1 +638648.4085997|220464.30907608|121.9954115|15755|1 +638653.45416299|220459.66820792|122.24925697|15756|1 +638658.59402256|220454.93870241|122.36032018|15757|1 +638663.59094993|220450.34246309|122.60799859|15758|1 +638668.6826251|220445.65866149|122.81937215|15759|1 +638673.77374587|220440.97678392|123.13114909|15760|1 +638678.86506081|220436.2907993|123.16213331|15761|1 +638683.91018077|220431.64313872|122.89886513|15762|1 +638688.99693086|220426.9586547|122.73672587|15763|1 +638694.04301702|220422.31117941|122.548923|15764|1 +638699.1386108|220417.61658111|122.24395496|15765|1 +638704.23598528|220412.91956687|121.88322277|15766|1 +638709.28741239|220408.26441971|121.49637119|15767|1 +638714.38644524|220403.56732055|121.23640514|15768|1 +638719.48539054|220398.87163416|121.07062888|15769|1 +638724.49000319|220394.26258828|120.90140167|15770|1 +638729.58742765|220389.5713118|120.9486919|15771|1 +638734.68892045|220384.87349898|120.79657065|15772|1 +638739.69263454|220380.26803354|120.82139709|15773|1 +638744.79240084|220375.57429842|120.84484687|15774|1 +638749.84473114|220370.92439415|120.88492822|15775|1 +638759.95687719|220361.61458072|120.74101114|15776|1 +638765.0797658|220356.88886395|119.99808755|15777|1 +638770.08763884|220352.28025906|120.06748811|15778|1 +638775.15631822|220347.60978007|119.70934181|15779|1 +638779.97079709|220343.31395403|129.38493802|15780|1 +638780.28534538|220342.87890743|118.99903956|15781|2 +638784.86160244|220338.86041289|132.83020438|15782|1 +638785.31416289|220338.24345267|118.52596982|15783|2 +638789.89651051|220334.25008895|134.54074525|15784|1 +638795.06138758|220329.42672274|129.59266529|15785|1 +638800.05729284|220324.84957593|131.11300344|15786|1 +638805.15590872|220320.13797555|129.78234711|15787|1 +638810.11056912|220315.59583033|131.09306973|15788|1 +638815.15360021|220310.95748358|131.33492522|15789|1 +638820.33636788|220306.14320353|128.19699885|15790|1 +638820.91225753|220305.4173908|114.21548942|15791|2 +638825.33446669|220301.5313097|127.38347479|15792|1 +638825.90438305|220300.8191565|113.98354962|15793|2 +638830.39942449|220296.86828676|127.30213075|15794|1 +638835.46475373|220292.20527943|127.24605964|15795|1 +638840.3820283|220287.69459902|128.3464877|15796|1 +638845.35065835|220283.14922035|130.33485403|15797|1 +638850.42051243|220278.46720116|129.22111513|15798|1 +638851.1521961|220277.58623504|114.39062326|15799|2 +638855.47993078|220273.79890185|128.40061474|15800|1 +638861.18047724|220268.36918279|115.33326529|15801|1 +638866.16976438|220263.7774648|115.3757558|15802|1 +638871.19250173|220259.15912942|115.71008955|15803|1 +638876.18908648|220254.55949665|115.66534801|15804|1 +638881.18162586|220249.96498885|115.72018198|15805|1 +638886.22994916|220245.31772943|115.66872455|15806|1 +638891.18004947|220240.76162155|115.68034247|15807|1 +638896.2349933|220236.09656583|114.79546448|15808|1 +638901.27210137|220231.45281231|114.25929148|15809|1 +638906.28122277|220226.84160796|114.20851308|15810|1 +638911.28490282|220222.2369914|114.26971877|15811|1 +638916.20047409|220217.71193107|114.23087456|15812|1 +638921.22112482|220213.0889304|114.09293851|15813|1 +638926.19016422|220208.51449065|114.03539772|15814|1 +638931.23808534|220203.86189122|113.57439238|15815|1 +638936.2597685|220199.22972921|112.8518955|15816|1 +638941.18996621|220194.69063361|112.76854229|15817|1 +638946.21840152|220190.06139057|112.69304907|15818|1 +638951.14019081|220185.53238391|112.77693249|15819|1 +638956.1332508|220180.93406702|112.5884878|15820|1 +638961.06637179|220176.39334669|112.57868373|15821|1 +638966.0379483|220171.81941272|112.71898242|15822|1 +638970.95841379|220167.29320538|112.91339885|15823|1 +638975.86354043|220162.78398206|113.3121474|15824|1 +638980.89544181|220158.1453686|112.79437332|15825|1 +638985.77801095|220153.65318039|112.93014205|15826|1 +638990.73179172|220149.09217696|112.8256738|15827|1 +638995.61406234|220144.60096156|113.01010942|15828|1 +639000.57645406|220140.03144468|112.86169958|15829|1 +639005.53649979|220135.46487321|112.76889575|15830|1 +639010.45590472|220130.93482151|112.61763957|15831|1 +639015.37576|220126.40471125|112.49080054|15832|1 +639020.30774181|220121.86206411|112.26457204|15833|1 +639025.25167333|220117.30713084|111.94522345|15834|1 +639030.19346876|220112.75494302|111.68133205|15835|1 +639034.81814911|220108.53982721|114.65863535|15836|1 +639040.03509152|220103.68953738|111.18053371|15837|1 +639044.94240265|220099.16838926|110.86922186|15838|1 +639046.6198755|220095.00214457|110.69934352|15839|1 +639041.65737334|220099.56012786|110.96290935|15840|1 +639036.64535303|220104.16413151|111.26638911|15841|1 +639031.67847519|220108.72766509|111.64109257|15842|1 +639026.68283975|220113.31522046|111.84559212|15843|1 +639021.69675649|220117.89304036|111.98199337|15844|1 +639016.68725412|220122.49624923|112.39695492|15845|1 +639011.65992113|220127.11172165|112.51829659|15846|1 +639006.72873845|220131.63947556|112.68192414|15847|1 +639001.71138993|220136.24506484|112.75373386|15848|1 +638996.73616734|220140.81337534|112.92702595|15849|1 +638991.74465977|220145.39192918|112.76335189|15850|1 +638986.73471473|220149.99069213|112.83522672|15851|1 +638981.7866357|220154.53083976|112.77878354|15852|1 +638976.74653116|220159.15499961|112.68754242|15853|1 +638971.7841825|220163.71134564|112.85413723|15854|1 +638966.79767497|220168.28611793|112.75216186|15855|1 +638961.81748161|220172.85430072|112.5942363|15856|1 +638956.78678872|220177.46952058|112.48455905|15857|1 +638951.79190079|220182.05447022|112.56246143|15858|1 +638946.75847336|220186.67339919|112.53989532|15859|1 +638941.72103699|220191.29712875|112.59821746|15860|1 +638936.72860145|220195.88057484|112.73206072|15861|1 +638931.67512569|220200.52300403|113.07644039|15862|1 +638926.67580467|220205.11343156|113.37195782|15863|1 +638921.60505533|220209.77377716|114.04003931|15864|1 +638916.52492562|220214.43543697|114.18580745|15865|1 +638911.55370685|220218.99490856|114.17686844|15866|1 +638906.53444507|220223.59883608|114.19253263|15867|1 +638901.51778057|220228.20019547|114.19579756|15868|1 +638896.45198206|220232.84727247|114.24280873|15869|1 +638891.3785108|220237.51467936|115.24200556|15870|1 +638886.34367311|220242.1385234|115.66266909|15871|1 +638881.34150762|220246.72514368|115.56673987|15872|1 +638876.28833886|220251.35964213|115.54613644|15873|1 +638871.28755854|220255.94531487|115.47515458|15874|1 +638866.24169512|220260.57195834|115.37384894|15875|1 +638861.19511398|220265.19977483|115.31009456|15876|1 +638855.5057615|220270.59377575|127.85018212|15877|1 +638850.4691901|220275.21510311|127.98170923|15878|1 +638851.13405397|220274.41798614|114.61603321|15879|2 +638845.40447755|220279.88469278|129.71986708|15880|1 +638840.37289163|220284.48744494|128.84982542|15881|1 +638841.08311433|220283.62443503|113.74774959|15882|2 +638835.53508195|220288.86732039|124.7617319|15883|1 +638836.03045012|220288.2610149|113.91521877|15884|2 +638830.38915989|220293.6240982|127.40585486|15885|1 +638825.31306969|220298.28126806|127.50864879|15886|1 +638820.2607081|220302.92523301|128.22716451|15887|1 +638815.15839154|220307.61692281|129.07901189|15888|1 +638810.25866261|220312.06820606|126.03695893|15889|1 +638804.99989725|220316.96241971|131.10624105|15890|1 +638799.86516393|220321.70058526|133.15732925|15891|1 +638794.90042285|220326.21706322|130.51076922|15892|1 +638795.3617218|220325.6081868|117.23929229|15893|2 +638789.80055286|220330.93144458|133.152883|15894|1 +638784.80428947|220335.48834692|131.32997667|15895|1 +638785.22175526|220334.92308083|118.29920181|15896|2 +638779.71464079|220340.17168244|132.42167966|15897|1 +638774.92706246|220344.43558869|123.33943447|15898|1 +638775.04211342|220344.27512765|119.41323836|15899|2 +638769.96686238|220348.93231804|119.58067964|15900|1 +638764.87868026|220353.60886886|120.28532641|15901|1 +638759.80019396|220358.27268002|120.71565449|15902|1 +638754.75331541|220362.89011369|119.90374894|15903|1 +638749.65967073|220367.57864241|121.10896151|15904|1 +638744.60235012|220372.21244724|120.78458066|15905|1 +638739.53943099|220376.85522591|120.73519753|15906|1 +638734.4751002|220381.50077649|120.79223602|15907|1 +638729.41294363|220386.14318654|120.76832115|15908|1 +638724.30482414|220390.82672614|120.66768523|15909|1 +638719.28834982|220395.43008271|120.852372|15910|1 +638714.17812296|220400.11886129|120.98983365|15911|1 +638709.11508116|220404.76598359|121.24810678|15912|1 +638704.05245119|220409.41377157|121.58160337|15913|1 +638698.99006826|220414.06307821|122.04029257|15914|1 +638693.88311382|220418.75057042|122.30428628|15915|1 +638688.82471775|220423.39392497|122.60112457|15916|1 +638683.72049542|220428.07733651|122.75344116|15917|1 +638678.67064651|220432.70978172|122.83224581|15918|1 +638673.61502529|220437.34804199|122.94861103|15919|1 +638668.5602076|220441.97962398|122.64024784|15920|1 +638663.45717091|220446.65695233|122.43775747|15921|1 +638658.40141344|220451.29103815|122.24862445|15922|1 +638653.2976787|220455.96943388|122.0781415|15923|1 +638648.19344399|220460.64793558|121.88309255|15924|1 +638643.18396363|220465.2392507|121.67610942|15925|1 +638638.07909766|220469.919015|121.53169004|15926|1 +638632.973768|220474.59911755|121.38147565|15927|1 +638627.91932291|220479.23746046|121.58762162|15928|1 +638622.86352626|220483.87485563|121.63773029|15929|1 +638617.7614835|220488.55619678|121.79481869|15930|1 +638612.70673941|220493.19348514|121.90794689|15931|1 +638607.6504632|220497.8306897|121.91503485|15932|1 +638602.54554582|220502.51160479|121.85447098|15933|1 +638597.53803829|220507.10495607|121.92979676|15934|1 +638592.43504347|220511.78592695|122.00111348|15935|1 +638587.3828817|220516.42237986|122.22783498|15936|1 +638582.33111736|220521.05854398|122.46098401|15937|1 +638577.28154822|220525.69382299|122.77554218|15938|1 +638572.22812851|220530.33027481|122.92161728|15939|1 +638567.21859368|220534.92447851|122.92870523|15940|1 +638562.15780032|220539.56419195|122.82518576|15941|1 +638557.09693338|220544.2043188|122.74688341|15942|1 +638552.04221845|220548.8419299|122.89367474|15943|1 +638546.99412677|220553.47515655|123.27178265|15944|1 +638541.99979937|220558.06071909|123.82886604|15945|1 +638537.00326255|220562.64707828|124.29842902|15946|1 +638531.9567559|220567.27820771|124.68931757|15947|1 +638526.96380754|220571.86221087|125.22755556|15948|1 +638521.91399168|220576.49488445|125.51252478|15949|1 +638516.91424458|220581.08240647|125.85720211|15950|1 +638511.86493801|220585.71476463|126.15492406|15951|1 +638506.86932262|220590.29978077|126.59326097|15952|1 +638501.87121986|220594.88619795|126.96910855|15953|1 +638496.87434086|220599.47182939|127.36988489|15954|1 +638491.87698558|220604.05770764|127.75813174|15955|1 +638486.86698096|220608.65153339|127.88425452|15956|1 +638481.86312094|220613.24162472|128.14764362|15957|1 +638476.86241606|220617.82976736|128.47965193|15958|1 +638472.06398411|220622.27334535|131.75804442|15959|1 +638466.88704934|220626.97664004|128.75277999|15960|1 +638461.92608621|220631.52654257|128.96193043|15961|1 +638456.94201109|220636.10390292|129.61792891|15962|1 +638451.98142395|220640.6536908|129.84541316|15963|1 +638447.01871276|220645.2050725|130.0477454|15964|1 +638442.0537404|220649.75816873|130.22493494|15965|1 +638437.13851156|220654.26620599|130.44698694|15966|1 +638432.1730517|220658.81998362|130.64238006|15967|1 +638427.19504354|220663.38273868|130.65690013|15968|1 +638422.25123832|220667.91148242|130.48547769|15969|1 +638417.27941029|220672.47045303|130.63670598|15970|1 +638412.34374223|220676.99405334|130.63291085|15971|1 +638407.3995767|220681.52403693|130.52915884|15972|1 +638402.44738354|220686.06016316|130.33796082|15973|1 +638397.50351201|220690.59063652|130.2896846|15974|1 +638392.48784048|220695.18283934|129.94202141|15975|1 +638387.59412756|220699.66835887|129.97449391|15976|1 +638382.61271355|220704.22742958|129.50856793|15977|1 +638377.67539139|220708.74582772|129.03009385|15978|1 +638372.67770943|220713.31798138|128.43323607|15979|1 +638367.69673875|220717.87825338|128.08508918|15980|1 +638362.78096588|220722.38204077|127.97896521|15981|1 +638357.85688387|220726.89239737|127.79782242|15982|1 +638352.93994304|220731.39774089|127.72817072|15983|1 +638348.00921053|220735.92166023|128.08136847|15984|1 +638343.22023629|220740.32285637|128.96688828|15985|1 +638338.39349456|220744.76028589|129.96417824|15986|1 +638333.63665384|220749.1368004|131.19559391|15987|1 +638328.44881379|220753.85012681|128.21731393|15988|1 +638323.70634502|220758.22332564|130.15644596|15989|1 +638318.72935345|220762.76925276|129.0518042|15990|1 +638315.44264475|220766.01237737|145.7497486|15991|1 +638313.7220037|220767.33930525|127.68021076|15992|2 +638310.99689634|220770.14558163|150.00744142|15993|1 +638308.80780342|220771.83814662|127.33226851|15994|2 +638306.11695675|220774.61402201|149.73481566|15995|1 +638300.77594945|220779.44112033|144.84183011|15996|1 +638299.33247568|220780.56273022|130.28765682|15997|2 +638296.35640627|220783.5458936|148.7893645|15998|1 +638291.20471551|220788.22769328|145.93672361|15999|1 +638289.44474431|220789.60161134|128.64933494|16000|2 +638286.81530532|220792.30786578|150.10383573|16001|1 +638284.39348465|220794.20266103|126.61714794|16002|2 +638281.92322462|220796.78099979|149.37373|16003|1 +638279.53592857|220798.65282715|126.51198205|16004|2 +638274.68561359|220803.09762598|126.49907119|16005|1 +638271.78841766|220806.00493913|144.75391902|16006|1 +638269.81635024|220807.55763454|126.33065322|16007|2 +638267.31731874|220810.14183435|147.61774065|16008|1 +638264.95693204|220812.00395047|125.83078506|16009|2 +638262.10551535|220814.86970015|144.11893326|16010|1 +638256.88913382|220819.59653098|140.24692|16011|1 +638255.1925951|220820.94006847|124.95579486|16012|2 +638252.71949829|220823.49442209|145.81062873|16013|1 +638255.09321009|220817.88377491|143.54503226|16014|1 +638260.36001513|220813.10342107|147.53770816|16015|1 +638257.96142576|220814.99847729|125.70728537|16016|2 +638265.05450873|220808.76978043|145.93224016|16017|1 +638262.88180639|220810.48300274|125.91664046|16018|2 +638269.95047558|220804.28366588|146.63783571|16019|1 +638267.72975733|220806.03126054|125.93010013|16020|2 +638274.94136435|220799.71717986|147.82370058|16021|1 +638272.64449805|220801.52096544|126.13857154|16022|2 +638279.86331528|220795.20545436|148.4024199|16023|1 +638277.54661597|220797.02095594|126.25373683|16024|2 +638284.62144038|220790.82235554|147.4316307|16025|1 +638282.46402198|220792.50935108|126.54197098|16026|2 +638289.32607145|220786.48095736|145.93295639|16027|1 +638287.35878782|220788.01583196|126.63767696|16028|2 +638293.65044053|220782.42860921|140.15944609|16029|1 +638292.32103727|220783.46339769|126.9478819|16030|2 +638299.56347908|220777.14756291|150.73710997|16031|1 +638304.03616115|220772.97970077|146.43121535|16032|1 +638302.15661399|220774.43565604|127.24703633|16033|2 +638309.2967541|220768.20171062|150.18179392|16034|1 +638308.80572068|220768.58111634|145.10087528|16035|2 +638308.42140715|220768.87806303|141.12423564|16036|3 +638313.94151676|220763.90009282|147.5981232|16037|1 +638312.02824581|220765.37455662|127.52450832|16038|2 +638316.96350815|220760.84499739|127.69693535|16039|1 +638322.04346547|220756.20492874|129.45824532|16040|1 +638326.82754883|220751.7920187|128.05329571|16041|1 +638332.15930645|220746.95403016|132.17968465|16042|1 +638336.97156014|220742.51273938|130.59294112|16043|1 +638341.97718463|220737.93238808|131.74602653|16044|1 +638346.59043941|220733.64115911|127.83403423|16045|1 +638351.53352977|220729.10043268|127.71777133|16046|1 +638356.49160203|220724.54874704|127.80018507|16047|1 +638361.48953674|220719.95943891|127.80742185|16048|1 +638366.45811455|220715.40065275|128.06986217|16049|1 +638371.49392578|220710.78400606|128.6057003|16050|1 +638376.48141862|220706.21222973|129.17901529|16051|1 +638381.49031975|220701.61654927|129.44749246|16052|1 +638386.50615373|220697.01625819|129.84047391|16053|1 +638391.77895624|220692.23846043|134.3969863|16054|1 +638396.50618493|220687.84020036|130.30293033|16055|1 +638401.44690057|220683.30502384|130.42147217|16056|1 +638406.47685456|220678.68702319|130.47267845|16057|1 +638411.46356391|220674.11001241|130.61659553|16058|1 +638416.43415412|220669.54483623|130.54866466|16059|1 +638421.4497319|220664.93804829|130.45674451|16060|1 +638426.43661609|220660.36245623|130.66895523|16061|1 +638431.45352767|220655.75593063|130.6268926|16062|1 +638436.41355853|220651.19984836|130.45882811|16063|1 +638441.37344123|220646.64408279|130.30302335|16064|1 +638446.42490752|220642.00354708|130.09424498|16065|1 +638451.38201308|220637.45008812|129.91955762|16066|1 +638456.35110073|220632.87694443|129.12298139|16067|1 +638461.75853558|220628.01288544|136.28384234|16068|1 +638461.35505014|220628.28045681|128.94368035|16069|2 +638466.38771587|220623.66530492|129.31323062|16070|1 +638471.45408538|220619.0288354|130.36905666|16071|1 +638476.36690871|220614.49218117|128.4868329|16072|1 +638481.36316839|220609.90139475|128.20768659|16073|1 +638486.40728993|220605.2668243|127.93735836|16074|1 +638491.40676267|220600.67424742|127.73937936|16075|1 +638496.39868217|220596.0864289|127.38533514|16076|1 +638501.43708021|220591.45557837|127.00301353|16077|1 +638506.42746853|220586.86866303|126.61150176|16078|1 +638511.46277315|220582.23954031|126.14823609|16079|1 +638516.50347317|220577.60722409|125.80997699|16080|1 +638521.49642684|220573.01868749|125.46842506|16081|1 +638526.53898363|220568.38530473|125.17409825|16082|1 +638531.57440048|220563.75569423|124.68011811|16083|1 +638536.56605833|220559.16759434|124.28237415|16084|1 +638541.65106988|220554.49281642|123.81123918|16085|1 +638546.68569968|220549.86283211|123.23649171|16086|1 +638551.67591888|220545.27469069|122.73891179|16087|1 +638556.77255962|220540.59382502|122.5934041|16088|1 +638561.82729108|220535.95442558|122.6625442|16089|1 +638566.88279571|220531.31511396|122.78812749|16090|1 +638571.93200173|220526.67854193|122.69523995|16091|1 +638576.97849588|220522.04298789|122.49631216|16092|1 +638582.0231641|220517.4079008|122.2100965|16093|1 +638587.06901212|220512.77226663|121.96153443|16094|1 +638592.11714745|220508.13594427|121.81310598|16095|1 +638597.16628295|220503.49941531|121.71486992|16096|1 +638602.26496252|220498.81899572|121.728404|16097|1 +638607.31680058|220494.18254486|121.81185024|16098|1 +638612.36609989|220489.54599214|121.7205068|16099|1 +638617.41571194|220484.9094285|121.64808316|16100|1 +638622.46402528|220480.2724108|121.45709909|16101|1 +638627.56274367|220475.59238072|121.49725486|16102|1 +638632.6118731|220470.95507823|121.33798984|16103|1 +638637.66299106|220466.31901823|121.39763283|16104|1 +638642.7146065|220461.68408438|121.56994824|16105|1 +638647.8134804|220457.00588757|121.74891442|16106|1 +638652.86421823|220452.37169859|121.91545343|16107|1 +638657.91445259|220447.73685057|122.00092745|16108|1 +638663.01231981|220443.06032071|122.23087666|16109|1 +638668.01440714|220438.47141316|122.44110611|16110|1 +638673.11142423|220433.79560308|122.66539985|16111|1 +638678.68528775|220428.68020974|122.74327432|16112|1 +638683.20594191|220424.52660155|122.48808939|16113|1 +638688.30481125|220419.8438214|122.33219161|16114|1 +638693.35677987|220415.20407458|122.17543808|16115|1 +638698.41182869|220410.55803087|121.76896905|16116|1 +638703.46845824|220405.91046384|121.35646317|16117|1 +638708.57360226|220401.21928899|121.00832559|16118|1 +638713.630674|220396.57413271|120.7963195|16119|1 +638718.68728744|220391.93089261|120.69072573|16120|1 +638723.74513201|220387.28618816|120.56037064|16121|1 +638728.80218103|220382.64362056|120.53017707|16122|1 +638733.85817422|220378.00333993|120.59389424|16123|1 +638738.91589501|220373.36061801|120.59536392|16124|1 +638743.97549697|220368.71540015|120.54084621|16125|1 +638749.08138733|220364.02915024|120.58908522|16126|1 +638754.10757559|220359.40727445|120.00792883|16127|1 +638759.15389449|220354.78333482|120.60349367|16128|1 +638764.24368865|220350.09655102|119.55104418|16129|1 +638769.2508975|220345.50456729|119.86302576|16130|1 +638774.2530363|220340.94215893|121.96335757|16131|1 +638778.98378374|220336.74875658|132.67651113|16132|1 +638784.0225189|220332.10724499|131.50840335|16133|1 +638788.98963202|220327.58253606|134.00700002|16134|1 +638794.02769009|220322.96222929|134.31527949|16135|1 +638799.09313875|220318.28816571|132.56737339|16136|1 +638804.17799665|220313.60752708|131.70959147|16137|1 +638804.78880062|220312.82181858|115.53431388|16138|2 +638809.3181498|220308.84036722|128.30339257|16139|1 +638814.39090946|220304.16181844|126.81888486|16140|1 +638819.48989596|220299.46813619|125.97512072|16141|1 +638824.47446465|220294.90205763|126.75482353|16142|1 +638825.03629304|220294.20544625|113.74839141|16143|2 +638829.4978957|220290.28791518|126.64288595|16144|1 +638834.49915997|220285.70132705|127.0484341|16145|1 +638839.3954737|220281.24202216|129.67901368|16146|1 +638840.15228472|220280.32468447|113.66726132|16147|2 +638844.50905066|220276.51951261|127.7223478|16148|1 +638845.17173798|220275.72171989|114.09333849|16149|2 +638849.53026283|220271.90935812|127.74775095|16150|1 +638850.0550211|220271.28170218|117.24859407|16151|2 +638854.58992401|220267.25387359|127.05056421|16152|1 +638860.23690096|220261.90525632|115.27203169|16153|1 +638865.22567063|220257.32633483|115.40013576|16154|1 +638870.27063559|220252.69411753|115.40285188|16155|1 +638875.26476778|220248.10960339|115.48107981|16156|1 +638880.26243303|220243.52133655|115.52188671|16157|1 +638885.32603268|220238.8687617|115.28839352|16158|1 +638890.38310327|220234.21319061|114.40821292|16159|1 +638895.4035942|220229.60029012|114.18164955|16160|1 +638900.41454513|220224.99875156|114.14180074|16161|1 +638905.42008051|220220.40375035|114.21392672|16162|1 +638910.43419155|220215.79941734|114.1803287|16163|1 +638915.40071014|220211.23902025|114.16507379|16164|1 +638920.43103186|220206.61732655|113.95116084|16165|1 +638925.49304642|220201.96076947|113.32092828|16166|1 +638930.45477509|220197.40704364|113.46708709|16167|1 +638935.53201279|220192.73481806|112.71294557|16168|1 +638940.48065137|220188.18731848|112.44184529|16169|1 +638945.51026894|220183.56892255|112.41480503|16170|1 +638950.49368173|220178.99291895|112.38672297|16171|1 +638955.47921072|220174.41497631|112.35852928|16172|1 +638960.45355175|220169.84964088|112.49783269|16173|1 +638965.38330946|220165.32485561|112.61063533|16174|1 +638970.35200813|220160.76626664|112.86122519|16175|1 +638975.31537467|220156.20565155|112.6136398|16176|1 +638980.2962193|220151.63455332|112.76466344|16177|1 +638985.22892928|220147.10785945|112.93217914|16178|1 +638990.19496233|220142.54559414|112.7398277|16179|1 +638995.13125144|220138.01571415|112.91295236|16180|1 +639000.09738219|220133.45415133|112.77598371|16181|1 +639005.06167938|220128.89496786|112.68840748|16182|1 +639009.98419457|220124.37348755|112.55472235|16183|1 +639014.96780597|220119.79453115|112.31813167|16184|1 +639019.90544582|220115.25781093|112.08484311|16185|1 +639024.88859969|220110.68023807|111.91610889|16186|1 +639029.78810724|220106.17787457|111.63597659|16187|1 +639034.74669666|220101.62031641|111.28436014|16188|1 +639039.69501747|220097.07408087|111.06860544|16189|1 +639044.65659124|220092.51431766|110.753731|16190|1 +639044.58644912|220089.27006998|110.73811332|16191|1 +639039.57553918|220093.86377778|110.95251927|16192|1 +639034.50941586|220098.50944167|111.26271491|16193|1 +639029.50314|220103.09914107|111.49592905|16194|1 +639024.45034659|220107.73161889|111.73854728|16195|1 +639019.40311394|220112.3586459|111.95666464|16196|1 +639014.35019377|220116.99217886|112.26787417|16197|1 +639009.30980512|220121.61282838|112.48026163|16198|1 +639004.28493879|220126.21733698|112.5565548|16199|1 +638999.2142639|220130.86380782|112.63058764|16200|1 +638994.22700122|220135.4363636|112.88916772|16201|1 +638989.18891243|220140.04861061|112.65372116|16202|1 +638984.16771652|220144.65076082|112.80483782|16203|1 +638979.12455288|220149.26912121|112.67506873|16204|1 +638974.09006039|220153.87839761|112.46484859|16205|1 +638969.07598217|220158.47399441|112.6162629|16206|1 +638964.04729333|220163.07758937|112.38142095|16207|1 +638959.00630215|220167.69487868|112.32047572|16208|1 +638953.92040014|220172.35306516|112.2397642|16209|1 +638948.88235312|220176.9678153|112.19165541|16210|1 +638943.8884786|220181.54319998|112.22547667|16211|1 +638938.79823072|220186.20726211|112.28219891|16212|1 +638933.7503233|220190.83407039|112.45196563|16213|1 +638928.62812149|220195.53453828|113.01895541|16214|1 +638923.5407815|220200.1967866|113.13898553|16215|1 +638918.47129596|220204.85083056|113.75103312|16216|1 +638913.37687522|220209.52377366|114.07081889|16217|1 +638908.35189011|220214.12914102|114.11136533|16218|1 +638903.28340081|220218.77377855|114.10836086|16219|1 +638898.21944998|220223.41364263|114.06208452|16220|1 +638893.1552005|220228.05420877|114.04717377|16221|1 +638888.08282786|220232.70447582|114.19433718|16222|1 +638882.97014695|220237.40168657|115.05760714|16223|1 +638877.89387194|220242.05769357|115.3611148|16224|1 +638872.84149376|220246.68648234|115.28511929|16225|1 +638867.78706032|220251.31801782|115.27158521|16226|1 +638862.74150682|220255.93949021|115.12123129|16227|1 +638857.64599194|220260.60756343|115.02811121|16228|1 +638852.11265347|220265.81025668|124.4790137|16229|1 +638846.87693031|220270.65062643|127.52220148|16230|1 +638847.53091978|220269.86725192|114.35576951|16231|2 +638841.80302034|220275.31252292|128.40895843|16232|1 +638836.81249001|220279.87430925|127.60072708|16233|1 +638837.46921325|220279.07700395|113.61415748|16234|2 +638831.7893779|220284.46102509|126.43869336|16235|1 +638832.3707501|220283.75001418|113.68453472|16236|2 +638826.76990275|220289.05776934|126.23506817|16237|1 +638827.31500732|220288.38600018|113.90944237|16238|2 +638821.67283353|220293.75113655|127.85843279|16239|1 +638816.662916|220298.3211216|126.36623252|16240|1 +638811.81307523|220302.68768684|120.81383474|16241|1 +638806.42752225|220307.75038617|129.95386257|16242|1 +638801.36356225|220312.3901762|129.91569738|16243|1 +638796.21957847|220317.15315843|133.45024219|16244|1 +638791.24773662|220321.67418849|130.95449187|16245|1 +638791.72724472|220321.04168829|117.12757796|16246|2 +638786.07203224|220326.46506585|134.40542301|16247|1 +638781.12019121|220330.97832046|132.66833487|16248|1 +638776.03398176|220335.65257747|133.64264014|16249|1 +638771.28762621|220339.83195985|121.47476316|16250|1 +638766.08500935|220344.68975008|127.95786878|16251|1 +638766.32201538|220344.35380184|119.44923624|16252|2 +638761.22945591|220349.03124747|120.23611071|16253|1 +638756.15604173|220353.68216586|120.38027894|16254|1 +638751.15960175|220358.24608825|119.34730737|16255|1 +638746.00720156|220362.98931518|120.91927038|16256|1 +638741.0004576|220367.56911123|120.34859709|16257|1 +638735.93396171|220372.21157094|120.34383458|16258|1 +638730.86835613|220376.85303574|120.32683094|16259|1 +638725.80302491|220381.49450381|120.32881222|16260|1 +638720.73849742|220386.13505441|120.31853375|16261|1 +638715.67309097|220390.77779744|120.40844472|16262|1 +638710.60766231|220395.42142495|120.56105897|16263|1 +638705.54142721|220400.06787294|120.863869|16264|1 +638700.4761072|220404.71399949|121.20440703|16265|1 +638695.4115465|220409.36038077|121.61392704|16266|1 +638690.3485444|220414.00523723|122.0174474|16267|1 +638685.28904005|220418.64218043|122.08377837|16268|1 +638680.2292883|220423.28160712|122.31278811|16269|1 +638675.03353601|220428.04403195|122.42069802|16270|1 +638670.11871028|220432.54598929|122.32161549|16271|1 +638665.10855401|220437.13305237|122.05822639|16272|1 +638660.00253253|220441.80868467|121.84369022|16273|1 +638654.94389437|220446.44165851|121.68626696|16274|1 +638649.93283736|220451.03178567|121.58558453|16275|1 +638644.87408568|220455.66615405|121.52217432|16276|1 +638639.81396713|220460.29898374|121.25898986|16277|1 +638634.75467048|220464.93383827|121.19598893|16278|1 +638629.69518495|220469.56885728|121.13319263|16279|1 +638624.63832168|220474.20529611|121.34557079|16280|1 +638619.57903056|220478.84047305|121.30817765|16281|1 +638614.52139645|220483.47612517|121.4147202|16282|1 +638609.51203716|220488.06793487|121.55206093|16283|1 +638604.45332316|220492.70334144|121.57139002|16284|1 +638599.39333705|220497.33869135|121.50344054|16285|1 +638594.3815158|220501.93055602|121.48468816|16286|1 +638589.32576968|220506.56556956|121.67323517|16287|1 +638584.26941665|220511.20060857|121.82447275|16288|1 +638579.26163791|220515.7916095|122.01204307|16289|1 +638574.21064247|220520.42476394|122.38224447|16290|1 +638569.15343795|220525.05986858|122.4839873|16291|1 +638564.14104331|220529.65246322|122.48424775|16292|1 +638559.07769776|220534.29039907|122.38638376|16293|1 +638554.06984193|220538.88151085|122.58037231|16294|1 +638549.01851763|220543.51440741|122.91384099|16295|1 +638544.01815854|220548.10184002|123.33897868|16296|1 +638539.02451207|220552.68536095|123.97016933|16297|1 +638534.02294337|220557.27251989|124.34522625|16298|1 +638528.97609682|220561.90199691|124.77899599|16299|1 +638524.02587407|220566.44314642|125.23256922|16300|1 +638518.97457357|220571.0747746|125.52909124|16301|1 +638513.97264807|220575.6616924|125.8665969|16302|1 +638508.97495625|220580.24610598|126.30393852|16303|1 +638503.97704585|220584.83053399|126.72874135|16304|1 +638499.02448742|220589.37254009|127.09404071|16305|1 +638494.02696066|220593.95659037|127.5186203|16306|1 +638489.02111454|220598.54573891|127.76216871|16307|1 +638484.06160156|220603.09208536|127.98336495|16308|1 +638479.0587284|220607.67952244|128.30164383|16309|1 +638474.10513041|220612.22224003|128.65347423|16310|1 +638469.24185684|220616.70615849|130.73288634|16311|1 +638464.16396858|220621.3424709|129.62238446|16312|1 +638459.17068693|220625.91155289|129.25634096|16313|1 +638454.20232229|220630.46445714|129.37036213|16314|1 +638449.24708274|220635.00869512|129.72733641|16315|1 +638444.29375314|220639.55168738|130.12147128|16316|1 +638439.28737589|220644.14215204|130.43278313|16317|1 +638434.36248101|220648.65481858|130.52260108|16318|1 +638429.38580342|220653.21432444|130.56709148|16319|1 +638424.41106376|220657.77272615|130.66129987|16320|1 +638419.46588585|220662.30039704|130.49477947|16321|1 +638414.48257885|220666.86541665|130.50141164|16322|1 +638409.55259132|220671.38293885|130.60842858|16323|1 +638404.55210639|220675.96082708|130.40924964|16324|1 +638399.61302587|220680.48544484|130.42856012|16325|1 +638394.66384616|220685.01766|130.32928227|16326|1 +638389.99823345|220689.34360358|134.09481809|16327|1 +638384.76079471|220694.0865265|130.14238167|16328|1 +638379.76260593|220698.65576189|129.47614194|16329|1 +638374.85886808|220703.14729982|129.45062716|16330|1 +638369.85803063|220707.719546|128.82763139|16331|1 +638364.88380998|220712.26426486|127.98051861|16332|1 +638359.95341407|220716.77691367|127.71769691|16333|1 +638354.98949651|220721.32313655|127.66010962|16334|1 +638350.08057568|220725.8203822|127.70742775|16335|1 +638345.28297335|220730.2338597|129.07167279|16336|1 +638341.62714143|220733.77462712|142.96555949|16337|1 +638341.17397527|220734.11784257|137.76537348|16338|2 +638335.72516173|220739.03154653|132.16382512|16339|1 +638330.94593257|220743.41522131|132.59772508|16340|1 +638325.67934624|220748.19353631|129.2775025|16341|1 +638320.85968216|220752.60915708|129.34416833|16342|1 +638316.19392226|220756.92102675|132.10024748|16343|1 +638313.035159|220760.06361526|150.14328456|16344|1 +638303.35802617|220768.93186201|150.45213145|16345|1 +638301.08381022|220770.69360592|127.17962636|16346|2 +638298.21771065|220773.60064821|147.58546348|16347|1 +638296.18782581|220775.17697097|127.09005955|16348|2 +638292.19242863|220778.95295579|135.51676205|16349|1 +638291.33634069|220779.61932469|126.9856099|16350|2 +638288.41553928|220782.56230892|146.37088403|16351|1 +638286.39636644|220784.13764798|126.51063329|16352|2 +638283.52473418|220787.03259924|145.68440362|16353|1 +638282.9082631|220787.51463624|139.69792915|16354|2 +638281.53492037|220788.58849357|126.36160953|16355|3 +638278.52052822|220791.59869545|144.41116717|16356|1 +638276.63616885|220793.07535994|126.34437334|16357|2 +638273.95512252|220795.81458918|146.88930923|16358|1 +638271.76952135|220797.53093604|126.19413105|16359|2 +638269.46525649|220799.97047473|150.03437006|16360|1 +638262.74634887|220805.88315898|132.52894775|16361|1 +638262.03939829|220806.4405815|125.99705431|16362|2 +638254.58164203|220813.54677955|145.95631315|16363|1 +638252.25429867|220815.3889113|124.9591435|16364|2 +638259.18983499|220805.76905706|139.90671683|16365|1 +638257.64449757|220806.98788698|125.7367162|16366|2 +638264.9164145|220800.6257537|147.76165773|16367|1 +638263.37745889|220801.83713812|133.47676156|16368|2 +638262.57495832|220802.46882409|126.02781529|16369|3 +638269.01938304|220796.76089814|140.57593313|16370|1 +638268.08089984|220797.49811566|131.75645382|16371|2 +638273.21609478|220792.82035387|134.12347687|16372|1 +638272.3762897|220793.47867402|126.13204169|16373|2 +638279.12273006|220787.54032248|144.00729334|16374|1 +638277.93901899|220788.46623325|132.59979008|16375|2 +638284.01979864|220783.05210124|144.31334969|16376|1 +638282.19944935|220784.47284958|126.54429642|16377|2 +638287.6261651|220779.56938587|131.88582293|16378|1 +638287.12151847|220779.96235817|126.89547569|16379|2 +638292.9016776|220774.77894691|135.39193221|16380|1 +638292.07067518|220775.42452801|127.06454478|16381|2 +638299.39289741|220769.05477548|151.85075585|16382|1 +638303.94351873|220764.83050707|148.30882543|16383|1 +638301.8796468|220766.42601578|127.06246118|16384|2 +638308.9031077|220760.28984299|148.95930795|16385|1 +638306.78682871|220761.92165489|126.87072366|16386|2 +638313.59089764|220755.95877091|146.77351142|16387|1 +638312.42762252|220756.85336561|134.4608523|16388|2 +638311.72109525|220757.39670701|126.98265194|16389|3 +638316.73754007|220752.80189692|127.48397118|16390|1 +638321.7261026|220748.24355078|128.7700999|16391|1 +638326.69258039|220743.68806468|128.805735|16392|1 +638331.71678529|220739.09654894|130.05336367|16393|1 +638337.99368845|220733.54889826|145.07910913|16394|1 +638336.60816249|220734.59891254|129.29983607|16395|2 +638342.61330522|220729.25994809|141.42646896|16396|1 +638346.38944296|220725.60474643|127.77268902|16397|1 +638351.33570419|220721.06590837|127.67035087|16398|1 +638356.28959242|220716.52164821|127.67965265|16399|1 +638361.26128475|220711.96445441|127.9312471|16400|1 +638366.25630077|220707.39039582|128.50607828|16401|1 +638371.33217018|220702.74867064|129.54113345|16402|1 +638376.30233707|220698.18554703|129.26378238|16403|1 +638386.25051637|220689.06312585|129.49872665|16404|1 +638391.53570709|220684.28124479|134.24375814|16405|1 +638396.23502515|220679.91601647|130.34942991|16406|1 +638401.26888771|220675.29917832|130.40210587|16407|1 +638406.20807572|220670.76967167|130.49691888|16408|1 +638411.243974|220666.15211463|130.63063192|16409|1 +638416.20778762|220661.59593702|130.42707184|16410|1 +638421.19816446|220657.02154501|130.62818555|16411|1 +638426.22342705|220652.41279285|130.65603507|16412|1 +638431.19460889|220647.85253777|130.60780536|16413|1 +638436.21135273|220643.25030586|130.54223713|16414|1 +638441.21543072|220638.65700457|130.28348032|16415|1 +638446.14231282|220634.12756347|129.53044571|16416|1 +638451.20762159|220629.48158495|129.51656746|16417|1 +638456.17380479|220624.92586012|129.46157535|16418|1 +638461.20204032|220620.31722373|129.68915262|16419|1 +638466.36308948|220615.62238532|132.4679746|16420|1 +638471.35259413|220611.04067454|132.07844411|16421|1 +638476.22257471|220606.52201183|128.34726905|16422|1 +638481.2271478|220601.92954181|128.17575359|16423|1 +638486.22582997|220597.34091611|127.89190989|16424|1 +638491.27560666|220592.70656985|127.68572671|16425|1 +638496.26928708|220588.12115692|127.30205634|16426|1 +638501.30824984|220583.49343923|126.85897552|16427|1 +638506.35117173|220578.86332398|126.50343372|16428|1 +638511.34124898|220574.27985113|126.01990878|16429|1 +638516.3848088|220569.64925939|125.67083171|16430|1 +638521.43039755|220565.01751139|125.37188192|16431|1 +638526.42793277|220560.42966359|125.06320247|16432|1 +638531.46489365|220555.8023724|124.51468602|16433|1 +638536.50769584|220551.17182434|124.11620722|16434|1 +638541.55192089|220546.54041486|123.74910331|16435|1 +638546.59206326|220541.91076352|123.2385195|16436|1 +638551.62948184|220537.28196904|122.60938455|16437|1 +638556.67810026|220532.64787105|122.33647043|16438|1 +638561.77713706|220527.96888024|122.15569041|16439|1 +638566.83596196|220523.33084054|122.27060455|16440|1 +638571.8896406|220518.69501567|122.20454333|16441|1 +638576.9376587|220514.06108168|121.90124031|16442|1 +638581.98878429|220509.42605253|121.72307409|16443|1 +638587.03865407|220504.79122684|121.47635377|16444|1 +638592.1380893|220500.11212318|121.3100287|16445|1 +638597.19257766|220495.47630791|121.29499703|16446|1 +638602.24844125|220490.84063408|121.38013619|16447|1 +638607.35040197|220486.16133965|121.36480687|16448|1 +638612.40313138|220481.52560903|121.23796784|16449|1 +638617.45642082|220476.88981127|121.14255952|16450|1 +638622.55932624|220472.21091238|121.2157645|16451|1 +638627.61167507|220467.57443465|121.00835349|16452|1 +638632.71408901|220462.89540643|121.03853776|16453|1 +638637.81652213|220458.21663626|121.08790228|16454|1 +638642.87158598|220453.58257343|121.23126126|16455|1 +638647.92590683|220448.94764276|121.26231059|16456|1 +638653.02808323|220444.2697574|121.35645387|16457|1 +638658.0824147|220439.63579728|121.45673632|16458|1 +638663.18429277|220434.95960306|121.65158993|16459|1 +638668.28570651|220430.28471436|121.90936076|16460|1 +638673.28571811|220425.70193018|122.10940477|16461|1 +638678.38708122|220421.02346985|122.10530268|16462|1 +638683.49002536|220416.34062384|121.8891573|16463|1 +638688.54553865|220411.70243935|121.75969518|16464|1 +638693.60318563|220407.06005778|121.46797287|16465|1 +638698.71043862|220402.37131032|121.10924056|16466|1 +638703.7723201|220397.72299203|120.66815032|16467|1 +638708.88111534|220393.03442113|120.42271365|16468|1 +638713.94300422|220388.38916117|120.20086628|16469|1 +638719.00564356|220383.74357331|120.00424533|16470|1 +638724.11162528|220379.06283504|120.13476786|16471|1 +638729.17298055|220374.42079322|120.10736482|16472|1 +638734.2344316|220369.7791066|120.1114204|16473|1 +638739.29470598|220365.13972826|120.20313591|16474|1 +638744.3942143|220360.47000964|120.69729279|16475|1 +638749.48756725|220355.78126542|119.41583356|16476|1 +638754.53084894|220351.16842151|120.29510258|16477|1 +638759.60168446|220346.51508132|120.07569228|16478|1 +638764.40098973|220342.24651124|129.64493197|16479|1 +638769.46157077|220337.60248818|129.41899182|16480|1 +638769.76141124|220337.18539159|119.16959693|16481|2 +638774.39543665|220333.13275236|133.38133463|16482|1 +638774.84648685|220332.51488065|118.65152519|16483|2 +638779.49771779|220328.43130368|131.77007162|16484|1 +638784.61682169|220323.70968895|129.81614977|16485|1 +638785.02230464|220323.16932744|117.66018837|16486|2 +638789.51680304|220319.25995152|132.98191635|16487|1 +638794.54168606|220314.6632546|133.79871464|16488|1 +638799.7058177|220309.88844502|130.87258972|16489|1 +638804.92192657|220305.03357789|125.61051899|16490|1 +638810.43942885|220299.8202974|114.42263068|16491|1 +638815.0728135|220295.7072562|124.13052265|16492|1 +638815.50635891|220295.16506712|113.69132501|16493|2 +638820.00045742|220291.22118953|126.39117058|16494|1 +638824.99184807|220286.67020848|128.18199508|16495|1 +638830.13049024|220281.92383329|125.61692792|16496|1 +638835.05047183|220277.44488827|127.8831104|16497|1 +638840.08590477|220272.83938445|128.65167898|16498|1 +638845.13806297|220268.18692973|127.14229833|16499|1 +638850.79739559|220262.82760533|114.7851023|16500|1 +638855.84124164|220258.20452673|114.84057809|16501|1 +638860.83256229|220253.63105697|115.00296851|16502|1 +638865.87448877|220249.010882|115.13956509|16503|1 +638870.91759354|220244.38963881|115.27630121|16504|1 +638875.93352693|220239.78855007|115.07130866|16505|1 +638880.95234226|220235.18465621|114.85389824|16506|1 +638886.00426011|220230.54336438|114.12619236|16507|1 +638891.01821146|220225.9461967|114.07074447|16508|1 +638896.03204272|220221.34958052|114.04642963|16509|1 +638901.04646344|220216.75269087|114.04078345|16510|1 +638906.06307577|220212.15371895|114.02893299|16511|1 +638911.08026256|220207.55448956|114.0357698|16512|1 +638916.08170176|220202.9634755|113.59458654|16513|1 +638921.12879637|220198.33177736|113.23474732|16514|1 +638926.12734133|220193.74515833|112.91793812|16515|1 +638931.13992394|220189.14353497|112.44574274|16516|1 +638936.14099425|220184.55522709|112.17238213|16517|1 +638941.17720175|220179.93768634|112.11119505|16518|1 +638946.1108018|220175.41558388|112.15340651|16519|1 +638951.10241953|220170.83897519|112.09718657|16520|1 +638955.8470158|220166.53225094|115.18172074|16521|1 +638961.02545212|220161.7441015|112.21265882|16522|1 +638966.01232752|220157.17375629|112.29257969|16523|1 +638970.9512146|220152.64761041|112.38928096|16524|1 +638975.89255623|220148.11913661|112.47945238|16525|1 +638980.83427404|220143.59058106|112.58790179|16526|1 +638985.78390744|220139.05383102|112.62786222|16527|1 +638990.73956308|220134.51096995|112.62416941|16528|1 +638995.68861215|220129.97554229|112.7193824|16529|1 +639000.60941942|220125.46320637|112.6136491|16530|1 +639005.58302795|220120.9022841|112.49150748|16531|1 +639010.51496973|220116.37889706|112.32321044|16532|1 +639015.45566537|220111.84663916|112.09266591|16533|1 +639020.40119938|220107.30969703|111.84327598|16534|1 +639025.34440126|220102.77566949|111.64930604|16535|1 +639030.29859893|220098.23045758|111.37466179|16536|1 +639035.2579187|220093.6803049|111.08123725|16537|1 +639040.16509742|220089.17881614|110.85224612|16538|1 +639045.10995049|220084.64475856|110.76230724|16539|1 +639043.61098005|220083.22243998|110.73256016|16540|1 +639038.60238823|220087.80450141|110.86834749|16541|1 +639033.5905657|220092.39036652|111.06599164|16542|1 +639028.57142183|220096.9843722|111.36882957|16543|1 +639023.55927427|220101.57145352|111.63460923|16544|1 +639018.50662704|220106.19487398|111.84801059|16545|1 +639013.50438929|220110.77235064|112.07679708|16546|1 +639008.45324811|220115.39505863|112.34005595|16547|1 +639003.41901093|220120.00023164|112.45489569|16548|1 +638998.43539978|220124.55916794|112.57848839|16549|1 +638993.34645363|220129.21616637|112.82128336|16550|1 +638988.35227926|220133.7796731|112.57700941|16551|1 +638983.34628682|220138.35612622|112.48764724|16552|1 +638978.29019774|220142.97899586|112.43972449|16553|1 +638973.28521162|220147.55502041|112.38765314|16554|1 +638968.24317266|220152.16338594|112.22216524|16555|1 +638963.19581507|220156.77781058|112.14370476|16556|1 +638958.13996395|220161.40179802|112.1957482|16557|1 +638952.83176928|220166.29284483|114.86008392|16558|1 +638948.05726532|220170.61926036|112.01483795|16559|1 +638942.96227919|220175.27851891|112.02906966|16560|1 +638937.914972|220179.89465186|112.08194096|16561|1 +638932.81691878|220184.55808367|112.19624119|16562|1 +638927.70951616|220189.23228672|112.47252255|16563|1 +638922.64084945|220193.87344422|112.92390986|16564|1 +638917.51790249|220198.56606708|113.50561505|16565|1 +638912.42360628|220203.22725762|113.7147934|16566|1 +638907.32511765|220207.89365909|114.02387282|16567|1 +638902.20376926|220212.57616794|113.98493559|16568|1 +638897.17430329|220217.17594798|114.04604826|16569|1 +638892.05335535|220221.85877018|114.05769408|16570|1 +638886.93495626|220226.53908838|114.05740573|16571|1 +638881.85906167|220231.18221032|114.18173327|16572|1 +638876.74915086|220235.86497455|114.92266627|16573|1 +638871.63412032|220240.54288483|114.97355629|16574|1 +638866.56661063|220245.17788802|115.06780189|16575|1 +638861.42417767|220249.87650394|114.80274777|16576|1 +638856.36211184|220254.50591258|114.85405637|16577|1 +638851.26443593|220259.16499859|114.69483786|16578|1 +638846.16655317|220263.82461733|114.56093879|16579|1 +638840.38776533|220269.30034239|128.39281985|16580|1 +638835.45425327|220273.76786625|125.24500569|16581|1 +638836.00829442|220273.09952749|113.57127629|16582|2 +638830.49879178|220278.24550776|121.37519695|16583|1 +638830.85062051|220277.81802007|113.73918265|16584|2 +638825.31593183|220283.01346115|123.45702753|16585|1 +638820.1508767|220287.76168201|125.29034255|16586|1 +638820.65420406|220287.14056628|113.67434927|16587|2 +638815.11036434|220292.35698462|124.30584253|16588|1 +638815.55647872|220291.80182496|113.67367024|16589|2 +638810.43644104|220296.49150852|114.25337555|16590|1 +638805.26817398|220301.22640399|114.91062047|16591|1 +638799.68201761|220306.51492863|127.96137555|16592|1 +638794.63811664|220311.11572201|127.15280003|16593|1 +638789.30465368|220316.07627987|133.20407068|16594|1 +638784.21099338|220320.72635885|132.66759073|16595|1 +638779.18447484|220325.30649551|131.51710981|16596|1 +638774.02441051|220330.06746295|134.61075972|16597|1 +638768.96818415|220334.66706709|132.9020234|16598|1 +638764.05739341|220339.08384827|127.59461581|16599|1 +638764.29352629|220338.75212539|119.22345422|16600|2 +638759.15291719|220343.45997176|119.76140385|16601|1 +638754.01926092|220348.15895301|120.11888973|16602|1 +638748.93321855|220352.81550732|120.56084503|16603|1 +638743.8116191|220357.4983578|120.55092933|16604|1 +638738.701269|220362.16410068|120.04816832|16605|1 +638733.62879946|220366.80157931|120.0103473|16606|1 +638728.50984203|220371.4810567|119.93306814|16607|1 +638723.39271546|220376.15773121|119.77505886|16608|1 +638718.31948272|220380.79779128|119.87562967|16609|1 +638713.20033533|220385.47889902|119.90586044|16610|1 +638708.07863527|220390.16570437|120.18021634|16611|1 +638703.00602472|220394.8075096|120.45046085|16612|1 +638697.88558586|220399.49478954|120.84440038|16613|1 +638692.76690183|220404.18011899|121.21385764|16614|1 +638687.69808047|220408.81852465|121.49133893|16615|1 +638682.58339416|220413.49725495|121.64919938|16616|1 +638677.46944965|220418.17538965|121.81377571|16617|1 +638672.40478151|220422.80523728|121.74850514|16618|1 +638667.29796224|220427.47278891|121.62026155|16619|1 +638662.23306269|220432.10024889|121.36803458|16620|1 +638657.16771315|220436.72914632|121.19100317|16621|1 +638652.05433127|220441.40217323|121.02624081|16622|1 +638646.94102788|220446.07676438|120.9806714|16623|1 +638641.92316267|220450.66399954|120.93592056|16624|1 +638636.80986965|220455.33882729|120.90976396|16625|1 +638631.69653071|220460.01369733|120.88404455|16626|1 +638621.5675365|220469.27737152|121.07712152|16627|1 +638616.5008217|220473.9082527|120.95836574|16628|1 +638611.4839072|220478.4962075|121.0330125|16629|1 +638606.37194945|220483.17151513|121.13393677|16630|1 +638601.30615778|220487.80308531|121.1283092|16631|1 +638596.28770926|220492.39086761|121.09073933|16632|1 +638591.17577034|220497.06597126|121.1801573|16633|1 +638586.11162975|220501.69739134|121.27512844|16634|1 +638581.09725727|220506.28461383|121.46904257|16635|1 +638576.03632674|220510.91506508|121.70802381|16636|1 +638570.97505543|220515.54547345|121.92220652|16637|1 +638565.95896713|220520.13303338|122.02877697|16638|1 +638560.88851924|220524.76700098|121.89340822|16639|1 +638555.87696888|220529.35297364|122.18747458|16640|1 +638550.82294675|220533.98017386|122.65212621|16641|1 +638545.77077335|220538.60618568|123.15444074|16642|1 +638540.81173419|220543.14559241|123.55881687|16643|1 +638535.76151808|220547.77012061|124.0737167|16644|1 +638530.7569451|220552.35208945|124.48639931|16645|1 +638525.75482577|220556.93258063|124.95522745|16646|1 +638520.74903217|220561.51487308|125.31159711|16647|1 +638515.74149938|220566.09805777|125.61796042|16648|1 +638510.73524997|220570.68048566|125.95550328|16649|1 +638505.73505113|220575.25934978|126.43658185|16650|1 +638500.77944011|220579.79622821|126.83329332|16651|1 +638495.77665031|220584.37640766|127.23923214|16652|1 +638490.77317328|220588.95694747|127.62639998|16653|1 +638485.80860185|220593.4992316|127.82280699|16654|1 +638480.80047573|220598.08271347|128.11617571|16655|1 +638475.83631217|220602.62494763|128.33716732|16656|1 +638470.87486435|220607.16554423|128.62030409|16657|1 +638466.0880506|220611.59241886|132.24662023|16658|1 +638461.09221885|220616.15464704|131.81785485|16659|1 +638455.9928535|220620.78623795|129.54930971|16660|1 +638451.01381704|220625.33892437|129.54463092|16661|1 +638446.0407398|220629.88786247|129.66449361|16662|1 +638441.10658616|220634.39929554|129.64868989|16663|1 +638436.16342999|220638.92813512|130.29790737|16664|1 +638431.19375653|220643.47521271|130.51055528|16665|1 +638426.2598605|220647.98705322|130.5436045|16666|1 +638421.32347609|220652.50090206|130.55759437|16667|1 +638416.32913892|220657.06596074|130.43933158|16668|1 +638411.38812799|220661.58367416|130.42784389|16669|1 +638406.44220163|220666.10518254|130.36619171|16670|1 +638401.4963474|220670.62695804|130.32915204|16671|1 +638396.54310279|220675.15436788|130.21087065|16672|1 +638391.90514667|220679.44445858|133.80915124|16673|1 +638386.93788358|220683.98182676|133.48423088|16674|1 +638376.84794782|220693.16341946|130.27050434|16675|1 +638371.99017131|220697.62191629|131.49436697|16676|1 +638366.85775917|220702.27522111|128.61859256|16677|1 +638361.86049014|220706.83786117|128.13776514|16678|1 +638356.95687083|220711.31485187|127.66242576|16679|1 +638351.98600122|220715.85870814|127.57290546|16680|1 +638347.12711151|220720.30295561|127.69340067|16681|1 +638342.35758936|220724.68776989|129.43575362|16682|1 +638338.91801939|220728.06556216|146.42369021|16683|1 +638332.47165614|220733.71192862|128.35684988|16684|1 +638327.6132202|220738.16409937|129.08440692|16685|1 +638324.15016235|220741.54322479|144.61312734|16686|1 +638323.63303996|220741.93818062|138.9316116|16687|2 +638322.67791572|220742.66766338|128.43787765|16688|3 +638317.69363137|220747.20928328|127.30055875|16689|1 +638313.24436785|220751.34071927|131.92919711|16690|1 +638312.77351707|220751.70234529|126.90170788|16691|2 +638310.24544608|220754.35379463|151.72150767|16692|1 +638304.93005013|220759.14813474|146.93636692|16693|1 +638303.49623532|220760.25513444|132.04638089|16694|2 +638303.00754217|220760.63243781|126.97138749|16695|3 +638300.49075057|220763.26644529|151.27700368|16696|1 +638295.51825249|220767.79044215|149.64750918|16697|1 +638293.24905292|220769.55105601|126.70823093|16698|2 +638288.36832361|220774.01534528|126.84025104|16699|1 +638284.0022675|220778.07211329|131.5814688|16700|1 +638283.6560443|220778.34199034|128.17216311|16701|2 +638280.68570959|220781.31407244|146.89461125|16702|1 +638274.32019278|220786.92528865|131.64983686|16703|1 +638273.7689854|220787.35683258|126.35853065|16704|2 +638271.08294453|220790.10032782|147.37590376|16705|1 +638268.83690006|220791.86250544|126.08553281|16706|2 +638264.01282723|220796.2711095|125.94333655|16707|1 +638261.82183649|220798.6120818|150.63107902|16708|1 +638254.29469147|220805.15065303|125.53540715|16709|1 +638255.7576663|220800.99620603|147.23978156|16710|1 +638258.25455275|220798.40493412|125.21264481|16711|1 +638263.1575352|220793.92115137|125.67675694|16712|1 +638270.51538791|220787.49925768|148.56012222|16713|1 +638273.00877826|220784.90676202|126.2085395|16714|1 +638280.04088518|220778.74815169|146.56092862|16715|1 +638279.4019803|220779.24725549|140.33861691|16716|2 +638277.9383497|220780.39062377|126.08434218|16717|3 +638284.61024914|220774.52325963|143.64741691|16718|1 +638282.86228602|220775.88570147|126.40200715|16719|2 +638287.7657752|220771.39711307|126.54569169|16720|1 +638294.40803463|220765.55320844|143.84094967|16721|1 +638293.41394004|220766.32443477|133.76939544|16722|2 +638299.88471484|220760.61816474|149.66162928|16723|1 +638299.2928034|220761.07624884|143.58263004|16724|2 +638297.65839819|220762.34112558|126.79714661|16725|3 +638304.70220909|220756.19451092|148.80231257|16726|1 +638302.60181667|220757.81591564|126.93178052|16727|2 +638309.80955163|220751.54766934|151.00162459|16728|1 +638307.49335756|220753.33101358|126.54485453|16729|2 +638314.40652235|220747.29391304|147.81994266|16730|1 +638323.5388686|220738.82326469|140.03441161|16731|1 +638322.39329622|220739.69797152|127.40409682|16732|2 +638327.28849951|220735.21135193|127.13355466|16733|1 +638332.35034803|220730.59094426|128.22205784|16734|1 +638338.46675079|220725.18108691|142.08610444|16735|1 +638342.4310129|220721.39269686|130.63036216|16736|1 +638347.17581507|220717.00515035|127.54821855|16737|1 +638352.08144879|220712.51208129|127.49957026|16738|1 +638357.09578616|220707.92196348|127.62394431|16739|1 +638362.09615874|220703.35085617|128.20252411|16740|1 +638367.08978972|220698.785327|128.73753438|16741|1 +638372.30481129|220694.04859903|131.55572149|16742|1 +638377.06507118|220689.65612938|129.14166866|16743|1 +638382.12306706|220685.02749382|129.36581357|16744|1 +638387.41736314|220680.24534271|134.15808878|16745|1 +638392.35446021|220675.71545635|133.51736381|16746|1 +638397.10407439|220671.32061708|130.21766095|16747|1 +638402.09455402|220666.75172359|130.29205656|16748|1 +638407.07442026|220662.19074991|130.23557617|16749|1 +638412.06039721|220657.62605246|130.29111708|16750|1 +638417.05978146|220653.05297298|130.57708159|16751|1 +638422.07672092|220648.45780137|130.42185354|16752|1 +638427.06492414|220643.89334875|130.58935063|16753|1 +638432.08061459|220639.29959438|130.45283776|16754|1 +638437.01867561|220634.77025492|129.83476262|16755|1 +638442.04329332|220630.17074985|129.87270457|16756|1 +638447.05550288|220625.57995688|129.71742071|16757|1 +638452.44229336|220620.7506929|137.16177191|16758|1 +638452.02865369|220621.02726443|129.73479643|16759|2 +638457.07848725|220616.39996934|129.42560538|16760|1 +638462.17418771|220611.75506351|130.89207695|16761|1 +638467.42897299|220607.00825397|135.54034205|16762|1 +638467.10123028|220607.22101739|129.18995418|16763|2 +638472.09665855|220602.64212253|128.77891798|16764|1 +638477.09150589|220598.06359518|128.35533369|16765|1 +638482.1379455|220593.43895539|128.00924249|16766|1 +638487.14387474|220588.85356495|127.82277908|16767|1 +638492.14345621|220584.27219518|127.50522574|16768|1 +638497.18842605|220579.64859159|127.13446623|16769|1 +638502.23322999|220575.02507015|126.75764197|16770|1 +638507.22823211|220570.4463825|126.32775107|16771|1 +638512.26605853|220565.82670185|125.76382157|16772|1 +638517.26808666|220561.24383247|125.49621877|16773|1 +638522.31544835|220556.61861652|125.16349422|16774|1 +638527.35922928|220551.99523744|124.72478524|16775|1 +638532.40561233|220547.37034673|124.34866791|16776|1 +638537.45051442|220542.74605374|123.91649808|16777|1 +638542.49049729|220538.12387511|123.30959437|16778|1 +638547.49201021|220533.54068569|122.97967897|16779|1 +638552.5362302|220528.91585889|122.46037939|16780|1 +638557.5865692|220524.28809777|122.13489163|16781|1 +638562.63423337|220519.66116808|121.69088064|16782|1 +638567.69496572|220515.02923145|121.75308162|16783|1 +638572.75078042|220510.3992393|121.62803784|16784|1 +638577.80410003|220505.77000242|121.39070301|16785|1 +638582.86010048|220501.13994962|121.27227279|16786|1 +638587.91479532|220496.51016839|121.08528848|16787|1 +638592.97133743|220491.87998874|120.99220561|16788|1 +638598.07631716|220487.20610896|120.94222716|16789|1 +638603.13487107|220482.57583104|120.97460665|16790|1 +638608.19191589|220477.94549204|120.90092728|16791|1 +638613.24892316|220473.31511499|120.82117384|16792|1 +638618.30822473|220468.68547593|120.94783613|16793|1 +638623.41250621|220464.01128661|120.82449458|16794|1 +638628.4699045|220459.38101548|120.77665554|16795|1 +638633.52762166|220454.75090155|120.76024721|16796|1 +638638.58522657|220450.12047305|120.71277094|16797|1 +638643.69109834|220445.44711447|120.75322437|16798|1 +638648.74910143|220440.81711695|120.76247964|16799|1 +638653.80736133|220436.18895314|120.92189348|16800|1 +638658.9131194|220431.51626826|121.00086556|16801|1 +638663.9709349|220426.88852799|121.1607538|16802|1 +638669.02287567|220422.26652224|121.34571962|16803|1 +638674.12748606|220417.59637574|121.53191328|16804|1 +638679.13745219|220413.0102099|121.5288623|16805|1 +638684.24447834|220408.33292114|121.35324476|16806|1 +638689.30480585|220403.69800115|121.15173107|16807|1 +638694.31886467|220399.1046217|120.89272311|16808|1 +638699.43089508|220394.42006885|120.51814987|16809|1 +638704.49719852|220389.77673264|120.09862115|16810|1 +638709.51631801|220385.17756488|119.75247415|16811|1 +638714.62805851|220380.4976813|119.69756576|16812|1 +638719.69263593|220375.86100878|119.64729896|16813|1 +638724.70836421|220371.27036358|119.69500777|16814|1 +638729.77357374|220366.63365127|119.68252479|16815|1 +638734.83649773|220362.00100559|119.81391238|16816|1 +638739.8902362|220357.38267166|120.3763908|16817|1 +638744.97644488|220352.71526202|119.52156685|16818|1 +638749.98245476|220348.14073846|120.0941563|16819|1 +638755.05641298|220343.49318787|119.87041137|16820|1 +638759.8413546|220339.25412955|130.18474196|16821|1 +638764.83796234|220334.68591273|130.58798327|16822|1 +638765.16830671|220334.22752948|119.1647042|16823|2 +638769.8532805|220330.11361757|131.94309396|16824|1 +638770.25007047|220329.57151722|118.84185814|16825|2 +638774.89526748|220325.50421877|132.36826886|16826|1 +638779.82926587|220320.99870858|133.16727285|16827|1 +638785.00013051|220316.21983122|129.817359|16828|1 +638785.43372363|220315.65071115|117.20042017|16829|2 +638790.06148425|220311.58680545|129.81255928|16830|1 +638790.54953563|220310.95365153|116.15501212|16831|2 +638795.15244732|220306.89826968|127.73919332|16832|1 +638800.64511307|220301.70186073|115.39262922|16833|1 +638805.62835116|220297.15830729|116.71441165|16834|1 +638810.77526228|220292.40988777|114.00102766|16835|1 +638815.32090228|220288.40752381|125.63029457|16836|1 +638820.29837453|220283.86617712|126.72611825|16837|1 +638825.43319169|220279.1328529|124.30573091|16838|1 +638825.91625154|220278.54502934|113.62680789|16839|2 +638830.28774577|220274.74042058|128.06941568|16840|1 +638830.96502151|220273.92223525|113.53352968|16841|2 +638835.20502501|220270.2565486|129.34066156|16842|1 +638840.54791702|220265.27809152|122.90789716|16843|1 +638840.99244316|220264.74824528|113.89084812|16844|2 +638845.96526773|220260.20356318|114.42832336|16845|1 +638850.99727059|220255.60185446|114.75267631|16846|1 +638856.0012788|220251.02074599|114.71052066|16847|1 +638861.00177224|220246.4441352|114.76173624|16848|1 +638866.04976894|220241.8245926|114.8495171|16849|1 +638871.05480696|220237.24342076|114.86954383|16850|1 +638876.06247376|220232.65959806|114.87084607|16851|1 +638881.12076448|220228.0183389|114.05678251|16852|1 +638886.08567095|220223.47338753|114.03970445|16853|1 +638891.1001716|220218.88317243|114.02850511|16854|1 +638896.06933554|220214.33417104|113.9986278|16855|1 +638901.08778806|220209.74027408|113.98110326|16856|1 +638906.10724019|220205.1456427|113.97603379|16857|1 +638911.0992915|220200.57225029|113.69084132|16858|1 +638916.11207764|220195.97633162|113.14445498|16859|1 +638921.11100861|220191.39641267|112.84049153|16860|1 +638926.12654457|220186.79867817|112.34383248|16861|1 +638931.13162457|220182.21306648|112.03358103|16862|1 +638936.11111454|220177.65604362|112.10220953|16863|1 +638941.10567425|220173.08287181|111.9967925|16864|1 +638946.0929089|220168.5181047|112.01547977|16865|1 +638951.07774529|220163.95630223|112.08992188|16866|1 +638955.78997125|220159.68231033|114.98052332|16867|1 +638960.97299876|220154.89793454|112.03050214|16868|1 +638965.96336017|220150.33118452|112.11059973|16869|1 +638970.90099084|220145.81365878|112.26322328|16870|1 +638975.86430169|220141.2688385|112.13644937|16871|1 +638980.7983851|220136.75575282|112.37524457|16872|1 +638985.74394765|220132.230646|112.5020929|16873|1 +638990.69369596|220127.70138007|112.60386364|16874|1 +638995.65564373|220123.15943891|112.59381772|16875|1 +639000.58349033|220118.64687857|112.45097964|16876|1 +639005.56373027|220114.08627184|112.29802123|16877|1 +639010.50181496|220109.56368213|112.10504657|16878|1 +639015.44104577|220105.04030303|111.93033131|16879|1 +639020.3910413|220100.50598533|111.67484872|16880|1 +639025.33746359|220095.97586867|111.48716677|16881|1 +639030.3036366|220091.42541622|111.13222029|16882|1 +639035.2588502|220086.88693663|110.91932123|16883|1 +639040.20512457|220082.35824316|110.82366176|16884|1 +639045.09924022|220077.87805059|110.78593375|16885|1 +639046.84125719|220073.67905443|110.70951966|16886|1 +639041.88415142|220078.20477629|110.77319962|16887|1 +639036.93112043|220082.72660174|110.82425707|16888|1 +639031.96895741|220087.2583466|110.99253551|16889|1 +639026.95014058|220091.84332664|111.26875176|16890|1 +639021.83106053|220096.54094093|113.0948486|16891|1 +639016.9799194|220100.95043486|111.73140352|16892|1 +639011.97609226|220105.52093053|111.95185562|16893|1 +639007.02676609|220110.04122846|112.14401171|16894|1 +639001.98448345|220114.64623022|112.3183177|16895|1 +638997.04266844|220119.1593859|112.49149818|16896|1 +638992.00332064|220123.76210901|112.69683489|16897|1 +638987.00603646|220128.32042103|112.4622813|16898|1 +638981.99308186|220132.89572683|112.42601367|16899|1 +638977.0420382|220137.41270807|112.26149315|16900|1 +638972.00325672|220142.00862967|112.00612218|16901|1 +638966.98289077|220146.59287488|112.13099853|16902|1 +638961.98852581|220151.1494727|111.97047777|16903|1 +638956.93944173|220155.75739798|111.90765358|16904|1 +638951.71669287|220160.56225596|114.66445826|16905|1 +638946.88884738|220164.93094285|111.87063251|16906|1 +638941.84480085|220169.53441128|111.82055174|16907|1 +638936.79190504|220174.147897|111.91345788|16908|1 +638931.74128795|220178.75929389|112.00653146|16909|1 +638926.69336654|220183.36813283|112.09354028|16910|1 +638921.61969692|220188.00580859|112.57222829|16911|1 +638916.51307678|220192.67122587|112.87662893|16912|1 +638911.44330707|220197.30642673|113.38067359|16913|1 +638906.35155404|220201.95786915|113.53007872|16914|1 +638901.24320023|220206.62836215|113.96594136|16915|1 +638896.21705711|220211.21722129|113.92332062|16916|1 +638891.14191242|220215.85136329|113.91812093|16917|1 +638886.06772769|220220.48478841|113.92564606|16918|1 +638880.99113865|220225.12133555|114.00190203|16919|1 +638875.83653782|220229.83643421|114.61419146|16920|1 +638870.80224022|220234.43676243|114.87118094|16921|1 +638865.69868551|220239.09440081|114.68749876|16922|1 +638860.59005422|220243.75819166|114.61631226|16923|1 +638855.53568468|220248.37119776|114.45742862|16924|1 +638850.41725315|220253.047147|114.62368857|16925|1 +638845.31598189|220257.70335695|114.4913522|16926|1 +638840.27510217|220262.30131128|114.13378261|16927|1 +638834.53505982|220267.70811951|126.31232872|16928|1 +638829.42600825|220272.39330342|127.7956179|16929|1 +638824.40064005|220276.95000769|125.44259402|16930|1 +638824.94214338|220276.29342785|113.51070312|16931|2 +638819.49936647|220281.36825838|121.24225596|16932|1 +638819.83330424|220280.96024657|113.65448068|16933|2 +638814.22763694|220286.23955227|125.49043306|16934|1 +638809.57865682|220290.32566143|113.79564444|16935|1 +638804.36077441|220295.11446678|115.58950132|16936|1 +638799.29748549|220299.72662912|114.77469361|16937|1 +638793.92670156|220304.73164127|122.21362187|16938|1 +638794.16965491|220304.4209334|115.66940358|16939|2 +638788.56157445|220309.71935481|128.7585843|16940|1 +638783.33590433|220314.5510201|133.19375501|16941|1 +638778.36298859|220319.03369727|128.92111424|16942|1 +638773.11025472|220323.88742744|133.16103136|16943|1 +638768.08648614|220328.45635748|131.82539859|16944|1 +638768.48618362|220327.9119691|118.60543489|16945|2 +638762.9071546|220333.21679249|134.13214612|16946|1 +638757.98289567|220337.62190537|127.41886805|16947|1 +638752.83071446|220342.3444968|128.76512345|16948|1 +638753.05874099|220342.01769203|120.02440228|16949|2 +638747.93623061|220346.69277485|119.8658721|16950|1 +638742.8245709|220351.35184534|119.25823356|16951|1 +638737.7265035|220356.01908751|120.17102618|16952|1 +638732.61471008|220360.67852631|119.58293997|16953|1 +638727.49096702|220365.35666828|119.56988028|16954|1 +638722.41709781|220369.98815882|119.47825778|16955|1 +638717.24676556|220374.70875452|119.45775666|16956|1 +638712.12374732|220379.38707395|119.50860017|16957|1 +638707.05015854|220384.01930707|119.4930197|16958|1 +638701.92317782|220388.70699141|119.9695404|16959|1 +638696.79854666|220393.39184876|120.39659426|16960|1 +638691.67542516|220398.0754901|120.8366613|16961|1 +638686.55603094|220402.75225522|121.02103181|16962|1 +638681.43786793|220407.42721495|121.15589827|16963|1 +638676.32035761|220412.10174415|121.3037221|16964|1 +638671.20452156|220416.77152154|121.21455527|16965|1 +638666.08918369|220421.43847339|120.95086851|16966|1 +638660.97834984|220426.10232235|120.76267497|16967|1 +638655.86170993|220430.77223414|120.63107344|16968|1 +638650.7449791|220435.44315383|120.56866782|16969|1 +638645.62816295|220440.11389688|120.48796561|16970|1 +638640.51151865|220444.78541032|120.47645931|16971|1 +638635.39526167|220449.45741256|120.52788883|16972|1 +638630.27948543|220454.12956433|120.6235204|16973|1 +638625.16339101|220458.80106991|120.65085832|16974|1 +638620.0480083|220463.47285503|120.74738285|16975|1 +638614.98003059|220468.10063389|120.79398475|16976|1 +638609.86258444|220472.77175785|120.70381333|16977|1 +638604.74552506|220477.44328376|120.67032694|16978|1 +638599.67701533|220482.07136292|120.70530162|16979|1 +638589.49484363|220491.37046811|120.90182025|16980|1 +638584.37931437|220496.04193484|120.96987204|16981|1 +638579.31348251|220500.66931683|121.13712728|16982|1 +638574.24775674|220505.29659508|121.30459647|16983|1 +638569.13450728|220509.9674051|121.47998146|16984|1 +638564.11137381|220514.55285521|121.43395627|16985|1 +638559.00396297|220519.22144274|121.84115084|16986|1 +638553.94475013|220523.84587484|122.24069934|16987|1 +638548.88483615|220528.47034593|122.59670623|16988|1 +638543.82761641|220533.09336771|123.02785287|16989|1 +638538.82423598|220537.66951418|123.63188232|16990|1 +638533.77147996|220542.28970562|124.1569397|16991|1 +638528.71516741|220546.91140379|124.55726025|16992|1 +638523.70981322|220551.48753303|125.03640405|16993|1 +638513.63892798|220560.68980422|125.6288714|16994|1 +638508.63171303|220565.26658841|126.03303358|16995|1 +638503.58043731|220569.88476321|126.52132104|16996|1 +638498.57463358|220574.46048592|126.944217|16997|1 +638493.5690832|220579.03596794|127.36705715|16998|1 +638488.55979163|220583.61367459|127.70246991|16999|1 +638483.59052897|220588.15254805|127.8720971|17000|1 +638473.56862643|220597.31025585|128.49263721|17001|1 +638468.71506782|220601.77458588|130.97002583|17002|1 +638463.59671693|220606.42302675|129.17149015|17003|1 +638458.62828065|220610.96183774|129.39640711|17004|1 +638453.81635487|220615.39641919|132.48984308|17005|1 +638448.98532897|220619.85363632|135.96704244|17006|1 +638448.63650059|220620.08829831|129.75009785|17007|2 +638443.71594915|220624.58375757|130.0074501|17008|1 +638438.72962895|220629.13531053|129.96965699|17009|1 +638433.80378411|220633.63473181|130.16392459|17010|1 +638428.83298402|220638.17604009|130.41865373|17011|1 +638423.84350447|220642.73052381|130.3865161|17012|1 +638418.90896458|220647.23658304|130.48631485|17013|1 +638413.91587813|220651.79416757|130.44135937|17014|1 +638409.01519057|220656.26691395|130.36711259|17015|1 +638404.05335167|220660.79323344|130.12329443|17016|1 +638399.09586104|220665.31683443|129.97264286|17017|1 +638394.1615693|220669.82401575|130.17659361|17018|1 +638389.49269462|220674.13857048|134.07171248|17019|1 +638384.65817769|220678.56355216|134.94073094|17020|1 +638379.61890604|220683.14716642|133.70522249|17021|1 +638374.35402834|220687.88922064|128.94204324|17022|1 +638369.58948744|220692.27225344|131.43992367|17023|1 +638364.45374339|220696.92170653|128.55629857|17024|1 +638359.48215946|220701.45041333|127.83738287|17025|1 +638354.48916307|220706.00371917|127.49164514|17026|1 +638349.57350601|220710.49154993|127.53080562|17027|1 +638344.64460071|220714.98962094|127.4327742|17028|1 +638339.85999662|220719.3713506|128.48332613|17029|1 +638335.24705479|220723.63030576|132.05614775|17030|1 +638329.94187696|220728.40705031|127.14075423|17031|1 +638325.01315295|220732.906227|127.14034495|17032|1 +638320.10470297|220737.38299059|126.85278054|17033|1 +638315.32326994|220741.76272344|127.97400736|17034|1 +638312.18525599|220744.87842314|146.67846587|17035|1 +638307.50128547|220749.179395|148.56340574|17036|1 +638305.41084117|220750.79128205|126.49607601|17037|2 +638302.59127118|220753.65468038|148.06443985|17038|1 +638300.52874678|220755.24909049|126.59120528|17039|2 +638295.66227769|220759.69503675|126.86561699|17040|1 +638291.90683669|220763.27149096|137.92223864|17041|1 +638291.2036644|220763.81771037|130.79651049|17042|2 +638290.79240899|220764.13717074|126.6289891|17043|3 +638286.17951459|220768.37958564|128.98963112|17044|1 +638280.99033696|220773.07761416|126.10005288|17045|1 +638278.4269883|220775.71697865|148.42062348|17046|1 +638277.00677735|220776.82767123|134.58153354|17047|2 +638272.11865135|220781.28403976|134.16700918|17048|1 +638271.21770913|220781.99013069|125.49864653|17049|2 +638268.32357387|220784.87619326|143.71058527|17050|1 +638267.09281486|220785.84274721|132.015006|17051|2 +638266.39594807|220786.39001871|125.39287603|17052|3 +638262.12574355|220790.36234667|130.94319951|17053|1 +638261.53714778|220790.82552171|125.41882799|17054|2 +638259.22716692|220793.251653|149.09665798|17055|1 +638254.200285|220797.81063448|146.89670414|17056|1 +638253.23955747|220795.02289414|125.21861655|17057|1 +638258.58153765|220790.18599988|128.81242298|17058|1 +638269.84878306|220780.06595556|142.39454204|17059|1 +638268.06770394|220781.46207394|125.33804206|17060|2 +638275.43942588|220775.04673671|149.29934369|17061|1 +638279.85548232|220770.94060499|144.3904149|17062|1 +638279.26256372|220771.40336025|138.56385657|17063|2 +638277.91083212|220772.45834636|125.28052917|17064|3 +638282.9101567|220767.89964092|126.29996666|17065|1 +638287.8821774|220763.3562293|126.60431148|17066|1 +638293.51640953|220758.2999975|133.71277553|17067|1 +638292.82448303|220758.83626487|126.63557476|17068|2 +638300.2880299|220752.36740987|152.83494891|17069|1 +638297.73579249|220754.34059292|126.3687626|17070|2 +638304.65284866|220748.29156413|146.7016552|17071|1 +638302.71749353|220749.78397504|126.34818707|17072|2 +638309.59820775|220743.77409187|147.12115601|17073|1 +638307.6284831|220745.28901787|126.11168941|17074|2 +638312.86503908|220740.53750397|128.89050209|17075|1 +638317.58816947|220736.1872765|126.66688453|17076|1 +638322.58849123|220731.61779291|126.9499655|17077|1 +638329.04649081|220725.94041028|143.75618258|17078|1 +638327.60854771|220727.03373288|127.48768259|17079|2 +638332.96914032|220722.19210035|131.97688732|17080|1 +638337.6352482|220717.87739655|128.52597478|17081|1 +638342.50940079|220713.40485802|127.45401016|17082|1 +638347.51989213|220708.82200597|127.43157427|17083|1 +638352.49004854|220704.27759277|127.52762442|17084|1 +638357.50927344|220699.6888834|127.66059331|17085|1 +638362.56611|220695.07264554|128.29742083|17086|1 +638367.75096114|220690.37079163|131.24865124|17087|1 +638372.55956968|220685.93904684|128.76269568|17088|1 +638377.5549391|220681.36955371|128.70287596|17089|1 +638382.9686378|220676.49519242|134.35053323|17090|1 +638387.70432883|220672.11625479|130.84275893|17091|1 +638392.63442183|220667.59537743|129.96745246|17092|1 +638397.66355293|220662.9938327|129.81488473|17093|1 +638402.67488637|220658.41477274|130.12242936|17094|1 +638407.67510848|220653.84434931|130.30546042|17095|1 +638412.71901497|220649.23375533|130.45841883|17096|1 +638417.70264501|220644.67601345|130.4483078|17097|1 +638422.75127957|220640.06289535|130.73230963|17098|1 +638427.71532068|220635.51943085|130.4540935|17099|1 +638432.7357502|220630.92653186|130.3268359|17100|1 +638437.75519574|220626.33453235|130.1996248|17101|1 +638442.73142088|220621.78333799|130.17039862|17102|1 +638447.91321153|220617.08281556|132.98020483|17103|1 +638452.79948175|220612.56932112|129.66230769|17104|1 +638457.76359407|220608.02684974|129.45818951|17105|1 +638462.82402342|220603.3967455|129.27713973|17106|1 +638467.86042463|220598.7951411|129.58051717|17107|1 +638472.83205453|220594.23540133|128.60493756|17108|1 +638477.8830502|220589.61166164|128.25584189|17109|1 +638482.88572055|220585.03194025|127.89790953|17110|1 +638487.94589222|220580.40263554|127.75502494|17111|1 +638492.99731184|220575.77879868|127.42510954|17112|1 +638497.99362334|220571.20297006|126.92370658|17113|1 +638503.04091248|220566.58149053|126.48789975|17114|1 +638508.08902781|220561.95943633|126.06474334|17115|1 +638513.13771343|220557.33695672|125.64800515|17116|1 +638518.19180992|220552.71140475|125.36880303|17117|1 +638523.24657651|220548.08550129|125.10851142|17118|1 +638528.29323888|220543.46380448|124.61109893|17119|1 +638533.3907533|220538.79666549|124.18651004|17120|1 +638538.43477805|220534.1757068|123.56460257|17121|1 +638543.48044782|220529.55351406|122.96157771|17122|1 +638548.5321875|220524.92815045|122.53360298|17123|1 +638553.58335872|220520.30273385|122.06206803|17124|1 +638558.64128792|220515.6742792|121.82184965|17125|1 +638563.73949807|220511.00480731|121.26787305|17126|1 +638568.80359389|220506.3738682|121.25931542|17127|1 +638573.86526218|220501.74389402|121.15722842|17128|1 +638578.97256592|220497.07089114|120.95416134|17129|1 +638584.03313848|220492.44117728|120.7963474|17130|1 +638589.09494087|220487.8112013|120.70120883|17131|1 +638594.20512245|220483.13755559|120.6429239|17132|1 +638599.26665457|220478.50751294|120.52329376|17133|1 +638604.32916951|220473.87717183|120.4475959|17134|1 +638609.44073249|220469.20340493|120.47160379|17135|1 +638614.50694059|220464.57437026|120.74012747|17136|1 +638619.61567529|220459.90017069|120.53991603|17137|1 +638624.72645638|220455.22673405|120.53386057|17138|1 +638629.7893085|220450.59682843|120.50948992|17139|1 +638634.85163147|220445.96589565|120.37281892|17140|1 +638639.96218769|220441.29101882|120.2428452|17141|1 +638645.02568363|220436.66073075|120.23166446|17142|1 +638650.13712184|220431.98676362|120.22743215|17143|1 +638655.24868911|220427.31489615|120.38611116|17144|1 +638660.31217259|220422.68719429|120.56323558|17145|1 +638665.41768667|220418.02088111|120.72256571|17146|1 +638670.52832534|220413.34930849|120.83865188|17147|1 +638675.59067993|220408.72292898|121.03531934|17148|1 +638680.70275559|220404.04703266|120.92719549|17149|1 +638685.8150097|220399.37174941|120.87576597|17150|1 +638690.83385452|220394.77944944|120.65318376|17151|1 +638695.95259212|220390.09201631|120.14007917|17152|1 +638701.07312517|220385.40304376|119.63371837|17153|1 +638706.09592061|220380.80717324|119.41161985|17154|1 +638711.2137502|220376.1261036|119.30581215|17155|1 +638716.28399441|220371.48898421|119.2359186|17156|1 +638721.35232171|220366.85565613|119.31616502|17157|1 +638726.42274923|220362.21923887|119.30917939|17158|1 +638731.53765592|220357.54486787|119.49846124|17159|1 +638736.54869198|220352.97044975|120.06405575|17160|1 +638741.64410319|220348.29747904|119.03991157|17161|1 +638746.70150286|220343.68188084|119.68952903|17162|1 +638751.47888922|220339.46606124|130.98417383|17163|1 +638756.55908123|220334.81039765|130.20983815|17164|1 +638756.86316409|220334.38350259|119.18502858|17165|2 +638761.58966571|220330.22463352|131.25234405|17166|1 +638761.94351108|220329.73608629|119.02999587|17167|2 +638766.55475282|220325.70573937|132.81595406|17168|1 +638771.66676631|220321.00888817|131.14349466|17169|1 +638772.08074232|220320.453969|118.07461042|17170|2 +638776.93493141|220316.08814879|123.464748|17171|1 +638777.12973797|220315.83043586|117.56746826|17172|2 +638781.91059937|220311.57707519|126.31781677|17173|1 +638782.22874365|220311.16138621|117.07034413|17174|2 +638786.88438965|220307.04786444|127.68187577|17175|1 +638792.35072331|220301.88838536|115.69512299|17176|1 +638797.47943512|220297.18473077|114.60633146|17177|1 +638802.5168914|220292.58049498|114.70531166|17178|1 +638807.60124099|220287.91833734|113.68804149|17179|1 +638812.32964207|220283.69568714|121.12666279|17180|1 +638817.19796978|220279.29629362|124.94732094|17181|1 +638817.71034806|220278.67050385|113.28185151|17182|2 +638822.15376431|220274.78816982|126.63503525|17183|1 +638822.75984496|220274.05354392|113.25044872|17184|2 +638827.13274303|220270.25120126|127.75516447|17185|1 +638832.79028536|220264.88919111|113.70052447|17186|1 +638837.8279546|220260.28727579|113.98092652|17187|1 +638842.80888859|220255.73964156|114.44328062|17188|1 +638847.85767922|220251.12497814|114.53056849|17189|1 +638852.869449|220246.54161185|114.43206268|17190|1 +638857.877512|220241.96298775|114.43316959|17191|1 +638862.87905278|220237.39226267|114.57744944|17192|1 +638867.87210248|220232.83157822|114.88972868|17193|1 +638872.85679953|220228.26951496|114.53626118|17194|1 +638877.8979346|220223.65465618|114.08893875|17195|1 +638882.87563695|220219.10168773|113.93444554|17196|1 +638887.84760173|220214.55565305|113.90420547|17197|1 +638892.82334211|220210.00575545|113.84263701|17198|1 +638897.7940527|220205.46188833|113.88659721|17199|1 +638902.78968539|220200.89055136|113.58208495|17200|1 +638907.7908942|220196.3135447|113.23395667|17201|1 +638912.79226496|220191.73690312|112.92306339|17202|1 +638917.7541138|220187.1951699|112.52449158|17203|1 +638922.76189239|220182.61252|112.20096649|17204|1 +638927.70989802|220178.08705677|112.06916032|17205|1 +638932.66577034|220173.55340543|111.86250275|17206|1 +638937.61942791|220169.02262222|111.71765549|17207|1 +638942.55477617|220164.51217746|111.83950876|17208|1 +638947.54957707|220159.94586781|111.84433638|17209|1 +638952.45503548|220155.46018288|111.7779403|17210|1 +638957.40463005|220150.93531314|111.79323242|17211|1 +638962.29500212|220146.46659712|111.96165039|17212|1 +638967.26635115|220141.91901487|111.76529919|17213|1 +638972.14103633|220137.46773734|112.16216878|17214|1 +638977.09713436|220132.93719635|112.19459477|17215|1 +638981.99707703|220128.45941676|112.33618642|17216|1 +638986.90279853|220123.97577087|112.43385507|17217|1 +638991.80044376|220119.50101513|112.64254042|17218|1 +638996.73924572|220114.98289275|112.42326965|17219|1 +639001.67866784|220110.46454377|112.22844394|17220|1 +639006.56540777|220105.99526736|112.10485124|17221|1 +639011.51293796|220101.46918658|111.88449215|17222|1 +639016.41553727|220096.98401171|111.65469177|17223|1 +639021.36244183|220092.45943223|111.50172405|17224|1 +639026.26862575|220087.97132113|111.29578272|17225|1 +639031.18413628|220083.47386236|111.02752879|17226|1 +639036.02890075|220079.04430525|111.00270235|17227|1 +639040.94032964|220074.55191608|110.83231241|17228|1 +639045.83399757|220070.07842108|110.85919455|17229|1 +639043.39393988|220069.43623063|110.8532135|17230|1 +639038.49755382|220073.89625474|110.77335775|17231|1 +639033.53469529|220078.41954263|110.88737893|17232|1 +639028.57661313|220082.93820657|110.98259191|17233|1 +639023.61888451|220087.45686263|111.10227787|17234|1 +639018.65001681|220091.9875952|111.36399265|17235|1 +639013.63696027|220096.55842848|111.61018277|17236|1 +639008.67799571|220101.07959508|111.83442069|17237|1 +639003.73199378|220105.58749573|111.95311136|17238|1 +638998.69276843|220110.18020861|112.05394261|17239|1 +638993.73628487|220114.69998418|112.34562772|17240|1 +638988.75342096|220119.24094155|112.42402309|17241|1 +638983.79461759|220123.75666302|112.26053507|17242|1 +638978.83117185|220128.27760592|112.171145|17243|1 +638973.86656032|220132.80010449|112.11868298|17244|1 +638968.867155|220137.3524668|111.9276524|17245|1 +638963.92938452|220141.84675381|111.60178326|17246|1 +638958.90666557|220146.4247179|111.73303133|17247|1 +638953.90907459|220150.97597058|111.58501216|17248|1 +638948.94539098|220155.49905823|111.64309245|17249|1 +638943.91508251|220160.08643256|111.96039465|17250|1 +638938.94309603|220164.61083436|111.55740449|17251|1 +638933.88937827|220169.21591965|111.60653647|17252|1 +638928.87979679|220173.78191032|111.74368186|17253|1 +638923.86485879|220178.35420456|111.98641172|17254|1 +638918.80188383|220182.97073023|112.25950257|17255|1 +638913.79693949|220187.53295373|112.43387367|17256|1 +638908.72242733|220192.16326596|112.94967578|17257|1 +638903.71677821|220196.72609602|113.21746462|17258|1 +638898.65521859|220201.34149096|113.64052801|17259|1 +638893.61432092|220205.93433091|113.79008197|17260|1 +638888.63378117|220210.46998462|113.78411023|17261|1 +638883.60275695|220215.05253644|113.84031157|17262|1 +638878.57358216|220219.63339286|113.89654081|17263|1 +638873.47575513|220224.28193724|114.32667355|17264|1 +638868.44563497|220228.86482223|114.47023717|17265|1 +638863.40409371|220233.46132276|114.85044728|17266|1 +638858.42953854|220237.98092813|114.0661587|17267|1 +638853.36817725|220242.58927072|113.98630295|17268|1 +638848.33212494|220247.18073956|114.36656887|17269|1 +638843.27170844|220251.78879738|114.3305803|17270|1 +638838.21295196|220256.3952498|114.28851766|17271|1 +638833.17755892|220260.97421265|113.79163537|17272|1 +638828.13250375|220265.56477325|113.50046186|17273|1 +638822.49876873|220270.88093148|127.12778756|17274|1 +638817.4582918|220275.45738996|126.10447123|17275|1 +638812.78466758|220279.59834427|117.64052442|17276|1 +638812.97556912|220279.36411728|113.20716755|17277|2 +638807.91069814|220283.98007568|113.45882711|17278|1 +638802.79350967|220288.64582136|113.86242189|17279|1 +638797.71485934|220293.28051125|114.5698778|17280|1 +638792.59488622|220297.95158197|115.18011154|17281|1 +638787.47498809|220302.62359178|115.86567106|17282|1 +638781.97929842|220307.80432141|128.79129865|17283|1 +638776.98547984|220312.31946837|126.38994275|17284|1 +638777.28961433|220311.91894033|117.31032066|17285|2 +638771.83914622|220317.0357474|128.56295864|17286|1 +638766.65923044|220321.80051367|132.05359907|17287|1 +638767.096323|220321.20910345|117.84169394|17288|2 +638761.52447523|220326.50810125|134.36536956|17289|1 +638756.5823356|220330.95025961|130.06057255|17290|1 +638756.89346507|220330.51585602|118.95493054|17291|2 +638751.54346079|220335.52432354|128.97672956|17292|1 +638751.80679966|220335.15008828|119.09379676|17293|2 +638746.44785727|220340.17941657|130.05324275|17294|1 +638746.72151355|220339.78296734|119.22670054|17295|2 +638741.63635657|220344.4163224|119.40358312|17296|1 +638736.55119106|220349.05044285|119.63695539|17297|1 +638731.43159711|220353.70823461|119.2998311|17298|1 +638726.35579439|220358.32871745|119.15907662|17299|1 +638721.27958899|220362.95007587|119.05601294|17300|1 +638716.20309906|220367.57219652|118.99064936|17301|1 +638711.12556099|220372.196533|119.01919651|17302|1 +638705.99985264|220376.86573474|119.11483738|17303|1 +638700.92059787|220381.4948545|119.38134257|17304|1 +638695.84119517|220386.1257091|119.76680819|17305|1 +638690.71428285|220390.80150452|120.26972733|17306|1 +638685.63898645|220395.42716445|120.54957127|17307|1 +638680.56657425|220400.04705699|120.59844281|17308|1 +638675.446807|220404.71022153|120.65263496|17309|1 +638670.32828205|220409.37004557|120.54480877|17310|1 +638665.25777444|220413.98521856|120.37579549|17311|1 +638660.13923309|220418.64428119|120.21244699|17312|1 +638655.02535089|220423.29901157|120.04335|17313|1 +638649.95373654|220427.91551815|119.90010264|17314|1 +638644.83414347|220432.57629899|119.79415541|17315|1 +638639.71482172|220437.2385205|119.81361472|17316|1 +638634.64425987|220441.85846394|119.99615279|17317|1 +638629.52678701|220446.52196762|120.23509682|17318|1 +638624.40912489|220451.18411442|120.36196375|17319|1 +638619.33948629|220455.80226313|120.47657093|17320|1 +638614.22093293|220460.46326478|120.46044165|17321|1 +638609.10254132|220465.12445574|120.46974343|17322|1 +638604.02930333|220469.74180641|120.28517758|17323|1 +638598.90977415|220474.40342844|120.25147725|17324|1 +638593.79276403|220479.06504723|120.38692041|17325|1 +638588.72335051|220483.68271396|120.48438443|17326|1 +638583.65475351|220488.30021273|120.62577143|17327|1 +638578.53783093|220492.96140745|120.73726252|17328|1 +638573.46853843|220497.5790335|120.84164705|17329|1 +638568.39916467|220502.19672812|120.94621762|17330|1 +638563.34008876|220506.81087995|121.48208366|17331|1 +638558.27390827|220511.42717267|121.69948478|17332|1 +638553.21154966|220516.04184668|122.05449638|17333|1 +638548.15071632|220520.65563316|122.44716157|17334|1 +638543.09226818|220525.26808716|122.90245562|17335|1 +638538.03739531|220529.87854748|123.45159529|17336|1 +638532.98523326|220534.48728753|124.05709443|17337|1 +638527.97824108|220539.05333937|124.55419066|17338|1 +638522.92391587|220543.6629227|125.06619764|17339|1 +638517.85929871|220548.27795872|125.28489171|17340|1 +638512.79878612|220552.89077266|125.61615587|17341|1 +638507.73644016|220557.50456881|125.89764623|17342|1 +638502.72885249|220562.07074119|126.35118224|17343|1 +638497.67368777|220566.68027088|126.80147194|17344|1 +638492.61968052|220571.28898799|127.27064424|17345|1 +638487.61261599|220575.85449027|127.71169727|17346|1 +638482.59403117|220580.42701386|127.89681192|17347|1 +638477.57822236|220584.99793011|128.15053648|17348|1 +638472.56178405|220589.56932166|128.39800094|17349|1 +638467.55699375|220594.14634952|129.84084599|17350|1 +638462.50063001|220598.74337735|129.29599443|17351|1 +638457.52162559|220603.27808017|129.35855818|17352|1 +638452.50648991|220607.84893468|129.65580575|17353|1 +638447.54036209|220612.37542745|129.97996335|17354|1 +638442.51774606|220616.95147631|130.15858537|17355|1 +638437.49219027|220621.52969023|130.29981424|17356|1 +638432.54283422|220626.03408885|130.12641052|17357|1 +638427.52414387|220630.60805133|130.41710034|17358|1 +638422.54787971|220635.14221845|130.62817625|17359|1 +638417.55297453|220639.68956442|130.55863617|17360|1 +638412.59764531|220644.19935939|130.38422786|17361|1 +638407.90422359|220648.53422361|134.91165359|17362|1 +638407.5890729|220648.75703254|130.15863187|17363|2 +638402.57842926|220653.31658587|129.93298008|17364|1 +638397.65925936|220657.7921836|129.67150715|17365|1 +638392.64303062|220662.35655637|129.42688903|17366|1 +638388.66543687|220666.16198655|143.03478331|17367|1 +638387.97608338|220666.65991294|133.4162163|17368|2 +638382.75371993|220671.3646832|129.67297683|17369|1 +638378.09772564|220675.6586106|133.70392954|17370|1 +638372.81459474|220680.40151477|128.69204869|17371|1 +638367.80647569|220684.96182156|128.69570429|17372|1 +638362.87489171|220689.44915932|128.46909441|17373|1 +638357.89984719|220693.96910021|127.72586387|17374|1 +638352.90817338|220698.51013628|127.41794717|17375|1 +638347.98970415|220702.98894229|127.44525719|17376|1 +638343.0004778|220707.52890239|127.22394932|17377|1 +638338.68424924|220711.54766617|133.81273242|17378|1 +638334.32209423|220715.61381873|140.80367782|17379|1 +638329.52506023|220719.99156602|141.54652699|17380|1 +638328.33169772|220720.89478636|127.93503292|17381|2 +638325.232821|220723.99342529|148.50056294|17382|1 +638318.57207721|220729.78895796|128.51753807|17383|1 +638313.49159873|220734.39312218|126.902359|17384|1 +638308.90874483|220738.61716238|130.70658092|17385|1 +638305.90608132|220741.61983592|150.66831403|17386|1 +638300.92036047|220746.14176704|149.36313527|17387|1 +638296.16849517|220750.48399498|150.52688052|17388|1 +638294.05921939|220752.11168219|128.77101147|17389|2 +638289.4182931|220756.3719308|131.34621758|17390|1 +638288.90263981|220756.7708212|126.09915061|17391|2 +638286.07248687|220759.62068857|146.39398034|17392|1 +638284.01186746|220761.21844877|125.70170431|17393|2 +638279.13336971|220765.66352048|125.93804384|17394|1 +638274.2495894|220770.10643211|125.66336239|17395|1 +638271.24194159|220773.0916323|144.00512602|17396|1 +638269.26382579|220774.63572345|124.90078415|17397|2 +638266.28654485|220777.58185245|142.40932256|17398|1 +638264.45814166|220779.01204741|124.96966381|17399|2 +638261.91638774|220781.62038713|146.84229805|17400|1 +638259.92613608|220783.18036573|128.09360961|17401|2 +638256.40402545|220786.55478731|140.55963642|17402|1 +638254.71770587|220787.87917417|124.86821863|17403|2 +638255.08228475|220784.53893787|141.0203627|17404|1 +638253.31121477|220785.92978377|124.54254484|17405|2 +638260.78210173|220779.43400206|148.21486818|17406|1 +638263.96128006|220776.30951962|132.027582|17407|1 +638263.19112157|220776.91185834|124.67996928|17408|2 +638270.23223896|220770.76042028|144.85550372|17409|1 +638268.15912638|220772.37831779|124.8214214|17410|2 +638273.13054124|220767.84895607|125.49787448|17411|1 +638280.42822073|220761.50620866|148.80675882|17412|1 +638278.45499918|220763.03930472|129.23469573|17413|2 +638283.39168475|220758.53191198|129.19651193|17414|1 +638283.04746141|220758.79873295|125.73636273|17415|2 +638290.1981075|220752.57899187|148.23021611|17416|1 +638287.98168696|220754.29290336|125.64746565|17417|2 +638295.19618372|220748.02842319|149.13228379|17418|1 +638294.5919907|220748.49447864|142.89134992|17419|2 +638292.94516938|220749.76478463|125.88080071|17420|3 +638299.93734564|220743.6761847|147.39099124|17421|1 +638297.90409015|220745.24058235|126.09529968|17422|2 +638305.16473672|220738.95046148|150.78740468|17423|1 +638307.83113089|220736.18633732|126.70974712|17424|1 +638312.92147782|220731.5558932|127.92192672|17425|1 +638319.10187298|220726.10406673|141.82296648|17426|1 +638317.69356652|220727.17573099|126.19811221|17427|2 +638324.49136793|220721.25091527|146.71542182|17428|1 +638329.38890261|220716.77220262|146.15486887|17429|1 +638327.66405599|220718.07673989|126.42964273|17430|2 +638333.79054199|220712.66742393|139.83980915|17431|1 +638332.93451677|220713.31277636|129.89759612|17432|2 +638338.22933381|220708.52458996|133.21694434|17433|1 +638337.69895557|220708.92309866|126.9583557|17434|2 +638342.63782565|220704.41757802|127.19548589|17435|1 +638347.6675501|220699.82869576|127.39421834|17436|1 +638352.62712814|220695.30049412|127.35076044|17437|1 +638357.66183221|220690.70870115|127.66765336|17438|1 +638362.7298118|220686.09283743|128.44496561|17439|1 +638367.73958351|220681.52041748|128.51325925|17440|1 +638372.75447954|220676.94460048|128.67485901|17441|1 +638377.79671558|220672.34928387|129.23479804|17442|1 +638383.45731151|220667.29756397|137.6947916|17443|1 +638382.85183062|220667.73623288|129.35336779|17444|2 +638387.85821037|220663.16787757|129.49023413|17445|1 +638392.84435741|220658.61442062|129.36551591|17446|1 +638397.90555126|220653.99814703|129.65254082|17447|1 +638408.20075877|220644.65077495|133.69598582|17448|1 +638413.02566735|220640.20020859|130.50103026|17449|1 +638418.00668389|220635.64972884|130.42593702|17450|1 +638423.08799552|220631.00903824|130.44081056|17451|1 +638428.11307984|220626.41808332|130.34226754|17452|1 +638433.08391405|220621.87538949|130.15483675|17453|1 +638438.16439856|220617.23616931|130.22016313|17454|1 +638443.32677275|220612.56558368|133.46838066|17455|1 +638448.20652991|220608.06149223|130.01096617|17456|1 +638453.21050491|220603.48575989|129.61325942|17457|1 +638458.22579315|220598.90269586|129.43383746|17458|1 +638463.24741632|220594.3157325|129.3916632|17459|1 +638468.43612302|220589.60948591|131.77905714|17460|1 +638473.29039908|220585.12928918|128.36779807|17461|1 +638478.34939322|220580.50568715|128.13500251|17462|1 +638483.35776951|220575.92753214|127.84961471|17463|1 +638488.4180622|220571.30336406|127.66079795|17464|1 +638493.46489307|220566.68732104|127.16632482|17465|1 +638498.46393706|220562.11472716|126.6625313|17466|1 +638503.51246358|220557.49741438|126.18696868|17467|1 +638508.56482877|220552.87780275|125.79898229|17468|1 +638513.62279789|220548.25504801|125.55478275|17469|1 +638518.68044637|220543.63250809|125.30453706|17470|1 +638523.7836491|220538.96756704|124.98959751|17471|1 +638528.7838756|220534.39345019|124.44857829|17472|1 +638533.87984346|220529.73173219|123.88437904|17473|1 +638538.93010472|220525.11224129|123.36010302|17474|1 +638543.98211105|220520.49159107|122.86722049|17475|1 +638549.0814898|220515.82714429|122.32892669|17476|1 +638554.14074994|220511.20280172|122.04887811|17477|1 +638559.19780805|220506.57912301|121.66904937|17478|1 +638564.30705999|220501.91004948|121.45037391|17479|1 +638569.40835458|220497.24322761|120.86347832|17480|1 +638574.42263734|220492.66064302|120.6355848|17481|1 +638579.53596121|220487.98994223|120.56790508|17482|1 +638584.64826054|220483.31951572|120.45067479|17483|1 +638589.71361574|220478.69259971|120.38471589|17484|1 +638594.77773626|220474.06571568|120.23771062|17485|1 +638599.89022096|220469.39473889|120.09027746|17486|1 +638604.95830553|220464.767752|120.20000122|17487|1 +638610.0751647|220460.09800924|120.4345176|17488|1 +638615.13955385|220455.47067869|120.26978314|17489|1 +638620.2063104|220450.84443695|120.34270907|17490|1 +638625.31921121|220446.17332111|120.20959135|17491|1 +638630.38377033|220441.54417224|119.92054795|17492|1 +638635.4973872|220436.87158707|119.72567573|17493|1 +638640.56371691|220432.24187211|119.51214415|17494|1 +638645.67891963|220427.57076123|119.53051516|17495|1 +638650.74639417|220422.9454787|119.71746226|17496|1 +638655.95709498|220418.18905472|119.86296995|17497|1 +638660.92303055|220413.65533588|119.97393084|17498|1 +638666.03736058|220408.9866996|120.11250871|17499|1 +638671.15152154|220404.31840879|120.26401604|17500|1 +638681.28577875|220395.06445294|120.3345142|17501|1 +638686.40235672|220390.39067789|120.2434033|17502|1 +638691.52354311|220385.7077833|119.79037889|17503|1 +638696.59690442|220381.07036003|119.4736255|17504|1 +638701.72141958|220376.3843764|119.01521535|17505|1 +638706.79424934|220371.75061627|118.93021572|17506|1 +638711.86786035|220367.11615221|118.84544863|17507|1 +638716.98893058|220362.43940148|118.83177502|17508|1 +638722.06173494|220357.80740873|118.8725168|17509|1 +638727.13406028|220353.17654713|118.96345096|17510|1 +638732.25345471|220348.50358454|119.11332119|17511|1 +638737.28542556|220343.90558687|118.9149515|17512|1 +638742.39936654|220339.24128737|119.33402443|17513|1 +638747.17715308|220335.03473132|130.84519599|17514|1 +638752.26188542|220330.35596832|128.24902369|17515|1 +638752.51473407|220329.99918964|118.99080749|17516|2 +638757.22664637|220325.87015595|131.78013614|17517|1 +638757.60369038|220325.34711655|118.6337309|17518|2 +638762.44974297|220321.02760529|126.42252687|17519|1 +638762.68814188|220320.70205901|118.4892185|17520|2 +638767.33968781|220316.61942592|130.64307769|17521|1 +638772.51514384|220311.84766562|127.29017797|17522|1 +638777.62277613|220307.16891072|126.22203638|17523|1 +638783.00795479|220302.11343096|116.13498539|17524|1 +638788.12443218|220297.43062536|115.41820911|17525|1 +638793.19700317|220292.7874641|114.67300659|17526|1 +638798.26926153|220288.14579441|114.0153989|17527|1 +638803.38984618|220283.46098247|113.42459658|17528|1 +638808.39202295|220278.89218965|113.42428962|17529|1 +638813.04917801|220274.77616385|123.5521568|17530|1 +638813.50845916|220274.21399073|113.03994022|17531|2 +638818.03580926|220270.23742903|124.71469281|17532|1 +638823.56079273|220265.034883|113.19987496|17533|1 +638828.65084382|220260.38996083|113.48959739|17534|1 +638833.62570096|220255.85547019|114.17485926|17535|1 +638838.68074146|220251.23910377|114.21689399|17536|1 +638843.73580456|220246.62306148|114.283997|17537|1 +638848.74786057|220242.04523754|114.27746715|17538|1 +638853.78825419|220237.43486796|113.77887333|17539|1 +638858.78799091|220232.87220066|114.05877309|17540|1 +638863.81328727|220228.29183315|114.74888118|17541|1 +638868.85643185|220223.67974469|114.3064887|17542|1 +638873.84211965|220219.12277366|114.06375884|17543|1 +638878.87955574|220214.51836427|113.80195104|17544|1 +638883.90456288|220209.92852889|113.77667811|17545|1 +638888.93453864|220205.33349176|113.70165929|17546|1 +638893.91769945|220200.78122805|113.63279824|17547|1 +638898.9264476|220196.20079966|113.20929766|17548|1 +638903.91612056|220191.64218486|113.10908032|17549|1 +638908.93980283|220187.04627993|112.5486948|17550|1 +638913.95409086|220182.46141452|112.16859631|17551|1 +638918.9623262|220177.8837669|111.91277885|17552|1 +638923.91880433|220173.35441072|111.73686366|17553|1 +638928.92056229|220168.78480703|111.63614402|17554|1 +638933.88320959|220164.24957976|111.44112298|17555|1 +638938.87713618|220159.68933335|111.50160313|17556|1 +638943.77796325|220155.21359229|111.53453142|17557|1 +638948.78219434|220150.64285754|111.51389078|17558|1 +638953.74415058|220146.1099722|111.44199735|17559|1 +638958.65992483|220141.61917231|111.36817845|17560|1 +638963.59160804|220137.11956821|111.71125587|17561|1 +638968.54789058|220132.59381459|111.7810564|17562|1 +638973.49653757|220128.07655154|111.96217129|17563|1 +638978.4049894|220123.59489184|112.0664535|17564|1 +638983.31599301|220119.11082152|112.16401984|17565|1 +638988.2273559|220114.62667341|112.27968743|17566|1 +638993.20527073|220110.07951851|112.22390467|17567|1 +638998.10131155|220105.60507919|112.02652098|17568|1 +639003.0470518|220101.08561459|111.84988024|17569|1 +639007.9974645|220096.5616443|111.6543662|17570|1 +639012.94903873|220092.03687221|111.47713946|17571|1 +639017.81000343|220087.59411492|111.25635249|17572|1 +639022.76568772|220083.06585849|111.09691074|17573|1 +639027.673199|220078.58180765|110.95864914|17574|1 +639032.5772832|220074.1017326|110.88172345|17575|1 +639037.42265794|220069.67683052|110.92436279|17576|1 +639042.35092468|220065.17864087|111.13420157|17577|1 +639047.26825247|220060.67950575|110.54540842|17578|1 +639046.89336741|220057.74389154|110.19589417|17579|1 +639041.8766182|220062.31775614|110.71920281|17580|1 +639036.85104757|220066.90134951|111.36614136|17581|1 +639031.89618787|220071.40506597|110.89077408|17582|1 +639026.93617319|220075.92099731|110.96259309|17583|1 +639021.97336114|220080.44023022|111.08978558|17584|1 +639016.96541875|220085.00044621|111.20745305|17585|1 +639011.9999102|220089.52330033|111.42086371|17586|1 +639006.99301152|220094.08322509|111.5878492|17587|1 +639002.02883463|220098.6055259|111.85039184|17588|1 +638996.98622864|220103.19690849|111.9402377|17589|1 +638992.01778451|220107.72460458|112.31393657|17590|1 +638986.99380369|220112.29703875|112.26133502|17591|1 +638982.04223196|220116.8001924|111.96932435|17592|1 +638977.06655627|220121.32930153|111.96829186|17593|1 +638972.10284984|220125.84595465|111.85545201|17594|1 +638967.1485245|220130.35285609|111.65550102|17595|1 +638962.13694523|220134.91359492|111.57748702|17596|1 +638957.17435823|220139.42996071|111.51970439|17597|1 +638952.18193593|220143.97066267|111.25529209|17598|1 +638947.15917498|220148.54445616|111.38795403|17599|1 +638942.15159038|220153.10219565|111.35920224|17600|1 +638937.14505822|220157.65913657|111.3427846|17601|1 +638932.18335133|220162.17626164|111.40186018|17602|1 +638927.1199153|220166.78732046|111.55192574|17603|1 +638922.11463568|220171.34402847|111.60358781|17604|1 +638917.10072111|220175.91064438|111.80429224|17605|1 +638912.03249854|220180.52835082|112.1224409|17606|1 +638907.0201946|220185.09416449|112.37289123|17607|1 +638901.93330653|220189.73373624|113.04573522|17608|1 +638896.93548809|220194.28186969|113.14701296|17609|1 +638891.8303766|220198.93033086|113.44076306|17610|1 +638886.84364559|220203.46681102|113.4362424|17611|1 +638881.78928035|220208.06953355|113.76765539|17612|1 +638876.71085793|220212.68929608|113.74471721|17613|1 +638871.7195787|220217.23220672|113.9080099|17614|1 +638866.61917049|220221.87797622|114.32110179|17615|1 +638861.57621358|220226.46984854|114.62187473|17616|1 +638856.60294078|220230.98160426|113.71461666|17617|1 +638851.54458924|220235.57995969|113.46810098|17618|1 +638846.50699982|220240.16673475|113.75643745|17619|1 +638841.41857148|220244.80113987|114.13935438|17620|1 +638836.35330935|220249.40877079|114.11132812|17621|1 +638831.33643498|220253.97262968|114.10704001|17622|1 +638821.25748819|220263.12747705|113.07908209|17623|1 +638815.87363976|220268.12433808|120.24580316|17624|1 +638816.20032346|220267.7264125|112.95788925|17625|2 +638810.66743012|220272.90969838|123.80434656|17626|1 +638806.0744069|220276.93953762|113.05878561|17627|1 +638801.00473647|220281.55516152|113.32460248|17628|1 +638795.87379919|220286.23186912|113.97326186|17629|1 +638790.79612078|220290.85925268|114.56397117|17630|1 +638785.71293131|220295.49473852|115.37949511|17631|1 +638780.5890854|220300.16566869|116.07928636|17632|1 +638775.5099874|220304.798359|116.96407133|17633|1 +638770.03384813|220309.94186791|128.67946339|17634|1 +638764.7993344|220314.77317422|133.70678519|17635|1 +638759.8239521|220319.25549508|130.53347486|17636|1 +638760.19243216|220318.74956613|118.16833512|17637|2 +638754.82040115|220323.7733507|128.07772217|17638|1 +638755.09334011|220323.3925154|118.47686574|17639|2 +638749.69893328|220328.47996397|131.53057878|17640|1 +638744.73851231|220332.90784383|125.39456895|17641|1 +638739.81560679|220337.29828963|119.02350323|17642|1 +638734.78063912|220341.87681302|118.89877571|17643|1 +638729.64816937|220346.54546973|118.86897282|17644|1 +638724.56687084|220351.16573092|118.71087983|17645|1 +638719.48476499|220355.78749573|118.60923002|17646|1 +638714.35493398|220360.45287785|118.51816563|17647|1 +638709.27154449|220365.07752251|118.54203398|17648|1 +638704.18677846|220369.70530825|118.70355933|17649|1 +638699.10308085|220374.33202451|118.85909433|17650|1 +638693.96857092|220379.00948903|119.33808001|17651|1 +638688.88643573|220383.63572428|119.56295976|17652|1 +638683.75589215|220388.30845157|119.96161529|17653|1 +638678.67720831|220392.92955414|120.0433779|17654|1 +638673.59984623|220397.54789284|120.01288668|17655|1 +638668.47517922|220402.20854325|119.92531976|17656|1 +638663.39882437|220406.82372079|119.73289391|17657|1 +638658.27422689|220411.48361179|119.59609268|17658|1 +638652.72383218|220416.53094519|119.42241922|17659|1 +638648.07703202|220420.75540637|119.28070665|17660|1 +638642.99937381|220425.37312694|119.18928879|17661|1 +638637.87416992|220430.03605204|119.23523957|17662|1 +638632.79820877|220434.65764502|119.5380682|17663|1 +638627.67498566|220439.32159035|119.79102071|17664|1 +638622.55245031|220443.98483011|120.03817821|17665|1 +638617.47713414|220448.6029752|120.13563292|17666|1 +638612.35307281|220453.26398182|120.12107564|17667|1 +638607.23060373|220457.92559686|120.25692809|17668|1 +638602.15224401|220462.54271123|120.08025945|17669|1 +638597.02621134|220467.20404484|119.96066651|17670|1 +638591.90383802|220471.86573509|120.11023907|17671|1 +638586.82892734|220476.48339529|120.20313591|17672|1 +638581.75359537|220481.10108405|120.27122492|17673|1 +638576.62935222|220485.76265795|120.29064703|17674|1 +638571.50958114|220490.4232648|120.53546048|17675|1 +638566.44998901|220495.03641655|121.31669808|17676|1 +638561.33230176|220499.69554367|121.59347243|17677|1 +638556.264488|220504.3101522|121.93780559|17678|1 +638551.19284799|220508.92600177|122.11988787|17679|1 +638546.12783356|220513.53907661|122.53954681|17680|1 +638541.06435691|220518.15117992|122.99061786|17681|1 +638535.9541529|220522.80605274|123.45643222|17682|1 +638530.89701044|220527.41452753|124.06410797|17683|1 +638525.88532555|220531.98016396|124.56967812|17684|1 +638520.82681103|220536.58858337|125.08384311|17685|1 +638515.76251377|220541.19926083|125.42958084|17686|1 +638510.69444129|220545.81189523|125.66934343|17687|1 +638505.62916779|220550.42300631|125.98421786|17688|1 +638500.61269675|220554.98995025|126.32135145|17689|1 +638495.55506153|220559.59657918|126.8175268|17690|1 +638490.49952439|220564.20181191|127.35131855|17691|1 +638485.48451283|220568.76765852|127.70722311|17692|1 +638480.46696385|220573.3350272|128.00691705|17693|1 +638475.39979244|220577.94713535|128.27262229|17694|1 +638470.38578466|220582.51238472|128.65348353|17695|1 +638465.5742302|220586.94929366|133.10216042|17696|1 +638460.35676791|220591.64350355|129.396342|17697|1 +638455.32887462|220596.21776059|129.51506987|17698|1 +638450.30150796|220600.79186773|129.65878232|17699|1 +638445.28714057|220605.35757544|130.0519591|17700|1 +638440.54319672|220609.73120685|134.38159186|17701|1 +638435.44356799|220614.3530546|133.21541885|17702|1 +638430.28260087|220619.00636767|130.28082931|17703|1 +638425.25182914|220623.58370743|130.43691312|17704|1 +638420.26047471|220628.1234243|130.46983211|17705|1 +638415.26271566|220632.66784136|130.42159309|17706|1 +638410.27351328|220637.20660712|130.52900071|17707|1 +638406.04606224|220641.20082881|141.46446672|17708|1 +638401.12656721|220645.68782366|142.42320081|17709|1 +638400.26001361|220646.299747|129.56084391|17710|2 +638395.26528641|220650.84342125|129.66163796|17711|1 +638390.28993963|220655.36403053|129.37073421|17712|1 +638385.28770787|220659.91366495|129.40898311|17713|1 +638380.74430866|220664.11437899|134.45291788|17714|1 +638375.3399739|220668.95468773|129.01291347|17715|1 +638370.37038602|220673.47266453|128.9141007|17716|1 +638365.37496981|220678.00985271|128.50395747|17717|1 +638360.38404927|220682.54422748|128.18699944|17718|1 +638355.40661409|220687.06071215|127.46548855|17719|1 +638350.42152649|220691.59172397|127.29122907|17720|1 +638345.53723502|220696.03199617|127.19690906|17721|1 +638340.65768099|220700.48503826|128.33992064|17722|1 +638336.05617438|220704.72199435|132.17909864|17723|1 +638331.15841222|220709.17998537|132.48062502|17724|1 +638327.58021892|220712.64442258|147.88486906|17725|1 +638321.89328163|220717.69577634|139.09480197|17726|1 +638320.75565547|220718.555165|126.28033061|17727|2 +638315.79007487|220723.06640617|125.96674913|17728|1 +638311.11291896|220727.35157252|128.30921548|17729|1 +638305.94531454|220732.01707302|125.84033798|17730|1 +638301.07966146|220736.44596615|126.15745415|17731|1 +638298.28064259|220739.29854904|148.65286093|17732|1 +638293.44970077|220743.69693052|149.05080023|17733|1 +638291.22060372|220745.40930018|126.00949079|17734|2 +638288.94976313|220747.84054461|152.83453963|17735|1 +638281.52026021|220754.23787144|126.57547598|17736|1 +638278.57980944|220757.18467956|146.56335638|17737|1 +638277.10431593|220758.32641533|131.91314224|17738|2 +638276.45055125|220758.83229794|125.42192548|17739|3 +638274.15050677|220761.26623325|150.51480682|17740|1 +638271.54751591|220763.28499873|125.00198748|17741|2 +638269.00289993|220765.91146891|147.90318426|17742|1 +638266.60558957|220767.77486493|124.70768858|17743|2 +638262.51630275|220771.59453038|132.12421815|17744|1 +638261.74721967|220772.19361259|124.77622406|17745|2 +638258.62827791|220775.25484718|141.27714754|17746|1 +638256.85388358|220776.6399148|124.53429416|17747|2 +638254.04293743|220775.45823281|124.66144014|17748|1 +638259.8657383|220770.27288516|133.34248111|17749|1 +638258.92394431|220771.00568173|124.37795921|17750|2 +638264.68911174|220765.86688395|132.6329044|17751|1 +638263.86312016|220766.50818044|124.67015591|17752|2 +638271.29669296|220760.07221975|148.87841971|17753|1 +638268.84187821|220761.97383127|124.90406768|17754|2 +638275.84381318|220755.87627643|145.18713066|17755|1 +638273.81207782|220757.44650274|125.08201066|17756|2 +638280.64474287|220751.49706986|144.9328573|17757|1 +638279.39535789|220752.46039992|132.40702006|17758|2 +638278.71066846|220752.98832518|125.54261603|17759|3 +638286.23102702|220746.49354221|151.20341732|17760|1 +638290.82639867|220742.26678873|148.45350526|17761|1 +638288.61993516|220743.9596085|125.72336815|17762|2 +638295.7818767|220737.74971631|148.40413143|17763|1 +638293.60321516|220739.4168145|125.64422863|17764|2 +638300.88061951|220733.13071734|150.40402266|17765|1 +638303.63772786|220730.29488687|127.31941345|17766|1 +638308.59802049|220725.77079314|127.07853465|17767|1 +638313.40870606|220721.36756696|125.7330792|17768|1 +638318.46680581|220716.76235035|126.06185979|17769|1 +638325.08640065|220710.99887931|145.33479636|17770|1 +638324.00071948|220711.81519149|132.95303434|17771|2 +638329.07764911|220707.20601056|134.22845671|17772|1 +638328.42633896|220707.69411706|126.68486487|17773|2 +638333.45936519|220703.1169526|127.38733502|17774|1 +638338.50578087|220698.53045692|128.29500237|17775|1 +638343.4231755|220694.03220772|127.10094263|17776|1 +638348.40190881|220689.49671022|127.24369699|17777|1 +638353.42815486|220684.91821057|127.40476655|17778|1 +638358.45801312|220680.34603692|128.25639999|17779|1 +638363.48419582|220675.76856065|128.48599574|17780|1 +638368.52308331|220671.18229271|128.91476113|17781|1 +638373.52126455|220666.62599914|128.83325896|17782|1 +638379.00816926|220661.71829033|135.48076417|17783|1 +638378.72431875|220661.92255373|131.58398958|17784|2 +638383.56452649|220657.48067672|129.38595191|17785|1 +638388.6095963|220652.88249204|129.36102315|17786|1 +638393.77808944|220648.20705393|131.85144356|17787|1 +638399.51092121|220643.13706525|142.83233945|17788|1 +638404.39187813|220638.65992848|140.66659754|17789|1 +638403.69969425|220639.14449086|130.18828594|17790|2 +638408.76128107|220634.53770169|130.52515907|17791|1 +638413.74323028|220629.99700718|130.39978973|17792|1 +638418.79113204|220625.40052941|130.58105345|17793|1 +638423.81034665|220620.82402977|130.31989677|17794|1 +638428.84518831|220616.23712262|130.33304018|17795|1 +638433.87905283|220611.6511994|130.3524902|17796|1 +638439.16084109|220606.90081902|134.78052645|17797|1 +638443.96819098|220602.45419292|129.98200974|17798|1 +638448.98096282|220597.88291044|129.67114438|17799|1 +638454.05223602|220593.26125574|129.56835045|17800|1 +638459.07303239|220588.68511191|129.43222825|17801|1 +638464.15978059|220584.06756457|130.63750593|17802|1 +638469.15656406|220579.49356789|129.08147686|17803|1 +638474.19466295|220574.89323177|128.33661851|17804|1 +638479.20683979|220570.32289053|128.05084934|17805|1 +638484.2651805|220565.71004121|127.73055197|17806|1 +638489.32239071|220561.09788545|127.38546537|17807|1 +638494.37187025|220556.49017673|126.85326423|17808|1 +638499.42494531|220551.88024707|126.39612843|17809|1 +638504.43600276|220547.31053636|126.07928202|17810|1 +638509.49302043|220542.69825105|125.70975965|17811|1 +638519.66100903|220533.42671699|125.12491045|17812|1 +638524.71180056|220528.81727309|124.54989324|17813|1 +638529.76868441|220524.20454771|124.13741527|17814|1 +638534.82034763|220519.59398483|123.53768323|17815|1 +638539.87560754|220514.9813707|123.02555533|17816|1 +638544.98403456|220510.32258528|122.67417142|17817|1 +638549.9952962|220505.75129859|122.25162893|17818|1 +638555.10848979|220501.09027831|122.05075707|17819|1 +638560.21778981|220496.43047725|121.68160677|17820|1 +638565.28222561|220491.81303656|121.42042219|17821|1 +638570.34202117|220487.19653626|120.92196789|17822|1 +638575.44700693|220482.5362802|120.23511542|17823|1 +638580.51219|220477.9172383|119.90581393|17824|1 +638585.63298596|220473.25345367|120.00075716|17825|1 +638590.7023856|220468.63371903|119.89690283|17826|1 +638595.82122075|220463.97009852|119.87384373|17827|1 +638600.89311213|220459.35037118|119.93296582|17828|1 +638606.01375671|220454.68773068|120.09812816|17829|1 +638611.08405861|220450.06826096|120.07026004|17830|1 +638616.20184577|220445.40495384|119.99868287|17831|1 +638621.31956779|220440.74128671|119.89628891|17832|1 +638626.38854634|220436.11924326|119.59423233|17833|1 +638631.5065804|220431.45358389|119.36758524|17834|1 +638636.62506125|220426.78640677|119.06012433|17835|1 +638641.69704266|220422.1651327|119.00886224|17836|1 +638646.76929814|220417.54370516|118.96403698|17837|1 +638651.88442924|220412.88646314|119.15126313|17838|1 +638656.95622097|220408.26747486|119.25065261|17839|1 +638662.07563266|220403.60592829|119.40741545|17840|1 +638667.19488712|220398.94453861|119.56459687|17841|1 +638672.21836525|220394.37016659|119.70735123|17842|1 +638677.33722663|220389.70950397|119.89014044|17843|1 +638682.45934331|220385.04086906|119.71096962|17844|1 +638687.53543375|220380.41292527|119.44323659|17845|1 +638692.61345635|220375.78236925|119.11326537|17846|1 +638697.74174826|220371.10503459|118.71034963|17847|1 +638702.77376906|220366.51731664|118.44778838|17848|1 +638707.89999616|220361.84630429|118.36418402|17849|1 +638712.97838799|220357.2194427|118.32263298|17850|1 +638718.05585361|220352.5946446|118.36875119|17851|1 +638723.18008994|220347.92842891|118.4986598|17852|1 +638728.25785473|220343.30381593|118.57657148|17853|1 +638733.33813999|220338.67570659|118.567279|17854|1 +638738.41326366|220334.05568294|118.80173958|17855|1 +638743.4951349|220329.42598021|118.78042921|17856|1 +638748.2156706|220325.31007774|132.10048932|17857|1 +638748.58585532|220324.7841676|118.46595475|17858|2 +638753.3469613|220320.60338444|129.76885024|17859|1 +638753.67099555|220320.1509934|118.40772563|17860|2 +638758.3316226|220316.07936334|130.98622953|17861|1 +638758.71805442|220315.54839802|118.05317912|17862|2 +638763.35947583|220311.51701398|132.27535342|17863|1 +638768.77074977|220306.46206616|123.20223327|17864|1 +638768.96300857|220306.2054334|117.3110927|17865|2 +638774.02071835|220301.59108142|116.81369881|17866|1 +638779.09217887|220296.95881926|115.9857942|17867|1 +638784.21304882|220292.28232429|115.2118492|17868|1 +638789.29346034|220287.64107665|114.32215289|17869|1 +638794.41405113|220282.96728379|113.7237231|17870|1 +638799.48718796|220278.33743751|113.17770883|17871|1 +638804.55379066|220273.71657476|112.85016537|17872|1 +638809.33159016|220269.46645638|120.30856225|17873|1 +638809.66614319|220269.05550852|112.62699715|17874|2 +638814.65585761|220264.51479884|113.03104772|17875|1 +638819.70758164|220259.91355718|113.14032499|17876|1 +638824.7300601|220255.34775318|113.88544379|17877|1 +638829.73077704|220250.79411257|114.07719991|17878|1 +638834.79192991|220246.18233179|114.04327633|17879|1 +638839.8620074|220241.56044961|113.86621701|17880|1 +638844.8929962|220236.97229077|113.55331456|17881|1 +638849.97055439|220232.3427586|113.31432402|17882|1 +638854.97696191|220227.78424205|113.52467439|17883|1 +638859.94736309|220223.26747257|114.3824377|17884|1 +638864.96836471|220218.69249163|114.36212262|17885|1 +638870.01970493|220214.08326487|113.86253351|17886|1 +638875.05347562|220209.49469603|113.6991199|17887|1 +638880.04177467|220204.94737042|113.52345586|17888|1 +638885.06988679|220200.3661214|113.51555865|17889|1 +638890.06557755|220195.81139178|113.28987895|17890|1 +638895.1141034|220191.20813608|113.03318713|17891|1 +638900.11924491|220186.64386828|112.73897194|17892|1 +638905.13905379|220182.06384992|112.27059959|17893|1 +638910.19900364|220177.44953412|111.96442232|17894|1 +638915.1647753|220172.92096318|111.65701721|17895|1 +638920.17581291|220168.35230978|111.43092823|17896|1 +638925.17596469|220163.79606572|111.38493095|17897|1 +638930.12927202|220159.28255539|111.34396593|17898|1 +638935.13174699|220154.72455453|111.32247882|17899|1 +638940.08538622|220150.211437|111.33063648|17900|1 +638945.08958749|220145.65230691|111.33987314|17901|1 +638949.99782915|220141.18068748|111.35836508|17902|1 +638954.99494012|220136.62991226|111.50369603|17903|1 +638959.90458872|220132.15744576|111.55232572|17904|1 +638964.86059644|220127.64347948|111.65191984|17905|1 +638969.81051235|220123.13635147|111.84419686|17906|1 +638974.71743937|220118.66774064|111.99062542|17907|1 +638979.37057197|220114.46978376|114.99964777|17908|1 +638984.54484446|220109.71698328|112.19509707|17909|1 +638989.44966775|220105.25149026|112.42666479|17910|1 +638994.4192157|220100.71773769|111.9826538|17911|1 +638999.36244301|220096.21231997|111.85418697|17912|1 +639004.267532|220091.74047935|111.64206926|17913|1 +639009.22302827|220087.22295732|111.44475997|17914|1 +639014.12922894|220082.75079533|111.28122544|17915|1 +639019.03463987|220078.27986691|111.1542748|17916|1 +639023.94227853|220073.80699722|111.03298894|17917|1 +639028.8287013|220069.35669011|111.14612644|17918|1 +639033.71998804|220064.90161464|111.23390731|17919|1 +639038.64034673|220060.41011891|110.60070748|17920|1 +639043.61628729|220055.86772983|109.94613217|17921|1 +639047.09693087|220049.09684785|108.44650908|17922|1 +639042.03499408|220053.7103564|109.31894129|17923|1 +639036.98389084|220058.31322872|110.13600003|17924|1 +639031.95618659|220062.89229561|110.77397167|17925|1 +639026.88917982|220067.50638913|111.35914642|17926|1 +639021.96748749|220071.9755005|111.03264477|17927|1 +639016.95815664|220076.53001052|111.11072388|17928|1 +639011.94978329|220081.0839005|111.20731353|17929|1 +639006.93340418|220085.64662373|111.41524544|17930|1 +639001.87500518|220090.24702223|111.58320761|17931|1 +638996.91504896|220094.75815869|111.7753172|17932|1 +638991.80585595|220099.4059448|112.02753487|17933|1 +638986.80608025|220103.95283833|112.18597203|17934|1 +638981.79518856|220108.5044425|111.95780875|17935|1 +638976.57118653|220113.28372859|114.14667488|17936|1 +638971.74773513|220117.63591817|111.85463345|17937|1 +638966.51644216|220122.42470004|114.24914324|17938|1 +638961.72791207|220126.73910535|111.5281504|17939|1 +638956.66310986|220131.34212806|111.4716049|17940|1 +638951.65301254|220135.89469482|111.36723897|17941|1 +638946.59276812|220140.4934754|111.30473103|17942|1 +638941.55374306|220145.06955639|111.0003118|17943|1 +638936.52530536|220149.64303932|111.20007675|17944|1 +638931.42293622|220154.28003244|111.13057387|17945|1 +638926.36021118|220158.88295784|111.20529504|17946|1 +638921.30201989|220163.48132217|111.24911571|17947|1 +638915.96351325|220168.38909196|115.18283696|17948|1 +638911.17025052|220172.69627978|111.64171579|17949|1 +638906.05288259|220177.35193993|111.93410783|17950|1 +638900.92289591|220182.02221161|112.4507657|17951|1 +638895.81547212|220186.66823222|112.68187763|17952|1 +638890.7066682|220191.317284|112.97552541|17953|1 +638885.65128247|220195.91720038|113.23229165|17954|1 +638880.55192335|220200.55669542|113.45815739|17955|1 +638875.47219736|220205.17441076|113.40434661|17956|1 +638870.37864715|220209.80826301|113.60595331|17957|1 +638865.22796494|220214.49672097|113.99506522|17958|1 +638860.13802884|220219.12754345|114.21611264|17959|1 +638855.06564862|220223.72656942|113.30486411|17960|1 +638849.95960015|220228.36458059|112.99163609|17961|1 +638844.87162856|220232.99421368|113.25712739|17962|1 +638839.74406053|220237.65815242|113.39935155|17963|1 +638834.60416111|220242.33722668|113.82241495|17964|1 +638829.53145053|220246.95052494|113.91445603|17965|1 +638824.4154067|220251.60231862|113.93955222|17966|1 +638819.31097702|220256.24049285|113.74689383|17967|1 +638814.23188781|220260.84803516|113.01221162|17968|1 +638809.12642119|220265.4877591|112.86380178|17969|1 +638804.01944946|220270.12963362|112.77186302|17970|1 +638798.90783964|220274.7776417|112.81746033|17971|1 +638793.78271286|220279.44317235|113.23765878|17972|1 +638788.65035192|220284.11876513|113.90782386|17973|1 +638783.5152109|220288.79906686|114.73445413|17974|1 +638778.33504811|220293.52046104|115.57033966|17975|1 +638773.20473079|220298.19715707|116.45425957|17976|1 +638768.08176376|220302.86550542|117.22011203|17977|1 +638762.63305512|220307.95498484|126.92034864|17978|1 +638762.94360695|220307.53447733|117.04065286|17979|2 +638757.49961679|220312.64628914|128.64929773|17980|1 +638757.82403429|220312.20043411|117.85737673|17981|2 +638752.37005709|220317.33493471|130.44123845|17982|1 +638747.2309597|220322.01566272|131.04460747|17983|1 +638742.30259397|220326.41830604|125.46425786|17984|1 +638742.48717147|220326.15100109|118.3468269|17985|2 +638737.39367218|220330.78398569|118.50333859|17986|1 +638732.26102037|220335.44802795|118.33280913|17987|1 +638727.17398912|220340.07224222|118.28391899|17988|1 +638722.08717135|220344.69652267|118.25401378|17989|1 +638716.95365248|220349.36283042|118.19085472|17990|1 +638711.87030094|220353.9821199|118.03039907|17991|1 +638706.73738852|220358.64804418|117.98056016|17992|1 +638701.60102368|220363.32077351|118.19357084|17993|1 +638696.51354158|220367.94921775|118.42137134|17994|1 +638691.37748112|220372.6239339|118.79769331|17995|1 +638686.24322167|220377.29666182|119.149533|17996|1 +638681.15915571|220381.92242185|119.40958276|17997|1 +638676.02929089|220386.58818324|119.54984425|17998|1 +638670.95049514|220391.20243022|119.32935494|17999|1 +638665.87111098|220395.8180801|119.17155031|18000|1 +638655.61605609|220405.1375724|118.89864549|18001|1 +638650.53618636|220409.75461326|118.81043674|18002|1 +638645.41308897|220414.41028509|118.67191469|18003|1 +638640.33281764|220419.02933487|118.70297332|18004|1 +638635.25312518|220423.64951575|118.85298307|18005|1 +638630.1264669|220428.31373584|119.09670821|18006|1 +638625.04843516|220432.93370592|119.34100077|18007|1 +638619.9717674|220437.55373511|119.67925056|18008|1 +638614.89455004|220442.17182154|119.84271068|18009|1 +638609.76926097|220446.8327804|119.94413725|18010|1 +638604.73894358|220451.40608293|119.95778296|18011|1 +638599.61093339|220456.06619669|119.822377|18012|1 +638594.53124325|220460.68329146|119.75555304|18013|1 +638589.50088353|220465.2571373|119.80695465|18014|1 +638584.37354055|220469.91803321|119.77252878|18015|1 +638579.2973587|220474.53506|119.9313008|18016|1 +638574.27452461|220479.10735274|120.36411246|18017|1 +638569.20911861|220483.72136036|121.01053941|18018|1 +638564.13835995|220488.33596328|121.35096582|18019|1 +638559.06888762|220492.94982645|121.72281364|18020|1 +638553.99799637|220497.56384016|122.01362437|18021|1 +638548.97446208|220502.13429825|122.27170216|18022|1 +638543.90694529|220506.74662679|122.66272094|18023|1 +638538.88870107|220511.31452145|123.08323564|18024|1 +638533.87161443|220515.88161278|123.52242832|18025|1 +638528.81069899|220520.49009035|124.06988437|18026|1 +638523.79309386|220525.05686005|124.45283851|18027|1 +638518.78382313|220529.6192567|125.06680226|18028|1 +638513.7179411|220534.22961587|125.4084286|18029|1 +638508.69777756|220538.79824124|125.68516575|18030|1 +638503.68241847|220543.36422736|126.08674204|18031|1 +638498.66263637|220547.93257542|126.36962767|18032|1 +638493.69416059|220552.45540169|126.7368897|18033|1 +638488.68471209|220557.01772184|127.26302608|18034|1 +638483.67361099|220561.58084035|127.73914681|18035|1 +638478.6546878|220566.14854447|128.03420846|18036|1 +638473.63502642|220570.71673563|128.31674992|18037|1 +638468.6703609|220575.23700027|128.75168238|18038|1 +638463.84339557|220579.67082523|131.97531532|18039|1 +638458.75950397|220584.27882307|130.92214029|18040|1 +638453.75054969|220588.81408277|129.54323565|18041|1 +638448.72092082|220593.38903592|129.66302393|18042|1 +638443.74977985|220597.91365855|129.99071621|18043|1 +638438.76470339|220602.44756131|130.07495309|18044|1 +638433.95800453|220606.86266798|133.28276371|18045|1 +638428.84072599|220611.47359972|130.26329546|18046|1 +638423.84700282|220616.01403549|130.25336117|18047|1 +638418.86802918|220620.54468765|130.50505793|18048|1 +638413.91142917|220625.0494313|130.35907585|18049|1 +638408.91656302|220629.5914822|130.39221808|18050|1 +638404.57918232|220633.6651938|139.75278173|18051|1 +638399.67908964|220638.13866673|141.05494671|18052|1 +638393.97811655|220643.16702299|129.87608111|18053|1 +638389.2198739|220647.53276564|132.71167184|18054|1 +638384.02077074|220652.2117866|129.2387606|18055|1 +638379.05580483|220656.72502008|129.15946296|18056|1 +638374.08033819|220661.24615019|128.96162348|18057|1 +638369.08967027|220665.77867289|128.58930127|18058|1 +638364.11485071|220670.30014719|128.45949498|18059|1 +638359.18474639|220674.78066256|128.3108619|18060|1 +638354.16017249|220679.33933212|127.60202933|18061|1 +638349.16089678|220683.87999805|127.25390104|18062|1 +638344.22185056|220688.36835353|127.08569702|18063|1 +638339.31250625|220692.83503861|127.30254003|18064|1 +638334.43173237|220697.28064445|127.8731482|18065|1 +638329.41035856|220701.83921147|127.36864775|18066|1 +638324.83692853|220706.04697938|130.94479941|18067|1 +638324.3991298|220706.37519255|125.90574808|18068|2 +638319.44730275|220710.87503292|125.72957243|18069|1 +638314.61363921|220715.27856573|126.35948873|18070|1 +638310.23353856|220719.34631757|132.51628803|18071|1 +638309.56206765|220719.85444379|125.1267429|18072|2 +638304.81032639|220724.20355274|127.20322496|18073|1 +638300.07369109|220728.53342901|128.88608375|18074|1 +638297.27055785|220731.38733477|150.92916375|18075|1 +638292.15420598|220736.01011987|148.83431068|18076|1 +638289.8900896|220737.74266826|125.29420279|18077|2 +638287.26939241|220740.44947831|148.69851405|18078|1 +638284.96131017|220742.22021502|125.02697205|18079|2 +638280.08237908|220746.65981553|125.2926866|18080|1 +638277.4719492|220749.34394629|147.74130544|18081|1 +638272.4597294|220753.88288927|146.43226645|18082|1 +638270.22742545|220755.60795895|124.43150953|18083|2 +638267.96678328|220758.02038855|150.23017246|18084|1 +638265.30256401|220760.08395696|124.31123756|18085|2 +638261.94003314|220763.34101331|138.75580803|18086|1 +638260.44220237|220764.50372137|124.36794119|18087|2 +638256.27976643|220768.38722577|131.52564884|18088|1 +638255.51821613|220768.97967238|124.30241948|18089|2 +638254.54639826|220766.16975759|124.38487973|18090|1 +638261.96158613|220759.75693007|148.46374651|18091|1 +638267.05530614|220755.1414596|150.10844941|18092|1 +638271.47111156|220751.05652243|145.60579431|18093|1 +638269.33497153|220752.70430592|124.52808988|18094|2 +638276.94946198|220746.1390375|150.6645003|18095|1 +638281.45818157|220741.98180293|147.03346816|18096|1 +638279.26549801|220743.66498984|124.81133827|18097|2 +638286.57514485|220737.34388899|148.58304179|18098|1 +638284.26164491|220739.11526589|124.81132897|18099|2 +638291.49899476|220732.86141302|148.68891461|18100|1 +638296.26064574|220728.50282832|147.10636619|18101|1 +638299.17101122|220725.54269368|125.14238849|18102|1 +638304.11892609|220721.03826357|125.24233608|18103|1 +638309.28111192|220716.36492817|127.1976439|18104|1 +638314.46656382|220711.67523322|129.49519197|18105|1 +638314.10723954|220711.94569707|125.47031332|18106|2 +638321.04998125|220705.93795139|147.78440988|18107|1 +638320.30542792|220706.49659043|139.31680747|18108|2 +638319.57234447|220707.04662359|130.97966247|18109|3 +638319.07306019|220707.42123701|125.30146747|18110|4 +638325.65568692|220701.68793214|143.82312747|18111|1 +638324.06479014|220702.87764746|125.4492634|18112|2 +638330.56664374|220697.20899031|143.34041178|18113|1 +638334.86126992|220693.17982343|134.94372611|18114|1 +638334.35705454|220693.55426282|128.93278797|18115|2 +638339.18573709|220689.13322896|127.2405809|18116|1 +638344.18851971|220684.57508158|127.06452617|18117|1 +638349.17794809|220680.03543865|127.34256557|18118|1 +638354.2209017|220675.44851543|127.71995725|18119|1 +638359.26300087|220670.86272526|128.12234279|18120|1 +638364.22437818|220666.34486755|128.13257475|18121|1 +638369.30962529|220661.71984801|128.53530446|18122|1 +638374.28755556|220657.19086486|128.82538036|18123|1 +638379.35230019|220652.58154979|129.01678301|18124|1 +638389.40432767|220643.43888987|129.75979031|18125|1 +638394.45799956|220638.83988769|129.87686246|18126|1 +638400.34800461|220633.66737409|143.36166634|18127|1 +638399.82143511|220634.03510321|135.41897247|18128|2 +638399.44478238|220634.29813813|129.73761487|18129|3 +638405.05752633|220629.3119029|138.51518038|18130|1 +638409.56760506|220625.09132083|130.34607197|18131|1 +638414.56514714|220620.54320549|130.44974957|18132|1 +638419.60382662|220615.9564747|130.46756247|18133|1 +638424.62888053|220611.37926656|130.2797317|18134|1 +638429.66110796|220606.79745721|130.22909283|18135|1 +638434.68582989|220602.22091238|130.06627454|18136|1 +638439.71631886|220597.64078678|130.02195157|18137|1 +638444.78940308|220593.02082296|129.89873094|18138|1 +638449.80701521|220588.44954189|129.6487457|18139|1 +638454.88405979|220583.82747424|129.63192809|18140|1 +638459.90451829|220579.25475242|129.46315666|18141|1 +638465.13119719|220574.54027303|132.56657343|18142|1 +638469.96102868|220570.08610021|128.47928916|18143|1 +638475.02436902|220565.47312296|128.219751|18144|1 +638480.08911239|220560.8594079|127.99784782|18145|1 +638485.09930005|220556.29326095|127.62949747|18146|1 +638490.19704821|220551.64469485|127.06148449|18147|1 +638495.20647893|220547.07881259|126.6619918|18148|1 +638500.26637803|220542.46787267|126.32206768|18149|1 +638505.32546296|220537.85733206|125.95733573|18150|1 +638510.38409651|220533.24694811|125.57403743|18151|1 +638515.4456548|220528.63495809|125.26584167|18152|1 +638520.50191776|220524.02552608|124.79543223|18153|1 +638525.55819459|220519.41582186|124.30643785|18154|1 +638530.61344904|220514.80627185|123.76137235|18155|1 +638535.72072539|220510.15096025|123.32692358|18156|1 +638540.73279774|220505.58221226|122.8903075|18157|1 +638545.84153699|220500.92568008|122.46266763|18158|1 +638550.90579966|220496.31111766|122.14322602|18159|1 +638555.97196789|220491.69570169|121.88644118|18160|1 +638561.03658415|220487.08057209|121.54860067|18161|1 +638566.10173343|220482.46496601|121.21093688|18162|1 +638571.16843956|220477.84865155|120.92342827|18163|1 +638576.2744985|220473.1897241|120.14768802|18164|1 +638581.39188681|220468.52828334|119.92849166|18165|1 +638586.41170836|220463.95368372|119.57375912|18166|1 +638591.53381961|220459.29128899|119.59264172|18167|1 +638596.65675409|220454.62929361|119.69318463|18168|1 +638601.73130179|220450.01123151|119.78832319|18169|1 +638606.80458532|220445.39310664|119.79615529|18170|1 +638611.92521379|220440.73123028|119.75402755|18171|1 +638616.99728192|220436.11213175|119.61237079|18172|1 +638622.11652085|220431.44760562|119.28974798|18173|1 +638627.18915658|220426.82660861|119.04860873|18174|1 +638632.26245226|220422.20476327|118.78890313|18175|1 +638637.38454122|220417.53916619|118.57359491|18176|1 +638642.45949535|220412.91774857|118.45189977|18177|1 +638647.52985715|220408.30235277|118.46156432|18178|1 +638652.65265922|220403.64059574|118.56602326|18179|1 +638657.72745594|220399.02266843|118.6824722|18180|1 +638662.80217056|220394.40491421|118.80537658|18181|1 +638667.92443674|220389.74463735|118.97962675|18182|1 +638672.99918695|220385.126607|119.08427174|18183|1 +638683.15170117|220375.88416197|119.03176321|18184|1 +638688.23311955|220371.25301537|118.63096827|18185|1 +638693.31454881|220366.6235304|118.34912444|18186|1 +638698.39897989|220361.98966549|117.9488318|18187|1 +638703.48207095|220357.35964855|117.73619319|18188|1 +638708.56028362|220352.73896717|117.87358973|18189|1 +638713.63965959|220348.11653528|117.96123106|18190|1 +638718.72069162|220343.49173573|117.98663422|18191|1 +638723.80260053|220338.86597306|117.99978693|18192|1 +638728.8843336|220334.24090037|118.05063974|18193|1 +638733.9173994|220329.66084723|118.15521031|18194|1 +638739.00126387|220325.03333151|118.16894903|18195|1 +638743.95823305|220320.58771866|122.94011851|18196|1 +638744.0852377|220320.40607458|118.20792348|18197|2 +638748.86645196|220316.18080691|127.308149|18198|1 +638749.13769521|220315.79967868|117.68847507|18199|2 +638753.86423959|220311.66752677|129.89339172|18200|1 +638759.3191341|220306.52927653|117.50541611|18201|1 +638764.36894522|220301.92897585|117.24863127|18202|1 +638769.48014545|220297.26860453|116.64601569|18203|1 +638774.55196578|220292.64260952|115.8716242|18204|1 +638779.6305657|220288.00906422|114.99763859|18205|1 +638784.76224966|220283.32669746|114.08416694|18206|1 +638789.7954688|220278.73595945|113.31905862|18207|1 +638794.86549776|220274.11677721|112.91362209|18208|1 +638799.92476332|220269.51174726|112.82018575|18209|1 +638804.98253828|220264.90904069|112.79546163|18210|1 +638810.03107485|220260.31805297|113.00775607|18211|1 +638815.05913781|220255.75213483|113.68140002|18212|1 +638820.06109453|220251.2032786|113.87655129|18213|1 +638825.12488967|220246.59451448|113.80843438|18214|1 +638830.14817668|220242.0208752|113.61710614|18215|1 +638835.22842091|220237.39359981|113.29377639|18216|1 +638840.25839018|220232.81319958|113.05269295|18217|1 +638845.28745095|220228.23441634|112.86764341|18218|1 +638850.30643858|220223.66784363|112.9005624|18219|1 +638855.31627284|220219.11220686|113.12021455|18220|1 +638860.30213041|220214.58437854|113.76931111|18221|1 +638865.33152036|220210.00670769|113.68367895|18222|1 +638870.37943065|220205.40837718|113.3242118|18223|1 +638875.40522114|220200.83573039|113.36308393|18224|1 +638880.39487409|220196.29360817|113.23401248|18225|1 +638885.44106056|220191.69877641|113.01152329|18226|1 +638890.44365655|220187.14307137|112.75163166|18227|1 +638895.49633013|220182.54200525|112.50436253|18228|1 +638900.51461875|220177.96987107|112.0889359|18229|1 +638905.53542767|220173.39553775|111.67970424|18230|1 +638910.32957035|220169.08155835|115.15521998|18231|1 +638915.26604573|220164.59093336|115.24783777|18232|1 +638920.56690896|220159.70990576|111.11042622|18233|1 +638925.56886919|220155.15828439|111.09857576|18234|1 +638930.57717803|220150.60011405|111.03073791|18235|1 +638935.59209164|220146.03516257|110.90692196|18236|1 +638940.52724531|220141.54861957|111.20376955|18237|1 +638945.53437479|220136.9928328|111.2286146|18238|1 +638950.4362516|220132.53445574|111.374206|18239|1 +638955.44064265|220127.98229004|111.47927887|18240|1 +638960.40893552|220123.46119984|111.45834987|18241|1 +638965.3629079|220118.95581764|111.62937233|18242|1 +638970.32303038|220114.44415175|111.75047216|18243|1 +638975.22217963|220109.99015399|112.03018588|18244|1 +638980.20675969|220105.45304992|111.92128068|18245|1 +638985.12491419|220100.97943217|112.03276247|18246|1 +638990.08914478|220096.46463895|112.19585051|18247|1 +638995.07040736|220091.92490968|111.68109951|18248|1 +639000.01812424|220087.4211321|111.55616735|18249|1 +639004.92476288|220082.95397898|111.37843831|18250|1 +639009.9359101|220078.39126531|111.16297196|18251|1 +639014.82938743|220073.93875856|111.17620839|18252|1 +639019.76903214|220069.44499445|111.24159988|18253|1 +639024.68896076|220064.9654977|111.04355575|18254|1 +639029.66001943|220060.43304148|110.38149252|18255|1 +639034.63864504|220055.8932773|109.68834274|18256|1 +639039.69014973|220051.28471023|108.81345486|18257|1 +639044.60591239|220046.80508334|108.3324507|18258|1 +639045.49311356|220042.69794112|108.15933534|18259|1 +639040.50214801|220047.23208681|108.3298183|18260|1 +639035.49609583|220051.78235734|108.67314686|18261|1 +639030.43826918|220056.38713188|109.54790452|18262|1 +639025.38602263|220060.98674259|110.41667183|18263|1 +639020.31569959|220065.59918044|111.02874733|18264|1 +639015.34166052|220070.118069|111.2113412|18265|1 +639010.34460015|220074.65462873|111.16170692|18266|1 +639005.3397071|220079.19976653|111.2171362|18267|1 +639000.32082532|220083.76003942|111.44580177|18268|1 +638995.27047001|220088.34679639|111.52312744|18269|1 +638990.1834699|220092.97275728|112.02169335|18270|1 +638985.1996286|220097.49725637|111.97177072|18271|1 +638980.17223801|220102.06086332|111.88830588|18272|1 +638975.14756239|220106.62190497|111.79864606|18273|1 +638970.12882192|220111.17693934|111.66559345|18274|1 +638965.06022489|220115.77777715|111.56769225|18275|1 +638960.05072901|220120.32352491|111.3726433|18276|1 +638954.97616192|220124.93142897|111.39284676|18277|1 +638949.66160368|220129.79858752|114.3478816|18278|1 +638944.85404461|220134.11918504|111.1856962|18279|1 +638939.79783442|220138.70830157|111.05751772|18280|1 +638934.74439783|220143.29471721|110.9170609|18281|1 +638929.68981858|220147.88268422|110.81395071|18282|1 +638924.57392266|220152.52906647|110.90246641|18283|1 +638919.51208978|220157.12570893|110.94883576|18284|1 +638914.09496328|220162.10456794|115.22581116|18285|1 +638909.05152761|220166.68283521|115.1553316|18286|1 +638904.2134454|220171.02417703|111.49788242|18287|1 +638899.08805543|220175.68344358|111.89279864|18288|1 +638894.01829326|220180.29127843|112.22631383|18289|1 +638888.90118538|220184.94163711|112.57847909|18290|1 +638883.79613887|220189.57817954|112.78178801|18291|1 +638878.68830128|220194.21838237|113.06632936|18292|1 +638873.59419653|220198.84357309|113.1707883|18293|1 +638868.50814798|220203.4600478|113.17596939|18294|1 +638863.41383249|220208.08638893|113.34945683|18295|1 +638858.30718135|220212.71574772|112.93856946|18296|1 +638853.23392304|220217.31858172|112.80133105|18297|1 +638848.12244834|220221.95389074|112.5031347|18298|1 +638843.03997392|220226.56806262|112.57810702|18299|1 +638837.9062923|220231.23000874|112.74153923|18300|1 +638832.76692509|220235.89922308|113.05497189|18301|1 +638827.69060212|220240.50762288|113.1184193|18302|1 +638822.55127916|220245.17801504|113.51996769|18303|1 +638817.42294754|220249.83588841|113.74126625|18304|1 +638812.30710134|220254.47918034|113.73237375|18305|1 +638807.21736811|220259.09087087|113.16274227|18306|1 +638802.12202566|220263.70940437|112.71805224|18307|1 +638796.95750201|220268.39792136|112.78074622|18308|1 +638791.84340871|220273.04031417|112.82322743|18309|1 +638786.71903565|220277.69624655|113.16549559|18310|1 +638781.57743094|220282.3750998|114.02596572|18311|1 +638776.38616208|220287.1010558|115.02670664|18312|1 +638771.25427619|220291.77002597|115.81346949|18313|1 +638766.07991202|220296.47659596|116.52856216|18314|1 +638760.96207043|220301.12939984|117.07299513|18315|1 +638755.85524275|220305.76824592|117.33697025|18316|1 +638750.39322771|220310.87902581|128.23470825|18317|1 +638745.33037095|220315.46470792|127.55778077|18318|1 +638740.4556677|220319.75292012|117.86284617|18319|1 +638735.36321052|220324.3740607|117.79743608|18320|1 +638730.27167835|220328.99418687|117.71980346|18321|1 +638725.1322104|220333.65819556|117.66483926|18322|1 +638720.08753288|220338.23725207|117.69641879|18323|1 +638714.94823896|220342.90188403|117.69841867|18324|1 +638709.85802046|220347.52159434|117.6781129|18325|1 +638704.77108787|220352.13603745|117.49564925|18326|1 +638699.63268409|220356.80056302|117.5488182|18327|1 +638694.49230441|220361.46959657|117.79614314|18328|1 +638689.44908937|220366.05027865|118.04114263|18329|1 +638684.30866346|220370.72242345|118.50788716|18330|1 +638679.17146193|220375.38953541|118.82519866|18331|1 +638674.13481865|220379.95958823|118.73955721|18332|1 +638669.00248632|220384.6165709|118.65143218|18333|1 +638663.87083792|220389.2715294|118.46378744|18334|1 +638653.70226108|220398.4979303|118.27278476|18335|1 +638648.57006451|220403.15452238|118.16747005|18336|1 +638643.53364699|220407.72416691|118.07010836|18337|1 +638638.40598189|220412.37979741|118.19048265|18338|1 +638633.32238433|220416.99809584|118.50536638|18339|1 +638628.23929283|220421.61426101|118.70171758|18340|1 +638623.10937555|220426.27421412|118.9856357|18341|1 +638618.02757047|220430.88912177|119.17628491|18342|1 +638612.94710498|220435.50421139|119.46713286|18343|1 +638607.81809319|220440.16131713|119.60840824|18344|1 +638602.78393134|220444.7305398|119.6307325|18345|1 +638597.70244608|220449.34347713|119.70346309|18346|1 +638592.56957767|220453.99943975|119.5144882|18347|1 +638587.53406456|220458.56899829|119.47458358|18348|1 +638582.45700684|220463.18193017|119.83538088|18349|1 +638577.38263012|220467.79374138|120.29010752|18350|1 +638572.3556842|220472.36137103|120.66897818|18351|1 +638567.28044958|220476.97211191|120.99273581|18352|1 +638562.20698798|220481.58202254|121.37290871|18353|1 +638557.18047449|220486.1482774|121.68313226|18354|1 +638552.10960093|220490.75661606|122.11977625|18355|1 +638547.08023814|220495.32334861|122.28005516|18356|1 +638542.05678185|220499.88776593|122.65895372|18357|1 +638536.98494231|220504.49565768|123.00219857|18358|1 +638531.96825486|220509.05663284|123.57473221|18359|1 +638526.95196376|220513.61697767|124.12844835|18360|1 +638521.88243115|220518.22302129|124.49069674|18361|1 +638516.86509486|220522.78324725|124.96943126|18362|1 +638511.84728343|220527.34346411|125.41685601|18363|1 +638506.82481022|220531.90625432|125.71433612|18364|1 +638501.81104908|220536.46461598|126.23030566|18365|1 +638496.79150842|220541.0259419|126.58384758|18366|1 +638491.76804647|220545.58942767|126.83744191|18367|1 +638486.75732931|220550.14561786|127.39688795|18368|1 +638481.74263657|220554.7039256|127.85012631|18369|1 +638476.77014374|220559.22198095|128.16892609|18370|1 +638471.74491124|220563.78652564|128.38476451|18371|1 +638466.73057429|220568.34449073|128.83770521|18372|1 +638461.76084495|220572.86089052|129.21828739|18373|1 +638456.82432631|220577.3697462|131.21200224|18374|1 +638446.72589492|220586.51648235|129.79876475|18375|1 +638441.74194091|220591.04236447|129.93528692|18376|1 +638436.75127786|220595.57284417|129.96559211|18377|1 +638432.49132336|220599.61924397|142.82172612|18378|1 +638431.75700787|220600.10598564|129.95205802|18379|2 +638427.07463004|220604.4309109|135.30005856|18380|1 +638426.77020495|220604.63442965|130.08799418|18381|2 +638421.78287792|220609.16343743|130.2299672|18382|1 +638416.80186408|220613.68835432|130.49017509|18383|1 +638411.83836123|220618.19063328|130.27170427|18384|1 +638406.84546926|220622.72414607|130.37565162|18385|1 +638402.55579759|220626.75995216|140.55508785|18386|1 +638401.85088363|220627.24870614|129.73296398|18387|2 +638397.8172103|220631.10350174|143.59229458|18388|1 +638396.88671411|220631.75270161|129.59468377|18389|2 +638391.9038315|220636.28015463|129.91609736|18390|1 +638387.18931822|220640.59876406|132.73619133|18391|1 +638382.39463967|220644.99220332|135.69669561|18392|1 +638376.95928772|220649.8320954|128.98203157|18393|1 +638371.97010971|220654.35580552|128.6308151|18394|1 +638367.03169158|220658.834338|128.34821783|18395|1 +638362.02615533|220663.37080194|127.84717764|18396|1 +638357.04258083|220667.89183696|127.66956022|18397|1 +638352.13046642|220672.35245944|127.81517953|18398|1 +638347.11113627|220676.90038911|127.23894378|18399|1 +638342.16756515|220681.38477834|127.04174612|18400|1 +638337.23191825|220685.87191242|127.55326941|18401|1 +638332.70591878|220690.04728257|132.3778869|18402|1 +638328.8945926|220693.68902557|145.45989595|18403|1 +638322.77055508|220699.05219218|131.43828656|18404|1 +638322.38496478|220699.34009122|126.98303331|18405|2 +638319.25996215|220702.46387994|147.60223458|18406|1 +638312.36816428|220708.41002565|125.40438233|18407|1 +638308.0335219|220712.43804339|132.12294381|18408|1 +638307.37730133|220712.9327081|124.87576237|18409|2 +638302.49085006|220717.37696274|125.52044059|18410|1 +638299.11572759|220720.66075532|141.34561792|18411|1 +638297.7990654|220721.65905473|127.21714042|18412|2 +638294.88862611|220724.60790827|149.26701072|18413|1 +638292.56569127|220726.37415844|124.69633111|18414|2 +638289.88876171|220729.12024019|147.41992907|18415|1 +638285.26211327|220733.36221901|150.47689278|18416|1 +638282.72803251|220735.29925789|124.40292517|18417|2 +638280.49483496|220737.69736643|151.06635565|18418|1 +638275.26660403|220742.39346953|147.52670416|18419|1 +638272.93851207|220744.18192747|124.20488105|18420|2 +638269.54840266|220747.461754|138.77838344|18421|1 +638268.08558847|220748.58816698|124.31472573|18422|2 +638265.76774046|220751.04467624|149.65877363|18423|1 +638263.1454638|220753.06862011|124.06641481|18424|2 +638260.79616436|220755.53871835|148.34236763|18425|1 +638253.38687416|220761.9298534|124.34690057|18426|1 +638258.45841445|220754.39894205|148.29377515|18427|1 +638255.94460477|220756.34423816|124.13360154|18428|2 +638263.35274277|220749.9432254|147.96767347|18429|1 +638267.62808394|220745.97119871|142.02646145|18430|1 +638265.82930761|220747.35680966|124.28394615|18431|2 +638272.97173573|220741.16954341|146.14390208|18432|1 +638272.16528817|220741.78926678|138.08294543|18433|2 +638270.7620654|220742.86758852|124.05687119|18434|3 +638278.29985946|220736.38167323|150.23801385|18435|1 +638275.71459977|220738.36344268|124.0464718|18436|2 +638283.19218291|220731.92891662|149.9910889|18437|1 +638280.69635517|220733.83727103|124.35833246|18438|2 +638287.86370105|220727.64476953|147.46028948|18439|1 +638285.67748717|220729.3120143|124.69482422|18440|2 +638292.89224053|220723.08127575|148.14136555|18441|1 +638292.26584366|220723.55767623|141.52560729|18442|2 +638290.66223929|220724.77728303|124.58903512|18443|3 +638297.50778067|220718.83884083|144.95657683|18444|1 +638297.03784867|220719.19524971|139.92234381|18445|2 +638296.20981657|220719.82325116|131.05190937|18446|3 +638295.61298329|220720.2759053|124.65824033|18447|4 +638300.67208375|220715.68555204|125.40263359|18448|1 +638306.33680429|220710.63921227|132.87263909|18449|1 +638305.61848054|220711.18080603|124.9486697|18450|2 +638310.69211162|220706.58815448|126.47051473|18451|1 +638315.57577454|220702.13110108|125.35140871|18452|1 +638320.56647493|220697.59394967|125.45577464|18453|1 +638327.22182563|220691.81825527|145.10578662|18454|1 +638325.6975246|220692.95271053|127.23179072|18455|2 +638331.20803872|220688.0311757|133.60815845|18456|1 +638330.83394521|220688.30860989|129.15124949|18457|2 +638335.64759356|220683.90420587|127.24761304|18458|1 +638340.66580871|220679.34033031|127.22695379|18459|1 +638345.64839684|220674.8113585|127.38677692|18460|1 +638350.67312377|220670.24340836|127.49662159|18461|1 +638355.69147189|220665.68047593|127.55047888|18462|1 +638360.71314108|220661.11549738|127.67276933|18463|1 +638365.76430067|220656.52965782|128.21827201|18464|1 +638370.75001128|220652.00057341|128.57045587|18465|1 +638375.81750644|220647.39485916|128.75551471|18466|1 +638381.35685744|220642.46432405|136.35612645|18467|1 +638386.11867391|220638.08659689|133.01690034|18468|1 +638390.94623847|220633.65101345|129.82695843|18469|1 +638396.60927585|220628.64142822|139.84801331|18470|1 +638401.8224483|220623.94976023|143.38594397|18471|1 +638406.02398006|220619.94637941|130.444122|18472|1 +638411.00570628|220615.41287605|130.26090491|18473|1 +638416.05290963|220610.82410746|130.37820961|18474|1 +638421.08100755|220606.2486018|130.20262928|18475|1 +638426.11262719|220601.67095201|130.10189104|18476|1 +638431.14714152|220597.09163737|130.06978131|18477|1 +638436.12930126|220592.55908548|129.97958198|18478|1 +638441.15656496|220587.98506183|129.85388708|18479|1 +638446.18398621|220583.41116785|129.74690735|18480|1 +638451.20895361|220578.83907046|129.60875736|18481|1 +638456.37705805|220574.16380223|131.38845694|18482|1 +638461.30358472|220569.65398629|129.31008662|18483|1 +638466.31380189|220565.0915584|128.90369201|18484|1 +638471.36845099|220560.48767622|128.41893924|18485|1 +638476.38484469|220555.92148328|128.14359735|18486|1 +638481.4501818|220551.31123006|127.89624451|18487|1 +638486.45627269|220546.75109365|127.38369803|18488|1 +638491.51320808|220542.14560653|126.93057129|18489|1 +638496.57542183|220537.53707878|126.60246043|18490|1 +638501.58780344|220532.97308499|126.22100388|18491|1 +638506.64304435|220528.36811508|125.6932955|18492|1 +638511.70685753|220523.75851463|125.39054128|18493|1 +638516.76428603|220519.15201023|124.89434732|18494|1 +638521.82623258|220514.54307554|124.51697425|18495|1 +638526.88568516|220509.93510439|124.04606252|18496|1 +638531.94453679|220505.32707648|123.53158127|18497|1 +638537.00212014|220500.71915743|122.94227652|18498|1 +638542.06864578|220496.10723807|122.64674048|18499|1 +638547.13405601|220491.4955546|122.29514264|18500|1 +638552.20401895|220486.88210657|122.11241854|18501|1 +638557.26655056|220482.27078015|121.59870934|18502|1 +638562.33289224|220477.65784553|121.21637842|18503|1 +638567.40041504|220473.04419105|120.85919951|18504|1 +638572.51636761|220468.38644903|120.49495124|18505|1 +638577.53863748|220463.81499094|120.21411201|18506|1 +638582.65445349|220459.15608703|119.75671576|18507|1 +638587.72602875|220454.53958257|119.45659394|18508|1 +638592.80162541|220449.92302162|119.41287559|18509|1 +638597.87828534|220445.30681702|119.46308658|18510|1 +638603.00105669|220440.64662612|119.36322271|18511|1 +638608.02913905|220436.07396294|119.37037578|18512|1 +638613.15189985|220431.41328338|119.23363036|18513|1 +638618.22652378|220426.79503332|119.00351372|18514|1 +638623.30191726|220422.17644093|118.79857698|18515|1 +638628.42570862|220417.5132875|118.55040558|18516|1 +638633.5022792|220412.89260122|118.27098952|18517|1 +638638.57978816|220408.27203493|118.06051823|18518|1 +638643.70095575|220403.61322273|117.95085028|18519|1 +638648.77893571|220398.99557444|117.97835563|18520|1 +638653.85706877|220394.37779712|118.00606563|18521|1 +638658.98278764|220389.71839032|118.14747123|18522|1 +638664.06098047|220385.10101466|118.20693749|18523|1 +638669.13807396|220380.48701241|118.4353147|18524|1 +638674.26412235|220375.82655599|118.52155147|18525|1 +638679.29569064|220371.25023757|118.48649308|18526|1 +638684.42817008|220366.57687627|118.06732713|18527|1 +638689.51311823|220361.94799836|117.74061153|18528|1 +638694.59937623|220357.31802888|117.42038858|18529|1 +638699.68429115|220352.69173534|117.27533667|18530|1 +638704.76504634|220348.07343742|117.43033218|18531|1 +638709.84967575|220343.44882007|117.38568365|18532|1 +638714.93395763|220338.8253222|117.397469|18533|1 +638720.01835622|220334.20208175|117.43447147|18534|1 +638725.05582884|220329.62117565|117.45039611|18535|1 +638730.14060555|220324.9981293|117.5252196|18536|1 +638735.2269099|220320.37318474|117.56282668|18537|1 +638740.31342613|220315.74832063|117.61940938|18538|1 +638745.16108648|220311.45979578|126.20353515|18539|1 +638750.45256758|220306.52368584|117.32441285|18540|1 +638755.54932847|220301.88614006|117.1382657|18541|1 +638760.60299856|220297.28621763|116.84290639|18542|1 +638765.71823076|220292.62471049|116.18927056|18543|1 +638770.78701092|220288.00543564|115.56360518|18544|1 +638775.92079109|220283.32167045|114.54885578|18545|1 +638780.95536823|220278.73054969|113.71397484|18546|1 +638786.08447287|220274.05542383|113.01192327|18547|1 +638791.14772476|220269.44731579|112.82385995|18548|1 +638796.20668434|220264.84512634|112.77937885|18549|1 +638801.25972403|220260.2506787|112.90337153|18550|1 +638806.28762126|220255.68728098|113.61347845|18551|1 +638811.34314995|220251.09014596|113.70638459|18552|1 +638816.41121518|220246.47823146|113.55632833|18553|1 +638821.44541545|220241.89344405|113.14606418|18554|1 +638826.51550774|220237.28022741|113.03366152|18555|1 +638831.59179195|220232.6601699|112.83422213|18556|1 +638836.62269112|220228.08110596|112.61733261|18557|1 +638841.65396294|220223.50214538|112.43157613|18558|1 +638846.68551523|220218.92337191|112.2769527|18559|1 +638851.68937934|220214.37707829|112.64536816|18560|1 +638856.68081413|220209.84520943|113.23774249|18561|1 +638861.71920706|220205.25963156|113.03938211|18562|1 +638866.74238095|220200.69188932|113.12734901|18563|1 +638871.72899671|220196.15501256|113.04744675|18564|1 +638876.76988746|220191.56795976|112.90506446|18565|1 +638881.81934756|220186.97173987|112.66321827|18566|1 +638886.81906804|220182.42149207|112.47726646|18567|1 +638891.83113703|220177.85794158|112.14192812|18568|1 +638896.84976396|220173.28765166|111.75058378|18569|1 +638901.60614129|220169.00850952|115.13843028|18570|1 +638906.58467469|220164.48265072|115.31806618|18571|1 +638911.58637124|220159.93157759|115.19920808|18572|1 +638916.9060546|220155.03206665|110.82484309|18573|1 +638921.85676755|220150.52966091|110.87330534|18574|1 +638926.88367422|220145.95336266|110.5872013|18575|1 +638931.82791946|220141.45874881|110.77169273|18576|1 +638936.83316794|220136.90682743|110.82060148|18577|1 +638941.72767997|220132.45815123|111.05878276|18578|1 +638946.72797807|220127.91220914|111.21270856|18579|1 +638951.47203042|220123.63411047|113.8708772|18580|1 +638956.59864749|220118.93654823|111.39058643|18581|1 +638961.56176223|220114.42340573|111.47365129|18582|1 +638966.51713991|220109.91885963|111.66802121|18583|1 +638971.49908263|220105.38627808|111.58316111|18584|1 +638976.41983598|220100.9115939|111.66308197|18585|1 +638981.32965585|220096.44883216|111.88499445|18586|1 +638986.27116725|220091.95277436|111.78430272|18587|1 +638991.25523238|220087.41939995|111.77879607|18588|1 +638996.17222366|220082.94280561|111.47657205|18589|1 +639001.12790947|220078.43300441|111.3129352|18590|1 +639006.03052542|220073.97241398|111.22021509|18591|1 +639011.01048534|220069.44485676|111.36210439|18592|1 +639015.91013924|220064.98128076|110.86321291|18593|1 +639020.9306263|220060.40534648|110.17888122|18594|1 +639025.9310708|220055.84429008|109.25619151|18595|1 +639030.92355954|220051.29219633|108.45704799|18596|1 +639035.84994645|220046.80949707|108.32499998|18597|1 +639040.7826648|220042.32061004|108.16164218|18598|1 +639045.6737416|220037.86897893|107.95684497|18599|1 +639044.45801266|220036.19054651|107.93078139|18600|1 +639039.47381173|220040.71035815|108.01035809|18601|1 +639034.58359169|220045.1457932|108.15901908|18602|1 +639029.60012378|220049.66560534|108.2874115|18603|1 +639024.6319812|220054.17646051|108.77142943|18604|1 +639019.56968729|220058.77947402|109.73405167|18605|1 +639014.53247117|220063.35695563|110.49896465|18606|1 +639009.50290921|220067.92705243|111.23301434|18607|1 +639004.55797624|220072.40890751|111.15034015|18608|1 +638999.54507647|220076.9555367|111.28717858|18609|1 +638994.58609246|220081.45289822|111.4019718|18610|1 +638989.54737796|220086.02761681|111.87290214|18611|1 +638984.61675643|220090.49583532|111.74566314|18612|1 +638979.57671971|220095.06548715|111.7679781|18613|1 +638974.61123919|220099.56384011|111.53239201|18614|1 +638969.62437515|220104.08523058|111.55681847|18615|1 +638964.6393476|220108.60503197|111.58721668|18616|1 +638959.67910094|220113.09868677|111.35696981|18617|1 +638954.65559095|220117.65243499|111.31680474|18618|1 +638949.6419719|220122.19589388|111.18353819|18619|1 +638944.630207|220126.73766712|111.05018792|18620|1 +638939.65381213|220131.24151647|110.50089942|18621|1 +638934.61407194|220135.81413233|110.75830748|18622|1 +638929.61005364|220140.34841772|110.59355441|18623|1 +638924.60148533|220144.8879535|110.50936404|18624|1 +638919.5176521|220149.50109037|110.8029467|18625|1 +638914.46281838|220154.08295756|110.74265259|18626|1 +638909.13232297|220158.97782169|115.17575831|18627|1 +638904.06105142|220163.57973571|115.4830797|18628|1 +638899.03508954|220168.13200085|115.18140448|18629|1 +638894.2278305|220172.44134559|111.70263312|18630|1 +638889.15380806|220177.04677843|112.08430361|18631|1 +638884.03659762|220181.69183109|112.41606077|18632|1 +638878.92984983|220186.32598948|112.62375083|18633|1 +638873.87546635|220190.91225682|112.8068191|18634|1 +638868.77640716|220195.53874061|112.96528416|18635|1 +638863.68962749|220200.15172863|112.95602889|18636|1 +638858.65878851|220204.71252186|112.84696556|18637|1 +638853.53497809|220209.35713693|112.69541172|18638|1 +638848.46533451|220213.9514308|112.46264407|18639|1 +638843.40005248|220218.54089211|112.16774055|18640|1 +638838.26448051|220223.20009665|112.29744452|18641|1 +638833.174622|220227.81899496|112.51379453|18642|1 +638828.08556614|220232.43751437|112.75531516|18643|1 +638822.95425373|220237.09328396|112.91737071|18644|1 +638817.8272034|220241.74449257|113.03001522|18645|1 +638812.6873308|220246.41169461|113.45476224|18646|1 +638807.56153317|220251.06255123|113.62441734|18647|1 +638802.49347459|220255.65851781|113.61813864|18648|1 +638797.3621206|220260.30148041|112.861281|18649|1 +638792.2467219|220264.94062836|112.86990374|18650|1 +638787.13528915|220269.5752212|112.81027936|18651|1 +638782.01124458|220274.22622789|113.10655954|18652|1 +638776.81923389|220278.94716566|113.99205145|18653|1 +638771.67702946|220283.62363158|114.93196805|18654|1 +638766.49901678|220288.32908194|115.61921119|18655|1 +638761.37645283|220292.98232333|116.17333662|18656|1 +638756.25464904|220297.63565937|116.78405405|18657|1 +638751.09802039|220302.3156917|117.04240159|18658|1 +638745.9460934|220306.98997313|117.19522047|18659|1 +638740.84364701|220311.61928864|117.34535115|18660|1 +638735.6991969|220316.28417017|117.31184615|18661|1 +638730.55519269|220320.94882672|117.29134503|18662|1 +638725.46395843|220325.56317154|117.09914243|18663|1 +638720.27252446|220330.27129184|117.10822096|18664|1 +638715.17920295|220334.88944234|117.05413113|18665|1 +638710.03572929|220339.55510483|117.14167945|18666|1 +638704.89558322|220344.21582963|117.09230562|18667|1 +638699.75593165|220348.87610702|117.04341548|18668|1 +638694.61553598|220353.53819521|117.07621355|18669|1 +638689.47234396|220358.20639595|117.36563832|18670|1 +638684.33002835|220362.87432982|117.69304225|18671|1 +638679.18864155|220367.54203282|118.06469472|18672|1 +638674.05187539|220372.20083232|118.09943686|18673|1 +638668.91626802|220376.85744711|118.05343957|18674|1 +638663.78132345|220381.51258543|117.94539944|18675|1 +638658.64639962|220386.16779694|117.84406589|18676|1 +638653.51155658|220390.82276179|117.73069584|18677|1 +638648.37633638|220395.48007673|117.76149402|18678|1 +638643.24146748|220400.13672132|117.76775411|18679|1 +638638.10684852|220404.79392901|117.83071784|18680|1 +638632.97719302|220409.44959822|118.10665504|18681|1 +638627.84360147|220414.10805651|118.32674437|18682|1 +638622.7108608|220418.76617607|118.57853415|18683|1 +638617.57933058|220423.42424845|118.90577995|18684|1 +638612.44809965|220428.08082879|119.14597972|18685|1 +638607.31573762|220432.73555436|119.1803963|18686|1 +638602.23148973|220437.34676994|119.22748189|18687|1 +638597.10001297|220442.00165567|119.33140133|18688|1 +638591.96527125|220446.65575522|119.16705755|18689|1 +638586.88433338|220451.26736483|119.45872405|18690|1 +638581.75619555|220455.92192522|119.75759943|18691|1 +638576.6310428|220460.57543021|120.17562126|18692|1 +638571.55224051|220465.18492253|120.45560473|18693|1 +638566.42762486|220469.83715844|120.81813216|18694|1 +638561.30250736|220474.48906571|121.12483034|18695|1 +638556.22885817|220479.09613982|121.56807859|18696|1 +638551.15693275|220483.70217334|122.04898973|18697|1 +638546.03377751|220488.35238533|122.36297119|18698|1 +638540.96056307|220492.95810282|122.73813974|18699|1 +638535.88561287|220497.56425618|123.03227121|18700|1 +638530.77060209|220502.21038684|123.5846572|18701|1 +638525.74937554|220506.77000079|124.03960709|18702|1 +638520.68115104|220511.37239821|124.50290997|18703|1 +638515.56572922|220516.0176741|124.96868712|18704|1 +638510.5465883|220520.57546855|125.43000872|18705|1 +638505.47476079|220525.17903651|125.74392507|18706|1 +638500.40845186|220529.78038738|126.21417638|18707|1 +638495.33985004|220534.38303197|126.6159294|18708|1 +638490.31784579|220538.94280352|126.97748015|18709|1 +638485.29625009|220543.50228033|127.34522588|18710|1 +638480.23532676|220548.1002085|127.90957396|18711|1 +638475.21118944|220552.66102334|128.20866328|18712|1 +638470.18093638|220557.22555354|128.37665336|18713|1 +638465.23278228|220561.74001447|130.29818643|18714|1 +638460.14578135|220566.33932219|129.26795888|18715|1 +638455.25705653|220570.81522853|132.29338956|18716|1 +638450.08099955|220575.47169417|129.56637847|18717|1 +638445.09566833|220579.99516947|129.7178672|18718|1 +638440.06623369|220584.55987011|129.95430905|18719|1 +638435.07196359|220589.0895275|129.96828032|18720|1 +638430.06807093|220593.62582616|129.83241858|18721|1 +638425.03904597|220598.19082825|130.11859703|18722|1 +638420.50804012|220602.39838714|137.19071903|18723|1 +638420.07729762|220602.6880863|129.92811525|18724|2 +638415.05682332|220607.24765821|130.38244192|18725|1 +638410.15008801|220611.71876257|131.89767339|18726|1 +638405.56820213|220615.95530332|137.73833322|18727|1 +638405.09358469|220616.28166213|130.24806846|18728|2 +638400.79886941|220620.32884201|141.20192408|18729|1 +638395.09116587|220625.34424174|129.61443145|18730|1 +638390.08217632|220629.88666701|129.58967012|18731|1 +638385.35230418|220634.2228768|132.94741607|18732|1 +638375.0558261|220643.49647672|128.3082667|18733|1 +638370.10786607|220647.98745988|128.57000939|18734|1 +638365.10455084|220652.51843772|128.09693034|18735|1 +638360.09739396|220657.05271795|127.61128459|18736|1 +638355.10878203|220661.5740638|127.40551069|18737|1 +638350.12083397|220666.0953184|127.23686949|18738|1 +638345.18045304|220670.57363192|127.08659929|18739|1 +638340.19919096|220675.09070522|127.05428492|18740|1 +638335.3159274|220679.52755392|127.64938467|18741|1 +638330.74800266|220683.73083714|132.0233962|18742|1 +638326.9822034|220687.33619741|145.73690285|18743|1 +638322.25328155|220691.66214581|148.42784166|18744|1 +638315.49793222|220697.49620787|127.35241616|18745|1 +638310.9094925|220701.70483286|130.77646517|18746|1 +638310.40845213|220702.08101655|125.13625862|18747|2 +638305.89394232|220706.2414908|129.92057151|18748|1 +638305.453232|220706.57340388|125.03294379|18749|2 +638300.5093664|220711.05755382|125.07831786|18750|1 +638296.12435904|220715.11859675|131.1636237|18751|1 +638295.53475876|220715.5652707|124.81291027|18752|2 +638292.66843496|220718.45738137|145.93882581|18753|1 +638285.70301236|220724.47822019|124.58240295|18754|1 +638282.86378852|220727.34914228|145.95405282|18755|1 +638280.7790214|220728.9413997|124.4198451|18756|2 +638275.87436154|220733.39012455|124.48010201|18757|1 +638273.64089758|220735.78870814|151.4164187|18758|1 +638267.90485287|220740.87273986|142.91364628|18759|1 +638265.99894172|220742.33924046|124.00374874|18760|2 +638263.69771611|220744.77437858|149.1522547|18761|1 +638256.92390524|220750.66460455|130.9043832|18762|1 +638256.22395898|220751.20565309|124.1370711|18763|2 +638252.74927982|220751.67769351|129.98587928|18764|1 +638259.59880838|220745.7138817|148.86223461|18765|1 +638257.01734885|220747.71056603|123.76140026|18766|2 +638264.27886594|220741.42484076|146.40717956|18767|1 +638261.98593237|220743.19428457|123.81745276|18768|2 +638269.48853484|220736.7274768|149.19635442|18769|1 +638268.26689056|220737.66798514|136.99984658|18770|2 +638274.17989816|220732.42953009|146.83880059|18771|1 +638279.51537401|220727.63073473|150.55122327|18772|1 +638283.39556349|220723.95257123|139.75395375|18773|1 +638282.36125569|220724.74286658|128.99508196|18774|2 +638288.91450087|220719.01466606|145.45195223|18775|1 +638291.89935103|220716.01223802|124.73527764|18776|1 +638297.49698293|220711.00733983|130.75374093|18777|1 +638297.14308485|220711.27550662|126.91061898|18778|2 +638302.09343991|220706.77638578|127.00886434|18779|1 +638307.5440492|220701.88587229|131.64513946|18780|1 +638306.92388149|220702.35299367|124.7073165|18781|2 +638312.08856453|220697.68557257|126.70475207|18782|1 +638317.44310937|220692.87723418|130.97697426|18783|1 +638316.97283832|220693.22918793|125.55252242|18784|2 +638323.90330394|220687.23861044|147.79769281|18785|1 +638327.89052411|220683.45377931|136.31163605|18786|1 +638327.20608804|220683.96249626|128.16251716|18787|2 +638332.18644135|220679.42739667|127.62456753|18788|1 +638337.11605449|220674.9380132|127.06183796|18789|1 +638342.16231787|220670.34627039|126.75337245|18790|1 +638347.21648586|220665.75740924|127.17286396|18791|1 +638352.19883413|220661.23004155|127.3248829|18792|1 +638357.28313363|220656.61152873|127.57666338|18793|1 +638362.3130743|220652.04166145|127.77863285|18794|1 +638367.35719525|220647.46203261|128.20471002|18795|1 +638372.41012159|220642.86736904|128.12093822|18796|1 +638377.81293552|220638.04291879|134.39337721|18797|1 +638382.52060333|220633.69564514|129.4843089|18798|1 +638387.57601775|220629.10134274|129.53809177|18799|1 +638393.23826258|220624.09296789|139.48966238|18800|1 +638398.34093874|220619.4694046|140.52946145|18801|1 +638397.63413717|220619.96067388|129.65114556|18802|2 +638403.427856|220614.85765919|141.38892699|18803|1 +638407.76623854|220610.76003944|130.28293151|18804|1 +638412.80615262|220606.17829239|130.22513958|18805|1 +638418.3014237|220601.30033292|138.64376813|18806|1 +638422.88426429|220597.01680357|130.14093059|18807|1 +638428.36081858|220592.14582732|137.83395548|18808|1 +638427.9107593|220592.44484099|129.90873965|18809|2 +638433.33101722|220587.61377822|136.7920356|18810|1 +638432.94562633|220587.86751961|129.83869728|18811|2 +638438.04916056|220583.23343072|130.16999865|18812|1 +638443.01924279|220578.71118695|129.82974897|18813|1 +638448.09330887|220574.09679264|129.64990842|18814|1 +638453.33161018|220569.37893658|132.77074743|18815|1 +638458.30551286|220564.8422461|131.63445172|18816|1 +638463.30418077|220560.27570177|129.96400151|18817|1 +638468.3149942|220555.70072749|128.48069373|18818|1 +638473.34021102|220551.13109262|128.33007937|18819|1 +638478.40785395|220546.52135841|128.06392764|18820|1 +638483.46932431|220541.9152545|127.65439833|18821|1 +638488.52499234|220537.31235343|127.09520343|18822|1 +638493.59108752|220532.70344558|126.78590076|18823|1 +638498.6553418|220528.09552094|126.42683359|18824|1 +638503.71369704|220523.490632|125.89932055|18825|1 +638508.8266953|220518.8385406|125.54438336|18826|1 +638513.8931657|220514.22914448|125.22341627|18827|1 +638518.95403012|220509.62234488|124.72148311|18828|1 +638524.06541248|220504.9705389|124.28009522|18829|1 +638529.12716233|220500.36269154|123.75986546|18830|1 +638534.19239434|220495.75298519|123.33349064|18831|1 +638539.30630552|220491.09916535|122.9118039|18832|1 +638544.37268511|220486.48834629|122.47964337|18833|1 +638549.44381241|220481.87555631|122.21633799|18834|1 +638554.55806925|220477.22050455|121.72691572|18835|1 +638559.6269647|220472.60768334|121.31413079|18836|1 +638564.69922164|220467.9936273|121.03274275|18837|1 +638569.81754346|220463.33603613|120.62555749|18838|1 +638574.88857058|220458.72121639|120.20717289|18839|1 +638580.01007014|220454.06205128|119.89444716|18840|1 +638585.08442609|220449.44543525|119.56402946|18841|1 +638590.20873402|220444.78486797|119.33328959|18842|1 +638595.28501625|220440.16721085|119.05337124|18843|1 +638600.41348987|220435.50711101|119.12959929|18844|1 +638610.62023807|220426.22983298|119.08969467|18845|1 +638615.7461235|220421.56727973|118.81715262|18846|1 +638620.82492291|220416.94772571|118.5636048|18847|1 +638625.95238818|220412.28384053|118.2980949|18848|1 +638631.08071861|220407.6194446|118.05177456|18849|1 +638636.15734777|220403.00292193|117.87403621|18850|1 +638641.28676998|220398.33824624|117.67848497|18851|1 +638646.41667353|220393.67469987|117.59587589|18852|1 +638651.49893639|220389.05490109|117.55027858|18853|1 +638656.62886223|220384.39377406|117.64341727|18854|1 +638661.75915805|220379.73163115|117.687024|18855|1 +638666.84156115|220375.11320035|117.74853664|18856|1 +638671.97201738|220370.45136436|117.82416009|18857|1 +638677.0570222|220365.82774292|117.68002906|18858|1 +638682.14338418|220361.20229293|117.49241223|18859|1 +638687.28070456|220356.52855144|117.15687855|18860|1 +638692.36956346|220351.9005984|116.95113256|18861|1 +638697.45892513|220347.27270679|116.78312387|18862|1 +638702.54399042|220342.65295976|116.92144129|18863|1 +638707.67985443|220337.9852459|116.92481783|18864|1 +638712.72241791|220333.40077282|116.82401448|18865|1 +638717.86109307|220328.72966815|116.76568304|18866|1 +638722.95266811|220324.10128359|116.7052494|18867|1 +638727.99170919|220319.52365038|116.86712822|18868|1 +638733.0801956|220314.90058847|116.98815363|18869|1 +638738.16950847|220310.27661209|117.0969379|18870|1 +638743.26629588|220305.64249294|116.96252724|18871|1 +638748.3671288|220301.00341164|116.73479184|18872|1 +638753.42210065|220296.4056586|116.4853275|18873|1 +638758.48519002|220291.79778183|116.03625634|18874|1 +638763.597877|220287.14691104|115.59076636|18875|1 +638768.6713485|220282.52914654|114.95478531|18876|1 +638773.80453163|220277.8538868|114.07950675|18877|1 +638778.89340375|220273.21870841|113.19455434|18878|1 +638783.96322319|220268.60877091|112.88372618|18879|1 +638789.02513866|220264.00937814|112.81629761|18880|1 +638794.0816014|220259.41717992|112.91111991|18881|1 +638799.11059656|220254.85897429|113.66071287|18882|1 +638804.1751131|220250.25732434|113.59977693|18883|1 +638809.20224608|220245.6867835|113.33485304|18884|1 +638814.29898791|220241.04744827|112.66329268|18885|1 +638819.36236399|220236.44874965|112.73988351|18886|1 +638824.38982163|220231.87956801|112.59352006|18887|1 +638829.42261604|220227.30459927|112.37857461|18888|1 +638834.45610986|220222.72934196|112.18853932|18889|1 +638839.49429658|220218.1491441|111.94868371|18890|1 +638844.52216511|220213.58141594|111.93301022|18891|1 +638849.5246496|220209.04327038|112.39052739|18892|1 +638854.49394806|220204.53172314|112.59312939|18893|1 +638859.46949833|220200.01329694|112.70825747|18894|1 +638864.49518508|220195.44928184|112.81660456|18895|1 +638869.48467412|220190.91571292|112.7508317|18896|1 +638874.4831629|220186.37242944|112.57286081|18897|1 +638879.48020502|220181.83123245|112.45071919|18898|1 +638884.44488521|220177.31648219|112.11674821|18899|1 +638889.45860828|220172.75765963|111.81388237|18900|1 +638894.4316009|220168.23476604|111.43587678|18901|1 +638899.15618324|220163.99619722|115.31596398|18902|1 +638904.10831626|220159.49626496|115.22883424|18903|1 +638909.43256437|220154.5978084|110.74305257|18904|1 +638914.38601633|220150.09832479|110.77420421|18905|1 +638919.36628375|220145.56994995|110.47579393|18906|1 +638924.32492382|220141.06558598|110.49384867|18907|1 +638929.29236065|220136.55203658|110.42463415|18908|1 +638934.24372321|220132.05625102|110.58479214|18909|1 +638939.13859452|220127.61334041|110.86096188|18910|1 +638944.09623382|220123.11133729|110.98300119|18911|1 +638948.9993033|220118.6601218|111.19599327|18912|1 +638953.91506121|220114.19558648|111.27813725|18913|1 +638958.83548036|220109.72638933|111.32872962|18914|1 +638963.7498379|220105.26397327|111.47180954|18915|1 +638968.67325833|220100.79221837|111.53377797|18916|1 +638973.61336802|220096.3030879|111.43413735|18917|1 +638978.51913764|220091.85068771|111.73676134|18918|1 +638983.41409851|220087.40265937|111.64606902|18919|1 +638988.33346555|220082.93645657|111.84225279|18920|1 +638993.26053837|220078.45534793|111.46563316|18921|1 +638998.16999991|220073.993209|111.30515891|18922|1 +639003.05253078|220069.55969858|111.44733657|18923|1 +639008.0123583|220065.0456053|110.83417277|18924|1 +639012.94627334|220060.55241815|110.03192246|18925|1 +639017.94680242|220055.99702976|109.10283312|18926|1 +639022.88496809|220051.50066675|108.34941714|18927|1 +639027.75702276|220047.07361406|108.26918001|18928|1 +639032.63911269|220042.63650947|108.12028648|18929|1 +639037.50564361|220038.21591082|108.14365254|18930|1 +639042.3949397|220033.77208326|107.98105749|18931|1 +639047.24522498|220029.3689477|108.20057011|18932|1 +639047.236288|220027.17821683|108.17712964|18933|1 +639042.33412361|220031.61449398|107.90805715|18934|1 +639037.33058811|220036.14955183|108.14095503|18935|1 +639032.38235159|220040.6278017|107.88569568|18936|1 +639027.38809209|220045.15401206|108.08733029|18937|1 +639022.40280846|220049.67131484|108.23317284|18938|1 +639017.41484814|220054.19178948|108.43445398|18939|1 +639012.35750039|220058.7849677|109.35291138|18940|1 +639007.26194569|220063.41200433|110.21269318|18941|1 +639002.26381212|220067.95141545|111.12837865|18942|1 +638997.25184989|220072.49225105|111.22735886|18943|1 +638992.28187927|220076.996375|111.42810049|18944|1 +638987.26151894|220081.54684062|111.67541612|18945|1 +638982.28806742|220086.04833943|111.45197815|18946|1 +638977.33669879|220090.53404248|111.54044735|18947|1 +638972.36950194|220095.02950426|111.29160623|18948|1 +638967.37143193|220099.55794455|111.40811098|18949|1 +638962.34365164|220104.11077061|111.33640358|18950|1 +638957.41580532|220108.57289916|111.26238935|18951|1 +638952.39641794|220113.11741483|111.14075002|18952|1 +638947.42861561|220117.6149848|111.00835783|18953|1 +638942.42067402|220122.14783865|110.79337518|18954|1 +638937.41383207|220126.67976647|110.58445728|18955|1 +638932.41120623|220131.21574296|110.95404476|18956|1 +638927.44862203|220135.70049367|110.22950149|18957|1 +638922.42071793|220140.25607238|110.35534522|18958|1 +638917.35178247|220144.84792411|110.41180701|18959|1 +638912.36556357|220149.36779638|110.69385547|18960|1 +638907.30804654|220153.94801464|110.65722507|18961|1 +638901.93407847|220158.87589008|115.07052731|18962|1 +638897.2144011|220163.09537396|111.05095067|18963|1 +638892.1399008|220167.69554631|111.35025393|18964|1 +638887.11574586|220172.25022059|111.66245875|18965|1 +638882.04661779|220176.84549566|111.96200386|18966|1 +638876.97464789|220181.44431148|112.36139423|18967|1 +638871.92564153|220186.01796857|112.44363123|18968|1 +638866.87357391|220190.59550781|112.6068123|18969|1 +638861.8830537|220195.11474765|112.58925985|18970|1 +638856.80316616|220199.71370961|112.47271789|18971|1 +638851.77449407|220204.26586255|112.33091231|18972|1 +638846.75197819|220208.81123428|112.10185606|18973|1 +638841.68784507|220213.39292981|111.76761533|18974|1 +638836.70070415|220217.90992901|111.81160343|18975|1 +638831.61180908|220222.52095766|111.98195617|18976|1 +638826.57197486|220227.08779854|112.17631678|18977|1 +638821.48541053|220231.69713708|112.37815603|18978|1 +638816.40141556|220236.30397548|112.56774484|18979|1 +638811.38382961|220240.84587647|112.41321443|18980|1 +638806.28714397|220245.46898353|112.95213145|18981|1 +638801.24100957|220250.04637408|113.50203386|18982|1 +638796.16890697|220254.64114746|113.59865142|18983|1 +638791.12534876|220259.20118488|113.04683283|18984|1 +638786.06918227|220263.77682254|112.80059621|18985|1 +638780.99943016|220268.36970929|112.91618938|18986|1 +638775.87464603|220273.01553309|113.25259743|18987|1 +638770.78119557|220277.64004595|114.11101186|18988|1 +638765.69289228|220282.25920585|114.91976412|18989|1 +638760.56691962|220286.90960454|115.51305932|18990|1 +638755.49922141|220291.50395425|115.87301947|18991|1 +638750.38738778|220296.13744649|116.16739278|18992|1 +638745.27859596|220300.76758579|116.41841052|18993|1 +638740.21993142|220305.35203369|116.65407103|18994|1 +638735.11711322|220309.97530883|116.7994671|18995|1 +638730.02232569|220314.58763853|116.67668365|18996|1 +638724.93174193|220319.19401586|116.39802103|18997|1 +638719.83555081|220323.80890225|116.36936226|18998|1 +638714.73804199|220328.42625751|116.43463282|18999|1 +638709.63969186|220333.04556971|116.58759123|19000|1 +638704.54393053|220337.66142686|116.65961489|19001|1 +638699.45028232|220342.27434022|116.65692667|19002|1 +638694.35782102|220346.8856711|116.61699415|19003|1 +638689.26278528|220351.50223584|116.78967232|19004|1 +638684.21650329|220356.07485242|116.98308416|19005|1 +638679.07426462|220360.73566118|117.26073289|19006|1 +638673.98366384|220365.34641496|117.30292574|19007|1 +638668.89234553|220369.95978124|117.48906359|19008|1 +638663.80407389|220374.56646174|117.38799049|19009|1 +638658.71486363|220379.17629129|117.45582834|19010|1 +638653.62658105|220383.78409065|117.43639693|19011|1 +638648.49077256|220388.43413956|117.35379716|19012|1 +638643.40257446|220393.04382605|117.4786177|19013|1 +638638.31491154|220397.65379519|117.65989072|19014|1 +638632.70470345|220402.73704056|117.78568794|19015|1 +638628.14570046|220406.86826831|118.02932937|19016|1 +638623.01189371|220411.52111907|118.28590957|19017|1 +638617.92644582|220416.12899658|118.46184337|19018|1 +638612.84168829|220420.73658439|118.66298498|19019|1 +638607.70906916|220425.38674412|118.80188841|19020|1 +638602.57517811|220430.03558631|118.75999321|19021|1 +638597.49037711|220434.64160107|118.8432069|19022|1 +638592.40866524|220439.24822243|119.17659187|19023|1 +638587.27881836|220443.89749946|119.43573006|19024|1 +638582.1955617|220448.50271296|119.56336903|19025|1 +638577.06870522|220453.15098458|119.94822073|19026|1 +638571.94268711|220457.79824816|120.31472933|19027|1 +638566.91384334|220462.35775978|120.71082687|19028|1 +638561.79121038|220467.00323663|121.17164618|19029|1 +638556.66871831|220471.64807698|121.5953886|19030|1 +638551.64197466|220476.20550507|121.97925431|19031|1 +638546.51873175|220480.84974975|122.30983944|19032|1 +638541.44481564|220485.44973978|122.6766736|19033|1 +638536.37345633|220490.04843485|123.11865681|19034|1 +638531.3036905|220494.64611132|123.59201491|19035|1 +638526.23394301|220499.24342472|124.04054657|19036|1 +638521.1642741|220503.84041592|124.47049328|19037|1 +638516.09821504|220508.43541287|124.99426701|19038|1 +638511.0291541|220513.03159661|125.40577759|19039|1 +638506.00421781|220517.58609119|125.69631858|19040|1 +638500.93512982|220522.18216403|126.08930003|19041|1 +638495.86656037|220526.77988347|126.50748929|19042|1 +638490.84594223|220531.33398221|126.91677676|19043|1 +638485.77552621|220535.93252057|127.27275574|19044|1 +638480.71179601|220540.52713049|127.78496736|19045|1 +638475.69071144|220545.08121747|128.16306597|19046|1 +638470.61580337|220549.68229586|128.40709807|19047|1 +638465.58898763|220554.23986623|128.66038545|19048|1 +638460.54933773|220558.81927952|129.659759|19049|1 +638455.59634686|220563.33043286|131.41676225|19050|1 +638450.57568897|220567.88351465|131.75094717|19051|1 +638445.38584815|220572.55797642|129.73717769|19052|1 +638440.3540416|220577.11921236|129.92819897|19053|1 +638435.49326989|220581.56851674|133.28125682|19054|1 +638430.60779533|220586.03220479|136.04738188|19055|1 +638425.55441858|220590.60642757|135.75759434|19056|1 +638425.22415792|220590.82683659|129.9650433|19057|2 +638420.23996196|220595.34557333|130.20778246|19058|1 +638415.64152795|220599.61379338|137.72336666|19059|1 +638415.18951241|220599.92038314|130.15568321|19060|2 +638410.19641996|220604.44556552|130.2797038|19061|1 +638405.14599576|220609.02093968|130.27129499|19062|1 +638400.8730115|220613.04765693|141.71709366|19063|1 +638395.76749001|220617.65876295|140.66668126|19064|1 +638395.03792677|220618.167524|129.47089573|19065|2 +638390.88680929|220622.10314123|142.33992201|19066|1 +638385.47687214|220626.91071938|135.46178855|19067|1 +638385.06098657|220627.20419859|129.3329969|19068|2 +638380.02227425|220631.77294231|129.61751964|19069|1 +638375.29756959|220636.09915472|132.99803633|19070|1 +638370.02353768|220640.826972|129.30437533|19071|1 +638364.91951286|220645.43444998|128.08918196|19072|1 +638359.96284052|220649.91847299|127.6217863|19073|1 +638354.92329857|220654.48064049|127.37141038|19074|1 +638349.93351121|220658.99835174|127.1709292|19075|1 +638344.94293935|220663.51702417|126.98892134|19076|1 +638339.92923488|220668.05310025|126.54551496|19077|1 +638335.68149353|220672.01548758|134.96265523|19078|1 +638335.22738343|220672.35108198|129.37873373|19079|2 +638330.45365348|220676.70940228|131.85646652|19080|1 +638330.03066236|220677.02315572|126.73982907|19081|2 +638325.11101202|220681.48256424|126.92940857|19082|1 +638321.50537816|220684.96844156|143.09717963|19083|1 +638320.00057762|220686.09243305|125.46597869|19084|2 +638315.05443174|220690.57245655|125.40641942|19085|1 +638310.16393257|220695.01848825|126.5525378|19086|1 +638305.56651156|220699.23591519|130.4237232|19087|1 +638305.02810872|220699.64194136|124.39893471|19088|2 +638300.58246704|220703.74451193|129.93983549|19089|1 +638300.11610802|220704.09725732|124.79806464|19090|2 +638297.04822533|220707.15381543|145.24425287|19091|1 +638295.11227569|220708.62236485|124.20947613|19092|2 +638290.44273964|220712.89370291|127.23963212|19093|1 +638285.96201107|220717.01315503|131.68789973|19094|1 +638285.25796128|220717.55016067|124.25306425|19095|2 +638282.27244447|220720.52619545|144.27431943|19096|1 +638280.34866982|220721.99736|124.23924181|19097|2 +638277.80337722|220724.63923679|149.02772252|19098|1 +638277.16922931|220725.12542763|142.51415358|19099|2 +638272.27022457|220729.5619529|142.40233693|19100|1 +638270.47326857|220730.94303671|124.19313291|19101|2 +638267.78072089|220733.6899364|146.89276949|19102|1 +638265.50579094|220735.4425929|124.14871693|19103|2 +638262.72166653|220738.24335449|144.71260053|19104|1 +638257.9165898|220742.61415985|146.02624391|19105|1 +638255.6523494|220744.3665748|123.97418769|19106|2 +638253.02277232|220747.04089812|145.54370495|19107|1 +638255.71329757|220742.22731155|147.95224183|19108|1 +638253.23420895|220744.15242619|123.87510517|19109|2 +638258.16473847|220739.67920655|124.02423125|19110|1 +638265.41710119|220733.40485785|146.86395259|19111|1 +638270.09944713|220729.12128975|144.37359729|19112|1 +638268.06686755|220730.68897108|123.83370297|19113|2 +638275.26663541|220724.45742103|146.30905512|19114|1 +638273.07429448|220726.14421452|123.84785097|19115|2 +638280.24275629|220719.9479636|146.8383634|19116|1 +638278.0190817|220721.65462567|123.73944806|19117|2 +638283.73371875|220716.57595145|131.76014663|19118|1 +638283.00675936|220717.13246565|124.10231036|19119|2 +638288.1687143|220712.47073009|125.84156582|19120|1 +638294.91340168|220706.61190081|145.33846126|19121|1 +638292.97031662|220708.09142308|124.27364908|19122|2 +638299.56440076|220702.3365248|141.33746026|19123|1 +638298.57737845|220703.08592568|130.47686425|19124|2 +638298.016428|220703.51182967|124.30452168|19125|3 +638303.00585858|220698.9900041|124.80956163|19126|1 +638308.10224247|220694.3805928|126.01547183|19127|1 +638313.1864125|220689.78118184|127.14091236|19128|1 +638318.26613755|220685.17829623|127.7066464|19129|1 +638323.23394048|220680.66733727|127.55836679|19130|1 +638328.86786833|220675.66044013|135.4730623|19131|1 +638333.92235019|220671.07947776|135.96587972|19132|1 +638338.18028959|220667.0880051|126.55177505|19133|1 +638343.2197494|220662.51690424|126.76319513|19134|1 +638348.27034258|220657.93804809|127.14887468|19135|1 +638353.25426765|220653.41690169|127.32914311|19136|1 +638358.32745051|220648.81389914|127.44133184|19137|1 +638363.38140013|220644.23401741|127.97658396|19138|1 +638368.4904925|220639.61498392|129.32126736|19139|1 +638373.66794687|220634.93831463|131.02807822|19140|1 +638378.55427049|220630.4776413|129.32211382|19141|1 +638383.96352223|220625.63595262|134.56729252|19142|1 +638389.57571338|220620.65436629|143.10326299|19143|1 +638389.1996356|220620.91956972|137.44703879|19144|2 +638388.65332781|220621.30481637|129.23057504|19145|3 +638394.64108266|220616.06119323|143.62352995|19146|1 +638393.71682108|220616.70905216|129.43108413|19147|2 +638399.3583501|220611.7110951|138.72918635|19148|1 +638398.78109719|220612.1131706|129.67537668|19149|2 +638403.82545397|220607.54186235|130.40456154|19150|1 +638408.85603385|220602.97020062|130.17544949|19151|1 +638414.30475763|220598.11347522|136.96543931|19152|1 +638413.89592459|220598.39235371|130.11466238|19153|2 +638418.94666021|220593.80744133|130.25968637|19154|1 +638424.02468086|220589.19329987|130.06996734|19155|1 +638429.21046615|220584.51921407|132.69720758|19156|1 +638434.30507514|220579.90733843|133.79711474|19157|1 +638439.29922578|220575.34995955|132.16753653|19158|1 +638444.1632215|220570.90084944|129.80954551|19159|1 +638449.24470115|220566.28561581|129.77035712|19160|1 +638454.30634207|220561.68318867|129.34457761|19161|1 +638459.32945511|220557.11835577|129.11596785|19162|1 +638464.39567169|220552.5131318|128.79028475|19163|1 +638469.41342783|220547.9517483|128.45560684|19164|1 +638474.48463007|220543.34360735|128.24878184|19165|1 +638479.54998979|220538.73901803|127.91106224|19166|1 +638484.56022636|220534.18203676|127.39541827|19167|1 +638489.62252052|220529.57906768|126.97050382|19168|1 +638494.6875217|220524.97448848|126.60819033|19169|1 +638499.75091249|220520.37070265|126.19609373|19170|1 +638504.81468667|220515.76658033|125.78415525|19171|1 +638509.88244913|220511.16026871|125.47854539|19172|1 +638514.9503741|220506.55382522|125.17312156|19173|1 +638520.0580507|220501.90769889|124.59716487|19174|1 +638525.12436671|220497.30163685|124.21097371|19175|1 +638530.18958207|220492.69582572|123.76872076|19176|1 +638535.25262059|220488.09056663|123.22043685|19177|1 +638540.36661849|220483.44017266|122.75187846|19178|1 +638545.43503708|220478.83198244|122.34771628|19179|1 +638550.55472251|220474.17887719|122.06103553|19180|1 +638555.62489377|220469.56945314|121.682323|19181|1 +638560.69548244|220464.959482|121.29128562|19182|1 +638565.81369307|220460.30556657|120.84315394|19183|1 +638570.93252189|220455.65084944|120.37666985|19184|1 +638576.00562146|220451.03863042|119.98639522|19185|1 +638581.07967157|220446.42538492|119.58379573|19186|1 +638586.20596507|220441.7681204|119.43079081|19187|1 +638591.28464219|220437.15413838|119.28490175|19188|1 +638596.40994436|220432.49578011|118.98265913|19189|1 +638601.53621323|220427.83688754|118.70584757|19190|1 +638606.61560518|220423.22119315|118.47954465|19191|1 +638611.74437105|220418.56249309|118.38473164|19192|1 +638616.87329589|220413.90332443|118.26535264|19193|1 +638621.95460847|220409.28725703|118.13987168|19194|1 +638627.08403368|220404.62563787|117.87128289|19195|1 +638632.16194985|220400.0123317|117.72129174|19196|1 +638637.24450871|220395.3943162|117.53404698|19197|1 +638642.37563222|220390.73303644|117.40401745|19198|1 +638647.50753814|220386.07030338|117.21821447|19199|1 +638652.5911043|220381.45450935|117.26304903|19200|1 +638657.72356674|220376.79280244|117.19050447|19201|1 +638662.85584246|220372.13253043|117.21214041|19202|1 +638667.94066455|220367.51495365|117.20786159|19203|1 +638673.07557138|220362.84980424|117.04284807|19204|1 +638678.16330417|220358.22750882|116.88294124|19205|1 +638683.25210471|220353.60408563|116.71077466|19206|1 +638688.38769665|220348.94027138|116.69063631|19207|1 +638693.52845834|220344.26792649|116.38362188|19208|1 +638698.61659498|220339.64798535|116.42481014|19209|1 +638703.75392468|220334.98296799|116.43097722|19210|1 +638708.84713177|220330.35575955|116.27290283|19211|1 +638713.94158137|220325.72735316|116.1088381|19212|1 +638719.08334996|220321.05716869|116.02882422|19213|1 +638724.17536315|220316.43359018|116.05899918|19214|1 +638729.26248862|220311.81738315|116.30796123|19215|1 +638734.4019538|220307.1516675|116.40401137|19216|1 +638739.49788845|220302.52355433|116.3601535|19217|1 +638744.55236809|220297.93048639|116.12613941|19218|1 +638749.70946044|220293.24227927|115.7365345|19219|1 +638754.76534097|220288.64878057|115.571614|19220|1 +638759.87373841|220284.00656901|115.3542687|19221|1 +638765.00546533|220279.33490826|114.51955519|19222|1 +638770.09180402|220274.70462174|113.70027332|19223|1 +638775.22264949|220270.03646212|113.06606891|19224|1 +638780.33896696|220265.38743431|112.87520576|19225|1 +638785.3524783|220260.83429753|112.8822565|19226|1 +638790.43628667|220256.22615057|113.54002232|19227|1 +638795.50175134|220251.62520964|113.49525287|19228|1 +638800.57750699|220247.01226112|113.25110914|19229|1 +638805.72884521|220242.32338526|112.45698859|19230|1 +638810.75765825|220237.75396095|112.28349185|19231|1 +638815.82630901|220233.15123571|112.32047572|19232|1 +638820.906875|220228.53486823|112.14575115|19233|1 +638825.94671224|220223.9539499|111.86023312|19234|1 +638831.0279415|220219.33782796|111.74815602|19235|1 +638836.06084711|220214.76596015|111.66832817|19236|1 +638841.14147981|220210.15139328|111.6313071|19237|1 +638846.15794121|220205.59913397|111.90025866|19238|1 +638851.12317621|220201.0941788|112.2318949|19239|1 +638856.19678003|220196.48849837|112.38183023|19240|1 +638861.17585863|220191.96831328|112.51386895|19241|1 +638866.21401732|220187.39253309|112.49611186|19242|1 +638871.26106619|220182.80719346|112.36639859|19243|1 +638876.21848683|220178.30204824|112.15575986|19244|1 +638881.28511322|220173.69586265|111.79585553|19245|1 +638886.30557335|220169.13162728|111.44205316|19246|1 +638891.32149088|220164.57294224|111.19387246|19247|1 +638896.34254649|220160.00908963|110.90834513|19248|1 +638901.31412369|220155.49077194|110.67181956|19249|1 +638906.31542604|220150.94943247|110.72782556|19250|1 +638911.2995701|220146.41829779|110.38518532|19251|1 +638916.30832281|220141.86961879|110.39737995|19252|1 +638921.23576407|220137.39222259|110.22710163|19253|1 +638926.20549137|220132.87799885|110.1693376|19254|1 +638931.20275083|220128.34274244|110.40440279|19255|1 +638936.11232249|220123.88563962|110.53702752|19256|1 +638941.06766535|220119.38779254|110.72651401|19257|1 +638945.98019012|220114.92807823|110.86428262|19258|1 +638950.87973303|220110.48247058|111.17514799|19259|1 +638955.84592455|220105.97385981|111.295113|19260|1 +638960.76539816|220101.50758581|111.41271535|19261|1 +638965.69842447|220097.02726334|111.39963706|19262|1 +638970.65003344|220092.52767432|111.20641126|19263|1 +638975.51257233|220088.11515348|111.48123224|19264|1 +638980.46232079|220083.61824417|111.36140676|19265|1 +638985.34560355|220079.18448066|111.45528959|19266|1 +638990.27736689|220074.70712131|111.57604525|19267|1 +638995.19199412|220070.2411816|111.39018645|19268|1 +639000.13695384|220065.74398236|110.92537668|19269|1 +639005.14112021|220061.18560709|109.90345562|19270|1 +639010.15107349|220056.62190213|108.87530237|19271|1 +639015.07314723|220052.14366658|108.27652842|19272|1 +639019.99813125|220047.66931917|108.16292582|19273|1 +639024.88110216|220043.23251588|108.00818147|19274|1 +639029.80342714|220038.76165171|107.97386722|19275|1 +639034.60294674|220034.40553424|108.19081255|19276|1 +639039.50962201|220029.95142543|108.34669172|19277|1 +639044.35565087|220025.5479601|108.1790458|19278|1 +639047.04288264|220020.47319847|108.25227869|19279|1 +639042.06177347|220024.98612856|108.23188919|19280|1 +639036.37377469|220030.22706356|114.74468608|19281|1 +639036.84261054|220029.74444123|110.42819674|19282|2 +639032.08010132|220034.02691793|107.9889826|19283|1 +639027.10357947|220038.5360776|107.99887039|19284|1 +639022.08096279|220043.08697505|108.00493515|19285|1 +639017.04126884|220047.65590549|108.2026258|19286|1 +639012.01294432|220052.21345245|108.31998632|19287|1 +639006.93407792|220056.82390869|108.96926892|19288|1 +639001.80981156|220061.48220232|110.11994517|19289|1 +638996.66542271|220066.15556807|111.03298894|19290|1 +638991.66525535|220070.69247853|111.51902536|19291|1 +638986.61560653|220075.26798593|111.53513603|19292|1 +638981.58474587|220079.82414151|111.37793601|19293|1 +638976.53416601|220084.40130971|111.45613605|19294|1 +638971.5245862|220088.93568815|111.11311444|19295|1 +638966.50732878|220093.48564031|111.41675233|19296|1 +638961.41012334|220098.10586417|111.55491161|19297|1 +638956.39611897|220102.64580937|111.32958538|19298|1 +638951.37158348|220107.19719553|111.24680887|19299|1 +638946.36739048|220111.72724491|110.94688239|19300|1 +638941.31340656|220116.30281774|110.6761914|19301|1 +638936.25432847|220120.88408274|110.48626773|19302|1 +638931.23906973|220125.4267107|110.37854385|19303|1 +638926.18878331|220129.9990882|110.12043816|19304|1 +638921.1572396|220134.55985954|110.26719229|19305|1 +638916.07576942|220139.16654038|110.4625668|19306|1 +638911.01220352|220143.75425662|110.4531627|19307|1 +638905.98916327|220148.30705961|110.58138769|19308|1 +638900.8798041|220152.93652349|110.59010346|19309|1 +638895.80605082|220157.53652992|110.81106715|19310|1 +638890.73092523|220162.13852316|111.08816707|19311|1 +638885.6588477|220166.73766774|111.35923944|19312|1 +638880.58851489|220171.33539164|111.64291572|19313|1 +638875.46599324|220175.9812097|112.01999113|19314|1 +638870.40194794|220180.57142612|112.27926885|19315|1 +638865.29887325|220185.19553497|112.42682292|19316|1 +638860.25476751|220189.76435086|112.43748276|19317|1 +638855.21646552|220194.32699145|112.37970013|19318|1 +638850.14611963|220198.91528742|112.06716974|19319|1 +638845.07335258|220203.5065214|111.81081278|19320|1 +638840.05165888|220208.05102357|111.52269956|19321|1 +638834.96502601|220212.65863213|111.55301405|19322|1 +638829.88099366|220217.2636349|111.56484591|19323|1 +638824.79205215|220221.87474476|111.701489|19324|1 +638819.69742336|220226.49299947|111.9879093|19325|1 +638814.65703746|220231.06105833|112.19843641|19326|1 +638809.53428591|220235.70034388|112.15014159|19327|1 +638804.50548182|220240.25557406|112.18628829|19328|1 +638799.40010995|220244.88903522|112.88494472|19329|1 +638794.25229766|220249.56016421|113.52340935|19330|1 +638789.17890727|220254.1564952|113.6116739|19331|1 +638784.13007681|220258.72300261|113.13251149|19332|1 +638779.07229456|220263.30060983|112.87792187|19333|1 +638774.00075373|220267.89566537|112.99766364|19334|1 +638768.92060612|220272.50217696|113.39205896|19335|1 +638763.77960736|220277.1694522|114.20726665|19336|1 +638758.69543844|220281.78309387|114.86425112|19337|1 +638753.56664522|220286.43689223|115.49930199|19338|1 +638748.50726682|220291.01983159|115.53891826|19339|1 +638743.44132044|220295.61212727|115.83451941|19340|1 +638738.33155178|220300.24294508|116.03977241|19341|1 +638733.27631323|220304.82186851|116.06099907|19342|1 +638728.17588272|220309.44072718|116.00451868|19343|1 +638723.12838507|220314.00930455|115.77617867|19344|1 +638718.07688587|220318.58391462|115.72894425|19345|1 +638712.97636113|220323.20393126|115.75418927|19346|1 +638707.87295934|220327.82896191|115.96082824|19347|1 +638702.81893819|220332.40917185|116.16372788|19348|1 +638697.71940637|220337.02961207|116.28961813|19349|1 +638692.62274216|220341.64587174|116.29707815|19350|1 +638687.52363724|220346.26708243|116.51093529|19351|1 +638682.42783288|220350.88314093|116.56262526|19352|1 +638677.38060644|220355.4552615|116.62244499|19353|1 +638672.2849461|220360.07259731|116.78071471|19354|1 +638667.19056102|220364.68819034|116.89549863|19355|1 +638662.14513734|220369.25899418|116.98054478|19356|1 +638657.00489291|220373.91456597|116.97580087|19357|1 +638651.91255531|220378.5278038|117.05378696|19358|1 +638646.86881337|220383.0966565|117.1079233|19359|1 +638641.77734192|220387.70959924|117.22373042|19360|1 +638636.68643278|220392.32186379|117.32726849|19361|1 +638631.59601311|220396.93401497|117.45602368|19362|1 +638626.51026107|220401.54184966|117.57877922|19363|1 +638621.420604|220406.1541333|117.77045163|19364|1 +638616.331513|220410.76573815|117.94983639|19365|1 +638611.24391807|220415.3781458|118.29192782|19366|1 +638606.15652202|220419.98895759|118.5279883|19367|1 +638601.06954675|220424.59905013|118.73926885|19368|1 +638595.9834809|220429.20881748|118.9882495|19369|1 +638590.89731222|220433.8178444|119.17493615|19370|1 +638585.81170002|220438.42653069|119.37432903|19371|1 +638580.72718582|220443.03488112|119.6239236|19372|1 +638575.69285662|220447.59922049|119.98542784|19373|1 +638570.56455136|220452.24935733|120.39239916|19374|1 +638565.48540212|220456.85516608|120.81753685|19375|1 +638560.4556636|220461.41657432|121.27297973|19376|1 +638555.37866626|220466.02067425|121.71710235|19377|1 +638550.30058408|220470.62459152|122.07393709|19378|1 +638545.26834084|220475.18543355|122.31700181|19379|1 +638540.1466171|220479.8306719|122.80687987|19380|1 +638535.07055578|220484.43291779|123.1767557|19381|1 +638530.05034974|220488.98806487|123.81357392|19382|1 +638524.97565568|220493.58906078|124.1836637|19383|1 +638519.90179244|220498.18946383|124.5664225|19384|1 +638514.83315885|220502.78711908|125.09925616|19385|1 +638509.76058248|220507.38643552|125.48859131|19386|1 +638504.73064811|220511.94489895|125.71329432|19387|1 +638499.65905958|220516.54347577|126.11536361|19388|1 +638494.58775885|220521.1413152|126.51760033|19389|1 +638489.56325071|220525.69529195|126.88598788|19390|1 +638484.49311475|220530.29133459|127.30716301|19391|1 +638479.47500237|220534.84141503|127.81912348|19392|1 +638469.37486658|220543.99422862|128.44660272|19393|1 +638464.34547559|220548.55094786|128.69009532|19394|1 +638459.33762111|220553.10793278|130.42228143|19395|1 +638454.24215103|220557.70595602|129.26799608|19396|1 +638449.22486661|220562.2551681|129.77357554|19397|1 +638444.18021511|220566.82196683|129.73633123|19398|1 +638439.27084802|220571.30078762|132.30650507|19399|1 +638434.28993591|220575.82529432|133.43538726|19400|1 +638429.23501738|220580.39856128|133.1858392|19401|1 +638424.01668688|220585.08190769|130.07430197|19402|1 +638418.97318979|220589.64921051|130.15577623|19403|1 +638413.9301154|220594.21645296|130.26224436|19404|1 +638408.92174103|220598.74952513|130.16461292|19405|1 +638403.92411048|220603.2754945|130.26629064|19406|1 +638398.84924239|220607.86558022|129.92407828|19407|1 +638394.39209033|220612.01341809|138.43685012|19408|1 +638393.81097315|220612.42058928|129.43993942|19409|2 +638389.51437766|220616.46302273|140.97174232|19410|1 +638388.75176478|220617.00061367|129.40953191|19411|2 +638384.63475759|220620.90342103|142.68474816|19412|1 +638384.20920544|220621.20513159|136.36260048|19413|2 +638378.8029129|220626.02202523|130.48423126|19414|1 +638373.66574842|220630.64936084|128.69856924|19415|1 +638368.66290123|220635.1721597|128.20896093|19416|1 +638363.58147068|220639.76998437|128.00461021|19417|1 +638358.57409809|220644.29703861|127.52735466|19418|1 +638353.53054401|220648.85953203|127.24886878|19419|1 +638348.49218935|220653.41862704|127.06998632|19420|1 +638343.54434669|220657.89500325|126.84135796|19421|1 +638338.63694196|220662.35804155|128.36649582|19422|1 +638334.33749795|220666.36163735|136.78715216|19423|1 +638329.81088308|220670.53101894|142.1890937|19424|1 +638329.11967779|220671.0457491|133.7770043|19425|2 +638328.44992755|220671.544502|125.62605296|19426|3 +638324.87734138|220675.00246701|142.5660854|19427|1 +638323.93353891|220675.70776318|131.26502237|19428|2 +638323.47201953|220676.05265297|125.7388184|19429|3 +638319.89968326|220679.50711977|142.43305139|19430|1 +638318.4782959|220680.57290093|125.68353794|19431|2 +638313.58054544|220685.02125735|126.76520431|19432|1 +638308.61949542|220689.50987172|126.55942111|19433|1 +638305.51965258|220692.59732024|147.86440515|19434|1 +638303.74119753|220693.94346438|127.8574282|19435|2 +638298.66278152|220698.52160395|126.3839431|19436|1 +638294.8854733|220702.11008642|139.18498269|19437|1 +638294.0469156|220702.74846395|130.0268164|19438|2 +638293.48863404|220703.17347274|123.92966009|19439|3 +638290.80882779|220705.92246478|148.41719112|19440|1 +638288.52280675|220707.667542|123.81008575|19441|2 +638284.32310802|220711.57554654|131.8453509|19442|1 +638283.5873328|220712.13870804|124.03776534|19443|2 +638280.78948868|220714.96971487|146.64656077|19444|1 +638278.60171165|220716.64855555|123.75620056|19445|2 +638276.1960859|220719.17401873|150.12550887|19446|1 +638271.05817402|220723.79071233|147.49770122|19447|1 +638264.39955286|220729.59051925|130.17597039|19448|1 +638263.76414625|220730.08166537|123.7951564|19449|2 +638260.53366025|220733.22671801|140.52841035|19450|1 +638259.68473696|220733.88439465|132.1155675|19451|2 +638258.85583071|220734.5265637|123.90109434|19452|3 +638256.18304952|220737.2359736|145.89231693|19453|1 +638255.37384521|220737.86426312|137.97721214|19454|2 +638253.92145558|220738.9919402|123.77095318|19455|3 +638254.99018151|220734.69816904|123.96278372|19456|1 +638261.90113529|220728.68392624|142.90700481|19457|1 +638259.99005832|220730.16246219|123.84106067|19458|2 +638266.9759776|220724.10708818|144.80242779|19459|1 +638272.26223536|220719.35525307|147.94772116|19460|1 +638277.11849233|220714.941866|147.23666547|19461|1 +638274.84284094|220716.68990919|123.58549436|19462|2 +638279.88970398|220712.11928655|124.04005357|19463|1 +638285.58737622|220707.05181101|131.49006955|19464|1 +638284.87225359|220707.59828978|123.84297684|19465|2 +638290.40022736|220702.66185572|129.58087994|19466|1 +638289.88067293|220703.05780865|123.94369647|19467|2 +638295.28656475|220698.21560723|128.44695619|19468|1 +638302.0222678|220692.37498097|148.51115767|19469|1 +638306.73119487|220688.05948545|145.11801846|19470|1 +638305.18368576|220689.22863408|127.5563297|19471|2 +638310.53861111|220684.42927043|131.80778102|19472|1 +638309.92938638|220684.88811995|124.78669786|19473|2 +638315.26129639|220680.09911823|128.24834466|19474|1 +638321.8190852|220674.39466871|146.43022936|19475|1 +638320.07049501|220675.70301787|125.62613668|19476|2 +638326.00976503|220670.47120907|137.19035627|19477|1 +638325.0616484|220671.17818796|125.72639122|19478|2 +638331.35544677|220665.67794812|141.27179902|19479|1 +638335.52178413|220661.76783465|131.37415081|19480|1 +638340.21001138|220657.45235555|126.56700206|19481|1 +638345.26590028|220652.8732352|126.99669762|19482|1 +638350.2966896|220648.31298112|127.13404765|19483|1 +638355.53281295|220643.60357979|130.05330786|19484|1 +638360.38806076|220639.17200694|127.90050473|19485|1 +638365.41383994|220634.61662787|128.06281142|19486|1 +638370.49415318|220630.01373785|128.34409714|19487|1 +638375.56045289|220625.43099188|129.15418885|19488|1 +638380.63326477|220620.83491403|129.40476941|19489|1 +638391.50029584|220611.1375822|141.10232066|19490|1 +638391.0040379|220611.48602857|133.47024101|19491|2 +638390.74881914|220611.66522983|129.54517972|19492|3 +638395.81680624|220607.07378957|129.81498705|19493|1 +638400.83174219|220602.52984129|130.03995051|19494|1 +638405.89286964|220597.94404795|130.26633714|19495|1 +638410.92714737|220593.37704997|130.07520424|19496|1 +638415.98602959|220588.79354932|130.32051069|19497|1 +638421.06700818|220584.18442267|130.14380484|19498|1 +638426.11220977|220579.61084941|130.20233162|19499|1 +638431.38414127|220574.88772867|134.47700018|19500|1 +638436.36734456|220570.34481261|132.61097081|19501|1 +638441.52428196|220565.70068904|134.98443069|19502|1 +638441.25320158|220565.87636231|129.7068911|19503|2 +638446.45564671|220561.19044857|132.0390976|19504|1 +638451.41492141|220556.66062665|129.52391586|19505|1 +638456.44335645|220552.09938104|129.36455783|19506|1 +638461.56998739|220547.46382678|130.31263209|19507|1 +638466.5713726|220542.90553885|128.52737934|19508|1 +638471.60048306|220538.34419133|128.40558188|19509|1 +638476.66536778|220533.74673926|128.00601478|19510|1 +638481.73096749|220529.14881123|127.61910739|19511|1 +638486.79117293|220524.55387386|127.088748|19512|1 +638496.92621906|220515.3553914|126.37813879|19513|1 +638501.99384746|220510.75598156|126.01682989|19514|1 +638507.06196323|220506.15621919|125.66192991|19515|1 +638512.13519405|220501.55381389|125.45709549|19516|1 +638517.24660432|220496.91264237|124.93800986|19517|1 +638522.31260736|220492.31340849|124.47751612|19518|1 +638527.37982364|220487.71332975|124.03590498|19519|1 +638532.44704453|220483.11292221|123.5694674|19520|1 +638537.5144056|220478.5120621|123.07818478|19521|1 +638542.5830919|220473.91025664|122.60578476|19522|1 +638547.65672078|220469.30637815|122.31474148|19523|1 +638552.77641813|220464.65932738|121.9163743|19524|1 +638557.8502799|220460.05475477|121.58829135|19525|1 +638562.92079764|220455.45040684|121.04792325|19526|1 +638568.04224918|220450.80129576|120.61302799|19527|1 +638573.07040966|220446.23817693|120.28635891|19528|1 +638578.19364912|220441.58721447|119.83329728|19529|1 +638583.31999606|220436.93542929|119.53062678|19530|1 +638588.35152461|220432.37010252|119.26672608|19531|1 +638593.48034417|220427.71758257|119.07715588|19532|1 +638598.56157217|220423.10812726|118.8819488|19533|1 +638603.6428145|220418.4978374|118.62443842|19534|1 +638608.77332541|220413.84422381|118.46716399|19535|1 +638613.85650945|220409.23409176|118.35389625|19536|1 +638618.93974326|220404.62268059|118.14708056|19537|1 +638624.07152897|220399.96669619|117.89712322|19538|1 +638629.15168116|220395.35784428|117.67202023|19539|1 +638634.23664369|220390.74480493|117.45966068|19540|1 +638639.37075671|220386.08491999|117.07330209|19541|1 +638644.45742019|220381.4707666|116.8927174|19542|1 +638649.54390639|220376.85926075|116.89981466|19543|1 +638654.63066324|220372.24751578|116.90710725|19544|1 +638659.71859067|220367.63322887|116.8021367|19545|1 +638664.80727843|220363.01809421|116.68488781|19546|1 +638669.9440348|220358.36024371|116.63182118|19547|1 +638674.98675847|220353.78601927|116.45729195|19548|1 +638680.0773556|220349.16950458|116.36570666|19549|1 +638685.21443842|220344.51295184|116.43236319|19550|1 +638690.25953444|220339.93667553|116.26441031|19551|1 +638695.35366425|220335.31598869|116.09855964|19552|1 +638700.4504827|220330.69171669|115.84550481|19553|1 +638705.49885191|220326.11248821|115.67783099|19554|1 +638710.59743709|220321.48712355|115.4626716|19555|1 +638715.6941873|220316.86524466|115.3851692|19556|1 +638720.74099341|220312.29017173|115.42386459|19557|1 +638725.83155153|220307.67804128|115.65895769|19558|1 +638730.92730689|220303.05873155|115.70695485|19559|1 +638735.9775091|220298.47985209|115.68973726|19560|1 +638741.07776316|220293.85515829|115.63827053|19561|1 +638746.13394046|220289.26914308|115.49017695|19562|1 +638751.19747875|220284.67313076|115.13616995|19563|1 +638756.32917404|220280.00725906|114.22416797|19564|1 +638761.40603359|220275.39492351|113.6022512|19565|1 +638766.48289602|220270.78358496|113.05539047|19566|1 +638771.54745638|220266.1885905|112.90174372|19567|1 +638776.61060611|220261.59586696|112.82305069|19568|1 +638781.65008718|220257.0327533|113.36193051|19569|1 +638786.70233798|220252.45395158|113.58895897|19570|1 +638791.77109666|220247.85534045|113.44813007|19571|1 +638796.87235498|220243.21814462|112.61540714|19572|1 +638801.91874272|220238.63358971|112.00281075|19573|1 +638806.98843621|220234.03571147|111.98089576|19574|1 +638812.00598429|220229.48651945|112.0664628|19575|1 +638817.04025486|220224.91806259|111.84034592|19576|1 +638822.12750667|220220.30091777|111.56319019|19577|1 +638827.16294048|220215.73215678|111.39321883|19578|1 +638832.19557611|220211.16708663|111.31043302|19579|1 +638837.22129339|220206.61034306|111.38330314|19580|1 +638842.24586978|220202.05521346|111.49968696|19581|1 +638847.26300387|220197.50880316|111.76542011|19582|1 +638852.23033009|220193.00803505|112.06881615|19583|1 +638857.25299261|220188.45579641|112.27195765|19584|1 +638862.28838739|220183.88955886|112.28831947|19585|1 +638867.27931901|220179.36313314|112.26743699|19586|1 +638872.34595951|220174.7629231|111.85445672|19587|1 +638877.34882091|220170.22413227|111.71515331|19588|1 +638882.42085672|220165.61904242|111.30234048|19589|1 +638887.38931695|220161.10962951|111.02570565|19590|1 +638892.45743774|220156.50990417|110.74978705|19591|1 +638897.47205632|220151.96005982|110.57905295|19592|1 +638902.49040168|220147.40659697|110.38959436|19593|1 +638907.50149232|220142.86143271|110.33050018|19594|1 +638912.44684256|220138.37919816|110.52498172|19595|1 +638917.47192544|220133.81963508|110.33510456|19596|1 +638922.45970223|220129.29240222|110.03219221|19597|1 +638927.41123394|220124.80448122|110.21947417|19598|1 +638932.34858909|220120.33989765|111.20222546|19599|1 +638937.38153992|220115.7655058|110.42689449|19600|1 +638942.33401121|220111.27738749|110.66277823|19601|1 +638947.27220939|220106.80465587|111.08433474|19602|1 +638952.23026159|220102.31106787|111.28839711|19603|1 +638957.09784168|220097.90598436|111.98602104|19604|1 +638962.13155755|220093.33303489|111.37100619|19605|1 +638967.02253714|220088.89658285|111.29675011|19606|1 +638972.02702201|220084.35535758|111.07797233|19607|1 +638976.93733075|220079.90631031|111.3768384|19608|1 +638981.89307613|220075.40995978|111.21070868|19609|1 +638986.81729582|220070.94691285|111.40330196|19610|1 +638991.74518836|220066.47364945|111.0726052|19611|1 +638996.74704074|220061.93045839|110.52168889|19612|1 +639001.77808732|220057.35099309|109.22521659|19613|1 +639006.77689337|220052.80572471|108.30605226|19614|1 +639011.69646446|220048.3431016|108.20913705|19615|1 +639016.67664172|220043.82445329|108.02865468|19616|1 +639021.56227724|220039.39139641|107.8407588|19617|1 +639026.46568722|220034.94650576|107.97718795|19618|1 +639031.33484942|220030.53712327|108.45275057|19619|1 +639035.4610994|220026.88505327|115.30852256|19620|1 +639041.0976751|220021.68196686|108.32552087|19621|1 +639046.02162835|220017.2113187|107.91836352|19622|1 +639046.79847527|220013.07450451|107.76600972|19623|1 +639041.82807501|220017.57704407|108.05769483|19624|1 +639036.13400793|220022.82341427|114.99261563|19625|1 +639031.06038439|220027.42804837|115.93016028|19626|1 +639026.92077228|220031.0709888|108.16988355|19627|1 +639021.97514216|220035.54338937|107.88210519|19628|1 +639017.01020944|220040.03598368|107.79786831|19629|1 +639012.01784392|220044.55728512|108.00391196|19630|1 +639006.98234095|220049.11729971|108.18173401|19631|1 +639001.99686029|220053.6322765|108.38132223|19632|1 +638996.85509164|220058.30368238|109.6975329|19633|1 +638991.74587257|220062.94198627|110.74201077|19634|1 +638986.69961438|220067.5152878|111.18641244|19635|1 +638981.66048477|220072.07478597|111.07713517|19636|1 +638976.65433114|220076.60698136|111.16246036|19637|1 +638971.63346444|220081.1479551|110.90447559|19638|1 +638966.57332373|220085.73051758|111.0987897|19639|1 +638961.51276041|220090.31395778|111.33041324|19640|1 +638956.48077886|220094.86763323|111.27080745|19641|1 +638951.4477329|220099.42276974|111.24839947|19642|1 +638946.33707122|220104.05306703|111.59006302|19643|1 +638941.39164339|220108.51573137|110.58147141|19644|1 +638936.33719288|220113.08678717|110.29677194|19645|1 +638931.27511394|220117.66623422|110.12387052|19646|1 +638926.21424708|220122.24467019|109.957285|19647|1 +638921.14874044|220126.82838208|109.87153193|19648|1 +638916.03678451|220131.46249887|110.41312786|19649|1 +638910.96972406|220136.04869417|110.40849557|19650|1 +638905.88517539|220140.64553855|110.0117283|19651|1 +638900.79895005|220145.25322359|110.31810091|19652|1 +638895.67094823|220149.89801556|110.56813266|19653|1 +638890.61029139|220154.47874737|110.58911747|19654|1 +638885.48891706|220159.11721661|110.8149832|19655|1 +638880.36123511|220163.76313823|111.17184585|19656|1 +638875.23761027|220168.40514177|111.51047702|19657|1 +638870.12369022|220173.03872965|111.74994196|19658|1 +638865.00943956|220177.674523|112.03950626|19659|1 +638859.95585537|220182.25328014|112.17365648|19660|1 +638854.82209176|220186.90148658|112.06582098|19661|1 +638849.74483899|220191.49699658|111.84591769|19662|1 +638844.67584466|220196.08337632|111.50167754|19663|1 +638839.56504631|220200.70624634|111.05239244|19664|1 +638834.42543965|220205.36224131|111.1328063|19665|1 +638829.34643404|220209.96075342|111.01966879|19666|1 +638824.20519208|220214.61947779|111.19433755|19667|1 +638819.0687797|220219.27308673|111.31341889|19668|1 +638813.91839269|220223.94357824|111.75076982|19669|1 +638808.78745826|220228.59182285|111.83964829|19670|1 +638803.71413734|220233.18569656|111.7653271|19671|1 +638798.59016956|220237.82647856|111.76763394|19672|1 +638793.3908446|220242.54408239|112.41432134|19673|1 +638788.2857069|220247.17803069|113.18892677|19674|1 +638783.10427492|220251.87571791|113.55630973|19675|1 +638777.98910601|220256.50813592|113.52926947|19676|1 +638772.90199973|220261.10587831|112.80392624|19677|1 +638767.73881113|220265.78217924|112.80486572|19678|1 +638762.61655682|220270.42449901|113.04095411|19679|1 +638757.50011158|220275.05999079|113.15886343|19680|1 +638752.32190481|220279.7574389|113.72921115|19681|1 +638747.18940767|220284.41558295|114.45961454|19682|1 +638742.06291237|220289.06697048|115.09060054|19683|1 +638736.89953198|220293.74786054|115.4255017|19684|1 +638731.79823445|220298.36667337|115.32073579|19685|1 +638726.69555609|220302.98773225|115.29116545|19686|1 +638721.54682874|220307.64982576|115.20917959|19687|1 +638716.44657239|220312.26811765|115.13656062|19688|1 +638711.34399197|220316.89025554|115.19535715|19689|1 +638706.19297572|220321.55708303|115.3144943|19690|1 +638701.0906607|220326.18006063|115.45515576|19691|1 +638695.93823354|220330.85073904|115.76883957|19692|1 +638690.83801167|220335.47199404|115.92266305|19693|1 +638685.73776004|220340.09418774|116.1454871|19694|1 +638680.5935776|220344.75335869|116.1543889|19695|1 +638675.44793787|220349.41600617|116.32620201|19696|1 +638670.35313684|220354.03038101|116.3313645|19697|1 +638665.25741185|220358.647493|116.48047197|19698|1 +638660.1156362|220363.30450432|116.4910574|19699|1 +638655.02237297|220367.91741046|116.49078764|19700|1 +638649.92941844|220372.53012031|116.49700123|19701|1 +638644.78796059|220377.18941867|116.70246817|19702|1 +638639.69484059|220381.80740893|117.09669606|19703|1 +638634.55509741|220386.46714375|117.4529727|19704|1 +638629.46454233|220391.08058457|117.67906168|19705|1 +638624.37477074|220395.69323482|117.8991231|19706|1 +638619.28952142|220400.30154159|118.1006833|19707|1 +638614.15266777|220404.95652733|118.29594619|19708|1 +638609.0639928|220409.56686798|118.41677626|19709|1 +638603.97572758|220414.1769236|118.54406177|19710|1 +638598.88811952|220418.78688128|118.70906598|19711|1 +638593.80201002|220423.39696943|118.98676122|19712|1 +638588.71583461|220428.00620908|119.19591166|19713|1 +638583.58278244|220432.65859832|119.45578469|19714|1 +638578.5468335|220437.22356066|119.75858542|19715|1 +638573.46461317|220441.83136812|120.13083321|19716|1 +638568.3845625|220446.43803798|120.56575637|19717|1 +638563.30543869|220451.04378658|120.99461477|19718|1 +638558.22757334|220455.64864361|121.44241159|19719|1 +638553.19828955|220460.20929522|121.87666502|19720|1 +638548.120415|220464.81308843|122.24347127|19721|1 +638543.04229114|220469.41661374|122.5729681|19722|1 +638538.01518558|220473.97529032|123.00727734|19723|1 +638532.93960876|220478.57725101|123.39324525|19724|1 +638527.92020515|220483.13199611|124.05869433|19725|1 +638522.89400894|220487.68918379|124.44294142|19726|1 +638517.82174363|220492.28872084|124.87290673|19727|1 +638512.8026661|220496.84201145|125.45076098|19728|1 +638507.77058389|220501.40147583|125.60384032|19729|1 +638502.69595983|220506.00166644|125.92166342|19730|1 +638497.67248862|220510.5566253|126.32456056|19731|1 +638492.6466237|220515.11276221|126.65246678|19732|1 +638487.62228132|220519.66900392|127.01154326|19733|1 +638482.6453604|220524.18273002|127.3489652|19734|1 +638477.62888873|220528.73496533|127.88887751|19735|1 +638472.60614988|220533.29073406|128.2663994|19736|1 +638467.57999826|220537.84852131|128.5627261|19737|1 +638462.54894176|220542.40935001|128.75291952|19738|1 +638457.7368787|220546.82041294|132.63402992|19739|1 +638452.54254174|220551.48301801|129.32310911|19740|1 +638447.51308888|220556.04312532|129.56928992|19741|1 +638442.69860325|220560.43958959|132.17847542|19742|1 +638437.96796339|220564.80424178|138.13807706|19743|1 +638437.52463245|220565.09330037|129.59209788|19744|2 +638432.57162063|220569.59163971|130.40782647|19745|1 +638427.6767278|220574.06268055|133.14820421|19746|1 +638422.51348173|220578.70087566|130.12185265|19747|1 +638417.56514644|220583.18487401|130.17173808|19748|1 +638412.52048277|220587.75635731|130.23651565|19749|1 +638407.51763398|220592.28881858|130.21567967|19750|1 +638402.56235443|220596.77835351|130.20863822|19751|1 +638397.54347143|220601.32254384|129.97553571|19752|1 +638392.56998121|220605.82545059|129.73112223|19753|1 +638387.5531554|220610.3690025|129.59124212|19754|1 +638382.96142111|220614.61160219|135.84856572|19755|1 +638382.53118112|220614.91656105|129.40145797|19756|2 +638378.34319854|220618.86078359|140.78444175|19757|1 +638377.61522212|220619.37962528|130.0906731|19758|2 +638372.49271249|220623.9997457|128.49321392|19759|1 +638367.55430326|220628.47044313|128.21739765|19760|1 +638362.52471641|220633.02513618|128.0459194|19761|1 +638357.52669695|220637.54860475|127.67566219|19762|1 +638352.5181487|220642.08021902|127.19945774|19763|1 +638347.52609369|220646.60024312|126.9782429|19764|1 +638342.53994807|220651.11630038|126.86260321|19765|1 +638337.53067882|220655.64978716|126.47928631|19766|1 +638332.5878992|220660.12645471|126.35687493|19767|1 +638327.56173919|220664.67335993|125.83019905|19768|1 +638324.36726549|220667.84414393|146.86892904|19769|1 +638322.60903253|220669.15819474|125.64498208|19770|2 +638318.08720218|220673.32027305|130.60589849|19771|1 +638317.63306422|220673.66083139|125.21076585|19772|2 +638314.60083748|220676.70895231|148.10585136|19773|1 +638308.03702343|220682.4061935|129.10168962|19774|1 +638307.65656245|220682.69334791|124.72137149|19775|2 +638303.03569684|220686.92843197|128.41123736|19776|1 +638299.63250647|220690.23776259|145.61390546|19777|1 +638297.89490361|220691.5571217|126.20520947|19778|2 +638292.81343697|220696.14177747|124.73862628|19779|1 +638288.35712792|220700.2430084|129.59103748|19780|1 +638287.81399602|220700.65772364|123.69938531|19781|2 +638283.33429398|220704.78324608|128.78764305|19782|1 +638282.8542199|220705.15079796|123.65446704|19783|2 +638273.47713271|220713.71375686|128.76755121|19784|1 +638272.97047005|220714.10364998|123.50004825|19785|2 +638270.05626361|220717.0131144|144.00303312|19786|1 +638268.04991216|220718.56081879|123.4275595|19787|2 +638263.6038741|220722.65138392|128.17948361|19788|1 +638263.16315348|220722.99215944|123.72048174|19789|2 +638258.26998101|220727.42864869|123.96313718|19790|1 +638253.32927677|220731.90225461|123.75265659|19791|1 +638252.79339947|220729.4964441|142.50043346|19792|1 +638257.74833088|220725.01124994|143.14060962|19793|1 +638256.64090348|220725.87033666|132.11702788|19794|2 +638255.8025452|220726.52069302|123.77185545|19795|3 +638262.32192297|220720.80892661|138.99556132|19796|1 +638260.81553697|220721.97483061|123.79595636|19797|2 +638265.76257757|220717.48671946|123.66669887|19798|1 +638271.33943567|220712.50711043|129.58444252|19799|1 +638277.89256865|220706.78651304|146.47119438|19800|1 +638275.70839919|220708.46480097|123.49862507|19801|2 +638281.23113307|220703.52946044|129.0523623|19802|1 +638280.71222075|220703.92715838|123.51590777|19803|2 +638286.35215124|220698.90360293|130.44268952|19804|1 +638285.72247012|220699.38491191|123.62622684|19805|2 +638290.7056393|220694.87062973|123.99841882|19806|1 +638300.9117436|220685.64730805|126.4609246|19807|1 +638305.93875922|220681.08700933|126.35294028|19808|1 +638312.84974202|220675.10794946|148.26846502|19809|1 +638316.29294932|220671.74936856|130.33303088|19810|1 +638320.9330743|220667.48023537|125.68756561|19811|1 +638327.23898696|220661.97509683|141.92629992|19812|1 +638326.52945163|220662.50414688|133.22760417|19813|2 +638325.89497658|220662.9772298|125.44914248|19814|3 +638331.57430846|220657.92565966|132.96500572|19815|1 +638331.03267921|220658.32803031|126.21123702|19816|2 +638336.30205041|220653.5900609|129.30644963|19817|1 +638341.12557039|220649.18248225|126.77882211|19818|1 +638346.15827927|220644.62044342|126.93206888|19819|1 +638351.20002693|220640.05217185|127.23467427|19820|1 +638356.29715392|220635.43543866|127.66843471|19821|1 +638361.65755856|220630.63725399|132.46595612|19822|1 +638366.41670926|220626.26596812|128.28098459|19823|1 +638371.50849112|220621.65408764|128.7528358|19824|1 +638377.18487284|220616.63490545|138.57890685|19825|1 +638376.5276123|220617.10387903|128.90646394|19826|2 +638381.68386277|220612.44728198|130.42522079|19827|1 +638386.68781271|220607.89925886|129.69548713|19828|1 +638391.69660024|220603.35760175|129.78690498|19829|1 +638396.80322071|220598.72798146|129.93078486|19830|1 +638401.87357345|220594.13414606|130.29795388|19831|1 +638406.90990494|220589.56420393|130.13544255|19832|1 +638412.00370958|220584.94449652|130.14925568|19833|1 +638417.04836989|220580.36937887|130.16777552|19834|1 +638422.08998513|220575.79661317|130.15519022|19835|1 +638427.16636551|220571.18943854|129.92019944|19836|1 +638432.46267865|220566.44937656|134.76048112|19837|1 +638432.20262648|220566.62070773|129.84542246|19838|2 +638437.5323109|220561.84865348|134.55136788|19839|1 +638442.50124867|220557.3130551|132.34605622|19840|1 +638447.44986868|220552.78909|129.62264491|19841|1 +638452.51937028|220548.18717942|129.31383524|19842|1 +638457.7130793|220543.50807879|131.70745206|19843|1 +638462.66092582|220538.98195711|128.76544901|19844|1 +638467.73799104|220534.37565312|128.64447011|19845|1 +638477.8675931|220525.17792625|127.84128962|19846|1 +638482.97643358|220520.53773934|127.33095696|19847|1 +638488.04319004|220515.9375209|126.96109972|19848|1 +638493.1131268|220511.33548482|126.67258652|19849|1 +638498.18222363|220506.73388252|126.35927479|19850|1 +638503.29554694|220502.09071194|125.93133726|19851|1 +638508.36934937|220497.48657029|125.74963636|19852|1 +638513.48682203|220492.84111663|125.43482704|19853|1 +638518.54873781|220488.24252337|124.85381948|19854|1 +638523.61799374|220483.64022227|124.4978498|19855|1 +638528.73223019|220478.99550795|124.01532015|19856|1 +638533.79541836|220474.39503424|123.37864146|19857|1 +638538.86707581|220469.79081034|123.04200087|19858|1 +638543.98359544|220465.14387945|122.54791841|19859|1 +638549.05713003|220460.53836928|122.24296897|19860|1 +638554.17781354|220455.88930885|121.87454421|19861|1 +638559.29709614|220451.24005247|121.39404235|19862|1 +638564.37009977|220446.63323298|120.9523661|19863|1 +638569.44404636|220442.02556434|120.51085728|19864|1 +638574.56780731|220437.37332564|120.11258312|19865|1 +638579.64482922|220432.76360929|119.72778723|19866|1 +638584.77158299|220428.10981237|119.41772182|19867|1 +638589.89963912|220423.45557641|119.16433213|19868|1 +638594.98065386|220418.84445898|118.94907042|19869|1 +638600.11059955|220414.18974627|118.79016817|19870|1 +638605.24061727|220409.53423868|118.57545527|19871|1 +638610.276181|220404.96684748|118.55459138|19872|1 +638615.40747699|220400.31141252|118.4342636|19873|1 +638620.97086802|220395.26297241|118.19926352|19874|1 +638625.61876006|220391.04337436|117.91311297|19875|1 +638630.75144686|220386.38530601|117.68773093|19876|1 +638635.83712133|220381.76877111|117.38080022|19877|1 +638640.92369718|220377.15199126|117.11782969|19878|1 +638646.05949991|220372.48997373|116.80608066|19879|1 +638651.14848134|220367.87028947|116.48743901|19880|1 +638656.23808206|220363.25102725|116.24400221|19881|1 +638661.37604746|220358.58894403|116.07713765|19882|1 +638666.46443633|220353.97478615|116.14042693|19883|1 +638671.55344573|220349.35966331|116.1727041|19884|1 +638676.64455208|220344.74092849|116.07399365|19885|1 +638681.73723948|220340.12002932|115.91930511|19886|1 +638686.82889007|220335.50170269|115.88978127|19887|1 +638691.97212881|220330.83446241|115.69394167|19888|1 +638697.02114765|220326.25205134|115.45670916|19889|1 +638702.11897192|220321.6257763|115.24681458|19890|1 +638707.21563117|220317.00202662|115.14961101|19891|1 +638712.31297498|220312.37782621|115.06516018|19892|1 +638717.36128488|220307.7990833|115.0594582|19893|1 +638722.4587317|220303.17569237|115.04411026|19894|1 +638727.50747235|220298.59713228|115.08228475|19895|1 +638732.60339307|220293.97659487|115.17970226|19896|1 +638737.72006727|220289.32836841|114.59699248|19897|1 +638742.73984544|220284.76924279|114.11421168|19898|1 +638747.8566914|220280.12266149|113.65680612|19899|1 +638752.92533922|220275.52059247|113.25863428|19900|1 +638757.99038139|220270.92391297|113.02283425|19901|1 +638763.10267496|220266.28536845|112.85955087|19902|1 +638768.11750933|220261.7360111|112.76371466|19903|1 +638773.14978507|220257.18157541|113.48888115|19904|1 +638778.2532974|220252.55490864|113.62556146|19905|1 +638783.27636476|220247.99638049|113.39860741|19906|1 +638788.38678022|220243.34744162|112.30918336|19907|1 +638793.4313296|220238.764562|111.70820489|19908|1 +638798.49793102|220234.1699914|111.74149594|19909|1 +638803.5291491|220229.60424562|111.52709|19910|1 +638808.54710906|220225.05458364|111.62426566|19911|1 +638813.57862745|220220.48937693|111.47205139|19912|1 +638818.66837521|220215.8693633|111.16287894|19913|1 +638823.70243911|220211.3021809|111.03564924|19914|1 +638828.74099888|220206.7302744|110.85857133|19915|1 +638833.71995077|220202.21547663|110.91894916|19916|1 +638838.75437478|220197.64910628|110.87870967|19917|1 +638843.71557849|220193.15502288|111.29350379|19918|1 +638848.72757454|220188.61449808|111.6763184|19919|1 +638853.74168179|220184.07173655|112.03410192|19920|1 +638858.68079035|220179.59246335|112.04991494|19921|1 +638863.72482852|220175.01680825|111.96551063|19922|1 +638868.73360639|220170.47082753|111.70693984|19923|1 +638873.74851843|220165.91855691|111.39226075|19924|1 +638878.76897934|220161.360687|111.03395632|19925|1 +638883.78192342|220156.81157932|110.82480588|19926|1 +638888.79944583|220152.25791686|110.58445728|19927|1 +638893.77357566|220147.7430758|110.30612952|19928|1 +638898.78576842|220143.19610416|110.20844227|19929|1 +638903.76632706|220138.67519006|109.91098076|19930|1 +638908.71675611|220134.18725059|110.04807034|19931|1 +638913.68874692|220129.68464685|110.55846811|19932|1 +638918.70270651|220125.12900113|109.91865473|19933|1 +638923.6739503|220120.61967806|109.86229526|19934|1 +638928.63034075|220116.12656519|110.01666754|19935|1 +638933.5823047|220111.63842813|110.24510987|19936|1 +638938.48871644|220107.19130042|110.45286505|19937|1 +638943.46559433|220102.68473242|110.99855376|19938|1 +638948.11855212|220098.50601528|114.1755848|19939|1 +638953.29768669|220093.77119917|111.27495605|19940|1 +638958.2696285|220089.26315532|111.36490422|19941|1 +638963.19942902|220084.79261726|111.40272525|19942|1 +638968.1796797|220080.26948764|110.91344251|19943|1 +638973.10311149|220075.806328|111.07432603|19944|1 +638978.10522807|220071.26801985|110.94008279|19945|1 +638982.9771689|220066.8524391|111.17169703|19946|1 +638987.95664051|220062.33178076|110.81741097|19947|1 +638992.94668578|220057.79407009|109.89062847|19948|1 +638998.00085334|220053.19692722|108.86162876|19949|1 +639002.97399958|220048.67799752|108.20067243|19950|1 +639007.89893904|220044.2094457|108.05269047|19951|1 +639012.84923081|220039.71509351|107.6878655|19952|1 +639017.72595196|220035.29699618|108.05813201|19953|1 +639021.92011272|220031.581438|114.87185997|19954|1 +639026.72613349|220027.23534143|115.85048126|19955|1 +639031.59511154|220022.8187533|115.79907034|19956|1 +639036.61018532|220018.25864032|114.89284478|19957|1 +639042.24945793|220013.05469803|107.98962443|19958|1 +639047.15568391|220008.60219584|107.77176752|19959|1 +639044.43278479|220008.30568468|107.86872924|19960|1 +639039.504203|220012.76876346|108.20656976|19961|1 +639033.7864476|220018.03463577|115.31908008|19962|1 +639028.75674046|220022.59745364|116.28394404|19963|1 +639023.93203979|220026.95035771|115.38325303|19964|1 +639019.11030586|220031.30023782|114.45687052|19965|1 +639014.82847691|220035.09397179|108.36240242|19966|1 +639009.97948142|220039.47114|107.63667782|19967|1 +639004.97286249|220044.00500881|107.98276902|19968|1 +639000.02226906|220048.48767589|108.29480641|19969|1 +638994.98943184|220053.04961582|108.97460813|19970|1 +638989.93125623|220057.6384499|109.95766638|19971|1 +638984.89128047|220062.20902103|110.80466753|19972|1 +638979.91017827|220066.71887068|111.08210232|19973|1 +638974.91778836|220071.23416963|110.99130768|19974|1 +638969.99805867|220075.68061443|110.66738261|19975|1 +638964.96283072|220080.24137533|111.09025997|19976|1 +638959.95500799|220084.77385393|111.24666004|19977|1 +638954.96965709|220089.28307129|111.17978027|19978|1 +638949.9799507|220093.7971979|111.18704496|19979|1 +638944.7258853|220098.58377339|113.73494104|19980|1 +638940.00215009|220102.81727401|110.68429324|19981|1 +638935.05458994|220107.2875632|110.25654175|19982|1 +638929.9930252|220111.86391516|110.04250788|19983|1 +638925.02436061|220116.3570945|109.90586478|19984|1 +638920.00635274|220120.89536069|109.7986339|19985|1 +638914.94675897|220125.4785475|110.25017004|19986|1 +638909.88399178|220130.05742915|110.14800863|19987|1 +638904.90091525|220134.55903467|109.65548887|19988|1 +638899.86503398|220139.11791149|109.88965179|19989|1 +638894.78225405|220143.71942696|110.13555355|19990|1 +638889.71045215|220148.30946485|110.26354599|19991|1 +638884.62578303|220152.91397806|110.60929302|19992|1 +638879.55240287|220157.50665507|110.83088924|19993|1 +638874.47689789|220162.10214419|111.12104885|19994|1 +638869.40235993|220166.69707977|111.43626745|19995|1 +638864.33499063|220171.28375021|111.68329473|19996|1 +638859.22820005|220175.90460656|111.82483986|19997|1 +638854.12619694|220180.52056447|111.92313173|19998|1 +638849.10225599|220185.05982176|111.56068801|19999|1 +638844.03342205|220189.63910941|111.14885186|20000|1 +638838.95796746|220194.22600714|110.86165952|20001|1 +638833.87985194|220198.81612997|110.63687279|20002|1 +638828.7863967|220203.42403177|110.71120328|20003|1 +638823.69599426|220208.02884742|110.76085617|20004|1 +638818.55265332|220212.68317285|110.93022291|20005|1 +638813.40560721|220217.3423221|111.21224347|20006|1 +638808.31315506|220221.950948|111.41237119|20007|1 +638803.23836936|220226.53928337|111.28236956|20008|1 +638798.05539643|220231.22915159|111.42378447|20009|1 +638792.97540878|220235.82439154|111.46264729|20010|1 +638787.83867851|220240.47397911|111.72798976|20011|1 +638782.6711181|220245.1616247|112.77330479|20012|1 +638777.52010384|220249.83031621|113.51363318|20013|1 +638772.39318821|220254.47030313|113.72428121|20014|1 +638767.25049725|220259.11408703|113.12669788|20015|1 +638762.15080939|220263.72058571|112.6581116|20016|1 +638757.02807428|220268.35638928|112.83869628|20017|1 +638751.85438689|220273.04001997|113.14716179|20018|1 +638746.73511418|220277.67262195|113.32236075|20019|1 +638741.5616811|220282.35741519|113.73803854|20020|1 +638736.44045832|220286.9940603|114.08884573|20021|1 +638731.31846955|220291.63262558|114.53366598|20022|1 +638726.1098818|220296.34600802|114.69830742|20023|1 +638720.99951619|220300.97008169|114.83812243|20024|1 +638715.89336494|220305.5887189|114.85336804|20025|1 +638710.73813582|220310.2528393|114.94751132|20026|1 +638705.58365689|220314.91645403|115.05466778|20027|1 +638700.43006759|220319.57935074|115.16859594|20028|1 +638695.27724377|220324.24172301|115.29552798|20029|1 +638690.17291274|220328.86059684|115.45629058|20030|1 +638685.02130105|220333.52253217|115.63410334|20031|1 +638679.87229502|220338.18073347|115.70622931|20032|1 +638674.72403026|220342.83826958|115.77883898|20033|1 +638669.57690774|220347.49428514|115.81446478|20034|1 +638664.42997184|220352.1506299|115.88806044|20035|1 +638659.28211426|220356.81008981|116.13707829|20036|1 +638654.13524916|220361.4688147|116.39909073|20037|1 +638648.98959377|220366.12621135|116.64285309|20038|1 +638643.84467524|220370.78367792|116.94331907|20039|1 +638638.70060873|220375.44143511|117.32551046|20040|1 +638633.50998327|220380.14055299|117.64494276|20041|1 +638628.36851255|220384.79443421|117.90947598|20042|1 +638623.2759263|220389.40370553|118.14996411|20043|1 +638617.85233231|220394.31356546|118.44431882|20044|1 +638612.9526512|220398.74696277|118.59960268|20045|1 +638607.86130321|220403.353424|118.70985663|20046|1 +638602.67449736|220408.04669464|118.8452812|20047|1 +638597.53596713|220412.69607413|118.96879018|20048|1 +638592.44630026|220417.30200055|119.15503035|20049|1 +638587.30924323|220421.95103089|119.35431161|20050|1 +638582.17390399|220426.59989267|119.66028424|20051|1 +638577.03952851|220431.24812626|119.98544644|20052|1 +638571.95449028|220435.85223239|120.35407584|20053|1 +638566.82342026|220440.49878222|120.77997628|20054|1 +638561.74090554|220445.10093436|121.17409254|20055|1 +638556.61267495|220449.74549586|121.64446477|20056|1 +638551.48418501|220454.38948527|122.05275695|20057|1 +638546.40454303|220458.98928995|122.46640694|20058|1 +638541.32537424|220463.58850116|122.86775069|20059|1 +638536.2009677|220468.22978576|123.35202908|20060|1 +638531.168452|220472.78533381|123.64595591|20061|1 +638526.04805959|220477.4242046|124.2245171|20062|1 +638520.97504395|220482.01939782|124.74535147|20063|1 +638515.95135348|220486.57012879|125.28304996|20064|1 +638510.82619208|220491.21008084|125.61260259|20065|1 +638505.74797749|220495.80698894|125.90281802|20066|1 +638500.71671583|220500.36091939|126.15961216|20067|1 +638495.6400353|220504.95692911|126.48755559|20068|1 +638490.56536606|220509.55176955|126.86562629|20069|1 +638485.53432757|220514.10550441|127.12250415|20070|1 +638480.46087662|220518.70027713|127.494538|20071|1 +638475.44048071|220523.24868066|127.98237896|20072|1 +638470.37088875|220527.84112184|128.42953396|20073|1 +638465.33970105|220532.39580994|128.64893496|20074|1 +638460.35993284|220536.90500816|128.9523403|20075|1 +638455.44804962|220541.39893534|132.80707086|20076|1 +638450.24734478|220546.05967404|129.37559903|20077|1 +638445.39525044|220550.48739919|132.30534235|20078|1 +638440.22797979|220555.129634|129.77916591|20079|1 +638435.23513945|220559.6477451|129.857152|20080|1 +638430.1942515|220564.20959513|129.95144411|20081|1 +638425.19688812|220568.73115222|129.97923781|20082|1 +638420.20085359|220573.25207221|130.05049872|20083|1 +638415.16026439|220577.8143833|130.20078753|20084|1 +638410.19915014|220582.30117474|130.0802272|20085|1 +638405.19869305|220586.82584953|130.13225204|20086|1 +638400.20582198|220591.345517|130.32745912|20087|1 +638395.22220469|220595.84886834|129.91311149|20088|1 +638390.20539918|220600.3858385|129.77141753|20089|1 +638385.46417831|220604.7189893|133.15080871|20090|1 +638380.58442318|220609.14899827|134.3299484|20091|1 +638375.64342033|220613.63163766|135.28949175|20092|1 +638375.21228078|220613.93942592|128.93036951|20093|2 +638370.25089054|220618.42903699|129.00696033|20094|1 +638365.24560564|220622.95054229|128.47924265|20095|1 +638360.64819828|220627.16828423|133.00076175|20096|1 +638355.25845028|220631.97809987|127.8653068|20097|1 +638350.28934246|220636.46618094|127.28762928|20098|1 +638345.2881137|220640.98668337|126.96455998|20099|1 +638340.33361|220645.46501565|126.65383414|20100|1 +638335.35365128|220649.97061872|126.66623341|20101|1 +638331.08080243|220653.94332946|134.94974436|20102|1 +638331.03263051|220653.97911459|134.34648695|20103|2 +638330.37908073|220654.46461228|126.16201202|20104|3 +638325.40796886|220658.95651804|125.7383347|20105|1 +638321.98746115|220662.29643509|144.72411613|20106|1 +638315.58308554|220667.85360979|126.39431458|20107|1 +638311.14658149|220671.95135736|132.89324252|20108|1 +638305.58162478|220676.89196836|125.61349556|20109|1 +638300.66677508|220681.3359529|125.42345097|20110|1 +638295.95203603|220685.63530013|128.04743559|20111|1 +638290.89254808|220690.19664454|126.80748089|20112|1 +638285.99422318|220694.62871106|126.85158061|20113|1 +638285.69596977|220694.85662142|123.60450719|20114|2 +638281.32185286|220698.88792153|129.34073598|20115|1 +638280.80246948|220699.28585402|123.76659065|20116|2 +638277.80214336|220702.26778011|144.48991601|20117|1 +638271.06431558|220708.11396668|125.1576248|20118|1 +638266.00380506|220712.67258151|123.63657042|20119|1 +638262.42279791|220716.08090191|136.70712898|20120|1 +638261.83706549|220716.53407276|130.75940571|20121|2 +638261.12856627|220717.08222611|123.56507696|20122|3 +638258.6780767|220719.62459259|148.78289046|20123|1 +638253.30659934|220724.4162178|143.52199176|20124|1 +638252.65205267|220724.92489914|137.04997386|20125|2 +638254.32545202|220720.68742601|144.61826192|20126|1 +638259.31188117|220716.17251413|145.14998866|20127|1 +638262.65126197|220712.93304332|128.88493033|20128|1 +638267.43099499|220708.56922572|126.61307376|20129|1 +638274.18071707|220702.69384028|145.51414391|20130|1 +638272.07755888|220704.31404965|123.41087211|20131|2 +638277.57359849|220699.39854763|128.67757513|20132|1 +638277.07524631|220699.78149168|123.3647074|20133|2 +638282.04715347|220695.2757429|123.58664778|20134|1 +638287.09707836|220690.7038659|124.16106038|20135|1 +638292.48347114|220685.87603509|128.52394699|20136|1 +638297.26909994|220681.50682962|126.24811856|20137|1 +638302.38119185|220676.88961595|127.67411809|20138|1 +638307.60683716|220672.18748413|130.49244473|20139|1 +638312.2279617|220667.93466003|125.68486809|20140|1 +638318.88261869|220662.16130494|145.82276755|20141|1 +638318.43054849|220662.50062001|140.37710766|20142|2 +638323.98620169|220657.54943389|147.06592206|20143|1 +638328.24593298|220653.57509169|138.46532285|20144|1 +638332.29807374|220649.74353518|126.35323794|20145|1 +638337.33580054|220645.17773565|126.54195238|20146|1 +638342.5315954|220640.49585412|128.83376126|20147|1 +638347.41288239|220636.04610444|127.03149557|20148|1 +638352.47854796|220631.46109524|127.69333556|20149|1 +638357.50663348|220626.9040323|127.88222674|20150|1 +638362.5529866|220622.33395384|128.37003049|20151|1 +638367.60679799|220617.75903706|129.00734171|20152|1 +638372.65256327|220613.1813904|128.86710812|20153|1 +638377.69757868|220608.61380937|129.45476645|20154|1 +638383.16894351|220603.73518744|135.87479673|20155|1 +638387.81067493|220599.45456022|130.38222798|20156|1 +638392.82949329|220594.89724134|129.92450616|20157|1 +638397.88558877|220590.31402876|130.07753899|20158|1 +638402.93803484|220585.73372429|130.19952248|20159|1 +638407.9720208|220581.16644669|130.03483453|20160|1 +638413.02120561|220576.58902297|130.15074397|20161|1 +638418.05941053|220572.01937905|130.09836567|20162|1 +638423.09584698|220567.45117921|130.03356019|20163|1 +638428.17807622|220562.84120167|129.94600257|20164|1 +638433.22059773|220558.26950635|130.03730881|20165|1 +638438.29478696|220553.66529736|129.83160932|20166|1 +638443.37974248|220549.054316|129.85697527|20167|1 +638453.57348364|220539.83173772|131.53451344|20168|1 +638458.65429845|220535.22492666|131.59188679|20169|1 +638463.55909977|220530.73996229|128.73157194|20170|1 +638468.63591547|220526.13501017|128.65168828|20171|1 +638473.69678321|220521.53968263|128.19744534|20172|1 +638478.7550775|220516.945722|127.66843471|20173|1 +638483.819691|220512.3479755|127.28939662|20174|1 +638488.88637812|220507.7489988|126.9604765|20175|1 +638499.02401498|220498.54864321|126.41552263|20176|1 +638504.08782069|220493.95100252|125.98715722|20177|1 +638509.15700715|220489.3505042|125.71508026|20178|1 +638514.22854822|220484.74884342|125.51813375|20179|1 +638519.33727809|220480.10863998|124.94463273|20180|1 +638524.40184334|220475.5097668|124.4732373|20181|1 +638529.46669996|220470.91039247|123.98325693|20182|1 +638534.53392845|220466.30967586|123.55588681|20183|1 +638539.60331171|220461.70781993|123.19115485|20184|1 +638544.71729753|220457.0632112|122.64406157|20185|1 +638549.78876492|220452.45988034|122.31099286|20186|1 +638554.85915195|220447.85640233|121.89059908|20187|1 +638559.97777735|220443.20881806|121.43816998|20188|1 +638565.05033012|220438.60371393|121.04321655|20189|1 +638570.1242254|220433.99772029|120.67341513|20190|1 +638575.24658339|220429.34725778|120.25943957|20191|1 +638580.32290926|220424.73955321|119.92759869|20192|1 +638585.44876875|220420.08794597|119.67056271|20193|1 +638590.52788946|220415.47957579|119.48293657|20194|1 +638595.60764891|220410.87095387|119.32049035|20195|1 +638600.73599456|220406.21872242|119.18947483|20196|1 +638605.86461195|220401.56601421|119.04014411|20197|1 +638610.94564826|220396.95625313|118.87848854|20198|1 +638616.0234359|220392.35016414|118.77323894|20199|1 +638621.15290293|220387.69485187|118.48120967|20200|1 +638626.23529642|220383.08307218|118.25774379|20201|1 +638631.31863676|220378.46931255|117.94698074|20202|1 +638636.45133935|220373.80964439|117.5435441|20203|1 +638641.53742195|220369.19212123|117.13333576|20204|1 +638646.67255037|220364.5309984|116.7869283|20205|1 +638651.76056108|220359.91318986|116.48976445|20206|1 +638656.84913488|220355.2957651|116.26155467|20207|1 +638661.93845926|220350.67798462|116.058562|20208|1 +638667.07685734|220346.01569688|115.85111378|20209|1 +638672.12062312|220341.43869825|115.60952805|20210|1 +638677.21124979|220336.82136696|115.53217447|20211|1 +638682.30299644|220332.20270453|115.43005957|20212|1 +638687.39483171|220327.58452745|115.37190486|20213|1 +638692.48787474|220322.96494291|115.28900743|20214|1 +638697.58324382|220318.34229128|115.13138883|20215|1 +638702.67891194|220313.71985716|115.01151684|20216|1 +638707.77713911|220309.09422263|114.82320238|20217|1 +638712.8270743|220304.51311455|114.69495878|20218|1 +638717.92867681|220299.88395318|114.46960465|20219|1 +638723.02804465|220295.25859165|114.3818982|20220|1 +638728.08199355|220290.67361812|114.2352836|20221|1 +638733.1900054|220286.03761935|113.92953421|20222|1 +638738.25054158|220281.44507856|113.65833161|20223|1 +638743.31475121|220276.84735082|113.31858423|20224|1 +638748.4247444|220272.20978735|113.10725717|20225|1 +638753.49127716|220267.61043156|112.80530291|20226|1 +638758.55920351|220263.00997674|112.51594324|20227|1 +638763.59087298|220258.45546799|113.24362121|20228|1 +638768.63110161|220253.89006842|113.72793681|20229|1 +638773.6984717|220249.29133253|113.53236696|20230|1 +638778.79188804|220244.66144567|112.75069218|20231|1 +638783.85257184|220240.05755247|111.68437373|20232|1 +638788.93259705|220235.44574448|111.36458796|20233|1 +638793.9547047|220230.88972835|111.30227536|20234|1 +638799.03164011|220226.28265925|111.13235051|20235|1 +638804.05683268|220221.72385006|111.0699914|20236|1 +638809.07703928|220217.17124349|111.13841527|20237|1 +638814.1086179|220212.6057627|111.00735324|20238|1 +638819.15175988|220208.02740339|110.68934411|20239|1 +638824.18850172|220203.45692956|110.53331611|20240|1 +638829.17250471|220198.93568704|110.49022098|20241|1 +638834.15460544|220194.41696384|110.50912219|20242|1 +638839.17695876|220189.86393541|110.69524143|20243|1 +638844.20112921|220185.30910046|110.86882188|20244|1 +638849.14821882|220180.83043512|111.53440119|20245|1 +638854.12170662|220176.32231191|111.77011751|20246|1 +638859.12099062|220171.78576717|111.6135035|20247|1 +638864.12239129|220167.24730741|111.45671276|20248|1 +638869.08724214|220162.74003188|111.15036805|20249|1 +638874.10192914|220158.18784675|110.86256179|20250|1 +638879.11449338|220153.63846927|110.64305847|20251|1 +638884.12599767|220149.09069607|110.47318013|20252|1 +638889.09167425|220144.58433845|110.29638126|20253|1 +638894.12632023|220140.01231677|109.8713738|20254|1 +638899.09797014|220135.50038737|109.68166407|20255|1 +638904.0734636|220130.98473686|109.47301592|20256|1 +638909.00678332|220126.51481015|109.84789611|20257|1 +638913.98367916|220121.99836284|109.67583185|20258|1 +638918.94928844|220117.49437342|109.67732944|20259|1 +638923.89946121|220113.00716726|109.89574445|20260|1 +638928.81267168|220108.55182168|109.98810179|20261|1 +638933.76710973|220104.06057882|110.19320596|20262|1 +638938.6540555|220099.63357029|110.63808202|20263|1 +638943.6023914|220095.14920776|110.94769165|20264|1 +638948.53320989|220090.67629021|110.91388899|20265|1 +638953.45647276|220086.2116498|110.99117745|20266|1 +638958.37400027|220081.75331372|111.15472128|20267|1 +638963.33126158|220077.2536322|110.90258733|20268|1 +638968.25196992|220072.78575119|110.54854312|20269|1 +638973.16479675|220068.33325722|110.83446112|20270|1 +638978.06589821|220063.88655719|110.74561986|20271|1 +638983.04046732|220059.37038244|110.42996407|20272|1 +638988.01616938|220054.84699739|109.63459708|20273|1 +638993.01111211|220050.30426717|108.69052258|20274|1 +638997.96066822|220045.80911109|108.24734875|20275|1 +639002.91326714|220041.31127466|107.80999782|20276|1 +639007.86955427|220036.81009375|107.37230273|20277|1 +639012.68436239|220032.45499369|108.32497207|20278|1 +639017.56155876|220028.02978157|108.2225037|20279|1 +639021.74459149|220024.32323323|115.09139119|20280|1 +639026.50825968|220020.01395848|116.00482564|20281|1 +639031.46321409|220015.51472881|115.62440159|20282|1 +639036.42860836|220010.99954327|114.73961661|20283|1 +639042.07327522|220005.79163541|107.85033963|20284|1 +639046.99403504|220001.3239762|107.51583844|20285|1 +639043.09116689|220002.15841621|107.69533482|20286|1 +639037.53512904|220007.26735613|114.1069842|20287|1 +639038.22330088|220006.56517965|107.9413203|20288|2 +639032.47806829|220011.85732246|115.27800343|20289|1 +639027.49843582|220016.37452066|116.24314645|20290|1 +639022.72614877|220020.67989442|115.33031662|20291|1 +639017.91068465|220025.0236807|114.36314582|20292|1 +639018.60384213|220024.31247733|107.84481437|20293|2 +639013.66587014|220028.78110623|107.96260277|20294|1 +639008.83596897|220033.13887635|107.06614406|20295|1 +639003.92477869|220037.58658926|107.44580537|20296|1 +638998.91324319|220042.12590213|107.88027274|20297|1 +638993.94249137|220046.62981315|108.43530044|20298|1 +638988.97630206|220051.12950854|108.9838448|20299|1 +638983.92980419|220055.70657732|109.89438639|20300|1 +638978.91840014|220060.24782569|110.4892536|20301|1 +638973.94782724|220064.74708839|110.69390198|20302|1 +638969.03440497|220069.18714283|110.31599871|20303|1 +638964.00203628|220073.74487976|110.71574255|20304|1 +638959.04701098|220078.22902473|110.83889807|20305|1 +638954.05476924|220082.74558101|110.86033866|20306|1 +638949.12173732|220087.20733783|110.79060325|20307|1 +638944.1324577|220091.72144136|110.83007068|20308|1 +638939.12059996|220096.25239874|110.58838263|20309|1 +638934.16211675|220100.73455934|110.31103156|20310|1 +638929.21121206|220105.20889055|109.9588291|20311|1 +638924.18722837|220109.75344517|109.92126852|20312|1 +638919.1801188|220114.280329|109.69741197|20313|1 +638914.17257684|220118.80792733|109.49822373|20314|1 +638909.14506295|220123.35718019|109.57833063|20315|1 +638904.13718496|220127.88571079|109.42855343|20316|1 +638899.06892077|220132.47122769|109.45792844|20317|1 +638894.03910154|220137.02407994|109.65594465|20318|1 +638888.94937917|220141.63364911|110.04597744|20319|1 +638883.87703485|220146.22485701|110.23110139|20320|1 +638878.79980905|220150.82184011|110.52208887|20321|1 +638873.73655539|220155.40401857|110.6453281|20322|1 +638868.66641704|220159.99418803|110.90552669|20323|1 +638863.59353032|220164.58805715|111.24671585|20324|1 +638858.48343197|220169.21534853|111.4511782|20325|1 +638853.42336131|220173.79748077|111.66818864|20326|1 +638848.34237785|220178.39323272|111.46862833|20327|1 +638843.28799542|220182.95939934|110.83970732|20328|1 +638838.26328173|220187.50282324|110.53399514|20329|1 +638833.13462592|220192.14216636|110.36659107|20330|1 +638828.04904779|220196.74399832|110.31709632|20331|1 +638822.95649658|220201.35413965|110.42352724|20332|1 +638817.86410867|220205.96453387|110.56134236|20333|1 +638812.77006799|220210.57730393|110.76792552|20334|1 +638807.63238876|220215.22890291|110.91998165|20335|1 +638802.50678896|220219.86685951|110.86058981|20336|1 +638797.422623|220224.4694971|110.97455518|20337|1 +638792.29028885|220229.11619142|111.12156045|20338|1 +638787.15857228|220233.76265014|111.29394097|20339|1 +638782.02460498|220238.41234809|111.56026943|20340|1 +638776.8623737|220243.09697916|112.55672223|20341|1 +638771.70908761|220247.7719198|113.42902422|20342|1 +638766.58157608|220252.41618227|113.72797401|20343|1 +638761.42332031|220257.0829902|113.61175762|20344|1 +638756.34778578|220261.66288114|112.55763381|20345|1 +638751.1854777|220266.33496563|112.56708441|20346|1 +638746.01410669|220271.01917144|112.88289832|20347|1 +638740.8978592|220275.65142406|113.040396|20348|1 +638735.7816839|220280.28417354|113.24192829|20349|1 +638730.57175751|220285.00137125|113.4064023|20350|1 +638725.45434458|220289.63716432|113.75866988|20351|1 +638720.29332369|220294.31115245|114.0085435|20352|1 +638715.13585049|220298.98089666|114.17779862|20353|1 +638709.98052828|220303.64822031|114.31014429|20354|1 +638704.87066786|220308.2765532|114.61412635|20355|1 +638699.71638883|220312.94382092|114.81611442|20356|1 +638694.56457328|220317.60806557|114.95618057|20357|1 +638689.41526394|220322.26900889|115.01555381|20358|1 +638684.26736416|220326.92819999|115.03795249|20359|1 +638679.11794134|220331.59061477|115.2045194|20360|1 +638673.96738814|220336.25605992|115.52777473|20361|1 +638668.81917243|220340.91842536|115.77656935|20362|1 +638663.67213518|220345.57973463|116.02587556|20363|1 +638658.52719862|220350.2378673|116.17569927|20364|1 +638653.38293955|220354.89563415|116.34474045|20365|1 +638648.19065499|220359.59849086|116.63809058|20366|1 +638643.09549622|220364.21356331|116.94671422|20367|1 +638637.90460688|220368.91804104|117.46622773|20368|1 +638632.76359776|220373.57663912|117.93100959|20369|1 +638627.67224467|220378.18891473|118.29070929|20370|1 +638622.4861034|220382.88696041|118.64326522|20371|1 +638617.3010614|220387.58353724|118.95903262|20372|1 +638612.21633402|220392.18750995|119.13864062|20373|1 +638607.0796957|220396.83738707|119.23074681|20374|1 +638601.8960625|220401.53135145|119.44198085|20375|1 +638596.76045431|220406.18078645|119.57258709|20376|1 +638591.62509431|220410.82984232|119.69114754|20377|1 +638586.49069149|220415.47891418|119.87889459|20378|1 +638581.35721817|220420.12770785|120.11083439|20379|1 +638576.2241925|220424.77601869|120.33695127|20380|1 +638571.09303907|220429.42391803|120.66349943|20381|1 +638565.96418161|220434.07101912|121.09046027|20382|1 +638560.83519904|220438.71712139|121.43034718|20383|1 +638555.70814592|220443.36235833|121.8394021|20384|1 +638550.63095665|220447.96313275|122.30397002|20385|1 +638545.50484389|220452.60704723|122.67624572|20386|1 +638540.42940098|220457.20624719|123.14127873|20387|1 +638535.30943806|220461.84715106|123.71419374|20388|1 +638530.22994593|220466.4469902|123.9422547|20389|1 +638525.10782376|220471.08794362|124.3659134|20390|1 +638520.03825021|220475.68311196|124.93179627|20391|1 +638514.96933278|220480.27752774|125.48533569|20392|1 +638509.84606328|220484.91809311|125.79751261|20393|1 +638504.81720712|220489.47244956|126.05570201|20394|1 +638499.74179766|220494.06948211|126.35364721|20395|1 +638494.61888825|220498.70965423|126.66047561|20396|1 +638489.59250748|220503.26256366|126.98130318|20397|1 +638484.51491534|220507.86070221|127.21110357|20398|1 +638479.44509705|220512.45436183|127.64713364|20399|1 +638474.42231221|220517.00463805|128.06167661|20400|1 +638469.35249897|220521.59770986|128.49168843|20401|1 +638464.2760351|220526.1947327|128.75957959|20402|1 +638459.29505086|220530.70518797|129.02108043|20403|1 +638454.36857822|220535.20847278|132.59056272|20404|1 +638449.18305514|220539.86052522|129.42904704|20405|1 +638444.15301215|220544.41537356|129.6875155|20406|1 +638439.07141423|220549.01609545|129.88108547|20407|1 +638434.07502061|220553.53707215|129.87373707|20408|1 +638429.03459703|220558.09917354|129.96375966|20409|1 +638423.9889183|220562.66499672|129.97272657|20410|1 +638418.98749526|220567.1901235|129.93385445|20411|1 +638413.99673302|220571.70829521|130.10682098|20412|1 +638409.28152845|220576.03786945|135.06152381|20413|1 +638403.9436885|220580.80485698|130.09515655|20414|1 +638398.95418778|220585.32274832|130.33623999|20415|1 +638393.97441757|220589.82405031|129.96775012|20416|1 +638389.24929837|220594.15627607|134.42697523|20417|1 +638384.24158873|220598.68650795|134.34284066|20418|1 +638379.16627274|220603.25589869|132.52782223|20419|1 +638374.17174706|220607.77776425|132.72389438|20420|1 +638369.14713037|220612.31251335|131.79340048|20421|1 +638363.96132795|220616.96458654|128.61500208|20422|1 +638359.08543418|220621.39321379|129.92604096|20423|1 +638353.96555765|220625.99963595|127.8500798|20424|1 +638348.95729402|220630.52544527|127.38022847|20425|1 +638343.94753709|220635.05284277|126.92890627|20426|1 +638339.12958839|220639.43086085|128.38762946|20427|1 +638334.00453731|220644.04434972|126.49868051|20428|1 +638329.87322458|220647.91859437|137.22336827|20429|1 +638325.02485585|220652.30943535|137.52763868|20430|1 +638324.05200837|220653.03677463|125.46383928|20431|2 +638320.98746512|220656.10699484|148.91105034|20432|1 +638315.91755088|220660.67000818|146.98070849|20433|1 +638309.25917407|220666.44088385|126.94058931|20434|1 +638304.54529406|220670.73986128|129.59384661|20435|1 +638304.24281732|220670.96898992|126.07680774|20436|2 +638299.41922256|220675.35124853|127.46813025|20437|1 +638294.35444339|220679.91702722|126.11927035|20438|1 +638289.35321443|220684.42815884|124.99923415|20439|1 +638284.35306501|220688.94592447|124.47628828|20440|1 +638279.37894607|220693.4374817|123.74702901|20441|1 +638274.39790263|220697.94149938|123.50300621|20442|1 +638271.62321169|220700.73603487|145.92432434|20443|1 +638264.59100757|220706.81768689|123.69955275|20444|1 +638259.82539368|220711.14922471|125.23279246|20445|1 +638254.74755338|220715.72323545|123.60229337|20446|1 +638253.74172625|220713.65429603|130.25490526|20447|1 +638253.07492879|220714.17314071|123.54550603|20448|2 +638258.32351832|220709.44326759|125.97778103|20449|1 +638263.04591313|220705.12849534|123.56145857|20450|1 +638268.69889021|220700.08762278|130.35046241|20451|1 +638268.01620905|220700.61512263|123.18986191|20452|2 +638274.95751615|220694.58270286|143.80170547|20453|1 +638273.15039735|220695.97557853|124.57442202|20454|2 +638278.07001505|220691.50180929|123.70608259|20455|1 +638283.13096414|220686.91962804|124.38328912|20456|1 +638288.39525041|220682.18251225|127.36464799|20457|1 +638293.37603879|220677.65607294|126.71237952|20458|1 +638298.40394542|220673.10794054|127.71419015|20459|1 +638303.63067398|220668.39547833|129.95732283|20460|1 +638303.16426787|220668.74901444|124.52635975|20461|2 +638308.6466474|220663.84347932|129.80233663|20462|1 +638315.16126362|220658.162995|147.68702958|20463|1 +638320.04828344|220653.71206406|146.29183753|20464|1 +638324.58540257|220649.53014567|141.12161254|20465|1 +638324.12712225|220649.87294756|135.4253814|20466|2 +638323.50073802|220650.34149417|127.63971082|20467|3 +638329.16647388|220645.29804542|135.1342544|20468|1 +638333.50965146|220641.24807282|126.51975834|20469|1 +638338.55130963|220636.67792916|126.76843203|20470|1 +638343.62394055|220632.07720275|126.81826164|20471|1 +638348.67850937|220627.49836911|127.30362834|20472|1 +638353.73809448|220622.9165722|127.90118376|20473|1 +638359.03175339|220618.15717172|131.17049772|20474|1 +638363.90289981|220613.71407836|129.20959953|20475|1 +638369.20995566|220608.94762583|132.87891778|20476|1 +638373.98607912|220604.57255873|129.4974151|20477|1 +638379.05300579|220599.97964966|129.7042401|20478|1 +638384.46081784|220595.13636457|134.51071912|20479|1 +638389.53304502|220590.55154736|135.73307486|20480|1 +638394.22487257|220586.22363774|130.05152192|20481|1 +638399.28273279|220581.63863115|130.23403207|20482|1 +638404.32047917|220577.06788722|130.10496062|20483|1 +638409.6764382|220572.26901496|134.71001898|20484|1 +638409.4004386|220572.45781874|129.89043376|20485|2 +638414.40848118|220567.91854885|130.12130385|20486|1 +638419.77354817|220563.11707249|135.17064295|20487|1 +638424.53494667|220558.73329576|130.05272185|20488|1 +638429.67233755|220554.0979559|131.94503804|20489|1 +638434.69956341|220549.52418248|130.82697381|20490|1 +638439.73792584|220544.94269799|129.89610784|20491|1 +638445.22340252|220540.08763755|139.31465876|20492|1 +638444.75404184|220540.38782728|129.47433739|20493|2 +638449.83226134|220535.78053812|129.35480026|20494|1 +638455.00069357|220531.11721927|131.25762746|20495|1 +638459.93505971|220526.61349304|129.03227047|20496|1 +638465.05534181|220521.9668857|128.81651576|20497|1 +638470.07326003|220517.41109661|128.45114199|20498|1 +638475.13742556|220512.81282109|128.0391012|20499|1 +638480.24688548|220508.17253791|127.5495301|20500|1 +638485.31430431|220503.57219632|127.20660151|20501|1 +638490.38630741|220498.96928628|126.9887446|20502|1 +638495.45945018|220494.36582566|126.80853199|20503|1 +638500.52384135|220489.76696278|126.36619531|20504|1 +638505.59170638|220485.16614466|126.01770426|20505|1 +638515.78113464|220475.91798849|125.48794018|20506|1 +638520.84207256|220471.31980179|124.85268467|20507|1 +638525.95598271|220466.67551814|124.36582969|20508|1 +638531.02405496|220462.07341251|123.93089723|20509|1 +638536.09974857|220457.46821416|123.79604007|20510|1 +638541.21278709|220452.82298103|123.17266292|20511|1 +638546.28239255|220448.21909614|122.70709041|20512|1 +638551.35551097|220443.61377692|122.37915628|20513|1 +638556.47496354|220438.96488756|121.92545284|20514|1 +638561.54814984|220434.35848001|121.51673278|20515|1 +638566.62395873|220429.75112745|121.22066654|20516|1 +638571.7472247|220425.09943409|120.81793683|20517|1 +638576.82510611|220420.4906064|120.55360825|20518|1 +638581.95278554|220415.83817454|120.4078215|20519|1 +638587.03239308|220411.22874148|120.21896754|20520|1 +638592.11229708|220406.61880378|120.01155653|20521|1 +638597.2412643|220401.9655353|119.89182406|20522|1 +638602.37046799|220397.31182739|119.7537764|20523|1 +638607.4039643|220392.74424468|119.57194527|20524|1 +638612.53010188|220388.09259868|119.37825438|20525|1 +638617.66035874|220383.43794531|119.24125782|20526|1 +638622.74325597|220378.82309067|118.86038728|20527|1 +638627.82730881|220374.20758848|118.51096605|20528|1 +638632.96085768|220369.54591727|118.05636033|20529|1 +638638.04815863|220364.92541514|117.54502308|20530|1 +638643.13642647|220360.30554417|117.15264624|20531|1 +638648.27340854|220355.64276135|116.85541728|20532|1 +638653.36419148|220351.02086091|116.48237884|20533|1 +638658.45530414|220346.40001394|116.21579923|20534|1 +638663.59429747|220341.73724517|116.06346404|20535|1 +638668.68757713|220337.11444225|115.79748904|20536|1 +638673.78135683|220332.49182421|115.58172504|20537|1 +638678.87740963|220327.86619763|115.29125846|20538|1 +638683.97396173|220323.2407567|115.05103079|20539|1 +638689.07083943|220318.61565487|114.8610327|20540|1 +638694.12056311|220314.03340074|114.68152702|20541|1 +638699.2205237|220309.40503883|114.45447066|20542|1 +638704.32067435|220304.77714279|114.27765319|20543|1 +638709.37664275|220300.18780363|113.98609831|20544|1 +638714.47954883|220295.55733755|113.80350444|20545|1 +638719.58208852|220290.92799623|113.68364175|20546|1 +638724.63910846|220286.33922021|113.511131|20547|1 +638729.74204941|220281.71039726|113.46041772|20548|1 +638734.8043292|220277.11593577|113.19450783|20549|1 +638739.86310261|220272.527344|113.07844027|20550|1 +638744.97288785|220267.89195737|112.91599404|20551|1 +638750.04036347|220263.29326312|112.62548096|20552|1 +638755.07971319|220258.73059407|113.16492819|20553|1 +638760.11327978|220254.17498572|113.8478367|20554|1 +638765.13092545|220249.62296657|113.67833043|20555|1 +638770.20797773|220245.01409408|113.26953596|20556|1 +638775.32484138|220240.35767608|111.95660883|20557|1 +638780.40635416|220235.7451688|111.5794869|20558|1 +638785.43869886|220231.17809373|111.27294686|20559|1 +638790.46487243|220226.61890488|111.14716824|20560|1 +638795.5486727|220222.00543542|110.85766905|20561|1 +638800.57834195|220217.44307981|110.73188113|20562|1 +638805.60598202|220212.8835114|110.68081438|20563|1 +638810.64022049|220208.31669528|110.52998607|20564|1 +638815.67986712|220203.74411245|110.31058507|20565|1 +638820.71050895|220199.18229755|110.29674403|20566|1 +638825.74472439|220194.61677006|110.24549124|20567|1 +638830.72543796|220190.10121535|110.31324538|20568|1 +638835.75778083|220185.53848545|110.3489642|20569|1 +638840.72802963|220181.03525059|110.64037956|20570|1 +638845.68442177|220176.54764303|111.1741899|20571|1 +638850.65525043|220172.04403438|111.47731619|20572|1 +638855.65206661|220167.51181632|111.38187066|20573|1 +638860.65364022|220162.97473629|111.24267888|20574|1 +638865.66959247|220158.42225925|110.91670743|20575|1 +638870.68315992|220153.87288909|110.66527111|20576|1 +638875.64977847|220149.36619321|110.42582478|20577|1 +638880.61102293|220144.86578549|110.29795326|20578|1 +638885.59390408|220140.3423004|109.89621884|20579|1 +638890.5707052|220135.8258982|109.61853291|20580|1 +638895.59461568|220131.26753913|109.39729016|20581|1 +638900.5626485|220126.7614407|109.30551883|20582|1 +638905.52433663|220122.26250506|109.32522929|20583|1 +638910.43498918|220117.81048675|109.39929004|20584|1 +638915.39314882|220113.31591915|109.51129273|20585|1 +638920.29493364|220108.87388688|109.7394467|20586|1 +638925.25141916|220104.38161239|109.91262717|20587|1 +638930.11586856|220099.97210396|110.03873136|20588|1 +638935.06057038|220095.49277209|110.3908222|20589|1 +638939.97968615|220091.03335911|110.48635144|20590|1 +638944.90075191|220086.57217273|110.58133188|20591|1 +638949.81337926|220082.12011565|110.79356121|20592|1 +638954.70517933|220077.68319395|110.71170558|20593|1 +638959.65154844|220073.19638716|110.59435437|20594|1 +638964.53981481|220068.76382792|110.60423285|20595|1 +638969.50639923|220064.25665612|110.32491911|20596|1 +638974.37674246|220059.84338365|110.5751369|20597|1 +638979.31505878|220055.35980122|110.13745111|20598|1 +638984.28414662|220050.8448068|109.42085156|20599|1 +638989.23794183|220046.3461757|108.90197986|20600|1 +638994.17136267|220041.86905918|108.62402418|20601|1 +638999.08373328|220037.40789539|108.10115273|20602|1 +639004.09271952|220032.85383993|107.15453885|20603|1 +639008.99279228|220028.40632015|106.82864181|20604|1 +639013.17010294|220024.70081421|113.37993875|20605|1 +639017.90908466|220020.41807607|114.53991678|20606|1 +639022.67380434|220016.10895093|115.45766724|20607|1 +639027.45034262|220011.78777142|116.26920073|20608|1 +639032.42179459|220007.26775819|115.32646569|20609|1 +639037.39043499|220002.74561776|114.01523147|20610|1 +639038.04433227|220002.07926102|108.18340833|20611|2 +639042.96195432|219997.61609288|107.87735199|20612|1 +639045.52017876|219992.43039238|107.58269961|20613|1 +639040.53997782|219996.9401445|107.91173135|20614|1 +639034.79425885|220002.22464779|114.67962016|20615|1 +639029.76155283|220006.78976978|115.62742466|20616|1 +639024.75674844|220011.32129998|115.91681223|20617|1 +639019.93472252|220015.67202089|114.9992571|20618|1 +639015.23647949|220019.88428067|111.99735991|20619|1 +639010.7378765|220023.9028944|107.98127143|20620|1 +639005.85146164|220028.30702281|106.67557177|20621|1 +639000.79583743|220032.89125301|107.49338396|20622|1 +638995.72619709|220037.49052309|108.4968782|20623|1 +638990.66296636|220042.07761609|108.99634639|20624|1 +638985.6919839|220046.57610513|109.09674046|20625|1 +638980.6233276|220051.1697523|109.72627539|20626|1 +638975.56654246|220055.75163031|110.27550808|20627|1 +638970.55225886|220060.28984646|110.41616024|20628|1 +638965.62236259|220064.74719096|110.20615403|20629|1 +638960.55083207|220069.33909947|110.49270455|20630|1 +638955.60227111|220073.81655179|110.53609734|20631|1 +638950.56867976|220078.36955003|110.46319932|20632|1 +638945.57340919|220082.88966103|110.53491602|20633|1 +638940.54584672|220087.43695815|110.44328422|20634|1 +638935.56950472|220091.93780348|110.34720617|20635|1 +638930.56409657|220096.46228335|110.03821046|20636|1 +638925.60208522|220100.94848776|109.81127502|20637|1 +638920.55830093|220105.51414983|110.01079812|20638|1 +638915.57104361|220110.02005896|109.5336635|20639|1 +638910.61382423|220114.501913|109.30584439|20640|1 +638905.55217964|220119.07971957|109.18723744|20641|1 +638900.53245625|220123.6209869|109.18150755|20642|1 +638895.51748718|220128.15747365|109.13838451|20643|1 +638890.48309712|220132.71523862|109.38720703|20644|1 +638885.45397314|220137.26775681|109.59870152|20645|1 +638880.37176466|220141.86960854|109.90912971|20646|1 +638875.33828252|220146.42780253|110.25741612|20647|1 +638870.26656397|220151.01920612|110.4934859|20648|1 +638865.20018524|220155.60522625|110.6861629|20649|1 +638860.17981345|220160.15051815|110.95361688|20650|1 +638855.12386221|220164.72597227|111.06561027|20651|1 +638850.0594188|220169.31131378|111.36449495|20652|1 +638845.03862559|220173.84854608|110.98505688|20653|1 +638840.02326662|220178.37982812|110.52456314|20654|1 +638835.00324197|220182.91643906|110.15107821|20655|1 +638829.96653418|220187.4720151|110.08258923|20656|1 +638824.92707122|220192.03103035|110.08878422|20657|1 +638819.84236011|220196.63064379|110.06474843|20658|1 +638814.80525848|220201.18767773|110.083445|20659|1 +638809.7623319|220205.75179795|110.24538892|20660|1 +638804.67376184|220210.35704014|110.38994783|20661|1 +638799.63631782|220214.91571876|110.51455443|20662|1 +638794.55274111|220219.5160474|110.62822214|20663|1 +638789.46026561|220224.12735342|110.97271342|20664|1 +638784.42284093|220228.68751581|111.21588977|20665|1 +638779.33841462|220233.29042785|111.47340014|20666|1 +638774.25410706|220237.89378976|111.77474049|20667|1 +638769.17332698|220242.49348581|112.03883653|20668|1 +638764.05147195|220247.14434204|113.40723946|20669|1 +638758.97335097|220251.74249857|113.74040119|20670|1 +638753.90807189|220256.32524374|113.77423175|20671|1 +638748.87806267|220260.86366215|112.82847363|20672|1 +638743.81394122|220265.44528026|112.85612781|20673|1 +638738.74448062|220270.03425565|113.08357485|20674|1 +638733.63082824|220274.66227524|113.23298928|20675|1 +638728.5647659|220279.24802198|113.44826029|20676|1 +638723.5026305|220283.82910814|113.57621553|20677|1 +638718.44070565|220288.41047764|113.74169413|20678|1 +638713.33183403|220293.0344106|113.91071671|20679|1 +638708.22422909|220297.65720339|114.08003695|20680|1 +638703.16352216|220302.23889506|114.3583368|20681|1 +638698.05743233|220306.86095246|114.57807266|20682|1 +638692.95375464|220311.48011437|114.74187694|20683|1 +638687.89900835|220316.05514832|114.92061988|20684|1 +638682.79732513|220320.67267007|115.09733503|20685|1 +638677.69632961|220325.28988788|115.2992952|20686|1 +638672.59582136|220329.90721652|115.54525277|20687|1 +638667.49667607|220334.52315937|115.7789599|20688|1 +638662.39757888|220339.14024613|116.10663358|20689|1 +638657.30002787|220343.75569853|116.41582463|20690|1 +638652.20396599|220348.36948555|116.70026365|20691|1 +638647.10911906|220352.98209957|116.97867512|20692|1 +638642.01523638|220357.59415888|117.28233161|20693|1 +638636.87385308|220362.25096683|117.72272421|20694|1 +638631.82994993|220366.81959103|118.17151632|20695|1 +638626.69145765|220371.47434537|118.65633421|20696|1 +638621.60255849|220376.08308776|119.0547386|20697|1 +638616.51490163|220380.69023347|119.41585216|20698|1 +638611.42805578|220385.29475119|119.62717922|20699|1 +638606.29742904|220389.93891967|119.83847837|20700|1 +638601.2594882|220394.49914883|120.05041935|20701|1 +638596.12610886|220399.14558432|120.24357074|20702|1 +638591.040998|220403.74790908|120.40578442|20703|1 +638585.95692335|220408.35016286|120.63694286|20704|1 +638580.8718625|220412.95142339|120.7182869|20705|1 +638575.74044046|220417.59625685|120.92528863|20706|1 +638570.7049555|220422.15379329|121.10028295|20707|1 +638565.57623864|220426.79784268|121.43912806|20708|1 +638560.49604198|220431.39762664|121.75255142|20709|1 +638555.41707813|220435.99661193|122.09114538|20710|1 +638550.33947133|220440.59484398|122.46740223|20711|1 +638545.21591908|220445.23549479|122.90750648|20712|1 +638540.19108172|220449.787901|123.43910301|20713|1 +638535.07093003|220454.4263436|123.94849619|20714|1 +638529.99002708|220459.02417419|124.05685258|20715|1 +638524.91790226|220463.61847497|124.51527203|20716|1 +638519.8000111|220468.25488873|125.02559539|20717|1 +638514.78019475|220472.80305856|125.58246484|20718|1 +638509.70366501|220477.39843627|125.81019093|20719|1 +638504.58259704|220482.03552631|126.14643154|20720|1 +638499.51011164|220486.62874284|126.49329478|20721|1 +638494.43982563|220491.22068325|126.89652679|20722|1 +638489.36315967|220495.81595692|127.10631906|20723|1 +638484.33215432|220500.36913163|127.25745432|20724|1 +638479.26241421|220504.96057828|127.6610677|20725|1 +638474.19512432|220509.55001754|128.12727273|20726|1 +638469.17104707|220514.09791075|128.47827527|20727|1 +638464.09845678|220518.68955176|128.8135764|20728|1 +638459.02643497|220523.28083384|129.16154656|20729|1 +638453.9916627|220527.83534337|129.26916811|20730|1 +638448.91847404|220532.42745439|129.59866493|20731|1 +638443.82624238|220537.03176699|129.52898533|20732|1 +638438.8019354|220541.58003571|129.89262897|20733|1 +638433.7656635|220546.13613925|130.01914244|20734|1 +638428.86981046|220550.59969202|132.88413608|20735|1 +638423.6278663|220555.30388326|129.98930234|20736|1 +638418.76696055|220559.74263666|133.39641281|20737|1 +638413.58990743|220564.38314437|130.11366709|20738|1 +638408.4990841|220568.9882484|130.20728017|20739|1 +638403.44704747|220573.55643287|130.15948764|20740|1 +638398.45480055|220578.07324314|130.3315426|20741|1 +638393.39295799|220582.64880777|130.16534776|20742|1 +638388.52811517|220587.076468|132.41233138|20743|1 +638383.47425705|220591.64645937|132.37680789|20744|1 +638378.3886971|220596.22996995|131.14010881|20745|1 +638373.25071172|220600.8519049|129.18729387|20746|1 +638368.17147902|220605.44180843|128.90944981|20747|1 +638363.29259277|220609.87846825|130.86190198|20748|1 +638358.23058429|220614.44750158|130.16751507|20749|1 +638353.3057888|220618.91699139|131.42798019|20750|1 +638348.07512246|220623.60209676|127.83343892|20751|1 +638343.21003241|220628.02813544|129.93374283|20752|1 +638337.94026085|220632.7526782|126.65734091|20753|1 +638332.94944332|220637.26401304|126.49881074|20754|1 +638327.90814061|220641.8210738|126.34015964|20755|1 +638322.85820687|220646.37729283|125.49726987|20756|1 +638319.51812948|220649.65124551|145.7078348|20757|1 +638317.81992458|220650.92539816|124.84718732|20758|2 +638312.8593837|220655.40811366|124.59453247|20759|1 +638308.2611225|220659.63217448|129.83092099|20760|1 +638307.90044361|220659.90458114|125.54224396|20761|2 +638303.21142113|220664.18210252|128.50791073|20762|1 +638298.5684236|220668.43083171|132.49174064|20763|1 +638292.95982765|220673.40724129|124.8691116|20764|1 +638287.93020468|220677.95119062|124.51036999|20765|1 +638282.92009514|220682.47383474|123.86481741|20766|1 +638278.13562293|220686.82361992|125.70861553|20767|1 +638273.0696431|220691.38986205|124.50993281|20768|1 +638270.21657193|220694.2479418|146.70625027|20769|1 +638267.95604039|220695.99358778|122.86459739|20770|2 +638263.88590016|220699.79044332|132.13901728|20771|1 +638263.04297084|220700.44293975|123.37247438|20772|2 +638258.19507676|220704.83550779|124.05795019|20773|1 +638253.34183841|220709.23850531|125.18474878|20774|1 +638253.45487142|220706.17320991|123.92223727|20775|1 +638258.52288815|220701.58754227|124.53373605|20776|1 +638265.27306688|220695.69963847|142.76657589|20777|1 +638263.55322358|220697.03156588|124.79175803|20778|2 +638270.67292136|220690.86178863|147.22992168|20779|1 +638268.35472275|220692.65276533|122.65429353|20780|2 +638273.68156791|220687.87518162|126.6499646|20781|1 +638278.54863512|220683.43946296|124.70908384|20782|1 +638283.7796193|220678.73107806|127.30181449|20783|1 +638290.39300735|220672.96709936|145.54121208|20784|1 +638288.73099764|220674.23772979|126.85198989|20785|2 +638294.16513895|220669.36952229|131.37083938|20786|1 +638293.58088486|220669.81491405|124.69876817|20787|2 +638298.86131846|220665.07135006|128.0569513|20788|1 +638304.08107142|220660.3682346|130.25967707|20789|1 +638308.92024229|220655.96106337|128.57880887|20790|1 +638313.64384642|220651.63310175|124.86990225|20791|1 +638320.51320564|220645.69382853|147.61833596|20792|1 +638323.87866846|220642.38441209|127.05700104|20793|1 +638328.89084954|220637.83183845|126.27563322|20794|1 +638333.88449237|220633.30878893|126.50814042|20795|1 +638339.19700153|220628.53434468|129.7215228|20796|1 +638344.0492906|220624.10862858|127.50879762|20797|1 +638349.18124804|220619.46699674|128.42669692|20798|1 +638354.460026|220614.71715779|131.46798713|20799|1 +638359.47706156|220610.16782111|131.5956075|20800|1 +638364.37736232|220605.69435809|129.3450241|20801|1 +638369.64030987|220600.95935998|132.42558641|20802|1 +638374.67756241|220596.39680308|132.95826194|20803|1 +638379.81827529|220591.74252232|133.64906766|20804|1 +638384.62927199|220587.331481|129.9273432|20805|1 +638389.94073594|220582.56721326|134.17566913|20806|1 +638394.72185164|220578.17564103|129.84856646|20807|1 +638399.83796356|220573.53951312|130.20991257|20808|1 +638404.8809766|220568.96464444|130.17712381|20809|1 +638409.97622008|220564.34367627|130.23981778|20810|1 +638415.01401508|220559.77291421|130.15738544|20811|1 +638420.09863435|220555.15969065|130.07087892|20812|1 +638425.3334045|220550.45847292|133.80610025|20813|1 +638430.18082317|220546.01503248|130.1309963|20814|1 +638435.25961063|220541.4064028|129.98891166|20815|1 +638440.34758478|220536.7920431|130.0529823|20816|1 +638445.42414989|220532.18527509|129.89889837|20817|1 +638450.48911165|220527.58596854|129.50164741|20818|1 +638455.56239491|220522.98148043|129.29181793|20819|1 +638460.63424554|220518.37798058|129.05722713|20820|1 +638465.70608358|220513.77457474|128.82907316|20821|1 +638470.77022353|220509.17578862|128.41381396|20822|1 +638475.83466005|220504.57674172|127.99871288|20823|1 +638480.89919445|220499.9775313|127.57753775|20824|1 +638485.96944791|220495.37502716|127.30638166|20825|1 +638491.04440874|220490.76998505|127.17280815|20826|1 +638496.16360981|220486.12359535|126.93718486|20827|1 +638501.22705183|220481.52460606|126.45433894|20828|1 +638506.29437957|220476.92343478|126.07782164|20829|1 +638516.43634401|220467.71722599|125.54394618|20830|1 +638521.54680991|220463.074145|124.94130269|20831|1 +638526.66243874|220458.42843502|124.5014868|20832|1 +638531.73381416|220453.82439953|124.18850062|20833|1 +638536.80807933|220449.21916794|123.98814966|20834|1 +638541.92388469|220444.57229431|123.46808734|20835|1 +638546.99260506|220439.96792803|122.93702102|20836|1 +638552.11249381|220435.31870662|122.52385472|20837|1 +638557.23476235|220430.66850599|122.20484099|20838|1 +638562.30953383|220426.06119021|121.8744884|20839|1 +638567.43419744|220421.40946499|121.60617866|20840|1 +638572.55979847|220416.75728199|121.36953217|20841|1 +638577.63910617|220412.14839425|121.23994912|20842|1 +638582.71876592|220407.53933623|121.1230537|20843|1 +638587.84606811|220402.8862676|120.93745535|20844|1 +638592.92566737|220398.27602151|120.72107743|20845|1 +638598.05404326|220393.62214609|120.54871551|20846|1 +638603.1827988|220388.96754544|120.34554611|20847|1 +638608.26030965|220384.35865623|120.08622189|20848|1 +638613.34193642|220379.74580764|119.80835922|20849|1 +638618.47243104|220375.0883891|119.50625613|20850|1 +638623.55608439|220370.47230494|119.11644658|20851|1 +638628.68924535|220365.81028461|118.64015842|20852|1 +638633.77574798|220361.19115426|118.21340222|20853|1 +638638.8635421|220356.57116861|117.81188174|20854|1 +638644.00118836|220351.90526644|117.34925789|20855|1 +638649.0915419|220347.28352739|116.99206968|20856|1 +638654.18121974|220342.66499762|116.84129718|20857|1 +638659.32099374|220337.99970232|116.57983355|20858|1 +638664.41485211|220333.37503588|116.24223488|20859|1 +638669.51159249|220328.7464326|115.79868897|20860|1 +638674.6556054|220324.07708289|115.519738|20861|1 +638679.75237732|220319.45089787|115.2705062|20862|1 +638684.84928109|220314.82538403|115.08400558|20863|1 +638689.9482785|220310.19734631|114.84781488|20864|1 +638695.0479218|220305.56912575|114.64312929|20865|1 +638700.14756026|220300.9416217|114.49492408|20866|1 +638705.24934958|220296.3116208|114.30328888|20867|1 +638710.35163793|220291.68157017|114.14316811|20868|1 +638715.45630061|220287.04882473|113.93963594|20869|1 +638720.56337838|220282.41342622|113.69896177|20870|1 +638725.66888478|220277.78078741|113.56472784|20871|1 +638730.73178999|220273.18411719|113.30281772|20872|1 +638735.83902761|220268.5486606|113.22541764|20873|1 +638740.90391108|220263.94979926|113.00757934|20874|1 +638746.0053019|220259.32269995|113.17409044|20875|1 +638751.0855285|220254.7223943|113.94611927|20876|1 +638756.14919588|220250.12605131|113.84106501|20877|1 +638761.28520746|220245.45676856|113.14743154|20878|1 +638766.39413372|220240.8063256|112.00115503|20879|1 +638771.47171518|220236.19510782|111.71591606|20880|1 +638776.55179092|220231.58147496|111.41838014|20881|1 +638781.57973867|220227.01673013|111.25382241|20882|1 +638786.66569813|220222.39721975|110.91292161|20883|1 +638791.75474642|220217.77467232|110.55356608|20884|1 +638796.78506078|220213.2086454|110.45770197|20885|1 +638801.87188795|220208.58976502|110.2295666|20886|1 +638806.90149933|220204.02539349|110.21474887|20887|1 +638811.94622975|220199.44402571|109.93821636|20888|1 +638817.02858899|220194.83162687|109.90366026|20889|1 +638822.01079656|220190.31106354|109.95825239|20890|1 +638827.0993787|220185.69232304|109.86782982|20891|1 +638832.08883215|220181.16425034|109.84739382|20892|1 +638837.10304614|220176.61914585|110.25576971|20893|1 +638842.12040063|220172.07064621|110.62044585|20894|1 +638847.14264433|220167.51686504|110.9165493|20895|1 +638852.14119687|220162.9797498|110.83315887|20896|1 +638857.18978822|220158.39739152|110.75575879|20897|1 +638862.19834251|220153.85004205|110.5788204|20898|1 +638867.26978069|220149.2434563|110.22160428|20899|1 +638872.27967331|220144.69552362|110.09431877|20900|1 +638877.30431618|220140.13194496|109.78661601|20901|1 +638882.28437825|220135.60850748|109.45965857|20902|1 +638887.35716134|220131.0023528|109.23326263|20903|1 +638892.33114556|220126.48637254|109.0613565|20904|1 +638897.35193347|220121.92870555|108.94599587|20905|1 +638902.3130766|220117.42724586|109.00343434|20906|1 +638907.31938359|220112.8857492|109.12999431|20907|1 +638912.27236906|220108.3935486|109.33584262|20908|1 +638917.23537662|220103.89093436|109.43577161|20909|1 +638922.17124541|220099.41735765|109.88910298|20910|1 +638927.09192176|220094.95257978|109.9494343|20911|1 +638932.05800279|220090.44747857|110.0730084|20912|1 +638936.9788724|220085.98306004|110.17580233|20913|1 +638941.94819556|220081.47509018|110.30484588|20914|1 +638946.8800782|220076.99967239|110.32611904|20915|1 +638951.82252748|220072.51350426|110.25394656|20916|1 +638956.75163719|220068.04160161|110.35487083|20917|1 +638961.68109317|220063.56961871|110.47389636|20918|1 +638966.66957302|220059.03649215|109.98550659|20919|1 +638971.53812094|220054.62188724|110.28060545|20920|1 +638976.50783495|220050.10903998|110.05158641|20921|1 +638981.47241591|220045.59556716|109.40471297|20922|1 +638986.36934785|220041.15250061|109.48147123|20923|1 +638991.29778769|220036.67721698|109.26688855|20924|1 +638996.34263147|220032.08243939|107.9387065|20925|1 +639001.30510884|220027.56705603|106.99056713|20926|1 +639006.28721761|220023.03807141|106.37325474|20927|1 +639010.97114551|220018.80939222|108.1497173|20928|1 +639016.15570679|220014.07377079|105.69033692|20929|1 +639020.01188288|220010.69144409|115.11685016|20930|1 +639024.78866756|220006.36674237|115.94899638|20931|1 +639029.70306814|220001.9017865|115.5454202|20932|1 +639035.37568168|219996.65966734|107.98491773|20933|1 +639040.28649377|219992.20021916|107.7611914|20934|1 +639045.16525153|219987.76826597|107.41531415|20935|1 +639045.22722609|219984.70696855|107.20106633|20936|1 +639040.23761642|219989.22952594|107.59655926|20937|1 +639035.22592644|219993.76946323|107.78399936|20938|1 +639030.34050468|219998.18110315|106.86651864|20939|1 +639024.35670033|220003.71360199|115.94425247|20940|1 +639019.47844449|220008.11953906|115.089875|20941|1 +639015.46809938|220011.63163669|105.68751848|20942|1 +639010.47168242|220016.15741374|105.84908103|20943|1 +639005.45317525|220020.70623716|106.2515503|20944|1 +639000.39880586|220025.29236851|107.03728065|20945|1 +638995.24581901|220029.96845132|107.8721988|20946|1 +638990.12316047|220034.62618146|109.43161371|20947|1 +638985.08725793|220039.18893262|109.68913339|20948|1 +638980.09818507|220043.70365459|109.50109798|20949|1 +638974.99369117|220048.33185146|110.02193235|20950|1 +638969.98130318|220052.87143134|110.13096777|20951|1 +638964.94093567|220057.43390786|110.04534492|20952|1 +638959.85984733|220062.03911882|110.42438301|20953|1 +638954.88224617|220066.54352326|110.2421333|20954|1 +638949.84669427|220071.10195086|110.18135549|20955|1 +638944.80456454|220075.66758534|110.21976253|20956|1 +638939.7751033|220080.22026118|110.14039977|20957|1 +638934.74718451|220084.77161928|110.0672227|20958|1 +638929.61356131|220089.42752487|110.69326016|20959|1 +638924.61662111|220093.93948527|109.71895489|20960|1 +638919.59097683|220098.48933121|109.68926362|20961|1 +638914.58782307|220103.01560301|109.40501993|20962|1 +638909.52367467|220107.59929533|109.29317537|20963|1 +638904.46807024|220112.17415686|109.09452664|20964|1 +638899.42157118|220116.73952231|108.79657213|20965|1 +638894.34796997|220121.33420249|108.87761851|20966|1 +638889.26975293|220125.93423932|109.05203612|20967|1 +638884.19084421|220130.53545195|109.27014418|20968|1 +638879.11226732|220135.1367584|109.5195341|20969|1 +638873.98639752|220139.78113203|109.78736015|20970|1 +638868.96111549|220144.33424784|110.04374501|20971|1 +638863.85118524|220148.96216021|110.15045499|20972|1 +638858.76917855|220153.56916101|110.60590717|20973|1 +638853.70924804|220158.15241203|110.76292116|20974|1 +638848.60296006|220162.77586796|110.91407503|20975|1 +638843.57448437|220167.32222445|110.61714372|20976|1 +638838.49912285|220171.91090009|110.3081108|20977|1 +638833.4781615|220176.44919422|109.91151096|20978|1 +638828.39609688|220181.04574332|109.74585562|20979|1 +638823.30545539|220185.652255|109.75473882|20980|1 +638818.2553833|220190.22419983|109.93733269|20981|1 +638813.17039668|220194.82504206|109.90296263|20982|1 +638808.07908584|220199.43349738|110.01829535|20983|1 +638803.03515871|220203.99972183|110.18865739|20984|1 +638797.94862629|220208.60353925|110.27939622|20985|1 +638792.80819875|220213.25807818|110.52142844|20986|1 +638787.76861498|220217.82068165|110.71701689|20987|1 +638782.62765609|220222.47696349|111.0594897|20988|1 +638777.54380375|220227.07961763|111.25089235|20989|1 +638772.45594809|220231.68762409|111.57967294|20990|1 +638767.32869676|220236.32923013|111.74238891|20991|1 +638762.29019623|220240.89344369|112.14427216|20992|1 +638757.12672584|220245.58103277|113.3556239|20993|1 +638752.03698805|220250.19459629|113.99107476|20994|1 +638746.97026847|220254.78009628|114.05269903|20995|1 +638741.88330421|220259.37401335|113.32460248|20996|1 +638736.82155336|220263.95361019|113.27409383|20997|1 +638731.70906617|220268.58053401|113.33274153|20998|1 +638726.59323216|220273.21237232|113.5415106|20999|1 +638721.5258906|220277.80080006|113.79110517|21000|1 +638716.46127747|220282.38620834|113.99709301|21001|1 +638711.35160199|220287.01161738|114.13793121|21002|1 +638706.29072328|220291.59309376|114.30047045|21003|1 +638701.18200138|220296.21842931|114.50423516|21004|1 +638696.12397271|220300.7970914|114.64828247|21005|1 +638691.06640885|220305.37573149|114.82360235|21006|1 +638685.96170268|220309.99719849|115.00925651|21007|1 +638680.90596952|220314.57449326|115.2097563|21008|1 +638675.8019349|220319.19661579|115.49579522|21009|1 +638670.69732595|220323.8209098|115.91329616|21010|1 +638665.64275446|220328.39958888|116.3078124|21011|1 +638660.54382474|220333.01623233|116.52582744|21012|1 +638655.49350955|220337.58940655|116.78930956|21013|1 +638650.44410716|220342.16207102|117.07780415|21014|1 +638645.34782399|220346.77726491|117.3713031|21015|1 +638640.25185256|220351.39382437|117.79627336|21016|1 +638635.20588662|220355.96384962|118.12250526|21017|1 +638630.06473835|220360.62132843|118.54695462|21018|1 +638625.02098015|220365.19069064|118.97964536|21019|1 +638619.93060279|220369.80274499|119.44918973|21020|1 +638614.84169055|220374.41307919|119.88770337|21021|1 +638609.75382902|220379.02019105|120.14519515|21022|1 +638604.66656356|220383.62582355|120.32790064|21023|1 +638599.58390515|220388.22956162|120.69205589|21024|1 +638594.54578726|220392.79114729|120.91270332|21025|1 +638589.4601984|220397.39550216|121.11463559|21026|1 +638584.37503956|220401.99931291|121.3042709|21027|1 +638579.29047106|220406.60274508|121.50659384|21028|1 +638574.20566778|220411.20561055|121.64662279|21029|1 +638569.16938636|220415.76483226|121.81129213|21030|1 +638564.08563349|220420.36722029|121.98908629|21031|1 +638559.00295136|220424.96919005|122.21081273|21032|1 +638553.97077907|220429.52680604|122.54430002|21033|1 +638548.89178962|220434.12716007|122.90374857|21034|1 +638543.81629581|220438.72615446|123.40709559|21035|1 +638538.7893701|220443.28090442|123.89058333|21036|1 +638533.71327389|220447.87895281|124.27542572|21037|1 +638528.63076064|220452.47905317|124.36053698|21038|1 +638523.6062404|220457.03178094|124.85656351|21039|1 +638518.58161875|220461.58412867|125.31501086|21040|1 +638513.50831141|220466.17989414|125.71903352|21041|1 +638508.48108962|220470.73286757|126.04001922|21042|1 +638503.40592919|220475.32913749|126.35055902|21043|1 +638498.37947809|220479.88149394|126.67779552|21044|1 +638493.30853153|220484.47536094|127.10097984|21045|1 +638488.27536026|220489.03113501|127.21585678|21046|1 +638483.19753666|220493.62864652|127.43319278|21047|1 +638478.17369888|220498.17934078|127.81662131|21048|1 +638473.10036253|220502.77427687|128.15284332|21049|1 +638468.07878483|220507.3220122|128.57991578|21050|1 +638463.05162715|220511.87220838|128.863313|21051|1 +638457.97787724|220516.46504055|129.18103378|21052|1 +638452.94695287|220521.01762494|129.38330091|21053|1 +638447.91422424|220525.57145574|129.55433267|21054|1 +638442.88011234|220530.12630382|129.70661205|21055|1 +638437.99390133|220534.58588863|132.94126759|21056|1 +638432.7653608|220539.27897605|130.07729714|21057|1 +638427.8619031|220543.748141|132.83103224|21058|1 +638422.84971034|220548.28814534|133.38232062|21059|1 +638417.63145554|220552.96647126|130.08535248|21060|1 +638412.62582271|220557.49209987|129.96538747|21061|1 +638407.69631161|220561.97678981|132.07567218|21062|1 +638402.58949284|220566.57205789|130.20332691|21063|1 +638397.53902547|220571.13983882|130.20604303|21064|1 +638392.52568134|220575.68197985|130.84458207|21065|1 +638387.51781869|220580.20063283|130.00881746|21066|1 +638382.46386642|220584.77172155|130.02403517|21067|1 +638377.49372176|220589.2741161|130.61371198|21068|1 +638372.61767357|220593.7091957|132.62964878|21069|1 +638367.57516421|220598.27218479|132.82519072|21070|1 +638362.53326423|220602.8172741|131.63987466|21071|1 +638357.45500484|220607.3982626|130.69050745|21072|1 +638352.48222812|220611.90302702|131.27909596|21073|1 +638347.39810234|220616.48104308|129.67053976|21074|1 +638342.18480392|220621.17151982|127.70056304|21075|1 +638337.16002737|220625.70774632|127.04482501|21076|1 +638332.30583659|220630.12588753|129.28820884|21077|1 +638327.15715054|220634.75488027|127.08308322|21078|1 +638322.06551427|220639.34243565|125.69321179|21079|1 +638316.97073593|220643.94074145|124.9319079|21080|1 +638312.02802351|220648.41035869|124.89131494|21081|1 +638307.22880227|220652.78649604|127.75417848|21082|1 +638306.9461708|220652.9999261|124.36644361|21083|2 +638302.07009996|220657.4269081|125.7367162|21084|1 +638297.06679916|220661.95030936|125.60877026|21085|1 +638291.96068262|220666.55239283|124.33139451|21086|1 +638287.74597606|220670.46710356|132.6062083|21087|1 +638287.36096063|220670.76135485|128.27077124|21088|2 +638282.21743159|220675.39263154|126.62031984|21089|1 +638277.06306036|220680.02646274|124.39175374|21090|1 +638271.98484759|220684.60928075|123.59277765|21091|1 +638269.09070906|220687.49937835|145.51313932|21092|1 +638264.37818824|220691.78980703|147.80427847|21093|1 +638257.2913705|220697.92216038|125.54075567|21094|1 +638253.07313463|220701.8313283|133.11867107|21095|1 +638252.39771644|220702.35664461|126.24054691|21096|2 +638255.69723046|220695.99866511|123.407663|21097|1 +638262.7591036|220689.87032817|144.92475545|21098|1 +638267.70104485|220685.38710756|144.56815325|21099|1 +638270.68356908|220682.41997985|123.63486819|21100|1 +638276.06002509|220677.59941443|127.74969503|21101|1 +638280.78263825|220673.28170775|124.75562063|21102|1 +638285.71233301|220668.79802275|123.47970526|21103|1 +638290.70848453|220664.27047819|123.50264344|21104|1 +638295.87050754|220659.61721014|125.4765176|21105|1 +638301.05149609|220654.93626519|126.61692469|21106|1 +638306.0901899|220650.38542952|127.85279592|21107|1 +638310.96440815|220645.93688491|125.37581657|21108|1 +638317.36328744|220640.35927324|142.94680711|21109|1 +638316.59309795|220640.93687245|133.39535241|21110|2 +638315.86653072|220641.48175738|124.38490763|21111|3 +638321.44350551|220636.50684578|130.67617341|21112|1 +638326.31078046|220632.0711565|128.72137719|21113|1 +638331.48429354|220627.41569086|131.35116612|21114|1 +638336.26731781|220623.03401721|127.6223444|21115|1 +638341.28796928|220618.48432276|127.65129153|21116|1 +638346.6313329|220613.69012833|131.48395828|21117|1 +638351.65830801|220609.1372583|131.71267036|21118|1 +638356.43679354|220604.76511988|128.41077228|21119|1 +638361.66227237|220600.0599721|130.83188515|21120|1 +638366.85207804|220595.38198005|132.84279899|21121|1 +638371.61860682|220591.01697883|129.24668572|21122|1 +638376.71080308|220586.40956262|129.83750665|21123|1 +638381.79132012|220581.8110046|130.29151705|21124|1 +638386.83043789|220577.24204172|130.11629019|21125|1 +638391.90504866|220572.6485202|130.545716|21126|1 +638396.88386612|220568.13212842|130.2069174|21127|1 +638401.97797423|220563.51555786|130.20808942|21128|1 +638407.02508371|220558.94209118|130.25131478|21129|1 +638412.06059088|220554.37678541|130.10752792|21130|1 +638417.15340397|220549.76193809|130.1530043|21131|1 +638422.360246|220545.08323984|133.34034171|21132|1 +638427.41711517|220540.49375052|132.81268914|21133|1 +638432.31435854|220536.02032989|130.0116452|21134|1 +638437.39863736|220531.41219789|129.97686586|21135|1 +638442.47093367|220526.81194552|129.70518888|21136|1 +638447.54803041|220522.20875621|129.54605409|21137|1 +638452.57430101|220517.65094703|129.33423403|21138|1 +638457.64829964|220513.04993686|129.12544636|21139|1 +638462.72349518|220508.44831316|128.95433088|21140|1 +638467.78961852|220503.85216603|128.56489341|21141|1 +638472.85740094|220499.25498758|128.21309092|21142|1 +638477.92556976|220494.65753805|127.86767876|21143|1 +638482.9925804|220490.06066832|127.48497577|21144|1 +638488.06544599|220485.46053185|127.26480272|21145|1 +638493.14189436|220480.85855928|127.15722768|21146|1 +638498.20894428|220476.26149899|126.7625347|21147|1 +638503.27587736|220471.66431013|126.34924747|21148|1 +638508.34853368|220467.06420868|126.11727047|21149|1 +638513.41887154|220462.46511041|125.7980056|21150|1 +638518.53516813|220457.82325865|125.38973203|21151|1 +638523.55463|220453.26831734|124.91630882|21152|1 +638528.62223391|220448.66942709|124.41632903|21153|1 +638533.74875514|220444.02293888|124.37752202|21154|1 +638538.77293566|220439.46536489|124.03542129|21155|1 +638543.8906469|220434.82114554|123.54105978|21156|1 +638548.96181401|220430.21934566|123.06682731|21157|1 +638554.03531256|220425.61644943|122.67400399|21158|1 +638559.11159422|220421.012679|122.41256826|21159|1 +638564.18962967|220416.4081032|122.2137986|21160|1 +638569.26847877|220411.80325953|122.05270114|21161|1 +638574.39643362|220407.15494208|121.97263145|21162|1 +638579.4760216|220402.54974549|121.83703015|21163|1 +638584.55489069|220397.94363503|121.57660831|21164|1 +638589.68220665|220393.29332053|121.29134144|21165|1 +638594.76277612|220388.68637689|121.08766044|21166|1 +638599.84357993|220384.07812492|120.79667297|21167|1 +638604.92146196|220379.47236501|120.49336064|21168|1 +638610.0516503|220374.8202412|120.27194115|21169|1 +638615.1346217|220370.21034334|120.00664519|21170|1 +638620.21880182|220365.59676868|119.53532418|21171|1 +638625.35242868|220360.93848772|119.07126785|21172|1 +638630.43958594|220356.32229962|118.60675574|21173|1 +638635.52746111|220351.70726144|118.28617932|21174|1 +638640.61655601|220347.09104028|117.95958465|21175|1 +638645.70782796|220342.4714418|117.52074544|21176|1 +638650.84708184|220337.81042521|117.24599887|21177|1 +638655.89301837|220333.23219661|116.83123266|21178|1 +638660.98798144|220328.6101191|116.46184982|21179|1 +638666.12957655|220323.94839719|116.30066864|21180|1 +638671.17789835|220319.36965038|116.01748536|21181|1 +638676.27659271|220314.74451008|115.67386843|21182|1 +638681.37871862|220310.11493389|115.22434148|21183|1 +638686.43052281|220305.53357856|114.98523002|21184|1 +638691.53022839|220300.90971338|114.81720273|21185|1 +638696.6296879|220296.2868525|114.71190662|21186|1 +638701.68401057|220291.70384023|114.52308986|21187|1 +638706.78670234|220287.0775072|114.37451259|21188|1 +638711.8923849|220282.4476068|114.15753935|21189|1 +638716.95073075|220277.86087027|113.96289038|21190|1 +638722.05923044|220273.22842139|113.74641013|21191|1 +638727.11646369|220268.6406274|113.63944901|21192|1 +638732.1775115|220264.04732479|113.43894922|21193|1 +638737.27903037|220259.420832|113.51657254|21194|1 +638742.31562914|220254.85950858|114.10263096|21195|1 +638747.37354552|220250.27122514|114.0771534|21196|1 +638752.50082578|220245.61336788|113.51276811|21197|1 +638757.5612793|220241.00730652|112.24854508|21198|1 +638762.68534388|220236.35533283|111.9219318|21199|1 +638767.76182277|220231.74688713|111.62898166|21200|1 +638772.83895158|220227.13824757|111.3673971|21201|1 +638777.91883028|220222.52688456|111.08729271|21202|1 +638782.99732567|220217.91771171|110.88217924|21203|1 +638788.07678668|220213.30789591|110.69597627|21204|1 +638793.1541759|220208.70097525|110.59097782|21205|1 +638798.19895742|220204.12003188|110.20084272|21206|1 +638803.28573377|220199.50320736|109.9839718|21207|1 +638808.3182669|220194.93740721|109.91796639|21208|1 +638813.4002085|220190.3269902|109.86340217|21209|1 +638818.43395279|220185.76056654|109.83482712|21210|1 +638823.47628194|220181.18480034|109.68165476|21211|1 +638828.5087267|220176.62055697|109.73398656|21212|1 +638833.53526401|220172.06322445|109.91078542|21213|1 +638838.55579837|220167.51280727|110.20578196|21214|1 +638843.58408618|220162.95396373|110.38865488|21215|1 +638848.56072949|220158.442765|110.6400726|21216|1 +638853.60372522|220153.86817829|110.62984995|21217|1 +638858.62652905|220149.30683356|110.21525117|21218|1 +638863.68155298|220144.71987541|110.08687735|21219|1 +638868.70293469|220140.16106112|109.77174247|21220|1 +638873.71916807|220135.60830484|109.56843354|21221|1 +638878.78328486|220131.01272026|109.40912202|21222|1 +638883.76425909|220126.49042517|109.0870108|21223|1 +638888.79200429|220121.92653968|108.82756565|21224|1 +638893.81679197|220117.36626813|108.64264634|21225|1 +638898.81887149|220112.83067595|108.78686108|21226|1 +638903.80953137|220108.3075229|109.09858221|21227|1 +638908.7626091|220103.81685057|109.28462704|21228|1 +638913.77289627|220099.27327009|109.38477927|21229|1 +638918.74044777|220094.76777281|109.4336601|21230|1 +638923.69966715|220090.27136366|109.60631037|21231|1 +638928.66740834|220085.76622458|109.69796078|21232|1 +638933.62644445|220081.27051816|109.91333411|21233|1 +638938.64392497|220076.72071631|110.03734539|21234|1 +638943.56597954|220072.25731756|110.15707786|21235|1 +638948.55316674|220067.73291678|110.11735927|21236|1 +638953.49633285|220063.24805584|110.05033067|21237|1 +638958.45573192|220058.75323343|110.36322383|21238|1 +638963.38264336|220054.27933965|109.99556181|21239|1 +638968.3785052|220049.74721913|109.96716349|21240|1 +638973.27760976|220045.30291768|109.95156441|21241|1 +638978.24126125|220040.79846112|109.80213137|21242|1 +638983.13570117|220036.35960891|109.88446139|21243|1 +638988.0852747|220031.86422579|109.44038529|21244|1 +638993.10528141|220027.29682868|108.34042232|21245|1 +638998.10390186|220022.75205608|107.50013705|21246|1 +639003.16217995|220018.14666527|106.13435722|21247|1 +639008.11807146|220013.64685923|105.79454472|21248|1 +639012.95383844|220009.26455466|106.14871916|21249|1 +639016.90267524|220005.78823535|114.697647|21250|1 +639021.67386326|220001.4709518|115.5726279|21251|1 +639027.50669958|219996.07236913|106.89102882|21252|1 +639032.35628209|219991.67680818|107.18617419|21253|1 +639037.22191125|219987.26516321|107.35710363|21254|1 +639042.09277844|219982.84307484|107.0725995|21255|1 +639046.98151124|219978.40324593|106.66406548|21256|1 +639040.58597759|219980.80396458|106.96410358|21257|1 +639035.67554248|219985.25028683|107.11458772|21258|1 +639030.76238094|219989.69421743|106.87769007|21259|1 +639025.88249034|219994.11006567|106.80482926|21260|1 +639020.87086432|219998.64936627|107.05670276|21261|1 +639015.13896481|220003.93101711|114.44585721|21262|1 +639011.05607211|220007.52158248|106.16775989|21263|1 +639006.17282392|220011.93613866|105.7489102|21264|1 +639001.14686955|220016.49145026|106.24063931|21265|1 +638996.01853358|220021.15251035|107.7648749|21266|1 +638990.9052053|220025.79286444|108.72355319|21267|1 +638985.91814823|220030.3159384|109.45389147|21268|1 +638980.86677166|220034.89356365|109.88714961|21269|1 +638975.92100248|220039.36868981|109.77878391|21270|1 +638970.90187332|220043.91375588|109.94578801|21271|1 +638965.9332838|220048.40672697|109.6111659|21272|1 +638960.89264276|220052.97486584|110.06282296|21273|1 +638955.88133327|220057.51293395|110.23573368|21274|1 +638950.87597992|220062.03841159|109.83614797|21275|1 +638945.8070079|220066.63064592|110.16158922|21276|1 +638940.87580113|220071.09281184|110.06978999|21277|1 +638935.81296489|220075.67238166|109.8289949|21278|1 +638930.83905811|220080.17289907|109.70983915|21279|1 +638925.77286002|220084.75653586|109.54972767|21280|1 +638920.75661458|220089.29501259|109.39755061|21281|1 +638915.7244553|220093.85064058|109.46249561|21282|1 +638910.6673489|220098.42550295|109.25913087|21283|1 +638905.65069561|220102.96529318|109.1812657|21284|1 +638900.55307168|220107.57608633|108.9147512|21285|1 +638895.50921529|220112.13755455|108.59981166|21286|1 +638890.44939445|220116.71638022|108.51477482|21287|1 +638885.31998001|220121.36216191|108.73974758|21288|1 +638880.23371813|220125.97026429|109.07768112|21289|1 +638875.15600348|220130.56961592|109.33502407|21290|1 +638870.03919797|220135.20313993|109.49268918|21291|1 +638864.91754378|220139.84239369|109.75644105|21292|1 +638859.80259176|220144.4748015|109.95839191|21293|1 +638854.68798591|220149.10729435|110.19181999|21294|1 +638849.57659303|220153.73672748|110.41315576|21295|1 +638844.49903336|220158.32929926|110.13079104|21296|1 +638839.41371116|220162.93072551|109.99172948|21297|1 +638834.28416245|220167.57161289|109.80351734|21298|1 +638829.20244466|220172.16955165|109.64628941|21299|1 +638824.12120578|220176.76721549|109.5016933|21300|1 +638818.98059665|220181.42143366|109.5760703|21301|1 +638813.88684925|220186.03396574|109.71226691|21302|1 +638808.74719267|220190.68796693|109.83730139|21303|1 +638803.61448568|220195.33442175|109.86312312|21304|1 +638798.52116142|220199.94784725|110.09993705|21305|1 +638793.38207884|220204.6026035|110.32594231|21306|1 +638788.23941861|220209.26209826|110.67086148|21307|1 +638783.15544683|220213.86620627|110.84002358|21308|1 +638778.02569393|220218.5115944|110.9924611|21309|1 +638772.89254352|220223.1615577|111.26380322|21310|1 +638767.76710771|220227.802813|111.39836271|21311|1 +638762.64024239|220232.44631494|111.60816428|21312|1 +638757.50396261|220237.10195969|112.10530702|21313|1 +638752.37886432|220241.74458243|112.37207267|21314|1 +638747.169844|220246.47629714|113.67748397|21315|1 +638742.04331983|220251.12257876|114.13246176|21316|1 +638736.93181083|220255.75048531|114.20715503|21317|1 +638731.80025165|220260.38602278|113.44248389|21318|1 +638726.69190376|220265.01029644|113.45545057|21319|1 +638721.57941166|220269.64052735|113.64348598|21320|1 +638716.41923594|220274.31440333|113.86631003|21321|1 +638711.26171666|220278.98533684|114.04600175|21322|1 +638706.15343249|220283.61177966|114.23522779|21323|1 +638700.99664002|220288.28309276|114.49706349|21324|1 +638695.84385899|220292.94936659|114.64703603|21325|1 +638690.74210925|220297.56834397|114.71249263|21326|1 +638685.59098959|220302.23344728|114.88837062|21327|1 +638680.48666884|220306.85782789|115.19806397|21328|1 +638675.33379265|220311.52767512|115.62471785|21329|1 +638670.23187847|220316.15043921|115.97883647|21330|1 +638665.08356256|220320.81515568|116.32519742|21331|1 +638659.9867317|220325.43128892|116.51753955|21332|1 +638654.84035314|220330.0951273|116.93351499|21333|1 +638649.74408574|220334.71296371|117.30141886|21334|1 +638644.64945599|220339.32900269|117.64457999|21335|1 +638639.50784414|220343.98815776|118.0305479|21336|1 +638634.41607446|220348.60122683|118.34305968|21337|1 +638629.27749466|220353.25670991|118.65486453|21338|1 +638624.18765126|220357.8696192|119.09293169|21339|1 +638619.09917737|220362.48184266|119.57496835|21340|1 +638614.01225084|220367.09204229|120.0072312|21341|1 +638608.87855128|220371.74250393|120.27050868|21342|1 +638603.7938128|220376.3493219|120.59081535|21343|1 +638598.71344636|220380.95210563|120.90508517|21344|1 +638593.58194656|220385.60052173|121.16317226|21345|1 +638588.54683832|220390.16112749|121.38416386|21346|1 +638583.41768723|220394.80892021|121.76162065|21347|1 +638578.33678469|220399.41205665|122.06425394|21348|1 +638573.25544404|220404.01418063|122.25458689|21349|1 +638568.17347191|220408.61578725|122.35760407|21350|1 +638563.04371943|220413.26070339|122.4614398|21351|1 +638558.01029797|220417.81863322|122.589209|21352|1 +638552.88412693|220422.46267133|122.88111734|21353|1 +638547.80871269|220427.06228099|123.29743695|21354|1 +638542.78336368|220431.61737829|123.78155721|21355|1 +638537.66158469|220436.25886577|124.1868077|21356|1 +638532.58536109|220440.85726108|124.44740627|21357|1 +638527.55434414|220445.4130358|124.57551963|21358|1 +638522.48253184|220450.00948489|124.99879697|21359|1 +638517.41352203|220454.60441893|125.50344625|21360|1 +638512.39040335|220459.15641811|125.90022282|21361|1 +638507.31731803|220463.75254511|126.20515366|21362|1 +638502.28939495|220468.30647062|126.40825794|21363|1 +638497.26728814|220472.8574857|126.7986814|21364|1 +638492.19858609|220477.45105859|127.21629396|21365|1 +638487.2156894|220481.96299221|127.32323648|21366|1 +638482.18763919|220486.51696739|127.51984813|21367|1 +638477.16443599|220491.06827393|127.8537819|21368|1 +638472.14471065|220495.6175312|128.27506866|21369|1 +638467.12190577|220500.16848434|128.60886291|21370|1 +638462.09945255|220504.71957951|128.95510293|21371|1 +638457.07023876|220509.27479905|129.13898045|21372|1 +638452.04307841|220513.82886611|129.37899418|21373|1 +638447.05954891|220518.34226172|129.52824119|21374|1 +638442.0789279|220522.85395921|129.75211634|21375|1 +638437.04568261|220527.41221636|129.88571775|21376|1 +638432.01604713|220531.96830213|130.10666285|21377|1 +638427.24295317|220536.34416058|134.49117609|21378|1 +638422.20853085|220540.89060031|133.59721026|21379|1 +638417.71092566|220545.09009575|143.82208567|21380|1 +638416.9759701|220545.58182201|129.93169644|21381|2 +638412.85086662|220549.51702126|145.9953155|21382|1 +638412.37913151|220549.83542462|137.30157761|21383|2 +638411.98252124|220550.10312155|129.99235332|21384|3 +638406.99395084|220554.62132891|130.15881791|21385|1 +638401.94368072|220559.19261399|130.09878425|21386|1 +638396.94705951|220563.71679134|130.15898534|21387|1 +638391.9563916|220568.23706409|130.33743992|21388|1 +638386.96945665|220572.75489361|130.59049475|21389|1 +638381.92082134|220577.31636228|129.86493759|21390|1 +638376.90658637|220581.85408856|129.73138268|21391|1 +638372.19380218|220586.16781737|133.51752194|21392|1 +638367.13988911|220590.73368149|132.76019921|21393|1 +638362.13439195|220595.26528686|132.7690452|21394|1 +638357.19152084|220599.74304186|133.00893801|21395|1 +638352.15788311|220604.29562106|132.65627977|21396|1 +638347.14482172|220608.81676794|131.28374684|21397|1 +638341.9558378|220613.4845987|128.89572039|21398|1 +638336.93414154|220618.0222391|128.21388157|21399|1 +638331.89717164|220622.57177543|127.37642404|21400|1 +638322.00141152|220631.53201825|127.50530945|21401|1 +638318.06817035|220635.25616973|140.60427564|21402|1 +638313.0218302|220639.80450012|138.99270567|21403|1 +638311.84636028|220640.6881573|124.51745795|21404|2 +638307.03750474|220645.06857851|126.67638165|21405|1 +638301.93725889|220649.66166993|124.7376682|21406|1 +638296.96454585|220654.15899601|124.37770806|21407|1 +638291.983072|220658.67042295|124.50909565|21408|1 +638286.92170977|220663.23616456|123.19816839|21409|1 +638282.00234839|220667.69394927|123.53942266|21410|1 +638277.19778539|220672.05703252|124.62415862|21411|1 +638272.0358958|220676.70828405|122.86696934|21412|1 +638267.26395464|220681.04646668|124.32285548|21413|1 +638262.85612571|220685.10916847|130.12303398|21414|1 +638262.18650489|220685.62718886|123.04233573|21415|2 +638257.32695043|220690.03331571|123.58448047|21416|1 +638252.81447817|220694.17602988|128.20297059|21417|1 +638253.7656006|220690.36053908|125.18362327|21418|1 +638259.38248995|220685.34433799|131.64437672|21419|1 +638258.57577456|220685.97002856|123.16828179|21420|2 +638263.61730231|220681.40652563|124.1014453|21421|1 +638270.45146355|220675.4535415|143.94192975|21422|1 +638268.57692537|220676.90031179|123.67386124|21423|2 +638273.49619943|220672.43191269|123.34652243|21424|1 +638279.04588138|220667.46622131|128.97213448|21425|1 +638278.67841699|220667.74834386|124.87959471|21426|2 +638284.60701918|220662.50100792|135.47067175|21427|1 +638283.49624453|220663.35146192|122.91105046|21428|2 +638289.17436861|220658.29729955|130.78252062|21429|1 +638288.6295023|220658.71328399|124.52631324|21430|2 +638293.58855687|220654.20159138|123.61845986|21431|1 +638300.24836183|220648.41341651|144.0045028|21432|1 +638298.4906257|220649.74735806|123.17765798|21433|2 +638303.81291181|220644.9608138|126.63912803|21434|1 +638310.13408397|220639.42284516|142.46842605|21435|1 +638308.65577265|220640.53747343|124.36942017|21436|2 +638315.08872334|220634.91865385|141.8429281|21437|1 +638318.84094235|220631.31478237|125.99130582|21438|1 +638323.87899077|220626.75282447|126.79958368|21439|1 +638329.10697788|220622.03459015|128.88359087|21440|1 +638334.06214464|220617.52754242|128.06840179|21441|1 +638339.05216938|220612.9947148|127.71967819|21442|1 +638344.3195595|220608.25029671|130.53966984|21443|1 +638349.48140801|220603.59309531|132.68151549|21444|1 +638354.50979501|220599.02563467|132.31520223|21445|1 +638359.52784682|220594.46575327|131.80567882|21446|1 +638364.52289837|220589.93143042|131.67513769|21447|1 +638369.69213104|220585.25429322|132.75518555|21448|1 +638374.64421445|220580.75130515|132.01414093|21449|1 +638379.57166352|220576.25606914|130.10253286|21450|1 +638384.66063667|220571.63669927|129.98065168|21451|1 +638389.69477504|220567.07583823|130.56654268|21452|1 +638394.77524299|220562.46301088|130.35160653|21453|1 +638399.85462464|220557.85108804|130.13068934|21454|1 +638404.90848258|220553.26747679|130.32589642|21455|1 +638410.78847139|220548.12447141|145.73813069|21456|1 +638409.93104844|220548.70545997|129.9786518|21457|2 +638415.92033557|220543.48292585|146.96042131|21458|1 +638415.28263252|220543.91124558|134.93514057|21459|2 +638415.02034018|220544.08741689|129.98906049|21460|3 +638420.11454359|220539.46639509|130.11828077|21461|1 +638425.20128493|220534.85065604|130.12927547|21462|1 +638430.24152712|220530.27773181|130.19417396|21463|1 +638435.3152689|220525.67097649|129.98096795|21464|1 +638440.3917199|220521.062617|129.83662298|21465|1 +638445.41415776|220516.50169946|129.57103866|21466|1 +638450.53739266|220511.85088432|129.42377293|21467|1 +638455.61017448|220507.24521979|129.23014716|21468|1 +638460.63755719|220502.68159345|129.1083869|21469|1 +638465.74973863|220498.03776464|128.71863317|21470|1 +638470.81550949|220493.43642071|128.3632495|21471|1 +638475.88304993|220488.83401675|128.05176091|21472|1 +638480.99587747|220484.18959718|127.66297456|21473|1 +638486.06837238|220479.58440703|127.48934761|21474|1 +638491.13902342|220474.98025938|127.26593754|21475|1 +638496.20496949|220470.37851024|126.89280608|21476|1 +638501.31860757|220465.73327096|126.49905258|21477|1 +638511.50909725|220456.48058447|126.07064067|21478|1 +638516.62316983|220451.8346366|125.65300021|21479|1 +638521.6873133|220447.232563|125.12485464|21480|1 +638526.80345968|220442.58504332|124.73288709|21481|1 +638531.87865918|220437.97830899|124.63630674|21482|1 +638536.99912074|220433.3289718|124.41374314|21483|1 +638542.1163537|220428.68023036|124.00413011|21484|1 +638547.18542317|220424.0743776|123.53340442|21485|1 +638552.30350571|220419.42416305|123.06824118|21486|1 +638557.42573538|220414.77275238|122.80972621|21487|1 +638562.50288961|220410.16415319|122.70844847|21488|1 +638567.62835411|220405.51206731|122.63188555|21489|1 +638572.75291649|220400.85963174|122.4620072|21490|1 +638577.82969015|220396.25019983|122.26779541|21491|1 +638582.9538545|220391.59617776|121.94241928|21492|1 +638588.07868627|220386.94116131|121.58621705|21493|1 +638593.1566804|220382.3289079|121.25532496|21494|1 +638598.23243351|220377.71969008|121.00586062|21495|1 +638603.35966181|220373.06226378|120.63196641|21496|1 +638608.48805154|220368.40425122|120.29602345|21497|1 +638613.56953034|220363.7891402|119.99116703|21498|1 +638618.70021641|220359.12795173|119.56850361|21499|1 +638623.78446201|220354.50830559|119.10172187|21500|1 +638628.86989474|220349.88843613|118.70389419|21501|1 +638634.00350984|220345.22723788|118.49484607|21502|1 +638639.09102583|220340.6061758|118.15384295|21503|1 +638644.22897813|220335.93777459|117.68318236|21504|1 +638649.31894378|220331.31487696|117.37402852|21505|1 +638654.45918978|220326.64533263|116.97920532|21506|1 +638659.55297453|220322.01788071|116.5832101|21507|1 +638664.6466103|220317.39203541|116.30616599|21508|1 +638669.74191692|220312.76436556|116.00440706|21509|1 +638674.83913743|220308.13456975|115.67168252|21510|1 +638679.98715477|220303.45790043|115.27270142|21511|1 +638685.03947054|220298.86877195|114.93837697|21512|1 +638690.18621648|220294.19597483|114.75881548|21513|1 +638695.28441906|220289.56808019|114.65218922|21514|1 +638700.33650083|220284.98148849|114.50573275|21515|1 +638705.44141979|220280.34524244|114.21847529|21516|1 +638710.54540981|220275.71100587|114.02518437|21517|1 +638715.60305939|220271.1185783|113.81672226|21518|1 +638720.75584236|220266.44108525|113.69574336|21519|1 +638725.81666746|220261.84755845|113.48136532|21520|1 +638730.85563442|220257.28285184|113.99107476|21521|1 +638735.94998114|220252.66511105|114.27330926|21522|1 +638741.01310992|220248.0697169|114.07797195|21523|1 +638746.11069195|220243.43183014|112.97802759|21524|1 +638751.24179544|220238.76973762|112.37510505|21525|1 +638756.27144716|220234.2020695|111.97055219|21526|1 +638761.35087952|220229.58947961|111.58250998|21527|1 +638766.4260046|220224.98273154|111.35058879|21528|1 +638771.44813124|220220.4259055|111.27038887|21529|1 +638776.52616422|220215.81666908|111.0511367|21530|1 +638781.55824192|220211.24894814|110.8212805|21531|1 +638786.64061407|220206.63561648|110.5898151|21532|1 +638791.67623247|220202.06475407|110.3662376|21533|1 +638796.71847045|220197.48672555|110.04914935|21534|1 +638801.7543112|220192.9165837|109.90031162|21535|1 +638806.78737381|220188.35003959|109.83867805|21536|1 +638811.82676037|220183.77667276|109.68979382|21537|1 +638816.86906235|220179.20042334|109.52222232|21538|1 +638821.86238465|220174.66911898|109.39897378|21539|1 +638826.89665168|220170.10269922|109.4367855|21540|1 +638831.93017757|220165.53740774|109.51191595|21541|1 +638836.91207986|220161.01983941|109.66206522|21542|1 +638841.88864199|220156.50841833|109.91772455|21543|1 +638846.86421186|220151.9982742|110.20418205|21544|1 +638851.91623852|220147.41363205|110.0735107|21545|1 +638856.87577385|220142.91235817|109.90535318|21546|1 +638861.90282438|220138.34678631|109.48830804|21547|1 +638866.91609057|220133.7967189|109.313723|21548|1 +638871.91550813|220129.26205781|109.36904996|21549|1 +638876.95175547|220124.68789803|108.93315942|21550|1 +638881.92888343|220120.16963277|108.68300675|21551|1 +638886.95625812|220115.60597842|108.44583005|21552|1 +638891.86975951|220111.14868006|108.46141983|21553|1 +638896.8666538|220106.61835071|108.68349974|21554|1 +638901.52303785|220102.44327339|112.65468854|21555|1 +638906.72184518|220097.68279144|109.08593179|21556|1 +638911.68707709|220093.17919065|109.15053263|21557|1 +638916.65984774|220088.66789623|109.14653287|21558|1 +638921.61972909|220084.17051494|109.32216901|21559|1 +638926.52422704|220079.72453698|109.594925|21560|1 +638931.45530846|220075.25082717|109.57558661|21561|1 +638936.42158169|220070.74746636|109.73758635|21562|1 +638941.32558152|220066.30267387|110.07070156|21563|1 +638946.23147457|220061.84934497|109.85559798|21564|1 +638951.22966553|220057.31347997|109.73137276|21565|1 +638956.10436277|220052.89333248|109.91176211|21566|1 +638961.05530499|220048.40070763|109.82152558|21567|1 +638965.98498012|220043.92408591|109.46814179|21568|1 +638970.90199152|220039.46727342|109.78567653|21569|1 +638975.81622268|220035.00731988|109.64794513|21570|1 +638980.7691049|220030.5139693|109.64268962|21571|1 +638985.6625251|220026.07005184|109.2781251|21572|1 +638990.67272578|220021.51842815|108.7649647|21573|1 +638995.65190941|220016.98730362|107.63903117|21574|1 +639000.73391907|220012.3572499|106.05289226|21575|1 +639005.65191333|220007.89009955|105.61270429|21576|1 +639010.49186117|220003.50884473|106.39275126|21577|1 +639015.28697908|219999.16777464|107.13712592|21578|1 +639020.23699152|219994.67444821|106.92739877|21579|1 +639025.09804674|219990.26103211|106.65970294|21580|1 +639029.98010991|219985.83205991|106.67316261|21581|1 +639034.85507389|219981.41057934|106.77232885|21582|1 +639035.17402032|219978.3242083|106.45513828|21583|1 +639030.2804285|219982.75593898|106.47571381|21584|1 +639025.39175243|219987.18297601|106.47714628|21585|1 +639020.48471613|219991.62901332|106.66928377|21586|1 +639015.51049528|219996.13834038|107.05452615|21587|1 +639010.68204579|220000.50490942|106.57855425|21588|1 +639005.86868374|220004.85051136|105.51094286|21589|1 +639000.96307963|220009.29629282|105.78696377|21590|1 +638995.83222535|220013.96173444|107.31656649|21591|1 +638990.78594208|220018.54704712|108.56558112|21592|1 +638985.80178203|220023.06918252|109.25803326|21593|1 +638980.87755463|220027.53012811|109.39348573|21594|1 +638975.89464012|220032.04584219|109.65538655|21595|1 +638970.94439131|220036.52820215|109.6137704|21596|1 +638966.00541246|220040.99920192|109.47889464|21597|1 +638961.04686781|220045.4907589|109.57269375|21598|1 +638956.09329001|220049.97750572|109.64135947|21599|1 +638951.1060878|220054.4930255|109.57095432|21600|1 +638946.16808795|220058.96419541|109.52118982|21601|1 +638941.09676375|220063.5614542|109.89434918|21602|1 +638936.17620647|220068.01505168|109.70137453|21603|1 +638931.21462871|220072.5049732|109.43770638|21604|1 +638926.23611027|220077.0129213|109.39076961|21605|1 +638921.22402664|220081.54937421|109.18678165|21606|1 +638916.26173915|220086.04077548|108.99043046|21607|1 +638911.23431282|220090.59396654|109.01570338|21608|1 +638906.26366508|220095.09477973|108.96777133|21609|1 +638901.00187164|220099.89791488|112.03534836|21610|1 +638895.96266016|220104.45758431|111.71827871|21611|1 +638891.24479267|220108.68968432|108.45875022|21612|1 +638886.2396508|220113.22061105|108.31567029|21613|1 +638881.16118218|220117.82244529|108.53211333|21614|1 +638876.13116528|220122.38082489|108.78663784|21615|1 +638871.04554993|220126.99129314|109.17740546|21616|1 +638866.04574109|220131.51785051|109.07134661|21617|1 +638860.97665294|220136.11127179|109.29443111|21618|1 +638855.91040627|220140.70204792|109.51144156|21619|1 +638850.83442482|220145.30395163|109.91521307|21620|1 +638845.7825503|220149.87952571|109.98317185|21621|1 +638840.74451797|220154.43839193|109.85210051|21622|1 +638835.72486526|220158.97714972|109.44090619|21623|1 +638830.63950376|220163.57917024|109.32886629|21624|1 +638825.55475687|220168.18078879|109.22947681|21625|1 +638820.46040293|220172.79351047|109.32334103|21626|1 +638815.40737123|220177.37074806|109.57852597|21627|1 +638810.31618144|220181.98076321|109.68521734|21628|1 +638805.22744589|220186.58840696|109.77967688|21629|1 +638800.14139981|220191.19338912|109.85564449|21630|1 +638795.00142947|220195.84904621|110.07646866|21631|1 +638789.90553968|220200.46634589|110.42721075|21632|1 +638784.77269819|220205.11479584|110.58652227|21633|1 +638779.63536763|220209.7690149|110.88341637|21634|1 +638774.55102335|220214.374485|111.1228534|21635|1 +638769.42722485|220219.01376549|111.20227197|21636|1 +638764.30151506|220223.65578668|111.36313689|21637|1 +638759.22378135|220228.25490649|111.5721385|21638|1 +638754.04167662|220232.95171174|112.02915338|21639|1 +638748.92036439|220237.59008154|112.2161749|21640|1 +638743.78962126|220242.24077754|112.70928997|21641|1 +638738.63547998|220246.92184635|113.94540304|21642|1 +638733.51536899|220251.56115069|114.29589397|21643|1 +638728.40742146|220256.18551892|114.32845019|21644|1 +638723.27602103|220260.82166012|113.59033563|21645|1 +638718.16454014|220265.45117128|113.77960817|21646|1 +638713.05500003|220270.07869579|113.9504632|21647|1 +638707.89793013|220274.74967688|114.14998631|21648|1 +638702.74240893|220279.41918353|114.34381672|21649|1 +638697.636266|220284.0439728|114.54080044|21650|1 +638692.48465154|220288.70927014|114.67937831|21651|1 +638687.38126568|220293.33141863|114.86455807|21652|1 +638682.2294632|220297.99844167|115.12897037|21653|1 +638677.07792191|220302.66601351|115.45635569|21654|1 +638671.97519243|220307.28990358|115.83000805|21655|1 +638666.82751676|220311.95337062|116.10834511|21656|1 +638661.68099747|220316.61595871|116.39967674|21657|1 +638656.53374737|220321.28122265|116.8539476|21658|1 +638651.38958672|220325.94223307|117.19001148|21659|1 +638646.24606634|220330.60359805|117.60154067|21660|1 +638641.10404886|220335.26368359|118.01981365|21661|1 +638635.96339573|220339.92285563|118.4635642|21662|1 +638630.82543584|220344.57720335|118.71407034|21663|1 +638625.68842956|220349.23085548|118.97753385|21664|1 +638620.5518859|220353.88633306|119.42268897|21665|1 +638615.41688805|220358.53988011|119.82455361|21666|1 +638610.23527584|220363.2349969|120.1700681|21667|1 +638605.15063712|220367.84167841|120.47339903|21668|1 +638600.01935972|220372.49226826|120.9078478|21669|1 +638594.84415667|220377.18068877|121.18006428|21670|1 +638589.7615531|220381.78439432|121.39058209|21671|1 +638584.63279605|220386.43210777|121.77632676|21672|1 +638579.50530653|220391.07899495|122.18749318|21673|1 +638574.37779474|220395.72444757|122.48035031|21674|1 +638569.25068129|220400.3691634|122.74237205|21675|1 +638564.12288651|220405.01319617|122.89856748|21676|1 +638559.04243372|220409.61353063|122.99205033|21677|1 +638553.91406632|220414.2572524|123.08023117|21678|1 +638548.79012896|220418.89997392|123.41253713|21679|1 +638543.71630164|220423.49833781|123.83174029|21680|1 +638538.64417536|220428.09570582|124.29483853|21681|1 +638533.52077386|220432.73696065|124.54688877|21682|1 +638528.44327006|220437.3352871|124.69175463|21683|1 +638523.3695486|220441.93219539|124.99925276|21684|1 +638518.25099678|220446.57108821|125.4147352|21685|1 +638513.18358991|220451.16483017|125.92884439|21686|1 +638508.11214514|220455.75999934|126.2619224|21687|1 +638502.98821833|220460.40063042|126.42221991|21688|1 +638497.96230449|220464.95334957|126.65996401|21689|1 +638492.84882727|220469.58868552|127.15814855|21690|1 +638487.77674474|220474.18377172|127.43577868|21691|1 +638482.75023493|220478.73665666|127.64245485|21692|1 +638477.67755242|220483.33207666|127.90157443|21693|1 +638472.60876581|220487.92526766|128.26703192|21694|1 +638467.58563841|220492.47626546|128.56740489|21695|1 +638462.51929167|220497.06795793|128.98300826|21696|1 +638457.44658152|220501.6636389|129.22394287|21697|1 +638452.41405152|220506.22070426|129.28712984|21698|1 +638447.38872234|220510.77348114|129.53130147|21699|1 +638442.35918223|220515.32900264|129.68805501|21700|1 +638437.33345758|220519.88222605|129.93838441|21701|1 +638432.30592074|220524.43670852|130.15746915|21702|1 +638427.2675066|220528.99844383|130.16439898|21703|1 +638422.22741581|220533.56155135|130.15887372|21704|1 +638412.18267005|220542.65352053|129.97540548|21705|1 +638408.27802955|220546.43368865|149.93421784|21706|1 +638407.32916403|220547.07960993|132.57241495|21707|2 +638402.20312869|220551.6914222|130.19890857|21708|1 +638397.21574606|220556.20902116|130.37581905|21709|1 +638392.20562414|220560.74261708|130.17846326|21710|1 +638387.25619957|220565.234044|131.02192974|21711|1 +638382.19788041|220569.80211436|130.07633906|21712|1 +638377.44230703|220574.14658467|133.25115627|21713|1 +638372.3385843|220578.74751649|131.63219139|21714|1 +638367.47948307|220583.16483568|133.10456028|21715|1 +638362.45781537|220587.70792258|132.82487446|21716|1 +638357.4621372|220592.22384386|132.2532803|21717|1 +638352.47165104|220596.73652226|131.7998187|21718|1 +638347.57485805|220601.18946872|133.38767845|21719|1 +638342.5318168|220605.73304349|131.57705046|21720|1 +638337.45796393|220610.30855025|130.08974292|21721|1 +638332.46421677|220614.82558714|129.74764219|21722|1 +638327.53899089|220619.29202138|130.33863985|21723|1 +638322.45640692|220623.87608427|128.90116193|21724|1 +638317.76137838|220628.16277274|131.83627236|21725|1 +638317.29883716|220628.50969003|125.97105585|21726|2 +638313.63761234|220632.02599935|142.41901501|21727|1 +638312.20014693|220633.10790391|124.49689172|21728|2 +638309.26017909|220636.0694812|148.97461868|21729|1 +638302.38063631|220642.0062131|125.14780213|21730|1 +638297.42413952|220646.49110316|124.93477284|21731|1 +638294.40317139|220649.50102067|147.37785713|21732|1 +638292.36792956|220651.05235201|123.58422002|21733|2 +638287.36291776|220655.57524276|122.8861031|21734|1 +638282.43302122|220660.04108813|123.08233337|21735|1 +638277.68016848|220664.37104433|125.27162737|21736|1 +638272.72160343|220668.85242766|124.6208844|21737|1 +638267.75440247|220673.34748993|124.4428856|21738|1 +638262.89460716|220677.75327787|124.92108063|21739|1 +638257.83327609|220682.31564627|123.28247039|21740|1 +638253.34251619|220686.43483254|127.6432548|21741|1 +638252.89860707|220686.78027578|123.02747149|21742|2 +638253.9680046|220682.89350073|129.62766787|21743|1 +638258.45401117|220678.75396497|124.23754889|21744|1 +638263.44739763|220674.21970013|124.17072493|21745|1 +638268.37683029|220669.7351163|123.4270479|21746|1 +638273.43453422|220665.15166956|124.10495207|21747|1 +638278.53145946|220660.53860419|125.26745088|21748|1 +638284.22394717|220655.46969919|133.28851221|21749|1 +638283.55035476|220655.98607138|125.59783137|21750|2 +638288.29953462|220651.64011784|122.83391083|21751|1 +638295.55848814|220645.3735919|149.00330536|21752|1 +638299.94149317|220641.30994738|142.18980994|21753|1 +638298.51002696|220642.3975592|125.0528868|21754|2 +638305.38104199|220636.43644218|147.44642983|21755|1 +638303.44488527|220637.90280379|123.8841651|21756|2 +638310.27262039|220631.98633362|146.71718916|21757|1 +638313.79343897|220628.55994559|128.13186781|21758|1 +638318.71749807|220624.0740535|126.88835053|21759|1 +638323.95396638|220619.36231842|130.32280823|21760|1 +638328.89828078|220614.85399427|128.74947786|21761|1 +638333.83511072|220610.35879279|127.69205192|21762|1 +638339.02792003|220605.67422448|130.14490245|21763|1 +638344.1341925|220601.04568258|130.83725228|21764|1 +638349.17760851|220596.4806317|132.05790579|21765|1 +638353.98440273|220592.07141912|128.49745553|21766|1 +638359.35673724|220587.25117435|133.2261438|21767|1 +638364.33458346|220582.72676969|132.91577142|21768|1 +638369.32616482|220578.18347996|132.08298338|21769|1 +638374.4211511|220573.57572673|133.63533824|21770|1 +638379.23280003|220569.16015568|129.91705544|21771|1 +638384.35332415|220564.51571103|130.36915898|21772|1 +638389.34181852|220559.98407344|130.25742604|21773|1 +638394.38212242|220555.40646379|130.22829288|21774|1 +638399.46689042|220550.78801191|130.15744125|21775|1 +638404.50691859|220546.2111099|130.16596167|21776|1 +638410.8205745|220540.76049299|153.0658283|21777|1 +638410.06379729|220541.2732697|138.94562938|21778|2 +638409.5817849|220541.59987139|129.95211383|21779|3 +638415.48206502|220536.44573858|146.47165017|21780|1 +638415.02398344|220536.75338279|137.70163771|21781|2 +638414.61835556|220537.02579948|129.93588224|21782|3 +638419.71016783|220532.40363909|130.08423627|21783|1 +638424.74803224|220527.82930773|130.1430793|21784|1 +638429.77804718|220523.26040955|130.06468393|21785|1 +638434.85208966|220518.65075579|129.92036687|21786|1 +638439.9263559|220514.04113697|129.79498823|21787|1 +638444.99777768|220509.43348414|129.61990089|21788|1 +638450.06685843|220504.82741338|129.40132775|21789|1 +638455.13870938|220500.21975474|129.25786645|21790|1 +638460.16475461|220495.65444337|129.17998268|21791|1 +638465.27110289|220491.01154577|128.71555428|21792|1 +638470.33357424|220486.40962931|128.34789227|21793|1 +638475.39984163|220481.80549395|128.08030806|21794|1 +638480.46545009|220477.20172911|127.79415752|21795|1 +638485.53339677|220472.59668772|127.57688662|21796|1 +638490.59888566|220467.99295336|127.28483875|21797|1 +638495.66036527|220463.39116102|126.85553386|21798|1 +638500.72602362|220458.78711791|126.55130996|21799|1 +638505.79537955|220454.18125685|126.37220426|21800|1 +638510.9128582|220449.53188229|126.20402814|21801|1 +638515.9740759|220444.92940395|125.70051368|21802|1 +638521.0362016|220440.32610493|125.19714805|21803|1 +638526.15016532|220435.67746339|124.82999763|21804|1 +638531.22177071|220431.07017664|124.70195868|21805|1 +638536.29094476|220426.46355388|124.4491271|21806|1 +638541.40712496|220421.8134438|124.12669962|21807|1 +638546.4747714|220417.20644302|123.73060208|21808|1 +638551.59046289|220412.55531518|123.29013506|21809|1 +638556.66351933|220407.94640504|123.13820914|21810|1 +638561.73821633|220403.33731306|123.09268625|21811|1 +638566.8600177|220398.68464829|122.97819068|21812|1 +638571.98026029|220394.03117079|122.68288719|21813|1 +638577.05316274|220389.42040304|122.36941732|21814|1 +638582.1743056|220384.76503252|121.98733755|21815|1 +638587.29634738|220380.10854556|121.58068249|21816|1 +638592.37224622|220375.4958304|121.33052052|21817|1 +638597.49300391|220370.84174124|121.02457579|21818|1 +638602.56988275|220366.22651987|120.64366805|21819|1 +638607.64792352|220361.61078628|120.30670189|21820|1 +638612.77492862|220356.95111295|120.00809627|21821|1 +638617.90313661|220352.28950586|119.641197|21822|1 +638622.93174787|220347.87610044|132.10932601|21823|1 +638628.06755464|220343.04932566|118.87548406|21824|1 +638633.19853702|220338.38712954|118.66593365|21825|1 +638638.28338926|220333.76537573|118.3431248|21826|1 +638643.37122502|220329.13868334|117.83934059|21827|1 +638648.5073739|220324.46980929|117.46851597|21828|1 +638653.59722874|220319.84267502|117.07782275|21829|1 +638658.6892176|220315.2130677|116.64365304|21830|1 +638663.78138282|220310.58453054|116.30970996|21831|1 +638668.87447819|220305.95553066|116.0072627|21832|1 +638673.96952795|220301.32437842|115.67384983|21833|1 +638679.11458373|220296.64759312|115.31794526|21834|1 +638684.16369008|220292.05869879|115.03284581|21835|1 +638689.30917261|220287.38306377|114.80268266|21836|1 +638694.35821122|220282.79576613|114.64281303|21837|1 +638699.45458759|220278.16648766|114.56061323|21838|1 +638704.55489469|220273.53226222|114.36630842|21839|1 +638709.65808371|220268.89472881|114.11610924|21840|1 +638714.76244302|220264.25629266|113.8787279|21841|1 +638719.86375476|220259.62249146|113.79772803|21842|1 +638724.84719196|220255.10446722|114.44695482|21843|1 +638729.94968709|220250.4696269|114.3787635|21844|1 +638735.06705032|220245.81639174|113.91150736|21845|1 +638740.16091858|220241.17674428|112.81703245|21846|1 +638745.23615849|220236.56151495|112.33427955|21847|1 +638750.35370057|220231.91057111|112.06772785|21848|1 +638755.42527392|220227.30119826|111.79130696|21849|1 +638760.50104677|220222.68732405|111.45891728|21850|1 +638765.52605154|220218.12082233|111.23470726|21851|1 +638770.59655894|220213.51432399|111.11458412|21852|1 +638775.67032704|220208.90441008|110.95720736|21853|1 +638780.70061728|220204.33310378|110.73304385|21854|1 +638785.78388124|220199.71303875|110.45125584|21855|1 +638790.81870488|220195.13746054|110.21469306|21856|1 +638795.90015193|220190.52049296|110.05164222|21857|1 +638800.93730182|220185.94318581|109.84632411|21858|1 +638805.92533979|220181.41103598|109.69185881|21859|1 +638811.00838066|220176.79353934|109.60388261|21860|1 +638816.01161848|220172.24506376|109.24365272|21861|1 +638821.04722132|220167.67120909|109.2064084|21862|1 +638826.04515268|220163.1296087|109.01404767|21863|1 +638831.02199328|220158.61188116|109.2074316|21864|1 +638836.03236465|220154.06694433|109.66161874|21865|1 +638841.00913975|220149.54964565|109.88559621|21866|1 +638846.00016016|220145.01689244|109.90397652|21867|1 +638851.0229743|220140.44963066|109.46180728|21868|1 +638856.03416818|220135.89557921|109.2372717|21869|1 +638861.00174004|220131.38062802|108.97503602|21870|1 +638866.00134289|220126.83999014|108.98643999|21871|1 +638870.95816021|220122.33745691|108.94121476|21872|1 +638875.9425081|220117.80558094|108.54134999|21873|1 +638880.96879916|220113.23727648|108.27251935|21874|1 +638885.92730061|220108.73403534|108.2947599|21875|1 +638890.90094142|220104.21491397|108.14273167|21876|1 +638895.5160383|220100.07831194|112.64801917|21877|1 +638900.77319003|220095.2575447|108.88092994|21878|1 +638905.7447485|220090.74150724|108.82720288|21879|1 +638910.66332417|220086.27449617|108.85239209|21880|1 +638915.62691308|220081.76750853|108.94688884|21881|1 +638920.49301464|220077.34919203|109.06245411|21882|1 +638925.46568188|220072.83318889|109.09406155|21883|1 +638930.32700284|220068.42041052|109.30752801|21884|1 +638935.28839399|220063.91675471|109.51189734|21885|1 +638940.16082268|220059.49280543|109.63722018|21886|1 +638945.11424172|220054.99129851|109.4294557|21887|1 +638950.01611443|220050.53726845|109.28087843|21888|1 +638954.93989121|220046.06728145|109.45014285|21889|1 +638959.82334294|220041.63298369|109.54813707|21890|1 +638964.75054827|220037.15365779|109.21208249|21891|1 +638969.61414582|220032.74047375|109.56259203|21892|1 +638974.51591904|220028.28807997|109.54104911|21893|1 +638979.39683786|220023.85142428|109.26216325|21894|1 +638984.21617473|220019.49042029|110.59094992|21895|1 +638989.27472839|220014.87184295|108.62251729|21896|1 +638994.24770703|220010.34191757|107.5506643|21897|1 +638999.29299609|220005.73855757|105.84203959|21898|1 +639004.24532697|220001.23675282|105.53360199|21899|1 +639009.00547562|219996.92033565|106.12517636|21900|1 +639013.83949955|219992.53980643|106.95186244|21901|1 +639018.7169397|219988.10412221|106.49775902|21902|1 +639023.61397771|219983.65434679|106.34341464|21903|1 +639028.48834773|219979.22793593|106.41677775|21904|1 +639027.09012392|219977.75037181|106.26842372|21905|1 +639022.11490729|219982.25405455|106.18177767|21906|1 +639017.22364375|219986.68349133|106.25114102|21907|1 +639012.19313251|219991.24411739|106.71954127|21908|1 +639002.43416559|220000.0637435|105.39251264|21909|1 +638997.43342005|220004.60064834|106.12952959|21910|1 +638992.28897975|220009.27956544|107.82115065|21911|1 +638987.28651147|220013.81948143|108.67572345|21912|1 +638982.21758213|220018.41643432|109.2639678|21913|1 +638977.31695361|220022.85264413|109.19043725|21914|1 +638972.29496578|220027.40211479|109.37642627|21915|1 +638967.33915101|220031.88978033|109.41666576|21916|1 +638962.41081837|220036.34933851|109.19650201|21917|1 +638957.398204|220040.89015054|109.36955226|21918|1 +638952.24455533|220045.58420383|111.61391278|21919|1 +638947.49113741|220049.8565325|109.05480805|21920|1 +638942.47556192|220054.40147443|109.34500487|21921|1 +638937.50063736|220058.9043881|109.21360798|21922|1 +638932.52767085|220063.40552955|109.08192273|21923|1 +638927.55341383|220067.9082947|108.98714693|21924|1 +638922.57798064|220072.41258006|108.92928058|21925|1 +638917.60875743|220076.91061895|108.82148229|21926|1 +638912.63938075|220081.40910393|108.73817558|21927|1 +638907.6222896|220085.95100524|108.66551941|21928|1 +638902.60021148|220090.49849361|108.67966741|21929|1 +638897.57589241|220095.04869389|108.74962607|21930|1 +638892.31499266|220099.85914572|112.55316895|21931|1 +638887.6493151|220104.02761365|108.00818147|21932|1 +638882.5804944|220108.61840676|108.09540423|21933|1 +638877.61015879|220113.12003322|108.19662616|21934|1 +638872.53284234|220117.72073689|108.46412665|21935|1 +638867.50105|220122.28114788|108.81310139|21936|1 +638862.45907392|220126.84448543|108.6456136|21937|1 +638857.44351945|220131.38811795|108.82660757|21938|1 +638852.42489707|220135.93551804|109.08833165|21939|1 +638847.35216043|220140.53353619|109.47437398|21940|1 +638842.28296886|220145.12914107|109.84178484|21941|1 +638837.23872742|220149.69899403|109.84198948|21942|1 +638832.16585442|220154.29116992|109.54380244|21943|1 +638827.20782593|220158.77565926|108.95845095|21944|1 +638822.11961996|220163.38525652|108.9466656|21945|1 +638817.0669745|220167.9657144|109.18970241|21946|1 +638812.01653915|220172.54416708|109.43279504|21947|1 +638806.92287346|220177.16116954|109.62081184|21948|1 +638801.8799786|220181.73203181|109.8017686|21949|1 +638796.79316903|220186.34213929|109.93407707|21950|1 +638791.70380165|220190.95563584|110.15384084|21951|1 +638786.66694637|220195.52095429|110.32876075|21952|1 +638781.5325108|220200.17551976|110.56287716|21953|1 +638776.45700407|220204.77432814|110.60872561|21954|1 +638771.36795696|220209.38954268|110.99141|21955|1 +638766.294114|220213.98730552|111.07500506|21956|1 +638761.21340608|220218.59374551|111.35831857|21957|1 +638756.13441604|220223.1987086|111.64803169|21958|1 +638751.00712749|220227.84812931|111.99011382|21959|1 +638745.93537579|220232.44546549|112.19295766|21960|1 +638740.81111171|220237.09246218|112.56067549|21961|1 +638735.6858843|220241.74140929|113.01615557|21962|1 +638730.58986036|220246.37162499|114.10582147|21963|1 +638725.47344473|220251.01129199|114.45594034|21964|1 +638720.37067714|220255.63393174|114.42566306|21965|1 +638715.28289287|220260.23710574|113.91500483|21966|1 +638710.17606715|220264.86565368|114.06630753|21967|1 +638705.11721704|220269.45132924|114.27071406|21968|1 +638699.96275608|220274.12413742|114.50715592|21969|1 +638694.86210395|220278.74595907|114.565692|21970|1 +638689.759562|220283.37102927|114.74938348|21971|1 +638684.65851598|220287.99459222|114.92087103|21972|1 +638679.50766093|220292.66515607|115.24026613|21973|1 +638674.40590184|220297.29152356|115.5873247|21974|1 +638669.2582511|220301.95911781|115.90139919|21975|1 +638664.16016017|220306.58171349|116.21164133|21976|1 +638659.06267264|220311.20445591|116.57839177|21977|1 +638653.91897003|220315.86887934|116.92498527|21978|1 +638648.82332936|220320.49118331|117.39232512|21979|1 +638643.68176827|220325.154751|117.82727618|21980|1 +638638.54155826|220329.81748053|118.2939463|21981|1 +638633.4516302|220334.43355324|118.67478894|21982|1 +638628.31611617|220339.08898476|118.89235749|21983|1 +638623.1813481|220343.74420691|119.14786798|21984|1 +638618.04702333|220348.40109996|119.57255919|21985|1 +638612.96221921|220353.01201269|119.91091131|21986|1 +638607.83064546|220357.66466713|120.19265281|21987|1 +638602.70010119|220362.31739017|120.55608252|21988|1 +638597.61869657|220366.92592668|120.95152894|21989|1 +638592.49357919|220371.57282831|121.24073047|21990|1 +638587.36525775|220376.22202512|121.48034423|21991|1 +638582.23884072|220380.87180059|121.90787248|21992|1 +638577.11311868|220385.52018531|122.27332997|21993|1 +638571.98803049|220390.16754819|122.60171058|21994|1 +638566.91128201|220394.77060364|122.89263294|21995|1 +638561.78643835|220399.41638293|123.10924341|21996|1 +638556.66047274|220404.0617351|123.20752598|21997|1 +638551.53506312|220408.70696959|123.3374811|21998|1 +638546.4146861|220413.35108798|123.7490661|21999|1 +638541.29373686|220417.99467046|124.07354927|22000|1 +638536.22174387|220422.59413802|124.42233798|22001|1 +638531.1001274|220427.23718559|124.65378478|22002|1 +638525.97610211|220431.88090083|124.7606901|22003|1 +638520.90702776|220436.47857979|125.17893517|22004|1 +638515.79220204|220441.11847537|125.65514892|22005|1 +638510.67727225|220445.7580106|126.09427648|22006|1 +638505.6071774|220450.35518021|126.39450992|22007|1 +638500.53400214|220454.95369661|126.57622942|22008|1 +638495.41368363|220459.59531608|126.78517523|22009|1 +638490.34956808|220464.18921469|127.26092388|22010|1 +638485.23281158|220468.82884038|127.570487|22011|1 +638480.16023952|220473.42698568|127.76561967|22012|1 +638475.09148449|220478.02304925|128.07332243|22013|1 +638469.97434701|220482.66280849|128.36513776|22014|1 +638464.90386247|220487.25984499|128.62335507|22015|1 +638459.8419353|220491.85257638|129.10028506|22016|1 +638454.77055206|220496.45190512|129.33390847|22017|1 +638449.64297293|220501.09988417|129.37736637|22018|1 +638444.61971649|220505.65582832|129.63322103|22019|1 +638439.54085944|220510.26019153|129.72390405|22020|1 +638434.46533184|220514.86260773|129.9021726|22021|1 +638429.38779672|220519.46646463|130.04946623|22022|1 +638424.30533621|220524.07372756|130.10963942|22023|1 +638419.27068783|220528.63780297|130.1849187|22024|1 +638415.05756534|220532.65072204|146.12278705|22025|1 +638414.69244068|220532.89577636|139.08037491|22026|2 +638414.21541674|220533.21593214|129.87970881|22027|3 +638409.3872465|220537.65174512|134.78038692|22028|1 +638409.13330697|220537.82372776|130.00905931|22029|2 +638404.14762405|220542.34432784|130.16141311|22030|1 +638399.05689684|220546.95842107|130.16633375|22031|1 +638394.01056696|220551.53173119|130.12969405|22032|1 +638388.97823195|220556.09555142|130.35494587|22033|1 +638383.91227344|220560.68316451|130.03169983|22034|1 +638378.9680152|220565.17549018|130.94403667|22035|1 +638374.0603983|220569.65087295|133.18821115|22036|1 +638368.85743602|220574.33693484|130.75270843|22037|1 +638364.01115806|220578.74960493|132.4192333|22038|1 +638358.98419333|220583.31015719|132.77499834|22039|1 +638353.93180988|220587.88067665|132.06041727|22040|1 +638348.95997947|220592.39290065|132.55395092|22041|1 +638343.89744228|220596.97179498|131.77092738|22042|1 +638338.93786692|220601.46719836|131.79777231|22043|1 +638333.61483639|220606.24015997|127.56060851|22044|1 +638328.80059968|220610.63674953|130.2881126|22045|1 +638323.80051697|220615.16349136|129.87277898|22046|1 +638318.69093019|220619.78036937|128.70460609|22047|1 +638313.83154802|220624.2022973|130.15513441|22048|1 +638310.07567684|220627.79082973|145.31664859|22049|1 +638305.28487184|220632.15740927|147.32892049|22050|1 +638303.34666007|220633.62548302|123.59729832|22051|2 +638298.48481735|220638.04309714|124.51216524|22052|1 +638295.36336694|220641.14111186|146.62637592|22053|1 +638288.46213172|220647.1204598|123.961128|22054|1 +638285.54303786|220650.04882589|147.21504814|22055|1 +638284.79040071|220650.62585179|138.56703778|22056|2 +638283.37000977|220651.71482586|122.24640133|22057|3 +638278.45474057|220656.17412656|122.60656611|22058|1 +638273.64602905|220660.55803286|124.70614448|22059|1 +638268.7996743|220664.95752302|125.28733807|22060|1 +638264.31081641|220669.09291132|130.79299442|22061|1 +638263.57044524|220669.66657242|122.77891873|22062|2 +638258.99175639|220673.85882139|126.27008005|22063|1 +638254.27619239|220678.16294576|128.75554262|22064|1 +638253.73597772|220678.58352496|123.07172004|22065|2 +638253.5675598|220675.37897621|127.04236934|22066|1 +638259.92485019|220669.77959788|141.59356607|22067|1 +638263.25252544|220666.52488355|123.17926718|22068|1 +638268.58844169|220661.71944304|126.90061957|22069|1 +638268.18495923|220662.03101521|122.45482623|22070|2 +638275.07175929|220656.03199008|143.59085281|22071|1 +638273.1811043|220657.48808908|122.4441757|22072|2 +638280.44957746|220651.19348933|147.71424658|22073|1 +638278.2159855|220652.90893598|122.34550245|22074|2 +638284.99136876|220646.99711616|142.34586584|22075|1 +638290.04095542|220642.41810274|143.34562077|22076|1 +638288.48718469|220643.60452037|125.13807247|22077|2 +638293.56383395|220638.9878471|125.07052297|22078|1 +638300.57895861|220632.91485854|149.65903408|22079|1 +638298.43624473|220634.5407787|123.72356063|22080|2 +638298.40902416|220634.56143403|123.39408241|22081|3 +638305.37368713|220628.51705764|146.58082512|22082|1 +638303.72484596|220629.76406189|126.28617213|22083|2 +638308.6402479|220625.28484166|125.4984791|22084|1 +638313.77176173|220620.62814864|126.22776627|22085|1 +638318.91601811|220615.9702111|127.79738523|22086|1 +638324.39158396|220611.06628009|133.81637872|22087|1 +638329.14868119|220606.69081942|129.78098905|22088|1 +638334.34530584|220601.98883063|131.63257276|22089|1 +638339.44096896|220597.36356837|132.18406578|22090|1 +638344.47061796|220592.78812393|131.85189935|22091|1 +638349.44752149|220588.25983409|131.46298277|22092|1 +638354.5617944|220583.62319819|132.40132738|22093|1 +638359.52218082|220579.09842552|131.07894033|22094|1 +638364.73366721|220574.39294446|133.59398254|22095|1 +638369.70809802|220569.85833504|132.50839082|22096|1 +638374.66699641|220565.33443293|131.148406|22097|1 +638379.68922078|220560.75569328|130.00151557|22098|1 +638384.74356526|220556.16401835|130.17457512|22099|1 +638389.80190048|220551.56995169|130.44752645|22100|1 +638394.87945832|220546.95262967|130.24858935|22101|1 +638399.91368785|220542.37583052|130.14773019|22102|1 +638405.86745323|220537.17437291|147.11036595|22103|1 +638405.03645415|220537.73908065|131.70587076|22104|2 +638410.91175345|220532.58550613|146.77053485|22105|1 +638410.58484212|220532.8057068|140.55187874|22106|2 +638410.02873094|220533.18029169|129.97329398|22107|3 +638415.12773254|220528.54941671|130.25550057|22108|1 +638420.15529175|220523.97804775|130.10515596|22109|1 +638425.28800208|220519.31378918|130.15958066|22110|1 +638430.31776133|220514.74141739|130.09061729|22111|1 +638435.38704522|220510.1311404|129.85595207|22112|1 +638440.4592944|220505.51909766|129.696408|22113|1 +638445.53289307|220500.90636676|129.58077762|22114|1 +638450.60224378|220496.29641502|129.37797099|22115|1 +638455.72456969|220491.64005017|129.30976106|22116|1 +638460.74311117|220487.07554089|129.05415755|22117|1 +638465.84823818|220482.42947972|128.55577767|22118|1 +638470.9169511|220477.82017993|128.3601334|22119|1 +638475.98088919|220473.21359343|128.03353873|22120|1 +638486.52360363|220463.78341715|140.34095165|22121|1 +638491.17884149|220459.39026769|127.21720553|22122|1 +638496.28452548|220454.74293174|126.65817807|22123|1 +638501.35463142|220450.13289869|126.50747999|22124|1 +638506.42526122|220445.5226965|126.38196182|22125|1 +638511.53760318|220440.87170733|126.01758333|22126|1 +638516.59980576|220436.26476899|125.53642104|22127|1 +638521.66204128|220431.65733228|125.01794003|22128|1 +638526.77851944|220427.00382049|124.75449511|22129|1 +638531.85188768|220422.39220567|124.71760427|22130|1 +638536.92011823|220417.78193984|124.41220835|22131|1 +638542.03643515|220413.1278121|124.0872973|22132|1 +638547.1053038|220408.51658107|123.7511311|22133|1 +638552.17569167|220403.90451355|123.45887858|22134|1 +638557.29650695|220399.24837692|123.30371565|22135|1 +638562.41765084|220394.59201555|123.15523139|22136|1 +638567.4898102|220389.9784164|122.87002963|22137|1 +638572.56206072|220385.36388687|122.51627377|22138|1 +638577.68343504|220380.70532333|122.20634788|22139|1 +638582.75732544|220376.08899151|121.82809114|22140|1 +638587.83211791|220371.47146027|121.41879438|22141|1 +638592.95662574|220366.81135829|121.21619238|22142|1 +638598.02963644|220362.19621675|120.86987795|22143|1 +638603.15517558|220357.53326225|120.51180606|22144|1 +638608.23391763|220352.91275549|120.15354814|22145|1 +638613.31371388|220348.29183501|119.83925042|22146|1 +638618.39453556|220343.670137|119.53767753|22147|1 +638623.47668743|220339.04661534|119.18633083|22148|1 +638628.5593067|220334.42412581|118.95394455|22149|1 +638633.69078289|220329.75740477|118.72926944|22150|1 +638638.77782854|220325.12758907|118.22878736|22151|1 +638643.86663274|220320.49618739|117.72856573|22152|1 +638648.95617312|220315.86518423|117.31608776|22153|1 +638654.04671319|220311.23381746|116.94760719|22154|1 +638659.13930489|220306.60012679|116.54191021|22155|1 +638664.23322668|220301.96544932|116.15522606|22156|1 +638669.27869803|220297.3761888|115.88544664|22157|1 +638674.37454277|220292.74053951|115.56167971|22158|1 +638679.4703857|220288.10582062|115.31315485|22159|1 +638684.52091212|220283.51141778|115.00004775|22160|1 +638689.61897996|220278.87498127|114.77697255|22161|1 +638694.71702235|220274.23926589|114.61039634|22162|1 +638699.76618215|220269.64886839|114.52250385|22163|1 +638704.86726127|220265.0100834|114.33143606|22164|1 +638709.92114333|220260.41431971|114.15637663|22165|1 +638714.95980801|220255.83921591|114.53696811|22166|1 +638720.05661573|220251.20917283|114.58366303|22167|1 +638725.06757658|220246.65463971|114.33046868|22168|1 +638730.15229458|220242.02445368|113.3692231|22169|1 +638735.2162094|220237.42168115|113.10086685|22170|1 +638740.28713457|220232.81078146|112.68914232|22171|1 +638745.35787185|220228.20082167|112.33995363|22172|1 +638750.38431387|220223.63046402|111.94329798|22173|1 +638755.45897398|220219.01702092|111.60058333|22174|1 +638760.53363154|220214.40419566|111.30794015|22175|1 +638765.51170457|220209.87958459|111.06292205|22176|1 +638770.58304397|220205.27176645|110.93252045|22177|1 +638775.61194864|220200.70131412|110.71043124|22178|1 +638780.64628595|220196.12501122|110.41349063|22179|1 +638785.72200568|220191.51344729|110.30210185|22180|1 +638790.70822398|220186.98173838|110.08131489|22181|1 +638795.74031941|220182.40945741|109.94633681|22182|1 +638800.77716276|220177.83218141|109.75525972|22183|1 +638805.76382446|220173.30128387|109.6336483|22184|1 +638810.81075486|220168.71346524|109.33034527|22185|1 +638815.81439446|220164.16431497|108.97798468|22186|1 +638820.85955555|220159.57947964|108.78676806|22187|1 +638825.81346207|220155.08673101|109.34929299|22188|1 +638830.77164249|220150.58925326|109.84293826|22189|1 +638835.75687545|220146.06192996|109.90677636|22190|1 +638840.77842799|220141.49489535|109.42284214|22191|1 +638845.78721468|220136.94243495|109.18146104|22192|1 +638850.753978|220132.42733115|108.87763712|22193|1 +638855.76972287|220127.86816626|108.60483462|22194|1 +638860.72358169|220123.36797672|108.56162787|22195|1 +638865.7012138|220118.84238218|108.20720228|22196|1 +638870.65669872|220114.34116752|108.20057011|22197|1 +638875.67036085|220109.78586787|108.08865114|22198|1 +638880.6413535|220105.26865358|107.92609329|22199|1 +638885.29321533|220101.0854644|111.37134105|22200|1 +638890.23553514|220096.59884018|111.5800078|22201|1 +638895.42576268|220091.8484735|108.64007905|22202|1 +638900.34830901|220087.3763976|108.57406434|22203|1 +638905.27609128|220082.89910683|108.47027512|22204|1 +638910.24056498|220078.39067805|108.54130348|22205|1 +638915.11073965|220073.96760847|108.59626768|22206|1 +638920.07387038|220069.46114824|108.72845523|22207|1 +638924.9436761|220065.03900165|108.83171425|22208|1 +638929.86731961|220060.56756525|108.8990219|22209|1 +638934.78806582|220056.09943704|109.02161931|22210|1 +638939.6693495|220051.66608481|109.06088211|22211|1 +638944.61396956|220047.17360178|108.96549239|22212|1 +638949.49694584|220042.73907642|109.03448367|22213|1 +638954.37683486|220038.30802868|109.15851356|22214|1 +638959.25581749|220033.87817428|109.31280212|22215|1 +638964.02476392|220029.56240987|110.62393402|22216|1 +638969.04106913|220024.99100366|109.40268519|22217|1 +638973.95227149|220020.52868246|109.29510084|22218|1 +638978.8318302|220016.09327115|109.04151581|22219|1 +638983.76455868|220011.60949271|108.77820113|22220|1 +638988.66708902|220007.15123907|108.36266287|22221|1 +638993.64893286|220002.61210218|107.2234092|22222|1 +638998.68146948|219998.02171274|105.65762257|22223|1 +639003.5721839|219993.5770503|105.47567982|22224|1 +639008.37615105|219989.22128729|106.1206836|22225|1 +639013.18998263|219984.85004244|106.23582099|22226|1 +639018.12519083|219980.36639638|106.16686692|22227|1 +639018.06162248|219977.62424314|105.969846|22228|1 +639013.14279296|219982.08009692|105.85118324|22229|1 +639008.15873667|219986.59720114|105.90100355|22230|1 +639003.34699882|219990.94987734|105.29107677|22231|1 +638998.36121937|219995.46928991|105.40184232|22232|1 +638993.28264905|220000.08978766|106.89421933|22233|1 +638988.19701071|220004.71250765|108.0434073|22234|1 +638983.23721418|220009.21253998|108.49743631|22235|1 +638978.19863146|220013.78216633|108.79629308|22236|1 +638973.26276022|220018.25843692|109.0828157|22237|1 +638968.25699289|220022.79503126|109.11541843|22238|1 +638963.23477035|220027.3551421|109.85023086|22239|1 +638958.35778869|220031.7654443|109.11143727|22240|1 +638953.37014211|220036.28422087|109.03192568|22241|1 +638948.39622357|220040.78902699|108.8283191|22242|1 +638943.46094424|220045.26038788|108.75690936|22243|1 +638938.47577538|220049.77743614|108.7199627|22244|1 +638933.49173888|220054.29360941|108.69518277|22245|1 +638928.51047907|220058.80718424|108.66396601|22246|1 +638923.53835466|220063.31148056|108.551861|22247|1 +638918.57185468|220067.81013844|108.39604694|22248|1 +638913.55072516|220072.35948089|108.33128798|22249|1 +638908.58484398|220076.85802172|108.21216013|22250|1 +638903.55108088|220081.42132888|108.35195652|22251|1 +638898.582749|220085.92307759|108.31300068|22252|1 +638893.56195261|220090.4733254|108.34704519|22253|1 +638888.35487793|220095.22259805|110.83426578|22254|1 +638883.31751094|220099.79967229|111.83243011|22255|1 +638878.56990905|220104.05072832|107.67199667|22256|1 +638873.59512293|220108.56089959|107.84291681|22257|1 +638868.53221869|220113.14986742|107.91911696|22258|1 +638863.51782038|220117.69521179|108.02698036|22259|1 +638858.50386534|220122.24045652|108.15960509|22260|1 +638853.44942328|220126.82136631|108.20480242|22261|1 +638848.42655841|220131.37712806|108.53629913|22262|1 +638843.36145206|220135.97053821|108.81173403|22263|1 +638838.30932492|220140.55144297|108.95057234|22264|1 +638833.27456282|220145.12367005|109.63693182|22265|1 +638828.17880847|220149.74470293|109.78871821|22266|1 +638823.19460473|220154.26192185|109.72813574|22267|1 +638818.17802004|220158.79521169|108.57887336|22268|1 +638813.12246873|220163.38243037|108.94820969|22269|1 +638808.06808476|220167.96890319|109.3425213|22270|1 +638802.97455987|220172.58937768|109.61328671|22271|1 +638797.9378993|220177.15680025|109.76484985|22272|1 +638792.85437114|220181.76684336|109.92381721|22273|1 +638787.77239746|220186.37555651|110.0892214|22274|1 +638782.74246802|220190.93657053|110.21597671|22275|1 +638777.61396168|220195.58799123|110.42061579|22276|1 +638772.5303143|220200.20014132|110.74242935|22277|1 +638767.45795276|220204.799539|110.85869225|22278|1 +638762.38020902|220209.40580357|111.13722464|22279|1 +638757.30756068|220214.00653645|111.34109168|22280|1 +638752.22913536|220218.61480295|111.73223137|22281|1 +638747.10487864|220223.26461304|112.11960385|22282|1 +638742.02970131|220227.87032295|112.54237889|22283|1 +638736.95969492|220232.47034976|112.88421918|22284|1 +638731.84472054|220237.11076218|113.19141034|22285|1 +638726.78340707|220241.70115738|113.39008699|22286|1 +638721.65601171|220246.35895275|114.19715562|22287|1 +638716.59147698|220250.95510223|114.62712093|22288|1 +638711.49162272|220255.57883995|114.69203803|22289|1 +638706.40626153|220260.18355516|114.27651837|22290|1 +638701.35323288|220264.76606925|114.44468519|22291|1 +638696.25220978|220269.39271052|114.66012363|22292|1 +638691.15643611|220274.01261206|114.71346932|22293|1 +638686.10691536|220278.59202928|114.8882404|22294|1 +638681.00821065|220283.2174238|115.17306079|22295|1 +638675.91097761|220287.84148811|115.45816024|22296|1 +638670.81506904|220292.46442903|115.74977093|22297|1 +638665.72015644|220297.08677967|116.06662664|22298|1 +638660.62689441|220301.7074848|116.37124121|22299|1 +638655.53431004|220306.32818778|116.72608538|22300|1 +638650.3945178|220310.99240254|117.13573561|22301|1 +638645.30467515|220315.6109372|117.51618757|22302|1 +638640.21550285|220320.22986103|117.97808588|22303|1 +638635.07945678|220324.89214452|118.50765462|22304|1 +638629.99481397|220329.50513606|118.8201757|22305|1 +638624.91144731|220334.11682129|119.12039984|22306|1 +638619.78182142|220338.76902152|119.30117056|22307|1 +638614.70050903|220343.37892913|119.60816639|22308|1 +638609.62006921|220347.98942392|120.02784394|22309|1 +638604.49316697|220352.63940337|120.22841814|22310|1 +638599.41512933|220357.24795729|120.66735967|22311|1 +638594.29031862|220361.89788442|121.01864126|22312|1 +638589.21753816|220366.49938344|121.27057987|22313|1 +638584.14185247|220371.10390426|121.55392128|22314|1 +638579.02026531|220375.75237805|122.02493533|22315|1 +638573.94691057|220380.35555974|122.37124047|22316|1 +638568.87407113|220384.95774011|122.67395748|22317|1 +638563.75482275|220389.60288417|123.04595412|22318|1 +638558.68208163|220394.20346016|123.22412965|22319|1 +638553.60944143|220398.80371936|123.38371093|22320|1 +638548.53816218|220403.4036608|123.61844126|22321|1 +638543.42057344|220408.04625227|123.90418253|22322|1 +638538.40086716|220412.60107527|124.275835|22323|1 +638533.28359904|220417.2427753|124.51212803|22324|1 +638528.21528261|220421.84050562|124.78507936|22325|1 +638523.14374652|220426.43909704|124.88947319|22326|1 +638518.07696761|220431.03597403|125.20646843|22327|1 +638513.0160878|220435.63024964|125.74852945|22328|1 +638507.95544506|220440.22392877|126.25947603|22329|1 +638502.88864506|220444.81999586|126.50816832|22330|1 +638497.81599305|220449.41878212|126.54461268|22331|1 +638492.74919488|220454.01485516|126.79362124|22332|1 +638487.69044546|220458.60675987|127.29886583|22333|1 +638482.62760022|220463.20054429|127.65434252|22334|1 +638477.5589484|220467.79739475|127.82883454|22335|1 +638472.49755306|220472.3902582|128.21583495|22336|1 +638467.42896252|220476.98713699|128.39689403|22337|1 +638462.36224129|220481.58300698|128.63432187|22338|1 +638457.35251978|220486.13038961|129.11879559|22339|1 +638452.28417289|220490.72773116|129.33149001|22340|1 +638447.26201907|220495.28274082|129.51002831|22341|1 +638442.1903277|220499.88235871|129.66054965|22342|1 +638437.16505847|220504.43958954|129.78917462|22343|1 +638432.09399591|220509.03910415|129.97742397|22344|1 +638427.07140744|220513.59489754|130.18720693|22345|1 +638422.03922372|220518.15711315|130.20979165|22346|1 +638417.00040813|220522.72397441|130.12007601|22347|1 +638411.9734422|220527.28321172|130.28614993|22348|1 +638407.57418998|220531.41788024|142.32778319|22349|1 +638406.92665927|220531.85601513|130.09044985|22350|2 +638401.90391314|220536.41279546|130.36879621|22351|1 +638396.90351518|220540.94376536|130.1938205|22352|1 +638391.87071808|220545.50784389|130.32240825|22353|1 +638386.88113503|220550.03189437|130.38412554|22354|1 +638381.86625263|220554.57395124|130.04047141|22355|1 +638376.89191912|220559.09738829|131.18485966|22356|1 +638372.0280164|220563.52308385|132.53107786|22357|1 +638366.98787296|220568.09291783|132.58434913|22358|1 +638361.98484859|220572.62725969|132.48924777|22359|1 +638356.92092694|220577.20598318|131.50329667|22360|1 +638351.91580089|220581.74269156|131.44546753|22361|1 +638347.01746182|220586.19315256|132.2600799|22362|1 +638342.03955078|220590.71025652|132.61895174|22363|1 +638336.9687654|220595.28777507|131.02340873|22364|1 +638332.06213641|220599.75273493|132.40902925|22365|1 +638326.88061555|220604.4217774|130.07891565|22366|1 +638321.88257548|220608.9396079|129.00043049|22367|1 +638316.810872|220613.52860829|128.2763244|22368|1 +638311.69138453|220618.14662513|126.37677143|22369|1 +638306.65156311|220622.70556786|125.55968479|22370|1 +638303.02908735|220626.19187846|142.23297949|22371|1 +638301.80735426|220627.11698941|127.19862989|22372|2 +638298.74145433|220630.17711568|150.3335245|22373|1 +638293.59062651|220634.81723257|147.91432779|22374|1 +638291.53894759|220636.38067324|123.47548225|22375|2 +638288.77563282|220639.18809769|148.40269895|22376|1 +638287.99722703|220639.7830195|139.2740193|22377|2 +638283.13072408|220644.21553142|140.98328582|22378|1 +638281.62530039|220645.36948506|123.60553039|22379|2 +638278.46423042|220648.47386112|143.29172628|22380|1 +638276.57886717|220649.92304329|121.85481515|22381|2 +638273.89858474|220652.66706536|147.76184377|22382|1 +638271.54939265|220654.47769341|121.45393649|22383|2 +638268.83708074|220657.2356147|146.11884309|22384|1 +638268.36380872|220657.60134053|140.89682581|22385|2 +638263.73039811|220661.84001363|144.05391384|22386|1 +638261.75957769|220663.36684342|122.6237837|22387|2 +638256.97912866|220667.72262092|124.44292281|22388|1 +638252.8428784|220668.77552104|128.85220668|22389|1 +638259.20931375|220663.1723797|143.65896972|22390|1 +638257.23571862|220664.70711884|122.39326708|22391|2 +638264.29584758|220658.56762136|144.93117368|22392|1 +638269.00821353|220654.24665116|141.57637639|22393|1 +638274.38155978|220649.42120221|146.13402359|22394|1 +638273.87941393|220649.80871198|140.47580881|22395|2 +638272.20650777|220651.09970631|121.62543334|22396|3 +638279.1152941|220645.08997573|143.53679088|22397|1 +638277.23780403|220646.53492501|122.05488705|22398|2 +638283.7754023|220640.80779133|139.46497546|22399|1 +638282.30954032|220641.93275483|122.42766505|22400|2 +638289.43102968|220635.76939666|147.61023411|22401|1 +638287.34361108|220637.36672831|122.96288926|22402|2 +638294.6225484|220631.08157001|149.8963131|22403|1 +638292.40093457|220632.77644379|123.23653822|22404|2 +638299.47311616|220626.66129671|148.70827161|22405|1 +638299.16015554|220626.89931359|144.89103651|22406|2 +638304.21459553|220622.31633102|145.55431828|22407|1 +638302.61526623|220623.52872106|125.7184196|22408|2 +638307.70653943|220618.91437553|126.55243548|22409|1 +638312.91395568|220614.21321877|128.92941142|22410|1 +638317.88570046|220609.6825374|127.7050558|22411|1 +638322.94402338|220605.10237507|128.89443674|22412|1 +638328.1118438|220600.42576648|130.32729168|22413|1 +638333.20695126|220595.81200211|131.49894344|22414|1 +638338.27316376|220591.21816609|132.34089373|22415|1 +638343.28669216|220586.6550031|131.79517712|22416|1 +638348.31203706|220582.08321598|131.42381299|22417|1 +638353.34878829|220577.51187108|131.94847039|22418|1 +638358.43677971|220572.88631775|131.83360275|22419|1 +638363.40847057|220568.36276067|131.42393392|22420|1 +638368.34247254|220563.8570422|129.65688475|22421|1 +638373.56878582|220559.14259533|132.58223763|22422|1 +638378.63905017|220554.54040795|133.07139014|22423|1 +638383.55449177|220550.03772515|130.1587435|22424|1 +638388.6107784|220545.44544166|130.41732358|22425|1 +638393.68590881|220540.83021243|130.19155086|22426|1 +638398.77131588|220536.20806834|130.1655896|22427|1 +638403.81645036|220531.62448165|130.30620456|22428|1 +638408.85159008|220527.0480109|130.28472676|22429|1 +638413.92362125|220522.435684|130.06601409|22430|1 +638419.00894794|220517.81466474|130.12828948|22431|1 +638424.09898987|220513.19088157|130.31564586|22432|1 +638429.12315662|220508.62264134|130.15113464|22433|1 +638434.19030756|220504.01421901|129.88957799|22434|1 +638439.25991851|220499.40431388|129.6906502|22435|1 +638444.33362088|220494.79198072|129.59805102|22436|1 +638449.40230673|220490.18291831|129.39954181|22437|1 +638454.47238779|220485.57312639|129.24493698|22438|1 +638459.53368064|220480.96866832|128.87201016|22439|1 +638464.5938002|220476.36482835|128.46179252|22440|1 +638469.66380079|220471.75525972|128.32024739|22441|1 +638474.72853972|220467.14873558|128.03526886|22442|1 +638479.79396169|220462.54181442|127.76920085|22443|1 +638484.90744681|220457.89132648|127.50734654|22444|1 +638489.92106105|220453.32980006|127.10643068|22445|1 +638495.02812552|220448.68227706|126.60779035|22446|1 +638500.09940476|220444.07223462|126.52368369|22447|1 +638505.16875821|220439.4631878|126.37731093|22448|1 +638510.27971504|220434.81335044|125.97959488|22449|1 +638515.34085419|220430.20739125|125.47130861|22450|1 +638520.40471937|220425.59993431|125.04441288|22451|1 +638525.52141653|220420.94700578|124.82262132|22452|1 +638530.59264238|220416.33672017|124.71484164|22453|1 +638535.65964134|220411.7274075|124.36980155|22454|1 +638540.77698425|220407.0737471|124.1365223|22455|1 +638545.89387358|220402.41982801|123.84742309|22456|1 +638550.96356539|220397.80852961|123.5406319|22457|1 +638556.08328542|220393.15325423|123.35222441|22458|1 +638561.20289886|220388.49755191|123.12050786|22459|1 +638566.27473182|220383.88468941|122.84575199|22460|1 +638571.39462393|220379.22745904|122.50851609|22461|1 +638576.51531393|220374.56935778|122.15921578|22462|1 +638581.54078758|220369.9968576|121.7414544|22463|1 +638586.66332074|220365.33654434|121.34903105|22464|1 +638592.26654145|220360.24199222|121.12270023|22465|1 +638596.86012253|220356.06307976|120.84001924|22466|1 +638601.98537086|220351.40033003|120.44878653|22467|1 +638607.11170374|220346.73772735|120.1517436|22468|1 +638612.14336263|220342.16035888|119.79733662|22469|1 +638617.27171872|220337.49623172|119.52596659|22470|1 +638622.40126834|220332.83064877|119.22380769|22471|1 +638627.43512866|220328.25346706|119.05103649|22472|1 +638632.56726846|220323.58486501|118.69334598|22473|1 +638637.65392203|220318.95616717|118.22225751|22474|1 +638642.74212356|220314.32621718|117.76394039|22475|1 +638647.87871832|220309.6535792|117.40746841|22476|1 +638652.96967581|220305.02159006|116.98726996|22477|1 +638658.06113379|220300.39005372|116.64231358|22478|1 +638663.1549092|220295.75580892|116.24765781|22479|1 +638668.24875471|220291.12256674|115.9407364|22480|1 +638673.34428804|220286.48763594|115.62160175|22481|1 +638678.48816063|220281.80954727|115.36131944|22482|1 +638683.53785171|220277.21665465|115.07788501|22483|1 +638688.68236848|220272.53912004|114.91210875|22484|1 +638693.78196147|220267.90142092|114.66922077|22485|1 +638698.82923044|220263.31382061|114.64232003|22486|1 +638703.92642434|220258.68049274|114.58096551|22487|1 +638709.06246873|220254.01616562|114.8725576|22488|1 +638714.11761547|220249.41922894|114.66512799|22489|1 +638719.22973917|220244.76785551|114.26770959|22490|1 +638724.35945863|220240.09486784|113.40888588|22491|1 +638729.41987953|220235.49332319|113.25836453|22492|1 +638734.5306483|220230.84582097|113.08668164|22493|1 +638739.60072664|220226.23332493|112.75559421|22494|1 +638744.67519444|220221.61609067|112.3622965|22495|1 +638749.80238979|220216.95029676|111.91085339|22496|1 +638754.88237397|220212.3277501|111.49312921|22497|1 +638759.95987066|220207.70882073|111.18788212|22498|1 +638765.04023609|220203.08706119|110.86413379|22499|1 +638770.06671625|220198.51626023|110.71066378|22500|1 +638775.14265681|220193.90069782|110.56800243|22501|1 +638780.18154201|220189.31636951|110.22756672|22502|1 +638785.26241818|220184.69602421|110.06029287|22503|1 +638790.34227532|220180.07727641|109.94931338|22504|1 +638795.32963951|220175.54190684|109.79095064|22505|1 +638800.41802734|220170.91428452|109.58674874|22506|1 +638805.46207736|220166.32646608|109.34631642|22507|1 +638810.46790181|220161.77161654|108.9634553|22508|1 +638815.56564418|220157.13490378|108.70994469|22509|1 +638820.486003|220152.67611027|109.85853734|22510|1 +638825.52853506|220148.09139159|109.76121286|22511|1 +638830.55946108|220143.51035927|109.09785667|22512|1 +638835.63288288|220138.89255795|108.58370098|22513|1 +638840.67730846|220134.30708253|108.56746938|22514|1 +638845.63957868|220129.79376916|108.35207745|22515|1 +638850.70663993|220125.18436083|108.05588098|22516|1 +638855.71540605|220120.63003925|107.93987853|22517|1 +638860.71544402|220116.08550889|107.97918783|22518|1 +638865.72607706|220111.52985981|107.89401147|22519|1 +638870.69836218|220107.00765026|107.69619989|22520|1 +638875.71568226|220102.44554727|107.57966723|22521|1 +638880.67031846|220097.94294873|107.67958692|22522|1 +638885.66669128|220093.40382738|107.89196508|22523|1 +638890.61155703|220088.91210555|108.15890746|22524|1 +638895.5877454|220084.38737415|108.04670013|22525|1 +638900.55178703|220079.87583726|108.11424963|22526|1 +638905.52180587|220075.35826418|108.13182998|22527|1 +638910.49751535|220070.83499954|108.10570129|22528|1 +638915.41893399|220066.36210664|108.17061839|22529|1 +638920.37342112|220061.8616849|108.44155123|22530|1 +638925.29697992|220057.38705774|108.5241324|22531|1 +638930.27945133|220052.85785439|108.51531432|22532|1 +638935.15573601|220048.42646489|108.62581942|22533|1 +638940.07194719|220043.9602791|108.85565702|22534|1 +638945.02140656|220039.45978815|108.74424964|22535|1 +638949.95665315|220034.97436153|108.8120875|22536|1 +638954.82182884|220030.55548115|109.12450626|22537|1 +638959.74414088|220026.07776946|108.86042883|22538|1 +638964.62779123|220021.64030766|109.02292156|22539|1 +638969.58551439|220017.13280015|108.95264664|22540|1 +638974.4552857|220012.70421097|108.80771566|22541|1 +638979.3924063|220008.21265391|108.51072854|22542|1 +638984.28280223|220003.76360453|108.22231767|22543|1 +638989.30244392|219999.19403252|107.66832247|22544|1 +638994.26600018|219994.66536473|106.28776211|22545|1 +638999.28835443|219990.08849852|105.33454397|22546|1 +639004.16863571|219985.6515112|105.28543059|22547|1 +639009.01177358|219981.2526273|105.59994225|22548|1 +639006.891263|219980.31083138|105.42223182|22549|1 +639001.92904592|219984.8129718|105.30049017|22550|1 +638996.8821627|219989.39622456|105.53306248|22551|1 +638991.80855968|219994.01835338|106.98424192|22552|1 +638986.69656256|219998.66917419|107.92182378|22553|1 +638981.64940929|220003.25416417|108.27862132|22554|1 +638976.65583324|220007.79041043|108.62640544|22555|1 +638971.62752245|220012.35688932|108.86574945|22556|1 +638966.55978991|220016.95837796|109.04024147|22557|1 +638961.5944114|220021.46075633|108.69789889|22558|1 +638956.55395706|220026.04086154|109.15389988|22559|1 +638951.5323692|220030.59571887|108.93235016|22560|1 +638946.56828466|220035.0975161|108.63896283|22561|1 +638941.51384053|220039.68695489|108.81372461|22562|1 +638936.49482278|220044.23992992|108.62917737|22563|1 +638931.47988975|220048.78890164|108.41980368|22564|1 +638926.40934527|220053.38952263|108.30751264|22565|1 +638921.38518514|220057.94865769|108.24693947|22566|1 +638916.31870559|220062.54559642|108.13492748|22567|1 +638911.30386128|220067.09553701|108.01234867|22568|1 +638906.23560333|220071.69491416|107.96879775|22569|1 +638901.17042286|220076.29135387|107.9130243|22570|1 +638896.15388322|220080.84395566|107.88354697|22571|1 +638891.04798945|220085.47675144|107.77707884|22572|1 +638886.04369275|220090.00938198|107.00750567|22573|1 +638880.93646647|220094.65173846|107.59817777|22574|1 +638875.8859308|220099.23408449|107.47470599|22575|1 +638870.81665559|220103.83679217|107.63094793|22576|1 +638865.7065292|220108.47568827|107.71218964|22577|1 +638860.65366393|220113.06149858|107.70100891|22578|1 +638855.54640556|220117.69802513|107.8014867|22579|1 +638850.44003411|220122.33397512|107.92097732|22580|1 +638845.37776871|220126.93108489|108.14043413|22581|1 +638840.27380027|220131.56523577|108.2915973|22582|1 +638835.2290987|220136.14090242|108.2937088|22583|1 +638830.131822|220140.76535914|108.38946129|22584|1 +638824.96138754|220145.4710444|109.72416388|22585|1 +638819.86820718|220150.09209209|109.84557067|22586|1 +638814.80259173|220154.68283457|109.52517098|22587|1 +638809.75390425|220159.25478761|108.91842541|22588|1 +638804.66320636|220163.87396631|109.07156055|22589|1 +638799.5556831|220168.51259224|109.57379136|22590|1 +638794.41862475|220173.17440073|109.77217965|22591|1 +638789.33516809|220177.78679741|109.9075205|22592|1 +638784.21441261|220182.43083856|109.85743973|22593|1 +638779.127043|220187.04858253|110.14286474|22594|1 +638773.99666626|220191.70457407|110.36154021|22595|1 +638768.91487598|220196.31689257|110.61634377|22596|1 +638763.8375515|220200.92448746|110.81522505|22597|1 +638758.71022449|220205.57847554|111.09731072|22598|1 +638753.58154452|220210.23466252|111.46089856|22599|1 +638748.50086035|220214.84800756|111.88510607|22600|1 +638743.37637546|220219.50047498|112.25567024|22601|1 +638738.24308273|220224.16444933|112.91989149|22602|1 +638733.13112467|220228.80294496|113.07292431|22603|1 +638728.0208671|220233.43983304|113.22005981|22604|1 +638722.90996705|220238.07805076|113.4299451|22605|1 +638717.84587192|220242.67487373|113.73086687|22606|1 +638712.66980772|220247.38019805|114.6060152|22607|1 +638707.6121921|220251.97024979|114.83252276|22608|1 +638702.51258046|220256.59645271|114.89384007|22609|1 +638697.42305852|220261.20939775|114.61202415|22610|1 +638692.3238985|220265.83572017|114.7175714|22611|1 +638687.22286171|220270.46524604|114.94829267|22612|1 +638682.12432354|220275.09191169|115.12934244|22613|1 +638677.07290174|220279.67703212|115.4129536|22614|1 +638671.97603774|220284.30270597|115.63816821|22615|1 +638666.87760159|220288.93167986|116.0197922|22616|1 +638661.78240142|220293.55660145|116.30800774|22617|1 +638656.68722104|220298.18255446|116.68394833|22618|1 +638651.59317708|220302.80785353|117.09138474|22619|1 +638646.50163327|220307.43006397|117.43036008|22620|1 +638641.41149532|220312.05100506|117.76958656|22621|1 +638636.32142206|220316.67345897|118.24026575|22622|1 +638631.23336768|220321.29363407|118.67370063|22623|1 +638626.14804763|220325.90939565|118.94491252|22624|1 +638621.06399142|220330.52363582|119.18509369|22625|1 +638615.98072961|220335.13760914|119.46298426|22626|1 +638610.89830419|220339.75157345|119.80356881|22627|1 +638605.8172099|220344.36321127|120.05063329|22628|1 +638600.73696763|220348.97490292|120.36663324|22629|1 +638595.65783173|220353.58648953|120.75783805|22630|1 +638590.58351362|220358.19303237|121.09300896|22631|1 +638585.50555812|220362.8013159|121.29709923|22632|1 +638580.42895776|220367.41008927|121.6451066|22633|1 +638575.40175856|220371.97498939|122.0745138|22634|1 +638570.27891254|220376.62515527|122.3729427|22635|1 +638565.205082|220381.23127309|122.70900658|22636|1 +638560.18004214|220385.79317453|123.05109801|22637|1 +638555.1068275|220390.39769675|123.29989262|22638|1 +638550.03340207|220395.00174243|123.49261613|22639|1 +638545.00984409|220399.5618557|123.7972493|22640|1 +638539.93852145|220404.16466685|124.04643459|22641|1 +638534.86766258|220408.76706295|124.29578731|22642|1 +638529.79837812|220413.36877908|124.6077968|22643|1 +638524.77458519|220417.92747117|124.77501483|22644|1 +638519.75210533|220422.48564063|124.99839699|22645|1 +638514.68529357|220427.08579045|125.36687756|22646|1 +638509.66902294|220431.64108704|125.82139957|22647|1 +638504.65353496|220436.19567329|126.27582855|22648|1 +638499.58643318|220440.79512376|126.56331856|22649|1 +638494.55839845|220445.35528486|126.53042747|22650|1 +638489.49617241|220449.9522527|126.98054044|22651|1 +638484.47987712|220454.50653247|127.3474118|22652|1 +638479.46254114|220459.06123315|127.6704811|22653|1 +638474.39741907|220463.6592715|127.98964365|22654|1 +638469.37742178|220468.21534981|128.22523904|22655|1 +638464.3568865|220472.77176568|128.44829564|22656|1 +638459.33714633|220477.32776096|128.6962531|22657|1 +638454.32098868|220481.87897733|129.0565109|22658|1 +638449.30244947|220486.4315923|129.35426076|22659|1 +638444.28150704|220490.98571905|129.59574418|22660|1 +638439.25519834|220495.54330286|129.71859274|22661|1 +638434.2285768|220500.1012416|129.84764558|22662|1 +638429.20536631|220504.65713147|130.06404211|22663|1 +638424.23246648|220509.16805147|130.33918866|22664|1 +638419.19299928|220513.7349021|130.23716677|22665|1 +638414.1503227|220518.30421659|130.09777035|22666|1 +638409.16131535|220522.82648081|130.09791918|22667|1 +638404.1405452|220527.38149747|130.42627189|22668|1 +638399.14835878|220531.90635259|130.40114779|22669|1 +638394.09955374|220536.4810106|130.24296178|22670|1 +638389.11102571|220541.00387903|130.32983107|22671|1 +638384.11313856|220545.53352661|130.27310884|22672|1 +638379.1089925|220550.06788797|130.1352007|22673|1 +638374.25265696|220554.49738214|132.4527662|22674|1 +638369.3298405|220558.97353389|133.62292037|22675|1 +638364.07719341|220563.6868473|129.57741038|22676|1 +638359.27140842|220568.07008225|131.86359168|22677|1 +638354.31069224|220572.57386081|132.46593751|22678|1 +638349.30939707|220577.09880068|131.75469578|22679|1 +638344.35531603|220581.59796897|132.47482071|22680|1 +638339.35302313|220586.13264612|132.50351669|22681|1 +638334.4121144|220590.6140613|132.73802378|22682|1 +638329.08446748|220595.38346024|127.68780101|22683|1 +638324.97749292|220599.24321533|139.2609689|22684|1 +638324.19885685|220599.82500562|128.7873919|22685|2 +638320.30625417|220603.52913369|143.62459035|22686|1 +638319.10237454|220604.43211821|127.72089673|22687|2 +638314.23650501|220608.85885553|129.08093736|22688|1 +638309.4929441|220613.19289546|131.97655245|22689|1 +638309.00978718|220613.55790004|125.81258148|22690|2 +638304.04283622|220618.06161516|125.93439755|22691|1 +638300.6488265|220621.36224151|144.88290676|22692|1 +638298.96093031|220622.64584495|124.05968962|22693|2 +638295.84236229|220625.74725491|147.26382666|22694|1 +638293.86880591|220627.25287669|123.31753809|22695|2 +638291.21556023|220629.98042753|150.58748159|22696|1 +638285.72011668|220634.88599884|144.18471542|22697|1 +638283.97457368|220636.22561363|123.67147068|22698|2 +638278.9361779|220640.77918067|122.53649583|22699|1 +638276.32804273|220643.45797495|149.14988275|22700|1 +638275.68858216|220643.95144985|141.8633827|22701|2 +638270.53716913|220648.5966038|139.80626694|22702|1 +638269.79836917|220649.16825647|131.51510993|22703|2 +638268.90571959|220649.85895155|121.49740369|22704|3 +638265.6393122|220653.03968617|140.10197972|22705|1 +638265.01595477|220653.52324469|133.20960524|22706|2 +638263.91805677|220654.37491966|121.07031262|22707|3 +638260.14252642|220657.94868756|133.88485839|22708|1 +638258.95970873|220658.86850532|120.9968751|22709|2 +638255.96116511|220661.83467737|141.99517957|22710|1 +638254.13779928|220663.25601428|122.4127543|22711|2 +638259.5987605|220655.45557642|141.03548739|22712|1 +638259.11928532|220655.82880379|135.80827042|22713|2 +638257.76000952|220656.88687508|120.989536|22714|3 +638264.51820896|220650.97864187|140.45327991|22715|1 +638262.7998456|220652.31291738|121.44015125|22716|2 +638268.89638105|220646.9209831|133.79663105|22717|1 +638268.25166586|220647.42031189|126.55503067|22718|2 +638267.80102803|220647.76932869|121.49334811|22719|3 +638275.29405754|220641.30120097|149.99067032|22720|1 +638278.40037931|220638.21648213|128.0291576|22721|1 +638278.04104354|220638.49328575|123.8663615|22722|2 +638283.02009836|220633.96800421|123.77059971|22723|1 +638290.09844922|220627.83510265|148.79771749|22724|1 +638295.1715516|220623.22946089|149.12813519|22725|1 +638293.0724341|220624.83221639|123.60860928|22726|2 +638299.63898308|220619.10640569|143.78907366|22727|1 +638298.21351538|220620.19142437|126.1739741|22728|2 +638303.24193605|220615.61574576|125.6110585|22729|1 +638308.31659448|220611.01249196|126.26118756|22730|1 +638314.95591274|220605.23841731|147.9452655|22731|1 +638313.47619123|220606.35325358|128.69076505|22732|2 +638319.74315846|220600.84892623|144.62350812|22733|1 +638318.48728064|220601.7916039|127.98522531|22734|2 +638324.12089513|220596.77987463|136.97498293|22735|1 +638323.64151741|220597.13833873|130.50898328|22736|2 +638328.75143316|220592.50373212|131.21660662|22737|1 +638333.7500052|220587.96019424|131.08990713|22738|1 +638338.93929312|220583.26694861|133.01838862|22739|1 +638343.93570466|220578.71666753|132.23876023|22740|1 +638348.85725754|220574.22953514|131.05331394|22741|1 +638353.96464249|220569.59816009|131.93027612|22742|1 +638359.03635845|220564.99332806|132.31544407|22743|1 +638364.0357791|220560.45005698|132.35689279|22744|1 +638369.07599547|220555.86864259|132.30610509|22745|1 +638374.22017726|220551.21347382|133.994331|22746|1 +638379.09130275|220546.74296982|130.35501098|22747|1 +638384.13286837|220542.16084109|130.34796953|22748|1 +638389.17667476|220537.57741595|130.40336161|22749|1 +638394.20774243|220533.00311184|130.25305421|22750|1 +638399.30649902|220528.37188058|130.48529166|22751|1 +638404.33413385|220523.80039357|130.31025083|22752|1 +638409.40598292|220519.18804155|130.07515773|22753|1 +638414.44534906|220514.60900913|130.16227817|22754|1 +638419.53926377|220509.98239553|130.41422609|22755|1 +638424.61243238|220505.36980682|130.2608956|22756|1 +638429.63353989|220500.80356938|130.03010923|22757|1 +638434.70480125|220496.19248795|129.85837983|22758|1 +638439.77796874|220491.58034222|129.74304711|22759|1 +638444.84536238|220486.97195392|129.50308918|22760|1 +638449.91077241|220482.36484988|129.21962685|22761|1 +638454.97585785|220477.75796567|128.93011836|22762|1 +638459.99219668|220473.19508099|128.61853675|22763|1 +638465.10820305|220468.54295913|128.41407441|22764|1 +638470.17579023|220463.93469039|128.20005913|22765|1 +638475.23993386|220459.32836148|127.88629161|22766|1 +638480.30385279|220454.72208737|127.56020854|22767|1 +638485.36554662|220450.11686626|127.15310699|22768|1 +638490.4280989|220445.51101554|126.75864656|22769|1 +638495.54275866|220440.85945628|126.49989904|22770|1 +638500.61631382|220436.24821139|126.49322037|22771|1 +638505.6788115|220431.64196122|126.0619249|22772|1 +638510.7411296|220427.03543077|125.5932921|22773|1 +638515.85308891|220422.38432465|125.16714052|22774|1 +638520.92211507|220417.77459193|124.94263284|22775|1 +638525.99150023|220413.16460906|124.7245527|22776|1 +638531.1085378|220408.51104502|124.48060431|22777|1 +638536.17871193|220403.90049361|124.27550944|22778|1 +638541.29579174|220399.24637448|123.98854034|22779|1 +638546.36449202|220394.63508185|123.60893484|22780|1 +638551.43523188|220390.02290299|123.3107571|22781|1 +638556.55601889|220385.36690364|123.14978985|22782|1 +638561.62790403|220380.75368454|122.8520958|22783|1 +638566.74822892|220376.09625087|122.53563076|22784|1 +638571.82169662|220371.4817429|122.25093129|22785|1 +638576.94289447|220366.82196212|121.80397164|22786|1 +638582.01767328|220362.20500574|121.41353887|22787|1 +638587.14176533|220357.54453041|121.12982539|22788|1 +638592.21481326|220352.93017839|120.82737813|22789|1 +638597.29236437|220348.31307403|120.6376498|22790|1 +638602.41886301|220343.64804469|120.15503643|22791|1 +638607.49831066|220339.0286254|119.91585055|22792|1 +638612.5791785|220334.40628515|119.53940766|22793|1 +638617.70867708|220329.74105406|119.27040028|22794|1 +638622.7912746|220325.11840404|119.00076039|22795|1 +638627.87467213|220320.49539782|118.7625884|22796|1 +638633.00760551|220315.82668185|118.46351769|22797|1 +638638.04770715|220311.24023261|117.99328499|22798|1 +638643.13752798|220306.6085773|117.5184293|22799|1 +638648.27356803|220301.93801047|117.30168861|22800|1 +638653.315909|220297.35159607|117.00681299|22801|1 +638658.45774791|220292.67324746|116.57844759|22802|1 +638663.55203291|220288.03894856|116.2234918|22803|1 +638668.5984739|220283.44895847|115.94157356|22804|1 +638673.7428998|220278.76967095|115.63310805|22805|1 +638678.83990703|220274.13393562|115.36645402|22806|1 +638683.88919236|220269.54210288|115.14750881|22807|1 +638688.9860959|220264.90787071|114.99998264|22808|1 +638694.08579069|220260.27036125|114.79030199|22809|1 +638699.17456595|220255.64810051|115.03045526|22810|1 +638704.2746341|220251.01099548|114.88380345|22811|1 +638709.33079327|220246.41261589|114.64066432|22812|1 +638714.40934062|220241.78579485|113.72975995|22813|1 +638719.51644784|220237.1395787|113.48402563|22814|1 +638724.57697047|220232.53570193|113.24135158|22815|1 +638729.63693021|220227.9330747|113.06119477|22816|1 +638734.72916005|220223.30673486|113.35286128|22817|1 +638739.77361209|220218.70881875|112.38309527|22818|1 +638744.89510105|220214.0478478|111.99525771|22819|1 +638749.97203321|220209.42692134|111.57256638|22820|1 +638755.00085346|220204.85029887|111.20197431|22821|1 +638760.08127297|220200.22649563|110.8045187|22822|1 +638765.15473263|220195.61145538|110.61304164|22823|1 +638770.18481385|220191.03501173|110.35482432|22824|1 +638775.26107032|220186.41765105|110.18231358|22825|1 +638780.29075674|220181.84259193|110.01141204|22826|1 +638785.37316081|220177.21905552|109.78935073|22827|1 +638790.39948156|220172.64867691|109.75560389|22828|1 +638795.4322873|220168.07129814|109.62836489|22829|1 +638800.48558112|220163.47124604|109.15852286|22830|1 +638805.52421762|220158.88819813|109.00018802|22831|1 +638810.52201162|220154.35109575|109.58910209|22832|1 +638815.4910472|220149.83612341|109.84217552|22833|1 +638820.53144745|220145.25197977|109.72719626|22834|1 +638825.64285226|220140.58999484|108.48571607|22835|1 +638830.65109637|220136.03298535|108.19697032|22836|1 +638835.69992527|220131.44103469|108.06979644|22837|1 +638840.70393674|220126.88948438|107.91777751|22838|1 +638845.70469667|220122.34183737|107.84647009|22839|1 +638850.7065715|220117.79332448|107.78745962|22840|1 +638855.70738671|220113.24628533|107.77181403|22841|1 +638860.76830078|220108.64305153|107.61976719|22842|1 +638865.73529012|220104.12494535|107.45416767|22843|1 +638870.74039231|220099.57429164|107.46300435|22844|1 +638875.7548387|220095.01397331|107.37231203|22845|1 +638880.71392395|220090.5053114|107.39857095|22846|1 +638885.70186801|220085.97375989|107.70505518|22847|1 +638890.66444647|220081.46191301|107.73070018|22848|1 +638895.64342547|220076.93303173|107.57598373|22849|1 +638900.60719355|220072.42053356|107.63825912|22850|1 +638905.57341939|220067.90572348|107.69401397|22851|1 +638910.54111568|220063.38964171|107.75566615|22852|1 +638915.50287082|220058.88005576|107.91007563|22853|1 +638920.42800138|220054.40230129|107.94440849|22854|1 +638925.3973577|220049.88528424|108.05469035|22855|1 +638930.31448103|220045.41639868|108.22451288|22856|1 +638935.22162439|220040.95811376|108.52394637|22857|1 +638940.14456216|220036.48363991|108.66790996|22858|1 +638945.09608907|220031.9798173|108.52646715|22859|1 +638950.01338357|220027.51170034|108.77480598|22860|1 +638954.89265836|220023.07696197|108.92701094|22861|1 +638959.8588352|220018.55893193|108.7100191|22862|1 +638964.73838754|220014.12443972|108.90436112|22863|1 +638969.65519188|220009.65192308|108.74539376|22864|1 +638974.57930118|220005.17225453|108.54264294|22865|1 +638979.51408982|220000.68200008|108.26522676|22866|1 +638984.45923406|219996.1815242|107.91940532|22867|1 +638989.43976951|219991.64531539|107.27041107|22868|1 +638994.49248779|219987.03600612|105.98484976|22869|1 +638999.44100569|219982.52801334|105.26393419|22870|1 +639004.31305652|219978.09824111|105.28371906|22871|1 +638999.99804918|219978.70891945|105.17098153|22872|1 +638995.00138962|219983.24258972|105.37335098|22873|1 +638989.86740703|219987.91676753|106.90419083|22874|1 +638984.86958521|219992.45815153|107.6664342|22875|1 +638979.81902128|219997.04274123|108.03225447|22876|1 +638974.82773053|220001.57272888|108.33343669|22877|1 +638969.79542709|220006.13942109|108.5879984|22878|1 +638964.82060851|220010.6532733|108.78993067|22879|1 +638959.84793349|220015.15934401|108.49975245|22880|1 +638954.82745609|220019.71493863|108.72313461|22881|1 +638949.78667094|220024.28579|108.6775466|22882|1 +638944.82246634|220028.78387962|108.36204895|22883|1 +638939.76365677|220033.37397659|108.55799087|22884|1 +638934.73654332|220037.93154048|108.43805377|22885|1 +638929.77849074|220042.42397483|108.11574721|22886|1 +638924.71582194|220047.01256498|107.88812344|22887|1 +638919.69867158|220051.56049689|107.71841253|22888|1 +638914.67750461|220056.11289609|107.61683713|22889|1 +638909.61594385|220060.70108566|107.43906158|22890|1 +638904.59242322|220065.25651636|107.411919|22891|1 +638899.52289022|220069.85365007|107.37705594|22892|1 +638894.46239852|220074.44155009|107.25545382|22893|1 +638889.39343396|220079.0386971|107.26436492|22894|1 +638884.34775944|220083.61145799|107.00018517|22895|1 +638879.27176883|220088.21669731|107.1522134|22896|1 +638874.15567889|220092.85740231|107.22281388|22897|1 +638869.09583769|220097.44614657|107.21998614|22898|1 +638863.97731214|220102.09018459|107.38445085|22899|1 +638858.9035848|220106.69458531|107.63684525|22900|1 +638853.80198783|220111.32120008|107.62790625|22901|1 +638848.7014055|220115.94704959|107.63171067|22902|1 +638843.64457877|220120.53434701|107.73548129|22903|1 +638838.54473438|220125.16065818|107.78954322|22904|1 +638833.39130532|220129.83868029|107.96217488|22905|1 +638828.3351405|220134.42873355|108.16604192|22906|1 +638823.18275804|220139.10649673|108.39559116|22907|1 +638818.03992237|220143.78380853|109.31622518|22908|1 +638812.92700899|220148.42869839|109.79534108|22909|1 +638807.79163249|220153.08919713|109.87076918|22910|1 +638802.74523185|220157.66058901|109.2483036|22911|1 +638797.6185324|220162.31189391|109.21232433|22912|1 +638792.46858424|220166.98988463|109.64403838|22913|1 +638787.3854004|220171.60359953|109.76977049|22914|1 +638782.25593284|220176.25930631|109.89081451|22915|1 +638777.12912735|220180.91238076|109.99360844|22916|1 +638772.00310594|220185.56497956|110.11551752|22917|1 +638766.87648094|220190.21873689|110.28773991|22918|1 +638761.69497491|220194.92458813|110.64923485|22919|1 +638756.61616923|220199.5360887|110.92027001|22920|1 +638751.44116006|220204.23547758|111.23301434|22921|1 +638746.31325333|220208.89302937|111.62534466|22922|1 +638741.1844335|220213.55238867|112.09920506|22923|1 +638736.06369555|220218.20263526|112.42378124|22924|1 +638730.89150142|220222.90137187|112.89478599|22925|1 +638725.82883506|220227.49693519|113.05538116|22926|1 +638720.67097808|220232.17911291|113.22787331|22927|1 +638715.56202008|220236.81714478|113.42302458|22928|1 +638710.4463019|220241.46452328|113.88689486|22929|1 +638705.27432684|220246.16720188|114.70386989|22930|1 +638700.16715489|220250.80527531|115.03753391|22931|1 +638695.06809047|220255.43317794|115.13427238|22932|1 +638689.92750715|220260.0962488|115.01626075|22933|1 +638684.82881729|220264.72456994|115.17610247|22934|1 +638679.73034209|220269.35322808|115.3799509|22935|1 +638674.58266592|220274.02796962|115.7003785|22936|1 +638669.48578062|220278.65587156|115.96112589|22937|1 +638664.39061176|220283.2820009|116.20340926|22938|1 +638659.24717026|220287.95307469|116.53764999|22939|1 +638654.10524894|220292.62278288|116.87240232|22940|1 +638649.01303117|220297.24715243|117.19068121|22941|1 +638643.87554552|220301.91144016|117.40760794|22942|1 +638638.78565377|220306.53401302|117.75151321|22943|1 +638633.69689887|220311.15585898|118.12064491|22944|1 +638628.56087079|220315.82167914|118.57621801|22945|1 +638623.47575071|220320.43912545|118.85222032|22946|1 +638618.34384875|220325.09899198|119.12115328|22947|1 +638613.21285909|220329.75840927|119.4217867|22948|1 +638608.13087349|220334.37341434|119.72993594|22949|1 +638603.05010106|220338.98650271|119.9695497|22950|1 +638597.92221656|220343.64402454|120.34628095|22951|1 +638592.84342359|220348.25667255|120.6989113|22952|1 +638587.76925169|220352.86372076|120.93302771|22953|1 +638582.64389025|220357.51779315|121.21083456|22954|1 +638577.56756487|220362.12807393|121.55165165|22955|1 +638572.49288039|220366.73813764|121.99891827|22956|1 +638567.41869664|220371.34664088|122.35260901|22957|1 +638562.34448107|220375.9539189|122.6002316|22958|1 +638557.27165576|220380.56082983|122.92304045|22959|1 +638552.19901969|220385.16698609|123.19602898|22960|1 +638547.1271566|220389.77259663|123.48168654|22961|1 +638542.05708442|220394.37755338|123.84876254|22962|1 +638536.98717642|220398.98162644|124.15349804|22963|1 +638531.96348146|220403.54215465|124.32618552|22964|1 +638526.84686953|220408.18875428|124.63850196|22965|1 +638521.82296701|220412.74903866|124.7738056|22966|1 +638516.75326171|220417.35206699|125.00411759|22967|1 +638511.68522879|220421.95432625|125.29706773|22968|1 +638506.66977376|220426.51096595|125.76979331|22969|1 +638501.60527273|220431.11121834|126.16290499|22970|1 +638496.53868025|220435.71219094|126.4562179|22971|1 +638491.51506463|220440.27195389|126.56658348|22972|1 +638486.49526487|220444.82989125|126.81432699|22973|1 +638481.43316837|220449.42835853|127.23907401|22974|1 +638476.41839524|220453.98344737|127.63042765|22975|1 +638471.35456615|220458.58253483|127.97415619|22976|1 +638466.33308233|220463.14120873|128.15315028|22977|1 +638461.31250229|220467.69943769|128.36330531|22978|1 +638456.29308812|220472.25749881|128.6046213|22979|1 +638451.27695979|220476.81495436|128.92080728|22980|1 +638446.25985959|220481.37300223|129.21195288|22981|1 +638441.19545764|220485.97420815|129.51866036|22982|1 +638436.22300873|220490.49085148|129.73789392|22983|1 +638431.19803421|220495.05406451|129.86037041|22984|1 +638426.17816604|220499.61412407|130.10762093|22985|1 +638421.20749623|220504.12990052|130.38868341|22986|1 +638416.17366152|220508.69939575|130.36121526|22987|1 +638411.12841116|220513.27682634|130.12789881|22988|1 +638406.13783187|220517.80654953|130.05913077|22989|1 +638401.12317792|220522.36382202|130.46827871|22990|1 +638396.17228453|220526.85612153|130.28276408|22991|1 +638391.133906|220531.43006757|130.28007587|22992|1 +638386.15972298|220535.94935032|130.58477416|22993|1 +638381.14963188|220540.49400532|130.27827132|22994|1 +638376.09413971|220545.08084831|130.05114055|22995|1 +638371.3030303|220549.46077832|132.62547228|22996|1 +638366.35167475|220553.96376679|133.30293926|22997|1 +638361.31691258|220558.52685149|132.65913541|22998|1 +638356.23175848|220563.12707121|131.28647227|22999|1 +638351.34665783|220567.57373768|132.28831079|23000|1 +638346.27818744|220572.15454096|130.55536194|23001|1 +638341.45558079|220576.5637092|133.18086275|23002|1 +638336.42646283|220581.12464557|132.78574189|23003|1 +638331.37827469|220585.6922116|131.48849755|23004|1 +638326.35997665|220590.23831594|130.67061095|23005|1 +638321.39793223|220594.74292159|130.66169985|23006|1 +638317.47196111|220598.47672777|145.0192894|23007|1 +638316.12592191|220599.48829725|127.21150354|23008|2 +638312.92388198|220602.65925207|149.56135613|23009|1 +638311.99845928|220603.35723889|137.52976879|23010|2 +638311.34865195|220603.84734674|129.08152337|23011|3 +638306.09559114|220608.57332519|125.44577523|23012|1 +638302.4528476|220612.07806305|142.18419167|23013|1 +638301.12268487|220613.08826123|125.47398752|23014|2 +638296.0463951|220617.68222444|124.2459577|23015|1 +638292.84654613|220620.84269865|145.88296865|23016|1 +638290.97320206|220622.27456351|123.11762431|23017|2 +638287.77924269|220625.42004563|143.94203207|23018|1 +638286.01679094|220626.77120923|122.86531363|23019|2 +638281.06809689|220631.26902949|123.30313894|23020|1 +638277.96784886|220634.32844212|144.04970944|23021|1 +638276.10597217|220635.76400974|122.47151362|23022|2 +638273.31731771|220638.59223477|147.59477456|23023|1 +638267.89626749|220643.4394811|141.31090369|23024|1 +638266.34995969|220644.63812705|123.92718582|23025|2 +638266.0991467|220644.83254887|121.10753833|23026|3 +638261.16854222|220649.31098712|121.29469007|23027|1 +638257.24543669|220653.0047213|132.49469861|23028|1 +638256.18748075|220653.82893539|120.94750127|23029|2 +638252.76249928|220653.79009338|121.01385084|23030|1 +638257.72319179|220649.2784869|121.15691216|23031|1 +638262.77601415|220644.68283974|121.27264486|23032|1 +638269.881226|220638.50437515|145.25380579|23033|1 +638267.77041186|220640.13926134|121.30255008|23034|2 +638274.99750148|220633.87132294|147.08378147|23035|1 +638277.87187997|220630.96615262|122.75385974|23036|1 +638284.93570608|220624.83419018|147.48844595|23037|1 +638282.90894214|220626.39091524|123.38645495|23038|2 +638289.81439337|220620.37851026|146.06139532|23039|1 +638287.90947005|220621.83725338|123.03644771|23040|2 +638294.37273338|220616.16708636|140.67328552|23041|1 +638299.34772552|220611.6367252|140.33260796|23042|1 +638298.08980032|220612.59391227|124.61213143|23043|2 +638304.44460601|220607.01406023|141.55289871|23044|1 +638303.10993542|220608.02624257|124.58566787|23045|2 +638309.93952325|220602.09869514|148.60862168|23046|1 +638308.19164651|220603.41967798|126.00242144|23047|2 +638314.87291273|220597.60194319|147.91422547|23048|1 +638313.28110362|220598.8006301|126.95909984|23049|2 +638319.48445071|220593.33900172|142.26009416|23050|1 +638318.56256064|220594.03058377|129.90141915|23051|2 +638323.4196792|220589.58696864|127.84052687|23052|1 +638328.78391311|220584.75739128|132.11016317|23053|1 +638333.74189921|220580.2472288|132.16513667|23054|1 +638338.8851843|220575.58425339|133.52259141|23055|1 +638343.89991361|220571.0165894|133.06206046|23056|1 +638348.74427553|220566.57346303|130.0414667|23057|1 +638353.92527438|220561.88438398|132.09114104|23058|1 +638358.96143496|220557.31025232|132.73221947|23059|1 +638363.9834686|220552.73777161|132.42745607|23060|1 +638369.09329157|220548.09334037|132.78478381|23061|1 +638373.92621784|220543.66510634|130.14746974|23062|1 +638379.01803134|220539.03348846|130.20577328|23063|1 +638384.07091162|220534.43944043|130.44966586|23064|1 +638389.10523748|220529.85870892|130.3943854|23065|1 +638394.18182086|220525.23856464|130.25388207|23066|1 +638399.22925143|220520.64930413|130.48571954|23067|1 +638404.29888585|220516.03436082|130.25209612|23068|1 +638409.37862304|220511.41274181|130.23081366|23069|1 +638414.42049274|220506.82822961|130.43815026|23070|1 +638419.49990798|220502.20741249|130.46098612|23071|1 +638424.56331143|220497.59730148|130.15958996|23072|1 +638429.58295119|220493.02810463|129.95537876|23073|1 +638434.65127488|220488.41499318|129.77910079|23074|1 +638439.76558743|220483.75968219|129.56869461|23075|1 +638444.7779893|220479.19527182|129.21492015|23076|1 +638449.84044466|220474.58600498|128.91438905|23077|1 +638454.90358919|220469.97632933|128.63276847|23078|1 +638459.96828727|220465.3657548|128.39504297|23079|1 +638465.07845868|220460.71308293|128.0925306|23080|1 +638470.14450734|220456.10179143|127.89901644|23081|1 +638475.20394836|220451.49413694|127.50583035|23082|1 +638480.26726479|220446.88428606|127.22523297|23083|1 +638485.37519974|220442.23252886|126.83032605|23084|1 +638490.43897969|220437.62225335|126.55020305|23085|1 +638495.50563113|220433.01053927|126.37019507|23086|1 +638500.56923955|220428.40018622|126.07168247|23087|1 +638505.67843841|220423.74712274|125.6655483|23088|1 +638510.78928408|220419.09308201|125.30356037|23089|1 +638515.85473215|220414.48134296|125.03078578|23090|1 +638520.92115584|220409.86908265|124.78943259|23091|1 +638526.03640629|220405.2128796|124.58465398|23092|1 +638531.1016112|220400.60046019|124.23754889|23093|1 +638536.21845852|220395.9434671|124.08972506|23094|1 +638541.33402083|220391.28638413|123.83610282|23095|1 +638546.40053192|220386.67203263|123.42726184|23096|1 +638551.46935362|220382.05698152|123.13734408|23097|1 +638556.58655349|220377.39780899|122.83474799|23098|1 +638561.65677699|220372.78155129|122.55156471|23099|1 +638566.77551973|220368.12112426|122.26219575|23100|1 +638571.89464004|220363.45961033|121.91076533|23101|1 +638576.9665517|220358.84025742|121.49716184|23102|1 +638582.03982831|220354.22039936|121.14626163|23103|1 +638587.16213713|220349.55672452|120.85839955|23104|1 +638592.2332354|220344.94023987|120.62672021|23105|1 +638597.30904285|220340.31770227|120.24529156|23106|1 +638602.43383615|220335.65132041|119.92103164|23107|1 +638607.51150997|220331.02877705|119.68388285|23108|1 +638612.59077547|220326.40309104|119.30322625|23109|1 +638617.71887038|220321.73377396|118.98636124|23110|1 +638622.75163892|220317.15209074|118.75505397|23111|1 +638627.88149296|220312.48183956|118.49512513|23112|1 +638632.96575251|220307.85159931|118.11552893|23113|1 +638638.05226728|220303.21849005|117.66746236|23114|1 +638643.1374899|220298.5892154|117.44456389|23115|1 +638648.223707|220293.95910766|117.22817667|23116|1 +638653.31311231|220289.324548|116.88084834|23117|1 +638658.40304177|220284.69017393|116.5900283|23118|1 +638663.49446218|220280.05436455|116.29321791|23119|1 +638668.53835075|220275.46231675|116.0444047|23120|1 +638673.67974595|220270.78155847|115.78791751|23121|1 +638678.77613654|220266.14085472|115.46075543|23122|1 +638683.82556561|220261.5430913|115.15625248|23123|1 +638688.91149039|220256.91824611|115.36658425|23124|1 +638693.96088688|220252.3216103|115.15597343|23125|1 +638699.05893808|220247.68108609|114.97338886|23126|1 +638704.17459915|220243.01805609|114.24178554|23127|1 +638709.19349107|220238.44429129|113.62274302|23128|1 +638714.29997309|220233.79542727|113.34732672|23129|1 +638719.40507494|220229.1495349|113.15960757|23130|1 +638724.41654526|220224.58834339|112.94009495|23131|1 +638729.52540304|220219.9388104|112.73411641|23132|1 +638734.59682651|220215.32044461|112.28760324|23133|1 +638739.66419834|220210.70767238|112.00347117|23134|1 +638744.73901566|220206.08651054|111.58227744|23135|1 +638749.76418115|220201.51152236|111.2506505|23136|1 +638754.83998596|220196.89041386|110.9108101|23137|1 +638759.91348651|220192.27257573|110.67094519|23138|1 +638764.93998798|220187.69760821|110.44542363|23139|1 +638770.01612247|220183.0776631|110.23076653|23140|1 +638775.04550378|220178.50029168|110.02398804|23141|1 +638780.07242115|220173.92618489|109.90444161|23142|1 +638785.10519101|220169.34579284|109.7038488|23143|1 +638790.1346568|220164.769579|109.60293383|23144|1 +638795.17492243|220160.18155638|109.33379623|23145|1 +638800.18978876|220155.62250067|109.5629734|23146|1 +638805.20024561|220151.06854629|109.88544738|23147|1 +638810.22910042|220146.49426153|109.90271148|23148|1 +638815.27469497|220141.89210564|108.84967598|23149|1 +638820.33985148|220137.27863982|108.34410582|23150|1 +638825.34252276|220132.72519039|108.11278925|23151|1 +638830.35220677|220128.16448109|107.80665848|23152|1 +638835.34504086|220123.62260716|107.79905893|23153|1 +638840.39675992|220119.02567103|107.66072291|23154|1 +638845.39707345|220114.47632123|107.59690343|23155|1 +638850.35082558|220109.96927512|107.53258164|23156|1 +638855.40230021|220105.37364545|107.48746803|23157|1 +638860.3600239|220100.86297264|107.42263465|23158|1 +638865.37875161|220096.29517166|107.21521433|23159|1 +638870.40087214|220091.72413133|106.99532034|23160|1 +638875.36052822|220087.21241084|106.99187868|23161|1 +638880.39127683|220082.63293151|106.72207135|23162|1 +638885.29647993|220078.1722049|106.84736628|23163|1 +638890.30698242|220073.61484855|106.89391237|23164|1 +638895.21670462|220069.14984573|107.00583135|23165|1 +638900.2264555|220064.59381885|107.10781602|23166|1 +638905.14602261|220060.11896735|107.14438131|23167|1 +638910.12047333|220055.59365994|107.13256805|23168|1 +638915.07307653|220051.09149858|107.39956624|23169|1 +638919.98995663|220046.62022817|107.53400481|23170|1 +638924.94083319|220042.12027395|107.85599511|23171|1 +638929.86518397|220037.64167884|107.94607351|23172|1 +638934.77400634|220033.17945336|108.2277499|23173|1 +638939.70743425|220028.69192427|108.26107817|23174|1 +638944.63788043|220024.20775256|108.3497148|23175|1 +638949.56042721|220019.73199509|108.54316384|23176|1 +638954.5004803|220015.23841557|108.57518055|23177|1 +638959.4124318|220010.76813486|108.41820377|23178|1 +638964.33593544|220006.29213188|108.66593799|23179|1 +638969.21439915|220001.85105638|108.40580451|23180|1 +638974.19285366|219997.31924494|108.15777264|23181|1 +638979.13410627|219992.82024334|107.82577363|23182|1 +638984.12820586|219988.27317842|107.49076086|23183|1 +638989.08664103|219983.75193397|106.59838563|23184|1 +638994.13395446|219979.14608586|105.38210395|23185|1 +638990.99470997|219979.07612734|105.53563907|23186|1 +638985.93149771|219983.68967241|106.89276825|23187|1 +638980.9511742|219988.21925776|107.51449899|23188|1 +638975.95180528|219992.7632193|107.88535151|23189|1 +638971.00913942|219997.25516779|108.21603897|23190|1 +638966.0298583|220001.77935737|108.4565829|23191|1 +638961.06477611|220006.28933318|108.58554273|23192|1 +638956.16755984|220010.7356886|108.55000064|23193|1 +638951.22700518|220015.22104691|108.4801071|23194|1 +638946.24827606|220019.74006156|108.3204328|23195|1 +638941.31502005|220024.218422|108.2188202|23196|1 +638936.32949804|220028.7449887|108.17627387|23197|1 +638931.38346384|220033.23087411|107.7245331|23198|1 +638926.4013491|220037.75442174|107.68766086|23199|1 +638921.4340466|220042.26283586|107.50797844|23200|1 +638916.48311604|220046.75440363|107.16055709|23201|1 +638911.46045021|220051.31450648|107.09621671|23202|1 +638906.49737043|220055.81923012|106.9280964|23203|1 +638901.48175111|220060.37249708|106.82628846|23204|1 +638896.46246554|220064.92989971|106.79268114|23205|1 +638891.45021439|220069.48018093|106.69692865|23206|1 +638886.38289708|220074.08174936|106.70540257|23207|1 +638881.42113216|220078.58644963|106.63552763|23208|1 +638876.35789813|220083.18431547|106.64405736|23209|1 +638871.28369948|220087.79418852|106.82669774|23210|1 +638866.21290533|220092.40083103|106.99709698|23211|1 +638861.1908357|220096.96355676|107.19939201|23212|1 +638856.12752648|220101.56296948|107.33273298|23213|1 +638851.07122158|220106.15521666|107.39781751|23214|1 +638845.96675418|220110.79154425|107.48761686|23215|1 +638840.91578613|220115.37873696|107.53435828|23216|1 +638835.80569028|220120.02119979|107.76777706|23217|1 +638830.76842574|220124.59274159|107.65303035|23218|1 +638825.66502089|220129.22798852|107.8434191|23219|1 +638820.59438962|220133.83687237|108.32633013|23220|1 +638815.49691952|220138.46651967|108.49861763|23221|1 +638810.35274674|220143.14840564|109.50548842|23222|1 +638805.25455886|220147.77996921|109.78435568|23223|1 +638800.16600372|220152.40125371|109.93270971|23224|1 +638795.06151215|220157.03048102|109.52166421|23225|1 +638789.98730615|220161.63625819|109.45873769|23226|1 +638784.90023776|220166.2569423|109.67013916|23227|1 +638779.76933527|220170.91691954|109.83323651|23228|1 +638774.69139887|220175.52808356|109.93925816|23229|1 +638769.56204201|220180.18718731|110.14675289|23230|1 +638764.43086449|220184.8489023|110.43574048|23231|1 +638759.30487419|220189.50511373|110.65660186|23232|1 +638754.17969165|220194.16089383|110.90282918|23233|1 +638749.05932037|220198.81150744|111.08088378|23234|1 +638743.88527131|220203.5129961|111.43613723|23235|1 +638738.75994648|220208.1706926|111.83345331|23236|1 +638733.64016941|220212.82233365|112.14384428|23237|1 +638728.47092919|220217.52000444|112.5445183|23238|1 +638723.30871034|220222.20969374|112.80855853|23239|1 +638718.19817121|220226.8518013|113.0205088|23240|1 +638713.08861373|220231.49324566|113.25154633|23241|1 +638707.92996005|220236.18031464|113.56706258|23242|1 +638702.77238935|220240.86670849|113.90816803|23243|1 +638697.65265579|220245.52372539|114.67735982|23244|1 +638692.49565475|220250.21123499|115.156885|23245|1 +638687.34782696|220254.88719981|115.36226822|23246|1 +638682.20799942|220259.55268514|115.29343508|23247|1 +638677.06123125|220264.22836499|115.55608004|23248|1 +638671.96268257|220268.86091116|115.87784709|23249|1 +638666.8201307|220273.53205311|116.0789608|23250|1 +638661.67822192|220278.20298815|116.31183077|23251|1 +638656.53758773|220282.87277226|116.54521234|23252|1 +638651.39641833|220287.54437609|116.89153608|23253|1 +638646.25730945|220292.21367942|117.20088526|23254|1 +638641.16898013|220296.83553255|117.39993397|23255|1 +638636.03317259|220301.50112845|117.64765888|23256|1 +638630.84865144|220306.21318911|118.08190301|23257|1 +638625.76310238|220310.83335014|118.35076156|23258|1 +638620.63028861|220315.49720661|118.68116065|23259|1 +638615.49946862|220320.15786674|118.89329697|23260|1 +638610.36910489|220324.81922565|119.19963237|23261|1 +638605.23974139|220329.48012584|119.54390972|23262|1 +638600.11177608|220334.13859449|119.78866736|23263|1 +638594.98456648|220338.79879985|120.24009187|23264|1 +638589.85869188|220343.4564153|120.57322569|23265|1 +638584.73743465|220348.1085994|120.80057971|23266|1 +638579.61292853|220352.76447995|121.09083234|23267|1 +638574.48981484|220357.42035068|121.48775775|23268|1 +638569.36755682|220362.07493779|121.84137408|23269|1 +638564.24594216|220366.7284422|122.15165343|23270|1 +638559.12526263|220371.38125381|122.47487156|23271|1 +638554.0061209|220376.03347989|122.8672484|23272|1 +638548.88648365|220380.68470634|123.13505584|23273|1 +638543.81520475|220385.29189964|123.39638925|23274|1 +638538.69853873|220389.94190982|123.7898916|23275|1 +638533.58104921|220394.59114112|124.05256446|23276|1 +638528.51102185|220399.19663292|124.26465427|23277|1 +638523.39266013|220403.84558234|124.43429076|23278|1 +638518.32602711|220408.44968987|124.7905581|23279|1 +638513.26042356|220413.05309293|125.16572665|23280|1 +638508.14295391|220417.70125243|125.33635844|23281|1 +638503.07681611|220422.30442568|125.64948414|23282|1 +638498.01156178|220426.90702316|125.98153895|23283|1 +638492.89590827|220431.55415047|126.20312587|23284|1 +638487.82989893|220436.1568614|126.48563942|23285|1 +638482.81059781|220440.71658777|126.72251846|23286|1 +638477.70121552|220445.36030745|127.13860552|23287|1 +638472.68466391|220449.91842154|127.45053129|23288|1 +638467.62032266|220454.51994235|127.75855962|23289|1 +638462.55393498|220459.12259529|128.00432185|23290|1 +638457.53867471|220463.67984584|128.3412415|23291|1 +638452.47479592|220468.28172553|128.6434097|23292|1 +638447.45539159|220472.84281002|128.8491836|23293|1 +638442.4412954|220477.40068254|129.19225172|23294|1 +638432.36149539|220486.56230781|129.78783516|23295|1 +638427.38843904|220491.08110061|129.97765651|23296|1 +638422.32263574|220495.68509699|130.24286876|23297|1 +638417.34994325|220500.20385927|130.45733982|23298|1 +638412.31722343|220504.77438938|130.43196457|23299|1 +638407.2780615|220509.34954053|130.30055838|23300|1 +638402.29448646|220513.876235|130.34612778|23301|1 +638397.27009776|220518.44184462|130.54527882|23302|1 +638392.26781248|220522.98190753|130.27870851|23303|1 +638387.29097292|220527.50461415|130.50463005|23304|1 +638382.24772|220532.08403143|130.41679338|23305|1 +638377.29224573|220536.58230535|130.21393094|23306|1 +638372.35777099|220541.07542741|131.1997146|23307|1 +638367.28644323|220545.66637605|129.91647873|23308|1 +638362.45785517|220550.08325307|132.60918487|23309|1 +638357.51858572|220554.57927998|133.46917131|23310|1 +638352.52303216|220559.09883165|131.96983657|23311|1 +638347.33129451|220563.78000693|129.04198152|23312|1 +638342.53683536|220568.16214433|131.41573905|23313|1 +638337.69521792|220572.57831535|133.03496439|23314|1 +638332.74081043|220577.07776445|133.00966355|23315|1 +638327.70939535|220581.63489838|131.93200625|23316|1 +638322.45501223|220586.35966503|127.8605908|23317|1 +638317.82422925|220590.61020335|131.69996413|23318|1 +638317.52085334|220590.83817437|127.6176284|23319|2 +638313.68994278|220594.49982542|143.25877009|23320|1 +638312.69276443|220595.25197048|130.08054346|23321|2 +638308.94784435|220598.83045312|145.29558007|23322|1 +638308.57135246|220599.11543843|140.40590596|23323|2 +638307.50510184|220599.92253616|126.55805375|23324|3 +638303.6808013|220603.5592404|140.58255599|23325|1 +638302.50084216|220604.45546123|125.51799422|23326|2 +638298.78499277|220608.01430717|141.31228966|23327|1 +638298.2092832|220608.45303254|134.08606512|23328|2 +638297.45223835|220609.02994633|124.58377031|23329|3 +638293.64025513|220612.65269986|138.37273297|23330|1 +638292.48895681|220613.53284312|124.15915352|23331|2 +638288.9512443|220616.9498527|141.66933834|23332|1 +638287.41250107|220618.12982684|122.9824881|23333|2 +638284.73492809|220620.86901328|149.38250157|23334|1 +638278.34816188|220626.47291752|132.47270921|23335|1 +638277.5309633|220627.10322818|122.85936049|23336|2 +638274.37131904|220630.20623466|142.90478168|23337|1 +638272.56974627|220631.59959974|122.03527891|23338|2 +638269.38076164|220634.72865456|142.02754975|23339|1 +638267.56316749|220636.13816699|121.29257857|23340|2 +638262.67233573|220640.5808868|121.34986821|23341|1 +638257.70941489|220645.08631949|121.16553491|23342|1 +638252.80829752|220649.53759165|121.1534426|23343|1 +638253.23171722|220646.27383747|121.15276357|23344|1 +638258.18087482|220641.76830607|121.20457446|23345|1 +638263.22734129|220637.17459308|121.28506274|23346|1 +638270.20531972|220631.08861726|144.12204935|23347|1 +638274.7216428|220626.91653902|138.99480787|23348|1 +638273.26851735|220628.04125343|122.05068265|23349|2 +638280.12520889|220622.05801354|144.23762392|23350|1 +638278.30691956|220623.46143988|122.6976026|23351|2 +638285.19794374|220617.45632713|145.6905335|23352|1 +638289.29894772|220613.59422509|134.734185|23353|1 +638288.42873259|220614.26193221|124.08444165|23354|2 +638293.41267608|220609.72534406|124.19066794|23355|1 +638299.91255573|220604.02615093|142.89837276|23356|1 +638298.50371807|220605.10029539|125.06771383|23357|2 +638304.38908008|220599.87229175|136.22738056|23358|1 +638303.59880754|220600.47279373|126.05083718|23359|2 +638308.74048456|220595.81802701|128.33450701|23360|1 +638314.74764953|220590.49655709|140.98582521|23361|1 +638314.35358124|220590.79386547|135.72778215|23362|2 +638313.72540263|220591.26780047|127.34602583|23363|3 +638318.72065281|220586.72486919|127.79444587|23364|1 +638324.03736915|220581.9339675|132.06505886|23365|1 +638329.07131804|220577.34816883|131.85510846|23366|1 +638334.1193259|220572.76090725|132.55369978|23367|1 +638338.99491456|220568.30208694|130.77386067|23368|1 +638343.94741007|220563.78611819|130.09582628|23369|1 +638349.07883908|220559.13056917|131.41192532|23370|1 +638354.16248103|220554.51073615|132.06188695|23371|1 +638359.12875441|220549.9853999|131.65779918|23372|1 +638364.24109902|220545.34582024|132.8564819|23373|1 +638369.31775715|220540.73268779|133.5382556|23374|1 +638374.10436219|220536.33605475|130.14801855|23375|1 +638379.19717275|220531.70193591|130.28898697|23376|1 +638384.20611963|220527.14694365|130.67598738|23377|1 +638389.26906911|220522.5343987|130.33724459|23378|1 +638394.30622468|220517.95021267|130.42071873|23379|1 +638399.29457329|220513.41053197|130.51450854|23380|1 +638404.36184368|220508.79549132|130.30090255|23381|1 +638409.4432764|220504.17104164|130.38698118|23382|1 +638414.47506444|220499.59164256|130.46452079|23383|1 +638419.54375933|220494.97623378|130.3326309|23384|1 +638424.55844658|220490.40853612|130.07957608|23385|1 +638429.57392652|220485.84040068|129.85144071|23386|1 +638434.63548907|220481.2299448|129.58886086|23387|1 +638439.64553116|220476.66536347|129.24214645|23388|1 +638444.70362545|220472.0571148|128.89866905|23389|1 +638449.76418525|220467.44733488|128.61778331|23390|1 +638454.77717266|220462.88092886|128.34604121|23391|1 +638459.83521579|220458.272633|127.996713|23392|1 +638464.89452935|220453.66354457|127.67875968|23393|1 +638469.95746796|220449.05238493|127.46716287|23394|1 +638475.01619056|220444.44353064|127.12457844|23395|1 +638480.02798909|220439.87759635|126.80300673|23396|1 +638485.08800888|220435.26784457|126.48561152|23397|1 +638490.14916724|220430.65741304|126.1996191|23398|1 +638495.21137189|220426.04639049|125.94502018|23399|1 +638500.27483378|220421.43472767|125.73433494|23400|1 +638505.33622706|220416.82385428|125.43010174|23401|1 +638510.35102498|220412.25580657|125.1649174|23402|1 +638515.45983494|220407.60112748|124.80338525|23403|1 +638520.52300212|220402.98891766|124.52464822|23404|1 +638525.54010385|220398.41948497|124.32209274|23405|1 +638530.65237139|220393.76295497|124.07389344|23406|1 +638535.71797865|220389.14945546|123.87690041|23407|1 +638540.7834859|220384.53546241|123.63007778|23408|1 +638545.84793133|220379.92083558|123.24596092|23409|1 +638550.96204491|220375.26203598|122.94905752|23410|1 +638555.9800994|220370.68931127|122.54070953|23411|1 +638561.09577049|220366.02909177|122.24440145|23412|1 +638566.16426073|220361.41164073|121.93610337|23413|1 +638571.2333332|220356.79314851|121.58423577|23414|1 +638576.35116335|220352.13008591|121.21397856|23415|1 +638581.42228686|220347.50993896|120.88135634|23416|1 +638586.49444871|220342.88935103|120.59269431|23417|1 +638591.56309273|220338.27152336|120.26668565|23418|1 +638596.63684757|220333.64853373|119.89715398|23419|1 +638601.71161218|220329.02534905|119.59032558|23420|1 +638606.8352113|220324.3580423|119.30959797|23421|1 +638611.91197974|220319.73324613|119.02207076|23422|1 +638616.98990409|220315.10724748|118.7222652|23423|1 +638622.06839032|220310.48153355|118.49141372|23424|1 +638627.14889587|220305.85274745|118.15456849|23425|1 +638632.23084717|220301.22249549|117.80546352|23426|1 +638637.3133176|220296.59256968|117.52533122|23427|1 +638642.34856875|220292.00599963|117.28119679|23428|1 +638647.43250862|220287.37545086|117.0639166|23429|1 +638652.51881032|220282.74188126|116.77191523|23430|1 +638657.55921054|220278.14960069|116.44061386|23431|1 +638662.69406936|220273.47318339|116.26366617|23432|1 +638667.78289009|220268.83818178|116.04742777|23433|1 +638672.82722676|220264.24245209|115.72908378|23434|1 +638677.91901414|220259.60459974|115.50079028|23435|1 +638683.0065807|220254.97318675|115.49758117|23436|1 +638688.05154697|220250.37846222|115.31700578|23437|1 +638693.15640281|220245.72480498|114.75233214|23438|1 +638698.21855762|220241.10879306|114.08508781|23439|1 +638703.32474509|220236.45529192|113.63964434|23440|1 +638708.42496064|220231.81018897|113.45046482|23441|1 +638713.48064393|220227.20438668|113.19582869|23442|1 +638718.53923007|220222.59527255|112.90386453|23443|1 +638723.64491662|220217.94421873|112.69054689|23444|1 +638728.70770697|220213.33105524|112.38024893|23445|1 +638733.77288177|220208.71557371|112.05761682|23446|1 +638738.84201511|220204.09590884|111.6852481|23447|1 +638743.90995061|220199.47826595|111.39413971|23448|1 +638748.98037224|220194.85821576|111.09074367|23449|1 +638753.99877975|220190.28701188|110.92036303|23450|1 +638759.06998447|220185.66703134|110.68579083|23451|1 +638764.13902712|220181.05003027|110.53870184|23452|1 +638769.17100842|220176.46443629|110.19383848|23453|1 +638774.24558609|220171.84195486|110.0096168|23454|1 +638779.26894768|220167.26715291|109.92036625|23455|1 +638784.29523179|220162.68939407|109.80614974|23456|1 +638789.32523942|220158.1078115|109.65452148|23457|1 +638794.33461434|220153.54975231|109.91398523|23458|1 +638799.35979472|220148.97420633|109.90552992|23459|1 +638804.38973655|220144.39367333|109.8410035|23460|1 +638809.42202496|220139.8013388|108.94274955|23461|1 +638814.47602494|220135.19516052|108.55453991|23462|1 +638819.5223592|220130.59789666|108.33449709|23463|1 +638824.53264975|220126.03154089|107.95293822|23464|1 +638829.54442946|220121.46404245|107.5899643|23465|1 +638834.58005292|220116.8796677|107.64372857|23466|1 +638839.5829406|220112.32261796|107.48589603|23467|1 +638844.62294179|220107.7341099|107.52720522|23468|1 +638849.63171562|220103.17140342|107.34434159|23469|1 +638854.59076757|220098.65448367|107.21060065|23470|1 +638859.65087093|220094.04536681|107.05292624|23471|1 +638864.61898344|220089.5194713|106.85661225|23472|1 +638869.64086889|220084.94423252|106.62361205|23473|1 +638874.65397013|220080.37870074|106.53967282|23474|1 +638879.62361452|220075.85224893|106.41728005|23475|1 +638884.6250577|220071.2996816|106.5379985|23476|1 +638889.59111728|220066.77761954|106.51446501|23477|1 +638894.55931572|220062.25360814|106.49063386|23478|1 +638899.52041722|220057.73732994|106.57821938|23479|1 +638904.48761067|220053.21492869|106.61585437|23480|1 +638909.39710393|220048.74648647|106.78163993|23481|1 +638914.3531981|220044.23617075|106.99221354|23482|1 +638919.32027616|220039.71463336|107.09706317|23483|1 +638924.21293508|220035.2643418|107.50937371|23484|1 +638929.12369809|220030.7954163|107.73512782|23485|1 +638934.03903572|220026.32195534|107.92937682|23486|1 +638939.00717919|220021.80019454|108.10085507|23487|1 +638943.88346933|220017.36148391|108.22962886|23488|1 +638948.79736463|220012.89016147|108.49666426|23489|1 +638953.73533933|220008.39426953|108.53417832|23490|1 +638958.6496392|220003.91721956|108.33936192|23491|1 +638963.54397728|219999.46096492|108.37293203|23492|1 +638968.52145976|219994.92545369|108.09372061|23493|1 +638973.4496941|219990.43511871|107.84806999|23494|1 +638978.43952059|219985.8877202|107.51274095|23495|1 +638983.37577433|219981.38452066|106.78694194|23496|1 +638982.8867419|219979.01606799|106.15893251|23497|1 +638977.80196877|219983.64926072|107.33401662|23498|1 +638972.80699349|219988.19141531|107.69324192|23499|1 +638967.88250971|219992.66741957|107.87622647|23500|1 +638962.85123828|219997.24194566|108.17620876|23501|1 +638957.94152797|220001.70352156|108.27185893|23502|1 +638952.9365985|220006.25175296|108.36736957|23503|1 +638947.99382933|220010.74217673|108.35412384|23504|1 +638943.02659381|220015.25222241|108.10869647|23505|1 +638938.09993787|220019.72657626|107.97082554|23506|1 +638933.13066751|220024.23918734|107.78666897|23507|1 +638928.17118619|220028.74189701|107.51549428|23508|1 +638923.16581234|220033.28621025|107.22939024|23509|1 +638918.21447724|220037.78088006|106.90184679|23510|1 +638913.2526889|220042.2866245|106.71033251|23511|1 +638908.23977568|220046.83943806|106.5662945|23512|1 +638903.28674448|220051.33651089|106.31219788|23513|1 +638898.26911586|220055.89476527|106.26710287|23514|1 +638893.30112188|220060.40801601|106.23583029|23515|1 +638888.22254328|220065.02406948|106.3939977|23516|1 +638883.21420637|220069.57346045|106.31146304|23517|1 +638878.20676137|220074.12218721|106.24123463|23518|1 +638873.13319928|220078.73398906|106.42455404|23519|1 +638868.15459519|220083.26011232|106.67195338|23520|1 +638863.09981588|220087.85270487|106.66902332|23521|1 +638858.07667272|220092.41950933|106.92787316|23522|1 +638853.00894044|220097.02667829|107.16750552|23523|1 +638847.94677315|220101.62828941|107.36378231|23524|1 +638842.94056947|220106.17813487|107.48584952|23525|1 +638837.84743881|220110.8057359|107.48929117|23526|1 +638832.80946484|220115.38281254|107.39952903|23527|1 +638827.73996562|220119.9946364|107.81991352|23528|1 +638822.68113076|220124.59533671|108.11601696|23529|1 +638817.61677187|220129.20257254|108.5429499|23530|1 +638812.52921641|220133.82665838|108.59696531|23531|1 +638807.48310318|220138.41474417|108.80010681|23532|1 +638802.35329148|220143.08649214|109.65782361|23533|1 +638797.2604649|220147.71782915|109.92436602|23534|1 +638792.22268673|220152.29814367|110.10927603|23535|1 +638787.16240698|220156.8938177|109.84669618|23536|1 +638782.08642668|220161.50742889|109.90200455|23537|1 +638777.05094349|220166.08632461|110.1431531|23538|1 +638771.92820029|220170.74294981|110.23755683|23539|1 +638766.85333955|220175.35649837|110.37446037|23540|1 +638761.77354202|220179.97618611|110.65495544|23541|1 +638756.65398072|220184.63045343|110.7940263|23542|1 +638751.58219|220189.24180902|110.9815036|23543|1 +638746.51082831|220193.85313637|111.20031859|23544|1 +638741.38995423|220198.51042061|111.49630112|23545|1 +638736.32325876|220203.11723603|111.69060593|23546|1 +638731.15105972|220207.82334512|112.17059619|23547|1 +638726.08554093|220212.42990054|112.43407831|23548|1 +638720.97382701|220217.07846317|112.69410017|23549|1 +638715.86429526|220221.72490476|112.94202042|23550|1 +638710.75298862|220226.37419172|113.29639019|23551|1 +638705.64890573|220231.01498732|113.48258385|23552|1 +638700.54627408|220235.65446943|113.66912167|23553|1 +638695.4411398|220240.29781647|113.99331649|23554|1 +638690.32995705|220244.94996705|114.60505712|23555|1 +638685.17028481|220249.64758375|115.33303274|23556|1 +638680.1216647|220254.23842265|115.5611123|23557|1 +638674.97999946|220258.91317239|115.72175398|23558|1 +638669.88745101|220263.54326039|115.88531641|23559|1 +638664.79414777|220268.17512245|116.14283609|23560|1 +638659.70328112|220272.80413412|116.34441489|23561|1 +638654.56545688|220277.47600574|116.55670933|23562|1 +638649.47532343|220282.10551684|116.85888684|23563|1 +638644.3873206|220286.73252725|117.11134636|23564|1 +638639.25372204|220291.40009336|117.28115959|23565|1 +638634.16816622|220296.02475576|117.52173143|23566|1 +638629.0348889|220300.69383865|117.84857725|23567|1 +638623.95089766|220305.31802911|118.17098612|23568|1 +638618.86842646|220309.94048867|118.46238287|23569|1 +638613.73950974|220314.60471315|118.7091683|23570|1 +638608.61143505|220319.26853794|118.98768209|23571|1 +638603.53222555|220323.88813358|119.28622261|23572|1 +638598.4063182|220328.54972776|119.54052387|23573|1 +638593.3289707|220333.16958231|120.00834741|23574|1 +638588.20517913|220337.82998665|120.32591006|23575|1 +638583.08610806|220342.48482368|120.53144211|23576|1 +638578.01205728|220347.1016386|120.99385202|23577|1 +638572.89078017|220351.75957604|121.29384361|23578|1 +638567.77037744|220356.41673416|121.59427239|23579|1 +638562.6990136|220361.02984736|121.94499587|23580|1 +638557.62783496|220365.64179951|122.20840357|23581|1 +638552.51128182|220370.29713491|122.65359589|23582|1 +638547.39480312|220374.95134124|123.00547279|23583|1 +638542.32650982|220379.56127151|123.31964959|23584|1 +638537.21126987|220384.2140834|123.64722095|23585|1 +638532.09499057|220388.86635416|123.84398143|23586|1 +638527.02800845|220393.47447403|124.10266383|23587|1 +638521.91207547|220398.1261663|124.27512807|23588|1 +638516.84838755|220402.73281541|124.66549572|23589|1 +638511.78464447|220407.33909459|125.01851674|23590|1 +638506.67273432|220411.98873412|125.32941931|23591|1 +638501.60476199|220416.59630177|125.45796986|23592|1 +638496.54045544|220421.20226428|125.73664178|23593|1 +638491.42453388|220425.85344117|125.86110885|23594|1 +638486.36159726|220430.45860649|126.17771341|23595|1 +638481.29715788|220435.06442923|126.43201468|23596|1 +638476.23588545|220439.66852413|126.78643097|23597|1 +638471.17517002|220444.27220077|127.14724687|23598|1 +638466.11229769|220448.87698711|127.4332765|23599|1 +638461.04671068|220453.4833194|127.63829695|23600|1 +638455.98501607|220458.08741049|127.95589681|23601|1 +638450.92468451|220462.69182801|128.32992124|23602|1 +638445.85951827|220467.29947159|128.57927396|23603|1 +638440.84594974|220471.86127605|128.92570001|23604|1 +638435.78448658|220476.4666356|129.26893556|23605|1 +638430.72521488|220481.07058479|129.66228909|23606|1 +638425.70773611|220485.63489611|129.91514858|23607|1 +638420.64000413|220490.24441309|130.12151779|23608|1 +638415.57272547|220494.85374436|130.34682542|23609|1 +638410.54731272|220499.42365415|130.45632593|23610|1 +638405.46383133|220504.04424652|130.37625624|23611|1 +638400.44011655|220508.61341246|130.55453408|23612|1 +638395.40301257|220513.19198067|130.48954257|23613|1 +638390.36189763|220517.77363834|130.37473074|23614|1 +638385.32959834|220522.34942381|130.44707066|23615|1 +638380.28958049|220526.93088409|130.40098966|23616|1 +638375.23808056|220531.52079911|130.18044454|23617|1 +638370.43133247|220535.92641359|133.31515249|23618|1 +638365.18238412|220540.65855509|129.82222383|23619|1 +638360.3037663|220545.11529901|131.70961938|23620|1 +638355.24592849|220549.71072751|131.46421061|23621|1 +638350.3013389|220554.2150287|132.26046127|23622|1 +638345.36154103|220558.70734793|132.39082567|23623|1 +638340.25105657|220563.34250595|131.42917082|23624|1 +638335.33684218|220567.82445013|132.68555246|23625|1 +638330.45204751|220572.27627865|133.64942113|23626|1 +638325.31131083|220576.92751888|131.68633703|23627|1 +638320.14531184|220581.59128821|128.80923247|23628|1 +638315.25697474|220586.05419138|130.45673521|23629|1 +638311.13233011|220589.93031343|141.55513113|23630|1 +638306.04718565|220594.540243|140.40022257|23631|1 +638304.97542556|220595.3557542|126.44026536|23632|2 +638299.9926982|220599.88391292|126.28322346|23633|1 +638296.12306529|220603.55981188|140.16189246|23634|1 +638294.91884798|220604.48218599|125.00662907|23635|2 +638289.94280324|220609.00605204|125.00487103|23636|1 +638285.12501453|220613.40148425|126.36386987|23637|1 +638281.51340834|220616.877642|143.30506503|23638|1 +638276.52454555|220621.40239231|142.36019058|23639|1 +638274.82729974|220622.71788294|122.35041379|23640|2 +638272.01731579|220625.55342126|147.05663889|23641|1 +638266.41921376|220630.5593727|139.71320267|23642|1 +638259.85808856|220636.31419816|121.22967996|23643|1 +638254.90409354|220640.81702844|121.13895973|23644|1 +638252.51310737|220640.44208823|121.07138233|23645|1 +638257.70608895|220635.72589221|122.78940183|23646|1 +638262.5552851|220631.28562345|121.21711326|23647|1 +638269.86030345|220624.92950431|148.04865474|23648|1 +638267.53705842|220626.74164245|121.15375886|23649|2 +638274.90903811|220620.33210322|148.65459106|23650|1 +638272.64829684|220622.09076042|122.0650911|23651|2 +638279.76945098|220615.88774425|147.62671686|23652|1 +638277.70110699|220617.49231259|122.90910639|23653|2 +638282.83710685|220612.81683746|123.64040275|23654|1 +638293.81360969|220602.94637557|135.91961268|23655|1 +638292.94033477|220603.61780606|124.94996264|23656|2 +638298.30928578|220598.77237237|129.42071265|23657|1 +638303.08562001|220594.38164561|126.36584184|23658|1 +638309.23715288|220588.93594161|140.7936319|23659|1 +638308.6393956|220589.39095063|132.87933636|23660|2 +638308.16523034|220589.75188217|126.60140933|23661|3 +638313.51044998|220584.9283492|131.09979491|23662|1 +638318.4717076|220580.38963809|129.85525444|23663|1 +638323.67473782|220575.67626879|132.64384329|23664|1 +638328.68054314|220571.11221429|132.74983703|23665|1 +638333.83724324|220566.4210846|133.67925193|23666|1 +638338.76574462|220561.9163972|132.70811857|23667|1 +638343.82481106|220557.30673234|132.97088445|23668|1 +638348.89870916|220552.67815875|132.75525997|23669|1 +638353.81330257|220548.18349913|131.55306118|23670|1 +638359.01987244|220543.4583637|133.48756092|23671|1 +638363.98307966|220538.91963978|132.30524933|23672|1 +638369.04586109|220534.30888367|132.77455185|23673|1 +638373.980732|220529.7807625|130.24711037|23674|1 +638379.01985163|220525.18702741|130.31754342|23675|1 +638384.11790522|220520.54217218|130.61446543|23676|1 +638389.1891204|220515.91654552|130.45027047|23677|1 +638394.21905346|220511.330097|130.42763925|23678|1 +638399.30637876|220506.6937293|130.61320039|23679|1 +638404.37472912|220502.07069079|130.44972167|23680|1 +638409.45564833|220497.43929926|130.56102672|23681|1 +638414.52145078|220492.81835236|130.37935373|23682|1 +638419.58387007|220488.19977867|130.13549836|23683|1 +638424.65172609|220483.57772672|130.02293756|23684|1 +638429.70958432|220478.9623017|129.69213849|23685|1 +638434.76456877|220474.34871487|129.29286903|23686|1 +638439.82173652|220469.73369612|128.94372686|23687|1 +638444.87850654|220465.11889104|128.58226913|23688|1 +638449.98710916|220460.45804406|128.32439598|23689|1 +638455.04139187|220455.84464418|127.88850544|23690|1 +638460.09803743|220451.22971947|127.50897435|23691|1 +638465.21038082|220446.56664756|127.35831348|23692|1 +638470.27033233|220441.9497564|127.07296289|23693|1 +638475.32660929|220437.33479335|126.66287547|23694|1 +638480.43367106|220432.67454317|126.3383737|23695|1 +638485.49585334|220428.05623409|126.10990346|23696|1 +638490.60340891|220423.39551912|125.78611793|23697|1 +638495.66852561|220418.77572354|125.66435768|23698|1 +638500.73275108|220414.15637946|125.51154809|23699|1 +638505.84471157|220409.49354496|125.35749207|23700|1 +638510.95149595|220404.83259683|124.9539438|23701|1 +638516.01254993|220400.21407083|124.62073557|23702|1 +638521.12139101|220395.55166185|124.2553804|23703|1 +638526.23382252|220390.88795431|124.06542882|23704|1 +638531.29698731|220386.26784297|123.7642373|23705|1 +638536.41031447|220381.60337544|123.58126206|23706|1 +638541.52257294|220376.93839817|123.26747593|23707|1 +638546.63538035|220372.27277504|122.9416347|23708|1 +638551.74876193|220367.60641249|122.59745967|23709|1 +638556.8619473|220362.93880814|122.12873386|23710|1 +638561.92925822|220358.31417724|121.76679243|23711|1 +638567.04587612|220353.64569902|121.49881756|23712|1 +638572.16323014|220348.97654582|121.23127986|23713|1 +638577.23324884|220344.34942581|120.87019421|23714|1 +638582.35203581|220339.67684352|120.41595126|23715|1 +638587.46787039|220335.00905422|120.14960419|23716|1 +638592.54069396|220330.37978037|119.82688836|23717|1 +638597.66266574|220325.70477697|119.4176381|23718|1 +638602.78556528|220321.03004968|119.10883773|23719|1 +638607.86155211|220316.39830831|118.82452893|23720|1 +638612.98595096|220311.72333509|118.61654121|23721|1 +638618.06397428|220307.08972665|118.33282773|23722|1 +638623.14329548|220302.45471364|118.03061301|23723|1 +638628.27252853|220297.77341711|117.65512821|23724|1 +638633.40174991|220293.09346821|117.39885496|23725|1 +638638.43514116|220288.50172898|117.22714417|23726|1 +638643.56592679|220283.82083487|117.01535202|23727|1 +638648.6509448|220279.18088973|116.73965667|23728|1 +638653.73693303|220274.5402663|116.48298345|23729|1 +638658.87115826|220269.85630028|116.27873505|23730|1 +638663.95789033|220265.21597184|116.11018686|23731|1 +638668.99795931|220260.61803534|115.93325777|23732|1 +638674.13356793|220255.93385281|115.82388748|23733|1 +638679.17729825|220251.33193192|115.59110123|23734|1 +638684.27846292|220246.67420099|115.04895649|23735|1 +638689.38926234|220242.00466938|114.23871595|23736|1 +638694.43557766|220237.4014923|114.10635167|23737|1 +638699.53575082|220232.74754255|113.82114061|23738|1 +638704.63504252|220228.09530267|113.6174317|23739|1 +638709.69135677|220223.48096023|113.30458506|23740|1 +638714.79691069|220218.8240889|113.00150528|23741|1 +638719.85430331|220214.21185943|112.7513154|23742|1 +638724.92031542|220209.58965915|112.3140947|23743|1 +638730.02649829|220204.93387417|112.14293271|23744|1 +638735.04672018|220200.35387995|111.75209067|23745|1 +638740.1573863|220195.69372297|111.55652082|23746|1 +638745.23235687|220191.06320161|111.1076636|23747|1 +638750.2475516|220186.49072047|110.97896422|23748|1 +638755.31679856|220181.86793719|110.75488442|23749|1 +638760.3312242|220177.29712605|110.71344501|23750|1 +638765.40040364|220172.67523332|110.56441195|23751|1 +638770.42270276|220168.09610928|110.42322959|23752|1 +638775.44452364|220163.51790759|110.32562605|23753|1 +638780.4786567|220158.92616286|110.02236953|23754|1 +638785.49279468|220154.35733337|110.13653954|23755|1 +638790.51453409|220149.78023578|110.13228862|23756|1 +638795.54299145|220145.19595421|110.03457346|23757|1 +638800.51215838|220140.6586423|109.31553684|23758|1 +638805.56728202|220136.04577065|108.83789062|23759|1 +638810.55670857|220131.49652332|108.69700592|23760|1 +638815.55344836|220126.93962203|108.46879614|23761|1 +638820.54735669|220122.38620309|108.32133508|23762|1 +638825.55765173|220117.81532245|107.9497105|23763|1 +638830.56615994|220113.24683294|107.64644469|23764|1 +638835.5341316|220108.7143318|107.26209529|23765|1 +638840.52923027|220104.16112429|107.23219007|23766|1 +638845.49410165|220099.63276148|106.96548024|23767|1 +638850.4801032|220095.08992336|107.12169427|23768|1 +638855.45843246|220090.54787704|106.73013599|23769|1 +638860.41915789|220086.02501083|106.61799378|23770|1 +638865.3816185|220081.50062304|106.51174889|23771|1 +638870.34393436|220076.97670619|106.43625567|23772|1 +638875.32570671|220072.43253334|106.13686869|23773|1 +638880.24119713|220067.95164293|106.09688036|23774|1 +638885.20140975|220063.43086784|106.1321713|23775|1 +638890.12259067|220058.94455579|106.07261202|23776|1 +638895.09099524|220054.41573613|106.05755245|23777|1 +638900.00985037|220049.93242912|106.07776521|23778|1 +638904.92497161|220045.45327866|106.16572281|23779|1 +638909.83129058|220040.98352976|106.37718009|23780|1 +638914.74307526|220036.50829647|106.54466787|23781|1 +638919.65222926|220032.0360069|106.76121323|23782|1 +638924.49537491|220027.62616631|107.18566259|23783|1 +638929.38604179|220023.17333843|107.63639877|23784|1 +638934.254639|220018.73748702|107.8114582|23785|1 +638939.12511836|220014.29990797|107.9858014|23786|1 +638943.98683107|220009.87155363|108.27086364|23787|1 +638948.86884688|220005.4225284|108.36327679|23788|1 +638953.75487898|220000.96962084|108.43648177|23789|1 +638958.46289813|219996.69918625|110.31567315|23790|1 +638963.54514101|219992.04045116|107.98401546|23791|1 +638968.48063441|219987.53785262|107.64726324|23792|1 +638973.3516077|219983.09605194|107.49218403|23793|1 +638978.28979662|219978.58611995|106.72452702|23794|1 +638973.98023467|219979.52904806|106.89695405|23795|1 +638968.98830607|219984.07403543|107.2454265|23796|1 +638963.99109221|219988.62481058|107.68034966|23797|1 +638958.95263524|219993.21271456|108.07493102|23798|1 +638953.74062094|219997.9843083|110.75601924|23799|1 +638949.05744691|220002.21460624|108.11496586|23800|1 +638944.12318913|220006.70229718|108.03538917|23801|1 +638939.07979795|220011.29102085|108.09873426|23802|1 +638934.16119495|220015.76313858|107.90086688|23803|1 +638929.21126096|220020.26190226|107.53279558|23804|1 +638924.2790606|220024.74250624|106.9846512|23805|1 +638919.28581946|220029.28036502|106.58264703|23806|1 +638914.3244056|220033.79153838|106.38712369|23807|1 +638909.32853395|220038.33248947|106.04672518|23808|1 +638904.36352904|220042.84784602|105.93126223|23809|1 +638899.39729422|220047.36473267|105.85272733|23810|1 +638894.32610658|220051.97853517|105.88866009|23811|1 +638889.35232025|220056.50391064|105.95251679|23812|1 +638884.29414021|220061.10469614|105.88307903|23813|1 +638879.27862281|220065.66773752|105.9143516|23814|1 +638874.26093014|220070.23339566|106.00144413|23815|1 +638869.19272081|220074.84570101|106.14340784|23816|1 +638864.17543562|220079.41162546|106.28642266|23817|1 +638859.11928497|220084.01184284|106.32920153|23818|1 +638854.06939155|220088.6132578|106.98804635|23819|1 +638848.99883984|220093.22967474|107.3046044|23820|1 +638844.00989057|220097.75902629|106.48349009|23821|1 +638838.95339977|220102.36097266|106.65095927|23822|1 +638833.84079811|220107.02381375|107.69558597|23823|1 +638828.80076892|220111.60773662|107.70807826|23824|1 +638823.74265318|220116.2116271|108.03172427|23825|1 +638818.64066422|220120.85515729|108.3246|23826|1 +638813.64406825|220125.40155035|108.51752814|23827|1 +638808.5476332|220130.03989794|108.79838598|23828|1 +638803.46451935|220134.66403626|108.8927618|23829|1 +638798.42345558|220139.25146653|109.12988269|23830|1 +638793.30984646|220143.91030533|109.84122674|23831|1 +638788.2203671|220148.54292632|110.1730025|23832|1 +638783.14253973|220153.16299078|110.3306118|23833|1 +638778.08044964|220157.76572911|110.22049737|23834|1 +638773.05150287|220162.34188513|110.4332569|23835|1 +638767.93494897|220166.99630605|110.5055224|23836|1 +638762.86321787|220171.61106839|110.68258172|23837|1 +638757.74992814|220176.26254028|110.75553555|23838|1 +638752.68781101|220180.86702989|110.79588666|23839|1 +638747.6175814|220185.48135921|111.05461557|23840|1 +638742.50918944|220190.1283295|111.12223948|23841|1 +638737.39076385|220194.78760791|111.47088866|23842|1 +638732.32439821|220199.3989401|111.77400565|23843|1 +638727.20704568|220204.05816948|112.20445466|23844|1 +638722.09700638|220208.70921194|112.49804663|23845|1 +638717.03041222|220213.32274367|112.97655791|23846|1 +638711.87744982|220218.0125327|113.23610538|23847|1 +638706.77314543|220222.6583891|113.53079496|23848|1 +638701.67139472|220227.30165183|113.80085343|23849|1 +638696.57113242|220231.9436409|114.07748826|23850|1 +638691.47501003|220236.58089122|114.26703986|23851|1 +638686.38466|220241.21107009|114.29454522|23852|1 +638681.2769519|220245.86505745|115.03414806|23853|1 +638676.17631138|220250.51065965|115.59926819|23854|1 +638671.08628197|220255.14254754|115.8025027|23855|1 +638665.95326686|220259.81169265|115.83501241|23856|1 +638660.91319334|220264.39825247|116.05364136|23857|1 +638655.78021415|220269.06844577|116.1805641|23858|1 +638650.64614997|220273.74097222|116.4266612|23859|1 +638645.60884107|220278.32560009|116.69578019|23860|1 +638640.47713066|220282.99614801|116.95509512|23861|1 +638635.39587657|220287.61963388|117.11659256|23862|1 +638630.31420666|220292.2447708|117.39077172|23863|1 +638625.18645787|220296.91125334|117.60754032|23864|1 +638620.05875471|220301.57890474|117.93098169|23865|1 +638615.02889493|220306.15625318|118.15100591|23866|1 +638609.90336091|220310.82230406|118.50637097|23867|1 +638604.77950634|220315.48599782|118.7872009|23868|1 +638599.70495591|220320.10359311|118.96305099|23869|1 +638594.58281443|220324.7667986|119.33837767|23870|1 +638589.50972991|220329.38575607|119.7522137|23871|1 +638584.44213796|220333.99852346|120.06004669|23872|1 +638579.32310304|220338.6585219|120.39892901|23873|1 +638574.2056263|220343.31893233|120.90072264|23874|1 +638569.13663746|220347.93321831|121.22804285|23875|1 +638564.02016978|220352.58965534|121.4555736|23876|1 +638558.90474376|220357.24578278|121.73976147|23877|1 +638553.83885748|220361.85804875|122.13660316|23878|1 +638548.72643565|220366.51301305|122.55897822|23879|1 +638543.66237755|220371.12342601|122.93750471|23880|1 +638538.5983396|220375.73305459|123.24745851|23881|1 +638533.48683598|220380.385677|123.5333207|23882|1 +638528.37519409|220385.03766709|123.75082414|23883|1 +638523.36038319|220389.60197311|124.01675262|23884|1 +638518.25024401|220394.25303886|124.27230963|23885|1 +638513.18937427|220398.85984185|124.58327732|23886|1 +638508.12927403|220403.46609465|124.90688612|23887|1 +638503.07135843|220408.07120947|125.30563467|23888|1 +638497.96191599|220412.72119337|125.51866395|23889|1 +638492.94670415|220417.28466881|125.67245952|23890|1 +638487.83378033|220421.93630507|125.74861317|23891|1 +638482.77229991|220426.54267697|125.96691656|23892|1 +638477.76025233|220431.10462484|126.23953302|23893|1 +638472.6551793|220435.75223105|126.59138202|23894|1 +638467.6481143|220440.3112713|127.00772023|23895|1 +638462.58527232|220444.91829344|127.17032458|23896|1 +638457.52803699|220449.52211214|127.50170967|23897|1 +638452.52050358|220454.08122784|127.88054311|23898|1 +638447.46316931|220458.68596363|128.19964986|23899|1 +638442.40785489|220463.28942667|128.56886527|23900|1 +638437.3996773|220467.84971409|128.91648195|23901|1 +638432.39262527|220472.40925568|129.28899019|23902|1 +638427.33800646|220477.01218961|129.66466104|23903|1 +638422.33117437|220481.57155309|130.03712277|23904|1 +638417.31387355|220486.13786842|130.17861209|23905|1 +638412.29831284|220490.70316336|130.36997754|23906|1 +638407.27863504|220495.27138121|130.48643578|23907|1 +638402.20899481|220499.88482656|130.5755468|23908|1 +638397.23225898|220504.41318829|130.62575778|23909|1 +638392.19674608|220508.99298193|130.48648229|23910|1 +638387.21005943|220513.5288122|130.39295292|23911|1 +638382.19384598|220518.09559952|130.65900233|23912|1 +638377.1419402|220522.68790782|130.30153507|23913|1 +638372.19361645|220527.18776691|130.11589951|23914|1 +638367.15554811|220531.77091859|130.06390258|23915|1 +638362.26246337|220536.24027918|131.6401258|23916|1 +638357.33064393|220540.73736956|132.54273298|23917|1 +638352.16326309|220545.40699447|129.70022173|23918|1 +638347.30387853|220549.84286778|131.02726896|23919|1 +638342.29841762|220554.39474301|130.83270371|23920|1 +638337.43748843|220558.83945522|132.81789813|23921|1 +638332.49819938|220563.33421118|132.90383724|23922|1 +638327.41987718|220567.94122138|131.70618702|23923|1 +638322.59218519|220572.34502063|132.74464664|23924|1 +638317.49103989|220576.97032725|131.32289802|23925|1 +638312.54666794|220581.47015742|131.44512336|23926|1 +638307.24364403|220586.24338354|126.81953599|23927|1 +638302.33840374|220590.71464289|127.57021725|23928|1 +638298.1810841|220594.60537636|137.29568028|23929|1 +638297.78650697|220594.90795282|132.23262106|23930|2 +638292.6700424|220599.54089265|130.24511979|23931|1 +638282.2542377|220608.94462071|123.7097847|23932|1 +638278.76385908|220612.31241941|140.96657053|23933|1 +638277.52475981|220613.27405798|126.08675134|23934|2 +638274.51571511|220616.26408308|148.74582288|23935|1 +638269.36037021|220620.92742532|146.30803192|23936|1 +638268.7468071|220621.40617229|139.16918827|23937|2 +638263.74801742|220625.94316937|138.17995365|23938|1 +638262.26574262|220627.10270234|121.19668656|23939|2 +638257.31436898|220631.60596815|121.04918829|23940|1 +638252.43351665|220636.04803968|121.17340421|23941|1 +638252.45353448|220633.36575918|121.01527401|23942|1 +638257.45550217|220628.80462255|121.18920793|23943|1 +638263.84327828|220623.15761009|137.34701678|23944|1 +638262.42800508|220624.2668892|121.05244391|23945|2 +638269.06454794|220618.42843347|140.39452058|23946|1 +638267.43500933|220619.70238791|121.33800845|23947|2 +638274.54566823|220613.4979718|146.64971408|23948|1 +638272.46806462|220615.11792541|121.96530165|23949|2 +638282.74894981|220605.77733037|125.39559215|23950|1 +638287.69757342|220601.25331857|124.5371126|23951|1 +638292.9111494|220596.52503726|127.03673247|23952|1 +638298.41038568|220591.57852414|133.33786743|23953|1 +638298.12343325|220591.79897023|129.63054212|23954|2 +638302.879882|220587.42320348|126.34601046|23955|1 +638308.03660133|220582.74094718|128.32453551|23956|1 +638313.28078629|220577.99324952|131.59197981|23957|1 +638318.24941968|220573.44847197|130.50989486|23958|1 +638323.36510612|220568.80009122|132.17256879|23959|1 +638328.40732548|220564.19985294|132.16760164|23960|1 +638333.47960671|220559.58355259|133.32639834|23961|1 +638338.22225036|220555.20556655|128.88072593|23962|1 +638343.52434878|220550.41099432|132.85602611|23963|1 +638348.4484803|220545.90575202|131.85345274|23964|1 +638353.48612625|220541.30843559|131.87987909|23965|1 +638358.39319001|220536.80671634|129.79375109|23966|1 +638363.43595487|220532.20568595|129.90737229|23967|1 +638368.47378134|220527.60853339|129.9650247|23968|1 +638373.51475118|220523.00940959|130.10382581|23969|1 +638378.60623514|220518.36507628|130.31943168|23970|1 +638383.64346153|220513.7692877|130.45235407|23971|1 +638388.67679768|220509.17655324|130.54171623|23972|1 +638393.70613278|220504.58691038|130.58125809|23973|1 +638398.78500448|220499.95274645|130.67933602|23974|1 +638403.80324025|220495.37127438|130.54442305|23975|1 +638408.87286775|220490.74393538|130.49944896|23976|1 +638413.93149365|220486.12420233|130.23632961|23977|1 +638418.99567397|220481.50085598|130.10446763|23978|1 +638424.05381406|220476.88162463|129.84800835|23979|1 +638429.05772768|220472.31020875|129.44512981|23980|1 +638434.109001|220467.69542746|129.02664289|23981|1 +638439.16494068|220463.07763769|128.72069816|23982|1 +638444.21566162|220458.46307751|128.27757084|23983|1 +638449.27384071|220453.8438615|128.02818091|23984|1 +638454.32314201|220449.22996057|127.52919642|23985|1 +638459.37832858|220444.61242514|127.18650037|23986|1 +638464.4377825|220439.99238109|126.96888531|23987|1 +638469.54216211|220435.33037671|126.66178716|23988|1 +638474.54850066|220430.75676407|126.26564311|23989|1 +638479.65413232|220426.0938897|125.98412484|23990|1 +638489.77387704|220416.85307369|125.55703378|23991|1 +638494.83769426|220412.23082774|125.50309278|23992|1 +638499.94608134|220407.56654049|125.32288016|23993|1 +638505.00583751|220402.94612142|125.10073514|23994|1 +638510.06191255|220398.32690508|124.68508526|23995|1 +638515.16873053|220393.66272089|124.38716796|23996|1 +638520.22621454|220389.04221285|123.97197387|23997|1 +638525.28811586|220384.42016933|123.78191067|23998|1 +638530.39649554|220379.75455403|123.48500727|23999|1 +638535.45996813|220375.13155631|123.33918332|24000|1 +638540.52138415|220370.50821073|122.99356652|24001|1 +638545.63111054|220365.84053139|122.62270469|24002|1 +638550.69399294|220361.21563404|122.2588285|24003|1 +638555.75676596|220356.5893763|121.76389958|24004|1 +638560.86970769|220351.91924096|121.43783511|24005|1 +638565.93626984|220347.29264211|121.2246477|24006|1 +638571.05099274|220342.62136722|120.94309223|24007|1 +638576.11838952|220337.99157415|120.51169444|24008|1 +638581.18704997|220333.36069147|120.08676139|24009|1 +638586.30028335|220328.69062925|119.79376473|24010|1 +638591.37097552|220324.05768288|119.3506188|24011|1 +638596.49065478|220319.38091153|118.98346839|24012|1 +638601.56325698|220314.74815276|118.71586558|24013|1 +638606.68446301|220310.07150805|118.48700467|24014|1 +638611.75929619|220305.43629936|118.18248312|24015|1 +638616.83495374|220300.80074835|117.91568957|24016|1 +638621.91264721|220296.16230098|117.55542246|24017|1 +638627.03799682|220291.48194306|117.33435645|24018|1 +638632.11635755|220286.84454212|117.1246479|24019|1 +638637.19583989|220282.20604887|116.90895831|24020|1 +638642.27669864|220277.56608639|116.67476748|24021|1 +638647.40660387|220272.88142933|116.44283699|24022|1 +638652.44161107|220268.28345265|116.22594747|24023|1 +638657.57233199|220263.5989457|116.07598423|24024|1 +638662.65476797|220258.95919627|115.99290076|24025|1 +638667.68964851|220254.36305642|115.93260665|24026|1 +638672.77848638|220249.71531813|115.65636249|24027|1 +638677.92600618|220245.01001616|115.01469805|24028|1 +638682.97809981|220240.39256021|114.44918725|24029|1 +638688.05931556|220235.75695722|114.64218051|24030|1 +638693.15274344|220231.10571277|114.42965352|24031|1 +638698.19913834|220226.49752199|114.23298606|24032|1 +638703.29347902|220221.84613416|114.08341349|24033|1 +638708.39554991|220217.18524304|113.74696824|24034|1 +638713.45038993|220212.56625249|113.45739464|24035|1 +638718.56013316|220207.89564488|113.02810836|24036|1 +638723.6260321|220203.26441514|112.5455508|24037|1 +638728.69649058|220198.62839537|112.00705236|24038|1 +638733.80867504|220193.9567955|111.69112682|24039|1 +638738.87569655|220189.32611811|111.35278401|24040|1 +638743.93810624|220184.70136518|111.17055291|24041|1 +638749.00166102|220180.07570524|111.00096292|24042|1 +638754.06121591|220175.45506999|110.95625858|24043|1 +638759.12128425|220170.8341683|110.93041825|24044|1 +638764.18876525|220166.20511476|110.78008294|24045|1 +638769.25706243|220161.57552796|110.64865814|24046|1 +638774.32868436|220156.94254992|110.48628633|24047|1 +638779.29476425|220152.40811007|110.53201386|24048|1 +638784.4224846|220147.72306355|110.28785153|24049|1 +638789.46122292|220143.11806242|109.94633681|24050|1 +638794.51188315|220138.50031388|109.43673899|24051|1 +638799.55101512|220133.89583863|109.17635436|24052|1 +638804.58429023|220129.2982167|109.05302211|24053|1 +638809.63081032|220124.6864387|108.7429846|24054|1 +638814.67747584|220120.07494498|108.47042395|24055|1 +638819.67065237|220115.51350792|108.31636793|24056|1 +638824.72920815|220110.88990682|107.93192551|24057|1 +638829.73265542|220106.31813512|107.69066533|24058|1 +638834.77435474|220101.71354941|107.63609181|24059|1 +638839.85627467|220097.05826538|106.31896957|24060|1 +638844.78891356|220092.56359372|107.2092891|24061|1 +638849.84670471|220087.94279634|107.01809109|24062|1 +638854.8067814|220083.41155348|106.86924406|24063|1 +638859.88268875|220078.77222356|106.49798226|24064|1 +638864.87625501|220074.20622382|105.9698739|24065|1 +638869.88545196|220069.63121456|105.91472367|24066|1 +638874.84633461|220065.10051363|105.88320925|24067|1 +638879.81474278|220060.56218199|105.78310353|24068|1 +638884.8199718|220055.99220709|105.85794563|24069|1 +638889.79638825|220051.4460717|105.71399134|24070|1 +638894.76908519|220046.90414473|105.64429312|24071|1 +638899.7351718|220042.36940171|105.67983521|24072|1 +638904.70174092|220037.83441961|105.7337204|24073|1 +638909.59793323|220033.36660558|106.05821287|24074|1 +638914.56060057|220028.83612299|106.19822321|24075|1 +638919.44976882|220024.37592694|106.63324869|24076|1 +638924.38301875|220019.87623213|107.13194483|24077|1 +638929.27788824|220015.41039823|107.52866559|24078|1 +638934.18164576|220010.9355523|107.84427487|24079|1 +638939.09463968|220006.45137287|108.07884707|24080|1 +638943.98536679|220001.9846385|108.05631816|24081|1 +638948.90292089|219997.49621108|108.28368148|24082|1 +638953.53574738|219993.29395619|110.90213155|24083|1 +638958.7866419|219988.46485748|107.8245365|24084|1 +638963.72744831|219983.94808035|107.41040281|24085|1 +638968.6654762|219979.43450776|107.05777247|24086|1 +638966.15530794|219978.4619917|106.9432583|24087|1 +638961.06844287|219983.10510568|107.32664961|24088|1 +638956.07257493|219987.6663786|107.8156254|24089|1 +638951.01756899|219992.27770504|107.95199874|24090|1 +638946.01229146|219996.84391111|108.10999872|24091|1 +638941.02960591|220001.38725164|108.06365727|24092|1 +638936.01183442|220005.9612724|107.89684851|24093|1 +638930.98622442|220010.54361779|107.83534516|24094|1 +638926.00174299|220015.08378545|107.35258297|24095|1 +638921.06978281|220019.57573029|106.84093876|24096|1 +638916.04107911|220024.15595283|106.33072702|24097|1 +638911.04882361|220028.70460255|105.97139009|24098|1 +638906.05036919|220033.25987058|105.69873642|24099|1 +638901.0401958|220037.82755073|105.58103174|24100|1 +638895.97397931|220042.44757853|105.57325546|24101|1 +638890.91047757|220047.06507193|105.55949813|24102|1 +638885.89312304|220051.6411059|105.60323508|24103|1 +638880.82550475|220056.26353463|105.69528546|24104|1 +638875.76123277|220060.88278285|105.77514121|24105|1 +638870.70743111|220065.49132071|105.74960784|24106|1 +638865.64097912|220070.11353495|105.91679797|24107|1 +638860.58095753|220074.73649038|106.6814877|24108|1 +638855.48083575|220079.38805554|106.72406193|24109|1 +638850.45317992|220083.97016259|106.46305409|24110|1 +638845.35697633|220088.62573061|107.19050881|24111|1 +638840.33969554|220093.18959412|106.13341774|24112|1 +638835.20318268|220097.88936987|107.53301883|24113|1 +638830.15355442|220102.49586164|107.70782711|24114|1 +638825.05126295|220107.15028636|107.97611825|24115|1 +638819.98041333|220111.7794009|108.54953556|24116|1 +638814.90096624|220116.40990967|108.53842924|24117|1 +638809.80342825|220121.06050162|108.85124798|24118|1 +638804.76382367|220125.65694096|109.0456365|24119|1 +638799.62712843|220130.3424552|109.28489679|24120|1 +638794.58901194|220134.93809819|109.5294498|24121|1 +638789.50616968|220139.57428589|109.75000422|24122|1 +638784.40686947|220144.22927716|110.31343142|24123|1 +638779.3326728|220148.8567661|110.45979487|24124|1 +638774.25520134|220153.48835437|110.706078|24125|1 +638769.19295907|220158.10316612|110.690851|24126|1 +638764.07225347|220162.77394789|110.91410293|24127|1 +638759.008288|220167.39144727|110.99908396|24128|1 +638753.94099759|220172.01315403|111.19022616|24129|1 +638748.8337066|220176.66979996|111.23996276|24130|1 +638743.77442089|220181.28305145|111.32553911|24131|1 +638738.71371344|220185.89836327|111.47987418|24132|1 +638733.6076895|220190.5547037|111.60535514|24133|1 +638728.49289876|220195.22194107|111.99320201|24134|1 +638723.4220897|220199.85089453|112.54751347|24135|1 +638718.29866198|220204.53001783|113.2979901|24136|1 +638713.23700992|220209.14946204|113.746745|24137|1 +638708.13517295|220213.80374568|114.02995618|24138|1 +638703.03571542|220218.4556587|114.29479636|24139|1 +638697.98429383|220223.06434521|114.61313106|24140|1 +638692.80911181|220227.81474997|117.54412081|24141|1 +638687.80689733|220232.34348806|114.68228046|24142|1 +638682.7683861|220236.93697639|114.68891263|24143|1 +638677.67993929|220241.57723121|114.80524995|24144|1 +638672.57808173|220246.23633919|115.5213472|24145|1 +638667.48536186|220250.88401925|115.95678196|24146|1 +638662.40126602|220255.52039967|116.08026304|24147|1 +638657.32485651|220260.1461271|115.87296366|24148|1 +638652.23951594|220264.78531082|116.14685446|24149|1 +638647.15619532|220269.4222464|116.38353816|24150|1 +638642.12347228|220274.01201744|116.52866448|24151|1 +638637.04208344|220278.64747784|116.79074203|24152|1 +638631.91473553|220283.32430764|117.00141796|24153|1 +638626.88431325|220287.91261778|117.20315489|24154|1 +638621.75911207|220292.58743783|117.40831487|24155|1 +638616.68205344|220297.21918536|117.69021451|24156|1 +638611.65388812|220301.80648701|117.9860203|24157|1 +638606.53090691|220306.4807532|118.32345154|24158|1 +638601.45785922|220311.10762618|118.49356243|24159|1 +638596.43293956|220315.6919154|118.78341508|24160|1 +638591.31324486|220320.3633442|119.13437111|24161|1 +638586.24252274|220324.99038807|119.5113349|24162|1 +638581.17719945|220329.61230536|119.86980676|24163|1 +638576.10847318|220334.2379569|120.28467529|24164|1 +638571.04107976|220338.86273924|120.73098382|24165|1 +638565.97452688|220343.48566241|121.0775029|24166|1 +638560.90796799|220348.10673996|121.25547379|24167|1 +638555.84225514|220352.72760095|121.48361846|24168|1 +638550.77959875|220357.3488472|121.99943916|24169|1 +638545.71647963|220361.96852687|122.3342101|24170|1 +638540.65565662|220366.587563|122.80038723|24171|1 +638535.59406734|220371.20565367|123.11675925|24172|1 +638530.53185257|220375.8232878|123.3395647|24173|1 +638525.47076983|220380.44017292|123.58753145|24174|1 +638520.40987721|220385.0566849|123.81693186|24175|1 +638515.35160369|220389.67218937|124.17147837|24176|1 +638510.34270601|220394.2431884|124.57494292|24177|1 +638505.28356195|220398.85832968|124.82347709|24178|1 +638500.22596872|220403.47268141|125.12840792|24179|1 +638495.16717355|220408.08738002|125.36477536|24180|1 +638490.10280433|220412.70462546|125.37015179|24181|1 +638485.09309764|220417.27508295|125.65502799|24182|1 +638480.03194964|220421.89091408|125.79809862|24183|1 +638474.97427399|220426.50496238|126.06626883|24184|1 +638469.96673904|220431.07406929|126.40740218|24185|1 +638464.91160708|220435.68656229|126.74449856|24186|1 +638459.85280963|220440.30110078|126.96310891|24187|1 +638454.8463638|220444.86936747|127.31674384|24188|1 +638449.84264205|220449.43513496|127.73897938|24189|1 +638444.78609026|220454.0458029|128.0139957|24190|1 +638439.78489468|220458.60814433|128.48608876|24191|1 +638434.77892316|220463.1734057|128.82698026|24192|1 +638429.72638308|220467.78146644|129.19589802|24193|1 +638424.77195383|220472.3006405|129.62090548|24194|1 +638419.72160964|220476.90718674|130.03358809|24195|1 +638414.70634238|220481.478612|130.16211074|24196|1 +638409.69102179|220486.05023553|130.30309776|24197|1 +638404.68016391|220490.61895225|130.55012504|24198|1 +638399.70762379|220495.15068736|130.61236323|24199|1 +638394.68779304|220499.72588791|130.70327879|24200|1 +638389.64464124|220504.31763749|130.36382906|24201|1 +638384.67543434|220508.84771188|130.55040409|24202|1 +638379.6428531|220513.43264092|130.4666695|24203|1 +638374.64420698|220517.98416745|130.1603527|24204|1 +638369.65318466|220522.53059405|130.02225853|24205|1 +638364.65904643|220527.07958959|129.85908677|24206|1 +638359.86106135|220531.48575927|132.98037226|24207|1 +638354.84590672|220536.05858163|133.23895234|24208|1 +638349.93704049|220540.53638462|133.67443361|24209|1 +638344.91384329|220545.10717798|133.08036636|24210|1 +638339.91991756|220549.65668741|132.97842819|24211|1 +638335.05570492|220554.10155791|134.12287225|24212|1 +638334.67399246|220554.38713173|128.42412032|24213|2 +638329.89657079|220558.78322634|132.33212216|24214|1 +638324.88488917|220563.33950262|131.37137888|24215|1 +638319.69667329|220568.03013682|127.98276034|24216|1 +638314.93169441|220572.40789781|131.25445555|24217|1 +638309.86133904|220577.0104629|129.63383495|24218|1 +638304.91576802|220581.52539928|130.39638528|24219|1 +638299.72553418|220586.21442231|126.69194352|24220|1 +638294.82615975|220590.6876996|127.49787733|24221|1 +638290.02108541|220595.088007|129.49106199|24222|1 +638284.64754724|220599.92870599|124.37013641|24223|1 +638279.82424675|220604.34352257|126.16997434|24224|1 +638276.13489513|220607.8671412|141.00224284|24225|1 +638275.17959468|220608.61222947|129.50357287|24226|2 +638274.60692942|220609.05888073|122.61059378|24227|3 +638269.54833139|220613.65788587|121.63796283|24228|1 +638264.64254577|220618.12526083|121.37218317|24229|1 +638259.6467612|220622.67592011|121.21332744|24230|1 +638254.69083294|220627.18946161|120.98500603|24231|1 +638253.21013467|220625.14403278|121.26454302|24232|1 +638258.14274456|220620.63881993|121.24375355|24233|1 +638263.12863229|220616.08584515|121.30253147|24234|1 +638269.61287796|220610.36148243|139.13411128|24235|1 +638269.12023811|220610.74670633|133.29886508|24236|2 +638268.12079074|220611.52823265|121.46061516|24237|3 +638274.30920221|220606.03162534|135.46614178|24238|1 +638273.36486186|220606.76805182|124.09798504|24239|2 +638278.82001847|220601.85144912|130.01926336|24240|1 +638278.31296956|220602.24575903|123.815025|24241|2 +638283.32843397|220597.67137891|124.38360538|24242|1 +638288.83500674|220592.71105981|130.59875473|24243|1 +638293.56666238|220588.35740244|127.69763298|24244|1 +638298.7997718|220583.61070724|130.65558858|24245|1 +638303.48480226|220579.28501917|126.43409828|24246|1 +638308.87824443|220574.42465703|132.35479989|24247|1 +638313.84055828|220569.87998945|131.22584329|24248|1 +638318.60562218|220565.49192386|127.97334694|24249|1 +638323.62339828|220560.91213341|128.25004688|24250|1 +638329.00444995|220556.0527965|133.17930005|24251|1 +638333.98303255|220551.51356231|133.74249471|24252|1 +638338.92198329|220546.98817557|132.28302738|24253|1 +638344.01920488|220542.35335751|133.99946558|24254|1 +638348.92435156|220537.85276392|131.99137949|24255|1 +638353.9962086|220533.22920641|132.63136961|24256|1 +638358.801632|220528.80930042|129.68636208|24257|1 +638363.84650508|220524.20554854|129.88993146|24258|1 +638368.88842316|220519.60428205|130.07493449|24259|1 +638373.87915562|220515.04943717|130.23329723|24260|1 +638378.96451358|220510.40832|130.40165009|24261|1 +638383.99720917|220505.81462904|130.51215519|24262|1 +638389.01772261|220501.22978298|130.4169143|24263|1 +638394.05846383|220496.63107322|130.73963013|24264|1 +638399.07755767|220492.04771606|130.66317883|24265|1 +638404.14221036|220487.42245078|130.55810596|24266|1 +638409.20144255|220482.80102812|130.35341107|24267|1 +638414.21733567|220478.22036949|130.25848644|24268|1 +638419.27359043|220473.60117477|130.01042667|24269|1 +638424.32030194|220468.98828078|129.54410071|24270|1 +638429.32404301|220464.4158104|129.18715435|24271|1 +638434.37453696|220459.80034824|128.80219103|24272|1 +638439.42545795|220455.18456031|128.42363663|24273|1 +638444.47404932|220450.57013922|127.97656535|24274|1 +638449.52750382|220445.95264926|127.65453785|24275|1 +638454.57830405|220441.33668498|127.25149188|24276|1 +638459.6305027|220436.7197838|126.87984871|24277|1 +638464.68675274|220432.10048639|126.62703572|24278|1 +638469.74134639|220427.4820781|126.31817954|24279|1 +638474.79616033|220422.8634645|126.00950009|24280|1 +638479.85293491|220418.24374366|125.7634681|24281|1 +638484.9120955|220413.62280337|125.60506815|24282|1 +638489.96809762|220409.0033673|125.32189417|24283|1 +638495.03047707|220404.38099188|125.30130934|24284|1 +638500.08673001|220399.76131749|125.01849813|24285|1 +638505.14295399|220395.14146046|124.71711128|24286|1 +638510.2480683|220390.47736813|124.45219668|24287|1 +638515.25487454|220385.9010452|124.00861357|24288|1 +638520.36112708|220381.23597669|123.75052648|24289|1 +638525.42006293|220376.61410881|123.49368583|24290|1 +638530.48029442|220371.99160341|123.28701896|24291|1 +638535.58797423|220367.32495023|123.00493329|24292|1 +638540.647202|220362.70122412|122.60501271|24293|1 +638545.70672755|220358.07646763|122.13651944|24294|1 +638550.81586433|220353.40731023|121.74922138|24295|1 +638555.87787764|220348.78061987|121.31246577|24296|1 +638560.9901472|220344.11072635|121.11963994|24297|1 +638566.05538279|220339.48438289|120.98336892|24298|1 +638571.16805572|220334.8115778|120.56006368|24299|1 +638576.23414091|220330.18108775|120.11808977|24300|1 +638581.34934059|220325.50576767|119.6767949|24301|1 +638586.4133261|220320.87739517|119.25404776|24302|1 +638591.53064029|220316.20082695|118.87602357|24303|1 +638596.64883361|220311.52441551|118.58595697|24304|1 +638601.71986117|220306.89180117|118.3641096|24305|1 +638606.79202965|220302.25773072|118.10499002|24306|1 +638611.91387964|220297.57722103|117.74732741|24307|1 +638616.98849773|220292.94063425|117.46379997|24308|1 +638622.06419859|220288.30312406|117.18675586|24309|1 +638627.18696463|220283.62437665|117.06773033|24310|1 +638632.26456814|220278.98532923|116.81003391|24311|1 +638637.3424068|220274.34674881|116.61505938|24312|1 +638642.42098294|220269.70769706|116.43907907|24313|1 +638647.5028317|220265.06428375|116.13842705|24314|1 +638652.58548309|220260.42047773|115.86928015|24315|1 +638657.65541001|220255.79574699|116.28119072|24316|1 +638662.73918455|220251.15125043|116.04378148|24317|1 +638667.82707451|220246.50169278|115.68800713|24318|1 +638672.92517183|220241.83905169|114.98910886|24319|1 +638677.9676056|220237.23157075|114.68740574|24320|1 +638683.06175496|220232.57601794|114.30752119|24321|1 +638688.14983471|220227.9290121|114.20265297|24322|1 +638693.08753779|220223.4567821|117.52201048|24323|1 +638698.25947796|220218.70333338|114.68966607|24324|1 +638703.350757|220214.05319019|114.56681751|24325|1 +638708.44270888|220209.40154213|114.45054531|24326|1 +638713.54282375|220204.73900231|114.12869454|24327|1 +638718.61639058|220200.09491899|113.27937724|24328|1 +638723.69355331|220195.44748333|112.4240975|24329|1 +638728.81012699|220190.76739119|111.87248356|24330|1 +638733.86908994|220186.14312097|111.6166382|24331|1 +638738.92353849|220181.52460928|111.51062585|24332|1 +638744.02766848|220176.86072062|111.40286477|24333|1 +638749.08032127|220172.24500258|111.40325545|24334|1 +638754.14440528|220167.61645512|111.18559388|24335|1 +638759.20110104|220162.99676631|111.16136275|24336|1 +638764.26687851|220158.36707826|110.9814757|24337|1 +638769.32407752|220153.7474689|111.00743696|24338|1 +638774.35088138|220149.1521383|110.71696108|24339|1 +638779.3695652|220144.56632668|110.6196459|24340|1 +638784.46724092|220139.9025987|109.99189691|24341|1 +638789.49359147|220135.30909859|109.83244586|24342|1 +638794.52438993|220130.71105843|109.62942529|24343|1 +638799.56204189|220126.10587181|109.34550717|24344|1 +638804.60166255|220121.498952|109.06789565|24345|1 +638809.59375847|220116.93568835|108.81559427|24346|1 +638814.63300036|220112.32999005|108.61894541|24347|1 +638819.67045543|220107.72659718|108.48459985|24348|1 +638824.63563918|220103.18543423|108.00813496|24349|1 +638829.69019718|220098.56437974|107.68717717|24350|1 +638834.67946192|220094.00605245|107.65220249|24351|1 +638839.68618805|220089.42932821|107.39321313|24352|1 +638844.68881804|220084.85735936|107.22741826|24353|1 +638849.74629613|220080.22736349|106.33434541|24354|1 +638854.73943497|220075.66629111|106.3735896|24355|1 +638859.66916328|220071.16553197|106.63550902|24356|1 +638864.68983819|220066.57584369|106.35752543|24357|1 +638869.74795208|220061.94708499|105.63240545|24358|1 +638874.70757292|220057.41568957|105.58929172|24359|1 +638879.7093876|220052.8469338|105.65274844|24360|1 +638884.68891775|220048.29524489|105.41675307|24361|1 +638889.65829907|220043.75450923|105.33570669|24362|1 +638894.61747438|220039.22470788|105.4033027|24363|1 +638899.58766679|220034.68369058|105.36517472|24364|1 +638904.50296336|220030.19384235|105.42411077|24365|1 +638909.45410498|220025.67311264|105.65198569|24366|1 +638914.38024041|220021.17845271|106.17707097|24367|1 +638919.26096742|220016.72493905|106.6746416|24368|1 +638924.14841589|220012.26459743|107.10958336|24369|1 +638929.03068602|220007.80971714|107.61203742|24370|1 +638933.94457989|220003.32243728|107.79182215|24371|1 +638938.87231945|219998.82115459|107.84730725|24372|1 +638943.7404531|219994.37572972|108.03568682|24373|1 +638948.68606841|219989.85662049|107.95407304|24374|1 +638953.60002664|219985.36481417|107.72674692|24375|1 +638958.54407008|219980.84262877|107.23299933|24376|1 +638953.78633358|219981.56070817|107.37117722|24377|1 +638948.78255262|219986.12514169|107.48327293|24378|1 +638943.76160328|219990.70750558|107.79957053|24379|1 +638938.78286208|219995.2469103|107.71349189|24380|1 +638933.7636808|219999.82254605|107.56264498|24381|1 +638928.74481981|220004.39809718|107.43038302|24382|1 +638923.79954991|220008.90375441|107.0527402|24383|1 +638918.76134686|220013.49390149|106.63913672|24384|1 +638913.83047339|220017.9849909|106.13083184|24385|1 +638908.80618328|220022.56101164|105.58692907|24386|1 +638903.81349562|220027.1104506|105.24963735|24387|1 +638898.75021499|220031.72734684|105.18325988|24388|1 +638893.68692264|220036.34453679|105.14191348|24389|1 +638888.67015938|220040.9197997|105.15199661|24390|1 +638883.59134702|220045.55384255|105.35297079|24391|1 +638878.52820481|220050.17181204|105.3928382|24392|1 +638873.47171197|220054.78310509|105.37700658|24393|1 +638868.38255353|220059.42914988|105.80847878|24394|1 +638863.28571669|220064.08379337|106.38315183|24395|1 +638858.26320663|220068.66019087|106.0138434|24396|1 +638853.15163721|220073.32414024|106.20923652|24397|1 +638848.09551247|220077.9367835|106.34354486|24398|1 +638842.98178937|220082.60381726|106.63913672|24399|1 +638837.90235492|220087.24221594|107.17802583|24400|1 +638832.78587025|220091.91316409|107.59877308|24401|1 +638827.69353585|220096.55956275|107.70897123|24402|1 +638822.63207521|220101.18183164|108.12434205|24403|1 +638817.52671395|220105.84392789|108.51510968|24404|1 +638812.4420942|220110.48395134|108.62000581|24405|1 +638807.34840318|220115.13425465|108.90570058|24406|1 +638802.25566816|220119.78396736|109.21663106|24407|1 +638797.21884098|220124.38166886|109.44014344|24408|1 +638792.08011106|220129.07390281|109.79589918|24409|1 +638786.9988431|220133.71236035|110.03305727|24410|1 +638781.97075164|220138.30170025|110.21968812|24411|1 +638776.84381126|220142.98224743|110.48946754|24412|1 +638771.76444783|220147.61995777|110.81462973|24413|1 +638766.6842614|220152.25911569|111.20236498|24414|1 +638761.57663712|220156.91924965|111.21785244|24415|1 +638756.51598711|220161.53709547|111.28828549|24416|1 +638751.45599716|220166.15455415|111.37757324|24417|1 +638746.34654862|220170.81790025|111.53116418|24418|1 +638741.29785926|220175.42300445|111.43381178|24419|1 +638736.18800437|220180.08763328|111.66913743|24420|1 +638731.13683551|220184.69632464|111.69062453|24421|1 +638726.03602046|220189.3511453|111.7831307|24422|1 +638720.91663182|220194.02870185|112.40004311|24423|1 +638715.83073653|220198.68086467|113.48909509|24424|1 +638710.70296302|220203.37062572|114.51869012|24425|1 +638705.61066888|220208.01778278|114.61893537|24426|1 +638700.52597119|220212.655895|114.52601992|24427|1 +638695.44452674|220217.29014991|114.35222553|24428|1 +638690.37511836|220221.90917555|113.79166328|24429|1 +638685.35350342|220226.48438687|113.21553915|24430|1 +638680.20062563|220231.19348905|113.91354445|24431|1 +638675.09419611|220235.8619929|114.7772702|24432|1 +638670.05663943|220240.45961259|114.913411|24433|1 +638664.79408734|220245.3475506|122.77213773|24434|1 +638664.96629224|220245.10831046|115.30937832|24435|2 +638659.87043588|220249.76575568|116.04290711|24436|1 +638654.78718758|220254.40634421|116.28959952|24437|1 +638649.7146372|220259.03175748|116.04311175|24438|1 +638644.63918044|220263.66161971|115.95923763|24439|1 +638639.55799987|220268.30083681|116.25041114|24440|1 +638634.47863619|220272.93805962|116.51061903|24441|1 +638629.40177283|220277.57198403|116.67734407|24442|1 +638624.37277572|220282.16304068|116.92084598|24443|1 +638619.24949779|220286.83990923|117.13647976|24444|1 +638614.22277337|220291.42877227|117.36771262|24445|1 +638609.14857938|220296.06187941|117.67897796|24446|1 +638604.07516894|220300.69496798|118.05294658|24447|1 +638599.00392745|220305.32436795|118.27092441|24448|1 +638593.93354036|220309.95307319|118.49536697|24449|1 +638588.8638024|220314.58208207|118.80124659|24450|1 +638583.84287379|220319.1668735|119.13918012|24451|1 +638578.73173193|220323.83474707|119.53867282|24452|1 +638573.66508814|220328.46309192|120.03890375|24453|1 +638568.64766632|220333.0463517|120.52706098|24454|1 +638563.5351901|220337.71410693|120.80246797|24455|1 +638558.47083486|220342.33703101|120.99704253|24456|1 +638553.40680041|220346.95932954|121.16055846|24457|1 +638548.34604926|220351.58241021|121.66798897|24458|1 +638543.28510759|220356.20396307|122.01935427|24459|1 +638538.22641196|220360.82484387|122.49589358|24460|1 +638533.16904419|220365.44466547|122.9850926|24461|1 +638528.1084488|220370.06394032|123.15575229|24462|1 +638523.05076366|220374.68228547|123.48280275|24463|1 +638517.99057148|220379.30073556|123.61006035|24464|1 +638512.98288071|220383.87411149|123.9988467|24465|1 +638507.87941782|220388.53437717|124.33372926|24466|1 +638502.87287257|220393.10658719|124.71010704|24467|1 +638497.86217249|220397.68019911|124.86770704|24468|1 +638492.80422433|220402.29719712|125.045557|24469|1 +638487.74570547|220406.91445246|125.19858983|24470|1 +638482.73890311|220411.48617269|125.50617167|24471|1 +638477.67993592|220416.10365118|125.64069396|24472|1 +638472.67370352|220420.67493892|125.95449869|24473|1 +638467.62118792|220425.2889436|126.30787317|24474|1 +638462.61356273|220429.86083121|126.55918857|24475|1 +638457.60331181|220434.43423976|126.72924364|24476|1 +638452.55392811|220439.0462312|127.15780439|24477|1 +638447.5552807|220443.61332872|127.64631508|24478|1 +638442.54827133|220448.18589836|127.88498006|24479|1 +638437.54830324|220452.75409962|128.3108805|24480|1 +638432.54917345|220457.32167925|128.7491802|24481|1 +638427.54757179|220461.89076803|129.11872118|24482|1 +638422.49951004|220466.50261188|129.51639072|24483|1 +638417.50334587|220471.06805532|130.00449214|24484|1 +638412.49489963|220475.64163857|130.2116613|24485|1 +638407.48313952|220480.21757193|130.35639694|24486|1 +638402.51540561|220484.75257712|130.43502486|24487|1 +638397.50657832|220489.32680697|130.66695535|24488|1 +638392.49163158|220493.9054025|130.7865669|24489|1 +638387.49991452|220498.45774953|130.44681021|24490|1 +638382.48473166|220503.03698744|130.60379629|24491|1 +638377.94662245|220507.26694652|138.64494016|24492|1 +638372.46448745|220512.17928627|130.28361984|24493|1 +638367.47479686|220516.73159137|130.10564896|24494|1 +638362.48591826|220521.28364055|129.97118248|24495|1 +638357.44177232|220525.88513483|129.74163324|24496|1 +638352.67767164|220530.26415542|132.54987675|24497|1 +638347.80771635|220534.72863832|134.33382724|24498|1 +638342.80721427|220539.28941098|134.02378973|24499|1 +638337.76821551|220543.87122666|132.42526085|24500|1 +638332.78153311|220548.43058291|133.13575843|24501|1 +638327.80586413|220552.95840655|131.88684612|24502|1 +638322.56438419|220557.70294445|128.25793479|24503|1 +638317.59516874|220562.23532971|127.96120812|24504|1 +638312.85346796|220566.60220507|131.52302574|24505|1 +638307.57910908|220571.36768505|127.06189377|24506|1 +638302.98085045|220575.60974753|131.18900825|24507|1 +638297.90256136|220580.23359566|130.14417691|24508|1 +638292.97516375|220584.72801782|129.86462133|24509|1 +638287.91103405|220589.33534029|128.49026526|24510|1 +638282.61848328|220594.12079337|124.33047364|24511|1 +638278.17133142|220598.24313196|130.12480131|24512|1 +638273.58873331|220602.47581967|134.69876383|24513|1 +638272.65551852|220603.20462298|123.41717872|24514|2 +638267.7216749|220607.70040198|122.72003848|24515|1 +638264.22605407|220611.07991489|140.04292274|24516|1 +638263.11681387|220611.95077523|127.05070374|24517|2 +638262.61974998|220612.34101823|121.22874978|24518|3 +638258.34932047|220616.32183785|128.83782613|24519|1 +638257.68248455|220616.84668475|121.14712669|24520|2 +638252.75781165|220621.34269049|121.23283326|24521|1 +638254.4452817|220616.78888975|132.29244078|24522|1 +638253.97586493|220617.15921199|126.92573437|24523|2 +638253.4705892|220617.55782332|121.14907076|24524|3 +638260.68432022|220611.24370213|147.11058919|24525|1 +638258.44506352|220613.00588306|121.11044049|24526|2 +638265.5207572|220606.80484684|145.87757362|24527|1 +638263.56464833|220608.34027193|122.80532647|24528|2 +638270.48994281|220602.25558885|145.64389439|24529|1 +638268.57510323|220603.75460855|122.69149133|24530|2 +638274.30672836|220598.61256801|131.97096209|24531|1 +638273.61532277|220599.15234922|123.54790588|24532|2 +638279.05651807|220594.23848335|129.42190328|24533|1 +638283.67374216|220589.95996715|124.53325236|24534|1 +638288.71964317|220585.34813533|124.99178343|24535|1 +638294.04349211|220580.52234533|129.11451677|24536|1 +638299.06563506|220575.92338277|128.76527228|24537|1 +638304.12383927|220571.31111256|130.21407046|24538|1 +638309.30514485|220566.59124028|132.1119119|24539|1 +638314.1809937|220562.11206827|130.49295632|24540|1 +638319.01950502|220557.66074188|128.30062064|24541|1 +638324.33340151|220552.8424237|132.27916715|24542|1 +638329.15234769|220548.40614813|129.77489639|24543|1 +638334.43506601|220543.61438074|133.49956951|24544|1 +638339.45796737|220539.01797352|133.37546521|24545|1 +638344.48997186|220534.42330627|134.17240421|24546|1 +638349.36389685|220529.93727661|131.69293199|24547|1 +638354.26947343|220525.42707831|129.64914568|24548|1 +638359.3139033|220520.81490897|129.88629446|24549|1 +638364.35599011|220516.20480511|130.11736919|24550|1 +638369.34958243|220511.63926506|130.37174487|24551|1 +638375.005385|220506.58158187|140.96857972|24552|1 +638379.83616831|220502.12551037|137.62784672|24553|1 +638384.47829291|220497.80072856|130.52534511|24554|1 +638389.50413004|220493.20379511|130.60728446|24555|1 +638394.58239752|220488.56026516|130.81022131|24556|1 +638399.59065453|220483.97604049|130.58669032|24557|1 +638404.6469396|220479.34808205|130.37825612|24558|1 +638409.66079561|220474.76029486|130.29835386|24559|1 +638414.66918824|220470.17633176|130.11236484|24560|1 +638419.71434614|220465.55606028|129.6796648|24561|1 +638424.75845195|220460.93640487|129.21592474|24562|1 +638429.80865302|220456.31274089|128.89594363|24563|1 +638434.80710989|220451.73523037|128.47288954|24564|1 +638439.85399547|220447.11355391|128.05949069|24565|1 +638444.90411507|220442.48980475|127.72743587|24566|1 +638449.95070667|220437.86811228|127.28940592|24567|1 +638454.99713604|220433.24635589|126.83279102|24568|1 +638460.09773529|220428.5771054|126.56141169|24569|1 +638465.15338649|220423.94991105|126.38009216|24570|1 +638470.20237353|220419.32634241|125.97408823|24571|1 +638475.25463279|220414.70086813|125.66819931|24572|1 +638480.30880368|220410.07431906|125.42496716|24573|1 +638485.36279605|220405.44779243|125.16942876|24574|1 +638490.46718817|220400.77634103|125.01869347|24575|1 +638495.52258305|220396.14906556|124.81362651|24576|1 +638500.57772019|220391.52181351|124.5899932|24577|1 +638505.68066152|220386.85078053|124.3590766|24578|1 +638510.73289475|220382.22412059|123.94847758|24579|1 +638515.78728087|220377.59637029|123.61928772|24580|1 +638520.89239109|220372.92395909|123.44564215|24581|1 +638525.9487428|220368.29508192|123.17943462|24582|1 +638531.00596265|220363.66540717|122.91339451|24583|1 +638536.1095016|220358.99147574|122.47206242|24584|1 +638541.16531498|220354.36000028|121.92529471|24585|1 +638546.22414448|220349.72787491|121.57245042|24586|1 +638551.33117022|220345.0510135|121.15717261|24587|1 +638556.39277924|220340.41804516|120.96109117|24588|1 +638561.45485577|220335.78450585|120.75270347|24589|1 +638566.56521654|220331.10655739|120.51974978|24590|1 +638571.58041855|220326.51345141|120.09282615|24591|1 +638576.6923842|220321.82999928|119.49181047|24592|1 +638582.28385876|220316.71000926|119.04710184|24593|1 +638586.86778909|220312.51213154|118.72159548|24594|1 +638591.93505655|220307.87326558|118.46473622|24595|1 +638597.05108489|220303.18976439|118.20277959|24596|1 +638602.07233192|220298.5931356|117.96417973|24597|1 +638607.19062793|220293.90714126|117.66543457|24598|1 +638612.26256461|220289.26315975|117.3346355|24599|1 +638617.33496746|220284.61956471|117.07905989|24600|1 +638622.45621244|220279.93140964|116.83153032|24601|1 +638627.53000069|220275.28721587|116.63906726|24602|1 +638632.60478423|220270.64211227|116.44684605|24603|1 +638637.73075477|220265.9486652|116.11310762|24604|1 +638642.80673205|220261.30313816|115.98400826|24605|1 +638647.87369424|220256.67157552|116.37985466|24606|1 +638652.94893726|220252.0277296|116.34494509|24607|1 +638658.03263678|220247.37225642|115.95429839|24608|1 +638663.11505747|220242.7193819|115.69510439|24609|1 +638668.21338378|220238.04548432|114.84298725|24610|1 +638673.24632308|220233.44003917|114.78776261|24611|1 +638678.36379433|220228.74296873|113.41805743|24612|1 +638683.4765671|220224.05374139|112.37350514|24613|1 +638688.5007702|220219.46164932|112.81202809|24614|1 +638693.57097357|220214.82808644|113.30370139|24615|1 +638698.63769824|220210.19871508|113.88921101|24616|1 +638703.65930727|220205.6094445|114.37159183|24617|1 +638708.6860962|220201.0151085|114.71041834|24618|1 +638713.81503907|220196.31185974|113.58041063|24619|1 +638718.90000114|220191.64883402|112.4533888|24620|1 +638724.01682944|220186.96230901|111.84218767|24621|1 +638729.06184114|220182.34852295|111.88232484|24622|1 +638734.10894108|220177.73254998|111.89762626|24623|1 +638739.16423222|220173.10731241|111.75090004|24624|1 +638744.21637975|220168.48609802|111.71034429|24625|1 +638749.27391885|220163.85899554|111.58264951|24626|1 +638754.33397517|220159.22938117|111.43643488|24627|1 +638759.38659289|220154.60859743|111.4773813|24628|1 +638764.39818552|220150.02402563|111.4014137|24629|1 +638769.47052155|220145.38160151|111.11232379|24630|1 +638774.50803903|220140.76869422|110.61276258|24631|1 +638779.56882914|220136.14007102|110.62312476|24632|1 +638784.60189366|220131.53305401|110.29197222|24633|1 +638789.67958978|220126.88638456|110.06603207|24634|1 +638794.72025078|220122.27186626|109.68532897|24635|1 +638799.75420064|220117.66517025|109.4603655|24636|1 +638804.8097597|220113.03525468|108.91803473|24637|1 +638809.79830305|220108.4703879|108.7246508|24638|1 +638814.89086659|220103.809554|108.44996934|24639|1 +638819.87904158|220099.24581802|108.33119496|24640|1 +638824.94078824|220094.61103271|107.86405975|24641|1 +638829.99373864|220089.98618013|107.57128633|24642|1 +638834.99743723|220085.40687424|107.32807279|24643|1 +638840.03430381|220080.79249565|106.64961052|24644|1 +638845.09940151|220076.14858123|105.62941028|24645|1 +638850.0630449|220071.61317902|106.05742222|24646|1 +638855.08261193|220067.01858635|105.7457662|24647|1 +638860.09316344|220062.4339229|105.58944055|24648|1 +638865.07635804|220057.87845026|105.81815263|24649|1 +638870.03444815|220053.34284965|105.76607198|24650|1 +638875.0570859|220048.74636292|105.54117363|24651|1 +638880.05206039|220044.17269991|105.09143274|24652|1 +638885.0567838|220039.59567884|105.15201521|24653|1 +638890.01184408|220035.06442913|105.24810256|24654|1 +638894.98362063|220030.51599551|105.17021879|24655|1 +638899.95940109|220025.96368839|105.07350822|24656|1 +638904.91311281|220021.4345817|105.2556277|24657|1 +638909.85420492|220016.91875092|105.5986121|24658|1 +638914.72172625|220012.47330149|106.23025853|24659|1 +638919.65325976|220007.96759859|106.70245391|24660|1 +638924.55121024|220003.49092704|107.02310474|24661|1 +638929.49689866|219998.97090868|107.3705726|24662|1 +638934.40739812|219994.48166097|107.59115493|24663|1 +638939.34262227|219989.96723801|107.57604884|24664|1 +638944.29742162|219985.43302068|107.3872972|24665|1 +638949.24097338|219980.91062441|107.34060228|24666|1 +638947.17281161|219979.65166999|107.18576491|24667|1 +638942.18413589|219984.21010741|107.19448997|24668|1 +638937.18598266|219988.77855525|107.32690076|24669|1 +638932.1948095|219993.34015669|107.41590946|24670|1 +638927.18815761|219997.91240447|107.18016524|24671|1 +638922.19888162|220002.46696262|106.77713787|24672|1 +638917.26347256|220006.97182419|106.33295014|24673|1 +638912.28517972|220011.51534027|105.83657014|24674|1 +638907.31618941|220016.04935117|105.24700495|24675|1 +638902.26191382|220020.66595852|105.08303324|24676|1 +638897.25268576|220025.24207364|104.98315076|24677|1 +638892.21488225|220029.84821004|105.24301449|24678|1 +638887.16621698|220034.45977682|105.08562843|24679|1 +638882.16273733|220039.03071883|104.99197815|24680|1 +638877.06296613|220043.69634426|105.51137074|24681|1 +638871.99042055|220048.33386468|105.7331623|24682|1 +638866.91577877|220052.96725839|105.39517295|24683|1 +638861.78395585|220057.66799682|106.44979906|24684|1 +638856.78773014|220062.22601812|105.77170886|24685|1 +638851.67467585|220066.90087624|106.0185408|24686|1 +638846.56834623|220071.56899154|106.20991554|24687|1 +638841.52665131|220076.17593389|106.20954347|24688|1 +638836.3701532|220080.89840834|107.18498356|24689|1 +638831.27321611|220085.55776387|107.35891748|24690|1 +638826.16908133|220090.22276627|107.67020142|24691|1 +638821.00853297|220094.94061694|108.14359673|24692|1 +638815.95820027|220099.55595006|108.45577365|24693|1 +638810.82477959|220104.24539344|108.5942492|24694|1 +638805.7325677|220108.89877653|108.88231591|24695|1 +638800.63417019|220113.55936954|109.31389973|24696|1 +638795.49655022|220118.25470742|109.64058742|24697|1 +638790.36253268|220122.94656241|109.94915525|24698|1 +638785.27080696|220127.6013626|110.40694218|24699|1 +638780.14525053|220132.28483201|110.6542206|24700|1 +638775.0188958|220136.9696457|110.95807243|24701|1 +638769.91697037|220141.62755839|110.83873994|24702|1 +638764.78832353|220146.31584302|111.26817505|24703|1 +638759.71139952|220150.95662461|111.67802062|24704|1 +638754.60794832|220155.61737594|111.69073615|24705|1 +638749.4556713|220160.32328112|111.7491234|24706|1 +638744.4020805|220164.93871474|111.78589332|24707|1 +638739.29923507|220169.59982512|111.88080865|24708|1 +638734.14497262|220174.30919641|112.09037767|24709|1 +638729.09676156|220178.9194697|112.10296298|24710|1 +638723.95945791|220183.60965395|111.97046847|24711|1 +638718.85692093|220188.27201013|112.20420351|24712|1 +638713.72952761|220192.96485802|113.15584965|24713|1 +638708.54593131|220197.71272122|114.44136445|24714|1 +638703.46404661|220202.35211384|114.29583816|24715|1 +638698.41960092|220206.94520516|113.03339177|24716|1 +638693.30410317|220211.61032657|112.42315803|24717|1 +638677.99297916|220225.59546781|112.63610359|24718|1 +638672.80812081|220230.35267755|114.67493206|24719|1 +638667.72674491|220234.99376952|114.72524537|24720|1 +638662.58838028|220239.69161624|115.20420314|24721|1 +638657.5015509|220244.34156444|115.61117446|24722|1 +638652.36523846|220249.03857207|116.18480571|24723|1 +638647.23645802|220253.7257302|116.48416478|24724|1 +638642.16519911|220258.35532807|116.32383936|24725|1 +638637.09471488|220262.98382139|116.12623242|24726|1 +638631.97077253|220267.66524254|116.30187787|24727|1 +638626.89445743|220272.30408553|116.56713663|24728|1 +638621.7731713|220276.98262391|116.69989158|24729|1 +638616.69832361|220281.6208884|117.03449508|24730|1 +638611.5785146|220286.29857561|117.21180554|24731|1 +638606.5057863|220290.93532362|117.58449052|24732|1 +638601.38711235|220295.6133467|117.8875982|24733|1 +638596.31796653|220300.24495103|118.08588417|24734|1 +638591.24938752|220304.87672186|118.34687341|24735|1 +638586.13393903|220309.55155423|118.62611274|24736|1 +638581.07198394|220314.1773555|118.89394809|24737|1 +638576.00580827|220318.80891675|119.33689868|24738|1 +638570.94118013|220323.44062624|119.92380357|24739|1 +638565.87782611|220328.06941887|120.34842036|24740|1 +638560.8149727|220332.69580699|120.59198738|24741|1 +638555.7052135|220337.36536911|120.8607436|24742|1 +638550.69093064|220341.94641182|121.01719018|24743|1 +638545.58272965|220346.61490343|121.31780499|24744|1 +638540.523692|220351.23919069|121.68722504|24745|1 +638535.46699913|220355.86276174|122.18806059|24746|1 +638530.41162093|220360.48520698|122.69531436|24747|1 +638525.35482212|220365.10686508|123.00901677|24748|1 +638520.3461716|220369.68414979|123.29078618|24749|1 +638515.24157705|220374.3483943|123.49942503|24750|1 +638510.18698662|220378.96812657|123.81986192|24751|1 +638505.18197771|220383.54325598|124.20800645|24752|1 +638500.12718276|220388.16244404|124.45991716|24753|1 +638495.07161653|220392.78180943|124.66200755|24754|1 +638490.06156687|220397.3584608|124.76275509|24755|1 +638485.00780871|220401.97693217|125.03379955|24756|1 +638480.00086283|220406.55210626|125.25947925|24757|1 +638474.94584077|220411.17107776|125.46826693|24758|1 +638469.94405707|220415.74343641|125.86883863|24759|1 +638464.94353528|220420.31492118|126.29431118|24760|1 +638459.88670565|220424.93475062|126.42841489|24761|1 +638454.88113636|220429.50897302|126.67896754|24762|1 +638449.92917414|220434.03604226|127.101817|24763|1 +638444.88344589|220438.64806964|127.54201426|24764|1 +638439.88340911|220443.21736823|127.91091341|24765|1 +638434.93241994|220447.74212791|128.30808997|24766|1 +638429.88570194|220452.35429504|128.69216031|24767|1 +638424.93519431|220456.87862873|129.08892759|24768|1 +638419.93726737|220461.4463637|129.48857841|24769|1 +638414.99038241|220465.96820799|129.95971339|24770|1 +638409.98670926|220470.53973252|130.22177233|24771|1 +638405.02028442|220475.07479971|130.26179788|24772|1 +638400.01189329|220479.64977736|130.44254069|24773|1 +638395.05664831|220484.17746594|130.74423451|24774|1 +638390.03631684|220488.76101652|130.7064507|24775|1 +638385.10771589|220493.26012776|130.6169583|24776|1 +638380.45858892|220497.58064441|137.63902745|24777|1 +638380.07761185|220497.85114645|130.44179655|24778|2 +638375.88144624|220501.8366276|144.77990819|24779|1 +638370.12982979|220506.93461825|130.48198953|24780|1 +638365.09522929|220511.52977558|130.30679987|24781|1 +638360.14971776|220516.04255954|130.04765238|24782|1 +638355.15611904|220520.59964181|129.81785199|24783|1 +638350.15563486|220525.16215606|129.50692151|24784|1 +638345.32935194|220529.59600018|132.02487518|24785|1 +638340.23256635|220534.22218681|129.4591941|24786|1 +638335.28796513|220538.73592194|129.36071619|24787|1 +638330.47345746|220543.16001649|131.97038538|24788|1 +638325.34093738|220547.81554027|129.09347616|24789|1 +638320.61670197|220552.16316378|132.26310298|24790|1 +638315.34302421|220556.93504182|128.20916557|24791|1 +638310.35772426|220561.48137113|127.67997821|24792|1 +638305.68362168|220565.78969811|131.45114161|24793|1 +638300.69462503|220570.33194081|130.23046019|24794|1 +638295.80580651|220574.80447832|131.03156638|24795|1 +638290.74545501|220579.40295362|128.97688769|24796|1 +638285.67423671|220584.01751433|127.48852905|24797|1 +638280.51755017|220588.69286329|124.39585582|24798|1 +638275.6069169|220593.17742325|124.46210307|24799|1 +638272.39808888|220596.32971898|145.20842242|24800|1 +638267.82283896|220600.54787936|148.9925246|24801|1 +638262.5402975|220605.32169036|144.36140266|24802|1 +638260.7223557|220606.75255426|122.98030219|24803|2 +638255.69490359|220611.33043009|121.79629767|24804|1 +638257.25313852|220607.05563653|139.19109396|24805|1 +638255.82344975|220608.18440695|122.55957354|24806|2 +638260.87385026|220603.56218771|122.91838026|24807|1 +638267.98405933|220597.32869525|148.62962509|24808|1 +638265.84934038|220599.00543222|122.99209684|24809|2 +638272.72585776|220592.95978811|146.29607914|24810|1 +638276.10116734|220589.6577212|126.95038408|24811|1 +638281.26447187|220584.95618888|129.53662209|24812|1 +638285.99916104|220580.58203168|126.11518687|24813|1 +638291.1216537|220575.91340085|128.29127235|24814|1 +638296.27110684|220571.21814802|130.28754519|24815|1 +638301.31835938|220566.60251659|130.99632195|24816|1 +638306.19486104|220562.12538849|130.06180038|24817|1 +638311.03119778|220557.6715114|127.87593874|24818|1 +638316.30595842|220552.88353474|131.90907737|24819|1 +638321.15225579|220548.42206234|129.86588637|24820|1 +638326.17794951|220543.81691963|129.72233205|24821|1 +638331.08371038|220539.31809039|129.24071397|24822|1 +638336.13058921|220534.69774392|129.46471005|24823|1 +638341.20681138|220530.0559226|130.18734646|24824|1 +638346.14748305|220525.52339728|129.54428675|24825|1 +638351.18384099|220520.91179176|129.68763643|24826|1 +638356.17378578|220516.34323979|129.88567125|24827|1 +638361.21197642|220511.73095184|130.12268981|24828|1 +638366.24927286|220507.11968202|130.37854447|24829|1 +638371.50100137|220502.35469958|134.57546878|24830|1 +638377.08880981|220497.35241738|145.28429701|24831|1 +638381.5379968|220493.16298136|134.75821148|24832|1 +638381.32574374|220493.31334108|130.69158646|24833|2 +638386.33570191|220488.7227573|130.54865536|24834|1 +638391.41255816|220484.0752875|130.80738427|24835|1 +638396.37141332|220479.5311615|130.63717106|24836|1 +638401.4198837|220474.90379936|130.35340177|24837|1 +638406.42955315|220470.31413233|130.27302512|24838|1 +638411.43843701|220465.72517789|130.19263917|24839|1 +638416.48058216|220461.10231318|129.7906722|24840|1 +638421.47037436|220456.52610449|129.27340972|24841|1 +638426.51875254|220451.89907156|129.01522031|24842|1 +638431.51332147|220447.31962377|128.60405389|24843|1 +638436.55230488|220442.69848439|128.09636293|24844|1 +638441.5496116|220438.11712469|127.74136063|24845|1 +638446.59604011|220433.4911856|127.42119349|24846|1 +638451.58751165|220428.9131325|126.87881621|24847|1 +638456.63494422|220424.28639923|126.57136459|24848|1 +638461.68748537|220419.65673814|126.42648943|24849|1 +638466.68723223|220415.07358324|126.11520548|24850|1 +638471.72986606|220410.44920602|125.62076025|24851|1 +638476.77607839|220405.82269486|125.23267153|24852|1 +638481.82983505|220401.19230712|125.12587784|24853|1 +638486.87778157|220396.5646688|124.78185164|24854|1 +638491.93051016|220391.93474467|124.63170236|24855|1 +638496.98282614|220387.30498559|124.46296814|24856|1 +638502.03545145|220382.67507692|124.30693084|24857|1 +638507.08530855|220378.0460127|123.99485624|24858|1 +638512.13537557|220373.41654682|123.664206|24859|1 +638517.18528259|220368.78668398|123.28373543|24860|1 +638522.2389535|220364.15566638|123.11590348|24861|1 +638527.29057659|220359.52422752|122.73578639|24862|1 +638532.39019938|220354.84831699|122.30531878|24863|1 +638537.39454154|220350.25865798|121.7885772|24864|1 +638542.49631512|220345.58070598|121.35248201|24865|1 +638547.55281922|220340.94619673|121.10445014|24866|1 +638552.60947571|220336.31067106|120.7753626|24867|1 +638557.66804663|220331.67588219|120.67770325|24868|1 +638562.72616377|220327.03894117|120.34276488|24869|1 +638567.78534616|220322.4016338|120.06426969|24870|1 +638572.84529214|220317.76125958|119.56723857|24871|1 +638577.9544907|220313.07568631|119.05850582|24872|1 +638582.9641585|220308.4838685|118.79874441|24873|1 +638588.0273357|220303.84221283|118.45858775|24874|1 +638593.091569|220299.19978586|118.13740671|24875|1 +638598.15665562|220294.55704879|117.86018587|24876|1 +638603.22142368|220289.91648529|117.75815468|24877|1 +638608.28966524|220285.26936877|117.34391867|24878|1 +638613.3583451|220280.62292824|117.0299093|24879|1 +638618.42664022|220275.97831766|116.85360343|24880|1 +638623.49675939|220271.33129351|116.60880858|24881|1 +638628.56755386|220266.68398449|116.39550025|24882|1 +638633.63802847|220262.03790408|116.26990766|24883|1 +638638.70254088|220257.40152044|116.53809648|24884|1 +638643.72260406|220252.80376469|116.61699415|24885|1 +638648.84781228|220248.10492084|116.24440219|24886|1 +638653.87920834|220243.49180074|115.86138294|24887|1 +638658.96610688|220238.82508901|115.21861159|24888|1 +638664.05017669|220234.16331878|114.79475754|24889|1 +638669.076826|220229.55890591|114.8180864|24890|1 +638674.19234227|220224.85704867|113.34579193|24891|1 +638699.5045873|220201.66795783|113.17514154|24892|1 +638704.48739325|220197.11956779|114.67835511|24893|1 +638709.55786892|220192.46238577|113.69179941|24894|1 +638714.63252191|220187.80120023|112.69305837|24895|1 +638719.68993661|220183.16156194|112.23111355|24896|1 +638724.73201454|220178.54066262|112.20600805|24897|1 +638729.76876969|220173.92630854|112.33693056|24898|1 +638734.81550961|220169.30052194|112.25592139|24899|1 +638739.8684029|220164.66796059|112.0690487|24900|1 +638744.91559341|220160.04235953|112.0444455|24901|1 +638749.91861467|220155.45658435|111.96549202|24902|1 +638754.91920041|220150.87390333|111.96750121|24903|1 +638759.9901696|220146.2222914|111.55049327|24904|1 +638765.00839996|220141.6204228|111.2721097|24905|1 +638770.05268223|220136.99966918|111.45366177|24906|1 +638775.07967294|220132.38876323|111.08192558|24907|1 +638780.10118457|220127.78441309|110.85350186|24908|1 +638785.13081152|220123.17148839|110.51925182|24909|1 +638790.16575644|220118.55315368|110.13526519|24910|1 +638795.21032417|220113.92473158|109.63309019|24911|1 +638800.20310922|220109.34483523|109.237281|24912|1 +638805.24647125|220104.71870715|108.84733193|24913|1 +638810.28424339|220100.09910184|108.58819374|24914|1 +638815.32722815|220095.47425082|108.28562556|24915|1 +638820.37110434|220090.84884656|108.00808845|24916|1 +638825.32581888|220086.30421965|107.65567205|24917|1 +638830.38466174|220081.66355908|107.23519455|24918|1 +638835.43423455|220077.03325818|106.98904164|24919|1 +638840.48019588|220072.39988265|106.15199338|24920|1 +638845.47950581|220067.81669444|106.01117379|24921|1 +638850.46495051|220063.24853616|106.08775532|24922|1 +638855.50143922|220058.62662361|105.51190094|24923|1 +638860.43373651|220054.1083467|105.70533138|24924|1 +638865.48691303|220049.46967043|104.99286182|24925|1 +638870.49805464|220044.87568753|104.85801396|24926|1 +638875.41441182|220040.37491498|105.32387483|24927|1 +638880.43933593|220035.76703095|105.07086651|24928|1 +638885.42583446|220031.19334948|104.72944481|24929|1 +638890.41698023|220026.62137684|104.94174856|24930|1 +638895.23301389|220022.21957609|106.07429564|24931|1 +638900.2967006|220017.56653377|104.92605646|24932|1 +638905.26198244|220013.01611136|104.9435624|24933|1 +638910.1445881|220008.54565558|105.36146331|24934|1 +638915.07976431|220004.02677366|105.75011943|24935|1 +638920.00992375|219999.51320718|106.206539|24936|1 +638924.87169435|219995.06459578|106.88296418|24937|1 +638929.78616727|219990.56184905|107.01378436|24938|1 +638934.76866492|219985.99494201|106.96745222|24939|1 +638939.66878148|219981.50201635|106.79136959|24940|1 +638936.35682961|219981.12018002|106.53544981|24941|1 +638931.32232414|219985.72230726|106.59111164|24942|1 +638926.33605629|219990.28064158|106.68050172|24943|1 +638921.38959632|219994.79825804|106.37334776|24944|1 +638916.43224051|219999.32162662|105.67311933|24945|1 +638911.49970681|220003.82517056|105.24137738|24946|1 +638906.51095453|220008.38123621|104.90621577|24947|1 +638901.51323931|220012.94677978|104.68872163|24948|1 +638896.48434672|220017.54495961|104.84940052|24949|1 +638891.47513751|220022.12298706|104.81165391|24950|1 +638886.43054214|220026.73199838|104.64189649|24951|1 +638881.40018566|220031.33267878|104.90821565|24952|1 +638876.36409356|220035.93976319|105.28010997|24953|1 +638871.31553033|220040.55384279|105.24103321|24954|1 +638866.26310744|220045.17227007|105.27662181|24955|1 +638861.21046078|220049.79124766|105.34341786|24956|1 +638856.08909379|220054.48320078|106.3421496|24957|1 +638851.14073581|220058.99948737|105.73930147|24958|1 +638846.04616429|220063.65694051|105.81196695|24959|1 +638840.97483102|220068.29722668|106.26475882|24960|1 +638835.91190834|220072.92901936|106.64320159|24961|1 +638830.79482738|220077.61199468|107.14582308|24962|1 +638825.74265437|220082.23573289|107.44369387|24963|1 +638820.63481103|220086.91206147|107.89088607|24964|1 +638815.5437934|220091.57071199|108.12700236|24965|1 +638810.45081101|220096.23191509|108.43191459|24966|1 +638805.35922322|220100.89205475|108.75586756|24967|1 +638800.2633585|220105.55733102|109.19221389|24968|1 +638795.16661836|220110.22408928|109.69118908|24969|1 +638790.02897977|220114.92751001|110.1164477|24970|1 +638784.94022577|220119.58657853|110.57893202|24971|1 +638779.8640121|220124.23230212|110.86737081|24972|1 +638774.73173828|220128.9313853|111.34393802|24973|1 +638769.66269641|220133.57009548|111.58945841|24974|1 +638764.55178125|220138.24628817|111.75543001|24975|1 +638759.45999595|220142.90128421|111.57909623|24976|1 +638754.39353613|220147.53832956|111.88780359|24977|1 +638749.2826029|220152.21578945|112.16714523|24978|1 +638744.18644034|220156.87677904|112.17262398|24979|1 +638739.08852915|220161.54012164|112.24705679|24980|1 +638733.99101239|220166.20338437|112.34680904|24981|1 +638728.89422083|220170.86619379|112.46564854|24982|1 +638723.80403523|220175.52162446|112.46010468|24983|1 +638718.66936298|220180.21715115|112.39481551|24984|1 +638713.61928475|220184.83875137|112.65587917|24985|1 +638708.45409745|220189.57193236|113.48998806|24986|1 +638703.32912716|220194.27171336|114.64040387|24987|1 +638698.27990888|220198.87932861|113.67569803|24988|1 +638672.80135739|220222.17490701|112.98144134|24989|1 +638667.67341073|220226.88584868|114.90903917|24990|1 +638662.55123429|220231.57034761|114.87378544|24991|1 +638657.47111132|220236.21941288|115.12252424|24992|1 +638652.39104627|220240.86910981|115.43400352|24993|1 +638647.25743353|220245.57172677|116.10578712|24994|1 +638642.12972589|220250.2670006|116.59699533|24995|1 +638637.05676677|220254.90907869|116.80337384|24996|1 +638631.94516941|220259.58114187|116.508368|24997|1 +638626.82984454|220264.25918473|116.45118068|24998|1 +638621.7590248|220268.8994763|116.67099096|24999|1 +638616.64350939|220273.57886723|116.72082988|25000|1 +638611.52602375|220278.26270316|117.01479392|25001|1 +638606.45759165|220282.901584|117.3042745|25002|1 +638601.34183083|220287.58480583|117.68654961|25003|1 +638596.22910303|220292.26250401|117.81307237|25004|1 +638591.163824|220296.89886862|118.13469059|25005|1 +638586.05189498|220301.57808382|118.46823369|25006|1 +638580.94627998|220306.25065213|118.72103737|25007|1 +638575.88384923|220310.88464419|119.06225443|25008|1 +638570.77485475|220315.56309648|119.57196388|25009|1 +638565.66733087|220320.23981072|120.04462434|25010|1 +638560.60837426|220324.87017985|120.34293231|25011|1 +638555.5023984|220329.54320949|120.60383784|25012|1 +638550.44418672|220334.17123636|120.74638756|25013|1 +638545.38718309|220338.79938009|121.0016004|25014|1 +638540.28306704|220343.47060414|121.25104614|25015|1 +638535.22922641|220348.09789449|121.69422928|25016|1 +638530.17670102|220352.72419252|122.15633223|25017|1 +638525.07759831|220357.39315524|122.61925373|25018|1 +638520.02649046|220362.0175665|123.02555533|25019|1 +638514.97425957|220366.64133443|123.27579172|25020|1 +638509.8755274|220371.30817308|123.57093708|25021|1 +638504.82659799|220375.93035371|123.95284012|25022|1 +638499.77618675|220380.55268817|124.2224242|25023|1 +638494.72471823|220385.17525628|124.42344489|25024|1 +638489.67131859|220389.79859513|124.53089901|25025|1 +638484.61942561|220394.4213053|124.70726069|25026|1 +638479.56928657|220399.04316024|124.95251133|25027|1 +638474.51883433|220403.66510655|125.17918632|25028|1 +638469.47352101|220408.2843134|125.58718084|25029|1 +638464.43368898|220412.90032909|126.16397469|25030|1 +638459.43140521|220417.47804379|126.37642726|25031|1 +638454.38264178|220422.09875062|126.62859842|25032|1 +638449.33723231|220426.71764065|126.9808753|25033|1 +638444.34510368|220431.29075321|127.48688263|25034|1 +638439.29859375|220435.9114732|127.78941361|25035|1 +638434.30232232|220440.48690889|128.1579872|25036|1 +638429.3081914|220445.06093099|128.57643691|25037|1 +638424.26752386|220449.67780479|129.01655977|25038|1 +638419.26935326|220454.25432552|129.32258821|25039|1 +638414.27832888|220458.82612719|129.79707183|25040|1 +638409.28435815|220463.39982524|130.19658312|25041|1 +638404.27631771|220467.98304995|130.28398261|25042|1 +638399.26635432|220472.56777338|130.34640684|25043|1 +638394.31633639|220477.1005319|130.67962437|25044|1 +638389.30870715|220481.68393486|130.81676976|25045|1 +638384.28575459|220486.27828648|130.66696465|25046|1 +638379.3212239|220490.8216607|130.75014114|25047|1 +638375.12062967|220494.81930989|145.10817718|25048|1 +638369.31952223|220499.9706155|130.51486201|25049|1 +638364.38756342|220504.48191903|130.38736256|25050|1 +638359.35457865|220509.0850197|130.19380189|25051|1 +638354.36882368|220513.64510262|130.02061212|25052|1 +638349.36851113|220518.21623931|129.63540695|25053|1 +638344.37734944|220522.78101507|129.43710238|25054|1 +638339.52723625|220527.23289631|130.74773198|25055|1 +638335.041145|220531.42803878|139.16990451|25056|1 +638334.42374218|220531.89006494|129.57601511|25057|2 +638329.43985755|220536.44237082|128.83644017|25058|1 +638324.47300619|220540.99007688|129.1172887|25059|1 +638319.4989019|220545.53585507|128.60159822|25060|1 +638314.67075686|220549.97098002|130.22127004|25061|1 +638309.51250731|220554.66520215|127.83069489|25062|1 +638304.65970472|220559.11922306|129.10714047|25063|1 +638299.93895011|220563.47135373|132.15019802|25064|1 +638294.80060515|220568.15193479|130.18312345|25065|1 +638289.65731445|220572.823803|126.98494018|25066|1 +638284.68331658|220577.37882953|127.33288242|25067|1 +638279.90741726|220581.76645265|128.97993867|25068|1 +638275.2100012|220586.09880219|132.16821556|25069|1 +638274.65103105|220586.53582854|125.21695153|25070|2 +638271.47166509|220589.67200571|146.41992299|25071|1 +638266.7863911|220593.98494844|148.83813371|25072|1 +638264.63404256|220595.67697401|122.92654722|25073|2 +638261.280469|220598.95024342|142.04626493|25074|1 +638259.65083644|220600.23470933|122.73901411|25075|2 +638254.72884769|220604.73832506|122.73070762|25076|1 +638252.34629275|220603.83297952|122.75492945|25077|1 +638259.51434369|220597.53603439|148.70778792|25078|1 +638264.51515372|220592.94870447|148.9333653|25079|1 +638262.35304534|220594.65115049|122.97926969|25080|2 +638268.23057418|220589.37735718|134.09132993|25081|1 +638267.36390045|220590.05794293|123.51752628|25082|2 +638273.09317952|220584.89617962|132.41159654|25083|1 +638272.41256621|220585.4291528|123.96837408|25084|2 +638277.83397519|220580.51623715|129.7676317|25085|1 +638282.67505519|220576.05087333|127.72566854|25086|1 +638287.65031139|220571.48085391|127.38748385|25087|1 +638292.78896754|220566.78455977|129.23303071|25088|1 +638297.88694043|220562.12059296|130.61873494|25089|1 +638302.62683177|220557.73959701|127.80336628|25090|1 +638307.66181428|220553.11737022|127.70180948|25091|1 +638312.73172185|220548.4760977|128.80767908|25092|1 +638317.74702646|220543.86948287|128.48234945|25093|1 +638322.77338986|220539.26227443|129.04688356|25094|1 +638327.73773593|220534.70261946|128.71456829|25095|1 +638333.31748279|220529.67496895|137.20453217|25096|1 +638332.79760272|220530.06457734|129.13076698|25097|2 +638337.88196471|220525.40870367|129.97714492|25098|1 +638347.92713959|220516.19011896|129.80753632|25099|1 +638352.94927534|220511.58146456|129.74468422|25100|1 +638358.32029328|220506.71844152|135.76015233|25101|1 +638358.01332222|220506.94243798|130.43002981|25102|2 +638363.99386399|220501.63028598|146.62356678|25103|1 +638363.07619272|220502.29572815|130.3006514|25104|2 +638368.11211686|220497.67796796|130.5687658|25105|1 +638373.67026877|220492.68697846|140.6344134|25106|1 +638373.11304223|220493.08563401|130.21961432|25107|2 +638378.46562429|220488.23377064|135.70434167|25108|1 +638378.20224538|220488.42080717|130.65223994|25109|2 +638383.22410875|220483.81403087|130.74616928|25110|1 +638388.29244582|220479.16469571|130.84256359|25111|1 +638393.3468175|220474.52533443|130.67721521|25112|1 +638398.39298911|220469.89173625|130.349895|25113|1 +638403.45059775|220465.25040117|130.27863409|25114|1 +638408.50547102|220460.61109171|130.16395249|25115|1 +638413.54799076|220455.98014738|129.77487779|25116|1 +638418.58831533|220451.35060301|129.32980639|25117|1 +638423.63342186|220446.71787263|128.99729579|25118|1 +638428.67423915|220442.0878615|128.55259646|25119|1 +638433.71658715|220437.45678025|128.13929063|25120|1 +638438.76015168|220432.82483604|127.7511461|25121|1 +638443.85504431|220428.14691107|127.46056791|25122|1 +638448.89723491|220423.51560762|127.01670574|25123|1 +638453.94013126|220418.88372151|126.5792711|25124|1 +638459.03816638|220414.20377254|126.37092991|25125|1 +638464.08598679|220409.56890068|126.0776449|25126|1 +638469.12610768|220404.93799141|125.49719545|25127|1 +638474.21897174|220400.26041243|125.07127641|25128|1 +638479.27023812|220395.6233067|124.86612573|25129|1 +638484.31937774|220390.9871347|124.5674736|25130|1 +638489.4202393|220386.30536312|124.43624414|25131|1 +638494.52103206|220381.6236545|124.30546116|25132|1 +638499.57329111|220376.98594853|124.13259695|25133|1 +638504.67064376|220372.30529826|123.80886722|25134|1 +638509.76825439|220367.62420507|123.4668316|25135|1 +638514.81827871|220362.98630494|123.08858417|25136|1 +638519.91812638|220358.3037557|122.80352193|25137|1 +638525.01593901|220353.62051227|122.28142252|25138|1 +638530.06868689|220348.97989974|121.88525056|25139|1 +638535.16910389|220344.29452301|121.38889847|25140|1 +638540.27196019|220339.60845697|121.03674251|25141|1 +638545.37716937|220334.92251583|120.89752283|25142|1 +638550.43431691|220330.27925826|120.63377096|25143|1 +638555.5881758|220325.54886171|120.50795513|25144|1 +638560.6464043|220320.90387175|120.17613286|25145|1 +638565.75332462|220316.2142545|119.844878|25146|1 +638570.81352126|220311.56643053|119.41987983|25147|1 +638575.92282873|220306.87293482|118.93321089|25148|1 +638580.98531716|220302.22461638|118.65878988|25149|1 +638586.0911646|220297.53616179|118.3478408|25150|1 +638591.15611024|220292.88382168|117.91152237|25151|1 +638596.26919758|220288.18906557|117.63274813|25152|1 +638601.33431844|220283.53991895|117.50948099|25153|1 +638606.40220544|220278.88587785|117.16777093|25154|1 +638611.51827014|220274.18858023|116.90897691|25155|1 +638616.58668911|220269.53578778|116.7303642|25156|1 +638621.65543714|220264.88315322|116.59573029|25157|1 +638626.76959663|220260.19121719|116.67556743|25158|1 +638631.83268952|220255.54839612|116.97261966|25159|1 +638636.85697268|220250.93552237|116.74937703|25160|1 +638641.98431845|220246.22469822|116.19944671|25161|1 +638647.06460464|220241.55769593|115.71651708|25162|1 +638652.14384606|220236.8931285|115.37131885|25163|1 +638657.22442012|220232.22746844|115.03892917|25164|1 +638662.25513036|220227.60906732|114.85410288|25165|1 +638667.34023427|220222.93863854|114.46604207|25166|1 +638672.47090096|220218.20924916|112.48000118|25167|1 +638697.66283105|220195.11470905|114.60631286|25168|1 +638702.75261012|220190.44163279|114.37630783|25169|1 +638707.82295943|220185.77924722|113.41290424|25170|1 +638712.88329626|220181.13195807|112.79278271|25171|1 +638717.92268109|220176.51030691|112.7717514|25172|1 +638722.96323768|220171.88757802|112.7508224|25173|1 +638728.00895787|220167.25910388|112.63646636|25174|1 +638733.00724717|220162.67430154|112.54289049|25175|1 +638738.05005583|220158.04989084|112.55966159|25176|1 +638743.05028074|220153.46349971|112.48471718|25177|1 +638748.0597083|220148.86692298|112.2476335|25178|1 +638753.11310854|220144.23137411|112.13372395|25179|1 +638758.06714154|220139.68789766|112.11613429|25180|1 +638763.11890875|220135.05483953|112.09584712|25181|1 +638768.08539156|220130.4979884|111.89721698|25182|1 +638773.10845456|220125.88800587|111.57904972|25183|1 +638778.1366196|220121.272805|111.21110865|25184|1 +638783.11763367|220116.70107315|110.86887769|25185|1 +638788.15768039|220112.07369449|110.38267384|25186|1 +638793.15123485|220107.48911528|109.91578048|25187|1 +638798.15142047|220102.89778174|109.38655591|25188|1 +638803.19357463|220098.26959023|109.00640161|25189|1 +638808.19131736|220093.68188598|108.60784839|25190|1 +638813.19301858|220089.09034827|108.1905614|25191|1 +638818.13516456|220084.55563713|107.98460147|25192|1 +638823.15111344|220079.94961588|107.43648499|25193|1 +638828.14578354|220075.36690079|107.2428127|25194|1 +638833.15023509|220070.77407741|106.94336992|25195|1 +638838.11878445|220066.21266186|106.5065678|25196|1 +638843.1378187|220061.60512261|106.08269515|25197|1 +638848.09112328|220057.06073204|105.93142036|25198|1 +638853.00435268|220052.55906498|106.33895909|25199|1 +638858.07855928|220047.89432913|105.29993206|25200|1 +638863.02475216|220043.35842868|105.33432073|25201|1 +638866.97163163|220039.87306012|117.90920623|25202|1 +638877.87369926|220029.73499652|104.86315785|25203|1 +638882.84832389|220025.17046456|104.66057446|25204|1 +638887.77767649|220020.64731351|104.44985201|25205|1 +638892.73624599|220016.10014028|104.49490982|25206|1 +638897.64677865|220011.59714743|104.55630154|25207|1 +638902.55661374|220007.09511408|104.6482124|25208|1 +638907.46005799|220002.59992317|104.83261081|25209|1 +638912.34995879|219998.11892454|105.18379008|25210|1 +638917.16333829|219993.71139754|105.8478439|25211|1 +638922.09600175|219989.1921514|106.28699006|25212|1 +638926.91634395|219984.77212107|106.38328205|25213|1 +638931.84368412|219980.2532307|106.40387619|25214|1 +638930.02282216|219978.95865465|106.06426833|25215|1 +638925.04413613|219983.51674279|106.09303872|25216|1 +638920.12932526|219988.01486246|105.98797516|25217|1 +638915.16622079|219992.55186724|105.37573224|25218|1 +638910.24617082|219997.05016033|104.83375493|25219|1 +638905.3074733|220001.56785139|104.50825787|25220|1 +638900.31236438|220006.13835187|104.28565706|25221|1 +638895.30160433|220010.72530731|104.26139802|25222|1 +638890.33833236|220015.2691557|104.27620645|25223|1 +638885.34515882|220019.83835618|104.09671007|25224|1 +638880.26224315|220024.49527802|104.43046711|25225|1 +638875.26402688|220029.0765801|104.95378505|25226|1 +638870.18999482|220033.72503747|105.25697646|25227|1 +638865.19249468|220038.30000639|105.24509809|25228|1 +638860.170935|220042.89398871|104.94631573|25229|1 +638855.14612807|220047.49828312|105.33803214|25230|1 +638850.08781663|220052.13844722|106.21436179|25231|1 +638845.00380414|220056.79259298|106.18836333|25232|1 +638839.99042846|220061.38610295|106.54935597|25233|1 +638834.90317808|220066.04435181|106.62952798|25234|1 +638829.84686129|220070.67673589|106.99027878|25235|1 +638824.85031441|220075.25219969|107.22724153|25236|1 +638819.75245302|220079.9216626|107.56946319|25237|1 +638814.7007155|220084.54965434|107.98678738|25238|1 +638809.6047768|220089.21798111|108.38569407|25239|1 +638804.50773354|220093.88798385|108.8472017|25240|1 +638799.4607581|220098.51230153|109.32748963|25241|1 +638794.37790938|220103.16786404|109.65272624|25242|1 +638789.27990752|220107.84049879|110.27711728|25243|1 +638784.19240711|220112.50220032|110.77738542|25244|1 +638779.11698073|220117.15112436|111.1160724|25245|1 +638774.03715433|220121.80541616|111.57962643|25246|1 +638768.96612033|220126.45046254|111.9313545|25247|1 +638763.85979766|220131.1257661|112.08512217|25248|1 +638758.79301684|220135.76700575|112.44368705|25249|1 +638753.7046114|220140.4229267|112.3177596|25250|1 +638748.65726235|220145.04299469|112.35895716|25251|1 +638743.56120288|220149.70820057|112.4455567|25252|1 +638738.45960524|220154.38015603|112.68841678|25253|1 +638733.37015061|220159.03853454|112.70096488|25254|1 +638728.27771417|220163.70072262|112.8136373|25255|1 +638723.19171553|220168.35576039|112.80815855|25256|1 +638718.10588882|220173.01091637|112.82795273|25257|1 +638713.01595743|220177.6713049|112.98531088|25258|1 +638707.92897093|220182.32860212|113.10559215|25259|1 +638702.81938571|220187.01373027|113.89386189|25260|1 +638697.66499106|220191.73997715|114.68531284|25261|1 +638692.62915688|220196.33595459|113.4462139|25262|1 +638667.14458179|220219.66563909|113.80825765|25263|1 +638662.04064427|220224.35052807|115.05553285|25264|1 +638656.97201324|220228.98905272|114.98556488|25265|1 +638651.8476704|220233.68268507|115.29437456|25266|1 +638646.72267294|220238.37805998|115.70986631|25267|1 +638641.65201358|220243.02106739|115.88446065|25268|1 +638636.52575204|220247.72027929|116.55071899|25269|1 +638631.40632615|220252.41045152|116.95514163|25270|1 +638626.34046806|220257.04868688|117.0932544|25271|1 +638621.23380912|220261.71973426|116.79878807|25272|1 +638616.12321001|220266.39746308|116.7921559|25273|1 +638611.05940391|220271.03365313|116.91238136|25274|1 +638605.9478613|220275.7143971|117.10645362|25275|1 +638600.83687762|220280.3951063|117.34470932|25276|1 +638595.774922|220285.03049086|117.54702296|25277|1 +638590.66574122|220289.70983623|117.81104458|25278|1 +638585.55700154|220294.39018611|118.20674215|25279|1 +638580.45484888|220299.06430648|118.58421754|25280|1 +638575.34857351|220303.74082954|118.83079833|25281|1 +638570.24311877|220308.41839927|119.24653193|25282|1 +638565.18673462|220313.05160434|119.71931332|25283|1 +638560.08375839|220317.72625954|120.07329242|25284|1 +638554.98159949|220322.39951661|120.36518216|25285|1 +638549.92708206|220327.02724853|120.48251477|25286|1 +638544.82630675|220331.69919292|120.76886065|25287|1 +638539.72515628|220336.36996251|120.91187547|25288|1 +638534.67378095|220340.99710167|121.24243269|25289|1 +638529.57673244|220345.66732713|121.68611813|25290|1 +638524.47987567|220350.33658547|122.05520331|25291|1 +638519.48047276|220354.91750908|122.51700861|25292|1 +638514.38553087|220359.58496615|122.88039181|25293|1 +638509.34093236|220364.20740939|123.34943388|25294|1 +638504.29548848|220368.82950519|123.7123985|25295|1 +638499.24955674|220373.45139161|124.01301331|25296|1 +638494.20006669|220378.07441467|124.11381666|25297|1 +638489.1521042|220382.69684946|124.28976906|25298|1 +638484.10278615|220387.31987029|124.40339026|25299|1 +638479.05851109|220391.94053983|124.72960356|25300|1 +638474.01080408|220396.56276715|124.90602105|25301|1 +638468.96916031|220401.18183643|125.30748572|25302|1 +638463.93375323|220405.79733143|125.90898509|25303|1 +638458.93921041|220410.37255547|126.24610008|25304|1 +638453.8950375|220414.99250901|126.51043796|25305|1 +638448.90237562|220419.56685888|126.88496468|25306|1 +638443.86843976|220424.18154203|127.43049527|25307|1 +638438.82406683|220428.80241308|127.65767255|25308|1 +638433.83423561|220433.37532706|128.07584321|25309|1 +638428.84168682|220437.94987078|128.41274425|25310|1 +638423.80632977|220442.56496539|128.87113579|25311|1 +638418.86346538|220447.09441363|129.24857398|25312|1 +638413.82562529|220451.71100321|129.63209552|25313|1 +638408.83628673|220456.28329948|130.03115103|25314|1 +638403.88850036|220460.81601416|130.28937764|25315|1 +638398.88025417|220465.40127191|130.27629935|25316|1 +638393.93004741|220469.93588445|130.50286271|25317|1 +638388.93826001|220474.51005402|130.86396698|25318|1 +638383.96704691|220479.05961401|130.68459152|25319|1 +638378.96115024|220483.64401063|130.7897481|25320|1 +638374.61343983|220487.74848148|142.47868591|25321|1 +638373.98021663|220488.20109919|130.47911528|25322|2 +638369.02530125|220492.73985478|130.68594028|25323|1 +638364.87818062|220496.69344824|145.4706116|25324|1 +638364.51683913|220496.95526143|138.95472652|25325|2 +638364.03758525|220497.30250909|130.31262278|25326|3 +638360.09971063|220501.10014681|148.46193267|25327|1 +638359.56606483|220501.48922879|139.06652457|25328|2 +638359.07030776|220501.850686|130.33821197|25329|3 +638354.14756946|220506.35765604|130.32780328|25330|1 +638349.15522015|220510.924776|129.97269867|25331|1 +638344.21800084|220515.44303405|129.77467315|25332|1 +638339.7845671|220519.58619426|137.71427882|25333|1 +638339.25761425|220519.97888589|129.23358881|25334|2 +638334.30697168|220524.51595875|129.64437386|25335|1 +638329.33854248|220529.0585969|129.04674403|25336|1 +638324.48120968|220533.51777938|130.17421235|25337|1 +638319.54812371|220538.02663983|129.44595767|25338|1 +638314.62663411|220542.54204606|130.32867765|25339|1 +638309.67219309|220547.0679738|129.36309745|25340|1 +638304.62072753|220551.67614077|127.76813115|25341|1 +638299.7048009|220556.18076422|128.11513392|25342|1 +638294.94226134|220560.56003112|129.89311267|25343|1 +638289.96807201|220565.10978046|129.46121258|25344|1 +638284.96551082|220569.67533355|128.07116442|25345|1 +638280.00228108|220574.21093256|127.25326852|25346|1 +638275.39325141|220578.46988551|130.94345066|25347|1 +638274.87561794|220578.87495797|124.4266261|25348|2 +638270.9477469|220582.59946095|136.55914702|25349|1 +638269.94410893|220583.38706287|124.13092263|25350|2 +638266.82585915|220586.47269253|145.95790376|25351|1 +638264.96103009|220587.94008356|123.23810092|25352|2 +638262.14670819|220590.78263063|148.39812248|25353|1 +638260.03700311|220592.44706135|123.10338329|25354|2 +638257.19513954|220595.30745905|147.56847844|25355|1 +638256.61652228|220595.76511016|140.73956998|25356|2 +638255.07441541|220596.98482298|122.53950961|25357|3 +638252.49100916|220599.63067673|149.10478774|25358|1 +638257.19853664|220592.38927278|148.63624796|25359|1 +638255.28738303|220593.90261468|125.98618054|25360|2 +638262.24603468|220587.77111275|150.03267714|25361|1 +638261.11477033|220588.66461917|136.40895124|25362|2 +638266.81207647|220583.53293665|145.60462229|25363|1 +638265.00462477|220584.95675134|123.48056102|25364|2 +638270.42730492|220580.03406954|128.62114125|25365|1 +638270.11009817|220580.28325896|124.67301155|25366|2 +638275.31819074|220575.53649201|127.83748519|25367|1 +638280.34047144|220570.92969855|128.12300322|25368|1 +638285.25757612|220566.41180437|127.69323324|25369|1 +638290.39935137|220561.712829|129.62751905|25370|1 +638295.4600147|220557.07759193|130.55432014|25371|1 +638300.39206937|220552.54912222|130.42295115|25372|1 +638305.30311796|220548.02267384|128.66124121|25373|1 +638311.11586917|220542.82027854|141.19295717|25374|1 +638315.8681543|220538.41687096|137.29663836|25375|1 +638315.30702341|220538.84458973|129.07073331|25376|2 +638320.58440233|220534.04695683|133.44199152|25377|1 +638325.24822452|220529.71523731|128.65173479|25378|1 +638330.31186468|220525.07204976|129.16882985|25379|1 +638335.83575558|220520.09191533|137.82233756|25380|1 +638335.30506791|220520.48936723|129.37345963|25381|2 +638340.46176493|220515.78517342|132.27008861|25382|1 +638345.33013203|220511.28794664|129.72788521|25383|1 +638350.38855674|220506.64958632|130.32669637|25384|1 +638356.29443741|220501.39054839|145.74429776|25385|1 +638355.47944389|220501.987974|131.54294084|25386|2 +638361.09933065|220496.95079005|143.13270311|25387|1 +638360.38126094|220497.47399338|130.31995258|25388|2 +638365.41448536|220492.85524418|130.58873671|25389|1 +638370.9478031|220487.86785542|139.37870149|25390|1 +638370.47598761|220488.20708066|130.52916814|25391|2 +638375.92921877|220483.29891011|139.86502626|25392|1 +638375.45141648|220483.6399909|130.67142021|25393|2 +638380.51721299|220478.98926502|130.74321132|25394|1 +638385.53474997|220474.3829744|130.8316433|25395|1 +638390.54497172|220469.78206617|130.79534777|25396|1 +638395.58724348|220465.14842209|130.44348017|25397|1 +638400.64154848|220460.50657312|130.36016416|25398|1 +638405.64370332|220455.91166715|130.19309496|25399|1 +638410.68415131|220451.27941647|129.81678229|25400|1 +638415.72570993|220446.64641023|129.46563093|25401|1 +638420.76657725|220442.01383618|129.09594113|25402|1 +638425.8047112|220437.38297029|128.65152085|25403|1 +638430.84529622|220432.75044918|128.26345074|25404|1 +638435.88769275|220428.1167244|127.91928501|25405|1 +638440.93047336|220423.48270934|127.58154681|25406|1 +638445.97262021|220418.84900758|127.21901008|25407|1 +638451.01131889|220414.21721044|126.73798731|25408|1 +638456.10334375|220409.53825201|126.42359657|25409|1 +638461.10129111|220404.94596113|126.14498046|25410|1 +638466.18537403|220400.27105018|125.52511008|25411|1 +638471.22574151|220395.63737693|125.01364261|25412|1 +638476.27313804|220390.99988991|124.75225339|25413|1 +638481.32264446|220386.36132522|124.57227331|25414|1 +638486.41789343|220381.67985944|124.3035636|25415|1 +638491.46980161|220377.04020766|124.23031211|25416|1 +638496.51936223|220372.40151675|124.04478818|25417|1 +638501.61548637|220367.71937022|123.78964045|25418|1 +638506.66311565|220363.08092538|123.46089707|25419|1 +638511.75636632|220358.39877206|122.95652685|25420|1 +638516.80376421|220353.7591427|122.49703769|25421|1 +638521.85308034|220349.11821854|122.08149013|25422|1 +638526.95129376|220344.43269167|121.69063879|25423|1 +638532.05061408|220339.74634621|121.31897701|25424|1 +638537.10351985|220335.1030449|120.99174982|25425|1 +638542.20586603|220330.41583521|120.8020959|25426|1 +638547.30896195|220325.72846807|120.66288552|25427|1 +638552.36433431|220321.0838167|120.4240252|25428|1 +638557.46807613|220316.39479669|120.18559276|25429|1 +638562.5724526|220311.70452972|119.88512678|25430|1 +638567.6300527|220307.05571319|119.44717124|25431|1 +638572.73679178|220302.36103369|118.93503404|25432|1 +638577.84451562|220297.66769502|118.6358517|25433|1 +638582.90567445|220293.01672548|118.30507123|25434|1 +638588.00997506|220288.32586206|117.9441158|25435|1 +638593.12083863|220283.6292429|117.60874025|25436|1 +638598.18334037|220278.97934761|117.49760262|25437|1 +638603.29523711|220274.28302884|117.28180141|25438|1 +638608.40775792|220269.58647008|117.09771925|25439|1 +638613.47160062|220264.93612907|117.06253063|25440|1 +638618.58156655|220260.24514523|117.18544431|25441|1 +638623.64412955|220255.59748713|117.29454484|25442|1 +638628.76082286|220250.89623691|117.03097901|25443|1 +638633.83384051|220246.23337697|116.60972016|25444|1 +638638.95789916|220241.52286086|116.10972177|25445|1 +638644.03078922|220236.86202414|115.87034055|25446|1 +638649.10731268|220232.19673331|115.52507722|25447|1 +638654.18458519|220227.53114859|115.2175977|25448|1 +638659.25862867|220222.87056825|115.10402301|25449|1 +638664.34594676|220218.19286118|114.52242944|25450|1 +638669.46202992|220213.47860569|112.97972982|25451|1 +638674.55238004|220208.79923574|112.50511598|25452|1 +638689.7629107|220194.84022901|113.31803543|25453|1 +638694.79524758|220190.23370984|114.70453961|25454|1 +638699.84642405|220185.58929886|114.14058221|25455|1 +638704.95301429|220180.89263703|113.44329315|25456|1 +638709.99679806|220176.25733299|113.21686|25457|1 +638715.03703381|220171.62561122|113.12788851|25458|1 +638720.12565765|220166.94974496|113.0618459|25459|1 +638725.16729604|220162.31705789|113.00446324|25460|1 +638730.20945446|220157.68409167|112.96593528|25461|1 +638735.29961314|220153.00740167|112.95694046|25462|1 +638740.30734701|220148.40351891|112.68360776|25463|1 +638745.36191356|220143.75737911|112.47727576|25464|1 +638750.39595491|220139.13487594|112.72615409|25465|1 +638755.43982635|220134.50142666|112.79441053|25466|1 +638760.45748329|220129.88782658|112.46524856|25467|1 +638765.51993338|220125.23424067|112.24097343|25468|1 +638770.54003156|220120.61878574|111.94939995|25469|1 +638775.61369969|220115.95357998|111.60099261|25470|1 +638780.58845856|220111.38004074|111.34151956|25471|1 +638785.62678645|220106.74580652|110.85714815|25472|1 +638790.67658397|220102.09953262|110.22975264|25473|1 +638795.72393953|220097.45647656|109.69593299|25474|1 +638800.72611569|220092.85486576|109.16255053|25475|1 +638805.73455521|220088.24697164|108.57937565|25476|1 +638810.78311681|220083.60411914|108.17040445|25477|1 +638815.78663737|220079.00250604|107.75529408|25478|1 +638820.78920558|220074.40234694|107.39614319|25479|1 +638825.79062897|220069.80382799|107.09292388|25480|1 +638830.73710766|220065.25707834|106.9197434|25481|1 +638835.74811225|220060.64909859|106.55418359|25482|1 +638840.68623769|220056.11189574|106.56078785|25483|1 +638845.69458317|220051.50745847|106.30072879|25484|1 +638850.65624753|220046.94595655|106.05213881|25485|1 +638855.67517329|220042.33107291|105.72367448|25486|1 +638860.64662646|220037.75998486|105.41892038|25487|1 +638870.52527283|220028.6861874|105.70269898|25488|1 +638875.5596093|220024.05029476|104.72710076|25489|1 +638880.52611095|220019.48575226|104.61405627|25490|1 +638885.47680851|220014.93193803|104.14546068|25491|1 +638889.93494803|220010.89637749|109.95442006|25492|1 +638890.46914992|220010.34118204|103.79635571|25493|2 +638895.3615374|220005.84864734|104.06516775|25494|1 +638900.32555809|220001.28785115|104.09384513|25495|1 +638905.17905084|219996.83022781|104.29130324|25496|1 +638910.12275585|219992.29087356|104.58573236|25497|1 +638914.92880965|219987.88251212|105.32706534|25498|1 +638919.81134596|219983.40091931|105.77897355|25499|1 +638924.73313566|219978.87911734|105.83404006|25500|1 +638919.01555373|219980.50963292|105.63062881|25501|1 +638914.09468389|219985.02093899|105.11987757|25502|1 +638909.18572015|219989.52007188|104.49099377|25503|1 +638904.24876005|219994.04825542|104.17768204|25504|1 +638899.29666598|219998.59230475|104.04998725|25505|1 +638894.35255071|220003.12831152|103.85382209|25506|1 +638888.7995174|220008.29776377|110.68966967|25507|1 +638889.33210081|220007.7439166|104.55654339|25508|2 +638884.37566493|220012.2933427|104.55841305|25509|1 +638879.36724786|220016.89118364|104.62660437|25510|1 +638874.37262902|220021.48112122|105.14314132|25511|1 +638869.3528165|220026.09160198|105.41611125|25512|1 +638864.36023622|220030.67387101|105.38494099|25513|1 +638859.38135763|220035.24851865|105.8206083|25514|1 +638854.31516361|220039.90242542|106.17320143|25515|1 +638849.29796309|220044.5117147|106.55811824|25516|1 +638844.30004456|220049.10100938|106.72561533|25517|1 +638839.30955292|220053.68276812|106.82468855|25518|1 +638834.33739131|220058.24533897|106.69992382|25519|1 +638829.2866613|220062.88302941|107.02217457|25520|1 +638824.30590531|220067.45267017|107.07147398|25521|1 +638819.26187319|220072.08301712|107.36912153|25522|1 +638814.21464384|220076.71722561|107.75400113|25523|1 +638809.16616226|220081.35324598|108.20126775|25524|1 +638804.11225918|220085.99563167|108.77938245|25525|1 +638799.06396036|220090.6324842|109.32037377|25526|1 +638794.01764714|220095.26771719|109.88021048|25527|1 +638788.96925501|220099.90578408|110.52737228|25528|1 +638783.87747992|220104.58341703|111.15041456|25529|1 +638778.80111728|220109.2446697|111.56213909|25530|1 +638773.7860427|220113.84769541|111.78648864|25531|1 +638768.71473549|220118.50432193|112.19867825|25532|1 +638763.65797517|220123.1452322|112.3868904|25533|1 +638758.59801867|220127.7901364|112.67501292|25534|1 +638753.54121575|220132.43195485|112.94468072|25535|1 +638748.49297072|220137.06454119|113.08366787|25536|1 +638743.42666839|220141.70746002|112.63220615|25537|1 +638738.33357302|220146.38110742|112.7607846|25538|1 +638733.27729188|220151.02398869|113.17476016|25539|1 +638728.18977042|220155.69207424|113.26038301|25540|1 +638723.10979493|220160.35172488|113.20291664|25541|1 +638718.07405817|220164.97201289|113.26211315|25542|1 +638712.98543366|220169.64251739|113.47964449|25543|1 +638707.90569658|220174.30289408|113.51038686|25544|1 +638702.82185579|220178.96856216|113.6849533|25545|1 +638697.72693514|220183.64816427|114.21554523|25546|1 +638692.58715624|220188.36877544|114.73058459|25547|1 +638687.59092174|220192.94302416|113.86113824|25548|1 +638682.49850784|220197.60521701|112.96013097|25549|1 +638677.41731252|220202.26948295|113.2299383|25550|1 +638672.33470669|220206.93617262|113.60620446|25551|1 +638667.19923629|220211.65405883|114.23591612|25552|1 +638662.10956209|220216.33179982|115.04382191|25553|1 +638656.98862071|220221.03241509|115.29994632|25554|1 +638651.87146577|220225.72850989|115.45668126|25555|1 +638646.79886414|220230.3858597|115.81615771|25556|1 +638641.6817259|220235.08327361|116.09870847|25557|1 +638636.5659087|220239.77955016|116.38801232|25558|1 +638631.49869282|220244.43158245|116.71106301|25559|1 +638626.38480912|220249.12669573|117.05746117|25560|1 +638621.27224963|220253.82073439|117.4168539|25561|1 +638616.16509891|220258.5067847|117.48933334|25562|1 +638611.1097782|220263.14232815|117.28265717|25563|1 +638605.95619874|220267.87066242|117.32325013|25564|1 +638600.85140334|220272.55365671|117.30960442|25565|1 +638595.79195209|220277.19861323|117.63498986|25566|1 +638590.63918635|220281.92781385|117.82725758|25567|1 +638585.53504675|220286.61227531|118.00865152|25568|1 +638580.48419181|220291.2495639|118.35386835|25569|1 +638575.33317769|220295.97909557|118.7290369|25570|1 +638570.23122082|220300.66263431|119.01171788|25571|1 +638565.1302706|220305.3481533|119.56982447|25572|1 +638560.03056129|220310.02964448|119.85337052|25573|1 +638554.93188389|220314.71072248|120.1873508|25574|1 +638549.83335576|220319.38963144|120.32800296|25575|1 +638544.73592371|220324.068794|120.58782948|25576|1 +638539.63885156|220328.74710773|120.79806823|25577|1 +638534.54274319|220333.42507188|121.05871331|25578|1 +638529.44789528|220338.10254441|121.3822756|25579|1 +638524.35306005|220342.77929051|121.63749774|25580|1 +638519.30832134|220347.41163937|122.04247848|25581|1 +638514.21547201|220352.08710408|122.34839531|25582|1 +638509.12937885|220356.7603227|123.02963881|25583|1 +638504.03952082|220361.4335837|123.38632473|25584|1 +638498.95126515|220366.10590812|123.79338907|25585|1 +638493.9077907|220370.73515386|124.01213894|25586|1 +638488.86300779|220375.36481554|124.15606533|25587|1 +638483.76881997|220380.03898852|124.22043362|25588|1 +638478.68056268|220384.71048857|124.5475957|25589|1 +638473.68174464|220389.29724352|124.62182388|25590|1 +638468.59710609|220393.96668462|125.06824403|25591|1 +638463.5173144|220398.63326087|125.66496229|25592|1 +638458.53232533|220403.21226624|126.20791628|25593|1 +638453.44358101|220407.883261|126.44284195|25594|1 +638448.40591408|220412.50483837|126.81948018|25595|1 +638443.42017398|220417.07810894|127.3312081|25596|1 +638438.38025612|220421.69890084|127.63304145|25597|1 +638433.34311797|220426.3179313|128.00995873|25598|1 +638428.30323037|220430.93864278|128.30583894|25599|1 +638423.26912744|220435.55562839|128.75171029|25600|1 +638418.28145962|220440.12957623|129.15723053|25601|1 +638408.25502359|220449.32336214|129.87135581|25602|1 +638403.26482576|220453.89892275|130.20804291|25603|1 +638398.26666536|220458.4799562|130.36991242|25604|1 +638393.26504149|220463.06351581|130.46934841|25605|1 +638388.32605331|220467.59303446|130.89569534|25606|1 +638383.31255695|220472.18519403|130.77656749|25607|1 +638378.35338781|220476.72916741|130.81569076|25608|1 +638374.0185637|220480.83630742|143.7882458|25609|1 +638368.37881579|220485.86765996|130.79142242|25610|1 +638363.40307044|220490.42428854|130.58679264|25611|1 +638359.2729323|220494.36399712|145.49539153|25612|1 +638358.42206958|220494.98509168|130.31967353|25613|2 +638354.29341838|220498.92034233|144.93321076|25614|1 +638353.97918205|220499.15109871|139.45967345|25615|2 +638353.45342574|220499.53718274|130.30177691|25616|3 +638348.48272317|220504.09103452|130.27124848|25617|1 +638343.55028285|220508.60833713|130.104849|25618|1 +638338.58813075|220513.1481225|129.48319268|25619|1 +638333.60319782|220517.71353141|129.30871926|25620|1 +638328.66990972|220522.2324686|129.22244529|25621|1 +638323.70276884|220526.7772967|128.64373527|25622|1 +638319.09267653|220531.05126445|133.45830683|25623|1 +638310.02871695|220539.46712819|144.15972155|25624|1 +638304.06462344|220544.76969559|128.65624616|25625|1 +638299.15661375|220549.27068333|129.06571965|25626|1 +638294.37276385|220553.66874464|130.52048958|25627|1 +638289.39910733|220558.21391793|129.40449965|25628|1 +638284.28274507|220562.87091795|126.47178908|25629|1 +638279.45096563|220567.30679944|127.33997968|25630|1 +638274.42939706|220571.89135576|125.78821083|25631|1 +638270.23317501|220575.82796663|134.62641461|25632|1 +638269.64622616|220576.28930839|127.28941522|25633|2 +638265.98195829|220579.80513019|142.52220892|25634|1 +638265.47286442|220580.20636644|136.26202968|25635|2 +638264.46377424|220581.0016688|123.85357156|25636|3 +638261.82868034|220583.69637083|150.79319968|25637|1 +638256.94506812|220588.16968946|150.69646121|25638|1 +638255.84171473|220585.17778541|150.63944132|25639|1 +638253.53348097|220587.00132766|123.12167058|25640|2 +638260.63832184|220580.75199402|149.0826216|25641|1 +638258.52967656|220582.41347489|123.53620425|25642|2 +638264.88397552|220576.76516828|141.30230885|25643|1 +638263.48489199|220577.86458529|124.07549334|25644|2 +638269.34068398|220572.60396105|135.32777786|25645|1 +638268.56438873|220573.21226237|125.60909582|25646|2 +638273.92861669|220568.33827687|130.84341005|25647|1 +638278.6394835|220563.96871472|127.19685325|25648|1 +638283.61132305|220559.40218816|127.51814591|25649|1 +638288.61721139|220554.80967092|128.33087002|25650|1 +638293.78378997|220550.08672712|130.73707214|25651|1 +638298.68433308|220545.56944864|129.55255603|25652|1 +638303.61579053|220541.02825696|128.78469439|25653|1 +638308.5334875|220536.49748075|127.81107745|25654|1 +638313.80671584|220531.69647678|132.06809124|25655|1 +638318.54326325|220527.30349439|128.4412542|25656|1 +638323.55027557|220522.70547853|128.84357463|25657|1 +638328.55751196|220518.10771542|129.2895297|25658|1 +638333.5855884|220513.48743691|129.34422414|25659|1 +638338.60756073|220508.88061828|130.10815113|25660|1 +638343.63047473|220504.26510459|130.14440946|25661|1 +638349.47883201|220499.04409043|144.36223982|25662|1 +638348.65302314|220499.6501225|130.19947598|25663|2 +638354.4566418|220494.46563959|143.99531265|25664|1 +638353.68119956|220495.03130776|130.37933512|25665|2 +638359.72151749|220489.67914936|148.79733612|25666|1 +638358.69269493|220490.42492064|130.2912194|25667|2 +638363.67832211|220485.8468208|130.62525549|25668|1 +638369.28861827|220480.81278936|141.90671968|25669|1 +638373.724471|220476.61885708|131.01674865|25670|1 +638378.72481118|220472.02141576|130.81028643|25671|1 +638383.78519219|220467.37168078|130.8682923|25672|1 +638388.79236731|220462.7698324|130.83668487|25673|1 +638393.78303786|220458.17951198|130.46812058|25674|1 +638398.83599981|220453.53550116|130.4268393|25675|1 +638403.82729399|220448.94486482|130.08330609|25676|1 +638408.81882464|220444.35407191|129.74596787|25677|1 +638413.85914599|220439.71877255|129.43671171|25678|1 +638418.8496746|220435.12861725|129.07441682|25679|1 +638423.88526345|220430.49631251|128.64053545|25680|1 +638428.92326522|220425.8623917|128.26302286|25681|1 +638433.96414349|220421.22663045|127.96061281|25682|1 +638439.00065219|220416.59346621|127.52725234|25683|1 +638444.03964659|220411.95869096|127.15650214|25684|1 +638449.07721653|220407.32461094|126.72972734|25685|1 +638454.11752499|220402.68881961|126.37806438|25686|1 +638459.15586886|220398.05395348|125.94538295|25687|1 +638464.19126226|220393.4203858|125.38167669|25688|1 +638469.2761988|220388.74170406|124.85381948|25689|1 +638474.27186913|220384.14723994|124.53585686|25690|1 +638479.36828234|220379.46264363|124.43968579|25691|1 +638484.4108483|220374.82448485|124.06420098|25692|1 +638489.46133758|220370.18294039|124.05130872|25693|1 +638494.55544948|220365.49924211|123.84373028|25694|1 +638499.64684564|220360.81622432|123.4678734|25695|1 +638504.64472525|220356.21976636|123.15678479|25696|1 +638509.73483998|220351.53597381|122.60029671|25697|1 +638514.82744726|220346.85069607|122.11921814|25698|1 +638519.87560489|220342.20791691|121.79536749|25699|1 +638524.97205781|220337.52071146|121.4650149|25700|1 +638530.02197282|220332.87664727|121.17292052|25701|1 +638535.07272864|220328.23200828|120.89977386|25702|1 +638540.17218716|220323.54324598|120.68298665|25703|1 +638545.27233743|220318.85411292|120.49163981|25704|1 +638550.3251842|220314.20794698|120.25685367|25705|1 +638555.37872117|220309.5612104|120.02852297|25706|1 +638560.48051947|220304.86901693|119.69453338|25707|1 +638565.53564668|220300.22014052|119.40426215|25708|1 +638570.63971441|220295.52431931|118.92735077|25709|1 +638575.74499963|220290.82831317|118.53839699|25710|1 +638580.80358675|220286.17585125|118.21154187|25711|1 +638585.90466628|220281.48497647|117.9420229|25712|1 +638590.96452689|220276.83214358|117.6907261|25713|1 +638596.0246867|220272.17990391|117.52090357|25714|1 +638601.13124631|220267.48734654|117.56510561|25715|1 +638606.23991119|220262.79111163|117.44731722|25716|1 +638611.29621496|220258.14749574|117.75328055|25717|1 +638616.35819727|220253.49403897|117.628367|25718|1 +638621.4710277|220248.79229724|117.3555924|25719|1 +638626.53741959|220244.13317729|117.08138533|25720|1 +638631.65078612|220239.43214414|116.92196219|25721|1 +638636.76824017|220234.72568425|116.60689242|25722|1 +638641.78991015|220230.10806863|116.37516656|25723|1 +638646.91040083|220225.39874984|116.05467386|25724|1 +638652.03010796|220220.69121936|115.83465894|25725|1 +638657.10529388|220216.02374163|115.5375788|25726|1 +638662.17776375|220211.36049615|115.40314953|25727|1 +638667.258851|220206.68645566|115.00055935|25728|1 +638672.33731877|220202.01648934|114.75439714|25729|1 +638677.46240593|220197.30468644|114.59911328|25730|1 +638682.54445921|220192.63122287|114.33502655|25731|1 +638687.62442946|220187.96087665|114.18362153|25732|1 +638692.69476273|220183.30278695|114.35083026|25733|1 +638697.78540166|220178.6201631|113.96920628|25734|1 +638702.81893385|220173.99321492|113.88995515|25735|1 +638707.94854551|220169.27831684|113.83727919|25736|1 +638712.98609471|220164.64670363|113.7210907|25737|1 +638718.07387928|220159.9685808|113.58420576|25738|1 +638723.10769784|220155.34190962|113.62433362|25739|1 +638728.15141601|220150.70400516|113.4650221|25740|1 +638733.25478896|220146.00895945|113.0859189|25741|1 +638738.30333751|220141.36634461|112.90217161|25742|1 +638743.32090141|220136.75946477|113.39804931|25743|1 +638748.41560239|220132.07545188|113.30670586|25744|1 +638753.42431478|220127.4686253|113.05008845|25745|1 +638758.48092782|220122.81826221|112.83594296|25746|1 +638763.53988812|220118.16567164|112.61580712|25747|1 +638768.60502366|220113.50661017|112.32119195|25748|1 +638773.66789044|220108.85049798|112.1078278|25749|1 +638778.69010458|220104.23072122|111.802004|25750|1 +638783.77647844|220099.54954557|111.26536591|25751|1 +638788.82411106|220094.902819|110.62372008|25752|1 +638793.87200377|220090.25638474|110.03209919|25753|1 +638798.92824212|220085.6014175|109.3597947|25754|1 +638804.03380284|220080.90155209|108.72501357|25755|1 +638809.04096974|220076.29291041|108.17149276|25756|1 +638814.10337684|220071.63293932|107.56217059|25757|1 +638819.14959209|220066.99090037|107.23920361|25758|1 +638824.13889248|220062.40284808|107.07766896|25759|1 +638829.17168|220057.7759301|107.01603539|25760|1 +638834.15278685|220053.19725592|107.02845327|25761|1 +638839.16525002|220048.59252458|107.29628862|25762|1 +638844.08930528|220044.06795002|107.46917143|25763|1 +638849.08031767|220039.47949766|107.41905346|25764|1 +638854.12573829|220034.83389163|106.69818439|25765|1 +638859.1682088|220030.19192358|106.06445437|25766|1 +638864.10898211|220025.65090469|106.13720356|25767|1 +638869.12749699|220021.03491617|105.87600968|25768|1 +638874.10507728|220016.4558986|105.55743314|25769|1 +638879.12133173|220011.83683878|104.81689081|25770|1 +638884.1321056|220007.22400684|104.18806282|25771|1 +638889.06472231|220002.68703966|103.94177038|25772|1 +638894.0415181|219998.11037974|103.77781727|25773|1 +638898.9769732|219993.5769214|104.10337945|25774|1 +638903.91403375|219989.03624464|103.89338254|25775|1 +638908.7868402|219984.56233073|104.4078917|25776|1 +638913.70506177|219980.04719162|104.96769121|25777|1 +638909.67698328|219979.5765764|104.38081423|25778|1 +638904.70636586|219984.12728912|103.8685654|25779|1 +638898.70712136|219989.75275143|115.26949231|25780|1 +638899.79030244|219988.62730565|103.30260812|25781|2 +638893.74797666|219994.28781907|114.28626663|25782|1 +638894.71346099|219993.28287833|103.45711993|25783|2 +638889.73411111|219997.84317951|103.08699294|25784|1 +638884.60573519|220002.55320318|103.89307558|25785|1 +638879.55186415|220007.19205126|104.44723822|25786|1 +638874.47881315|220011.85150549|105.27459402|25787|1 +638869.37146558|220016.54117067|105.98282198|25788|1 +638864.33971033|220021.15831471|106.40744807|25789|1 +638859.26580567|220025.81376885|106.79362992|25790|1 +638854.19990885|220030.46120062|107.11802937|25791|1 +638849.11686702|220035.12723209|107.70355759|25792|1 +638844.08067183|220039.74401225|107.71793814|25793|1 +638839.10268998|220044.30617844|107.6276365|25794|1 +638834.05065814|220048.93323688|107.24989136|25795|1 +638829.04127475|220053.52518195|106.97849342|25796|1 +638824.01220582|220058.13875592|107.00547788|25797|1 +638818.97651758|220062.75977668|107.1569015|25798|1 +638813.93929702|220067.38282527|107.36441483|25799|1 +638808.83970909|220072.06589254|107.82076928|25800|1 +638803.77404913|220076.72071846|108.5450614|25801|1 +638798.66029005|220081.42036059|109.32575019|25802|1 +638793.56815|220086.09703232|109.82069772|25803|1 +638788.50642754|220090.74950432|110.65799712|25804|1 +638783.41632302|220095.42514191|111.22836345|25805|1 +638778.31926319|220100.1090889|111.97347295|25806|1 +638773.29336462|220104.72392869|112.37574687|25807|1 +638768.23540393|220109.36559115|112.53605369|25808|1 +638763.17940087|220114.00546155|112.69658374|25809|1 +638758.11843547|220118.65133358|112.98817583|25810|1 +638753.01960932|220123.33031204|113.12545145|25811|1 +638748.0106707|220127.9284595|113.42248507|25812|1 +638742.96067675|220132.56326397|113.62123613|25813|1 +638737.8695198|220137.23475538|113.71580729|25814|1 +638732.90435246|220141.78373938|113.19009879|25815|1 +638727.81077191|220146.45863541|113.39111018|25816|1 +638722.75762537|220151.09875459|113.80881575|25817|1 +638717.7206352|220155.72043753|113.89615943|25818|1 +638712.63781464|220160.38405358|113.96711338|25819|1 +638707.60337674|220165.00347979|114.06102412|25820|1 +638702.5660771|220169.62677024|114.26733752|25821|1 +638697.49241967|220174.28049822|114.2017786|25822|1 +638692.47263679|220178.88315119|113.99029341|25823|1 +638687.395894|220183.54123785|114.06245659|25824|1 +638682.3020245|220188.22127157|114.7028932|25825|1 +638677.26939455|220192.84127161|114.99738744|25826|1 +638672.19405871|220197.49925843|115.17651175|25827|1 +638667.12168481|220202.15392209|115.29974168|25828|1 +638662.09371363|220206.76967607|115.59467311|25829|1 +638657.02153468|220211.42520053|115.81200911|25830|1 +638651.95163859|220216.07823421|115.99216592|25831|1 +638646.87830381|220220.73668877|116.37867333|25832|1 +638641.8108777|220225.38760797|116.57186193|25833|1 +638636.7429142|220230.03999117|116.85275697|25834|1 +638631.6768324|220234.69038396|117.10891859|25835|1 +638626.56522638|220239.38204356|117.31336234|25836|1 +638621.55215639|220243.98186324|117.39710623|25837|1 +638616.4437304|220248.66980681|117.52728459|25838|1 +638611.38206695|220253.31632179|117.7970175|25839|1 +638606.32250252|220257.96010026|117.99200134|25840|1 +638601.26893996|220262.59312015|117.70609264|25841|1 +638596.16374168|220267.27787427|117.81273751|25842|1 +638591.10801476|220271.91563009|117.77726983|25843|1 +638585.86680365|220276.72581103|117.92542853|25844|1 +638580.95358075|220281.23461795|118.06853636|25845|1 +638575.94548659|220285.83097897|118.24700954|25846|1 +638570.842221|220290.51729014|118.65531102|25847|1 +638565.78800456|220295.15801652|119.01462004|25848|1 +638560.73496003|220299.79822297|119.42411214|25849|1 +638555.63541044|220304.48061937|119.78348627|25850|1 +638550.58449118|220309.11793113|120.10599746|25851|1 +638545.53405938|220313.75372121|120.32868199|25852|1 +638540.48411799|220318.38879781|120.52654938|25853|1 +638535.43471338|220323.02339142|120.7245935|25854|1 +638530.3861904|220327.65766326|120.96656991|25855|1 +638525.2914922|220332.33532372|121.29659694|25856|1 +638520.24473338|220336.96847448|121.58277539|25857|1 +638515.19853492|220341.60104807|121.86286118|25858|1 +638510.10565126|220346.27680825|122.16888032|25859|1 +638505.06469925|220350.90718266|122.68687765|25860|1 +638500.02283464|220355.53703962|123.08003583|25861|1 +638494.98108082|220360.16639501|123.43586599|25862|1 +638489.93851689|220364.79568511|123.71685405|25863|1 +638484.89441054|220369.42537368|123.90427554|25864|1 +638479.80548967|220374.09756255|124.21205272|25865|1 +638474.80833004|220378.68364978|124.35458384|25866|1 +638469.71906329|220383.35576933|124.62541436|25867|1 +638464.68110064|220387.98217672|125.02600467|25868|1 +638459.69752624|220392.56106694|125.64967017|25869|1 +638454.61759683|220397.22764639|126.19614954|25870|1 +638449.58083339|220401.85594031|126.54720788|25871|1 +638444.59359787|220406.43954927|126.94606805|25872|1 +638439.5598639|220411.06611418|127.36599675|25873|1 +638434.52766399|220415.69161837|127.81730034|25874|1 +638429.53946631|220420.27544596|128.15368048|25875|1 +638424.50156807|220424.90428676|128.43031531|25876|1 +638419.51646395|220429.48610235|128.84157475|25877|1 +638414.48612945|220434.11005639|129.30570549|25878|1 +638409.49571032|220438.69519568|129.57331759|25879|1 +638404.50725853|220443.27908007|129.89080583|25880|1 +638399.47096454|220447.90689299|130.2053733|25881|1 +638394.47696403|220452.49459182|130.40426388|25882|1 +638389.5317613|220457.03783325|130.63694782|25883|1 +638384.53777489|220461.62573194|130.85437685|25884|1 +638379.53313791|220466.22117481|130.86588314|25885|1 +638374.57335267|220470.77503308|130.84225663|25886|1 +638369.57108212|220475.36926734|130.94100429|25887|1 +638364.60340196|220479.92923086|130.81104917|25888|1 +638360.24443869|220484.06091191|142.67644168|25889|1 +638359.94960504|220484.27310171|137.30129855|25890|2 +638359.57644493|220484.54166254|130.49818392|25891|3 +638355.71151282|220488.3033882|150.05162486|25892|1 +638354.60297987|220489.10647575|130.32439883|25893|2 +638350.52164004|220493.02125424|145.68588261|25894|1 +638349.62924213|220493.67181685|130.17541228|25895|2 +638344.62798956|220498.26650791|130.39873863|25896|1 +638339.9304299|220502.62004224|134.09019511|25897|1 +638334.70283893|220507.37352223|129.80868974|25898|1 +638329.71878542|220511.94774995|129.60312979|25899|1 +638324.76026912|220516.49506558|129.08084434|25900|1 +638320.15054561|220520.78839669|134.64929698|25901|1 +638315.18566313|220525.34013237|133.99502863|25902|1 +638310.6984524|220529.53752436|141.0863402|25903|1 +638310.17903379|220529.9317137|133.47685458|25904|2 +638304.84171157|220534.76823814|127.56129685|25905|1 +638300.02805141|220539.2068746|129.27305625|25906|1 +638294.92409001|220543.86795262|126.92581809|25907|1 +638290.30187403|220548.15900321|131.23152667|25908|1 +638285.35372093|220552.70062853|131.05562078|25909|1 +638280.2284286|220557.37311425|127.95563636|25910|1 +638275.1138019|220562.04545325|125.73953463|25911|1 +638270.62258353|220566.22561244|130.91168509|25912|1 +638270.27860012|220566.49410911|126.55229595|25913|2 +638266.50429464|220570.11220074|140.5831234|25914|1 +638265.19982152|220571.13339469|124.32381356|25915|2 +638261.85437752|220574.4129504|143.44339175|25916|1 +638260.28223309|220575.64717124|124.16580429|25917|2 +638257.55421287|220578.43761508|150.45401041|25918|1 +638252.47467727|220583.075246|148.00958728|25919|1 +638258.4685265|220574.06815392|146.91804242|25920|1 +638263.13874561|220569.73315244|143.77847894|25921|1 +638261.539084|220570.98641323|123.98911705|25922|2 +638267.72200101|220565.46516519|139.46222214|25923|1 +638271.95062072|220561.46525218|129.86990473|25924|1 +638271.568601|220561.76275723|124.98141195|25925|2 +638276.78711682|220556.99683314|128.50400398|25926|1 +638281.51513042|220552.61207339|125.67529657|25927|1 +638286.72084878|220547.85095489|128.56422368|25928|1 +638291.69662407|220543.27518066|129.08254657|25929|1 +638296.61814527|220538.73403693|128.21308162|25930|1 +638302.30466415|220533.61687078|138.92883967|25931|1 +638301.59453053|220534.15842695|128.79955862|25932|2 +638307.1863025|220529.10064593|136.99012623|25933|1 +638306.54719439|220529.58605167|127.69360531|25934|2 +638311.70049342|220524.8772821|130.96396107|25935|1 +638316.91862364|220520.11345383|134.64699945|25936|1 +638322.27297584|220515.24944957|140.61103803|25937|1 +638321.50208541|220515.82726498|128.70014124|25938|2 +638326.55445872|220511.18877196|129.92271092|25939|1 +638331.56576269|220506.57315923|129.78835606|25940|1 +638336.87334275|220501.74827679|135.33645642|25941|1 +638341.70765184|220497.27382182|133.18189525|25942|1 +638346.86057219|220492.55696974|135.62260696|25943|1 +638346.55989504|220492.77638772|130.43602945|25944|2 +638351.53064544|220488.20106941|130.51833157|25945|1 +638357.46169586|220482.93412046|147.99735544|25946|1 +638356.79947492|220483.41126526|136.01909518|25947|2 +638356.48232517|220483.63977864|130.28249433|25948|3 +638362.00083712|220478.66330621|139.68335327|25949|1 +638361.5125083|220479.01271455|130.62839949|25950|2 +638366.53923273|220474.3885448|130.94950611|25951|1 +638371.54314403|220469.78088966|130.86530643|25952|1 +638376.50424879|220465.21384118|130.89732315|25953|1 +638381.55580938|220460.56281367|130.85299088|25954|1 +638386.56009033|220455.95555003|130.83753133|25955|1 +638391.5502203|220451.35813246|130.53505616|25956|1 +638396.54348368|220446.75864898|130.30743239|25957|1 +638401.58200145|220442.11704282|130.03281605|25958|1 +638406.57124749|220437.52034484|129.72411799|25959|1 +638411.61170581|220432.87755902|129.50596343|25960|1 +638416.5972996|220428.28324664|129.10991239|25961|1 +638421.62758435|220423.64691706|128.62981051|25962|1 +638426.66357173|220419.00692234|128.29347688|25963|1 +638431.65456218|220414.40906142|128.02860879|25964|1 +638436.68530533|220409.77208876|127.5301638|25965|1 +638441.72011201|220405.13254128|127.13805672|25966|1 +638446.70660386|220400.53700155|126.71088194|25967|1 +638451.74282137|220395.89634909|126.33774118|25968|1 +638456.77452703|220391.25791468|125.78985724|25969|1 +638461.80664787|220386.61888586|125.22340697|25970|1 +638466.84246681|220381.97761369|124.7633132|25971|1 +638471.88143346|220377.33454569|124.40336236|25972|1 +638476.92345632|220372.68989873|124.15604673|25973|1 +638481.96504857|220368.04529796|123.87768176|25974|1 +638487.00749293|220363.40017771|123.62450601|25975|1 +638492.05048883|220358.75468682|123.38401789|25976|1 +638497.09380394|220354.10889644|123.1437251|25977|1 +638502.13618472|220349.46306043|122.82237663|25978|1 +638507.17691076|220344.81702595|122.34500016|25979|1 +638512.26671294|220340.12593953|121.87338149|25980|1 +638517.31354218|220335.47758318|121.6964617|25981|1 +638522.35913217|220330.82871018|121.36975541|25982|1 +638527.45362477|220326.13549399|121.09919464|25983|1 +638532.45348933|220321.52926319|120.82945243|25984|1 +638537.5498558|220316.83527786|120.64702599|25985|1 +638542.64611592|220312.14008558|120.34631816|25986|1 +638547.69576147|220307.48834647|120.10212792|25987|1 +638552.79376878|220302.79215922|119.85844929|25988|1 +638557.89238711|220298.09348159|119.44024142|25989|1 +638562.94459395|220293.43765903|119.04071152|25990|1 +638568.04551251|220288.73816593|118.74205008|25991|1 +638573.09988655|220284.08103383|118.40559553|25992|1 +638578.20237001|220279.38132281|118.22025763|25993|1 +638583.25763388|220274.7255588|118.08434938|25994|1 +638588.35391637|220270.03326797|118.05589524|25995|1 +638593.40908964|220265.37867285|118.02053919|25996|1 +638598.51175711|220260.68112693|118.04927238|25997|1 +638603.61394551|220255.98477524|118.14719218|25998|1 +638608.67175866|220251.32650699|118.00030783|25999|1 +638613.78346379|220246.61459115|117.48056177|26000|1 +638618.88555762|220241.9196189|117.69852099|26001|1 +638623.94468495|220237.26101866|117.63383644|26002|1 +638629.00615709|220232.5993|117.48196634|26003|1 +638634.11756465|220227.89101524|117.27012768|26004|1 +638639.18539854|220223.22124407|116.91906003|26005|1 +638644.2502197|220218.55649701|116.77440811|26006|1 +638649.3684567|220213.84054942|116.43902326|26007|1 +638654.39010386|220209.21455785|116.21119485|26008|1 +638659.50888234|220204.4992011|115.97660405|26009|1 +638664.58367089|220199.82335365|115.65845539|26010|1 +638669.65650243|220195.15067607|115.46551794|26011|1 +638674.7318809|220190.47524025|115.2354478|26012|1 +638679.85211607|220185.76011469|115.14634609|26013|1 +638684.88247311|220181.12608358|114.91989434|26014|1 +638690.00487598|220176.40910198|114.84418718|26015|1 +638695.08054959|220171.73509805|114.77163333|26016|1 +638700.162383|220167.05397897|114.56839881|26017|1 +638705.24342199|220162.37427875|114.42792339|26018|1 +638710.32581018|220157.69366418|114.29406152|26019|1 +638715.40782589|220153.01871778|114.247841|26020|1 +638720.50697266|220148.32396888|113.83403287|26021|1 +638725.54881613|220143.68479535|113.6844417|26022|1 +638730.63121451|220139.01052018|113.73279233|26023|1 +638735.70859968|220134.34229226|113.91241894|26024|1 +638740.75054628|220129.70397168|113.85079467|26025|1 +638745.84703046|220125.0144015|113.68826473|26026|1 +638750.90715926|220120.35613275|113.33424842|26027|1 +638756.0043156|220115.6666282|113.23484964|26028|1 +638761.06249245|220111.01145078|112.99984026|26029|1 +638766.11658368|220106.36125757|112.87721494|26030|1 +638771.16934017|220101.71290626|112.81087467|26031|1 +638776.24909859|220097.03493013|112.30891361|26032|1 +638781.30211383|220092.37810975|111.49658017|26033|1 +638786.39913681|220087.682269|110.81481577|26034|1 +638791.49964563|220082.98322505|110.13353506|26035|1 +638796.56730659|220078.31231614|109.26620952|26036|1 +638801.67915105|220073.60216705|108.52363011|26037|1 +638806.7506179|220068.92844082|107.7192962|26038|1 +638811.79578275|220064.28382067|107.36308467|26039|1 +638816.8265773|220059.65514317|107.25580729|26040|1 +638821.87301505|220055.0099572|106.95592732|26041|1 +638826.89454967|220050.39190166|107.04164318|26042|1 +638831.85224229|220045.83511316|107.36288003|26043|1 +638836.85698799|220041.23541578|107.71576153|26044|1 +638841.82711923|220036.66567279|107.8999646|26045|1 +638846.8063829|220032.08642599|107.98463867|26046|1 +638851.86879559|220027.42611232|107.64810971|26047|1 +638856.82562845|220022.86445235|107.45828835|26048|1 +638861.92843837|220018.1622835|106.69384046|26049|1 +638866.92335073|220013.56130528|106.11299103|26050|1 +638871.95992054|220008.92341145|105.65788302|26051|1 +638877.03148815|220004.24925084|104.83077836|26052|1 +638882.02959038|219999.64634746|104.34322575|26053|1 +638887.11711884|219994.95655437|103.42988433|26054|1 +638892.12337089|219990.34607892|102.93635997|26055|1 +638896.40563555|219986.48970248|110.49946695|26056|1 +638897.07163359|219985.79640143|103.12457212|26057|2 +638901.99786578|219981.26982625|103.57276891|26058|1 +638899.62064465|219979.88242602|103.38218482|26059|1 +638894.55291604|219984.54004302|103.45291552|26060|1 +638888.12486431|219990.61183314|118.35017554|26061|1 +638889.54589998|219989.1285698|102.31919641|26062|2 +638884.2968278|219993.97013799|103.95094194|26063|1 +638879.18707394|219998.67284652|104.60588931|26064|1 +638874.07976096|220003.37352528|105.27998905|26065|1 +638868.93842529|220008.10411292|105.82887758|26066|1 +638863.79926691|220012.83291327|106.39707659|26067|1 +638858.65233965|220017.57044277|107.1087369|26068|1 +638853.57303688|220022.24369698|107.62989683|26069|1 +638848.46097739|220026.94535736|107.99505666|26070|1 +638843.32265636|220031.66842694|108.11128236|26071|1 +638838.31453351|220036.26722859|107.81369993|26072|1 +638833.25701359|220040.91147182|107.54645989|26073|1 +638828.2083305|220045.54495811|107.17390514|26074|1 +638823.14824538|220050.19084555|106.97560057|26075|1 +638818.07310453|220054.85318816|107.01380297|26076|1 +638812.99146467|220059.52288391|107.17671428|26077|1 +638807.91668241|220064.18552625|107.27156449|26078|1 +638802.79346423|220068.90120838|108.13810868|26079|1 +638797.6851322|220073.60136385|108.8372488|26080|1 +638792.56715361|220078.31272819|109.74847873|26081|1 +638787.45678243|220083.01649109|110.60424216|26082|1 +638782.35189098|220087.71494806|111.43562563|26083|1 +638777.21115055|220092.44481142|112.12486866|26084|1 +638772.12131581|220097.1280073|112.82654816|26085|1 +638767.01471538|220101.82115345|113.03122445|26086|1 +638761.91600526|220106.50588871|113.13048371|26087|1 +638756.86219942|220111.15035695|113.3225933|26088|1 +638751.76554035|220115.83356657|113.45379485|26089|1 +638746.71151775|220120.47914352|113.72745311|26090|1 +638741.61128301|220125.16730442|114.00898068|26091|1 +638736.52301915|220129.84220053|114.08527385|26092|1 +638731.43746836|220134.51433927|114.13701963|26093|1 +638726.41345998|220139.12692715|113.91923714|26094|1 +638721.33177294|220143.79518543|113.94038008|26095|1 +638716.24637953|220148.46816106|114.08037181|26096|1 +638711.15160504|220153.15272556|114.48892444|26097|1 +638706.02496084|220157.86278505|114.55085566|26098|1 +638700.98795079|220162.49257893|114.80820791|26099|1 +638695.90455093|220167.1651283|115.07444336|26100|1 +638690.8284808|220171.82923272|115.18504148|26101|1 +638685.75247537|220176.49369462|115.33338621|26102|1 +638680.6791045|220181.1553329|115.44461685|26103|1 +638675.60700749|220185.81580766|115.55615445|26104|1 +638670.583486|220190.43179551|115.68359809|26105|1 +638665.50812871|220195.09748009|115.99536573|26106|1 +638660.48713015|220199.7112311|116.12929271|26107|1 +638655.46359227|220204.32889588|116.40685772|26108|1 +638650.39328598|220208.98981604|116.7068121|26109|1 +638645.32717148|220213.64565569|116.89466147|26110|1 +638640.30684655|220218.26100463|117.22880919|26111|1 +638635.24427277|220222.91312093|117.37334949|26112|1 +638630.22923986|220227.52223725|117.58276969|26113|1 +638625.16704989|220232.17511301|117.82762965|26114|1 +638620.10878924|220236.82259619|117.91032244|26115|1 +638615.14675268|220241.38157661|117.99061538|26116|1 +638610.09027451|220246.02722279|118.05476043|26117|1 +638605.0333041|220250.67436222|118.21285342|26118|1 +638600.02591989|220255.27489763|118.27889603|26119|1 +638594.97261348|220259.91634359|118.22484341|26120|1 +638589.92032721|220264.55582436|118.07727072|26121|1 +638584.92039028|220269.14987476|118.17483706|26122|1 +638579.866746|220273.79288389|118.2337173|26123|1 +638574.81310007|220278.43707251|118.39902847|26124|1 +638569.76013946|220283.08070336|118.57080438|26125|1 +638564.70781795|220287.72409973|118.77401099|26126|1 +638559.70387912|220292.32377465|119.04666466|26127|1 +638554.65335317|220296.96793709|119.46889089|26128|1 +638549.60410886|220301.6109962|119.89756326|26129|1 +638544.60296667|220306.20762955|120.12656369|26130|1 +638539.55505022|220310.8476923|120.39300377|26131|1 +638534.50787262|220315.48708202|120.65962059|26132|1 +638529.55600512|220320.03793884|120.84473524|26133|1 +638524.51037689|220324.6762545|121.14271765|26134|1 +638519.46500304|220329.31386446|121.39712124|26135|1 +638514.46864187|220333.90716121|121.71986497|26136|1 +638509.47131994|220338.49997075|121.91756493|26137|1 +638504.4294693|220343.13565953|122.29097544|26138|1 +638499.43837592|220347.72611657|122.79485267|26139|1 +638494.44347514|220352.31698932|123.01743488|26140|1 +638489.44864815|220356.90765449|123.22745969|26141|1 +638484.4550692|220361.49772515|123.48738853|26142|1 +638479.46223482|220366.08732364|123.76599533|26143|1 +638474.46833154|220370.67722164|123.98202909|26144|1 +638469.47957304|220375.2646588|124.40418091|26145|1 +638464.49005679|220379.85217496|124.77001048|26146|1 +638459.50405759|220384.43769645|125.2481869|26147|1 +638454.51970676|220389.02171859|125.76375646|26148|1 +638449.53544653|220393.60391893|126.279233|26149|1 +638444.5500501|220398.18648238|126.73212719|26150|1 +638439.56343236|220402.76955163|127.12871773|26151|1 +638434.5782744|220407.35163118|127.55644132|26152|1 +638429.54736949|220411.9762225|128.02411603|26153|1 +638424.60567136|220416.51680995|128.31167115|26154|1 +638419.57132273|220421.14334066|128.66700831|26155|1 +638414.59073957|220425.72212732|129.17562945|26156|1 +638409.65188774|220430.26079525|129.52501347|26157|1 +638404.6116168|220434.89107939|129.72438774|26158|1 +638399.62116556|220439.47620571|129.98307015|26159|1 +638394.67935386|220444.01691648|130.26947184|26160|1 +638389.69216054|220448.59995698|130.60903319|26161|1 +638384.69782469|220453.1879195|130.79877083|26162|1 +638379.69056231|220457.78496093|130.7326817|26163|1 +638374.74881601|220462.32597405|131.04950021|26164|1 +638369.85185121|220466.83548004|132.24554122|26165|1 +638364.77515651|220471.48218227|130.88806788|26166|1 +638360.2152861|220475.75037989|138.32600085|26167|1 +638359.80329666|220476.04513084|130.68040572|26168|2 +638355.73331583|220479.95873384|146.83444736|26169|1 +638350.88452948|220484.42887341|148.47617369|26170|1 +638349.87125221|220485.16360444|130.56390097|26171|2 +638344.90457925|220489.72371967|130.53033086|26172|1 +638339.93136121|220494.28889745|130.40932405|26173|1 +638335.29034567|220498.60920396|135.79748966|26174|1 +638330.00159077|220503.39929318|129.74447958|26175|1 +638325.01924581|220507.97225037|129.56697378|26176|1 +638320.93084061|220511.86761793|142.51624648|26177|1 +638316.01437573|220516.38869328|143.12756853|26178|1 +638310.11297803|220521.64657971|128.38788991|26179|1 +638305.14004912|220526.20611604|127.77476331|26180|1 +638300.59292358|220530.44911214|133.97823893|26181|1 +638300.26627719|220530.69810362|129.30884949|26182|2 +638295.19486461|220535.33354489|127.3631039|26183|1 +638290.36891755|220539.78149434|128.89059511|26184|1 +638285.25038177|220544.4545997|126.4284428|26185|1 +638280.39302398|220548.92691596|127.54433971|26186|1 +638275.72519807|220553.25198254|131.11676135|26187|1 +638270.88325719|220557.71148528|132.35529288|26188|1 +638267.13700798|220561.3152975|147.39198653|26189|1 +638265.40426962|220562.66816111|125.54015106|26190|2 +638260.40921328|220567.24205165|124.37842429|26191|1 +638255.74587872|220571.56257388|127.91042972|26192|1 +638254.24780309|220569.18042582|124.72072036|26193|1 +638260.56453431|220563.54648975|141.07760584|26194|1 +638259.19655481|220564.61588915|124.09768738|26195|2 +638265.91020287|220558.68926005|146.96257933|26196|1 +638264.27225473|220559.9659236|126.29197644|26197|2 +638269.68391574|220555.04228222|131.66460808|26198|1 +638269.16990282|220555.44166795|125.06549071|26199|2 +638274.37438214|220550.6865265|128.45443481|26200|1 +638279.24195507|220546.19303832|127.5076442|26201|1 +638284.14450489|220541.66528327|126.37382277|26202|1 +638289.38686831|220536.88422473|130.56693335|26203|1 +638294.14674229|220532.46608938|127.49085449|26204|1 +638299.62243503|220527.50248265|134.56826921|26205|1 +638299.21629324|220527.81136656|128.75320787|26206|2 +638305.11132644|220522.53222383|142.13977569|26207|1 +638304.11581461|220523.28622492|127.6060756|26208|2 +638310.23006854|220517.84474275|144.52566273|26209|1 +638309.65921298|220518.27525011|136.02457393|26210|2 +638309.1372868|220518.66885766|128.25214908|26211|3 +638315.35526116|220513.15375466|147.13015083|26212|1 +638320.13539947|220508.71383173|143.77445127|26213|1 +638324.18772798|220504.82210098|129.51923707|26214|1 +638329.38931676|220500.07363828|133.27521067|26215|1 +638334.43930747|220495.43004586|133.92357239|26216|1 +638339.24197707|220490.96800499|130.43959203|26217|1 +638344.83146954|220485.94159012|141.27894279|26218|1 +638344.21131224|220486.39244847|130.53144707|26219|2 +638350.13437201|220481.118824|146.72956983|26220|1 +638349.52589709|220481.55836581|135.93080272|26221|2 +638349.20795772|220481.78803451|130.28827073|26222|3 +638354.95804079|220476.64314948|143.75725229|26223|1 +638354.4289361|220477.02278142|134.1356808|26224|2 +638354.23279326|220477.16351365|130.56889603|26225|3 +638359.25530112|220472.54106108|130.84343796|26226|1 +638364.26738759|220467.92638653|130.95591504|26227|1 +638369.42119207|220463.22304031|134.81515696|26228|1 +638374.27913531|220458.70664607|131.01891597|26229|1 +638379.22160291|220454.15187673|130.76097771|26230|1 +638384.27297675|220449.50023746|130.80128231|26231|1 +638389.26607088|220444.89988592|130.6331899|26232|1 +638394.19901201|220440.35184607|130.1938577|26233|1 +638399.23728996|220435.70946046|129.98486539|26234|1 +638404.22486416|220431.11298959|129.710556|26235|1 +638409.21578255|220426.51440626|129.5235996|26236|1 +638414.24488248|220421.87809323|129.10271282|26237|1 +638419.22445347|220417.28667579|128.62232258|26238|1 +638424.25855303|220412.64707627|128.32026599|26239|1 +638429.29118801|220408.00833103|127.97466779|26240|1 +638434.27131172|220403.41618833|127.47555307|26241|1 +638439.30120343|220398.77877378|127.02399834|26242|1 +638444.33413939|220394.13946263|126.65379694|26243|1 +638449.31571419|220389.54582402|126.14217133|26244|1 +638454.34544342|220384.90778967|125.62224853|26245|1 +638459.3768497|220380.26855687|125.13370994|26246|1 +638464.41062463|220375.62783716|124.7078095|26247|1 +638469.44387276|220370.98704252|124.23208875|26248|1 +638474.47893233|220366.34506166|123.80026308|26249|1 +638479.51855369|220361.70090131|123.54980345|26250|1 +638484.55920002|220357.05621234|123.33701601|26251|1 +638489.59983569|220352.41139104|123.11192232|26252|1 +638494.64107511|220347.76621659|122.90574845|26253|1 +638499.72841806|220343.07736873|122.58639986|26254|1 +638504.76594007|220338.43213487|122.06825371|26255|1 +638509.80874813|220333.7852347|121.83775569|26256|1 +638514.85215014|220329.13792091|121.61993599|26257|1 +638519.8943429|220324.48991145|121.2398189|26258|1 +638524.93887717|220319.84155357|121.02238987|26259|1 +638529.98363855|220315.19256311|120.76765142|26260|1 +638535.0291943|220310.54312403|120.53810218|26261|1 +638540.0752097|220305.89290465|120.27751292|26262|1 +638545.12178545|220301.24161386|119.96713124|26263|1 +638550.12148434|220296.6326753|119.58786991|26264|1 +638555.2176099|220291.9356574|119.26571219|26265|1 +638560.26710565|220287.28139396|118.93095986|26266|1 +638565.26944969|220282.67348782|118.86446146|26267|1 +638570.32004688|220278.02043023|118.72999498|26268|1 +638575.41973314|220273.32027384|118.4216783|26269|1 +638580.42404564|220268.7099155|118.29922971|26270|1 +638585.52358771|220264.01301896|118.27279407|26271|1 +638590.51893129|220259.41479949|118.50027831|26272|1 +638595.56896122|220254.76551875|118.66053862|26273|1 +638600.62396395|220250.10685888|118.38989413|26274|1 +638605.67769627|220245.45145487|118.30693158|26275|1 +638610.73005346|220240.79891264|118.36788613|26276|1 +638615.78598282|220236.14078715|118.22290864|26277|1 +638620.84016974|220231.48600038|118.23434982|26278|1 +638625.89800192|220226.8259772|118.07736374|26279|1 +638630.95735705|220222.16427614|117.89565354|26280|1 +638635.97017279|220217.54536039|117.71185974|26281|1 +638641.032801|220212.88015282|117.48685907|26282|1 +638646.09764041|220208.21249557|117.2246699|26283|1 +638651.11451713|220203.58969386|117.02875588|26284|1 +638656.18269259|220198.91875089|116.74831663|26285|1 +638661.25243854|220194.24636844|116.46819363|26286|1 +638666.27572823|220189.61681966|116.19780029|26287|1 +638671.34371102|220184.94785782|116.08049559|26288|1 +638676.36462506|220180.32236321|115.97892019|26289|1 +638681.39028901|220175.69131736|115.77132314|26290|1 +638686.46322933|220171.01744033|115.62353652|26291|1 +638691.48920294|220166.38693642|115.49114434|26292|1 +638696.52077518|220161.75002829|115.24654482|26293|1 +638701.55213784|220157.11386484|115.05197957|26294|1 +638706.53315401|220152.52514596|114.95957572|26295|1 +638711.62727944|220147.82729618|114.476181|26296|1 +638716.61505569|220143.22898942|114.28408072|26297|1 +638721.64426427|220138.5946225|114.27711369|26298|1 +638726.66534947|220133.97001045|114.47601357|26299|1 +638731.65202734|220129.37401725|114.40230629|26300|1 +638736.6870139|220124.73383739|114.35197438|26301|1 +638741.73337182|220120.08097299|114.10236121|26302|1 +638746.73213694|220115.47224988|113.88538798|26303|1 +638751.77473671|220110.82449613|113.78564503|26304|1 +638756.77264775|220106.2175206|113.65596896|26305|1 +638761.77441862|220101.60657285|113.48889976|26306|1 +638766.81708912|220096.9597887|113.48299313|26307|1 +638771.84556416|220092.31982257|112.91752884|26308|1 +638776.88703822|220087.66602684|112.18413028|26309|1 +638781.93131069|220083.00979206|111.46339143|26310|1 +638786.9822073|220078.3469007|110.69311133|26311|1 +638792.0489953|220073.6672433|109.73019143|26312|1 +638797.12245377|220068.98103138|108.73029698|26313|1 +638802.19130406|220064.30058642|107.86764093|26314|1 +638807.26129145|220059.61956857|107.04887067|26315|1 +638812.23034929|220055.04061059|107.05716785|26316|1 +638817.26378201|220050.40014744|106.86058411|26317|1 +638822.23185241|220045.82284813|106.93709122|26318|1 +638827.23544881|220041.21509306|107.21299121|26319|1 +638832.19791312|220036.64425954|107.40732392|26320|1 +638837.13843713|220032.09706018|107.91208482|26321|1 +638842.15784016|220027.47294287|108.02626412|26322|1 +638847.14081684|220022.88086659|108.00899073|26323|1 +638852.15194576|220018.25921299|107.66258327|26324|1 +638857.13123306|220013.66496945|107.14726486|26325|1 +638862.17042928|220009.01451546|106.53408245|26326|1 +638867.1624338|220004.40780071|105.95051691|26327|1 +638872.20124367|219999.75872705|105.43072434|26328|1 +638877.26228006|219995.08679256|104.69407946|26329|1 +638882.27745509|219990.45722222|103.97439171|26330|1 +638887.31773088|219985.80803998|103.56687159|26331|1 +638892.39653892|219981.11301037|102.22768553|26332|1 +638888.94641331|219980.35294158|107.91479164|26333|1 +638889.45297577|219979.82293517|102.25600014|26334|2 +638883.29663475|219985.62030979|114.70432567|26335|1 +638884.27331561|219984.59652387|103.62589136|26336|2 +638879.15830995|219989.30300083|104.32076196|26337|1 +638873.9980035|219994.05130722|105.02675749|26338|1 +638868.84448777|219998.79302534|105.70252224|26339|1 +638863.76443464|220003.46430514|106.12623676|26340|1 +638858.63734149|220008.17915129|106.57367081|26341|1 +638853.49675153|220012.9088144|107.23277609|26342|1 +638848.37033273|220017.6239799|107.76218669|26343|1 +638843.21978479|220022.35834021|108.0240596|26344|1 +638838.15095989|220027.01295985|107.88388183|26345|1 +638833.05119671|220031.69485036|107.52552159|26346|1 +638827.9500076|220036.37995156|107.19225755|26347|1 +638822.88970283|220041.02877749|106.97815856|26348|1 +638817.78293052|220045.72029765|106.75761344|26349|1 +638812.65646092|220050.43339937|106.8422317|26350|1 +638807.52159813|220055.15599304|107.08290587|26351|1 +638802.34390083|220059.91752854|107.28055001|26352|1 +638797.21820447|220064.63936372|108.20070964|26353|1 +638791.98774215|220069.45988343|109.32082955|26354|1 +638786.80874579|220074.23333567|110.4667433|26355|1 +638781.65500509|220078.97976754|111.27742102|26356|1 +638776.4588788|220083.76487291|112.05821213|26357|1 +638771.3121423|220088.50503361|112.88294483|26358|1 +638766.17631379|220093.23375673|113.58384299|26359|1 +638761.02755615|220097.96793865|113.7132493|26360|1 +638755.88205393|220102.6988539|113.81845239|26361|1 +638750.83414394|220107.34001606|113.92837148|26362|1 +638745.69222309|220112.06766418|114.03470939|26363|1 +638740.55018938|220116.79585201|114.17911947|26364|1 +638735.45015318|220121.48721117|114.48476654|26365|1 +638730.31134446|220126.21259808|114.64288744|26366|1 +638725.18000539|220130.92971676|114.67695985|26367|1 +638720.09613027|220135.60363819|114.75344835|26368|1 +638714.98392423|220140.29887947|114.40822222|26369|1 +638709.84847607|220145.02192893|114.63106488|26370|1 +638704.75279946|220149.71117656|115.10181848|26371|1 +638699.62129259|220154.43062433|115.32582386|26372|1 +638694.49363799|220159.14590611|115.49428834|26373|1 +638689.3644088|220163.86363594|115.75070111|26374|1 +638684.24105381|220168.57463063|115.88914875|26375|1 +638679.11745654|220173.28642814|116.07809573|26376|1 +638674.04644138|220177.94868505|116.16480689|26377|1 +638668.87934578|220182.70000631|116.30787751|26378|1 +638663.76181308|220187.40555529|116.4360746|26379|1 +638658.69078255|220192.06933888|116.65514073|26380|1 +638653.56974187|220196.78074714|117.01531482|26381|1 +638648.45269773|220201.48750303|117.28861961|26382|1 +638643.33807667|220206.19161458|117.52499635|26383|1 +638638.22430582|220210.89524141|117.78686927|26384|1 +638633.11171369|220215.59793649|118.06177397|26385|1 +638628.05052215|220220.25201957|118.22071342|26386|1 +638622.94388667|220224.94721026|118.31535899|26387|1 +638617.8387525|220229.64060776|118.3730021|26388|1 +638612.78277159|220234.28823594|118.38299221|26389|1 +638607.67796096|220238.98220345|118.51642619|26390|1 +638602.62371964|220243.62782248|118.48948825|26391|1 +638597.57064791|220248.27159775|118.39404272|26392|1 +638592.46442381|220252.9707804|118.87227495|26393|1 +638587.4122381|220257.61404442|118.8023628|26394|1 +638582.3687686|220262.24611884|118.45162072|26395|1 +638577.31599616|220266.89015077|118.40082372|26396|1 +638572.21443454|220271.58239925|118.64304197|26397|1 +638567.20908514|220276.18613187|118.88726942|26398|1 +638562.1095585|220280.87510911|119.00516013|26399|1 +638557.05817536|220285.52029602|119.16778309|26400|1 +638552.05495087|220290.12032683|119.25601974|26401|1 +638547.00491468|220294.76562989|119.53765892|26402|1 +638541.95578215|220299.41024713|119.83199504|26403|1 +638536.90855823|220304.05544792|120.33276547|26404|1 +638531.86066557|220308.69767436|120.51499657|26405|1 +638526.81394081|220313.33982189|120.78491552|26406|1 +638521.81493658|220317.93734557|120.99220561|26407|1 +638516.77005863|220322.5784434|121.31861424|26408|1 +638511.77295785|220327.17500717|121.59466306|26409|1 +638506.72745579|220331.81493057|121.76508091|26410|1 +638501.68603464|220336.45399875|122.19189292|26411|1 +638496.73956977|220341.00459965|122.52332451|26412|1 +638491.69827143|220345.64229819|122.83774316|26413|1 +638486.70290112|220350.23638162|123.03247585|26414|1 +638481.70748921|220354.83036759|123.21463254|26415|1 +638476.66598623|220359.46749632|123.46059941|26416|1 +638471.72073706|220364.01643863|123.74123401|26417|1 +638466.73352166|220368.60649419|124.24184631|26418|1 +638461.74593729|220373.19633372|124.69237785|26419|1 +638456.75841142|220377.78583163|125.1178411|26420|1 +638451.82175167|220382.33024565|125.63495476|26421|1 +638446.83958931|220386.91781029|126.19132191|26422|1 +638441.85718806|220391.50517527|126.71010059|26423|1 +638436.91525629|220396.05252161|126.98288448|26424|1 +638431.98154806|220400.59504756|127.49892844|26425|1 +638426.99799843|220405.18249091|127.92976812|26426|1 +638422.06260813|220409.72565189|128.36408666|26427|1 +638417.12248626|220414.27162346|128.66072031|26428|1 +638412.14119128|220418.85735026|129.12228376|26429|1 +638407.25552247|220423.35507503|129.58394952|26430|1 +638402.31163343|220427.90338782|129.77977982|26431|1 +638397.36551786|220432.45325849|129.93164993|26432|1 +638392.42330438|220437.00066409|130.18309555|26433|1 +638387.44272918|220441.58574407|130.64370091|26434|1 +638382.54270199|220446.09309223|130.7850135|26435|1 +638377.58858154|220450.64885918|130.80477047|26436|1 +638372.6353231|220455.2042551|130.86174385|26437|1 +638367.98293394|220459.53915137|135.91733375|26438|1 +638367.74825597|220459.70305519|131.30127139|26439|2 +638362.88671264|220464.19417281|133.14148833|26440|1 +638357.85809756|220468.79298788|130.89821612|26441|1 +638353.31701509|220473.05466054|138.54300199|26442|1 +638352.88675019|220473.36215561|130.69845117|26443|2 +638348.5793175|220477.45393784|142.34499148|26444|1 +638347.91366364|220477.93293029|130.49855599|26445|2 +638343.00813367|220482.44577094|130.67425725|26446|1 +638338.03491044|220487.01723708|130.52381962|26447|1 +638333.74029832|220491.08269661|140.88280804|26448|1 +638328.1644206|220496.08763677|129.98845588|26449|1 +638323.23039888|220500.6224866|129.78884906|26450|1 +638318.74068738|220504.82683457|136.54159457|26451|1 +638318.54276305|220504.97421235|133.45774873|26452|2 +638318.27406551|220505.17428905|129.2711959|26453|3 +638314.38859648|220508.92535939|145.14205425|26454|1 +638309.45704511|220513.45580109|144.75237493|26455|1 +638304.20627045|220518.22765257|139.71692338|26456|1 +638303.41832147|220518.82249912|128.15919643|26457|2 +638298.7621985|220523.14071171|131.42692909|26458|1 +638293.56040228|220527.88073472|127.56462688|26459|1 +638288.60372326|220532.43532707|127.26351908|26460|1 +638283.75659975|220536.89892179|127.83375518|26461|1 +638278.95029024|220541.33112383|128.95083341|26462|1 +638273.83159384|220546.01147515|126.57689915|26463|1 +638269.37442789|220550.17346217|132.22737486|26464|1 +638263.93281667|220555.09870581|125.21347267|26465|1 +638261.03713431|220558.04198702|150.23622791|26466|1 +638260.23176067|220558.66986302|140.18186337|26467|2 +638255.86917489|220562.74640568|145.97420977|26468|1 +638254.08762014|220564.13936516|124.09112033|26469|2 +638260.65043785|220554.79555997|148.84555653|26470|1 +638258.71721272|220556.30030906|124.61951704|26471|2 +638263.75899738|220551.65726449|125.23548067|26472|1 +638269.69386399|220546.33109951|138.09971653|26473|1 +638268.93739671|220546.91614282|128.29012824|26474|2 +638273.76038443|220542.45044874|126.78524964|26475|1 +638279.05461773|220537.61512854|130.93609295|26476|1 +638283.75004157|220533.24748631|127.7254918|26477|1 +638288.87064236|220528.53944038|129.00856954|26478|1 +638294.29230588|220523.61906986|136.00004514|26479|1 +638293.67252191|220524.08967177|127.19702068|26480|2 +638298.74330506|220519.42027184|127.84543821|26481|1 +638303.75359012|220514.8050065|128.3564499|26482|1 +638309.71901596|220509.47442838|143.30522316|26483|1 +638313.75455786|220505.59059627|129.2104739|26484|1 +638318.80352634|220500.93957528|129.71032346|26485|1 +638323.83960553|220496.29857844|130.04843373|26486|1 +638328.86424229|220491.66640884|130.23719468|26487|1 +638333.85097222|220487.07236044|130.61157258|26488|1 +638338.86986669|220482.44684575|130.75064343|26489|1 +638343.88033201|220477.82773935|130.7713864|26490|1 +638348.9022717|220473.20068544|131.02291573|26491|1 +638353.9067433|220468.58644335|130.98772711|26492|1 +638359.13441672|220463.80473027|134.29766193|26493|1 +638364.74104591|220458.77062019|146.09581189|26494|1 +638363.96751153|220459.31188851|131.06319242|26495|2 +638369.47406531|220454.33930382|140.16976176|26496|1 +638369.09190284|220454.60441022|132.54030522|26497|2 +638374.00866732|220450.05196122|130.83991258|26498|1 +638379.01172198|220445.43991942|130.88629124|26499|1 +638384.05847051|220440.78696279|130.87301761|26500|1 +638389.03420528|220436.19367519|130.35789453|26501|1 +638394.11608676|220431.50541314|130.08576176|26502|1 +638399.15447766|220426.8583589|129.91712985|26503|1 +638404.14266392|220422.25692369|129.69558014|26504|1 +638409.17265721|220417.61539313|129.33372244|26505|1 +638414.19640672|220412.9776847|128.80344677|26506|1 +638419.22875671|220408.33454158|128.49187446|26507|1 +638424.25876188|220403.69277086|128.11179458|26508|1 +638429.33317967|220399.00893888|127.62949747|26509|1 +638434.35888113|220394.36934111|127.09373375|26510|1 +638439.3952416|220389.72355094|126.8766675|26511|1 +638444.42303054|220385.08237934|126.37246471|26512|1 +638449.44698881|220380.44288162|125.70599243|26513|1 +638454.52593962|220375.75534939|125.26894846|26514|1 +638459.55785042|220371.11107774|124.82780241|26515|1 +638464.63905611|220366.42189284|124.42894224|26516|1 +638469.67162425|220361.776651|123.95701662|26517|1 +638474.70490565|220357.13067183|123.47900763|26518|1 +638479.79078695|220352.43859272|123.20611211|26519|1 +638484.87891643|220347.74557855|123.03361997|26520|1 +638489.91994281|220343.09615178|122.88133129|26521|1 +638495.00566013|220338.40343282|122.54085836|26522|1 +638500.04456218|220333.75389527|122.20784547|26523|1 +638505.13155255|220329.05964213|121.83686272|26524|1 +638510.17282676|220324.40840905|121.54808907|26525|1 +638515.26303988|220319.71288885|121.3278323|26526|1 +638520.35299054|220315.01668351|121.02678031|26527|1 +638525.39631683|220310.36375771|120.7575776|26528|1 +638530.4879232|220305.66637738|120.48853302|26529|1 +638535.57962098|220300.96748823|120.09493765|26530|1 +638540.62518294|220296.31227826|119.80784762|26531|1 +638545.71912085|220291.61217399|119.49003383|26532|1 +638550.76663252|220286.9578669|119.44096696|26533|1 +638555.86204096|220282.25882096|119.33642429|26534|1 +638560.95773816|220277.5604275|119.31356983|26535|1 +638566.00688114|220272.90197525|119.03417237|26536|1 +638571.05651762|220268.24427289|118.86122444|26537|1 +638576.15469697|220263.54152264|118.65829689|26538|1 +638581.20229827|220258.89123329|118.97333875|26539|1 +638586.29284953|220254.19770774|118.96473461|26540|1 +638591.39177348|220249.49483724|118.81303194|26541|1 +638596.3953887|220244.88053837|118.7337808|26542|1 +638601.49338795|220240.18071727|118.77647596|26543|1 +638606.5449852|220235.52288334|118.75540743|26544|1 +638611.59684279|220230.86502256|118.75332383|26545|1 +638616.65165666|220226.20279984|118.60780684|26546|1 +638621.75233333|220221.50007538|118.61455993|26547|1 +638626.76272499|220216.87786815|118.39248932|26548|1 +638631.86622239|220212.17182537|118.33752513|26549|1 +638636.92694479|220207.5030801|118.09949267|26550|1 +638641.94033125|220202.87838335|117.90287172|26551|1 +638647.00465839|220198.20587905|117.62782749|26552|1 +638652.07215174|220193.52974893|117.2906753|26553|1 +638657.13633798|220188.85872145|117.13488915|26554|1 +638662.2086972|220184.17746819|116.74218676|26555|1 +638667.22428787|220179.55255453|116.70870966|26556|1 +638672.24821788|220174.91733477|116.44434388|26557|1 +638677.31317665|220170.24721307|116.43315384|26558|1 +638682.33793675|220165.61192862|116.23150993|26559|1 +638687.36110132|220160.97909782|116.11733062|26560|1 +638692.44002864|220156.29290425|115.82611061|26561|1 +638697.42135885|220151.69768929|115.63352663|26562|1 +638702.50939253|220147.00153977|115.20561701|26563|1 +638707.54688341|220142.35329446|114.8987421|26564|1 +638712.51181898|220137.77988476|115.2050682|26565|1 +638717.59191776|220133.09615143|115.07093659|26566|1 +638722.57342602|220128.50430205|115.03418527|26567|1 +638727.55920023|220123.90780804|114.93498182|26568|1 +638732.59632368|220119.2635814|114.79680393|26569|1 +638737.58930175|220114.65952022|114.61656341|26570|1 +638742.63340351|220110.00808229|114.41009188|26571|1 +638747.62980677|220105.40092764|114.23613006|26572|1 +638752.62676284|220100.7935388|114.08706909|26573|1 +638757.6242064|220096.18598194|113.96289968|26574|1 +638762.57400513|220091.62258122|113.86440317|26575|1 +638767.65251322|220086.93454978|113.22884069|26576|1 +638772.64396749|220082.3255485|112.49515377|26577|1 +638777.68218346|220077.67440464|111.84193653|26578|1 +638782.69324182|220073.04500755|110.9029408|26579|1 +638787.77222865|220068.35022436|109.71493652|26580|1 +638792.81308158|220063.68962992|108.44652768|26581|1 +638797.84350385|220059.04133099|107.41472814|26582|1 +638802.83514002|220054.4361047|107.02992295|26583|1 +638807.87016313|220049.79219476|106.75732509|26584|1 +638812.80129438|220045.24556843|106.6270258|26585|1 +638817.76257226|220040.67443555|106.78287707|26586|1 +638822.72126235|220036.10630801|106.99446457|26587|1 +638827.68220568|220031.53596218|107.19341097|26588|1 +638832.59534811|220027.00974402|107.40367762|26589|1 +638837.54395983|220022.45299473|107.80086348|26590|1 +638842.47027573|220017.91307769|107.8737429|26591|1 +638847.42142251|220013.3469662|107.65445352|26592|1 +638852.47079019|220008.68371167|106.84661284|26593|1 +638857.44569297|220004.093241|106.40992234|26594|1 +638862.41355993|219999.5106514|106.09722452|26595|1 +638867.33550642|219994.97039096|105.78886133|26596|1 +638872.38047188|219990.31378484|105.21095127|26597|1 +638877.35126237|219985.72295681|104.41232865|26598|1 +638881.39684833|219982.11026412|114.70636276|26599|1 +638882.37037143|219981.08822295|103.66528438|26600|2 +638879.88588764|219979.97321925|103.90958624|26601|1 +638874.80935205|219984.65069221|104.7382722|26602|1 +638869.76210859|219989.29788981|105.27582186|26603|1 +638864.72319612|219993.93678611|105.7577655|26604|1 +638859.70669839|219998.55243641|106.01029942|26605|1 +638854.68899701|220003.16975748|106.31254204|26606|1 +638849.6110463|220007.84468018|106.79975979|26607|1 +638844.52043302|220012.53359424|107.49224914|26608|1 +638839.52322514|220017.13043796|107.65219319|26609|1 +638834.45075742|220021.79376174|107.5616776|26610|1 +638829.49632775|220026.34300928|107.19993151|26611|1 +638824.42885808|220030.99808586|107.0726181|26612|1 +638819.41973594|220035.59808629|106.82812091|26613|1 +638814.41013148|220040.19883145|106.60849666|26614|1 +638809.34499711|220044.85212234|106.5128465|26615|1 +638804.26128453|220049.52593094|106.71596939|26616|1 +638799.17253534|220054.20566028|107.03142053|26617|1 +638794.06866882|220058.90243448|107.62100433|26618|1 +638788.97955378|220063.59220102|108.78961441|26619|1 +638783.79781799|220068.36751659|109.97777682|26620|1 +638778.67257132|220073.09017852|111.11045413|26621|1 +638773.56019385|220077.79944477|112.10679531|26622|1 +638768.42105805|220082.5300441|112.81162811|26623|1 +638763.32363119|220087.22422197|113.69077621|26624|1 +638758.20831051|220091.92952048|114.09788706|26625|1 +638753.11347722|220096.61220524|114.17540806|26626|1 +638748.06773978|220101.24980067|114.26472372|26627|1 +638742.92063655|220105.98236429|114.49373346|26628|1 +638737.82082682|220110.67199583|114.77819108|26629|1 +638732.77089436|220115.31576525|115.06789491|26630|1 +638727.63919422|220120.03197087|115.10538107|26631|1 +638722.55321438|220124.70698618|115.2228346|26632|1 +638717.47218405|220129.37660017|115.26583671|26633|1 +638712.33680224|220134.098367|115.4919908|26634|1 +638707.25980805|220138.76399196|115.51090131|26635|1 +638702.19362587|220143.41697417|115.29312812|26636|1 +638697.06065492|220148.13719303|115.57698113|26637|1 +638691.92304538|220152.8636802|116.03614472|26638|1 +638686.84134781|220157.53688146|116.33741996|26639|1 +638681.7193031|220162.24543763|116.47947668|26640|1 +638676.59827162|220166.9532144|116.63458381|26641|1 +638671.52773269|220171.61403424|116.74987932|26642|1 +638666.40889111|220176.32002193|116.92468761|26643|1 +638661.24234934|220181.0704988|117.14689775|26644|1 +638656.17490254|220185.72885624|117.29465646|26645|1 +638651.05807911|220190.43395195|117.55224126|26646|1 +638645.94090626|220195.14023574|117.88530066|26647|1 +638640.82797282|220199.84141561|118.1127384|26648|1 +638635.71838528|220204.53852048|118.25325103|26649|1 +638630.60767445|220209.23788927|118.50044574|26650|1 +638625.50214633|220213.93028605|118.55450767|26651|1 +638620.3949034|220218.625834|118.74646843|26652|1 +638615.2417153|220223.36334065|118.90568693|26653|1 +638610.18636043|220228.00964828|118.9694134|26654|1 +638605.08419024|220232.69899361|119.02535429|26655|1 +638599.93602785|220237.42983092|119.00516013|26656|1 +638594.88411068|220242.0714998|118.93868033|26657|1 +638589.78464271|220246.75717284|118.88975299|26658|1 +638579.59016554|220256.12900433|119.19327926|26659|1 +638574.49170844|220260.8134899|119.12065099|26660|1 +638569.34568131|220265.54193438|119.06004061|26661|1 +638564.29440045|220270.18528047|119.18914927|26662|1 +638559.19591752|220274.87317584|119.41152684|26663|1 +638554.05065746|220279.60358362|119.58381434|26664|1 +638549.00108369|220284.24366885|119.56388063|26665|1 +638543.90436193|220288.92911518|119.71256023|26666|1 +638538.80770997|220293.61314939|119.74293983|26667|1 +638533.7123675|220298.29862492|120.00498017|26668|1 +638528.66597232|220302.94010372|120.36111728|26669|1 +638523.57304293|220307.62459846|120.73012806|26670|1 +638518.47994116|220312.30783247|120.97456014|26671|1 +638513.43632942|220316.94690953|121.34398019|26672|1 +638508.3438092|220321.62891886|121.52662987|26673|1 +638503.29971479|220326.26674735|121.74652386|26674|1 +638498.21216629|220330.94747275|122.21734258|26675|1 +638493.17102355|220335.5835934|122.52517557|26676|1 +638488.08302324|220340.26297277|122.84044068|26677|1 +638477.9964192|220349.53516668|123.10099274|26678|1 +638472.95789037|220354.16941151|123.45333472|26679|1 +638467.92349827|220358.80165685|123.96204888|26680|1 +638462.89051811|220363.43281032|124.48962703|26681|1 +638457.90285498|220368.02078464|124.89066382|26682|1 +638452.86608314|220372.65308211|125.21226344|26683|1 +638447.83355104|220377.28434231|125.67769642|26684|1 +638442.85304845|220381.86964023|126.27237759|26685|1 +638437.8239391|220386.49895473|126.80044874|26686|1 +638432.83607112|220391.08775724|127.10773293|26687|1 +638427.85341808|220395.67347507|127.56481292|26688|1 +638422.87284084|220400.25779421|128.06551824|26689|1 +638417.88857931|220404.8441527|128.44747709|26690|1 +638412.90059085|220409.432733|128.72320964|26691|1 +638407.92157525|220414.0156982|129.2298681|26692|1 +638402.98879453|220418.55555142|129.68969212|26693|1 +638398.04519293|220423.10229621|129.88076921|26694|1 +638393.05054484|220427.69524284|129.99993427|26695|1 +638388.1071764|220432.24206199|130.21554014|26696|1 +638383.17942887|220436.77851775|130.78033471|26697|1 +638378.2313409|220441.32861725|130.90175079|26698|1 +638373.27410264|220445.88514403|130.84822837|26699|1 +638369.04628857|220449.93827915|145.47365328|26700|1 +638368.33803336|220450.42733689|131.24365619|26701|2 +638363.94777209|220454.58936296|142.3179047|26702|1 +638363.38376707|220454.98221372|131.28323525|26703|2 +638358.85565109|220459.22764032|138.55976379|26704|1 +638358.47919243|220459.49199121|131.38085739|26705|2 +638353.5516096|220464.01823772|131.06643874|26706|1 +638348.58868383|220468.58002653|131.01164198|26707|1 +638343.67183159|220473.09932892|130.95223153|26708|1 +638338.75250733|220477.62068939|130.87370594|26709|1 +638333.82508221|220482.14823072|130.68261024|26710|1 +638329.2404349|220486.42553383|136.19385696|26711|1 +638324.4923862|220490.82048343|138.84291917|26712|1 +638323.94439411|220491.22331965|129.96909888|26713|2 +638319.22509127|220495.58945197|132.41383827|26714|1 +638314.40083934|220500.04114549|133.89056038|26715|1 +638309.64403511|220504.43372801|135.629081|26716|1 +638309.21297288|220504.75542698|129.06996126|26717|2 +638304.46966244|220509.14702278|131.80396729|26718|1 +638299.93656177|220513.37132381|136.82913108|26719|1 +638299.33626028|220513.82337599|128.04887736|26720|2 +638294.43103339|220518.32906151|127.7312124|26721|1 +638289.71174286|220522.69395736|130.0650188|26722|1 +638284.98437891|220527.06427675|132.22325417|26723|1 +638280.29772618|220531.40282104|134.87811138|26724|1 +638279.6734815|220531.88039187|126.40211877|26725|2 +638275.62874053|220535.71965149|137.05882915|26726|1 +638270.70195142|220540.24168558|136.43225219|26727|1 +638270.16193353|220540.65771152|129.35261434|26728|2 +638266.3968836|220544.28365743|143.86033457|26729|1 +638261.65024516|220548.6584729|144.86092666|26730|1 +638260.14812254|220549.8232104|125.82464589|26731|2 +638256.78090473|220553.13544819|144.91555599|26732|1 +638255.14412656|220554.40850973|124.51476043|26733|2 +638252.72170688|220553.82760644|142.95396018|26734|1 +638257.87236716|220549.11157564|145.85198443|26735|1 +638256.1785161|220550.42905419|124.56647831|26736|2 +638263.02816476|220544.39294752|148.93733716|26737|1 +638267.27845447|220540.37559829|140.37854013|26738|1 +638266.13361724|220541.26036313|125.49269339|26739|2 +638271.95868879|220536.02391398|137.2293028|26740|1 +638271.41044519|220536.44617927|129.97484738|26741|2 +638276.6219763|220531.68420343|133.7613215|26742|1 +638276.18079346|220532.02281395|127.81863979|26743|2 +638281.03774415|220527.53258185|126.79415144|26744|1 +638286.68522708|220522.43995084|136.79928168|26745|1 +638291.22471719|220518.18483403|130.75168523|26746|1 +638295.95132371|220513.79384064|127.9019465|26747|1 +638301.24044243|220508.97054441|132.5810563|26748|1 +638306.19801448|220504.39796337|132.46546312|26749|1 +638311.23278851|220499.76804647|133.55823582|26750|1 +638315.94776595|220495.37607764|129.68553422|26751|1 +638320.93200898|220490.78381315|129.9990506|26752|1 +638326.66621077|220485.64173117|142.67715791|26753|1 +638330.92910792|220481.57745772|131.22422478|26754|1 +638335.91348441|220476.97451319|130.85347457|26755|1 +638340.92162371|220472.35451165|130.90666213|26756|1 +638345.87884337|220467.78105052|130.92687489|26757|1 +638350.88422674|220463.16357883|130.98009966|26758|1 +638355.90799319|220458.53344408|131.4076093|26759|1 +638361.75271213|220453.34041073|148.78068594|26760|1 +638361.06602904|220453.82053079|135.41966081|26761|2 +638360.83777531|220453.98012288|130.97847184|26762|3 +638365.8477831|220449.36030895|131.20017038|26763|1 +638370.87981897|220444.71458888|130.93154438|26764|1 +638375.87027015|220440.10872874|130.79780344|26765|1 +638380.86463071|220435.50040363|130.76389847|26766|1 +638385.84610054|220430.90088793|130.46164654|26767|1 +638390.87188181|220426.25971159|130.08738957|26768|1 +638395.85761006|220421.65747788|129.89126161|26769|1 +638400.8447324|220417.05445517|129.73878689|26770|1 +638405.87028024|220412.41349144|129.36483688|26771|1 +638410.89151022|220407.77514597|128.87241944|26772|1 +638415.87149665|220403.17662494|128.53896006|26773|1 +638420.89842053|220398.5345979|128.18410659|26774|1 +638425.92092975|220393.89507145|127.69203331|26775|1 +638430.89658127|220389.29874385|127.20243431|26776|1 +638435.97251872|220384.61166805|126.85820347|26777|1 +638440.94987119|220380.01398512|126.38742196|26778|1 +638446.02042172|220375.32937496|125.82511098|26779|1 +638451.04627781|220370.68675645|125.33378184|26780|1 +638456.07644655|220366.04172905|124.98003529|26781|1 +638461.10813379|220361.39580449|124.67018381|26782|1 +638466.18029746|220356.70885162|124.03410974|26783|1 +638471.20918323|220352.06336523|123.53725535|26784|1 +638476.24040244|220347.41651251|123.10929922|26785|1 +638481.32465361|220342.72363056|122.93030514|26786|1 +638486.36325202|220338.07397547|122.85274693|26787|1 +638491.44580997|220333.38130262|122.55575051|26788|1 +638496.52919139|220328.68808292|122.27792505|26789|1 +638501.56395407|220324.038034|121.85742894|26790|1 +638506.64792799|220319.34320248|121.48656712|26791|1 +638511.73486628|220314.64792617|121.31611207|26792|1 +638516.77319173|220309.99573228|120.99640071|26793|1 +638521.86012514|220305.29910545|120.70794332|26794|1 +638526.94723217|220300.60132043|120.3324213|26795|1 +638531.98803911|220295.94684314|120.0135285|26796|1 +638537.0780387|220291.24924774|119.88874517|26797|1 +638542.16858975|220286.55193535|119.83313915|26798|1 +638547.25931148|220281.85368185|119.70923019|26799|1 +638552.35040967|220277.15722209|119.77325432|26800|1 +638557.44192674|220272.45760033|119.59399048|26801|1 +638562.48655501|220267.80102763|119.4018902|26802|1 +638567.57922386|220263.1009859|119.27963695|26803|1 +638572.67041741|220258.40630491|119.50778162|26804|1 +638577.76377997|220253.70569916|119.39268144|26805|1 +638582.8525554|220249.00703112|119.07790002|26806|1 +638587.94578059|220244.30805531|119.09489437|26807|1 +638592.99089236|220239.65425622|119.18582853|26808|1 +638598.08395085|220234.95615059|119.26608426|26809|1 +638603.1790205|220230.2547618|119.22184501|26810|1 +638608.27442371|220225.55328572|119.19681393|26811|1 +638613.32566653|220220.89055378|119.00159755|26812|1 +638618.42322829|220216.18666326|118.93991747|26813|1 +638623.52352516|220211.47910859|118.7787735|26814|1 +638628.57571363|220206.81672049|118.69072288|26815|1 +638633.6788052|220202.10624093|118.49922721|26816|1 +638638.7803171|220197.39857581|118.4269059|26817|1 +638643.83812505|220192.72979808|118.2337266|26818|1 +638648.94948802|220188.00970104|117.86884582|26819|1 +638654.01190355|220183.3359655|117.61393994|26820|1 +638659.12130568|220178.61982475|117.43733641|26821|1 +638664.18271619|220173.9485119|117.31425531|26822|1 +638669.29760394|220169.22632203|117.05125688|26823|1 +638674.36173643|220164.55250676|116.92892922|26824|1 +638679.42826282|220159.87612929|116.77571036|26825|1 +638684.49801741|220155.19620321|116.57291303|26826|1 +638689.56773897|220150.51681136|116.41413171|26827|1 +638694.70139483|220145.77420089|115.87909353|26828|1 +638699.73053727|220141.13116066|115.62981522|26829|1 +638704.78741605|220136.46859726|115.90873829|26830|1 +638709.86096415|220131.78399625|115.80764658|26831|1 +638714.89191285|220127.13726639|115.62149943|26832|1 +638719.9671586|220122.45104441|115.55224771|26833|1 +638725.00177112|220117.80086875|115.36030555|26834|1 +638730.03369045|220113.15423046|115.26204158|26835|1 +638735.07309825|220108.49934054|115.04554274|26836|1 +638740.12209474|220103.83390214|114.67971317|26837|1 +638745.16859298|220099.17183299|114.40759901|26838|1 +638750.211912|220094.51382624|114.23541382|26839|1 +638755.20261883|220089.9056682|114.18267275|26840|1 +638760.26514614|220085.22682679|113.73682|26841|1 +638765.34948933|220080.52410526|112.9613123|26842|1 +638770.38978105|220075.86191063|112.18053979|26843|1 +638775.49014373|220071.14278161|111.2626777|26844|1 +638780.51106382|220066.49451912|110.1405207|26845|1 +638785.59379613|220061.78765903|108.87525586|26846|1 +638790.65992603|220057.09992542|107.94641768|26847|1 +638795.7192079|220052.42043423|107.18587653|26848|1 +638800.75553321|220047.76665212|106.82369326|26849|1 +638805.74767531|220043.15336417|106.4427111|26850|1 +638810.71396338|220038.56859343|106.472021|26851|1 +638815.67360656|220033.99129231|106.61926812|26852|1 +638820.67125734|220029.38081434|106.928608|26853|1 +638825.63461721|220024.79993503|107.06315819|26854|1 +638830.53821723|220020.2760994|107.3705354|26855|1 +638835.51547864|220015.68075493|107.36175452|26856|1 +638840.44407639|220011.13059613|107.38276723|26857|1 +638845.47260067|220006.48117949|106.77769598|26858|1 +638850.44298745|220001.88723674|106.3389963|26859|1 +638855.44612166|219997.26575986|106.13133414|26860|1 +638860.40980666|219992.67975341|105.84762066|26861|1 +638865.37480932|219988.09274535|105.5823805|26862|1 +638870.35493548|219983.49016024|105.17435808|26863|1 +638875.31483995|219978.90290614|104.47906889|26864|1 +638872.27182231|219977.78271796|104.75843845|26865|1 +638867.21672593|219982.44766046|105.38490379|26866|1 +638862.20725273|219987.06481444|105.51537981|26867|1 +638857.18235927|219991.69869807|105.86307091|26868|1 +638852.21442499|219996.27930877|106.14413338|26869|1 +638847.15075827|220000.94842337|106.44712015|26870|1 +638842.17975328|220005.53316067|106.83986905|26871|1 +638837.10615998|220010.21380543|107.34818323|26872|1 +638832.13005478|220014.7976399|107.25540731|26873|1 +638827.15895955|220019.376356|107.11903396|26874|1 +638822.10103782|220024.03337151|106.87538323|26875|1 +638817.17843575|220028.56738514|106.78314682|26876|1 +638812.17023987|220033.17877745|106.55890889|26877|1 +638807.153427|220037.79976808|106.47768578|26878|1 +638802.12853519|220042.42985983|106.5395426|26879|1 +638797.04127555|220047.12024836|106.84389672|26880|1 +638792.04369175|220051.72963312|107.29187027|26881|1 +638786.92246689|220056.4584566|108.21279265|26882|1 +638781.83998985|220061.15408131|109.3519347|26883|1 +638776.75806134|220065.84999812|110.5599471|26884|1 +638771.6500682|220070.56664524|111.48246938|26885|1 +638766.59574064|220075.23353413|112.3800815|26886|1 +638761.50055315|220079.93745489|113.2226085|26887|1 +638756.41720815|220084.62881183|113.92236254|26888|1 +638751.36035442|220089.2908648|114.19898807|26889|1 +638746.31700053|220093.9380333|114.2640819|26890|1 +638741.26337077|220098.59734002|114.55990629|26891|1 +638736.20632725|220103.26109152|114.96817056|26892|1 +638731.10809502|220107.9618272|115.29084919|26893|1 +638726.11578061|220112.56302786|115.44891427|26894|1 +638721.03017133|220117.25005295|115.5915012|26895|1 +638715.94402673|220121.93815232|115.78439214|26896|1 +638710.91360363|220126.57329046|115.8386215|26897|1 +638705.87771748|220131.21533916|116.05513895|26898|1 +638700.79698443|220135.89839721|116.24275578|26899|1 +638695.72927524|220140.56614417|116.14382208|26900|1 +638690.65650006|220145.24036802|116.20116753|26901|1 +638685.57008516|220149.93184943|116.664396|26902|1 +638680.49263521|220154.61291244|116.9408541|26903|1 +638675.42059724|220159.28777254|117.11160681|26904|1 +638670.35349686|220163.95686013|117.17658902|26905|1 +638665.28305704|220168.63068911|117.3854418|26906|1 +638660.16836274|220173.34456089|117.52906123|26907|1 +638655.0995818|220178.01737923|117.78238581|26908|1 +638649.98711181|220182.72943215|117.9457343|26909|1 +638644.92114333|220187.39974089|118.20605382|26910|1 +638639.8551592|220192.07078941|118.52913242|26911|1 +638634.74681698|220196.77906102|118.69385758|26912|1 +638629.64048213|220201.48505673|118.82163608|26913|1 +638624.5806559|220206.14943976|119.0584035|26914|1 +638619.47738083|220210.85212728|119.14335662|26915|1 +638614.37574721|220215.55280572|119.18509369|26916|1 +638609.27391735|220220.25431911|119.28352509|26917|1 +638604.17227875|220224.95616957|119.42616783|26918|1 +638599.0733338|220229.65403305|119.43810201|26919|1 +638594.02350178|220234.30571321|119.37086877|26920|1 +638588.92688085|220238.99993519|119.25241065|26921|1 +638583.78200517|220243.73956932|119.21430127|26922|1 +638578.73938064|220248.38505827|119.18572621|26923|1 +638573.63976444|220253.08731989|119.52475736|26924|1 +638568.54219138|220257.78597815|119.71429036|26925|1 +638563.44707416|220262.47748453|119.47935539|26926|1 +638558.35045629|220267.17549317|119.68855234|26927|1 +638553.2548141|220271.87073709|119.73573095|26928|1 +638548.15949865|220276.56612234|119.82086081|26929|1 +638543.06441089|220281.2602225|119.81268455|26930|1 +638537.97001476|220285.95599664|120.00495227|26931|1 +638532.87559702|220290.65014156|120.05393542|26932|1 +638527.82905272|220295.30038205|120.12209884|26933|1 +638522.68917898|220300.03932165|120.4219509|26934|1 +638517.64563291|220304.68997329|120.76575386|26935|1 +638512.55539279|220309.38367695|121.11010562|26936|1 +638507.46354983|220314.07634784|121.2361726|26937|1 +638502.37443908|220318.76880689|121.56265565|26938|1 +638497.33553614|220323.41656509|122.0263306|26939|1 +638492.24800604|220328.10736498|122.33478681|26940|1 +638487.16020776|220332.79769991|122.58120017|26941|1 +638482.07157257|220337.48802082|122.75929198|26942|1 +638476.98397461|220342.17789742|122.98154862|26943|1 +638471.94690948|220346.82269243|123.33413246|26944|1 +638466.91320156|220351.46583376|123.81185309|26945|1 +638461.83625174|220356.15050925|124.435007|26946|1 +638456.75792541|220360.83523973|124.9523439|26947|1 +638451.72048978|220365.47895674|125.18089785|26948|1 +638446.68782793|220370.12021668|125.57829764|26949|1 +638441.61251401|220374.79907659|126.12778148|26950|1 +638436.6344231|220379.38872072|126.71703971|26951|1 +638431.55323798|220384.07013081|127.02345883|26952|1 +638426.522617|220388.70593002|127.41531477|26953|1 +638421.49582243|220393.33935142|127.90723921|26954|1 +638416.46987268|220397.9720662|128.40556328|26955|1 +638411.48432119|220402.56514746|128.6952113|26956|1 +638406.45445283|220407.20004968|129.06884505|26957|1 +638401.47695405|220411.78800615|129.55825802|26958|1 +638396.49324023|220416.37983459|129.88528057|26959|1 +638391.49995568|220420.9778954|129.9875257|26960|1 +638386.51179589|220425.57274552|130.22082355|26961|1 +638381.53405976|220430.16071616|130.69122369|26962|1 +638376.54147592|220434.75863975|130.83705694|26963|1 +638371.54108998|220439.36204338|130.83313159|26964|1 +638366.78684884|220443.796156|135.83891977|26965|1 +638361.86592267|220448.33250367|136.37326032|26966|1 +638361.60160137|220448.51618306|131.15827518|26967|2 +638357.19874736|220452.69095923|141.77860631|26968|1 +638356.64061644|220453.08206964|131.05042109|26969|2 +638351.6397828|220457.68667923|131.11496611|26970|1 +638346.6710239|220462.25866213|130.9133315|26971|1 +638341.70821232|220466.82673729|130.84874927|26972|1 +638336.75079599|220471.39120974|130.90245773|26973|1 +638331.83197454|220475.91853744|130.82043466|26974|1 +638326.86460868|220480.49074353|130.74902493|26975|1 +638322.53429752|220484.58638848|140.30080519|26976|1 +638321.89836434|220485.05347328|129.94349109|26977|2 +638316.97671086|220489.58391023|129.90420038|26978|1 +638312.26520908|220493.96719505|133.91300557|26979|1 +638307.33691955|220498.50216873|133.73551837|26980|1 +638302.28825239|220503.12768581|131.78265692|26981|1 +638297.7427087|220507.36751302|136.61858537|26982|1 +638292.20371783|220512.36444238|127.66037937|26983|1 +638287.73612281|220516.55215473|134.21212279|26984|1 +638282.7854171|220521.09790681|133.1743236|26985|1 +638277.44510209|220525.94238569|126.88374615|26986|1 +638273.51364323|220529.70799205|139.70364974|26987|1 +638272.62197895|220530.39258484|127.76289425|26988|2 +638268.72049226|220534.13983412|141.38868515|26989|1 +638268.26464757|220534.49104916|135.39132759|26990|2 +638267.52035192|220535.06450726|125.59896619|26991|3 +638264.13038221|220538.40010225|144.42876613|26992|1 +638262.72704224|220539.48492601|126.27803307|26993|2 +638259.12756226|220542.98649671|142.74682822|26994|1 +638258.59106346|220543.40256696|135.9243845|26995|2 +638257.73325027|220544.06782574|125.01594945|26996|3 +638254.87772223|220546.98113814|149.96273708|26997|1 +638254.99076586|220542.89007159|149.03878233|26998|1 +638254.58479983|220543.20474635|143.93338142|26999|2 +638253.24871783|220544.24037802|127.13097807|27000|3 +638259.56802034|220538.6166218|144.81833383|27001|1 +638259.0700833|220539.00134|138.44944472|27002|2 +638258.01050554|220539.81999538|124.89690531|27003|3 +638264.30189238|220534.2211209|142.51206068|27004|1 +638263.05225789|220535.18338513|126.25114164|27005|2 +638267.97874906|220530.63603809|126.14969646|27006|1 +638273.87066189|220525.34324083|138.4378175|27007|1 +638278.40122725|220521.10054848|133.16587759|27008|1 +638277.92976717|220521.45965139|126.69305973|27009|2 +638283.37405019|220516.520284|133.90512697|27010|1 +638282.87730977|220516.89716164|126.95817897|27011|2 +638288.61562237|220511.72959096|137.84497808|27012|1 +638287.91279935|220512.26062811|127.82755089|27013|2 +638293.2798974|220507.37527279|133.57273729|27014|1 +638298.36622976|220502.70313197|135.40854518|27015|1 +638303.09149617|220498.30127772|131.88185107|27016|1 +638308.2733537|220493.56788362|136.01538377|27017|1 +638307.85636041|220493.87722246|129.5801637|27018|2 +638312.87334319|220489.24864303|129.6723257|27019|1 +638317.87140206|220484.64324637|130.25560289|27020|1 +638322.89949575|220480.01660375|131.38111784|27021|1 +638327.82951094|220475.46299515|130.92357276|27022|1 +638332.78150318|220470.89355412|130.84602385|27023|1 +638337.78654046|220466.27652405|130.88227287|27024|1 +638342.78779195|220461.66247165|130.87494307|27025|1 +638347.74917329|220457.08712327|131.03403136|27026|1 +638352.75963186|220452.46719487|131.25121853|27027|1 +638358.46544056|220447.37542503|145.97518646|27028|1 +638357.97774447|220447.71423022|136.47514268|27029|2 +638357.70555636|220447.90332081|131.17308361|27030|3 +638362.97642962|220443.10478619|136.66173631|27031|1 +638367.73964681|220438.64490944|131.0609879|27032|1 +638372.67635413|220434.08791732|130.8452332|27033|1 +638377.70687148|220429.44418319|130.60968432|27034|1 +638382.69682704|220424.83978512|130.53999541|27035|1 +638387.67035618|220420.24630533|130.10827206|27036|1 +638392.7038209|220415.60093668|129.96668972|27037|1 +638397.68730851|220411.0011069|129.77840316|27038|1 +638402.66163479|220406.40709818|129.36531127|27039|1 +638407.68368163|220401.76904635|128.94932653|27040|1 +638412.66064986|220397.17324904|128.59237086|27041|1 +638417.68592095|220392.53309156|128.25148866|27042|1 +638422.702958|220387.89761263|127.66096538|27043|1 +638427.68110617|220383.3007888|127.3102233|27044|1 +638432.70526147|220378.66085308|126.90096374|27045|1 +638437.73137135|220374.0196944|126.54183145|27046|1 +638442.75361539|220369.38035178|126.03292196|27047|1 +638447.77515852|220364.74099668|125.46793206|27048|1 +638452.80425235|220360.09766597|125.1592061|27049|1 +638457.8320183|220355.45475389|124.78191675|27050|1 +638462.85506497|220350.81349821|124.17360848|27051|1 +638467.8789288|220346.17126741|123.54668735|27052|1 +638472.9098838|220341.52584868|123.20733064|27053|1 +638477.98904165|220336.83603417|122.87324804|27054|1 +638482.97588926|220332.23282696|122.66658117|27055|1 +638488.05877409|220327.541542|122.5017909|27056|1 +638493.09320928|220322.89407138|122.26320034|27057|1 +638498.12774306|220318.24592395|121.97478946|27058|1 +638503.16039916|220313.59703202|121.47404693|27059|1 +638508.24446289|220308.90363964|121.22305709|27060|1 +638513.28129764|220304.25351327|120.94777102|27061|1 +638518.31839697|220299.60255738|120.62267394|27062|1 +638523.40462774|220294.90760342|120.41018416|27063|1 +638528.44432568|220290.25665232|120.29180045|27064|1 +638533.53212157|220285.56192929|120.22378586|27065|1 +638538.6199293|220280.86610306|120.06245585|27066|1 +638543.61317364|220276.25827279|119.96944739|27067|1 +638548.70194814|220271.56228292|119.87122993|27068|1 +638553.79096047|220266.8673099|119.87967594|27069|1 +638558.83294119|220262.21424583|119.76278982|27070|1 +638563.92179236|220257.52124117|119.92821261|27071|1 +638569.01263245|220252.82203877|119.71911798|27072|1 +638574.05751282|220248.16397053|119.40309943|27073|1 +638579.14067702|220243.4754072|119.50077738|27074|1 +638584.23203273|220238.77747587|119.44283662|27075|1 +638589.27480181|220234.12593237|119.5212971|27076|1 +638594.36552743|220229.43003466|119.58907914|27077|1 +638599.40842248|220224.77866401|119.6930358|27078|1 +638604.4554681|220220.12048128|119.54105407|27079|1 +638609.55000231|220215.41925552|119.4537662|27080|1 +638614.64489287|220210.71799292|119.39191869|27081|1 +638619.69418174|220206.05803173|119.26586102|27082|1 +638624.79191263|220201.35349717|119.14863073|27083|1 +638629.84276117|220196.69231281|119.04190215|27084|1 +638634.89784454|220192.02562586|118.79804678|27085|1 +638640.00099778|220187.31507642|118.59463553|27086|1 +638645.05705493|220182.64828837|118.4201249|27087|1 +638650.1166406|220177.97730346|118.16473533|27088|1 +638655.22410609|220173.2627081|117.95640344|27089|1 +638660.2871165|220168.58842028|117.68924712|27090|1 +638665.34917956|220163.91594746|117.50353716|27091|1 +638670.45452029|220159.20563653|117.49632828|27092|1 +638675.51992286|220154.5298667|117.29263798|27093|1 +638680.59450877|220149.84316431|116.87712763|27094|1 +638685.66592244|220145.16105531|116.60548785|27095|1 +638690.72662247|220140.49259516|116.65861029|27096|1 +638695.79203406|220135.81870215|116.61845453|27097|1 +638700.86272456|220131.13865589|116.47883486|27098|1 +638705.9405494|220126.44931814|116.18989378|27099|1 +638711.01652851|220121.76269857|115.98864055|27100|1 +638716.08835288|220117.08143086|115.91870049|27101|1 +638721.12071586|220112.43483839|115.70112264|27102|1 +638726.20593216|220107.73876406|115.41990203|27103|1 +638731.29110651|220103.04323766|115.18276254|27104|1 +638736.33572228|220098.38389838|114.84135014|27105|1 +638741.43261985|220093.67590133|114.46169814|27106|1 +638746.47664671|220089.01826693|114.22058679|27107|1 +638751.52587948|220084.35517903|113.92365548|27108|1 +638756.63493507|220079.63496553|113.45810157|27109|1 +638761.67046905|220074.97859576|112.65191661|27110|1 +638766.75669036|220070.27569452|111.86411196|27111|1 +638771.85642053|220065.55845842|110.91494939|27112|1 +638776.91915537|220060.87404825|109.85454688|27113|1 +638782.04237988|220056.1324119|108.66992845|27114|1 +638787.16930697|220051.3875839|107.5046298|27115|1 +638792.21690266|220046.72227191|106.8872709|27116|1 +638797.30106918|220042.02583448|106.49428945|27117|1 +638802.27166294|220037.43752031|106.39328146|27118|1 +638807.28994839|220032.80565954|106.32990846|27119|1 +638812.29654476|220028.18681251|106.45931477|27120|1 +638817.31415782|220023.55628722|106.45826367|27121|1 +638822.32176536|220018.93686366|106.61885884|27122|1 +638827.22926699|220014.41052488|106.84592451|27123|1 +638832.23463659|220009.79395002|107.07468309|27124|1 +638837.23283469|220005.17806351|106.79311832|27125|1 +638842.24365758|220000.5490921|106.38740274|27126|1 +638847.2581298|219995.91668635|105.97557589|27127|1 +638852.26003134|219991.29810122|105.7562307|27128|1 +638857.27188132|219986.66933017|105.45006273|27129|1 +638862.22578607|219982.09570223|105.29107677|27130|1 +638867.23062821|219977.47511765|105.13380233|27131|1 +638859.7904652|219980.16817562|105.12032406|27132|1 +638854.72208571|219984.83941829|105.38216907|27133|1 +638849.65509275|219989.50961526|105.66297109|27134|1 +638844.59600141|219994.17180234|105.88205583|27135|1 +638839.53963119|219998.83148828|106.10141962|27136|1 +638834.52458019|220003.45453846|106.44642251|27137|1 +638829.42876671|220008.15010147|106.62172379|27138|1 +638824.402793|220012.77826421|106.54370979|27139|1 +638819.39274105|220017.39017038|106.27942772|27140|1 +638814.37010733|220022.018207|106.22652852|27141|1 +638809.3444293|220026.64986636|106.24209969|27142|1 +638803.62920177|220032.02663445|115.52076119|27143|1 +638804.29363524|220031.30111076|105.95271213|27144|2 +638799.2489731|220035.95417558|106.29813359|27145|1 +638794.17464929|220040.63182646|106.40723413|27146|1 +638789.12581185|220045.29044041|106.89620991|27147|1 +638784.06292003|220049.96517832|107.65296523|27148|1 +638778.93653194|220054.70208822|108.71508857|27149|1 +638773.80938544|220059.44073567|109.86498348|27150|1 +638768.75116658|220064.11265504|110.74746161|27151|1 +638763.64376005|220068.83099174|111.71792524|27152|1 +638758.54807601|220073.53698778|112.55817331|27153|1 +638753.46320471|220078.23155481|113.27435428|27154|1 +638748.39234411|220082.910933|113.79788617|27155|1 +638743.3810328|220087.5334736|114.15877649|27156|1 +638738.2764943|220092.24197294|114.51577867|27157|1 +638733.21733514|220096.90978101|114.97173314|27158|1 +638728.16908295|220101.56555404|115.25972544|27159|1 +638723.12269252|220106.21969411|115.55417317|27160|1 +638718.07670396|220110.87390875|115.88625589|27161|1 +638713.03714268|220115.52110805|116.1250418|27162|1 +638707.95649134|220120.20491539|116.25363885|27163|1 +638702.92139257|220124.84779186|116.47419328|27164|1 +638697.88861066|220129.48839178|116.68244145|27165|1 +638692.81290042|220134.16766877|116.81197798|27166|1 +638687.78657102|220138.80138119|116.93953324|27167|1 +638682.71245163|220143.47964923|117.10710475|27168|1 +638677.6926031|220148.10622131|117.13516821|27169|1 +638672.66298733|220152.74555322|117.48157566|27170|1 +638667.59507371|220157.41753556|117.60003378|27171|1 +638662.57294042|220162.04851208|117.82196487|27172|1 +638657.50492341|220166.72171119|118.03458487|27173|1 +638652.43750368|220171.39473577|118.2787379|27174|1 +638647.41991699|220176.02154054|118.50117128|27175|1 +638642.35600381|220180.69112438|118.72712073|27176|1 +638637.2958333|220185.35616617|118.85969895|27177|1 +638632.28395954|220189.97691463|119.01386659|27178|1 +638627.2229025|220194.6444796|119.29052933|27179|1 +638622.1662667|220199.30628303|119.42383309|27180|1 +638617.15970049|220203.92105438|119.4846667|27181|1 +638612.05731268|220208.62513075|119.62251903|27182|1 +638607.0525255|220213.23820175|119.6773623|27183|1 +638602.00115443|220217.89400625|119.71161144|27184|1 +638596.94921036|220222.55137886|119.83355773|27185|1 +638591.90051472|220227.20348617|119.76206428|27186|1 +638586.85202595|220231.85548434|119.69703556|27187|1 +638581.80312534|220236.50867585|119.70096091|27188|1 +638576.75547676|220241.15954812|119.60512471|27189|1 +638571.71272743|220245.8088492|119.75959931|27190|1 +638566.61623412|220250.50764909|119.90685573|27191|1 +638561.61570347|220255.11766283|120.03136931|27192|1 +638556.52067806|220259.81461077|120.13556781|27193|1 +638551.47424154|220264.4630111|119.92214785|27194|1 +638546.42735554|220269.11572745|120.04015949|27195|1 +638541.38082869|220273.76687178|120.05214018|27196|1 +638536.33464874|220278.41858284|120.13931643|27197|1 +638531.28933601|220283.07112071|120.36419617|27198|1 +638526.19621234|220287.76571441|120.41423043|27199|1 +638521.15126978|220292.41667947|120.53339549|27200|1 +638516.10673865|220297.06741705|120.66526677|27201|1 +638511.06357531|220301.71822562|120.90982908|27202|1 +638506.02247002|220306.36875924|121.29207628|27203|1 +638500.9807844|220311.01836708|121.54953084|27204|1 +638495.94266908|220315.66733007|122.03216281|27205|1 +638490.90176804|220320.31571548|122.2462525|27206|1 +638485.86038218|220324.96367465|122.3855373|27207|1 +638480.82153158|220329.61091828|122.66249769|27208|1 +638475.78043658|220334.25854851|122.79591307|27209|1 +638470.74356148|220338.9047221|123.13573487|27210|1 +638465.70981541|220343.54940602|123.59445197|27211|1 +638460.6825239|220348.19100869|124.29700584|27212|1 +638455.65307747|220352.83284449|124.84975461|27213|1 +638450.61938482|220357.47617963|125.19649693|27214|1 +638445.63565553|220362.07429264|125.61651864|27215|1 +638440.60753198|220366.71494266|126.11966103|27216|1 +638435.58165171|220371.35573674|126.65418761|27217|1 +638430.59729308|220375.9556372|126.96804815|27218|1 +638425.56651178|220380.59868662|127.30916289|27219|1 +638420.53811334|220385.24027952|127.7129065|27220|1 +638415.51428916|220389.8790504|128.235471|27221|1 +638410.48796102|220394.51910872|128.67075693|27222|1 +638405.50191647|220399.11963305|128.90359899|27223|1 +638400.52183169|220403.71649535|129.29247836|27224|1 +638395.49758951|220408.35501119|129.7592601|27225|1 +638390.50833279|220412.95762945|129.91716706|27226|1 +638385.51915407|220417.56032849|130.0875384|27227|1 +638380.49798041|220422.1967596|130.61703272|27228|1 +638375.55686693|220426.75537696|130.80889116|27229|1 +638370.51101963|220431.4083543|130.80810981|27230|1 +638365.54284598|220435.997182|131.44645352|27231|1 +638360.80614934|220440.42656144|136.69486924|27232|1 +638360.52129674|220440.62258878|131.0054656|27233|2 +638355.76977283|220445.06103015|135.86039758|27234|1 +638355.53210625|220445.2260545|131.23827976|27235|2 +638350.57664298|220449.79543444|131.21749959|27236|1 +638345.56380923|220454.41589164|131.03862643|27237|1 +638340.59634812|220458.99437162|130.84927947|27238|1 +638335.6381435|220463.5665836|130.8530839|27239|1 +638330.62948989|220468.18502609|130.83014572|27240|1 +638325.70574529|220472.72335205|130.65452818|27241|1 +638320.73357966|220477.31574229|131.27972848|27242|1 +638316.07023263|220481.67242843|136.09987181|27243|1 +638315.70296725|220481.94197725|130.19250894|27244|2 +638310.9813594|220486.33218431|133.28732158|27245|1 +638306.00510782|220490.918645|133.08436612|27246|1 +638305.77728169|220491.08763184|129.57086192|27247|2 +638300.82816443|220495.6466019|129.15751889|27248|1 +638295.97245393|220500.14436011|130.87305481|27249|1 +638291.00017234|220504.72928985|130.85070264|27250|1 +638285.83376252|220509.45319127|127.40463633|27251|1 +638281.32630345|220513.67892086|133.32154281|27252|1 +638276.33566284|220518.26271286|131.75552364|27253|1 +638271.87837615|220522.45471946|138.74539934|27254|1 +638270.95967192|220523.1571621|126.36199091|27255|2 +638266.76526731|220527.13253273|135.56051761|27256|1 +638266.07137707|220527.66500707|126.37094852|27257|2 +638262.37489827|220531.26261393|142.53460819|27258|1 +638261.99296781|220531.5567312|137.56425977|27259|2 +638261.06992733|220532.26754682|125.55207593|27260|3 +638256.42488053|220536.59528529|129.34197311|27261|1 +638256.10834787|220536.83986833|125.29301216|27262|2 +638255.3561921|220534.37851583|152.19286588|27263|1 +638259.51169265|220530.41683302|141.95979561|27264|1 +638258.2535882|220531.38633268|125.66856208|27265|2 +638264.18684228|220526.06688685|139.49351331|27266|1 +638263.22629067|220526.8045451|126.83904181|27267|2 +638268.73866265|220521.79549331|134.02698954|27268|1 +638268.24083516|220522.17640825|127.35021163|27269|2 +638273.28737891|220517.53204004|128.99388204|27270|1 +638278.12788611|220513.03727963|127.1897932|27271|1 +638283.11254069|220508.43297986|127.38347479|27272|1 +638293.23520453|220499.11878493|130.82771795|27273|1 +638298.64917606|220494.19599722|137.63006054|27274|1 +638298.25968646|220494.48658778|131.77529922|27275|2 +638303.25902905|220489.87378034|132.39911355|27276|1 +638308.05755763|220485.40987234|129.92652465|27277|1 +638313.41114725|220480.53719022|136.25153727|27278|1 +638313.05207557|220480.80099369|130.50637879|27279|2 +638318.06246715|220476.17133081|130.62024183|27280|1 +638323.02834994|220471.58267541|130.82622967|27281|1 +638328.02698356|220466.96116829|130.80930044|27282|1 +638332.98158586|220462.38129777|130.87799406|27283|1 +638337.93404021|220457.80325563|130.93404656|27284|1 +638342.93555786|220453.18054323|131.04179834|27285|1 +638347.93490625|220448.55967586|131.13715085|27286|1 +638353.48899092|220443.55340709|141.98604523|27287|1 +638352.92443783|220443.9459665|131.0703734|27288|2 +638358.25077207|220439.10033419|137.70972095|27289|1 +638362.9204971|220434.7075964|131.34239455|27290|1 +638367.88704899|220430.11022623|130.86387396|27291|1 +638372.86973922|220425.50199506|130.7284773|27292|1 +638377.85767469|220420.89046004|130.72412407|27293|1 +638382.82558596|220416.2922561|130.2828571|27294|1 +638387.8035014|220411.68753148|130.07245092|27295|1 +638392.83104032|220407.0377089|129.92135286|27296|1 +638397.79956943|220402.43905699|129.49245725|27297|1 +638402.76912741|220397.83967467|129.0822024|27298|1 +638407.79238964|220393.19260284|128.83148232|27299|1 +638412.81334063|220388.54693614|128.51848685|27300|1 +638417.77798998|220383.95014775|127.94584159|27301|1 +638422.79563417|220379.3061196|127.51436008|27302|1 +638427.81513889|220374.66087932|127.12674576|27303|1 +638432.79078536|220370.05738641|126.84758084|27304|1 +638437.80973337|220365.41214071|126.4164249|27305|1 +638442.82807716|220360.76693306|125.94167154|27306|1 +638447.79968627|220356.16486644|125.46882503|27307|1 +638452.82077789|220351.51770147|125.04421754|27308|1 +638457.84065059|220346.87069426|124.53853577|27309|1 +638462.85912864|220342.2237236|123.92676724|27310|1 +638467.87796013|220337.57590653|123.27140128|27311|1 +638472.9050392|220332.92467111|122.97233987|27312|1 +638477.93292106|220328.27290616|122.69218896|27313|1 +638483.00940216|220323.57672841|122.44877078|27314|1 +638488.0398813|220318.92388625|122.28156204|27315|1 +638493.07037587|220314.2706636|122.08326677|27316|1 +638498.09906635|220309.61689183|121.69766163|27317|1 +638503.13056778|220304.96258518|121.48721824|27318|1 +638508.16038772|220300.30724747|121.05821101|27319|1 +638513.24038098|220295.60781005|120.81665318|27320|1 +638518.27441934|220290.95247924|120.7193473|27321|1 +638523.30844526|220286.29664061|120.5784812|27322|1 +638528.39107403|220281.59779398|120.59418259|27323|1 +638533.37763172|220276.98368493|120.27853611|27324|1 +638538.46063031|220272.28367657|120.2261113|27325|1 +638543.5438862|220267.58365727|120.19284815|27326|1 +638548.57991064|220262.92625534|120.07814794|27327|1 +638553.61550041|220258.2734542|120.3198453|27328|1 +638558.69978378|220253.57100815|120.16264528|27329|1 +638563.73810238|220248.90889425|119.82992074|27330|1 +638568.82091954|220244.21325605|120.13588407|27331|1 +638573.853548|220239.55698141|119.85351004|27332|1 +638578.89058982|220234.90054168|119.90264203|27333|1 +638583.97503794|220230.20080789|119.99093449|27334|1 +638589.0612605|220225.49789336|119.94845328|27335|1 +638594.05114466|220220.88538582|120.03418775|27336|1 +638599.13872779|220216.18091187|119.96736379|27337|1 +638604.22763371|220211.47478605|119.86352806|27338|1 +638609.26903243|220206.81297902|119.80179217|27339|1 +638614.31248754|220202.1484601|119.6715766|27340|1 +638619.40323234|220197.44107711|119.60637115|27341|1 +638624.45007722|220192.77261455|119.40804797|27342|1 +638629.49729047|220188.10425778|119.2474528|27343|1 +638634.54261512|220183.43911664|119.21200373|27344|1 +638639.59136858|220178.76962856|119.07689543|27345|1 +638644.69276409|220174.04989288|118.80136751|27346|1 +638649.74531293|220169.37638264|118.62322919|27347|1 +638654.80163073|220164.69843315|118.36423053|27348|1 +638659.85740345|220160.02179594|118.17419524|27349|1 +638664.91644917|220155.34146664|117.92829347|27350|1 +638669.97691896|220150.65990079|117.68895877|27351|1 +638675.08334212|220145.93707756|117.54719039|27352|1 +638680.09414129|220141.30299681|117.44837762|27353|1 +638685.15505918|220136.62233396|117.32232925|27354|1 +638690.21791614|220131.93973837|117.18414206|27355|1 +638695.24053602|220127.29332004|116.89867984|27356|1 +638700.30619357|220122.61039583|116.77345003|27357|1 +638705.37826822|220117.92021204|116.53633844|27358|1 +638710.40347937|220113.27351838|116.32007214|27359|1 +638715.47902944|220108.58020171|116.08986248|27360|1 +638720.56333088|220103.87711266|115.71669381|27361|1 +638725.60416729|220099.21362801|115.30175087|27362|1 +638730.69074937|220094.50902157|114.97924898|27363|1 +638735.74000548|220089.83695611|114.49637516|27364|1 +638740.79165963|220085.16274871|114.02001259|27365|1 +638745.89440637|220080.44130653|113.53682251|27366|1 +638750.90670353|220075.80276011|113.00593292|27367|1 +638755.98098259|220071.10471642|112.28144546|27368|1 +638761.06095789|220066.40097299|111.52002995|27369|1 +638766.15575056|220061.6813547|110.57231846|27370|1 +638771.25434199|220056.95829984|109.63136006|27371|1 +638776.30939125|220052.27534941|108.68490431|27372|1 +638781.41878286|220047.54188523|107.70761317|27373|1 +638786.47342267|220042.86093288|106.89881441|27374|1 +638791.50631241|220038.2046072|106.47593705|27375|1 +638796.57216001|220033.5210366|106.32094155|27376|1 +638800.38949433|220030.19514612|123.53673445|27377|1 +638801.61572762|220028.85397269|105.82393833|27378|2 +638805.37970361|220025.58279891|123.50287599|27379|1 +638811.62212047|220019.60919723|106.0860996|27380|1 +638816.59808311|220015.00891096|105.96169764|27381|1 +638821.61110375|220010.37656381|106.01827105|27382|1 +638826.5791198|220005.78550964|106.05527351|27383|1 +638831.58576885|220001.16057541|106.24234154|27384|1 +638836.6023287|219996.51794651|105.70799169|27385|1 +638841.58860772|219991.90825715|105.59588668|27386|1 +638846.60502611|219987.26670862|105.14242508|27387|1 +638851.60271597|219982.64559669|104.95589656|27388|1 +638856.60409276|219978.02092567|104.75699667|27389|1 +638851.11160566|219979.60944931|104.67412715|27390|1 +638846.0201983|219984.30345152|104.66791356|27391|1 +638840.95486939|219988.97700023|104.96770981|27392|1 +638835.83979956|219993.69711874|105.32245166|27393|1 +638830.7702991|219998.3760797|105.75344947|27394|1 +638825.68932378|220003.06041401|105.74278963|27395|1 +638820.60758481|220007.74589867|105.76980199|27396|1 +638815.53204515|220012.42501173|105.74130135|27397|1 +638810.44681233|220017.11389587|105.87484695|27398|1 +638804.02260336|220023.26216692|124.99873186|27399|1 +638798.98540819|220027.91082165|125.57239101|27400|1 +638794.15878297|220032.32070384|122.39016028|27401|1 +638794.50385675|220031.94210574|117.30980906|27402|2 +638795.28946085|220031.08017923|105.74375702|27403|3 +638790.17449347|220035.80220208|106.45096178|27404|1 +638785.08555806|220040.49616096|106.81661461|27405|1 +638779.93694014|220045.24786384|107.40671931|27406|1 +638774.8196173|220049.97452279|108.32098161|27407|1 +638769.70038567|220054.70412815|109.33541474|27408|1 +638764.59748032|220059.41632897|110.15125495|27409|1 +638759.49405155|220064.12989745|111.04231862|27410|1 +638754.39819362|220068.83575669|111.8716371|27411|1 +638749.30857793|220073.5353485|112.65785115|27412|1 +638744.2405599|220078.21110851|113.11440094|27413|1 +638739.11805072|220082.93925102|113.746745|27414|1 +638734.05058543|220087.61569322|114.30378188|27415|1 +638728.93842016|220092.33335053|114.85620508|27416|1 +638723.88230485|220096.99801107|115.30184388|27417|1 +638718.82965384|220101.65925991|115.72905587|27418|1 +638713.78064612|220106.31685774|116.13159955|27419|1 +638708.69450258|220111.00654314|116.34910299|27420|1 +638703.65840876|220115.64995228|116.55890455|27421|1 +638698.56914507|220120.34445303|116.93926349|27422|1 +638693.54346509|220124.97633832|116.98737228|27423|1 +638688.51122261|220129.61664405|117.23521811|27424|1 +638683.43578926|220134.29596981|117.41070543|27425|1 +638678.40749576|220138.93249993|117.64647755|27426|1 +638673.33748574|220143.60609064|117.76017317|27427|1 +638668.26862364|220148.27870819|117.88045444|27428|1 +638663.30016074|220152.857335|117.88927252|27429|1 +638658.22344944|220157.54112695|118.34075284|27430|1 +638653.15803995|220162.2108682|118.48675353|27431|1 +638648.13672348|220166.84195316|118.80465104|27432|1 +638643.12102919|220171.46615287|118.97903144|27433|1 +638638.06082895|220176.13059225|119.08202071|27434|1 +638633.04669562|220180.75380001|119.29410121|27435|1 +638627.9840221|220185.42297593|119.60359922|27436|1 +638622.97864041|220190.03486558|119.54112849|27437|1 +638617.92087078|220194.698196|119.73866101|27438|1 +638612.91413196|220199.31304883|119.81998644|27439|1 +638607.90790973|220203.92765055|119.92006425|27440|1 +638602.85529477|220208.58483424|119.99945492|27441|1 +638597.80308657|220213.24194012|120.104072|27442|1 +638592.8486897|220217.80718334|120.07492953|27443|1 +638587.80027014|220222.45851187|119.98609756|27444|1 +638582.75077795|220227.11223831|120.01619811|27445|1 +638577.74948097|220231.72135648|120.03538768|27446|1 +638572.70152975|220236.37286174|119.99707366|27447|1 +638567.69989754|220240.98421785|120.17881177|27448|1 +638562.65902489|220245.62875698|120.10343947|27449|1 +638557.61134881|220250.28068636|120.1218756|27450|1 +638552.65849833|220254.84771181|120.36077312|27451|1 +638547.6116349|220259.49949309|120.42939232|27452|1 +638542.56517118|220264.14765666|120.22323705|27453|1 +638537.56629672|220268.75590335|120.35516415|27454|1 +638532.51998502|220273.40630771|120.34928543|27455|1 +638527.52234794|220278.01490203|120.6062749|27456|1 +638522.52418479|220282.62116462|120.62573422|27457|1 +638517.47888732|220287.27153712|120.69522779|27458|1 +638512.43517829|220291.92252441|120.93991102|27459|1 +638507.43909709|220296.52888335|121.12824409|27460|1 +638502.39778857|220301.17906895|121.49195285|27461|1 +638497.40367453|220305.7845094|121.75532334|27462|1 +638492.40911158|220310.38947806|121.94365641|27463|1 +638487.36888478|220315.03779615|122.23270911|27464|1 +638482.3746712|220319.64185217|122.37107304|27465|1 +638477.33482551|220324.28923606|122.61038914|27466|1 +638472.34415136|220328.89203889|122.91749659|27467|1 +638467.35310237|220333.494672|123.18080198|27468|1 +638462.32138656|220338.1384164|123.74534539|27469|1 +638457.34131963|220342.73603491|124.43976951|27470|1 +638452.35951836|220347.33370081|125.00289905|27471|1 +638447.32746772|220351.97599525|125.41773038|27472|1 +638442.34655711|220356.57240187|125.94333655|27473|1 +638437.3649457|220361.16878644|126.41262978|27474|1 +638432.33576673|220365.80889134|126.85895692|27475|1 +638427.39580579|220370.36429622|127.10115657|27476|1 +638422.36321481|220375.00607353|127.41642168|27477|1 +638417.3837451|220379.60072631|127.89179826|27478|1 +638412.4061848|220384.19406593|128.40455869|27479|1 +638407.42496043|220388.78938409|128.79859124|27480|1 +638402.43672613|220393.38888001|128.99899801|27481|1 +638397.40645085|220398.02892253|129.34587986|27482|1 +638392.428509|220402.62204155|129.80851301|27483|1 +638387.48921303|220407.17686067|130.04944762|27484|1 +638382.4971565|220411.77901499|130.17477976|27485|1 +638377.51869534|220416.37239925|130.61840008|27486|1 +638372.52472049|220420.97603799|130.71871974|27487|1 +638367.53179695|220425.57915608|130.85648835|27488|1 +638362.70447445|220430.05841467|133.43624302|27489|1 +638358.4252678|220434.17192557|147.82227741|27490|1 +638353.48285364|220438.73538391|148.54443012|27491|1 +638352.57716253|220439.3617654|130.89155605|27492|2 +638347.64243056|220443.9143245|131.29336488|27493|1 +638342.63027545|220448.53180706|131.14408067|27494|1 +638337.66633857|220453.10526727|131.03420809|27495|1 +638332.69946749|220457.68112412|130.89925792|27496|1 +638327.7371477|220462.25405151|130.87016196|27497|1 +638322.77162198|220466.82957132|130.80974692|27498|1 +638317.79743191|220471.41168109|130.63079005|27499|1 +638312.81407801|220476.00085179|130.33335644|27500|1 +638307.82855375|220480.59203018|130.03587633|27501|1 +638302.83961247|220485.18614038|129.71967174|27502|1 +638298.46817424|220489.31314194|138.06247222|27503|1 +638298.04968716|220489.62417277|131.72774854|27504|2 +638293.1012302|220494.18831763|132.0338514|27505|1 +638288.31971764|220498.61909305|134.08401873|27506|1 +638287.94177197|220498.90263217|128.58562707|27507|2 +638282.91752203|220503.52499139|127.90189069|27508|1 +638277.95863438|220508.09050407|127.51135561|27509|1 +638273.23754412|220512.47578944|130.42559286|27510|1 +638268.10678313|220517.1802023|128.37243966|27511|1 +638264.22550548|220520.91420518|141.71314041|27512|1 +638263.15195174|220521.73598932|127.47743203|27513|2 +638259.93268559|220524.96653637|149.87304005|27514|1 +638254.83021887|220529.6399387|147.4064601|27515|1 +638253.37426347|220530.7622661|128.75966331|27516|2 +638253.14358276|220530.94008698|125.80528889|27517|3 +638254.14715025|220526.85364766|151.11250176|27518|1 +638253.60501194|220527.27134472|144.15870765|27519|2 +638259.01427291|220522.35218881|150.72004121|27520|1 +638263.25563188|220518.322035|141.39244306|27521|1 +638262.30893721|220519.04629854|128.8177715|27522|2 +638267.63339312|220514.19185903|134.2393677|27523|1 +638267.34345365|220514.41285209|130.31885497|27524|2 +638272.29632811|220509.83446879|130.11509026|27525|1 +638277.04097322|220505.42171178|127.67588543|27526|1 +638282.05125527|220500.79994672|128.28074274|27527|1 +638287.38724889|220495.93456567|133.68051697|27528|1 +638287.01948436|220496.21026153|128.31902885|27529|2 +638292.20134463|220491.46145139|131.5584097|27530|1 +638297.19093465|220486.84863297|131.31141963|27531|1 +638301.99322987|220482.39194827|129.65432676|27532|1 +638307.02760544|220477.74615483|130.11100678|27533|1 +638312.00289039|220473.15341112|130.42325811|27534|1 +638316.97269038|220468.56518885|130.67933602|27535|1 +638321.9830381|220463.93850045|130.84960503|27536|1 +638326.9825896|220459.31992384|130.86413441|27537|1 +638331.9387092|220454.7426127|130.9766766|27538|1 +638336.98734801|220450.07961887|131.06795493|27539|1 +638341.93907261|220445.50606024|131.15544744|27540|1 +638347.42566605|220440.54958487|140.56325481|27541|1 +638346.93577358|220440.89069476|131.21996456|27542|2 +638352.72551422|220435.72819777|146.83557287|27543|1 +638351.90979361|220436.29129489|130.86658078|27544|2 +638357.51933894|220431.25723865|143.29597719|27545|1 +638356.92645114|220431.66276994|131.37405779|27546|2 +638361.9264617|220427.04612264|131.58841723|27547|1 +638366.88315977|220422.45891718|130.91674526|27548|1 +638371.86088065|220417.85757086|130.68801457|27549|1 +638376.89253009|220413.20824328|130.61187953|27550|1 +638381.86047076|220408.61347031|130.17719822|27551|1 +638386.84268091|220404.0095268|130.07949236|27552|1 +638391.86387281|220399.36724958|129.78521206|27553|1 +638396.83321776|220394.77154075|129.38158938|27554|1 +638401.80399548|220390.17487631|129.00909044|27555|1 +638406.8298592|220385.5297628|128.83990043|27556|1 +638411.84693545|220380.88986669|128.42733874|27557|1 +638416.81237132|220376.29604538|127.8799385|27558|1 +638421.82983991|220371.65556014|127.44877326|27559|1 +638426.85281126|220367.01192227|127.18014726|27560|1 +638431.87423309|220362.36904694|126.85544084|27561|1 +638436.84673889|220357.77061664|126.4703659|27562|1 +638441.86367777|220353.12957401|125.95216394|27563|1 +638446.88165607|220348.48764465|125.4403523|27564|1 +638451.90112879|220343.84462966|124.95364615|27565|1 +638456.92076138|220339.20109612|124.43582556|27566|1 +638461.93805432|220334.55786493|123.76193976|27567|1 +638466.91202785|220329.95627972|123.22686437|27568|1 +638471.98591802|220325.26485635|122.89568393|27569|1 +638477.01310374|220320.61672056|122.57838173|27570|1 +638481.99543196|220316.0115721|122.39332289|27571|1 +638487.07260189|220311.31845914|122.17544738|27572|1 +638492.1029348|220306.66852578|121.95234427|27573|1 +638497.13347126|220302.01818212|121.71066552|27574|1 +638502.16477331|220297.36742733|121.49413876|27575|1 +638507.19569966|220292.71590457|121.18404544|27576|1 +638512.2286817|220288.06448702|121.04284448|27577|1 +638517.26089008|220283.41170238|120.72683523|27578|1 +638522.29537208|220278.76023351|120.69848341|27579|1 +638527.32985803|220274.10846101|120.64529586|27580|1 +638532.41182367|220269.41144242|120.47387342|27581|1 +638537.39940994|220264.80363746|120.47695231|27582|1 +638542.43458289|220260.15367698|120.63053394|27583|1 +638547.51743846|220255.45709668|120.56623076|27584|1 +638552.50593552|220250.84629212|120.38826917|27585|1 +638557.59028726|220246.14684693|120.19959194|27586|1 +638563.00740047|220241.14201871|120.16868213|27587|1 +638567.60896608|220236.89156466|120.25104006|27588|1 +638572.69356003|220232.19352965|120.20073606|27589|1 +638577.73004293|220227.54116179|120.25566305|27590|1 +638582.72071443|220222.92951875|120.17804902|27591|1 +638587.80704594|220218.22965744|120.10993211|27592|1 +638592.84401826|220213.57742842|120.21541426|27593|1 +638597.83451547|220208.96741949|120.26297424|27594|1 +638602.87663502|220204.30717235|120.09384934|27595|1 +638607.91819468|220199.64847902|120.01240299|27596|1 +638612.95923698|220194.9910776|119.9998735|27597|1 +638618.00433307|220190.32800414|119.82517683|27598|1 +638623.04544181|220185.67135451|119.88178744|27599|1 +638628.04586885|220181.04905149|119.66748382|27600|1 +638633.14258069|220176.33797934|119.46489113|27601|1 +638638.145978|220171.71278082|119.23837427|27602|1 +638643.19663314|220167.04472103|119.07729541|27603|1 +638648.24947197|220162.37427467|118.88526953|27604|1 +638653.25707245|220157.74518967|118.65911544|27605|1 +638658.31495503|220153.06927102|118.39887964|27606|1 +638663.32772536|220148.43467073|118.11055248|27607|1 +638668.32934995|220143.81479845|118.19673344|27608|1 +638673.3925038|220139.13378905|117.9184615|27609|1 +638678.45259175|220134.45716445|117.77155854|27610|1 +638683.4670384|220129.82248744|117.60856351|27611|1 +638688.53097908|220125.1394302|117.42482552|27612|1 +638693.5468071|220120.49991857|117.28097355|27613|1 +638698.57215512|220115.84939753|116.95014657|27614|1 +638703.59466466|220111.20282265|116.73171296|27615|1 +638708.62210732|220106.55088277|116.44485547|27616|1 +638713.65333664|220101.8950022|116.12076298|27617|1 +638718.69272295|220097.23011146|115.67221272|27618|1 +638723.73926227|220092.5575035|115.13042145|27619|1 +638728.79116191|220087.87935944|114.53906101|27620|1 +638733.84930095|220083.19471612|113.88570424|27621|1 +638738.90531748|220078.51321513|113.33236016|27622|1 +638743.9741807|220073.81770733|112.59871975|27623|1 +638748.99780232|220069.16413597|111.87867854|27624|1 +638754.07363106|220064.46220238|111.14573577|27625|1 +638759.11226067|220059.79314868|110.28920959|27626|1 +638764.15214274|220055.12345067|109.47650408|27627|1 +638769.24316117|220050.40668363|108.67622575|27628|1 +638774.29535742|220045.72473506|107.78949671|27629|1 +638779.33444406|220041.0580638|107.17059371|27630|1 +638784.36630739|220036.39997549|106.71364394|27631|1 +638788.42958638|220032.81706751|121.50650083|27632|1 +638793.68126249|220027.91528796|117.61498174|27633|1 +638794.46937638|220027.0505788|106.06186847|27634|2 +638799.43017506|220022.46348855|106.05901283|27635|1 +638803.67248385|220018.66837415|116.89680088|27636|1 +638804.46437807|220017.80471506|105.72714405|27637|2 +638808.09295275|220014.67502495|124.89046848|27638|1 +638809.50584305|220013.13849458|105.33333474|27639|2 +638814.51644922|220008.50622459|105.39955409|27640|1 +638819.5344224|220003.86626637|105.39131271|27641|1 +638824.50331894|219999.27205177|105.41940408|27642|1 +638829.53251742|219994.62061572|105.31815424|27643|1 +638834.54519306|219989.98000657|104.84329855|27644|1 +638839.61246832|219985.28855561|104.33273335|27645|1 +638844.61212388|219980.66283763|104.10028196|27646|1 +638843.3540085|219977.5335761|103.49766637|27647|1 +638838.23050313|219982.26258138|103.90480512|27648|1 +638832.95439586|219987.15636257|106.28677612|27649|1 +638827.93343404|219991.76866457|104.86878542|27650|1 +638822.88417512|219996.42660434|105.06780623|27651|1 +638817.74473589|220001.16722475|105.21549053|27652|1 +638811.9440098|220006.62761839|114.39806468|27653|1 +638812.61778595|220005.89467002|105.22719217|27654|2 +638807.39884511|220010.73898272|107.88210519|27655|1 +638802.02738231|220015.73024555|110.77863186|27656|1 +638802.40855692|220015.31316973|105.38956398|27657|2 +638795.69293474|220021.79789018|129.08974614|27658|1 +638797.31060699|220020.0224498|105.76998803|27659|2 +638790.7061946|220026.38237329|127.64037125|27660|1 +638792.18134599|220024.758178|105.94537302|27661|2 +638785.74637728|220030.93674067|125.75563601|27662|1 +638781.23987021|220034.98801418|116.87275579|27663|1 +638781.92497786|220034.22857766|106.37273384|27664|2 +638776.76224613|220039.00290903|107.1846487|27665|1 +638771.61749887|220043.7579408|107.77338603|27666|1 +638766.46962024|220048.51715074|108.46866591|27667|1 +638761.32087762|220053.27807431|109.2394018|27668|1 +638756.12420516|220058.08403746|110.07369673|27669|1 +638750.98093311|220062.84038261|110.88343497|27670|1 +638745.79135968|220067.63996334|111.73206394|27671|1 +638740.66316981|220072.38075356|112.40636832|27672|1 +638735.48409686|220077.16998998|113.20073072|27673|1 +638730.36855816|220081.89776684|113.76433466|27674|1 +638725.19025107|220086.68782288|114.68499658|27675|1 +638720.07934313|220091.4117963|115.28734242|27676|1 +638714.92177251|220096.17934412|115.92918359|27677|1 +638709.7796723|220100.92938913|116.30379403|27678|1 +638704.64326561|220105.67328106|116.60429722|27679|1 +638699.55605398|220110.37195376|116.92233426|27680|1 +638694.42205256|220115.11417514|117.26777433|27681|1 +638689.29426614|220119.84946267|117.51410397|27682|1 +638684.16518296|220124.58693925|117.84218693|27683|1 +638679.0504053|220129.30730651|117.84652156|27684|1 +638673.97935278|220133.98899511|117.99244783|27685|1 +638668.71764798|220138.89652768|122.26591646|27686|1 +638668.86328512|220138.71185017|118.10391101|27687|2 +638663.74522139|220143.43776305|118.31581478|27688|1 +638658.68559237|220148.10629466|118.24459108|27689|1 +638653.56027873|220152.84283515|118.78211283|27690|1 +638648.44659789|220157.5648811|119.008146|27691|1 +638643.38201926|220162.24162311|119.23778826|27692|1 +638638.27120042|220166.96111805|119.47109541|27693|1 +638633.1648823|220171.67503923|119.58633512|27694|1 +638628.10244888|220176.35087832|119.9045861|27695|1 +638623.00017686|220181.06025358|119.95209027|27696|1 +638617.89837243|220185.76943028|120.01885842|27697|1 +638612.84526023|220190.43352405|120.07591552|27698|1 +638607.74483607|220195.14167222|120.16231042|27699|1 +638602.64431939|220199.85059286|120.30542755|27700|1 +638597.59431023|220204.51139011|120.32603098|27701|1 +638592.49674335|220209.21662586|120.38881797|27702|1 +638587.40199524|220213.91730876|120.28965174|27703|1 +638582.35312456|220218.57760878|120.35495021|27704|1 +638577.25663116|220223.28270798|120.48778888|27705|1 +638572.21126087|220227.93684988|120.31000402|27706|1 +638567.16356572|220232.5966849|120.4261274|27707|1 +638562.07090504|220237.29435616|120.23520844|27708|1 +638557.03054712|220241.94615092|120.24579386|27709|1 +638551.98425941|220246.60304855|120.22520903|27710|1 +638546.88987796|220251.30858001|120.55408264|27711|1 +638541.84415624|220255.96911016|120.87778446|27712|1 +638536.79924376|220260.62385512|120.78299935|27713|1 +638531.75419785|220265.27858154|120.67593591|27714|1 +638526.70930215|220269.93437955|120.6690805|27715|1 +638521.71240563|220274.54690634|120.75005246|27716|1 +638516.62032814|220279.24659391|120.76849788|27717|1 +638511.62595483|220283.86026063|121.13714589|27718|1 +638506.58229568|220288.51569248|121.19353326|27719|1 +638501.54049633|220293.17151919|121.42511958|27720|1 +638496.54645948|220297.78292911|121.63142368|27721|1 +638491.55333283|220302.39395512|121.87521394|27722|1 +638486.51318592|220307.04841883|122.11967393|27723|1 +638481.5200828|220311.65852808|122.28851977|27724|1 +638476.48146312|220316.31181951|122.55201119|27725|1 +638471.49215513|220320.9204615|122.88961917|27726|1 +638466.50272124|220325.52876913|123.18969448|27727|1 +638461.51847009|220330.13500187|123.71465883|27728|1 +638456.536519|220334.73978932|124.29579661|27729|1 +638451.55470222|220339.34392876|124.83313233|27730|1 +638446.57124663|220343.94830396|125.26419525|27731|1 +638441.59144698|220348.55066025|125.80764224|27732|1 +638436.61278411|220353.152044|126.35726561|27733|1 +638431.63072182|220357.75476615|126.75689783|27734|1 +638426.69546094|220362.31378558|127.11684867|27735|1 +638421.71178443|220366.91716564|127.40378056|27736|1 +638416.77658434|220371.4761209|127.70700917|27737|1 +638411.8022656|220376.07409066|128.24974922|27738|1 +638406.82825867|220380.67162213|128.77991327|27739|1 +638401.88962683|220385.23232133|128.9638373|27740|1 +638396.9524013|220389.7922473|129.19120062|27741|1 +638391.97503089|220394.3915395|129.60855272|27742|1 +638387.04149104|220398.94918643|129.92911984|27743|1 +638382.11006918|220403.505481|130.29933054|27744|1 +638377.16945185|220408.06771308|130.45706077|27745|1 +638372.22917573|220412.62985731|130.63325502|27746|1 +638367.28406499|220417.19534192|130.71560364|27747|1 +638362.87544863|220421.40054588|142.0476695|27748|1 +638358.02646061|220425.89747776|143.81290481|27749|1 +638357.40006513|220426.32266501|131.05432783|27750|2 +638352.97126885|220430.53484414|141.41662768|27751|1 +638352.45906094|220430.88585844|131.26076216|27752|2 +638348.38623935|220434.83785598|147.33129244|27753|1 +638337.64098427|220444.56221116|131.15728919|27754|1 +638332.67787555|220449.14177672|131.02607834|27755|1 +638327.81042529|220453.63340893|130.92940497|27756|1 +638322.84492426|220458.21533357|130.81018411|27757|1 +638317.93003391|220462.75143414|130.76714479|27758|1 +638312.96025806|220467.33708749|130.62887388|27759|1 +638308.02640607|220471.88763238|130.32976596|27760|1 +638303.13855787|220476.39577473|130.0377925|27761|1 +638298.14081948|220481.00314398|129.55634185|27762|1 +638293.18856139|220485.56859718|129.08208148|27763|1 +638288.23779893|220490.13341895|128.66991977|27764|1 +638283.28487448|220494.70031419|128.26379491|27765|1 +638278.36923074|220499.23958017|128.42403661|27766|1 +638273.43592041|220503.79239857|128.35361286|27767|1 +638269.03068596|220507.93669634|134.88044613|27768|1 +638260.11149904|220516.30856291|146.5074341|27769|1 +638255.61461164|220520.51619514|151.2598419|27770|1 +638256.1919739|220516.22670021|148.15082545|27771|1 +638260.47988684|220512.15075513|139.4096764|27772|1 +638259.56931056|220512.84524504|127.28258772|27773|2 +638264.77377211|220508.06668137|130.45387026|27774|1 +638269.7135092|220503.49013691|130.10943478|27775|1 +638274.59110219|220498.95239514|128.22767611|27776|1 +638279.50663998|220494.40217179|128.21208633|27777|1 +638284.54270092|220489.7452965|128.58376671|27778|1 +638289.52756875|220485.13555389|128.9423595|27779|1 +638294.56758405|220480.47668424|129.45145502|27780|1 +638299.596326|220475.82664072|129.82998151|27781|1 +638304.58321557|220471.21816418|130.33211931|27782|1 +638309.59903032|220466.57993511|130.57387248|27783|1 +638314.61243186|220461.94385696|130.80954228|27784|1 +638319.61466163|220457.31620469|130.88951896|27785|1 +638324.61356522|220452.69124858|130.93840909|27786|1 +638329.61420459|220448.0653643|131.04349126|27787|1 +638334.61536046|220443.43945191|131.18605959|27788|1 +638339.65660228|220438.77516388|131.21852279|27789|1 +638345.34648324|220433.67366129|144.62823342|27790|1 +638344.6439939|220434.15946746|131.15551256|27791|2 +638350.05813693|220429.25152055|139.51392141|27792|1 +638349.63673928|220429.54033119|131.21728565|27793|2 +638355.66143306|220424.20938838|151.22061631|27794|1 +638360.40493222|220419.76513797|146.71118021|27795|1 +638364.67676632|220415.61914265|130.85273043|27796|1 +638369.69937201|220410.96880845|130.6180094|27797|1 +638374.68055873|220406.35851463|130.53035877|27798|1 +638379.7510025|220401.66431794|130.32390584|27799|1 +638384.77137242|220397.01573273|130.06478625|27800|1 +638389.74092905|220392.41314454|129.72766197|27801|1 +638394.80076304|220387.72564229|129.26610782|27802|1 +638399.82361019|220383.07559034|129.07615625|27803|1 +638404.84663641|220378.42552589|128.89888299|27804|1 +638409.90388727|220373.73926931|128.34459014|27805|1 +638414.91575312|220369.09542241|127.83049956|27806|1 +638419.93506911|220364.44726241|127.52888946|27807|1 +638425.0023571|220359.75490136|127.23779967|27808|1 +638430.0205812|220355.10713861|126.88665761|27809|1 +638435.03831306|220350.45944826|126.50441971|27810|1 +638440.09971164|220345.7694227|125.95812638|27811|1 +638445.11229775|220341.12336976|125.32014544|27812|1 +638450.17831121|220336.4303643|124.88067371|27813|1 +638455.24521958|220331.73660683|124.44784345|27814|1 +638460.26282254|220327.08689432|123.89172745|27815|1 +638465.28241366|220322.43587617|123.37948792|27816|1 +638470.35348144|220317.73925512|123.02881095|27817|1 +638475.37697607|220313.08606423|122.63570858|27818|1 +638480.45202612|220308.38780735|122.45442626|27819|1 +638485.52998721|220303.68898273|122.44853823|27820|1 +638490.55367503|220299.03378186|121.90618886|27821|1 +638495.58296367|220294.37803135|121.74521231|27822|1 +638500.65938756|220289.67789422|121.51532821|27823|1 +638505.68903443|220285.02127711|121.3110705|27824|1 +638510.76794082|220280.32126536|121.28189083|27825|1 +638515.84534129|220275.61938958|120.98439212|27826|1 +638520.87722346|220270.96282354|120.95590077|27827|1 +638525.9565151|220266.26154889|120.8528743|27828|1 +638530.98935736|220261.60833735|121.17482738|27829|1 +638536.0212928|220256.95133072|121.1157518|27830|1 +638541.10128113|220252.2472861|120.8387542|27831|1 +638546.18290775|220247.53816373|120.26847159|27832|1 +638551.21590316|220242.88320968|120.4601719|27833|1 +638556.29140989|220238.18602701|120.40918887|27834|1 +638561.32497385|220233.52834406|120.42011845|27835|1 +638566.35783929|220228.87282029|120.55621274|27836|1 +638571.43901317|220224.17161378|120.60635862|27837|1 +638576.47370001|220219.51243626|120.58049038|27838|1 +638581.50953388|220214.85150404|120.49857894|27839|1 +638586.59374466|220210.14574991|120.40609137|27840|1 +638591.62840752|220205.48801893|120.49963934|27841|1 +638596.66593711|220200.82566996|120.43096432|27842|1 +638601.70561453|220196.16034824|120.28130804|27843|1 +638606.79265593|220191.45205153|120.19651305|27844|1 +638611.78194984|220186.83612201|120.28246146|27845|1 +638616.8249646|220182.16733044|120.10225815|27846|1 +638621.86630721|220177.50159796|120.04719163|27847|1 +638626.90912477|220172.83419719|119.96739169|27848|1 +638631.95785696|220168.15897934|119.69427293|27849|1 +638636.95636538|220163.5320144|119.57461488|27850|1 +638642.00321887|220158.86057386|119.4705001|27851|1 +638647.00938039|220154.22433638|119.16999691|27852|1 +638652.01858496|220149.58475228|118.82586839|27853|1 +638657.08022344|220144.8956213|118.39159635|27854|1 +638661.87952223|220140.52712347|124.40060903|27855|1 +638666.92851953|220135.83597967|122.83949189|27856|1 +638672.09521227|220130.99850356|118.18406442|27857|1 +638677.10804347|220126.35713559|117.97152813|27858|1 +638682.06635645|220121.77068291|117.96081248|27859|1 +638687.08316795|220117.12742946|117.71076213|27860|1 +638692.05161279|220112.52956368|117.5189781|27861|1 +638697.07792341|220107.87585703|117.13186608|27862|1 +638702.10816006|220103.21806997|116.70752834|27863|1 +638707.09061697|220098.60504895|116.33490848|27864|1 +638712.12236315|220093.94669492|115.97942249|27865|1 +638717.08017199|220089.35175992|115.22185791|27866|1 +638722.17690477|220084.61874968|113.66389408|27867|1 +638727.15508974|220080.01336639|113.59682827|27868|1 +638732.16722455|220075.36912333|112.91291516|27869|1 +638737.18362611|220070.72070832|112.210445|27870|1 +638742.16428061|220066.10335536|111.346989|27871|1 +638747.20342782|220061.43051568|110.36448887|27872|1 +638752.17779437|220056.82191756|109.74392086|27873|1 +638757.21115954|220052.15721342|108.99210478|27874|1 +638762.1932589|220047.54123211|108.3528588|27875|1 +638767.17251495|220042.92908587|107.81316043|27876|1 +638772.1627059|220038.30532034|107.14893918|27877|1 +638776.09583306|220034.85796167|122.93299335|27878|1 +638776.67421539|220034.21463179|113.96234157|27879|2 +638777.16034634|220033.67391233|106.42251695|27880|3 +638780.90503543|220030.43203745|124.79119992|27881|1 +638782.13296636|220029.07090192|106.13152947|27882|2 +638786.05933145|220025.615581|120.74662941|27883|1 +638787.06077511|220024.50913499|105.82773346|27884|2 +638790.42227272|220021.68139103|129.14495219|27885|1 +638792.03974927|220019.90001864|105.51777966|27886|2 +638795.47464393|220016.98665995|127.36970816|27887|1 +638796.99142006|220015.32133288|105.63670287|27888|2 +638801.88844573|220010.78623924|105.1885898|27889|1 +638806.71791167|220006.34157427|107.0469359|27890|1 +638810.95686549|220002.53128291|116.21631083|27891|1 +638811.76749088|220001.64884816|105.22548064|27892|2 +638816.70903134|219997.07449975|104.93245608|27893|1 +638820.62617785|219993.61753182|118.71341921|27894|1 +638821.70201406|219992.45255568|104.6340737|27895|2 +638826.62974072|219987.89397035|104.5890717|27896|1 +638830.35272553|219984.63385971|119.80933591|27897|1 +638830.79935538|219984.1526009|114.16001362|27898|2 +638831.60672631|219983.28263129|103.94777933|27899|3 +638834.692946|219980.69715887|126.27624713|27900|1 +638835.31998638|219980.02307352|118.47433565|27901|2 +638836.5087226|219978.74514987|103.68361818|27902|3 +638831.07101825|219980.55954086|124.99223922|27903|1 +638832.40414961|219979.12480644|108.27578428|27904|2 +638832.83483192|219978.66130013|102.87537753|27905|3 +638826.57288577|219984.6371719|119.09135969|27906|1 +638827.72617594|219983.39298094|104.38302805|27907|2 +638821.51108416|219989.31466577|119.70104463|27908|1 +638822.02455037|219988.75933185|113.0377636|27909|2 +638822.68923437|219988.04044992|104.41213331|27910|3 +638816.42811319|219994.02343122|121.27484939|27911|1 +638817.4802185|219992.88260341|107.38036737|27912|2 +638810.99143549|219999.10992465|127.04168101|27913|1 +638812.66211646|219997.29348458|104.57744448|27914|2 +638807.63979095|220001.92610299|104.49514236|27915|1 +638802.54704573|220006.63601554|105.41976685|27916|1 +638796.08924395|220012.8352411|125.13554239|27917|1 +638797.49523668|220011.29329944|105.13841601|27918|2 +638792.5046143|220015.89716484|105.36803967|27919|1 +638787.41125518|220020.59753409|105.72759053|27920|1 +638780.8558514|220026.91739648|128.19801274|27921|1 +638775.88711785|220031.48600514|127.18767239|27922|1 +638771.45739178|220035.45332779|117.67831753|27923|1 +638772.15704266|220034.67306663|106.66586072|27924|2 +638767.05096148|220039.38984119|107.40673791|27925|1 +638761.97092031|220044.07810289|107.78094837|27926|1 +638756.88874838|220048.76931738|108.23646567|27927|1 +638751.79281305|220053.47674457|108.97878463|27928|1 +638746.65385414|220058.22364483|109.69734686|27929|1 +638741.56267778|220062.92722476|110.48432365|27930|1 +638736.47045344|220067.63284247|111.35896039|27931|1 +638731.33508595|220072.37811708|112.21642604|27932|1 +638726.20674011|220077.11616518|113.01226743|27933|1 +638721.07423852|220081.85995946|113.96455539|27934|1 +638715.94332746|220086.60290293|114.96737991|27935|1 +638710.82270032|220091.33475747|115.83997956|27936|1 +638705.72579206|220096.03940548|116.27681888|27937|1 +638700.58102068|220100.7889966|116.77203616|27938|1 +638695.49347439|220105.4837993|117.11020224|27939|1 +638690.40029316|220110.18609337|117.63590143|27940|1 +638685.27977541|220114.90828952|117.72138476|27941|1 +638680.20267797|220119.59217157|117.95490586|27942|1 +638675.08962895|220124.30604801|117.92293565|27943|1 +638669.97038019|220129.02808526|118.09119548|27944|1 +638664.72616029|220133.92650567|123.26183905|27945|1 +638659.60264229|220138.65769163|123.85602723|27946|1 +638654.67817031|220143.13041045|118.32825126|27947|1 +638649.5536053|220147.86172803|118.85447135|27948|1 +638644.4356458|220152.58521094|119.23775105|27949|1 +638639.32296418|220157.30238214|119.50300051|27950|1 +638634.21288143|220162.0167049|119.73135912|27951|1 +638629.10662099|220166.72635689|119.86660695|27952|1 +638624.00228538|220171.43386526|119.97115891|27953|1 +638618.8967638|220176.14369547|120.17614216|27954|1 +638613.79754114|220180.84482167|120.14433008|27955|1 +638608.64893259|220185.59308754|120.23564562|27956|1 +638603.54935756|220190.29569842|120.29860935|27957|1 +638598.45079193|220194.99722538|120.34958308|27958|1 +638593.35141021|220199.70073974|120.5009881|27959|1 +638588.25548591|220204.39893453|120.4779476|27960|1 +638583.15865731|220209.09926077|120.56158917|27961|1 +638578.01595339|220213.84098552|120.56293793|27962|1 +638572.92092787|220218.53905969|120.59765216|27963|1 +638567.82614609|220223.2372973|120.66407614|27964|1 +638562.73302258|220227.93217379|120.58099268|27965|1 +638557.6399931|220232.62706036|120.50460649|27966|1 +638552.54668865|220237.32318581|120.5099085|27967|1 +638547.45904938|220242.01438965|120.54074389|27968|1 +638542.31809668|220246.7566258|120.71495686|27969|1 +638537.27286459|220251.41072318|120.91601476|27970|1 +638532.13334233|220256.1522598|121.1413782|27971|1 +638527.04139387|220260.84610966|121.06153175|27972|1 +638521.99680407|220265.49605245|120.96985344|27973|1 +638516.85771683|220270.23507062|121.02191548|27974|1 +638511.76773937|220274.93139497|121.29338783|27975|1 +638506.72440937|220279.58209941|121.35890954|27976|1 +638501.63451395|220284.27691155|121.51239815|27977|1 +638496.54516374|220288.97144978|121.68507633|27978|1 +638491.45715627|220293.66575444|121.93943341|27979|1 +638486.41944574|220298.31564191|122.36233867|27980|1 +638481.33513094|220303.00853446|122.77991402|27981|1 +638476.29228409|220307.65752096|122.74086516|27982|1 +638471.20611859|220312.34969345|122.95921506|27983|1 +638466.12250118|220317.04097054|123.29670211|27984|1 +638461.09011114|220321.6868114|123.78961255|27985|1 +638456.06045535|220326.33111734|124.36390422|27986|1 +638451.02941805|220330.97533661|124.82590485|27987|1 +638445.99514143|220335.62049106|125.1193666|27988|1 +638440.96887832|220340.2619136|125.71289435|27989|1 +638435.94374665|220344.90229586|126.30656162|27990|1 +638430.96166401|220349.50050834|126.70477997|27991|1 +638425.93416096|220354.14132596|127.15496735|27992|1 +638420.90343093|220358.78360855|127.48038999|27993|1 +638415.91901577|220363.38263525|127.75996419|27994|1 +638410.89185737|220368.02410153|128.1543037|27995|1 +638405.91818086|220372.61811591|128.70863376|27996|1 +638400.93460145|220377.21769403|128.96938116|27997|1 +638395.94838444|220381.81887422|129.16139773|27998|1 +638391.012215|220386.37468703|129.42540075|27999|1 +638386.03310699|220390.97160109|129.80450394|28000|1 +638381.05338985|220395.56885437|130.16481756|28001|1 +638376.11198107|220400.12807324|130.30959971|28002|1 +638371.12461962|220404.73033084|130.50117909|28003|1 +638366.18305339|220409.28993176|130.66429504|28004|1 +638361.67164261|220413.56394062|139.96237866|28005|1 +638361.36038993|220413.77069323|133.36056377|28006|2 +638356.91720761|220417.99510463|143.75531752|28007|1 +638356.3203555|220418.39583912|131.44525359|28008|2 +638352.13299143|220422.44422893|146.76738155|28009|1 +638346.90893543|220427.19280595|141.0454682|28010|1 +638346.41042675|220427.53408591|131.3018388|28011|2 +638342.525115|220431.35381956|150.73892382|28012|1 +638336.5503896|220436.62794748|131.29697397|28013|1 +638331.59014235|220441.20178088|131.20895126|28014|1 +638326.67404216|220445.73437334|131.08516322|28015|1 +638321.71084031|220450.31093744|130.99673123|28016|1 +638316.84342662|220454.79940703|130.94247397|28017|1 +638311.87497921|220459.38036507|130.81614654|28018|1 +638306.95029185|220463.92044593|130.65366311|28019|1 +638302.01594621|220468.46791973|130.36622892|28020|1 +638297.06861195|220473.02534108|129.91032095|28021|1 +638292.16971309|220477.53862789|129.50500535|28022|1 +638287.22051777|220482.09837746|129.09836889|28023|1 +638282.32467181|220486.61029458|128.81059983|28024|1 +638277.37136942|220491.17400135|128.41587895|28025|1 +638272.47392656|220495.6879293|128.17090737|28026|1 +638268.05699944|220499.83959372|134.59173759|28027|1 +638267.67974469|220500.1243016|129.38197075|28028|2 +638263.00826491|220504.46743307|132.23507673|28029|1 +638258.39632271|220508.76432416|135.80228938|28030|1 +638257.96621974|220509.09146762|130.07154864|28031|2 +638252.84178524|220513.77958098|126.92528788|28032|1 +638257.37829691|220506.60277294|138.4791546|28033|1 +638256.72405668|220507.10110017|129.75548358|28034|2 +638262.31447778|220502.03495436|138.20588701|28035|1 +638261.82586347|220502.40568263|131.57179496|28036|2 +638266.50337215|220498.04005628|128.27179443|28037|1 +638271.51386424|220493.40619212|128.21487686|28038|1 +638276.45371215|220488.84224662|128.53661601|28039|1 +638281.48547585|220484.19312121|128.84095153|28040|1 +638286.47208756|220479.5866342|129.219385|28041|1 +638291.44946765|220474.98682829|129.49812203|28042|1 +638296.48320175|220470.33430079|129.95855997|28043|1 +638301.51189647|220465.68597614|130.38185591|28044|1 +638306.4826278|220461.08969438|130.67936392|28045|1 +638311.49216925|220456.4561851|130.86608778|28046|1 +638316.44700355|220451.87216048|130.96406339|28047|1 +638321.49461503|220447.20218285|131.04662596|28048|1 +638326.49195912|220442.57842469|131.10895716|28049|1 +638331.44292632|220437.99811826|131.21928553|28050|1 +638336.48709304|220433.33155277|131.32112138|28051|1 +638342.32785771|220428.12657052|147.65704065|28052|1 +638341.88500667|220428.43227319|139.15544955|28053|2 +638341.47204637|220428.7173421|131.22770364|28054|3 +638346.46844659|220424.09551424|131.37757386|28055|1 +638352.22906953|220418.94459921|146.07257606|28056|1 +638351.48942309|220419.44567261|131.09320926|28057|2 +638356.87117122|220414.56607685|139.31711443|28058|1 +638356.48249869|220414.82668705|131.22452243|28059|2 +638362.01449781|220409.85066086|142.93127314|28060|1 +638366.47223629|220405.57469754|130.61009359|28061|1 +638371.44372183|220400.97048904|130.31710624|28062|1 +638376.47731135|220396.31309001|130.37038681|28063|1 +638381.49799416|220391.66412439|130.13674479|28064|1 +638386.46233012|220387.06461578|129.68775735|28065|1 +638391.52636808|220382.37431958|129.35158185|28066|1 +638396.50059898|220377.76870535|129.152375|28067|1 +638401.52309248|220373.11882133|128.98172461|28068|1 +638406.58645626|220368.42892316|128.62765249|28069|1 +638411.5944026|220363.78723659|128.02652519|28070|1 +638416.61360243|220359.1391063|127.75029034|28071|1 +638421.6300558|220354.49236875|127.38051682|28072|1 +638426.64780799|220349.84481416|127.0421182|28073|1 +638431.71435801|220345.15258589|126.73945699|28074|1 +638436.7260452|220340.50751544|126.14532463|28075|1 +638441.73820823|220335.86169635|125.52633792|28076|1 +638446.80255667|220331.16945072|125.05588197|28077|1 +638451.87135075|220326.47507838|124.74826292|28078|1 +638456.89051961|220321.8250727|124.31734883|28079|1 +638461.90829253|220317.17498238|123.77411579|28080|1 +638466.97682341|220312.47941035|123.34868974|28081|1 +638471.99988543|220307.82672001|122.99332467|28082|1 +638477.07428956|220303.12907432|122.84351956|28083|1 +638482.15231523|220298.43090227|122.92534729|28084|1 +638487.17418209|220293.77649643|122.33948421|28085|1 +638492.24785823|220289.07732068|122.0095502|28086|1 +638497.32310802|220284.37768333|121.76125788|28087|1 +638502.35223228|220279.72182763|121.60734138|28088|1 +638507.42930663|220275.02180272|121.46600089|28089|1 +638512.50662997|220270.32132182|121.3063266|28090|1 +638517.58450631|220265.62063719|121.17206476|28091|1 +638522.61638692|220260.96688763|121.40042337|28092|1 +638527.74236083|220256.22350064|121.41100879|28093|1 +638532.77331937|220251.56473995|121.15875391|28094|1 +638537.85259409|220246.86162957|120.93231147|28095|1 +638542.93231983|220242.15985722|120.85002795|28096|1 +638547.95986896|220237.50470333|120.63596617|28097|1 +638553.04004445|220232.80305244|120.59814515|28098|1 +638558.12036192|220228.10173014|120.59823817|28099|1 +638563.15234171|220223.44682605|120.74123438|28100|1 +638568.23220509|220218.74714624|120.84202843|28101|1 +638573.31450196|220214.04255415|120.72455629|28102|1 +638578.39686829|220209.3385863|120.66375988|28103|1 +638583.43183521|220204.67887214|120.63917529|28104|1 +638588.51542588|220199.97377376|120.57915092|28105|1 +638593.5534916|220195.30975015|120.43640586|28106|1 +638598.63697464|220190.60590153|120.47085034|28107|1 +638603.72436876|220185.89623281|120.32461711|28108|1 +638608.76462951|220181.23048535|120.2077496|28109|1 +638613.80169695|220176.57005335|120.2847311|28110|1 +638618.89207238|220171.8575599|120.1334191|28111|1 +638623.9324228|220167.19310591|120.12979141|28112|1 +638628.97658189|220162.52368241|120.0077521|28113|1 +638634.07261256|220157.804904|119.77025915|28114|1 +638639.07451435|220153.17329417|119.54595611|28115|1 +638644.17667918|220148.44755728|119.20316704|28116|1 +638649.24128895|220143.75330466|118.5955099|28117|1 +638654.25099158|220139.11349172|118.29063487|28118|1 +638659.15670396|220134.64230254|123.93376217|28119|1 +638664.22399296|220129.94427928|123.22052056|28120|1 +638669.40700143|220125.08502867|118.11163149|28121|1 +638674.46280873|220120.40134963|117.9923362|28122|1 +638679.46953943|220115.76390668|117.94421811|28123|1 +638684.52534874|220111.08106939|117.89406294|28124|1 +638689.54405067|220106.42982211|117.62173483|28125|1 +638694.57061489|220101.76962793|117.21236365|28126|1 +638699.60118123|220097.10528309|116.76578536|28127|1 +638704.68438486|220092.39165297|116.26791708|28128|1 +638709.67888314|220087.75891953|115.68006342|28129|1 +638714.74542245|220083.05424665|114.65459838|28130|1 +638719.82513285|220078.33520104|113.4488277|28131|1 +638724.84870378|220073.67110518|112.49391664|28132|1 +638729.91600113|220068.9684696|111.69390806|28133|1 +638734.94767383|220064.29680689|110.7332671|28134|1 +638739.98028064|220059.6249634|109.82891119|28135|1 +638745.05000735|220054.92198892|109.18564684|28136|1 +638750.03450459|220050.29621834|108.41314361|28137|1 +638755.09988444|220045.59953586|107.95722634|28138|1 +638759.37637925|220041.77170968|118.94170341|28139|1 +638765.09570793|220036.33077425|107.03467615|28140|1 +638768.95975469|220032.95875125|124.125016|28141|1 +638770.10429542|220031.68067391|106.09442469|28142|2 +638775.10633798|220027.04770838|106.0625568|28143|1 +638778.86516855|220023.78481157|124.12327657|28144|1 +638779.99376091|220022.53328984|107.06300937|28145|2 +638785.03810156|220017.84527739|105.7247814|28146|1 +638789.05276092|220014.29270329|119.42655851|28147|1 +638790.02529293|220013.22116374|105.29457424|28148|2 +638794.17906802|220009.51303113|116.78699341|28149|1 +638794.99800703|220008.61347128|105.11302216|28150|2 +638799.92175296|220004.05156386|104.97423036|28151|1 +638804.52542111|219999.84767885|109.92500784|28152|1 +638804.91765187|219999.41931425|104.53762358|28153|2 +638807.87434673|219997.0006087|131.00084262|28154|1 +638809.8693265|219994.82778525|104.08773386|28155|2 +638813.0335532|219992.18617758|128.00599617|28156|1 +638814.85266679|219990.21017864|103.89955892|28157|2 +638818.54186492|219986.98742884|119.96843349|28158|1 +638819.81646707|219985.60643993|103.36867864|28159|2 +638824.69103146|219981.0996775|104.02357021|28160|1 +638828.2513651|219978.00993851|121.22741963|28161|1 +638824.3355074|219978.06244634|118.1839807|28162|1 +638819.3247506|219982.69294468|118.1378811|28163|1 +638820.33428595|219981.60005623|105.08526566|28164|2 +638813.9056225|219987.77471563|124.12371375|28165|1 +638815.49222886|219986.0527196|103.24893687|28166|2 +638808.92661884|219992.38833685|125.09954451|28167|1 +638809.466171|219991.80121269|117.87485477|28168|2 +638810.53831923|219990.63453369|103.51867908|28169|3 +638805.47013048|219995.32540773|104.06616304|28170|1 +638800.47236487|219999.94799269|104.35370885|28171|1 +638795.39351766|220004.65169238|105.14415521|28172|1 +638788.73929401|220011.09874317|129.41670358|28173|1 +638790.42028553|220009.24833692|105.16460982|28174|2 +638784.7546317|220014.60074068|114.69201942|28175|1 +638785.38348375|220013.90632255|105.43957963|28176|2 +638780.36710922|220018.54096053|105.44742103|28177|1 +638774.23399853|220024.4263396|123.32629106|28178|1 +638774.94547586|220023.63544462|112.42837632|28179|2 +638775.31664688|220023.22284214|106.74304686|28180|3 +638768.78563672|220029.54816041|130.52298246|28181|1 +638764.8425577|220032.98870243|114.00847838|28182|1 +638765.30020797|220032.47629489|106.69713329|28183|2 +638759.36894941|220038.14094052|121.78483788|28184|1 +638760.27807447|220037.11915353|106.94185373|28185|2 +638755.19004905|220041.82705015|107.52319615|28186|1 +638750.15622758|220046.48422042|108.05469035|28187|1 +638745.12720929|220051.13657255|108.55524685|28188|1 +638740.03705889|220055.84895492|109.34317242|28189|1 +638734.99928087|220060.51275828|110.11824294|28190|1 +638729.91542467|220065.21956219|110.92566504|28191|1 +638724.87578065|220069.88722722|111.87572058|28192|1 +638719.79215688|220074.59557544|112.82723649|28193|1 +638714.699966|220079.31496638|114.03471869|28194|1 +638709.65644859|220083.99033165|115.32225198|28195|1 +638704.59846559|220088.671565|115.99450997|28196|1 +638699.54978949|220093.34252398|116.52992952|28197|1 +638694.497023|220098.01916855|117.2215166|28198|1 +638689.45846304|220102.67948859|117.65148191|28199|1 +638684.42841245|220107.33011804|117.93197698|28200|1 +638679.36311867|220112.01009245|117.94663658|28201|1 +638674.34634668|220116.64532899|117.97180718|28202|1 +638669.32707255|220121.28410154|118.09688817|28203|1 +638664.09455737|220126.17731065|122.91681756|28204|1 +638659.04149899|220130.86262994|124.29700584|28205|1 +638654.10884218|220135.39369335|122.15769029|28206|1 +638654.23867016|220135.22546776|118.20723514|28207|2 +638649.17420138|220139.90706465|118.41689719|28208|1 +638644.09827663|220144.604512|119.05757564|28209|1 +638639.07938066|220149.24637891|119.46453766|28210|1 +638634.01646077|220153.92823034|119.8124613|28211|1 +638628.95973622|220158.60230508|119.99215302|28212|1 +638623.90493471|220163.27430188|120.14716713|28213|1 +638618.85425311|220167.94097106|120.17757463|28214|1 +638613.85110193|220172.5641812|120.24820302|28215|1 +638608.80184167|220177.22969584|120.29151209|28216|1 +638603.70537514|220181.9391406|120.35783376|28217|1 +638598.70411582|220186.56106943|120.46635758|28218|1 +638593.6096421|220191.26845221|120.51468961|28219|1 +638588.56463953|220195.9291347|120.48416118|28220|1 +638583.51750377|220200.594076|120.64129609|28221|1 +638578.47302281|220205.25489602|120.6612298|28222|1 +638573.37995982|220209.96237137|120.823583|28223|1 +638568.33499042|220214.62578013|121.01904123|28224|1 +638563.24616943|220219.32576616|120.88855591|28225|1 +638558.20461516|220223.98252567|120.79716596|28226|1 +638553.16290251|220228.63996863|120.7497269|28227|1 +638548.07318394|220233.34369372|120.85781354|28228|1 +638543.03176088|220238.0018681|120.892165|28229|1 +638537.99556436|220242.65559527|120.95804948|28230|1 +638532.90687783|220247.35769776|121.0110045|28231|1 +638527.81893475|220252.06346245|121.42063613|28232|1 +638522.77918509|220256.72201098|121.61230853|28233|1 +638517.69157472|220261.42176863|121.554005|28234|1 +638512.650606|220266.07665616|121.35249131|28235|1 +638507.56398385|220270.77809854|121.50745891|28236|1 +638502.47798511|220275.47927796|121.68787616|28237|1 +638497.43999049|220280.13615021|121.87469304|28238|1 +638492.40215839|220284.79257119|122.03671138|28239|1 +638487.31944351|220289.49278614|122.38695117|28240|1 +638482.24099939|220294.19217699|122.99385487|28241|1 +638477.2014036|220298.84734942|122.91924533|28242|1 +638472.11756285|220303.5458825|123.04570298|28243|1 +638467.08557175|220308.19943587|123.41528116|28244|1 +638462.05548268|220312.85199233|123.84754401|28245|1 +638456.97969292|220317.54735854|124.32496698|28246|1 +638451.95230237|220322.19796224|124.80144118|28247|1 +638446.91934337|220326.85029381|124.99691801|28248|1 +638441.84454627|220331.54406982|125.41911634|28249|1 +638436.82271053|220336.19114513|126.02742461|28250|1 +638431.79932712|220340.83843695|126.53592482|28251|1 +638426.7249409|220345.53101307|126.89039692|28252|1 +638421.69948868|220350.17877748|127.28066225|28253|1 +638416.67372838|220354.8265279|127.64611975|28254|1 +638411.59931097|220359.51869157|127.96411958|28255|1 +638406.62785072|220364.11746391|128.52119366|28256|1 +638401.60346516|220368.76094964|128.91837021|28257|1 +638396.5226711|220373.45352171|129.06238962|28258|1 +638391.53743768|220378.05804477|129.2324633|28259|1 +638386.50917036|220382.70383994|129.52404608|28260|1 +638381.48570263|220387.34665022|129.93443116|28261|1 +638376.51115956|220391.94456852|130.37302852|28262|1 +638371.47056058|220396.59828554|130.37793986|28263|1 +638366.43743569|220401.24737645|130.5703192|28264|1 +638361.87772683|220405.57116126|139.995093|28265|1 +638361.44084464|220405.85991262|130.5347492|28266|2 +638356.84673104|220410.21585198|139.98718649|28267|1 +638356.42606896|220410.49706022|131.13929956|28268|2 +638352.2041808|220414.58657868|146.97596458|28269|1 +638346.89041957|220419.41092751|140.25131043|28270|1 +638346.44092996|220419.71759048|131.3055037|28271|2 +638342.11505241|220423.88027044|145.25270818|28272|1 +638341.39071856|220424.37908028|131.21798329|28273|2 +638336.90936666|220428.62387694|140.10372845|28274|1 +638336.45363511|220428.94043061|131.49675752|28275|2 +638331.44002043|220433.56613403|131.24943259|28276|1 +638326.43391933|220438.18694832|131.17059073|28277|1 +638321.47229889|220442.76627847|131.06242968|28278|1 +638316.46579312|220447.38799809|131.02729687|28279|1 +638311.49854729|220451.97199957|130.87536165|28280|1 +638306.48261525|220456.60115328|130.73437463|28281|1 +638301.50840058|220461.1909173|130.52628459|28282|1 +638296.5219252|220465.79004508|130.1561297|28283|1 +638291.52736849|220470.39557928|129.69875205|28284|1 +638286.53469745|220475.00021088|129.30991919|28285|1 +638281.54709888|220479.60151526|129.03320995|28286|1 +638276.5585423|220484.20393902|128.77517867|28287|1 +638271.61424052|220488.76522386|128.49904613|28288|1 +638266.618485|220493.37385068|128.20358451|28289|1 +638261.82920971|220497.81840879|130.11170441|28290|1 +638257.05492519|220502.25100296|132.17448495|28291|1 +638252.58468964|220506.45074984|138.19950599|28292|1 +638253.93076692|220500.99295066|127.98503927|28293|1 +638258.90237519|220496.38974833|128.05472818|28294|1 +638263.88335815|220491.77979495|128.2799893|28295|1 +638268.86167114|220487.17222884|128.49901823|28296|1 +638273.8873254|220482.5211857|128.74358984|28297|1 +638278.86508397|220477.91481649|129.01873638|28298|1 +638283.84417739|220473.30902074|129.34370324|28299|1 +638288.86778204|220468.66331944|129.65102463|28300|1 +638293.85051585|220464.0571765|130.10068181|28301|1 +638298.87562126|220459.41131681|130.50797869|28302|1 +638303.83864288|220454.82046546|130.72088705|28303|1 +638308.84445842|220450.18943381|130.88533316|28304|1 +638313.84592927|220445.56187778|131.00623765|28305|1 +638318.84433276|220440.93684489|131.10230639|28306|1 +638323.83876664|220436.31494455|131.15478702|28307|1 +638328.83249048|220431.69384726|131.21979713|28308|1 +638333.78247755|220427.11440714|131.38254101|28309|1 +638339.66173223|220421.87461595|147.64864115|28310|1 +638338.8054667|220422.46256223|131.15034077|28311|2 +638344.59544697|220417.30069393|147.04185837|28312|1 +638344.06503252|220417.66153033|136.54913831|28313|2 +638343.79950941|220417.84216343|131.29652749|28314|3 +638349.63865784|220412.65287844|148.64971693|28315|1 +638349.05573293|220413.04553432|136.8020071|28316|2 +638348.77056257|220413.23762391|131.00604231|28317|3 +638354.04299262|220408.42002085|136.02796908|28318|1 +638353.81135609|220408.57439619|131.18605029|28319|2 +638359.34723145|220403.59796282|143.07027889|28320|1 +638358.77889587|220403.97247942|130.84567968|28321|2 +638363.79313555|220399.32717207|130.48932863|28322|1 +638368.77065798|220394.71887129|130.37986533|28323|1 +638373.75415532|220390.10696881|130.42638351|28324|1 +638378.7706389|220385.46050159|130.14522802|28325|1 +638383.77833001|220380.81946591|129.64571332|28326|1 +638388.74801863|220376.21646561|129.3801569|28327|1 +638393.76706905|220371.56846801|129.16801129|28328|1 +638398.79058692|220366.91795501|129.08716025|28329|1 +638403.80330435|220362.27372716|128.7067269|28330|1 +638408.8136695|220357.63066951|128.24523786|28331|1 +638413.82578951|220352.98644755|127.82133731|28332|1 +638418.83879783|220348.34155843|127.41005926|28333|1 +638423.85465633|220343.69503441|127.08012525|28334|1 +638428.86928961|220339.04894687|126.69410153|28335|1 +638433.88540587|220334.40194655|126.3456942|28336|1 +638438.89840418|220329.75605491|125.85373254|28337|1 +638443.90904602|220325.11064269|125.22443946|28338|1 +638448.93046843|220320.46058306|125.02637674|28339|1 +638453.99687663|220315.76735555|124.70223773|28340|1 +638459.01369447|220311.11830824|124.24215327|28341|1 +638464.03120404|220306.46846698|123.76971605|28342|1 +638469.05249795|220301.81720746|123.46613397|28343|1 +638474.07492037|220297.16536525|123.20019618|28344|1 +638479.14738399|220292.46884887|123.06496696|28345|1 +638484.17191422|220287.81590343|122.86819718|28346|1 +638489.19402017|220283.16211142|122.42160029|28347|1 +638494.26530475|220278.46360087|122.0373439|28348|1 +638499.29243622|220273.80940492|121.93491274|28349|1 +638504.31919689|220269.15454023|121.7514073|28350|1 +638509.39460556|220264.45615071|121.68683436|28351|1 +638514.47109214|220259.75930899|121.828919|28352|1 +638519.45151204|220255.14822999|121.72086026|28353|1 +638524.5272439|220250.44876751|121.59478399|28354|1 +638529.60338834|220245.74668956|121.28788117|28355|1 +638534.63281919|220241.09004668|121.16199093|28356|1 +638539.70481053|220236.39527856|121.13694125|28357|1 +638544.73453488|220231.73913511|121.07398683|28358|1 +638549.81171584|220227.04018532|121.09969694|28359|1 +638554.88931944|220222.34046211|121.09457166|28360|1 +638559.92074503|220217.68189182|120.96365846|28361|1 +638564.95130726|220213.02619788|121.00162831|28362|1 +638570.03111964|220208.32327535|120.90380152|28363|1 +638575.11199866|220203.61898208|120.77517656|28364|1 +638580.14517625|220198.95971243|120.72023097|28365|1 +638585.22870663|220194.25204099|120.51739643|28366|1 +638590.26098031|220189.59545524|120.61288847|28367|1 +638595.29682235|220184.93325536|120.52118225|28368|1 +638600.38113536|220180.22617375|120.42564371|28369|1 +638605.46633776|220175.51826885|120.33057025|28370|1 +638610.50306614|220170.85624933|120.32092431|28371|1 +638615.54180176|220166.19167859|120.25530958|28372|1 +638620.627446|220161.48452435|120.25504913|28373|1 +638625.67066165|220156.81449753|120.08385924|28374|1 +638630.71581591|220152.14237108|119.88795452|28375|1 +638635.7665832|220147.46320479|119.54249585|28376|1 +638640.81970579|220142.78162681|119.17860105|28377|1 +638645.87995865|220138.09137828|118.64650223|28378|1 +638650.93813602|220133.40474537|118.25206041|28379|1 +638655.81073294|220128.95815535|123.40563521|28380|1 +638660.83594762|220124.31304831|123.85992467|28381|1 +638666.08476034|220119.38644524|118.20008208|28382|1 +638671.14760908|220114.69769747|117.88179389|28383|1 +638676.19821826|220110.02473167|117.92565177|28384|1 +638681.20304995|220105.39382566|117.94696214|28385|1 +638686.26309418|220100.70998638|117.81666286|28386|1 +638691.29496238|220096.04708125|117.27080671|28387|1 +638696.38240027|220091.33137871|116.61119914|28388|1 +638701.42101366|220086.66193499|116.04099094|28389|1 +638706.51241405|220081.94311494|115.42589238|28390|1 +638711.59781688|220077.22003489|114.01498032|28391|1 +638716.67776573|220072.5046179|112.81643713|28392|1 +638721.76169572|220067.78567854|111.63084201|28393|1 +638726.45244789|220063.52316998|117.97723942|28394|1 +638726.75351186|220063.17450223|112.27721315|28395|2 +638731.90835885|220058.37540186|109.90890646|28396|1 +638736.94421336|220053.70387012|108.96218096|28397|1 +638742.01515903|220049.00355834|108.31390296|28398|1 +638746.47167957|220044.99206107|117.45340058|28399|1 +638746.79058152|220044.62964108|111.97476589|28400|2 +638751.38704454|220040.46643728|119.30657489|28401|1 +638756.27541146|220035.96087474|120.76131691|28402|1 +638757.04414491|220035.09446361|108.13968068|28403|2 +638762.07486133|220030.42248769|106.77109172|28404|1 +638767.14736493|220025.72343096|106.34209379|28405|1 +638772.1341738|220021.10218075|105.79516794|28406|1 +638777.16405754|220016.44262171|105.37280218|28407|1 +638782.11800816|220011.85887967|105.40425148|28408|1 +638787.15741139|220007.1897525|104.91990798|28409|1 +638790.34539794|220004.54932232|130.13842842|28410|1 +638792.15133427|220002.56276211|104.44148042|28411|2 +638795.90097666|219999.29271201|120.71138498|28412|1 +638797.08416552|219997.9950199|104.18612805|28413|2 +638800.77845748|219994.79033806|121.60909942|28414|1 +638802.06956255|219993.37836006|103.90642363|28415|2 +638805.52075893|219990.43529774|124.32030679|28416|1 +638807.05669281|219988.76024429|103.63910918|28417|2 +638812.02160679|219984.16672803|103.7009753|28418|1 +638814.98536612|219981.73668427|129.17272729|28419|1 +638816.97546046|219979.57776912|103.30202211|28420|2 +638814.50922116|219977.89212483|103.60732501|28421|1 +638807.78222755|219984.39325589|126.74582871|28422|1 +638808.83105159|219983.24997882|112.81986949|28423|2 +638809.55755851|219982.45804544|103.17356457|28424|3 +638804.49464189|219987.13759744|103.60222764|28425|1 +638798.82101392|219992.49541367|113.1477199|28426|1 +638799.497961|219991.75335226|103.82693065|28427|2 +638793.51335286|219997.44730813|117.27040673|28428|1 +638794.45960184|219996.40696279|103.99504166|28429|2 +638788.35397086|220002.24653616|120.14580907|28430|1 +638789.48788025|220000.99607681|103.93388248|28431|2 +638782.705844|220007.58818613|130.28401052|28432|1 +638779.42608033|220010.29772136|104.93017715|28433|1 +638772.97530075|220016.52830407|126.69344111|28434|1 +638774.41261222|220014.92758556|104.88737967|28435|2 +638769.3719094|220019.58974807|105.30499223|28436|1 +638763.8290248|220024.82522736|114.47061854|28437|1 +638764.34009616|220024.25196655|106.38849105|28438|2 +638759.33293756|220028.87769693|106.37091069|28439|1 +638753.23462918|220034.73723217|124.40272053|28440|1 +638754.03462896|220033.83289295|111.1893611|28441|2 +638754.24941973|220033.59008821|107.64172869|28442|3 +638749.27413694|220038.18069397|107.170017|28443|1 +638743.5452858|220043.62013234|118.90155694|28444|1 +638744.22845663|220042.84130514|107.0909612|28445|2 +638739.22574395|220047.47416281|107.97596012|28446|1 +638734.19434909|220052.13008414|108.58152437|28447|1 +638729.1513424|220056.80016177|109.46134219|28448|1 +638723.92656267|220061.67102001|112.96513533|28449|1 +638719.02629466|220066.17708|111.27265851|28450|1 +638713.98021179|220070.85366907|112.44613341|28451|1 +638708.87986639|220075.58327049|113.84566009|28452|1 +638703.83166684|220080.26485441|115.26288805|28453|1 +638698.77978309|220084.93925964|115.82799887|28454|1 +638693.72934223|220089.61272597|116.4245776|28455|1 +638688.71646291|220094.25522901|117.32509188|28456|1 +638683.68071629|220098.91255437|117.71633389|28457|1 +638678.65906135|220103.55321352|117.81464437|28458|1 +638673.69417405|220108.13892402|117.71745941|28459|1 +638668.63292043|220112.81438539|117.66852276|28460|1 +638663.45061111|220117.66000325|122.29677045|28461|1 +638663.60730241|220117.46136234|117.97927651|28462|2 +638658.37078959|220122.37916831|124.38023814|28463|1 +638653.42025193|220126.93335659|122.81353064|28464|1 +638648.56649564|220131.35943856|118.14477372|28465|1 +638643.4941311|220136.0518942|118.6337402|28466|1 +638638.47138581|220140.69857046|119.13248285|28467|1 +638633.45563669|220145.33668872|119.46280753|28468|1 +638628.39361627|220150.0178143|119.80904755|28469|1 +638623.38503163|220154.64753195|119.99607837|28470|1 +638618.33158178|220159.318023|120.12429406|28471|1 +638613.28138779|220163.98434907|120.15911991|28472|1 +638608.27940899|220168.6061878|120.20289407|28473|1 +638603.23035423|220173.27178479|120.26310447|28474|1 +638598.18201278|220177.93680354|120.32981681|28475|1 +638593.18276085|220182.55590379|120.35513624|28476|1 +638588.13436686|220187.22223184|120.52218685|28477|1 +638583.08964116|220191.88292096|120.5083179|28478|1 +638578.09150968|220196.50185604|120.60261|28479|1 +638572.9985192|220201.20912667|120.74368075|28480|1 +638568.002248|220205.82596431|120.80696073|28481|1 +638562.9596458|220210.48487261|120.80640262|28482|1 +638557.91650592|220215.1457584|120.92477703|28483|1 +638552.87365383|220219.80717017|121.10586401|28484|1 +638547.83180557|220224.46718674|121.24968808|28485|1 +638542.79064191|220229.12657733|121.39373539|28486|1 +638537.75056532|220233.78271923|121.35677013|28487|1 +638532.71056844|220238.43933859|121.36375576|28488|1 +638527.62772571|220243.1362952|121.42671949|28489|1 +638522.58758969|220247.79165962|121.32174894|28490|1 +638517.54903146|220252.45264557|121.78567504|28491|1 +638512.5111001|220257.11103393|122.08733165|28492|1 +638507.47202334|220261.76613947|122.03921356|28493|1 +638502.38459533|220266.46466096|121.88514824|28494|1 +638497.3474049|220271.12137994|122.10629797|28495|1 +638492.31039217|220275.77747139|122.29013828|28496|1 +638487.22801415|220280.47741218|122.62462086|28497|1 +638482.19547567|220285.13280452|123.08396118|28498|1 +638477.15932193|220289.78735036|123.2060377|28499|1 +638472.12371502|220294.44163056|123.34704332|28500|1 +638467.04424035|220299.13883944|123.67664247|28501|1 +638462.01195899|220303.7917688|123.95563995|28502|1 +638456.98281061|220308.44351315|124.37227582|28503|1 +638451.95512703|220313.09430543|124.82034239|28504|1 +638446.92414711|220317.74581449|125.0811363|28505|1 +638441.84665113|220322.440696|125.368617|28506|1 +638436.82376779|220327.08846477|125.92978387|28507|1 +638431.84837305|220331.69182021|126.45186467|28508|1 +638426.772195|220336.38534817|126.72774606|28509|1 +638421.74617498|220341.03355169|127.08949214|28510|1 +638416.76777767|220345.63760208|127.44305266|28511|1 +638411.6953592|220350.32884645|127.81352382|28512|1 +638406.67255467|220354.97486888|128.23824293|28513|1 +638401.70169485|220359.57429301|128.77930866|28514|1 +638396.6741765|220364.22473518|129.03566562|28515|1 +638391.643287|220368.87861305|129.19858623|28516|1 +638386.61375516|220373.53178523|129.40542053|28517|1 +638381.58423042|220378.18503359|129.61870096|28518|1 +638376.5665292|220382.83099826|130.12560127|28519|1 +638371.58659065|220387.43904283|130.3922832|28520|1 +638366.54350956|220392.10111832|130.30648361|28521|1 +638361.56382984|220396.70924001|130.59822453|28522|1 +638351.73069159|220405.86622068|135.80619612|28523|1 +638351.50443576|220406.01688181|131.08910717|28524|2 +638346.62889965|220410.55511701|133.50848062|28525|1 +638342.10490171|220414.85305443|142.75818569|28526|1 +638341.53471757|220415.24063316|131.5044873|28527|2 +638337.18570265|220419.4277487|144.86169871|28528|1 +638336.47853406|220419.91300209|131.27021276|28529|2 +638331.80149882|220424.31225213|137.28139275|28530|1 +638331.4832186|220424.53258372|131.31905639|28531|2 +638326.48106385|220429.1571782|131.26194348|28532|1 +638321.47685064|220433.78352454|131.19243131|28533|1 +638316.47229299|220438.41042756|131.14173662|28534|1 +638311.46449766|220443.03994265|131.05997401|28535|1 +638306.49538906|220447.63214239|130.8551675|28536|1 +638301.48320362|220452.26549288|130.75485714|28537|1 +638296.45998545|220456.90719809|130.50514165|28538|1 +638291.4736328|220461.51311569|130.11969464|28539|1 +638286.43830256|220466.16456599|129.7519303|28540|1 +638281.498951|220470.72779453|129.42980979|28541|1 +638276.46385115|220475.37997014|129.13705498|28542|1 +638271.47464569|220479.98978038|128.85143463|28543|1 +638266.53533215|220484.55421856|128.62862918|28544|1 +638261.5460493|220489.16487911|128.40520051|28545|1 +638256.60007214|220493.73509661|128.15097366|28546|1 +638256.53845259|220490.58447202|128.30473202|28547|1 +638261.56638449|220485.92975059|128.53267206|28548|1 +638266.59250373|220481.27678181|128.76706752|28549|1 +638271.56818181|220476.67040169|128.9947657|28550|1 +638276.5935436|220472.01645736|129.29797571|28551|1 +638281.56839077|220467.40820899|129.60046018|28552|1 +638286.58788039|220462.75851456|129.89150346|28553|1 +638291.61107205|220458.10654379|130.27620633|28554|1 +638296.62829986|220453.45940531|130.60501482|28555|1 +638301.63525309|220448.82015722|130.80314266|28556|1 +638306.64141722|220444.18186405|131.02009729|28557|1 +638311.63621192|220439.55209359|131.0750894|28558|1 +638316.6815063|220434.87654561|131.20675604|28559|1 +638321.62530298|220430.29385742|131.25389744|28560|1 +638326.66274448|220425.62449111|131.29863899|28561|1 +638332.10543264|220420.68621098|139.92362745|28562|1 +638331.64657606|220421.00362693|131.2542137|28563|2 +638337.47520039|220415.80379821|147.60873653|28564|1 +638336.63547261|220416.37953904|131.32833026|28565|2 +638341.6800787|220411.70624904|131.59199841|28566|1 +638346.75205926|220407.02702919|133.42574131|28567|1 +638351.67205756|220402.43810619|131.18793855|28568|1 +638357.09212666|220397.53180187|140.7040465|28569|1 +638356.87349328|220397.67553403|135.96759125|28570|2 +638361.65033046|220393.17940294|130.52206158|28571|1 +638366.61864757|220388.57017306|130.25949104|28572|1 +638371.66273465|220383.89921652|130.67408981|28573|1 +638376.66105532|220379.25732814|130.01524499|28574|1 +638381.67110711|220374.60798081|129.63119325|28575|1 +638386.68848334|220369.95417223|129.4346002|28576|1 +638391.6591351|220365.34392899|129.26583807|28577|1 +638396.67420329|220360.69163539|129.01951773|28578|1 +638406.69175415|220351.3939767|128.14636928|28579|1 +638411.70333138|220346.74335836|127.77559117|28580|1 +638416.76249143|220342.0486177|127.39660889|28581|1 +638421.72835817|220337.44070668|127.0594195|28582|1 +638426.78835776|220332.74518969|126.68096742|28583|1 +638431.80450685|220328.09172969|126.42330822|28584|1 +638436.81307815|220323.44134176|125.84717479|28585|1 +638441.87132575|220318.74559141|125.31967105|28586|1 +638446.88980139|220314.09044683|125.10006541|28587|1 +638451.90669887|220309.43567854|124.79313469|28588|1 +638456.96948426|220304.73711816|124.37901031|28589|1 +638461.98497728|220300.08186884|123.92877642|28590|1 +638467.00556702|220295.4250756|123.73489019|28591|1 +638472.07266083|220290.7242341|123.45917624|28592|1 +638477.09507596|220286.06644865|123.32198434|28593|1 +638482.11717232|220281.40841574|123.14120431|28594|1 +638487.186059|220276.70593103|122.86644844|28595|1 +638492.20727372|220272.04646265|122.50487909|28596|1 +638497.2310027|220267.38714508|122.34346537|28597|1 +638502.30352237|220262.68439451|122.31967142|28598|1 +638507.32878426|220258.02575645|122.32745701|28599|1 +638512.35273804|220253.36430088|122.01044317|28600|1 +638517.424818|220248.65707625|121.59392822|28601|1 +638522.45137126|220243.99902564|121.74608668|28602|1 +638527.47315115|220239.34291182|121.69840577|28603|1 +638532.54676242|220234.6390066|121.66409152|28604|1 +638537.57322349|220229.97847987|121.61066212|28605|1 +638542.60047161|220225.315991|121.45742465|28606|1 +638547.67639855|220220.60731405|121.21168102|28607|1 +638552.70485416|220215.94425141|121.10268281|28608|1 +638557.7344924|220211.27923601|120.9251491|28609|1 +638562.81217435|220206.57018056|120.78044137|28610|1 +638567.79503529|220201.94951768|120.68937697|28611|1 +638572.8737204|220197.24007955|120.58904801|28612|1 +638577.95168973|220192.53261848|120.59537322|28613|1 +638582.93702181|220187.90927903|120.47344554|28614|1 +638588.0166823|220183.19987503|120.4491772|28615|1 +638593.05169367|220178.53020767|120.29831169|28616|1 +638598.08568345|220173.86280363|120.2538585|28617|1 +638603.16550173|220169.15449491|120.33065397|28618|1 +638608.20278425|220164.48296137|120.19932219|28619|1 +638613.23880641|220159.81383478|120.16815193|28620|1 +638618.27580304|220155.14372963|120.13096343|28621|1 +638623.31577128|220150.46986192|120.01284947|28622|1 +638628.36300233|220145.78649028|119.67023714|28623|1 +638633.41218116|220141.10123977|119.32169028|28624|1 +638638.46486503|220136.41204951|118.91726764|28625|1 +638643.52052848|220131.71970988|118.48198171|28626|1 +638648.57464332|220127.0302056|118.1593682|28627|1 +638653.4065029|220122.61156591|123.01286771|28628|1 +638658.40348049|220117.995034|124.20642515|28629|1 +638663.66250063|220113.04684194|118.2190205|28630|1 +638668.6680236|220108.40585291|118.08073099|28631|1 +638673.73685589|220103.70183635|117.58477887|28632|1 +638678.74202267|220099.06233675|117.54038149|28633|1 +638683.75426215|220094.41458116|117.35886663|28634|1 +638688.83504445|220089.69796453|116.73917298|28635|1 +638693.87286158|220085.02058116|116.07803992|28636|1 +638698.91660949|220080.33693501|115.3548268|28637|1 +638703.97221189|220075.6400737|114.45116853|28638|1 +638708.41571794|220071.66585945|126.12407937|28639|1 +638708.73860063|220071.28516196|119.53059888|28640|2 +638709.07063932|220070.89366898|112.75017128|28641|3 +638713.4927059|220066.94160839|124.60874558|28642|1 +638719.22967231|220061.4492692|110.42786187|28643|1 +638724.30395549|220056.73474007|109.49480068|28644|1 +638729.37002203|220052.03059691|108.78641459|28645|1 +638733.85919523|220047.97900469|117.63212491|28646|1 +638734.39702422|220047.3613734|107.9795506|28647|2 +638738.34748484|220043.9340033|126.94136135|28648|1 +638744.47419921|220038.01935411|107.80350518|28649|1 +638749.52234054|220033.32808657|106.79811338|28650|1 +638753.65329466|220029.672972|120.87251035|28651|1 +638754.51888624|220028.69594414|106.70789545|28652|2 +638758.29167224|220025.44013194|126.24323513|28653|1 +638759.55501406|220024.0196592|106.01413175|28654|2 +638764.59309651|220019.34187953|105.34550146|28655|1 +638768.09948913|220016.38354809|128.97978054|28656|1 +638769.61757014|220014.68914331|105.67869109|28657|2 +638774.67732029|220009.97932055|104.04634095|28658|1 +638778.25070761|220006.92729609|125.12922648|28659|1 +638779.65763989|220005.36751395|104.38585579|28660|2 +638783.0860608|220002.47084954|127.17448247|28661|1 +638784.72273253|220000.66218765|103.513005|28662|2 +638788.16180903|219997.74045758|125.07876434|28663|1 +638789.63512126|219996.11731408|104.18148646|28664|2 +638794.67171122|219991.44439315|103.79377912|28665|1 +638797.84361831|219988.79790164|127.61190781|28666|1 +638798.32551663|219988.27008484|121.02575711|28667|2 +638799.57845597|219986.89775699|103.90174484|28668|3 +638802.8210073|219984.18519226|127.66074214|28669|1 +638804.61057138|219982.2305894|103.64467164|28670|2 +638807.78684553|219979.56961621|126.62067331|28671|1 +638809.62897936|219977.56293777|102.32983764|28672|2 +638805.01444531|219978.42485401|102.75550554|28673|1 +638798.02156944|219985.21620371|128.79592163|28674|1 +638798.46300402|219984.73325911|122.80043374|28675|2 +638799.88337571|219983.17932351|103.50923778|28676|3 +638793.27213423|219989.55854092|124.80151559|28677|1 +638794.82728859|219987.85222134|103.28182795|28678|2 +638788.22523479|219994.22668417|124.8769251|28679|1 +638789.69278695|219992.61165579|104.17970982|28680|2 +638784.59766164|219997.32841252|104.57475627|28681|1 +638777.80880771|220003.9214468|129.85370104|28682|1 +638779.60427897|220001.93303766|103.52159054|28683|2 +638773.12295609|220008.19080959|124.71952974|28684|1 +638773.63578749|220007.62097597|117.04542467|28685|2 +638774.50934858|220006.65031678|103.97334061|28686|3 +638768.30375244|220012.60657278|121.43731421|28687|1 +638769.40973181|220011.37340807|104.54377205|28688|2 +638764.29549082|220016.10988679|105.38239231|28689|1 +638758.27351996|220021.85658623|119.98526041|28690|1 +638759.15224079|220020.86955465|105.97908266|28691|2 +638752.70133816|220027.11420342|128.71866108|28692|1 +638753.92713259|220025.73194403|108.7481936|28693|2 +638748.96385112|220030.28985706|106.50831653|28694|1 +638743.82640103|220035.04487882|107.16298486|28695|1 +638737.81770711|220040.80613692|123.92530686|28696|1 +638733.6564256|220044.44748921|107.63923581|28697|1 +638728.52731064|220049.19497231|108.30819167|28698|1 +638723.39956643|220053.94165994|109.01519179|28699|1 +638718.26654091|220058.69534118|109.89106566|28700|1 +638712.48135994|220064.21401108|123.77187406|28701|1 +638713.14207511|220063.4399415|110.67417291|28702|2 +638707.18130223|220069.17098551|128.57084655|28703|1 +638702.82381695|220073.01415338|113.91894879|28704|1 +638697.70471896|220077.75583296|114.8662603|28705|1 +638692.59317382|220082.48952534|115.73315796|28706|1 +638687.44749697|220087.25195902|116.37179002|28707|1 +638682.35320603|220091.96668094|116.99675777|28708|1 +638677.27254834|220096.66553985|117.3602898|28709|1 +638672.20491528|220101.3489423|117.44979149|28710|1 +638667.14986809|220106.01706014|117.24647326|28711|1 +638662.01685982|220110.76773249|117.88188691|28712|1 +638656.7254751|220115.73828306|124.41808707|28713|1 +638651.73035534|220120.33344777|122.80621014|28714|1 +638646.83466046|220124.79751956|118.04890961|28715|1 +638641.76712847|220129.4840351|118.39648909|28716|1 +638636.69756682|220134.17406235|118.87551197|28717|1 +638631.63468755|220138.85597156|119.19884172|28718|1 +638626.57220693|220143.53813259|119.57244757|28719|1 +638621.512079|220148.21789244|119.92766381|28720|1 +638616.4115734|220152.93226696|120.06194425|28721|1 +638611.41071814|220157.55264453|120.05206576|28722|1 +638606.3129601|220162.26409387|120.15590149|28723|1 +638601.26575976|220166.92756051|120.16268249|28724|1 +638596.26616912|220171.54739353|120.20315452|28725|1 +638591.17197496|220176.25494201|120.25816522|28726|1 +638586.12544199|220180.91888697|120.35312706|28727|1 +638581.1281778|220185.5364896|120.38772967|28728|1 +638576.0343255|220190.24544353|120.58126243|28729|1 +638570.99268931|220194.90238057|120.47702672|28730|1 +638565.99669916|220199.51943375|120.56194264|28731|1 +638560.90529686|220204.22612938|120.7565358|28732|1 +638555.86299804|220208.88640632|120.87164528|28733|1 +638550.86810474|220213.50423527|121.10059921|28734|1 +638545.77938792|220218.20838544|121.28999268|28735|1 +638540.73910431|220222.86734537|121.44950884|28736|1 +638535.74697103|220227.48192479|121.62252188|28737|1 +638530.70810485|220232.1392703|121.75735113|28738|1 +638525.66979959|220236.79593955|121.87988343|28739|1 +638520.63611725|220241.44841621|122.00889907|28740|1 +638515.59840561|220246.10470063|122.14432363|28741|1 +638510.60802625|220250.71532875|122.13016633|28742|1 +638505.57113528|220255.37116802|122.29087312|28743|1 +638500.58264022|220259.9830843|122.52047817|28744|1 +638495.59283244|220264.59325655|122.51256236|28745|1 +638490.55797424|220269.24838511|122.76736592|28746|1 +638485.52386822|220273.90297555|123.03486641|28747|1 +638480.53730404|220278.5130281|123.25828577|28748|1 +638475.55009813|220283.12265895|123.40041692|28749|1 +638470.56226659|220287.73217268|123.48626301|28750|1 +638465.52991401|220292.38483454|123.7291603|28751|1 +638460.54555722|220296.99315438|123.97750843|28752|1 +638455.61079182|220301.55673543|124.31839993|28753|1 +638450.5840446|220306.20685616|124.77393583|28754|1 +638445.60156465|220310.81367048|125.040841|28755|1 +638440.66684373|220315.37627524|125.30622998|28756|1 +638435.6433479|220320.02400726|125.81189315|28757|1 +638430.717671|220324.58220366|126.39553311|28758|1 +638425.73607957|220329.18772494|126.62458006|28759|1 +638420.71073214|220333.83531087|126.98044742|28760|1 +638415.77928136|220338.39541844|127.28863387|28761|1 +638410.80359744|220342.99764766|127.69238678|28762|1 +638405.82838662|220347.59943832|128.09607458|28763|1 +638400.90371494|220352.15543689|128.5784554|28764|1 +638395.92879973|220356.75672195|128.96313966|28765|1 +638390.9480772|220361.36128571|129.17914552|28766|1 +638385.96986734|220365.96258609|129.48877375|28767|1 +638381.03087832|220370.52464868|129.58941897|28768|1 +638376.09664994|220375.08394203|129.82090298|28769|1 +638371.12579422|220379.68042668|130.3174132|28770|1 +638366.12822908|220384.29377735|130.18341181|28771|1 +638361.18477795|220388.85927014|130.22709295|28772|1 +638356.46084555|220393.29449891|136.12142403|28773|1 +638351.28271948|220398.01348226|131.0536581|28774|1 +638346.34735562|220402.57397457|131.29636005|28775|1 +638341.65326952|220406.97166686|136.39245919|28776|1 +638341.3954477|220407.14573259|131.2143928|28777|2 +638336.98413241|220411.34929916|141.73052543|28778|1 +638336.45787842|220411.70802908|131.43789588|28779|2 +638331.75987489|220416.11692036|137.14152194|28780|1 +638331.46134615|220416.32228446|131.4531508|28781|2 +638326.55064097|220420.85524181|131.31665653|28782|1 +638321.59487189|220425.43080005|131.25266031|28783|1 +638316.63808195|220430.00737945|131.19474745|28784|1 +638311.67773518|220434.58677694|131.09927401|28785|1 +638306.71992666|220439.1646853|131.07224305|28786|1 +638301.80543024|220443.70191367|130.99665682|28787|1 +638296.83245297|220448.29136886|130.7698144|28788|1 +638291.8965694|220452.84480812|130.40704512|28789|1 +638286.91702946|220457.43986189|130.14259561|28790|1 +638281.98064283|220461.99453884|129.84172035|28791|1 +638277.04075462|220466.55222001|129.52191598|28792|1 +638272.05374952|220471.15402338|129.24470444|28793|1 +638267.11356455|220475.71275198|128.98682199|28794|1 +638262.16982007|220480.27453884|128.71002903|28795|1 +638257.2255679|220484.83710376|128.45791368|28796|1 +638252.27995484|220489.40108103|128.21804877|28797|1 +638255.16557665|220483.04675767|128.41218615|28798|1 +638260.1499397|220478.43577643|128.7015086|28799|1 +638265.12800787|220473.82991815|128.93478785|28800|1 +638270.1616279|220469.17467028|129.2931853|28801|1 +638275.14165237|220464.56839161|129.60114851|28802|1 +638280.16422639|220459.92220829|129.86647238|28803|1 +638285.18419781|220455.2783564|130.12574079|28804|1 +638290.20674556|220450.63305737|130.45997222|28805|1 +638295.22890247|220445.98851092|130.82555064|28806|1 +638300.19193389|220441.39678426|131.04027285|28807|1 +638305.19226044|220436.76877075|131.11309645|28808|1 +638310.23623781|220432.09984411|131.14407137|28809|1 +638315.23221045|220427.47555041|131.19223597|28810|1 +638320.22989396|220422.85037564|131.2965833|28811|1 +638325.94878723|220417.71499142|143.96352848|28812|1 +638325.51339045|220418.01653595|135.86221142|28813|2 +638325.26133586|220418.19110244|131.17231156|28814|3 +638331.16942076|220412.94148929|148.70390908|28815|1 +638330.82465228|220413.17820503|142.12354409|28816|2 +638330.26027646|220413.56570169|131.35171493|28817|3 +638335.69836669|220408.63032877|139.23745401|28818|1 +638335.52360282|220408.74920942|135.81279108|28819|2 +638340.47666467|220404.15698093|135.250508|28820|1 +638340.28046869|220404.28913779|131.30141092|28821|2 +638345.35714517|220399.60073148|132.19490235|28822|1 +638350.41949941|220394.9226966|132.85796088|28823|1 +638355.31559873|220390.36671022|130.97864858|28824|1 +638360.93855936|220385.31557856|143.29115887|28825|1 +638360.36156294|220385.68640279|130.24690573|28826|2 +638365.38957505|220381.03102077|130.18036082|28827|1 +638370.37779236|220376.41499992|130.3168737|28828|1 +638375.38903774|220371.77045435|129.87607181|28829|1 +638380.40983065|220367.12004137|129.67264196|28830|1 +638385.43175545|220362.4690497|129.506875|28831|1 +638390.44748676|220357.82176323|129.17891297|28832|1 +638395.46639121|220353.17263484|128.93853647|28833|1 +638400.48106191|220348.52586505|128.57341384|28834|1 +638405.53902157|220343.83729671|128.06876456|28835|1 +638410.55376338|220339.19015258|127.67905734|28836|1 +638415.5684002|220334.54287461|127.27074656|28837|1 +638420.58513268|220329.8943615|126.91880455|28838|1 +638425.60210663|220325.24554864|126.56075127|28839|1 +638430.62221288|220320.59516425|126.3090638|28840|1 +638435.68278946|220315.90357122|125.75608249|28841|1 +638440.69799368|220311.25453013|125.24863338|28842|1 +638445.71917637|220306.60292369|124.97875164|28843|1 +638450.78814232|220301.90708883|124.70784671|28844|1 +638455.75838749|220297.29974675|124.2082576|28845|1 +638460.8271098|220292.60313109|123.85665975|28846|1 +638465.85132398|220287.94950816|123.65002079|28847|1 +638470.8759285|220283.29544633|123.43727986|28848|1 +638475.9503899|220278.59696343|123.36160061|28849|1 +638480.97721341|220273.94233636|123.26804334|28850|1 +638486.00344888|220269.28739573|123.10593198|28851|1 +638491.07748682|220264.58822489|122.9437462|28852|1 +638496.10377697|220259.9321468|122.69457952|28853|1 +638501.13105586|220255.27585879|122.50183741|28854|1 +638506.20641891|220250.57531568|122.32814534|28855|1 +638511.23543384|220245.91991974|122.33585651|28856|1 +638516.2641907|220241.26289447|122.19376258|28857|1 +638521.33665566|220236.56582302|122.08352722|28858|1 +638526.36601852|220231.90738444|121.87313964|28859|1 +638531.39603242|220227.24888954|121.70668436|28860|1 +638536.42693851|220222.58871514|121.47167497|28861|1 +638541.45797946|220217.93036601|121.39307496|28862|1 +638546.49034712|220213.26907694|121.17719004|28863|1 +638551.52365516|220208.60684197|120.95525895|28864|1 +638556.55680258|220203.94631431|120.85849257|28865|1 +638561.59135414|220199.28355605|120.68693991|28866|1 +638566.62786333|220194.61782037|120.42187649|28867|1 +638571.66287666|220189.95604095|120.36321949|28868|1 +638576.69621146|220185.29784093|120.46716684|28869|1 +638581.73514085|220180.63018263|120.22774841|28870|1 +638586.72256727|220176.0139728|120.2925911|28871|1 +638591.76259105|220171.34592912|120.10346738|28872|1 +638596.8007909|220166.68144197|120.06448363|28873|1 +638601.74525267|220162.10332478|119.99592954|28874|1 +638606.78446844|220157.43821014|119.98213501|28875|1 +638611.82458855|220152.77218444|119.96232222|28876|1 +638616.81893907|220148.14801073|119.90253041|28877|1 +638621.8652079|220143.47419776|119.7145043|28878|1 +638626.86841053|220138.83880164|119.41137801|28879|1 +638631.87400005|220134.20088656|119.08334156|28880|1 +638636.88762919|220129.55296824|118.54941029|28881|1 +638641.90002755|220124.90758795|118.1279282|28882|1 +638646.9039088|220120.26918193|117.98122058|28883|1 +638651.73094611|220115.85861895|122.99507341|28884|1 +638651.90440573|220115.63556729|117.9718723|28885|2 +638656.90258236|220111.005266|118.05616499|28886|1 +638661.928518|220106.34026412|117.41679809|28887|1 +638666.94353894|220101.68979614|117.13320553|28888|1 +638671.89519844|220097.10342279|117.28851729|28889|1 +638676.9136599|220092.44969129|116.99878556|28890|1 +638681.89502055|220087.82775685|116.50535423|28891|1 +638686.88410246|220083.19720228|115.89342756|28892|1 +638691.92560976|220078.51765162|115.24242414|28893|1 +638696.94348296|220073.8543253|114.13822886|28894|1 +638701.95842102|220069.19557566|113.18378289|28895|1 +638706.22658244|220065.41745278|127.45375901|28896|1 +638712.04540957|220059.814068|110.37813457|28897|1 +638717.07975322|220055.13582162|109.29974243|28898|1 +638722.04448674|220050.52804851|108.7084192|28899|1 +638727.06195858|220045.87108071|108.08499554|28900|1 +638732.02862629|220041.26245173|107.56830977|28901|1 +638737.01481927|220036.64257247|107.59882889|28902|1 +638742.04193914|220031.97644794|106.95696911|28903|1 +638745.53843933|220029.03514495|131.08221456|28904|1 +638747.03212697|220027.34287125|106.18496818|28905|2 +638752.0328457|220022.70792464|106.08484386|28906|1 +638756.39155295|220018.77595034|114.72728246|28907|1 +638756.97281838|220018.12252408|105.4499139|28908|2 +638761.13765162|220014.42464125|118.48267005|28909|1 +638761.98967212|220013.47039993|105.16933512|28910|2 +638767.00312753|220008.81335711|104.2418922|28911|1 +638770.22491019|220006.14981647|130.25530524|28912|1 +638770.61542364|220005.71548445|124.39699994|28913|2 +638771.5606178|220004.66423227|110.21766963|28914|3 +638775.47842025|220001.22164391|125.39359227|28915|1 +638776.88200522|219999.66569919|104.75021568|28916|2 +638780.1720821|219996.91476899|128.82033879|28917|1 +638781.78090222|219995.13697055|105.61323449|28918|2 +638785.37456557|219992.04606081|124.94226077|28919|1 +638786.59723504|219990.69911192|107.63807309|28920|2 +638791.75426749|219985.87807953|104.21126145|28921|1 +638796.80002692|219981.18898383|103.10995903|28922|1 +638800.05314783|219978.45066933|125.44591476|28923|1 +638791.95967133|219982.14082546|122.34720468|28924|1 +638793.21629893|219980.76155712|105.07944275|28925|2 +638788.24920377|219985.33957709|104.32020386|28926|1 +638782.02742279|219991.29447518|120.77873914|28927|1 +638783.16152595|219990.04210804|104.59211338|28928|2 +638776.81391529|219996.14967914|123.93935254|28929|1 +638778.13618966|219994.68486307|104.69702812|28930|2 +638771.27926555|220001.35485226|131.3107499|28931|1 +638773.06274404|219999.37252265|104.83288056|28932|2 +638766.68044444|220005.52042999|124.83422994|28933|1 +638767.89217309|220004.16893702|106.47422552|28934|2 +638761.30884964|220010.54834114|130.06903716|28935|1 +638762.93011294|220008.73358305|104.98747609|28936|2 +638756.12381927|220015.37320537|132.61170565|28937|1 +638757.83492606|220013.45076075|105.57212064|28938|2 +638751.92164917|220019.10100575|120.19566659|28939|1 +638752.81852157|220018.08950455|105.71525638|28940|2 +638746.35736026|220024.34479028|128.15912202|28941|1 +638747.68538429|220022.84095307|106.23253747|28942|2 +638742.36494849|220027.81622493|110.77756216|28943|1 +638737.53313332|220032.2364818|107.11861538|28944|1 +638732.43252498|220036.95261926|107.22046053|28945|1 +638726.56591629|220042.55227877|121.2545064|28946|1 +638727.3279542|220041.67376408|107.4286808|28947|2 +638721.06932343|220047.74366731|130.03527172|28948|1 +638722.25711561|220046.36751487|107.94172958|28949|2 +638717.06574479|220051.17938989|108.98054267|28950|1 +638712.00361221|220055.864555|109.45102652|28951|1 +638706.16773814|220061.44964746|124.59215121|28952|1 +638701.30001948|220065.88620563|119.58376783|28953|1 +638701.66683108|220065.45151849|111.98646753|28954|2 +638696.57043378|220070.18029063|113.40593721|28955|1 +638691.39309303|220074.98134865|114.61728895|28956|1 +638686.28313633|220079.71582451|115.49112573|28957|1 +638681.193119|220084.42708535|115.98518029|28958|1 +638676.05373135|220089.18531703|116.58153578|28959|1 +638670.92119547|220093.93596113|117.07881804|28960|1 +638665.86484275|220098.60772793|116.90709795|28961|1 +638660.74739141|220103.34075369|117.11236955|28962|1 +638655.62085776|220108.08594987|117.61774437|28963|1 +638650.55059745|220112.77686205|117.94644124|28964|1 +638645.40355012|220117.53256029|117.775549|28965|1 +638640.29328232|220122.25873998|117.96451459|28966|1 +638635.22824713|220126.94467728|118.28213305|28967|1 +638630.05995756|220131.73038892|118.93720135|28968|1 +638624.95005009|220136.45845055|119.30273326|28969|1 +638619.84284013|220141.18363261|119.63762512|28970|1 +638614.74330406|220145.89874391|119.73582397|28971|1 +638609.64410698|220150.61394314|119.86576979|28972|1 +638604.5490848|220155.32356403|119.85883996|28973|1 +638599.45347541|220160.03451812|119.91485526|28974|1 +638594.31169103|220164.78786253|119.94411865|28975|1 +638589.21794116|220169.49695163|119.98876717|28976|1 +638584.12244082|220174.20954957|120.18380682|28977|1 +638579.03017471|220178.91743889|120.24191502|28978|1 +638573.93923303|220183.6235582|120.25678856|28979|1 +638568.84995848|220188.32704803|120.18465328|28980|1 +638563.71066985|220193.07993515|120.36135913|28981|1 +638558.66683641|220197.74517063|120.591606|28982|1 +638553.5761197|220202.45439743|120.87078022|28983|1 +638548.43999418|220207.20399033|121.01803664|28984|1 +638543.35208274|220211.90907236|121.17330189|28985|1 +638538.26471738|220216.61420079|121.37276919|28986|1 +638533.17847984|220221.31704468|121.47270747|28987|1 +638528.092614|220226.02064155|121.66059405|28988|1 +638523.00747474|220230.72357533|121.84893642|28989|1 +638517.92311143|220235.42673725|122.1127162|28990|1 +638512.84292132|220240.12377275|122.19572525|28991|1 +638507.75972742|220244.82633174|122.49788416|28992|1 +638502.67536317|220249.5250482|122.40675465|28993|1 +638497.59202606|220254.22517019|122.50355824|28994|1 +638492.51070392|220258.92617514|122.81953028|28995|1 +638487.42927216|220263.62603139|123.03595471|28996|1 +638482.34702306|220268.32508653|123.12781906|28997|1 +638477.31245204|220272.98010367|123.22585978|28998|1 +638472.2311421|220277.67892696|123.36847462|28999|1 +638467.14884193|220282.3776545|123.43027562|29000|1 +638462.11705198|220287.0317519|123.66036436|29001|1 +638457.03868623|220291.72927687|123.9166283|29002|1 +638451.96429318|220296.42547784|124.36077882|29003|1 +638446.93823704|220301.07694928|124.80410149|29004|1 +638441.90842876|220305.72922727|125.03516692|29005|1 +638436.83317734|220310.42451701|125.34285108|29006|1 +638431.86018803|220315.02875153|125.93516029|29007|1 +638426.79000073|220319.72124237|126.3933658|29008|1 +638421.76442217|220324.37079602|126.71895588|29009|1 +638416.78624465|220328.97630873|127.03026773|29010|1 +638411.76245994|220333.62467597|127.39355791|29011|1 +638406.74160759|220338.27134985|127.83822003|29012|1 +638401.76891806|220342.87350797|128.28697493|29013|1 +638396.74836142|220347.5195986|128.70684782|29014|1 +638391.77033823|220352.12442647|128.97445993|29015|1 +638386.79186064|220356.72951819|129.22953324|29016|1 +638381.76804966|220361.37745255|129.53729181|29017|1 +638376.84237895|220365.9368754|129.88931754|29018|1 +638371.81199321|220370.59013406|129.99737628|29019|1 +638366.83284582|220375.19727541|130.20862892|29020|1 +638361.89152645|220379.76671437|130.20436871|29021|1 +638357.27585474|220384.13969052|138.57253513|29022|1 +638356.89775985|220384.38355153|130.10963942|29023|2 +638352.60998504|220388.52668475|144.35205438|29024|1 +638351.99636227|220388.92745996|131.01617194|29025|2 +638347.15754183|220393.44218181|134.21593652|29026|1 +638342.03302019|220398.14585712|131.39423335|29027|1 +638337.08928828|220402.71775592|131.40783254|29028|1 +638328.1204184|220411.23044919|148.9171244|29029|1 +638327.55743875|220411.61769028|138.23915016|29030|2 +638323.0333023|220415.90809399|146.78072029|29031|1 +638322.59220761|220416.21411992|138.62350886|29032|2 +638322.19832409|220416.48739133|131.33939937|29033|3 +638317.2466245|220421.06587467|131.28999764|29034|1 +638312.33808048|220425.60374709|131.1861154|29035|1 +638307.38577545|220430.18325657|131.17369753|29036|1 +638302.43216352|220434.76397402|131.16112153|29037|1 +638297.51923183|220439.30589567|131.05635562|29038|1 +638292.55040944|220443.89818826|130.84398676|29039|1 +638287.61867997|220448.45445902|130.49565384|29040|1 +638282.64012947|220453.05466065|130.19582968|29041|1 +638277.76141932|220457.56375127|129.99757162|29042|1 +638272.77977866|220462.16704433|129.71613707|29043|1 +638267.84279752|220466.7288687|129.42296368|29044|1 +638262.90090311|220471.29477016|129.09221111|29045|1 +638258.00614816|220475.81736846|128.78664776|29046|1 +638253.06484182|220480.38365567|128.53005826|29047|1 +638255.78094722|220474.21610174|128.90638022|29048|1 +638260.80909608|220469.55752027|129.15606781|29049|1 +638265.79311271|220464.94165843|129.49878246|29050|1 +638270.8194889|220460.28607432|129.79874615|29051|1 +638275.78835969|220455.68228144|129.98587928|29052|1 +638280.80985811|220451.03113158|130.27992704|29053|1 +638285.82673497|220446.38379754|130.5367956|29054|1 +638290.84420301|220441.73646087|130.83746622|29055|1 +638295.85530755|220437.09416595|131.06976878|29056|1 +638300.85923626|220432.45740663|131.21495091|29057|1 +638305.85167435|220427.82917429|131.19192901|29058|1 +638310.89516195|220423.15474962|131.25182315|29059|1 +638315.88850897|220418.52646203|131.29141151|29060|1 +638321.49805862|220413.47150299|142.7624552|29061|1 +638321.22416079|220413.66129341|137.69222431|29062|2 +638320.86805938|220413.90804466|131.10031581|29063|3 +638326.7097715|220408.68623707|146.39205487|29064|1 +638325.9083864|220409.2367036|131.17334406|29065|2 +638331.3716363|220404.27788765|139.51811651|29066|1 +638330.93967089|220404.57185944|131.09695787|29067|2 +638336.58607136|220399.50465923|144.3066059|29068|1 +638335.93297762|220399.94478912|131.23053138|29069|2 +638341.18374763|220395.13412846|135.7154573|29070|1 +638346.06886755|220390.5681124|132.73863769|29071|1 +638356.27492766|220381.14980591|136.10196471|29072|1 +638356.01719744|220381.31554544|130.31017642|29073|2 +638361.04102273|220376.65675578|130.16640816|29074|1 +638366.06430665|220371.9984638|130.02285384|29075|1 +638371.09390055|220367.33645845|130.04807096|29076|1 +638376.11476225|220362.68002613|129.87371846|29077|1 +638381.1267971|220358.02893952|129.47478388|29078|1 +638386.14184251|220353.3760043|129.15092393|29079|1 +638391.1594139|220348.72160206|128.89593433|29080|1 +638396.22453631|220344.02325393|128.6449538|29081|1 +638401.2384475|220339.3708307|128.27800802|29082|1 +638406.24960972|220334.71969092|127.81126348|29083|1 +638411.30825876|220330.02436008|127.32388761|29084|1 +638416.32236314|220325.37121367|126.91378159|29085|1 +638421.34054347|220320.715946|126.63500735|29086|1 +638426.40366799|220316.01773993|126.24850924|29087|1 +638431.46570789|220311.31967224|125.79367097|29088|1 +638436.4781442|220306.66587806|125.2094729|29089|1 +638441.54597528|220301.96481517|124.94274447|29090|1 +638446.61378456|220297.26355268|124.65768223|29091|1 +638451.63086616|220292.60671816|124.17414798|29092|1 +638456.69854871|220287.90463195|123.81479245|29093|1 +638461.76852187|220283.20168817|123.5558217|29094|1 +638466.792078|220278.54209781|123.32922112|29095|1 +638471.86559452|220273.83800004|123.23968222|29096|1 +638476.93888961|220269.13380351|123.12556803|29097|1 +638481.96457042|220264.47327804|122.98098122|29098|1 +638487.03952573|220259.76928367|123.00508212|29099|1 +638492.112522|220255.06411406|122.79211795|29100|1 +638497.13899287|220250.40278825|122.64207099|29101|1 +638502.21417134|220245.69852311|122.66107452|29102|1 +638507.28839323|220240.99184003|122.4180191|29103|1 +638512.31593033|220236.328672|122.20001337|29104|1 +638517.38739622|220231.62494569|121.98890025|29105|1 +638522.46340779|220226.91709767|121.78449372|29106|1 +638527.49261001|220222.25294866|121.61104349|29107|1 +638532.56996888|220217.54425057|121.43863506|29108|1 +638537.64792839|220212.83532229|121.291667|29109|1 +638542.63169869|220208.21328325|121.12421642|29110|1 +638547.71125145|220203.5025682|120.9529056|29111|1 +638552.79206001|220198.79007848|120.73203492|29112|1 +638557.77815634|220194.16604313|120.57748591|29113|1 +638562.86158003|220189.45034928|120.29482352|29114|1 +638567.89760047|220184.7796004|120.09842582|29115|1 +638572.93171481|220180.11321416|120.10840662|29116|1 +638577.9668931|220175.44536855|120.08112451|29117|1 +638583.05210253|220170.72985017|119.94367216|29118|1 +638588.04233813|220166.10278573|119.85232872|29119|1 +638593.12760055|220161.38840727|119.8092894|29120|1 +638598.16611956|220156.71724753|119.76430601|29121|1 +638603.15570134|220152.09260203|119.81696336|29122|1 +638608.19498989|220147.42112823|119.80356881|29123|1 +638613.24069686|220142.74089756|119.56563867|29124|1 +638618.28486582|220138.06349822|119.44036234|29125|1 +638623.33227636|220133.38216433|119.24045787|29126|1 +638628.29364971|220128.7770552|118.77242968|29127|1 +638633.35715296|220124.07547419|118.14846652|29128|1 +638638.41773298|220119.37975404|117.6996093|29129|1 +638643.37547855|220114.78562017|117.5435906|29130|1 +638648.37570654|220110.15458273|117.57819321|29131|1 +638653.43670411|220105.46303695|117.2733926|29132|1 +638658.40794927|220100.85326431|116.86769563|29133|1 +638663.42650795|220096.20055025|116.5282552|29134|1 +638668.38833182|220091.60381746|116.46556123|29135|1 +638673.40519693|220086.9543224|116.25722934|29136|1 +638678.4423851|220082.28052274|115.61252322|29137|1 +638683.37858316|220077.70256565|115.15873605|29138|1 +638688.42818573|220073.01539631|114.36467131|29139|1 +638693.45072967|220068.34857167|113.19847969|29140|1 +638698.47439703|220063.68157399|112.10103751|29141|1 +638703.5112235|220059.00012204|110.82307575|29142|1 +638708.51052218|220054.35199999|109.43441355|29143|1 +638713.53829066|220049.68349188|108.51823508|29144|1 +638717.4749506|220046.27232546|127.26231915|29145|1 +638718.5119621|220045.06740617|107.79009202|29146|2 +638723.46044796|220040.48121285|107.58503436|29147|1 +638728.16541818|220036.18648444|112.62861566|29148|1 +638728.46875154|220035.83746398|107.20467542|29149|2 +638733.42370689|220031.24481622|106.96199207|29150|1 +638738.14598608|220026.91797452|110.72821623|29151|1 +638738.39215527|220026.63724587|106.52612943|29152|2 +638743.32529649|220022.07034011|106.72503862|29153|1 +638748.31898539|220017.43517599|105.95281444|29154|1 +638751.82253425|220014.47001502|128.29023986|29155|1 +638753.0701119|220013.06435946|108.34788235|29156|2 +638753.2452793|220012.86699695|105.54785231|29157|3 +638757.6138854|220008.93485377|114.66724879|29158|1 +638758.23473866|220008.23793974|104.94972948|29159|2 +638763.16379346|220003.67707581|105.32814435|29160|1 +638768.05787676|219999.14621313|105.51945398|29161|1 +638771.54139333|219996.18266709|126.51545161|29162|1 +638773.00047338|219994.56167707|105.01385593|29163|2 +638777.92081006|219990.00235965|104.87481297|29164|1 +638782.0622863|219986.31189359|116.49602454|29165|1 +638786.47641543|219982.29936857|122.58046533|29166|1 +638787.76137759|219980.88498349|104.68895418|29167|2 +638784.22357529|219981.30025449|121.64049291|29168|1 +638785.43447736|219979.96856314|104.72392886|29169|2 +638779.7507533|219985.34907589|114.89796075|29170|1 +638774.24230318|219990.54089665|122.94938308|29171|1 +638775.49291842|219989.15708335|104.80171031|29172|2 +638770.5578862|219993.72110639|105.06769461|29173|1 +638763.96092264|220000.11848145|129.00375122|29174|1 +638765.50763054|219998.39575975|105.65637613|29175|2 +638759.12947115|220004.564481|127.49439847|29176|1 +638759.53771457|220004.10820042|121.20553255|29177|2 +638760.57346855|220002.95057133|105.25013965|29178|3 +638754.38210047|220008.90465489|123.86908692|29179|1 +638755.5512203|220007.59320102|105.47829362|29180|2 +638748.97982386|220013.98745854|131.39950745|29181|1 +638750.6087636|220012.15332736|105.22739681|29182|2 +638744.0376961|220018.55459014|131.73145995|29183|1 +638745.36103135|220017.0587304|110.00487289|29184|2 +638745.60932335|220016.77806831|105.92840658|29185|3 +638739.00480008|220023.20523759|132.02674484|29186|1 +638740.55465975|220021.44605088|106.00154645|29187|2 +638735.55159886|220026.0762429|106.87078816|29188|1 +638730.55040742|220030.69459366|106.9312497|29189|1 +638724.25011227|220036.79692958|129.55497449|29190|1 +638725.3047551|220035.5837284|110.56085867|29191|2 +638725.49355398|220035.36654488|107.1606036|29192|3 +638719.23552124|220041.4385605|130.48471495|29193|1 +638720.47576077|220040.00492017|107.59490354|29194|2 +638714.84078884|220045.36098438|119.75932956|29195|1 +638715.46984224|220044.63014025|107.85486959|29196|2 +638709.81851666|220049.99809674|119.76050158|29197|1 +638710.41454156|220049.30190494|108.18451525|29198|2 +638705.36269504|220053.98215693|109.44787322|29199|1 +638700.26461831|220058.70598012|110.7751995|29200|1 +638695.17474561|220063.42136284|112.0344833|29201|1 +638690.09908824|220068.12102713|113.088542|29202|1 +638685.02646096|220072.81819943|114.16792943|29203|1 +638679.97397826|220077.49214272|114.87983159|29204|1 +638674.92675108|220082.16060259|115.54210877|29205|1 +638669.88809551|220086.81941184|116.0674545|29206|1 +638664.82138362|220091.49874839|116.1585747|29207|1 +638659.75607237|220096.17679162|116.25005767|29208|1 +638654.72873699|220100.82349955|116.64510412|29209|1 +638649.65685557|220105.51106207|117.01168712|29210|1 +638644.59251634|220110.18961305|117.21640062|29211|1 +638639.58035191|220114.81877333|117.33124965|29212|1 +638634.46716341|220119.54420504|117.67048544|29213|1 +638629.3989443|220124.22994886|118.16330285|29214|1 +638624.3769643|220128.87452568|118.78439177|29215|1 +638619.26872574|220133.5959393|119.16871326|29216|1 +638614.21521796|220138.26417855|119.35038626|29217|1 +638609.16346845|220142.93055234|119.51360453|29218|1 +638604.06584961|220147.63910314|119.65577288|29219|1 +638599.01999496|220152.29799962|119.65725186|29220|1 +638593.97447176|220156.95682517|119.67770647|29221|1 +638588.88180476|220161.65947408|119.71490427|29222|1 +638583.83718206|220166.31785532|119.76717096|29223|1 +638578.74528733|220171.02034419|119.84890566|29224|1 +638573.65363941|220175.72307854|119.96859162|29225|1 +638568.61112655|220180.37967632|120.03425286|29226|1 +638563.52057702|220185.0819433|120.19847572|29227|1 +638558.43108551|220189.78308487|120.35066209|29228|1 +638553.34047108|220194.48793303|120.71573821|29229|1 +638548.3008912|220199.14221745|120.81384404|29230|1 +638543.16641428|220203.88528139|120.9911266|29231|1 +638538.12781588|220208.53952443|121.15861439|29232|1 +638533.04238162|220213.23740109|121.35039841|29233|1 +638527.95770605|220217.93473648|121.55513051|29234|1 +638522.87393017|220222.62998905|121.6602964|29235|1 +638517.79065207|220227.32556273|121.8283888|29236|1 +638512.70818082|220232.02181108|122.10939546|29237|1 +638507.63007269|220236.71339971|122.34084226|29238|1 +638502.54840632|220241.40757181|122.5164412|29239|1 +638497.46749369|220246.10152682|122.72995418|29240|1 +638492.38576082|220250.79373429|122.74389754|29241|1 +638487.30495414|220255.48642177|122.86449507|29242|1 +638482.22553863|220260.17923782|123.09800686|29243|1 +638477.09542088|220264.9147276|122.99489667|29244|1 +638472.06313686|220269.56299983|123.15379892|29245|1 +638466.98279908|220274.25495345|123.2510676|29246|1 +638461.90322225|220278.94667731|123.38623171|29247|1 +638456.82608246|220283.63763505|123.64054228|29248|1 +638451.74983515|220288.32809065|123.92025599|29249|1 +638446.67783225|220293.01705627|124.39406988|29250|1 +638441.64941397|220297.66278318|124.63580445|29251|1 +638436.57441589|220302.35192959|124.90408628|29252|1 +638431.50653143|220307.03811529|125.46018368|29253|1 +638426.48948707|220311.67842701|126.10872214|29254|1 +638421.41877975|220316.36479696|126.47176117|29255|1 +638416.34614585|220321.05185386|126.74773558|29256|1 +638411.32348464|220325.69367159|127.10331458|29257|1 +638406.25782125|220330.37695475|127.59232757|29258|1 +638401.24086773|220335.0153791|128.09821398|29259|1 +638396.22113876|220339.65504916|128.49805084|29260|1 +638391.14906702|220344.34120109|128.74438979|29261|1 +638386.12388287|220348.98379493|128.97605053|29262|1 +638381.10021608|220353.62553523|129.25157845|29263|1 +638376.08099873|220358.26462001|129.65841955|29264|1 +638371.0080549|220362.95133518|129.92482242|29265|1 +638366.02453977|220367.55368008|130.06063766|29266|1 +638360.98358811|220372.2063758|129.97490319|29267|1 +638356.11432511|220376.74963062|133.8152439|29268|1 +638355.95084047|220376.85416048|130.10163059|29269|2 +638351.02483422|220381.4329356|132.59381834|29270|1 +638346.39954439|220385.81289884|141.39452666|29271|1 +638345.90451055|220386.13763624|130.80501232|29272|2 +638340.93611797|220390.73062921|131.30927092|29273|1 +638335.95694003|220395.33077381|131.58884511|29274|1 +638331.74852251|220399.4206157|147.97921698|29275|1 +638330.90444594|220399.99243024|131.36700705|29276|2 +638326.759062|220404.01129959|146.74977328|29277|1 +638325.95953881|220404.55799423|131.4181017|29278|2 +638321.4089229|220408.87413557|140.63279489|29279|1 +638321.10288158|220409.08527515|134.91371858|29280|2 +638320.9066411|220409.22066252|131.24652114|29281|3 +638315.91618964|220413.82934937|131.37655067|29282|1 +638310.95784272|220418.40506769|131.24657695|29283|1 +638305.95705393|220423.02151869|131.23317309|29284|1 +638301.00301879|220427.59481535|131.22768504|29285|1 +638295.99922503|220432.21396829|131.20806759|29286|1 +638291.031771|220436.79747913|131.02788288|29287|1 +638286.05659664|220441.38695346|130.7541316|29288|1 +638281.07809757|220445.9792605|130.46162794|29289|1 +638276.10107588|220450.57091222|130.22513958|29290|1 +638271.1253002|220455.16203159|130.03843432|29291|1 +638266.1893494|220459.71522349|129.76526905|29292|1 +638261.24466632|220464.2753132|129.3984442|29293|1 +638256.25277969|220468.87961847|129.07445402|29294|1 +638256.57305329|220465.43604862|129.19212149|29295|1 +638261.60945437|220460.77586307|129.57051776|29296|1 +638266.64032071|220456.120264|129.90559565|29297|1 +638271.61189989|220451.5177929|130.10293284|29298|1 +638276.63245608|220446.87065378|130.35111353|29299|1 +638281.60552967|220442.26789744|130.63569208|29300|1 +638286.61987099|220437.62612532|130.85298158|29301|1 +638291.68070442|220432.94152809|131.08430746|29302|1 +638296.64004106|220428.34993553|131.24439103|29303|1 +638301.68647289|220423.67641296|131.29545778|29304|1 +638306.63182726|220419.09542588|131.26847333|29305|1 +638311.67447924|220414.42518242|131.30123418|29306|1 +638316.67862153|220409.79296366|131.52559303|29307|1 +638321.90102695|220405.01079925|135.91016208|29308|1 +638321.66842369|220405.17104745|131.51304494|29309|2 +638327.23742206|220400.14247883|141.8387702|29310|1 +638326.69928468|220400.5098572|131.39676343|29311|2 +638332.47690285|220395.35578243|147.12401166|29312|1 +638331.96595493|220395.70126621|136.9428546|29313|2 +638336.72068163|220391.22727034|131.3620771|29314|1 +638341.96095032|220386.42819189|135.71409924|29315|1 +638341.74950263|220386.56814209|131.2588832|29316|2 +638347.40559192|220381.51176025|145.80569879|29317|1 +638346.70375727|220381.97087465|130.58530436|29318|2 +638352.22984289|220376.99076481|141.61017905|29319|1 +638356.74522839|220372.66355864|130.05515891|29320|1 +638361.76798433|220368.0087388|129.84654797|29321|1 +638366.80843275|220363.34309913|130.08136202|29322|1 +638371.82651926|220358.69152344|129.78577017|29323|1 +638376.79886985|220354.08283893|129.53684533|29324|1 +638381.86218127|220349.38870629|129.18261508|29325|1 +638386.88249596|220344.73586322|128.94997765|29326|1 +638391.85449213|220340.12744537|128.69496945|29327|1 +638401.93482249|220330.78207511|127.99078777|29328|1 +638406.94730556|220326.13314825|127.49024058|29329|1 +638411.96055324|220321.48351572|126.98982361|29330|1 +638417.02657406|220316.78715868|126.65639213|29331|1 +638422.04540899|220312.13440311|126.31882136|29332|1 +638427.06284582|220307.48200989|125.90643641|29333|1 +638432.12191113|220302.78757903|125.21157511|29334|1 +638437.13974694|220298.13404862|124.7371194|29335|1 +638442.16430354|220293.47789765|124.55025601|29336|1 +638447.23362324|220288.7784569|124.2124806|29337|1 +638452.25467826|220284.12266968|123.79486805|29338|1 +638457.32686038|220279.42176442|123.55150567|29339|1 +638462.35340787|220274.76426663|123.40305862|29340|1 +638467.38036763|220270.10623718|123.24228672|29341|1 +638472.4557981|220265.40414659|123.14366929|29342|1 +638477.53315662|220260.70239342|123.21421396|29343|1 +638482.56088048|220256.04406857|123.08545877|29344|1 +638487.63589527|220251.34129869|122.90050225|29345|1 +638492.71215462|220246.63886643|122.83471078|29346|1 +638497.74039702|220241.97914592|122.63175532|29347|1 +638502.81666769|220237.27492757|122.42293974|29348|1 +638507.84609192|220232.61404933|122.21422648|29349|1 +638512.91947779|220227.91212162|121.97486387|29350|1 +638517.99735951|220223.2072195|121.82970035|29351|1 +638523.02836918|220218.54528626|121.65303171|29352|1 +638528.10741385|220213.83948136|121.52112322|29353|1 +638533.13999529|220209.17540158|121.28872764|29354|1 +638538.22036496|220204.46846608|121.16382338|29355|1 +638543.2546342|220199.80284282|120.931958|29356|1 +638548.33731584|220195.09253659|120.7078503|29357|1 +638553.41951611|220190.3845589|120.63415233|29358|1 +638558.45802671|220185.71339127|120.27197836|29359|1 +638563.54242125|220181.00285477|120.15534339|29360|1 +638568.5809665|220176.33393382|119.97492613|29361|1 +638573.6221302|220171.66127768|119.68854304|29362|1 +638578.70756401|220166.95112901|119.67927847|29363|1 +638583.7463115|220162.28399759|119.6558473|29364|1 +638588.78717789|220157.61396872|119.55769495|29365|1 +638593.82702194|220152.94607784|119.55346264|29366|1 +638598.86975413|220148.27426226|119.4495525|29367|1 +638603.91070395|220143.60558872|119.46452836|29368|1 +638609.00468129|220138.88548102|119.28892942|29369|1 +638614.00715528|220134.24887138|119.020722|29370|1 +638619.06074985|220129.56407122|118.68063045|29371|1 +638624.1179203|220124.87519451|118.27844024|29372|1 +638629.17782112|220120.18348803|117.85161893|29373|1 +638634.23746885|220115.49107609|117.49387261|29374|1 +638639.30238379|220110.79078574|117.03044881|29375|1 +638644.3134153|220106.14341621|116.81344766|29376|1 +638649.37383285|220101.45034125|116.59400016|29377|1 +638654.39340817|220096.79329063|116.23384467|29378|1 +638659.41120211|220092.13914041|115.97364608|29379|1 +638664.47690079|220087.44119401|115.75509154|29380|1 +638669.4954869|220082.78717987|115.56392144|29381|1 +638674.53481055|220078.10837262|114.92391271|29382|1 +638679.6235775|220073.38419529|114.31353944|29383|1 +638684.62735874|220068.73651218|113.53249718|29384|1 +638689.70122708|220064.01889901|112.34479986|29385|1 +638694.77990573|220059.29677079|111.15133544|29386|1 +638699.81242009|220054.61807142|110.01576527|29387|1 +638704.14566815|220050.77237713|123.75883297|29388|1 +638704.92155344|220049.86247671|108.39943279|29389|2 +638708.68065605|220046.67131107|132.00431826|29390|1 +638713.86582446|220041.82222973|128.53539748|29391|1 +638714.98314613|220040.52588718|107.53679535|29392|2 +638719.96395312|220035.9107067|107.65430469|29393|1 +638723.72739723|220032.69450364|129.57356874|29394|1 +638724.93202343|220031.31042277|108.02084119|29395|2 +638730.00292729|220026.59265467|106.6002832|29396|1 +638734.99312563|220021.96793978|106.64935007|29397|1 +638738.25018556|220019.29889945|134.85155481|29398|1 +638739.94976322|220017.37155019|106.4809228|29399|2 +638743.45891636|220014.42027266|130.7635543|29400|1 +638744.69735635|220013.02151654|110.54393874|29401|2 +638745.02135676|220012.65557422|105.25411151|29402|3 +638748.68103599|220009.51952917|125.89922753|29403|1 +638749.95474044|220008.08645951|105.54611287|29404|2 +638753.56155035|220005.01394361|127.35701123|29405|1 +638754.12547129|220004.38182879|118.5353181|29406|2 +638754.95226594|220003.45505138|105.60140263|29407|3 +638759.87483647|219998.89844612|106.09201553|29408|1 +638764.85624716|219994.27642325|105.70539649|29409|1 +638769.84087887|219989.65133925|105.31252667|29410|1 +638774.70307531|219985.16218188|106.72872212|29411|1 +638779.10532522|219981.17978089|114.63336242|29412|1 +638779.50633939|219980.7376594|108.95229317|29413|2 +638779.78845364|219980.42662606|104.95564541|29414|3 +638777.94043801|219978.17704733|111.0380398|29415|1 +638778.1817633|219977.91048538|107.61949744|29416|2 +638773.31915991|219982.38531238|106.13470138|29417|1 +638766.98936116|219988.49070466|126.21893889|29418|1 +638768.41985222|219986.90054445|105.15908456|29419|2 +638761.90466781|219993.21789205|128.43693817|29420|1 +638763.42122216|219991.52640385|105.66307341|29421|2 +638758.39868198|219996.17027036|105.84351857|29422|1 +638752.00224661|220002.36745053|128.3082946|29423|1 +638753.44918555|220000.74208318|105.66948234|29424|2 +638747.04773338|220006.95299803|128.72897675|29425|1 +638748.47294748|220005.34603804|105.95563288|29426|2 +638743.47361908|220009.967671|105.88097683|29427|1 +638737.09787166|220016.1540166|128.81136258|29428|1 +638738.48694941|220014.57522527|105.61959691|29429|2 +638733.42248845|220019.27177091|106.70282598|29430|1 +638727.14754648|220025.36766993|129.85801706|29431|1 +638728.49288045|220023.82534892|106.34753533|29432|2 +638722.1291069|220030.01992562|130.80824934|29433|1 +638723.47823771|220028.46610088|106.66515378|29434|2 +638718.45851024|220033.11328926|107.11988043|29435|1 +638712.31084973|220039.07304382|128.82855226|29436|1 +638713.46370463|220037.73213452|107.15737589|29437|2 +638707.21155614|220043.80986994|130.55241328|29438|1 +638702.46657355|220048.14358195|126.32510006|29439|1 +638702.65034827|220047.92750234|122.68623583|29440|2 +638698.32600423|220051.75995887|109.6017153|29441|1 +638693.2414875|220056.47528196|110.70673843|29442|1 +638688.15985252|220061.18833357|111.8433969|29443|1 +638683.13022403|220065.85334053|112.98504113|29444|1 +638678.02687875|220070.58143627|113.72522069|29445|1 +638673.02519682|220075.21466642|114.3997297|29446|1 +638667.98122786|220079.88623904|115.01397251|29447|1 +638662.90414725|220084.5846701|115.3312468|29448|1 +638657.92666228|220089.19029604|115.59443126|29449|1 +638652.85650894|220093.88129141|115.83117077|29450|1 +638647.83434096|220098.52842568|116.10941481|29451|1 +638642.81333004|220103.17472349|116.40652285|29452|1 +638637.74389104|220107.86679117|116.78142165|29453|1 +638632.71693142|220112.52245585|117.38472557|29454|1 +638627.64536896|220117.21917143|117.97248621|29455|1 +638622.59417008|220121.88923255|117.94264611|29456|1 +638617.5820542|220126.52744704|118.25316732|29457|1 +638612.56884404|220131.16801338|118.66993341|29458|1 +638607.51173744|220135.84827187|119.01534557|29459|1 +638602.50506139|220140.48128746|119.31375586|29460|1 +638597.45848073|220145.14769956|119.33492671|29461|1 +638592.41202904|220149.81438516|119.38758406|29462|1 +638587.36664954|220154.47992075|119.42800028|29463|1 +638582.32214414|220159.1445676|119.46241685|29464|1 +638577.27699519|220163.81083402|119.57827048|29465|1 +638572.23360579|220168.47476171|119.63815532|29466|1 +638567.18988225|220173.13994457|119.77323571|29467|1 +638562.14601777|220177.80628276|119.98977177|29468|1 +638557.10286998|220182.4723502|120.23778503|29469|1 +638552.01382685|220187.18021528|120.43462922|29470|1 +638547.02075336|220191.79935283|120.6345523|29471|1 +638541.93434273|220196.50344007|120.72585854|29472|1 +638536.84755684|220201.2100072|120.98633619|29473|1 +638531.80973465|220205.87003693|121.14824291|29474|1 +638526.72492379|220210.57438292|121.37826654|29475|1 +638521.68857192|220215.23320892|121.55319574|29476|1 +638516.60540322|220219.93572048|121.75899755|29477|1 +638511.5704035|220224.59305531|121.91571388|29478|1 +638506.48863538|220229.29442841|122.13477071|29479|1 +638501.45847813|220233.94815167|122.36075737|29480|1 +638496.37771051|220238.64867892|122.58680914|29481|1 +638491.29723183|220243.34822945|122.75704095|29482|1 +638486.2628214|220248.00217208|122.69008676|29483|1 +638481.18407045|220252.70170252|122.98605999|29484|1 +638476.10420493|220257.40005556|123.10746677|29485|1 +638471.07218332|220262.05431065|123.24130073|29486|1 +638465.98983781|220266.75219626|123.14472039|29487|1 +638460.91073349|220271.45024063|123.29854386|29488|1 +638455.87931643|220276.10393295|123.43317777|29489|1 +638450.80273562|220280.80090452|123.68770228|29490|1 +638445.77648947|220285.45296324|124.07276792|29491|1 +638440.74820796|220290.10516837|124.32054864|29492|1 +638435.72132996|220294.75670324|124.61847524|29493|1 +638430.65045192|220299.4506034|125.04924981|29494|1 +638425.63382411|220304.09745987|125.72875387|29495|1 +638420.61363318|220308.74516463|126.21471588|29496|1 +638415.54333349|220313.43758035|126.57146691|29497|1 +638410.52071847|220318.08578919|126.92043236|29498|1 +638405.50258246|220322.73158584|127.40698038|29499|1 +638400.43895675|220327.41995135|127.93334|29500|1 +638395.46767589|220332.0215908|128.35553833|29501|1 +638385.37235385|220341.36190219|128.8638339|29502|1 +638380.34664067|220346.01115071|129.07026822|29503|1 +638375.32687992|220350.65693705|129.43923249|29504|1 +638370.25378887|220355.34915441|129.65515462|29505|1 +638365.27869731|220359.95124376|129.95286728|29506|1 +638360.18867626|220364.65364623|129.77612423|29507|1 +638355.16626684|220369.29976697|130.09596581|29508|1 +638350.52795583|220373.68556629|137.9518648|29509|1 +638350.19839823|220373.89744248|130.57489567|29510|2 +638345.87329006|220378.08940702|146.04061515|29511|1 +638345.16599718|220378.55004284|130.67655479|29512|2 +638340.86072781|220382.72355012|146.13469332|29513|1 +638340.60638012|220382.89120149|140.76843339|29514|2 +638340.12755484|220383.20681556|130.66612749|29515|3 +638335.79172127|220387.3955143|145.08719237|29516|1 +638335.1145227|220387.84692154|131.19875651|29517|2 +638331.05733474|220391.83117403|149.85058557|29518|1 +638330.11762998|220392.46411297|131.097609|29519|2 +638325.9684127|220396.50508052|147.49554321|29520|1 +638325.13959989|220397.0688034|131.38948014|29521|2 +638320.75602385|220401.27681708|143.84153568|29522|1 +638320.10072385|220401.72667064|131.43593321|29523|2 +638315.61018162|220405.99403641|140.74569055|29524|1 +638315.10881721|220406.34120145|131.49091601|29525|2 +638310.11829304|220410.95499853|131.58958925|29526|1 +638305.1044711|220415.58539281|131.29550429|29527|1 +638300.10747716|220420.20429967|131.32571646|29528|1 +638295.15400675|220424.78234234|131.30768032|29529|1 +638290.14235485|220429.41228739|131.1384903|29530|1 +638285.17428525|220434.00146726|130.93335823|29531|1 +638280.15259518|220438.63943196|130.66463921|29532|1 +638275.17852775|220443.23375711|130.42831828|29533|1 +638270.20486463|220447.82817333|130.22933468|29534|1 +638265.22708855|220452.42599614|129.99915292|29535|1 +638260.24547054|220457.02705169|129.7440331|29536|1 +638255.25418889|220461.63571006|129.38306836|29537|1 +638254.26820172|220458.39475273|129.47303514|29538|1 +638259.30134885|220453.74243929|129.79316508|29539|1 +638264.3295576|220449.09422069|130.07618093|29540|1 +638269.34971641|220444.45233944|130.27220656|29541|1 +638274.37310531|220439.80850588|130.5493902|29542|1 +638279.34102219|220435.21484191|130.73832788|29543|1 +638284.40287071|220430.53443731|130.93607435|29544|1 +638289.41657802|220425.89885234|131.15768917|29545|1 +638294.42537375|220421.26717591|131.3295767|29546|1 +638299.42479346|220416.64250773|131.37065334|29547|1 +638304.52808047|220411.94543963|133.26985284|29548|1 +638309.67367512|220407.20951884|135.19021389|29549|1 +638315.10900832|220402.28675229|143.48299871|29550|1 +638314.70399976|220402.56572655|135.97421411|29551|2 +638314.45473745|220402.73742111|131.35294276|29552|3 +638319.45813486|220398.11130729|131.56902303|29553|1 +638325.37689345|220392.85472316|148.76102198|29554|1 +638324.88673582|220393.18623796|139.19196833|29555|2 +638324.4783767|220393.46242888|131.21983434|29556|3 +638330.40268753|220388.20826243|149.00663539|29557|1 +638335.34086815|220383.63271057|148.45755153|29558|1 +638334.49672504|220384.19194432|131.05604866|29559|2 +638339.68937803|220379.43047602|134.38893096|29560|1 +638344.96387568|220374.63202703|140.76537311|29561|1 +638344.50315922|220374.93010852|130.70550191|29562|2 +638349.77234592|220370.12280239|135.99912427|29563|1 +638349.50555386|220370.29314965|129.99506944|29564|2 +638354.54118201|220365.63498872|130.03375553|29565|1 +638359.5622408|220360.98617711|129.74807007|29566|1 +638364.59980961|220356.32734037|129.87459283|29567|1 +638369.61865299|220351.68010981|129.55183979|29568|1 +638374.64271858|220347.02979932|129.36660422|29569|1 +638379.66242509|220342.38209812|129.06916131|29570|1 +638384.73065649|220337.68989372|128.80059112|29571|1 +638389.7041255|220333.08538239|128.53721132|29572|1 +638394.77260673|220328.39303927|128.27545003|29573|1 +638399.78913473|220323.74686509|127.8663486|29574|1 +638404.80063742|220319.10296062|127.26999311|29575|1 +638409.86515092|220314.41208092|126.8342607|29576|1 +638414.88489257|220309.76358417|126.47566792|29577|1 +638419.9063615|220305.11412935|126.16722101|29578|1 +638424.9208386|220300.46725324|125.55277357|29579|1 +638429.98341348|220295.77557297|124.9120393|29580|1 +638435.00533183|220291.12476438|124.52916888|29581|1 +638440.07698016|220286.42899301|124.22648908|29582|1 +638445.10084786|220281.77686806|123.8815513|29583|1 +638450.12620276|220277.12400704|123.5867594|29584|1 +638455.20142402|220272.42653621|123.41002565|29585|1 +638460.22921285|220267.77262474|123.20942354|29586|1 +638465.25964665|220263.11825529|123.1652308|29587|1 +638470.33889174|220258.42025575|123.23946828|29588|1 +638475.36831849|220253.76587481|123.12074971|29589|1 +638480.39610747|220249.11039434|122.79597818|29590|1 +638485.47457698|220244.41201928|122.78373705|29591|1 +638490.55222566|220239.71274591|122.64068503|29592|1 +638495.58272387|220235.05691928|122.48541047|29593|1 +638500.61367597|220230.40067415|122.33032196|29594|1 +638505.688695|220225.70337474|122.15076046|29595|1 +638510.72024035|220221.04587715|121.93989849|29596|1 +638515.79999652|220216.34365581|121.71733489|29597|1 +638520.83307682|220211.68435428|121.47573985|29598|1 +638525.86716246|220207.02357268|121.19057529|29599|1 +638530.94965235|220202.31836753|120.93158593|29600|1 +638536.03312977|220197.61225549|120.67304306|29601|1 +638541.02168425|220192.99547878|120.53748827|29602|1 +638546.10716957|220188.28736397|120.26710423|29603|1 +638551.14481083|220183.62530377|120.13943735|29604|1 +638556.23115877|220178.91775245|119.97606095|29605|1 +638561.27232561|220174.25054012|119.69899824|29606|1 +638566.31259956|220169.58605962|119.5721034|29607|1 +638571.3549951|220164.91859241|119.364218|29608|1 +638576.44244574|220160.21218662|119.3710083|29609|1 +638581.48293671|220155.54918402|119.37608707|29610|1 +638586.52648405|220150.88177628|119.25647552|29611|1 +638591.57127058|220146.21306929|119.12461354|29612|1 +638596.61277306|220141.54985621|119.18659128|29613|1 +638601.66015952|220136.87835925|119.02399623|29614|1 +638606.71156063|220132.20173104|118.74928686|29615|1 +638611.721733|220127.56090011|118.29091393|29616|1 +638616.77422427|220122.88430125|118.09783695|29617|1 +638621.86892091|220118.17165012|118.13915544|29618|1 +638626.82935628|220113.579866|117.92154969|29619|1 +638631.94611227|220108.84115877|117.36437328|29620|1 +638636.9798339|220104.17613514|116.52001383|29621|1 +638642.00581326|220099.52231082|115.99410069|29622|1 +638647.07442097|220094.83173281|115.67798912|29623|1 +638652.09619487|220090.18481649|115.38958754|29624|1 +638657.11501181|220085.54222105|115.22609022|29625|1 +638662.1939647|220080.84060467|114.79233908|29626|1 +638667.18571644|220076.2177873|114.21341512|29627|1 +638672.22407968|220071.55303625|113.72611366|29628|1 +638677.27458683|220066.87430352|113.02080646|29629|1 +638682.33645447|220062.18278914|112.1350076|29630|1 +638687.40607588|220057.48301272|111.16230223|29631|1 +638692.48743352|220052.77034691|110.0279506|29632|1 +638696.50637697|220049.30075009|129.50339614|29633|1 +638697.53106468|220048.09109757|108.77695469|29634|2 +638702.59451284|220043.40171701|108.17305546|29635|1 +638706.86629798|220039.62549823|121.89303614|29636|1 +638707.33886381|220039.07390835|112.82856665|29637|2 +638707.61590804|220038.75053582|107.51448039|29638|3 +638711.40071349|220035.53593467|130.04025747|29639|1 +638712.60952427|220034.13237378|107.43535017|29640|2 +638717.63862611|220029.47360904|106.7396145|29641|1 +638721.71595551|220025.9206729|123.90261052|29642|1 +638722.69642947|220024.79342221|106.44812474|29643|2 +638726.11924382|220021.97431234|133.78895708|29644|1 +638727.69990058|220020.16537918|106.30694237|29645|2 +638732.63928372|220015.60046148|106.47127686|29646|1 +638736.05109587|220012.77906824|132.83225077|29647|1 +638737.68898185|220010.92071616|105.62046197|29648|2 +638741.09482572|220008.09932844|131.54780567|29649|1 +638742.66676958|220006.32304306|106.00210456|29650|2 +638747.61626641|220001.74768033|106.07884421|29651|1 +638751.12789581|219998.78507148|128.57570207|29652|1 +638752.58402391|219997.15213349|105.89407373|29653|2 +638756.0059409|219994.28433788|129.33227136|29654|1 +638757.55399169|219992.55454626|105.70917302|29655|2 +638762.45624009|219988.04188825|107.29054012|29656|1 +638766.1276754|219984.87692572|125.4717644|29657|1 +638767.50111336|219983.35265955|105.33279524|29658|2 +638772.445931|219978.78414702|105.60758831|29659|1 +638768.80976478|219978.70197814|105.7001968|29660|1 +638763.8099732|219983.31338128|105.46762449|29661|1 +638757.67705354|219989.18849125|122.3567483|29662|1 +638758.79490604|219987.94203859|105.48380958|29663|2 +638753.71375213|219992.63563778|105.80478597|29664|1 +638747.23991764|219998.89404117|128.08808435|29665|1 +638748.65342667|219997.30637019|105.8399839|29666|2 +638741.836182|220003.95931671|134.16955787|29667|1 +638743.51917805|220002.06163836|107.10134199|29668|2 +638738.51879012|220006.66653114|106.24735519|29669|1 +638732.12836146|220012.86168805|129.56328098|29670|1 +638732.51893316|220012.41768711|122.99627334|29671|2 +638733.49110775|220011.31252132|106.65032675|29672|3 +638727.23306601|220017.35343436|127.44302476|29673|1 +638728.44446185|220015.97031072|106.59948324|29674|2 +638723.40141196|220020.6243042|106.51150704|29675|1 +638717.26967608|220026.53321526|126.09681587|29676|1 +638718.17958476|220025.48462813|109.67455751|29677|2 +638711.99893968|220031.44659983|129.88109477|29678|1 +638713.18574438|220030.07205756|107.91910766|29679|2 +638707.03222954|220036.02031871|129.02486625|29680|1 +638708.18453207|220034.67880215|107.15305056|29681|2 +638703.11461365|220039.36582202|107.7140407|29682|1 +638697.76115324|220044.37527385|113.049828|29683|1 +638697.99278818|220044.10257495|108.41372962|29684|2 +638692.45301792|220049.3476337|118.76629981|29685|1 +638692.93257966|220048.77967583|108.90075203|29686|2 +638687.53249599|220053.86255671|116.63709529|29687|1 +638687.85444103|220053.47887009|109.82440913|29688|2 +638682.71787323|220058.23603403|111.06175933|29689|1 +638677.64641368|220062.92946052|112.01751686|29690|1 +638672.58391414|220067.61310152|112.85518833|29691|1 +638667.48876261|220072.32341556|113.41452275|29692|1 +638662.44043455|220076.99159702|114.06581453|29693|1 +638657.35400798|220081.69282303|114.54491183|29694|1 +638652.27403455|220086.38674253|114.91840606|29695|1 +638647.24742888|220091.03012213|115.19625012|29696|1 +638642.1754782|220095.71521404|115.45809513|29697|1 +638637.15351211|220100.3539105|115.7051224|29698|1 +638632.05032367|220105.08144433|117.04100632|29699|1 +638626.97435199|220109.77459852|117.64717519|29700|1 +638621.95222866|220114.41644036|118.13207679|29701|1 +638616.89833153|220119.08153863|118.13335113|29702|1 +638611.79607344|220123.79209026|118.194408|29703|1 +638606.79011111|220128.41362679|118.25534393|29704|1 +638601.72895458|220133.09064771|118.66954273|29705|1 +638596.67282871|220137.76128327|118.94667056|29706|1 +638591.62542418|220142.41959478|118.88684153|29707|1 +638586.57429569|220147.08402928|119.03960461|29708|1 +638581.52483842|220151.74652918|119.16138346|29709|1 +638576.5256239|220156.36134845|119.18555878|29710|1 +638571.43178752|220161.06374114|119.21828243|29711|1 +638566.43360181|220165.67784402|119.26141477|29712|1 +638561.34040041|220170.38028098|119.34480519|29713|1 +638556.29316148|220175.04270745|119.6239515|29714|1 +638551.29526823|220179.65882757|119.8485894|29715|1 +638546.25145237|220184.31658396|120.00936131|29716|1 +638541.16104572|220189.01723933|120.15659913|29717|1 +638536.16588331|220193.63098972|120.39404557|29718|1 +638531.12493684|220198.28515053|120.48047768|29719|1 +638526.08371777|220202.94225462|120.7795763|29720|1 +638521.04341401|220207.59929026|121.1413782|29721|1 +638516.00430848|220212.25538529|121.51587702|29722|1 +638510.96635687|220216.90812181|121.70935397|29723|1 +638505.97665313|220221.51681264|121.94718178|29724|1 +638500.89621282|220226.20874134|122.13440794|29725|1 +638495.90772017|220230.81686715|122.41611224|29726|1 +638490.87162112|220235.46694087|122.53522149|29727|1 +638485.83590977|220240.11673513|122.66075826|29728|1 +638480.80041789|220244.76616391|122.77398879|29729|1 +638475.76420733|220249.41499631|122.78741125|29730|1 +638470.77961079|220254.0208551|123.17555577|29731|1 +638465.74511033|220258.6694488|123.29545567|29732|1 +638460.70775328|220263.31791584|123.19681033|29733|1 +638455.67103897|220267.96665382|123.16709116|29734|1 +638450.6855828|220272.57084818|123.36161921|29735|1 +638445.65416449|220277.21840873|123.62583617|29736|1 +638440.62510271|220281.86505134|123.99020535|29737|1 +638435.64261755|220286.46767859|124.27849531|29738|1 +638430.61296723|220291.11383983|124.56184602|29739|1 +638425.58909438|220295.7575853|125.07654122|29740|1 +638420.61671659|220300.35528977|125.71471749|29741|1 +638415.59736092|220304.99603884|126.32327691|29742|1 +638410.6173417|220309.59613747|126.59277728|29743|1 +638405.59441881|220314.23781016|127.01409194|29744|1 +638400.57509455|220318.87742939|127.53550302|29745|1 +638395.6045784|220323.47213115|128.07357358|29746|1 +638390.62792026|220328.06982388|128.39919156|29747|1 +638385.59896975|220332.7139856|128.57730198|29748|1 +638380.62074497|220337.31248922|128.85293222|29749|1 +638375.64322644|220341.91056953|129.14722182|29750|1 +638370.61908212|220346.55202363|129.46298922|29751|1 +638365.69064417|220351.10766218|129.77307324|29752|1 +638360.6450798|220355.76494778|129.53958935|29753|1 +638355.66491869|220360.36757548|129.76512953|29754|1 +638350.69264333|220364.96528501|130.17787725|29755|1 +638346.0930201|220369.32332227|138.87231278|29756|1 +638341.46268089|220373.6822747|145.39615088|29757|1 +638340.77747039|220374.12843786|130.60023371|29758|2 +638335.95409554|220378.62804934|134.13877829|29759|1 +638330.82211991|220383.33104618|131.20667233|29760|1 +638326.78487465|220387.2994001|150.19073293|29761|1 +638325.83200127|220387.94081002|131.26965465|29762|2 +638321.89281765|220391.83647199|151.67381746|29763|1 +638315.89630445|220397.11910392|131.39154513|29764|1 +638311.33188704|220401.42397853|138.4598069|29765|1 +638310.9621893|220401.67971998|131.66227333|29766|2 +638306.74142731|220405.75373681|145.59285554|29767|1 +638305.98792309|220406.27923536|132.07427692|29768|2 +638301.16050842|220410.76502895|134.22748933|29769|1 +638295.99562862|220415.49901419|131.34129694|29770|1 +638291.03746375|220420.07750421|131.26859425|29771|1 +638286.07055546|220424.66257688|131.07734973|29772|1 +638281.10178891|220429.2493613|130.88600289|29773|1 +638276.13033959|220433.83846949|130.68211725|29774|1 +638271.15530842|220438.43056537|130.45322844|29775|1 +638266.18029265|220443.02304038|130.25542616|29776|1 +638261.20453783|220447.61643188|130.07626464|29777|1 +638256.21344428|220452.22155802|129.70402616|29778|1 +638252.91637904|220451.82022375|129.58726096|29779|1 +638257.951218|220447.16366686|129.9430074|29780|1 +638262.93369117|220442.55509512|130.26696966|29781|1 +638267.95421696|220437.90996827|130.47981291|29782|1 +638272.96829134|220433.26994632|130.62430671|29783|1 +638277.93631389|220428.67317825|130.823774|29784|1 +638282.99519591|220423.99192912|130.98231348|29785|1 +638287.96093301|220419.39759657|131.20678395|29786|1 +638292.96879007|220414.76357848|131.3704487|29787|1 +638298.10106251|220410.04225385|133.72876528|29788|1 +638303.51622515|220405.11408858|140.41691926|29789|1 +638303.08857914|220405.41323413|132.79739702|29790|2 +638308.01021975|220400.84059905|131.5086545|29791|1 +638313.37758161|220395.96070817|138.52081725|29792|1 +638312.98709182|220396.22941374|131.21129531|29793|2 +638318.96171315|220390.9264145|149.17336043|29794|1 +638318.03465587|220391.55860003|131.36523971|29795|2 +638324.0597415|220386.22796359|150.83305779|29796|1 +638328.93727147|220381.70255342|150.05518744|29797|1 +638328.68569034|220381.87077129|144.958|29798|2 +638333.5953325|220377.29716984|142.71180703|29799|1 +638333.29317543|220377.49700801|136.4160857|29800|2 +638333.02785177|220377.6724856|130.88782603|29801|3 +638338.10991769|220372.98043899|131.88506018|29802|1 +638343.64989028|220367.99384693|143.0802876|29803|1 +638343.31426158|220368.21050266|135.66616718|29804|2 +638343.19051952|220368.29038089|132.93268205|29805|3 +638348.05330727|220363.75380427|130.18926262|29806|1 +638353.07275233|220359.10288103|129.85779382|29807|1 +638358.09912936|220354.44768362|129.69505924|29808|1 +638363.12606544|220349.79229092|129.55749527|29809|1 +638368.15877526|220345.13361158|129.58247054|29810|1 +638373.1771691|220340.48360498|129.24552299|29811|1 +638378.19838199|220335.83194425|128.98367799|29812|1 +638383.21591387|220331.18235147|128.61583924|29813|1 +638388.24095826|220326.52857996|128.46675037|29814|1 +638393.26197452|220321.87703421|128.19917547|29815|1 +638398.27702236|220317.22849253|127.73189143|29816|1 +638403.28893726|220312.5811956|127.13358256|29817|1 +638408.30535248|220307.93131625|126.66033608|29818|1 +638413.32727144|220303.27864797|126.36840913|29819|1 +638418.34419808|220298.62791752|125.86423425|29820|1 +638423.35703162|220293.97829307|125.14778352|29821|1 +638428.37622255|220289.32555899|124.65014779|29822|1 +638433.40026204|220284.67071077|124.34010098|29823|1 +638438.470547|220279.97201915|123.94161287|29824|1 +638443.44721132|220275.36027112|123.57683441|29825|1 +638448.52139468|220270.65980059|123.32263546|29826|1 +638453.54719035|220266.00296433|122.98216254|29827|1 +638458.5854148|220261.34498649|123.4605157|29828|1 +638463.66296928|220256.64387683|123.40106804|29829|1 +638468.69100199|220251.98625055|123.16124034|29830|1 +638473.72036916|220247.32843367|123.00284039|29831|1 +638478.79724288|220242.62623574|122.80694498|29832|1 +638483.82768804|220237.96798371|122.69278428|29833|1 +638488.85827593|220233.30929015|122.55381574|29834|1 +638493.93661124|220228.60608177|122.3839467|29835|1 +638498.96772986|220223.9455693|122.13922626|29836|1 +638503.99575624|220219.28902544|121.98216577|29837|1 +638509.07535763|220214.58309742|121.68835055|29838|1 +638514.10852403|220209.91857484|121.27560283|29839|1 +638519.14296799|220205.25304089|120.87556133|29840|1 +638524.17850748|220200.58721141|120.53197231|29841|1 +638529.21450233|220195.92278382|120.33231898|29842|1 +638534.25172676|220191.25643132|120.07039026|29843|1 +638539.33678769|220186.54708571|119.90365592|29844|1 +638544.32742182|220181.92521084|119.75339502|29845|1 +638549.3661862|220177.25911858|119.62334689|29846|1 +638554.4072097|220172.58936034|119.36856193|29847|1 +638559.40093006|220167.96417326|119.18101951|29848|1 +638564.48982639|220163.25187546|119.05963133|29849|1 +638569.53193841|220158.58287441|118.94299636|29850|1 +638574.52424139|220153.96217239|119.00567173|29851|1 +638579.5685911|220149.29063657|118.85191336|29852|1 +638584.61173825|220144.62164601|118.81083672|29853|1 +638589.65539291|220139.95235145|118.78250351|29854|1 +638594.70053197|220135.28129731|118.72317678|29855|1 +638599.70396824|220130.64614159|118.45536933|29856|1 +638604.76010425|220125.96051518|118.04681671|29857|1 +638609.80107525|220121.29696608|118.27539856|29858|1 +638614.80717735|220116.65999472|118.05792303|29859|1 +638619.85787379|220111.98375964|117.99349893|29860|1 +638624.86687029|220107.34404525|117.77004235|29861|1 +638629.9068668|220102.66381441|116.6167244|29862|1 +638635.00020794|220097.93370599|115.41727893|29863|1 +638640.01858351|220093.28427829|115.11949186|29864|1 +638645.03879012|220088.63316778|114.82183501|29865|1 +638650.1091817|220083.93549858|114.50949066|29866|1 +638655.13779753|220079.27512692|114.09372916|29867|1 +638660.17243381|220074.60800682|113.58459643|29868|1 +638665.21636868|220069.93025684|112.91353838|29869|1 +638670.21484644|220065.29468907|112.25710271|29870|1 +638675.2686578|220060.60671099|111.49919397|29871|1 +638680.27501489|220055.97663444|111.8512476|29872|1 +638685.34969304|220051.25227683|109.74277674|29873|1 +638689.15420752|220048.0480923|134.99314645|29874|1 +638689.44700038|220047.70097754|128.94781964|29875|2 +638689.86868324|220047.20105977|120.2413104|29876|3 +638695.42403652|220041.90949579|108.41740382|29877|1 +638700.42632102|220037.2742246|108.06093184|29878|1 +638704.18008139|220034.10622009|132.46013321|29879|1 +638709.0866283|220029.56406451|132.46870014|29880|1 +638713.83352544|220025.22834252|137.12741114|29881|1 +638719.58835409|220019.72205643|122.90572984|29882|1 +638720.49734259|220018.67825765|106.81555421|29883|2 +638724.00763601|220015.74067548|131.63753061|29884|1 +638725.31371305|220014.24761446|109.05004554|29885|2 +638730.42239606|220009.49361797|107.08135247|29886|1 +638733.882016|220006.61020662|132.47962043|29887|1 +638735.22686562|220005.08587012|110.25421631|29888|2 +638735.48747581|220004.79047822|105.94730779|29889|3 +638740.4721674|220000.17905981|106.18888423|29890|1 +638743.65329486|219997.58652046|134.22937759|29891|1 +638745.41566258|219995.60452552|106.33715454|29892|2 +638750.43349098|219990.95641983|106.09954067|29893|1 +638754.14386519|219987.75927044|125.01827489|29894|1 +638755.28880026|219986.48096002|107.6344826|29895|2 +638755.415788|219986.33917926|105.70640109|29896|3 +638759.51670828|219982.70315877|118.47155442|29897|1 +638760.33778835|219981.78955427|106.25221072|29898|2 +638760.85727441|219978.06863424|106.27078637|29899|1 +638755.79173266|219982.74662587|106.34813064|29900|1 +638749.13109541|219989.21743202|131.73019491|29901|1 +638750.80144313|219987.35023455|106.04024184|29902|2 +638745.71969827|219992.04718723|106.42913051|29903|1 +638738.93820924|219998.6595501|134.15394948|29904|1 +638740.69442332|219996.68156043|105.96601367|29905|2 +638734.13192183|220003.06417363|131.51715632|29906|1 +638735.66919022|220001.3259374|106.29934282|29907|2 +638729.50801725|220007.25044859|124.92724771|29908|1 +638730.61286728|220005.99597375|106.39044442|29909|2 +638723.75186008|220012.72436558|137.49774277|29910|1 +638724.89302636|220011.42305106|117.90579248|29911|2 +638718.9358882|220017.12920606|134.16970669|29912|1 +638720.50055397|220015.33690971|106.66687461|29913|2 +638713.63801816|220022.08696089|139.38498019|29914|1 +638708.7731779|220026.54753636|136.8972945|29915|1 +638703.8893199|220031.01759388|133.76836295|29916|1 +638705.28559118|220029.39436302|107.33059357|29917|2 +638699.0567718|220035.4376376|130.4321041|29918|1 +638700.25393194|220034.03838247|107.16795201|29919|2 +638693.9438392|220040.1733471|131.58899394|29920|1 +638694.82875877|220039.13314318|113.92338573|29921|2 +638695.12373282|220038.78640751|108.03484966|29922|3 +638688.79903725|220044.96024216|134.47144702|29923|1 +638689.01044706|220044.71026098|130.13388915|29924|2 +638684.66522604|220048.54667765|116.21255291|29925|1 +638685.00902468|220048.137621|108.95738124|29926|2 +638679.65540688|220053.15600037|114.90018388|29927|1 +638679.88807238|220052.87733965|109.84457538|29928|2 +638674.76111046|220057.62536119|110.9506031|29929|1 +638669.70149683|220062.30674375|111.70625151|29930|1 +638664.55638269|220067.06503592|112.29778868|29931|1 +638659.45241362|220071.78828036|113.12496775|29932|1 +638654.4127214|220076.44795419|113.61986877|29933|1 +638649.27858226|220081.1953254|114.15086067|29934|1 +638644.20238958|220085.88654227|114.47418112|29935|1 +638639.12925276|220090.57454347|114.76669408|29936|1 +638634.05311441|220095.26712429|115.20309623|29937|1 +638628.9696754|220099.97014158|115.93322056|29938|1 +638623.82128059|220104.74137752|117.31584591|29939|1 +638618.74352449|220109.43961731|118.084461|29940|1 +638613.68907363|220114.10728397|118.13556496|29941|1 +638608.59075105|220118.81418467|118.08413544|29942|1 +638603.53863821|220123.47945454|118.11717535|29943|1 +638598.48636348|220128.14542221|118.19419405|29944|1 +638593.38308149|220132.86091088|118.46248519|29945|1 +638588.28382598|220137.57118832|118.61264377|29946|1 +638583.23551344|220142.2330189|118.65321812|29947|1 +638578.1876284|220146.8946895|118.71276809|29948|1 +638573.09265259|220151.60006879|118.78920079|29949|1 +638568.04934861|220156.25514541|118.66194318|29950|1 +638562.95431729|220160.96175476|118.83290983|29951|1 +638557.85954718|220165.66883072|119.06058011|29952|1 +638552.81479161|220170.32830822|119.17787551|29953|1 +638547.76989531|220174.98901505|119.38285876|29954|1 +638542.67860881|220179.69232024|119.56797341|29955|1 +638537.63669656|220184.34853536|119.63605311|29956|1 +638532.54706211|220189.05023451|119.81571693|29957|1 +638527.45777516|220193.75279173|120.08954262|29958|1 +638522.41720426|220198.40988561|120.32722161|29959|1 +638517.32990257|220203.11068422|120.60808875|29960|1 +638512.24350623|220207.81182659|120.98314568|29961|1 +638507.20591124|220212.46993701|121.52163482|29962|1 +638502.12201208|220217.16790556|121.82871436|29963|1 +638497.04258178|220221.86143136|122.11123722|29964|1 +638492.00717837|220226.51334312|122.31931795|29965|1 +638486.92488532|220231.2085678|122.52755682|29966|1 +638481.84231845|220235.90255227|122.6174771|29967|1 +638476.80796243|220240.55270529|122.76385915|29968|1 +638471.72557988|220245.24612474|122.82324169|29969|1 +638466.64504428|220249.9398001|123.03928475|29970|1 +638461.66059258|220254.54532987|123.30462722|29971|1 +638456.58137445|220259.23809974|123.54626877|29972|1 +638451.49330198|220263.93135269|123.17589994|29973|1 +638446.50585772|220268.53657293|123.19781493|29974|1 +638441.42676154|220273.2289122|123.41546719|29975|1 +638436.39946686|220277.8759745|123.83856779|29976|1 +638431.37155711|220282.52273746|124.193105|29977|1 +638426.34507959|220287.16864295|124.5852865|29978|1 +638421.32192242|220291.81289128|125.0900846|29979|1 +638416.30609483|220296.45358175|125.85118386|29980|1 +638411.28447171|220301.09608855|126.33126714|29981|1 +638406.26054109|220305.73931194|126.69905008|29982|1 +638401.28631517|220310.33737533|127.12746199|29983|1 +638396.2699989|220314.97630037|127.71405062|29984|1 +638391.25011403|220319.61671204|128.15711283|29985|1 +638386.27117733|220324.21659908|128.38561097|29986|1 +638376.26683182|220333.45970574|128.87622387|29987|1 +638371.24446371|220338.10113975|129.21974777|29988|1 +638366.22432241|220342.74075669|129.61962184|29989|1 +638361.2684303|220347.30925934|129.25207144|29990|1 +638356.24294538|220351.9503448|129.54592386|29991|1 +638351.26264304|220356.549019|129.78683057|29992|1 +638346.29743364|220361.13813455|130.37719572|29993|1 +638341.60841475|220365.56168069|138.10414418|29994|1 +638341.24454488|220365.79692264|130.06595828|29995|2 +638337.07127316|220369.85491946|146.62772468|29996|1 +638336.73304858|220370.07627243|139.37034849|29997|2 +638336.31455658|220370.35015685|130.39066469|29998|3 +638331.34694265|220374.94076856|130.92465177|29999|1 +638327.1315172|220379.0278973|146.70645491|30000|1 +638326.35019879|220379.55076214|130.85959514|30001|2 +638322.2850934|220383.51954789|148.27648315|30002|1 +638321.41505959|220384.10763346|131.09634396|30003|2 +638317.37874678|220388.06275297|149.54425016|30004|1 +638316.42236823|220388.71536166|131.14971755|30005|2 +638312.02487432|220392.91352982|142.37950107|30006|1 +638311.42702146|220393.32514597|131.17193019|30007|2 +638307.04535431|220397.49820889|141.56676766|30008|1 +638306.49395313|220397.88102012|131.4830095|30009|2 +638301.88212313|220402.22282398|138.38269517|30010|1 +638296.60760126|220407.01764895|132.60138998|30011|1 +638291.73146326|220411.53318899|133.89043016|30012|1 +638286.61978564|220416.21662557|131.22105287|30013|1 +638281.65003712|220420.79969495|131.00142863|30014|1 +638276.68069184|220425.38285425|130.81909521|30015|1 +638271.75723225|220429.92363454|130.63783149|30016|1 +638266.78614938|220434.50877493|130.48634276|30017|1 +638261.81279118|220439.09592918|130.32855673|30018|1 +638256.87302015|220443.64979487|129.99090224|30019|1 +638252.32629068|220444.05655365|129.69016651|30020|1 +638257.32046372|220439.44794019|130.11456936|30021|1 +638262.34864661|220434.80582223|130.37178208|30022|1 +638267.36696986|220430.17132424|130.51083434|30023|1 +638272.38425323|220425.53795087|130.6624998|30024|1 +638277.40125332|220420.90515866|130.83924286|30025|1 +638282.37166886|220416.31599712|131.06454118|30026|1 +638287.3841712|220411.68720997|131.22897799|30027|1 +638292.52418558|220406.96867919|133.61912525|30028|1 +638297.64232607|220402.26721732|135.76055231|30029|1 +638297.4237204|220402.42061491|131.90736584|30030|2 +638302.68541554|220397.61961924|136.67413558|30031|1 +638302.43987968|220397.79058808|132.24053687|30032|2 +638307.44602657|220393.15689484|131.5468848|30033|1 +638313.20728066|220388.01744575|146.08241734|30034|1 +638312.81180198|220388.28819952|138.57283279|30035|2 +638312.4212496|220388.55558061|131.1567962|30036|3 +638317.95169886|220383.5776596|141.58944539|30037|1 +638322.41660716|220379.32286755|131.28106793|30038|1 +638328.37193974|220374.05816396|150.11042139|30039|1 +638332.556801|220369.97101003|132.56516887|30040|1 +638338.06240528|220365.02642773|143.8264575|30041|1 +638337.83134237|220365.17648469|138.79032692|30042|2 +638342.47462603|220360.77827794|130.1718404|30043|1 +638347.47089833|220356.16422854|130.31236233|30044|1 +638352.48429479|220351.52562577|129.75689745|30045|1 +638357.50461965|220346.88259369|129.357628|30046|1 +638362.54956981|220342.22467524|129.58286122|30047|1 +638367.57471254|220337.57893312|129.32132317|30048|1 +638372.6052245|220332.93012455|129.20983208|30049|1 +638377.62217074|220328.28914214|128.72384216|30050|1 +638382.64748726|220323.64334051|128.46905721|30051|1 +638387.67381577|220318.99700368|128.24567505|30052|1 +638392.69700751|220314.35231349|127.92253133|30053|1 +638397.76161654|220309.66669471|127.3851212|30054|1 +638402.77878845|220305.02452038|126.81877324|30055|1 +638407.80197415|220300.3791536|126.439977|30056|1 +638412.82535365|220295.73345648|126.048828|30057|1 +638417.88864837|220291.04665507|125.3188897|30058|1 +638422.91013787|220286.40075907|124.77196385|30059|1 +638427.93430146|220281.75334234|124.30015915|30060|1 +638433.00760099|220277.06101572|123.8647895|30061|1 +638438.03553788|220272.41146405|123.49962967|30062|1 +638443.06286097|220267.76154503|123.05965564|30063|1 +638448.1507246|220263.06528953|123.38139479|30064|1 +638453.14149099|220258.45777637|123.63001267|30065|1 +638458.21991757|220253.76287859|123.36493064|30066|1 +638463.2491051|220249.11103212|122.90702279|30067|1 +638468.28135759|220244.45871391|122.63675968|30068|1 +638473.36504581|220239.76345454|122.72891238|30069|1 +638478.39945361|220235.11135846|122.63411797|30070|1 +638483.43384325|220230.4588156|122.50201414|30071|1 +638488.515886|220225.7617307|122.32646172|30072|1 +638493.55090144|220221.10799687|122.14484453|30073|1 +638498.5864061|220216.4534279|121.93217802|30074|1 +638503.66571606|220211.75599317|121.52637872|30075|1 +638508.7026091|220207.09623955|121.00173063|30076|1 +638513.74097262|220202.43599802|120.5460366|30077|1 +638518.82752565|220197.73441081|120.34133241|30078|1 +638523.86784849|220193.07410075|120.02364884|30079|1 +638528.90908546|220188.41342429|119.74366537|30080|1 +638533.95066319|220183.75369414|119.56387133|30081|1 +638538.99242256|220179.09474215|119.45927285|30082|1 +638544.03534073|220174.4341023|119.30490987|30083|1 +638549.1283524|220169.72535517|119.0023696|30084|1 +638554.17165786|220165.06586206|118.96726469|30085|1 +638559.21817489|220160.40106055|118.74498014|30086|1 +638564.26455486|220155.73741248|118.60413264|30087|1 +638569.26240301|220151.11996813|118.57392977|30088|1 +638574.30893104|220146.45728978|118.52088174|30089|1 +638579.35524454|220141.79544724|118.5180447|30090|1 +638584.35555108|220137.17551424|118.4693127|30091|1 +638589.40465666|220132.51032318|118.40437699|30092|1 +638594.45922028|220127.83767386|118.14611317|30093|1 +638599.46033629|220123.2180273|118.17884612|30094|1 +638604.51300531|220118.54925499|118.08958628|30095|1 +638609.51414675|220113.93029925|118.17866009|30096|1 +638614.52494172|220109.29852554|117.95562209|30097|1 +638619.60034223|220104.60073449|117.22403738|30098|1 +638624.60167328|220099.96370882|115.91200321|30099|1 +638629.68338618|220095.2590863|115.19360841|30100|1 +638634.71246671|220090.60592268|114.70296761|30101|1 +638639.69245399|220085.99937997|114.31484169|30102|1 +638644.72076637|220081.3487355|113.96789473|30103|1 +638649.75661162|220076.68934993|113.477626|30104|1 +638654.75021517|220072.06798984|112.90865494|30105|1 +638659.79362501|220067.40085568|112.35632476|30106|1 +638664.79759528|220062.76845285|111.66897929|30107|1 +638669.85447331|220058.08663777|110.93622256|30108|1 +638674.27737832|220054.1667124|124.30584253|30109|1 +638674.92696993|220053.38697871|109.92946339|30110|2 +638679.09875313|220049.74948103|127.3385286|30111|1 +638679.2597119|220049.55756165|123.8789189|30112|2 +638684.94438033|220044.11692358|108.83004923|30113|1 +638688.80180398|220040.83879853|131.7620907|30114|1 +638689.95666127|220039.47876244|108.29289024|30115|2 +638694.68669582|220035.1717843|113.3948774|30116|1 +638698.76925782|220031.61582265|130.73751863|30117|1 +638699.96897562|220030.21876107|107.61756267|30118|2 +638704.96966817|220025.59591883|107.44814942|30119|1 +638708.34034709|220022.85229028|137.18073823|30120|1 +638713.14763515|220018.43252128|138.96920938|30121|1 +638719.02704504|220012.79821396|122.80544739|30122|1 +638719.95099206|220011.74317785|106.66666997|30123|2 +638723.06537938|220009.25640405|138.01698653|30124|1 +638724.90633967|220007.16340867|106.59116745|30125|2 +638728.18422753|220004.49310984|135.34024224|30126|1 +638729.91756086|220002.53079721|106.4154848|30127|2 +638733.93501455|219999.00932585|121.71142826|30128|1 +638734.88770686|219997.93511278|106.15922086|30129|2 +638738.82422632|219994.50086622|122.45423092|30130|1 +638739.83019222|219993.3709665|106.3819333|30131|2 +638743.09873611|219990.68021493|132.80840102|30132|1 +638744.80518825|219988.77065621|106.11289802|30133|2 +638749.76515609|219984.18757037|106.1112237|30134|1 +638754.71321013|219979.61805768|106.31459774|30135|1 +638748.55817918|219981.44131093|106.24575529|30136|1 +638742.07449829|219987.69955232|128.50605037|30137|1 +638743.49558743|219986.10756097|106.29014337|30138|2 +638738.47805178|219990.73499245|106.4154755|30139|1 +638732.04224245|219996.95410294|128.93889924|30140|1 +638733.44300489|219995.37269043|106.07437936|30141|2 +638726.80094652|220001.84237825|133.36921442|30142|1 +638728.4139849|220000.01385885|106.44885958|30143|2 +638721.73792601|220006.52031903|134.17205074|30144|1 +638722.80246673|220005.30837489|115.99393326|30145|2 +638723.33911374|220004.6974201|106.8301766|30146|3 +638718.07776061|220009.59482498|110.5180798|30147|1 +638718.31355266|220009.32517876|106.39622082|30148|2 +638711.69205258|220015.78665388|134.54588914|30149|1 +638713.22963314|220014.02007791|107.01476105|30150|2 +638706.94169186|220020.10583012|129.78780726|30151|1 +638708.17506854|220018.68183106|107.15413887|30152|2 +638696.94690735|220029.30061297|128.23101545|30153|1 +638698.01352551|220028.05615413|107.62786904|30154|2 +638692.95633839|220032.72244621|107.93635315|30155|1 +638686.69218703|220038.81376209|132.89236815|30156|1 +638682.79351813|220042.10164032|108.70514497|30157|1 +638676.9176077|220047.74840634|126.83019582|30158|1 +638677.73655145|220046.76953388|109.15789964|30159|2 +638671.65472343|220052.65816925|131.38948944|30160|1 +638667.26803432|220056.5096599|116.17212739|30161|1 +638667.52091174|220056.20308592|110.37337207|30162|2 +638662.45608554|220060.88294928|111.20132318|30163|1 +638657.31030639|220065.63403953|111.75308596|30164|1 +638652.25865696|220070.29961912|112.41345627|30165|1 +638647.16369529|220075.00464915|113.03271274|30166|1 +638642.02939179|220079.74404885|113.49890847|30167|1 +638636.9934402|220084.39253889|113.95440716|30168|1 +638631.86637929|220089.12431523|114.34679329|30169|1 +638626.78111185|220093.8206364|114.98664389|30170|1 +638621.70150441|220098.51055223|115.53328138|30171|1 +638616.56549365|220103.25721025|116.45163647|30172|1 +638611.47589539|220107.96311959|117.53606547|30173|1 +638606.40373105|220112.6466394|118.12150067|30174|1 +638601.29804444|220117.35538849|118.25491605|30175|1 +638596.19706255|220122.05798103|118.2452422|30176|1 +638591.15020965|220126.70750097|117.98886664|30177|1 +638585.99748796|220131.4608915|118.22110409|30178|1 +638580.89893717|220136.16108852|118.20038904|30179|1 +638575.84682241|220140.81963941|118.27607759|30180|1 +638570.70280085|220145.56122106|118.21036054|30181|1 +638565.60467747|220150.26212922|118.27850536|30182|1 +638560.55397346|220154.92007859|118.41147425|30183|1 +638555.45515479|220159.62376014|118.64913464|30184|1 +638550.31082894|220164.36847244|118.81067859|30185|1 +638545.26298326|220169.02370905|118.93844779|30186|1 +638540.12065601|220173.76626557|119.07616989|30187|1 +638535.0264908|220178.46471019|119.24083924|30188|1 +638529.93281253|220183.16332667|119.45595212|30189|1 +638524.84006067|220187.86109522|119.67153009|30190|1 +638519.74829683|220192.55763688|119.86256067|30191|1 +638514.65685059|220197.25625134|120.24150574|30192|1 +638509.56684389|220201.95164173|120.47091545|30193|1 +638504.47771441|220206.64906488|120.92575372|30194|1 +638499.39006292|220211.3456762|121.42476612|30195|1 +638494.30762532|220216.03779139|121.94923748|30196|1 +638489.22121517|220220.72938987|122.14289116|30197|1 +638484.13535667|220225.42040377|122.33070333|30198|1 +638479.04950198|220230.11046793|122.44395246|30199|1 +638473.96415488|220234.80037908|122.58262334|30200|1 +638468.87680205|220239.48914158|122.48421985|30201|1 +638463.8359879|220244.13424097|122.32957781|30202|1 +638458.7539424|220248.82425773|122.71935945|30203|1 +638453.67742962|220253.51334716|123.44077733|30204|1 +638448.59532628|220258.20144234|123.67513558|30205|1 +638443.50876155|220262.88971592|123.59745645|30206|1 +638438.41337561|220267.5802965|123.05779529|30207|1 +638433.38483786|220272.22288595|123.60469323|30208|1 +638428.30633198|220276.90939365|123.97805723|30209|1 +638423.2318128|220281.59412038|124.50177515|30210|1 +638418.20375082|220286.23484123|124.93689365|30211|1 +638413.13736915|220290.91520499|125.71117352|30212|1 +638408.0650953|220295.59737673|126.19842847|30213|1 +638403.03869474|220300.23608719|126.59673054|30214|1 +638397.96774998|220304.91695436|127.07837652|30215|1 +638392.94878918|220309.55139384|127.68321523|30216|1 +638387.9249266|220314.18798945|128.10079988|30217|1 +638382.84876122|220318.87083007|128.35849629|30218|1 +638377.81790203|220323.51104124|128.55167558|30219|1 +638372.79312623|220328.14784092|128.9198864|30220|1 +638367.76373737|220332.78724041|129.15710961|30221|1 +638362.73857358|220337.42520633|129.50067072|30222|1 +638357.73612156|220342.03564451|129.21090178|30223|1 +638352.70807234|220346.67690665|129.49230842|30224|1 +638347.74220958|220351.26514183|130.12026205|30225|1 +638342.71080892|220355.90846277|130.32073393|30226|1 +638337.71311358|220360.51693293|130.22466519|30227|1 +638333.37723363|220364.69379742|144.33758081|30228|1 +638333.10293154|220364.87282017|138.4592953|30229|2 +638332.73981549|220365.10980717|130.67775471|30230|3 +638328.49682827|220369.22041757|146.33660698|30231|1 +638328.00700299|220369.54383182|136.1349116|30232|2 +638327.74007013|220369.72007811|130.57545378|30233|3 +638322.77258408|220374.30914897|131.15321502|30234|1 +638318.21244397|220378.6234247|139.75325612|30235|1 +638317.77964017|220378.9152576|131.21935995|30236|2 +638313.64900912|220382.93456471|147.86485164|30237|1 +638308.65004277|220387.52875557|146.54664109|30238|1 +638302.84420847|220392.69383779|131.4447792|30239|1 +638297.885888|220397.27661475|132.19676271|30240|1 +638292.95672767|220401.82825176|132.61369623|30241|1 +638288.28908403|220406.19462418|137.48122281|30242|1 +638288.07249512|220406.34807806|133.79708683|30243|2 +638282.95401018|220411.03459535|131.05326743|30244|1 +638277.94078841|220415.6570949|130.93856722|30245|1 +638272.96426506|220420.24385501|130.67570832|30246|1 +638268.04342641|220424.78119534|130.56969598|30247|1 +638263.07106406|220429.365672|130.43115532|30248|1 +638258.09312869|220433.95457959|130.23648774|30249|1 +638253.15080724|220438.50873871|129.89310337|30250|1 +638256.56192011|220431.7926193|130.22591162|30251|1 +638261.5839578|220427.15198687|130.39000426|30252|1 +638266.55788394|220422.55604914|130.57803037|30253|1 +638271.57610265|220417.91896326|130.74234625|30254|1 +638276.5932386|220413.28304204|130.91928464|30255|1 +638281.60665437|220408.65017617|131.06522021|30256|1 +638287.07059671|220403.68837735|138.10122342|30257|1 +638291.68198094|220399.35147387|132.29265472|30258|1 +638296.76624928|220394.67060763|133.81708565|30259|1 +638302.29135125|220389.67484793|142.63396977|30260|1 +638301.6665067|220390.10742109|131.20315625|30261|2 +638307.28729705|220385.05949906|142.88792686|30262|1 +638306.64525769|220385.50021161|130.84453557|30263|2 +638312.4171851|220380.35349175|145.7555064|30264|1 +638317.41874426|220375.72438285|145.32605269|30265|1 +638316.70134942|220376.20769233|131.14640612|30266|2 +638322.23059049|220371.23389256|142.00559756|30267|1 +638321.91600042|220371.44367611|135.61688637|30268|2 +638321.68988847|220371.59445824|131.02500863|30269|3 +638326.92673412|220366.80515088|135.1117162|30270|1 +638332.38023767|220361.89076301|145.13756149|30271|1 +638331.93602388|220362.18033542|135.58993912|30272|2 +638336.73133832|220357.68066671|130.3294776|30273|1 +638341.76960962|220353.02288057|130.31109729|30274|1 +638346.75030267|220348.41550507|130.07766921|30275|1 +638351.76557321|220343.77234313|129.53524542|30276|1 +638361.83723257|220334.46102247|129.47483039|30277|1 +638366.86017756|220329.81325027|129.12650676|30278|1 +638371.88708127|220325.1631719|128.88451175|30279|1 +638376.90919524|220320.51578277|128.50531553|30280|1 +638381.93698312|220315.86522033|128.28867716|30281|1 +638386.96587366|220311.21412163|128.10968307|30282|1 +638392.03339318|220306.52374542|127.64146886|30283|1 +638397.05143497|220301.87786952|127.0819205|30284|1 +638402.07043235|220297.23111936|126.52251166|30285|1 +638407.09759198|220292.5803127|126.23814706|30286|1 +638412.16555483|220287.88831169|125.67118518|30287|1 +638417.18317653|220283.24064204|124.93742385|30288|1 +638422.25536267|220278.54578857|124.45234551|30289|1 +638427.2817503|220273.89367336|124.00642765|30290|1 +638432.35421731|220269.19755626|123.44080523|30291|1 +638437.39548351|220264.54088351|123.72021199|30292|1 +638442.48083142|220259.84173488|123.85519937|30293|1 +638447.51235896|220255.18752303|123.61645068|30294|1 +638452.53887296|220250.53266124|122.95918715|30295|1 +638457.61319679|220245.83228008|122.18906518|30296|1 +638462.65078587|220241.17588765|122.21971453|30297|1 +638467.73692247|220236.47630398|122.37525884|30298|1 +638472.82239181|220231.77711196|122.51249725|30299|1 +638477.85816022|220227.12061586|122.40023411|30300|1 +638482.89372965|220222.46321408|122.2006738|30301|1 +638487.97708647|220217.760797|121.92651324|30302|1 +638493.01354136|220213.10094031|121.59623506|30303|1 +638498.09426937|220208.39851651|121.12906264|30304|1 +638503.18005461|220203.69199849|120.70611087|30305|1 +638508.21958844|220199.02822515|120.28920525|30306|1 +638513.26018769|220194.36474065|119.97249837|30307|1 +638518.34924895|220189.65720638|119.70691405|30308|1 +638523.39169097|220184.9927455|119.44701311|30309|1 +638528.43501013|220180.32772787|119.2060878|30310|1 +638533.52664321|220175.61855245|118.99790474|30311|1 +638538.57004405|220170.95601907|118.95750713|30312|1 +638543.61516056|220166.29047198|118.80486498|30313|1 +638548.70970364|220161.57834345|118.57286937|30314|1 +638553.75674663|220156.91096715|118.41459034|30315|1 +638558.80499967|220152.24224726|118.23781008|30316|1 +638563.89983773|220147.53216545|118.18821301|30317|1 +638568.89963878|220142.91010649|118.16610269|30318|1 +638573.99790569|220138.1955481|118.01105138|30319|1 +638579.04824119|220133.52605363|117.92286124|30320|1 +638584.04944363|220128.90327357|117.94486924|30321|1 +638589.15196992|220124.18410964|117.73477932|30322|1 +638594.19540178|220119.52606902|118.04701205|30323|1 +638599.19405378|220114.90788557|118.24424691|30324|1 +638604.25853078|220110.22064921|117.78265556|30325|1 +638609.34005095|220105.51107248|116.79703933|30326|1 +638614.37358152|220100.8473899|115.93977832|30327|1 +638619.45251673|220096.14408144|115.26079515|30328|1 +638624.48456195|220091.48585188|114.63490652|30329|1 +638629.5682713|220086.78023675|113.96902955|30330|1 +638634.60185191|220082.1227191|113.44969277|30331|1 +638639.63581284|220077.46556824|112.98667824|30332|1 +638644.67090801|220072.80777281|112.55503861|30333|1 +638649.76381172|220068.09418065|111.92802447|30334|1 +638654.75884405|220063.47243288|111.42417514|30335|1 +638659.70233801|220058.94335152|114.48342709|30336|1 +638664.3992924|220054.68365932|120.85696708|30337|1 +638664.8675749|220054.11502465|110.0635857|30338|2 +638669.23199703|220050.26934298|124.90778839|30339|1 +638669.89166561|220049.47412271|110.1630589|30340|2 +638674.97308074|220044.76488133|109.04082748|30341|1 +638679.97323671|220040.14064715|108.712112|30342|1 +638684.99444387|220035.49210561|107.99701004|30343|1 +638688.74472557|220032.34998382|133.657616|30344|1 +638690.03231562|220030.83693998|107.97247195|30345|2 +638693.57504652|220027.9174368|136.09174206|30346|1 +638695.03610022|220026.21016414|107.70624581|30347|2 +638698.47530375|220023.40238424|137.10471481|30348|1 +638700.04827386|220021.57415574|107.32169177|30349|2 +638705.02549188|220016.97915523|107.62858528|30350|1 +638708.79781043|220013.77078088|129.65719171|30351|1 +638709.76213064|220012.66114522|112.28220821|30352|2 +638713.44798887|220009.53352012|134.38830774|30353|1 +638715.01562353|220007.73801709|106.80428976|30354|2 +638718.58437694|220004.74986527|131.39100563|30355|1 +638719.99832814|220003.13765244|107.08604056|30356|2 +638725.04967335|219998.45954269|106.22858421|30357|1 +638730.00601845|219993.87964021|106.20567393|30358|1 +638733.38879304|219991.07224799|131.51478437|30359|1 +638738.68496743|219986.10504703|125.66379957|30360|1 +638739.92068635|219984.7186438|106.20900397|30361|2 +638744.21776662|219980.87671127|116.43062375|30362|1 +638744.80471888|219980.22058783|107.37981857|30363|2 +638748.19030692|219977.39142207|131.16995821|30364|1 +638739.25356924|219982.3684226|106.46742592|30365|1 +638732.89345976|219988.49647451|128.1071809|30366|1 +638728.78154147|219992.10204082|113.90028942|30367|1 +638729.19945414|219991.63084888|107.05438662|30368|2 +638722.75782555|219997.86429692|131.10412954|30369|1 +638724.22531921|219996.20290835|106.52325519|30370|2 +638717.77613979|220002.44180508|130.45282846|30371|1 +638719.17309147|220000.85343738|106.5091909|30372|2 +638713.55168792|220006.17551688|118.19379408|30373|1 +638714.20309761|220005.43157221|106.76804073|30374|2 +638709.1792357|220010.0611643|107.17070533|30375|1 +638702.99014247|220016.02376741|128.19058993|30376|1 +638704.13016685|220014.7093071|107.20061054|30377|2 +638697.60335451|220021.08172757|136.06562267|30378|1 +638692.52522072|220025.77399264|137.47691609|30379|1 +638694.06975149|220023.97444941|107.55272929|30380|2 +638687.6296961|220030.26551053|136.3076828|30381|1 +638689.07758353|220028.56915569|107.50712268|30382|2 +638683.13042979|220034.27733731|126.02808504|30383|1 +638684.02032457|220033.22857023|107.83670322|30384|2 +638678.46460199|220038.47967584|118.69391339|30385|1 +638678.96977784|220037.88061611|108.07304276|30386|2 +638672.76048781|220043.92919145|134.45846174|30387|1 +638673.95023727|220042.5092144|108.7194139|30388|2 +638668.43390881|220047.72222569|119.43633467|30389|1 +638668.89940417|220047.16283475|109.06208204|30390|2 +638663.07879891|220052.74883501|127.14440983|30391|1 +638663.85266968|220051.81212583|109.36130158|30392|2 +638658.26711386|220057.11921269|122.48833123|30393|1 +638658.59421236|220056.72025493|114.7306497|30394|2 +638658.79141834|220056.47972535|110.0536049|30395|3 +638653.67254244|220061.20438057|111.06008501|30396|1 +638648.67515093|220065.81009258|111.51384427|30397|1 +638643.62882844|220070.46203011|112.05719824|30398|1 +638638.5378403|220075.15493379|112.58447873|30399|1 +638633.49948847|220079.79848668|113.04724211|30400|1 +638628.414254|220084.48576176|113.55026358|30401|1 +638623.37397987|220089.1335853|114.21315467|30402|1 +638618.33548534|220093.78015272|114.90742066|30403|1 +638613.24990151|220098.47102522|115.67355217|30404|1 +638608.17302926|220103.1513483|116.24033731|30405|1 +638603.14093928|220107.7928539|117.00396665|30406|1 +638598.00857983|220112.53055762|118.06801546|30407|1 +638593.0093256|220117.12813148|117.7456996|30408|1 +638587.95988515|220121.77326192|117.52689392|30409|1 +638582.90214882|220126.43089663|117.69548861|30410|1 +638577.89613589|220131.03906561|117.72304048|30411|1 +638572.79300252|220135.73842957|117.88352402|30412|1 +638567.73879308|220140.39255157|118.03411048|30413|1 +638562.73607404|220144.99702969|118.01202807|30414|1 +638557.63657033|220149.69240219|118.12358427|30415|1 +638552.58535581|220154.34343182|118.24985588|30416|1 +638547.53491032|220158.99381893|118.38259223|30417|1 +638542.43687145|220163.6890023|118.58900795|30418|1 +638537.38726003|220168.33978954|118.81600851|30419|1 +638532.33999496|220172.9863646|118.88076747|30420|1 +638527.2454187|220177.67699956|118.98205452|30421|1 +638522.19816418|220182.32606414|119.24728537|30422|1 +638517.15228513|220186.9727536|119.42522835|30423|1 +638512.05910673|220191.66515082|119.77131025|30424|1 +638507.01467133|220196.3127737|120.13098203|30425|1 +638501.97140714|220200.95899048|120.46585529|30426|1 +638496.31494175|220206.17074814|120.8203925|30427|1 +638491.84440988|220210.28965721|121.21086247|30428|1 +638486.75710457|220214.9786506|121.72118583|30429|1 +638481.71737631|220219.62048461|121.96950605|30430|1 +638476.67800368|220224.26135431|122.16801526|30431|1 +638471.59084157|220228.94509076|122.27311603|30432|1 +638466.50165016|220233.62771141|122.14113313|30433|1 +638461.45956699|220238.26689376|122.00915022|30434|1 +638456.41915856|220242.90672447|122.05233837|30435|1 +638451.33372909|220247.59041659|122.28382238|30436|1 +638446.30680413|220252.22896254|123.21483718|30437|1 +638441.22904117|220256.90974099|123.77817136|30438|1 +638436.19476036|220261.54663974|124.04093724|30439|1 +638431.15266658|220266.18531003|123.87269601|30440|1 +638426.06636878|220270.86725783|123.90583824|30441|1 +638421.03701077|220275.50227258|124.38164271|30442|1 +638416.00899058|220280.13628179|124.87632978|30443|1 +638410.98572709|220284.76786275|125.52734251|30444|1 +638405.91385828|220289.44308583|126.08648159|30445|1 +638400.88521995|220294.07598687|126.45047871|30446|1 +638395.86295124|220298.70560611|127.02075202|30447|1 +638390.83923343|220303.33553137|127.50994174|30448|1 +638385.81585758|220307.96497603|127.9867601|30449|1 +638375.75339367|220317.23179804|128.4224274|30450|1 +638370.7292174|220321.86124895|128.84344441|30451|1 +638365.70177404|220326.49244627|129.16469056|30452|1 +638360.66370695|220331.12752709|129.25512243|30453|1 +638355.61697156|220335.76713311|129.15844906|30454|1 +638350.58242128|220340.39958719|129.38662164|30455|1 +638345.6108853|220344.97862189|129.98634437|30456|1 +638340.57740134|220349.61039573|130.23968755|30457|1 +638335.54535362|220354.24130464|130.53065642|30458|1 +638330.9376615|220358.58347106|138.95571251|30459|1 +638330.68837029|220358.74552888|133.57651381|30460|2 +638326.28172738|220362.9516363|145.91271573|30461|1 +638321.0625563|220367.70198285|141.99102168|30462|1 +638320.68729313|220367.9515531|134.34191978|30463|2 +638320.52751528|220368.05781399|131.08512601|30464|3 +638315.979921|220372.35163193|140.06904213|30465|1 +638315.6839866|220372.55047278|134.19870963|30466|2 +638310.53809667|220377.24648164|131.32966041|30467|1 +638306.25199138|220381.35599586|144.81465962|30468|1 +638301.32335987|220385.90098971|145.85516564|30469|1 +638300.52441369|220386.4526126|131.18751997|30470|2 +638295.88848085|220390.79797738|137.79784598|30471|1 +638290.61319247|220395.58808459|132.93470054|30472|1 +638285.56761267|220400.20873993|131.42832436|30473|1 +638280.54581421|220404.82363585|131.20463524|30474|1 +638275.56872177|220409.39708735|130.96379364|30475|1 +638270.54261922|220414.01585652|130.73402116|30476|1 +638265.56947475|220418.58722966|130.61772105|30477|1 +638260.59053417|220423.16314258|130.43900602|30478|1 +638255.60634814|220427.74325992|130.21037766|30479|1 +638254.65273424|220424.53615236|130.18629536|30480|1 +638259.68147699|220419.90139198|130.38000485|30481|1 +638264.66518519|220415.30907254|130.64746813|30482|1 +638269.68485145|220410.68166318|130.7604103|30483|1 +638279.97807066|220401.24816371|135.32503383|30484|1 +638279.73102987|220401.42311324|131.18616191|30485|2 +638284.89271228|220396.69701667|133.82430383|30486|1 +638289.86958677|220392.09117581|132.53081741|30487|1 +638295.48432992|220387.06483151|144.37819237|30488|1 +638294.7472859|220387.57532607|131.1274677|30489|2 +638300.4248302|220382.48714415|142.66194951|30490|1 +638299.79886348|220382.91710076|131.12462136|30491|2 +638305.46503662|220377.8521689|143.66278344|30492|1 +638310.56985469|220373.16285978|145.07160259|30493|1 +638315.342642|220368.6965551|139.96169032|30494|1 +638314.89601685|220368.99480792|131.05928568|30495|2 +638320.26787006|220364.13857898|138.6854959|30496|1 +638320.03273934|220364.29394699|133.86882213|30497|2 +638325.583323|220359.31230654|144.58129666|30498|1 +638325.10159466|220359.62701115|134.42903092|30499|2 +638324.93193834|220359.73784463|130.85357689|30500|3 +638329.95938956|220355.0970019|130.46522773|30501|1 +638334.95481756|220350.49008208|130.42367669|30502|1 +638339.98465709|220345.84785816|130.0980029|30503|1 +638345.02101027|220341.20162241|129.92858964|30504|1 +638349.98892818|220336.61206382|129.25671303|30505|1 +638355.02709579|220331.96481922|129.13749216|30506|1 +638360.11860926|220327.27054572|129.1842987|30507|1 +638365.1108633|220322.66661603|129.14322206|30508|1 +638370.18420685|220317.98315566|128.72236318|30509|1 +638375.21241141|220313.34204157|128.36052408|30510|1 +638380.24516881|220308.69841481|128.13001676|30511|1 +638385.27867615|220304.05442436|127.92467074|30512|1 +638390.3026497|220299.41518443|127.40093422|30513|1 +638395.32817206|220294.77484215|126.9023404|30514|1 +638400.40081464|220290.09052164|126.35834461|30515|1 +638405.43012933|220285.44774556|125.94138318|30516|1 +638410.45797293|220280.80522487|125.43711528|30517|1 +638415.53096729|220276.11926965|124.78784198|30518|1 +638420.56089489|220271.47485438|124.28400196|30519|1 +638425.59622529|220266.82825312|123.99902344|30520|1 +638430.68985652|220262.13492478|124.26301715|30521|1 +638435.72555457|220257.48816681|123.99102391|30522|1 +638440.75990766|220252.8412329|123.60673032|30523|1 +638445.83249197|220248.15026272|122.52820795|30524|1 +638450.9166591|220243.45673711|122.08751769|30525|1 +638455.95706097|220238.80649119|121.87896256|30526|1 +638461.04685011|220234.11242106|121.80146016|30527|1 +638466.09061988|220229.46275337|121.88089733|30528|1 +638471.18157191|220224.76946707|121.94789802|30529|1 +638476.27165722|220220.0757215|121.9153418|30530|1 +638481.31333446|220215.42428875|121.70186604|30531|1 +638486.40240619|220210.72650607|121.27633767|30532|1 +638491.49286507|220206.02825499|120.91375443|30533|1 +638496.53258314|220201.37636447|120.5198614|30534|1 +638501.57728376|220196.72116658|120.22619502|30535|1 +638506.67073309|220192.01972536|119.82720462|30536|1 +638511.76517725|220187.31865585|119.52867341|30537|1 +638516.8130804|220182.66046891|119.2296399|30538|1 +638521.90986455|220177.95687436|118.90067327|30539|1 +638526.95818171|220173.3015869|118.8584153|30540|1 +638532.05617693|220168.59817877|118.63023343|30541|1 +638537.15400121|220163.89645167|118.52124451|30542|1 +638542.20499449|220159.23778469|118.4049258|30543|1 +638547.25706783|220154.57782023|118.26384576|30544|1 +638552.35798219|220149.87257637|118.09981823|30545|1 +638557.41118293|220145.2121556|118.00307045|30546|1 +638562.4670835|220140.54783015|117.79413395|30547|1 +638567.51903953|220135.89072783|117.86653898|30548|1 +638572.57628969|220131.22557906|117.68934944|30549|1 +638577.68218107|220126.51574218|117.521071|30550|1 +638582.74200805|220121.84809337|117.33204961|30551|1 +638587.80262999|220117.17996332|117.16205964|30552|1 +638592.86260113|220112.51339741|117.06727454|30553|1 +638597.93003193|220107.83688108|116.72927589|30554|1 +638603.01079115|220103.14278969|115.97333912|30555|1 +638608.08249784|220098.46228593|115.62979662|30556|1 +638613.16211149|220093.77196964|115.08687983|30557|1 +638618.25662941|220089.06295106|114.15115833|30558|1 +638623.34647617|220084.35799009|113.45944103|30559|1 +638628.38545381|220079.70153698|112.9393229|30560|1 +638633.47389382|220074.99981517|112.44183599|30561|1 +638638.56800736|220070.29177184|111.85745189|30562|1 +638643.29502518|220066.02785663|119.61597058|30563|1 +638643.61540271|220065.62728816|111.31325146|30564|2 +638648.0480094|220061.74061633|127.42057957|30565|1 +638648.72533382|220060.90136923|110.46774789|30566|2 +638652.89191614|220057.3208627|131.3840293|30567|1 +638653.7698643|220056.24216299|110.13000039|30568|2 +638657.77287199|220052.85312233|134.25534815|30569|1 +638658.82501036|220051.57065451|109.59291582|30570|2 +638663.8688343|220046.91362668|109.37409153|30571|1 +638668.97018697|220042.20144649|108.98549121|30572|1 +638673.98944281|220037.5617986|108.35114727|30573|1 +638679.08058303|220032.86309128|108.28120721|30574|1 +638682.76840043|220029.79349608|134.68652269|30575|1 +638684.08822103|220028.23851667|107.98997789|30576|2 +638687.87414244|220025.05752485|132.73922371|30577|1 +638692.71072588|220020.6367242|136.08177985|30578|1 +638697.9812084|220015.70004693|130.28028981|30579|1 +638699.2094638|220014.27684175|107.32020348|30580|2 +638704.21304829|220009.65896883|107.25981635|30581|1 +638709.22040708|220005.03715317|107.16207328|30582|1 +638714.22706694|220000.41653963|107.10793695|30583|1 +638719.05925352|219996.00507301|110.8631571|30584|1 +638719.29827278|219995.73330602|106.80437347|30585|2 +638723.11959452|219992.44545525|125.69708133|30586|1 +638724.23359878|219991.18413402|107.19894553|30587|2 +638729.24143428|219986.56326078|107.20712179|30588|1 +638732.85323524|219983.50111441|128.66909191|30589|1 +638734.2320994|219981.95228302|106.74877675|30590|2 +638739.04724288|219977.54784157|109.81772115|30591|1 +638734.82636788|219977.71254145|122.50250714|30592|1 +638729.28071857|219982.92207315|130.62232543|30593|1 +638730.75581807|219981.26045013|106.97081946|30594|2 +638724.14824462|219987.66927349|132.35980425|30595|1 +638725.67042256|219985.94767602|107.40979819|30596|2 +638720.61611291|219990.6002064|107.37611646|30597|1 +638715.56481324|219995.24963955|107.31776642|30598|1 +638710.54864992|219999.85912865|106.66811175|30599|1 +638705.41356142|220004.59441107|107.28964715|30600|1 +638698.79497979|220011.0586407|136.22560392|30601|1 +638693.71609071|220015.73947502|136.64077941|30602|1 +638688.94929342|220020.0677588|131.97130625|30603|1 +638690.18900902|220018.61760661|107.89111861|30604|2 +638683.66189597|220025.00563973|137.46370757|30605|1 +638685.1383889|220023.26861284|108.00877678|30606|2 +638680.03776025|220027.9666343|108.20279324|30607|1 +638673.67745172|220034.16565563|135.01815893|30608|1 +638674.93934804|220032.66253037|108.39103329|30609|2 +638668.75585257|220038.6734172|133.23266434|30610|1 +638669.88943783|220037.31414314|108.60929947|30611|2 +638663.84034999|220043.15912146|130.16420364|30612|1 +638664.05757838|220042.89680011|125.30123493|30613|2 +638664.78696635|220042.01600337|108.972878|30614|3 +638659.63900554|220046.75968884|109.33254979|30615|1 +638653.56495704|220052.66893453|134.11594243|30616|1 +638654.59745805|220051.40286415|109.49566574|30617|2 +638648.44628007|220057.40344616|135.86842501|30618|1 +638643.57027721|220061.83717567|131.58358961|30619|1 +638644.38951397|220060.81522857|110.68758607|30620|2 +638638.67077426|220066.29692942|127.6411526|30621|1 +638639.29090045|220065.51607064|111.25309687|30622|2 +638634.14766563|220070.25778519|111.80279465|30623|1 +638629.05629356|220074.951232|112.31316452|30624|1 +638623.96714806|220079.64270262|112.83019446|30625|1 +638618.87698873|220084.33646016|113.45374834|30626|1 +638613.78234514|220089.03729714|114.30864671|30627|1 +638608.64883554|220093.77147643|114.97356559|30628|1 +638603.54581258|220098.48664986|116.3476054|30629|1 +638598.4979586|220103.12697186|115.84294682|30630|1 +638593.42246365|220107.80632037|116.39990929|30631|1 +638588.30676117|220112.51993305|116.74223326|30632|1 +638583.28723908|220117.14552914|117.12771748|30633|1 +638578.0417689|220122.05810537|123.68479083|30634|1 +638578.1796726|220121.84884395|117.25231478|30635|2 +638573.1173003|220126.51281011|117.55462251|30636|1 +638568.10628624|220131.12799202|117.74073245|30637|1 +638563.00631697|220135.82118118|117.62286965|30638|1 +638557.94968364|220140.47816586|117.79477578|30639|1 +638552.89527151|220145.13206023|117.88571924|30640|1 +638547.84031153|220149.78773034|118.07685214|30641|1 +638542.7394015|220154.48496244|118.21037915|30642|1 +638537.73512147|220159.09261758|118.29738796|30643|1 +638532.63669123|220163.78627784|118.3316371|30644|1 +638527.58614198|220168.43626348|118.39882383|30645|1 +638522.53496562|220173.08913542|118.64745102|30646|1 +638517.43783333|220177.78262314|118.76404878|30647|1 +638512.38766137|220182.43727211|119.22567734|30648|1 +638507.33948726|220187.08743918|119.48131806|30649|1 +638502.24453984|220191.78169436|119.81774471|30650|1 +638497.19832789|220196.43163717|120.19890361|30651|1 +638492.15732157|220201.07654097|120.56154266|30652|1 +638487.06514847|220205.76766576|120.85530206|30653|1 +638482.06919405|220210.37059746|121.18107818|30654|1 +638476.97920833|220215.06057368|121.54420093|30655|1 +638471.93683054|220219.70495369|121.77019689|30656|1 +638466.89291099|220224.34755492|121.74639364|30657|1 +638461.84918297|220228.99037168|121.7540211|30658|1 +638456.75731313|220233.67695401|121.71851622|30659|1 +638451.76204522|220238.27624844|121.81358037|30660|1 +638446.72008596|220242.91924971|121.96549698|30661|1 +638441.68187491|220247.56166326|122.34256309|30662|1 +638436.65984475|220252.20065166|123.61965049|30663|1 +638431.62589514|220256.83992111|124.05951289|30664|1 +638426.59054148|220261.47896025|124.38081485|30665|1 +638421.59262021|220266.07697432|124.18864015|30666|1 +638416.55734748|220270.71576271|124.49766377|30667|1 +638411.52810031|220275.35202246|125.04426405|30668|1 +638406.54851738|220279.94308431|125.63313161|30669|1 +638401.52058308|220284.57771842|126.14865467|30670|1 +638396.53675371|220289.16972046|126.50628937|30671|1 +638391.55877732|220293.75871077|127.05124324|30672|1 +638386.53478252|220298.39032546|127.61692147|30673|1 +638381.55308713|220302.980489|127.98689032|30674|1 +638376.56434591|220307.57426266|128.13194223|30675|1 +638371.53385537|220312.20872494|128.45423948|30676|1 +638366.59982305|220316.75477995|128.80902783|30677|1 +638361.57200192|220321.38756087|129.19386093|30678|1 +638356.56876148|220325.98846505|128.96409775|30679|1 +638351.57923739|220330.58157366|129.1151679|30680|1 +638346.60749759|220335.16394183|129.70943979|30681|1 +638341.97975826|220339.53263339|138.39335501|30682|1 +638341.60762271|220339.76353523|129.62318442|30683|2 +638337.12528573|220344.0375244|141.38338313|30684|1 +638336.89983721|220344.17950208|136.23411505|30685|2 +638336.62793222|220344.35073602|130.02378402|30686|3 +638331.64782554|220348.93814707|130.41180763|30687|1 +638326.70305931|220353.48962659|130.53415389|30688|1 +638321.86983219|220357.98096068|133.99811682|30689|1 +638317.17139125|220362.3686243|139.06728731|30690|1 +638317.10421829|220362.41306949|137.70093077|30691|2 +638316.76559255|220362.6371222|130.81301185|30692|3 +638312.4608363|220366.77317564|144.58816137|30693|1 +638311.77354385|220367.23269993|130.98223906|30694|2 +638307.36320179|220371.43566147|142.37929643|30695|1 +638306.77502875|220371.83278875|131.03917524|30696|2 +638302.20260062|220376.1313708|138.22712296|30697|1 +638301.8057118|220376.40180427|130.76769359|30698|2 +638297.5808354|220380.45961081|144.17839951|30699|1 +638292.59983518|220385.03337464|143.43733629|30700|1 +638291.92447797|220385.501321|131.35294276|30701|2 +638287.29915917|220389.83104725|137.16602282|30702|1 +638286.97268938|220390.05900046|131.46125264|30703|2 +638282.53965294|220394.26235689|141.25520465|30704|1 +638282.04773944|220394.60836419|132.85810971|30705|2 +638277.28313971|220399.02336754|135.2986819|30706|1 +638272.39425912|220403.53577387|136.40306321|30707|1 +638267.08805868|220408.34720262|130.81440711|30708|1 +638262.15598763|220412.88240039|130.58660661|30709|1 +638257.17121824|220417.46553443|130.31383201|30710|1 +638252.23876042|220422.00177535|130.14161893|30711|1 +638254.58281787|220415.68224593|130.25311002|30712|1 +638259.61789365|220411.04759115|130.53706535|30713|1 +638264.64724144|220406.4174958|130.7651449|30714|1 +638270.09077537|220401.49326276|137.76153185|30715|1 +638269.70407992|220401.76827702|131.47326124|30716|2 +638274.72090457|220397.14804179|131.57084617|30717|1 +638279.67769498|220392.58071096|131.48610699|30718|1 +638284.7612452|220387.90399958|131.96583681|30719|1 +638290.49753733|220382.78778682|144.98355198|30720|1 +638295.43007934|220378.23097344|143.9793322|30721|1 +638294.71248479|220378.72274902|130.8646274|30722|2 +638300.2390689|220373.74628525|139.74003829|30723|1 +638299.81582817|220374.03378964|131.80666481|30724|2 +638305.36525109|220369.06905817|143.23019503|30725|1 +638310.62571861|220364.28092906|147.70507502|30726|1 +638309.78222024|220364.84304871|131.04869095|30727|2 +638315.25835197|220359.91026516|139.70935173|30728|1 +638320.08610193|220355.41959336|136.34561544|30729|1 +638319.80472975|220355.6030525|130.47407372|30730|2 +638324.85717826|220350.95007278|130.56891463|30731|1 +638329.84594965|220346.35148893|130.33665857|30732|1 +638335.51498408|220341.31250153|144.54401514|30733|1 +638340.55186878|220336.67597321|144.80310682|30734|1 +638339.90896555|220337.07304298|129.66597259|30735|2 +638345.41110473|220332.14789307|140.7799676|30736|1 +638345.17758273|220332.28977554|135.09914019|30737|2 +638344.94483024|220332.43119048|129.43702797|30738|3 +638349.98143946|220327.78898331|129.23326325|30739|1 +638355.01297356|220323.14984771|128.90481753|30740|1 +638360.06863623|220318.49686679|129.22593345|30741|1 +638365.09794508|220313.85923956|128.85416935|30742|1 +638370.12903071|220309.22054826|128.52628174|30743|1 +638375.15907488|220304.58233963|128.16109399|30744|1 +638380.19575572|220299.94060477|127.99593165|30745|1 +638385.22584185|220295.30221875|127.61858649|30746|1 +638390.2514952|220290.66575367|127.07274895|30747|1 +638395.32662271|220285.98422946|126.56267673|30748|1 +638400.3557432|220281.34539617|126.0797099|30749|1 +638405.38645707|220276.70550711|125.62814586|30750|1 +638410.4151664|220272.06594642|125.05802138|30751|1 +638415.49379065|220267.38117166|124.54290761|30752|1 +638420.53915688|220262.73529489|124.67303016|30753|1 +638425.57610547|220258.09203194|124.40344607|30754|1 +638430.65878833|220253.40508528|124.00804616|30755|1 +638435.68643724|220248.76237124|123.11401522|30756|1 +638440.76110446|220244.07406566|122.03815316|30757|1 +638445.80309553|220239.42684857|121.81946839|30758|1 +638450.84669775|220234.77936273|121.69472227|30759|1 +638455.93808791|220230.08791056|121.56975291|30760|1 +638460.98289181|220225.44037997|121.52674149|30761|1 +638466.02752364|220220.79270268|121.45894084|30762|1 +638471.11937333|220216.10061833|121.3162888|30763|1 +638476.16385712|220211.45180999|121.14899635|30764|1 +638481.20839421|220206.80167435|120.88190514|30765|1 +638486.30136643|220202.10715031|120.62782712|30766|1 +638491.34736991|220197.45464588|120.2800151|30767|1 +638496.4375561|220192.76126369|119.91417623|30768|1 +638501.48529323|220188.10782392|119.61689146|30769|1 +638506.58195923|220183.40794244|119.20812489|30770|1 +638511.63266476|220178.74930751|118.71767943|30771|1 +638516.73164659|220174.04860425|118.40971621|30772|1 +638521.78383378|220169.39151738|118.14480162|30773|1 +638526.83606502|220164.73600197|118.00509824|30774|1 +638531.93569351|220160.03827153|117.97323036|30775|1 +638536.98802664|220155.38421195|117.95279435|30776|1 +638542.04145839|220150.72850613|117.88261245|30777|1 +638547.14320774|220146.02837878|117.81441183|30778|1 +638552.19930034|220141.36912616|117.65736063|30779|1 +638557.25686738|220136.70812593|117.46931592|30780|1 +638562.31441688|220132.04794802|117.34400239|30781|1 +638567.3690002|220127.39317012|117.42504877|30782|1 +638572.13873528|220123.18041795|131.51488669|30783|1 +638572.42972603|220122.72913075|117.22529312|30784|2 +638577.29726761|220118.38590964|128.16314969|30785|1 +638577.54287348|220118.0148182|116.86590968|30786|2 +638582.25321504|220113.84304287|129.89023842|30787|1 +638582.55746744|220113.39385939|116.71419771|30788|2 +638587.62470296|220108.72249915|116.40914595|30789|1 +638592.69838507|220104.04281587|115.91709128|30790|1 +638597.76845074|220099.3691981|115.63765662|30791|1 +638602.85135312|220094.67872914|114.96527771|30792|1 +638607.9358488|220089.98728435|114.33073843|30793|1 +638612.97585635|220085.33650547|113.67457252|30794|1 +638618.0695423|220080.63559216|112.92842122|30795|1 +638623.11616963|220075.98211879|112.28520338|30796|1 +638628.20270376|220071.29583045|111.94538158|30797|1 +638633.30038101|220066.59609991|111.3564024|30798|1 +638637.83903814|220062.58401992|124.26341713|30799|1 +638638.35512909|220061.93511218|110.70781744|30800|2 +638642.61693339|220058.26287177|130.24401288|30801|1 +638643.3992136|220057.28835309|110.40255174|30802|2 +638648.44959114|220052.63445366|109.99143182|30803|1 +638652.43596635|220049.28440309|134.88633415|30804|1 +638653.51434458|220047.96365627|109.29367767|30805|2 +638658.53039932|220043.35296552|109.78715551|30806|1 +638662.38592365|220040.15582803|137.21806626|30807|1 +638663.67328774|220038.60299658|108.52081167|30808|2 +638668.67230611|220034.00002264|108.39288434|30809|1 +638673.76797064|220029.30841437|108.2869092|30810|1 +638677.42896876|220026.28843373|135.57990251|30811|1 +638678.78797699|220024.68150969|107.79767297|30812|2 +638683.80208398|220020.07449903|108.4351144|30813|1 +638688.86960512|220015.4049999|108.03211494|30814|1 +638692.40979982|220012.49964088|135.60009666|30815|1 +638693.89482476|220010.77364808|107.56811443|30816|2 +638697.50962715|220007.78501801|133.99755872|30817|1 +638698.93842067|220006.1330572|107.70126006|30818|2 +638703.95859731|220001.50860258|107.41187249|30819|1 +638708.99883676|219996.86170355|106.81122888|30820|1 +638712.35227606|219994.14863878|135.98057653|30821|1 +638714.01847416|219992.24957628|107.44291252|30822|2 +638719.01080716|219987.64774025|106.9176412|30823|1 +638722.33837517|219984.94802303|135.27487866|30824|1 +638724.05315075|219983.01026727|107.20084309|30825|2 +638729.06180565|219978.40100949|107.26656944|30826|1 +638723.43292453|219980.09574495|107.27913614|30827|1 +638718.33586838|219984.77135787|107.05056359|30828|1 +638711.90970315|219990.98161561|131.16876759|30829|1 +638713.3162096|219989.38018113|107.16382202|30830|2 +638707.80447886|219994.53067437|114.2269399|30831|1 +638708.19816138|219994.08035776|107.34681587|30832|2 +638701.75597361|220000.31395505|132.13378968|30833|1 +638703.14048411|219998.72269841|107.34901108|30834|2 +638696.40302492|220005.30566668|138.20012921|30835|1 +638698.08063385|220003.3679114|107.41991853|30836|2 +638691.56373836|220009.69377419|134.04102592|30837|1 +638692.96606365|220008.06544733|107.64776554|30838|2 +638687.90692302|220012.71071934|107.7753394|30839|1 +638682.16953168|220018.14064114|120.44120558|30840|1 +638682.80144397|220017.39860564|107.90434574|30841|2 +638677.12142874|220022.76572143|119.78721628|30842|1 +638677.71792096|220022.06102442|107.62250191|30843|2 +638671.28052603|220028.34612825|136.75822364|30844|1 +638672.65135625|220026.71639119|108.00643274|30845|2 +638666.64043867|220032.48934338|127.79742244|30846|1 +638667.54687286|220031.40447941|108.22389897|30847|2 +638662.43758789|220036.09889708|108.59143076|30848|1 +638657.37759082|220040.74829459|108.98255185|30849|1 +638651.2066637|220046.74332892|134.60664834|30850|1 +638652.23076877|220045.49004557|110.34865725|30851|2 +638647.22509692|220050.07426225|109.55547617|30852|1 +638640.97389025|220056.19298245|139.05976218|30853|1 +638642.10857937|220054.78052882|110.33000718|30854|2 +638637.01531333|220059.45868811|110.58105283|30855|1 +638631.91491184|220064.14653209|111.07580501|30856|1 +638626.56606292|220069.15390312|118.65908754|30857|1 +638626.82202885|220068.82561692|111.42748658|30858|2 +638621.7226664|220073.51386465|112.02915338|30859|1 +638616.28390912|220078.64876003|123.10330888|30860|1 +638616.63350608|220078.18975696|112.40035007|30861|2 +638611.53130449|220082.88381998|113.25250441|30862|1 +638606.44003668|220087.56453367|113.84919476|30863|1 +638601.35256288|220092.24120034|114.40256674|30864|1 +638596.26782039|220096.9151926|114.94383711|30865|1 +638591.18201425|220101.59184581|115.61657879|30866|1 +638586.10374627|220106.25899658|116.08988108|30867|1 +638575.91506536|220115.61727356|116.60407398|30868|1 +638570.89255642|220120.23156365|116.95586716|30869|1 +638565.48878994|220125.39089058|132.43070239|30870|1 +638565.78746303|220124.91418117|116.71611388|30871|2 +638560.71881176|220129.57150804|117.11604375|30872|1 +638555.65826346|220134.21631366|117.12271313|30873|1 +638550.54969628|220138.90605206|117.19018821|30874|1 +638545.48810187|220143.5539858|117.36611271|30875|1 +638540.47569932|220148.15614155|117.50016061|30876|1 +638535.36924939|220152.84415832|117.58743918|30877|1 +638530.31091827|220157.48827292|117.70155337|30878|1 +638525.30218383|220162.08486564|117.66720191|30879|1 +638520.19728567|220166.7719322|117.79296193|30880|1 +638515.14063686|220171.4148863|117.93895331|30881|1 +638510.08375744|220176.06101718|118.31637289|30882|1 +638505.02797414|220180.70710596|118.76898803|30883|1 +638499.97356612|220185.35281032|119.29055723|30884|1 +638494.92076613|220189.9956642|119.70610479|30885|1 +638489.87341315|220194.63349987|120.1218942|30886|1 +638484.82219309|220199.27231686|120.33783494|30887|1 +638479.77191481|220203.91106715|120.61646035|30888|1 +638474.72245444|220208.54906018|120.8952811|30889|1 +638469.67313079|220213.18570986|121.08054458|30890|1 +638464.62332381|220217.82127508|121.14722901|30891|1 +638459.57449567|220222.45706126|121.3016106|30892|1 +638449.47675291|220231.72756988|121.52339285|30893|1 +638444.42872946|220236.3625941|121.67830464|30894|1 +638439.42902617|220240.95358154|121.86388438|30895|1 +638434.38709239|220245.58709885|122.33772617|30896|1 +638429.35590365|220250.21773957|123.35535911|30897|1 +638424.3256482|220254.84647086|124.29189917|30898|1 +638419.2857139|220259.4766102|124.64744097|30899|1 +638414.29149767|220264.06324094|124.88932436|30900|1 +638409.24680142|220268.69452061|124.99514137|30901|1 +638404.21379589|220273.32124969|125.58220439|30902|1 +638399.22445588|220277.90530637|125.97402312|30903|1 +638394.19019281|220282.5316442|126.44253499|30904|1 +638389.20618431|220287.11264035|126.97796384|30905|1 +638384.2219401|220291.6933507|127.47579492|30906|1 +638379.18917618|220296.317974|127.91949895|30907|1 +638374.1947026|220300.90349083|128.06123012|30908|1 +638369.20612427|220305.48591339|128.38402967|30909|1 +638364.17199323|220310.11088296|128.75923542|30910|1 +638359.18250694|220314.6942796|129.03826081|30911|1 +638354.17553851|220319.28960686|128.83644017|30912|1 +638349.18818255|220323.87373615|129.16530447|30913|1 +638344.20751635|220328.45379544|129.65640106|30914|1 +638339.94937784|220332.59027212|147.26990072|30915|1 +638334.69931502|220337.33108838|141.0182233|30916|1 +638334.22256704|220337.62820789|130.06406071|30917|2 +638329.61021032|220341.9616114|137.69135925|30918|1 +638329.27198861|220342.17538886|130.15211133|30919|2 +638324.28302525|220346.76063362|130.45557248|30920|1 +638319.28172114|220351.35391518|130.50313247|30921|1 +638314.28623865|220355.94361045|130.68794946|30922|1 +638309.909303|220360.12335069|143.1876487|30923|1 +638305.00233182|220364.63801217|143.86614818|30924|1 +638299.36679057|220369.64498945|130.77257702|30925|1 +638294.87696306|220373.89050136|140.32426427|30926|1 +638294.36926371|220374.23677435|130.97585805|30927|2 +638289.98523454|220378.3957069|141.35768232|30928|1 +638289.40675677|220378.7935636|130.96279835|30929|2 +638284.53557533|220383.29810133|133.41053291|30930|1 +638274.87430146|220392.21576771|137.00003262|30931|1 +638274.51533467|220392.46826239|130.98487147|30932|2 +638269.69147547|220396.92791113|133.32699366|30933|1 +638264.88690254|220401.37277953|135.89887902|30934|1 +638259.53861911|220406.21606426|130.59921982|30935|1 +638254.59470957|220410.75185077|130.28723824|30936|1 +638255.38678897|220406.9848887|130.37176348|30937|1 +638260.37228486|220402.39962407|130.5959828|30938|1 +638265.80839088|220397.48367651|137.37759172|30939|1 +638270.66935791|220392.9893348|135.75153889|30940|1 +638275.66431218|220388.38980085|135.53530979|30941|1 +638275.4107581|220388.56817866|131.24031685|30942|2 +638280.70564695|220383.75804599|136.13583248|30943|1 +638286.09034931|220378.88896157|142.88454102|30944|1 +638285.39746944|220379.36921098|130.582365|30945|2 +638290.4509453|220374.72853127|131.35715646|30946|1 +638296.07453835|220369.70000131|142.82827457|30947|1 +638300.95284586|220365.18280729|140.65444942|30948|1 +638300.4284093|220365.53707794|130.61831636|30949|2 +638310.49512529|220356.27446819|130.73029115|30950|1 +638315.44186121|220351.71927596|130.51126222|30951|1 +638320.49219238|220347.07125991|130.47832463|30952|1 +638325.53819337|220342.42628643|130.37076819|30953|1 +638330.94120533|220337.57016605|139.45410169|30954|1 +638330.52857963|220337.8303234|130.09822614|30955|2 +638336.22463808|220332.7818501|145.22770501|30956|1 +638340.62267229|220328.55466788|131.15430332|30957|1 +638346.03338162|220323.69182797|140.26231444|30958|1 +638350.62589251|220319.32003176|128.86807551|30959|1 +638355.62207369|220314.72093567|128.76426768|30960|1 +638360.67650359|220310.07225752|128.97006949|30961|1 +638365.70696142|220305.43728113|128.52039371|30962|1 +638370.74021756|220300.8006176|128.13958829|30963|1 +638375.78139474|220296.15970549|127.99628512|30964|1 +638380.81889606|220291.52074718|127.74074672|30965|1 +638385.84830476|220286.88566347|127.20430397|30966|1 +638390.87860417|220282.24977128|126.66800075|30967|1 +638395.91147651|220277.61231979|126.19432639|30968|1 +638400.9462313|220272.97370089|125.76454711|30969|1 +638405.98006315|220268.3350701|125.26619514|30970|1 +638411.02234121|220263.69298187|125.10541393|30971|1 +638416.06164969|220259.05180428|124.80110632|30972|1 +638421.14668196|220254.36709201|124.37709414|30973|1 +638426.1770013|220249.72712363|123.517117|30974|1 +638431.20800062|220245.08549776|122.57605628|30975|1 +638436.29288234|220240.39762457|121.89057117|30976|1 +638441.33840515|220235.75166221|121.6561106|30977|1 +638446.38546936|220231.10525302|121.49683628|30978|1 +638451.48008471|220226.41475721|121.30607545|30979|1 +638461.57678587|220217.12106432|121.10125963|30980|1 +638466.6730011|220212.43008781|120.98657803|30981|1 +638471.72179903|220207.78254113|120.85979482|30982|1 +638476.77033423|220203.13349664|120.59572669|30983|1 +638481.86714741|220198.43954792|120.288396|30984|1 +638486.91751632|220193.79026975|120.13736305|30985|1 +638492.01594282|220189.09295589|119.68084117|30986|1 +638497.06333779|220184.44190264|119.17408039|30987|1 +638502.11669684|220179.78546035|118.67384016|30988|1 +638507.21917679|220175.08437736|118.2122209|30989|1 +638512.32236228|220170.38473329|117.91354086|30990|1 +638517.33073342|220165.77331168|117.70058599|30991|1 +638522.43454436|220161.07557655|117.59633168|30992|1 +638527.49086031|220156.42212978|117.54116284|30993|1 +638532.54804807|220151.7674913|117.45500049|30994|1 +638537.65418286|220147.06727206|117.32069214|30995|1 +638542.714124|220142.40885525|117.1351589|30996|1 +638547.77433633|220137.75083307|116.99986457|30997|1 +638552.83385023|220133.09474131|116.96476896|30998|1 +638557.93998835|220128.39711885|117.03195569|30999|1 +638562.65925076|220124.25356537|132.69139397|31000|1 +638568.02163324|220119.11477909|116.60492044|31001|1 +638573.14236592|220114.39638903|116.09243907|31002|1 +638578.0628069|220109.921721|120.26515086|31003|1 +638583.2281791|220105.11251812|115.84166318|31004|1 +638588.30799126|220100.43101897|115.27150149|31005|1 +638593.38798011|220095.7504041|114.78287918|31006|1 +638598.47349491|220091.06320953|114.17601268|31007|1 +638603.56153923|220086.37370811|113.56954616|31008|1 +638608.28660517|220082.16793537|124.75379748|31009|1 +638608.65601671|220081.67671875|112.83865908|31010|2 +638613.28959374|220077.58577724|126.43746552|31011|1 +638613.68494614|220077.06691948|114.22390752|31012|2 +638618.78201406|220072.3483669|112.06739298|31013|1 +638623.83523882|220067.70391242|112.69170031|31014|1 +638628.84709391|220063.11171206|114.43301146|31015|1 +638634.01513662|220058.30600044|110.68060974|31016|1 +638638.01374899|220054.97448884|138.28990995|31017|1 +638639.12153049|220053.59627225|110.01456534|31018|2 +638644.17145187|220048.94205118|109.63179724|31019|1 +638648.0653118|220045.70252331|136.90059663|31020|1 +638649.21783174|220044.29284284|109.38643498|31021|2 +638653.3275109|220040.79504556|131.94866573|31022|1 +638654.31631957|220039.59509931|109.08953158|31023|2 +638659.36432492|220034.94506076|108.89457565|31024|1 +638664.42616397|220030.27897162|108.43799796|31025|1 +638669.45101537|220025.65752238|108.81692442|31026|1 +638673.26880304|220022.44894558|133.01676081|31027|1 +638674.48630582|220021.01126875|108.00071214|31028|2 +638679.54461382|220016.35116219|107.75668934|31029|1 +638684.58578114|220011.7115835|107.88674678|31030|1 +638688.34404269|220008.56130518|132.36200877|31031|1 +638689.65103906|220007.04431795|107.58089507|31032|2 +638693.10456528|220004.22727438|136.22687826|31033|1 +638694.65963906|220002.43167739|107.47556175|31034|2 +638699.71820251|219997.77312006|107.36943779|31035|1 +638703.00575607|219995.12927481|137.6319302|31036|1 +638704.71766856|219993.17174923|107.48840751|31037|2 +638708.80971765|219989.61408402|124.06138255|31038|1 +638709.78794126|219988.50063247|107.23947337|31039|2 +638713.17776287|219985.71385575|133.65845316|31040|1 +638713.49287329|219985.35673027|128.36120311|31041|2 +638714.73961861|219983.9437508|107.40253351|31042|3 +638718.36201558|219980.90749857|131.01562314|31043|1 +638718.97927853|219980.21088342|120.87099416|31044|2 +638719.66319254|219979.43904882|109.63098799|31045|3 +638711.36260654|219983.90269934|131.85645722|31046|1 +638712.81274382|219982.2595179|107.43019699|31047|2 +638707.7477345|219986.90818659|107.50021146|31048|1 +638700.94776485|219993.53027333|137.38526569|31049|1 +638702.65394594|219991.57931534|107.25980705|31050|2 +638697.52013577|219996.29664564|107.76090305|31051|1 +638692.42684456|220000.96787059|107.56497043|31052|1 +638687.31425427|220005.66173727|107.75567545|31053|1 +638681.23577256|220011.48384721|126.86923538|31054|1 +638682.20685808|220010.35003978|107.88455156|31055|2 +638676.22182247|220016.06951664|125.6801986|31056|1 +638677.10312689|220015.0344974|107.97650892|31057|2 +638671.98628019|220019.73488963|108.37428079|31058|1 +638666.87864531|220024.42499274|108.62920527|31059|1 +638661.79326963|220029.08900997|108.44197912|31060|1 +638655.34032524|220035.38887398|138.06569994|31061|1 +638655.78050148|220034.85797032|128.12733785|31062|2 +638656.63628007|220033.8258018|108.80552044|31063|3 +638651.5344979|220038.51044354|109.05563591|31064|1 +638645.34077235|220044.53335214|135.63002978|31065|1 +638646.44319447|220043.18283631|109.10037745|31066|2 +638641.29487298|220047.91087262|109.40335492|31067|1 +638635.19253291|220053.84474057|135.57940951|31068|1 +638636.19227728|220052.59832028|109.81702352|31069|2 +638631.08003807|220057.29867314|110.54928726|31070|1 +638625.47200983|220062.61369162|123.78798473|31071|1 +638625.88418255|220062.08951983|112.35769212|31072|2 +638620.84129431|220066.70352314|111.31278637|31073|1 +638615.66167726|220071.47635388|112.87927993|31074|1 +638609.78400927|220077.17087252|136.47167311|31075|1 +638605.06826372|220081.36126537|125.76143102|31076|1 +638605.47144092|220080.8229695|112.57261897|31077|2 +638600.32680702|220085.55325634|113.32343976|31078|1 +638595.18723095|220090.27794104|114.00001377|31079|1 +638590.09879811|220094.95538052|114.65511928|31080|1 +638584.96805887|220099.6701991|115.19545947|31081|1 +638579.54207947|220104.81611762|128.29385825|31082|1 +638579.84582379|220104.3738657|115.47411278|31083|2 +638574.76964768|220109.03709393|115.89947372|31084|1 +638569.30008682|220114.27284328|132.91024617|31085|1 +638569.65561496|220113.73020008|115.9417689|31086|2 +638564.24358589|220118.8914021|131.24909773|31087|1 +638564.53322762|220118.4369433|116.45298523|31088|2 +638559.20149372|220123.51720033|131.195566|31089|1 +638559.46437747|220123.09192323|116.76079031|31090|2 +638554.35074833|220127.78687888|116.97937275|31091|1 +638549.24478439|220132.46946001|116.77990546|31092|1 +638544.18284837|220137.11497495|116.8450737|31093|1 +638539.07254546|220141.80623113|117.01498925|31094|1 +638534.0106219|220146.4533963|117.21193577|31095|1 +638528.95030752|220151.09828024|117.34663479|31096|1 +638523.84339638|220155.78545654|117.44275005|31097|1 +638518.73727022|220160.47167072|117.52056871|31098|1 +638513.67896508|220165.11493695|117.67490378|31099|1 +638508.57372429|220169.80120421|117.82224392|31100|1 +638503.4686215|220174.48957236|118.14500626|31101|1 +638498.45977587|220179.09131405|118.60714642|31102|1 +638493.12335428|220183.99277107|118.98390557|31103|1 +638488.26007686|220188.46283569|119.60445498|31104|1 +638483.20760703|220193.10501166|120.09784911|31105|1 +638478.15531547|220197.74263715|120.24771933|31106|1 +638473.05676019|220202.42504834|120.57889978|31107|1 +638468.00592052|220207.06188699|120.77301855|31108|1 +638462.95473365|220211.6976089|120.85481837|31109|1 +638457.85671518|220216.37720791|121.0057955|31110|1 +638452.85407512|220220.9688917|121.1314718|31111|1 +638447.75652932|220225.64788612|121.27056127|31112|1 +638442.70769977|220230.2829322|121.47196333|31113|1 +638437.65879046|220234.91764775|121.64228816|31114|1 +638432.61389664|220239.55145331|122.03151169|31115|1 +638427.57853243|220244.1827839|122.91455723|31116|1 +638422.59021666|220248.76905836|123.65293224|31117|1 +638417.55686712|220253.3972507|124.43615112|31118|1 +638412.51942034|220258.02569986|124.94457692|31119|1 +638407.478854|220262.65470129|125.27194363|31120|1 +638402.48302928|220267.24083978|125.46046274|31121|1 +638397.493001|220271.82451041|125.87382438|31122|1 +638392.45805599|220276.45039401|126.36385126|31123|1 +638387.47025903|220281.03239515|126.80837386|31124|1 +638382.48846855|220285.61117304|127.43395553|31125|1 +638377.49929814|220290.19322378|127.78457669|31126|1 +638372.50401812|220294.77833283|127.93525616|31127|1 +638367.46683588|220299.40416284|128.26312518|31128|1 +638362.47914359|220303.98514719|128.63860999|31129|1 +638357.52670526|220308.52814194|128.66791058|31130|1 +638352.5283269|220313.11303929|128.76210037|31131|1 +638347.52650165|220317.70013995|128.78132714|31132|1 +638342.56371879|220322.26392381|129.78691429|31133|1 +638337.57885135|220326.84067534|130.21799581|31134|1 +638332.61920033|220331.38755154|130.12146198|31135|1 +638328.14650428|220335.64077029|142.09242964|31136|1 +638322.6204824|220340.55960189|130.35270414|31137|1 +638317.71646429|220345.05832852|130.48923561|31138|1 +638312.71197645|220349.64812609|130.53280513|31139|1 +638307.7584064|220354.19222222|130.65991391|31140|1 +638302.87935381|220358.6866092|132.25896369|31141|1 +638298.11375377|220363.11509682|136.86790088|31142|1 +638297.81070693|220363.31989373|131.09207444|31143|2 +638293.33631992|220367.53772036|140.16193897|31144|1 +638293.04871507|220367.73381952|134.81711033|31145|2 +638288.45405219|220372.03064658|141.41581843|31146|1 +638287.88141745|220372.42438164|131.03298025|31147|2 +638283.65354083|220376.46641245|144.0783217|31148|1 +638278.06238374|220381.45296118|132.96814973|31149|1 +638273.17809765|220385.94906101|134.32779038|31150|1 +638268.41334214|220390.34999663|136.83523305|31151|1 +638263.42264433|220394.92062495|136.37380912|31152|1 +638258.08831725|220399.73812364|130.51621076|31153|1 +638253.09684335|220404.31175399|130.23613428|31154|1 +638257.19279952|220396.56881038|130.52094537|31155|1 +638262.22428514|220391.95148662|130.68546589|31156|1 +638267.52955607|220387.14138854|135.41887015|31157|1 +638272.64463124|220382.46763635|137.16764133|31158|1 +638272.2667583|220382.73240303|130.7593406|31159|2 +638277.32519397|220378.0974706|131.47911205|31160|1 +638282.88408145|220373.11784806|141.15308045|31161|1 +638282.32394148|220373.50447604|131.19524044|31162|2 +638287.98097259|220368.44982657|142.04481385|31163|1 +638287.38649214|220368.8567922|131.21269057|31164|2 +638292.41053396|220364.25836815|132.3176672|31165|1 +638297.97088767|220359.27690994|141.95393549|31166|1 +638297.39394778|220359.66489367|130.89470935|31167|2 +638302.85354086|220354.75365444|138.79171289|31168|1 +638302.4456901|220355.02524057|130.7630334|31169|2 +638307.45224671|220350.42790942|130.69777214|31170|1 +638312.50812192|220345.7859978|130.6850287|31171|1 +638317.67027991|220341.08898188|133.98965221|31172|1 +638317.50205808|220341.19731174|130.38902757|31173|2 +638323.02419533|220336.2594484|140.69281925|31174|1 +638322.70351315|220336.4633175|133.62190648|31175|2 +638327.61048614|220331.91682069|130.38324187|31176|1 +638332.79231437|220327.21247318|134.52549034|31177|1 +638332.59593141|220327.33379404|129.91885068|31178|2 +638337.68000765|220322.67594356|130.68113126|31179|1 +638343.06998901|220317.83634061|139.18527105|31180|1 +638342.73597188|220318.03584006|130.81321648|31181|2 +638347.66596945|220313.48576035|128.94414544|31182|1 +638357.80714639|220304.17233575|128.70683852|31183|1 +638362.80318645|220299.58314254|128.51739854|31184|1 +638367.84122014|220294.95331288|128.1632055|31185|1 +638372.88291604|220290.32148836|127.91534106|31186|1 +638377.9263577|220285.68878796|127.7238826|31187|1 +638382.96229558|220281.05971186|127.27649506|31188|1 +638388.04283937|220276.38801055|126.69620373|31189|1 +638393.07964456|220271.75783926|126.2242316|31190|1 +638398.11692673|220267.12707987|125.73992531|31191|1 +638403.16285003|220262.49262926|125.58691109|31192|1 +638408.20405575|220257.85980262|125.22163033|31193|1 +638413.2925568|220253.18300911|124.81152431|31194|1 +638418.32523899|220248.55156253|123.94056177|31195|1 +638423.36538018|220243.9171105|123.36968385|31196|1 +638428.40449309|220239.28185521|122.6614931|31197|1 +638433.44384277|220234.64519689|121.85971718|31198|1 +638438.54019056|220229.96269525|121.56362303|31199|1 +638443.59014517|220225.32334588|121.31224253|31200|1 +638448.6416805|220220.68375169|121.15480066|31201|1 +638453.74088144|220216.00002065|120.9659932|31202|1 +638458.79332411|220211.35993273|120.8340475|31203|1 +638463.84629641|220206.71976666|120.73354181|31204|1 +638468.89909467|220202.07881246|120.55824983|31205|1 +638473.99951796|220197.39256909|120.25833266|31206|1 +638479.05351292|220192.75053694|120.08356158|31207|1 +638484.10758044|220188.10462078|119.60901285|31208|1 +638489.21072744|220183.41224603|119.02272188|31209|1 +638494.21518067|220178.81259003|118.60424426|31210|1 +638499.32083579|220174.12001051|118.18110645|31211|1 +638504.37964637|220169.47217439|117.89501172|31212|1 +638509.39113518|220164.86935511|117.733105|31213|1 +638514.4986933|220160.17856968|117.58595089|31214|1 +638519.55961848|220155.53001731|117.39425989|31215|1 +638524.5727811|220150.92656121|117.30140025|31216|1 +638529.68195781|220146.23511922|117.21776798|31217|1 +638534.74497852|220141.58507104|117.05801927|31218|1 +638539.76167477|220136.97704365|116.85928682|31219|1 +638544.87237067|220132.28495888|116.83295349|31220|1 +638549.8879201|220127.68038878|116.82188438|31221|1 +638554.94731509|220123.03887926|117.06900467|31222|1 +638559.76562403|220118.78168971|130.1142717|31223|1 +638559.86854575|220118.61760242|124.64907808|31224|2 +638565.05324565|220113.74553376|115.82529205|31225|1 +638570.11597028|220109.10035971|116.02308502|31226|1 +638575.16011301|220104.48266696|117.03915527|31227|1 +638579.90475974|220100.27086884|128.34308325|31228|1 +638580.22724616|220099.80566959|115.05543983|31229|2 +638585.25906925|220095.1816876|114.68916378|31230|1 +638590.34819772|220090.5015049|114.03872776|31231|1 +638594.9438008|220086.47565117|129.20455797|31232|1 +638595.39676327|220085.8564534|113.22332474|31233|2 +638600.26047639|220081.48211789|120.34500661|31234|1 +638600.48914331|220081.17426612|112.64848426|31235|2 +638605.53252075|220076.53852778|112.18933927|31236|1 +638609.73173946|220073.00984927|137.83624371|31237|1 +638615.6226726|220067.26515322|111.36511816|31238|1 +638620.60489757|220062.710527|112.83451048|31239|1 +638625.0870865|220058.78844093|127.92974021|31240|1 +638625.71716591|220057.99040715|110.66005281|31241|2 +638629.91337692|220054.42140842|132.87820155|31242|1 +638630.77830999|220053.33675655|110.02080683|31243|2 +638635.8339733|220048.69084744|109.5938832|31244|1 +638640.89066469|220044.04440296|109.19835306|31245|1 +638645.88032679|220039.46593432|109.31015112|31246|1 +638650.89380048|220034.85887708|108.89179442|31247|1 +638655.94356823|220030.22254644|108.78966091|31248|1 +638660.95161924|220025.62318013|108.58334751|31249|1 +638665.97418889|220021.00709022|108.10898482|31250|1 +638669.4866181|220018.17243228|138.73984618|31251|1 +638669.8112296|220017.78965356|132.06508676|31252|2 +638670.98723096|220016.40292402|107.88395625|31253|3 +638675.99912042|220011.80061665|107.72122167|31254|1 +638679.76089485|220008.65568893|131.95098187|31255|1 +638680.98022028|220007.23465366|108.19399376|31256|2 +638686.0202147|220002.60047043|107.55149215|31257|1 +638689.60077499|219999.64981792|133.98532688|31258|1 +638691.02704949|219998.00528163|107.58181594|31259|2 +638694.32861177|219995.35587791|137.57476148|31260|1 +638701.01159331|219988.83833752|107.38151149|31261|1 +638706.00936874|219984.25449168|107.64824923|31262|1 +638710.96754851|219979.70533134|107.78461327|31263|1 +638706.82168241|219980.18978505|107.68700043|31264|1 +638701.57000354|219985.04044974|110.96484412|31265|1 +638696.20264766|219990.02576235|116.49824767|31266|1 +638696.4510656|219989.74169839|112.05811911|31267|2 +638690.05553547|219995.91098168|136.62034341|31268|1 +638686.58313547|219998.72010268|107.54977133|31269|1 +638679.93486513|220005.18678728|137.29117822|31270|1 +638680.53062357|220004.49488563|125.80268439|31271|2 +638681.47143427|220003.40224722|107.66034154|31272|3 +638676.32285017|220008.13998276|109.48992655|31273|1 +638669.89070676|220014.37511596|136.59840052|31274|1 +638671.29598261|220012.72395616|107.9936614|31275|2 +638666.18070681|220017.41174142|108.29244376|31276|1 +638659.9891917|220023.39414275|132.87020202|31277|1 +638661.13196493|220022.03406537|108.24103284|31278|2 +638654.75217748|220028.23840514|136.70791033|31279|1 +638650.91855651|220031.39176528|108.67224459|31280|1 +638645.54287987|220036.39871616|115.31471754|31281|1 +638645.79763662|220036.08874849|109.2907104|31282|2 +638639.7138926|220041.96777897|133.50968054|31283|1 +638640.70591866|220040.7508056|109.26729783|31284|2 +638635.62001985|220045.40603017|109.12572479|31285|1 +638630.51250115|220050.0885006|109.5708427|31286|1 +638625.11354572|220055.13937529|117.9959639|31287|1 +638625.40410675|220054.77288409|110.10375077|31288|2 +638619.47214227|220060.49086011|132.59672979|31289|1 +638620.26081348|220059.48550286|110.34015542|31290|2 +638615.18811|220064.14344671|111.3705597|31291|1 +638610.05949975|220068.83864847|111.29597806|31292|1 +638604.21502199|220074.48038793|134.10307807|31293|1 +638604.92073435|220073.54759277|111.57144087|31294|2 +638599.13839143|220079.16024109|136.57855053|31295|1 +638594.07115101|220083.78851403|135.66483703|31296|1 +638594.23819145|220083.56125532|129.82177734|31297|2 +638589.1281552|220088.24418983|130.1252478|31298|1 +638589.58730935|220087.60918271|113.25006734|31299|2 +638584.20711656|220092.68529176|125.02504658|31300|1 +638584.49481082|220092.28032242|113.89262476|31301|2 +638578.8024347|220097.78900037|137.20534143|31302|1 +638574.24994829|220101.6883096|116.03177288|31303|1 +638569.19295989|220106.3112762|115.44531448|31304|1 +638564.07536127|220110.99723912|115.44374248|31305|1 +638558.82070569|220115.90092022|122.70039313|31306|1 +638553.83976086|220120.40567557|118.29244872|31307|1 +638548.66655698|220125.19062913|122.07783454|31308|1 +638548.7517481|220125.04596301|116.83064665|31309|2 +638543.63931275|220129.72655119|116.78094726|31310|1 +638538.57409913|220134.36472603|116.80217391|31311|1 +638533.46102309|220139.04748145|116.87823454|31312|1 +638528.34735487|220143.73228394|117.07346022|31313|1 +638523.23612408|220148.4128639|117.11294626|31314|1 +638518.12460787|220153.09497654|117.25285428|31315|1 +638513.01343214|220157.77756794|117.45571672|31316|1 +638507.95106994|220162.41492572|117.62255338|31317|1 +638502.84170982|220167.09545105|117.79494321|31318|1 +638497.73299439|220171.77585912|118.00528428|31319|1 +638492.67754107|220176.40941713|118.37303001|31320|1 +638487.5225292|220181.13448041|118.75856073|31321|1 +638482.41669421|220185.81628558|119.28892942|31322|1 +638477.35980335|220190.4517815|119.70754657|31323|1 +638472.25592848|220195.1288507|120.00744514|31324|1 +638467.15318465|220199.80543599|120.35150855|31325|1 +638462.05055994|220204.48039883|120.57726266|31326|1 +638456.94763848|220209.15428831|120.69719047|31327|1 +638451.84567526|220213.82816938|120.88628628|31328|1 +638446.79161148|220218.45787435|121.05662041|31329|1 +638441.69045463|220223.1310104|121.24644176|31330|1 +638436.63829617|220227.7600746|121.50474279|31331|1 +638431.5886444|220232.38842135|121.88819922|31332|1 +638426.50137818|220237.05801062|122.80388469|31333|1 +638421.45756442|220241.68321136|123.36273542|31334|1 +638416.41413106|220246.30750766|123.87798872|31335|1 +638411.32948506|220250.97286074|124.65083612|31336|1 +638406.29143961|220255.59387307|125.29770025|31337|1 +638401.24431207|220260.21757259|125.50108359|31338|1 +638396.19917722|220264.84039605|125.77961599|31339|1 +638391.15893369|220269.46094968|126.23321711|31340|1 +638386.12201775|220274.07963629|126.78065456|31341|1 +638381.0844296|220278.69822023|127.2720209|31342|1 +638376.04419693|220283.31779168|127.65106829|31343|1 +638370.99765644|220287.94045054|127.81790495|31344|1 +638365.95486269|220292.56117527|128.10357181|31345|1 +638360.91841961|220297.17837094|128.57050238|31346|1 +638355.90584169|220301.76744833|128.31684294|31347|1 +638350.87021592|220306.38720608|128.75272418|31348|1 +638345.86571452|220310.97283046|128.74888255|31349|1 +638341.34172898|220315.28612626|142.002128|31350|1 +638340.84273898|220315.58493838|129.49711744|31351|2 +638335.8468648|220320.16548998|129.71801603|31352|1 +638330.84619718|220324.74907958|129.83273484|31353|1 +638325.91487049|220329.30303219|132.62206783|31354|1 +638321.42579358|220333.5600705|143.97017925|31355|1 +638320.80343482|220333.9564894|130.24023636|31356|2 +638316.42394869|220338.13978472|143.69666051|31357|1 +638316.14283455|220338.32112982|137.67480208|31358|2 +638315.80637094|220338.53818054|130.46729272|31359|3 +638310.80591958|220343.12217803|130.63190626|31360|1 +638305.84716468|220347.66653692|130.68666582|31361|1 +638301.18873445|220352.02278855|137.61968906|31362|1 +638300.99346386|220352.15300114|133.77065118|31363|2 +638296.51086814|220356.38780226|143.8400753|31364|1 +638291.01452066|220361.29392926|133.55836604|31365|1 +638286.02682378|220365.85813772|133.08831007|31366|1 +638280.95410078|220370.48163389|131.14659215|31367|1 +638276.09651325|220374.96731999|133.89184403|31368|1 +638271.23604457|220379.44338714|135.67185057|31369|1 +638270.94639753|220379.64650575|130.74712736|31370|2 +638261.03943498|220388.72153676|130.54987389|31371|1 +638256.06017714|220393.28278498|130.45959085|31372|1 +638252.40710624|220393.32805094|130.25060784|31373|1 +638257.39339231|220388.75120192|130.41559345|31374|1 +638262.76274098|220383.88324184|135.34519078|31375|1 +638262.46726395|220384.09279018|130.47748747|31376|2 +638267.50833753|220379.46796476|130.81865802|31377|1 +638273.03265499|220374.50563716|139.53267379|31378|1 +638272.54355447|220374.8477335|131.09766481|31379|2 +638277.90791347|220369.99947019|137.22535885|31380|1 +638277.57531909|220370.2303631|131.35189166|31381|2 +638282.72852893|220365.52979484|133.83871228|31382|1 +638288.01774505|220360.72708712|138.11193907|31383|1 +638287.76899628|220360.89696587|133.49684409|31384|2 +638292.75480895|220356.3126377|133.0282392|31385|1 +638298.2318157|220351.39893537|142.15370975|31386|1 +638302.70503288|220347.14605165|130.69581876|31387|1 +638307.76370204|220342.50089007|130.69751169|31388|1 +638318.24045617|220332.98110334|138.6336571|31389|1 +638317.86419295|220333.22227588|130.40217099|31390|2 +638322.86903456|220328.62551076|130.3268452|31391|1 +638328.41198089|220323.67949554|141.67719834|31392|1 +638327.90270653|220323.99701323|129.83010243|31393|2 +638332.9578571|220319.35521558|129.83916236|31394|1 +638338.60615753|220314.355734|144.60689515|31395|1 +638338.21790669|220314.5900493|134.9614739|31396|2 +638337.99224328|220314.72624059|129.35527465|31397|3 +638343.04894781|220310.08391173|129.43345608|31398|1 +638348.12127281|220305.41684967|128.68495144|31399|1 +638353.16533651|220300.78203158|128.43898456|31400|1 +638358.22517398|220296.13851218|128.64908379|31401|1 +638363.30981807|220291.46413519|128.21379786|31402|1 +638368.35538569|220286.82875293|128.03099935|31403|1 +638373.39563535|220282.19613506|127.67975497|31404|1 +638378.48657311|220277.51823016|127.42036563|31405|1 +638383.52359042|220272.88686355|126.93215259|31406|1 +638388.60867562|220268.21126949|126.42983806|31407|1 +638393.64953111|220263.57750836|126.02953612|31408|1 +638398.74056034|220258.8987807|125.70909922|31409|1 +638403.7831422|220254.26377364|125.33424693|31410|1 +638408.86871255|220249.58620659|124.708349|31411|1 +638413.90491461|220244.95195082|123.92780904|31412|1 +638418.99720365|220240.27084988|123.50880122|31413|1 +638424.08970941|220235.58909613|123.05271652|31414|1 +638429.12882456|220230.95085524|122.1666758|31415|1 +638434.22246916|220226.26657771|121.59257946|31416|1 +638439.31992977|220221.58102902|121.19386812|31417|1 +638444.37349233|220216.93888232|121.04603499|31418|1 +638449.47452145|220212.25261168|120.84807458|31419|1 +638454.57573072|220207.56578947|120.61930669|31420|1 +638459.62990122|220202.92225297|120.4035892|31421|1 +638464.73197034|220198.23404325|120.12560561|31422|1 +638469.834674|220193.5448712|119.81682384|31423|1 +638474.8903778|220188.89806518|119.45198026|31424|1 +638479.99489124|220184.206629|119.09399209|31425|1 +638485.10049895|220179.5139669|118.71772594|31426|1 +638490.15958403|220174.86362898|118.31629847|31427|1 +638495.26233998|220170.17399365|117.97201182|31428|1 +638500.37054038|220165.48120413|117.77199572|31429|1 +638505.43186921|220160.83121207|117.55895714|31430|1 +638510.54169223|220156.13704093|117.36601969|31431|1 +638515.65281036|220151.44098099|117.1173274|31432|1 +638520.71607922|220146.79035195|116.9927301|31433|1 +638525.77935701|220142.14059405|116.93709618|31434|1 +638530.89111539|220137.44628155|116.87081172|31435|1 +638535.95617992|220132.7943521|116.77204546|31436|1 +638541.06848809|220128.10027347|116.7628367|31437|1 +638546.12810268|220123.45881488|117.09572867|31438|1 +638551.04637395|220119.04951236|125.54910867|31439|1 +638551.21437959|220118.77327939|115.87347525|31440|2 +638556.27089926|220114.13775853|116.45046444|31441|1 +638561.40764063|220109.40775983|115.36864924|31442|1 +638566.48723621|220104.73777636|114.89079839|31443|1 +638570.99744222|220100.90582473|139.42962871|31444|1 +638576.04860623|220096.26104577|138.88191221|31445|1 +638581.57723965|220090.94381271|119.75306016|31446|1 +638581.73675971|220090.71876789|113.51554935|31447|2 +638586.18752991|220086.92402343|136.68227463|31448|1 +638586.8288794|220086.03529668|112.87678706|31449|2 +638591.23932191|220082.26090847|134.72789699|31450|1 +638591.86975439|220081.4014496|112.447631|31451|2 +638596.95714871|220076.72644221|112.13414253|31452|1 +638602.04901917|220072.04623446|111.73363594|31453|1 +638607.10317465|220067.39740657|111.0804745|31454|1 +638612.08489461|220062.84314728|112.65534897|31455|1 +638617.01607943|220058.36949728|116.94167265|31456|1 +638617.24172695|220058.08141549|110.51474046|31457|2 +638622.23727777|220053.49288375|110.32635159|31458|1 +638627.3370907|220048.80659589|109.95847563|31459|1 +638632.38407145|220044.17097274|109.76791014|31460|1 +638637.43219781|220039.53446584|109.58997646|31461|1 +638642.41274636|220034.98080665|111.06482892|31462|1 +638646.51558145|220031.47351335|131.66564988|31463|1 +638647.32111653|220030.4995545|113.03392197|31464|2 +638647.50309033|220030.27953304|108.82495185|31465|3 +638651.30628159|220027.13879198|136.69133456|31466|1 +638652.57488509|220025.61622694|108.24221417|31467|2 +638657.60111776|220021.0080217|108.71331193|31468|1 +638662.61517956|220016.40137196|108.42551497|31469|1 +638667.6749787|220011.7539806|108.2298056|31470|1 +638672.37348213|220007.51744354|114.33557535|31471|1 +638672.71870023|220007.11369147|107.43115507|31472|2 +638676.17534973|220004.31994349|137.6109919|31473|1 +638677.61975296|220002.64019989|109.48002946|31474|2 +638681.56776113|219999.27957058|130.44667999|31475|1 +638682.74254745|219997.92082851|108.15700059|31476|2 +638686.8388348|219994.36123638|124.13981513|31477|1 +638687.73250354|219993.3329184|107.6025124|31478|2 +638691.14761418|219990.55988356|136.40500728|31479|1 +638696.27717185|219985.81618385|133.64718871|31480|1 +638697.75140596|219984.13619721|107.66253676|31481|2 +638702.74967702|219979.5510083|107.92288418|31482|1 +638697.52004256|219981.62094952|129.78608643|31483|1 +638698.78275303|219980.18903446|107.79435223|31484|2 +638693.72496748|219984.81550955|107.70404129|31485|1 +638687.27718701|219991.03360019|133.05049835|31486|1 +638688.68586763|219989.42088269|107.29626071|31487|2 +638683.49005545|219994.2179799|110.73726686|31488|1 +638678.577779|219998.67808727|108.0062188|31489|1 +638673.5112904|220003.31609364|108.20315601|31490|1 +638668.22681485|220008.22185457|113.8394465|31491|1 +638668.504789|220007.89663587|108.19954692|31492|2 +638663.44069517|220012.53274618|108.42170124|31493|1 +638658.38377972|220017.16087015|108.53185288|31494|1 +638651.88129853|220023.51375883|140.64973342|31495|1 +638653.34567537|220021.76699605|108.26186882|31496|2 +638647.20225829|220027.68755375|132.11785574|31497|1 +638648.24518941|220026.43448595|108.33048802|31498|2 +638643.16596541|220031.09082666|109.06477956|31499|1 +638637.14388697|220036.89872005|132.8004387|31500|1 +638638.11277284|220035.71637246|109.24430384|31501|2 +638632.64965844|220040.84692606|119.77190556|31502|1 +638632.99897583|220040.41702416|110.98956824|31503|2 +638627.15000105|220046.03251591|132.02372176|31504|1 +638628.0032098|220044.97300502|109.81586079|31505|2 +638622.89254206|220049.6561197|110.39129659|31506|1 +638616.76665928|220055.64292331|140.82692296|31507|1 +638617.01432803|220055.32921322|133.88857911|31508|2 +638617.86246304|220054.2549212|110.12853071|31509|3 +638612.79500507|220058.90169985|110.96404417|31510|1 +638606.78494634|220064.75273705|139.0310941|31511|1 +638607.73194862|220063.5257991|110.31104086|31512|2 +638601.75613366|220069.34713471|138.51210149|31513|1 +638602.60872353|220068.2285177|111.53687547|31514|2 +638597.57010921|220072.84034212|111.69281045|31515|1 +638592.47777175|220077.50444854|112.09543784|31516|1 +638586.77648328|220083.00422515|134.69871732|31517|1 +638587.04449795|220082.6368198|124.95954347|31518|2 +638587.38896645|220082.16460837|112.44222667|31519|3 +638582.29608087|220086.83131719|113.01410918|31520|1 +638577.17461888|220091.53982872|114.83515516|31521|1 +638571.69153|220096.80137551|134.37511782|31522|1 +638567.02935525|220100.8217369|114.83176001|31523|1 +638561.92924828|220105.50512255|116.21067395|31524|1 +638556.89028375|220110.12675114|117.13005223|31525|1 +638551.74703646|220114.85211462|118.70738236|31526|1 +638546.72541573|220119.41410349|116.13338549|31527|1 +638541.64711392|220124.06928549|116.85769622|31528|1 +638536.58397727|220128.69915683|116.67020031|31529|1 +638531.46970836|220133.37919311|116.74989793|31530|1 +638526.45313699|220137.96814597|116.70191006|31531|1 +638521.33919514|220142.64896438|116.86973271|31532|1 +638516.27388961|220147.28525528|117.0393134|31533|1 +638511.20998815|220151.91923672|117.12787561|31534|1 +638506.09812612|220156.59884338|117.35306232|31535|1 +638501.0349455|220161.2338705|117.57963499|31536|1 +638495.97268581|220165.86789409|117.79390141|31537|1 +638490.86842583|220170.54107256|118.06400639|31538|1 +638485.8074104|220175.17542741|118.39751228|31539|1 +638480.74751129|220179.80922866|118.76871827|31540|1 +638475.64081257|220184.48485624|119.05854302|31541|1 +638470.5829603|220189.11645444|119.40525744|31542|1 +638465.52604787|220193.74702843|119.7396563|31543|1 +638460.42193722|220198.42003587|120.01176117|31544|1 +638455.3671372|220203.04921013|120.39038998|31545|1 +638450.31250585|220207.67712759|120.68169371|31546|1 +638445.21014515|220212.34789418|120.90481542|31547|1 +638440.20286307|220216.93070783|121.05858308|31548|1 +638435.10263688|220221.60067833|121.37603411|31549|1 +638430.05265457|220226.22618799|121.81811964|31550|1 +638425.01223097|220230.84927135|122.76652876|31551|1 +638419.96716475|220235.47159314|123.31512893|31552|1 +638414.8725708|220240.13724325|123.70252001|31553|1 +638409.88038143|220244.71298711|124.40026486|31554|1 +638404.79606393|220249.37406508|125.17557723|31555|1 +638399.75248403|220253.99312277|125.57489319|31556|1 +638394.70698043|220258.61259588|125.86813169|31557|1 +638389.66343031|220263.23106072|126.22399905|31558|1 +638384.62290376|220267.84792172|126.67370274|31559|1 +638379.58521593|220272.46311339|127.19850896|31560|1 +638374.54149828|220277.08092391|127.49232417|31561|1 +638369.49408734|220281.70054925|127.66136536|31562|1 +638364.50204993|220286.27247501|128.07184345|31563|1 +638359.46214605|220290.8878093|128.46591321|31564|1 +638354.40156194|220295.51125587|128.31058284|31565|1 +638349.35219382|220300.12863929|128.49266512|31566|1 +638344.36321028|220304.69498573|129.01555517|31567|1 +638339.66011086|220309.09016645|136.7805572|31568|1 +638339.37632354|220309.25987216|129.57578256|31569|2 +638334.71631174|220313.64023973|139.30954278|31570|1 +638334.3201676|220313.88134747|129.58953059|31571|2 +638329.88003738|220318.12199539|144.24778146|31572|1 +638329.33259958|220318.46063014|131.25144178|31573|2 +638324.31839124|220323.02812277|130.02310499|31574|1 +638319.786934|220327.30288503|140.72482666|31575|1 +638319.3114157|220327.60551239|130.11497864|31576|2 +638314.73260048|220331.92000527|140.52582446|31577|1 +638314.26308242|220332.22268845|130.36008975|31578|2 +638309.30538061|220336.75566809|130.51080643|31579|1 +638304.24706954|220341.37962363|130.56887742|31580|1 +638299.48261122|220345.78414325|134.59342121|31581|1 +638294.68424199|220350.22069178|138.69568135|31582|1 +638294.40745477|220350.4069738|133.33114225|31583|2 +638289.53345878|220354.88294501|135.05264061|31584|1 +638289.32775147|220355.02265257|131.16690723|31585|2 +638279.64148226|220363.94271238|136.57751803|31586|1 +638274.38651301|220368.68207788|131.47651686|31587|1 +638269.69025582|220373.0432568|137.02898905|31588|1 +638269.34473392|220373.28546786|131.10660381|31589|2 +638264.89921019|220377.45844975|139.9636437|31590|1 +638264.34523688|220377.84945732|130.68229398|31591|2 +638259.75212656|220382.11540711|136.17396976|31592|1 +638259.55018764|220382.25886292|132.86452794|31593|2 +638254.36878434|220386.96276029|130.31332972|31594|1 +638256.92469856|220380.91166683|130.43685731|31595|1 +638262.5063944|220375.92702034|140.51370425|31596|1 +638261.90560767|220376.35123236|130.49081691|31597|2 +638266.95233658|220371.73472393|130.87671041|31598|1 +638277.34001073|220362.31075296|137.89512396|31599|1 +638277.02677928|220362.52717238|132.2893805|31600|2 +638282.04391935|220357.92177354|131.39932142|31601|1 +638287.05382356|220353.33228621|131.24939538|31602|1 +638292.2525968|220348.61583396|134.76104853|31603|1 +638297.29288774|220343.99584748|134.39559103|31604|1 +638302.11412406|220339.53263282|130.54014423|31605|1 +638307.12778682|220334.94138572|130.52136395|31606|1 +638312.81868071|220329.90078502|144.10942684|31607|1 +638312.18023614|220330.31249163|130.33060312|31608|2 +638317.20174447|220325.71674322|130.52415448|31609|1 +638322.83087793|220320.7261332|143.59094582|31610|1 +638322.23368147|220321.10117249|129.89683338|31611|2 +638327.23937486|220316.51577298|129.75966938|31612|1 +638333.10914211|220311.38978934|149.60246998|31613|1 +638332.28575066|220311.89115325|129.4633892|31614|2 +638338.13561728|220306.78582341|149.50162942|31615|1 +638342.3921716|220302.63397237|129.2335237|31616|1 +638347.76594437|220297.82139932|137.85462402|31617|1 +638347.41983035|220298.02034144|128.44451912|31618|2 +638352.47298228|220293.39191276|128.33628365|31619|1 +638357.53760495|220288.7573761|128.57799031|31620|1 +638362.5773991|220284.13658301|128.10169285|31621|1 +638367.62330669|220279.51239569|127.80043622|31622|1 +638372.67277541|220274.88636696|127.61177759|31623|1 +638377.72020069|220270.26136114|127.35459277|31624|1 +638382.76079849|220265.63940993|126.84144167|31625|1 +638387.80307897|220261.0163213|126.35968407|31626|1 +638392.84878384|220256.39143822|125.98427367|31627|1 +638397.94342768|220251.72214661|125.63879639|31628|1 +638402.94288154|220247.13979653|125.27769213|31629|1 +638408.03061082|220242.47193451|124.53913109|31630|1 +638413.12156277|220237.80215321|123.88218382|31631|1 +638418.12216361|220233.2176131|123.42758741|31632|1 +638423.21989827|220228.54477902|123.02114629|31633|1 +638428.26261952|220223.9154439|122.06595617|31634|1 +638433.31271067|220219.28359563|121.44837402|31635|1 +638438.41529174|220214.60707157|121.09916673|31636|1 +638443.51989967|220209.93011421|120.86288301|31637|1 +638448.57743914|220205.29641293|120.63980781|31638|1 +638453.68263741|220200.61816092|120.34176959|31639|1 +638458.78761765|220195.93824933|119.89417741|31640|1 +638463.84736884|220191.30279695|119.69068245|31641|1 +638468.95517648|220186.62251407|119.41883803|31642|1 +638474.0157955|220181.98418127|119.04712044|31643|1 +638479.07761118|220177.3457062|118.75060772|31644|1 +638484.18813556|220172.66204205|118.40487929|31645|1 +638489.29973054|220167.97780391|118.09086062|31646|1 +638494.35905587|220163.34211439|117.83263401|31647|1 +638499.47237362|220158.65617229|117.5068951|31648|1 +638504.58611273|220153.97149852|117.31285074|31649|1 +638509.65300619|220149.32954735|117.10560716|31650|1 +638514.76789525|220144.6447098|116.98111218|31651|1 +638519.83590856|220140.00253899|116.83693465|31652|1 +638524.90465167|220135.35979151|116.69924045|31653|1 +638530.02042732|220130.67558952|116.68837598|31654|1 +638535.13749805|220125.98951497|116.62175666|31655|1 +638540.16416014|220121.42151683|119.3835936|31656|1 +638545.23923859|220116.76771399|118.82216628|31657|1 +638550.34445988|220112.10000999|119.35625568|31658|1 +638555.24144137|220107.72550137|128.10800876|31659|1 +638555.49885747|220107.32443389|114.85437263|31660|2 +638560.4259097|220102.92991951|124.20800645|31661|1 +638560.62403662|220102.62968594|114.68375945|31662|2 +638565.69937531|220097.9823343|114.65480302|31663|1 +638570.78550537|220093.31981808|114.20149024|31664|1 +638575.88544508|220088.63875284|113.27396361|31665|1 +638580.38570616|220084.79298692|135.29812379|31666|1 +638586.0670175|220079.30620476|112.44404981|31667|1 +638591.20681102|220074.59591488|112.09514018|31668|1 +638596.25825185|220069.96416978|111.55938577|31669|1 +638600.63075031|220066.24042525|133.99523327|31670|1 +638601.35239483|220065.29635331|111.26429621|31671|2 +638606.49637839|220060.58289895|110.9667975|31672|1 +638611.53783375|220055.96632542|110.9123542|31673|1 +638615.9745314|220052.13017443|129.09340174|31674|1 +638616.65396747|220051.27196761|110.1441856|31675|2 +638621.73293889|220046.62261322|110.44966524|31676|1 +638626.03526938|220042.91971062|129.64669001|31677|1 +638626.80545618|220041.96582127|109.68477086|31678|2 +638630.80557222|220038.65621642|138.23773629|31679|1 +638631.96150384|220037.23751657|109.31500664|31680|2 +638637.00848859|220032.61361241|109.31175102|31681|1 +638642.07450351|220027.9670868|108.89082703|31682|1 +638647.16908583|220023.30062708|108.96713881|31683|1 +638651.95547546|220019.00115788|115.85169979|31684|1 +638652.28172105|220018.61299206|108.66976102|31685|2 +638657.3418559|220013.97515237|108.5115564|31686|1 +638661.42461537|220010.48548653|128.69081156|31687|1 +638662.41364616|220009.32408496|108.14787555|31688|2 +638667.46525708|220004.6971832|108.23938643|31689|1 +638672.48727038|220000.10490922|108.93545696|31690|1 +638675.97764082|219997.28009457|138.95020585|31691|1 +638677.59114421|219995.41806709|108.05531357|31692|2 +638681.18990766|219992.44880043|134.44160692|31693|1 +638682.61922838|219990.80791957|107.76212158|31694|2 +638686.50237389|219987.51703381|129.22955184|31695|1 +638687.68347403|219986.16793253|107.72973279|31696|2 +638691.45815558|219982.99422334|130.63257599|31697|1 +638692.75073697|219981.52488716|107.67265709|31698|2 +638696.79910283|219978.02472742|124.48345995|31699|1 +638689.23954655|219981.33447055|132.53255684|31700|1 +638685.54488665|219984.40712913|108.11767268|31701|1 +638678.94832227|219990.79920036|136.81872239|31702|1 +638680.48811384|219989.02982539|107.98970814|31703|2 +638673.7414822|219995.59343607|139.43133094|31704|1 +638675.3745037|219993.70686513|108.04989994|31705|2 +638668.90587889|219999.9703182|135.83137603|31706|1 +638670.29498495|219998.3565981|108.42088269|31707|2 +638665.17304721|220003.04429169|108.72493915|31708|1 +638660.12635973|220007.65665229|108.51070064|31709|1 +638655.06534646|220012.2861686|108.62072205|31710|1 +638648.74277962|220018.40586976|135.60310114|31711|1 +638649.96282659|220016.9522674|108.62040579|31712|2 +638644.84602465|220021.6358764|108.97590108|31713|1 +638638.86210938|220027.38276454|130.92519127|31714|1 +638639.79367298|220026.25636315|108.99938807|31715|2 +638634.68648722|220030.92945211|109.2184356|31716|1 +638628.40967871|220037.04103093|138.91002218|31717|1 +638623.64502813|220041.31900416|132.59326023|31718|1 +638623.87445245|220041.03440603|126.61706422|31719|2 +638624.5332709|220040.21714948|109.45578903|31720|3 +638619.40337076|220044.92036898|110.42456904|31721|1 +638613.6127741|220050.47771723|131.37033708|31722|1 +638614.36981436|220049.51981671|110.14342285|31723|2 +638609.25397977|220054.20711884|110.86964974|31724|1 +638603.52797265|220059.68536974|130.21891669|31725|1 +638604.167045|220058.85815191|110.80999745|31726|2 +638598.32851537|220064.49472203|134.5928538|31727|1 +638599.07325543|220063.51849343|110.9940703|31728|2 +638593.20640357|220069.20663879|136.83308434|31729|1 +638593.96660286|220068.19652835|111.65287792|31730|2 +638588.86285048|220072.87182885|112.30586262|31731|1 +638583.8279687|220077.47581261|112.2941982|31732|1 +638578.73414128|220082.1393716|112.73552098|31733|1 +638573.61870834|220086.83462809|114.13254548|31734|1 +638568.59452447|220091.42568779|113.87160274|31735|1 +638563.45339857|220096.13574916|114.57365432|31736|1 +638558.41881973|220100.74340593|114.88131987|31737|1 +638553.14922743|220105.68825418|124.97408215|31738|1 +638553.34250223|220105.38624613|114.94946469|31739|2 +638548.21431353|220110.1132732|117.9598451|31740|1 +638543.16173121|220114.72074066|116.93550558|31741|1 +638538.05078195|220119.42777439|119.60949654|31742|1 +638532.97851103|220124.02834042|116.59093057|31743|1 +638527.95700228|220128.61971548|116.55592798|31744|1 +638522.83826596|220133.30225099|116.69905442|31745|1 +638517.76858529|220137.93938024|116.80031356|31746|1 +638512.69895921|220142.57738958|116.97679616|31747|1 +638507.6307956|220147.21296573|117.0660095|31748|1 +638502.56286023|220151.84910821|117.21793541|31749|1 +638497.49540167|220156.48551152|117.42631381|31750|1 +638492.38056961|220161.16710724|117.78410664|31751|1 +638487.31987024|220165.79802137|118.04935609|31752|1 +638482.25467278|220170.4335899|118.35848203|31753|1 +638477.19046698|220175.06809017|118.65532962|31754|1 +638472.07947087|220179.74554062|118.96455788|31755|1 +638467.06471429|220184.33425166|119.21838475|31756|1 +638461.95522832|220189.00968945|119.47825778|31757|1 +638456.89415065|220193.64068376|119.7260385|31758|1 +638451.88279357|220198.22821436|120.13633986|31759|1 +638446.7775564|220202.90232529|120.60340066|31760|1 +638441.7182248|220207.53092801|120.78925015|31761|1 +638436.70717008|220212.1155117|120.98727567|31762|1 +638431.60578056|220216.78710178|121.53648045|31763|1 +638426.55539138|220221.41366183|122.21657983|31764|1 +638421.51128672|220226.0377377|123.15928697|31765|1 +638416.45765068|220230.66211416|123.42726184|31766|1 +638411.40884944|220235.28494359|123.92660911|31767|1 +638406.41385033|220239.86164738|124.6748161|31768|1 +638401.32112629|220244.52543781|125.23817819|31769|1 +638396.317821|220249.10357463|125.49282362|31770|1 +638391.27185766|220253.7231586|125.94267613|31771|1 +638386.22602161|220258.34230859|126.36768359|31772|1 +638381.22798904|220262.91746519|126.77227366|31773|1 +638376.13864045|220267.57767509|127.29936812|31774|1 +638371.13573389|220272.15470893|127.49788664|31775|1 +638366.08670648|220276.7745731|127.74848579|31776|1 +638361.04140248|220281.39242684|128.11169226|31777|1 +638356.0426267|220285.96728433|128.42264134|31778|1 +638351.08170457|220290.53788028|131.13404406|31779|1 +638345.93153978|220295.21510601|128.50636663|31780|1 +638341.637138|220299.37646067|147.32400915|31781|1 +638336.60568439|220303.97831761|147.36785772|31782|1 +638335.89327443|220304.40503464|129.29351086|31783|2 +638331.65193514|220308.53301538|149.33464393|31784|1 +638330.83926112|220309.02841419|129.40771807|31785|2 +638326.60116369|220313.11842358|146.63828219|31786|1 +638321.5508924|220317.73304637|146.32667268|31787|1 +638315.83277467|220322.76060404|130.10344444|31788|1 +638306.22161389|220331.65896431|138.86809907|31789|1 +638305.85126508|220331.90087043|131.08079139|31790|2 +638300.8128982|220336.50231712|130.58666242|31791|1 +638295.82231206|220341.07246592|131.0908094|31792|1 +638290.92280628|220345.58116432|133.3539409|31793|1 +638286.11940994|220350.01211328|136.43580546|31794|1 +638285.88516977|220350.17139548|132.01369445|31795|2 +638280.81554452|220354.79558985|131.05193727|31796|1 +638275.9146831|220359.29325882|132.33095014|31797|1 +638271.17066183|220363.68115838|136.32163546|31798|1 +638266.07019158|220368.32733859|134.86087519|31799|1 +638260.86386408|220373.03945711|130.91503373|31800|1 +638255.86640246|220377.60545371|130.58487648|31801|1 +638257.01221138|220373.01194279|134.20520227|31802|1 +638266.82085926|220363.99233146|131.05798343|31803|1 +638272.05802541|220359.24523532|134.88745967|31804|1 +638277.43344352|220354.40555785|141.44307263|31805|1 +638277.1025249|220354.63346683|135.42532559|31806|2 +638276.87653976|220354.78910643|131.31580077|31807|3 +638281.87475492|220350.20828109|130.93654874|31808|1 +638287.15354881|220345.43754428|135.92772383|31809|1 +638286.96965161|220345.56204001|132.40978269|31810|2 +638292.02257223|220340.94521268|133.15977562|31811|1 +638297.03674949|220336.34294259|132.22790506|31812|1 +638302.06277646|220331.75711202|133.49351406|31813|1 +638307.05993066|220327.16592322|132.1998416|31814|1 +638312.06583536|220322.56843591|131.04344475|31815|1 +638317.70846248|220317.58073003|145.35655321|31816|1 +638322.75826559|220312.9745443|146.73269522|31817|1 +638327.897824|220308.30035526|149.24212846|31818|1 +638332.85802988|220303.73693764|147.46318233|31819|1 +638332.13034564|220304.17661789|129.27711183|31820|2 +638337.87074372|220299.14109474|146.93904583|31821|1 +638342.6674005|220294.68650636|141.87826554|31822|1 +638342.44736502|220294.81447056|135.97760926|31823|2 +638347.21784437|220290.35106535|128.27773827|31824|1 +638352.31971339|220285.67923504|128.19961265|31825|1 +638357.33513882|220281.09000691|128.40769339|31826|1 +638362.37529168|220276.4696937|127.93273538|31827|1 +638367.4199|220271.84686174|127.58284906|31828|1 +638372.46884854|220267.22176812|127.37054532|31829|1 +638377.5119131|220262.59942738|126.94603085|31830|1 +638382.60539115|220257.93198012|126.60111167|31831|1 +638387.60211|220253.35212291|126.18491299|31832|1 +638392.69423279|220248.68468701|125.74059504|31833|1 +638397.74043486|220244.05980864|125.34180928|31834|1 +638402.78758172|220239.43422642|124.95568324|31835|1 +638407.83273033|220234.80877005|124.43223507|31836|1 +638412.87387004|220230.18349394|123.62777094|31837|1 +638417.97152845|220225.51164669|123.23493832|31838|1 +638423.02161736|220220.88277513|122.79958727|31839|1 +638428.06597974|220216.25301684|121.87071188|31840|1 +638433.16493768|220211.57760136|121.28512785|31841|1 +638438.21887019|220206.94476282|120.81291387|31842|1 +638443.32518224|220202.26837823|120.69053039|31843|1 +638448.38233413|220197.63455109|120.37504204|31844|1 +638453.48665399|220192.95519372|119.86592792|31845|1 +638458.54527596|220188.31910003|119.47595094|31846|1 +638463.60538954|220183.68281888|119.1799219|31847|1 +638468.71425902|220179.00250078|118.92811352|31848|1 +638473.77614906|220174.36530235|118.68886252|31849|1 +638478.88657752|220169.68349681|118.43157539|31850|1 +638483.99788597|220165.00066619|118.15600096|31851|1 +638489.06262462|220160.35902113|117.76764249|31852|1 +638494.12263571|220155.72286699|117.47313895|31853|1 +638499.2362119|220151.03899054|117.27993175|31854|1 +638504.30273276|220146.39829433|117.09855641|31855|1 +638509.41747241|220141.7141495|116.9686385|31856|1 +638514.53287129|220137.02948828|116.84542717|31857|1 +638519.60133302|220132.38757722|116.70871896|31858|1 +638524.67021711|220127.74567735|116.60347867|31859|1 +638529.78338222|220123.06727049|116.81881479|31860|1 +638534.82326765|220118.47718207|118.75070073|31861|1 +638539.90277089|220113.8167497|117.93404197|31862|1 +638545.01097802|220109.14560929|118.36906745|31863|1 +638550.06417442|220104.49766499|116.62025907|31864|1 +638555.21725198|220099.75915243|114.93251685|31865|1 +638560.30349535|220095.09568881|114.36718279|31866|1 +638565.00606986|220090.99143956|130.58800187|31867|1 +638565.13183576|220090.80852847|125.11762716|31868|2 +638565.40131418|220090.41660511|113.39629127|31869|3 +638570.47772874|220085.76974066|113.44360941|31870|1 +638574.95596734|220081.95882086|136.7679533|31871|1 +638575.23433278|220081.56995476|125.94750375|31872|2 +638575.57694975|220081.0913316|112.62956444|31873|3 +638580.43908505|220076.71780937|118.91157496|31874|1 +638580.6169517|220076.47363118|112.34367435|31875|2 +638585.75305677|220071.76867489|112.10766037|31876|1 +638590.84524064|220067.10284616|111.78791181|31877|1 +638595.89229678|220062.47786034|111.43401642|31878|1 +638600.12987499|220058.92076589|137.47686958|31879|1 +638600.34016707|220058.64828387|131.01743699|31880|2 +638601.00396076|220057.78818551|110.62808261|31881|3 +638605.1182796|220054.37662801|139.31466806|31882|1 +638611.13676592|220048.50995657|110.49278827|31883|1 +638620.49382494|220040.21752886|132.18407509|31884|1 +638621.25143732|220039.27742811|112.258591|31885|2 +638626.39513222|220034.54034813|109.68507782|31886|1 +638631.5214173|220029.84162671|108.91887189|31887|1 +638635.12799615|220026.96720385|143.17799346|31888|1 +638635.69338343|220026.28358586|129.75133499|31889|2 +638636.55052775|220025.24719999|109.39620185|31890|3 +638640.59375701|220021.83569029|132.55204406|31891|1 +638641.62129161|220020.60277229|108.91328152|31892|2 +638645.39837785|220017.51330414|138.41156789|31893|1 +638646.71345346|220015.94688783|109.08349473|31894|2 +638650.74416745|220012.53395456|131.20525846|31895|1 +638651.77954242|220011.30914874|108.79436761|31896|2 +638656.84445934|220006.67333933|108.57402713|31897|1 +638660.42503265|220003.7717212|138.73606966|31898|1 +638661.9131421|220002.0336297|108.31649815|31899|2 +638665.505056|219999.10912202|137.47130712|31900|1 +638666.98044952|219997.3960354|108.1277465|31901|2 +638670.60695702|219994.4224328|135.8767594|31902|1 +638672.03133571|219992.77786765|108.29435992|31903|2 +638675.51582582|219989.9475875|137.13074118|31904|1 +638680.59559038|219985.28795712|136.08488665|31905|1 +638682.10274113|219983.56592929|108.35484938|31906|2 +638685.74691677|219980.53727177|132.97266109|31907|1 +638687.15249251|219978.93909383|107.73789045|31908|2 +638682.60177399|219980.37337229|108.28635109|31909|1 +638677.47835497|219985.05026599|108.43432375|31910|1 +638672.35392524|219989.72877356|108.63886052|31911|1 +638665.74925621|219996.12728628|138.98268766|31912|1 +638667.31996343|219994.31493957|108.0512859|31913|2 +638660.92189828|220000.47225305|134.09451113|31914|1 +638662.19385049|219998.99612508|108.35002175|31915|2 +638655.94425827|220004.98962443|132.08487164|31916|1 +638657.08642182|220003.65605484|108.30644293|31917|2 +638650.78476982|220009.71959632|133.88380729|31918|1 +638651.97326369|220008.32304958|108.41285525|31919|2 +638645.59736292|220014.48428295|136.43790767|31920|1 +638646.85382467|220012.99791286|108.69425259|31921|2 +638640.56876398|220019.07531917|136.65282521|31922|1 +638641.78849248|220017.62223574|108.8869761|31923|2 +638635.20328902|220024.05754611|143.70456702|31924|1 +638636.67302324|220022.29346754|109.16914549|31925|2 +638630.21690169|220028.58724407|142.05166926|31926|1 +638630.4303594|220028.32899915|136.86884967|31927|2 +638631.5652089|220026.95603787|109.31452295|31928|3 +638626.45700121|220031.61957672|109.51019512|31929|1 +638620.64108997|220037.15480093|128.1590569|31930|1 +638621.35888369|220036.27123379|109.48792667|31931|2 +638615.28112075|220042.14062896|135.9191476|31932|1 +638615.59615052|220041.74914723|127.42168648|31933|2 +638616.24702907|220040.94031226|109.86528113|31934|3 +638610.55897348|220046.33342983|126.44109321|31935|1 +638611.1159117|220045.63429795|110.84205137|31936|2 +638606.04229637|220050.25663726|110.25303498|31937|1 +638600.93312167|220054.9244057|110.72517455|31938|1 +638595.0011595|220060.66248734|137.31208861|31939|1 +638595.24430172|220060.34646075|129.61633831|31940|2 +638595.82445311|220059.59240289|111.25388752|31941|3 +638590.66497894|220064.32829306|113.54326864|31942|1 +638585.63013192|220068.90066932|111.76315978|31943|1 +638580.52677967|220073.5642676|112.33045652|31944|1 +638575.3848051|220078.2599394|112.63305261|31945|1 +638570.29127519|220082.91189427|112.98265057|31946|1 +638564.89840812|220087.99451049|126.21525538|31947|1 +638565.20561314|220087.55346595|113.07028261|31948|2 +638560.10266178|220092.22096655|113.98878652|31949|1 +638555.01092272|220096.87349968|114.52045746|31950|1 +638549.59144421|220102.03433706|132.17255018|31951|1 +638549.88496758|220101.58030222|116.93872399|31952|2 +638544.73189315|220106.30274446|118.60586277|31953|1 +638539.76043475|220110.79958229|115.38649005|31954|1 +638534.62592042|220115.49302125|116.06739869|31955|1 +638529.53311573|220120.1559032|117.36908928|31956|1 +638524.51616058|220124.72592683|116.74223326|31957|1 +638519.39708778|220129.39504541|116.58711684|31958|1 +638514.32366456|220134.02519989|116.65876842|31959|1 +638509.25052673|220138.65554978|116.76812941|31960|1 +638504.17674907|220143.28876511|117.06518164|31961|1 +638499.10540987|220147.91693545|117.13124286|31962|1 +638494.03362381|220152.54817627|117.41623068|31963|1 +638488.63376743|220157.47876999|117.65854196|31964|1 +638483.89828078|220161.80169613|117.86818539|31965|1 +638478.82893936|220166.43131487|118.20378419|31966|1 +638473.76050542|220171.05842548|118.40210736|31967|1 +638468.69303247|220175.68602945|118.71312156|31968|1 +638463.62655072|220180.31287903|119.03683268|31969|1 +638458.56094223|220184.93877168|119.34824685|31970|1 +638453.49704704|220189.5646281|119.78483503|31971|1 +638448.48284791|220194.14620147|120.31520372|31972|1 +638443.37193972|220198.81281247|120.57110489|31973|1 +638438.35594742|220203.39128975|120.7141197|31974|1 +638433.29619919|220208.01350269|121.16383268|31975|1 +638428.23922039|220212.63470922|121.73870107|31976|1 +638423.23609595|220217.2105666|122.63168091|31977|1 +638418.18279885|220221.82848076|123.21298612|31978|1 +638413.12632818|220226.44616585|123.53825064|31979|1 +638408.1253883|220231.01773346|124.24371597|31980|1 +638403.07530282|220235.63240177|124.80036217|31981|1 +638398.07094868|220240.2034914|125.2120774|31982|1 +638393.0183506|220244.81801009|125.56896796|31983|1 +638388.01458763|220249.38817583|125.94939201|31984|1 +638382.96694966|220253.99998293|126.45639464|31985|1 +638377.96329219|220258.56951082|126.79302592|31986|1 +638372.9605593|220263.13842344|127.14831658|31987|1 +638367.95506159|220267.70855102|127.39733443|31988|1 +638362.90512043|220272.32055036|127.74840208|31989|1 +638357.91087373|220276.88450813|128.33464654|31990|1 +638352.8868225|220281.46509829|128.00897274|31991|1 +638347.87783809|220286.03802177|128.15167129|31992|1 +638343.26604563|220290.38060239|139.15315201|31993|1 +638342.87926064|220290.60501666|128.58780368|31994|2 +638338.49906565|220294.80571945|145.30145879|31995|1 +638337.95743101|220295.12642525|131.03434762|31996|2 +638333.52330898|220299.3518407|145.7360936|31997|1 +638328.58751702|220303.87333219|147.14444766|31998|1 +638327.87881764|220304.30814678|129.72083447|31999|2 +638323.38077007|220308.56282478|142.03559579|32000|1 +638322.9329149|220308.84193719|131.38009464|32001|2 +638318.71635899|220312.91354109|149.76671145|32002|1 +638313.31101381|220317.7205847|139.42503364|32003|1 +638312.97601907|220317.93523206|131.93572696|32004|2 +638308.01173934|220322.4790925|133.045001|32005|1 +638303.15532531|220326.93933932|135.37970968|32006|1 +638297.92058769|220331.66120875|130.82931786|32007|1 +638293.28809403|220335.97107931|137.605262|32008|1 +638293.06197757|220336.12261282|133.09480271|32009|2 +638288.15312155|220340.61681651|134.28664863|32010|1 +638282.98164383|220345.30085197|131.37181606|32011|1 +638273.57971986|220354.00091673|141.25579067|32012|1 +638273.04963305|220354.36869694|131.70897755|32013|2 +638268.08279726|220358.91371302|132.72335488|32014|1 +638263.15121813|220363.41350895|132.67486471|32015|1 +638258.20965455|220367.93048005|133.28514496|32016|1 +638253.35762418|220372.38352567|135.35972016|32017|1 +638257.01059415|220366.39922063|136.79659347|32018|1 +638261.74968764|220362.01598893|132.84422216|32019|1 +638266.87357428|220357.34003676|133.81355098|32020|1 +638272.10772853|220352.60858598|138.56461932|32021|1 +638271.73549904|220352.86843169|131.85507125|32022|2 +638276.94873188|220348.1314438|134.54612168|32023|1 +638281.87822587|220343.60215068|132.92607779|32024|1 +638286.94802623|220338.98769306|134.90265877|32025|1 +638291.97630589|220334.37995312|134.27031471|32026|1 +638296.82037225|220329.90685115|130.8216811|32027|1 +638302.07159955|220325.15050105|134.79418145|32028|1 +638307.24157068|220320.45034231|137.25753369|32029|1 +638307.0426382|220320.58029671|132.9266266|32030|2 +638312.54995066|220315.67574631|144.06878738|32031|1 +638311.92064831|220316.08185357|129.9513976|32032|2 +638317.74506612|220310.97867514|148.70920179|32033|1 +638316.92255215|220311.50253729|129.67826024|32034|2 +638321.98887294|220306.86917743|129.80768515|32035|1 +638327.75814565|220301.81569101|148.50652538|32036|1 +638326.98761003|220302.29209051|129.47842087|32037|2 +638332.04597609|220297.66413995|129.45211545|32038|1 +638337.56353283|220292.76237327|141.60778849|32039|1 +638337.17689961|220292.99313463|131.36787211|32040|2 +638342.51175086|220288.22048855|140.3616295|32041|1 +638342.08373181|220288.47090031|128.60355159|32042|2 +638347.12525075|220283.85298385|128.12809129|32043|1 +638352.17805944|220279.22856792|127.97128194|32044|1 +638357.24673616|220274.59563379|128.31432216|32045|1 +638362.28676634|220269.97842223|127.78315352|32046|1 +638367.33445128|220265.35698689|127.48325494|32047|1 +638372.38236101|220260.7353518|127.1835145|32048|1 +638377.43002564|220256.11371872|126.86519841|32049|1 +638382.47994395|220251.49093236|126.62201277|32050|1 +638387.52160459|220246.87151063|126.02912684|32051|1 +638392.56556377|220242.25059204|125.48635888|32052|1 +638397.61658856|220237.62658373|125.22491385|32053|1 +638402.66481647|220233.00327091|124.80742222|32054|1 +638407.71126969|220228.3799403|124.25261777|32055|1 +638412.75622078|220223.75611509|123.54174811|32056|1 +638417.80829448|220219.12990633|123.17472792|32057|1 +638422.90633539|220214.45958862|122.632146|32058|1 +638427.95452005|220209.83140923|121.80312517|32059|1 +638433.00766062|220205.20162338|121.21799693|32060|1 +638438.06335861|220200.57077441|120.73929031|32061|1 +638443.12291208|220195.93992643|120.55448261|32062|1 +638448.18212313|220191.30820075|120.26988546|32063|1 +638453.28857542|220186.63091833|119.78546755|32064|1 +638458.34928583|220181.99715963|119.44512485|32065|1 +638463.41090835|220177.36243061|119.09249451|32066|1 +638468.5213946|220172.68335232|118.76538824|32067|1 +638473.53729026|220168.09063804|118.43157539|32068|1 +638478.64981015|220163.40964524|118.09887875|32069|1 +638483.71544478|220158.77254412|117.85344208|32070|1 +638488.77613909|220154.1413801|117.7268542|32071|1 +638493.84337101|220149.50178152|117.3943343|32072|1 +638498.95973927|220144.81700862|117.03810417|32073|1 +638504.02773465|220140.17941844|116.93112444|32074|1 +638509.09657722|220135.54076464|116.79935547|32075|1 +638514.16690753|220130.89986059|116.59285604|32076|1 +638519.23490879|220126.26453027|116.67398613|32077|1 +638524.30184365|220121.63137671|116.85528706|32078|1 +638529.36165488|220117.01071564|117.53658637|32079|1 +638534.44920347|220112.34236764|116.3502006|32080|1 +638539.53937152|220107.67245629|115.23288051|32081|1 +638544.57198661|220103.09512947|117.4576794|32082|1 +638549.36231913|220098.88320831|131.71819561|32083|1 +638549.69953652|220098.36999475|114.57957955|32084|2 +638554.23498245|220094.5274392|140.24376669|32085|1 +638554.78447206|220093.71288452|114.13156879|32086|2 +638559.71910166|220089.24884329|118.34016683|32087|1 +638559.83212287|220089.08518992|113.29419497|32088|2 +638564.75045413|220084.66640522|120.04046645|32089|1 +638564.89530197|220084.46112135|113.94578441|32090|2 +638570.04204441|220079.74325244|113.13915296|32091|1 +638575.07089033|220075.14441498|113.27648439|32092|1 +638580.18284065|220070.45473384|112.16818703|32093|1 +638585.27622206|220065.7912238|111.8281978|32094|1 +638590.32428858|220061.16878975|111.46037766|32095|1 +638595.41577629|220056.50910906|111.29574552|32096|1 +638600.47511967|220051.87361931|110.69738084|32097|1 +638605.55401859|220047.23098495|110.9951214|32098|1 +638610.67317914|220042.53827522|110.18249961|32099|1 +638615.72868379|220037.90606067|109.82823216|32100|1 +638620.77367618|220033.28583942|109.77981641|32101|1 +638624.78028988|220029.92449582|135.63569456|32102|1 +638625.84144598|220028.6383952|109.19508814|32103|2 +638629.61575978|220025.54678044|139.85042247|32104|1 +638630.88813272|220024.01707015|109.1843911|32105|2 +638634.60368984|220020.99764133|141.38073213|32106|1 +638635.9831644|220019.35185993|109.19680897|32107|2 +638639.71818338|220016.28488356|138.90352954|32108|1 +638641.04469703|220014.71363279|108.90589591|32109|2 +638644.92928078|220011.46056233|134.4818278|32110|1 +638646.10144569|220010.08156731|108.76481587|32111|2 +638650.47840884|220006.24452638|123.14200427|32112|1 +638651.16454775|220005.44251912|108.52416961|32113|2 +638656.1660216|220000.86360287|108.60306728|32114|1 +638659.91313544|219997.74538816|134.94195878|32115|1 +638660.86479572|219996.64621102|115.77248587|32116|2 +638661.22522739|219996.22990878|108.51227264|32117|3 +638664.89308168|219993.19470176|135.73247024|32118|1 +638666.28892323|219991.59143918|108.36558363|32119|2 +638671.2784417|219987.02711972|108.7497842|32120|1 +638676.35679131|219982.37266321|108.385322|32121|1 +638679.91535126|219979.42768241|134.79149324|32122|1 +638681.37011634|219977.7818201|108.37081122|32123|2 +638673.52469805|219981.80445766|136.33535558|32124|1 +638675.02709447|219980.09812714|108.39087516|32125|2 +638669.89123159|219984.79145546|108.81223633|32126|1 +638664.8555393|219989.38172408|108.26710572|32127|1 +638658.20449562|219995.82465371|139.28197231|32128|1 +638654.59625937|219998.75650532|109.06837934|32129|1 +638648.7473482|220004.28506654|124.88249686|32130|1 +638649.50381955|220003.40139057|108.75603499|32131|2 +638643.46990488|220009.15341091|129.12996702|32132|1 +638644.3988065|220008.06119167|108.73079927|32133|2 +638639.28125967|220012.73616882|109.01769396|32134|1 +638632.97906377|220018.8245453|137.03669092|32135|1 +638634.1676333|220017.40704389|109.2613819|32136|2 +638629.05487545|220022.07742883|109.53045439|32137|1 +638622.72172682|220028.22713607|140.32010637|32138|1 +638623.95454527|220026.73333521|109.53796092|32139|2 +638618.74368434|220031.52470621|112.43412482|32140|1 +638612.61726066|220037.43313389|138.83572889|32141|1 +638613.69691624|220036.10117771|109.88714031|32142|2 +638607.69736308|220041.87871793|135.03514397|32143|1 +638607.8977617|220041.6290449|129.45694307|32144|2 +638608.59445164|220040.76105137|110.06431124|32145|3 +638602.88803068|220046.18187082|127.76441974|32146|1 +638603.48620228|220045.42874746|110.45402777|32147|2 +638597.58931692|220051.08418789|133.23289689|32148|1 +638598.33813906|220050.13061831|110.65970865|32149|2 +638593.22069755|220054.8116357|111.46223801|32150|1 +638588.12388326|220059.46695428|111.69095939|32151|1 +638582.98398901|220064.1602569|111.80458059|32152|1 +638577.88991545|220068.81315384|112.04033411|32153|1 +638572.03900287|220074.47981545|139.28367454|32154|1 +638572.73894158|220073.52277141|112.67318047|32155|2 +638567.64137213|220078.18221834|113.19071271|32156|1 +638562.54806229|220082.83673477|113.62116171|32157|1 +638557.39911688|220087.54726828|114.4866362|32158|1 +638551.78067241|220092.95779159|138.06769052|32159|1 +638552.27238372|220092.22655817|114.43463927|32160|2 +638546.72539588|220097.57749997|138.49464205|32161|1 +638547.18737304|220096.87185816|114.72888236|32162|2 +638542.00554317|220101.63890533|117.81340723|32163|1 +638536.89420463|220106.29765791|117.21947951|32164|1 +638531.84274003|220110.89152241|115.77198357|32165|1 +638526.67707898|220115.64358932|118.83964432|32166|1 +638521.58485579|220120.2672948|116.77251055|32167|1 +638516.46416326|220124.94183613|116.78621206|32168|1 +638511.34554248|220129.61255041|116.63790454|32169|1 +638506.22471196|220134.28841771|116.75249312|32170|1 +638501.15229859|220138.92021554|116.8811832|32171|1 +638496.0322949|220143.59645124|117.09030574|32172|1 +638490.91252694|220148.27426397|117.44986591|32173|1 +638485.79963596|220152.94468039|117.71624088|32174|1 +638480.68194737|220157.61947951|117.98296932|32175|1 +638475.56518998|220162.29365732|118.26889662|32176|1 +638470.49720149|220166.92351236|118.57445067|32177|1 +638465.38231632|220171.59590786|118.85490854|32178|1 +638460.26842208|220176.26777636|119.16704825|32179|1 +638455.20372702|220180.89581886|119.57344286|32180|1 +638450.09209538|220185.56622125|119.93634236|32181|1 +638444.98226089|220190.2361771|120.39967315|32182|1 +638439.91858163|220194.86038866|120.56314257|32183|1 +638434.80905977|220199.52819805|120.87096625|32184|1 +638429.75183782|220204.15195137|121.49114359|32185|1 +638424.69742917|220208.77425177|122.20522236|32186|1 +638419.64465921|220213.39490557|122.90696698|32187|1 +638414.53969508|220218.05848557|123.20982352|32188|1 +638409.48733455|220222.67690102|123.75578198|32189|1 +638404.44081623|220227.2928861|124.54558652|32190|1 +638399.38847944|220231.90971709|124.96062248|32191|1 +638394.33528367|220236.52643634|125.30082565|32192|1 +638389.28233573|220241.14278253|125.62869467|32193|1 +638384.23444884|220245.75673875|126.14416191|32194|1 +638379.18896242|220250.36917149|126.71598861|32195|1 +638374.13535137|220254.98500325|126.95061662|32196|1 +638369.08256639|220259.60038055|127.21039663|32197|1 +638364.08058109|220264.17051408|127.56818016|32198|1 +638359.03033609|220268.78438801|127.89687703|32199|1 +638353.97014472|220273.40362501|127.9134435|32200|1 +638348.95901404|220277.97725283|127.99645255|32201|1 +638343.89948045|220282.59475656|128.07574089|32202|1 +638339.50426797|220286.80532203|144.93694078|32203|1 +638334.54399977|220291.34146834|145.79908523|32204|1 +638333.90149221|220291.72764223|128.94730804|32205|2 +638329.41567711|220295.97995743|142.36569723|32206|1 +638328.89556833|220296.29814406|129.19254007|32207|2 +638324.67647285|220300.37945298|148.70884832|32208|1 +638323.88080817|220300.87418654|129.22545906|32209|2 +638319.43601748|220305.09070318|142.78503992|32210|1 +638318.87396342|220305.44545003|129.46435658|32211|2 +638313.92748202|220309.97815027|131.09506031|32212|1 +638309.53378689|220314.15159327|144.95773955|32213|1 +638308.85191333|220314.59359545|129.77348252|32214|2 +638304.03856431|220319.03819878|134.21825267|32215|1 +638298.89459791|220323.68738456|130.4844545|32216|1 +638293.93904082|220328.21299752|130.82530879|32217|1 +638289.09987793|220332.67119306|134.43242607|32218|1 +638284.19670143|220337.16008877|135.70810889|32219|1 +638279.48621741|220341.51574867|140.5758029|32220|1 +638279.01649805|220341.83925682|131.71303313|32221|2 +638274.13284418|220346.31513879|133.39368739|32222|1 +638269.35876077|220350.71364563|136.98178253|32223|1 +638264.45331084|220355.20295522|138.11856193|32224|1 +638264.20082897|220355.38086365|133.69190234|32225|2 +638259.39664721|220359.78941341|135.81536768|32226|1 +638254.12874947|220364.54726761|131.70166636|32227|1 +638254.94888496|220360.12159328|132.35084664|32228|1 +638260.19105433|220355.37496044|136.1464179|32229|1 +638259.93900175|220355.55310682|131.78239647|32230|2 +638265.15300958|220350.82743857|135.17940522|32231|1 +638270.18667977|220346.22966224|135.49053104|32232|1 +638269.93579237|220346.40442856|130.93210249|32233|2 +638275.11082201|220341.70804385|133.79982155|32234|1 +638280.27559812|220337.02073244|136.64330019|32235|1 +638280.06249645|220337.16678156|132.57031275|32236|2 +638285.15770319|220332.51632036|133.17683508|32237|1 +638290.05868223|220328.0087102|130.88655169|32238|1 +638295.10417298|220323.39175285|130.49512364|32239|1 +638300.15931694|220318.76843919|130.30978574|32240|1 +638305.8085197|220313.77095873|144.24458165|32241|1 +638311.01273509|220309.0572844|147.89931472|32242|1 +638315.27464055|220304.94446661|129.77072919|32243|1 +638320.91379676|220299.95660236|143.74398795|32244|1 +638320.31753762|220300.32937037|129.33639205|32245|2 +638326.03648905|220295.29818896|145.7895323|32246|1 +638325.37271628|220295.70662757|129.20187906|32247|2 +638331.14091383|220290.65281602|147.52966212|32248|1 +638330.42305991|220291.08696272|128.95517734|32249|2 +638336.16690765|220286.05577816|147.31584219|32250|1 +638341.0379692|220281.54886991|142.79343942|32251|1 +638345.6132157|220277.18953742|127.98881579|32252|1 +638350.68356023|220272.57599909|129.78754681|32253|1 +638355.73535399|220267.93875443|128.17798602|32254|1 +638360.7763199|220263.32439281|127.65764465|32255|1 +638365.82298964|220258.70683397|127.3060747|32256|1 +638370.9222038|220254.04319308|127.11519295|32257|1 +638375.97536199|220249.42239634|126.98896785|32258|1 +638381.01961987|220244.80555497|126.51306106|32259|1 +638386.06086807|220240.18952991|125.87483827|32260|1 +638391.10799284|220235.57059695|125.44293819|32261|1 +638396.15653648|220230.95074216|125.0424223|32262|1 +638401.25484083|220226.28623926|124.70962335|32263|1 +638406.25569193|220221.70907189|124.23562342|32264|1 +638411.3480449|220217.04479951|123.46594793|32265|1 +638416.40046315|220212.42163762|123.08490996|32266|1 +638421.45325103|220207.79761619|122.66030247|32267|1 +638426.50296089|220203.17238825|121.89837536|32268|1 +638431.55627119|220198.54566137|121.28661613|32269|1 +638436.61210616|220193.91782224|120.77500913|32270|1 +638441.67120886|220189.28975387|120.49481172|32271|1 +638446.77932313|220184.61781596|120.28968894|32272|1 +638451.83932212|220179.9880406|119.9349843|32273|1 +638456.89959999|220175.35615088|119.42424236|32274|1 +638461.96182613|220170.72449683|119.08242068|32275|1 +638467.02503488|220166.0917985|118.72830206|32276|1 +638472.13714863|220161.41562844|118.47487516|32277|1 +638477.20237056|220156.78146947|118.1525314|32278|1 +638482.26852568|220152.14705603|117.88038933|32279|1 +638487.32999003|220147.51714945|117.62710195|32280|1 +638492.44597137|220142.83604821|117.25635175|32281|1 +638497.46696315|220138.24288358|116.98385621|32282|1 +638502.58395571|220133.56309952|116.80126234|32283|1 +638507.65281793|220128.92875464|116.74275416|32284|1 +638512.72135821|220124.29567571|116.76569234|32285|1 +638517.75832665|220119.723137|119.45038966|32286|1 +638522.83957805|220115.06453484|118.30534098|32287|1 +638527.77658158|220110.65725376|127.19982981|32288|1 +638527.95213473|220110.35494569|115.28021725|32289|2 +638532.92587772|220105.88137129|121.42600325|32290|1 +638533.02682383|220105.71447488|115.15416888|32291|2 +638538.02741928|220101.16018328|116.58169391|32292|1 +638542.83054464|220096.93943029|130.8719572|32293|1 +638543.13530509|220096.46819408|114.67578782|32294|2 +638547.66709948|220092.64571537|141.60057961|32295|1 +638553.07707583|220087.46915459|122.17324286|32296|1 +638553.269034|220087.18770105|113.26120157|32297|2 +638558.31285132|220082.57005835|112.68411936|32298|1 +638563.38577846|220077.93619259|112.97777644|32299|1 +638567.75337089|220074.25208532|138.93138836|32300|1 +638568.43157771|220073.31740921|112.45716532|32301|2 +638573.46828817|220068.71191135|112.3549667|32302|1 +638578.56212307|220064.05085179|111.96867323|32303|1 +638583.61572129|220059.42420887|111.38607507|32304|1 +638588.65782489|220054.81341457|111.25304106|32305|1 +638593.70909862|220050.19134967|110.87668189|32306|1 +638597.89877077|220046.66068838|136.07444075|32307|1 +638598.7566549|220045.57468739|110.66894531|32308|2 +638602.77825724|220042.24332705|139.71433749|32309|1 +638603.82176089|220040.93657421|110.00581237|32310|2 +638607.81643959|220037.61077681|137.45360584|32311|1 +638608.80875554|220036.38053358|110.24385413|32312|2 +638613.85479425|220031.77063238|110.23595692|32313|1 +638618.89903979|220027.16333098|110.30301343|32314|1 +638623.98241221|220022.50908599|109.42832088|32315|1 +638628.0096214|220019.12042144|133.84310272|32316|1 +638629.04082508|220017.88573319|109.23371842|32317|2 +638633.25526366|220014.25264857|127.4804365|32318|1 +638633.71508968|220013.7061639|116.84840374|32319|2 +638634.05679109|220013.30006553|108.94764228|32320|3 +638639.05193587|220008.73949859|109.17280108|32321|1 +638643.08661146|220005.31742157|131.35933308|32322|1 +638644.12373499|220004.10169996|108.79139104|32323|2 +638648.37354355|220000.40984143|124.81817508|32324|1 +638649.13369144|219999.52441575|108.74838893|32325|2 +638654.18483208|219994.91156995|108.87836265|32326|1 +638657.90406784|219991.8207199|134.69707091|32327|1 +638658.34818061|219991.30948386|125.81682309|32328|2 +638659.2120996|219990.31499191|108.54240109|32329|3 +638664.20932493|219985.75333773|108.83577912|32330|1 +638669.22129467|219981.17502926|108.86110786|32331|1 +638665.23061276|219982.18487656|127.10670973|32332|1 +638666.14137627|219981.14983473|109.69288201|32333|2 +638660.11798974|219986.85140002|127.58341647|32334|1 +638661.07761651|219985.75503269|108.74012895|32335|2 +638654.63323328|219991.95737188|136.5909963|32336|1 +638655.99485621|219990.39313486|109.11983677|32337|2 +638650.40523277|219995.61748863|120.06467897|32338|1 +638650.94846321|219994.98980332|108.79548383|32339|2 +638644.67778696|220000.99791002|133.59499644|32340|1 +638645.83970019|219999.64708558|108.78448913|32341|2 +638639.48152698|220005.76668776|136.28720028|32342|1 +638640.71948844|220004.31810829|109.05443598|32343|2 +638634.88400188|220009.84506314|126.68230688|32344|1 +638635.6643782|220008.92572538|108.98627256|32345|2 +638629.24492328|220015.1263475|138.63125724|32346|1 +638630.50431841|220013.63185488|109.14666309|32347|2 +638624.83673215|220018.97248253|123.94776135|32348|1 +638625.43666754|220018.25515304|109.44072945|32349|2 +638619.37783541|220024.05973746|133.37157707|32350|1 +638620.32979524|220022.91225964|109.56251761|32351|2 +638615.21429988|220027.58030523|109.94669958|32352|1 +638610.12816555|220032.21301377|109.60134323|32353|1 +638603.92554662|220038.22902602|140.38602806|32354|1 +638605.01218494|220036.88274346|110.0923561|32355|2 +638599.73167461|220041.74301907|114.03115611|32356|1 +638599.85326823|220041.59078045|110.50536427|32357|2 +638593.83050554|220047.42703048|139.95875096|32358|1 +638588.6959334|220052.12026585|141.00600076|32359|1 +638589.66171497|220050.88279756|110.58467122|32360|2 +638584.12033098|220056.10779696|125.34685084|32361|1 +638584.55417981|220055.54469091|111.06485682|32362|2 +638578.65878922|220061.24438995|138.78226228|32363|1 +638579.45484981|220060.19668202|111.33941736|32364|2 +638574.28890118|220064.91809894|112.34807409|32365|1 +638568.4834577|220070.53116491|139.67759547|32366|1 +638564.10776486|220074.20260588|112.5994825|32367|1 +638558.97013049|220078.88825087|112.76050555|32368|1 +638553.42919031|220084.18112701|133.3586569|32369|1 +638553.54408477|220084.01553196|128.16893539|32370|2 +638553.86498809|220083.55302043|113.67393999|32371|3 +638548.76253408|220088.21563156|114.61272178|32372|1 +638543.16143193|220093.60738359|138.96589795|32373|1 +638543.58023118|220092.97239585|117.36725683|32374|2 +638538.43685167|220097.70474391|121.07415426|32375|1 +638538.54785061|220097.53136262|114.91523415|32376|2 +638533.39056417|220102.2878146|119.59692054|32377|1 +638533.46516018|220102.16731807|115.11801288|32378|2 +638528.12858627|220107.19370987|128.88160959|32379|1 +638528.33002242|220106.85553682|115.69401608|32380|2 +638523.21748461|220111.54615399|118.24021924|32381|1 +638518.1182437|220116.17456227|116.50560537|32382|1 +638512.93473007|220121.01390096|126.22531991|32383|1 +638513.03842004|220120.81054244|116.9345754|32384|2 +638507.91837231|220125.47608363|116.75010257|32385|1 +638502.84436459|220130.10192848|116.76726435|32386|1 +638497.7225513|220134.77209075|116.83975309|32387|1 +638492.59999665|220139.44555532|117.13764248|32388|1 +638487.52597849|220144.07580899|117.53062393|32389|1 +638482.41134167|220148.74096006|117.73567229|32390|1 +638477.29166464|220153.41151655|118.00979564|32391|1 +638472.22073925|220158.03807649|118.32864193|32392|1 +638467.10305653|220162.70748296|118.65979447|32393|1 +638462.03423992|220167.33241453|119.00417414|32394|1 +638456.91883507|220172.00040672|119.39233727|32395|1 +638451.80518799|220176.66818265|119.89966546|32396|1 +638446.73935462|220181.28988567|120.20111743|32397|1 +638441.62594949|220185.9541616|120.42795055|32398|1 +638436.51276547|220190.61780082|120.61771609|32399|1 +638431.45123725|220195.23798849|121.1261977|32400|1 +638426.39296179|220199.85711511|121.79733017|32401|1 +638421.29006317|220204.5182496|122.57554469|32402|1 +638416.23190829|220209.13456351|123.01590008|32403|1 +638411.17321305|220213.75004964|123.34391793|32404|1 +638406.07428731|220218.40683453|124.06058259|32405|1 +638401.02249012|220223.01917755|124.65772873|32406|1 +638395.96612789|220227.63232443|124.96758951|32407|1 +638390.91133794|220232.24461677|125.32760546|32408|1 +638385.85959695|220236.85537555|125.79396863|32409|1 +638380.81069342|220241.46450121|126.34171303|32410|1 +638375.7613624|220246.07334904|126.83335843|32411|1 +638370.75289026|220250.64157147|127.0421554|32412|1 +638365.69517236|220255.25412715|127.19664861|32413|1 +638360.64105632|220259.86486393|127.4762414|32414|1 +638355.64278931|220264.42757073|128.00984711|32415|1 +638350.57156798|220269.04805408|127.74626267|32416|1 +638345.51299583|220273.66576284|127.88893332|32417|1 +638340.9101115|220278.00237954|139.5568026|32418|1 +638340.51836249|220278.23054513|128.49753925|32419|2 +638336.13976799|220282.44385453|147.1231745|32420|1 +638335.4588502|220282.84882687|128.61546717|32421|2 +638331.07698571|220287.0418719|145.25777765|32422|1 +638330.45058387|220287.42151907|128.83690526|32423|2 +638325.89491126|220291.7151846|140.52074569|32424|1 +638325.58318227|220291.90740643|132.62938833|32425|2 +638321.00960642|220296.22014553|144.5459313|32426|1 +638320.38653992|220296.6105453|129.30142667|32427|2 +638316.04289843|220300.76085739|145.27786018|32428|1 +638315.36995404|220301.18871328|129.34183359|32429|2 +638310.3824997|220305.74832032|130.06878602|32430|1 +638306.04929963|220309.88070788|145.33069427|32431|1 +638300.34939936|220314.90517036|130.19937366|32432|1 +638295.33549388|220319.48213136|130.34578362|32433|1 +638290.32614689|220324.05617141|130.59824313|32434|1 +638285.3637118|220328.58724792|130.84055441|32435|1 +638280.45612652|220333.09158248|133.0764131|32436|1 +638275.55633026|220337.57888645|134.46569852|32437|1 +638270.43235705|220342.23239983|132.56598742|32438|1 +638265.53638699|220346.7168592|134.01085096|32439|1 +638260.69967623|220351.15879907|136.4464746|32440|1 +638255.81247353|220355.6356721|137.92753135|32441|1 +638255.51254342|220355.84950231|132.79707145|32442|2 +638253.00142574|220355.13499676|132.58358638|32443|1 +638258.31554949|220350.32213438|136.82525224|32444|1 +638257.95578537|220350.5782268|130.55338066|32445|2 +638263.16599826|220345.8495843|133.87096154|32446|1 +638268.12064051|220341.30247079|132.69950512|32447|1 +638273.13073739|220336.71631954|132.53194292|32448|1 +638278.11711201|220332.13607507|131.00057287|32449|1 +638283.08189493|220327.59178227|130.87432916|32450|1 +638288.13286142|220322.96675188|130.57181678|32451|1 +638293.18564832|220318.34056131|130.31319019|32452|1 +638298.19596275|220313.75457667|130.17690056|32453|1 +638303.5518728|220308.92949636|136.65866673|32454|1 +638303.24932089|220309.1282365|129.94979769|32455|2 +638308.65737768|220304.27185388|137.8429782|32456|1 +638308.31131382|220304.49638968|129.9288687|32457|2 +638313.89776663|220299.52900892|142.31103999|32458|1 +638313.65505005|220299.68440984|136.58088527|32459|2 +638313.35257921|220299.87806881|129.44003244|32460|3 +638319.11428421|220294.80495358|146.51792651|32461|1 +638323.88333865|220290.37645335|140.94575316|32462|1 +638323.42930789|220290.65860517|129.48967602|32463|2 +638329.14301883|220285.62946355|146.5770486|32464|1 +638334.1791626|220281.02163956|146.58973622|32465|1 +638333.62718418|220281.35268169|131.62884275|32466|2 +638339.2244731|220276.40870377|146.88359794|32467|1 +638338.57046706|220276.79302142|128.47455456|32468|2 +638343.9388642|220271.98641717|137.53530334|32469|1 +638343.61291244|220272.17369842|127.99288067|32470|2 +638348.71120439|220267.50603665|127.74009559|32471|1 +638353.72770556|220262.91810266|127.92317316|32472|1 +638358.82188459|220258.25283323|127.55232993|32473|1 +638363.8725542|220253.62884234|127.31507882|32474|1 +638368.92397612|220249.0044566|127.10298902|32475|1 +638374.02376275|220244.33617676|126.91431179|32476|1 +638379.07080793|220239.71369269|126.52151637|32477|1 +638384.11396064|220235.09252964|125.9352161|32478|1 +638389.20720443|220230.42626079|125.40387073|32479|1 +638394.30482327|220225.75787655|125.03539946|32480|1 +638399.35632614|220221.13220813|124.71846933|32481|1 +638404.4545295|220216.46287713|124.31320024|32482|1 +638409.49939444|220211.83769979|123.51557291|32483|1 +638414.55215357|220207.2099525|123.11804289|32484|1 +638419.65385054|220202.53757723|122.72625207|32485|1 +638424.75338539|220197.8641476|122.0724023|32486|1 +638429.80713518|220193.23290021|121.45066226|32487|1 +638434.91010648|220188.5565525|120.81628111|32488|1 +638440.01761126|220183.88020859|120.53855797|32489|1 +638445.07837573|220179.24712176|120.31135278|32490|1 +638450.18761982|220174.56999091|120.10313252|32491|1 +638455.29658569|220169.8905855|119.67662746|32492|1 +638460.35896294|220165.25365416|119.24402975|32493|1 +638465.47036344|220160.5715953|118.78080128|32494|1 +638470.53532995|220155.93339352|118.44249567|32495|1 +638475.64925783|220151.24991223|118.05506738|32496|1 +638480.76403808|220146.56725247|117.80557514|32497|1 +638485.82615061|220141.93289443|117.57431437|32498|1 +638490.94325462|220137.24623985|117.16315725|32499|1 +638496.01259313|220132.60544332|116.9450492|32500|1 +638501.12978397|220127.92219887|116.83466502|32501|1 +638506.19785372|220123.28611493|116.92332025|32502|1 +638511.25854156|220118.71434012|121.97457552|32503|1 +638511.30267448|220118.62816537|118.01959971|32504|2 +638516.44861395|220113.89223502|115.63002916|32505|1 +638521.52662925|220109.24092889|115.18862266|32506|1 +638526.3942768|220104.97903018|131.75394234|32507|1 +638526.64837675|220104.55412794|115.13041215|32508|2 +638531.72192733|220099.91205426|115.13320268|32509|1 +638536.8008744|220095.26194014|114.86763696|32510|1 +638541.93385415|220090.55961485|114.35472771|32511|1 +638547.01336419|220085.91037359|114.20853169|32512|1 +638552.12200417|220081.21981536|112.79483841|32513|1 +638557.25756244|220076.51732829|112.47078312|32514|1 +638562.34499949|220071.85963054|112.21952354|32515|1 +638567.41750239|220067.22282378|112.59296195|32516|1 +638572.55044404|220062.52549443|112.50756234|32517|1 +638577.6228913|220057.86964961|111.23671644|32518|1 +638582.7316025|220053.20519348|112.07611805|32519|1 +638586.91370736|220049.707836|140.55029743|32520|1 +638592.05987787|220044.96499347|137.58354235|32521|1 +638592.95223567|220043.83711632|110.63501243|32522|2 +638597.02985368|220040.42940841|138.60789118|32523|1 +638598.02085751|220039.19050616|109.85855595|32524|2 +638603.1504336|220034.50064375|110.15040848|32525|1 +638608.19670226|220029.88290275|110.09829993|32526|1 +638612.41866677|220026.28083855|132.67047428|32527|1 +638613.29958537|220025.21112569|109.83802693|32528|2 +638618.39059336|220020.55419497|109.92122202|32529|1 +638623.44258098|220015.93060646|109.80726595|32530|1 +638628.56075332|220011.24205931|109.3048398|32531|1 +638632.33188483|220008.12707102|138.35450149|32532|1 +638633.61737166|220006.61396334|109.16640146|32533|2 +638638.67164115|220001.98902323|109.11541843|32534|1 +638643.77468469|219997.31973869|109.08168088|32535|1 +638648.83629847|219992.68701075|108.93764288|32536|1 +638653.89748427|219988.05517758|108.83742554|32537|1 +638658.58322179|219983.85242025|116.15265877|32538|1 +638658.95144746|219983.43197672|108.91188626|32539|2 +638662.69054582|219980.29189294|133.27385261|32540|1 +638663.25224045|219979.65385119|122.51389251|32541|2 +638663.95801983|219978.85214018|108.99385351|32542|3 +638659.81553722|219979.4934527|118.98650077|32543|1 +638660.32260397|219978.9173348|109.16669912|32544|2 +638653.81202933|219985.17723694|137.00512999|32545|1 +638655.21684505|219983.57254904|109.05581264|32546|2 +638650.1061041|219988.23374532|109.06996064|32547|1 +638645.04592009|219992.84854986|109.06426796|32548|1 +638638.78724344|219998.84511271|134.00985567|32549|1 +638639.93680147|219997.50855583|109.10402375|32550|2 +638634.77110577|220002.22275333|109.36419444|32551|1 +638629.70871774|220006.84129255|109.50896728|32552|1 +638623.4684271|220012.84539054|136.56682099|32553|1 +638624.60682846|220011.49398147|109.4875546|32554|2 +638619.28388306|220016.41145783|114.93037744|32555|1 +638619.49366043|220016.16048997|109.77211454|32556|2 +638614.1711836|220021.09411682|116.65464774|32557|1 +638614.44018612|220020.76966169|109.81152617|32558|2 +638608.13126735|220026.877669|140.45060099|32559|1 +638608.33546117|220026.62919884|135.06657467|32560|2 +638609.29562534|220025.46083747|109.74979028|32561|3 +638604.18170219|220030.12983438|110.19149443|32562|1 +638599.12918184|220034.73913822|110.31895667|32563|1 +638593.2429449|220040.3614592|132.30069146|32564|1 +638593.9815482|220039.43542489|110.45829728|32565|2 +638588.88019768|220044.09057136|110.69519493|32566|1 +638583.01291491|220049.72961708|135.63155527|32567|1 +638583.79171237|220048.72980044|110.57041159|32568|2 +638578.68731439|220053.38995893|111.00147452|32569|1 +638573.57526165|220058.06105947|111.77628459|32570|1 +638568.37290796|220062.85446464|116.0104067|32571|1 +638563.23900995|220067.53858314|116.18412668|32572|1 +638558.07710782|220072.28499337|119.54569566|32573|1 +638558.25405518|220072.03925705|112.23963398|32574|2 +638553.16004205|220076.6894285|112.6288203|32575|1 +638548.06043937|220081.34866437|113.36181889|32576|1 +638542.91189342|220086.08216332|116.66219148|32577|1 +638537.80503745|220090.72849857|115.70116915|32578|1 +638532.23076149|220096.14211193|144.2951182|32579|1 +638532.34955618|220095.95484237|137.45510343|32580|2 +638532.74705867|220095.32821381|114.56763607|32581|3 +638527.65858191|220099.97592476|115.18334856|32582|1 +638522.32446121|220105.00552375|129.479072|32583|1 +638522.53179946|220104.65282947|115.29778831|32584|2 +638517.43209713|220109.32381843|117.04498748|32585|1 +638512.31373798|220114.03502094|120.80438414|32586|1 +638507.23465359|220118.62670031|117.30256297|32587|1 +638502.16495742|220123.24668123|117.00139006|32588|1 +638497.09297162|220127.87148674|116.93784962|32589|1 +638491.9724895|220132.54207114|117.00466428|32590|1 +638486.89963924|220137.17075675|117.21035446|32591|1 +638481.82673404|220141.8022991|117.65997443|32592|1 +638476.76081338|220146.42538297|117.92866554|32593|1 +638471.64249744|220151.09643882|118.20938386|32594|1 +638466.62081912|220155.6812101|118.66021305|32595|1 +638461.50480822|220160.35152935|119.06031966|32596|1 +638456.43813854|220164.97802452|119.56734089|32597|1 +638451.37221305|220169.60203867|119.91832482|32598|1 +638446.3066889|220174.2245292|120.16950069|32599|1 +638441.24198958|220178.84648822|120.43960567|32600|1 +638436.17799184|220183.4677979|120.70989669|32601|1 +638431.11660405|220188.08895859|121.17412045|32602|1 +638426.05808761|220192.70922392|121.78849348|32603|1 +638421.00254443|220197.32806513|122.51552032|32604|1 +638415.94335039|220201.9457775|122.85525841|32605|1 +638410.88642051|220206.56235671|123.27639633|32606|1 +638405.83421088|220211.17714404|123.91640506|32607|1 +638400.83005288|220215.74731887|124.49298497|32608|1 +638395.77418337|220220.36162683|124.80198068|32609|1 +638390.71972977|220224.97514403|125.15488078|32610|1 +638385.71495642|220229.54400117|125.56896796|32611|1 +638380.66733439|220234.15400732|126.15947263|32612|1 +638375.66872089|220238.71931946|126.7546747|32613|1 +638370.611704|220243.33279105|126.90176369|32614|1 +638365.60277325|220247.90254893|127.06584703|32615|1 +638360.55078959|220252.5135072|127.39431136|32616|1 +638355.54716867|220257.0804207|127.73325879|32617|1 +638350.4810891|220261.69891892|127.59972248|32618|1 +638345.46901657|220266.26941898|127.70132579|32619|1 +638340.95870952|220270.54755597|142.37228289|32620|1 +638340.46459228|220270.83377905|128.05893258|32621|2 +638335.99115464|220275.08379278|143.20957299|32622|1 +638331.18878511|220279.5198644|148.44242684|32623|1 +638330.52877433|220279.91819098|130.71575247|32624|2 +638326.14200313|220284.10209622|146.99383329|32625|1 +638320.4989745|220289.05803587|130.73707214|32626|1 +638315.90581426|220293.36093154|140.9884018|32627|1 +638315.68048009|220293.50377893|135.53250996|32628|2 +638315.42059771|220293.66852765|129.24014657|32629|3 +638311.11797812|220297.78170686|146.04462422|32630|1 +638310.86529376|220297.94412968|140.12109487|32631|2 +638305.81107383|220302.53709902|139.01673216|32632|1 +638305.39736317|220302.80646544|129.6173522|32633|2 +638300.44208068|220307.32632865|130.00838958|32634|1 +638295.47317221|220311.85524015|130.10581639|32635|1 +638290.45918991|220316.42614197|130.27532266|32636|1 +638285.49193292|220320.95426267|130.43476441|32637|1 +638280.54049201|220325.47167934|130.91831726|32638|1 +638275.57234253|220330.00060534|131.0772195|32639|1 +638270.70846838|220334.45697649|133.20042438|32640|1 +638265.60584944|220339.08010663|130.8829519|32641|1 +638261.18254524|220343.22414182|140.79924088|32642|1 +638260.71352506|220343.55597455|132.44410625|32643|2 +638255.9212624|220347.95997169|135.69421204|32644|1 +638255.59302208|220344.5667958|139.31628657|32645|1 +638255.25730832|220344.80540557|133.44958177|32646|2 +638260.57068337|220340.02383971|139.51711192|32647|1 +638260.17524123|220340.30298251|132.44001346|32648|2 +638265.11335814|220335.7759488|130.89569534|32649|1 +638270.44830074|220330.97233878|136.76040956|32650|1 +638275.14552875|220326.612352|130.6441753|32651|1 +638280.16652234|220322.027484|130.64007322|32652|1 +638285.21903899|220317.41025914|130.32650103|32653|1 +638290.22785631|220312.83398986|130.10414207|32654|1 +638295.29022814|220308.21037482|130.01549614|32655|1 +638300.30390323|220303.63119228|129.92425501|32656|1 +638305.45243988|220298.96481676|132.94125829|32657|1 +638311.08674139|220293.97727237|146.54212973|32658|1 +638316.11643333|220289.39501535|147.45125745|32659|1 +638315.36789468|220289.86688622|129.14796596|32660|2 +638321.15342339|220284.79531308|147.42731468|32661|1 +638320.87111759|220284.9705205|140.2851689|32662|2 +638320.42421457|220285.24788185|128.97884106|32663|3 +638326.10934344|220280.24531896|145.2994124|32664|1 +638325.56091075|220280.57995698|130.92652142|32665|2 +638330.48990522|220276.05336191|128.69385324|32666|1 +638336.15687878|220271.07631578|145.79156009|32667|1 +638335.54221503|220271.43709502|128.44400752|32668|2 +638340.94269933|220266.62104142|138.41752102|32669|1 +638345.63483216|220262.2113524|127.58259791|32670|1 +638350.69400212|220257.59121903|127.53935396|32671|1 +638355.75376872|220252.97097872|127.53379149|32672|1 +638360.80615352|220248.35474178|127.29103373|32673|1 +638365.85743608|220243.73901196|127.00472505|32674|1 +638370.91202879|220239.12163542|126.83726517|32675|1 +638375.96488933|220234.50505221|126.6012605|32676|1 +638381.00838797|220229.89226214|125.95304761|32677|1 +638386.05648222|220225.27701295|125.45491888|32678|1 +638391.10604342|220220.66071845|124.98192355|32679|1 +638396.20697871|220215.99917016|124.65164537|32680|1 +638401.26175709|220211.38043119|124.37903821|32681|1 +638406.3112862|220206.76245408|123.75664705|32682|1 +638411.36243644|220202.14314704|123.1469063|32683|1 +638416.41833155|220197.52210828|122.76228715|32684|1 +638421.52328638|220192.85656545|122.4022712|32685|1 +638426.57814295|220188.23338928|121.74937021|32686|1 +638431.6350682|220183.60883503|121.14040151|32687|1 +638436.74270119|220178.9399337|120.70012983|32688|1 +638441.85249035|220174.27080159|120.41028647|32689|1 +638446.91540149|220169.64476455|120.14580907|32690|1 +638451.97909465|220165.0181631|119.89402858|32691|1 +638457.09088398|220160.34571511|119.47397896|32692|1 +638462.15599992|220155.71480366|118.96023255|32693|1 +638467.27041738|220151.04047623|118.58469193|32694|1 +638472.38618958|220146.36369755|118.10335291|32695|1 +638477.45517502|220141.73150612|117.78419966|32696|1 +638482.51960823|220137.10340365|117.45889793|32697|1 +638487.63783603|220132.42706895|117.20988938|32698|1 +638492.70908002|220127.79384172|116.97896347|32699|1 +638497.82642166|220123.12221632|117.06816751|32700|1 +638502.90327448|220118.47906255|116.41916397|32701|1 +638507.97580233|220113.8465515|116.35148424|32702|1 +638512.95528239|220109.42878164|127.56277583|32703|1 +638513.10893173|220109.14759303|115.31722902|32704|2 +638518.08032807|220104.69318183|122.70334179|32705|1 +638518.18342965|220104.51380092|115.29389087|32706|2 +638522.98725094|220100.33131758|133.0188258|32707|1 +638523.25991728|220099.87711953|115.17706986|32708|2 +638527.84705223|220096.02587669|144.50153392|32709|1 +638528.12371908|220095.58214524|127.88511029|32710|2 +638528.34546938|220095.22649148|114.56700355|32711|3 +638533.16733893|220091.01679212|131.36180735|32712|1 +638533.47324083|220090.54237833|114.3965671|32713|2 +638538.50319792|220085.94939429|114.38461432|32714|1 +638543.63966764|220081.25362026|113.89015049|32715|1 +638548.73969331|220076.58621807|112.96912579|32716|1 +638553.83134269|220071.93214483|112.54183009|32717|1 +638558.92893404|220067.27078793|111.95249744|32718|1 +638564.00285408|220062.64246169|112.35627825|32719|1 +638569.06078701|220058.03526449|113.32840691|32720|1 +638573.71073133|220053.96160669|128.3156151|32721|1 +638574.19650734|220053.32548588|111.55385121|32722|2 +638578.62796219|220049.50941152|131.59943053|32723|1 +638579.24873568|220048.70754739|111.1375037|32724|2 +638584.34833845|220044.04733213|110.80571863|32725|1 +638588.65395755|220040.388396|134.53345266|32726|1 +638589.45020347|220039.38491579|110.46181336|32727|2 +638593.69946431|220035.78584043|134.92390403|32728|1 +638594.54710596|220034.72933139|110.31797068|32729|2 +638599.64250785|220030.07605598|110.25559297|32730|1 +638603.68118511|220026.71330582|138.63766617|32731|1 +638608.69627621|220022.13041917|138.4692296|32732|1 +638609.79240367|220020.80316028|110.03445254|32733|2 +638613.73832983|220017.52933947|138.85997862|32734|1 +638614.89474573|220016.14093995|109.89196793|32735|2 +638619.21615394|220012.39595973|127.53990276|32736|1 +638619.95146136|220011.52012326|109.72699162|32737|2 +638625.05427948|220006.85820138|109.64750794|32738|1 +638630.01069729|220002.3559538|111.83375096|32739|1 +638634.18621743|219998.76302323|131.12765373|32740|1 +638634.82636869|219998.01662243|117.01846812|32741|2 +638635.1816635|219997.60235727|109.18765602|32742|3 +638639.18108698|219994.21994891|132.8167075|32743|1 +638640.27879658|219992.948225|109.33354508|32744|2 +638644.21768409|219989.61661851|132.57489852|32745|1 +638645.34209998|219988.32178412|109.20079943|32746|2 +638649.12848883|219985.1466802|133.9487895|32747|1 +638650.34774973|219983.75057667|109.29397533|32748|2 +638654.67252504|219979.97673094|124.70127035|32749|1 +638649.69076919|219980.9757552|124.74116567|32750|1 +638650.1727408|219980.42523521|115.08156852|32751|2 +638650.45197391|219980.10628817|109.48523845|32752|3 +638645.25940605|219984.8751254|112.17547962|32753|1 +638640.29689695|219989.36856429|109.1519093|32754|1 +638635.17501955|219994.04557476|109.45714709|32755|1 +638629.08320853|219999.85838889|131.64873925|32756|1 +638630.02647745|219998.75434687|110.41133261|32757|2 +638624.00096799|220004.48505954|130.71860812|32758|1 +638624.91063694|220003.41281999|109.57833063|32759|2 +638618.93027311|220009.11079954|130.62867854|32760|1 +638619.80480696|220008.07233584|109.63554586|32761|2 +638613.54516583|220014.11309513|138.36715191|32762|1 +638614.68752059|220012.74595334|110.01123531|32763|2 +638608.48266299|220018.71861999|137.1643392|32764|1 +638609.47716874|220017.5183958|111.59992291|32765|2 +638603.41359882|220023.34601833|137.35057936|32766|1 +638604.44059515|220022.09557734|109.98652049|32767|2 +638599.32376949|220026.77035087|110.50082501|32768|1 +638593.5210746|220032.28175089|129.42704716|32769|1 +638594.1801511|220031.46340775|110.47535674|32770|2 +638588.89258093|220036.35391898|116.22670091|32771|1 +638589.09168521|220036.10402119|110.26665278|32772|2 +638583.08944819|220041.88799684|137.10557988|32773|1 +638583.93671669|220040.81208362|110.64784888|32774|2 +638578.13328704|220046.37259346|133.81648104|32775|1 +638578.83647433|220045.46844707|110.87683071|32776|2 +638573.01878252|220051.06039059|135.65845601|32777|1 +638573.19684059|220050.82834686|129.57811731|32778|2 +638573.73942574|220050.12125451|111.04997398|32779|3 +638567.74085505|220055.94721627|141.86202464|32780|1 +638563.47495638|220059.5024977|112.39339234|32781|1 +638558.2122991|220064.384126|119.36139026|32782|1 +638558.40085772|220064.1263688|111.86836287|32783|2 +638553.25368874|220068.82868878|112.37130992|32784|1 +638548.15725843|220073.48436671|112.8460912|32785|1 +638542.47553256|220078.99315708|141.22631334|32786|1 +638537.91257031|220082.84879009|114.30034022|32787|1 +638532.77993298|220087.53436059|114.49931452|32788|1 +638527.74673379|220092.12749441|114.55284624|32789|1 +638522.61462684|220096.81372551|114.85254018|32790|1 +638517.31357595|220101.79145923|127.17271514|32791|1 +638517.48239121|220101.50129179|115.25895339|32792|2 +638512.40156137|220106.14024127|115.51757068|32793|1 +638507.27420291|220110.82150561|115.76243995|32794|1 +638502.19386123|220115.46208085|116.20288836|32795|1 +638496.92841295|220120.51696533|138.13205881|32796|1 +638491.99040423|220124.78183609|117.04591766|32797|1 +638486.86861423|220129.45695691|117.19877375|32798|1 +638481.79534619|220134.08786875|117.359248|32799|1 +638476.44052762|220138.97809705|117.7215801|32800|1 +638471.60738321|220143.39135358|118.01772075|32801|1 +638466.53599707|220148.02489968|118.56016315|32802|1 +638461.41831618|220152.69906109|118.95868845|32803|1 +638456.30216413|220157.37332554|119.48889901|32804|1 +638451.23467216|220162.00103687|119.83224618|32805|1 +638446.12013372|220166.67112376|120.12575444|32806|1 +638441.05421279|220171.29683165|120.41962546|32807|1 +638435.98971288|220175.92216755|120.79495214|32808|1 +638430.87870544|220180.59031903|121.20201648|32809|1 +638425.81874403|220185.21429348|121.8215799|32810|1 +638420.75924379|220189.83677702|122.34757675|32811|1 +638415.69887479|220194.45820008|122.71126691|32812|1 +638410.59299096|220199.12224751|123.16965845|32813|1 +638405.58478524|220203.69768149|123.67664247|32814|1 +638400.48419953|220208.35874704|124.29806625|32815|1 +638395.47461688|220212.93315257|124.6051923|32816|1 +638390.41783082|220217.55066192|124.91349038|32817|1 +638385.36380643|220222.16685764|125.32818217|32818|1 +638380.3132346|220226.78125515|125.86175067|32819|1 +638375.31320153|220231.35035283|126.46883111|32820|1 +638370.25756867|220235.9661618|126.72143015|32821|1 +638360.19612902|220245.1529154|127.28140639|32822|1 +638355.13809257|220249.76977881|127.43446712|32823|1 +638350.12406608|220254.34516029|127.4730695|32824|1 +638345.10972031|220258.9209034|127.51789476|32825|1 +638340.5187028|220263.27049105|141.52304|32826|1 +638340.28328279|220263.40587789|134.54094989|32827|2 +638340.05523239|220263.53702656|127.77743292|32828|3 +638335.63848734|220267.76304479|144.84537409|32829|1 +638335.05852476|220268.10416493|128.30935501|32830|2 +638330.71694227|220272.2778078|146.8058816|32831|1 +638330.0509252|220272.6776137|128.52270985|32832|2 +638325.70793424|220276.84467639|146.3309515|32833|1 +638325.05210474|220277.24574483|128.9732879|32834|2 +638320.67165405|220281.44293837|146.42706676|32835|1 +638319.99212592|220281.86568101|129.07082633|32836|2 +638315.7090323|220285.98145592|147.18204544|32837|1 +638315.21086308|220286.29623834|134.88387848|32838|2 +638314.97062862|220286.44803732|128.95328908|32839|3 +638310.60612044|220290.59663403|143.42057449|32840|1 +638305.16225293|220295.46128024|134.22959153|32841|1 +638304.95615425|220295.59515727|129.46100795|32842|2 +638299.99940552|220300.12339949|129.78318427|32843|1 +638294.98661653|220304.70077152|129.92761296|32844|1 +638289.97085918|220309.2802812|130.0221004|32845|1 +638285.00741888|220313.81326395|130.22515818|32846|1 +638279.99302929|220318.39215403|130.37567022|32847|1 +638274.99363902|220322.96082331|130.83184794|32848|1 +638270.14415587|220327.41464979|133.2235579|32849|1 +638265.04216294|220332.04472981|130.84375422|32850|1 +638260.16256937|220336.51900125|132.617203|32851|1 +638255.19349499|220341.05630477|132.75030212|32852|1 +638253.70560015|220339.24841686|131.7359155|32853|1 +638258.95582351|220334.5060551|136.72176067|32854|1 +638258.60304791|220334.75643982|130.34903924|32855|2 +638263.75234462|220330.07651115|132.69295667|32856|1 +638268.75226201|220325.50265737|132.34307965|32857|1 +638273.68189736|220320.97759686|130.62707864|32858|1 +638278.68542453|220316.40093891|130.32062231|32859|1 +638283.69594211|220311.81957433|130.16385947|32860|1 +638288.70581324|220307.23880326|130.00707803|32861|1 +638293.76385524|220302.61430076|129.87172788|32862|1 +638298.77416486|220298.03355042|129.75248841|32863|1 +638303.78301835|220293.4539181|129.61448726|32864|1 +638309.04133174|220288.71387249|135.46272803|32865|1 +638308.77905406|220288.88268706|129.18308017|32866|2 +638314.62018132|220283.76185769|148.48187567|32867|1 +638319.51615786|220279.24699844|144.94001967|32868|1 +638318.88506989|220279.64127495|128.76992316|32869|2 +638324.59127746|220274.63363386|147.18228728|32870|1 +638329.66226992|220270.01018732|148.19202302|32871|1 +638328.94978139|220270.43991236|128.56626077|32872|2 +638334.60690617|220265.46255676|145.68628258|32873|1 +638333.99517718|220265.82408824|128.17601404|32874|2 +638339.52317064|220260.94519429|143.56994241|32875|1 +638344.04130809|220256.63393172|127.46074464|32876|1 +638349.14173355|220251.97017391|127.27474632|32877|1 +638354.15843994|220247.38737562|127.49309622|32878|1 +638359.20723568|220242.76950294|127.19723462|32879|1 +638364.30396356|220238.10786485|126.89968009|32880|1 +638374.40709869|220228.86904351|126.48391859|32881|1 +638379.44961054|220224.25333075|125.87016878|32882|1 +638384.49416935|220219.63618001|125.29403535|32883|1 +638389.54313323|220215.01682804|124.88049698|32884|1 +638394.59506429|220210.39610383|124.58584461|32885|1 +638399.64747446|220205.77494768|124.29135036|32886|1 +638404.74497243|220201.11038065|123.796161|32887|1 +638409.79529228|220196.48846634|123.26463889|32888|1 +638414.84777925|220191.86506701|122.77701186|32889|1 +638419.90247461|220187.24063705|122.37704478|32890|1 +638425.00600141|220182.57177358|121.98933744|32891|1 +638430.06074794|220177.94497802|121.38359645|32892|1 +638435.11829553|220173.31745837|120.94052494|32893|1 +638440.17700153|220168.68888289|120.49762085|32894|1 +638445.28547495|220164.01670787|120.21747925|32895|1 +638450.34642714|220159.38622728|119.78757905|32896|1 +638455.40910273|220154.75684608|119.59535784|32897|1 +638460.47216176|220150.12360249|119.0908574|32898|1 +638465.58451545|220145.44565027|118.61210427|32899|1 +638470.65075534|220140.80852428|118.02065081|32900|1 +638475.71256475|220136.17839505|117.69178651|32901|1 +638480.82822757|220131.49919435|117.37037292|32902|1 +638485.8960957|220126.86564956|117.22959984|32903|1 +638490.96065943|220122.24109285|117.62018143|32904|1 +638495.89740118|220117.95496362|137.72607347|32905|1 +638495.94091969|220117.86007132|132.82104213|32906|2 +638501.16062639|220112.89965545|115.94147124|32907|1 +638506.23419397|220108.25937613|115.6642597|32908|1 +638511.18538246|220103.8793103|128.59026866|32909|1 +638511.35420914|220103.57896725|115.5888595|32910|2 +638516.43116938|220098.93460528|115.22480657|32911|1 +638521.51659894|220094.27753001|114.41745889|32912|1 +638526.63876555|220089.59608349|114.42450964|32913|1 +638531.680278|220085.00853867|116.23509111|32914|1 +638536.79351397|220080.31239022|114.210699|32915|1 +638541.29770476|220076.49858719|141.20355189|32916|1 +638546.98045768|220070.98513259|112.73640465|32917|1 +638552.07126791|220066.32709966|112.28079434|32918|1 +638557.09532511|220061.76055385|114.54174923|32919|1 +638561.85416449|220057.54567396|126.54275233|32920|1 +638562.20824956|220057.07313851|113.2686802|32921|2 +638567.30883099|220052.40366673|112.58918543|32922|1 +638571.91232221|220048.37910465|128.90252929|32923|1 +638572.43359733|220047.7039061|111.17970586|32924|2 +638576.79453891|220043.96480517|133.18782978|32925|1 +638577.48788232|220043.07841547|110.65393225|32926|2 +638581.91423154|220039.26355574|131.23413117|32927|1 +638587.65732349|220033.78607758|110.86414309|32928|1 +638592.71483378|220029.15835053|110.40136111|32929|1 +638596.78431458|220025.75490345|138.59484079|32930|1 +638597.81146555|220024.49840241|110.24817946|32931|2 +638601.91948299|220021.02596097|135.18467933|32932|1 +638602.85320093|220019.89424217|110.34730849|32933|2 +638607.90771562|220015.27578986|110.14705984|32934|1 +638611.82465157|220012.02693735|139.392403|32935|1 +638612.95548016|220010.67926407|111.34818893|32936|2 +638616.75401377|220007.53370344|140.17045009|32937|1 +638618.02173095|220006.03433948|109.74696254|32938|2 +638623.03261839|220001.48101721|111.79643224|32939|1 +638627.11692635|219997.99486897|133.53262803|32940|1 +638627.39987159|219997.66493096|127.16009263|32941|2 +638628.16869861|219996.76841373|109.84448236|32942|3 +638633.23941414|219992.13315315|109.46426295|32943|1 +638637.29609229|219988.6660374|130.65312361|32944|1 +638637.83040684|219988.05081202|119.31389539|32945|2 +638638.17408439|219987.65509163|112.0203725|32946|3 +638642.40634559|219983.96865942|127.95959891|32947|1 +638643.21779256|219983.03973291|111.21787104|32948|2 +638647.75705162|219979.01031481|121.57583627|32949|1 +638648.34615208|219978.33966753|109.75352959|32950|2 +638645.9807474|219977.83392058|119.11400022|32951|1 +638640.57340946|219982.84341244|126.48417904|32952|1 +638641.34793378|219981.96036965|110.47134768|32953|2 +638636.21890634|219986.65063819|111.9130207|32954|1 +638631.04748418|219991.37948984|113.34450828|32955|1 +638625.33315617|219996.7400907|127.1604647|32956|1 +638625.97317752|219995.99687102|112.70028585|32957|2 +638620.11342312|220001.54474354|131.47407049|32958|1 +638620.90454589|220000.61981831|113.03338246|32959|2 +638615.8797279|220005.16625881|110.04656345|32960|1 +638610.22426501|220010.47238617|123.79330535|32961|1 +638610.77089538|220009.82366407|110.17628603|32962|2 +638605.71054116|220014.43713949|110.33523478|32963|1 +638599.80240579|220020.04596979|130.63296666|32964|1 +638600.55772959|220019.13437605|110.43685669|32965|2 +638594.52082778|220024.92362898|136.45040925|32966|1 +638595.45378152|220023.78719815|110.55521249|32967|2 +638590.35402203|220028.43530851|110.59281027|32968|1 +638580.14986566|220037.73851967|110.9186329|32969|1 +638574.34919858|220043.2629667|132.4585519|32970|1 +638574.96423512|220042.47995175|112.31485744|32971|2 +638569.06404285|220048.14515375|138.3896436|32972|1 +638563.94388701|220052.83708332|140.71647367|32973|1 +638559.65659307|220056.42480062|111.78099129|32974|1 +638554.48284259|220061.15562473|113.19838668|32975|1 +638549.40702379|220065.7760065|112.70192296|32976|1 +638543.71728038|220071.23605185|137.58390512|32977|1 +638544.26390243|220070.46707079|113.04633984|32978|2 +638538.64675481|220075.84136791|136.15678938|32979|1 +638538.79605258|220075.62645744|129.01173214|32980|2 +638539.12805833|220075.14854324|113.12273533|32981|3 +638534.01891874|220079.81811598|114.33238484|32982|1 +638528.88558437|220084.4977856|114.45347537|32983|1 +638523.75424367|220089.1749579|114.51260676|32984|1 +638518.2719652|220094.45813819|140.52478266|32985|1 +638518.67381895|220093.80403341|114.42412826|32986|2 +638513.26780149|220098.94862981|134.16992063|32987|1 +638513.53416417|220098.49629557|115.16507987|32988|2 +638508.3972984|220103.18581677|115.8878465|32989|1 +638503.16838983|220108.0518054|125.00852663|32990|1 +638503.27302243|220107.85394783|115.71142901|32991|2 +638498.19049429|220112.49073643|116.1491427|32992|1 +638492.86272259|220117.547274|134.38049425|32993|1 +638492.90613577|220117.45137255|129.26919601|32994|2 +638487.90698501|220121.91492864|120.8848445|32995|1 +638482.80947784|220126.52163007|117.34835562|32996|1 +638477.68626721|220131.19273057|117.53033557|32997|1 +638472.61646412|220135.8166178|117.85107943|32998|1 +638467.49413718|220140.48947123|118.26507359|32999|1 +638462.3731266|220145.16181676|118.74201287|33000|1 +638457.30159572|220149.79100698|119.40104373|33001|1 +638452.18323362|220154.45874193|119.67879478|33002|1 +638447.0660834|220159.12640384|120.05072631|33003|1 +638441.9497149|220163.79274222|120.36685648|33004|1 +638436.88255525|220168.41506572|120.76458184|33005|1 +638431.7689837|220173.08016783|121.20021193|33006|1 +638426.6582577|220177.74466973|121.81750572|33007|1 +638421.59374542|220182.36376036|122.14103081|33008|1 +638416.48321913|220187.0257522|122.54656035|33009|1 +638411.37305933|220191.68693242|122.90877153|33010|1 +638406.26714624|220196.34664661|123.49011395|33011|1 +638401.21087438|220200.96125785|124.08965995|33012|1 +638396.10273957|220205.61977644|124.37797781|33013|1 +638391.04234628|220210.23443688|124.64053905|33014|1 +638385.93690884|220214.89146097|125.01704706|33015|1 +638380.88338892|220219.50288266|125.55497809|33016|1 +638375.78352321|220224.15676147|126.10709433|33017|1 +638370.73304657|220228.76582378|126.6829301|33018|1 +638365.66944177|220233.38080717|126.70914251|33019|1 +638360.61153461|220237.99307963|126.9604393|33020|1 +638355.51073245|220242.64630832|127.37633102|33021|1 +638350.49162055|220247.21970681|127.31362775|33022|1 +638345.4299221|220251.83405991|127.44053188|33023|1 +638340.5537079|220256.35776687|134.7022892|33024|1 +638340.31350485|220256.49611668|127.36391315|33025|2 +638335.88893058|220260.72048631|144.79372133|33026|1 +638335.32139147|220261.05496996|128.14455543|33027|2 +638330.9306933|220265.26633021|147.19296572|33028|1 +638325.92773692|220269.82363879|146.92930687|33029|1 +638325.51812045|220270.07485017|135.80237309|33030|2 +638320.90470742|220274.3939046|146.17860701|33031|1 +638320.2398119|220274.80874634|128.75904009|33032|2 +638315.89926945|220278.96706191|147.14775909|33033|1 +638310.57338325|220283.73302959|139.07468223|33034|1 +638310.15904354|220283.99951808|128.94308503|33035|2 +638305.15804552|220288.56324565|129.42376363|33036|1 +638300.09699721|220293.17858134|129.61434773|33037|1 +638295.08175992|220297.75172993|129.77048735|33038|1 +638290.06481086|220302.32616663|129.901661|33039|1 +638285.04631257|220306.90181198|130.01409157|33040|1 +638280.07348386|220311.43545417|130.09777035|33041|1 +638275.05689282|220316.01011625|130.27871781|33042|1 +638270.0422621|220320.58354033|130.50955999|33043|1 +638265.05652045|220325.12677027|130.39320407|33044|1 +638260.1948825|220329.59183541|133.46133921|33045|1 +638255.49493494|220333.92098406|137.58622127|33046|1 +638255.08577787|220334.21358313|130.25357511|33047|2 +638252.37303187|220334.23317367|133.87857039|33048|1 +638257.47588678|220329.58733792|135.37707727|33049|1 +638262.29332372|220325.13622884|130.74134166|33050|1 +638267.25530316|220320.6002953|130.49770023|33051|1 +638272.3117353|220315.97799476|130.23965035|33052|1 +638277.32717347|220311.3946937|130.12913594|33053|1 +638282.34151071|220306.81232757|130.01240795|33054|1 +638287.40477953|220302.18573098|129.93573341|33055|1 +638292.41957321|220297.60341984|129.86278888|33056|1 +638297.42780869|220293.02568888|129.65878232|33057|1 +638302.53199428|220288.36057364|129.47321188|33058|1 +638307.53915489|220283.78375799|129.26313126|33059|1 +638313.08436559|220278.84793473|141.37346744|33060|1 +638312.86983077|220278.98598601|135.98585063|33061|2 +638318.33298691|220274.10960542|146.65577883|33062|1 +638317.6507272|220274.54209648|128.91197059|33063|2 +638322.76391763|220269.89942988|131.5866964|33064|1 +638328.36283302|220264.94728326|146.74796874|33065|1 +638333.40809126|220260.32607421|145.64129919|33066|1 +638332.80006226|220260.69125185|127.93707001|33067|2 +638337.81252293|220256.11167519|127.92086632|33068|1 +638342.85344636|220251.49979977|127.31523695|33069|1 +638347.95910566|220246.83450302|127.2384787|33070|1 +638352.9783535|220242.25161172|127.49108704|33071|1 +638358.07313045|220237.5925067|127.06514009|33072|1 +638363.12392485|220232.97483999|126.76010694|33073|1 +638368.18106257|220228.35399921|126.69888265|33074|1 +638373.27987257|220223.69249481|126.39260305|33075|1 +638378.32407233|220219.07730656|125.75702197|33076|1 +638383.37100497|220214.46035917|125.19032055|33077|1 +638388.46898976|220209.79801019|124.73500789|33078|1 +638393.52227255|220205.17775142|124.3999207|33079|1 +638398.62605109|220200.51279703|124.19524441|33080|1 +638403.67906046|220195.89185459|123.7731205|33081|1 +638408.77863249|220191.22673397|123.19418723|33082|1 +638413.83326101|220186.60357864|122.70376037|33083|1 +638418.93770801|220181.93582083|122.29424967|33084|1 +638423.99718317|220177.31112585|122.07301622|33085|1 +638429.05414485|220172.68484823|121.48948788|33086|1 +638434.16105117|220168.01398269|120.99974935|33087|1 +638439.26954464|220163.3422113|120.56042645|33088|1 +638444.33181588|220158.71356753|120.20893092|33089|1 +638449.44266148|220154.03979072|119.78285375|33090|1 +638454.50729071|220149.41081021|119.60061335|33091|1 +638459.62029854|220144.73366152|119.04406946|33092|1 +638464.73497475|220140.05499474|118.48797206|33093|1 +638469.8034282|220135.41891425|117.96911897|33094|1 +638474.91468007|220130.74686141|117.73868606|33095|1 +638479.98434459|220126.11216045|117.45159604|33096|1 +638485.08694819|220121.47244107|119.50285168|33097|1 +638490.15725166|220116.83494947|119.01005286|33098|1 +638495.30121224|220112.10320795|115.99444486|33099|1 +638500.42246831|220107.42291573|115.84742098|33100|1 +638505.4956132|220102.78746223|115.786792|33101|1 +638510.62235345|220098.09909716|115.35320829|33102|1 +638515.26199103|220094.16877027|144.18688273|33103|1 +638515.71062351|220093.44033761|114.40605491|33104|2 +638520.78670088|220088.80268435|114.39004655|33105|1 +638525.89766442|220084.14137354|115.13838377|33106|1 +638530.98984751|220079.48012553|114.29216396|33107|1 +638536.13374337|220074.77123902|113.40486751|33108|1 +638540.70294204|220070.84563618|136.67927016|33109|1 +638541.16696868|220070.19551632|115.51980311|33110|2 +638541.19449808|220070.15694652|114.26448187|33111|3 +638546.28079558|220065.50683548|113.95642564|33112|1 +638551.40069225|220060.81214933|112.34981352|33113|1 +638556.5463318|220056.10523619|111.79547415|33114|1 +638560.95117776|220052.32731945|134.85526622|33115|1 +638561.5955569|220051.4874072|111.34212417|33116|2 +638565.86732972|220047.88710468|139.64718796|33117|1 +638566.69205009|220046.82746968|110.98552197|33118|2 +638571.11615407|220043.02072631|132.99603645|33119|1 +638571.78830533|220042.16848802|110.69793895|33120|2 +638576.19245911|220038.3769221|132.42589337|33121|1 +638576.87109204|220037.52694882|110.89133218|33122|2 +638581.29587335|220033.70035651|131.10712471|33123|1 +638581.96043234|220032.8774228|110.89775041|33124|2 +638586.33266652|220029.1068552|131.86699613|33125|1 +638587.05862614|220028.2173493|110.6735683|33126|2 +638591.24250945|220024.6527038|134.81989156|33127|1 +638592.10760918|220023.60302666|110.52726065|33128|2 +638597.14866424|220018.99833902|110.6306499|33129|1 +638602.24515864|220014.33627842|110.5133824|33130|1 +638606.1277682|220011.09700163|139.79881622|33131|1 +638607.30256829|220009.70784951|110.20539128|33132|2 +638611.37753251|220006.24534987|135.03820426|33133|1 +638612.4078223|220005.03632864|109.9515365|33134|2 +638616.50541165|220001.52721018|132.35782297|33135|1 +638617.33680524|220000.55851123|112.7623194|33136|2 +638622.49282897|219995.81637114|110.24086826|33137|1 +638627.56372321|219991.17402888|109.7839743|33138|1 +638632.16974516|219987.06365525|119.37705445|33139|1 +638632.6049307|219986.56620248|110.01933715|33140|2 +638636.82925712|219982.88694928|127.33458465|33141|1 +638637.61426673|219981.99474026|110.93424128|33142|2 +638642.6942453|219977.34317941|110.39058965|33143|1 +638634.97451591|219981.28587384|125.89103267|33144|1 +638635.71972106|219980.44035387|110.28831662|33145|2 +638630.41511684|219985.33711192|115.59032918|33146|1 +638625.60949827|219989.66474412|110.1630403|33147|1 +638620.45704829|219994.37813744|111.26554265|33148|1 +638614.44086522|220000.1092394|134.02055271|33149|1 +638615.45202038|219998.93317027|110.12140555|33150|2 +638609.39822467|220004.70385514|133.37401414|33151|1 +638610.35142956|220003.58721766|110.08955626|33152|2 +638605.23958586|220008.25484685|110.36997692|33153|1 +638599.16354284|220014.08360936|137.1947467|33154|1 +638600.17995912|220012.87419635|110.59223356|33155|2 +638595.07594088|220017.53350555|110.7610329|33156|1 +638589.97013294|220022.19544447|111.02379878|33157|1 +638584.04700024|220027.87249294|136.70920328|33158|1 +638584.93230422|220026.78969316|110.7537031|33159|2 +638579.82841708|220031.45015546|111.04203026|33160|1 +638574.71062064|220036.12860418|111.83007676|33161|1 +638569.64029242|220040.74807572|111.139085|33162|1 +638563.91997565|220046.20067502|133.11695954|33163|1 +638564.55682012|220045.38404371|110.87281235|33164|2 +638559.20251608|220050.37237547|120.54663191|33165|1 +638559.45322854|220050.04624202|111.34978884|33166|2 +638554.3535462|220054.70415019|111.75844378|33167|1 +638549.20420192|220059.40895671|112.31469931|33168|1 +638544.11357872|220064.05629801|112.50559967|33169|1 +638539.02216202|220068.70535983|112.79047587|33170|1 +638533.6333406|220073.78074745|127.72230129|33171|1 +638533.83445763|220073.49296585|117.86627853|33172|2 +638528.77751575|220078.07007091|114.32095296|33173|1 +638523.69139195|220082.71451667|114.62566055|33174|1 +638518.57041692|220087.38323586|114.21657773|33175|1 +638513.09325361|220092.66311571|140.87323651|33176|1 +638513.48827047|220092.02254471|114.3782426|33177|2 +638508.38313923|220096.70152266|116.30824028|33178|1 +638503.25904666|220101.37772879|116.33775482|33179|1 +638498.18852381|220105.99997455|115.88804183|33180|1 +638493.0970962|220110.66381635|117.5692449|33181|1 +638487.98386144|220115.31996841|116.63766269|33182|1 +638482.88748279|220120.00622249|120.01301691|33183|1 +638477.78370565|220124.63785134|117.57623984|33184|1 +638472.66318883|220129.31248644|117.76446129|33185|1 +638467.59602407|220133.93948958|118.05387676|33186|1 +638462.52415554|220138.57303244|118.55591223|33187|1 +638457.40604862|220143.2499079|119.16396936|33188|1 +638452.3372963|220147.88002216|119.6103337|33189|1 +638447.22147194|220152.55093338|119.85044976|33190|1 +638442.10697002|220157.22209445|120.22851116|33191|1 +638437.04125645|220161.84859405|120.59448025|33192|1 +638431.97759697|220166.47480538|121.11065443|33193|1 +638426.86759668|220171.14339243|121.63352588|33194|1 +638421.8056851|220175.76696138|122.05019896|33195|1 +638416.69544695|220180.43314047|122.32383862|33196|1 +638411.6348285|220185.0550782|122.69725843|33197|1 +638406.57774845|220189.67583296|123.26458308|33198|1 +638401.47560286|220194.33839825|123.89543886|33199|1 +638396.41699132|220198.95759327|124.18200798|33200|1 +638391.35832991|220203.57651503|124.43751848|33201|1 +638386.25328908|220208.2383087|124.74442129|33202|1 +638381.19957865|220212.8548229|125.20033856|33203|1 +638376.14949496|220217.46934606|125.78138333|33204|1 +638371.10190436|220222.08219032|126.41880616|33205|1 +638365.99797199|220226.74227501|126.65824318|33206|1 +638360.98565|220231.31711984|126.74448926|33207|1 +638355.93346136|220235.93147382|127.12624346|33208|1 +638350.87072212|220240.55144787|127.12712713|33209|1 +638345.80910313|220245.17099761|127.18443537|33210|1 +638340.75157144|220249.78833416|127.38559559|33211|1 +638335.74132243|220254.37730356|129.01708997|33212|1 +638331.00947299|220258.78027117|137.22803776|33213|1 +638330.69602863|220258.97052107|128.12307763|33214|2 +638326.23513434|220263.21716519|144.97830578|33215|1 +638321.28211355|220267.76074105|147.37031339|33216|1 +638316.2141202|220272.36328914|145.39509047|33217|1 +638310.52001988|220277.38632301|129.07086354|33218|1 +638305.50878771|220281.95969861|129.24490908|33219|1 +638300.49740123|220286.53328117|129.4251682|33220|1 +638295.48749805|220291.10596996|129.64907126|33221|1 +638290.47497867|220295.68051983|129.82303308|33222|1 +638285.45698694|220300.25894927|129.89087094|33223|1 +638280.44025309|220304.83669494|130.00240854|33224|1 +638275.42121849|220309.41620953|130.08274798|33225|1 +638270.40194237|220313.99607884|130.17557041|33226|1 +638265.43169477|220318.5316088|130.3079905|33227|1 +638260.4036907|220323.11806837|130.2697695|33228|1 +638255.63044864|220327.51194005|134.03105441|33229|1 +638255.73477562|220324.2753514|132.83455761|33230|1 +638260.62090682|220319.78303198|130.32593363|33231|1 +638265.63177376|220315.20080868|130.12458737|33232|1 +638270.6526857|220310.61161473|130.13534023|33233|1 +638275.71458308|220305.98379005|130.03001621|33234|1 +638280.7268409|220301.40106053|129.90367018|33235|1 +638285.78746167|220296.77446156|129.80493183|33236|1 +638290.80107552|220292.19113871|129.74109374|33237|1 +638295.8547332|220287.5695947|129.51787901|33238|1 +638300.90960846|220282.94732287|129.33231787|33239|1 +638305.91514028|220278.36981099|129.1188421|33240|1 +638310.97267942|220273.74601334|129.0209502|33241|1 +638316.43270372|220268.86506983|139.53730608|33242|1 +638316.01966396|220269.12912435|128.66104587|33243|2 +638321.48011732|220264.26560384|140.8920447|33244|1 +638321.02805684|220264.55002383|128.5475735|33245|2 +638326.24762893|220259.82644327|133.08358477|33246|1 +638326.08032855|220259.92985936|128.33775333|33247|2 +638331.13283581|220255.30960735|128.14061148|33248|1 +638336.27978763|220250.63337581|130.85401408|33249|1 +638341.22350783|220246.07758174|127.3034144|33250|1 +638346.27411092|220241.45834341|127.03806262|33251|1 +638351.33386855|220236.83405917|127.09146412|33252|1 +638356.3891728|220232.21240693|127.00762721|33253|1 +638361.43741693|220227.59447774|126.66159182|33254|1 +638366.49170417|220222.97342794|126.54687302|33255|1 +638371.54094335|220218.35477333|126.21990627|33256|1 +638376.58496339|220213.73815702|125.63067594|33257|1 +638381.62954447|220209.120701|125.01033117|33258|1 +638386.72774447|220204.45680466|124.63264184|33259|1 +638391.77946053|220199.83568799|124.28764826|33260|1 +638396.83411888|220195.21337635|124.08655315|33261|1 +638401.93438361|220190.54772552|123.72232349|33262|1 +638406.98514897|220185.92519383|123.15922186|33263|1 +638412.0377318|220181.30119844|122.61502143|33264|1 +638417.14031052|220176.63245801|122.15801585|33265|1 +638422.19838228|220172.00676031|121.93300588|33266|1 +638427.30413362|220167.33674273|121.63294917|33267|1 +638432.36104747|220162.70839625|121.05219276|33268|1 +638437.4197989|220158.07895437|120.52786093|33269|1 +638442.52858464|220153.40609944|120.22259523|33270|1 +638447.59024986|220148.77535812|119.83000445|33271|1 +638452.65323143|220144.14523155|119.61261264|33272|1 +638457.76481446|220139.46755103|119.08967607|33273|1 +638462.83032108|220134.831024|118.47908886|33274|1 +638467.89722063|220130.19471719|118.01244665|33275|1 +638473.00686337|220125.52172565|117.77175388|33276|1 +638478.06695351|220120.90780518|118.86166162|33277|1 +638483.13437698|220116.27270008|118.55820977|33278|1 +638488.20213497|220111.63826518|118.34872447|33279|1 +638493.33901375|220106.91943273|116.09131355|33280|1 +638498.41186138|220102.27995956|115.84497461|33281|1 +638503.48309856|220097.64416283|115.81130218|33282|1 +638508.56356415|220092.9935102|115.15934997|33283|1 +638513.41116358|220088.71395466|129.75722302|33284|1 +638513.64917927|220088.33620351|114.32026463|33285|2 +638518.4298412|220084.14788185|131.81619913|33286|1 +638518.72344717|220083.69802442|114.3248411|33287|2 +638523.5398251|220079.44325705|128.56555384|33288|1 +638523.79632373|220079.06221752|114.4358299|33289|2 +638528.87643027|220074.41610734|114.19101644|33290|1 +638533.97726114|220069.74139866|113.01585792|33291|1 +638539.10788147|220065.04977524|112.83027818|33292|1 +638544.15425751|220060.43047453|112.20302218|33293|1 +638549.28495473|220055.74001425|112.13694236|33294|1 +638554.32985466|220051.12426032|111.7224087|33295|1 +638558.81463487|220047.24853712|133.30665067|33296|1 +638559.28710347|220046.64008468|116.26818683|33297|2 +638559.43132018|220046.45436012|111.0673683|33298|3 +638563.8752472|220042.62058826|133.09962103|33299|1 +638564.51214804|220041.81160732|111.21182489|33300|2 +638568.68908352|220038.30261283|141.0391895|33301|1 +638569.58982683|220037.17296079|111.47514888|33302|2 +638574.69609536|220032.4989296|110.84612555|33303|1 +638579.02450831|220028.77937904|133.72206801|33304|1 +638579.77682668|220027.85703946|111.0663358|33305|2 +638584.82445972|220023.24098587|110.86518489|33306|1 +638589.18518433|220019.46509955|131.1599495|33307|1 +638589.91862862|220018.58332113|110.74887548|33308|2 +638594.19974522|220014.88205142|131.18161334|33309|1 +638594.96523896|220013.96980416|110.65410898|33310|2 +638600.00991217|220009.35996821|110.64049118|33311|1 +638605.11161936|220004.69601993|110.43131283|33312|1 +638610.1606559|220000.0817444|110.37435805|33313|1 +638613.99988606|219996.8665074|138.65643715|33314|1 +638614.23789693|219996.59132908|133.08719386|33315|2 +638615.23098948|219995.44315639|109.84977507|33316|3 +638620.31776884|219990.79763312|110.10300663|33317|1 +638624.52369235|219987.14676319|128.68304457|33318|1 +638625.36623739|219986.18496859|110.15255719|33319|2 +638629.52035548|219982.57691172|128.30185778|33320|1 +638629.61860705|219979.1507962|122.39279269|33321|1 +638623.98050555|219984.41413853|134.37690376|33322|1 +638624.27668796|219984.0773069|127.9113506|33323|2 +638618.91811404|219989.03771896|135.2505266|33324|1 +638614.97670461|219992.37145405|110.19345711|33325|1 +638609.86813019|219997.02983957|110.34935488|33326|1 +638604.81135481|220001.6403876|110.45350687|33327|1 +638599.7022495|220006.30023435|110.70362233|33328|1 +638594.64473942|220010.91249677|110.90797306|33329|1 +638588.78638154|220016.46975853|131.91883493|33330|1 +638589.54682928|220015.55995748|110.94657543|33331|2 +638584.44985841|220020.20663228|110.99173556|33332|1 +638579.40821413|220024.80089457|110.85339024|33333|1 +638573.60057992|220030.32415029|133.05718633|33334|1 +638574.31544154|220029.44304405|110.83039625|33335|2 +638568.45478211|220035.05878417|137.32188338|33336|1 +638569.25838968|220034.05697091|111.23533048|33337|2 +638563.44883717|220039.62128027|137.26101256|33338|1 +638564.19524893|220038.67928611|111.91506709|33339|2 +638558.48402848|220044.1139829|134.06301532|33340|1 +638559.13040721|220043.28722163|111.04369528|33341|2 +638554.03968105|220047.92817082|111.08407429|33342|1 +638548.89217674|220052.66379759|115.29240258|33343|1 +638548.99097288|220052.53354042|111.39591635|33344|2 +638543.88609392|220057.1944223|112.11743654|33345|1 +638538.67826815|220061.99733114|117.51079254|33346|1 +638538.79042727|220061.84394847|112.55204344|33347|2 +638533.21287903|220067.16750074|135.75255278|33348|1 +638533.70143218|220066.48507413|112.76212406|33349|2 +638528.58897316|220071.16041554|114.21546151|33350|1 +638523.54887186|220075.75866049|114.59690876|33351|1 +638517.96923736|220081.14511805|143.72439841|33352|1 +638518.48034578|220080.37219656|113.9394592|33353|2 +638512.97126449|220085.67403908|141.10086958|33354|1 +638513.39421526|220085.01247512|114.31921353|33355|2 +638508.3566095|220089.60910591|114.76341986|33356|1 +638503.25848204|220094.2723028|116.30568229|33357|1 +638498.18902232|220098.88825772|115.79894012|33358|1 +638492.94088358|220103.89151702|137.08785069|33359|1 +638488.07384061|220108.12280175|117.14916738|33360|1 +638482.99194493|220112.76728494|118.31132202|33361|1 +638477.84118616|220117.59376942|131.05306279|33362|1 +638477.914572|220117.40598123|119.31129089|33363|2 +638472.82624958|220122.08412587|123.1736117|33364|1 +638472.85344054|220122.00202046|117.60565206|33365|2 +638467.82821871|220126.58719705|118.03187806|33366|1 +638462.76201109|220131.20710289|118.19502191|33367|1 +638457.6907981|220135.83621534|118.80826943|33368|1 +638452.62146621|220140.46451225|119.50921409|33369|1 +638447.55328105|220145.08701603|119.74789767|33370|1 +638442.53396661|220149.66598989|120.09317031|33371|1 +638437.46771992|220154.28750754|120.40711457|33372|1 +638432.45128286|220158.86553067|120.91490785|33373|1 +638427.38876965|220163.48609582|121.4665962|33374|1 +638422.3733404|220168.06115568|121.77441059|33375|1 +638417.31009096|220172.67906019|122.00134603|33376|1 +638412.24920495|220177.29648038|122.39095093|33377|1 +638407.19035669|220181.91295267|122.86820648|33378|1 +638402.18141241|220186.484556|123.41358823|33379|1 +638397.12749933|220191.09800828|124.03477947|33380|1 +638392.11450392|220195.66907351|124.16766464|33381|1 +638387.05580806|220200.28298528|124.40786442|33382|1 +638382.04760672|220204.85206284|124.77193595|33383|1 +638376.99666188|220209.46231916|125.3435022|33384|1 +638371.94604777|220214.07188848|125.87771252|33385|1 +638366.94489462|220218.63660395|126.44166992|33386|1 +638361.8864831|220223.24925617|126.58244301|33387|1 +638356.87844623|220227.81697901|126.82774015|33388|1 +638351.87350381|220232.38298506|127.17914266|33389|1 +638346.80471322|220237.00145775|126.9641414|33390|1 +638341.79118303|220241.57241325|127.03446283|33391|1 +638336.83525621|220246.12497704|130.42348135|33392|1 +638331.78437823|220250.71896224|129.25082501|33393|1 +638326.83590248|220255.25305195|131.13822985|33394|1 +638322.10350627|220259.66416919|140.2401483|33395|1 +638321.90347723|220259.78949675|134.67650468|33396|2 +638321.71579539|220259.90708822|129.45630125|33397|3 +638316.66990563|220264.50214953|128.62741995|33398|1 +638311.65960243|220269.07501453|128.79758665|33399|1 +638306.64818096|220273.64870952|128.94898236|33400|1 +638301.63734242|220278.22213734|129.12531614|33401|1 +638296.62901988|220282.79397987|129.37027842|33402|1 +638291.6185052|220287.3673788|129.57149445|33403|1 +638286.60246617|220291.94466707|129.66035432|33404|1 +638281.63417859|220296.47850866|129.76430167|33405|1 +638276.6196238|220301.05509654|129.91542763|33406|1 +638271.64493603|220305.59375816|129.91918555|33407|1 +638266.62408606|220310.17514313|129.97664262|33408|1 +638261.59900216|220314.7597516|129.97174988|33409|1 +638256.63372586|220319.29227507|130.21211709|33410|1 +638252.60674657|220320.42839685|130.04903835|33411|1 +638257.62189322|220315.8385724|129.9215668|33412|1 +638262.68959243|220311.20181478|129.90232143|33413|1 +638267.71199125|220306.60717405|129.95593686|33414|1 +638272.77526009|220301.97402797|129.89347544|33415|1 +638277.7887875|220297.3861105|129.8100199|33416|1 +638282.80061607|220292.79954956|129.70784919|33417|1 +638287.86015983|220288.16955104|129.62094269|33418|1 +638292.91623514|220283.54209404|129.47185382|33419|1 +638297.96913013|220278.91691066|129.26056397|33420|1 +638303.0219235|220274.29188561|129.05572025|33421|1 +638308.0741326|220269.66733017|128.84483967|33422|1 +638313.08148247|220265.08459872|128.71818668|33423|1 +638318.17862984|220260.41839286|128.44863051|33424|1 +638323.22938151|220255.79497172|128.21959286|33425|1 +638328.43065686|220251.07884053|132.4559102|33426|1 +638333.39399887|220246.51015107|129.72314131|33427|1 +638338.37088987|220241.9312699|127.20881533|33428|1 +638343.42100384|220237.30817328|126.95550005|33429|1 +638348.47083365|220232.68521344|126.68987853|33430|1 +638353.53542094|220228.05422392|126.96789932|33431|1 +638358.63073336|220223.38900102|126.6321238|33432|1 +638368.73263656|220214.14202065|126.20231661|33433|1 +638373.77480557|220209.52235161|125.56905168|33434|1 +638378.86573457|220204.8579951|124.92211313|33435|1 +638383.91548947|220200.2340264|124.55168848|33436|1 +638388.96687997|220195.60912157|124.23766981|33437|1 +638394.02150569|220190.98295739|124.0925435|33438|1 +638399.07305923|220186.35740236|123.72886264|33439|1 +638404.17041743|220181.68785402|123.15218041|33440|1 +638409.26935645|220177.01680326|122.56963806|33441|1 +638414.27580699|220172.43176449|122.13844491|33442|1 +638419.3804837|220167.75885873|121.89397562|33443|1 +638424.48572723|220163.08543578|121.64992492|33444|1 +638429.54211208|220158.4539483|121.13768539|33445|1 +638434.59985964|220153.82121837|120.6256319|33446|1 +638439.70717847|220149.14432988|120.22639036|33447|1 +638444.76793902|220144.51035128|119.86484891|33448|1 +638449.87761706|220139.8326841|119.60386897|33449|1 +638454.9881937|220135.15275752|119.19958586|33450|1 +638460.05284553|220130.51151353|118.47018706|33451|1 +638465.11817625|220125.87423886|118.19721713|33452|1 +638470.19202447|220121.30438227|125.41171213|33453|1 +638475.22829293|220116.72773967|128.53229068|33454|1 +638480.26464861|220112.20451124|136.9779502|33455|1 +638480.41721765|220111.85740427|116.30061283|33456|2 +638485.48576102|220107.21932105|116.24124889|33457|1 +638490.37847703|220102.91707254|133.62133907|33458|1 +638490.50236957|220102.68078303|121.36825782|33459|2 +638490.55543941|220102.5795675|116.11960956|33460|3 +638495.66152123|220097.91718292|117.05559151|33461|1 +638500.74551107|220093.25318378|115.82238059|33462|1 +638505.8198074|220088.6075769|115.5391322|33463|1 +638510.55874261|220084.51595562|139.8971453|33464|1 +638510.95859842|220083.89315138|114.2708908|33465|2 +638515.49602291|220080.05823607|145.8539192|33466|1 +638515.5999145|220079.90180405|139.73191784|33467|2 +638521.06100607|220074.64819813|114.11004448|33468|1 +638526.19532841|220069.94463588|113.51776317|33469|1 +638530.71583078|220066.05012268|137.6298466|33470|1 +638531.23761547|220065.32441733|112.85276057|33471|2 +638535.88818822|220061.26018737|131.90069647|33472|1 +638536.32014469|220060.67197886|112.63994523|33473|2 +638541.4599973|220055.9637427|112.08648953|33474|1 +638546.50569884|220051.3417223|111.5532931|33475|1 +638551.42456585|220046.90263168|117.69157257|33476|1 +638556.68070443|220042.02812637|111.16734379|33477|1 +638561.69748247|220037.44444846|111.8208773|33478|1 +638566.16765198|220033.55502596|131.86018723|33479|1 +638566.7723095|220032.80412552|112.11541805|33480|2 +638571.84465724|220028.15179001|110.99004263|33481|1 +638575.97304357|220024.64772122|138.30017912|33482|1 +638576.88934283|220023.534258|110.81361584|33483|2 +638580.95522367|220020.10883605|140.26519799|33484|1 +638581.97491766|220018.88185372|110.88416982|33485|2 +638586.18245251|220015.27655699|135.31610413|33486|1 +638586.51584539|220014.87905395|126.07461253|33487|2 +638587.0759291|220014.21126822|110.54942679|33488|3 +638592.10135555|220009.6161617|110.97876888|33489|1 +638597.19354814|220004.95412053|110.9066243|33490|1 +638601.02142786|220001.74011605|139.9646855|33491|1 +638602.19874349|220000.36960258|110.63973773|33492|2 +638606.14222123|219997.03600108|138.30537881|33493|1 +638607.23865666|219995.76868145|111.89661237|33494|2 +638611.20750448|219992.38576763|136.96059309|33495|1 +638612.23886143|219991.201559|112.90611556|33496|2 +638616.1155818|219987.90513244|138.19971993|33497|1 +638621.33551282|219983.0913731|134.64618089|33498|1 +638626.91802726|219977.86075098|122.58576734|33499|1 +638619.35575084|219981.90340833|130.32727308|33500|1 +638620.23627171|219980.90798722|110.94199896|33501|2 +638613.9364809|219986.92114384|137.12758788|33502|1 +638609.03812304|219991.35833477|133.3068088|33503|1 +638610.02004428|219990.23459332|110.29319075|33504|2 +638604.58346258|219995.27073974|117.35565751|33505|1 +638604.85847852|219994.95388465|110.6940229|33506|2 +638598.57912678|220000.97079128|139.16749535|33507|1 +638599.71886618|219999.64827452|110.60271666|33508|2 +638594.60906132|220004.32031143|111.00867409|33509|1 +638589.46771844|220009.01740187|111.0307286|33510|1 +638584.33644303|220013.70284555|110.80375596|33511|1 +638579.23523729|220018.366061|111.11121688|33512|1 +638574.0470999|220023.10658385|111.20017907|33513|1 +638568.90591118|220027.80491411|111.36182534|33514|1 +638563.79057313|220032.48726184|112.30121174|33515|1 +638558.67391185|220037.15613533|111.7459608|33516|1 +638553.5075|220041.87088632|111.23200974|33517|1 +638548.20575677|220046.79611895|119.55347194|33518|1 +638548.32151052|220046.64677686|115.12009648|33519|2 +638543.27565261|220051.22446339|111.86880006|33520|1 +638537.842319|220056.31582233|124.86110277|33521|1 +638538.14314369|220055.91435103|111.9773983|33522|2 +638532.99917632|220060.62030101|112.65486528|33523|1 +638527.4443122|220065.89897622|133.41375132|33524|1 +638527.86612853|220065.3122914|112.92694224|33525|2 +638522.72728875|220070.01326216|113.57433657|33526|1 +638517.09397116|220075.46589131|144.75209588|33527|1 +638517.64739375|220074.65560278|113.73704325|33528|2 +638512.01966915|220080.09733065|144.32769303|33529|1 +638512.1095643|220079.96157352|138.8677363|33530|2 +638512.51769381|220079.34522755|114.07929281|33531|3 +638507.33760072|220084.0835346|114.68894054|33532|1 +638502.25435536|220088.73410495|115.37761616|33533|1 +638497.12842239|220093.42147169|115.84012838|33534|1 +638492.00995811|220098.09686853|115.77829948|33535|1 +638486.88467823|220102.78573464|116.45425027|33536|1 +638481.81579751|220107.41546965|116.3570095|33537|1 +638476.52601927|220112.49591664|141.62330385|33538|1 +638471.43996339|220117.14930413|142.33878719|33539|1 +638471.53376746|220116.89469609|125.1225292|33540|2 +638466.37649943|220121.7330138|138.05525404|33541|1 +638461.34809636|220126.1328773|118.29226268|33542|1 +638456.28127144|220130.76609181|118.74025484|33543|1 +638451.16806992|220135.44395944|119.41926591|33544|1 +638446.05628308|220140.11649419|119.6862548|33545|1 +638440.99304139|220144.74448737|119.93511453|33546|1 +638435.88322116|220149.41609349|120.29035867|33547|1 +638430.77544779|220154.08767384|120.8335173|33548|1 +638425.71707964|220158.71434723|121.40192095|33549|1 +638420.65758128|220163.3389344|121.65178527|33550|1 +638415.55143404|220168.00665449|121.95223265|33551|1 +638410.49414622|220172.63008697|122.29007317|33552|1 +638405.43871728|220177.25268107|122.71557363|33553|1 +638400.33873113|220181.91754007|123.29825551|33554|1 +638395.33602211|220186.49354015|123.88578361|33555|1 +638390.27933382|220191.11435513|124.01182268|33556|1 +638385.2256051|220195.7340614|124.30049401|33557|1 +638380.22063753|220200.30949756|124.619331|33558|1 +638375.17260625|220204.92626718|125.13941192|33559|1 +638370.1260174|220209.54190215|125.67836615|33560|1 +638365.13018494|220214.11199215|126.30333391|33561|1 +638360.07606975|220218.73065717|126.4488602|33562|1 +638355.07163775|220223.3046954|126.67393528|33563|1 +638350.06609724|220227.87932001|126.8552083|33564|1 +638345.05349785|220232.45801347|126.79280268|33565|1 +638340.04746519|220237.03308963|126.97395478|33566|1 +638335.15335159|220241.54077342|130.72134284|33567|1 +638330.11459052|220246.13463914|129.7655202|33568|1 +638325.0929361|220250.70124036|128.0265717|33569|1 +638320.08666252|220255.27120308|128.22601109|33570|1 +638315.08109271|220259.84077033|128.45035133|33571|1 +638310.12368689|220264.36647549|128.69045809|33572|1 +638305.11527337|220268.93803653|128.85213226|33573|1 +638300.15763813|220273.46401584|129.09800612|33574|1 +638295.14873159|220278.03608956|129.26570785|33575|1 +638290.19023832|220282.56279549|129.50487512|33576|1 +638285.22583227|220287.09368502|129.61894281|33577|1 +638280.25728709|220291.62762597|129.65787074|33578|1 +638275.3390079|220296.11632318|129.76770612|33579|1 +638270.32201194|220300.69476936|129.82860485|33580|1 +638265.40056491|220305.18605233|129.90652583|33581|1 +638260.4251404|220309.72567501|129.88203425|33582|1 +638255.4488335|220314.26616219|129.86357953|33583|1 +638255.13650178|220310.90274292|129.75196751|33584|1 +638260.15730301|220306.31125374|129.7754638|33585|1 +638265.17812718|220301.71998433|129.82394466|33586|1 +638270.19224079|220297.13374441|129.76017168|33587|1 +638275.20455076|220292.54896532|129.67768353|33588|1 +638280.21488062|220287.9657472|129.57023871|33589|1 +638285.27430653|220283.33808692|129.50924696|33590|1 +638290.28098229|220278.75771182|129.35196322|33591|1 +638295.33291714|220274.13548765|129.14771481|33592|1 +638300.33761454|220269.55666754|128.96551162|33593|1 +638305.38734474|220264.93608568|128.72408401|33594|1 +638310.43922208|220260.31414983|128.54526666|33595|1 +638315.44176954|220255.73697697|128.33193042|33596|1 +638320.49217493|220251.11613567|128.12837965|33597|1 +638325.54027912|220246.4967839|127.86257208|33598|1 +638330.62739694|220241.85362595|128.80853484|33599|1 +638335.77613767|220237.17473454|131.85968494|33600|1 +638335.6430665|220237.2541361|127.5438002|33601|2 +638340.67772986|220232.64266181|126.82876335|33602|1 +638345.73004421|220228.02073364|126.69476196|33603|1 +638350.79148788|220223.39388086|126.91077711|33604|1 +638355.88613107|220218.73151185|126.60044195|33605|1 +638360.93629195|220214.11099444|126.41086244|33606|1 +638365.98210437|220209.49255499|126.02777808|33607|1 +638371.07180099|220204.83195362|125.4372083|33608|1 +638376.06759384|220200.25736502|124.86212597|33609|1 +638381.16155697|220195.59383844|124.37204328|33610|1 +638386.21375349|220190.971325|124.17087376|33611|1 +638391.26589054|220186.34868022|123.95110069|33612|1 +638396.36514491|220181.68232945|123.66819646|33613|1 +638401.41363657|220177.05959092|123.09891844|33614|1 +638406.46322137|220172.43542239|122.48604299|33615|1 +638411.56428107|220167.76631809|122.09159186|33616|1 +638416.61983987|220163.14022817|121.84164383|33617|1 +638421.67587884|220158.51357378|121.57936164|33618|1 +638426.77913859|220153.84190523|121.12966726|33619|1 +638431.8354058|220149.21229045|120.58662025|33620|1 +638436.89358327|220144.58214839|120.16875655|33621|1 +638442.00081849|220139.90775889|119.81383797|33622|1 +638447.06141277|220135.27705209|119.56521079|33623|1 +638452.12285127|220130.64459357|119.21679415|33624|1 +638457.23365632|220125.96455725|118.61920152|33625|1 +638462.24221885|220121.52470795|133.04461033|33626|1 +638462.29434883|220121.32752905|117.73379333|33627|2 +638467.25329832|220117.00679315|139.7144026|33628|1 +638472.3180947|220112.40118833|142.43556287|33629|1 +638472.476099|220112.00584968|116.73963807|33630|2 +638477.33884795|220107.82205159|143.74362518|33631|1 +638477.54372807|220107.36857812|116.47997898|33632|2 +638482.6122619|220102.73059898|116.23305402|33633|1 +638487.53282534|220098.36981746|130.526359|33634|1 +638487.68488435|220098.08595202|115.68642583|33635|2 +638492.73992884|220093.47371601|116.81455458|33636|1 +638497.8570494|220088.79198652|116.63854636|33637|1 +638502.95250979|220084.11292052|114.70576745|33638|1 +638507.60960891|220080.11019023|141.01731172|33639|1 +638508.0303481|220079.46447475|114.26024026|33640|2 +638512.60096211|220075.57026689|143.59414564|33641|1 +638513.10617989|220074.81999489|114.03362108|33642|2 +638518.2112852|220070.15918096|114.87747824|33643|1 +638523.26954946|220065.51630507|113.16891865|33644|1 +638527.87783675|220061.53824501|137.44771782|33645|1 +638528.40348756|220060.81590876|112.65810229|33646|2 +638532.83091009|220057.04687526|141.41757646|33647|1 +638533.49684733|220056.15034247|111.91436016|33648|2 +638538.52757012|220051.5491496|111.89908664|33649|1 +638543.64877108|220046.86758225|112.12643136|33650|1 +638548.12797846|220042.99011974|134.63007951|33651|1 +638548.75672602|220042.18550452|111.0589688|33652|2 +638553.76851899|220037.60939798|111.8433597|33653|1 +638558.7172944|220033.1272458|116.35773503|33654|1 +638558.84282924|220032.97085598|112.08754063|33655|2 +638563.91733038|220028.33213611|112.33195411|33656|1 +638567.99903233|220024.88777963|141.99751432|33657|1 +638568.98249367|220023.69030863|111.38115443|33658|2 +638574.07917543|220019.02546666|111.02687767|33659|1 +638578.21434765|220015.49562507|136.94270577|33660|1 +638579.11119835|220014.42494005|111.20617871|33661|2 +638583.34895488|220010.76441831|133.33797905|33662|1 +638583.70183269|220010.34684941|123.59102892|33663|2 +638584.16269871|220009.80149537|110.86133395|33664|3 +638588.58112522|220005.93228688|128.68951861|33665|1 +638589.24434769|220005.15399488|111.03828165|33666|2 +638594.23005134|220000.59406025|111.2265403|33667|1 +638599.33042469|219995.92490729|110.96716957|33668|1 +638603.25636517|219992.59334136|137.79903661|33669|1 +638604.38787111|219991.29424118|110.62925463|33670|2 +638608.26973511|219988.00505187|137.67640199|33671|1 +638613.43234347|219983.24788908|134.22386164|33672|1 +638619.43878941|219977.53154044|111.4951663|33673|1 +638609.80916556|219982.82642425|136.673717|33674|1 +638600.09066095|219991.61666105|126.86484494|33675|1 +638600.74856884|219990.8592029|110.85287864|33676|2 +638595.64371401|219995.52925646|111.11692817|33677|1 +638590.55004491|220000.18672345|111.1380618|33678|1 +638584.60305382|220005.83677816|132.97603763|33679|1 +638584.8201014|220005.58117799|127.10449591|33680|2 +638585.41288969|220004.88309693|111.06850312|33681|3 +638579.83117577|220010.10777686|123.5176007|33682|1 +638580.26862605|220009.58816971|111.22414974|33683|2 +638574.72548936|220014.78542591|124.48360878|33684|1 +638575.13697037|220014.29218048|112.45727694|33685|2 +638569.15108698|220020.03154498|139.83060969|33686|1 +638570.09188722|220018.89269429|111.18809606|33687|2 +638563.99885222|220024.75976834|141.61964825|33688|1 +638564.9129386|220023.64141248|112.56869362|33689|2 +638559.78887579|220028.32374642|112.28329651|33690|1 +638554.71099265|220032.96448389|112.06376529|33691|1 +638548.66010836|220038.80713649|143.95679399|33692|1 +638548.86345727|220038.5488476|136.51421014|33693|2 +638549.53765022|220037.69250376|111.83882973|33694|3 +638544.40849162|220042.38159677|111.76719675|33695|1 +638539.3224186|220047.03343403|111.9172251|33696|1 +638533.59530617|220052.52042069|137.68913612|33697|1 +638534.19153776|220051.72546059|111.98390954|33698|2 +638528.38453961|220057.3372437|143.08564542|33699|1 +638523.52171525|220061.67792178|132.21858468|33700|1 +638523.92263914|220061.12074432|112.59978016|33701|2 +638518.69129598|220065.93318199|115.60176106|33702|1 +638513.18985558|220071.172286|137.10984939|33703|1 +638513.61181431|220070.55447347|113.2220783|33704|2 +638508.05943885|220075.914874|142.43002832|33705|1 +638503.34604671|220079.95262493|114.42348644|33706|1 +638498.21728112|220084.64734473|114.96253368|33707|1 +638493.12430096|220089.32050379|116.65323387|33708|1 +638487.97092425|220094.02180564|115.5485642|33709|1 +638482.84609821|220098.71416842|116.21410631|33710|1 +638477.57399395|220103.77961833|141.45767642|33711|1 +638477.77687733|220103.34889277|116.18143847|33712|2 +638472.60589155|220108.0860993|117.11556006|33713|1 +638467.35935118|220113.12524073|142.06045944|33714|1 +638467.48866684|220112.7684486|117.46390229|33715|2 +638462.33474533|220117.69783975|139.82967021|33716|1 +638457.26208848|220122.12852265|118.42452464|33717|1 +638452.14807289|220126.81069445|119.05547344|33718|1 +638447.08365083|220131.44526876|119.45605444|33719|1 +638441.97248122|220136.12128284|119.71908077|33720|1 +638436.81421672|220140.83984408|119.92613831|33721|1 +638431.75299737|220145.47169849|120.34645769|33722|1 +638426.64611467|220150.14685074|120.92328875|33723|1 +638421.54067577|220154.82051063|121.48181391|33724|1 +638416.43391084|220159.49218481|121.70954|33725|1 +638411.32775132|220164.1633748|121.94393547|33726|1 +638406.22374085|220168.83400325|122.32250846|33727|1 +638401.16927068|220173.46003974|122.77580263|33728|1 +638396.07037724|220178.12818507|123.38006463|33729|1 +638390.97110566|220182.79535319|123.84722775|33730|1 +638385.91551724|220187.41965466|124.01383187|33731|1 +638380.81320883|220192.0871412|124.22550309|33732|1 +638375.71554311|220196.75256723|124.66254705|33733|1 +638370.66794991|220201.37290798|125.17355875|33734|1 +638365.57425747|220206.03568707|125.71124793|33735|1 +638360.48279579|220210.69691886|126.29930624|33736|1 +638355.47637212|220215.27591448|126.42815444|33737|1 +638350.38077354|220219.93883082|126.79810469|33738|1 +638345.31891788|220224.56585225|126.64797402|33739|1 +638340.26208285|220229.19028422|126.70420326|33740|1 +638335.22648888|220233.80218134|127.47266022|33741|1 +638330.17208177|220238.4251335|127.60419664|33742|1 +638325.16498664|220243.00478467|127.73343552|33743|1 +638320.11346238|220247.62827616|127.92766591|33744|1 +638315.06399506|220252.2505391|128.18452517|33745|1 +638310.06113704|220256.82989775|128.41375815|33746|1 +638305.00783466|220261.45477409|128.57722756|33747|1 +638300.00573902|220266.03374507|128.83769591|33748|1 +638294.99960729|220270.61550698|129.00450466|33749|1 +638289.99462226|220275.19658567|129.20872517|33750|1 +638284.9884287|220279.77859265|129.39419329|33751|1 +638279.97666577|220284.36461363|129.46732385|33752|1 +638275.01081592|220288.90841862|129.51806504|33753|1 +638269.99888211|220293.49490484|129.62228214|33754|1 +638264.98615882|220298.08211785|129.72650855|33755|1 +638260.01671528|220302.62903898|129.75811599|33756|1 +638255.04069898|220307.1809523|129.68349714|33757|1 +638253.53813586|220304.93482743|129.57062938|33758|1 +638258.5104637|220300.37709661|129.6827716|33759|1 +638263.57034999|220295.73793761|129.66217746|33760|1 +638268.62526416|220291.1025358|129.56073229|33761|1 +638273.58331211|220286.55568146|129.44813429|33762|1 +638278.6386311|220281.92031952|129.3906121|33763|1 +638283.69226136|220277.28632244|129.31459798|33764|1 +638288.69272522|220272.69992704|129.12977169|33765|1 +638293.73905025|220268.07121664|128.91051952|33766|1 +638298.78729291|220263.44128907|128.74763611|33767|1 +638303.78676659|220258.85583989|128.56918153|33768|1 +638308.83301559|220254.22741824|128.37535111|33769|1 +638313.87584586|220249.60127963|128.09429794|33770|1 +638318.921884|220244.97310542|127.90708108|33771|1 +638328.96366958|220235.76218322|127.4730974|33772|1 +638334.06323867|220231.08702959|127.49643556|33773|1 +638339.09220295|220226.46908104|126.75401427|33774|1 +638344.0885696|220221.88575102|126.50719164|33775|1 +638349.1917864|220217.2088177|126.69385038|33776|1 +638354.23371621|220212.583095|126.37665981|33777|1 +638359.27893942|220207.95556153|126.18458743|33778|1 +638364.31354875|220203.33307476|125.5115853|33779|1 +638369.39981225|220198.66451029|124.9622782|33780|1 +638374.44254031|220194.03730294|124.57084084|33781|1 +638379.53284495|220189.3661145|124.13466194|33782|1 +638384.58049914|220184.73638421|123.94987285|33783|1 +638389.62826028|220180.10649504|123.7590004|33784|1 +638394.72046794|220175.43349102|123.31752879|33785|1 +638399.81174013|220170.75964465|122.70148144|33786|1 +638404.85917711|220166.12785784|122.28635246|33787|1 +638409.95675417|220161.45161672|122.02095417|33788|1 +638415.00680364|220156.81839687|121.70629368|33789|1 +638420.0577915|220152.18455462|121.4168131|33790|1 +638425.15618857|220147.50555743|120.94618972|33791|1 +638430.25549998|220142.82492742|120.39475251|33792|1 +638435.30873626|220138.18689274|119.8873127|33793|1 +638440.41170307|220133.50678982|119.73658671|33794|1 +638445.46739503|220128.86867769|119.45464057|33795|1 +638450.5240707|220124.22874601|119.07916506|33796|1 +638455.59711265|220119.69904794|131.62204315|33797|1 +638455.63072371|220119.53901836|118.28581655|33798|2 +638460.5929776|220115.21551131|141.63929361|33799|1 +638460.61286939|220115.14763124|136.51487987|33800|2 +638465.71318063|220110.34720881|123.70393388|33801|1 +638465.74720976|220110.25317982|117.2173401|33802|2 +638470.85373889|220105.5725744|117.35624353|33803|1 +638475.9183995|220100.92301182|116.74460522|33804|1 +638480.97522816|220096.29079106|117.18296073|33805|1 +638486.05109712|220091.62313781|115.76574208|33806|1 +638491.09997252|220087.00528104|116.93555208|33807|1 +638496.18975609|220082.31845815|114.85663296|33808|1 +638501.09186654|220077.96151922|129.07954209|33809|1 +638501.27996568|220077.66628544|116.39089587|33810|2 +638505.92005173|220073.63645866|139.61195283|33811|1 +638511.02525503|220068.91539736|135.45882128|33812|1 +638511.41283796|220068.34631333|113.36378156|33813|2 +638516.45732412|220063.73353625|114.64698022|33814|1 +638521.18284492|220059.56395091|131.52048636|33815|1 +638521.56816198|220059.02687077|112.51364571|33816|2 +638525.98553156|220055.26877544|142.72722938|33817|1 +638531.22073949|220050.40272502|135.8987674|33818|1 +638531.68202372|220049.78605099|115.85774595|33819|2 +638531.76755345|220049.6717094|112.1418258|33820|3 +638536.79416001|220045.06222128|112.08067592|33821|1 +638541.17524305|220041.30539106|138.99780304|33822|1 +638541.86821279|220040.4098153|112.0722113|33823|2 +638546.07813565|220036.8580598|143.97633702|33824|1 +638551.39927061|220031.88095665|133.81411839|33825|1 +638552.01444872|220031.1081557|112.20592434|33826|2 +638557.08628764|220026.45921206|112.34808339|33827|1 +638561.4196075|220022.71613685|136.17361629|33828|1 +638562.15549249|220021.81364976|112.59038536|33829|2 +638566.26059088|220018.32378051|140.97962092|33830|1 +638572.0717226|220012.77595103|118.23367079|33831|1 +638572.30272544|220012.49840635|111.42464953|33832|2 +638577.33838091|220007.88040844|111.3459379|33833|1 +638581.82297765|220003.92636692|127.65051018|33834|1 +638582.42007404|220003.2216449|111.35829996|33835|2 +638587.38985351|219998.68598787|113.11412188|33836|1 +638592.39941111|219994.10318946|113.76542297|33837|1 +638597.54240905|219989.36626566|111.12309524|33838|1 +638602.33284885|219985.03530296|117.05745186|33839|1 +638602.57585435|219984.75680814|111.28190447|33840|2 +638606.68532567|219981.19974866|132.73169857|33841|1 +638605.31185934|219978.90449492|126.27314964|33842|1 +638605.94202086|219978.18776991|111.75484399|33843|2 +638600.89802725|219982.79884715|111.71488356|33844|1 +638595.66338613|219987.61849616|115.20789594|33845|1 +638595.81892806|219987.43927228|111.38409379|33846|2 +638590.44868083|219992.4293777|119.68535253|33847|1 +638590.64737611|219992.19880588|114.63212528|33848|2 +638585.63188268|219996.76624172|112.76728655|33849|1 +638580.57403458|220001.38255361|111.95065569|33850|1 +638575.38601572|220006.15332516|114.79737134|33851|1 +638570.22179615|220010.9116601|118.61572266|33852|1 +638565.18868067|220015.50030743|117.27590408|33853|1 +638565.37139512|220015.2788647|111.65210587|33854|2 +638559.40433318|220021.00837434|139.987726|33855|1 +638560.22201334|220020.00671714|113.71387252|33856|2 +638555.17948163|220024.60429391|112.40514979|33857|1 +638550.05257565|220029.29058859|112.28604984|33858|1 +638544.16147117|220034.98329509|144.01692068|33859|1 +638545.01443682|220033.89830936|112.44778913|33860|2 +638539.24708669|220039.41209258|137.36321118|33861|1 +638539.37884892|220039.24195961|132.22409133|33862|2 +638539.89501262|220038.57548277|112.09218222|33863|3 +638534.81186362|220043.22398801|112.20795213|33864|1 +638529.72390754|220047.87936921|112.58007899|33865|1 +638524.0206052|220053.35284863|139.39459822|33866|1 +638519.41553537|220057.35431696|117.77653499|33867|1 +638514.42842209|220061.87142622|113.3776226|33868|1 +638509.05381793|220066.92485751|127.82329998|33869|1 +638509.27792682|220066.59570812|114.9547388|33870|2 +638503.83911079|220071.76012078|134.81810562|33871|1 +638504.14477204|220071.2966549|115.75785417|33872|2 +638499.09953886|220075.89257406|114.01424548|33873|1 +638493.9685843|220080.59134568|114.79947354|33874|1 +638488.80996833|220085.33995862|118.12822586|33875|1 +638483.75895802|220089.94414064|116.69156649|33876|1 +638478.6423113|220094.62346834|116.81592194|33877|1 +638473.51999366|220099.31588555|117.75933601|33878|1 +638468.40525471|220103.99438608|117.97837424|33879|1 +638463.28738746|220108.68347305|118.99776522|33880|1 +638458.18091335|220113.34021618|117.74289047|33881|1 +638453.07005888|220118.22626601|139.86818887|33882|1 +638448.00697908|220122.65402984|118.97210162|33883|1 +638442.89626631|220127.33166885|119.48074135|33884|1 +638437.83435359|220131.96228567|119.74635358|33885|1 +638432.72518709|220136.63515091|119.90576742|33886|1 +638427.6177433|220141.30904345|120.33435607|33887|1 +638422.56002348|220145.93873815|120.90077845|33888|1 +638417.45626703|220150.61077966|121.48634388|33889|1 +638412.39817986|220155.2370326|121.65952435|33890|1 +638407.34129298|220159.86297725|121.91412327|33891|1 +638402.23792931|220164.53203194|122.22573278|33892|1 +638397.1368688|220169.20019723|122.66273954|33893|1 +638392.0860893|220173.82328597|123.19932181|33894|1 +638387.03600339|220178.44526072|123.68606517|33895|1 +638381.93457378|220183.1115624|123.89283436|33896|1 +638376.88095961|220187.73401733|124.0925807|33897|1 +638371.83246973|220192.35419764|124.54244252|33898|1 +638366.73693364|220197.01735487|124.98137474|33899|1 +638361.69166379|220201.63526573|125.50038596|33900|1 +638356.64989929|220206.25099861|126.12574439|33901|1 +638351.55233381|220210.91423843|126.378176|33902|1 +638346.53960994|220215.49590014|126.22741281|33903|1 +638341.44287579|220220.15875772|126.51790728|33904|1 +638336.39818311|220224.77533538|126.95034687|33905|1 +638331.35368287|220229.3916238|127.3704337|33906|1 +638326.29791076|220234.01468216|127.42218878|33907|1 +638321.24592637|220238.63566712|127.61154504|33908|1 +638316.1940437|220243.25704217|127.83236921|33909|1 +638311.14337232|220247.87767772|128.09082837|33910|1 +638306.13695302|220252.45692813|128.25921843|33911|1 +638301.08573999|220257.07801472|128.51169655|33912|1 +638296.03136075|220261.70128169|128.6894535|33913|1 +638291.07227857|220266.23735459|128.87347984|33914|1 +638286.01923144|220270.85990236|129.10134546|33915|1 +638281.00984707|220275.44165502|129.24484396|33916|1 +638275.99589874|220280.02675435|129.30095228|33917|1 +638270.98050961|220284.61305893|129.34459621|33918|1 +638265.97142772|220289.19503947|129.53798945|33919|1 +638260.95219183|220293.78445349|129.53798945|33920|1 +638255.93471376|220298.37281065|129.59417218|33921|1 +638255.88183259|220295.23440662|129.5309108|33922|1 +638260.84731635|220290.68277612|129.51920916|33923|1 +638265.9035772|220286.04725114|129.43111204|33924|1 +638270.95840876|220281.41291355|129.33078308|33925|1 +638275.9178788|220276.86612137|129.25023899|33926|1 +638280.97170718|220272.23281198|129.16261626|33927|1 +638286.02002044|220267.60348184|128.96287921|33928|1 +638291.01957692|220263.01866699|128.74778494|33929|1 +638296.06911476|220258.3886839|128.59825888|33930|1 +638301.11673871|220253.76009198|128.41147921|33931|1 +638306.11574188|220249.17588899|128.20898884|33932|1 +638311.16162982|220244.54858371|127.99124356|33933|1 +638316.20476152|220239.92308394|127.6987585|33934|1 +638321.2512319|220235.29547662|127.50636055|33935|1 +638326.29869565|220230.66731316|127.3516069|33936|1 +638331.30093764|220226.08142961|127.28670841|33937|1 +638336.33754145|220221.4598132|126.7761618|33938|1 +638341.42785731|220216.79081372|126.45741783|33939|1 +638346.4222533|220212.20936383|126.10532699|33940|1 +638351.47781403|220207.57691998|126.28242351|33941|1 +638356.52144203|220202.95093893|125.99114769|33942|1 +638361.55673705|220198.32883774|125.30641602|33943|1 +638366.64586544|220193.65960328|124.85160566|33944|1 +638371.68735376|220189.03360899|124.35471407|33945|1 +638376.73262058|220184.40563813|124.01419463|33946|1 +638381.78157647|220179.77607008|123.86129203|33947|1 +638386.87508573|220175.10364794|123.49519272|33948|1 +638391.9195212|220170.47470369|122.97405139|33949|1 +638396.96560132|220165.84436863|122.46555118|33950|1 +638402.01450075|220161.21275694|122.09471726|33951|1 +638407.11320205|220156.53676116|121.85486165|33952|1 +638412.16459144|220151.90393413|121.5969792|33953|1 +638417.26449729|220147.22695054|121.37034142|33954|1 +638422.31480721|220142.59118192|120.70046469|33955|1 +638427.41549091|220137.9112238|120.23706879|33956|1 +638432.46990439|220133.27418658|119.83016259|33957|1 +638437.52584456|220128.63818824|119.67969705|33958|1 +638442.62998063|220123.95684553|119.40483886|33959|1 +638447.68745119|220119.31688419|118.9861566|33960|1 +638452.79457389|220114.62917526|118.33084645|33961|1 +638457.74428015|220110.33695084|144.0845818|33962|1 +638462.91092722|220105.34818109|117.51967574|33963|1 +638468.0221047|220100.65800463|116.99672987|33964|1 +638473.13730083|220095.96146982|116.19307499|33965|1 +638478.15735545|220091.35421542|115.61234648|33966|1 +638483.2707358|220086.66510896|115.4155302|33967|1 +638488.31555366|220082.05567558|116.99215339|33968|1 +638493.40962437|220077.36397789|114.66398387|33969|1 +638498.53463297|220072.658987|113.91860462|33970|1 +638503.56658672|220068.06702858|116.09557377|33971|1 +638508.68387265|220063.34818552|113.15016627|33972|1 +638513.75719278|220058.69581136|112.96001005|33973|1 +638518.82729682|220054.07062832|115.32072649|33974|1 +638523.96061112|220049.33663039|112.32675441|33975|1 +638534.15344436|220039.99360999|112.37585849|33976|1 +638539.18074354|220035.38478729|112.33449349|33977|1 +638543.38497097|220031.85008405|145.97793048|33978|1 +638548.64825386|220026.9480398|137.83322064|33979|1 +638549.37518017|220026.0411753|112.47917332|33980|2 +638554.44953058|220021.39027254|112.54743906|33981|1 +638559.52338837|220016.7401722|112.6534328|33982|1 +638563.7106974|220013.15941823|139.82966091|33983|1 +638564.6189335|220012.06409674|112.11680402|33984|2 +638569.58029955|220007.5489426|115.58108321|33985|1 +638574.79244872|220002.73467752|111.74367256|33986|1 +638579.87452907|219998.0745516|111.73861239|33987|1 +638584.82671276|219993.56353299|115.14674606|33988|1 +638589.55369029|219989.31085093|124.03178429|33989|1 +638594.7883203|219984.45895586|118.79516323|33990|1 +638595.07532089|219984.12948762|111.79019074|33991|2 +638600.14440708|219979.48273894|112.18557205|33992|1 +638594.84198991|219980.20010233|112.43834783|33993|1 +638589.66619997|219984.9737998|115.8422957|33994|1 +638584.34967314|219989.90211624|121.91976945|33995|1 +638584.67005275|219989.52895003|113.62202678|33996|2 +638584.74978642|219989.43607923|111.556958|33997|3 +638579.69864392|219994.06613422|111.89198938|33998|1 +638574.66716298|219998.67345294|111.73421265|33999|1 +638569.50871685|220003.41923797|113.88213235|34000|1 +638564.30890695|220008.21688445|117.48503592|34001|1 +638559.43405893|220012.63647736|112.71532682|34002|1 +638554.34866881|220017.29644091|112.89208848|34003|1 +638548.43528669|220023.00416929|143.22642781|34004|1 +638544.20313477|220026.60249328|114.21094085|34005|1 +638539.03389343|220031.37175177|117.7729352|34006|1 +638539.17049087|220031.19691897|112.59029234|34007|2 +638533.32781705|220036.86097702|145.1365848|34008|1 +638528.31605713|220041.44375415|144.29900635|34009|1 +638529.0774748|220040.43742862|112.08693601|34010|2 +638523.53697822|220045.71257436|132.94403952|34011|1 +638523.99586935|220045.09469887|112.34011177|34012|2 +638518.95913694|220049.71284472|112.80197287|34013|1 +638513.85061583|220054.40945346|114.58598847|34014|1 +638508.77292257|220059.06448136|114.97745373|34015|1 +638503.7267332|220063.67366015|113.59507023|34016|1 +638498.64410492|220068.33681831|114.36186217|34017|1 +638493.36885646|220073.34139355|132.35543241|34018|1 +638493.63124536|220072.92289973|113.75613979|34019|2 +638488.54451732|220077.59539362|115.10443228|34020|1 +638483.47386138|220082.2431191|115.40337277|34021|1 +638473.33654012|220091.53458512|115.96451174|34022|1 +638468.26556049|220096.18771809|116.79534641|34023|1 +638463.24359189|220100.79803684|117.84610298|34024|1 +638458.18131027|220105.43633948|117.95868238|34025|1 +638453.03887491|220110.38881037|143.23760855|34026|1 +638453.06118075|220110.30184202|136.28208431|34027|2 +638448.06177104|220114.71488257|118.8657265|34028|1 +638442.99673613|220119.45147357|128.99071943|34029|1 +638443.00046015|220119.37413407|121.26002235|34030|2 +638437.94230095|220123.99231909|119.66105629|34031|1 +638432.93157641|220128.58401016|119.83739937|34032|1 +638427.82586586|220133.26240974|119.97599584|34033|1 +638422.81715056|220137.85418669|120.35249454|34034|1 +638417.76354451|220142.48980391|121.01030686|34035|1 +638412.71002279|220147.12326298|121.44957395|34036|1 +638407.65559721|220151.75540695|121.66405431|34037|1 +638402.60244094|220156.38711475|121.95370233|34038|1 +638397.55008937|220161.01821309|122.25603797|34039|1 +638392.54548311|220165.60513236|122.51407855|34040|1 +638387.49826205|220170.23393253|123.06662267|34041|1 +638382.45253389|220174.86143207|123.62556642|34042|1 +638377.44924147|220179.44644967|123.80866258|34043|1 +638372.4002465|220184.07427274|124.08663687|34044|1 +638367.35354041|220188.70090166|124.45850329|34045|1 +638362.35669766|220193.28253697|124.90406768|34046|1 +638357.31614925|220197.90556426|125.48857271|34047|1 +638352.27795597|220202.52691968|126.1231957|34048|1 +638347.27783874|220207.10930889|126.33134155|34049|1 +638342.22316264|220211.73922598|126.27897255|34050|1 +638337.22364985|220216.32137189|126.51835377|34051|1 +638332.18710155|220220.94089187|127.11587198|34052|1 +638327.13655704|220225.56859794|127.22634918|34053|1 +638322.13184828|220230.15385831|127.29090351|34054|1 +638317.13177451|220234.73586734|127.51154164|34055|1 +638312.08391095|220239.36123346|127.73475637|34056|1 +638307.08484322|220243.94221182|127.99287137|34057|1 +638302.03459838|220248.56923514|128.16014521|34058|1 +638297.03424345|220253.15116815|128.39330354|34059|1 +638292.02964407|220257.73603878|128.52653288|34060|1 +638287.02686894|220262.31978082|128.71590775|34061|1 +638282.02396216|220266.90370811|128.9115055|34062|1 +638277.02146774|220271.4874388|129.12579053|34063|1 +638271.96331103|220276.12062385|129.17514575|34064|1 +638267.00231986|220280.66527921|129.27973493|34065|1 +638261.98969196|220285.25664993|129.31929538|34066|1 +638256.97919624|220289.84666471|129.42126145|34067|1 +638254.83453979|220288.34800908|129.39135624|34068|1 +638259.84122845|220283.75036736|129.2937527|34069|1 +638264.84885038|220279.15221796|129.23358881|34070|1 +638269.90197456|220274.51206145|129.14487777|34071|1 +638274.95513403|220269.87204863|129.07514235|34072|1 +638279.95561126|220265.27942159|128.90914285|34073|1 +638285.00130436|220260.64487495|128.69619728|34074|1 +638290.04815499|220256.00962057|128.52090531|34075|1 +638295.09433565|220251.37491532|128.33957648|34076|1 +638300.13872872|220246.74148733|128.12100334|34077|1 +638305.13667144|220242.15102598|127.94283711|34078|1 +638310.17925442|220237.51888859|127.68706617|34079|1 +638315.27123514|220232.84195837|127.4851525|34080|1 +638320.26726613|220228.25287617|127.26974197|34081|1 +638325.3625968|220223.57398826|127.18711429|34082|1 +638330.36157955|220218.98325354|127.08427385|34083|1 +638335.40076774|220214.35324862|126.72946689|34084|1 +638340.48574848|220209.68045607|126.29169738|34085|1 +638345.5270992|220205.0489278|125.98731535|34086|1 +638350.57686619|220200.41288584|126.02047619|34087|1 +638355.60989586|220195.78541614|125.34157673|34088|1 +638360.64844762|220191.15471704|124.85649839|34089|1 +638365.68702488|220186.52356865|124.32785054|34090|1 +638370.73130108|220181.88956735|124.04929024|34091|1 +638375.77641225|220177.25503172|123.79590055|34092|1 +638380.82159626|220172.62024489|123.52394451|34093|1 +638385.90998799|220167.94261493|122.9138503|34094|1 +638390.90654723|220163.35062639|122.45559828|34095|1 +638396.00124995|220158.66981246|122.12104129|34096|1 +638401.04999954|220154.03202913|121.88114847|34097|1 +638406.09931099|220149.39378385|121.64769249|34098|1 +638411.19719709|220144.71146254|121.46415914|34099|1 +638416.24575353|220140.07122132|120.94994764|34100|1 +638421.2950843|220135.42914257|120.3171943|34101|1 +638426.39499625|220130.74381716|120.01597487|34102|1 +638431.44825912|220126.10209473|119.80246189|34103|1 +638436.50971899|220121.54072773|128.83234739|34104|1 +638436.50207204|220121.4588|119.47665787|34105|2 +638441.59730085|220116.90097628|132.13810571|34106|1 +638446.66052316|220112.12486719|118.75126814|34107|1 +638451.63507118|220107.7781558|141.97992466|34108|1 +638456.8126846|220102.80779194|119.19572562|34109|1 +638461.87762682|220098.1421406|117.59637819|34110|1 +638466.90208241|220093.57164948|122.10247494|34111|1 +638466.94617928|220093.47447648|116.13479936|34112|2 +638472.05598604|220088.78069511|115.90570591|34113|1 +638477.11869831|220084.13038082|115.70702927|34114|1 +638482.13392585|220079.5241258|115.56338193|34115|1 +638487.24576231|220074.8290636|115.39784752|34116|1 +638492.22703077|220070.27775211|117.75974529|34117|1 +638497.35487215|220065.52807016|113.39482159|34118|1 +638502.45855343|220060.84789827|114.01134333|34119|1 +638507.35681518|220056.41253986|120.56480758|34120|1 +638507.49460069|220056.21461898|113.03757756|34121|2 +638512.53372666|220051.60169269|114.50214226|34122|1 +638517.58799072|220046.96650019|115.08610778|34123|1 +638522.00825984|220043.1612503|141.81143228|34124|1 +638522.66682153|220042.27763683|112.39521549|34125|2 +638527.73348179|220037.62714995|112.56745648|34126|1 +638531.94770353|220034.081135|146.68550731|34127|1 +638537.81530973|220028.37495236|113.07850538|34128|1 +638541.98222421|220024.85706693|145.59326482|34129|1 +638542.13500419|220024.664779|140.10512372|34130|2 +638542.88587121|220023.71974228|113.13272544|34131|3 +638547.09651203|220020.13329629|142.6545918|34132|1 +638547.80759014|220019.24969835|118.30654091|34133|2 +638547.96566885|220019.05326698|112.8937814|34134|3 +638553.00413407|220014.42311649|112.48975874|34135|1 +638557.11311417|220010.93702147|142.76220405|34136|1 +638558.06705677|220009.77809651|112.88181002|34137|2 +638562.24870314|220006.17931153|138.31126683|34138|1 +638562.9842098|220005.29467153|116.21044141|34139|2 +638568.18491827|220000.48429717|112.50234405|34140|1 +638572.97062466|219996.16700203|120.6266551|34141|1 +638573.27919016|219995.8025643|112.05890046|34142|2 +638578.13915693|219991.38559015|116.66609822|34143|1 +638582.8984039|219987.08394497|123.58072255|34144|1 +638583.12260952|219986.82329163|117.79106437|34145|2 +638583.34705706|219986.56235702|111.99516469|34146|3 +638588.4134311|219981.91711292|112.39466668|34147|1 +638593.37727044|219977.3674178|112.95469874|34148|1 +638585.51722398|219981.30577722|112.64109865|34149|1 +638580.44477746|219985.94700053|112.332968|34150|1 +638574.85424897|219991.1946043|126.03330334|34151|1 +638575.2871536|219990.6879672|114.33378011|34152|2 +638569.18158018|219996.53681512|141.78633609|34153|1 +638570.22968567|219995.29989239|112.36290112|34154|2 +638565.13568629|219999.96721039|112.72972597|34155|1 +638560.03649442|220004.64135296|113.31536582|34156|1 +638554.40963656|220009.94291956|129.21032507|34157|1 +638554.91785018|220009.32566527|113.08050526|34158|2 +638548.93900572|220015.08132918|142.98293521|34159|1 +638544.69863658|220018.68769896|113.67650728|34160|1 +638538.69481886|220024.50382759|147.58074748|34161|1 +638534.42145846|220028.12623612|116.75950666|34162|1 +638534.52185957|220027.99798148|112.90053449|34163|2 +638529.45127012|220032.63898268|112.74537156|34164|1 +638523.75071243|220038.1115115|139.65724318|34165|1 +638524.38158709|220037.27892589|112.5654752|34166|2 +638519.26187722|220041.96579632|112.49587001|34167|1 +638513.65690965|220047.34126088|138.4000895|34168|1 +638514.18133924|220046.62092941|112.87245243|34169|2 +638509.03542186|220051.3454442|114.25289186|34170|1 +638503.98770057|220055.95566688|113.0497815|34171|1 +638498.91653296|220060.59923874|113.10868965|34172|1 +638493.7824888|220065.31032498|114.21567545|34173|1 +638488.73284581|220069.95404306|116.39483982|34174|1 +638483.63283125|220074.61454345|115.43466395|34175|1 +638478.55938561|220079.26691566|116.20702765|34176|1 +638473.49769386|220083.89950107|116.01738304|34177|1 +638468.37659994|220088.59969629|117.22650235|34178|1 +638463.32128403|220093.21987215|116.33752227|34179|1 +638458.30028379|220097.8278175|117.49930485|34180|1 +638453.18925514|220102.51389182|118.18459462|34181|1 +638448.13480641|220107.14180289|118.20239822|34182|1 +638443.04755753|220111.98404202|137.85001034|34183|1 +638443.07479233|220111.7780523|118.56402338|34184|2 +638438.01555101|220116.48580644|126.61910131|34185|1 +638438.01593253|220116.41177867|118.76961125|34186|2 +638432.95846143|220121.04923163|119.5066189|34187|1 +638427.90198888|220125.68190506|119.83134391|34188|1 +638422.84595579|220130.31300983|120.03125769|34189|1 +638417.79113454|220134.94412572|120.35009468|34190|1 +638412.78745883|220139.53195999|121.05642507|34191|1 +638407.73565919|220144.16125829|121.47550731|34192|1 +638402.68231687|220148.78939701|121.61976856|34193|1 +638397.63020482|220153.41723663|121.85169905|34194|1 +638392.62675947|220158.00083591|122.12689211|34195|1 +638387.57686018|220162.62748205|122.44653835|34196|1 +638382.5789868|220167.20851282|122.99042252|34197|1 +638377.53481173|220171.83209522|123.54146906|34198|1 +638372.53407414|220176.41294138|123.78534303|34199|1 +638367.53380005|220180.99343235|124.03538408|34200|1 +638362.53499535|220185.57310938|124.34159856|34201|1 +638357.54002117|220190.15074642|124.80392475|34202|1 +638352.49885438|220194.77101094|125.29275171|34203|1 +638347.55893136|220199.30037237|125.99067329|34204|1 +638342.50802638|220203.92530106|126.02348066|34205|1 +638337.51155569|220208.50280682|126.32312809|34206|1 +638332.57144817|220213.03141088|126.92043236|34207|1 +638327.56971886|220217.61180571|127.01364546|34208|1 +638322.56801415|220222.19230667|127.11930434|34209|1 +638317.61371579|220226.72935758|127.22871183|34210|1 +638312.61431167|220231.3105226|127.42160277|34211|1 +638307.61517789|220235.89211883|127.62693018|34212|1 +638302.61676128|220240.47330296|127.85718635|34213|1 +638297.66715634|220245.01003826|128.12193351|34214|1 +638292.71206134|220249.55052176|128.24905159|34215|1 +638287.7129623|220254.13234943|128.47890779|34216|1 +638282.75748267|220258.67331326|128.61807166|34217|1 +638277.75661776|220263.25653396|128.82276656|34218|1 +638272.80066908|220267.7980557|128.97400414|34219|1 +638267.84328578|220272.3407177|129.1062661|34220|1 +638262.882887|220276.88568508|129.18835428|34221|1 +638257.87109388|220281.47725636|129.21167383|34222|1 +638252.95490866|220285.98134095|129.25828503|34223|1 +638252.53064138|220283.42989424|129.18504284|34224|1 +638257.5882002|220278.7819177|129.17215058|34225|1 +638262.59510739|220274.18005001|129.11956764|34226|1 +638267.64550271|220269.53760753|128.99478431|34227|1 +638272.69630685|220264.89501123|128.89519949|34228|1 +638277.69563348|220260.29900554|128.72431656|34229|1 +638282.74071049|220255.66068157|128.51897984|34230|1 +638287.7859162|220251.02235321|128.32634005|34231|1 +638292.7856215|220246.42639078|128.1993336|34232|1 +638297.82979407|220241.78894871|128.00074997|34233|1 +638302.87367897|220237.15177691|127.80238029|34234|1 +638307.91297835|220232.51765423|127.47930169|34235|1 +638312.95801427|220227.87981843|127.32504103|34236|1 +638318.05010874|220223.19871579|127.16232505|34237|1 +638323.04662929|220218.60531369|126.99835334|34238|1 +638328.1395377|220213.92386671|126.88000684|34239|1 +638333.18665928|220209.28514983|126.83907902|34240|1 +638338.21527695|220204.65712677|126.11744721|34241|1 +638343.26036658|220200.01952468|125.99567765|34242|1 +638348.34988562|220195.33997044|125.74747835|34243|1 +638353.37957152|220190.71021066|124.94518153|34244|1 +638358.41729267|220186.07584486|124.44294142|34245|1 +638363.50713237|220181.39530559|124.12073718|34246|1 +638368.55134472|220176.75740417|123.88138387|34247|1 +638373.64326491|220172.07558604|123.628636|34248|1 +638378.68658847|220167.43757372|123.28977229|34249|1 +638383.72489391|220162.80046906|122.55114613|34250|1 +638388.81770352|220158.11691302|122.19942736|34251|1 +638393.86575424|220153.47593935|122.01119661|34252|1 +638398.91357676|220148.83465355|121.76691336|34253|1 +638404.00946477|220144.14914131|121.50997969|34254|1 +638409.05816237|220139.50676108|121.23495407|34255|1 +638414.15252285|220134.81831438|120.51002942|34256|1 +638419.20276963|220130.17358955|120.1355306|34257|1 +638424.30252726|220125.48579207|120.01759338|34258|1 +638434.46608769|220116.3575606|142.9750566|34259|1 +638439.50768732|220111.51933696|120.80913735|34260|1 +638444.5647551|220106.85066898|118.52356066|34261|1 +638449.66510905|220102.15677737|117.80750991|34262|1 +638454.7241942|220097.50155992|117.17862611|34263|1 +638459.78495382|220092.84521254|116.59373971|34264|1 +638464.8925918|220088.14908434|116.36013489|34265|1 +638469.90881147|220083.53371798|115.78716407|34266|1 +638475.01537905|220078.84162926|115.88544664|34267|1 +638480.07951068|220074.18443569|115.54537369|34268|1 +638485.12485196|220069.5585809|116.73003864|34269|1 +638490.22538141|220064.84527835|113.93510597|34270|1 +638495.34862935|220060.13037615|113.22285965|34271|1 +638500.36941581|220055.51449898|113.05078609|34272|1 +638505.42755221|220050.87002227|113.49296463|34273|1 +638510.16120157|220046.69485049|132.48255049|34274|1 +638510.54758801|220046.1619383|113.20046097|34275|2 +638515.2058433|220042.03656354|130.09244043|34276|1 +638515.5785954|220041.5333243|112.66656691|34277|2 +638519.91873931|220037.83979684|144.6862672|34278|1 +638520.65150846|220036.86950706|112.48493112|34279|2 +638525.70903257|220032.22616509|112.99052918|34280|1 +638529.97399835|220028.58033087|142.70550973|34281|1 +638530.68632237|220027.6679847|114.74257458|34282|2 +638534.90778919|220024.07899858|146.28742849|34283|1 +638535.78678467|220022.96940859|113.53749224|34284|2 +638539.95128839|220019.43805581|145.66082362|34285|1 +638540.85662978|220018.31030754|113.56285818|34286|2 +638545.89109336|220013.68001749|113.19217309|34287|1 +638549.97904041|220010.216341|145.03582796|34288|1 +638555.05432174|220005.5254704|142.16583926|34289|1 +638555.99101412|220004.39740572|113.14727341|34290|2 +638560.99103094|219999.82264447|115.36428671|34291|1 +638565.11587523|219996.26839179|141.07393164|34292|1 +638566.10971409|219995.09363059|112.67875224|34293|2 +638570.26705053|219991.49360889|136.66388502|34294|1 +638570.61708992|219991.08329114|127.03545812|34295|2 +638571.1368194|219990.47406182|112.73944633|34296|3 +638575.83029972|219986.23802382|121.61029005|34297|1 +638576.15993144|219985.85462781|112.86885264|34298|2 +638580.24018302|219982.32365936|137.14855408|34299|1 +638581.07658723|219981.35791764|115.73712981|34300|2 +638585.46240157|219977.4684206|131.57381344|34301|1 +638580.2239368|219978.38355028|144.47926547|34302|1 +638575.56367197|219982.55648899|133.37243283|34303|1 +638575.86764839|219982.20333863|125.41124704|34304|2 +638576.33290498|219981.66281793|113.22614318|34305|3 +638570.19902319|219987.54673478|140.60259202|34306|1 +638571.22368925|219986.34697335|112.76040323|34307|2 +638565.00365798|219992.34261922|143.6473518|34308|1 +638565.5326499|219991.7180388|128.71386136|34309|2 +638566.0934763|219991.05587135|112.8817356|34310|3 +638560.96313865|219995.76529859|113.04733513|34311|1 +638555.03725156|220001.43204596|137.61236856|34312|1 +638555.83119131|220000.47708096|113.30713374|34313|2 +638550.70345693|220005.1842508|113.48637897|34314|1 +638545.55996137|220009.91123982|114.2405112|34315|1 +638540.45523128|220014.59097461|113.74038258|34316|1 +638534.43379557|220020.42604916|146.98275488|34317|1 +638530.2150405|220023.98919821|113.87166786|34318|1 +638525.06716419|220028.70675522|113.17677865|34319|1 +638519.23857908|220034.36224449|146.15591997|34320|1 +638519.42763607|220034.11234059|137.94332576|34321|2 +638514.20033534|220038.95112167|142.44770169|34322|1 +638514.84475906|220038.08260168|112.65548849|34323|2 +638509.72567226|220042.78137506|112.78279261|34324|1 +638504.57833494|220047.52048737|114.45975407|34325|1 +638499.48497774|220052.18416156|113.35127067|34326|1 +638494.22160232|220057.07299066|119.67553916|34327|1 +638489.25044085|220061.58085895|113.87182599|34328|1 +638484.06741429|220066.35339443|115.61826241|34329|1 +638478.95245614|220071.05178914|116.11116355|34330|1 +638473.85002339|220075.72929112|115.59231976|34331|1 +638468.74142558|220080.4176236|115.63002916|34332|1 +638463.56964808|220085.18282198|117.69796289|34333|1 +638458.47383716|220089.84637798|116.33073198|34334|1 +638453.36364093|220094.54304833|117.10734659|34335|1 +638448.25606905|220099.23673385|117.82195557|34336|1 +638443.15678239|220103.91754269|117.96839343|34337|1 +638438.05033361|220108.62952555|120.76500972|34338|1 +638432.9117577|220113.54035093|141.81066953|34339|1 +638427.86666899|220118.05652408|129.57833125|34340|1 +638427.8481771|220117.97718197|119.19760458|34341|2 +638422.74893778|220122.6638316|119.97697252|34342|1 +638417.60145566|220127.38910237|120.14428357|34343|1 +638412.55079402|220132.02710198|120.48704473|34344|1 +638407.45535088|220136.70871829|121.0989621|34345|1 +638402.35958518|220141.38855206|121.48630667|34346|1 +638397.26291042|220146.06748835|121.68659252|34347|1 +638392.21357806|220150.70237609|121.824203|34348|1 +638387.11922181|220155.38035534|122.15019306|34349|1 +638382.0260576|220160.05741879|122.49534477|34350|1 +638376.98519105|220164.68872087|123.08366353|34351|1 +638371.94281418|220169.31984945|123.50341549|34352|1 +638366.85185686|220173.99467375|123.82453141|34353|1 +638361.80879536|220178.6253962|124.13225278|34354|1 +638356.76515487|220183.25619313|124.39015383|34355|1 +638351.72767441|220187.88377035|124.91063473|34356|1 +638346.69665204|220192.50756376|125.66241361|34357|1 +638341.65452277|220197.13686983|125.90828746|34358|1 +638336.6148672|220201.76471762|126.24177475|34359|1 +638331.62609014|220206.34681899|126.67960006|34360|1 +638326.57926696|220210.97870934|126.7384524|34361|1 +638321.58259941|220215.56545738|126.89516873|34362|1 +638316.58671075|220220.15178203|127.08304601|34363|1 +638311.5414079|220224.78274701|127.22341912|34364|1 +638306.54509007|220229.3649667|127.42998367|34365|1 +638301.54791773|220233.94780054|127.61774933|34366|1 +638296.55303737|220238.52916444|127.87412489|34367|1 +638291.55442744|220243.11309315|128.03681296|34368|1 +638286.55616502|220247.69687944|128.21816969|34369|1 +638281.65258089|220252.19367377|128.39306169|34370|1 +638276.65457429|220256.77745591|128.59905883|34371|1 +638271.65426241|220261.36295798|128.76132832|34372|1 +638266.69895692|220265.90669962|128.87631688|34373|1 +638261.7406288|220270.45275054|128.94114096|34374|1 +638256.78533822|220274.99677002|129.08682539|34375|1 +638255.4760888|220271.95636338|129.01048571|34376|1 +638260.47513222|220267.36047218|128.86848479|34377|1 +638265.52385129|220262.71949815|128.7853176|34378|1 +638270.52315748|220258.12370851|128.68084935|34379|1 +638275.56769397|220253.4859811|128.53561142|34380|1 +638280.60653127|220248.85230704|128.26573898|34381|1 +638285.65015151|220244.21541549|128.12090102|34382|1 +638290.64334913|220239.62427949|127.91679214|34383|1 +638295.73178279|220234.94571628|127.71945495|34384|1 +638300.72597407|220230.35407142|127.55918534|34385|1 +638305.7652132|220225.72042429|127.3338219|34386|1 +638310.85453679|220221.04150874|127.18735613|34387|1 +638315.89520685|220216.40707347|127.01867772|34388|1 +638320.93414269|220211.7737556|126.8002162|34389|1 +638325.97483094|220207.13941506|126.64439284|34390|1 +638331.01722081|220202.50415581|126.55745844|34391|1 +638336.09670106|220197.83115297|126.08150514|34392|1 +638341.13572011|220193.19774861|125.86383427|34393|1 +638346.17292103|220188.56524591|125.56511702|34394|1 +638351.24784453|220183.8937148|124.80266901|34395|1 +638356.28380687|220179.2611676|124.37939168|34396|1 +638361.32172157|220174.62741253|124.01876181|34397|1 +638366.40963197|220169.94865751|123.75709353|34398|1 +638371.45001352|220165.31339487|123.47812396|34399|1 +638376.48477231|220160.67952927|122.79937333|34400|1 +638381.57140419|220155.99982543|122.31370898|34401|1 +638386.66313834|220151.3182584|122.12839899|34402|1 +638391.70569508|220146.68016384|121.76281127|34403|1 +638396.79901915|220141.99766287|121.63445606|34404|1 +638401.89199101|220137.31483727|121.43777|34405|1 +638406.93515884|220132.67423476|120.86672464|34406|1 +638412.02823411|220127.98907472|120.43326186|34407|1 +638417.07567417|220123.34772129|120.20017795|34408|1 +638422.12325044|220118.70458991|119.79227645|34409|1 +638427.24634962|220114.15985959|137.2151548|34410|1 +638432.31996266|220109.53542431|141.33895785|34411|1 +638437.36909815|220104.6749368|117.98335069|34412|1 +638442.4422734|220100.10793798|128.16989347|34413|1 +638442.47012934|220099.98217039|117.52089427|34414|2 +638447.56474832|220095.30146584|117.71498514|34415|1 +638452.62085192|220090.64796393|117.04005754|34416|1 +638457.7074435|220085.99343619|119.23464426|34417|1 +638462.78589524|220081.29377778|115.83574725|34418|1 +638467.83996391|220076.65030808|116.03021019|34419|1 +638472.94967252|220071.94868441|115.47642893|34420|1 +638478.01250978|220067.29092609|115.00912628|34421|1 +638483.07992096|220062.6269686|114.32966872|34422|1 +638488.16192641|220057.9719349|116.02626623|34423|1 +638493.19197459|220053.3646677|117.72756114|34424|1 +638493.26088807|220053.26160859|113.49822014|34425|2 +638498.32920609|220048.59968986|113.12582352|34426|1 +638503.43994943|220043.90222115|113.11809374|34427|1 +638508.02107156|220039.91353347|136.76259547|34428|1 +638508.50993982|220039.23923399|112.79633599|34429|2 +638512.83777403|220035.55863754|144.46921025|34430|1 +638523.07310072|220026.09606467|138.61679298|34431|1 +638523.68608973|220025.29781435|113.5875823|34432|2 +638528.69328119|220020.69934485|113.99477687|34433|1 +638533.76654546|220016.0337467|113.71790019|34434|1 +638538.8270901|220011.38452098|113.94080796|34435|1 +638543.90598989|220006.71274479|113.55839333|34436|1 +638547.98417991|220003.26102416|145.20536214|34437|1 +638548.98210785|220002.04492802|113.32612797|34438|2 +638553.50521559|219998.01711197|127.15015833|34439|1 +638553.95693062|219997.47221573|113.31231483|34440|2 +638559.02352643|219992.81653899|113.44242808|34441|1 +638563.03660244|219989.40841523|143.37112624|34442|1 +638568.09561452|219984.72703707|140.04709923|34443|1 +638568.2896664|219984.49915972|134.7619415|34444|2 +638574.14148073|219978.92089344|113.57112746|34445|1 +638570.15743881|219977.95025897|143.64803083|34446|1 +638570.3545237|219977.7186048|138.4257531|34447|2 +638565.70076597|219981.88582911|127.68504768|34448|1 +638566.20643836|219981.28658696|113.78247312|34449|2 +638560.22948881|219987.02251993|139.48958796|34450|1 +638561.13608491|219985.93874994|113.59120999|34451|2 +638556.05614592|219990.60263007|113.69979893|34452|1 +638550.55605779|219995.77898977|126.86651926|34453|1 +638550.98372447|219995.25773516|113.61521788|34454|2 +638544.90675206|220001.13591991|144.52108626|34455|1 +638540.77740549|220004.62964423|113.98076839|34456|1 +638535.70951764|220009.28001168|113.8347398|34457|1 +638530.63973025|220013.93297969|113.77639906|34458|1 +638525.47856923|220018.68676011|115.45786258|34459|1 +638519.73938678|220024.22565515|143.37745145|34460|1 +638520.45252944|220023.28340947|113.73290396|34461|2 +638514.59221872|220028.98064638|146.5110897|34462|1 +638515.33681506|220027.97865112|113.67928852|34463|2 +638509.61626664|220033.52628309|144.27022665|34464|1 +638505.03322345|220037.49449587|119.67199518|34465|1 +638505.1634882|220037.31155769|113.13851114|34466|2 +638500.07642524|220041.9909772|114.16894333|34467|1 +638494.97643282|220046.66461979|113.37369726|34468|1 +638489.857231|220051.36668726|113.69087853|34469|1 +638484.78968883|220056.01961312|113.83533512|34470|1 +638479.49444519|220061.01559302|127.80498478|34471|1 +638479.67392551|220060.71787733|114.08467854|34472|2 +638474.54124794|220065.44662817|115.87781918|34473|1 +638469.43820299|220070.12542372|115.32217757|34474|1 +638459.20927369|220079.52883665|116.77419417|34475|1 +638454.0997079|220084.22388124|117.2759971|34476|1 +638449.0325568|220088.89381312|119.21018989|34477|1 +638443.88212919|220093.62219264|119.2746698|34478|1 +638438.83526481|220098.24096163|117.84750755|34479|1 +638433.72900762|220102.95278501|120.39464089|34480|1 +638428.59372958|220107.85560945|139.92212057|34481|1 +638423.47778452|220112.35258748|119.34673066|34482|1 +638418.42468434|220116.99454641|119.72063417|34483|1 +638413.27754961|220121.72329469|120.13221917|34484|1 +638408.22764526|220126.36396884|120.67549872|34485|1 +638403.13006738|220131.04653232|121.01920866|34486|1 +638398.03421014|220135.7284288|121.45709909|34487|1 +638392.93766644|220140.40927706|121.72043238|34488|1 +638387.84120884|220145.08963352|121.940438|34489|1 +638382.74437858|220149.76973841|122.09838216|34490|1 +638377.64911326|220154.44913783|122.33173583|34491|1 +638372.60754362|220159.0825801|122.91449212|34492|1 +638367.52056808|220163.75825492|123.5484826|34493|1 +638362.42820254|220168.43532583|123.81419714|34494|1 +638357.38442545|220173.06803817|124.11024478|34495|1 +638352.2973699|220177.74230491|124.58910023|34496|1 +638347.21362946|220182.4145633|125.17456334|34497|1 +638342.17665983|220187.04304493|125.67751039|34498|1 +638332.05165325|220196.34474358|126.4546459|34499|1 +638327.00309261|220200.97912702|126.46468252|34500|1 +638321.9101259|220205.65556045|126.60201395|34501|1 +638311.82293819|220214.91898663|127.01055727|34502|1 +638306.72976497|220219.5968344|127.1489398|34503|1 +638301.68617676|220224.23196768|127.32883615|34504|1 +638296.64210209|220228.86749325|127.50269565|34505|1 +638291.59606848|220233.50440077|127.63304145|34506|1 +638286.55201117|220238.14010303|127.8260347|34507|1 +638281.50712248|220242.77645428|128.00674962|34508|1 +638276.46288247|220247.41245661|128.21263514|34509|1 +638271.46740545|220252.00397711|128.45282561|34510|1 +638266.46524666|220256.60025616|128.54945246|34511|1 +638261.41629011|220261.23988292|128.68086796|34512|1 +638256.41240527|220265.83769561|128.77138354|34513|1 +638253.33679983|220265.48109002|128.76530948|34514|1 +638258.33309664|220260.87872828|128.639196|34515|1 +638263.37703523|220256.23270054|128.52827232|34516|1 +638268.37384905|220251.63027573|128.44595159|34517|1 +638273.40925114|220246.99047956|128.16684249|34518|1 +638278.40332768|220242.39019385|128.04714723|34519|1 +638283.3928811|220237.79311205|127.82754159|34520|1 +638288.43229072|220233.15081549|127.6736344|34521|1 +638293.46966893|220228.50996561|127.4762414|34522|1 +638298.50787984|220223.86864468|127.3102512|34523|1 +638303.54767969|220219.22639617|127.20065767|34524|1 +638308.58581274|220214.58531859|127.05379192|34525|1 +638313.62480946|220209.94379642|126.94458907|34526|1 +638318.65819721|220205.30576145|126.66069885|34527|1 +638323.6947538|220200.66582371|126.48314655|34528|1 +638328.73322722|220196.02483126|126.38074329|34529|1 +638333.76172271|220191.38943173|125.90370169|34530|1 +638338.8038316|220186.74652707|125.95158723|34531|1 +638343.83490651|220182.10946424|125.54983421|34532|1 +638348.90831724|220177.430887|124.87806921|34533|1 +638353.89030267|220172.83747354|124.3218881|34534|1 +638358.97103123|220168.15449063|123.89433194|34535|1 +638364.00719997|220163.51368393|123.59327995|34536|1 +638369.04202279|220158.87303027|123.17990901|34537|1 +638374.1218143|220154.18881437|122.53459827|34538|1 +638379.15958608|220149.54610419|122.19041394|34539|1 +638384.19881382|220144.90235009|121.8776324|34540|1 +638389.28831702|220140.21409236|121.74574251|34541|1 +638394.32917768|220135.5693134|121.48344172|34542|1 +638399.37113118|220130.92411365|121.2838163|34543|1 +638404.45939116|220126.23382894|120.82172265|34544|1 +638409.54856584|220121.54216335|120.30379974|34545|1 +638414.59205761|220116.89380613|119.92372915|34546|1 +638419.63645293|220112.24408114|119.48760607|34547|1 +638424.73011431|220107.55199012|119.35822766|34548|1 +638429.77456169|220103.08967379|138.51505015|34549|1 +638429.7760948|220102.9476222|123.81603889|34550|2 +638429.77662346|220102.89864082|118.74762185|34551|3 +638434.87275317|220098.19847086|118.01280011|34552|1 +638440.44635211|220093.06387083|117.75394098|34553|1 +638444.99501959|220088.9159447|122.13050119|34554|1 +638450.09525284|220084.20242835|120.39696633|34555|1 +638455.21077894|220079.46073901|117.18921153|34556|1 +638460.26830449|220074.79466598|116.31170985|34557|1 +638465.33072981|220070.16902705|120.12836824|34558|1 +638465.37636147|220070.08203315|115.42325067|34559|2 +638470.47635956|220065.38619434|115.51628704|34560|1 +638475.54232707|220060.71121458|114.52111789|34561|1 +638480.65250904|220056.00020715|114.00897138|34562|1 +638485.53494491|220051.61336577|125.4843776|34563|1 +638485.71552169|220051.33338687|113.58304304|34564|2 +638490.75550353|220046.70203507|114.65044978|34565|1 +638495.88510765|220041.96461152|113.24626292|34566|1 +638500.99396389|220037.25876037|113.14821289|34567|1 +638505.47319865|220033.38006606|138.97327426|34568|1 +638505.99458393|220032.65872442|113.70824495|34569|2 +638511.0944183|220027.96547659|114.06059624|34570|1 +638515.95997208|220023.56393516|122.37970509|34571|1 +638516.15501039|220023.30469457|114.03619768|34572|2 +638521.21436245|220018.64582246|114.09323617|34573|1 +638526.31321037|220013.95390124|114.49044063|34574|1 +638531.39337767|220009.26888805|113.81755942|34575|1 +638536.44989549|220004.61435437|114.05656857|34576|1 +638540.61836252|220001.07307543|145.26870724|34577|1 +638541.57129564|219999.89480564|113.73706185|34578|2 +638546.61992201|219995.25027473|114.26384935|34579|1 +638550.65551088|219991.81781173|144.07893562|34580|1 +638551.64251897|219990.62318088|114.11341172|34581|2 +638556.75375605|219985.9169197|114.20710852|34582|1 +638561.28150262|219981.87840509|127.99785712|34583|1 +638561.77430188|219981.29290076|114.1818635|34584|2 +638565.70011357|219977.97307268|145.05283161|34585|1 +638560.12474661|219979.68415853|124.0925714|34586|1 +638560.47115882|219979.27433157|114.40139472|34587|2 +638555.43790055|219983.89751419|114.62638609|34588|1 +638550.41468685|219988.50905534|114.59557861|34589|1 +638545.36543879|219993.15253876|115.41373495|34590|1 +638539.43988326|219998.87495976|145.22293319|34591|1 +638535.28640962|220002.4183267|116.70099849|34592|1 +638530.33635972|220006.93978651|114.24796192|34593|1 +638525.27125989|220011.58908626|114.13339194|34594|1 +638520.2501441|220016.19955163|114.19030021|34595|1 +638515.22948439|220020.80977379|114.26596086|34596|1 +638509.44547565|220026.42610935|146.61624628|34597|1 +638510.17313272|220025.44810465|113.83963254|34598|2 +638505.11166883|220030.11481844|115.9266163|34599|1 +638499.72193614|220035.2221504|132.73436818|34600|1 +638494.96636653|220039.46547626|119.7432933|34601|1 +638489.98140535|220044.00238725|115.51970079|34602|1 +638484.80978438|220048.84751414|125.78531798|34603|1 +638484.99680481|220048.56123328|113.65915017|34604|2 +638479.70003324|220053.58140446|130.28366635|34605|1 +638479.77487536|220053.46240397|124.96063178|34606|2 +638479.92903986|220053.21727921|113.99594889|34607|3 +638474.91037249|220057.82819016|114.33453355|34608|1 +638469.83607604|220062.49796736|115.49024206|34609|1 +638464.77220604|220067.15169045|115.95892137|34610|1 +638459.71214443|220071.79955703|116.17791309|34611|1 +638454.65184589|220076.44918568|116.55959288|34612|1 +638449.62478527|220081.09341875|119.61078949|34613|1 +638444.57092279|220085.73684949|119.96163389|34614|1 +638439.43951632|220090.68455682|145.01640585|34615|1 +638439.52745765|220090.34349312|117.42547665|34616|2 +638434.47581926|220094.98919293|118.23294525|34617|1 +638429.41935548|220099.6829553|123.66523849|34618|1 +638424.36905171|220104.27869729|119.30467733|34619|1 +638419.31728821|220108.91887017|119.51273946|34620|1 +638414.26600925|220113.55820717|119.67724138|34621|1 +638409.26500377|220118.15541823|120.27941048|34622|1 +638404.2168699|220122.79428238|120.70041818|34623|1 +638399.12224391|220127.47591715|121.12187237|34624|1 +638394.12249594|220132.06881564|121.38674045|34625|1 +638389.02829273|220136.74871609|121.6650403|34626|1 +638383.98010407|220141.3845336|121.75566751|34627|1 +638378.98435017|220145.97554487|122.20818963|34628|1 +638373.93971496|220150.60981687|122.48026659|34629|1 +638368.89924761|220155.24238064|122.97748375|34630|1 +638363.8604021|220159.87375977|123.5060944|34631|1 +638358.81781033|220164.50611359|123.77241356|34632|1 +638353.77871963|220169.13672894|124.19510488|34633|1 +638348.78955326|220173.72212719|124.69148488|34634|1 +638343.71189777|220178.39130287|125.44082669|34635|1 +638338.67317419|220183.02065684|125.76399831|34636|1 +638333.67476942|220187.6100846|125.78564354|34637|1 +638328.59355316|220192.28019885|126.28587447|34638|1 +638323.59731538|220196.86847052|126.39508663|34639|1 +638318.55548214|220201.49941184|126.58138261|34640|1 +638313.51566066|220206.1291586|126.83653963|34641|1 +638308.5197807|220210.71741151|126.97705227|34642|1 +638303.47359714|220215.35082248|127.07635803|34643|1 +638298.42670202|220219.98452343|127.18837933|34644|1 +638293.42687117|220224.57491787|127.29784263|34645|1 +638288.38304364|220229.20681445|127.51630415|34646|1 +638283.33752784|220233.83991133|127.69748415|34647|1 +638278.33840042|220238.4301489|127.85702822|34648|1 +638273.29340813|220243.06307937|128.06972264|34649|1 +638268.29153542|220247.65544059|128.18563208|34650|1 +638263.24485911|220252.28975113|128.37989968|34651|1 +638258.24121428|220256.88363617|128.48342845|34652|1 +638253.23742186|220261.47778048|128.5994309|34653|1 +638256.57171309|220255.24229259|128.45419297|34654|1 +638261.56901642|220250.64020329|128.33714872|34655|1 +638266.61258981|220245.9953901|128.20425424|34656|1 +638271.65529266|220241.35131731|128.0653322|34657|1 +638276.64515083|220236.75478763|127.81117047|34658|1 +638281.68765887|220232.11106283|127.69128917|34659|1 +638286.72727212|220227.4694148|127.50918829|34660|1 +638291.71926944|220222.8716621|127.33630548|34661|1 +638296.75975433|220218.22961546|127.1981834|34662|1 +638301.79963858|220213.58806067|127.05403377|34663|1 +638306.84179843|220208.94516466|126.99126538|34664|1 +638311.88053999|220204.30453953|126.83501414|34665|1 +638316.91646345|220199.66568746|126.59150294|34666|1 +638321.955232|220195.02515053|126.44811606|34667|1 +638326.99229012|220190.38565864|126.24868597|34668|1 +638332.03282119|220185.74424782|126.18687566|34669|1 +638337.06308024|220181.10844403|125.71292225|34670|1 +638342.10164685|220176.46808012|125.5702423|34671|1 +638347.12882232|220171.83324484|124.89666347|34672|1 +638352.15902831|220167.19637375|124.30444727|34673|1 +638357.24068387|220162.51349044|123.85486451|34674|1 +638362.27834544|220157.87255222|123.56301197|34675|1 +638367.3140036|220153.23199913|123.11510353|34676|1 +638372.39807537|220148.54682921|122.66024666|34677|1 +638377.38844393|220143.94818369|122.23852272|34678|1 +638382.47593031|220139.26068605|121.87173508|34679|1 +638387.56664035|220134.57237582|121.73659887|34680|1 +638392.5620505|220129.97140815|121.56513922|34681|1 +638397.65189677|220125.2822015|121.24937182|34682|1 +638402.69331688|220120.63516741|120.67793579|34683|1 +638407.73683241|220115.98730698|120.22542297|34684|1 +638412.82907421|220111.29432216|119.74195384|34685|1 +638417.87584037|220106.64655341|119.62118888|34686|1 +638422.92303897|220101.99890777|119.55686709|34687|1 +638428.01812904|220097.30713957|119.48695494|34688|1 +638433.06839107|220092.6445122|118.11700791|34689|1 +638438.02692927|220088.32467106|144.50691965|34690|1 +638443.20999616|220083.30728652|118.15327554|34691|1 +638448.25915728|220078.65916432|118.23393124|34692|1 +638453.29497249|220074.04023802|120.13321446|34693|1 +638458.42258597|220069.28457562|116.416206|34694|1 +638463.47751548|220064.62852188|116.21646896|34695|1 +638468.5389419|220059.96195339|115.52961648|34696|1 +638473.61073326|220055.27997567|114.21200125|34697|1 +638478.5807119|220050.76107464|120.35443861|34698|1 +638478.66704772|220050.62502383|114.26921648|34699|2 +638483.47876187|220046.34164283|130.07627395|34700|1 +638483.73407117|220045.9539994|113.65818279|34701|2 +638488.72207406|220041.42653423|120.66449472|34702|1 +638488.84441403|220041.2467349|113.43667958|34703|2 +638493.85570481|220036.63301389|113.47398901|34704|1 +638498.3972083|220032.71928312|142.29861282|34705|1 +638498.95918235|220031.93624528|113.70297084|34706|2 +638503.93382636|220027.3938971|117.79014349|34707|1 +638508.32785595|220023.62267349|147.35245398|34708|1 +638508.44540232|220023.46567285|142.09998269|34709|2 +638514.11382679|220017.99421057|114.9222756|34710|1 +638519.19223307|220013.31188661|114.2258888|34711|1 +638523.99278507|220008.98374159|124.12616942|34712|1 +638524.25724806|220008.64751711|114.13554995|34713|2 +638529.29947791|220004.01206105|114.90088151|34714|1 +638533.80848873|220000.03658171|133.88376079|34715|1 +638534.36559389|219999.34661744|114.80479416|34716|2 +638539.41507417|219994.70187349|115.28956554|34717|1 +638544.48304949|219990.03459466|115.18154401|34718|1 +638549.54994959|219985.36894355|115.14247655|34719|1 +638554.04079072|219981.38807806|131.75422139|34720|1 +638554.58091747|219980.74627057|116.17089025|34721|2 +638554.63867244|219980.67764303|114.50458863|34722|3 +638550.44024115|219981.26208108|132.4244888|34723|1 +638551.0216001|219980.57057198|115.38631332|34724|2 +638544.93077906|219986.46160568|146.6702617|34725|1 +638540.00509844|219990.97859906|145.09789872|34726|1 +638540.95315479|219989.82891263|114.91035072|34727|2 +638535.03394299|219995.52136212|141.77114629|34728|1 +638535.83291927|219994.54178023|115.16426131|34729|2 +638530.19139486|219999.91713897|135.32548032|34730|1 +638530.76248301|219999.20867365|115.40294489|34731|2 +638525.64257293|220003.93824514|117.50885777|34732|1 +638520.62211257|220008.52653814|114.19256054|34733|1 +638515.59117669|220013.1609624|114.85310759|34734|1 +638510.49002148|220017.85104975|114.53461476|34735|1 +638504.73109448|220023.44282842|146.51540573|34736|1 +638499.7420839|220028.02038772|145.18386573|34737|1 +638499.87266469|220027.84170976|138.80658643|34738|2 +638500.37120116|220027.1595458|114.45927968|34739|3 +638494.80226185|220032.52764864|141.12257993|34740|1 +638494.99448739|220032.25849335|131.06573181|34741|2 +638495.32867438|220031.79056276|113.5818152|34742|3 +638490.26495923|220036.4511158|113.79769083|34743|1 +638485.20240352|220041.1106088|114.0138269|34744|1 +638480.06599227|220045.85474503|116.0465162|34745|1 +638475.03867372|220050.46132012|114.02665405|34746|1 +638469.98991233|220055.13541685|117.21922836|34747|1 +638464.90935434|220059.79317756|115.43562203|34748|1 +638459.84561689|220064.46073256|116.40921107|34749|1 +638454.83798042|220069.07059609|116.72184377|34750|1 +638449.7334457|220073.77336245|117.43862006|34751|1 +638444.68086694|220078.42488553|117.7818277|34752|1 +638439.67895|220083.0257272|117.6823266|34753|1 +638434.52653269|220087.96378662|139.27327515|34754|1 +638429.57452287|220092.38206066|124.25664544|34755|1 +638429.58322487|220092.31795691|118.1321233|34756|2 +638424.53337901|220097.04449408|126.93799411|34757|1 +638424.53384038|220096.97361427|119.24472738|34758|2 +638419.48665822|220101.62055233|119.62634206|34759|1 +638414.48741664|220106.22062565|119.70833722|34760|1 +638409.44112057|220110.86464739|119.85898879|34761|1 +638404.39723783|220115.50983002|120.37855812|34762|1 +638399.40184605|220120.10969785|120.82312722|34763|1 +638394.36052572|220124.752423|121.3304461|34764|1 +638389.36561026|220129.35003235|121.57503631|34765|1 +638384.37177967|220133.94710789|121.86955846|34766|1 +638379.32897541|220138.58773124|121.9959417|34767|1 +638374.33791667|220143.18341138|122.41545181|34768|1 +638369.34896577|220147.77767108|122.89111675|34769|1 +638364.31086578|220152.41569909|123.20524705|34770|1 +638359.32220179|220157.00890601|123.59339157|34771|1 +638354.33344193|220161.60180641|123.93772473|34772|1 +638349.30202465|220166.23593397|124.49579411|34773|1 +638344.36598624|220170.78190197|125.01352168|34774|1 +638339.33573048|220175.41457086|125.52789131|34775|1 +638334.34922949|220180.00518536|125.84700736|34776|1 +638329.36134229|220184.59645299|126.09732746|34777|1 +638324.37142006|220189.18885707|126.26635004|34778|1 +638319.38087088|220193.78167125|126.41658303|34779|1 +638309.40133257|220202.96651215|126.7855752|34780|1 +638304.4086174|220207.56088268|126.88566232|34781|1 +638299.41739567|220212.15436608|127.02941197|34782|1 +638294.42525717|220216.74854221|127.15436273|34783|1 +638289.47882997|220221.30027732|127.2390182|34784|1 +638284.48860245|220225.89338525|127.43869013|34785|1 +638279.49687157|220230.48759766|127.6071081|34786|1 +638274.50398286|220235.0827107|127.75675507|34787|1 +638269.56096346|220239.63251729|127.97175633|34788|1 +638264.61625807|220244.18359448|128.15528038|34789|1 +638259.62056614|220248.78101142|128.27339434|34790|1 +638254.67139329|220253.33552311|128.38162051|34791|1 +638256.66938381|220248.31545018|128.27587791|34792|1 +638261.70894196|220243.66632771|128.10624142|34793|1 +638266.74929166|220239.0167613|127.96802632|34794|1 +638271.78778944|220234.36860559|127.79882701|34795|1 +638276.77662517|220229.7658151|127.58922078|34796|1 +638281.85988005|220225.07596165|127.36743852|34797|1 +638286.84859812|220220.47337972|127.17048271|34798|1 +638291.88673491|220215.82581651|127.0332257|34799|1 +638296.97322897|220211.13403669|126.93106429|34800|1 +638301.96365134|220206.53059826|126.81554553|34801|1 +638307.00234456|220201.88301842|126.73511306|34802|1 +638312.08620637|220197.19325251|126.59020999|34803|1 +638317.07588647|220192.59059196|126.48742536|34804|1 +638322.1101927|220187.94596773|126.28890685|34805|1 +638327.19277374|220183.25714831|126.11994938|34806|1 +638332.17399357|220178.65938508|125.69876495|34807|1 +638337.21504702|220174.01106913|125.78193213|34808|1 +638342.29232669|220169.32497538|125.37645839|34809|1 +638347.27014453|220164.7282422|124.72422713|34810|1 +638352.29827796|220160.08583567|124.14561013|34811|1 +638357.33026055|220155.44123016|123.7171238|34812|1 +638362.36459831|220150.79529497|123.3825296|34813|1 +638367.39917115|220146.14891258|123.02312756|34814|1 +638372.48200761|220141.45807309|122.66309301|34815|1 +638377.51779208|220136.81017078|122.2604005|34816|1 +638382.55507086|220132.16127677|121.90164029|34817|1 +638387.59452152|220127.51167747|121.68679716|34818|1 +638392.63402113|220122.8615772|121.42215232|34819|1 +638397.72071539|220118.16665753|121.00750703|34820|1 +638402.76012823|220113.51397515|120.44962369|34821|1 +638407.80145802|220108.86048436|119.99818057|34822|1 +638412.84463377|220104.20737321|119.77818426|34823|1 +638417.888649|220099.55489263|119.71462522|34824|1 +638422.93156511|220095.05032227|135.94400194|34825|1 +638422.93188787|220095.01480562|132.03799999|34826|2 +638427.99211952|220090.4395836|142.19943728|34827|1 +638428.02402122|220090.21274514|120.30108362|34828|2 +638433.07404236|220085.53510869|118.06344829|34829|1 +638438.10926824|220080.90523758|119.61308703|34830|1 +638443.1574302|220076.24372961|118.97572931|34831|1 +638448.21477393|220071.56434926|117.29501923|34832|1 +638453.26670194|220066.90116635|116.8581427|34833|1 +638458.36464552|220062.19854115|116.74768411|34834|1 +638463.37778187|220057.56593091|115.74143654|34835|1 +638468.41984717|220052.92263722|116.50495425|34836|1 +638473.50315808|220048.21311936|114.13848931|34837|1 +638478.55918984|220043.54917695|114.04031836|34838|1 +638483.61761769|220038.88211713|113.84244167|34839|1 +638488.50047094|220034.44215849|120.89545783|34840|1 +638493.13338207|220030.36386651|142.52285074|34841|1 +638493.23478181|220030.22269578|137.22582394|34842|2 +638498.06188325|220025.85763935|146.88980223|34843|1 +638503.06596013|220021.22644011|145.12073458|34844|1 +638503.73440455|220020.33489207|114.53545192|34845|2 +638508.73398577|220015.72772971|114.97318422|34846|1 +638513.79039784|220011.06469848|115.02001866|34847|1 +638518.80508442|220006.4382035|114.85836309|34848|1 +638523.85806804|220001.77994943|115.08667519|34849|1 +638528.84246821|219997.19147631|116.04902768|34850|1 +638533.85897384|219992.56323149|115.88129805|34851|1 +638538.55384393|219988.32419494|126.01970414|34852|1 +638538.87306846|219987.93826678|115.83224048|34853|2 +638542.98371263|219984.40815283|144.90425433|34854|1 +638543.55172421|219983.7282717|127.53347523|34855|2 +638543.93972057|219983.26385961|115.6679246|34856|3 +638548.60794562|219979.04968343|125.84212393|34857|1 +638548.94223695|219978.65321259|116.02478725|34858|2 +638542.87514437|219981.33153093|148.10833494|34859|1 +638537.97733173|219985.78879865|142.80136453|34860|1 +638538.83203816|219984.76340349|115.88505596|34861|2 +638533.76095012|219989.42985416|116.18415459|34862|1 +638528.6535205|219994.1268396|116.14972871|34863|1 +638523.55720967|219998.81027246|115.74115748|34864|1 +638518.47126153|220003.48058166|114.92714043|34865|1 +638513.37702846|220008.16096059|114.38825131|34866|1 +638508.26136463|220012.86887979|114.73034274|34867|1 +638502.55335346|220018.37879126|144.0426866|34868|1 +638503.20732901|220017.51513207|114.51945287|34869|2 +638497.35734457|220023.19320115|148.05185455|34870|1 +638492.5171329|220027.5444074|136.75414016|34871|1 +638492.89222155|220027.02768881|117.40884507|34872|2 +638487.78389134|220031.75295538|120.47245955|34873|1 +638487.89932245|220031.58995608|114.06946083|34874|2 +638482.75167723|220036.34711399|116.64413673|34875|1 +638477.62892744|220041.07134889|118.08873982|34876|1 +638477.69231156|220040.97624332|113.94039868|34877|2 +638472.524424|220045.80031104|121.96594347|34878|1 +638472.63651393|220045.62577004|113.91253986|34879|2 +638467.44552916|220050.42823376|117.09340323|34880|1 +638462.35608465|220055.10174432|116.27142385|34881|1 +638457.30049599|220059.75486485|116.66953988|34882|1 +638452.2018376|220064.44439639|116.69807773|34883|1 +638447.09751364|220069.14679112|117.58942046|34884|1 +638442.03010269|220073.83610868|120.84430736|34885|1 +638436.94936595|220078.48624758|118.28692346|34886|1 +638431.85998415|220083.1646113|118.01720915|34887|1 +638426.77319179|220088.05944994|142.45900335|34888|1 +638421.6677728|220092.58661249|123.44724206|34889|1 +638421.66861936|220092.5483029|119.21001315|34890|2 +638416.62304235|220097.19286556|119.67923196|34891|1 +638411.57802913|220101.83409717|119.82992074|34892|1 +638406.48587147|220106.51871131|119.97447034|34893|1 +638401.395681|220111.20412408|120.41318863|34894|1 +638396.35458785|220115.84475084|120.9021272|34895|1 +638391.26696188|220120.52798374|121.3602955|34896|1 +638386.22807276|220125.16632252|121.8184359|34897|1 +638381.18689643|220129.80395035|121.95801835|34898|1 +638376.14730794|220134.44111358|122.21024532|34899|1 +638371.11258702|220139.07662874|122.78135579|34900|1 +638366.07407234|220143.71237728|122.98390197|34901|1 +638361.0391887|220148.34661498|123.39283597|34902|1 +638356.00370645|220152.98069036|123.72067708|34903|1 +638351.01902954|220157.56922517|124.19111442|34904|1 +638345.99002778|220162.19961339|124.77531249|34905|1 +638340.96222488|220166.82889856|125.35963148|34906|1 +638335.97620543|220171.41702785|125.64256361|34907|1 +638330.94011184|220176.05025528|125.80844219|34908|1 +638326.00169218|220180.59441468|126.07695657|34909|1 +638321.01378887|220185.18346061|126.26593146|34910|1 +638315.97604901|220189.81772139|126.37571103|34911|1 +638311.03243285|220194.36506528|126.4625059|34912|1 +638306.04133254|220198.956293|126.56382085|34913|1 +638301.04994527|220203.54796813|126.66507999|34914|1 +638296.05820766|220208.14114412|126.74754024|34915|1 +638291.06618953|220212.7346323|126.83618617|34916|1 +638286.12272567|220217.28376248|126.9657041|34917|1 +638281.18165348|220221.83135832|127.16984089|34918|1 +638276.19332682|220226.42263007|127.38921398|34919|1 +638271.25321416|220230.96967976|127.63034393|34920|1 +638266.26279045|220235.56256278|127.81203553|34921|1 +638261.31885833|220240.11248014|127.97781179|34922|1 +638256.37192359|220244.66466965|128.08714487|34923|1 +638256.69796785|220241.38487796|128.0040521|34924|1 +638261.73780845|220236.73303784|127.86009781|34925|1 +638266.77758939|220232.08136086|127.72885905|34926|1 +638271.76335729|220227.47818403|127.45115451|34927|1 +638276.79789557|220222.83036019|127.20785725|34928|1 +638281.78359972|220218.22729573|126.93643141|34929|1 +638286.86908254|220213.53341692|126.79681175|34930|1 +638291.90817457|220208.88269706|126.70399862|34931|1 +638296.9003128|220204.27553971|126.64514628|34932|1 +638301.936991|220199.62666252|126.50892177|34933|1 +638306.97675943|220194.97591395|126.48533246|34934|1 +638312.01339846|220190.32728894|126.3745018|34935|1 +638317.05023243|220185.67864284|126.28261885|34936|1 +638322.13372045|220180.98682305|126.17027199|34937|1 +638327.16853592|220176.33955202|126.02268071|34938|1 +638332.19867495|220171.69490662|125.68159387|34939|1 +638337.23216357|220167.04831009|125.47188532|34940|1 +638342.31184099|220162.35853805|125.19219951|34941|1 +638347.33889708|220157.71483125|124.63306042|34942|1 +638352.3663006|220153.07042294|124.03033322|34943|1 +638357.44637961|220148.37946731|123.65789009|34944|1 +638362.52601546|220143.68826939|123.21087462|34945|1 +638367.56133075|220139.0393354|122.92758902|34946|1 +638372.59657339|220134.3899786|122.58824161|34947|1 +638377.68051359|220129.69584744|122.26096791|34948|1 +638382.71941223|220125.04481609|122.1158509|34949|1 +638387.80261095|220120.34935216|121.55806987|34950|1 +638392.84047226|220115.69665721|121.11346356|34951|1 +638397.9263543|220110.99867492|120.55017589|34952|1 +638402.96748567|220106.34454528|120.28731699|34953|1 +638408.05650809|220101.64513755|119.89353559|34954|1 +638413.09952488|220096.99057413|119.78119803|34955|1 +638418.14289064|220092.33509082|119.60032499|34956|1 +638423.23451369|220087.63448035|119.34514006|34957|1 +638428.21939825|220083.24616524|143.69400951|34958|1 +638433.32461263|220078.32024665|118.96592524|34959|1 +638438.41720474|220073.61195666|117.93061892|34960|1 +638443.46172475|220068.95942984|118.21348594|34961|1 +638448.5170389|220064.2845081|117.06554441|34962|1 +638453.61356864|220059.58085182|116.98138194|34963|1 +638458.61291572|220054.96880475|117.13248929|34964|1 +638463.67562747|220050.2869056|115.96662324|34965|1 +638468.76737723|220045.59270579|116.46460314|34966|1 +638473.8518589|220040.88080232|114.15614408|34967|1 +638478.6617157|220036.57421871|129.35315385|34968|1 +638478.90263017|220036.22186125|114.36580612|34969|2 +638483.95519324|220031.56034497|114.46951163|34970|1 +638488.62543834|220027.42815291|134.92501094|34971|1 +638489.00273479|220026.90589705|114.85453076|34972|2 +638494.0598822|220022.23825401|114.7400631|34973|1 +638498.44888892|220018.45670593|145.71158342|34974|1 +638499.10316732|220017.58935765|115.3129037|34975|2 +638499.11580394|220017.57260584|114.72579417|34976|3 +638504.16283623|220012.91879672|115.13022611|34977|1 +638509.21020694|220008.26439619|115.50364592|34978|1 +638514.20274045|220003.67905649|118.00666094|34979|1 +638519.08270998|219999.21643754|122.69223547|34980|1 +638519.27850483|219998.97283492|115.43036653|34981|2 +638524.01935646|219994.69513951|126.63697002|34982|1 +638524.31646808|219994.33009291|116.14775673|34983|2 +638528.59317666|219990.61159867|142.46806328|34984|1 +638529.35904349|219989.68141254|116.67177231|34985|2 +638534.37493279|219985.05127668|116.49993129|34986|1 +638539.43676304|219980.37964114|116.42503339|34987|1 +638536.27446716|219979.75591225|145.14729115|34988|1 +638537.20537108|219978.64732087|116.26545211|34989|2 +638532.07409726|219983.3837136|117.08194344|34990|1 +638521.75409036|219992.93010242|121.09571578|34991|1 +638521.89535601|219992.75631259|116.069566|34992|2 +638515.98477979|219998.46561872|146.25409092|34993|1 +638516.81000889|219997.43734446|115.38292747|34994|2 +638511.71359941|220002.13199016|115.09008894|34995|1 +638506.58659534|220006.86588385|116.07169611|34996|1 +638501.50805873|220011.53784318|115.06160691|34997|1 +638495.72780927|220017.14205454|146.99933064|34998|1 +638490.6611572|220021.79514018|145.0779371|34999|1 +638485.68290272|220026.34528575|140.6789596|35000|1 +638486.16057334|220025.68106674|114.82371397|35001|2 +638481.06056313|220030.38134312|114.7961156|35002|1 +638475.96574761|220035.07424014|114.46911165|35003|1 +638470.86445378|220039.77679382|114.56738492|35004|1 +638465.7085747|220044.53480074|115.25817204|35005|1 +638460.59819403|220049.25423166|116.33850826|35006|1 +638455.47681808|220053.99596516|118.82531028|35007|1 +638450.38100809|220058.69618702|119.23815103|35008|1 +638445.30233077|220063.36251413|117.55806417|35009|1 +638440.14115074|220068.14829665|120.89543923|35010|1 +638435.01950582|220072.84251966|117.85940452|35011|1 +638429.97192452|220077.51494905|120.19982448|35012|1 +638424.78709881|220082.50443052|144.58136177|35013|1 +638419.69876666|220086.97716783|119.4736348|35014|1 +638414.65650865|220091.62627775|119.68401307|35015|1 +638409.51964118|220096.36207318|119.83168808|35016|1 +638404.38331437|220101.09753969|119.99879449|35017|1 +638399.3432263|220105.74536485|120.29144698|35018|1 +638394.20896209|220110.48023806|120.60964215|35019|1 +638389.07793761|220115.21483024|121.24097232|35020|1 +638384.04254105|220119.8601785|121.74713778|35021|1 +638378.96132677|220124.54815295|122.29775644|35022|1 +638373.82945141|220129.27955315|122.46822079|35023|1 +638368.79599973|220133.92220186|122.86899713|35024|1 +638363.71319793|220138.60852429|123.05836269|35025|1 +638358.58712318|220143.33691403|123.49911807|35026|1 +638353.55591963|220147.9772853|123.87573769|35027|1 +638348.48176124|220152.65905022|124.45997297|35028|1 +638343.40672328|220157.34071467|124.93837263|35029|1 +638338.37916043|220161.97822369|125.37190983|35030|1 +638333.29918533|220166.66191508|125.55730353|35031|1 +638328.27020665|220171.29981879|125.88505162|35032|1 +638323.23637619|220175.94042164|126.00680258|35033|1 +638318.15386834|220180.62559976|126.09322538|35034|1 +638313.11939067|220185.26675229|126.20919993|35035|1 +638308.08463316|220189.90816794|126.32536051|35036|1 +638303.04801882|220194.55086652|126.39173799|35037|1 +638298.01017404|220199.19272229|126.43953982|35038|1 +638293.01984386|220203.7880655|126.50988915|35039|1 +638287.98260317|220208.42694696|126.61410626|35040|1 +638282.9437455|220213.06705689|126.68730193|35041|1 +638277.95646037|220217.66067321|126.88262064|35042|1 +638272.92312249|220222.29715148|127.12462495|35043|1 +638267.93904939|220226.888612|127.41357533|35044|1 +638262.95407812|220231.48074379|127.68374543|35045|1 +638257.96460141|220236.07616557|127.85399584|35046|1 +638252.97295679|220240.67327204|127.9867601|35047|1 +638252.6664933|220236.83713815|127.86967864|35048|1 +638257.65916171|220232.22991682|127.75889448|35049|1 +638262.69111769|220227.58485485|127.46382353|35050|1 +638267.67548581|220222.98370459|127.17209192|35051|1 +638272.66216334|220218.3809679|126.94273802|35052|1 +638277.69466085|220213.73562113|126.6729772|35053|1 +638282.7304295|220209.08807704|126.497062|35054|1 +638287.76933707|220204.43851066|126.42127113|35055|1 +638292.7604255|220199.83311841|126.35447507|35056|1 +638297.79903587|220195.1840413|126.30395712|35057|1 +638302.83632307|220190.53596738|126.22867785|35058|1 +638307.87351679|220185.88808837|126.16608619|35059|1 +638312.90990435|220181.24084338|126.09119759|35060|1 +638317.94507438|220176.59444821|125.98526896|35061|1 +638322.98028602|220171.94812194|125.89202796|35062|1 +638328.01670875|220167.30122492|125.86144372|35063|1 +638333.09237388|220162.6150712|125.47959649|35064|1 +638338.12507669|220157.97018903|125.28704972|35065|1 +638343.1546882|220153.32673876|124.93221485|35066|1 +638348.23077343|220148.63965621|124.48884568|35067|1 +638353.25662263|220143.9970604|123.83450292|35068|1 +638358.28879162|220139.35136147|123.49277426|35069|1 +638363.36849986|220134.66143235|123.1065924|35070|1 +638368.40322435|220130.01414037|122.85280274|35071|1 +638373.48681317|220125.32216232|122.64230354|35072|1 +638378.52024152|220120.67383128|122.13276153|35073|1 +638383.55539886|220116.02439762|121.67962549|35074|1 +638388.63738454|220111.32959902|120.97642979|35075|1 +638393.72323918|220106.63417607|120.61113043|35076|1 +638398.76231949|220101.98156313|120.20878209|35077|1 +638403.85082015|220097.28544576|120.04422437|35078|1 +638408.93956426|220092.58801549|119.75510655|35079|1 +638413.9816827|220087.93516177|119.64732687|35080|1 +638419.07181249|220083.23749224|119.47770897|35081|1 +638424.06305652|220078.83395848|142.61231523|35082|1 +638429.06034026|220074.25774521|146.56067747|35083|1 +638434.25000131|220069.22128833|118.02613886|35084|1 +638439.34188727|220064.52434528|118.12678408|35085|1 +638444.3901208|220059.86318794|117.71438982|35086|1 +638449.45819581|220055.21175636|120.52149851|35087|1 +638454.59640326|220050.43103791|115.9056594|35088|1 +638459.64364673|220045.77574818|116.06285012|35089|1 +638469.85986258|220036.33706479|114.55687391|35090|1 +638474.91120238|220031.67713028|114.61506583|35091|1 +638479.65006165|220027.48677254|135.5279986|35092|1 +638480.00447843|220026.98158225|115.02522766|35093|2 +638484.64314017|220022.91690443|139.76664137|35094|1 +638484.89294628|220022.57009941|126.38000845|35095|2 +638485.11116299|220022.26714978|114.68622442|35096|3 +638489.61203843|220018.35447512|142.29781287|35097|1 +638489.81740055|220018.07589142|132.04136723|35098|2 +638490.16158959|220017.60898214|114.85153559|35099|3 +638494.54273335|220013.84024843|146.32159391|35100|1 +638500.31030345|220008.24863674|115.1977105|35101|1 +638505.37274201|220003.57526456|114.88919848|35102|1 +638510.41445321|219998.9286068|115.45523018|35103|1 +638514.69641983|219995.24362411|146.05213075|35104|1 +638515.51070813|219994.22917632|115.73695308|35105|2 +638520.33467813|219989.8500124|123.97686661|35106|1 +638520.4481631|219989.71040899|119.95598771|35107|2 +638525.57019606|219984.96406129|117.57563522|35108|1 +638530.55252399|219980.38783872|119.94653711|35109|1 +638525.54846718|219981.14445217|124.23021909|35110|1 +638525.71553393|219980.9420777|118.67404479|35111|2 +638520.61739019|219985.65291905|120.21332136|35112|1 +638515.54066263|219990.33880309|121.15370305|35113|1 +638509.81277049|219995.82836039|145.46469567|35114|1 +638510.59068083|219994.85058158|115.51015717|35115|2 +638505.59176352|219999.45328507|115.13579787|35116|1 +638500.47508625|220004.17286691|115.71206153|35117|1 +638495.41542295|220008.83706885|115.9664186|35118|1 +638490.33429958|220013.53072703|117.33285886|35119|1 +638484.67485304|220019.00054312|146.63845893|35120|1 +638480.17723182|220022.87059937|115.15296895|35121|1 +638475.17045161|220027.48492267|115.27915685|35122|1 +638469.93985624|220032.38034131|123.99857695|35123|1 +638470.07531271|220032.17724609|115.00207554|35124|2 +638464.96230419|220036.89724011|116.0124996|35125|1 +638459.90398644|220041.56409723|116.71252339|35126|1 +638454.80526281|220046.26435948|116.96783855|35127|1 +638449.70512455|220050.96821686|117.48605912|35128|1 +638444.64090262|220055.65318577|119.64305735|35129|1 +638439.56091426|220060.32023354|118.0624902|35130|1 +638434.46860416|220065.01178956|117.99456863|35131|1 +638429.42727978|220069.66029319|118.38410842|35132|1 +638424.2585881|220074.66511221|146.2707318|35133|1 +638419.24160151|220079.05521739|119.49382895|35134|1 +638414.19886153|220083.70227816|119.56538752|35135|1 +638409.06150149|220088.4378605|119.78036087|35136|1 +638403.97255422|220093.1293398|120.05864212|35137|1 +638398.93138454|220097.77551052|120.1936202|35138|1 +638393.84430871|220102.4660429|120.56012879|35139|1 +638388.75834655|220107.15571196|120.94580835|35140|1 +638383.67272039|220111.84437563|121.25065547|35141|1 +638378.59095936|220116.53230346|121.88088802|35142|1 +638373.51025512|220121.21882923|122.46153281|35143|1 +638368.47688352|220125.86055884|122.91064118|35144|1 +638363.39396103|220130.54593856|123.12324258|35145|1 +638358.3134104|220135.23017156|123.45499974|35146|1 +638353.23443049|220139.91344503|123.84337681|35147|1 +638348.15955883|220144.59457278|124.41962186|35148|1 +638343.08305682|220149.27590585|124.84626644|35149|1 +638338.05368206|220153.91327715|125.21564928|35150|1 +638327.9435665|220163.23331043|125.71286644|35151|1 +638322.86364022|220167.91576292|125.90342263|35152|1 +638317.82550954|220172.55776041|125.87384298|35153|1 +638312.7411727|220177.24299567|125.91518938|35154|1 +638307.7050984|220181.884084|125.9985519|35155|1 +638302.66751557|220186.52624054|126.0446143|35156|1 +638297.58300612|220191.21383607|126.10575487|35157|1 +638292.59429175|220195.81439434|126.19355434|35158|1 +638287.55615251|220200.4601838|126.24022135|35159|1 +638282.47082341|220205.14974134|126.3148216|35160|1 +638277.48121534|220209.75129124|126.42159669|35161|1 +638272.44888903|220214.39346041|126.66867978|35162|1 +638267.41613982|220219.03596764|126.90969811|35163|1 +638262.43240369|220223.63361961|127.1913745|35164|1 +638257.40160351|220228.27481956|127.48882671|35165|1 +638252.36711595|220232.91871917|127.70533485|35166|1 +638254.02235979|220227.93835409|127.48285497|35167|1 +638259.05266189|220223.28756118|127.19892754|35168|1 +638263.98814528|220218.72434481|126.92772495|35169|1 +638269.01764728|220214.07418465|126.63147267|35170|1 +638274.04895284|220209.42279013|126.38535697|35171|1 +638279.03645661|220204.81273705|126.24837901|35172|1 +638284.07294681|220200.15795054|126.16490487|35173|1 +638289.1109801|220195.50228873|126.1440968|35174|1 +638294.09946921|220190.89196221|126.08223068|35175|1 +638299.13413253|220186.23881112|125.99303595|35176|1 +638304.17074806|220181.58455305|125.98525036|35177|1 +638309.20518426|220176.93182636|125.92145878|35178|1 +638314.2393618|220172.27939188|125.86412263|35179|1 +638319.22754994|220167.67004101|125.88377728|35180|1 +638324.30563247|220162.97611688|125.71255018|35181|1 +638329.33536884|220158.32648655|125.50585541|35182|1 +638334.31878182|220153.72002409|125.35079479|35183|1 +638339.39505502|220149.0269734|125.08674527|35184|1 +638344.42382406|220144.37758212|124.80559907|35185|1 +638349.45012712|220139.72901597|124.355914|35186|1 +638354.47517467|220135.08042192|123.76891609|35187|1 +638359.55207398|220130.3858152|123.39366383|35188|1 +638364.5852276|220125.73356737|123.25080715|35189|1 +638369.61476033|220121.0815341|122.74566488|35190|1 +638374.69269015|220116.38458258|122.20893377|35191|1 +638379.67615335|220111.77407782|121.59217019|35192|1 +638384.75807106|220107.07484882|121.21852713|35193|1 +638389.8413497|220102.37495335|120.91406138|35194|1 +638394.87748162|220097.71785407|120.52881901|35195|1 +638399.91523985|220093.0607634|120.3187663|35196|1 +638405.00106945|220088.35900768|120.0716274|35197|1 +638410.04003422|220083.69999012|119.76835228|35198|1 +638415.07980478|220079.04158743|119.62152374|35199|1 +638420.1269699|220074.54552717|139.08017958|35200|1 +638420.15833439|220074.38619959|123.96886708|35201|2 +638425.11002073|220070.01765159|147.99516953|35202|1 +638430.21788101|220065.1919826|135.74444163|35203|1 +638435.32759863|220060.3348103|120.04414065|35204|1 +638440.3836826|220055.64398628|117.88640757|35205|1 +638445.44288309|220050.99943866|121.42277554|35206|1 +638450.52239557|220046.27119093|117.43485284|35207|1 +638455.5764543|220041.59366927|116.60281824|35208|1 +638460.62980495|220036.95069544|119.69634723|35209|1 +638465.30410348|220032.85197851|145.32398769|35210|1 +638465.73375551|220032.19715413|115.39112233|35211|2 +638470.68758229|220027.69740577|124.43902537|35212|1 +638470.82828534|220027.49034951|115.49272564|35213|2 +638475.51844593|220023.33698039|136.48318871|35214|1 +638475.87222463|220022.83182174|115.78031796|35215|2 +638480.43383113|220018.84393377|142.19826526|35216|1 +638480.91972058|220018.16823287|115.86197826|35217|2 +638485.42762792|220014.25844481|145.58504205|35218|1 +638486.02817839|220013.44275763|115.29013295|35219|2 +638491.12054729|220008.73957782|115.58078556|35220|1 +638496.16796668|220004.07676404|115.74462705|35221|1 +638501.22876035|219999.39686471|115.35911492|35222|1 +638506.32282605|219994.69180129|115.6134813|35223|1 +638511.36033678|219990.04179443|116.20276744|35224|1 +638516.39842212|219985.39083165|116.74228908|35225|1 +638521.46307956|219980.72137428|117.97794636|35226|1 +638517.91269375|219980.50737731|125.96314934|35227|1 +638518.15892764|219980.20745909|117.45342849|35228|2 +638513.12515563|219984.83679793|116.68128803|35229|1 +638508.05468157|219989.52708423|119.07785351|35230|1 +638503.07461821|219994.08898235|116.2140598|35231|1 +638498.05497167|219998.71657953|116.76246463|35232|1 +638493.01245647|220003.35654521|116.29055761|35233|1 +638487.78192846|220008.24705378|124.83195101|35234|1 +638487.96828944|220007.99845818|115.86878716|35235|2 +638482.95981554|220012.61249219|116.03645168|35236|1 +638477.77159822|220017.45533717|123.56719777|35237|1 +638477.91201002|220017.25937169|115.80235387|35238|2 +638472.47457538|220022.46501681|138.86424814|35239|1 +638472.7278057|220022.1018386|123.72104915|35240|2 +638472.83143817|220021.95321082|117.52382433|35241|3 +638467.85398267|220026.52392763|115.9737298|35242|1 +638462.38006469|220031.82445001|146.18570426|35243|1 +638462.8101573|220031.16505897|115.49645565|35244|2 +638457.79230566|220035.79629766|116.66409834|35245|1 +638452.59451087|220040.69642265|129.85223136|35246|1 +638452.74916403|220040.43668876|116.17462026|35247|2 +638447.69073103|220045.10353723|117.12873138|35248|1 +638442.62544413|220049.83385532|124.75793677|35249|1 +638432.57951975|220059.05490395|121.14970329|35250|1 +638427.50572605|220063.87875151|138.78485748|35251|1 +638422.41615026|220068.63418125|146.72650024|35252|1 +638417.4719583|220073.11809145|138.62103459|35253|1 +638417.50704911|220072.92035581|119.30998864|35254|2 +638412.46360264|220077.56874532|119.72170387|35255|1 +638407.4212364|220082.21458336|119.95237863|35256|1 +638402.37973023|220086.86017007|120.24572875|35257|1 +638397.38622059|220091.46051953|120.42682503|35258|1 +638392.3462317|220096.1047093|120.7204263|35259|1 +638387.35445223|220100.70426631|120.99526589|35260|1 +638382.31611623|220105.34708975|121.30783348|35261|1 +638377.27922869|220109.98922632|121.69557803|35262|1 +638372.24581484|220114.63024877|122.32721516|35263|1 +638367.26082388|220119.22611631|122.90210215|35264|1 +638362.1804103|220123.90884486|123.34096926|35265|1 +638357.1965478|220128.50259718|123.7909241|35266|1 +638352.16141102|220133.14109177|123.94186402|35267|1 +638347.13359264|220137.77642545|124.51162573|35268|1 +638342.14858038|220142.36953051|124.76159237|35269|1 +638337.11901879|220147.004863|125.14406281|35270|1 +638332.08559729|220151.64194155|125.31423881|35271|1 +638327.10279562|220156.23348544|125.62042539|35272|1 +638322.06706363|220160.87178694|125.68458904|35273|1 +638317.03512898|220165.50797985|125.91135705|35274|1 +638312.04275613|220170.105091|125.83646845|35275|1 +638307.00426166|220174.74540896|125.83857995|35276|1 +638302.01338089|220179.34199613|125.86365754|35277|1 +638296.97349831|220183.98217295|125.90979435|35278|1 +638291.97939421|220188.5796525|125.92245407|35279|1 +638286.98651751|220193.17648866|125.99128721|35280|1 +638281.94477521|220197.81821188|126.03777749|35281|1 +638276.95233921|220202.41501265|126.15035689|35282|1 +638271.96012212|220207.01177908|126.28164216|35283|1 +638266.96986151|220211.60727735|126.47530515|35284|1 +638261.93457683|220216.24492711|126.74074994|35285|1 +638256.94915541|220220.83708334|127.06551216|35286|1 +638255.54767164|220218.48457732|126.94534251|35287|1 +638260.53231122|220213.88074355|126.62675667|35288|1 +638265.5675208|220209.23092829|126.38625924|35289|1 +638270.606019|220204.57888635|126.23962604|35290|1 +638275.59571584|220199.97167578|126.07103134|35291|1 +638280.63513853|220195.31921382|125.97465564|35292|1 +638285.62784027|220190.71019486|125.91852872|35293|1 +638290.66763069|220186.05777285|125.86619692|35294|1 +638295.70762975|220181.40537332|125.83907294|35295|1 +638300.74575415|220176.75433535|125.76843525|35296|1 +638305.73806363|220172.14622116|125.77504882|35297|1 +638310.77856105|220167.49406443|125.82965024|35298|1 +638315.81046959|220162.84716196|125.57210266|35299|1 +638320.85104325|220158.19531649|125.67085032|35300|1 +638325.885935|220153.54684387|125.55114576|35301|1 +638330.91831622|220148.89972577|125.31915015|35302|1 +638335.95028349|220144.25272686|125.05610521|35303|1 +638340.9828041|220139.60532726|124.8057293|35304|1 +638345.96773265|220135.00162896|124.53165246|35305|1 +638351.0445369|220130.31123476|124.03054716|35306|1 +638356.0803817|220125.6618997|123.9119309|35307|1 +638361.06392887|220121.0576106|123.41930883|35308|1 +638366.14327242|220116.36440691|122.86283005|35309|1 +638371.17671392|220111.71376861|122.33228463|35310|1 +638376.21072437|220107.06191584|121.72068353|35311|1 +638381.24853612|220102.40912456|121.40925075|35312|1 +638386.28749606|220097.75581141|121.16050265|35313|1 +638391.32705401|220093.10189433|120.90569909|35314|1 +638396.41460114|220088.40312612|120.58242515|35315|1 +638401.45545166|220083.7472244|120.23439918|35316|1 +638406.44982902|220079.13520845|120.00500808|35317|1 +638411.54000703|220074.43514549|119.81395889|35318|1 +638416.54959278|220069.95173865|136.27776828|35319|1 +638416.56717062|220069.86124502|127.58468151|35320|2 +638416.58366175|220069.77634602|119.42906068|35321|3 +638421.54308378|220065.41101794|144.2982529|35322|1 +638426.53589376|220060.83316793|147.90031001|35323|1 +638431.7023723|220055.83871048|121.48775775|35324|1 +638436.54828418|220051.58235189|146.86172947|35325|1 +638436.76286062|220051.13882245|118.11030133|35326|2 +638441.80852057|220046.4817125|118.1389415|35327|1 +638446.85913972|220041.81608154|117.70540431|35328|1 +638451.75127783|220037.41499846|131.13084424|35329|1 +638451.92024687|220037.13416289|116.49732679|35330|2 +638456.95060132|220032.50339777|117.95749175|35331|1 +638461.66537611|220028.35045665|141.28490523|35332|1 +638462.00816897|220027.82912657|117.26226768|35333|2 +638466.62864494|220023.79808794|144.68090008|35334|1 +638467.05949979|220023.1653069|117.11712276|35335|2 +638472.06543997|220018.56661467|119.69596586|35336|1 +638477.12976603|220013.86173213|116.14468715|35337|1 +638481.94307549|220009.52220261|128.26818534|35338|1 +638482.15452739|220009.23554589|117.53683752|35339|2 +638487.23004862|220004.54067975|116.36818093|35340|1 +638492.22928359|219999.92853763|116.64655519|35341|1 +638497.24930256|219995.30683506|118.05152341|35342|1 +638502.35113813|219990.58083293|116.07814224|35343|1 +638507.39751758|219985.92581494|116.42817739|35344|1 +638512.10529138|219981.6867601|128.92257462|35345|1 +638512.42405539|219981.29512191|117.48397552|35346|2 +638510.53830313|219978.80393022|117.74101151|35347|1 +638505.5122149|219983.42713956|116.69808703|35348|1 +638500.43003347|219988.10427382|115.90871038|35349|1 +638495.23785775|219992.92237921|119.70368633|35350|1 +638490.28872412|219997.4635445|117.37738646|35351|1 +638485.08749541|220002.29937055|122.26050282|35352|1 +638485.20875337|220002.13768043|116.47666755|35353|2 +638480.11031733|220006.83617529|116.42581474|35354|1 +638474.60511133|220012.14722813|143.92156817|35355|1 +638475.12124789|220011.42736701|115.62979662|35356|2 +638469.59798144|220016.73465007|140.75560624|35357|1 +638469.99772292|220016.16176636|117.06015868|35358|2 +638464.5236476|220021.44317591|144.4511462|35359|1 +638464.92925282|220020.84372968|118.29922971|35360|2 +638459.83371651|220025.56950225|121.72534372|35361|1 +638459.91681443|220025.44225613|115.85243463|35362|2 +638454.8594381|220030.1083408|116.43594437|35363|1 +638449.7594126|220034.8115491|116.76214837|35364|1 +638444.72794426|220039.47544154|119.86571397|35365|1 +638439.68717566|220044.11872749|119.58148889|35366|1 +638434.60482092|220048.79283383|118.42156668|35367|1 +638429.60896181|220053.40380557|119.19490707|35368|1 +638424.44096638|220058.39797809|146.02684852|35369|1 +638419.44643942|220062.96836438|142.23171444|35370|1 +638414.44560442|220067.5274071|136.44295853|35371|1 +638414.45735206|220067.46372305|130.3059162|35372|2 +638414.47843092|220067.34945462|119.29426864|35373|3 +638409.4351444|220072.00287828|119.91731093|35374|1 +638404.44091375|220076.60761132|120.14089773|35375|1 +638399.40005298|220081.25626701|120.47049687|35376|1 +638394.35955617|220085.90313793|120.63152923|35377|1 +638389.3683436|220090.5068086|121.05518794|35378|1 +638384.32963813|220095.15278188|121.30397325|35379|1 +638379.33914857|220099.75433215|121.55888843|35380|1 +638374.34915657|220104.35531244|121.80125552|35381|1 +638369.31461876|220108.99943328|122.28156204|35382|1 +638364.33064657|220113.59829996|122.92386831|35383|1 +638359.3466071|220118.19615927|123.44112149|35384|1 +638354.36243201|220122.79311792|123.83954448|35385|1 +638349.37793389|220127.38972803|124.16290213|35386|1 +638344.39370879|220131.9859239|124.46742369|35387|1 +638339.36262031|220136.62540849|124.77934946|35388|1 +638334.42613207|220141.1772379|125.04498959|35389|1 +638329.44341728|220145.77208864|125.3555294|35390|1 +638324.45860771|220150.3679055|125.55351771|35391|1 +638319.51779738|220154.92183071|125.59979405|35392|1 +638314.48310141|220159.56286823|125.70563896|35393|1 +638309.53733661|220164.1199629|125.58913421|35394|1 +638304.55001096|220168.71750542|125.71804753|35395|1 +638299.55799056|220173.31800268|125.69074682|35396|1 +638294.61542723|220177.8733542|125.73602786|35397|1 +638289.62427925|220182.47337996|125.76471454|35398|1 +638284.67916563|220187.03070422|125.76584936|35399|1 +638279.73463758|220191.58780703|125.80419128|35400|1 +638274.74536028|220196.18701065|125.93868567|35401|1 +638269.8028931|220200.7429606|126.0640085|35402|1 +638264.81369485|220205.3423016|126.22327352|35403|1 +638259.87451806|220209.89611989|126.45430174|35404|1 +638254.93585419|220214.4496222|126.70376608|35405|1 +638252.17823808|220213.15609799|126.72722516|35406|1 +638257.21039574|220208.50415641|126.42451745|35407|1 +638262.24755651|220203.84872733|126.25313222|35408|1 +638267.2819765|220199.19529852|126.01952741|35409|1 +638272.32204924|220194.53804793|125.94848044|35410|1 +638277.3086265|220189.92881991|125.72422391|35411|1 +638282.39665508|220185.22769955|125.69467217|35412|1 +638287.43795018|220180.570085|125.71174093|35413|1 +638292.477735|220175.91364397|125.70406696|35414|1 +638297.51742356|220171.2574599|125.71535001|35415|1 +638302.55871479|220166.60050021|125.80807012|35416|1 +638307.58905157|220161.95035441|125.5199569|35417|1 +638312.68044292|220157.24846201|125.76121707|35418|1 +638317.71455048|220152.59629807|125.64231247|35419|1 +638322.74680707|220147.9451945|125.44862158|35420|1 +638327.8229305|220143.25210732|125.07869923|35421|1 +638332.86101013|220138.59801064|125.16043394|35422|1 +638337.88954497|220133.94850709|124.75498811|35423|1 +638342.97087663|220129.25261458|124.61729391|35424|1 +638348.00340529|220124.60099026|124.39354898|35425|1 +638353.03661122|220119.94896305|124.19497466|35426|1 +638358.11136258|220115.25439758|123.50840124|35427|1 +638363.14323632|220110.60133197|123.04783308|35428|1 +638368.17427896|220105.9474123|122.39997366|35429|1 +638373.25726223|220101.24833815|122.07063496|35430|1 +638378.34232757|220096.54885931|121.91671847|35431|1 +638383.37873049|220091.8921551|121.51965354|35432|1 +638388.41669269|220087.23499118|121.23528893|35433|1 +638393.50300468|220082.53334191|120.96371427|35434|1 +638398.54239081|220077.87432137|120.61738122|35435|1 +638403.58281212|220073.21489243|120.33376076|35436|1 +638408.62418029|220068.55367182|119.94410935|35437|1 +638413.71365257|220063.85068376|119.85522157|35438|1 +638418.68090041|220059.44480142|141.07651753|35439|1 +638418.704433|220059.36529485|134.39591659|35440|2 +638423.67460392|220054.86567999|145.09291296|35441|1 +638423.80048881|220054.52651665|119.31473255|35442|2 +638428.83718057|220049.8819431|120.35089463|35443|1 +638434.12653329|220044.98463881|119.11162826|35444|1 +638438.97524614|220040.50286084|118.9254067|35445|1 +638444.00128227|220035.87435091|120.68081004|35446|1 +638448.7361089|220031.72665346|146.95447748|35447|1 +638454.11791316|220026.50621578|118.23752173|35448|1 +638458.77171118|220022.4414993|145.45908669|35449|1 +638459.1453181|220021.8725928|119.54981635|35450|2 +638464.10524074|220017.33654094|124.94178638|35451|1 +638469.29655649|220012.46303237|116.00886261|35452|1 +638473.7843733|220008.57923993|146.4377917|35453|1 +638473.89164231|220008.43010136|140.64082232|35454|2 +638479.39500934|220003.13451042|116.20498126|35455|1 +638484.35371992|219998.57143042|118.34670598|35456|1 +638489.4273279|219993.8745951|117.28031313|35457|1 +638494.4952433|219989.18636571|116.60151599|35458|1 +638499.46977258|219984.60080332|117.83135036|35459|1 +638503.97072837|219980.62063272|138.52066842|35460|1 +638504.55337258|219979.89383565|116.65974511|35461|2 +638501.38960108|219979.35379314|141.20794233|35462|1 +638502.04026782|219978.54200049|116.57419667|35463|2 +638496.95195125|219983.21829762|115.9726787|35464|1 +638491.83007357|219987.93741281|116.75173968|35465|1 +638486.71564611|219992.64789052|117.32527791|35466|1 +638481.59093293|219997.37300913|118.49897606|35467|1 +638476.53527357|220002.00576335|116.3376711|35468|1 +638471.41459605|220006.72674485|117.4623954|35469|1 +638466.28742722|220011.43451151|116.35558632|35470|1 +638461.18871104|220016.12534816|116.3319133|35471|1 +638456.11979437|220020.79991289|117.60984716|35472|1 +638450.94882825|220025.57594183|119.74107947|35473|1 +638445.51366418|220030.83832709|150.05457352|35474|1 +638440.77711952|220034.92224798|118.34116212|35475|1 +638435.67958486|220039.61562354|118.73842239|35476|1 +638430.59098066|220044.29909857|118.94254987|35477|1 +638425.33507192|220049.37706183|147.01819465|35478|1 +638425.49778715|220048.98519191|118.95948841|35479|2 +638420.30211642|220053.96595356|142.19926055|35480|1 +638420.33027453|220053.88514992|135.8374687|35481|2 +638415.21269374|220058.59591719|136.10491337|35482|1 +638415.26270401|220058.40799285|119.6564054|35483|2 +638410.21828962|220063.05180737|119.98774398|35484|1 +638405.1273992|220067.73778102|120.2376176|35485|1 +638400.03741818|220072.42372744|120.5816438|35486|1 +638394.94830174|220077.10827931|120.85734845|35487|1 +638389.86035429|220081.79257205|121.22720569|35488|1 +638384.77305247|220086.47562524|121.52248128|35489|1 +638379.73444915|220091.11425325|121.87421865|35490|1 +638374.64798329|220095.79566973|122.07017917|35491|1 +638369.56313322|220100.47669228|122.39153695|35492|1 +638364.52709818|220105.11311099|122.76274294|35493|1 +638359.44500351|220109.79245368|123.18476453|35494|1 +638354.4145782|220114.4261314|123.83760041|35495|1 +638349.38104431|220119.05976876|124.15310736|35496|1 +638344.29890511|220123.7373235|124.36357866|35497|1 +638339.26738036|220128.36958917|124.73573343|35498|1 +638334.2326588|220133.00302829|124.90183525|35499|1 +638329.19992143|220137.63544828|125.1618106|35500|1 +638324.16561111|220142.26856288|125.33446087|35501|1 +638319.17810416|220146.85822946|125.4743968|35502|1 +638314.14288623|220151.49184918|125.60975625|35503|1 +638309.10561998|220156.12671668|125.67030151|35504|1 +638304.15303422|220160.69552823|127.12207627|35505|1 +638299.07402624|220165.35661458|125.66489718|35506|1 +638294.07928094|220169.95305904|125.59248285|35507|1 +638289.08545709|220174.54913424|125.57624195|35508|1 +638284.04507492|220179.18860724|125.61238865|35509|1 +638279.09671794|220183.74257318|125.57487459|35510|1 +638274.10181865|220188.33991631|125.58973883|35511|1 +638269.11438516|220192.9323154|125.82935259|35512|1 +638264.17002409|220197.48399843|125.95358711|35513|1 +638259.18039505|220202.078049|126.14926858|35514|1 +638254.23789162|220206.62861114|126.34173164|35515|1 +638256.02720908|220201.51217414|126.14761287|35516|1 +638261.01429129|220196.90390486|125.90975714|35517|1 +638266.10094274|220192.20489025|125.79727076|35518|1 +638271.09057706|220187.59501626|125.64701917|35519|1 +638276.12390646|220182.943973|125.39420618|35520|1 +638281.21691878|220178.24109555|125.51380843|35521|1 +638286.20843871|220173.63035671|125.46377417|35522|1 +638291.24877047|220168.97512004|125.47392241|35523|1 +638296.33465248|220164.27749274|125.43843613|35524|1 +638301.34380716|220159.65657209|126.09458344|35525|1 +638306.41834092|220154.96630563|125.697472|35526|1 +638311.45421737|220150.31461066|125.63990331|35527|1 +638316.48843419|220145.6639623|125.52630071|35528|1 +638321.56846545|220140.97046934|125.34263714|35529|1 +638326.59889484|220136.32182284|125.05459833|35530|1 +638331.63423503|220131.67069419|125.0041734|35531|1 +638336.71339365|220126.97748029|124.75905298|35532|1 +638341.74242119|220122.32895689|124.33420365|35533|1 +638346.77726945|220117.67791905|124.2407208|35534|1 +638351.85653526|220112.98397724|123.92164196|35535|1 +638356.93503026|220108.28962762|123.47173364|35536|1 +638361.96711528|220103.63797944|123.01032832|35537|1 +638367.04847048|220098.94148696|122.61738408|35538|1 +638372.13102598|220094.24416251|122.25611238|35539|1 +638377.16795652|220089.59020655|122.04549226|35540|1 +638382.25252795|220084.89167977|121.75997423|35541|1 +638387.33780383|220080.192402|121.4623918|35542|1 +638392.37622073|220075.53590637|121.11510068|35543|1 +638397.46318376|220070.83471215|120.77453474|35544|1 +638402.55115601|220066.13274569|120.45316766|35545|1 +638407.59259453|220061.47348273|120.10674161|35546|1 +638412.68170699|220056.77327894|120.11114135|35547|1 +638417.69053055|220052.31317558|139.40140712|35548|1 +638422.6748799|220047.75834448|145.06714704|35549|1 +638427.78656515|220042.96722807|136.92961817|35550|1 +638433.5218708|220037.5203648|119.42573995|35551|1 +638437.73636449|220033.89386619|150.4492665|35552|1 +638438.04482398|220033.33377646|118.44381653|35553|2 +638442.79842677|220029.20809676|149.230278|35554|1 +638447.85865254|220024.52790566|148.4616071|35555|1 +638453.22101908|220019.32194123|119.00001625|35556|1 +638458.34507815|220014.57185984|116.95259294|35557|1 +638463.39377273|220009.90897423|116.95934603|35558|1 +638467.94951679|220005.93908427|144.6401583|35559|1 +638468.44742644|220005.23936288|116.71645804|35560|2 +638473.54894976|220000.52606537|116.52590185|35561|1 +638478.5829107|219995.8838813|117.35802017|35562|1 +638483.63892818|219991.21205639|117.10976505|35563|1 +638488.70020848|219986.53393016|116.6931757|35564|1 +638493.7540786|219981.8658713|116.65159676|35565|1 +638498.06942685|219978.12376579|145.0286749|35566|1 +638489.4684136|219981.66185374|126.33581571|35567|1 +638489.70406699|219981.35919261|116.51852554|35568|2 +638484.57957919|219986.09145272|117.56286389|35569|1 +638479.30212279|219991.02878598|125.97180929|35570|1 +638479.49967428|219990.76582586|116.67782776|35571|2 +638474.16688395|219995.78317545|128.42326456|35572|1 +638474.40272178|219995.46259858|116.56144394|35573|2 +638468.72213465|220000.94956447|145.44081801|35574|1 +638469.18393663|220000.30672021|120.47265489|35575|2 +638469.24863765|220000.21665413|116.97448932|35576|3 +638464.01724775|220005.10629542|124.78671647|35577|1 +638464.14859969|220004.91850462|117.11530891|35578|2 +638459.04487609|220009.62630721|117.55023207|35579|1 +638453.89006642|220014.38435132|118.34638042|35580|1 +638448.77457053|220019.11348993|119.98830209|35581|1 +638443.36511525|220024.33721404|147.36119765|35582|1 +638438.25521971|220029.05470469|148.26043759|35583|1 +638438.53920528|220028.55174508|120.50452277|35584|2 +638433.45096768|220033.23979531|120.31104582|35585|1 +638428.32170947|220037.96506689|120.04835435|35586|1 +638423.07298268|220043.02810074|145.995855|35587|1 +638418.05622682|220047.58272544|138.03029737|35588|1 +638413.00344539|220052.08485113|120.19001111|35589|1 +638407.91407683|220056.77536656|120.16137094|35590|1 +638402.82456335|220061.46938074|120.52063345|35591|1 +638397.73611478|220066.16181751|120.81158371|35592|1 +638392.60113343|220070.89765026|121.15902367|35593|1 +638387.51470003|220075.58866478|121.50095697|35594|1 +638382.42926251|220080.27881775|121.84955964|35595|1 +638377.34426395|220084.96786078|122.11732988|35596|1 +638372.25919272|220089.65610599|122.2855339|35597|1 +638367.17501245|220094.34401889|122.51039505|35598|1 +638362.0936743|220099.03126359|122.96065683|35599|1 +638357.0112923|220103.71789993|123.23009209|35600|1 +638351.97797979|220108.35993367|123.5741462|35601|1 +638346.901539|220113.04369197|124.14422417|35602|1 +638341.82194843|220117.72791865|124.43347221|35603|1 +638336.74006374|220122.4128534|124.560674|35604|1 +638331.66530102|220127.09452613|125.06943466|35605|1 +638326.57759148|220131.78207112|124.87876685|35606|1 +638321.54939617|220136.41998046|125.29310518|35607|1 +638311.43542339|220145.74452235|125.61791391|35608|1 +638306.48785677|220150.33508591|129.15017978|35609|1 +638301.3127098|220155.07436429|125.62529022|35610|1 +638296.2623766|220159.7238174|125.21612367|35611|1 +638291.22756916|220164.36339855|125.39432711|35612|1 +638286.13741788|220169.051864|125.32520561|35613|1 +638281.09529895|220173.69639958|125.29780257|35614|1 +638276.10114623|220178.29700615|125.30550444|35615|1 +638271.05946459|220182.94162127|125.3346097|35616|1 +638266.02639906|220187.58050702|125.61992309|35617|1 +638261.03489487|220192.17968702|125.74639004|35618|1 +638255.99860353|220196.82089382|125.95702877|35619|1 +638255.36179942|220193.35512271|125.88340521|35620|1 +638260.34771716|220188.75290697|125.61575589|35621|1 +638265.33600863|220184.14910403|125.41673509|35622|1 +638270.41814131|220179.45851086|125.18736258|35623|1 +638275.41307839|220174.85043891|125.20082225|35624|1 +638280.45213802|220170.20095523|125.13065895|35625|1 +638285.50198749|220165.54474713|125.42919017|35626|1 +638290.52986713|220160.90268351|125.02840452|35627|1 +638295.79951802|220156.11320801|133.26674605|35628|1 +638295.57199126|220156.25180037|125.12125486|35629|2 +638300.73742598|220151.52806273|129.8870107|35630|1 +638300.64165152|220151.58486819|126.28253513|35631|2 +638305.7623976|220146.88983391|129.61819867|35632|1 +638310.69951981|220142.30034379|125.65723252|35633|1 +638315.82139167|220137.58984842|127.34254697|35634|1 +638320.81184959|220132.96789435|125.29352376|35635|1 +638325.84213777|220128.32455802|125.00031316|35636|1 +638330.87720031|220123.67889478|124.94470714|35637|1 +638335.9049288|220119.03633945|124.4706235|35638|1 +638340.98983914|220114.34591324|124.55184661|35639|1 +638346.01816361|220109.70243468|124.03446321|35640|1 +638351.04846715|220105.05768004|123.57971796|35641|1 +638356.13052454|220100.36733156|123.36822347|35642|1 +638361.21189569|220095.67669306|123.05090267|35643|1 +638366.24629445|220091.02920826|122.71563874|35644|1 +638371.28219084|220086.38116547|122.47430415|35645|1 +638376.36657961|220081.68895753|122.2954868|35646|1 +638381.40328425|220077.039629|121.99213727|35647|1 +638386.48836746|220072.34575319|121.69529898|35648|1 +638391.57415321|220067.65063476|121.33014845|35649|1 +638396.61350127|220062.9990997|121.05258344|35650|1 +638401.70134625|220058.30176305|120.65069089|35651|1 +638406.83764056|220053.56118348|120.41227706|35652|1 +638411.87901855|220048.90964248|120.34815991|35653|1 +638416.91549091|220044.35726115|131.1337464|35654|1 +638421.89653852|220039.89231814|146.08737518|35655|1 +638427.09146799|220034.88414095|121.36512313|35656|1 +638432.00326308|220030.56369036|145.56793608|35657|1 +638432.22202838|220030.14974332|121.22919627|35658|2 +638437.33301882|220025.41568514|119.06204049|35659|1 +638442.07134754|220021.2716793|145.1611508|35660|1 +638442.3834623|220020.75177487|118.53737379|35661|2 +638447.0812953|220016.68060988|148.710811|35662|1 +638452.12415489|220012.03375672|149.3428388|35663|1 +638452.57639451|220011.34435676|118.09187451|35664|2 +638457.53380703|220006.84624832|126.74737281|35665|1 +638457.61250632|220006.73039326|121.78070789|35666|2 +638457.67031819|220006.64528706|118.13223492|35667|3 +638462.28906158|220002.62506376|145.79126243|35668|1 +638467.35378693|219997.94919088|145.40618749|35669|1 +638467.76183302|219997.38171311|123.46153889|35670|2 +638467.87903197|219997.21872218|117.15863659|35671|3 +638472.88085983|219992.62519342|119.56563867|35672|1 +638477.90817144|219988.01477053|122.730596|35673|1 +638478.02474981|219987.85966079|117.26542098|35674|2 +638483.1306554|219983.14641178|116.94579334|35675|1 +638488.18765487|219978.47927415|116.74284718|35676|1 +638481.4387058|219980.25749917|116.91240926|35677|1 +638476.37443924|219984.92686667|117.40240824|35678|1 +638470.86408453|219990.20588753|140.32940815|35679|1 +638471.33012328|219989.56988951|116.9932324|35680|2 +638465.72965683|219994.9896577|146.44334486|35681|1 +638461.1519887|219998.95916731|118.51617505|35682|1 +638455.64365762|220004.28931071|147.43913724|35683|1 +638456.10521261|220003.60673909|118.36393287|35684|2 +638450.61603607|220008.93170716|148.70051393|35685|1 +638445.62551926|220013.48581989|143.84383322|35686|1 +638445.95991088|220012.9525744|118.39590308|35687|2 +638440.6177015|220018.09472503|143.38100473|35688|1 +638440.90909227|220017.60742127|118.64429771|35689|2 +638435.53833461|220022.82957743|149.70410119|35690|1 +638430.01274595|220027.88157258|145.35982744|35691|1 +638425.54942043|220031.96112429|141.80465129|35692|1 +638420.52560372|220036.60119647|143.19823413|35693|1 +638415.52794395|220041.09350049|130.59916401|35694|1 +638415.58081071|220040.95048874|119.93171938|35695|2 +638410.53487552|220045.60284687|120.40660297|35696|1 +638405.4435513|220050.29440219|120.5811322|35697|1 +638400.40032645|220054.9427763|120.88780247|35698|1 +638395.35809307|220059.59052157|121.22592204|35699|1 +638390.26920863|220064.2806686|121.49525498|35700|1 +638385.18115799|220068.97011066|121.77126659|35701|1 +638380.14187221|220073.61542201|122.14144008|35702|1 +638375.0552802|220078.30319842|122.38068177|35703|1 +638369.96931368|220082.99040392|122.62034204|35704|1 +638364.93200839|220087.63329485|122.92254746|35705|1 +638359.89529889|220092.27553233|123.21241871|35706|1 +638354.81022381|220096.96121335|123.37184186|35707|1 +638349.77549123|220101.60224077|123.73091834|35708|1 +638344.6937996|220106.28624765|124.05352255|35709|1 +638339.66346742|220110.9246634|124.57551963|35710|1 +638334.63069198|220115.56345868|124.88520368|35711|1 +638329.54582616|220120.24781301|124.91507168|35712|1 +638324.50818967|220124.88861526|124.94402811|35713|1 +638319.59169529|220129.46881632|130.75894992|35714|1 +638319.473009|220129.52831298|125.10437213|35715|2 +638314.43994973|220134.16688866|125.35860829|35716|1 +638309.35639601|220138.85082587|125.47725244|35717|1 +638304.4838645|220143.38110091|130.22816265|35718|1 +638299.42317207|220148.04959143|130.98435057|35719|1 +638294.46241839|220152.64468704|133.55033861|35720|1 +638294.25346585|220152.77100321|126.03569389|35721|2 +638294.22324326|220152.7892734|124.94879992|35722|3 +638289.23071447|220157.39128612|124.97704942|35723|1 +638284.1401999|220162.08296702|124.92865227|35724|1 +638279.10335366|220166.72707593|125.09690281|35725|1 +638274.10400375|220171.33399995|124.96930104|35726|1 +638269.05805519|220175.98440837|124.90054231|35727|1 +638264.02441433|220180.62672026|125.20042228|35728|1 +638258.98567332|220185.27252225|125.36311965|35729|1 +638253.95162493|220189.91515544|125.6571395|35730|1 +638254.91380698|220185.52043075|125.32954023|35731|1 +638259.90011764|220180.91350601|125.10674409|35732|1 +638264.88842508|220176.30528642|124.94636286|35733|1 +638269.92451584|220171.65315142|124.802083|35734|1 +638274.91846001|220167.04143069|124.83535546|35735|1 +638280.01157228|220162.35297845|126.54631491|35736|1 +638284.99057403|220157.73782508|124.61629862|35737|1 +638289.98777496|220153.12468978|124.8308906|35738|1 +638295.08031721|220148.43945537|126.84878077|35739|1 +638300.19483903|220143.74348454|129.95410442|35740|1 +638305.21410774|220139.10440814|129.53014805|35741|1 +638310.14462391|220134.5132044|125.23274595|35742|1 +638315.18066181|220129.86277216|125.2775061|35743|1 +638320.20939554|220125.2161675|124.99129044|35744|1 +638325.24313344|220120.56709145|124.94894875|35745|1 +638330.27639518|220115.9183461|124.89429151|35746|1 +638335.3079433|220111.27035998|124.74607701|35747|1 +638340.38559946|220106.57897361|124.49713356|35748|1 +638345.41218928|220101.93210917|123.95568646|35749|1 +638350.44414934|220097.28308931|123.73311356|35750|1 +638355.47606874|220092.63361456|123.45446954|35751|1 +638360.50934807|220087.9835947|123.25726258|35752|1 +638365.54202192|220083.33304246|122.93522578|35753|1 +638370.62330075|220078.63805952|122.65691663|35754|1 +638375.65804897|220073.986475|122.43534831|35755|1 +638380.69301982|220069.33391365|122.12649213|35756|1 +638385.77657944|220064.63721895|121.89296173|35757|1 +638390.81314154|220059.98292423|121.55334457|35758|1 +638395.85070443|220055.32754326|121.19517037|35759|1 +638400.93685355|220050.6277006|120.87521717|35760|1 +638405.92869325|220046.01545637|120.62942703|35761|1 +638411.01644796|220041.31490574|120.39760815|35762|1 +638416.05734912|220036.65776907|120.19035527|35763|1 +638421.01182556|220032.1913022|132.6250537|35764|1 +638421.09854362|220032.00102159|120.05830726|35765|2 +638426.02213778|220027.62865516|139.96752254|35766|1 +638430.98993558|220023.07667628|144.05922515|35767|1 +638431.13274038|220022.81481524|129.23128197|35768|2 +638435.98380858|220018.47629959|145.37662645|35769|1 +638441.0118944|220013.85136128|147.48902266|35770|1 +638441.138904|220013.64405531|137.21710817|35771|2 +638446.42497931|220008.62191148|121.1864081|35772|1 +638451.02267335|220004.60545214|147.40008838|35773|1 +638451.40986408|220004.02305433|121.7351664|35774|2 +638456.09129014|219999.91615559|146.43929859|35775|1 +638461.13165371|219995.26838505|147.24059082|35776|1 +638461.65215277|219994.53212299|118.0551418|35777|2 +638466.13035518|219990.6340767|145.20211582|35778|1 +638466.259646|219990.45566328|138.46211374|35779|2 +638466.6611798|219989.90157111|117.53000071|35780|3 +638471.70784776|219985.26181869|119.90750686|35781|1 +638476.85929735|219980.48112413|117.23864117|35782|1 +638470.95006704|219982.52106973|144.89617109|35783|1 +638471.52044915|219981.75833334|117.65716529|35784|2 +638465.93487729|219987.13934452|144.90534264|35785|1 +638466.4605042|219986.421277|118.05817418|35786|2 +638460.94933599|219991.7164307|143.32170591|35787|1 +638461.40794767|219991.07469207|118.14710846|35788|2 +638456.07541463|219996.17993403|140.51106254|35789|1 +638456.40888889|219995.70070837|120.75761481|35790|2 +638450.93237607|220000.9853499|148.4856708|35791|1 +638451.39383722|220000.30135412|118.75401217|35792|2 +638445.95786168|220005.54553955|146.12739142|35793|1 +638446.28634571|220005.04095991|122.92944007|35794|2 +638440.97959374|220010.13978429|147.2881508|35795|1 +638441.24480313|220009.71526501|126.58838684|35796|2 +638436.20538703|220014.39381103|130.9598869|35797|1 +638436.32967132|220014.18495269|120.11909436|35798|2 +638431.04510504|220019.25752404|143.80965849|35799|1 +638426.14395171|220023.71334602|137.22815868|35800|1 +638426.29629429|220023.4216627|119.83789236|35801|2 +638421.15642837|220028.26596352|132.61958426|35802|1 +638421.24941797|220028.07094818|120.05295873|35803|2 +638416.25137113|220032.67467784|120.20665199|35804|1 +638411.20617601|220037.32236316|120.41575592|35805|1 +638406.20959285|220041.92458238|120.5507433|35806|1 +638401.21318301|220046.52832704|120.87942157|35807|1 +638396.17029037|220051.17465218|121.17636218|35808|1 +638391.17596425|220055.77718427|121.58631937|35809|1 +638386.18267091|220060.37805806|121.91496973|35810|1 +638381.14242545|220065.02129582|122.13725428|35811|1 +638376.15079617|220069.62053237|122.45341236|35812|1 +638371.11164121|220074.26238808|122.6321832|35813|1 +638366.07387061|220078.90406077|122.93611875|35814|1 +638361.08437384|220083.50122168|123.23982175|35815|1 +638356.09520525|220088.09775034|123.50597348|35816|1 +638351.05737115|220092.73785607|123.62269217|35817|1 +638346.06976877|220097.33338098|123.93881304|35818|1 +638341.08511229|220101.92738572|124.39233975|35819|1 +638336.05283332|220106.56465338|124.77176851|35820|1 +638331.11057554|220111.11597278|124.81171034|35821|1 +638326.07747434|220115.75313146|125.09123802|35822|1 +638321.0856482|220120.34929198|125.03217174|35823|1 +638316.03989261|220124.99274146|124.69334524|35824|1 +638311.05579752|220129.58536256|125.04667321|35825|1 +638306.06540103|220134.18129402|125.11252049|35826|1 +638301.22191671|220138.69290615|131.05699744|35827|1 +638301.07063709|220138.77983985|125.01587503|35828|2 +638296.04909993|220143.3939003|123.95093325|35829|1 +638291.27636196|220147.85593548|132.02484728|35830|1 +638291.07467292|220147.97864041|124.75381608|35831|2 +638286.07403323|220152.57923612|124.60089488|35832|1 +638281.07446146|220157.17944634|124.5166673|35833|1 +638276.08076756|220161.77608636|124.64476206|35834|1 +638271.03718167|220166.41820355|124.71289757|35835|1 +638266.08006967|220170.9785394|124.54488888|35836|1 +638261.09352213|220175.57071485|124.91641114|35837|1 +638256.09790992|220180.16907562|125.03810628|35838|1 +638253.79869462|220178.55138798|124.93855867|35839|1 +638258.79094673|220173.94370295|124.8586285|35840|1 +638263.81971203|220169.29970958|124.47628828|35841|1 +638268.87205191|220164.64007269|124.79354397|35842|1 +638273.85994333|220160.03569947|124.63259533|35843|1 +638278.8962131|220155.38701711|124.50677951|35844|1 +638283.93435375|220150.73726509|124.45610343|35845|1 +638289.12089406|220145.99718061|129.74643295|35846|1 +638288.97722675|220146.08478173|124.59302558|35847|2 +638293.99312418|220141.44863111|123.74940097|35848|1 +638299.01371518|220136.82563571|124.9130904|35849|1 +638304.10017265|220132.13256579|125.00510357|35850|1 +638309.21744346|220127.44177651|128.62292719|35851|1 +638314.11840351|220122.88497626|124.71998552|35852|1 +638319.16314839|220118.23359673|125.18292563|35853|1 +638324.24259933|220113.54492189|125.0387481|35854|1 +638329.22615311|220108.94421691|124.84095513|35855|1 +638334.30617745|220104.25523808|124.72234818|35856|1 +638339.33811842|220099.61022835|124.56127861|35857|1 +638344.3175917|220095.01012534|124.00117215|35858|1 +638349.39818129|220090.32008565|123.82092232|35859|1 +638354.43118396|220085.67360648|123.60410722|35860|1 +638359.46517954|220081.02676036|123.44995818|35861|1 +638364.49849609|220076.37939449|123.16473781|35862|1 +638369.53224027|220071.7312564|122.83593862|35863|1 +638374.56709802|220067.08258139|122.5635826|35864|1 +638379.6500471|220062.38912552|122.24147139|35865|1 +638384.68672843|220057.73991058|122.10082853|35866|1 +638389.72365279|220053.08786492|121.66038941|35867|1 +638394.80931359|220048.3920777|121.35807238|35868|1 +638399.80082958|220043.78309876|121.05505771|35869|1 +638404.84080846|220039.12959762|120.77143725|35870|1 +638409.92888869|220034.43250633|120.57631388|35871|1 +638414.97017482|220029.778563|120.38069752|35872|1 +638420.01084374|220025.12681953|120.37275381|35873|1 +638425.05188499|220020.47467882|120.35876394|35874|1 +638429.84877086|220016.20911861|138.91407775|35875|1 +638434.8617751|220011.6206325|143.24981248|35876|1 +638439.85996062|220007.01635549|144.19762629|35877|1 +638444.8371885|220002.41411915|143.15705516|35878|1 +638445.13769399|220001.95448655|122.15843443|35879|2 +638449.79671811|219997.86606287|146.47269197|35880|1 +638455.10440124|219992.81496102|128.84782554|35881|1 +638455.21197851|219992.66086788|122.53201237|35882|2 +638455.2442198|219992.61468561|120.63913808|35883|3 +638460.32796814|219987.90410968|118.43378921|35884|1 +638464.83064374|219983.98785873|145.97420977|35885|1 +638465.37719216|219983.24345104|118.30897798|35886|2 +638469.87931697|219979.31280803|144.13650431|35887|1 +638469.96729365|219979.1954799|139.97042469|35888|2 +638466.56186829|219978.05556304|144.4532112|35889|1 +638461.38984451|219982.84860311|147.65223163|35890|1 +638456.85581218|219986.7916842|121.0461094|35891|1 +638446.29746563|219996.7064272|142.37236661|35892|1 +638441.22808919|220001.41045574|146.21452116|35893|1 +638431.1641701|220010.64120184|141.55700079|35894|1 +638426.17382001|220015.17234413|134.00155848|35895|1 +638426.30770149|220014.92747275|120.16716594|35896|2 +638421.26595378|220019.57583159|120.56711443|35897|1 +638416.17434413|220024.26616979|120.5099271|35898|1 +638411.08193249|220028.95873265|120.62191119|35899|1 +638406.03782849|220033.606376|120.69134895|35900|1 +638400.9458413|220038.30048424|121.02281775|35901|1 +638395.85505811|220042.99288658|121.28599291|35902|1 +638390.81269436|220047.64069844|121.55624673|35903|1 +638385.77138065|220052.288915|121.98294712|35904|1 +638380.73097297|220056.9351531|122.27859478|35905|1 +638375.69144661|220061.58063864|122.58066997|35906|1 +638370.60470353|220066.26879702|122.78303011|35907|1 +638365.61395722|220070.8689745|123.0479075|35908|1 +638360.57726579|220075.51251953|123.42553171|35909|1 +638355.53986768|220080.15518316|123.62833835|35910|1 +638350.50202862|220084.79754929|123.7500893|35911|1 +638345.51300832|220089.39571231|123.96507195|35912|1 +638340.48027381|220094.03634074|124.4245146|35913|1 +638335.49329878|220098.63295366|124.67696481|35914|1 +638330.50402021|220103.23021412|124.76063429|35915|1 +638325.46817787|220107.87092332|124.90163061|35916|1 +638320.52276394|220112.42607984|124.79656705|35917|1 +638315.48250181|220117.06906846|124.73148252|35918|1 +638310.48443881|220121.67121123|124.44641098|35919|1 +638305.49277603|220126.27035636|124.49244547|35920|1 +638300.50609301|220130.8668366|124.75709961|35921|1 +638295.55799011|220135.42459158|124.66372838|35922|1 +638290.53883852|220140.04074241|123.72876032|35923|1 +638285.56093735|220144.63282412|124.36173691|35924|1 +638280.71198992|220149.12973408|127.70318614|35925|1 +638275.61700942|220153.79501266|124.36965272|35926|1 +638270.67278447|220158.35185584|124.52518772|35927|1 +638265.67680971|220162.95540598|124.5643668|35928|1 +638260.72135876|220167.5199743|124.41975209|35929|1 +638255.7790693|220172.07585378|124.66827695|35930|1 +638257.0289987|220166.79241485|124.44402042|35931|1 +638262.06408463|220162.13880549|124.27254217|35932|1 +638267.10996583|220157.47822682|124.43850447|35933|1 +638272.1452321|220152.82478161|124.30493096|35934|1 +638277.22371277|220148.13029009|124.03813741|35935|1 +638282.25836743|220143.4773468|123.8988247|35936|1 +638287.30391501|220138.81796612|124.16576708|35937|1 +638292.43923138|220134.09063822|126.10524327|35938|1 +638297.43197425|220129.4627062|124.42992823|35939|1 +638302.50742323|220124.77034568|124.08998551|35940|1 +638307.59825463|220120.0698425|124.43149093|35941|1 +638312.63546226|220115.41676611|124.54368896|35942|1 +638317.67099434|220110.76479006|124.60609457|35943|1 +638322.80563053|220106.02370715|124.9288011|35944|1 +638327.83696992|220101.37409902|124.82313292|35945|1 +638332.86961088|220096.72406645|124.80513399|35946|1 +638337.99340235|220091.98760929|124.52321575|35947|1 +638343.02118107|220087.3384449|124.09959424|35948|1 +638348.10035814|220082.6440916|123.92554871|35949|1 +638353.17972297|220077.94945452|123.73942016|35950|1 +638358.21236749|220073.29835964|123.60404211|35951|1 +638363.29188634|220068.60285311|123.33738808|35952|1 +638368.3717292|220063.90649746|123.0086633|35953|1 +638373.45277955|220059.20975093|122.76160812|35954|1 +638378.53444351|220054.51221663|122.48998695|35955|1 +638383.61690105|220049.81400641|122.22504445|35956|1 +638388.6526219|220045.15673464|121.71640471|35957|1 +638393.7368349|220040.45828995|121.6084576|35958|1 +638398.82225448|220035.7562363|121.21970846|35959|1 +638403.90820362|220031.0552515|121.00640012|35960|1 +638408.94746955|220026.3972035|120.78016231|35961|1 +638414.08133475|220021.65369886|120.75608931|35962|1 +638419.12009296|220016.9982924|120.77421848|35963|1 +638424.20035964|220012.30410169|120.73736484|35964|1 +638429.09196787|220007.90443759|134.23996301|35965|1 +638434.15764316|220003.19183773|130.62183244|35966|1 +638434.28227675|220002.98661683|120.48114741|35967|2 +638439.1191827|219998.68074267|138.85169074|35968|1 +638439.37861954|219998.27242762|119.86450474|35969|2 +638444.18681914|219993.99587352|138.55327115|35970|1 +638444.43624557|219993.61814422|121.96605509|35971|2 +638449.08428192|219989.53536821|145.82509299|35972|1 +638454.04790746|219984.97100988|148.2861756|35973|1 +638454.58052125|219984.21270793|118.29487648|35974|2 +638459.12032168|219980.27478714|147.20737418|35975|1 +638457.75319319|219977.8662816|147.85967055|35976|1 +638452.69929473|219982.51761965|147.68261123|35977|1 +638453.21780751|219981.78319701|118.62214088|35978|2 +638447.68879381|219987.10574585|144.8758095|35979|1 +638448.10454747|219986.49971564|119.63078831|35980|2 +638442.93865776|219991.26967026|121.19431461|35981|1 +638437.8571643|219995.94119662|120.42356941|35982|1 +638432.76238728|220000.63330862|120.59667547|35983|1 +638427.62233741|220005.36606149|120.64389129|35984|1 +638422.52905229|220010.05691103|120.83050353|35985|1 +638417.44366012|220014.73987892|120.94896165|35986|1 +638412.35239228|220019.42782835|121.01768317|35987|1 +638407.21501588|220024.15676345|120.9109918|35988|1 +638402.12382577|220028.84596724|121.13068115|35989|1 +638397.03349696|220033.53427628|121.3382968|35990|1 +638391.94368524|220038.22371191|121.72757615|35991|1 +638386.85508419|220042.90982884|121.86730743|35992|1 +638381.76723118|220047.59679849|122.18244231|35993|1 +638376.68041541|220052.28309734|122.52924975|35994|1 +638371.59426188|220056.96807227|122.79523404|35995|1 +638366.50885199|220061.65236535|123.06161832|35996|1 +638361.42397766|220066.33594186|123.3034273|35997|1 +638356.38830364|220070.97529928|123.67654015|35998|1 +638351.30322205|220075.65764466|123.75654473|35999|1 +638346.26656047|220080.2959858|123.9113728|36000|1 +638341.18575402|220084.97725922|124.31704187|36001|1 +638336.15198722|220089.61415535|124.60979668|36002|1 +638331.07116077|220094.29423953|124.87864592|36003|1 +638326.03252484|220098.93231251|124.79689261|36004|1 +638320.99504007|220103.57015344|124.80904073|36005|1 +638315.90365501|220108.25490509|124.50398897|36006|1 +638310.86163787|220112.8954393|124.34792377|36007|1 +638305.81783553|220117.53722908|124.14830765|36008|1 +638300.77727583|220122.177637|124.13007617|36009|1 +638295.73188702|220126.82095413|123.93711081|36010|1 +638290.69651706|220131.45878802|124.16914363|36011|1 +638285.65228901|220136.10246246|124.07027504|36012|1 +638280.64487467|220140.70928479|123.62593849|36013|1 +638275.61033037|220145.34767011|123.92089782|36014|1 +638270.62127615|220149.94347337|124.14494971|36015|1 +638265.62888344|220154.54147398|124.2690075|36016|1 +638260.62760115|220159.14546625|124.14324748|36017|1 +638255.58617919|220163.78860638|124.2574919|36018|1 +638258.92096704|220157.38801858|124.13514563|36019|1 +638263.96603367|220152.72975202|124.27613266|36020|1 +638269.00096792|220148.07832699|124.13006686|36021|1 +638274.03542849|220143.42728825|123.97794561|36022|1 +638279.01606041|220138.82406962|123.61579025|36023|1 +638284.06866215|220134.16214122|124.1323272|36024|1 +638294.13576534|220124.86203863|123.86048278|36025|1 +638299.17570462|220120.20858371|124.00911586|36026|1 +638304.25992258|220115.51334137|124.05020181|36027|1 +638309.30109902|220110.85995493|124.33681745|36028|1 +638314.33736984|220106.20940573|124.42994683|36029|1 +638319.37512921|220101.55852435|124.64199013|36030|1 +638324.41279317|220096.90816804|124.90423511|36031|1 +638334.52218801|220087.56943492|124.67232322|36032|1 +638339.55199478|220082.92202979|124.44153685|36033|1 +638344.6283654|220078.23040946|124.06660084|36034|1 +638349.66020243|220073.58179482|123.91126118|36035|1 +638354.69284483|220068.93298685|123.81859688|36036|1 +638359.77279742|220064.24010086|123.67588903|36037|1 +638364.85134424|220059.5457842|123.22110657|36038|1 +638369.88455843|220054.89531539|122.99797556|36039|1 +638374.96591777|220050.20049292|122.7814116|36040|1 +638380.04771196|220045.50407057|122.42776737|36041|1 +638385.08302838|220040.85107527|122.13667757|36042|1 +638390.16660461|220036.15471918|121.97752418|36043|1 +638395.25137631|220031.45523926|121.58756581|36044|1 +638400.28889913|220026.80142325|121.43477483|36045|1 +638405.37424921|220022.10404462|121.34553358|36046|1 +638410.45983593|220017.40677773|121.29423429|36047|1 +638415.49861066|220012.75236641|121.2047698|36048|1 +638420.57862644|220008.05997856|121.12280255|36049|1 +638425.66791455|220003.35718857|120.82897803|36050|1 +638430.75701593|219998.65555603|120.64808639|36051|1 +638435.84575919|219993.95508219|120.56137523|36052|1 +638440.93857117|219989.24889637|120.2501936|36053|1 +638445.58483673|219985.16834401|144.4019305|36054|1 +638445.98333114|219984.58801043|120.05012169|36055|2 +638450.62650185|219980.54258731|147.8965707|36056|1 +638451.14157023|219979.81396363|118.87966986|36057|2 +638448.23668044|219979.01540764|147.98329116|36058|1 +638443.24600046|219983.58422544|144.03648231|36059|1 +638438.63042682|219987.63736688|120.48795631|36060|1 +638433.53838143|219992.33438309|120.54486458|36061|1 +638428.44528983|219997.03355698|120.73969028|36062|1 +638423.39875499|220001.69136393|121.11750984|36063|1 +638418.17200572|220006.51375822|121.30345235|36064|1 +638413.2248309|220011.07760469|121.41564107|36065|1 +638408.18372782|220015.7273783|121.44438356|36066|1 +638403.09538199|220020.42083549|121.48498582|36067|1 +638398.00696141|220025.11533718|121.63852094|36068|1 +638392.96648766|220029.76637131|121.88058107|36069|1 +638387.87938877|220034.4599283|122.0661143|36070|1 +638382.79295068|220039.15309444|122.27707859|36071|1 +638377.75488163|220043.80250847|122.588716|36072|1 +638372.67018189|220048.49483032|122.88792624|36073|1 +638367.58639973|220053.18641661|123.20005665|36074|1 +638362.50291088|220057.87687103|123.41262085|36075|1 +638357.42090476|220062.56709286|123.75685169|36076|1 +638352.33735302|220067.25626121|123.8140111|36077|1 +638347.30258517|220071.90150387|123.99610268|36078|1 +638342.21998608|220076.59033743|124.11648627|36079|1 +638337.14202038|220081.27797358|124.59349997|36080|1 +638332.10759889|220085.92214435|124.68886178|36081|1 +638327.02654009|220090.60972532|124.82910466|36082|1 +638321.94163953|220095.29880458|124.73231038|36083|1 +638316.90083501|220099.94585054|124.47853001|36084|1 +638311.81466298|220104.63616199|124.38873996|36085|1 +638306.72618289|220109.32790622|124.21815469|36086|1 +638301.68071882|220113.97855761|123.88400697|36087|1 +638296.59330807|220118.67045302|123.8454139|36088|1 +638291.55217959|220123.31942457|123.7804689|36089|1 +638286.51275695|220127.9674477|123.80942533|36090|1 +638281.46894571|220132.61526195|123.73865741|36091|1 +638276.37271181|220137.31021632|123.52658621|36092|1 +638271.34056286|220141.95108736|123.89982929|36093|1 +638266.30087133|220146.59677114|124.023422|36094|1 +638261.25814867|220151.24454777|124.06603343|36095|1 +638256.26080205|220155.85006177|124.06249876|36096|1 +638257.15627229|220151.00916125|124.01497598|36097|1 +638262.19476743|220146.35682846|123.97254128|36098|1 +638267.18557067|220141.74862444|123.94516615|36099|1 +638272.22160189|220137.09818963|123.85931076|36100|1 +638277.24750901|220132.45411246|123.43009889|36101|1 +638282.24229537|220127.84386437|123.59021967|36102|1 +638287.28325175|220123.1908916|123.7359692|36103|1 +638292.31283861|220118.54467088|123.45085115|36104|1 +638297.35854639|220113.8895987|123.85940377|36105|1 +638302.39622936|220109.23932962|123.96827176|36106|1 +638307.4354461|220104.58862342|124.18981217|36107|1 +638312.47213481|220099.93954549|124.33031551|36108|1 +638317.5079663|220095.29120542|124.46475408|36109|1 +638322.54339941|220090.64339432|124.61814037|36110|1 +638327.5791293|220085.99590988|124.84044353|36111|1 +638332.60890763|220081.35060829|124.68172732|36112|1 +638337.63866062|220076.7049517|124.47942298|36113|1 +638342.66735627|220072.0590244|124.13354573|36114|1 +638347.74664368|220067.36859331|124.03738396|36115|1 +638352.77807335|220062.72177225|123.8794491|36116|1 +638357.80918959|220058.07437653|123.62167827|36117|1 +638362.88881144|220053.3828317|123.43275919|36118|1 +638367.92120485|220048.73437018|123.18795504|36119|1 +638372.95436413|220044.08552643|122.98083239|36120|1 +638378.03542628|220039.39065526|122.56167574|36121|1 +638383.07013314|220034.74028207|122.34251658|36122|1 +638388.10532982|220030.09059453|122.25479153|36123|1 +638393.18921927|220025.3937748|121.9116676|36124|1 +638398.22554678|220020.74310486|121.83067704|36125|1 +638403.26252698|220016.09150903|121.71237704|36126|1 +638408.29941284|220011.44081476|121.68799709|36127|1 +638413.33733696|220006.78845703|121.58258005|36128|1 +638418.41651736|220002.09805369|121.47841876|36129|1 +638423.45709967|219997.44184137|121.2110299|36130|1 +638428.50075829|219992.78143592|120.78765024|36131|1 +638433.59101677|219988.07963177|120.54729234|36132|1 +638438.63255168|219983.42406428|120.45561403|36133|1 +638443.26226774|219979.36311768|145.12801787|36134|1 +638437.4565744|219980.41302892|129.68355295|36135|1 +638437.60263211|219980.19608184|120.24362655|36136|2 +638432.59947017|219984.80971825|120.56617495|36137|1 +638427.55081666|219989.46481634|120.83098722|36138|1 +638422.54907901|219994.07801306|121.25363203|36139|1 +638417.50216215|219998.73216766|121.59376079|36140|1 +638412.46518772|220003.37508782|121.69683377|36141|1 +638407.46959576|220007.97957078|121.76970389|36142|1 +638402.42734005|220012.62655008|121.77913589|36143|1 +638397.38465349|220017.2752903|121.94499587|36144|1 +638392.34277339|220021.92296322|122.07355572|36145|1 +638387.30116506|220026.57163724|122.34606056|36146|1 +638382.26056358|220031.21781038|122.43752493|36147|1 +638377.26799696|220035.82114891|122.69822582|36148|1 +638372.22898059|220040.46842198|123.08368213|36149|1 +638367.19025911|220045.11341018|123.23809162|36150|1 +638362.19952611|220049.71419146|123.39889143|36151|1 +638357.16214032|220054.35860797|123.62854298|36152|1 +638352.12600211|220059.00263811|123.94586379|36153|1 +638347.13635978|220063.60203434|124.06298245|36154|1 +638342.0986571|220068.24511894|124.10557529|36155|1 +638337.0648596|220072.8875413|124.485804|36156|1 +638332.07761813|220077.48581789|124.72796645|36157|1 +638327.04174232|220082.12776879|124.83345789|36158|1 +638322.00033364|220086.77172399|124.58292385|36159|1 +638317.00652016|220091.3723154|124.39395826|36160|1 +638311.96635423|220096.01660067|124.31241889|36161|1 +638306.92277298|220100.66278639|124.08736241|36162|1 +638301.93018182|220105.26377828|124.07347486|36163|1 +638296.88093607|220109.91367555|123.67376822|36164|1 +638291.87794981|220114.52099857|123.28509349|36165|1 +638286.83097171|220119.1706585|123.09815569|36166|1 +638281.80209512|220123.81107506|123.61109285|36167|1 +638276.80388915|220128.42027421|123.44749321|36168|1 +638271.7690486|220133.06681558|123.69207412|36169|1 +638266.7777215|220137.67205729|123.80337917|36170|1 +638261.78484414|220142.27840139|123.87717947|36171|1 +638256.74337095|220146.92942994|123.93475746|36172|1 +638254.48915083|220145.81694861|123.97831768|36173|1 +638259.47975177|220141.20700058|123.93323197|36174|1 +638264.51515457|220136.55513097|123.81709929|36175|1 +638269.55038743|220131.90347537|123.70739414|36176|1 +638274.58177407|220127.25430495|123.47297077|36177|1 +638279.61753786|220122.60248733|123.40114246|36178|1 +638284.64199355|220117.95742001|122.89843725|36179|1 +638289.68633228|220113.30079403|123.18933171|36180|1 +638294.72839117|220108.64590194|123.43672175|36181|1 +638299.72367712|220104.0349132|123.77328793|36182|1 +638304.81498111|220099.3363533|124.22580075|36183|1 +638309.84880682|220094.68698758|124.23013537|36184|1 +638314.83659475|220090.08100384|124.34201714|36185|1 +638319.87362535|220085.43087636|124.60281105|36186|1 +638324.95578187|220080.73832463|124.76915471|36187|1 +638329.94019484|220076.13460472|124.78125633|36188|1 +638335.01849236|220071.44343444|124.69197788|36189|1 +638340.0474077|220066.79616638|124.40991081|36190|1 +638345.07693177|220062.14833623|124.12802047|36191|1 +638350.10873546|220057.50022586|124.05876875|36192|1 +638355.18715752|220052.80778662|123.83328439|36193|1 +638360.17094|220048.20232152|123.57082546|36194|1 +638365.2507968|220043.50910214|123.40842575|36195|1 +638370.28361211|220038.8593233|123.25250937|36196|1 +638375.3167555|220034.2078087|122.9280262|36197|1 +638380.35083763|220029.55591239|122.65997691|36198|1 +638385.43299215|220024.86107442|122.55513659|36199|1 +638390.46832117|220020.20872643|122.36882201|36200|1 +638395.50405945|220015.55654286|122.2451921|36201|1 +638400.54072603|220010.90297316|122.05925889|36202|1 +638405.57797102|220006.24908743|121.89851489|36203|1 +638410.6622326|220001.55307488|121.8828414|36204|1 +638415.69347078|219996.90505698|121.75991842|36205|1 +638420.73397777|219992.24694754|121.45615961|36206|1 +638425.77705735|219987.58556189|121.04639776|36207|1 +638430.82009114|219982.92518344|120.74932692|36208|1 +638435.86332854|219978.2652043|120.52121946|36209|1 +638431.10797488|219979.19504285|120.6533884|36210|1 +638426.01151033|219983.89246193|120.88213769|36211|1 +638420.91315117|219988.59372549|121.36127219|36212|1 +638415.91330748|219993.20279747|121.68102075|36213|1 +638410.54158834|219998.15425223|121.93528481|36214|1 +638405.78340386|220002.5383715|122.00500163|36215|1 +638400.73961325|220007.18690584|122.1991018|36216|1 +638395.69719938|220011.83323096|122.28091092|36217|1 +638390.65493917|220016.48008865|122.4441664|36218|1 +638385.61340266|220021.12601797|122.57636324|36219|1 +638380.57245027|220025.77093242|122.65250759|36220|1 +638375.53190296|220030.41694201|122.90384158|36221|1 +638370.49231114|220035.06290731|123.25535571|36222|1 +638365.4533202|220039.70716359|123.46955702|36223|1 +638360.46226245|220044.30684859|123.64018881|36224|1 +638355.47209202|220048.90633767|123.88575571|36225|1 +638350.43393089|220053.54877315|123.975276|36226|1 +638345.44471909|220058.14732195|124.21459211|36227|1 +638340.45463664|220062.74546457|124.31011205|36228|1 +638335.41933855|220067.38692643|124.59991819|36229|1 +638330.43058568|220071.98441269|124.76416896|36230|1 +638325.44062016|220076.58196553|124.80337595|36231|1 +638320.44674363|220081.18097332|124.5863097|36232|1 +638315.45242232|220085.78059463|124.39420011|36233|1 +638310.45940656|220090.3800066|124.32076258|36234|1 +638305.51431028|220094.93563335|124.29595474|36235|1 +638300.51008544|220099.54123643|123.72871381|36236|1 +638295.50899812|220104.14587823|123.39264993|36237|1 +638290.50947824|220108.75012161|123.18152752|36238|1 +638285.55580922|220113.31185533|122.94360668|36239|1 +638280.55332814|220117.91856033|122.70110007|36240|1 +638270.62411922|220127.06506685|123.39446378|36241|1 +638265.682099|220131.61617086|123.69288337|36242|1 +638260.68628557|220136.21516856|123.7872871|36243|1 +638255.73693169|220140.77113682|123.86040837|36244|1 +638256.96053982|220135.99086594|123.78004102|36245|1 +638261.99918331|220131.34144373|123.70278046|36246|1 +638267.02806858|220126.69836754|123.30716661|36247|1 +638272.06000455|220122.05326029|123.00540768|36248|1 +638277.08670342|220117.41126516|122.49767952|36249|1 +638282.13211415|220112.7579651|122.70227209|36250|1 +638287.1807444|220108.10321151|123.08826791|36251|1 +638292.22293073|220103.45257826|123.25583011|36252|1 +638297.26419912|220098.80279274|123.42359694|36253|1 +638302.35664104|220094.10774723|123.82137811|36254|1 +638307.40386858|220089.45612273|124.42708189|36255|1 +638312.43765509|220084.81126752|124.35811852|36256|1 +638317.47529879|220080.16499576|124.54554931|36257|1 +638322.51267659|220075.51928486|124.7706523|36258|1 +638327.5937854|220070.8313711|124.77020581|36259|1 +638332.62706816|220066.18720249|124.72705487|36260|1 +638337.65878104|220061.54323418|124.53409882|36261|1 +638342.69015394|220056.89890545|124.26004989|36262|1 +638347.77156005|220052.21058113|124.24213467|36263|1 +638352.80398902|220047.56544092|123.9872939|36264|1 +638357.83808638|220042.92059075|123.95136114|36265|1 +638362.91872553|220038.23017496|123.59694485|36266|1 +638367.95321222|220033.58393009|123.43647991|36267|1 +638372.9881539|220028.93675026|123.21370236|36268|1 +638378.07144354|220024.24364521|122.829046|36269|1 +638383.10774924|220019.59630924|122.73798161|36270|1 +638388.19218854|220014.90413277|122.59154374|36271|1 +638393.27710012|220010.21173268|122.47050903|36272|1 +638398.26785365|220005.6056735|122.2918312|36273|1 +638403.35332895|220000.91349306|122.25891222|36274|1 +638408.86862841|219995.8236325|122.0619285|36275|1 +638413.47411872|219991.57283503|121.88671094|36276|1 +638418.51683586|219986.91758571|121.55361432|36277|1 +638423.60971292|219982.21527151|121.12230025|36278|1 +638428.606755|219977.60265193|120.85061397|36279|1 +638421.611985|219980.2945513|121.154996|36280|1 +638416.51373113|219984.99355673|121.58111968|36281|1 +638411.41801419|219989.68945183|121.91398374|36282|1 +638406.14087726|219994.55175377|122.14292837|36283|1 +638401.19104228|219999.11180296|122.31152307|36284|1 +638396.09987609|220003.80140717|122.38964869|36285|1 +638390.96132957|220008.53525553|122.53617957|36286|1 +638385.87104372|220013.22441887|122.65904673|36287|1 +638380.78130553|220017.91303024|122.77610029|36288|1 +638375.6919866|220022.60213565|122.99983592|36289|1 +638370.60349353|220027.29140862|123.33649511|36290|1 +638365.51570024|220031.97880705|123.52358174|36291|1 +638360.42819392|220036.66527533|123.62987314|36292|1 +638355.34173477|220041.35201936|123.88656496|36293|1 +638350.25538041|220046.03789502|124.04994136|36294|1 +638345.16924393|220050.7233773|124.18873317|36295|1 +638340.08362337|220055.40858201|124.35295603|36296|1 +638334.9993791|220060.09335278|124.61757297|36297|1 +638329.95902767|220064.73471833|124.52573653|36298|1 +638324.87654397|220069.41854025|124.87232072|36299|1 +638319.83258315|220074.06112378|124.52474124|36300|1 +638314.74339052|220078.74722934|124.39710226|36301|1 +638309.70546004|220083.38817473|124.52495518|36302|1 +638304.65537611|220088.03492163|123.99689333|36303|1 +638299.60436981|220092.68288245|123.51279168|36304|1 +638294.50853272|220097.37389026|123.23662194|36305|1 +638289.51191398|220101.9753587|123.1950802|36306|1 +638284.46016291|220106.62524794|122.86162082|36307|1 +638279.40891451|220111.2752978|122.603357|36308|1 +638274.35643502|220115.92648565|122.34534432|36309|1 +638269.36607717|220120.52741087|122.6039058|36310|1 +638264.34252493|220125.16337436|123.33935076|36311|1 +638259.35437741|220129.76307493|123.63537979|36312|1 +638254.36235241|220134.36531999|123.80644876|36313|1 +638254.463772|220130.89412497|123.76601394|36314|1 +638259.49038421|220126.24803349|123.33398363|36315|1 +638264.51352465|220121.60402011|122.76470561|36316|1 +638269.54224106|220116.95624292|122.36423623|36317|1 +638274.58292634|220112.30098782|122.40120149|36318|1 +638279.67606608|220107.59919091|122.6614652|36319|1 +638284.72058951|220102.94228159|122.93015631|36320|1 +638289.76388752|220098.28649839|123.19907067|36321|1 +638294.84909655|220093.590345|123.25430461|36322|1 +638299.89045851|220088.93640737|123.53002787|36323|1 +638304.97976523|220084.23896795|123.89220184|36324|1 +638310.02272119|220079.58549776|124.40592035|36325|1 +638315.10380179|220074.8928064|124.41894283|36326|1 +638320.13827284|220070.24379524|124.52074147|36327|1 +638325.22627898|220065.54966439|125.14066766|36328|1 +638330.30035047|220060.85937339|124.65488239|36329|1 +638335.33255163|220056.21140291|124.62622362|36330|1 +638340.41049361|220051.51963374|124.39735341|36331|1 +638345.48992512|220046.82761361|124.30640994|36332|1 +638350.52129698|220042.17887986|124.09101801|36333|1 +638355.60083641|220037.48595034|123.90077807|36334|1 +638360.68107498|220032.79288808|123.77345536|36335|1 +638365.76166779|220028.09940023|123.63404964|36336|1 +638370.79516944|220023.4490144|123.45723217|36337|1 +638375.87698136|220018.75257394|123.09356992|36338|1 +638380.95945441|220014.05705439|122.91782215|36339|1 +638386.04237886|220009.36152347|122.79249002|36340|1 +638391.07824925|220004.70947497|122.6792781|36341|1 +638396.16244167|220000.0125817|122.52969623|36342|1 +638401.24691502|219995.31583992|122.4305486|36343|1 +638406.32635902|219990.62281921|122.21919363|36344|1 +638411.36662168|219985.96499027|121.89465465|36345|1 +638416.45591098|219981.26182906|121.55300041|36346|1 +638416.50689691|219977.63621866|121.42606836|36347|1 +638411.41031584|219982.33137131|121.82013812|36348|1 +638406.31563945|219987.02442421|122.17092671|36349|1 +638401.27769136|219991.66378901|122.34845112|36350|1 +638396.18606485|219996.35278096|122.54376052|36351|1 +638391.09536945|220001.04076679|122.72077332|36352|1 +638386.00560208|220005.72754866|122.85447706|36353|1 +638380.91643846|220010.41372642|122.98234858|36354|1 +638375.82769002|220015.10012196|123.1856482|36355|1 +638370.78714701|220019.74309115|123.51474505|36356|1 +638365.69993396|220024.4279794|123.70626863|36357|1 +638360.56574497|220029.1559705|123.87308669|36358|1 +638355.52692031|220033.79570479|123.99683752|36359|1 +638350.44096162|220038.47894259|124.1271275|36360|1 +638345.35533494|220043.16187687|124.25781746|36361|1 +638340.31791265|220047.80076956|124.43857888|36362|1 +638335.23403047|220052.48305316|124.68872225|36363|1 +638325.1105477|220061.80358819|124.78955351|36364|1 +638320.02107022|220066.48696737|124.53461972|36365|1 +638314.93308267|220071.17018816|124.43007706|36366|1 +638309.89051439|220075.81077073|124.23114927|36367|1 +638304.79607975|220080.4975761|123.83366576|36368|1 +638299.74713349|220085.14218781|123.40407252|36369|1 +638294.70248885|220089.78513904|123.2621088|36370|1 +638289.60994722|220094.47241327|123.14065551|36371|1 +638284.51475515|220099.16148114|122.93840699|36372|1 +638279.46482688|220103.80840814|122.68486847|36373|1 +638274.40950829|220108.45899632|122.26911627|36374|1 +638269.35957143|220113.10654208|122.11599042|36375|1 +638264.31660278|220117.74849181|122.26290268|36376|1 +638259.28891514|220122.38052119|122.92841688|36377|1 +638254.20590765|220127.06126109|123.30916649|36378|1 +638255.57787145|220122.31173059|123.08745865|36379|1 +638260.55118259|220117.71674965|122.3933973|36380|1 +638265.58488248|220113.06941358|122.11564626|36381|1 +638270.62252941|220108.41958552|121.98175649|36382|1 +638275.62073531|220103.80876942|122.18100984|36383|1 +638280.67013548|220099.15233635|122.57843754|36384|1 +638285.72046556|220094.49594166|123.08856556|36385|1 +638290.75977981|220089.84623215|123.1615659|36386|1 +638295.80018074|220085.19622057|123.32224479|36387|1 +638300.83952185|220080.54709087|123.47061742|36388|1 +638305.88168276|220075.89705196|123.83164727|36389|1 +638310.92302164|220071.24802637|124.22412643|36390|1 +638316.01067632|220066.5563993|124.62840954|36391|1 +638320.9980556|220061.95479859|124.72846874|36392|1 +638326.07943286|220057.26593519|124.75215107|36393|1 +638331.11330293|220052.62103013|124.79552525|36394|1 +638336.14597553|220047.97638852|124.73284058|36395|1 +638341.22510134|220043.28772901|124.52003454|36396|1 +638346.25755313|220038.64255496|124.36405305|36397|1 +638351.29008933|220033.99681045|124.14574966|36398|1 +638356.37138385|220029.30776036|124.1339178|36399|1 +638361.40480546|220024.6611095|123.90357791|36400|1 +638366.43897389|220020.01486413|123.81091361|36401|1 +638371.52112922|220015.32319892|123.56885349|36402|1 +638376.60432205|220010.62968947|123.21471625|36403|1 +638381.64046182|220005.98099857|123.04157299|36404|1 +638386.72466847|220001.28820484|122.89440958|36405|1 +638391.76193083|219996.63873386|122.75301328|36406|1 +638396.84727619|219991.94505076|122.62532779|36407|1 +638401.92655519|219987.25711403|122.51666444|36408|1 +638406.96798743|219982.60183046|122.12611076|36409|1 +638412.01106232|219977.94488529|121.71702793|36410|1 +638405.55131461|219979.858672|122.10689329|36411|1 +638400.5063636|219984.51301655|122.50915791|36412|1 +638395.5180702|219989.11359768|122.719099|36413|1 +638390.47723671|219993.76171646|122.8154468|36414|1 +638385.43667764|219998.40997998|122.96199629|36415|1 +638380.44404363|220003.01456092|123.17190018|36416|1 +638375.40475368|220007.66180416|123.3374718|36417|1 +638370.36591402|220012.30992152|123.66571288|36418|1 +638365.37558226|220016.91262624|123.90698236|36419|1 +638360.33824148|220021.55752906|124.00425104|36420|1 +638355.30126545|220026.20219569|124.11420733|36421|1 +638350.26472938|220030.84665594|124.24934354|36422|1 +638345.22833573|220035.49068861|124.34716102|36423|1 +638340.24051946|220040.09087456|124.56363196|36424|1 +638335.20528749|220044.73438162|124.73044072|36425|1 +638330.16904852|220049.37772942|124.75992735|36426|1 +638325.17975621|220053.97744446|124.74522124|36427|1 +638320.09548575|220058.66488486|124.75070929|36428|1 +638315.05645066|220063.30923207|124.58077514|36429|1 +638310.05842596|220067.91274776|124.02884493|36430|1 +638305.01476516|220072.56007809|123.6967157|36431|1 +638299.97089957|220077.20804453|123.42103896|36432|1 +638294.92835483|220081.85578373|123.27054552|36433|1 +638289.88786509|220086.50271697|123.25771837|36434|1 +638284.88685569|220091.11052401|122.89986042|36435|1 +638279.82974771|220095.76764658|122.23758324|36436|1 +638274.78057151|220100.42071823|121.98789566|36437|1 +638269.78066308|220105.02924261|121.84894572|36438|1 +638264.73808291|220109.67761247|121.93693123|36439|1 +638259.6988659|220114.32210513|122.17501019|36440|1 +638254.71115259|220118.92012943|122.54215131|36441|1 +638253.46912692|220116.23065791|122.37497048|36442|1 +638258.50402473|220111.58424344|122.14401668|36443|1 +638263.49019883|220106.98242245|121.87156764|36444|1 +638268.53087804|220102.33240376|121.85948464|36445|1 +638273.57349844|220097.68138689|121.94755386|36446|1 +638278.61768431|220093.02971654|122.13580321|36447|1 +638283.66648871|220088.3758106|122.58041882|36448|1 +638288.67165007|220083.76427894|123.29539986|36449|1 +638293.70645686|220079.11903164|123.20299602|36450|1 +638298.79221174|220074.42837898|123.30950136|36451|1 +638303.78580989|220069.82439474|123.63110097|36452|1 +638308.87294456|220065.13400104|123.93192972|36453|1 +638313.91362039|220060.48768568|124.39029336|36454|1 +638318.94771456|220055.84418006|124.43639296|36455|1 +638323.9846693|220051.20005996|124.73888673|36456|1 +638334.0507932|220041.91445431|124.76942447|36457|1 +638339.1292734|220037.22770185|124.52220185|36458|1 +638344.16179273|220032.58466009|124.44425297|36459|1 +638349.19447648|220027.94146483|124.36648081|36460|1 +638354.22737976|220023.29811777|124.29510828|36461|1 +638359.26029832|220018.6537206|124.09267372|36462|1 +638364.29384704|220014.00963317|124.00288367|36463|1 +638369.37534874|220009.32058907|123.81999215|36464|1 +638374.41036716|220004.67317183|123.48069125|36465|1 +638379.44565982|220000.02712877|123.34780607|36466|1 +638384.48226684|219995.37874007|123.07135728|36467|1 +638389.51856752|219990.73216181|122.98883192|36468|1 +638394.55590341|219986.08408527|122.83773386|36469|1 +638399.58855552|219981.43929117|122.55544355|36470|1 +638399.49515308|219978.01495748|122.59738526|36471|1 +638394.45035524|219982.66363956|122.8635835|36472|1 +638389.41341993|219987.30410775|123.00513793|36473|1 +638384.37080245|219991.94982167|123.14674817|36474|1 +638379.37587542|219996.55239332|123.39552418|36475|1 +638374.38207491|220001.1533006|123.56301197|36476|1 +638369.3411307|220005.79888385|123.88621149|36477|1 +638364.30126491|220010.44202432|124.02211045|36478|1 +638359.30941|220015.04105002|124.17719896|36479|1 +638354.27064987|220019.68366484|124.3758384|36480|1 +638349.27936358|220024.2812539|124.41218974|36481|1 +638344.2417995|220028.92320497|124.66733747|36482|1 +638339.20300312|220033.564029|124.62892113|36483|1 +638334.26050751|220038.11750571|124.7774798|36484|1 +638329.22258061|220042.75835584|124.84542928|36485|1 +638324.18266787|220047.39954054|124.71982739|36486|1 +638319.23977293|220051.95290751|124.80547815|36487|1 +638314.19673977|220056.59548188|124.48626909|36488|1 +638309.19686615|220061.19642202|123.92886014|36489|1 +638304.19960661|220065.79707659|123.64638379|36490|1 +638299.20140099|220070.39865762|123.37011173|36491|1 +638294.20340242|220075.00058165|123.16256119|36492|1 +638289.20885028|220079.60102073|123.17365821|36493|1 +638284.15269172|220084.25330245|122.54271872|36494|1 +638279.19467545|220088.81685957|122.13988669|36495|1 +638274.19104939|220093.42359731|121.88228329|36496|1 +638269.19241286|220098.02762013|121.86832132|36497|1 +638264.18920308|220102.63470382|121.70441472|36498|1 +638259.1951905|220107.23801427|121.87155834|36499|1 +638254.20517135|220111.83971015|122.16358761|36500|1 +638256.08316405|220106.75106834|121.85461051|36501|1 +638261.11662442|220102.09949917|121.62486593|36502|1 +638266.15928704|220097.44214737|121.75137009|36503|1 +638271.20241851|220092.78478612|121.93433603|36504|1 +638276.28860178|220088.08657533|121.96588766|36505|1 +638281.33128568|220083.43010893|122.21187313|36506|1 +638286.37690392|220078.77245361|122.65803284|36507|1 +638291.4232596|220074.11507547|123.22937585|36508|1 +638296.45822991|220069.46410667|123.26357849|36509|1 +638301.49620291|220064.81198631|123.51042903|36510|1 +638306.57948185|220060.11745512|123.67526581|36511|1 +638311.6172229|220055.46645414|124.04135582|36512|1 +638316.65616147|220050.8158246|124.60137857|36513|1 +638321.68877085|220046.16755773|124.70538173|36514|1 +638326.72168025|220041.51962775|124.89079404|36515|1 +638331.79992755|220036.82846245|124.88854301|36516|1 +638336.82970019|220032.18100282|124.75569504|36517|1 +638341.85979128|220027.53329666|124.6292746|36518|1 +638346.9381005|220022.84192874|124.60925718|36519|1 +638351.96860614|220018.1936022|124.45204785|36520|1 +638356.99966574|220013.54538351|124.37624768|36521|1 +638362.07850753|220008.85238377|124.2072437|36522|1 +638367.11044341|220004.20245196|124.01318074|36523|1 +638372.14314456|219999.55152806|123.78179905|36524|1 +638377.22420654|219994.85591655|123.53880875|36525|1 +638382.25812875|219990.2044383|123.38291097|36526|1 +638387.29279494|219985.55217829|123.21470695|36527|1 +638392.32844582|219980.89877157|123.0154443|36528|1 +638388.79278526|219980.35905963|123.10016488|36529|1 +638383.75099592|219985.00526442|123.30436677|36530|1 +638378.66270498|219989.69407125|123.4704872|36531|1 +638373.57484578|219994.3830001|123.70577563|36532|1 +638368.48764208|219999.07194575|124.02274297|36533|1 +638363.4016237|220003.75862366|124.18390555|36534|1 +638358.31617928|220008.4448678|124.35797899|36535|1 +638353.27861721|220013.08615794|124.42642146|36536|1 +638348.19407612|220017.77143924|124.58246806|36537|1 +638343.15674972|220022.41195251|124.5763847|36538|1 +638338.12023653|220027.05280352|124.71420912|36539|1 +638333.03651484|220031.73714903|124.84626644|36540|1 +638327.95205604|220036.42128617|124.85999586|36541|1 +638322.96087961|220041.01815635|124.71056282|36542|1 +638317.87473428|220045.70300744|124.61240118|36543|1 +638312.83187398|220050.34567187|124.21390377|36544|1 +638307.83591981|220054.94525993|123.83969331|36545|1 +638302.74582189|220059.63273034|123.60497228|36546|1 +638297.74853976|220064.23401905|123.29341858|36547|1 +638292.75597854|220068.83340386|123.30676663|36548|1 +638287.70599634|220073.48203711|122.82781817|36549|1 +638282.65406311|220078.13237875|122.33660996|36550|1 +638277.65287683|220082.73760543|122.06894204|36551|1 +638272.65286481|220087.34250152|121.90123101|36552|1 +638267.6509838|220091.94884324|121.69601522|36553|1 +638262.65245031|220096.55337194|121.65944994|36554|1 +638257.6529198|220101.15872719|121.61037376|36555|1 +638252.7074835|220105.71306698|121.84012764|36556|1 +638253.35394125|220100.86753424|121.62852153|36557|1 +638258.39090649|220096.21754583|121.51323531|36558|1 +638263.4309563|220091.56571922|121.52931808|36559|1 +638268.47132071|220086.91389097|121.58309165|36560|1 +638273.51444399|220082.26066254|121.7870052|36561|1 +638278.5598886|220077.6064911|122.14733741|36562|1 +638283.6507875|220072.91014156|122.47520643|36563|1 +638288.69274247|220068.25889843|122.79860129|36564|1 +638293.73648398|220063.60734887|123.2971579|36565|1 +638298.81961229|220058.91639562|123.39492887|36566|1 +638303.85667475|220054.26899448|123.63154746|36567|1 +638308.94039363|220049.57859616|123.87376572|36568|1 +638314.02671783|220044.88795133|124.39763246|36569|1 +638319.0627758|220040.24267137|124.79126504|36570|1 +638324.14065375|220035.55512657|124.70338185|36571|1 +638329.17378032|220030.91144611|124.95374847|36572|1 +638334.25102687|220026.22400585|124.80406428|36573|1 +638339.28156766|220021.58031843|124.7423842|36574|1 +638344.35998768|220016.89299291|124.74962098|36575|1 +638349.39055419|220012.24870463|124.61338717|36576|1 +638354.46921864|220007.56158495|124.67756012|36577|1 +638359.54790284|220002.87191254|124.4109061|36578|1 +638364.57973641|219998.22626546|124.25040395|36579|1 +638369.61237517|219993.57930101|124.01508761|36580|1 +638374.69363572|219988.88696501|123.71193341|36581|1 +638379.72795227|219984.23854834|123.48958375|36582|1 +638384.81044549|219979.54589178|123.29339068|36583|1 +638379.80852825|219980.02350423|123.48942562|36584|1 +638374.71962801|219984.71419403|123.73133692|36585|1 +638369.63137566|219989.40481575|124.04244413|36586|1 +638364.54432813|219994.09380948|124.2852298|36587|1 +638359.41065461|219998.82543124|124.47804632|36588|1 +638354.3251015|220003.51215409|124.6030715|36589|1 +638349.23986013|220008.19811343|124.66602592|36590|1 +638344.15501114|220012.88409666|124.77939597|36591|1 +638339.07005915|220017.56946662|124.7994413|36592|1 +638333.9855224|220022.25493159|124.88240384|36593|1 +638328.85378175|220026.98405615|124.97861212|36594|1 +638323.76673367|220031.66937243|124.73754728|36595|1 +638318.72905944|220036.31114831|124.75883904|36596|1 +638313.59227846|220041.04168531|124.43170487|36597|1 +638308.49852919|220045.73047016|123.83572145|36598|1 +638303.40894479|220050.41847991|123.640133|36599|1 +638298.31700074|220055.10791046|123.34500624|36600|1 +638293.22619131|220059.79730618|123.18155542|36601|1 +638288.12942516|220064.4900493|122.73734909|36602|1 +638283.03293021|220069.18326343|122.38735115|36603|1 +638277.93825429|220073.87595857|122.18778153|36604|1 +638272.88222775|220078.53031419|121.63714428|36605|1 +638267.78298901|220083.22656095|121.35092861|36606|1 +638262.69067266|220087.91891386|121.39005189|36607|1 +638257.64428316|220092.56855993|121.38388481|36608|1 +638252.55283948|220097.26123426|121.48626016|36609|1 +638259.77129845|220087.26253895|121.28040255|36610|1 +638264.7604434|220082.64953029|121.20967184|36611|1 +638269.84947047|220077.94605702|121.36046294|36612|1 +638274.89626899|220073.28371918|121.80067881|36613|1 +638279.9425558|220068.62228022|122.29736576|36614|1 +638284.98118896|220063.9655448|122.4818758|36615|1 +638290.06928766|220059.26440882|122.82786467|36616|1 +638295.11169984|220054.60687749|123.36909784|36617|1 +638300.14588066|220049.95365205|123.4731196|36618|1 +638305.22858149|220045.25655225|123.69522742|36619|1 +638310.26305287|220040.60396561|123.91847936|36620|1 +638315.35054265|220035.90674415|124.71003262|36621|1 +638320.38159477|220031.25622093|124.79005581|36622|1 +638325.41189431|220026.60602311|124.82025867|36623|1 +638330.49063658|220021.91245812|125.02539075|36624|1 +638335.56709344|220017.2186001|124.91221604|36625|1 +638340.59678811|220012.56877864|124.91818778|36626|1 +638345.67361337|220007.87444485|124.78695831|36627|1 +638350.75095488|220003.18052803|124.77490321|36628|1 +638355.82842847|219998.48574419|124.66326329|36629|1 +638360.9064143|219993.79001905|124.48954332|36630|1 +638365.98501303|219989.09373162|124.31625122|36631|1 +638371.01761062|219984.43840686|123.94892407|36632|1 +638376.0981246|219979.73993279|123.72012828|36633|1 +638373.13970115|219978.63879277|123.86062231|36634|1 +638368.09933994|219983.28374203|124.19986739|36635|1 +638363.01295246|219987.97021784|124.41375244|36636|1 +638357.97482013|219992.61213412|124.62225176|36637|1 +638352.93738542|219997.25330854|124.81844483|36638|1 +638347.9003103|220001.89265868|124.81481713|36639|1 +638342.81612777|220006.57635085|124.93001964|36640|1 +638337.77921041|220011.21541054|124.90810465|36641|1 +638332.74291435|220015.85483684|125.01135437|36642|1 +638327.65873661|220020.53773152|125.02131657|36643|1 +638322.6673306|220025.13307903|124.76841057|36644|1 +638317.58260474|220029.81642872|124.77270799|36645|1 +638312.54230159|220034.45678963|124.50805385|36646|1 +638307.49503928|220039.09987262|123.74988466|36647|1 +638302.45463405|220043.74144942|123.63560303|36648|1 +638297.41232669|220048.38407384|123.42775484|36649|1 +638292.36437209|220053.02971205|122.926417|36650|1 +638287.31717749|220057.67567819|122.56276405|36651|1 +638282.27150857|220062.32135973|122.34928828|36652|1 +638277.22564209|220066.96749937|122.17352191|36653|1 +638272.16798567|220071.62077458|121.49811992|36654|1 +638267.11441075|220076.27234376|121.09788309|36655|1 +638262.06860995|220080.91959643|121.07897258|36656|1 +638257.025959|220085.56501981|121.20396055|36657|1 +638255.05551858|220083.25720535|121.06824763|36658|1 +638260.04400391|220078.64958891|120.97581588|36659|1 +638265.13018486|220073.95278406|121.00484672|36660|1 +638270.17359657|220069.29728768|121.27957469|36661|1 +638275.22119923|220064.6399206|121.81694761|36662|1 +638280.26571955|220059.98492962|122.29205445|36663|1 +638285.30332133|220055.3341|122.47370884|36664|1 +638290.34223884|220050.68305884|122.78677873|36665|1 +638295.38517763|220046.03091471|123.44373529|36666|1 +638300.41814044|220041.38362751|123.5259816|36667|1 +638305.45140354|220036.73653788|123.67089397|36668|1 +638310.48818594|220032.08876467|124.15343293|36669|1 +638315.5223852|220027.44252829|124.52368083|36670|1 +638320.55574031|220022.79735966|124.93159164|36671|1 +638325.63092779|220018.10878225|124.70192147|36672|1 +638330.61510485|220013.50879724|125.08544302|36673|1 +638335.69095015|220008.82029106|124.94383277|36674|1 +638340.72002153|220004.17583243|124.92128527|36675|1 +638345.70180013|219999.57556615|124.97369148|36676|1 +638350.7784443|219994.88662167|124.87043246|36677|1 +638355.8079927|219990.24103296|124.75462534|36678|1 +638360.83813578|219985.59442084|124.57648702|36679|1 +638365.86919269|219980.94645091|124.3297667|36680|1 +638361.24619745|219980.51117839|124.5863097|36681|1 +638356.20751798|219985.158|124.80825938|36682|1 +638351.21708537|219989.76028131|125.02452568|36683|1 +638346.22707998|219994.35989607|124.94702328|36684|1 +638341.1896898|219999.00402506|124.97556113|36685|1 +638336.20011524|220003.60449062|125.06056077|36686|1 +638326.17297419|220012.84822283|125.04311993|36687|1 +638321.18112304|220017.44812339|124.78434451|36688|1 +638316.14358492|220022.09237634|124.81345908|36689|1 +638311.14953235|220026.69357804|124.46097756|36690|1 +638306.10371893|220031.34044424|123.84040955|36691|1 +638301.10883104|220035.94337676|123.61295321|36692|1 +638296.11237072|220040.54722606|123.31673814|36693|1 +638291.11267974|220045.1529906|122.8829963|36694|1 +638286.06412002|220049.80387766|122.45666798|36695|1 +638281.11534314|220054.36532538|122.36541756|36696|1 +638276.06770874|220059.01670398|122.11425099|36697|1 +638271.05671914|220063.63071248|121.39944668|36698|1 +638266.04970684|220068.24321696|120.96582577|36699|1 +638261.04837557|220072.85283977|120.83834492|36700|1 +638256.04856814|220077.46177605|120.80457017|36701|1 +638254.73758481|220073.81289522|120.62481334|36702|1 +638259.77908172|220069.15988266|120.79646833|36703|1 +638264.81792246|220064.50871861|120.89333703|36704|1 +638269.90818293|220059.81188833|121.20759754|36705|1 +638274.95773205|220055.15589106|121.93607546|36706|1 +638279.99849304|220050.50521775|122.3148531|36707|1 +638285.03393712|220045.85760936|122.46263042|36708|1 +638290.07118461|220041.20963383|122.77305861|36709|1 +638295.11362972|220036.56041522|123.52735826|36710|1 +638300.19255874|220031.87217372|123.60615361|36711|1 +638305.22552315|220027.22747007|123.82974041|36712|1 +638310.26101469|220022.58298147|124.37222001|36713|1 +638315.33995293|220017.89624827|124.63946935|36714|1 +638320.3699752|220013.25401977|124.8324254|36715|1 +638325.39942713|220008.61237586|125.03179037|36716|1 +638330.47557151|220003.92734031|125.18749281|36717|1 +638335.45552692|219999.32919701|125.11847363|36718|1 +638345.55859729|219990.00138664|125.03731563|36719|1 +638350.58666188|219985.35904976|124.98756042|36720|1 +638355.61507898|219980.71605209|124.8942171|36721|1 +638350.25229414|219980.92321677|125.0895544|36722|1 +638345.16195209|219985.60767241|125.07213218|36723|1 +638340.11928158|219990.24875611|125.1241105|36724|1 +638335.0293282|219994.93345761|125.18243264|36725|1 +638329.93948954|219999.61790427|125.22243958|36726|1 +638324.89654123|220004.25811882|125.1377376|36727|1 +638319.85181359|220008.89824052|124.84074119|36728|1 +638314.76112812|220013.58305232|124.83181148|36729|1 +638309.7613947|220018.18078441|124.42233798|36730|1 +638304.66377375|220022.86756155|123.87034266|36731|1 +638299.61622351|220027.51093624|123.65552744|36732|1 +638294.56820962|220032.15473142|123.44091685|36733|1 +638289.51390372|220036.80137525|122.86406719|36734|1 +638284.46076592|220041.44841577|122.46868588|36735|1 +638279.45747956|220046.05117763|122.27851106|36736|1 +638274.4036286|220050.69963279|121.97719862|36737|1 +638269.33925152|220055.35412216|121.2262476|36738|1 +638264.32920791|220059.96193405|120.89261149|36739|1 +638259.27436655|220064.61246431|120.73562541|36740|1 +638254.26508003|220069.22063965|120.53333037|36741|1 +638256.71076821|220062.96172566|120.57139324|36742|1 +638261.75235185|220058.310077|120.73263954|36743|1 +638266.84321022|220053.61404806|121.01756225|36744|1 +638271.89045939|220048.96036925|121.56673913|36745|1 +638276.98837032|220044.26225581|122.38981612|36746|1 +638282.02148881|220039.61675496|122.34590243|36747|1 +638287.10698186|220034.92566261|122.62610914|36748|1 +638292.1527119|220030.2763211|123.53253005|36749|1 +638297.23159946|220025.58898298|123.5260002|36750|1 +638302.31303292|220020.90099553|123.72609071|36751|1 +638307.34872963|220016.25719924|124.17710595|36752|1 +638312.43078015|220011.57090608|124.65287321|36753|1 +638317.46166689|220006.92925769|124.82309572|36754|1 +638322.53930663|220002.24424588|124.95583206|36755|1 +638327.57009808|219997.60433252|125.32647995|36756|1 +638332.6457025|219992.91885609|125.17237742|36757|1 +638337.7218965|219988.23350509|125.09991658|36758|1 +638342.75092873|219983.59315134|125.21502606|36759|1 +638347.82740611|219978.9076082|125.14948575|36760|1 +638340.40255444|219981.53089443|125.24536846|36761|1 +638335.31204687|219986.21469376|125.18772535|36762|1 +638330.17451271|219990.94323283|125.30543933|36763|1 +638325.08415628|219995.62714634|125.28002688|36764|1 +638319.99122412|220000.31009743|124.84881513|36765|1 +638314.90110229|220004.99487277|124.9555158|36766|1 +638309.80779982|220009.67944618|124.68142036|36767|1 +638304.71041314|220014.3652127|124.09529682|36768|1 +638299.61337745|220019.05214556|123.69086489|36769|1 +638294.51835025|220023.73928018|123.53686468|36770|1 +638289.42034129|220028.42762115|123.19582435|36771|1 +638284.31473546|220033.11962606|122.44907774|36772|1 +638279.2171671|220037.80919742|122.30894647|36773|1 +638274.16598064|220042.45584654|122.14301208|36774|1 +638269.05338646|220047.15366839|121.32262331|36775|1 +638263.9457121|220051.8498823|120.85889255|36776|1 +638258.88771438|220056.50172039|120.56273329|36777|1 +638253.82979951|220061.15394339|120.32305442|36778|1 +638253.95519489|220057.14707892|120.50023465|36779|1 +638258.99887663|220052.50143931|120.62584584|36780|1 +638264.09335915|220047.81061221|120.94386428|36781|1 +638269.1409133|220043.16381977|121.36365345|36782|1 +638274.24273521|220038.47080258|122.23858784|36783|1 +638279.28132594|220033.8296602|122.34021905|36784|1 +638284.32075803|220029.18851454|122.53576099|36785|1 +638289.41590089|220024.50134961|123.37426962|36786|1 +638294.49981092|220019.81885005|123.51955407|36787|1 +638299.53677445|220015.180193|123.74084333|36788|1 +638304.62252529|220010.49831157|124.16801811|36789|1 +638309.66106707|220005.86148462|124.78973024|36790|1 +638314.74194535|220001.18179198|124.93636345|36791|1 +638319.82127068|219996.50200092|124.89589142|36792|1 +638324.8552133|219991.86788307|125.33080528|36793|1 +638329.93414484|219987.18871739|125.32222904|36794|1 +638335.01302781|219982.50909221|125.25155414|36795|1 +638340.0446761|219977.87397833|125.30591372|36796|1 +638331.07900699|219981.46335314|125.29756073|36797|1 +638325.98836554|219986.14404445|125.39811293|36798|1 +638320.84834286|219990.86659736|125.06792777|36799|1 +638315.80361544|219995.50295532|124.91927608|36800|1 +638310.71016487|220000.18337127|124.67738339|36801|1 +638305.61489124|220004.86448657|124.3171721|36802|1 +638300.56533168|220009.50295187|123.88810906|36803|1 +638295.46816016|220014.18613342|123.56616527|36804|1 +638290.32642669|220018.91283808|123.54542231|36805|1 +638285.27043257|220023.55525891|122.8798616|36806|1 +638280.16729779|220028.24237477|122.37179858|36807|1 +638275.07244497|220032.92666398|122.43909693|36808|1 +638269.96224605|220037.61831441|121.69451763|36809|1 +638264.85076755|220042.31161574|121.00666987|36810|1 +638259.79383273|220046.95829934|120.74893625|36811|1 +638254.68833062|220051.64975333|120.49933238|36812|1 +638256.03173114|220046.60471564|120.61496276|36813|1 +638261.12431156|220041.90896366|120.85963669|36814|1 +638266.1687114|220037.25778602|121.13108113|36815|1 +638271.22129257|220032.60339178|121.92137866|36816|1 +638276.26671362|220027.95325552|122.43070673|36817|1 +638281.34991071|220023.26393259|122.40810341|36818|1 +638286.39648331|220018.615024|123.19291289|36819|1 +638291.43421646|220013.96989759|123.45298126|36820|1 +638296.51931041|220009.28148538|123.7501172|36821|1 +638301.55575319|220004.63776881|124.03566313|36822|1 +638306.64058795|219999.95126853|124.53349421|36823|1 +638311.6737437|219995.30917391|124.6507524|36824|1 +638316.708486|219990.66853453|125.11817597|36825|1 +638321.78638996|219985.98224402|124.8732788|36826|1 +638326.81964786|219981.34338743|125.3911273|36827|1 +638323.4692293|219980.06865906|125.42159992|36828|1 +638318.47142687|219984.65844597|125.032488|36829|1 +638308.42841643|219993.88542886|124.70437714|36830|1 +638303.42782963|219998.47767117|124.30272644|36831|1 +638298.37843957|220003.11477881|123.89531793|36832|1 +638293.37706398|220007.70894524|123.63745409|36833|1 +638288.37553954|220012.30372264|123.43580088|36834|1 +638283.3199631|220016.94463225|122.80378238|36835|1 +638278.31224558|220021.54269275|122.31473218|36836|1 +638273.31253503|220026.13815091|122.39429957|36837|1 +638268.2502242|220030.78436374|121.65649197|36838|1 +638263.23496822|220035.38804508|121.01132076|36839|1 +638258.2279372|220039.98829845|120.85977622|36840|1 +638253.21603636|220044.59150615|120.52701447|36841|1 +638252.80320364|220040.79310656|120.4229741|36842|1 +638257.80698165|220036.1899085|120.88422129|36843|1 +638262.89931182|220031.50301895|121.08660934|36844|1 +638267.95028888|220026.85758811|121.69054577|36845|1 +638273.00000018|220022.21369438|122.3384238|36846|1 +638278.03853296|220017.57501776|122.386607|36847|1 +638283.0822654|220012.93499208|122.84114761|36848|1 +638288.12666457|220008.29572981|123.45835768|36849|1 +638293.16488655|220003.65866672|123.66327582|36850|1 +638298.20310907|219999.02224069|123.9433337|36851|1 +638303.24215532|219994.38680201|124.42980731|36852|1 +638308.27837542|219989.75227851|124.71645085|36853|1 +638313.31433033|219985.11889483|125.10948811|36854|1 +638318.34743774|219980.48470288|125.09644702|36855|1 +638311.50319832|219981.95219467|125.10662316|36856|1 +638306.50465354|219986.54781763|124.69391264|36857|1 +638301.41100383|219991.23217656|124.41936141|36858|1 +638296.36240094|219995.87361681|123.97603875|36859|1 +638291.36111664|220000.47236387|123.63231951|36860|1 +638286.31384307|220005.11528744|123.50177838|36861|1 +638281.30601622|220009.71703929|122.80817281|36862|1 +638276.25306776|220014.36281784|122.40296883|36863|1 +638271.20299169|220019.00817054|122.25419622|36864|1 +638266.19104313|220023.6142124|121.61706174|36865|1 +638261.17896312|220028.22124029|121.07992136|36866|1 +638256.1235463|220032.87071097|120.83789844|36867|1 +638256.08462437|220028.38704526|120.79846821|36868|1 +638261.17684271|220023.696249|121.08789298|36869|1 +638266.2248054|220019.04846223|121.63509788|36870|1 +638271.272152|220014.40189841|122.25748905|36871|1 +638276.35751033|220009.71582029|122.36675701|36872|1 +638281.35221566|220005.11651683|122.85296087|36873|1 +638286.44039552|220000.4308593|123.30653409|36874|1 +638291.47956536|219995.79021914|123.7485545|36875|1 +638296.51551734|219991.15078114|123.99077276|36876|1 +638301.55300079|219986.51250715|124.52688065|36877|1 +638306.58758575|219981.87508948|124.85690767|36878|1 +638303.37457257|219980.38032797|124.69594043|36879|1 +638298.27932972|219985.0596345|124.26335202|36880|1 +638293.18353524|219989.74012227|123.90621031|36881|1 +638288.03951655|219994.46536908|123.58756866|36882|1 +638282.94284251|219999.14762053|123.33765783|36883|1 +638277.83874352|220003.8323945|122.6007525|36884|1 +638272.74277821|220008.51562422|122.53295185|36885|1 +638267.63682126|220013.20295058|121.8907014|36886|1 +638262.57624752|220017.84842718|121.24149322|36887|1 +638257.47180573|220022.53698742|120.89376491|36888|1 +638252.36603904|220027.22677571|120.54652029|36889|1 +638255.03989191|220020.6255823|120.82111803|36890|1 +638260.13131039|220015.9299528|121.12344437|36891|1 +638265.22448381|220011.23427018|121.60117431|36892|1 +638270.31969183|220006.53884072|122.31682508|36893|1 +638275.40580775|220001.84742973|122.54549995|36894|1 +638280.49489624|219997.15590565|123.06831559|36895|1 +638285.53432137|219992.5095274|123.52341431|36896|1 +638290.66600787|219987.77690664|123.84025142|36897|1 +638295.70216694|219983.13285866|124.22095452|36898|1 +638300.78676595|219978.4467534|124.88908252|36899|1 +638292.40140463|219981.75326955|124.01575733|36900|1 +638287.31101441|219986.43869122|123.7454105|36901|1 +638282.22047371|219991.1248221|123.53799019|36902|1 +638277.12247278|219995.813217|122.8185536|36903|1 +638272.07570357|220000.45783102|122.47990382|36904|1 +638266.97701841|220005.14845324|121.93623359|36905|1 +638261.87656173|220009.84071791|121.39304706|36906|1 +638256.8239335|220014.489913|120.96156556|36907|1 +638256.95915192|220009.83323771|121.01954353|36908|1 +638261.95681072|220005.22448593|121.45105294|36909|1 +638267.05179338|220000.52821182|122.12436202|36910|1 +638272.09354235|219995.87867261|122.54273732|36911|1 +638277.13455166|219991.23015818|122.99880342|36912|1 +638282.17449799|219986.58273423|123.46756644|36913|1 +638287.2593204|219981.89283617|123.81730393|36914|1 +638286.96216499|219977.70068752|123.81760159|36915|1 +638281.92151131|219982.33800733|123.60698147|36916|1 +638276.92541791|219986.9325486|123.21462324|36917|1 +638271.87766952|219991.57271189|122.60428718|36918|1 +638266.83465036|219996.21240553|122.41283801|36919|1 +638261.82848227|220000.81248901|121.61440143|36920|1 +638256.77743032|220005.45664952|121.10454316|36921|1 +638254.68251978|220003.3213889|121.1414154|36922|1 +638259.72602822|219998.66178303|121.53770829|36923|1 +638264.77201835|219994.00226821|122.19045114|36924|1 +638269.81339606|219989.3452658|122.65593994|36925|1 +638274.85362765|219984.68937805|123.12789347|36926|1 +638279.89175527|219980.03478507|123.53131152|36927|1 +638275.67277785|219979.50939173|123.5568728|36928|1 +638270.67506208|219984.11015839|122.74612066|36929|1 +638265.63726222|219988.75414235|122.59860379|36930|1 +638260.58774596|219993.40227004|121.7388685|36931|1 +638255.58942828|219998.00659063|121.24695336|36932|1 +638253.9629357|219995.02356027|121.17680866|36933|1 +638259.05346361|219990.32470315|121.60490432|36934|1 +638264.10221007|219985.66919116|122.5342355|36935|1 +638269.13841486|219981.01800997|122.70137912|36936|1 +638267.43162884|219977.72586668|122.72664274|36937|1 +638262.34810204|219982.4174444|122.60930083|36938|1 +638257.29834481|219987.0695834|121.64155332|36939|1 +638252.20619479|219991.76544708|121.14378736|36940|1 +638253.60492097|219986.05258684|121.39686079|36941|1 +638258.69685849|219981.34913577|122.10909781|36942|1 +638255.35721634|219980.04310036|121.81621277|36943|1 +638253.33063647|219977.83611266|121.68287181|36944|1 diff --git a/grass/data/lostperson.txt b/grass/data/lostperson.txt new file mode 100644 index 00000000..a4ab0128 --- /dev/null +++ b/grass/data/lostperson.txt @@ -0,0 +1 @@ +635576,216485 diff --git a/grass/data/lu_labels.txt b/grass/data/lu_labels.txt new file mode 100644 index 00000000..50f898b3 --- /dev/null +++ b/grass/data/lu_labels.txt @@ -0,0 +1,11 @@ +1:pond +2:forest +3:developed paved +4:bare ground +5:paved road +6:dirt road +7:vineyard +8:agriculture (corn, soy) +9:wetland +10:bare ground path +11:grass diff --git a/grass/data/noise_cats.txt b/grass/data/noise_cats.txt new file mode 100644 index 00000000..37463371 --- /dev/null +++ b/grass/data/noise_cats.txt @@ -0,0 +1,4 @@ +1:source +2:high +3:moderate +4:low diff --git a/grass/data/outlet_point.txt b/grass/data/outlet_point.txt new file mode 100644 index 00000000..90e5dfe8 --- /dev/null +++ b/grass/data/outlet_point.txt @@ -0,0 +1 @@ +638845.52 220085.26 1 \ No newline at end of file diff --git a/grass/data/precip_color.txt b/grass/data/precip_color.txt new file mode 100644 index 00000000..7545d714 --- /dev/null +++ b/grass/data/precip_color.txt @@ -0,0 +1,7 @@ +950 red +1000 orange +1200 yellow +1400 cyan +1600 aqua +1800 blue +2500 violet diff --git a/grass/data/rastcomposite_color.txt b/grass/data/rastcomposite_color.txt new file mode 100644 index 00000000..d6cb487a --- /dev/null +++ b/grass/data/rastcomposite_color.txt @@ -0,0 +1,7 @@ +1 black +55 green +90 yellow +130 orange +160 brown +30000 aqua +50000 aqua diff --git a/grass/data/regrslope_color.txt b/grass/data/regrslope_color.txt new file mode 100644 index 00000000..276fba08 --- /dev/null +++ b/grass/data/regrslope_color.txt @@ -0,0 +1,10 @@ +-2.5 magenta +-1.5 red +-1. orange +-0.5 yellow +-0.01 grey + 0.01 grey +0.5 cyan +1. aqua +1.5 blue +3 violet diff --git a/grass/data/soilloss_color.txt b/grass/data/soilloss_color.txt new file mode 100644 index 00000000..3000982e --- /dev/null +++ b/grass/data/soilloss_color.txt @@ -0,0 +1,7 @@ +0 220 255 220 +5 yellow +40 orange +90 red +250 magenta +4000 violet + diff --git a/grass/data/srtmneddiff_color.txt b/grass/data/srtmneddiff_color.txt new file mode 100644 index 00000000..186c909a --- /dev/null +++ b/grass/data/srtmneddiff_color.txt @@ -0,0 +1,5 @@ +-145 blue +-10 aqua +0 white +10 orange +90 red diff --git a/grass/data/stddev_color.txt b/grass/data/stddev_color.txt new file mode 100644 index 00000000..518b7eca --- /dev/null +++ b/grass/data/stddev_color.txt @@ -0,0 +1,6 @@ +0 grey +0.5 cyan +1.0 yellow +2 orange +5 red +15 magenta diff --git a/grass/data/viewshed_points.txt b/grass/data/viewshed_points.txt new file mode 100644 index 00000000..7260c912 --- /dev/null +++ b/grass/data/viewshed_points.txt @@ -0,0 +1,2 @@ +642212,224767,165 +638898,224528,25 diff --git a/grass/data_acquisition.html b/grass/data_acquisition.html new file mode 100644 index 00000000..2a59b05c --- /dev/null +++ b/grass/data_acquisition.html @@ -0,0 +1,677 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Data Introduction

+ +

Resources: + +GRASS GIS overview and manual + + +

Understanding GRASS GIS commands

+ +

+You can run GRASS several ways using its graphical user interface (GUI) +and command line interface (CLI): +

    +
  • + for display (d.*) commands use GUI, + for other commands (r.*, g.*, v.*) type the command name into + the command console in the Console tab + (see the tabs at the bottom of the Layer Manager) + and then press Enter to open command (module) GUI; +
  • + for the display (d.*) commands use GUI, + for other commands type or paste (Paste or Shift Insert) command + with all options into Console and Enter, you can use Up/Down + arrows on your keyboard to retrieve previously run command, if you want to re-run it with + different options; +
  • + run everything through GUI: start the command using a + relevant button or select it from a drop down menu (use the + Modules to find the command); +
  • + when running on Linux or Mac, paste the command with the options into the shell (you can copy/paste multiple + commands at once) +
+ +

+ + + + +

+Instructions for both +GUI +and command line approach are provided in the introductory assignments, +but the instructions will be mostly command line later on. +Feel free to use the approach that suits you the best. +For a quick reference, here are the GUI equivalents for the d.* commands: + +

+In GRASS GIS Layer Manager toolbar +

    + +
  • d.rast: Add raster map layer +
  • d.vect: Add vector map layer +
  • d.shade: Add various raster map layers > Add shaded relief map +
+In GRASS GIS Map Display toolbar + + +The d.* commands throughout the assignments indicate which map layers should be included +in the output map, d.out.file indicates which map should be saved for the report. +You might already have the right map layers in your Layer Manager, so you don't have to load them again. +The CLI instructions can also be used for running the assignments on Linux and Mac as scripts. + + +

GRASS project and mapset

+If you don't already have GRASS GIS spatial database nc_spm_08_grass7 +downloaded, you can find it on +Course logistics page. +

+Before starting with GRASS GIS it is important to understand that +GRASS GIS uses the concept of projects, mapsets +and computational region to support +efficient analysis and modeling without the need to subset and resample +data. Data in a GRASS project has common coordinate system. +Each project can have several mapsets, one is called PERMANENT +to store baseline data, others are set by users. You can modify +the data only in your current mapset, but you can view or copy +data from other mapsets. See also +structure of GRASS database. + +

+DO NOT MOVE the files under project directory using non-GRASS tools. + +

+Suggested workflow is to create a new mapset for each assignment +and do all computations there. + +

+Computational region is set by g.region module (command) +and specifies the spatial extent and resolution at which raster operation are performed. + + +

Start GRASS GIS

+

+Start GRASS GIS as any other program on your computer. + +You should see a project nc_spm_08_grass7 in your database. +If you have not downloaded it yet, +click the icon Download sample project to current database and +select Complete North Carolina dataset, click Download, close when finished. + + +

To start working on your Assignment 1 +right click on nc_spm_08_grass7 and select Create mapset, type in name for the new mapset, +for example, assignment1, press OK. You will get a message that the Current mapset is assignment1 +and any new map layer that you will create will be saved here. +The provided data are in the mapset PERMANENT - double click to see the list of available raster and vector +map layers. You can preview a map layer by double-clicking on it but we will manage the Map Display +in the Layers tab and/or using display commands. + + +

+To save your outputs and to store external data create a directory where you can write, e.g. +on MS Windows, C:\Users\myname\Documents\GIS582_HW\report1. +Then set this directory in GRASS GIS as your working directory:
+Settings > GRASS working environment > Change working directory > select this directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +

cd
+
+ +

+Find the working coordinate reference system, spatial extent and resolution:
+In GUI: Settings > Map projections > Display map projection
+In GUI: Settings > Region > Display Region
+

+Or paste the following command into the Console tab: + +

g.proj -p
+g.region -pl
+
+ +

Display data in 2D

+First set working region to a given elevation raster using GUI:
+Settings > Region > Set Region > +Set region to match raster map(s) > select elevation > Run > Close +or alternatively, paste in the command console in the Console tab: + +
g.region raster=elevation -p
+
+ + + +

+Display elevation map: +

+In Layer Manager > Add raster layer button > select raster "elevation" > OK.
+In Map Display > Zoom to computational region extent.
+Make sure the Render button (lower right corner) +for automatic rendering of maps is checked on. +You can also use the first button Display map in Map Display to render maps. +

+Alternatively, you can add raster layer by pasting this command into the +Console tab: + +

d.rast elevation
+
+ +

+Display elevation as a colored shaded map: +

+In Layer Manager > Add various raster maps layers > Add shaded relief map layer > +select "elevation_shade" as shaded relief map and "elevation" as color map.
+Under Optional tab set Percent to brighten to 30 > OK. +

+Command line equivalent: paste into the Console and press Enter: + +

d.shade shade=elevation_shade color=elevation brighten=30
+
+ + +

+Now check the range of elevation values of the entire map. +Either by pasting the following command into the Console or right clicking +on the elevation raster layer and selecting Metadata in the context menu. + +

r.info -r elevation
+
+ +

+Display vector line and point maps: +

+In Layer Manager: Add vector map layer button > +select "streets_wake" > OK. +Adjust the colors, line widths, symbols by clicking on relevant tabs. +Add additional maps ("roadsmajor", "schools_wake"). +

+These are the command line equivalents: + +

d.vect streets_wake
+d.vect roadsmajor color=red width=2
+d.vect schools_wake icon=basic/circle size=10 fill_color=blue
+
+ +

+Save the displayed map:
+In Map Display click Save display to graphic file. +Or run the equivalent command from the console, the graphic file +will be saved into your working directory. + +

d.out.file mymap
+
+ +

Display data in 3D

+This is just a quick preview: We will explore 3D visualization in 3rd assignment. +

+In Layer Manager check off the elevation_shade layer, but keep the elevation raster on. +In Map Display switch 2D view to 3D view. +After the 3D mode is loaded, increase viewing height with slider, rotate puck to the south. +Click Data tab and set Fine mode resolution to 1, to get the full resolution surface. +Save the image by clicking on Save display to graphic file (tiff support is required). +You may need to install +IrfanView +to view TIFF images saved from the 3D view. +Alternatively, you can just take screenshots of the 3D visualization. + +

Data view and query

+To get familiar with query and zoom tools, set the view back to 2D. +Querying data means finding out the values in raster maps +or attributes in vector maps at a location selected by mouse. +In Layer Manager select the map layer(s) to query by clicking on it. +In Map Display click button Query raster/vector map(s) and +click on a map at locations where you want to know the values/attributes. +

+In Map Display explore the options to zoom: +zoom-in, zoom-out, zoom to selected map, zoom to computational region. +You can also zoom to specific map layer by right clicking on the layer +and selecting Zoom to selected map(s). +

+Now display statewide DEM, county boundaries and climate stations: +

+ Remove all map layers from Layer Manager.
+In Layer Manager menu: Settings > Region > Set Region.
+In g.region dialog: Set current region from named region > +select "nc_500m" > Run > Close.
+In Map Display: Zoom to computational region.
+In Layer Manager: Add raster layer > select "elev_state_500m".
+Add vector map layer "precip_30ynormals", set the symbol to basic/marker.
+Add vector map layer boundary_county, +to display only county boundary, under tab Selection switch off area and switch on boundary. +Rearrange the layers by mouse if needed. +

+The command line equivalent is below, +except for removing all map layers from the Layer Manager. +When using GUI and its Console, you can either uncheck +the map layers or completely remove them in the Layer Manager. +When using the system command line and +d.mon, +you can use +d.erase. + +

g.region nc_500m -p
+d.erase
+d.rast elev_state_500m
+d.vect precip_30ynormals icon=basic/marker
+d.vect boundary_county type=boundary
+d.out.file nc_precip_stations
+
+ + +

Managing data

+ +We will learn how to find more information about the data, copy and rename maps. + +

List existing data

+ +Browse raster and vector data in the provided database using +the Data tab in the Layer Manager. +The tree shows projects and mapsets in your GRASS GIS database. +

+You can also paste the following command into the Console +to list the raster and vector maps: + +

g.list -f type=raster,vector
+
+ +You can also use left mouse click in the Data tab to add maps +into Layers and display them this way. + +

+Now list only vector maps which start with "s": +In the Data tab enter to the Search box the +following v:^s which limits the search to +vectors using v: which start (^) with the +letter s. + +

+Or use g.list in the Console tab: + +

g.list type=vector pattern="s*"
+
+ +Note that g.list by default uses different +pattern matching syntax than the Console tab. +If you use the g.list dialog in GUI, +in tab Required select type vector map(s) +and in tab Pattern enter s* for the +Map name search pattern field. + +

+Now list saved computational regions (which are extents and +resolutions bookmarked in the database): +In the File menu or in the Modules tab: +Find Manage Maps > List to get the +g.list dialog. +In the dialog tab Required select type +region definition(s). Then hit Enter or press Run. + +

+Or just paste the following command into the Console tab: + +

g.list -p type=region
+
+ +Alternatively, you can type g.list into +the Console and hit Enter to get the module dialog that way. + +

Copy and remove data

+ +You can copy and remove maps using the Data tab in the +Layer Manager. + +

+First find the raster map named geology_30m in the +PERMANENT mapset and use right click to Copy it. +Then find again the current mapset and use right click and +Paste to create a copy the geology_30m in +the current mapset. You will be prompted for the new name, change it +to mygeology. + +

+Than let's say we want to rename it. Use right click again on the new +copy, select Rename and type mygeology_30m. +Finally, let's delete this copy using right click and Delete. + +

+The above instructions for copying, renaming, and deleting can be done +in the Console using the modules g.copy, +g.rename, and g.remove +as follows: + +

g.copy raster=geology_30m,mygeology
+g.rename raster=mygeology,mygeology_30m
+g.list raster
+g.remove type=raster name=mygeology_30m -f
+
+ +

+You can find these modules in the GUI in the File menu or +in the Modules tab under Manage Maps. + +

+Note that you can only remove maps from the current mapset +and also note that the Data tab asks for confirming the removal +and the g.remove requires you to use the +-f flag. + +

+Find information about individual maps layers and their attributes:
+In GUI: right click raster layer "elevation", select Metadata, +right click vector layer "streets_wake", select Metadata, Show attribute data. + +

+Or paste the following command into the Console: + +

r.info elevation
+v.info streets_wake
+v.info -c streets_wake
+
+ +

+Note that all data (map layers) that you create are stored in your GRASS database/project/current_mapset. +If you want to go back to what you have worked on, you can save the Map Display and Layer manager, including the symbology and layout +in a GRASS workspace file *.gxw under File > Workspace > Save as. + + +

Import and export for raster and vector data

+ +

+In this section we will cover importing and exporting of raster and vector +data which are in the same projection as the GRASS project we work in. + +Cases where the projection differs are covered in a separate guide. + + +

Import and export Shapefiles

+ +Download a shapefile with geodetic points: + +geod_pts_spm.zip. + +Save and extract (unzip) it to your working directory. + + +

+To import file in GUI use: +

    +
  • File > Import vector data > Simplified vector import with reprojection.
  • +
  • Use Browse button to find the "gdc.shp" file you extracted earlier. +to fill the Source input field.
  • +
  • Then click on Import button.
  • +
+ +In case the imported point data was not displayed automatically, +use File > Add vector to display the data +and zoom to the vector layer.
+How are the + imported geodetic data points spatially related to the "streets_wake" vector data? + +Hint: add "streets_wake" to layer manager and zoom to this layer. + +

+Export the roadsmajor map as a shape file: +

    +
  • File > Export vector map > Common export formats
  • +
  • Select "roadsmajor" as Name of input vector map
  • +
  • Use Browse to find a directory to export the data to, +e.g. your "working directory". +This will fill out the Name of OGR output datasource field +with the path to this directory (e.g. "C:\mydirectory\roadsmajor.shp") +Make sure to specify the full path to your output files otherwise you might +have hard time finding them especially on MS Windows. +(Also note that you need to have write permissions for that directory.) +
  • +
  • Select ESRI_Shapefile in Data format to write
  • +
  • click Run
  • +
+You can then display the exported "roadsmajor" data in ArcGIS. + +Note that the names of the GRASS GIS modules which were used in the +background during the import and export we just did: +v.import and v.out.ogr. + + + +

Import a raster file provided in GeoTIFF format

+ +

+Download a landuse raster in GeoTIFF format: +lc96ras_cut.tif and +save it into your working directory. +

+To import this file through GUI use: +File > Import raster data > Simplified raster import with reprojection. +Use Browse button to find the path to the downloaded "lc96ras_cut.tif" file.
+Make sure the file is checked in the List of GDAL layers. +Click Import. + +

+Alternatively, if the data that you want to import is stored in your working directory +you can use the following command: + +

r.import input=lc96ras_cut.tif output=landuse96_subset
+
+ +Note, that if the data is not in the working directory you need to provide a full path to your input data, +so you would have to replace "lc96ras_cut.tif" by something +like "C:\path_to\my_file\lc96ras_cut.tif". +In such case the import is easier to do through GUI +where you can use Browse to get the correct path to your data. + +

Exporting raster files as ASCII grid and GeoTIFF

+ +

+Now, export raster files as ASCII grid and GeoTIFF. +

+Use File > Export raster map > Common export formats.
+Similarly as for the vector data export, the exported file will be savedi in your working directory +or you need to specify the full path to the directory where you want the exported file to be saved. +Use GTiff and AAIGrid as Raster data format to write +and use file extension appropriate for each format, i.e., .tif +and .ascii respectively. +
+Alternatively, you can use the command line equivalent to export the data to your working directory: + +

r.out.gdal input=basin_50K output=basin_50K.tif
+r.out.gdal input=elev_ned_30m output=elev_ned_30m.ascii format=AAIGrid
+
+ +

Creating new GRASS project

+We will create new projects based on EPSG code and based on +georeferenced file. +

First we create a new project with Coordinate Reference System (CRS) given by + EPSG code 3404. + Which CRS has EPSG 3404 and what are its characteristics? + +

+Launch Project Wizard +from Layer Manager menu > Settings > GRASS working environment > + Create new project
+In Name field type "nc_spf" > Next
+Select method Select CRS from a list by EPSG or description > Next
+Type EPSG code 3404 > Next > OK > Finish
+ +In this new project review the CRS information: +

g.proj -p
+
+ +

Another way to set up a GRASS project uses CRS information from a georeferenced file. +Again launch the Project Wizard: +

+In Name field type "nc_spm" > Next
+Select method Read CRS from a georeferenced data file > Next
+Browse to downloaded file lc96ras_cut.tif > +Next > Finish
+Import data? > Yes > OK
+ +Review again the projection information: +

g.proj -p
+
+ +

Add WMS layer

+View and download orthophoto through web mapping service. +Requires good internet connection. If it doesn't work, report the problem +including any error message in the report.
+First change region to the small rural area specified by the saved +region named "rural_1m", display the provided orthophoto and save its image +for your report. + +
g.region region=rural_1m -p
+d.rast ortho_2001_t792_1m
+d.out.file ortho2001
+
+ +

+In Layer Manager toolbar Add web service layer.
+Paste the link to the service into server field and press connect:
+

+https://imagery.nationalmap.gov/arcgis/services/USGSNAIPPlus/ImageServer/WMSServer?
+
+Wait until GUI changes. Be patient, it can take up to one minute.
+In Available web services, select WMS 1.3.0.
+In List of layers, there should be "USGSNAIPPlus", click on plus icon to open +list of provided products.
+Select a desired product (e.g. Natural colors or NDVI), Press Add layer button and wait.
+The dialog can be closed afterwards.
+ +

+To save the layer:
+Right click on the web service layer in Layer Manager - choose Save web service layer. +In dialog, set the name of the layer ortho_new and press Save layer.
+Save the image of the new orthophoto for your report: + +

d.out.file orthonew
+
+ +
+ + + +
+
+ + + diff --git a/grass/data_models.html b/grass/data_models.html new file mode 100644 index 00000000..9de17083 --- /dev/null +++ b/grass/data_models.html @@ -0,0 +1,401 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial data models

+ +

Resources: +

+ +

Start GRASS GIS

+

To start working on your Assignment 2 +right click on nc_spm_08_grass7 and select Create mapset, type in name for the new mapset, +for example, assignment2, press OK. You will get a message that the Current mapset is assignment2 +and any new map layer that you will create will be saved here. +As mentioned in the previous assignment, the provided data are in the mapset PERMANENT +- double click to see the list of available raster and vector +map layers. + +

+To save your outputs and to store external data change/create a directory where you can write, e.g. on MS Windows, +C:\Users\myname\Documents\GIS582_HW\report2. Then set this directory in GRASS GIS as your working directory: +Change working directory:
+Settings > GRASS working environment > Change working directory > browse to and select your report2 directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +

cd
+
+ +

+If you prefer to work in GUI, you should be able to find out yourself +the GUI equivalents for the tasks below.
+Some hints for GUI are included, but +from now on, most of the instructions will be provided as commands for command line.
+Hint for running most of the commands in GUI - type or paste the name of the module +into the command console in the Console tab and then hit Enter to open the GUI dialog.
+Read the manual page for each command you are using for the first time to learn +what it is doing and what the parameters mean. + +

Resampling to a different resolution

+ +

+Resample the given raster map to higher and lower resolution +(30m->10m, 30m->100m) and compare resampling by nearest neighbor +with bilinear and bicubic method. +

First, set the computation region extent to our study area +and set resolution to 30 meters. +The computational region (region for short) is set using g.region module, +the -p flag is used to print the region coordinates and resolution. +Here we use a predefined region which is included in our data set. + +

g.region region=swwake_30m -p
+
+ +

+Zoom to computational region by clicking on the relevant icon on top +of the Map Displaay to make sure your display shows the region that we are working with. + +

+Then we display the 30m resolution NED elevation raster. + +

d.rast elev_ned_30m
+
+ +

+To resample it to 10m resolution, first set the computational region to resolution 10m, +then resample the raster using the nearest neighbor method.
+Hint: To open the r.resamp.interp in GUI, type or paste the module name +into the Console tab, then Enter to open the GUI dialog, +don't forget to set the method to nearest under Optional tab. + +

g.region res=10 -p
+r.resamp.interp elev_ned_30m out=elev_ned10m_nn method=nearest
+
+ +

+ + +The resulting elevation map should display automatically, if not, +display the resampled map by adding "elev_ned10m_nn" to Layer Manager +in case you don't have it in the Layer Manager already.
+Alternatively, use in command line the following: + +

d.rast elev_ned10m_nn
+
+ +

+The elevation map "elev_ned10m_nn" looks the same as the original one, +so now check the resampled elevation surface using the aspect map: + +

r.slope.aspect elevation=elev_ned10m_nn aspect=aspect_ned10m_nn
+
+ +

+You should see the aspect map derived from the resampled elevation map in your display, +or you can add "aspect_ned10m_nn" to Layer Manager +or in command line using: + +

d.rast aspect_ned10m_nn
+
+ +

+To save the map, click in Map Display on the button +Save display to graphic file" or alternatively, +use the following command to save your map in the current working directory: + +

d.out.file aspect_nn
+
+ +

+Now, reinterpolate DEMs using bilinear and bicubic interpolation. +Check the structure of interpolated elevation surfaces using aspect maps. + +

r.resamp.interp elev_ned_30m out=elev_ned10m_bil meth=bilinear
+r.resamp.interp elev_ned_30m out=elev_ned10m_bic meth=bicubic
+r.slope.aspect elevation=elev_ned10m_bil aspect=aspect_ned10m_bil
+r.slope.aspect elevation=elev_ned10m_bic aspect=aspect_ned10m_bic
+d.rast aspect_ned10m_bil
+d.rast aspect_ned10m_bic
+
+ +

+Save the displayed maps and in your report, compare the results with +the previously computed nearest neighbor result.
+In Map Display click button Save display to graphic file, +or use the following in the command line: + +

d.out.file aspect_bil
+
+Why is the aspect map of elevation raster map computed by the nearest neighbor method +different from the one computed by bilinear interpolation?
+ +

+Resample to lower resolution (30m -> 100m). +

+First, remove all map layers from the Layer Manager because we don't need to see them anymore + and then display the original elevation and land use maps:. + +

d.erase
+d.rast elev_ned_30m
+d.rast landuse96_28m
+
+ +Then change the region resolution and resample +elevation (which is a continuous field) +and land use (which has discrete categories).
+Explain selection of aggregation method. Can we use average also for landuse? +What does mode mean? + + + + +
g.region res=100 -p
+r.resamp.stats elev_ned_30m out=elev_new100m_avg method=average
+d.rast elev_new100m_avg
+d.out.file elev_100m
+
+ + +
d.erase
+r.resamp.stats landuse96_28m out=landuse96_100m method=mode
+d.rast landuse96_100m
+d.out.file lenduse_100m
+
+ +

Converting between vector data types

+ +

+Convert census blocks polygons to points using their centroids +(useful for interpolating a population density trend surface): + +

v.to.points census_wake2000 type=centroid out=census_centr use=vertex
+
+ +Display census boundaries using GUI:
+Add vector "census_wake2000" +Selection > Feature type > boundary +(switch off the other types).
+Save the displayed map in Map Display click button +Save display to graphic file.
+Alternatively, use the following commands to control display. +

+Note that in both command line and GUI you must either enter the full path +to the file you are saving the image in, or you must know the current working +directory. + +

d.erase
+d.vect census_centr icon=basic/circle fill_color=green size=10
+d.vect census_wake2000 color=red fill_color=none
+d.legend.vect
+d.out.file vect_to_points
+
+ + + +

Convert from vector to raster

+ +

+Convert vector data to raster for use in raster-based analysis. +First, remove all previous map layers from Layer Manager and +adjust the computational region to resolution 200m: + +

d.erase
+g.region swwake_30m res=200 -p
+
+ +

+Convert vector points "schools" to raster. +As value for raster use attribute column "CORECAPACI" for core capacity.
+To add legend in GUI use +Add map elements > Show/hide legend +and select "schools_cap_200m". + +

d.vect schools_wake 
+v.info -c schools_wake
+v.to.rast schools_wake out=schools_cap_200m use=attr attrcol=CORECAPACI type=point
+d.rast schools_cap_200m
+d.vect streets_wake co=grey
+d.legend schools_cap_200m at=70,30,2,6
+
+ +

+Now convert lines in "streets" vector to raster. +Set the resolution to 30m and use speed limit attribute. + +

g.region res=30 -p
+v.to.rast streets_wake out=streets_speed_30m use=attr attrcol=SPEED type=line
+
+ +

+Raster "streets_speed_30m" will be added to the Layer manager and displayed in the Map Display. +
+Add legend for "streets_speed_30m" raster using GUI in Map Display:
+Add legend > Set Options > Subset > List of discrete cat numbers +and type in speed limits 25,35,45,55,65; move legend with mouse as needed. +

+Alternatively, use the following commands: + +

d.rast streets_speed_30m 
+d.legend streets_speed_30m at=5,30,2,5 use=25,35,45,55,65 
+
+ +

+Save the displayed map. +In Map Display click button Save display to graphic file, +or use the following. + +

d.out.file vect_to_rast
+
+ +

Convert from raster to vector data

+ +Convert raster lines to vector lines. +

+First, remove map layers from Layer Manager and set the region. +Hint: right click on the raster legends to select Remove legend. +Then do the conversion. +

+ +

d.erase
+g.region raster=streams_derived -p
+d.rast streams_derived
+r.thin streams_derived output=streams_derived_t
+r.to.vect streams_derived_t output=streams_derived_t type=line
+
+

+Explain why we are using r.thin module. + +

+Visually compare the result with streams digitized from airphotos. +To make space for the vector legend you may need to stretch your Map Display window a little wider. + +

d.vect streams_derived_t color=blue
+d.vect streams color=red
+d.legend.vect
+
+ +

+Save the displayed map (in Map Display click button Save display to graphic file). + +

d.out.file streams_compare
+
+ +

+Convert raster areas representing basins to vector polygons. +

+First, remove map layers from Layer Manager and set the region. +To convert, use raster values as category numbers (flag -v) and +display boundaries of vector polygons.
+Verify the basin boundaries by displaying them together with streams - the stream +networks should "fit" within the basin boundaries. + +

d.erase
+g.region raster=basin_50K -p
+r.to.vect -sv basin_50K output=basin_50Kval type=area
+d.erase
+d.rast basin_50K
+d.vect basin_50Kval type=boundary width=2
+d.vect streams color=blue
+
+ +

+Save the displayed map either using GUI or using the following in case +you are working in the command liner:. + +

d.out.file basins
+
+ +
+ + + +
+
+ + + diff --git a/grass/data_visualization.html b/grass/data_visualization.html new file mode 100644 index 00000000..8cab8b90 --- /dev/null +++ b/grass/data_visualization.html @@ -0,0 +1,433 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Data display and visualization

+

Resources: +

+ + +

Start GRASS GIS

+Your current mapset should be a previously created assignment2 +in the nc_spm_08_grass7 project, you can continue working in it or create a new mapset +(e.g., assignment2b) following the instructions from the previous assignments. + +

+To save your outputs and to store external data change your working directory +to the one that you created in previous assignment e.g., +C:\Users\myname\Documents\GIS582_HW\report2, +type cd into Console and hit Enter: +

cd
+
+then browse to and select your report2 directory. + +

Changing the default font

+ +Change the default font used for map rendering in GUI Settings: +File > Preferences > Map Display. +Pick a new default font and Save the settings. +
Note, that you can also change the default color table, default vector display properties +and other display behavior in GUI settings. + +

Basic 2D display operations

+GUI is recommended for the tasks below, see the +GUI equivalents for selected d* commands, the command line instructions below are +to indicate the workflow and output. + +

Display subset of raster data

+Visualy explore relation between developed areas and topography. +Remove all previously used layers from the Layer Manager, then set region and +display land use categories 1, 2 (developed land) over shaded topography.
+Settings > Region > Set region > Set region to match this raster > select "landuse96_28m".
+Add raster > select "elevation_shade".
+Add raster > select "landuse96_28m" > Selection > List of cats to display > 1,2.
+Zoom to computational region.
+Right click on "landuse96_28m" map layer and Change opacity to show topography blended with landuse. +Save display to graphic file. + +
d.erase
+g.region raster=landuse96_28m -p
+d.rast elevation_shade
+d.rast landuse96_28m values=1,2
+#make sure to change opacity of the landuse layer to combine it with shaded topography
+d.vect streets_wake
+d.out.file landuse_elev
+
+ +

Display color composite and subset of raster data

+Visualy explore the development in the 1996 land use map layer and the 2002 landsat imagery +using similar approach as with the shaded elevation above, but here we use a landsat 2002 +image composite
+In Layer Manager: Add various raster map layers > Add RGBmap layer.
+ +
d.rgb red=lsat7_2002_30 green=lsat7_2002_20 blue=lsat7_2002_10
+d.rast landuse96_28m values=1,2
+#make sure to change opacity of the landuse layer to see the developed areas in 2002 and 1996
+d.vect roadsmajor color=yellow
+d.out.file mylandsat
+
+ +How did the developed area change between 1996 and 2002? + + +

Change colors for raster maps

+There are many ways how to adjust or create custom color ramps for raster maps, +see r.colors manual, we explore only some basic tools here. +

+First create your own copy of the elevation map (see the command below).
+Display it by Add raster > "myelev". + +

g.copy raster=elevation,myelev
+d.rast myelev
+
+ +

+Set the color table to a predefined one (feel free to select a different one than the suggestion below, e.g. sepia). +

+GUI options: Right Click on the raster layer "myelev" in Layer Manager > Set color table > Define > Name of color table > "elevation" > Run.
+If you don't see the new colors - click the first button in Map Display to redraw. + +

r.colors myelev color=elevation
+d.rast myelev
+d.out.file mynewelevation
+
+ + + +

+To create color table for future multiple uses, especially for scripting, +type the rules into a plain text mycolor.txt file using a text editor (TextEdit, Notepad) +and save it in your working directory, for example (feel free to use your own colors): + +

+50 blue
+70 aqua
+90 green
+110 yellow
+130 orange
+160 brown
+
+ +

+Then assign it as follows:
+Right click on "myelev" map layer > set color table > Define > Path to rules file > Run.
+If needed, redraw using the first button on Map Display. +You can also create and assign the above color table by typing or pasting it into the +enter values interactively window +or run it from comand line (make sure the rule file is in your working directory): + +

r.colors myelev rules=mycolor.txt
+d.out.file mynewelevation2
+
+ +

+Note that you can combine color RGB and name definitions +as well as % and cat/val to create complex custom color tables +and store them in a text file for future use, see the examples in r.colors man page. + +

Compare the use of equal interval and histogram equalized color table for slope

+ +First, we set an equal interval color ramp to our copy of the slope map. +To add the legend use Add map elements button on Map Display. + +
g.copy raster=slope,myslope
+r.colors myslope color=bgyr
+d.rast myslope
+d.legend myslope
+d.out.file myslopecolor
+
+ +

+Now set the histogram equalized color table, and save the new slope map. +

r.colors -e myslope color=bgyr
+d.out.file myslopecolorequalized
+
+ +

+To explain the difference between the two maps, you can generate a histogram. +On Map Display click on Analyze map > Create histogram with d.histogram to open the histogram tool and +save results to graphics file. Or use this command which will +add a histogram as a layer to Layer Manager and then save the image: +

d.histogram myslope
+d.out.file slopehistogram
+
+ +What is the effect of the histogram equalized color table on the slope map pattern? + +

Modify legend, scale and grid

+To re-size the legend for myslope, right click on the legend, +select Resize legend and resize with mouse. +Alternatively you can resize by selecting Pointer mode in Map Display, double clicking on legend to launch the legend dialog +and set options > Optional > Placement > 50,90,4,7.
+Numbers are bottom,top,left,right as percentage of screen coordinates.
+Add units to the legend: Add map elements > Add text layer > type deg > OK.
+Add barscale on Map Display: Add map elements > Add scale bar (double click on it to change iti, +for example you can change its length and units under Optional tab).
+

+Note: you can use horizontal legends by using Placement at=6,10,2,30 +or just stretch it horizontally with mouse. + +

d.barscale length=1000
+d.legend myslope at=50,90,4,7
+
+ +

+Switch off "myslope", display "myelev" raster and change the legend to "myelev" raster. +Add grid for state plane coordinates at 5000m with ticks at 1000m. +Also add a lat/long grid at 2 arc minute interval. +

+In Layer Manager > Add various overlays > Add grid layer > Size 5000 > Run.
+To draw only border with ticks: change Size to 1000 and click Disable > Disable grid drawing > Run.
+Switch off Disable grid drawing.
+To draw lat/long grid: set Required > Size to 0:02 > click Draw > Draw geographic grid > Run.
+Command line alternative: + +

d.rast myelev
+d.legend myelev
+d.grid size=5000 color=brown
+d.grid -n size=1000
+d.out.file myelevmap_gridxy
+#switch off previous grids
+d.grid -g size=0:02 color=black
+d.out.file myelevmap_gridlatlong
+
+ +

Visualization in 3D perspective

+

+Interactively view "elevation" raster and vector data ("streams", "usgsgages") in 3D view, +adjust viewing position, surface properties and lighting to highlight features and display +landuse data over topography. Note, that legend is not currently supported in 3D view. + +Remove or switch off any map layers in the Layer Manager (if you have any) +and set region to the raster "elevation". + +

d.erase
+g.region raster=elevation -p 
+
+ +

+Then add raster "elevation", and vector "streams", and "usgsgages".
+Zoom to computational region and Switch to 3D view.
+

+Follow the video +Visualization in GRASS I: surface +and Visualization in GRASS II: draping points and lines(legend does not work in GRASS8.4) +and save 2-3 images for your report +(save as tiff or take screenshot, if you don't have tiff support). + +

Optional

+ +

Visualizing multiple surfaces

+Visualize multiple surfaces (bare earth and surface with vegetation and structures),
+analyze their relationship using crossections generated by interactive cutting planes
+

+It is recommended to quit GRASS before starting the task below +because we will be working with a smaller, high resolution region. +

+Start grass with your previous mapset. +First set region to "rural_1m", then interpolate surface with vegetation +from multiple return lidar points using the module v.surf.rst +(we will explain interpolation later on). + +

g.region rural_1m -p
+v.surf.rst input=elev_lidrural_mrpts elevation=elev_lidruralmr_1m npmin=120 segmax=25 tension=40 smooth=1.0
+
+ +

+In Layer Manager Add rasters "elev_lidruralmr_1m" and "elev_lid792_1m" (bare earth). +In Map Display Zoom to computational region. +

+Make sure that you have only the two elevation maps switched on in the Layer Manager. +Switch to 3D view and follow the video +Visualization in GRASS III: cutting planes. +Save 2-3 interesting images for your report, include at least one crossection. +If you do not see the elevation surfaces click Look: "center" in the View pannel of the 3D view. + + +

Optional

+ +

Map Swipe

+Use mapswipe to compare the new orthophoto with the ortho provided in the data set:
+ +
g.mapsets mapset=assignment1 operation=add
+
+ +File > Map Swipe.
+Add raster > select "ortho_2001_t792_1m" and "ortho_new".
+

+Move slider to compare images - what changes do you observe? +Save a screenshot of the mapswipe window showing the comparison of orthos. +See more options here. + +

+ + + + +

+ + + +
+
+ + + diff --git a/grass/grass_intro.html b/grass/grass_intro.html new file mode 100644 index 00000000..7a57bed7 --- /dev/null +++ b/grass/grass_intro.html @@ -0,0 +1,226 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

GRASS GIS 7 GUI intro

+Note: The screenshots were done for GRASS GIS 7.0, there might be therefore slight differences for newer versions of GRASS GIS. +

Start

+ +

GRASS data structure

+For this introduction we create new mapset intro to keep data organized. +

+ + +

Display

+

GRASS GUI: Add raster map elev_lid792_1m

+ + +

+Set the computational extent and resolution of the mapset to match map elev_lid792_1m. +Computational region will be explained later. +

+ + + +

Display elevation in 3D view

+ +

+ +

+ +

+ +

+ + +

Display elevation legend

+ + +

GRASS modules

+GRASS functionality is available through modules (tools). Modules +respect following naming conventions: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
groupprefixexamples
generalg.*g.list, g.remove, g.copy
rasterr.*r.univar, r.neighbors, r.contour
vectorv.*v.info, v.generalize, v.db.select
3D rasterr3.*r3.info, r3.to.rast, r3.colors
temporalt.*t.list, t.rast.aggregate, t.vect.univar
.........
+

Finding and running a module

+Type name or keyword in Search: +

+ +

+Raster > Reports and statistics > Basic raster metadata +

+ +

+Type beginning of command in Command console +

+ +

+Command console supports auto-completion of maps and parameters. +

+ +

+Browse command history using up and down arrows. +

+ + +

Region settings

+Before we use a module to compute a new raster map, +we must set properly computational region. +All raster computations will be performed in the specified +extent and with the given resolution. +
+g.region -p
+
+north:      220750
+south:      220000
+west:       638300
+east:       639000
+nsres:      1
+ewres:      1
+rows:       750
+cols:       700
+cells:      525000
+
+ +

+We can set it to match a raster map like this: +

+ +

Running modules

+

Module example: r.slope.aspect

+Raster > Terrain analysis > Slope and aspect +

+
+
+
+ + +

3D view

+Uncheck newly created maps: +

+ +

+Add vector map streams: +

+ +

+Set resolution and map draped over the surface: +

+
+
+ +

+Save picture as TIF or PPM file and then quit GUI: +

+
+ + +

+

Quit GRASS session

+

+ + + +

+ + + +
+
+ + + diff --git a/grass/hydrology.html b/grass/hydrology.html new file mode 100644 index 00000000..a1a93191 --- /dev/null +++ b/grass/hydrology.html @@ -0,0 +1,354 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Flow routing and watershed analysis

+

Resources: +

+ +

+Text file with outlet point coordinates: +

+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_hydrology) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all text files with site locations (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + + + +start GRASS
+ +

Compute flow direction, flow accumulation and subwatersheds

+Compute flow direction, flow accumulation and subwatersheds +with approx. size of 10000 cells from 30m NED. + +
g.region raster=elev_ned_30m -p
+r.watershed -s elevation=elev_ned_30m threshold=10000 accumulation=accum_10K drainage=draindir_10K basin=basin_10K
+
+ +

+Extract more detailed streams from flow accumulation raster: + +

r.mapcalc "streams_der_30m = if(abs(accum_10K) > 100, 1, null())"
+
+ +

+Convert to vector format and display results +along with the official Wake county streams (red): + +

r.to.vect -s basin_10K output=basin_10K type=area
+r.thin streams_der_30m output=streams_der_30m_t
+r.to.vect -s streams_der_30m_t out=streams_der_30m type=line
+
+ +

+Generate shaded map and display: +How do the derived streams compare with the official stream map?
+How can you modify the mapcalc expression to make stream origins fit better +with the official stream map? + +

d.erase
+d.his hue=basin_10K intensity=elevation_shade brighten=40
+d.vect basin_10K type=boundary
+d.rast lakes
+d.vect streams_der_30m color=blue
+d.vect streams color=red
+d.out.file mystreams
+
+ +

Create map of DEM depressions

+Depression filling is often necessary for certain flow routing algorithms but it can alter the elevation data significantly. +Find out how extensive the depressions are in our DEM.
+Note that r.watershed doesn't need any depression filling thanks to +its underlying algorithm which uses least cost path to get over depressions. + +
g.region raster=elevation -p
+r.fill.dir input=elevation output=elev_fill1 direction=dir1 areas=unres1
+r.fill.dir input=elev_fill1 output=elev_fill2 direction=dir2 areas=unres2
+r.fill.dir input=elev_fill2 output=elev_fill3 direction=dir3 areas=unres3
+r.mapcalc "depr_bin = if((elevation-elev_fill3) < 0., 1, null())"
+r.colors depr_bin color=blues
+
+ +

+Remove all previously used layers from the Layer Manager and +display the new results, compare the derived depressions with actual lakes: + +

d.erase
+d.rast elevation
+d.vect roadsmajor
+d.rast depr_bin
+d.vect lakes type=area fill_color=blue
+d.out.file depressions
+
+ + +

Derive contributing area for a given outlet

+Set region to the high resolution study area and zoom to it: + +
g.region rural_1m -p
+r.watershed -as elevation=elev_lid792_1m threshold=5000 accumulation=accum_5K drainage=draindir_5K basin=basin_5K
+
+ +

+Remove previous layers. Display extracted streams over aerial image: + +

d.erase
+d.rast ortho_2001_t792_1m
+d.rast accum_5K values=1500-1000000
+
+ +

+Identify outlet on the extracted stream. +

+Create a vector map with the point east=638845.52 north=220085.26 (download the text file) +that has accum_5K=224510. + +

v.in.ascii input=outlet_point.txt output=outletA30 separator=space
+d.vect outletA30 color=yellow
+
+ +

+Delineate the contributing area associated with this outlet and convert it to vector format: + +

r.water.outlet input=draindir_5K output=basin_A30 coordinates=638845.52,220085.26
+r.to.vect -s basin_A30 output=basin_A30 type=area
+
+ +

+Display watershed boundary along with contours.
+Compute the watershed area (category 1)
+ +

d.vect basin_A30 type=boundary color=green width=2
+r.contour elev_lid792_1m output=elev_lid792_cont_1m step=1 minlevel=104
+d.vect elev_lid792_cont_1m color=white
+d.out.file watershedA30
+r.report basin_A30 unit=h,a
+
+ +

Assess and mitigate impact of the road on flowrouting

+Compare the extracted streams (accum > 1500) with official stream data: + +
d.rast ortho_2001_t792_1m
+d.rast accum_5K values=1500-1000000
+d.vect streets_wake color=red
+d.vect streams color=green
+d.out.file streamcompare
+
+ +

Carve a pre-defined channel given by the stream data into DEM

+ +
r.carve raster=elev_lid792_1m vector=streams width=2 depth=0.8 output=elev_lidcarved_1m
+r.colors elev_lidcarved_1m raster=elev_lid792_1m
+d.rast elev_lidcarved_1m
+
+ +

Extract streams from the carved DEM and compare with the official streams map.
+What is the difference between accum_5K, accumc_5K1m and streams?
+Explain the advantage and disadvantage of carving.
+ +

r.watershed -as elevation=elev_lidcarved_1m accumulation=accumc_5K1m
+d.rast accumc_5K1m values=1500-10000000
+d.vect streams
+d.out.file streamcarved
+
+ +

Compute refined flow pattern using D-inf

+Compare upslope and downslope flow lines: +On what type of landform (ridge, valley) they converge? + +
g.region raster=elev_lid792_1m -p
+r.flow elevation=elev_lid792_1m flowline=flowlines flowlength=flowlg_1m flowaccumulation=flowacc_1m
+r.flow -u elevation=elev_lid792_1m flowlength=flowlgup_1m flowaccumulation=flowaccup_1m
+
+ +

+Display maps along with contours to see relation to terrain: + +

d.erase
+d.rast flowacc_1m
+d.vect elev_lid792_cont_1m color=red
+d.vect flowlines
+d.out.file flowdown
+d.erase
+d.rast flowaccup_1m
+d.vect elev_lid792_cont_1m color=red
+d.out.file flowlines
+
+ +

Compare the multiple flow direction result with D8 and Dinf

+Compare the results of r.watershed: accum_5K and accum_mfd_5K1m. Why are they different, +which is more accurate and why? +
r.watershed -a elevation=elev_lid792_1m threshold=5000 accumulation=accum_mfd_5K1m
+d.rast accum_mfd_5K1m
+d.vect streams
+d.out.file stream_mfd
+d.erase
+d.rast accum_5K
+d.vect streams
+d.out.file stream_sfd
+
+ +

Compute wetness index

+ +
g.region rural_1m -p
+r.topidx elev_lid792_1m output=wetness_1m
+r.colors map=wetness_1m color=water
+d.rast wetness_1m
+d.out.file wetness
+
+ +Compute the wettness index using the formula in the lecture (hint: you will need +to compute slope using elev_lid792_1m and use accum_mfd_5K1m as contributing area. +Check the values by comparing your output with wetness_1m computed with r.topidx. + +

Display elev_lid792_1m in 3D and drape over wetness_1m as color.
+Note: switch off all layers except for elev_lid792_1m. + +

Create a map of flooded area

+Create a map of flooded area for a given water level and seed point: + +
r.lake elevation=elev_lid792_1m water_level=113.5 lake=flood1 coordinates=638728,220278
+d.rast elev_lid792_1m
+d.rast flood1
+d.out.file floodedarea
+
+ +

+Increase water level to 113.7m and 115.0m and create flooded +area maps at these two levels. Include the maps of flooded areas +at these water levels in your report. + + + + + + + + + +

+ + + +
+
+ + + diff --git a/grass/hydrology_erosion.html b/grass/hydrology_erosion.html new file mode 100644 index 00000000..b9683475 --- /dev/null +++ b/grass/hydrology_erosion.html @@ -0,0 +1,299 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Erosion modeling

+

Resources: +

+ +

+Text files with recode rules and color rules: +

+ + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_erosion) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all text files with recode rules, color rules and site locations (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + + + + + + +

Compute soil detachment using USLE3D

+ +

Compute topographic potential (LS factor)

+ +Compare impact of the power function exponents on the erosion pattern.
+Which equation represents conditions when contributing area has greater impact +and which models stronger influence of slope? + +
g.region raster=elev_lid792_1m -p
+r.slope.aspect elevation=elev_lid792_1m slope=slope_1m aspect=aspect_1m
+r.flow elevation=elev_lid792_1m flowaccumulation=flowacc_1m
+r.mapcalc "lsfac3d_1m = 1.2 * pow(flowacc_1m * 1./22.1,0.2) * pow(sin(slope_1m)/0.09,1.3)"
+r.mapcalc "lsfac3d_s1_1m = 1.5 * pow(flowacc_1m * 1./22.1,0.5) * pow(sin(slope_1m)/0.09,1.0)"
+r.colors lsfac3d_s1_1m color=gyr -e
+r.colors lsfac3d_1m raster=lsfac3d_s1_1m
+
+ +Display layers and save outputs: +d.erase +
d.rast lsfac3d_1m
+d.vect elev_lid792_cont1m
+d.legend lsfac3d_1m at=2,50,2,6
+d.out.file lsfac_s13
+
+d.rast lsfac3d_s1_1m
+d.vect elev_lid792_cont1m
+d.legend lsfac3d_s1_1m at=2,50,2,6
+d.out.file lsfac_s10
+
+ + +

Compute soil detachment for spatially variable land cover

+ +Set region to rural area and recode landcover_1m to cfactor +using the r.recode module. +Assign special color table and display result.
+ +
g.region rural_1m -p
+r.recode landcover_1m output=cfactor_1m rules=cfac_rules.txt
+r.colors map=cfactor_1m rules=cfac_color.txt
+d.rast cfactor_1m
+
+ + +

+Compute the USLE3D equation using map algebra, +cfactorbare_1m is the same as cfactor_1m, +cfactorgrow_1m has landuse recoded for summer conditions.
+Specify units of the raster maps using +the r.support module.
+Compare erosion rates and distribution +for winter (bare) and summer conditions. + +

r.mapcalc "soillossbare_1m = 270. * soils_Kfactor * lsfac3d_1m * cfactorbare_1m"
+r.mapcalc "soillossgrow_1m = 270. * soils_Kfactor * lsfac3d_1m * cfactorgrow_1m"
+r.colors soillossbare_1m rules=soilloss_color.txt
+r.colors soillossgrow_1m raster=soillossbare_1m
+r.support map=soillossbare_1m units="ton/(acre.year)"
+r.support map=soillossgrow_1m units="ton/(acre.year)"
+
+d.erase +Remove previous layers and display the new ones: +
d.rast soillossbare_1m
+d.legend soillossbare_1m at=2,50,2,6
+d.out.file soillossbare
+d.rast soillossgrow_1m
+d.legend soillossgrow_1m at=2,50,2,6
+d.out.file soillosgrow
+r.univar soillossbare_1m
+r.univar soillossgrow_1m
+
+ + +

Compute new DEM with erosion carved-in

+ +
r.mapcalc "elev_erodedb_1m = elev_lid792_1m-(soillossbare_1m/100.)"
+
+ +Display elev_erodedb_1m in 3D and drape over soillossbare_1m as color.
+To view it in 3D switch off everything except elev_erodedb_1m.
+Drape soillossbare_1m as color and don't forget to set fine resolution to 1.
+Use lighting from SW, z-exag at least 2.0
+ + +

Compute net erosion/deposition maps (using USPED)

+ +Compute net erosion/deposition maps as divergence of sediment flow (USPED). +

+First compute sediment flow and its components in x, y directions: + +

r.mapcalc "sedflow_1m = 270. * soils_Kfactor * cfactorgrow_1m * flowacc_1m * sin(slope_1m)"
+r.colors sedflow_1m raster=soillossbare_1m
+d.rast sedflow_1m
+r.mapcalc "qsx = sedflow_1m * cos(aspect_1m)"
+r.mapcalc "qsy = sedflow_1m * sin(aspect_1m)"
+
+ +

+Compute change of sediment flow in the x and y directions +and then change in the direction of flow using divergence.
+ +

r.slope.aspect elevation=qsx dx=qsx_dx
+r.slope.aspect elevation=qsy dy=qsy_dy
+r.mapcalc "erdep = qsx_dx + qsy_dy"
+r.info -r erdep
+r.colors erdep rules=erdep_color.txt
+d.rast erdep
+d.legend erdep at=2,50,2,6 range=-100,100
+
+ +

+Display elev_lid792_1m in 3D and drape over erdep as color (switch off all layers except for elev_lid792_1m).
+ + +

Compute summary statistics

+ +Use r.recode to classify erosion/deposition and r.category +to add labels (stable, high erosion, etc) to individual categories: + +
r.recode erdep output=erdep_class rules=erdep_class.txt
+r.category erdep_class rules=erdep_label.txt sep=:
+r.report erdep_class unit=p,h,a
+
+ +

+Example output: +

+[...]
+| #| description         |  %  | hectares |  acres  |
+|-4| severe erosion . . .| 0.19|  0.101300|  0.25031|
+|-3| high erosion . . . .| 1.34|  0.701600|  1.73365|
+|-2| moderate erosion . .| 3.89|  2.042600|  5.04726|
+|-1| low erosion . . . . |19.74| 10.366000| 25.61438|
+| 0| stable . . . . . . .|61.32| 32.192000| 79.54643|
+| 1| low deposition . . .| 8.40|  4.407600| 10.89118|
+| 2| moderate deposition | 2.49|  1.307500|  3.23083|
+| 3| high deposition . . | 1.29|  0.676900|  1.67262|
+| 4| severe deposition . | 0.24|  0.126100|  0.31159|
+| *|no data. . . . . . . | 1.10|  0.578400|  1.42922|
+|---------------------------------------------------|
+|TOTAL                   |100.00| 52.500000|129.7275|
+
+ +Comment on advantages, disadvantages and risks of +classifying erosion/deposition data into categories. + +

+Compute univariate statistics: + +

r.univar erdep
+
+ +

+Look for line with sum: + +

+sum: -2374.473814
+
+ +

+The units are tons/(acre.year), but our cells are 1 m2. +Therefore we have to divide by 4046 (1 acre = 4046 m2) +to get total ton per year transported from the watershed. +You can use the Python shell in the Python tab do the division. + +

+ + + +
+
+ + + diff --git a/grass/img/GRASS8.2_download_nc_sample_dataset.webm b/grass/img/GRASS8.2_download_nc_sample_dataset.webm new file mode 100644 index 00000000..03c589f6 Binary files /dev/null and b/grass/img/GRASS8.2_download_nc_sample_dataset.webm differ diff --git a/grass/img/aspect3d.png b/grass/img/aspect3d.png new file mode 100644 index 00000000..374c5f31 Binary files /dev/null and b/grass/img/aspect3d.png differ diff --git a/grass/img/firestations_table.png b/grass/img/firestations_table.png new file mode 100644 index 00000000..fb6aaf4e Binary files /dev/null and b/grass/img/firestations_table.png differ diff --git a/grass/img/intro/3d_elev.png b/grass/img/intro/3d_elev.png new file mode 100644 index 00000000..cacd3963 Binary files /dev/null and b/grass/img/intro/3d_elev.png differ diff --git a/grass/img/intro/3d_ortho.png b/grass/img/intro/3d_ortho.png new file mode 100644 index 00000000..3beb866e Binary files /dev/null and b/grass/img/intro/3d_ortho.png differ diff --git a/grass/img/intro/3d_quit.png b/grass/img/intro/3d_quit.png new file mode 100644 index 00000000..71accb40 Binary files /dev/null and b/grass/img/intro/3d_quit.png differ diff --git a/grass/img/intro/3d_save.png b/grass/img/intro/3d_save.png new file mode 100644 index 00000000..9ba0bd7d Binary files /dev/null and b/grass/img/intro/3d_save.png differ diff --git a/grass/img/intro/3d_slope.png b/grass/img/intro/3d_slope.png new file mode 100644 index 00000000..ca0852ef Binary files /dev/null and b/grass/img/intro/3d_slope.png differ diff --git a/grass/img/intro/add_elev_lid.png b/grass/img/intro/add_elev_lid.png new file mode 100644 index 00000000..723a64c5 Binary files /dev/null and b/grass/img/intro/add_elev_lid.png differ diff --git a/grass/img/intro/elev_3D_1.png b/grass/img/intro/elev_3D_1.png new file mode 100644 index 00000000..6735ded0 Binary files /dev/null and b/grass/img/intro/elev_3D_1.png differ diff --git a/grass/img/intro/elev_3D_2.png b/grass/img/intro/elev_3D_2.png new file mode 100644 index 00000000..841e9f44 Binary files /dev/null and b/grass/img/intro/elev_3D_2.png differ diff --git a/grass/img/intro/elev_3D_3.png b/grass/img/intro/elev_3D_3.png new file mode 100644 index 00000000..1eb82df8 Binary files /dev/null and b/grass/img/intro/elev_3D_3.png differ diff --git a/grass/img/intro/elev_3D_4.png b/grass/img/intro/elev_3D_4.png new file mode 100644 index 00000000..68e62d6e Binary files /dev/null and b/grass/img/intro/elev_3D_4.png differ diff --git a/grass/img/intro/intro.png b/grass/img/intro/intro.png new file mode 100644 index 00000000..391c090d Binary files /dev/null and b/grass/img/intro/intro.png differ diff --git a/grass/img/intro/intro_big.png b/grass/img/intro/intro_big.png new file mode 100644 index 00000000..dc8cabfc Binary files /dev/null and b/grass/img/intro/intro_big.png differ diff --git a/grass/img/intro/legend.png b/grass/img/intro/legend.png new file mode 100644 index 00000000..060bf28c Binary files /dev/null and b/grass/img/intro/legend.png differ diff --git a/grass/img/intro/module_complete.png b/grass/img/intro/module_complete.png new file mode 100644 index 00000000..89fcf035 Binary files /dev/null and b/grass/img/intro/module_complete.png differ diff --git a/grass/img/intro/module_enter.png b/grass/img/intro/module_enter.png new file mode 100644 index 00000000..19c109c9 Binary files /dev/null and b/grass/img/intro/module_enter.png differ diff --git a/grass/img/intro/module_history.png b/grass/img/intro/module_history.png new file mode 100644 index 00000000..1fbf3d17 Binary files /dev/null and b/grass/img/intro/module_history.png differ diff --git a/grass/img/intro/module_menu.png b/grass/img/intro/module_menu.png new file mode 100644 index 00000000..d9026be1 Binary files /dev/null and b/grass/img/intro/module_menu.png differ diff --git a/grass/img/intro/module_search.png b/grass/img/intro/module_search.png new file mode 100644 index 00000000..59cdab3f Binary files /dev/null and b/grass/img/intro/module_search.png differ diff --git a/grass/img/intro/module_type.png b/grass/img/intro/module_type.png new file mode 100644 index 00000000..b8195e7b Binary files /dev/null and b/grass/img/intro/module_type.png differ diff --git a/grass/img/intro/region.png b/grass/img/intro/region.png new file mode 100644 index 00000000..11d984e4 Binary files /dev/null and b/grass/img/intro/region.png differ diff --git a/grass/img/intro/region_set.png b/grass/img/intro/region_set.png new file mode 100644 index 00000000..9a8cbffe Binary files /dev/null and b/grass/img/intro/region_set.png differ diff --git a/grass/img/intro/rslope_1.png b/grass/img/intro/rslope_1.png new file mode 100644 index 00000000..2fed4c1f Binary files /dev/null and b/grass/img/intro/rslope_1.png differ diff --git a/grass/img/intro/rslope_2.png b/grass/img/intro/rslope_2.png new file mode 100644 index 00000000..0430e6c6 Binary files /dev/null and b/grass/img/intro/rslope_2.png differ diff --git a/grass/img/intro/rslope_3.png b/grass/img/intro/rslope_3.png new file mode 100644 index 00000000..4e9e7c00 Binary files /dev/null and b/grass/img/intro/rslope_3.png differ diff --git a/grass/img/intro/rslope_4.png b/grass/img/intro/rslope_4.png new file mode 100644 index 00000000..f33e347b Binary files /dev/null and b/grass/img/intro/rslope_4.png differ diff --git a/grass/img/intro/streams.png b/grass/img/intro/streams.png new file mode 100644 index 00000000..2e892605 Binary files /dev/null and b/grass/img/intro/streams.png differ diff --git a/grass/img/intro/terminal_quit.png b/grass/img/intro/terminal_quit.png new file mode 100644 index 00000000..2e81fe99 Binary files /dev/null and b/grass/img/intro/terminal_quit.png differ diff --git a/grass/img/intro/uncheck.png b/grass/img/intro/uncheck.png new file mode 100644 index 00000000..3e719c6a Binary files /dev/null and b/grass/img/intro/uncheck.png differ diff --git a/grass/import.html b/grass/import.html new file mode 100644 index 00000000..8a225115 --- /dev/null +++ b/grass/import.html @@ -0,0 +1,297 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Import and export of data from different sources in GRASS GIS

+ +GRASS GIS project can contain data only in one coordinate reference system (CRS) +in order to have full control over reprojection +and avoid issues coming from on-the-fly reprojection. + +

+When starting a project, decide which CRS you will use. Create +a new project using Project Wizard (accessible from GRASS GIS start-up page). +Specify desired CRS either by providing +EPSG code (can be found e.g. at epsg.io) +or by providing a georeferenced file (such as Shapefile) which has +the CRS you want. + +

Importing data in common vector and raster formats

+ +

+For basic import of raster and vector files, use r.import +and v.import, respectively. +These modules will reproject the input data if necessary. +If the input data's CRS matches the project's CRS, we can use +r.in.gdal or v.in.ogr +for importing raster and vector. + +

+Alternatively, you can use a two-step approach +for the cases when the data's CRS doesn't match the project's CRS. +First create a new temporary project +based on the CRS of the data you want to import, switch to this project +and then use r.in.gdal or v.in.ogr +to import raster and vector data, respectively. Then switch to the project +of your project and use +r.proj and v.proj +to reproject data from the temporary project to your project. +This approach is necessary for formats which are not supported by +r.import and v.import modules. +Modules r.proj and v.proj +can be also used for bringing raster and vector maps from one project to another. + +

+Modules r.in.gdal and v.in.ogr +check whether the CRS of the imported data matches the project's CRS. +Sometimes the CRS of imported data is not specified correctly +or is missing and therefore import fails. +If you know that the actual CRS matches the project's CRS, +it is appropriate to use r.in.gdal's +or v.in.ogr's -o flag to overwrite the projection +check and import the data as they are. + +

+If you zoom to raster or vector in GRASS GUI and it does not fit with +the rest of the data, it means that it was imported with wrong projection +information (or with the -o flag when the coordinates in fact don't match). +You can use r.info and v.info to get the information +about the extents of (already imported) rasters and vectors. + +

Importing CSV and other ASCII data

+ +

+There are many formats of plain text files. In the context of GIS we usually +talk about ASCII formats and CSV files. CSV files usually hold only +coordinates and sometimes attributes of points. +These files usually don't have CRS information attached to them, +so we must be very careful and import the data only if the coordinates +are in the CRS of the project we are using. + +

+Let's create a CSV file called points.txt +using a text editor (Notepad++, TextEdit, MS Notepad), for example: + +

+637803.6,223804.7
+641835.5,223761.2
+643056.0,217419.0
+
+ +The coordinates we entered are in EPSG:3358 and we assume that the +GRASS project is using this CRS as well. +This file can be imported to GRASS GIS using: + +
v.in.ascii input=points.txt output=test_ascii separator=comma x=1 y=2
+
+ +Notice, we have to specify the column number where the X and Y (optionally Z) +coordinates are stored. In this example, X coordinates are in the first column +Y in the second one. Don't forget to specify correct column delimiter. +

+If the data are not in the CRS we are using, create a new project +with matching CRS, +import the data and use v.proj as described above. + + +

Importing lidar point clouds

+ +Lidar point clouds can be imported in two ways: as raster maps using binning +or as vector points. However, one must explore the dataset first. + +

+In command line, we can check the projection information and other metadata +about a LAS file using lasinfo tool: + +

lasinfo tile_0793_016_spm.las
+
+

+r.in.lidar module can be used to scan the spatial extent +of the dataset: + +

r.in.lidar input=tile_0793_016_spm.las -s
+
+ + +

Binning

+ +Before creating the actual raster with elevation, we need to decide the extent +and the resolution we will use for the binning. We can use +r.in.lidar module for that by setting the resolution +directly and using a -e flag to use dataset extent instead of taking it from +the computational region. +We are interested in the density of points, so we use method=n: + +
r.in.lidar input=tile_0793_016_spm.las output=tile_0793_016_n method=n -e resolution=2
+
+ +After determining the optimal resolution for binning and the desired area, +we can use g.region to set the computational region. +r.in.lidar without the additional parameters above +will create a raster map from points using binning with resolution and extent +taken from the computational region: + +
r.in.lidar input=tile_0793_016_spm.las output=tile_0793_016
+
+ + +

Interpolation

+ +When the result of binning contains a lot of NULL cells or when it is not +smooth enough for further analysis, we can import the point cloud as vector +points and interpolate a raster. + +

+Supposing that we already determined the desired extent and resolution +(using r.in.lidar as described above) we can use +v.in.lidar lidar for import (and using class filter +to get only ground points): + +

v.in.lidar input=tile_0793_016_spm.las output=tile_0793_016 class=2 -r -t -b
+
+ +This import only the points of class 2 (ground) +in the current computational region +without the attribute table and building the topology. +Then we follow with interpolation using, +e.g. v.surf.rst module: + +
v.surf.rst input=tile_0793_016 elevation=tile_0793_016_elevation slope=tile_0793_016_slope aspect=tile_0793_016_aspect npmin=100 tension=20 smooth=1
+
+ + +

Importing data in different CRS

+ +In case the CRS of the file doesn't match the CRS +used in the GRASS project, reprojection can be done before importing +using las2las tool from libLAS. + +

+The following example command is for reprojecting tiles +in NAD83/North Carolina in feet (EPSG:2264) +into NAD83/North Carolina in meters (EPSG:3358): +

las2las --a_srs=EPSG:2264 --t_srs=EPSG:3358 -i input_spf.las -o output_spm.las
+
+ +

Importing data in LAS version 1.4 or newer

+ +The LAS version 1.4 is not backwards compatible for readers expecting +LAS 1.2. Unfortunately, libLAS supports only 1.2 and not 1.4. +Fortunately, PDAL can convert to the version 1.2 using the translate +tool: + +
pdal translate --input=input_v14.las --writers.las.minor_version=2 --output=output_v12.las
+
+ +

Importing data with broken projection information

+ +Modules r.in.lidar and v.in.lidar +check whether the CRS of the imported data matches the project's CRS. +Sometimes the CRS of imported data is not specified correctly +or is missing and therefore import fails. +If you know that the actual CRS matches the project's CRS, +it is appropriate to use r.in.lidar's +or v.in.lidar's -o flag to overwrite the projection +check and import the data as they are. + +
r.in.lidar input=tile_0793_016_spm.las -s -o
+
+ + +

Transferring GRASS GIS data between two computers

+ +If two GRASS GIS users want to exchange data, they can use GRASS GIS native +exchange format – packed map. A vector or raster map can be +exported from a GRASS project in this format using +v.pack or r.pack respectively. +This format preserves everything for a map in a way as it is stored in +a GRASS Database. Projection of the source and target GRASS projects +must be the same. + +

+If GRASS GIS users wish to exchange GRASS Mapsets, they can do so as long as +the source and target GRASS projects have the same projection. +The PERMANENT Mapset should not be usually exchanged as it is a crucial part +of the given project. +Projects can be easily transferred in between GRASS Database directories +on different computers as they carry all data and projection information +within them and the storage format used in the background is platform independent. +Projects as well as whole GRASS Databases can be copied and moved +in the same way as any other directories on the computer. + + +

Further resources

+ + + +
+ + + +
+
+ + + diff --git a/grass/index.html b/grass/index.html new file mode 100644 index 00000000..79dbdef8 --- /dev/null +++ b/grass/index.html @@ -0,0 +1,109 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

List of GRASS GIS assignments

+ + + +

+If you are a non-NCSU visitor, you may find these additional pages useful: +

+ +
+ + + +
+
+ + + diff --git a/grass/interpolation_1.html b/grass/interpolation_1.html new file mode 100644 index 00000000..78614d5e --- /dev/null +++ b/grass/interpolation_1.html @@ -0,0 +1,336 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation I: methods

+

Resources: +

+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_interpolation_1) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+ + +

Compute Voronoi polygons

+Display the polygons with centroids.
+Find the column name where z is stored and convert the polygons to raster.
+Compute aspect to evaluate the surface geometry. + +
g.region rural_1m -p
+d.erase
+v.voronoi elev_lid792_randpts output=elev_vor
+d.vect elev_vor size=1 -c type=area,centroid
+v.info -c elev_vor
+v.to.rast elev_vor output=elev_vor_1m attrcolumn=value use=attr
+r.colors elev_vor_1m color=elevation
+r.slope.aspect elevation=elev_vor_1m aspect=asp_vor_1m
+
+ +

+Display the resulting elevation map and aspect map. +

d.erase
+d.rast elev_vor_1m
+d.rast asp_vor_1m
+d.vect elev_lid792_randpts size=1 color=red
+d.out.file elev_voronoi
+
+

+Optionally, you can view it in 3D perspective +(switch off all layers except for elev_vor_1m and switch to 3D view). + +

Interpolation using IDW

+Set region and resolution, find a column name where z is stored.
+Interpolate DEM using IDW, check the result using aspect. + +
g.region rural_1m -p
+v.info -c elev_lid792_randpts
+v.surf.idw elev_lid792_randpts output=elev_idw_1m column=value
+r.colors elev_idw_1m color=elevation
+r.slope.aspect elevation=elev_idw_1m aspect=asp_idw_1m
+d.erase
+d.rast elev_idw_1m
+d.rast asp_idw_1m
+d.vect elev_lid792_randpts size=2 color=red
+d.out.file elev_idw
+
+ +

+Design experiment that elucidates the impact of IDW parameters on the surface, +focus on the impact of: +

    +
  • exponent e.g., power=0.5, 1, 5 (2 is the default)
  • +
  • number of neighboring points e.g., npoint=1, 5, 20, 60 (12 is the default)
  • +
+Include selected images (e.g. hillshade or aspect) +and relevant stats (e.g., mean, min, max from r.univar, histogram) +that highlight the differences in the resulting surfaces into your report. +

+Check the surface interpolated with default parameters using 3D view.
+Do not forget to switch off everything except for the interpolated elevations and +set fine resolution to 1.
+You can use constant color for the surface to highlight its structure.
+Save an image for your report. + +

Compute DEM from contours

+Compute DEM from contours using linear interpolation between isolines: +
g.region rural_1m -p
+v.to.rast elev_lid792_cont1m output=el_lid792_cont1m attrcolumn=level use=attr
+r.surf.contour el_lid792_cont1m output=el_rcont
+r.colors el_rcont color=elevation
+
+ +

+Check the result using a 2D aspect map or view el_rcont in 3D.
+In 3D set view from SE and light from NW to reveal subtle geometry. + +

r.slope.aspect elevation=el_rcont aspect=asp_rcont
+d.rast el_rcont
+d.rast asp_rcont
+d.vect elev_lid792_cont1m col=white
+d.out.file asp_rcont
+
+ + +

Optional: create TIN model

+Convert z-value stored as attribute "value" to z-coordinate.
+Compute TIN:
+ +
v.to.3d elev_lid792_randpts output=elev_lid792_randpts3d column=value
+v.delaunay elev_lid792_randpts3d output=elev_rand_tin
+r.mapcalc "level90 = 90"
+
+ +Visualize the TIN as 3D vector data:
+Keep only "level90" and "elev_rand_tin" switched on +(remove or uncheck everything else).
+Switch the view from 2D to 3D. +Go to Data > Vector and unckeck Show vector points. +In Vector lines, change color from black to gray +and set Display from on surface to as 3D. + + + + +

Optional: Use Python to create the data for IDW comparison

+ +A part of the first interpolation assignment (4A) for GRASS GIS +is computing IDW with different parameters. +The task is to compare the different results in any way you think +is appropriate and comment on the results. +To comment on the results, you need to create them. +You can simply execute the module with different parameters +and then compute all the subsequent analyses which will help you determine +what are the properties of the surfaces generated by IDW with different settings. +However, you can also use Python to compute this data +if you know Python at least a little bit. + +

+The simplest way to execute the Python code +which uses GRASS GIS packages is to use Simple Python editor integrated +in GRASS GIS accessible from the toolbar or the Python tab in the Layer Manager. +Another option is to write the Python code in your favorite plain text editor +like Notepad++ (note that Python editors are plain text editors). +Then run the script in GRASS GIS using the main menu File -> Launch script. + +

+The way to call GRASS modules in Python is very similar to what we use +in the assignments and it is described in the documentation. +The page also contains several examples +how to write simple and more advanced scripts. +Here are some examples relevant to the assignment. + +

+Interpolation using different number of points (modify the list +of numbers of points): + +

import grass.script as gs
+
+for npoints in [1, 20]:
+    name = 'elev_idw_1m_npoints_{}'.format(npoints)
+    stats = gs.parse_command('v.surf.idw', input='elev_lid792_randpts',
+                             output=name, column='value', npoints=npoints)
+
+ +Computing statistics but showing only some for different number of points +(you can combine the code with the code above): + +
import grass.script as gs
+
+for npoints in [1, 20]:
+    name = 'elev_idw_1m_npoints_{}'.format(npoints)
+    print("\n\n")
+    print(name)
+    print(len(name) * "=")
+    stats = gs.parse_command('r.univar', map=name, flags='eg')
+
+    print(stats['min'], stats['max'])
+
+ +Now write your own code to compute IDW interpolation for different values +of power parameter (e.g., 0.5, 1, 2, 5) by modifying the previous code. +Once you have the elev_idw_1m_power_05, .... computed you can +set the color table and compute shaded relief for your outputs: + +
import grass.script as gs
+
+for power in [0.5, 1, 2, 5]:
+    gs.run_command('r.colors',
+        map='elev_idw_1m_power_{}'.format(power),
+        color='elevation')
+    gs.run_command('r.relief',
+        input='elev_idw_1m_power_{}'.format(power),
+        output='elev_idw_1m_power_{}_relief'.format(power))
+    gs.run_command('r.shade',
+        color='elev_idw_1m_power_{}'.format(power),
+        shade='elev_idw_1m_power_{}_relief'.format(power),
+        output='elev_idw_1m_power_{}_shaded'.format(power))
+
+ +Creating a PNG image with histogram for changing power: + +
import grass.script as gs
+
+for power in [0.5, 1, 2, 5]:
+    gs.run_command('d.mon', start='cairo',
+        output='elev_idw_1m_power_{}_histogram.png'.format(power))
+    gs.run_command('d.histogram',
+        map='elev_idw_1m_power_{}'.format(power))
+    gs.run_command('d.mon', stop='cairo')
+
+ +Here are two commands often used when using the scripts. +First is setting the computational. We can do that in a script, +but it better and more general to do it before executing the script: + +
g.region region=rural_1m
+
+ +When we want to run the script again, we first need to remove the created +raster maps: + +
g.remove type=raster pattern="elev_idw_1m_npoints_*"
+
+ +In case you don't know anything about Python scripting +but you still want to try something this might be a good start together +with some (free) courses at +Codecademy. +To learn more about using Python in GRASS GIS, see the introduction to the +grass.script +package. + +
+ + + +
+
+ + + diff --git a/grass/interpolation_2.html b/grass/interpolation_2.html new file mode 100644 index 00000000..5d0e5f36 --- /dev/null +++ b/grass/interpolation_2.html @@ -0,0 +1,291 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Spatial interpolation and approximation II: splines

+

Resources: +

+ +

+Text files with color rules: +

+ + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_interpolation_2) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all text files with color rules (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + + +

Interpolate elevation raster from points using splines with different tension

+Compute aspect simultaneously with interpolation and +evaluate impact of tension by using tension=40 (default), tension=10 and tension=160. + +
g.region rural_1m res=1 -p
+v.surf.rst input=elev_lid792_randpts elevation=elev_rstdef_1m zcolumn=value aspect=asp_rstdef_1m segmax=30 npmin=140
+v.surf.rst input=elev_lid792_randpts elevation=elev_rstt10_1m aspect=asp_rstt10_1m zcolumn=value tension=10 segmax=30 npmin=140
+v.surf.rst input=elev_lid792_randpts elevation=elev_rstt160_1m aspect=asp_rstt160_1m zcolumn=value tension=160 segmax=30 npmin=140
+
+ +

+Compare the interpolated elevation surfaces using aspect maps.
+Change the aspect color table to grey aspect.
+Save images for your report. + +

r.colors asp_rstdef_1m color=aspect
+r.colors asp_rstt10_1m color=aspect
+r.colors asp_rstt160_1m color=aspect
+d.erase
+d.rast elev_rstdef_1m
+d.rast asp_rstdef_1m
+d.out.file asp_rst_t40
+d.rast asp_rstt10_1m
+d.out.file asp_rst_t10
+d.rast asp_rstt160_1m
+d.out.file asp_rst_t160
+d.vect elev_lid792_randpts size=1 color=red
+
+ +

+Or use 3D views of elev_rstdef_1m, elev_rstt10_1m, elev_rstt160_1m, +make sure you switch off the aspect rasters and save the 3 images for your report. + +

Compute elevation raster and deviations vector point map with different values of smoothing

+Compare summary statistics for deviations for smoothing 0.1 and 10, including root mean square deviation (rmsdevi) + provided by r.info of the resulting elevations maps
+ +
v.surf.rst input=elev_lid792_randpts elevation=elev_rstdef_1mb zcolumn=value smooth=0.1 deviations=elev_rstdef_devi segmax=30 npmin=140
+v.surf.rst input=elev_lid792_randpts elevation=elev_rstsm10_1mb zcolumn=value smooth=10 deviations=elev_rstsm10_devi segmax=30 npmin=140
+r.info elev_rstdef_1mb
+v.info -c elev_rstdef_devi
+v.univar elev_rstdef_devi column=flt1 type=point
+r.info elev_rstsm10_1mb
+v.info -c elev_rstsm10_devi
+v.univar elev_rstsm10_devi column=flt1 type=point
+
+ +

+Compute and display deviations maps using the same divergent custom color table. +Note that we are interpolating the deviations, not the given elevations. + +

v.surf.rst input=elev_rstdef_devi elevation=elev_rstdef_devi zcolumn=flt1 segmax=30 npmin=140
+v.surf.rst input=elev_rstsm10_devi elevation=elev_rstsm10_devi zcolumn=flt1 segmax=30 npmin=140
+
+ +

+Apply the downloaded custom color table deviations_color.txt +to the deviation raster. Right click to remove legend from previous map if needed.
+Optionally, to view the results in 3D use "elev_rstdef_1mb" for elevation (switch off everything else) +and drape the deviations maps as color. + +

r.colors elev_rstsm10_devi rules=deviations_color.txt
+r.colors elev_rstdef_devi rules=deviations_color.txt
+d.erase
+d.rast elev_rstdef_devi
+d.legend elev_rstdef_devi at=2,50,2,6
+d.out.file elev_rstdef_devi
+d.rast elev_rstsm10_devi
+d.legend elev_rstsm10_devi at=2,50,2,6
+d.out.file elev_rstsm10_devi
+
+ + + + + + + +

Interpolate precipitation with influence of topography

+ +Set the 3D region (read the man page for g.region).
+We set tbres to high value - we have just a single level +because we are not computing the 3D raster (see lecture for more details). + +
g.region raster=elev_state_500m -p
+g.region t=2000 b=0 tbres=2000 res3=500 -p3
+
+ +

+Compute precipitation raster map without influence of elevation +(with segmax=700 segmentation is not performed so +interpolation function is computed using all points at once).
+We will use mask during the interpolation. + +

r.mask raster=ncmask_500m
+v.info -c precip_30ynormals
+v.surf.rst input=precip_30ynormals elevation=precip_annual_500m zcolumn=annual segmax=700
+
+ +

+Use the downloaded the color table precip_color.txt.
+Zoom to computational region when displaying the result. + +

r.colors precip_annual_500m rules=precip_color.txt
+d.erase
+d.rast precip_annual_500m
+d.legend precip_annual_500m at=2,30,2,5 range=970,2400
+d.out.file precip_annual
+
+ +

+Compute precipitation raster map with elevation. +

+We use trivariate spline interpolation and compute the result as a crossection +between the trivariate precipitation function and bivariate elevation function. +We rescale elevation by 90 to incorporate strong influence of topography and use +the 2D cross_output raster for the resulting precipitation map.
+
+ +

v.info -c precip_30ynormals_3d
+v.vol.rst input=precip_30ynormals_3d cross_input=elev_state_500m cross_output=precip_anntopo_500m maskmap=elev_state_500m wcolumn=annual zscale=90 segmax=700
+r.colors precip_anntopo_500m raster=precip_annual_500m
+d.rast precip_anntopo_500m
+d.out.file precip_anntopo
+
+

+Optionally, to view the results in 3D, +switch off everything except for elev_state_500m and precip_30ynormals_3d,
+switch to 3D, set(type in) viewer height at 300000, z-exag at 6, fine res=1,
+use precip_anntopo_500m for color, set icon size for points - sphere, 5000.
+Display the result and save the image for the report. + +

+Try to explain how was elevation used for the precipitation raster interpolation. +

+After you are finished, remove mask. + +

r.mask -r
+
+ + + + +
+ + + +
+
+ + + diff --git a/grass/map_algebra.html b/grass/map_algebra.html new file mode 100644 index 00000000..9a41d369 --- /dev/null +++ b/grass/map_algebra.html @@ -0,0 +1,539 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geospatial Analysis I: global, zonal and focal operations, map algebra

+

Resources: +

+ + +

+To run r.mapcalc expressions, you can either +run the entire command in the GUI Console, or in case of any +problems, type or copy the expression (without the r.mapcalc) in the GRASS GIS Raster Map Calculator +which can be launched from Layer Manager toolbar. + +

+Text files with color rules: +

+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_map_algebra) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+ +

+Download text file with color rules (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + +

Compute summaries

+ +Compute areas for each category at two different resolutions. +

+Are the area results computed at different resolutions equal? +Copy and paste the report from the output window or +save the report in a text file: Output window > Save. +Use fixed width font (e.g., Courier, Andale Mono in your report to preserve formatting). + +

g.region raster=landuse96_28m res=12 -ap
+r.report landuse96_28m unit=c,h,p
+g.region raster=landuse96_28m res=30 -ap
+r.report landuse96_28m unit=c,h,p
+
+ +

+Compute areas for each category of land use for each zipcode. +Compare in your report land use distribution in 27601 Raleigh with 27511 Cary. +Include only the relevant part of the table in your report. + +

r.report zipcodes,landuse96_28m unit=h,p
+
+ +

+Compute zonal statistics maps representing +average slope for each basini often needed for hydrologic modeling.
+Add legends using Add map elements in Map Display toolbar. +Reminder: d.out.file means Save to graphics file for your report. + +

g.region raster=slope -p
+r.stats.zonal base=basin_50K cover=slope method=average output=slope_avgbasin
+r.colors slope_avgbasin color=gyr
+d.rast slope_avgbasin
+d.legend slope_avgbasin at=90,50,5,8
+d.vect streams color=15:25:110
+d.vect streets_wake color=grey
+d.out.file slope_avgbasin
+
+ +

+Compute zonal statistics maps representing most common land use for each basin.
+To get the best result, make sure you use all the flags from the example below. + +

g.region raster=landuse96_28m -p
+r.mode base=basin_50K cover=landuse96_28m output=landuse96_modebasin
+d.rast landuse96_modebasin
+d.vect streams
+d.legend landuse96_modebasin at=40,20,2,5 -n -f -c
+d.out.file landuse96_modebasin
+
+ +What is the most common land use in the two basins with the steepest average slope? + +

Apply neighborhood operators and map algebra

+ +

Map land use diversity

+Use neighborhood operator to compute land use diversity map and create a map of locations +with the most homogeneous (single category) landuse where a land use diversification could be beneficial +(e.g. by planting trees).
+ +

+First, remove all previously added map layers from the Layer Manager, then compute +and display the land use diversity map. +Adjust the legend size and placement as needed using right click and mouse. + +

d.erase
+g.region raster=landuse96_28m -p
+r.neighbors landuse96_28m output=lu_divers method=diversity size=7
+d.rast lu_divers
+d.legend lu_divers at=90,70,5,8 -v
+d.vect streets_wake co=white
+r.report lu_divers unit=p
+d.out.file lu_diversity_map
+
+ +

+Use map algebra to extract the single category areas +and find out the area totals for each category using the report tool. + +

r.mapcalc "landuse_1cat = if(lu_divers == 1, landuse96_28m, null())"
+r.colors landuse_1cat raster=landuse96_28m
+r.category landuse_1cat raster=landuse96_28m
+r.report landuse_1cat unit=h,p -n
+d.rast landuse_1cat
+d.legend -c landuse_1cat
+d.out.file lu_signle_map
+
+ +Which land use covers the largest area with a single landuse category within 7x7 +moving windows (most homogeneous areas)?
+ +

Smoothing elevation raster and analyzing differences between DEMs

+

+Use neighborhood operator to smooth the SRTM elevation map "elev_srtm_30m" and +compare the summary statistics for the original and smoothed SRTM DEM. +First, display the lidar-based "elev_ned_30m" map, assign the same colors to the "elev_srtm_30m" +and compare their values using legends. Then use neighborhood operator +applied to 5x5 window to smooth the "elev_srtm_30m" and compare the results +using the r.univar tool. +How does the size of the neighborhood influence the resulting DEM? +(You can test different sizes yourself.) + +

d.erase
+g.region raster=elev_srtm_30m -p
+d.rast elev_ned_30m
+d.legend elev_ned_30m
+r.colors elev_srtm_30m raster=elevation
+d.rast elev_srtm_30m
+d.legend elev_srtm_30m
+d.out.file srtm_dem_original
+r.neighbors elev_srtm_30m output=elev_srtm30m_sm5 method=average size=5
+d.rast elev_srtm30m_sm5
+d.out.file srtm_dem_smoothed
+r.univar elev_ned_30m
+r.univar elev_srtm_30m
+r.univar elev_srtm30m_sm5
+
+ +Further explore the difference between the SRTM DEM "elev_srtm_30m" and lidar-based NED DEM "elev_ned_30m". +First, compute the map of elevation differences using map algebra and find the range of differences: + +
r.mapcalc "srtm_ned30_dif = elev_srtm_30m - elev_ned_30m"
+r.info -r srtm_ned30_dif
+
+ +

+Assign a divergent color table + to distinguish the negative and positive values, +srtmneddiff_color.txt.
+GUI: Right click on layer > Properties > Set color table > Colors > Path to rules file. + +

r.colors srtm_ned30_dif rules=srtmneddiff_color.txt
+
+ +

+Zoom to computational region and switch off previous map layers. Display the difference map layer: + +

d.erase
+d.rast srtm_ned30_dif
+d.legend -d srtm_ned30_dif at=90,40,5,7
+d.out.file srtm_ned30_dif
+
+ +

+Are the elevations in "elev_srtm_30m" higher in most areas or lower than in "elev_ned_30m"? +Which result will you use to answer the above question - +the "srtm_ned30_dif" map or the numbers provided by r.univar? +Are there any values in the elev_srtm_30m map that are not realistic? Where are they located? + +

Patch multiple raster layers into a single raster

+ +Patch raster tiles for lidar based, 6m res. DEM for Centennial Campus. + + + +
d.erase
+g.region raster=el_D793_6m,el_D783_6m,el_D782_6m,el_D792_6m -p
+r.patch input=el_D793_6m,el_D783_6m,el_D782_6m,el_D792_6m output=elevlidD_6m
+r.colors elevlidD_6m raster=elevation
+d.rast elevlidD_6m
+d.out.file patched_dem
+
+ + + +

More Map Algebra

+See r.mapcalc manual page for syntax and functions. +You can run r.mapcalc from console using command line or GUI (Raster map calculator). + + + +

NDVI

+Compute Normalized Difference Vegetation Index (NDVI).
+Explain the difference between floating point and integer +handling in ndvi1, ndvi2 and ndvi3 result. +Make sure to zoom into computational area after changing the region. + +
d.erase
+g.region raster=lsat7_2002_40 -p
+r.mapcalc "ndvi1 = (lsat7_2002_40 - lsat7_2002_30) / (lsat7_2002_40 + lsat7_2002_30)"
+r.mapcalc "ndvi2 = 1.0 * (lsat7_2002_40 - lsat7_2002_30) / (lsat7_2002_40 + lsat7_2002_30)"
+r.mapcalc "ndvi3 = float(lsat7_2002_40 - lsat7_2002_30) / float(lsat7_2002_40 + lsat7_2002_30)"
+r.info -r ndvi1
+r.info -r ndvi2
+r.info -r ndvi3
+r.colors ndvi3 color=ndvi
+d.rast ndvi3
+d.legend ndvi3
+d.out.file ndvi3
+
+ +Note that this is a simplified, map algebra example, for computing various vegetation indices +in GRASS GIS, we would use the i.vi tool +after performing atmospheric corrections. + + + +

Working with if statements

+Create map of urban areas (high density and low density class) +with 0 class elsewhere. + +
g.region raster=landuse96_28m -p
+r.mapcalc "urban1_30m = if(landuse96_28m == 1,1,0) + if(landuse96_28m == 2,2,0)"
+d.rast urban1_30m
+d.legend urban1_30m at=10,30,5,8
+d.out.file urban12_nonurbanzero
+
+ +

+Alternatively with logical 'or' operator and null elsewhere: + +

r.mapcalc "urban2_30m = if(landuse96_28m == 1 || landuse96_28m == 2,landuse96_28m,null())"
+d.rast urban2_30m
+d.legend urban2_30m at=10,30,5,8
+d.out.file urban12_nonurbannull
+
+ +What is the difference between the two urban raster maps? + + +

Optional - various additional useful tasks

+ +

Handling null values

+ + + +

+ +Create mask for low lying developed areas (e.g. vulnerable to flooding) +with elevation between 60 and 100m and land use 1 or 2.
+Set the region, display the input maps and create a MASK.
+Before you start new computations, remove or switch off previous map layers +in the Layer Manger. +You may also zoom to computational region in Map Display +once you set a new one. + +

g.region raster=elevation -p
+d.erase
+d.rast elevation
+d.rast landuse96_28m
+r.mapcalc "low_elev_developed = if((elevation < 100 && elevation > 60) && (landuse96_28m == 1 || landuse96_28m == 2),1,null())"
+r.mask raster=low_elev_developed
+
+Command r.mask creates a raster map "MASK" in your mapset. + +

+Remove "low_elev_developed" layer if it was added. +

Display watersheds to see the mask effect: + +

d.rast basin_50K
+d.out.file basin_masked
+
+ +

+Disable mask, and display basin_50K again +to show that the mask was removed. + +

r.mask -r
+d.rast basin_50K
+
+ +

Using coordinates of moving window in map algebra

+ +Replace section of SRTM DSM with NED DEM elevation.
+Try to explain how this r.mapcalc expression works. + +
r.mapcalc "elev_combined = if(y() < 224274. && x() > 637455., elevation, elev_srtm_30m)"
+
+ +

Tilted plane

+Create a raster map representing tilted plane (e.g., geologic fault): + +
g.region rural_1m -p
+r.mapcalc "tiltplane = 0.2*(0.1*row()+col())+50"
+r.mapcalc "tiltpl_under = if(tiltplane < elev_lid792_1m + 2,tiltplane,null())"
+
+ +

+View the elevation surface and subsurface plane in 3D. +Switch off all layers in the layer manager except for elev_lid792_1m and tiltpl_under. +Change display to 3D view, adjust viewing position to a view from South. +Save an image for your report. + + +

Map subsets

+Use map algebra to create map subsets.
+Change region to the airphoto tile 792 and resolution 10m. +Since we will work in different area, it is a good idea to remove +all previously used map layers from Layers in +the Layer Manager. + +
g.region raster=ortho_2001_t792_1m res=10 -ap
+d.erase
+d.rast ortho_2001_t792_1m
+
+ +

+Create a subset of the map elevation for this subregion. + +

r.mapcalc "elevation_792_10m = elevation"
+d.rast elevation_792_10m
+
+ +

+Zoom out to see that it is a subset. + +

Work with NULL and MASK

+ +Set the mask and check its effect. + +
d.rast elevation
+d.vect streets_wake
+r.mask raster=urban maskcats=55
+d.rast elevation
+
+ +

+Remove mask: + +

r.mask -r
+
+ +

Zonal statistics

+ +First, set the computational region: + +
g.region raster=urban2_30m
+
+ +Then, compute % area for each category in each zipcode. + + +
r.stats -pl zipcodes,urban2_30m
+
+ + +

Working with relative coordinates

+Enter the expression on a single line without \
+Again, it is a good idea to remove the previously used map layers +before we start to work on a new task. + +
g.region raster=elev_srtm_30m -p
+d.erase
+r.mapcalc "elev_srtm30m_smooth = (elev_srtm_30m[-1,-1]   \
+           + elev_srtm_30m[-1,0] + elev_srtm_30m[-1,1] \
+           + elev_srtm_30m[0,-1] + elev_srtm_30m[0,0]  \
+           + elev_srtm_30m[0,1]  + elev_srtm_30m[1,-1] \
+           + elev_srtm_30m[1,0]  + elev_srtm_30m[1,1])/9."
+
+ +

+Assign the resulting map the same color table as the original. +Compare global statistics + +

r.colors elev_srtm30m_smooth raster=elev_srtm_30m
+r.univar elev_srtm_30m
+r.univar elev_srtm30m_smooth
+d.rast elev_srtm_30m
+d.rast elev_srtm30m_smooth
+
+ +
+ + + +
+
+ + + diff --git a/grass/simwe.html b/grass/simwe.html new file mode 100644 index 00000000..ba17099c --- /dev/null +++ b/grass/simwe.html @@ -0,0 +1,300 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Surface water flow and erosion simulation

+ +Here we compute surface runoff, and sediment transport using existing +path sampling model. + +

+Resources: +

+ + +

+For animating in GRASS GIS 7, see the +video instructions or +instructions for the + + Spatio-temporal data handling and visualization in GRASS GIS workshop + + + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_interpolation_2) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+ +

+Download all text files with color rules (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + +

Overland flow depth and discharge

+ +

+ + +

g.region rural_1m res=2 -p
+
+ +

+Calculate partial derivatives to define the gradient of elevation surface: + +

v.surf.rst -d input=elev_lid792_bepts elevation=elev_lid792_2m slope=dx_2m aspect=dy_2m tension=15 smooth=1.5 npmin=150
+
+Note that partial derivatives can be also computed using r.slope.aspect. + +

+Compute spatial pattern of overland flow depth and discharge +by running the SIMWE model implemented in +the r.sim.water module. +We will use uniform rainfall excess, infiltration and land cover. +

r.sim.water -t elevation=elev_lid792_2m dx=dx_2m dy=dy_2m rain_value=50 infil_value=0 man_value=0.05 depth=wdp_2m discharge=disch_2m nwalkers=100000 niterations=30 output_step=2
+
+ +Display the results, add legend for individual raster and whatever you think is appropriate. + +
d.rast wdp_2m.30
+d.rast disch_2m.30
+
+ +

+Optionally, animate the time series: +File > Animation tool + + +

Peak runoff with predefined flow direction

+ +Compute peak runoff with predefined flow direction +along the stream inluding culvert under the road. + +

+First, compute direction (aspect) of the given streams: + +

v.to.rast streams output=streams_dir_2m use=dir
+
+ +

+Compute stream dx and dy using direction and slope equal to 2 degrees: + +

r.mapcalc "dxstr_2m = tan(2.)*cos(streams_dir_2m)"
+r.mapcalc "dystr_2m = tan(2.)*sin(streams_dir_2m)"
+
+ +

+Compute combined DEM and stream dx and dy: + +

r.mapcalc "dxdemstr_2m = if(isnull(dxstr_2m), dx_2m, dxstr_2m)"
+r.mapcalc "dydemstr_2m = if(isnull(dystr_2m), dy_2m, dystr_2m)"
+
+ +

+Run the model: + +

r.sim.water -t elevation=elev_lid792_2m dx=dxdemstr_2m dy=dydemstr_2m rain_value=50 infil_value=0 man_value=0.05 depth=wdpstr_2m discharge=dischstr_2m nwalkers=100000 niterations=30 output_step=2
+d.rast dischstr_2m.30
+
+ +

+Use Animation tool to animate the discharge. + + +

Runoff for spatially variable landcover and rainfall excess

+ +Compute runoff for spatially variable landcover +represented by spatially variable Mannings and rainfall excess. + +

+We will use variable Mannings coefficient defined by reclassifying +land cover class. Here is the content of a file called +land_to_mannings.txt with reclassification rules for +the r.recode module. + +

+1:1:0.9:0.9
+2:2:0.5:0.5
+3:3:0.01:0.01
+4:4:0.03:0.03
+5:5:0.01:0.01
+6:6:0.05:0.05
+7:7:0.1:0.1
+8:8:0.1:0.1
+9:9:0.9:0.9
+10:10:0.03:0.03
+11:11:0.5:0.5
+
+ +
r.recode input=landcover_1m output=mancover_2m rules=land_to_mannings.txt
+
+ +Similarly, we will create raster with spatially variable rainfall excess +rates based on the land cover classes. We use file named +land_to_rain.txt to specify the rates for individual classes. + +
+1:1:50:50
+2:2:5:5
+3:3:40:40
+4:4:35:35
+5:5:50:50
+6:6:40:40
+7:7:25:25
+8:8:15:15
+9:9:50.:50.
+10:10:40:40
+11:11:10:10
+
+ +Again, we use the file as rules for the r.recode module. + +
r.recode input=landcover_1m output=raincover_2m rules=land_to_rain.txt
+
+ +

+Run the model: + +

r.sim.water -t elevation=elev_lid792_2m dx=dxdemstr_2m dy=dydemstr_2m rain=raincover_2m infil_value=0 man=mancover_2m depth=wdpstrcov_2m discharge=distrcov_2m nwalkers=100000 niterations=30 output_step=2
+
+ +Display the static results. + +
d.rast wdpstrcov_2m.30
+d.legend wdpstrcov_2m.30
+d.rast distrcov_2m.30
+d.legend distrcov_2m.30
+
+ +

+Animate the time series using the Animation tool. + + +

Sediment flow rate, erosion and deposition

+ +Compute sediment flow rate and net erosion/deposition using sediment +transport part of the SIMWE model implemented in the +the r.sim.sediment module. +To make the computations faster, set region just to the upper part of +the watershed: + +
g.region s=s+290
+
+ +

+Compute input transport capacity and detachment coefficient maps: + +

r.mapcalc "tranin = 0.001"
+r.mapcalc "detin = 0.001"
+
+ +

+Compute input critical shear stress: + +

r.mapcalc "tauin = 0.01"
+
+ +

+Run the model using the last depth from previous run: + +

g.copy rast=wdp_2m.30,wdp_2m
+r.sim.sediment elevation=elev_lid792_2m dx=dx_2m dy=dy_2m water_depth=wdp_2m detachment_coeff=detin transport_coeff=tranin shear_stress=tauin man_value=0.05 nwalkers=1000000 niterations=30 transport_capacity=tcapacity tlimit_erosion_deposition=erdepmax sediment_flux=sedflow erosion_deposition=erdepsimwe
+
+ +

+Display these results after few seconds: + +

d.rast tcapacity
+d.rast erdepmax
+
+ +

+Display the final results: + +

d.rast sedflow
+d.legend sedflow
+d.rast erdepsimwe
+d.legend erdepsimwe
+
+ +
+ + + +
+
+ + + diff --git a/grass/terrain_analysis.html b/grass/terrain_analysis.html new file mode 100644 index 00000000..dcc16858 --- /dev/null +++ b/grass/terrain_analysis.html @@ -0,0 +1,427 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry II: Spatial and Temporal Terrain Analysis

+

+Resources: +GRASS GIS overview and manual, +GRASSbook. + +

+Download Mapset and color tables: +

    +
  • Download +NagsHead time series and copy it into your nc_spm_08_grass7 project +(it should be the same level directory as PERMANENT). +Do not let your unzipping program create additional level directory with the same name! +If you are not sure about GRASS GIS Database structure read about it in +the manual. +
  • Custom color table for time series standard deviations map stddev_color.txt
  • + +
+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_terrain_analysis) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all text files (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + + +

Compute basic topographic parameters: slope and aspect

+ + +
g.region raster=elevation -p
+r.slope.aspect elevation=elevation slope=myslope aspect=myaspect
+
+ +

+Display resulting maps with legend using GUI. + +

d.rast myslope
+d.legend myslope at=2,40,2,6
+d.out.file myslope
+d.rast myaspect
+d.legend myaspect at=2,40,2,6
+d.out.file myaspect
+
+ +

+ +Show impact of integer values in meters on slope and aspect pattern.
+Compute integer DEM and derive its slope and aspect.
+Use GUI to display the histogram: in Map Display > Analyze > Create histogram: + +

r.mapcalc "elev_int = int(elevation)"
+r.slope.aspect elevation=elev_int aspect=aspect_int_10m slope=slope_int_10m
+d.erase
+d.histogram slope_int_10m
+d.histogram myslope
+d.histogram aspect_int_10m
+d.histogram myaspect
+d.erase
+d.rast myslope
+
+ +

+Zoom into NW area of the current region (relatively flat area near large interchange).
+Can you explain the difference in slope maps derived from integer (m vertical resolution) +and floating point (mm vertical resolution) DEMs? + +

d.rast slope_int_10m
+d.out.file slope_int
+
+ +

Compute slope along road

+First set the region to the extent of the bus route #11 and to 10m resolution. +Then convert the vector line of the route to raster using the direction of the route. + +
g.region vect=busroute11 align=elevation res=10 -p
+v.to.rast input=busroute11 type=line output=busroute11_dir use=dir
+r.colors map=busroute11_dir color=aspect
+d.rast busroute11_dir
+d.legend busroute11_dir
+
+ +Compute the steepest slope of the topography along the route by assigning +the values of slope derived from a DEM in the first part of this assignment +to the grid cells along the route. + +
r.mapcalc "route_slope = if(busroute11_dir, myslope)"
+
+ +Then compute the slope in the direction of the route using the difference between aspect of the topography +and the route direction angles. + +
r.mapcalc "route_slope_dir = abs(atan(tan(myslope) * cos(myaspect - busroute11_dir)))"
+r.colors map=route_slope,route_slope_dir color=bcyr -e
+
+ +Display the results along with the elevation contours and compute univariate statistics. +Comment on the difference of the two results. + +
r.contour input=elevation output=contours step=2
+d.erase
+d.vect contours color=220:200:200
+d.rast route_slope
+d.legend route_slope
+d.out.file route_slope
+d.rast route_slope_dir
+d.out.file route_slope_dir
+
+r.univar route_slope
+r.univar route_slope_dir
+
+ +

Curvatures

+

+ + +Compute slope, aspect and curvatures simultaneously with interpolation.
+You can do the examples below for the bare earth data only (first example),
+multiple return example is optional (if you are curious how it differs from BE). + +

g.region rural_1m  -p
+v.surf.rst input=elev_lid792_bepts elevation=elev_lid_1m aspect=asp_lid_1m pcurvature=pc_lid_1m tcurvature=tc_lid_1m npmin=120 segmax=25
+v.surf.rst input=elev_lidrural_mrpts elevation=elev_lidmr_1m aspect=asp_lidmr_1m pcurvature=pc_lidmr_1m tcurvature=tc_lidmr_1m npmin=120 segmax=25 tension=300 smooth=1.
+
+ +

+Display the results as 2D images or in 3D view.
+For 3D view, switch off everything except for elevation surface that you want to view.
+Drape topographic parameters raster maps over DEMs as color. + +

d.erase
+d.rast pc_lid_1m
+d.legend pc_lid_1m 
+d.out.file profcurvature_dtm
+d.rast pc_lidmr_1m
+d.legend pc_lidmr_1m 
+d.out.file profcurvature_dsm
+
+ +

+The curvature maps reflect survey pattern rather than topographic features.
+So we lower the tension and increase the smoothing.
+You can use multiple displays to compare the results side-by-side. + +

g.region rural_1m  -p
+v.surf.rst input=elev_lid792_bepts elevation=elev_lidt15_1m aspect=asp_lidt15_1m pcurvature=pc_lidt15_1m tcurvature=tc_lidt15_1m npmin=120 segmax=25 tension=15 smooth=1.
+v.surf.rst input=elev_lidrural_mrpts elevation=elev_lidmrt15_1m aspect=asp_lidmrt15_1m pcurvature=pc_lidmrt15_1m tcurvature=tc_lidmrt15_1m npmin=120 segmax=25 tension=15 smooth=1.
+d.erase
+d.rast pc_lidt15_1m
+d.legend pc_lidt15_1m
+d.out.file profcurvature_dtm2
+d.rast pc_lidmrt15_1m
+d.legend pc_lidmrt15_1m
+d.out.file profcurvature_dsm2
+
+ +

Landforms

+ + +Extract landforms at different levels of detail by adjusting the size of moving window.
+Set rural subregion at 1m resolution, +compute landforms using 9m and 45m neighborhood: read the manual to learn more.
+Explain types of landforms and the role of the neighborhood size. + +
g.region rural_1m -p
+r.param.scale elev_lid792_1m output=feature9c_1m size=9  method=feature
+r.param.scale elev_lid792_1m output=feature45c_1m size=45 method=feature
+
+ +

+Display with legend, save images for the report.
+Optionally display the feature maps draped over elev_lid792_1m as color. + +

d.erase
+d.rast feature9c_1m
+d.legend -c feature9c_1m at=2,20,2,6 font=Arial
+d.out.file landfroms9
+d.rast feature45c_1m
+d.vect elev_lid792_cont1m color=grey
+d.out.file landfroms45
+
+
+ +

+Map basic landforms using geomorphons DSM, read the manual page and the associated paper to learn how it works +Explain the role of the search and distance parameters. + +

r.geomorphon elevation=elev_lid792_1m forms=geomorphon_s50d0 search=50 dist=0
+r.geomorphon elevation=elev_lid792_1m forms=geomorphon_s50d10 search=50 dist=10 
+d.erase
+d.rast geomorphon_s50d0
+d.vect elev_lid792_cont1m color=grey
+d.legend -c geomorphon_dsm at=2,30,2,8
+d.out.file geomorphon_s50d0
+d.rast geomorphon_s50d10
+d.out.file geomorphon_s50d10
+
+ + + +

Raster time series analysis

+ +For this exercise we will use NagsHead_series Mapset you downloaded.
+You have to first make the mapset accessible.
+In GUI: menu Settings -> GRASS working environment -> Mapset access +or by using a command: + +
g.mapsets operation=add mapset=NagsHead_series
+
+ +If you don't see the mapset, make sure you downloaded it and unzipped it correctly. + +

+Run the series analysis and explain the results:
+Which maps are core and envelope? +Which landforms have high standard deviation and what does it mean? + +

g.region raster=NH_2008_1m -p
+d.erase
+d.rast NH_2008_1m
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_min method=minimum
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_max method=maximum
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_mintime method=min_raster
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_maxtime method=max_raster
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_range method=range
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_avg method=average
+r.series NH_1999_1m,NH_2001_1m,NH_2004_1m,NH_2005_1m,NH_2007_1m,NH_2008_1m out=NH_9908_stddev method=stddev
+
+r.colors NH_9908_stddev rules=stddev_color.txt
+r.colors -n NH_9908_range color=inferno
+
+d.erase
+d.rast NH_9908_stddev
+d.legend NH_9908_stddev
+d.out.file series_stddev
+d.rast NH_9908_range
+d.legend NH_9908_range
+d.out.file series_range
+
+ +

+Oprional: Use cutting plane in 3D view to show the core and envelope.
+Add constant elevation plane at -1m for reference, +set zexag somewhere 3-5 (the default is too high).
+Assign surfaces constant color, use top or bottom surface for crossection color.
+When using top for color, lower the light source to make +top surface dark and highlight the crossection. +Include the output maps and the 3D view with a cutting plane in your report to illustrate +the answers to the two questions. + + + + +

Optional: Cut and fill and volume

+ + + +Compute cut and fill for 4m deep excavation to build a facility. +First, set the region and display facility on top of orthophoto. + +
g.region rural_1m -p
+d.erase
+d.rast ortho_2001_t792_1m
+d.rast facility
+
+ +Then set (raster) mask to the facility map and find minimum elevation +within the facility: + +
r.mask raster=facility
+r.univar elevation
+
+ +Minimum which you obtain should be 123.521m. +Bottom of 4m excavation will be then + +
+123.52 - 4 = 119.52
+
+ +Use raster algebra to create the excavation: + +
r.mapcalc "excavation = elevation - 119.52"
+r.univar excavation
+d.rast excavation
+
+ +Minimum you get should be 4.00057 and maximum 9.50554. +Note that the excavation is limited by the mask we set earlier, +so we can now do global operation to compute the volume +which applies just the the facility. + +
r.volume excavation
+
+ +Now remove mask. This is important so that +your future work is not affected. + +
r.mask -r
+
+ + + +
+ + + +
+
+ + + diff --git a/grass/terrain_modeling.html b/grass/terrain_modeling.html new file mode 100644 index 00000000..0844f2fb --- /dev/null +++ b/grass/terrain_modeling.html @@ -0,0 +1,348 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry I: Terrain Modeling

+

+Resources: +GRASS GIS overview and manual, + libLAS tools for lidar data conversions + +

+Download the Raleigh 2013 lidar data as LAS file and orthophoto: +

+ +

Software support

+ +The GRASS GIS installation on your computer may not support +r.in.lidar and v.in.lidar +modules. You can try them, e.g. using + +
r.in.lidar --help
+
+ +On Windows platform, please use the standalone version of GRASS GIS +we recommend in Course Logistics. +If the modules don't work for you, please use instead of this assignment the +ASCII file based version +of the assignment. + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_terrain_modeling) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all files (see above) +to the selected directory. Now you can use the commands from the assignment requiring the file +without the need to specify the full path to the file. + + + +

Analyze bare earth and multiple return lidar data properties by binning

+Import the points using v.in.lidar. +We can specify which class and which return (first, middle, last) we want to import.
+We can see the classification either in metadata distributed with the lidar data +or it can be displayed with lasinfo tool (in case lasinfo command is not available, skip it.): +
lasinfo tile_0793_016_spm.las
+
+Class 2 represents bare earth points.
+Now we import bare earth points and first return points separately: + +
v.in.lidar -t input=tile_0793_016_spm.las output=elev_lid793016_be class_filter=2
+v.in.lidar -t input=tile_0793_016_spm.las output=elev_lid793016_1r return_filter=first
+
+

+Note: if you have any problems with the files, review the instructions above or +use v.in.lidar GUI dialog to browse to get the path to the files. +

+Set the region from the imported point file with resolution of 1 meter. +Compute raster maps (with r.in.lidar) representing number of points per 1 m grid cell.
+Compare point densities for bare earth, first return. + +

g.region vect=elev_lid793016_1r res=1 -p
+r.in.lidar input=tile_0793_016_spm.las output=lid_be_binn1m class_filter=2 method=n
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binn1m return_filter=first method=n
+r.colors lid_be_binn1m,lid_1r_binn1m color=bcyr -e
+d.rast lid_be_binn1m
+d.legend lid_be_binn1m at=2,50,2,9
+r.report lid_be_binn1m unit=p,c
+r.univar lid_be_binn1m
+d.out.file be_pointdensity
+d.rast lid_1r_binn1m
+d.legend -d -s lid_1r_binn1m at=2,50,8,12
+r.report lid_1r_binn1m unit=p
+r.univar lid_1r_binn1m
+d.out.file first_pointdensity
+
+ +

+Compute a raster map representing mean elevation for each 1m cell.
+It will have holes. + +

r.in.lidar input=tile_0793_016_spm.las output=lid_be_binmean1m class_filter=2 method=mean
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binmean1m return_filter=first method=mean
+r.colors lid_be_binmean1m color=elevation
+r.colors lid_1r_binmean1m color=elevation
+r.info map=lid_1r_binmean1m
+d.erase
+d.rast lid_be_binmean1m
+d.legend lid_be_binmean1m at=2,40,2,5
+d.out.file lidbemean1m
+d.erase
+d.rast lid_1r_binmean1m
+d.legend lid_1r_binmean1m at=2,40,2,5
+d.out.file lid1rmean1m
+
+ +

+Compute a raster map representing mean elevation for each 2m cell.
+Result is almost good enough for 1st return, but there are still many holes for bare earth. + +

g.region res=2 -ap
+r.in.lidar input=tile_0793_016_spm.las output=lid_be_binmean2m class_filter=2 method=mean
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binmean2m return_filter=first method=mean
+r.colors lid_be_binmean2m color=elevation
+r.colors lid_1r_binmean2m color=elevation
+d.erase
+d.rast lid_be_binmean2m
+d.legend lid_be_binmean2m at=2,40,2,5
+d.out.file lidbemean2m
+d.erase
+d.rast lid_1r_binmean2m
+d.legend lid_1r_binmean2m at=2,40,2,5
+d.out.file lid1rmean2m
+
+ +

+Compute range of elevation values in each grid cell: + +

r.in.lidar input=tile_0793_016_spm.las output=lid_be_binrange2m class_filter=2 method=range
+r.colors lid_be_binrange2m color=bcyr -e
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binrange2m return_filter=first method=range
+r.colors lid_1r_binrange2m color=bcyr -e
+d.erase
+d.rast lid_be_binrange2m
+d.legend lid_be_binrange2m at=2,40,2,5
+d.out.file lid_be_binrange2m
+d.erase
+d.rast lid_1r_binrange2m
+d.legend lid_1r_binrange2m at=2,40,2,5
+d.out.file lid_1r_binrange2m
+
+ +

+Import and display orthophoto, +switch off all layers except for orthophoto. + +

r.in.gdal ortho_0793_016_ncspm.tif output=ortho_2013_0793
+d.rast ortho_2013_0793
+
+ +

+Identify the features that are associated with large range values.
+Display only the high values of range.
+What landcover is associated with large range in multiple return data? + + +

d.rast lid_1r_binrange2m values=10.-200.
+d.out.file mylid_1rrange2m
+
+ +

+We now know how dense the data are and what is the range within cell.
+If we need a 1m resolution DEM or DSM for our application +this analysis tells us that we need to interpolate it from the point cloud. +What steps would you begin with when processing +point cloud data you are not familiar with? + +

Interpolate DEM and DSM

+ +To interpolate DEM and DSM +we use default parameters except for number of points used for +segmentation and interpolation
(segmax and npmin and higher tension for multiple return data).
+You can set dmin=1 to make the interpolation run faster (see the manual).
+Be patient, it can take a few minutes to run depending on the computer power.
+ +
g.region res=1 -ap
+v.surf.rst input=elev_lid793016_be elevation=elev_lid793016_be_1m npmin=120 segmax=25 dmin=1
+v.surf.rst input=elev_lid793016_1r elevation=elev_lid793016_1r_1m npmin=120 segmax=25 tension=100 smooth=0.5 dmin=1
+r.colors elev_lid793016_be_1m color=elevation
+r.colors elev_lid793016_1r_1m color=elevation
+d.rast elev_lid793016_be_1m
+d.rast elev_lid793016_1r_1m
+
+ + + +Hide legend and switch off all map layers except for the last 2 interpolated ones.
+Use 3D view with cutting planes to compare the bare earth and terrain surface.
+Make sure fine resolution is set to 1 for all surfaces.
+Assign each surface constant color, add constant plane at 75m elevation for reference.
+Shade the crossection using the color by bottom surface option.
+If you don't remember this, see screen capture video for 3d view. + +

+Save image for your report. + +

Optional: Visualize the point cloud using plas.io

+ +Visualizing the raw points in point clouds can be time consuming both in 2D and +3D, however several tools for doing so in an efficient way exist. Try to +use plas.io, an online point cloud +visualization tool to visualize the LAS file from this assignment. +Explore the provided visualization tools in plas.io and create images +showing different properties of the point cloud or the visualization +techniques and how they would be useful for further analysis. + + + + + + +
+ + + +
+
+ + + diff --git a/grass/terrain_modeling_ascii.html b/grass/terrain_modeling_ascii.html new file mode 100644 index 00000000..fbacb374 --- /dev/null +++ b/grass/terrain_modeling_ascii.html @@ -0,0 +1,336 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry I: Terrain Modeling (data in ASCII files)

+ +

+Resources: + +

+Download the ASCI (x,y,z) lidar bare earth data +lid_be_pts.txt
+Download the ASCI (x,y,z) lidar multiple return data +lid_mr_pts.txt
+ + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_terrain_modeling) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all files (see above) +to the selected directory. Now you can use the commands from the assignment requiring the file +without the need to specify the full path to the file. + + +

Bare earth data

+ +Analyze bare earth and multiple return lidar data properties. +First, download the ASCI (x,y,z) lidar data +lid_be_pts.txt +and then compute a raster map representing number of points +per 2m and 6m grid cell to assess the point density. +If you are unsure about the current working directory and where your +text file with point is, run r.in.xyz from GUI +to find the path to the external lid_be_pts.txt. +Do not forget to zoom to computational region +to check its extent and see the resulting data. +You can use horizontal legends by resizing legend into wide short +rectangle or by using at=6,10,2,30 in the command line. +You can resize the Map Display to create white space above +and below the raster map image. + +
g.region rural_1m res=2 -p
+r.in.xyz input=lid_be_pts.txt output=lid_be_binn2m method=n
+r.in.xyz input=lid_mr_pts.txt output=lid_mr_binn2m method=n
+d.erase
+d.rast lid_mr_binn2m
+d.legend lid_mr_binn2m at=2,20,2,5
+d.out.file mylidmrn2m
+r.report lid_mr_binn2m unit=p
+r.univar lid_mr_binn2m
+d.rast lid_be_binn2m
+d.legend lid_be_binn2m at=2,20,2,5
+r.report lid_be_binn2m unit=p
+r.univar lid_be_binn2m
+
+ + +

Range of coordinates at lower resolution

+ +

+Patch and overlay planimetry to see that there are +no points in areas with buildings: + +

v.patch P079214,P079215,P079218,P079219 out=planimetry_rural
+d.vect planimetry_rural
+d.out.file mylidben2m
+
+ +

+Decrease resolution and try the above steps with +the r.in.xyz module again. +Again, run it from GUI, define full path, or manage your current +working directory. + +

g.region rural_1m res=6 -ap
+r.in.xyz input=lid_be_pts.txt out=lid_be_binn6m meth=n
+d.erase
+d.rast lid_be_binn6m
+d.legend lid_be_binn6m at=2,20,2,5
+d.out.file mylidben6m
+r.report lid_be_binn6m unit=p
+r.univar lid_be_binn6m
+
+ +

+Compute a raster map representing mean elevation for each 6m cell. +It will still have a few holes. + +

r.in.xyz input=lid_be_pts.txt out=lid_be_binmean6m meth=mean
+r.colors lid_be_binmean6m color=elevation
+d.rast lid_be_binmean6m
+d.legend lid_be_binmean6m at=2,40,2,5
+r.in.xyz input=lid_mr_pts.txt out=lid_mr_binmean6m meth=mean
+r.colors lid_mr_binmean6m co=elevation
+d.rast lid_mr_binmean6m
+d.legend lid_mr_binmean6m at=2,40,2,5
+d.out.file mylidmrmean6m
+
+ +

+Compute range: + +

r.in.xyz input=lid_be_pts.txt out=lid_be_binrange6m meth=range
+r.in.xyz input=lid_mr_pts.txt out=lid_mr_binrange6m meth=range
+d.erase
+d.rast lid_be_binrange6m
+d.legend lid_be_binrange6m at=2,40,2,5
+d.rast lid_mr_binrange6m
+d.legend lid_mr_binrange6m at=2,40,2,5
+
+ +

+Identify the features that are associated with large range values. +Display with vector data. + +

d.vect planimetry_rural
+d.vect lakes type=boundary co=violet
+d.vect streams co=blue
+d.out.file mylidmrrange6m
+
+ +

+Display only the high values of range (0.5-20m) overlayed over orthophoto. +What landcover is associated with large range in multiple return data? + +

+Which landscape features may be lost at 6m resolution? + +

g.region rural_1m -p
+
+ +

+Do not forget to zoom/set the display to computational region +to display only selected interval of values in GUI. +Add raster > Required tab, select lid_be_binrange6m +In Selection tab, set List of values to be displayed to 0.5-20. + +

d.erase
+d.rast ortho_2001_t792_1m
+d.rast lid_be_binrange6m val=0.5-20.
+d.erase
+d.rast ortho_2001_t792_1m
+d.rast lid_mr_binrange6m val=0.5-20.
+
+ + +

Interpolation

+ +

+We now know how dense the data are and what is the range within cell.
+If we need 1m resolution DEM for our application +this analysis tells us that we need to interpolate. +

+Import the ascii lidar data as vector points.
+Import only points in the rural area without building a table (-t flag in tab Points), +number of column used as z is 3 (third column), +and using z-coordinate for elevation (Tab Optional, Create 3D vector map).
+We assume that the txt file is in your current working directory. + +

g.region rural_1m -p
+v.in.ascii -ztr input=lid_be_pts.txt out=elev_lid_bepts z=3
+
+ +

+Display bare ground and multiple return points over orthophoto: + +

d.erase
+d.rast ortho_2001_t792_1m
+
+ +

+Display our imported points: + +

d.vect elev_lid_bepts size=2 col=red
+
+ +

+Display points available in the data set +(elev_lid_bepts and elev_lid792_bepts should be identical): + +

d.vect elev_lidrural_mrpts size=4 col=0:100:0
+d.vect elev_lid792_bepts size=2 col=yellow
+
+ +

+ +Extract first return to get points for DSM.
+Interpolate DEM and DSM (more about interpolation in the interpolation assignment).
+We use default parameters except for number of points used for +segmentation and interpolation - segmax and npmin +and higher tension for multiple return data: + +

g.region rural_1m -p
+v.extract elev_lidrural_mrpts out=elev_lidrur_first type=point where="Return=1"
+v.surf.rst input=elev_lid792_bepts elevation=elev_lidrural_1m npmin=120 segmax=25
+v.surf.rst input=elev_lidrur_first elevation=elev_lidrurfirst_1m npmin=120 segmax=25 tension=100 smooth=0.5
+d.erase
+d.rast elev_lidrural_1m
+d.rast elev_lidrurfirst_1m
+
+ +

+Remove all layers except for elev_lidrural_1m and elev_lidrurfirst_1m and +switch to 3D view with cutting planes to compare the bare earth and terrain surface.
+Make sure fine resolution is set to 1 for all surfaces. +Assign each surface constant color, add constant plane z=90 for reference. +Create crossections using cutting plane, +shade the crossection using the color by bottom surface option.
+Save image for report. +If you don't remember this, see screen capture video for +GRASS GIS 3D view. + + +

Multiple returns

+ +

+Find out where we have multiple returns: + +

g.region rural_1m -p
+d.erase
+d.rast ortho_2001_t792_1m
+
+ +

+Condition for subset in GUI: +Add vector > Selection > type return=1 into WHERE condition of SQL statement.
+You need to add the points 4 times to create a map that will have
+all sets of returns. + +

d.vect elev_lidrural_mrpts where=return=1 col=red size=2
+d.vect elev_lidrural_mrpts where=return=2 col=green size=3
+d.vect elev_lidrural_mrpts where=return=3 col=blue
+d.vect elev_lidrural_mrpts where=return=4 col=yellow
+d.out.file lidreturns
+
+ +

+Can you guess what is in the area that does not have any 1st return points? + + + + + + +

+ + + +
+
+ + + diff --git a/grass/terrain_modeling_survey_2013.html b/grass/terrain_modeling_survey_2013.html new file mode 100644 index 00000000..0844f2fb --- /dev/null +++ b/grass/terrain_modeling_survey_2013.html @@ -0,0 +1,348 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Geomorphometry I: Terrain Modeling

+

+Resources: +GRASS GIS overview and manual, + libLAS tools for lidar data conversions + +

+Download the Raleigh 2013 lidar data as LAS file and orthophoto: +

+ +

Software support

+ +The GRASS GIS installation on your computer may not support +r.in.lidar and v.in.lidar +modules. You can try them, e.g. using + +
r.in.lidar --help
+
+ +On Windows platform, please use the standalone version of GRASS GIS +we recommend in Course Logistics. +If the modules don't work for you, please use instead of this assignment the +ASCII file based version +of the assignment. + +

Start GRASS GIS

+Create a new mapset (called e.g. HW_terrain_modeling) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all files (see above) +to the selected directory. Now you can use the commands from the assignment requiring the file +without the need to specify the full path to the file. + + + +

Analyze bare earth and multiple return lidar data properties by binning

+Import the points using v.in.lidar. +We can specify which class and which return (first, middle, last) we want to import.
+We can see the classification either in metadata distributed with the lidar data +or it can be displayed with lasinfo tool (in case lasinfo command is not available, skip it.): +
lasinfo tile_0793_016_spm.las
+
+Class 2 represents bare earth points.
+Now we import bare earth points and first return points separately: + +
v.in.lidar -t input=tile_0793_016_spm.las output=elev_lid793016_be class_filter=2
+v.in.lidar -t input=tile_0793_016_spm.las output=elev_lid793016_1r return_filter=first
+
+

+Note: if you have any problems with the files, review the instructions above or +use v.in.lidar GUI dialog to browse to get the path to the files. +

+Set the region from the imported point file with resolution of 1 meter. +Compute raster maps (with r.in.lidar) representing number of points per 1 m grid cell.
+Compare point densities for bare earth, first return. + +

g.region vect=elev_lid793016_1r res=1 -p
+r.in.lidar input=tile_0793_016_spm.las output=lid_be_binn1m class_filter=2 method=n
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binn1m return_filter=first method=n
+r.colors lid_be_binn1m,lid_1r_binn1m color=bcyr -e
+d.rast lid_be_binn1m
+d.legend lid_be_binn1m at=2,50,2,9
+r.report lid_be_binn1m unit=p,c
+r.univar lid_be_binn1m
+d.out.file be_pointdensity
+d.rast lid_1r_binn1m
+d.legend -d -s lid_1r_binn1m at=2,50,8,12
+r.report lid_1r_binn1m unit=p
+r.univar lid_1r_binn1m
+d.out.file first_pointdensity
+
+ +

+Compute a raster map representing mean elevation for each 1m cell.
+It will have holes. + +

r.in.lidar input=tile_0793_016_spm.las output=lid_be_binmean1m class_filter=2 method=mean
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binmean1m return_filter=first method=mean
+r.colors lid_be_binmean1m color=elevation
+r.colors lid_1r_binmean1m color=elevation
+r.info map=lid_1r_binmean1m
+d.erase
+d.rast lid_be_binmean1m
+d.legend lid_be_binmean1m at=2,40,2,5
+d.out.file lidbemean1m
+d.erase
+d.rast lid_1r_binmean1m
+d.legend lid_1r_binmean1m at=2,40,2,5
+d.out.file lid1rmean1m
+
+ +

+Compute a raster map representing mean elevation for each 2m cell.
+Result is almost good enough for 1st return, but there are still many holes for bare earth. + +

g.region res=2 -ap
+r.in.lidar input=tile_0793_016_spm.las output=lid_be_binmean2m class_filter=2 method=mean
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binmean2m return_filter=first method=mean
+r.colors lid_be_binmean2m color=elevation
+r.colors lid_1r_binmean2m color=elevation
+d.erase
+d.rast lid_be_binmean2m
+d.legend lid_be_binmean2m at=2,40,2,5
+d.out.file lidbemean2m
+d.erase
+d.rast lid_1r_binmean2m
+d.legend lid_1r_binmean2m at=2,40,2,5
+d.out.file lid1rmean2m
+
+ +

+Compute range of elevation values in each grid cell: + +

r.in.lidar input=tile_0793_016_spm.las output=lid_be_binrange2m class_filter=2 method=range
+r.colors lid_be_binrange2m color=bcyr -e
+r.in.lidar input=tile_0793_016_spm.las output=lid_1r_binrange2m return_filter=first method=range
+r.colors lid_1r_binrange2m color=bcyr -e
+d.erase
+d.rast lid_be_binrange2m
+d.legend lid_be_binrange2m at=2,40,2,5
+d.out.file lid_be_binrange2m
+d.erase
+d.rast lid_1r_binrange2m
+d.legend lid_1r_binrange2m at=2,40,2,5
+d.out.file lid_1r_binrange2m
+
+ +

+Import and display orthophoto, +switch off all layers except for orthophoto. + +

r.in.gdal ortho_0793_016_ncspm.tif output=ortho_2013_0793
+d.rast ortho_2013_0793
+
+ +

+Identify the features that are associated with large range values.
+Display only the high values of range.
+What landcover is associated with large range in multiple return data? + + +

d.rast lid_1r_binrange2m values=10.-200.
+d.out.file mylid_1rrange2m
+
+ +

+We now know how dense the data are and what is the range within cell.
+If we need a 1m resolution DEM or DSM for our application +this analysis tells us that we need to interpolate it from the point cloud. +What steps would you begin with when processing +point cloud data you are not familiar with? + +

Interpolate DEM and DSM

+ +To interpolate DEM and DSM +we use default parameters except for number of points used for +segmentation and interpolation
(segmax and npmin and higher tension for multiple return data).
+You can set dmin=1 to make the interpolation run faster (see the manual).
+Be patient, it can take a few minutes to run depending on the computer power.
+ +
g.region res=1 -ap
+v.surf.rst input=elev_lid793016_be elevation=elev_lid793016_be_1m npmin=120 segmax=25 dmin=1
+v.surf.rst input=elev_lid793016_1r elevation=elev_lid793016_1r_1m npmin=120 segmax=25 tension=100 smooth=0.5 dmin=1
+r.colors elev_lid793016_be_1m color=elevation
+r.colors elev_lid793016_1r_1m color=elevation
+d.rast elev_lid793016_be_1m
+d.rast elev_lid793016_1r_1m
+
+ + + +Hide legend and switch off all map layers except for the last 2 interpolated ones.
+Use 3D view with cutting planes to compare the bare earth and terrain surface.
+Make sure fine resolution is set to 1 for all surfaces.
+Assign each surface constant color, add constant plane at 75m elevation for reference.
+Shade the crossection using the color by bottom surface option.
+If you don't remember this, see screen capture video for 3d view. + +

+Save image for your report. + +

Optional: Visualize the point cloud using plas.io

+ +Visualizing the raw points in point clouds can be time consuming both in 2D and +3D, however several tools for doing so in an efficient way exist. Try to +use plas.io, an online point cloud +visualization tool to visualize the LAS file from this assignment. +Explore the provided visualization tools in plas.io and create images +showing different properties of the point cloud or the visualization +techniques and how they would be useful for further analysis. + + + + + + +
+ + + +
+
+ + + diff --git a/grass/viewshed_solar.html b/grass/viewshed_solar.html new file mode 100644 index 00000000..e087ebc5 --- /dev/null +++ b/grass/viewshed_solar.html @@ -0,0 +1,245 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Viewshed and solar energy potential analysis

+

Resources: +

+ +

+Text files with site locations: +

+ +

Start GRASS GIS

+Create a new mapset (called e.g. HW_viewshed_solar) in nc_spm_08_grass7 project and +change working directory:
+Settings > GRASS working environment > Change working directory > select/create any directory
+or type cd (stands for change directory) into the GUI +Console and hit Enter: +
cd
+
+Download all text files (see above) +to the selected directory. Now you can use the commands from the assignment requiring the text file +without the need to specify the full path to the file. + +

Viewshed analysis

+Compute viewshed from a new 32 story tower located in downtown.
+ +
g.region raster=elev_ned_30m -ap
+v.in.ascii -z input=viewshed_points.txt output=viewpoints separator=, z=3
+r.viewshed elev_ned_30m output=tower_165_los coordinates=642212,224767 observer_elevation=165 max_distance=10000
+
+ +Display result on shaded relief: +
d.erase
+d.his hue=tower_165_los intensity=elevation_shade
+d.vect streets_wake
+d.vect viewpoints size=10 color=orange icon=basic/marker
+d.barscale at=3,6
+d.legend tower_165_los at=50,90,2,6
+d.out.file towerview_angle
+
+ +

+Find out what is the landuse within the view using map algebra: + +

r.mapcalc "tower_los_lu30m = if(tower_165_los,landclass96,null())"
+r.colors tower_los_lu30m raster=landclass96
+r.category tower_los_lu30m raster=landclass96
+r.report -n tower_los_lu30m unit=p,h
+
+ +Display only the following layers and save result: + +
d.erase
+d.rast tower_los_lu30m
+d.vect streets_wake
+d.legend tower_los_lu30m at=25,50,1,3
+d.out.file towerviewlu
+
+ +

+We can also do visibility from former RedHat headquarters: + +

r.viewshed elev_ned_30m output=redhat_25_los coordinates=638898,224528 observer_elevation=25 max_distance=10000
+
+ +Display only the following layers and save result: + +
d.erase
+d.rast redhat_25_los
+d.vect streets_wake
+d.vect viewpoints size=10 col=red icon=basic/marker
+d.out.file RHview
+
+ +

+Use mapalgebra to compute landuse in the view, +assign the visible land use map land use colors and category labels +using r.colors and r.category (see previous example) +and use r.report -n to compare the size and land use composition within +viewshed from the RBC tower and RH headquarters. + +

Solar radiation analysis

+ +Set the region and add the planned building to the DEM, we will use this new DEM for the analyses.
+Remove all layers and zoom to the region. +
g.region rural_1m -p
+r.mapcalc "elevfacility_1m = if(isnull(facility), elev_lid792_1m,138.)"
+r.colors elevfacility_1m color=elevation
+d.erase
+d.rast elevfacility_1m
+
+ +

+Prepare input maps (slope and aspect): + +

r.slope.aspect elevation=elevfacility_1m aspect=aspect_elevfac_1m slope=slope_elevfac_1m
+
+ +

Incidence angles and cast shadows

+

+Compute the sun position on Dec. 22 at 2:25pm, EST (no map output expected): + +

r.sunmask -s elevation=elevfacility_1m year=2001 month=12 day=22 hour=14 minute=25 sec=0 timezone=-5
+
+ +

+Calculate incidence angles including cast shadows.
+We assign histogram equalized color table - can you explain why? +(hint: try the same color table without -e).
+What is the value on the roof? How is it related to day/time? + +

r.sun elevation=elevfacility_1m aspect=aspect_elevfac_1m slope=slope_elevfac_1m incidout=incid_elevfac_1m day=356 time=14.416667
+r.info incid_elevfac_1m
+r.colors -e incid_elevfac_1m co=bcyr
+d.rast incid_elevfac_1m
+d.legend incid_elevfac_1m at=25,50,1,3
+d.out.file incid_angle
+
+ +

+Extract the cast shadow area for 14.4 hr and +compute and extract shadow area for 7.5 hr: + +

r.mapcalc "shadow_1m = if(isnull(incid_elevfac_1m), 1, null())"
+r.colors shadow_1m color=grey
+d.rast elevfacility_1m
+d.rast shadow_1m
+r.sun elevation=elevfacility_1m aspect=aspect_elevfac_1m slope=slope_elevfac_1m incidout=incid_elevfac7_1m day=356 time=7.50
+r.mapcalc "shadow7_1m = if(isnull(incid_elevfac7_1m), 1, null())"
+d.rast shadow7_1m
+d.out.file shadows
+
+ +

Solar radiation

+Compute global (beam+diffuse+refl) radiation for entire day during summer and winter solstice.
+Display the radiation maps and also insolation time maps insol_time using same commands.
+Optionally display the radiation maps draped over elevation elevfacility_1m in 3D view +to see relation between terrain geometry and solar radiation. + +
r.sun elevation=elevfacility_1m aspect=aspect_elevfac_1m slope=slope_elevfac_1m day=356 glob_rad=g356 insol_time=its356
+r.colors g356 co=gyr -e
+r.sun elevation=elevfacility_1m aspect=aspect_elevfac_1m slope=slope_elevfac_1m day=172 glob_rad=g172 insol_time=its172
+r.colors g172 co=gyr -e
+d.rast g356
+d.legend g356 at=25,50,1,3
+d.out.file solar_winter
+d.rast g172
+d.legend g172 at=25,50,1,3 range=8800,8867
+d.out.file solar_summer
+
+ +

+Calculate direct solar radiation and insolation time for a larger region.
+ +Try to find good color tables (custom, hist. equalized, to see the pattern). + +

g.region raster=elev_ned_30m -p
+r.slope.aspect elevation=elev_ned_30m aspect=asp_ned_30m slope=slp_ned_30m
+r.sun elevation=elev_ned_30m aspect=asp_ned_30m slope=slp_ned_30m linke_value=2.5 albedo_value=0.2 beam_rad=b356 diff_rad=d356 refl_rad=r356 insol_time=it356 day=356
+
+ +Zoom to the new computational region and display the following layers:
+ +
d.erase
+d.rast b356
+d.legend b356 at=2,30,2,6
+d.out.file beamrad356
+d.rast it356
+d.legend it356 at=2,30,2,6
+d.out.file insol_time
+
+ +
+ + + +
+
+ + + diff --git a/img/favicon.ico b/img/favicon.ico new file mode 100644 index 00000000..3a3e0418 Binary files /dev/null and b/img/favicon.ico differ diff --git a/img/github_logo.png b/img/github_logo.png new file mode 100644 index 00000000..bec29884 Binary files /dev/null and b/img/github_logo.png differ diff --git a/img/graphics.png b/img/graphics.png new file mode 100644 index 00000000..917752ed Binary files /dev/null and b/img/graphics.png differ diff --git a/img/grass_index.png b/img/grass_index.png new file mode 100644 index 00000000..974ef0cc Binary files /dev/null and b/img/grass_index.png differ diff --git a/img/header.png b/img/header.png new file mode 100644 index 00000000..1f144611 Binary files /dev/null and b/img/header.png differ diff --git a/index.html b/index.html new file mode 100644 index 00000000..63681788 --- /dev/null +++ b/index.html @@ -0,0 +1,361 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

GIS/MEA 582 Course Syllabus

+ +

Course Title and Description

+Geospatial Modeling, a 3 credit course, explains digital representation and analysis of geospatial +phenomena and provides foundations in methods and algorithms used in +GIS analysis. Special focus is on terrain modeling, +geomorphometry, watershed analysis and introductory GIS-based + modeling of landscape processes (water, sediment). +The course includes analysis from lidar data, coastal change assessment and 3D visualization. + +

+See slides +and video +which introduce the course in more depth. + + +

Instructor

+ +Helena Mitasova, see her +MEAS page + + + + + + + + + +
Office hours:by appointment, please email to hmitaso@ncsu.edu
+ + + +

Prerequisites

+Knowledge of GIS principles at an introductory level or strong computational background is recommended. + + +

Class structure and educational approach

+This course consists of lectures, readings, +hands-on exercises, homework assignments, and a major +project. +

+GIS/MEA582-001 sections are on-campus, face-to-face class sessions. +
GIS/MEA582-601 sections are asynchronous with materials available on-line. + +

Schedule and Learning materials

+ +
    +
  • +Course Schedule web page provides links to the weekly topics material +(lectures, assignments) along with due dates and suggested project activities. +
  • + +Moodle is used to access the recorded videos, upload your assignments, read our feedback, post your questions to forum and discuss your projects. +
  • + +Course logistics +web page provides links to software (GRASS GIS and ArcGIS Pro) and data used in the assignments and +describes the structure of assignment papers. +
+ +

Textbooks

+No required textbook, on-line material is used. +You may find the following titles helpful for some topics: + + +

Grading policy

+40% homeworks, 20% midterm, 40% project. +100 points is the maximum number of points (total + extra credits) achieved in class. +Extra credits are given for innovative solutions, +creativity in problem solving and extensions to given tasks. +Points are taken off for late submissions. + + + + + + + + + + + +
GradeCourse and each HW
Max100
A+97
A93
A-90
B+87
B83
B-80
C+77
C73
+ +

Topics

+
    +
  • +Geospatial Data Acquisition. Open Source GIS +
      +
    • mapping natural phenomena +
    • coordinate reference system, projections, transformations
    • +
    • introduction to open source concepts
    • + +
  • +
  • + +Geospatial Data Models and Visualization +
      +
    • concept of continuous fields and discrete sampling
    • +
    • raster and vector data representation, raster-vector conversions and resampling
    • +
    • geospatial formats, conversions, geospatial data abstraction library
    • +
    • display of continuous and discrete data, use of color to extract spatial patterns
    • +
    • 3D visualization: single and multiple surfaces
    • +
    • visualization for data analysis (lighting, zscaling, transparency, + cutting planes, animations)
    • + +
  • +
  • +Geospatial Analysis +
      +
    • foundations for analysis of continuous and discrete phenomena
    • +
    • zonal and neighborhood operations
    • +
    • analysis and modeling with map algebra
    • +
    • proximity analysis and buffers +
    • cost surfaces and least cost path
    • +
  • +
  • +Spatial interpolation and approximation (gridding)
  • +
      +
    • definitions, principles and applications of spatial interpolation +
    • selected methods and their properties +
    • smoothing spline interpolation +
    • evaluating interpolation accuracy +
    • trivariate interpolation of volumes and topo-climatology +
    +
  • +Geomorphometry: Terrain Modeling and Analysis +
      +
    • terrain and bathymetry mapping
    • +
    • digital representations (point clouds, contour, raster, TIN)
    • + +
    • DEM, DTM and DSM, working with multiple return lidar data
    • +
    • basic topographic analysis: slope, aspect and curvatures +
    • mapping landforms and terrain features +
    • time series of elevation data, analysis of coastal change
    • +
  • +
  • +Viewsheds and solar irradiation +
      +
    • line of sight, viewshed and cumulative viewshed analysis +
    • solar radiation: components and dynamics +
    • solar irradiation in complex terrain, cast shadows +
    +
  • +Flow Modeling and Watershed Analysis +
      +
    • methods for flow routing and flowaccumulation
    • +
    • extraction of stream networks and watershed boundaries from DTM
    • +
    • introduction to GIS-based modeling of geospatial processes
    • +
    • basic hydrologic and erosion modeling
    • +
  • +
  • Project
  • + +
+ +
+ +
+
Academic integrity
+
+ Overview, + Code of Student Conduct +
+
Attendance policy
+
+ in on-campus section, attendance is recommended. + +
+
Accommodation of students with disabilities
+
+ Disability Services Office + +
+
Large Language Model (LLM) (i.e., ChatGPT, Bard, etc..) policy
+
+ The use of LLMs in this course is permitted for the purposes of completing assignments and projects. + However, the use of LLMs for the purposes of completing exams is strictly prohibited. Students are also required + to cite the use of LLMs in their assignments and projects. Failure to do so will result in a violation of the + courses academic integrity policy. + + Students are also to be aware that the use of LLMs in this course is not a substitute for learning the material. + Assignments and projects must be properly cited and contain no plagerized materials. + (The policy was created with the aid GitHub CoPilot) + + +
+
+ +
+ +

For non-NCSU visitors

+ +This course material is open and is often used by people outside NCSU. +Note that although we are trying to have maximum of our resources open, +some linked material like online library resources and virtual computing lab +are accessible only to people at NCSU. However, GRASS GIS and the dataset +used in the assignments are available to anybody under and open license. +The most useful page for an outside visitor is the +list of GRASS GIS assignments. + +
+ + + +
+
+ + + diff --git a/intro.html b/intro.html new file mode 100644 index 00000000..e0c0bdad --- /dev/null +++ b/intro.html @@ -0,0 +1,414 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Course logistics

+ +For the general introduction to the course, see +Course Syllabus. + +

Software

+ +Install GRASS GIS and ArcGIS Pro software following the instructions bellow. +Note that ArcGIS is available to students through the university. +GRASS GIS is available to anybody and you can continue using it +on your computer after you graduate. + +

GRASS GIS

+ + + +

ArcGIS

+ + + + +

Data

+ + +
    +
  • Sample GRASS GIS dataset: +
      +
    • Start GRASS GIS. In the data management window, + click the icon Download sample project to current database and + select Complete North Carolina dataset, click Download, + close when finished. You should see a project nc_spm_08_grass7 in your database. + See also + GRASS Quickstart + and Screen capture for MS Windows + + +
    • Alternatively, you can download and unzip + nc_spm_08_grass7 into the grassdata directory and then start GRASS GIS - you should see the dataset + in the Data catalog. + In this case it is important to make sure that your unziping software does + not create additional directory with the same name, e.g. on MS Windows make sure that you do not get + nc_spm_08_grass7\nc_spm_08_grass7. +
    • + The same dataset is provided during installation of GRASS GIS + on MS Windows under the name North_Carolina. +
    +

    +

  • + + +
  • Sample ArcGIS Pro geodatabase gdbs.zip
  • +
      +
    • Create arcdata directory e.g. C:\Users\myname\Documents\arcdata +
    • After downloading, unpack ArcGIS geodatabase into arcdata directory +
    +
+ + +You can find additional data for your project in this list of data repositories. + +

Assignments

+ +In the assignments you will be performing similar geospatial analyses +in two different software packages - GRASS GIS and ArcGIS Pro. +Both GRASS GIS and ArcGIS Pro solutions are required, +described in a single paper (more details see below). +Step-by-step instructions are provided, but it is your task to explain +what is being done in terms of methods and results, +based on the lectures, manual pages and other on-line resources. + +

Report

+
    +
  • For each topic (as indicated in the schedule) you will submit a brief paper + with min. 800 word text and 2 or more pages of graphics
  • +
  • Required paper sections: +
      +
    1. Introduction: task, problem, background, importance, motivation
    2. +
    3. Methods: general description of methods and concepts, do not repeat instructions + and do not discuss software issues here - this section should be software independent, common for + both ArcGIS and GRASS GIS and equations for methods should be included where appropriate. + In this section you should demonstrate that for the given step-by-step instructions + your were able to explain what methods are being used to solve the given problem
    4. +
    5. Results: images, maps, graphs, tables with comments, focus on what is interesting in the data + and the derived maps, how does the method used influence the results. + Include answers to questions in this section.
    6. +
    7. Discussion: was there anything unexpected or problematic in the results? + Were there any issues related to the methdology? Also discuss the software issues, + including fixes and suggestions for improvements here.
    8. +
    9. Conclusion: 1-2 sentences what you have learned
    10. +
    11. References where appropriate
    12. +
    +
  • +
  • Please read detailed Report guide + created specifically for this class. +
  • + Sample paper formatting for + MS Word (DOCX), + LibreOffice (ODT) + (view online in rollApp), and + LaTeX + (open online in Overleaf; + register using NCSU email). + + Do not use the text from this example, it is for formatting only! +
  • + Note that the submitted report should be in PDF, use naming convention + LastnameFirstname_HW#.pdf. +
  • + You can find some helpful hints from past semesters in + Comments/answers to HW questions. +
  • + Upload your assignment papers on Moodle site + according to the instructions below. +
  • + Although the HW papers are short they should be written in a style suitable for scientific publication. + +
+ +

Moodle

+ +To manage your HW reports and project material we will use Moodle. +Upload your HW report as PDF file LastnameFirstname_HW#.pdf +(for example SmithJohn_HW3.pdf) on Moodle site by 11pm on the due date. + +

+You will also use Moodle to post your project proposal, interim report, presentation and +a final paper as well as any additional material that you would like to share (videos, demos, data, google maps). + +

+Moodle Forums are set up to introduce yourself, post your questions about assignments and discuss your projects. + +

How to Write an Issue Report

+

Please use the following template when submitting software specific issues.

+ +
    +
  • Subject/Title
  • +
      +
    • Short description of the issue
    • +
    +
+ +
    +
  • Describe the Bug
  • +
      +
    • A clear and concise description of wht the bug is.
    • +
    +
+ +
    +
  • To Reproduce
  • +

    Steps to reproduce the behavior:

    +
      +
    1. Go to '...' +
    2. Click on '....' +
    3. Scroll down to '....' +
    4. See error +
    +
+ +
    +
  • Expected Behavior
  • +
      +
    • A clear and concise description of what you expected to happen.
    • +
    +
+ +
    +
  • Screenshots or Video
  • +
      +
    • If applicable, add screenshots or video to help explain your problem.
    • +
    +
+ +
    +
  • System Description
  • +

    Please complete the following information:

    +
      +
    • OS: [e.g. Windows 10, macOS 10.15, Ubuntu 20.04]
    • +
    • GRASS GIS version or ArcPro version: [e.g. 8.4.0, 2.8.3]
    • +
    +
+ +
    +
  • Additional Context
  • +

    Add any other context about the problem here.

    +
+ + +

Project

+ +See Projects page. + +

Grading and Policies

+See Syllabus web page. + +

+Don’t cheat (e.g. use other person’s results), +but you are encouraged to collaborate and help each other with advice, +for example, through the message board. + +

+ + + +
+
+ + + diff --git a/layout.css b/layout.css new file mode 100644 index 00000000..6d598d00 --- /dev/null +++ b/layout.css @@ -0,0 +1,35 @@ +html, body { + height: 100%; +} + +body { + margin: 0; + padding: 0; +} + + +#container +{ + position: relative; + margin: 0 auto; + padding-left: 10px; + padding-right: 10px; + width: 100%; + background-color: white; + height:auto !important; + min-height:100%; + border-style:solid; + border-bottom-width:1px; + border-top-width:1px; + border-left-width:10px; + border-right-width:10px; + border-color: #DDDDDD; +} + + +#header-image { + width: auto; + background-position: center top; + background-size: cover; + vertical-align: bottom; +} diff --git a/lectures.html b/lectures.html new file mode 100644 index 00000000..959fab79 --- /dev/null +++ b/lectures.html @@ -0,0 +1,429 @@ + + + + +GIS/MEA582: Geospatial Modeling and Analysis + + + + + + + + + + +
+
+ +
+
+

NCSU GIS/MEA582:
Geospatial Modeling and Analysis

+
+ + + +
+ +
+ +

Lectures

+ +

Introduction and course logistics

+ +Outline: + + + +

Geospatial data introduction

+ +Outline: +
    +
  • mapping natural phenomena, concept of continuous fields and discrete sampling
  • +
  • on-ground/in-situ, airborne, satellite, and lidar data acquisition
  • +
  • projections, coordinate transformations, georeferencing
  • +
+Lecture: + +Supplemental materials: + + + +

Geospatial data models

+ +Outline: +
    +
  • raster and vector data models
  • +
  • raster-vector conversions and resampling
  • +
  • geospatial formats, conversions, geospatial data abstraction library
  • +
  • data repositories, metadata
  • +
+Lecture: + +Supplemental materials: + + + +

Data display and visualization

+ +Outline: +
    +
  • display of + continuous and discrete data, use of color, shading, symbols to + extract the spatial pattern and relationships +
  • 3D visualization: multiple surfaces and volumes, 3D vector objects +
  • visualization for data analysis (lighting, zscaling, transparency, cutting planes, animations) +
  • Sharing data on-line +
+Lecture: + +Supplemental materials: + + + +

Geospatial Analysis: Global, zonal and focal operations, map algebra

+ +Outline: +
    +
  • global and zonal statistics +
  • neighborhood (focal) operations +
  • raster map algebra +
      +
    • expressions, operators, functions and variables +
    • basic calculations, integer and floating point data +
    • "if" conditions, handling NULLs and creating masks +
    +
  • raster map patching and overlay +
  • raster map reclassification and rescaling +
+Lecture: + + + +

Geospatial Analysis: buffers, cost surfaces, least cost path

+ +Outline: +
    +
  • measuring distance, proximity operators +
  • point, line, and area buffers +
  • cost surfaces, least cost path +
+Lecture: + +Supplemental materials: + + +
+ +

The following lectures are about Geomorphometry and modeling of processes.

+ + +

Spatial interpolation and approximation: methods

+ +Outline: +
    +
  • definitions, principles and applications +
  • selected methods and their properties + +
  • influence of interpolation parameters
  • +
+Lecture: + + + +

Spatial interpolation and approximation: splines, point selection

+ +Outline: +
    +
  • influence of spline interpolation parameters: tension/range and smoothing
  • +
  • implementation - point selection techniques
  • +
  • special cases: contours, profiles, anisotropy
  • +
  • trivariate interpolation of volumes and topo-climatology
  • +
  • evaluating interpolation accuracy, crossvalidation
  • +
+Lecture: + +Supplemental materials: + + + +

Terrain modeling

+ +Outline: +
    +
  • 3D mapping technologies: topography and bathymetry
  • +
  • mathematical and digital terrain models
  • +
  • point clouds, multiple return data, CLICK, LDART
  • +
  • triangular irregular networks
  • +
  • regular grid (raster), NED, SRTM, CRM
  • +
  • isolines
  • +
+Lecture: + +Supplemental materials: + + + +

Spatial and temporal terrain analysis

+ +Outline: +
    +
  • summary parameters: volumes, surface areas
  • +
  • first and second order point parameters: general approach
  • +
  • methods for slope, aspect and curvatures using polynomial and spline approximation
  • +
  • combining parameters to map landforms and terrain features
  • +
  • computing parameters from noisy data, accuracy and uncertainty, scale and level of detail
  • +
  • raster time series analysis, quantification of coastal change
  • +
+Lecture: + +Supplemental materials: + + + +

Viewshed, solar energy potential analysis

+ +Outline: +
    +
  • line of sight, viewshed and cumulative viewshed: principle and applications
  • +
  • solar radiation: components and dynamics
  • +
  • solar radiation in complex terrain, cast shadows
  • +
  • cumulative solar irradiation, solar energy potential
  • +
+Lecture: + +Supplemental materials: + + + +

Flow tracing, watershed analysis

+ +Outline: +
    +
  • cumulative terrain parameters based on flow tracing: definitions and general approach + (flow path length, flow accumulation, stream networks, watershed boundaries, ridge lines) +
  • methods for computing flow direction (D8, Dinf), flow tracing (SFD, MFD, uniform, weighted) +
  • methods for flow tracing through depressions and flat areas + (filling, carving, hybrid, least cost path) +
+Lecture: + + + + + +

Modeling Geospatial Processes: Hydrologic and erosion modeling

+ +Outline: +
    +
  • spatially explicit modeling: principles and applications, role of GIS
  • +
  • geospatial aspects of models: spatially averaged and distributed models
  • +
  • general approaches and methods: empirical and physics based components of models
  • +
  • steady state, continuous time and dynamic models and related modeling tools
  • +
  • spatial hydrologic modeling: processes and methods
  • +
+Lecture: + + + +

Modeling Geospatial Processes: Erosion modeling

+ +Outline: +
    +
  • spatial modeling of erosion, sediment transport and landscape evolution
  • +
  • deriving input parameters, analysis and visualization of modeling results
  • +
  • simulating impact of landuse and climate change
  • +
+Lecture: + +Supplemental materials: + + + + +
+ + + +
+
+ + + diff --git a/lectures/about.html b/lectures/about.html new file mode 100644 index 00000000..d763e5aa --- /dev/null +++ b/lectures/about.html @@ -0,0 +1,476 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geospatial Modeling

+

GIS/MEA582

+

Helena Mitasova

+

Center for Geospatial Analytics, +
North Carolina State University +

+
+ +
+

Course topics

+

+

    +
  • Continuous and discrete geospatial data models +
  • Data display and 2D/3D geovisualization +
  • Raster-based geospatial analysis, map algebra +
  • Proximity analysis, buffers, cost surfaces and LCP +
  • Points to rasters - Spatial interpolation +
  • Terrain modeling and topographic analysis +
  • Viewshed, solar energy potential analysis +
  • Flow routing, watershed analysis, erosion modeling +
+

+

+

+ +
+

Course structure

+

+

    +
  • offered on-campus (spring) and on-line (spring and fall) +
  • material can be accessed on-line any time +
  • lectures: software independent, slides with audio +
  • assignments: in both GRASS GIS and ArcGIS +
  • independent project +
+

+ + +

+ +
+

Data display and geovisualization

+

+

    +
  • data display and visualization for data analysis +
  • communication of geospatial information +
+

+

Selecting color ramp to highlight hidden spatial patterns: North Carolina elevation +

+ +
+

Viewing data in 3D perspective

+

3D visualization is used in many assignments

+

+ +

Multiple surfaces based on lidar and cut-planes

+

+

DEMs with color maps: land cover, erosion, elevation +

+ +
+

Dynamic geovisualization

+

+Time series of DEMs from digitized contours and lidar +

+

Jockey's Ridge sand dune migration: 1974 - 2014

+
+ +
+

Raster-based geospatial analysis

+

Techniques for efficient solutions of geospatial problems +

    +
  • global, zonal, focal and neighborhood operators +
  • map algebra +
+

+

Computing NDVI (green vegetation index) from LANDSAT imagery using map algebra

+
+ +
+

Proximity problem solving

+

Buffers, cost surfaces, least cost path +

+

Finding least cost path from firestations to accident in SW Wake county +

+ +
+

Points to rasters: spatial interpolation

+
    +
  • Using the values measured at irregularly distributed points we +compute the values at regular grid +
  • methods and their properties +
  • implementation and application issues +
+

+

+ +
+

Splines: tuning the tension

+

Result of interpolation depends on the selection of parameters, in this example, +the lower the spline tension, the smoother the surface +

+

+ +
+

Terrain modeling from lidar

+

+From lidar point cloud to DEM and DSM +

+ +

+ +
+

Geomorphometry

+
    +
  • Land surface geometry is measured by topographic parameters +
  • we can derive basic landform classes from topographic parameters +
+ +

profile curvature and landforms at two different levels of detail

+

+
+ +
+

Viewshed and solar energy

+

Problems based on ray-tracing: line of sight, radiation +

+

Dynamics of cast shadows and solar energy potential on June 22 +

+ +
+

Modeling landscape processes

+Flow routing, watershed analysis and erosion modeling +

+ + +

+ +
+

Independent Project

+
    +
  • Focused on student's research interests, +
  • any geospatial software can be used +
  • should include a surface or continuous field component +
+

+   + +

Anna Petrasova and Vaclav Petras

+
+ +
+

Final Portfolio

+
    +

    +

  • Assignment papers with insightful 2D and 3D graphics that represent the course foundation topics +

    +

  • Independent project paper : some evolve into papers for conferences or scientific journals +
+

+

+ +
+

Resources

+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/basicraster.html b/lectures/basicraster.html new file mode 100644 index 00000000..81ab8f34 --- /dev/null +++ b/lectures/basicraster.html @@ -0,0 +1,751 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geospatial Analysis

+

Basic raster operations

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Learning objectives

+

+

    +
  • Explain global and zonal statistics +

    +

  • Define neighborhood operations +

    +

  • Understand raster map algebra +

    +

      +
    • expressions, operators, functions and variables +
    • basic calculations, integer and floating point data +
    • "if" conditions, handling NULLs and creating masks +
    +

    +

  • Define raster mosaicking and patching +

    +

  • Explain raster map reclassification and rescaling +
+
+ +
+

Summary statistics: continuous data

+

+

    +
  • stored numbers are values quantifying the phenomenon +
  • univariate statistics: min, max, mean, standard deviation, median, ... +
  • histogram (requires discretization into bins) +
+

Can be applied as global, zonal, or neighborhood operations +

See relevant equations and additional metrics in + Supplemental material +

+ +
+

Summary statistics: discrete data

+

+

    +
  • stored numbers can be values (quantitative data) or category numbers (qualitative data) +
  • values apply to an area rather than grid point +
  • univariate statistics can be applied only to quantitative attributes +
  • majority (mode or most frequent category), diversity (number of different categories) apply to category data +
+

Can be applied as global, zonal, or neighborhood operations +

See relevant equations and additional metrics in + Supplemental material + +

+ +
+

Global statistics

+

Continuous data example +

    +
  • Compare elevation data from different sources using mean, standard deviation and histogram +
  • Identify data anomalies and potential artifacts +
+
+ +
+

Global statistics: compare DEMs

+

+ +

+

+ +

+

+ +
+

Global statistics: compare DEMs

+

+ +

+

+ +

+

+

+ +
+

Global statistics: compare DEMs

+

+ +

+ +

+

+

+ +
+

Global statistics: compare DEMs

+

+ + +

+ + +

+ + + +
+

Zonal statistics: continuous data

+
    +
  • Agregates continous data to discrete areas +
  • Hydrology example: mean slope for watersheds to estimate how fast water moves through it +
+

+ + +

Watersheds (discrete zones), Slope (continuous variable): Mean slope for each watershed +

+ +
+

Zonal statistics: category data

+
    +
  • Agregates discrete data to discrete areas +
  • Land use analysis example: map prevailing land cover for each watershed +
+

+ + +

Watersheds (discrete zones), Land cover 1996 (discrete variable): Most common land cover +

HI developed, LI developed, Southern pine, Hardwoods, Cultivated Herbaceous +

+ +
+

Neighborhood operations

+
    +
  • Value at a grid cell is function of the values at neighboring grid cells +
  • Grid cell neighborhood is defined by a moving window, square or circular +
  • Same rules apply for continuous and discrete data as for global and zonal stats +
  • Basic univariate statistics, filters, image processing +
+
+ +
+

Neighborhood operations: smoothing

+

Smoothing noise in DEM: mean with 5x5 window +

+
+

+ +
+

Neighborhood operations: diversity

+

Number of different landuse classes in 7x7 window +

+ +
+ +

+
+ +
+

Neighborhood operations: diversity

+

Map areas with homogeneous (single category) land use and its land use category +

r.mapcalc "lu_singlecat = if(lu_diversity == 1, landuse, null())" +

+

+
+ +
+

Raster map algebra

+

+Computes a new raster map using an expression built by applying logical and/or arithmetic operators, +or mathematical functions to existing raster maps: +

+newmap = expression (map1, map2, ...map3) +

+Local operation: Expression is applied on per-cell basis +

+ +
+

Raster map algebra

+

+Each software has its own syntax, operators and functions +

    +
  • Logical operators and functions: +
      +
    • less than, equal, +
    • and, or, not, ...; +
    • if(x), if(x,a,b) +
    +

    +

  • Arithmetic Operators +
      +
    • +, -, *, / +
    +

    +

  • Mathematical Functions: +
      +
    • exp(x,y), sin(x), log(x) +
    • min(x1,x2,..), max(), median() +
    +

    See GRASS GIS map algebra manual page +for extensive set of supported operators and mathematical functions +

+ +
+

Map algebra: logical expressions

+

+

    +
  • apply to continuous and discrete (category) data and their combination +
  • reclassification, sub-setting, masking, overlays +
  • Example: extract map of elevations in all forested areas with elevation > 120m +
+

GRASS GIS expression +

forest_z = if(landc==5 && elev > 120., elev, null())

+
+ +
+

Map algebra: logical expressions

+

forest_z = if(landc==5 && elev > 120., elev, null())

+

+ + + +

How will the map look like if we use OR (||) instead of AND (&&) ? +

+ +
+

Map algebra: arithmetic operators

+

Integer and floating point matters for arithmetic expressions: +

    +
  • F(map1_int, map2_int) -> map_int +
  • F(map1_int, map2_fp) -> map_fp +

    +

  • Example: compute NDVI from Landsat7 integer maps using tm4, tm3 bands +
  • ndvi=(tm4-tm3)/(tm4+tm3) +
  • ndvi=float(tm4-tm3)/float(tm4+tm3) +
  • ndvi=1.*(tm4-tm3)/(tm4+tm3) +
+
+ +
+

Raster map algebra: int and fp

+

ndvi=(tm4-tm3)/(tm4+tm3) +

+ + + +

This is to illustrate the arithmentic operators, +note that various vegetation indices are usually implemented +as a separate module, e.g. i.vi in GRASS GIS +

+ +
+

Raster map algebra: int and fp

+

ndvi=float(tm4-tm3)/float(tm4+tm3) +

+ + + +

This is to illustrate the arithmentic operators, +note that various vegetation indices are usually implemented +as a separate module, e.g. i.vi in GRASS GIS +

+ +
+

Raster map algebra: math functions

+

+Example: for all forested areas, compute sediment transport capacity $T$ using the following equation +

+$$T = A^{1.5} \sin \beta$$ +

where +

    +
  • $A$ is contributing area per unit width +
  • $\beta$ is slope +
+

GRASS GIS expression

+

+t_sed = if(landc==5, exp(area,1.5) * sin(slope), null()) +

+ +
+

Map algebra: math functions

+

Generate a plane related to existing surface +

    +
  • equation for a plane: $z = ax + by$ +
  • in map algebra: plane = a*row() + b*col() +
  • tilt and elevation adjusted to intersect a DEM +
  • tiltplane = 0.2*(0.1*row()+col())+50 +
  • cut off plane over 2m above elevation surface +
  • tiltpl_elev = if(tiltplane < elev_lid792_1m + 2,tiltplane,null()) +
+
+ +
+

Map algebra: math functions

+

Generate a plane related to existing surface +

+ + +

+ +
+

Raster map algebra: null data

+

+

    +
  • Raster maps can include NULL data (no-data), each software has its own rules how to handle them in map algebra operations +
  • General rule: If a cell is null in at least one map (variable) then it is null in the resulting map +
  • "If “ statements can test for null and/or assign a cell null value based on the if condition +
  • Special operators can be implemented to extend the rules applied to nulls +
+
+ +
+

Example: null data handling

+

+Compute average elevation from 30m SRTM and one tile of 6m NCFlood DEM +

elev_avg=(elev_srtm_30m+elevlid_D782_6m)/2.

+

+

+
+ +
+

Example: null data handling

+

+Compute average elevation from 30m SRTM and one tile of 6m NCFlood DEM +

elev_avg=(elev_srtm_30m+elevlid_D782_6m)/2.

+ +

Use “if” statement to limit the computation to no-NULL areas

+
+ +
+

Mosaicking and Patching

+
    +
  • Mosaicking: Merging several neighboring raster maps into a single raster +
  • Issues: resolution, alignment, no-data slivers due to projection +

    +

  • Patching: “Filling-in” nulls in base raster map with values from additional raster maps +
  • Merging several features within a single raster layer, order of maps matters +
+
+ +
+

Mosaicking

+Merging several neighboring raster maps (tiles) into a single raster (mosaic) +

+

+

Check the seams with aspect. If reprojection is needed, first mosaic, then reproject to avoid potential +no-data slivers that need to be interpolated +

+ +
+

Patching

+Merging several features within a single raster, e.g., for draping over DEM in 3D view +

+ + + +

Start with the map with most nulls (lakes), fill them in with values from additional raster map (elevation) +and assign relevant color ramp +

+ +
+

Reclassification

+
    +
  • Reclassification / recoding: transformation rules used to convert between raster value types and classes +
  • change interval or list of values $(w_i, w_j)$ to a new value $v_k$ or interval of values $(v_k,v_l)$ +
  • Types of intervals: +

    +

      +
    • Equal value +
    • Natural breaks (based on histogram breaks) +
    • Equal area (histogram equalized) +
    +
+
+ +
+

Reclassification example

+

Aspect: linear reclassification of continuous values in degrees to discrete classes in cardinal directions +

+ + +0- 45 = 4 East, 45-135 = 1 North, 135-225 = 2 West, 225-315 = 3 South, 315-360 = 4 East, +

+ +
+

Reclassification example

+

Slope: linear reclassification of continuous values to discrete classes +

+ + + + +Slope intervals are same for each class, are computed as max_slope/number_of_classes +leading to 6 classes with 7 degree interval +

+ +
+

Reclassification example

+

Slope: histogram equalized reclassification of continuous values to discrete classes +

+ + + + +Slope intervals for each class are computed based on cumulative histogram so that each class has approximately +the same area: 1-6 deg has six 1 degree intervals, 6-38 is a single interval +

+ +
+

Reclassification example

+

Rule-based Landcover to C-factor (soil erosion cover factor): categories to values in winter and summer +

+ + +Winter - 1 pond : 0.000, 2 forest : 0.0005, 3 developed : 0.000, 4 bare : 0.8, 5 paved road : 0.000, 6 dirt road : 0.500 +7 agriculture : 0.5, 8 grass = 0.005; Summer - 7 agriculture : 0.005 +

+ +
+

Summary

+
    +
  • global and zonal summary statistics for continuous and discrete data +
  • basic neighborhood operations +
  • map algebra +
  • reclassification of continuous values to discrete classes +
+
+ + + +
+ + +
+ + +
+ +
+ + + + + + + + diff --git a/lectures/costsurfaces.html b/lectures/costsurfaces.html new file mode 100644 index 00000000..471c1b10 --- /dev/null +++ b/lectures/costsurfaces.html @@ -0,0 +1,718 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geospatial Analysis

+

proximity, buffers, cost surfaces

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Learning objectives

+

+

    +
  • Understand different metrics for distance +

    +

  • Define buffer operation, discrete and continous buffers +

    +

  • Explain concept of cost surfaces +

    +

  • Understand least cost path +
+
+ +
+

Measuring distance

+

+

    +
  • Euclidean: shortest distance in plane +
  • Geodesic: shortest distance over curved surface, great circle on sphere: + orthodrome +
  • $L^p$ metrics on meshes or grids +
  • Linear referencing systems +
+
+ +
+

Measuring distance: spheroid

+
    +
  • Geodesic: shortest distance over curved surface +
  • Rhumbline: + constant bearing path, line in Mercator projection, not the shortest path +
+
+ +
+ +
+

Measuring distance: plane

+
    +
  • Generalized distance: $L^p$ metrics for measuring distance on meshes or grids +
  • distance between two points $a(x_1,y_1)$ and $b(x_2,y_2)$ +

    +

  • $d_p(a,b)=[(x_1-x_2)^p + (y_1-y_2)^p]^{1/p}$ +
      +
    • $p=2$ : Euclidean distance +
    • $p=1$ : Manhattan (Taxicab, City block) metric +
    +

    +

  • Linear Referencing Systems: +location is defined by its linear distance from a known point on a route +and distance is measured along segments of a network; used for roads, utilities, waterways +
+
+ +
+

Manhattan metrics

+Comparison of buffer pattern measured with Euclidean and Manhattan metric +

+ + + +

$d_1(a,b)=(x_1-x_2) + (y_1-y_2)$ +

+ +
+

Measuring distance in networks

+Linear Referencing Systems: distance along bus routes +

+ +

+ +
+

Measuring feature length

+

+

    +
  • what is the length of NC coastline? Neuse river? +
  • feature length is scale dependent +
  • vector model: length depends on level of detail captured by the vertices +
  • raster model: resolution and level of detail (grain) +

    +

  • natural features are often complex + fractals +
+
+ +
+

Measuring feature length

+Compare stream length from + +USGS NHD and a stream derived from a local 1m lidar-based DEM +

+ +

NHD streams mapped at 1:24000 scale, simplified geometry, leading to shorter length. + +

+ +
+

Measuring feature length

+Compare length of NC Coastline from NC GIS and from a World map 1:10M +

+ + +

World map scale 1km=0.1mm - narrow barrier islands are not represented +
Keep scale in mind when comparing length of features represented at different scales!
+

+ +
+

Raster-based proximity to features

+
    +
  • discrete: +
      +
    • applies to raster representation of discrete features (points, lines, areas) +
    • creates discrete buffer zones from a given feature +
    • requires resolution sufficiently higher than the buffer widths +
    +

    +

  • continuous: +
      +
    • derives proximity raster from a given feature +
    • computes distances from a feature for every cell +
    • equivalent to cumulative cost surface with uniform cost=1 +
    • resolution controls the distance precision - step +
    +
+
+ +
+

Raster map buffer: points

+
    +
  • Task: map forested areas around schools +
  • Create discrete point buffers at selected distances +
+

+ + +

+ +
+

Raster map buffer: points

+
    +
  • Use map algebra to combine buffers with landcover +
+school_buf_forest = if(landcl98 == 5 && school_buff, school_buff, 0) +

+ +

+ +
+

Raster map buffer: areas

+
    +
  • Map developed areas within walking distance of lakes +
  • Use map algebra to combine buffers with landcover +
+lake_buf_dev = if(landcl98 == 1 && lake_buff, lake_buff, 0) +

+ +

+ +
+

Raster map buffer: lines

+
    +
  • Identify developed areas that may be impacted by noise from a highway: +
  • +Create buffers along the highway, combine with landcover using map algebra +
+noise = if(landuse96_28m==1 || landuse96_28m==2, roads_buffers, null()) +

+ + +

why 0 and not null? +

+ +
+

Raster map buffer: lines

+Identify schools and compute number of children potentially impacted by noise +Convert schools to raster using the school capacity attribute and use map algebra +to extract schools close to the highway +schools_noise = if(int(schoolscap_10m) && roads_buffers == 2, int(schoolscap_10m), null()) +

+

Map of developed areas and schools impacted by highway noise +

+ +
+

Continuous proximity raster

+Proximity surface represents +shortest path (distance) from each cell to the target point +

+

Derive continuous buffer as a subset with distance less than given threshold +

+ +
+

Continuous proximity raster

+To measure the proximity (distance), traverse the region in: +standard 8 directions, Knight 16 directions +

+ +

+ +
+

Continuous proximity raster

+Proximity surface represents +shortest path (distance) from each cell to the target line feature +

+

+ +
+

Cost surfaces

+

+Cumulative (accumulated) cost surface measures proximity based on cost: +

    +
  • raster representation of cumulative cost +of reaching the target point(s) from any location in the given region. +
+ +

+Input cost map +

    +
  • value assigned to a cell represents cost of traversing that cell, +
  • cost can be based on time, energy, price, etc. +
+
+ + +
+

Cost map

+If cost is spatially variable, we need to define cost to traverse each grid cell, +usually expressed as time $t[s]$ derived, for example, from: +

+

    +
  • speed data for driving, +
  • velocity estimates for flows, +
  • slope, vegetation and obstacles for walking on trails +
+
+ +
+

Cost map example

+

+Example: cost map derived as time $t[s]$ needed to traverse a $d[m]$ resolution grid cell +

+$$ t = d / v $$ +

+where, $v$ [m/s] is speed, approximated e.g., by speed limit stored in roads/streets data layer. +

+Cost map is computed using arithmetic expression in map algebra. +

+r.mapcalc "streets_travtime = 0.018641/streets_speed" + +

+ +
+

Cost map

+
    +
  • Speed limit and cost raster maps +
  • Cost is time $t$ [s] to traverse a 30m cell, off-road cells are assigned 5 mi/hr. +
+

+ +

Cost can be defined per grid cell or per map unit, depending on implementation +

+ +
+

Cumulative cost surface

+Cumulative cost surface represents the time to reach the target point A from anywhere in the region. +

+ +

The higher the hill the more time it takes to reach A (red point), highways are valleys, +blue points are firestations +

+ +
+

Least cost path

+
    +
  • using the cumulative cost surface, find the least cost (fastest) path to the target point +
  • least cost path follows the oposite directions used for creating the cumulative +cost surface: back-links +
  • similar to steepest slope line used for flow routing with terrain replaced by cost surface +
+
+ +
+

Least cost path between two points

+

Least cost path from a given point to the target follows gradient direction - backlinks +

+ +

+
+ +
+

Least cost path: back-link raster

+

+

    +
  • direction of least cost path to the target from all grid cells = backlink map +
  • equivalent to surface gradient direction (aspect) map +
+

+ +

Aspect map derived from the cumulative cost cost surface +using r.slope.aspect, colored consistently with Arc backlink output. Backling map from Amy Nau + +

+ +
+

Least cost path applications

+Locate the firestation that can reach the accident site $A$ on the highway the fastest and identify the shortest path: + +
    +
  • use query to extract cumulative cost (travel time) to A from all firestations, add the time +to the attribute table +
  • identify the firestation $F_1$ with the lowest cost +
  • trace the least cost path from $F_1$ to $A$ +
+
+

+

Example from the assignment shows two LCP, note the issue with overpass

+
+ +
+

Cost surface for walking

+Empirical equation to estimate time $t[s]$ to traverse a grid cell walking in complex terrain: +

+$$ +t = a\Delta s + b \Delta h_u + c \Delta h_{md} + d \Delta h_{sd} + w.f +$$ + +

    +
  • $a,b,c,d$ [s/m]: weights, functions of inverse speed $1/v$ +
  • $\Delta s$ [m]: distance across a grid cell +
  • $\Delta h_u, \Delta h_{md}, \Delta h_{sd}$ [m] - elevation difference upslope, moderate downslope and steep downslope +
  • $w.f$ [s]: added time needed to traverse a cell due to friction, $f$ is a friction map, $w$ is weight +
  • walking upslope and steep downslope increase cost, moderate downslope decreases cost. +
  • default values for $a,b,c,d$ are empirical coefficients, based on man walking effort at standard conditions. +
+ +
+ +
+

Input data for estimating cost

+Walking cost combines inputs derived from elevation $\Delta h_u, \Delta h_{md}, \Delta h_{sd}$, +land cover is used for friction map $f$. +

+ +

low friction: developed areas, streets and roads; moderate friction: forest; +extreme friction (barrier): lakes +

+ +
+

Cumulative cost surface

+Cumulative cost surface and isochrones to support search for lost person +last seen at point A. +

+ +

Step of the isochrones s 0.5 hr

+
+ +
+

Cumulative cost surface from lines

+Cumulative cost distance from major roads based on travel time (cost) estimated +from speed limit. Target is lines represented by set of points. +

+ + +

Compare with buffers - areas within the cost distance less than a given threshold

+
+ +
+

Least cost path applications

+
    +
  • find firefighters escape routes +
  • design optimal trails +
  • extract foredune ridge from coastal DEM +
  • find safe access routes during natural disaters (earthquakes, floods) +
  • estimate time for watewater to get to treatment plant from any point in sewershed +
+
+ +
+

Cumulative cost surface for monitoring

+
    +
  • Estimate time wastewater travels from source to wastewater plant +
  • Time ito traverse a grid cell is computed using flow velocity estimated by Mannings equation as function of roughness, flow depth and slope +
  • Important for interpeting measured concentrations of SARS-CoV2 in wastewater to +monitor trends in COVID-19 +
+
+ +
+

Monitoring pathogens

+

Time to wastewater plant from any location connected to sewer network and a sub-sewersheds map +

+ + +

+ +
+

Summary

+
    +
  • measuring distance is scale dependendent, different metrics can be defined +
  • buffers are used to analyze variables or features in proximity of points, lines and areas +
  • cumulative cost surfaces measure proximity based on cost +
  • least cost path finds optimized route based on cumulative cost surface +
+
+ +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/css/print/paper.css b/lectures/css/print/paper.css new file mode 100644 index 00000000..6588f48e --- /dev/null +++ b/lectures/css/print/paper.css @@ -0,0 +1,202 @@ +/* Default Print Stylesheet Template + by Rob Glazebrook of CSSnewbie.com + Last Updated: June 4, 2008 + + Feel free (nay, compelled) to edit, append, and + manipulate this file as you see fit. */ + + +@media print { + + /* SECTION 1: Set default width, margin, float, and + background. This prevents elements from extending + beyond the edge of the printed page, and prevents + unnecessary background images from printing */ + html { + background: #fff; + width: auto; + height: auto; + overflow: visible; + } + body { + background: #fff; + font-size: 20pt; + width: auto; + height: auto; + border: 0; + margin: 0 5%; + padding: 0; + overflow: visible; + float: none !important; + } + + /* SECTION 2: Remove any elements not needed in print. + This would include navigation, ads, sidebars, etc. */ + .nestedarrow, + .controls, + .fork-reveal, + .share-reveal, + .state-background, + .reveal .progress, + .reveal .backgrounds { + display: none !important; + } + + /* SECTION 3: Set body font face, size, and color. + Consider using a serif font for readability. */ + body, p, td, li, div { + font-size: 20pt!important; + font-family: Georgia, "Times New Roman", Times, serif !important; + color: #000; + } + + /* SECTION 4: Set heading font face, sizes, and color. + Differentiate your headings from your body text. + Perhaps use a large sans-serif for distinction. */ + h1,h2,h3,h4,h5,h6 { + color: #000!important; + height: auto; + line-height: normal; + font-family: Georgia, "Times New Roman", Times, serif !important; + text-shadow: 0 0 0 #000 !important; + text-align: left; + letter-spacing: normal; + } + /* Need to reduce the size of the fonts for printing */ + h1 { font-size: 28pt !important; } + h2 { font-size: 24pt !important; } + h3 { font-size: 22pt !important; } + h4 { font-size: 22pt !important; font-variant: small-caps; } + h5 { font-size: 21pt !important; } + h6 { font-size: 20pt !important; font-style: italic; } + + /* SECTION 5: Make hyperlinks more usable. + Ensure links are underlined, and consider appending + the URL to the end of the link for usability. */ + a:link, + a:visited { + color: #000 !important; + font-weight: bold; + text-decoration: underline; + } + /* + .reveal a:link:after, + .reveal a:visited:after { + content: " (" attr(href) ") "; + color: #222 !important; + font-size: 90%; + } + */ + + + /* SECTION 6: more reveal.js specific additions by @skypanther */ + ul, ol, div, p { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: 0; + text-align: left !important; + } + .reveal pre, + .reveal table { + margin-left: 0; + margin-right: 0; + } + .reveal pre code { + padding: 20px; + border: 1px solid #ddd; + } + .reveal blockquote { + margin: 20px 0; + } + .reveal .slides { + position: static !important; + width: auto !important; + height: auto !important; + + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 0 !important; + zoom: 1 !important; + + overflow: visible !important; + display: block !important; + + text-align: left !important; + -webkit-perspective: none; + -moz-perspective: none; + -ms-perspective: none; + perspective: none; + + -webkit-perspective-origin: 50% 50%; + -moz-perspective-origin: 50% 50%; + -ms-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; + } + .reveal .slides section { + visibility: visible !important; + position: static !important; + width: auto !important; + height: auto !important; + display: block !important; + overflow: visible !important; + + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 60px 20px !important; + z-index: auto !important; + + opacity: 1 !important; + + page-break-after: always !important; + + -webkit-transform-style: flat !important; + -moz-transform-style: flat !important; + -ms-transform-style: flat !important; + transform-style: flat !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + + -webkit-transition: none !important; + -moz-transition: none !important; + -ms-transition: none !important; + transition: none !important; + } + .reveal .slides section.stack { + padding: 0 !important; + } + .reveal section:last-of-type { + page-break-after: avoid !important; + } + .reveal section .fragment { + opacity: 1 !important; + visibility: visible !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + } + .reveal section img { + display: block; + margin: 15px 0px; + background: rgba(255,255,255,1); + border: 1px solid #666; + box-shadow: none; + } + + .reveal section small { + font-size: 0.8em; + } + +} \ No newline at end of file diff --git a/lectures/css/print/pdf.css b/lectures/css/print/pdf.css new file mode 100644 index 00000000..9ed90d6a --- /dev/null +++ b/lectures/css/print/pdf.css @@ -0,0 +1,160 @@ +/** + * This stylesheet is used to print reveal.js + * presentations to PDF. + * + * https://github.com/hakimel/reveal.js#pdf-export + */ + +* { + -webkit-print-color-adjust: exact; +} + +body { + margin: 0 auto !important; + border: 0; + padding: 0; + float: none !important; + overflow: visible; +} + +html { + width: 100%; + height: 100%; + overflow: visible; +} + +/* Remove any elements not needed in print. */ +.nestedarrow, +.reveal .controls, +.reveal .progress, +.reveal .playback, +.reveal.overview, +.fork-reveal, +.share-reveal, +.state-background { + display: none !important; +} + +h1, h2, h3, h4, h5, h6 { + text-shadow: 0 0 0 #000 !important; +} + +.reveal pre code { + overflow: hidden !important; + font-family: Courier, 'Courier New', monospace !important; +} + +ul, ol, div, p { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: auto; +} +.reveal { + width: auto !important; + height: auto !important; + overflow: hidden !important; +} +.reveal .slides { + position: static; + width: 100%; + height: auto; + + left: auto; + top: auto; + margin: 0 !important; + padding: 0 !important; + + overflow: visible; + display: block; + + -webkit-perspective: none; + -moz-perspective: none; + -ms-perspective: none; + perspective: none; + + -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ + -moz-perspective-origin: 50% 50%; + -ms-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; +} + +.reveal .slides section { + page-break-after: always !important; + + visibility: visible !important; + position: relative !important; + display: block !important; + position: relative !important; + + margin: 0 !important; + padding: 0 !important; + box-sizing: border-box !important; + min-height: 1px; + + opacity: 1 !important; + + -webkit-transform-style: flat !important; + -moz-transform-style: flat !important; + -ms-transform-style: flat !important; + transform-style: flat !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; +} + +.reveal section.stack { + margin: 0 !important; + padding: 0 !important; + page-break-after: avoid !important; + height: auto !important; + min-height: auto !important; +} + +.reveal img { + box-shadow: none; +} + +.reveal .roll { + overflow: visible; + line-height: 1em; +} + +/* Slide backgrounds are placed inside of their slide when exporting to PDF */ +.reveal section .slide-background { + display: block !important; + position: absolute; + top: 0; + left: 0; + width: 100%; + z-index: -1; +} + +/* All elements should be above the slide-background */ +.reveal section>* { + position: relative; + z-index: 1; +} + +/* Display slide speaker notes when 'showNotes' is enabled */ +.reveal .speaker-notes-pdf { + display: block; + width: 100%; + max-height: none; + left: auto; + top: auto; + z-index: 100; +} + +/* Display slide numbers when 'slideNumber' is enabled */ +.reveal .slide-number-pdf { + display: block; + position: absolute; + font-size: 14px; +} + diff --git a/lectures/css/reveal.css b/lectures/css/reveal.css new file mode 100644 index 00000000..b2030745 --- /dev/null +++ b/lectures/css/reveal.css @@ -0,0 +1,1331 @@ +/*! + * reveal.js + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2016 Hakim El Hattab, http://hakim.se + */ +/********************************************* + * RESET STYLES + *********************************************/ +html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe, +.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre, +.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code, +.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp, +.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var, +.reveal b, .reveal u, .reveal center, +.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li, +.reveal fieldset, .reveal form, .reveal label, .reveal legend, +.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td, +.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed, +.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup, +.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary, +.reveal time, .reveal mark, .reveal audio, .reveal video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; } + +.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure, +.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section { + display: block; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +html, +body { + width: 100%; + height: 100%; + overflow: hidden; } + +body { + position: relative; + line-height: 1; + background-color: #fff; + color: #000; } + +html:-webkit-full-screen-ancestor { + background-color: inherit; } + +html:-moz-full-screen-ancestor { + background-color: inherit; } + +/********************************************* + * VIEW FRAGMENTS + *********************************************/ +.reveal .slides section .fragment { + opacity: 0; + visibility: hidden; + -webkit-transition: all .2s ease; + transition: all .2s ease; } + .reveal .slides section .fragment.visible { + opacity: 1; + visibility: visible; } + +.reveal .slides section .fragment.grow { + opacity: 1; + visibility: visible; } + .reveal .slides section .fragment.grow.visible { + -webkit-transform: scale(1.3); + transform: scale(1.3); } + +.reveal .slides section .fragment.shrink { + opacity: 1; + visibility: visible; } + .reveal .slides section .fragment.shrink.visible { + -webkit-transform: scale(0.7); + transform: scale(0.7); } + +.reveal .slides section .fragment.zoom-in { + -webkit-transform: scale(0.1); + transform: scale(0.1); } + .reveal .slides section .fragment.zoom-in.visible { + -webkit-transform: none; + transform: none; } + +.reveal .slides section .fragment.fade-out { + opacity: 1; + visibility: visible; } + .reveal .slides section .fragment.fade-out.visible { + opacity: 0; + visibility: hidden; } + +.reveal .slides section .fragment.semi-fade-out { + opacity: 1; + visibility: visible; } + .reveal .slides section .fragment.semi-fade-out.visible { + opacity: 0.5; + visibility: visible; } + +.reveal .slides section .fragment.strike { + opacity: 1; + visibility: visible; } + .reveal .slides section .fragment.strike.visible { + text-decoration: line-through; } + +.reveal .slides section .fragment.fade-up { + -webkit-transform: translate(0, 20%); + transform: translate(0, 20%); } + .reveal .slides section .fragment.fade-up.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-down { + -webkit-transform: translate(0, -20%); + transform: translate(0, -20%); } + .reveal .slides section .fragment.fade-down.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-right { + -webkit-transform: translate(-20%, 0); + transform: translate(-20%, 0); } + .reveal .slides section .fragment.fade-right.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-left { + -webkit-transform: translate(20%, 0); + transform: translate(20%, 0); } + .reveal .slides section .fragment.fade-left.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.current-visible { + opacity: 0; + visibility: hidden; } + .reveal .slides section .fragment.current-visible.current-fragment { + opacity: 1; + visibility: visible; } + +.reveal .slides section .fragment.highlight-red, +.reveal .slides section .fragment.highlight-current-red, +.reveal .slides section .fragment.highlight-green, +.reveal .slides section .fragment.highlight-current-green, +.reveal .slides section .fragment.highlight-blue, +.reveal .slides section .fragment.highlight-current-blue { + opacity: 1; + visibility: visible; } + +.reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d; } + +.reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; } + +.reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; } + +.reveal .slides section .fragment.highlight-current-red.current-fragment { + color: #ff2c2d; } + +.reveal .slides section .fragment.highlight-current-green.current-fragment { + color: #17ff2e; } + +.reveal .slides section .fragment.highlight-current-blue.current-fragment { + color: #1b91ff; } + +/********************************************* + * DEFAULT ELEMENT STYLES + *********************************************/ +/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */ +.reveal:after { + content: ''; + font-style: italic; } + +.reveal iframe { + z-index: 1; } + +/** Prevents layering issues in certain browser/transition combinations */ +.reveal a { + position: relative; } + +.reveal .stretch { + max-width: none; + max-height: none; } + +.reveal pre.stretch code { + height: 100%; + max-height: 100%; + box-sizing: border-box; } + +/********************************************* + * CONTROLS + *********************************************/ +.reveal .controls { + display: none; + position: fixed; + width: 110px; + height: 110px; + z-index: 30; + right: 10px; + bottom: 10px; + -webkit-user-select: none; } + +.reveal .controls button { + padding: 0; + position: absolute; + opacity: 0.05; + width: 0; + height: 0; + background-color: transparent; + border: 12px solid transparent; + -webkit-transform: scale(0.9999); + transform: scale(0.9999); + -webkit-transition: all 0.2s ease; + transition: all 0.2s ease; + -webkit-appearance: none; + -webkit-tap-highlight-color: transparent; } + +.reveal .controls .enabled { + opacity: 0.7; + cursor: pointer; } + +.reveal .controls .enabled:active { + margin-top: 1px; } + +.reveal .controls .navigate-left { + top: 42px; + border-right-width: 22px; + border-right-color: #000; } + +.reveal .controls .navigate-left.fragmented { + opacity: 0.3; } + +.reveal .controls .navigate-right { + left: 74px; + top: 42px; + border-left-width: 22px; + border-left-color: #000; } + +.reveal .controls .navigate-right.fragmented { + opacity: 0.3; } + +.reveal .controls .navigate-up { + left: 42px; + border-bottom-width: 22px; + border-bottom-color: #000; } + +.reveal .controls .navigate-up.fragmented { + opacity: 0.3; } + +.reveal .controls .navigate-down { + left: 42px; + top: 74px; + border-top-width: 22px; + border-top-color: #000; } + +.reveal .controls .navigate-down.fragmented { + opacity: 0.3; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + position: fixed; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; + background-color: rgba(0, 0, 0, 0.2); } + +.reveal .progress:after { + content: ''; + display: block; + position: absolute; + height: 20px; + width: 100%; + top: -20px; } + +.reveal .progress span { + display: block; + height: 100%; + width: 0px; + background-color: #000; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * SLIDE NUMBER + *********************************************/ +.reveal .slide-number { + position: fixed; + display: block; + right: 8px; + bottom: 8px; + z-index: 31; + font-family: Helvetica, sans-serif; + font-size: 12px; + line-height: 1; + color: #fff; + background-color: rgba(0, 0, 0, 0.4); + padding: 5px; } + +.reveal .slide-number-delimiter { + margin: 0 3px; } + +/********************************************* + * SLIDES + *********************************************/ +.reveal { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + -ms-touch-action: none; + touch-action: none; } + +.reveal .slides { + position: absolute; + width: 100%; + height: 100%; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + overflow: visible; + z-index: 1; + text-align: center; + -webkit-perspective: 600px; + perspective: 600px; + -webkit-perspective-origin: 50% 40%; + perspective-origin: 50% 40%; } + +.reveal .slides > section { + -ms-perspective: 600px; } + +.reveal .slides > section, +.reveal .slides > section > section { + display: none; + position: absolute; + width: 100%; + padding: 20px 0px; + z-index: 10; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] .slides section { + -webkit-transition-duration: 400ms; + transition-duration: 400ms; } + +.reveal[data-transition-speed="slow"] .slides section { + -webkit-transition-duration: 1200ms; + transition-duration: 1200ms; } + +/* Slide-specific transition speed overrides */ +.reveal .slides section[data-transition-speed="fast"] { + -webkit-transition-duration: 400ms; + transition-duration: 400ms; } + +.reveal .slides section[data-transition-speed="slow"] { + -webkit-transition-duration: 1200ms; + transition-duration: 1200ms; } + +.reveal .slides > section.stack { + padding-top: 0; + padding-bottom: 0; } + +.reveal .slides > section.present, +.reveal .slides > section > section.present { + display: block; + z-index: 11; + opacity: 1; } + +.reveal.center, +.reveal.center .slides, +.reveal.center .slides section { + min-height: 0 !important; } + +/* Don't allow interaction with invisible slides */ +.reveal .slides > section.future, +.reveal .slides > section > section.future, +.reveal .slides > section.past, +.reveal .slides > section > section.past { + pointer-events: none; } + +.reveal.overview .slides > section, +.reveal.overview .slides > section > section { + pointer-events: auto; } + +.reveal .slides > section.past, +.reveal .slides > section.future, +.reveal .slides > section > section.past, +.reveal .slides > section > section.future { + opacity: 0; } + +/********************************************* + * Mixins for readability of transitions + *********************************************/ +/********************************************* + * SLIDE TRANSITION + * Aliased 'linear' for backwards compatibility + *********************************************/ +.reveal.slide section { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .slides > section[data-transition=slide].past, +.reveal .slides > section[data-transition~=slide-out].past, +.reveal.slide .slides > section:not([data-transition]).past { + -webkit-transform: translate(-150%, 0); + transform: translate(-150%, 0); } + +.reveal .slides > section[data-transition=slide].future, +.reveal .slides > section[data-transition~=slide-in].future, +.reveal.slide .slides > section:not([data-transition]).future { + -webkit-transform: translate(150%, 0); + transform: translate(150%, 0); } + +.reveal .slides > section > section[data-transition=slide].past, +.reveal .slides > section > section[data-transition~=slide-out].past, +.reveal.slide .slides > section > section:not([data-transition]).past { + -webkit-transform: translate(0, -150%); + transform: translate(0, -150%); } + +.reveal .slides > section > section[data-transition=slide].future, +.reveal .slides > section > section[data-transition~=slide-in].future, +.reveal.slide .slides > section > section:not([data-transition]).future { + -webkit-transform: translate(0, 150%); + transform: translate(0, 150%); } + +.reveal.linear section { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .slides > section[data-transition=linear].past, +.reveal .slides > section[data-transition~=linear-out].past, +.reveal.linear .slides > section:not([data-transition]).past { + -webkit-transform: translate(-150%, 0); + transform: translate(-150%, 0); } + +.reveal .slides > section[data-transition=linear].future, +.reveal .slides > section[data-transition~=linear-in].future, +.reveal.linear .slides > section:not([data-transition]).future { + -webkit-transform: translate(150%, 0); + transform: translate(150%, 0); } + +.reveal .slides > section > section[data-transition=linear].past, +.reveal .slides > section > section[data-transition~=linear-out].past, +.reveal.linear .slides > section > section:not([data-transition]).past { + -webkit-transform: translate(0, -150%); + transform: translate(0, -150%); } + +.reveal .slides > section > section[data-transition=linear].future, +.reveal .slides > section > section[data-transition~=linear-in].future, +.reveal.linear .slides > section > section:not([data-transition]).future { + -webkit-transform: translate(0, 150%); + transform: translate(0, 150%); } + +/********************************************* + * CONVEX TRANSITION + * Aliased 'default' for backwards compatibility + *********************************************/ +.reveal .slides > section[data-transition=default].past, +.reveal .slides > section[data-transition~=default-out].past, +.reveal.default .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=default].future, +.reveal .slides > section[data-transition~=default-in].future, +.reveal.default .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=default].past, +.reveal .slides > section > section[data-transition~=default-out].past, +.reveal.default .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); } + +.reveal .slides > section > section[data-transition=default].future, +.reveal .slides > section > section[data-transition~=default-in].future, +.reveal.default .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); } + +.reveal .slides > section[data-transition=convex].past, +.reveal .slides > section[data-transition~=convex-out].past, +.reveal.convex .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=convex].future, +.reveal .slides > section[data-transition~=convex-in].future, +.reveal.convex .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=convex].past, +.reveal .slides > section > section[data-transition~=convex-out].past, +.reveal.convex .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); } + +.reveal .slides > section > section[data-transition=convex].future, +.reveal .slides > section > section[data-transition~=convex-in].future, +.reveal.convex .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); } + +/********************************************* + * CONCAVE TRANSITION + *********************************************/ +.reveal .slides > section[data-transition=concave].past, +.reveal .slides > section[data-transition~=concave-out].past, +.reveal.concave .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=concave].future, +.reveal .slides > section[data-transition~=concave-in].future, +.reveal.concave .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=concave].past, +.reveal .slides > section > section[data-transition~=concave-out].past, +.reveal.concave .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); } + +.reveal .slides > section > section[data-transition=concave].future, +.reveal .slides > section > section[data-transition~=concave-in].future, +.reveal.concave .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); } + +/********************************************* + * ZOOM TRANSITION + *********************************************/ +.reveal .slides section[data-transition=zoom], +.reveal.zoom .slides section:not([data-transition]) { + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } + +.reveal .slides > section[data-transition=zoom].past, +.reveal .slides > section[data-transition~=zoom-out].past, +.reveal.zoom .slides > section:not([data-transition]).past { + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal .slides > section[data-transition=zoom].future, +.reveal .slides > section[data-transition~=zoom-in].future, +.reveal.zoom .slides > section:not([data-transition]).future { + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal .slides > section > section[data-transition=zoom].past, +.reveal .slides > section > section[data-transition~=zoom-out].past, +.reveal.zoom .slides > section > section:not([data-transition]).past { + -webkit-transform: translate(0, -150%); + transform: translate(0, -150%); } + +.reveal .slides > section > section[data-transition=zoom].future, +.reveal .slides > section > section[data-transition~=zoom-in].future, +.reveal.zoom .slides > section > section:not([data-transition]).future { + -webkit-transform: translate(0, 150%); + transform: translate(0, 150%); } + +/********************************************* + * CUBE TRANSITION + *********************************************/ +.reveal.cube .slides { + -webkit-perspective: 1300px; + perspective: 1300px; } + +.reveal.cube .slides section { + padding: 30px; + min-height: 700px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + box-sizing: border-box; } + +.reveal.center.cube .slides section { + min-height: 0; } + +.reveal.cube .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + border-radius: 4px; + -webkit-transform: translateZ(-20px); + transform: translateZ(-20px); } + +.reveal.cube .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2); + -webkit-transform: translateZ(-90px) rotateX(65deg); + transform: translateZ(-90px) rotateX(65deg); } + +.reveal.cube .slides > section.stack { + padding: 0; + background: none; } + +.reveal.cube .slides > section.past { + -webkit-transform-origin: 100% 0%; + transform-origin: 100% 0%; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg); + transform: translate3d(-100%, 0, 0) rotateY(-90deg); } + +.reveal.cube .slides > section.future { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg); + transform: translate3d(100%, 0, 0) rotateY(90deg); } + +.reveal.cube .slides > section > section.past { + -webkit-transform-origin: 0% 100%; + transform-origin: 0% 100%; + -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg); + transform: translate3d(0, -100%, 0) rotateX(90deg); } + +.reveal.cube .slides > section > section.future { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg); + transform: translate3d(0, 100%, 0) rotateX(-90deg); } + +/********************************************* + * PAGE TRANSITION + *********************************************/ +.reveal.page .slides { + -webkit-perspective-origin: 0% 50%; + perspective-origin: 0% 50%; + -webkit-perspective: 3000px; + perspective: 3000px; } + +.reveal.page .slides section { + padding: 30px; + min-height: 700px; + box-sizing: border-box; } + +.reveal.page .slides section.past { + z-index: 12; } + +.reveal.page .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + -webkit-transform: translateZ(-20px); + transform: translateZ(-20px); } + +.reveal.page .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2); + -webkit-transform: translateZ(-90px) rotateX(65deg); } + +.reveal.page .slides > section.stack { + padding: 0; + background: none; } + +.reveal.page .slides > section.past { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg); + transform: translate3d(-40%, 0, 0) rotateY(-80deg); } + +.reveal.page .slides > section.future { + -webkit-transform-origin: 100% 0%; + transform-origin: 100% 0%; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +.reveal.page .slides > section > section.past { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg); + transform: translate3d(0, -40%, 0) rotateX(80deg); } + +.reveal.page .slides > section > section.future { + -webkit-transform-origin: 0% 100%; + transform-origin: 0% 100%; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +/********************************************* + * FADE TRANSITION + *********************************************/ +.reveal .slides section[data-transition=fade], +.reveal.fade .slides section:not([data-transition]), +.reveal.fade .slides > section > section:not([data-transition]) { + -webkit-transform: none; + transform: none; + -webkit-transition: opacity 0.5s; + transition: opacity 0.5s; } + +.reveal.fade.overview .slides section, +.reveal.fade.overview .slides > section > section { + -webkit-transition: none; + transition: none; } + +/********************************************* + * NO TRANSITION + *********************************************/ +.reveal .slides section[data-transition=none], +.reveal.none .slides section:not([data-transition]) { + -webkit-transform: none; + transform: none; + -webkit-transition: none; + transition: none; } + +/********************************************* + * PAUSED MODE + *********************************************/ +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: black; + visibility: hidden; + opacity: 0; + z-index: 100; + -webkit-transition: all 1s ease; + transition: all 1s ease; } + +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; } + +/********************************************* + * FALLBACK + *********************************************/ +.no-transforms { + overflow-y: auto; } + +.no-transforms .reveal .slides { + position: relative; + width: 80%; + height: auto !important; + top: 0; + left: 50%; + margin: 0; + text-align: center; } + +.no-transforms .reveal .controls, +.no-transforms .reveal .progress { + display: none !important; } + +.no-transforms .reveal .slides section { + display: block !important; + opacity: 1 !important; + position: relative !important; + height: auto; + min-height: 0; + top: 0; + left: -50%; + margin: 70px 0; + -webkit-transform: none; + transform: none; } + +.no-transforms .reveal .slides section section { + left: 0; } + +.reveal .no-transition, +.reveal .no-transition * { + -webkit-transition: none !important; + transition: none !important; } + +/********************************************* + * PER-SLIDE BACKGROUNDS + *********************************************/ +.reveal .backgrounds { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + -webkit-perspective: 600px; + perspective: 600px; } + +.reveal .slide-background { + display: none; + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + visibility: hidden; + background-color: transparent; + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; + -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +.reveal .slide-background.stack { + display: block; } + +.reveal .slide-background.present { + opacity: 1; + visibility: visible; } + +.print-pdf .reveal .slide-background { + opacity: 1 !important; + visibility: visible !important; } + +/* Video backgrounds */ +.reveal .slide-background video { + position: absolute; + width: 100%; + height: 100%; + max-width: none; + max-height: none; + top: 0; + left: 0; } + +/* Immediate transition style */ +.reveal[data-background-transition=none] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=none] { + -webkit-transition: none; + transition: none; } + +/* Slide */ +.reveal[data-background-transition=slide] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=slide] { + opacity: 1; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=slide] { + -webkit-transform: translate(-100%, 0); + transform: translate(-100%, 0); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=slide] { + -webkit-transform: translate(100%, 0); + transform: translate(100%, 0); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] { + -webkit-transform: translate(0, -100%); + transform: translate(0, -100%); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] { + -webkit-transform: translate(0, 100%); + transform: translate(0, 100%); } + +/* Convex */ +.reveal[data-background-transition=convex] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); } + +/* Concave */ +.reveal[data-background-transition=concave] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); } + +/* Zoom */ +.reveal[data-background-transition=zoom] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=zoom] { + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] > .backgrounds .slide-background { + -webkit-transition-duration: 400ms; + transition-duration: 400ms; } + +.reveal[data-transition-speed="slow"] > .backgrounds .slide-background { + -webkit-transition-duration: 1200ms; + transition-duration: 1200ms; } + +/********************************************* + * OVERVIEW + *********************************************/ +.reveal.overview { + -webkit-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; + -webkit-perspective: 700px; + perspective: 700px; } + .reveal.overview .slides section { + height: 100%; + top: 0 !important; + opacity: 1 !important; + overflow: hidden; + visibility: visible !important; + cursor: pointer; + box-sizing: border-box; } + .reveal.overview .slides section:hover, + .reveal.overview .slides section.present { + outline: 10px solid rgba(150, 150, 150, 0.4); + outline-offset: 10px; } + .reveal.overview .slides section .fragment { + opacity: 1; + -webkit-transition: none; + transition: none; } + .reveal.overview .slides section:after, + .reveal.overview .slides section:before { + display: none !important; } + .reveal.overview .slides > section.stack { + padding: 0; + top: 0 !important; + background: none; + outline: none; + overflow: visible; } + .reveal.overview .backgrounds { + -webkit-perspective: inherit; + perspective: inherit; } + .reveal.overview .backgrounds .slide-background { + opacity: 1; + visibility: visible; + outline: 10px solid rgba(150, 150, 150, 0.1); + outline-offset: 10px; } + +.reveal.overview .slides section, +.reveal.overview-deactivating .slides section { + -webkit-transition: none; + transition: none; } + +.reveal.overview .backgrounds .slide-background, +.reveal.overview-deactivating .backgrounds .slide-background { + -webkit-transition: none; + transition: none; } + +.reveal.overview-animated .slides { + -webkit-transition: -webkit-transform 0.4s ease; + transition: transform 0.4s ease; } + +/********************************************* + * RTL SUPPORT + *********************************************/ +.reveal.rtl .slides, +.reveal.rtl .slides h1, +.reveal.rtl .slides h2, +.reveal.rtl .slides h3, +.reveal.rtl .slides h4, +.reveal.rtl .slides h5, +.reveal.rtl .slides h6 { + direction: rtl; + font-family: sans-serif; } + +.reveal.rtl pre, +.reveal.rtl code { + direction: ltr; } + +.reveal.rtl ol, +.reveal.rtl ul { + text-align: right; } + +.reveal.rtl .progress span { + float: right; } + +/********************************************* + * PARALLAX BACKGROUND + *********************************************/ +.reveal.has-parallax-background .backgrounds { + -webkit-transition: all 0.8s ease; + transition: all 0.8s ease; } + +/* Global transition speed settings */ +.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds { + -webkit-transition-duration: 400ms; + transition-duration: 400ms; } + +.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds { + -webkit-transition-duration: 1200ms; + transition-duration: 1200ms; } + +/********************************************* + * LINK PREVIEW OVERLAY + *********************************************/ +.reveal .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + background: rgba(0, 0, 0, 0.9); + opacity: 0; + visibility: hidden; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; } + +.reveal .overlay.visible { + opacity: 1; + visibility: visible; } + +.reveal .overlay .spinner { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + z-index: 10; + background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D); + visibility: visible; + opacity: 0.6; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; } + +.reveal .overlay header { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 40px; + z-index: 2; + border-bottom: 1px solid #222; } + +.reveal .overlay header a { + display: inline-block; + width: 40px; + height: 40px; + padding: 0 10px; + float: right; + opacity: 0.6; + box-sizing: border-box; } + +.reveal .overlay header a:hover { + opacity: 1; } + +.reveal .overlay header a .icon { + display: inline-block; + width: 20px; + height: 20px; + background-position: 50% 50%; + background-size: 100%; + background-repeat: no-repeat; } + +.reveal .overlay header a.close .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); } + +.reveal .overlay header a.external .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); } + +.reveal .overlay .viewport { + position: absolute; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + top: 40px; + right: 0; + bottom: 0; + left: 0; } + +.reveal .overlay.overlay-preview .viewport iframe { + width: 100%; + height: 100%; + max-width: 100%; + max-height: 100%; + border: 0; + opacity: 0; + visibility: hidden; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; } + +.reveal .overlay.overlay-preview.loaded .viewport iframe { + opacity: 1; + visibility: visible; } + +.reveal .overlay.overlay-preview.loaded .spinner { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal .overlay.overlay-help .viewport { + overflow: auto; + color: #fff; } + +.reveal .overlay.overlay-help .viewport .viewport-inner { + width: 600px; + margin: auto; + padding: 20px 20px 80px 20px; + text-align: center; + letter-spacing: normal; } + +.reveal .overlay.overlay-help .viewport .viewport-inner .title { + font-size: 20px; } + +.reveal .overlay.overlay-help .viewport .viewport-inner table { + border: 1px solid #fff; + border-collapse: collapse; + font-size: 16px; } + +.reveal .overlay.overlay-help .viewport .viewport-inner table th, +.reveal .overlay.overlay-help .viewport .viewport-inner table td { + width: 200px; + padding: 14px; + border: 1px solid #fff; + vertical-align: middle; } + +.reveal .overlay.overlay-help .viewport .viewport-inner table th { + padding-top: 20px; + padding-bottom: 20px; } + +/********************************************* + * PLAYBACK COMPONENT + *********************************************/ +.reveal .playback { + position: fixed; + left: 15px; + bottom: 20px; + z-index: 30; + cursor: pointer; + -webkit-transition: all 400ms ease; + transition: all 400ms ease; } + +.reveal.overview .playback { + opacity: 0; + visibility: hidden; } + +/********************************************* + * ROLLING LINKS + *********************************************/ +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + vertical-align: top; + -webkit-perspective: 400px; + perspective: 400px; + -webkit-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; } + +.reveal .roll:hover { + background: none; + text-shadow: none; } + +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + pointer-events: none; + -webkit-transition: all 400ms ease; + transition: all 400ms ease; + -webkit-transform-origin: 50% 0%; + transform-origin: 50% 0%; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .roll:hover span { + background: rgba(0, 0, 0, 0.5); + -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg); + transform: translate3d(0px, 0px, -45px) rotateX(90deg); } + +.reveal .roll span:after { + content: attr(data-title); + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform-origin: 50% 0%; + transform-origin: 50% 0%; + -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg); + transform: translate3d(0px, 110%, 0px) rotateX(-90deg); } + +/********************************************* + * SPEAKER NOTES + *********************************************/ +.reveal aside.notes { + display: none; } + +.reveal .speaker-notes { + display: none; + position: absolute; + width: 70%; + max-height: 15%; + left: 15%; + bottom: 26px; + padding: 10px; + z-index: 1; + font-size: 18px; + line-height: 1.4; + color: #fff; + background-color: rgba(0, 0, 0, 0.5); + overflow: auto; + box-sizing: border-box; + text-align: left; + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; } + +.reveal .speaker-notes.visible:not(:empty) { + display: block; } + +@media screen and (max-width: 1024px) { + .reveal .speaker-notes { + font-size: 14px; } } + +@media screen and (max-width: 600px) { + .reveal .speaker-notes { + width: 90%; + left: 5%; } } + +/********************************************* + * ZOOM PLUGIN + *********************************************/ +.zoomed .reveal *, +.zoomed .reveal *:before, +.zoomed .reveal *:after { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; } + +.zoomed .reveal .progress, +.zoomed .reveal .controls { + opacity: 0; } + +.zoomed .reveal .roll span { + background: none; } + +.zoomed .reveal .roll span:after { + visibility: hidden; } diff --git a/lectures/css/reveal.scss b/lectures/css/reveal.scss new file mode 100644 index 00000000..f8d6904b --- /dev/null +++ b/lectures/css/reveal.scss @@ -0,0 +1,1411 @@ +/*! + * reveal.js + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2016 Hakim El Hattab, http://hakim.se + */ + + +/********************************************* + * RESET STYLES + *********************************************/ + +html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe, +.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre, +.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code, +.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp, +.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var, +.reveal b, .reveal u, .reveal center, +.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li, +.reveal fieldset, .reveal form, .reveal label, .reveal legend, +.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td, +.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed, +.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup, +.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary, +.reveal time, .reveal mark, .reveal audio, .reveal video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure, +.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section { + display: block; +} + + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +html, +body { + width: 100%; + height: 100%; + overflow: hidden; +} + +body { + position: relative; + line-height: 1; + + background-color: #fff; + color: #000; +} + +// Ensures that the main background color matches the +// theme in fullscreen mode +html:-webkit-full-screen-ancestor { + background-color: inherit; +} +html:-moz-full-screen-ancestor { + background-color: inherit; +} + + +/********************************************* + * VIEW FRAGMENTS + *********************************************/ + +.reveal .slides section .fragment { + opacity: 0; + visibility: hidden; + transition: all .2s ease; + + &.visible { + opacity: 1; + visibility: visible; + } +} + +.reveal .slides section .fragment.grow { + opacity: 1; + visibility: visible; + + &.visible { + transform: scale( 1.3 ); + } +} + +.reveal .slides section .fragment.shrink { + opacity: 1; + visibility: visible; + + &.visible { + transform: scale( 0.7 ); + } +} + +.reveal .slides section .fragment.zoom-in { + transform: scale( 0.1 ); + + &.visible { + transform: none; + } +} + +.reveal .slides section .fragment.fade-out { + opacity: 1; + visibility: visible; + + &.visible { + opacity: 0; + visibility: hidden; + } +} + +.reveal .slides section .fragment.semi-fade-out { + opacity: 1; + visibility: visible; + + &.visible { + opacity: 0.5; + visibility: visible; + } +} + +.reveal .slides section .fragment.strike { + opacity: 1; + visibility: visible; + + &.visible { + text-decoration: line-through; + } +} + +.reveal .slides section .fragment.fade-up { + transform: translate(0, 20%); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-down { + transform: translate(0, -20%); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-right { + transform: translate(-20%, 0); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-left { + transform: translate(20%, 0); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.current-visible { + opacity: 0; + visibility: hidden; + + &.current-fragment { + opacity: 1; + visibility: visible; + } +} + +.reveal .slides section .fragment.highlight-red, +.reveal .slides section .fragment.highlight-current-red, +.reveal .slides section .fragment.highlight-green, +.reveal .slides section .fragment.highlight-current-green, +.reveal .slides section .fragment.highlight-blue, +.reveal .slides section .fragment.highlight-current-blue { + opacity: 1; + visibility: visible; +} + .reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d + } + .reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; + } + .reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; + } + +.reveal .slides section .fragment.highlight-current-red.current-fragment { + color: #ff2c2d +} +.reveal .slides section .fragment.highlight-current-green.current-fragment { + color: #17ff2e; +} +.reveal .slides section .fragment.highlight-current-blue.current-fragment { + color: #1b91ff; +} + + +/********************************************* + * DEFAULT ELEMENT STYLES + *********************************************/ + +/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */ +.reveal:after { + content: ''; + font-style: italic; +} + +.reveal iframe { + z-index: 1; +} + +/** Prevents layering issues in certain browser/transition combinations */ +.reveal a { + position: relative; +} + +.reveal .stretch { + max-width: none; + max-height: none; +} + +.reveal pre.stretch code { + height: 100%; + max-height: 100%; + box-sizing: border-box; +} + + +/********************************************* + * CONTROLS + *********************************************/ + +.reveal .controls { + display: none; + position: fixed; + width: 110px; + height: 110px; + z-index: 30; + right: 10px; + bottom: 10px; + + -webkit-user-select: none; +} + +.reveal .controls button { + padding: 0; + position: absolute; + opacity: 0.05; + width: 0; + height: 0; + background-color: transparent; + border: 12px solid transparent; + transform: scale(.9999); + transition: all 0.2s ease; + -webkit-appearance: none; + -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); +} + +.reveal .controls .enabled { + opacity: 0.7; + cursor: pointer; +} + +.reveal .controls .enabled:active { + margin-top: 1px; +} + + .reveal .controls .navigate-left { + top: 42px; + + border-right-width: 22px; + border-right-color: #000; + } + .reveal .controls .navigate-left.fragmented { + opacity: 0.3; + } + + .reveal .controls .navigate-right { + left: 74px; + top: 42px; + + border-left-width: 22px; + border-left-color: #000; + } + .reveal .controls .navigate-right.fragmented { + opacity: 0.3; + } + + .reveal .controls .navigate-up { + left: 42px; + + border-bottom-width: 22px; + border-bottom-color: #000; + } + .reveal .controls .navigate-up.fragmented { + opacity: 0.3; + } + + .reveal .controls .navigate-down { + left: 42px; + top: 74px; + + border-top-width: 22px; + border-top-color: #000; + } + .reveal .controls .navigate-down.fragmented { + opacity: 0.3; + } + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + position: fixed; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; + + background-color: rgba( 0, 0, 0, 0.2 ); +} + .reveal .progress:after { + content: ''; + display: block; + position: absolute; + height: 20px; + width: 100%; + top: -20px; + } + .reveal .progress span { + display: block; + height: 100%; + width: 0px; + + background-color: #000; + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + +/********************************************* + * SLIDE NUMBER + *********************************************/ + +.reveal .slide-number { + position: fixed; + display: block; + right: 8px; + bottom: 8px; + z-index: 31; + font-family: Helvetica, sans-serif; + font-size: 12px; + line-height: 1; + color: #fff; + background-color: rgba( 0, 0, 0, 0.4 ); + padding: 5px; +} + +.reveal .slide-number-delimiter { + margin: 0 3px; +} + +/********************************************* + * SLIDES + *********************************************/ + +.reveal { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + touch-action: none; +} + +.reveal .slides { + position: absolute; + width: 100%; + height: 100%; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + + overflow: visible; + z-index: 1; + text-align: center; + perspective: 600px; + perspective-origin: 50% 40%; +} + +.reveal .slides>section { + -ms-perspective: 600px; +} + +.reveal .slides>section, +.reveal .slides>section>section { + display: none; + position: absolute; + width: 100%; + padding: 20px 0px; + + z-index: 10; + transform-style: preserve-3d; + transition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); +} + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] .slides section { + transition-duration: 400ms; +} +.reveal[data-transition-speed="slow"] .slides section { + transition-duration: 1200ms; +} + +/* Slide-specific transition speed overrides */ +.reveal .slides section[data-transition-speed="fast"] { + transition-duration: 400ms; +} +.reveal .slides section[data-transition-speed="slow"] { + transition-duration: 1200ms; +} + +.reveal .slides>section.stack { + padding-top: 0; + padding-bottom: 0; +} + +.reveal .slides>section.present, +.reveal .slides>section>section.present { + display: block; + z-index: 11; + opacity: 1; +} + +.reveal.center, +.reveal.center .slides, +.reveal.center .slides section { + min-height: 0 !important; +} + +/* Don't allow interaction with invisible slides */ +.reveal .slides>section.future, +.reveal .slides>section>section.future, +.reveal .slides>section.past, +.reveal .slides>section>section.past { + pointer-events: none; +} + +.reveal.overview .slides>section, +.reveal.overview .slides>section>section { + pointer-events: auto; +} + +.reveal .slides>section.past, +.reveal .slides>section.future, +.reveal .slides>section>section.past, +.reveal .slides>section>section.future { + opacity: 0; +} + + +/********************************************* + * Mixins for readability of transitions + *********************************************/ + +@mixin transition-global($style) { + .reveal .slides section[data-transition=#{$style}], + .reveal.#{$style} .slides section:not([data-transition]) { + @content; + } +} +@mixin transition-horizontal-past($style) { + .reveal .slides>section[data-transition=#{$style}].past, + .reveal .slides>section[data-transition~=#{$style}-out].past, + .reveal.#{$style} .slides>section:not([data-transition]).past { + @content; + } +} +@mixin transition-horizontal-future($style) { + .reveal .slides>section[data-transition=#{$style}].future, + .reveal .slides>section[data-transition~=#{$style}-in].future, + .reveal.#{$style} .slides>section:not([data-transition]).future { + @content; + } +} + +@mixin transition-vertical-past($style) { + .reveal .slides>section>section[data-transition=#{$style}].past, + .reveal .slides>section>section[data-transition~=#{$style}-out].past, + .reveal.#{$style} .slides>section>section:not([data-transition]).past { + @content; + } +} +@mixin transition-vertical-future($style) { + .reveal .slides>section>section[data-transition=#{$style}].future, + .reveal .slides>section>section[data-transition~=#{$style}-in].future, + .reveal.#{$style} .slides>section>section:not([data-transition]).future { + @content; + } +} + +/********************************************* + * SLIDE TRANSITION + * Aliased 'linear' for backwards compatibility + *********************************************/ + +@each $stylename in slide, linear { + .reveal.#{$stylename} section { + backface-visibility: hidden; + } + @include transition-horizontal-past(#{$stylename}) { + transform: translate(-150%, 0); + } + @include transition-horizontal-future(#{$stylename}) { + transform: translate(150%, 0); + } + @include transition-vertical-past(#{$stylename}) { + transform: translate(0, -150%); + } + @include transition-vertical-future(#{$stylename}) { + transform: translate(0, 150%); + } +} + +/********************************************* + * CONVEX TRANSITION + * Aliased 'default' for backwards compatibility + *********************************************/ + +@each $stylename in default, convex { + @include transition-horizontal-past(#{$stylename}) { + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + } + @include transition-horizontal-future(#{$stylename}) { + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + } + @include transition-vertical-past(#{$stylename}) { + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + } + @include transition-vertical-future(#{$stylename}) { + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + } +} + +/********************************************* + * CONCAVE TRANSITION + *********************************************/ + +@include transition-horizontal-past(concave) { + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} +@include transition-horizontal-future(concave) { + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} +@include transition-vertical-past(concave) { + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); +} +@include transition-vertical-future(concave) { + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); +} + + +/********************************************* + * ZOOM TRANSITION + *********************************************/ + +@include transition-global(zoom) { + transition-timing-function: ease; +} +@include transition-horizontal-past(zoom) { + visibility: hidden; + transform: scale(16); +} +@include transition-horizontal-future(zoom) { + visibility: hidden; + transform: scale(0.2); +} +@include transition-vertical-past(zoom) { + transform: translate(0, -150%); +} +@include transition-vertical-future(zoom) { + transform: translate(0, 150%); +} + + +/********************************************* + * CUBE TRANSITION + *********************************************/ + +.reveal.cube .slides { + perspective: 1300px; +} + +.reveal.cube .slides section { + padding: 30px; + min-height: 700px; + backface-visibility: hidden; + box-sizing: border-box; +} + .reveal.center.cube .slides section { + min-height: 0; + } + .reveal.cube .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + border-radius: 4px; + transform: translateZ( -20px ); + } + .reveal.cube .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.cube .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.cube .slides>section.past { + transform-origin: 100% 0%; + transform: translate3d(-100%, 0, 0) rotateY(-90deg); +} + +.reveal.cube .slides>section.future { + transform-origin: 0% 0%; + transform: translate3d(100%, 0, 0) rotateY(90deg); +} + +.reveal.cube .slides>section>section.past { + transform-origin: 0% 100%; + transform: translate3d(0, -100%, 0) rotateX(90deg); +} + +.reveal.cube .slides>section>section.future { + transform-origin: 0% 0%; + transform: translate3d(0, 100%, 0) rotateX(-90deg); +} + + +/********************************************* + * PAGE TRANSITION + *********************************************/ + +.reveal.page .slides { + perspective-origin: 0% 50%; + perspective: 3000px; +} + +.reveal.page .slides section { + padding: 30px; + min-height: 700px; + box-sizing: border-box; +} + .reveal.page .slides section.past { + z-index: 12; + } + .reveal.page .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + transform: translateZ( -20px ); + } + .reveal.page .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + + -webkit-transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.page .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.page .slides>section.past { + transform-origin: 0% 0%; + transform: translate3d(-40%, 0, 0) rotateY(-80deg); +} + +.reveal.page .slides>section.future { + transform-origin: 100% 0%; + transform: translate3d(0, 0, 0); +} + +.reveal.page .slides>section>section.past { + transform-origin: 0% 0%; + transform: translate3d(0, -40%, 0) rotateX(80deg); +} + +.reveal.page .slides>section>section.future { + transform-origin: 0% 100%; + transform: translate3d(0, 0, 0); +} + + +/********************************************* + * FADE TRANSITION + *********************************************/ + +.reveal .slides section[data-transition=fade], +.reveal.fade .slides section:not([data-transition]), +.reveal.fade .slides>section>section:not([data-transition]) { + transform: none; + transition: opacity 0.5s; +} + + +.reveal.fade.overview .slides section, +.reveal.fade.overview .slides>section>section { + transition: none; +} + + +/********************************************* + * NO TRANSITION + *********************************************/ + +@include transition-global(none) { + transform: none; + transition: none; +} + + +/********************************************* + * PAUSED MODE + *********************************************/ + +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: black; + visibility: hidden; + opacity: 0; + z-index: 100; + transition: all 1s ease; +} +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; +} + + +/********************************************* + * FALLBACK + *********************************************/ + +.no-transforms { + overflow-y: auto; +} + +.no-transforms .reveal .slides { + position: relative; + width: 80%; + height: auto !important; + top: 0; + left: 50%; + margin: 0; + text-align: center; +} + +.no-transforms .reveal .controls, +.no-transforms .reveal .progress { + display: none !important; +} + +.no-transforms .reveal .slides section { + display: block !important; + opacity: 1 !important; + position: relative !important; + height: auto; + min-height: 0; + top: 0; + left: -50%; + margin: 70px 0; + transform: none; +} + +.no-transforms .reveal .slides section section { + left: 0; +} + +.reveal .no-transition, +.reveal .no-transition * { + transition: none !important; +} + + +/********************************************* + * PER-SLIDE BACKGROUNDS + *********************************************/ + +.reveal .backgrounds { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + perspective: 600px; +} + .reveal .slide-background { + display: none; + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + visibility: hidden; + + background-color: rgba( 0, 0, 0, 0 ); + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; + + transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + + .reveal .slide-background.stack { + display: block; + } + + .reveal .slide-background.present { + opacity: 1; + visibility: visible; + } + + .print-pdf .reveal .slide-background { + opacity: 1 !important; + visibility: visible !important; + } + +/* Video backgrounds */ +.reveal .slide-background video { + position: absolute; + width: 100%; + height: 100%; + max-width: none; + max-height: none; + top: 0; + left: 0; +} + +/* Immediate transition style */ +.reveal[data-background-transition=none]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=none] { + transition: none; +} + +/* Slide */ +.reveal[data-background-transition=slide]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=slide] { + opacity: 1; + backface-visibility: hidden; +} + .reveal[data-background-transition=slide]>.backgrounds .slide-background.past, + .reveal>.backgrounds .slide-background.past[data-background-transition=slide] { + transform: translate(-100%, 0); + } + .reveal[data-background-transition=slide]>.backgrounds .slide-background.future, + .reveal>.backgrounds .slide-background.future[data-background-transition=slide] { + transform: translate(100%, 0); + } + + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past, + .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] { + transform: translate(0, -100%); + } + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future, + .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] { + transform: translate(0, 100%); + } + + +/* Convex */ +.reveal[data-background-transition=convex]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=convex] { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} +.reveal[data-background-transition=convex]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=convex] { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); +} +.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); +} + + +/* Concave */ +.reveal[data-background-transition=concave]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=concave] { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} +.reveal[data-background-transition=concave]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=concave] { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} + +.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); +} +.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); +} + +/* Zoom */ +.reveal[data-background-transition=zoom]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=zoom] { + transition-timing-function: ease; +} + +.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(16); +} +.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + +.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(16); +} +.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"]>.backgrounds .slide-background { + transition-duration: 400ms; +} +.reveal[data-transition-speed="slow"]>.backgrounds .slide-background { + transition-duration: 1200ms; +} + + +/********************************************* + * OVERVIEW + *********************************************/ + +.reveal.overview { + perspective-origin: 50% 50%; + perspective: 700px; + + .slides section { + height: 100%; + top: 0 !important; + opacity: 1 !important; + overflow: hidden; + visibility: visible !important; + cursor: pointer; + box-sizing: border-box; + } + .slides section:hover, + .slides section.present { + outline: 10px solid rgba(150,150,150,0.4); + outline-offset: 10px; + } + .slides section .fragment { + opacity: 1; + transition: none; + } + .slides section:after, + .slides section:before { + display: none !important; + } + .slides>section.stack { + padding: 0; + top: 0 !important; + background: none; + outline: none; + overflow: visible; + } + + .backgrounds { + perspective: inherit; + } + + .backgrounds .slide-background { + opacity: 1; + visibility: visible; + + // This can't be applied to the slide itself in Safari + outline: 10px solid rgba(150,150,150,0.1); + outline-offset: 10px; + } +} + +// Disable transitions transitions while we're activating +// or deactivating the overview mode. +.reveal.overview .slides section, +.reveal.overview-deactivating .slides section { + transition: none; +} + +.reveal.overview .backgrounds .slide-background, +.reveal.overview-deactivating .backgrounds .slide-background { + transition: none; +} + +.reveal.overview-animated .slides { + transition: transform 0.4s ease; +} + + +/********************************************* + * RTL SUPPORT + *********************************************/ + +.reveal.rtl .slides, +.reveal.rtl .slides h1, +.reveal.rtl .slides h2, +.reveal.rtl .slides h3, +.reveal.rtl .slides h4, +.reveal.rtl .slides h5, +.reveal.rtl .slides h6 { + direction: rtl; + font-family: sans-serif; +} + +.reveal.rtl pre, +.reveal.rtl code { + direction: ltr; +} + +.reveal.rtl ol, +.reveal.rtl ul { + text-align: right; +} + +.reveal.rtl .progress span { + float: right +} + +/********************************************* + * PARALLAX BACKGROUND + *********************************************/ + +.reveal.has-parallax-background .backgrounds { + transition: all 0.8s ease; +} + +/* Global transition speed settings */ +.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds { + transition-duration: 400ms; +} +.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds { + transition-duration: 1200ms; +} + + +/********************************************* + * LINK PREVIEW OVERLAY + *********************************************/ + +.reveal .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + background: rgba( 0, 0, 0, 0.9 ); + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; +} + .reveal .overlay.visible { + opacity: 1; + visibility: visible; + } + + .reveal .overlay .spinner { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + z-index: 10; + background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D); + + visibility: visible; + opacity: 0.6; + transition: all 0.3s ease; + } + + .reveal .overlay header { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 40px; + z-index: 2; + border-bottom: 1px solid #222; + } + .reveal .overlay header a { + display: inline-block; + width: 40px; + height: 40px; + padding: 0 10px; + float: right; + opacity: 0.6; + + box-sizing: border-box; + } + .reveal .overlay header a:hover { + opacity: 1; + } + .reveal .overlay header a .icon { + display: inline-block; + width: 20px; + height: 20px; + + background-position: 50% 50%; + background-size: 100%; + background-repeat: no-repeat; + } + .reveal .overlay header a.close .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); + } + .reveal .overlay header a.external .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); + } + + .reveal .overlay .viewport { + position: absolute; + display: flex; + top: 40px; + right: 0; + bottom: 0; + left: 0; + } + + .reveal .overlay.overlay-preview .viewport iframe { + width: 100%; + height: 100%; + max-width: 100%; + max-height: 100%; + border: 0; + + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + } + + .reveal .overlay.overlay-preview.loaded .viewport iframe { + opacity: 1; + visibility: visible; + } + + .reveal .overlay.overlay-preview.loaded .spinner { + opacity: 0; + visibility: hidden; + transform: scale(0.2); + } + + .reveal .overlay.overlay-help .viewport { + overflow: auto; + color: #fff; + } + + .reveal .overlay.overlay-help .viewport .viewport-inner { + width: 600px; + margin: auto; + padding: 20px 20px 80px 20px; + text-align: center; + letter-spacing: normal; + } + + .reveal .overlay.overlay-help .viewport .viewport-inner .title { + font-size: 20px; + } + + .reveal .overlay.overlay-help .viewport .viewport-inner table { + border: 1px solid #fff; + border-collapse: collapse; + font-size: 16px; + } + + .reveal .overlay.overlay-help .viewport .viewport-inner table th, + .reveal .overlay.overlay-help .viewport .viewport-inner table td { + width: 200px; + padding: 14px; + border: 1px solid #fff; + vertical-align: middle; + } + + .reveal .overlay.overlay-help .viewport .viewport-inner table th { + padding-top: 20px; + padding-bottom: 20px; + } + + + +/********************************************* + * PLAYBACK COMPONENT + *********************************************/ + +.reveal .playback { + position: fixed; + left: 15px; + bottom: 20px; + z-index: 30; + cursor: pointer; + transition: all 400ms ease; +} + +.reveal.overview .playback { + opacity: 0; + visibility: hidden; +} + + +/********************************************* + * ROLLING LINKS + *********************************************/ + +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + + vertical-align: top; + perspective: 400px; + perspective-origin: 50% 50%; +} + .reveal .roll:hover { + background: none; + text-shadow: none; + } +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + + pointer-events: none; + transition: all 400ms ease; + transform-origin: 50% 0%; + transform-style: preserve-3d; + backface-visibility: hidden; +} + .reveal .roll:hover span { + background: rgba(0,0,0,0.5); + transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + } +.reveal .roll span:after { + content: attr(data-title); + + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + backface-visibility: hidden; + transform-origin: 50% 0%; + transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); +} + + +/********************************************* + * SPEAKER NOTES + *********************************************/ + +// Hide on-page notes +.reveal aside.notes { + display: none; +} + +// An interface element that can optionally be used to show the +// speaker notes to all viewers, on top of the presentation +.reveal .speaker-notes { + display: none; + position: absolute; + width: 70%; + max-height: 15%; + left: 15%; + bottom: 26px; + padding: 10px; + z-index: 1; + font-size: 18px; + line-height: 1.4; + color: #fff; + background-color: rgba(0,0,0,0.5); + overflow: auto; + box-sizing: border-box; + text-align: left; + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; +} + +.reveal .speaker-notes.visible:not(:empty) { + display: block; +} + +@media screen and (max-width: 1024px) { + .reveal .speaker-notes { + font-size: 14px; + } +} + +@media screen and (max-width: 600px) { + .reveal .speaker-notes { + width: 90%; + left: 5%; + } +} + + +/********************************************* + * ZOOM PLUGIN + *********************************************/ + +.zoomed .reveal *, +.zoomed .reveal *:before, +.zoomed .reveal *:after { + backface-visibility: visible !important; +} + +.zoomed .reveal .progress, +.zoomed .reveal .controls { + opacity: 0; +} + +.zoomed .reveal .roll span { + background: none; +} + +.zoomed .reveal .roll span:after { + visibility: hidden; +} diff --git a/lectures/css/theme/README.md b/lectures/css/theme/README.md new file mode 100644 index 00000000..5a6c8fa6 --- /dev/null +++ b/lectures/css/theme/README.md @@ -0,0 +1,21 @@ +## Dependencies + +Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup + +## Creating a Theme + +To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`. + +Each theme file does four things in the following order: + +1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)** +Shared utility functions. + +2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)** +Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3. + +3. **Override** +This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please. + +4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)** +The template theme file which will generate final CSS output based on the currently defined variables. diff --git a/lectures/css/theme/beige.css b/lectures/css/theme/beige.css new file mode 100644 index 00000000..5bbda4b9 --- /dev/null +++ b/lectures/css/theme/beige.css @@ -0,0 +1,291 @@ +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #f7f2d3; + background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3)); + background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background-color: #f7f3de; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 36px; + font-weight: normal; + color: #333; } + +::selection { + color: #fff; + background: rgba(79, 64, 28, 0.99); + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #8b743d; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #c0a86e; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #564826; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #8b743d; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #8b743d; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #8b743d; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #8b743d; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #8b743d; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #c0a86e; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #c0a86e; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #c0a86e; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #c0a86e; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #8b743d; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/black.css b/lectures/css/theme/black.css new file mode 100644 index 00000000..511fa798 --- /dev/null +++ b/lectures/css/theme/black.css @@ -0,0 +1,287 @@ +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); +section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { + color: #222; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #222; + background-color: #222; } + +.reveal { + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-size: 38px; + font-weight: normal; + color: #fff; } + +::selection { + color: #fff; + background: #bee4fd; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #fff; + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-weight: 600; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 2.5em; } + +.reveal h2 { + font-size: 1.6em; } + +.reveal h3 { + font-size: 1.3em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #42affa; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #8dcffc; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #068de9; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #42affa; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #42affa; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #42affa; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #42affa; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #42affa; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #8dcffc; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #8dcffc; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #8dcffc; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #8dcffc; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #42affa; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/blood.css b/lectures/css/theme/blood.css new file mode 100644 index 00000000..6fe3d67b --- /dev/null +++ b/lectures/css/theme/blood.css @@ -0,0 +1,310 @@ +/** + * Blood theme for reveal.js + * Author: Walther http://github.com/Walther + * + * Designed to be used with highlight.js theme + * "monokai_sublime.css" available from + * https://github.com/isagalaev/highlight.js/ + * + * For other themes, change $codeBackground accordingly. + * + */ +@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #222; + background-color: #222; } + +.reveal { + font-family: Ubuntu, "sans-serif"; + font-size: 36px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #a23; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: Ubuntu, "sans-serif"; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: 2px 2px 2px #222; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #a23; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #dd5566; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #6a1520; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #a23; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #a23; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #a23; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #a23; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #a23; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #dd5566; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #dd5566; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #dd5566; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #dd5566; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #a23; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +.reveal p { + font-weight: 300; + text-shadow: 1px 1px #222; } + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + font-weight: 700; } + +.reveal p code { + background-color: #23241f; + display: inline-block; + border-radius: 7px; } + +.reveal small code { + vertical-align: baseline; } diff --git a/lectures/css/theme/league.css b/lectures/css/theme/league.css new file mode 100644 index 00000000..03c44ce0 --- /dev/null +++ b/lectures/css/theme/league.css @@ -0,0 +1,293 @@ +/** + * League theme for reveal.js. + * + * This was the default theme pre-3.0.0. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #1c1e20; + background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20)); + background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background-color: #2b2b2b; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 36px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #FF5E99; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #13DAEC; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #71e9f4; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #0d99a5; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #13DAEC; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #13DAEC; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #13DAEC; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #13DAEC; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #13DAEC; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #71e9f4; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #71e9f4; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #71e9f4; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #71e9f4; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #13DAEC; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/moon.css b/lectures/css/theme/moon.css new file mode 100644 index 00000000..5e5d6e4c --- /dev/null +++ b/lectures/css/theme/moon.css @@ -0,0 +1,291 @@ +/** + * Solarized Dark theme for reveal.js. + * Author: Achim Staebler + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #002b36; + background-color: #002b36; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 36px; + font-weight: normal; + color: #93a1a1; } + +::selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee8d5; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #268bd2; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #78b9e6; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a6091; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #93a1a1; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #268bd2; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #268bd2; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #268bd2; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #268bd2; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #268bd2; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #78b9e6; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #78b9e6; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #78b9e6; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #78b9e6; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #268bd2; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/night.css b/lectures/css/theme/night.css new file mode 100644 index 00000000..a439cdcf --- /dev/null +++ b/lectures/css/theme/night.css @@ -0,0 +1,285 @@ +/** + * Black theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=Montserrat:700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #111; + background-color: #111; } + +.reveal { + font-family: "Open Sans", sans-serif; + font-size: 30px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #e7ad52; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: "Montserrat", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: -0.03em; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #e7ad52; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #f3d7ac; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #d08a1d; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #e7ad52; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #e7ad52; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #e7ad52; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #e7ad52; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #e7ad52; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #f3d7ac; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #f3d7ac; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #f3d7ac; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #f3d7ac; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #e7ad52; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/serif.css b/lectures/css/theme/serif.css new file mode 100644 index 00000000..40ccb397 --- /dev/null +++ b/lectures/css/theme/serif.css @@ -0,0 +1,287 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is brown. + * + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. + */ +.reveal a { + line-height: 1.3em; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #F0F1EB; + background-color: #F0F1EB; } + +.reveal { + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + font-size: 36px; + font-weight: normal; + color: #000; } + +::selection { + color: #fff; + background: #26351C; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #383D3D; + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #51483D; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #8b7c69; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #25211c; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #000; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #51483D; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #51483D; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #51483D; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #51483D; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #51483D; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #8b7c69; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #8b7c69; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #8b7c69; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #8b7c69; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #51483D; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/simple.css b/lectures/css/theme/simple.css new file mode 100644 index 00000000..4f584525 --- /dev/null +++ b/lectures/css/theme/simple.css @@ -0,0 +1,298 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ + +@font-face{ + font-family: 'Fira Sans'; + src: url('../../lib/font/fira/FiraSans-Regular.eot'); + src: local('Fira Sans Regular'), + url('../../lib/font/fira/FiraSans-Regular.eot') format('embedded-opentype'), + url('../../lib/font/fira/FiraSans-Regular.woff') format('woff'), + url('../../lib/font/fira/FiraSans-Regular.ttf') format('truetype'); + font-weight: 400; + font-style: normal; +} + +body { + background: #fff; + background-color: #fff; } + +.reveal { + font-family: 'Fira Sans', sans-serif; + font-size: 36px; + font-weight: normal; + color: #000; } + +::selection { + color: #fff; + background: rgba(0, 0, 0, 0.99); + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #000; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #00008B; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #0000f1; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #00003f; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #000; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #00008B; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #00008B; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #00008B; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #00008B; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #00008B; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #0000f1; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #0000f1; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #0000f1; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #0000f1; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #00008B; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/sky.css b/lectures/css/theme/sky.css new file mode 100644 index 00000000..99f1cfdf --- /dev/null +++ b/lectures/css/theme/sky.css @@ -0,0 +1,294 @@ +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); +.reveal a { + line-height: 1.3em; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #add9e4; + background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4)); + background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background-color: #f7fbfc; } + +.reveal { + font-family: "Open Sans", sans-serif; + font-size: 36px; + font-weight: normal; + color: #333; } + +::selection { + color: #fff; + background: #134674; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333; + font-family: "Quicksand", sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: -0.08em; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #3b759e; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #74a7cb; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #264c66; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #3b759e; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #3b759e; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #3b759e; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #3b759e; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #3b759e; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #74a7cb; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #74a7cb; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #74a7cb; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #74a7cb; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #3b759e; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/solarized.css b/lectures/css/theme/solarized.css new file mode 100644 index 00000000..b4d4d4bd --- /dev/null +++ b/lectures/css/theme/solarized.css @@ -0,0 +1,291 @@ +/** + * Solarized Light theme for reveal.js. + * Author: Achim Staebler + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #fdf6e3; + background-color: #fdf6e3; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 36px; + font-weight: normal; + color: #657b83; } + +::selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #586e75; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #268bd2; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #78b9e6; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a6091; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #657b83; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #268bd2; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #268bd2; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #268bd2; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #268bd2; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #268bd2; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #78b9e6; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #78b9e6; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #78b9e6; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #78b9e6; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #268bd2; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/css/theme/source/beige.scss b/lectures/css/theme/source/beige.scss new file mode 100644 index 00000000..5564f538 --- /dev/null +++ b/lectures/css/theme/source/beige.scss @@ -0,0 +1,39 @@ +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainColor: #333; +$headingColor: #333; +$headingTextShadow: none; +$backgroundColor: #f7f3de; +$linkColor: #8b743d; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(79, 64, 28, 0.99); +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/source/black.scss b/lectures/css/theme/source/black.scss new file mode 100644 index 00000000..5f7f601f --- /dev/null +++ b/lectures/css/theme/source/black.scss @@ -0,0 +1,49 @@ +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #222; + +$mainColor: #fff; +$headingColor: #fff; + +$mainFontSize: 38px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #42affa; +$linkColorHover: lighten( $linkColor, 15% ); +$selectionBackgroundColor: lighten( $linkColor, 25% ); + +$heading1Size: 2.5em; +$heading2Size: 1.6em; +$heading3Size: 1.3em; +$heading4Size: 1.0em; + +section.has-light-background { + &, h1, h2, h3, h4, h5, h6 { + color: #222; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/source/blood.scss b/lectures/css/theme/source/blood.scss new file mode 100644 index 00000000..d22b53d8 --- /dev/null +++ b/lectures/css/theme/source/blood.scss @@ -0,0 +1,79 @@ +/** + * Blood theme for reveal.js + * Author: Walther http://github.com/Walther + * + * Designed to be used with highlight.js theme + * "monokai_sublime.css" available from + * https://github.com/isagalaev/highlight.js/ + * + * For other themes, change $codeBackground accordingly. + * + */ + + // Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + +// Include theme-specific fonts + +@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic); + +// Colors used in the theme +$blood: #a23; +$coal: #222; +$codeBackground: #23241f; + +$backgroundColor: $coal; + +// Main text +$mainFont: Ubuntu, 'sans-serif'; +$mainFontSize: 36px; +$mainColor: #eee; + +// Headings +$headingFont: Ubuntu, 'sans-serif'; +$headingTextShadow: 2px 2px 2px $coal; + +// h1 shadow, borrowed humbly from +// (c) Default theme by Hakim El Hattab +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Links +$linkColor: $blood; +$linkColorHover: lighten( $linkColor, 20% ); + +// Text selection +$selectionBackgroundColor: $blood; +$selectionColor: #fff; + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- + +// some overrides after theme template import + +.reveal p { + font-weight: 300; + text-shadow: 1px 1px $coal; +} + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + font-weight: 700; +} + +.reveal p code { + background-color: $codeBackground; + display: inline-block; + border-radius: 7px; +} + +.reveal small code { + vertical-align: baseline; +} \ No newline at end of file diff --git a/lectures/css/theme/source/league.scss b/lectures/css/theme/source/league.scss new file mode 100644 index 00000000..46ea04a0 --- /dev/null +++ b/lectures/css/theme/source/league.scss @@ -0,0 +1,34 @@ +/** + * League theme for reveal.js. + * + * This was the default theme pre-3.0.0. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + +// Override theme settings (see ../template/settings.scss) +$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/source/moon.scss b/lectures/css/theme/source/moon.scss new file mode 100644 index 00000000..e47e5b56 --- /dev/null +++ b/lectures/css/theme/source/moon.scss @@ -0,0 +1,57 @@ +/** + * Solarized Dark theme for reveal.js. + * Author: Achim Staebler + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; +} + +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; + +// Override theme settings (see ../template/settings.scss) +$mainColor: $base1; +$headingColor: $base2; +$headingTextShadow: none; +$backgroundColor: $base03; +$linkColor: $blue; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: $magenta; + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/lectures/css/theme/source/night.scss b/lectures/css/theme/source/night.scss new file mode 100644 index 00000000..b0cb57f5 --- /dev/null +++ b/lectures/css/theme/source/night.scss @@ -0,0 +1,35 @@ +/** + * Black theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=Montserrat:700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #111; + +$mainFont: 'Open Sans', sans-serif; +$linkColor: #e7ad52; +$linkColorHover: lighten( $linkColor, 20% ); +$headingFont: 'Montserrat', Impact, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: -0.03em; +$headingTextTransform: none; +$selectionBackgroundColor: #e7ad52; +$mainFontSize: 30px; + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/source/serif.scss b/lectures/css/theme/source/serif.scss new file mode 100644 index 00000000..ec3fcb30 --- /dev/null +++ b/lectures/css/theme/source/serif.scss @@ -0,0 +1,35 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is brown. + * + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$mainColor: #000; +$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$headingColor: #383D3D; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #F0F1EB; +$linkColor: #51483D; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #26351C; + +.reveal a { + line-height: 1.3em; +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/lectures/css/theme/source/simple.scss b/lectures/css/theme/source/simple.scss new file mode 100644 index 00000000..84c7d9b0 --- /dev/null +++ b/lectures/css/theme/source/simple.scss @@ -0,0 +1,38 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Lato', sans-serif; +$mainColor: #000; +$headingFont: 'News Cycle', Impact, sans-serif; +$headingColor: #000; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #fff; +$linkColor: #00008B; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(0, 0, 0, 0.99); + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/source/sky.scss b/lectures/css/theme/source/sky.scss new file mode 100644 index 00000000..3fee67c5 --- /dev/null +++ b/lectures/css/theme/source/sky.scss @@ -0,0 +1,46 @@ +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Open Sans', sans-serif; +$mainColor: #333; +$headingFont: 'Quicksand', sans-serif; +$headingColor: #333; +$headingLetterSpacing: -0.08em; +$headingTextShadow: none; +$backgroundColor: #f7fbfc; +$linkColor: #3b759e; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #134674; + +// Fix links so they are not cut off +.reveal a { + line-height: 1.3em; +} + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( #add9e4, #f7fbfc ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/lectures/css/theme/source/solarized.scss b/lectures/css/theme/source/solarized.scss new file mode 100644 index 00000000..912be56f --- /dev/null +++ b/lectures/css/theme/source/solarized.scss @@ -0,0 +1,63 @@ +/** + * Solarized Light theme for reveal.js. + * Author: Achim Staebler + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; +} + +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; + +// Override theme settings (see ../template/settings.scss) +$mainColor: $base00; +$headingColor: $base01; +$headingTextShadow: none; +$backgroundColor: $base3; +$linkColor: $blue; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: $magenta; + +// Background generator +// @mixin bodyBackground() { +// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) ); +// } + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/lectures/css/theme/source/white.scss b/lectures/css/theme/source/white.scss new file mode 100644 index 00000000..6758ce05 --- /dev/null +++ b/lectures/css/theme/source/white.scss @@ -0,0 +1,49 @@ +/** + * White theme for reveal.js. This is the opposite of the 'black' theme. + * + * By Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #fff; + +$mainColor: #222; +$headingColor: #222; + +$mainFontSize: 38px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #2a76dd; +$linkColorHover: lighten( $linkColor, 15% ); +$selectionBackgroundColor: lighten( $linkColor, 25% ); + +$heading1Size: 2.5em; +$heading2Size: 1.6em; +$heading3Size: 1.3em; +$heading4Size: 1.0em; + +section.has-dark-background { + &, h1, h2, h3, h4, h5, h6 { + color: #fff; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/lectures/css/theme/template/mixins.scss b/lectures/css/theme/template/mixins.scss new file mode 100644 index 00000000..e0c56069 --- /dev/null +++ b/lectures/css/theme/template/mixins.scss @@ -0,0 +1,29 @@ +@mixin vertical-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); + background: -o-linear-gradient( top, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); + background: linear-gradient( top, $top 0%, $bottom 100% ); +} + +@mixin horizontal-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); + background: -o-linear-gradient( left, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); + background: linear-gradient( left, $top 0%, $bottom 100% ); +} + +@mixin radial-gradient( $outer, $inner, $type: circle ) { + background: $outer; + background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); + background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); +} \ No newline at end of file diff --git a/lectures/css/theme/template/settings.scss b/lectures/css/theme/template/settings.scss new file mode 100644 index 00000000..ffaac235 --- /dev/null +++ b/lectures/css/theme/template/settings.scss @@ -0,0 +1,43 @@ +// Base settings for all themes that can optionally be +// overridden by the super-theme + +// Background of the presentation +$backgroundColor: #2b2b2b; + +// Primary/body text +$mainFont: 'Lato', sans-serif; +$mainFontSize: 36px; +$mainColor: #eee; + +// Vertical spacing between blocks of text +$blockMargin: 20px; + +// Headings +$headingMargin: 0 0 $blockMargin 0; +$headingFont: 'League Gothic', Impact, sans-serif; +$headingColor: #eee; +$headingLineHeight: 1.2; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingTextShadow: none; +$headingFontWeight: normal; +$heading1TextShadow: $headingTextShadow; + +$heading1Size: 3.77em; +$heading2Size: 2.11em; +$heading3Size: 1.55em; +$heading4Size: 1.00em; + +// Links and actions +$linkColor: #13DAEC; +$linkColorHover: lighten( $linkColor, 20% ); + +// Text selection +$selectionBackgroundColor: #FF5E99; +$selectionColor: #fff; + +// Generates the presentation background, can be overridden +// to return a background image or gradient +@mixin bodyBackground() { + background: $backgroundColor; +} \ No newline at end of file diff --git a/lectures/css/theme/template/theme.scss b/lectures/css/theme/template/theme.scss new file mode 100644 index 00000000..101a5673 --- /dev/null +++ b/lectures/css/theme/template/theme.scss @@ -0,0 +1,346 @@ +// Base theme template for reveal.js + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +body { + @include bodyBackground(); + background-color: $backgroundColor; +} + +.reveal { + font-family: $mainFont; + font-size: $mainFontSize; + font-weight: normal; + color: $mainColor; +} + +::selection { + color: $selectionColor; + background: $selectionBackgroundColor; + text-shadow: none; +} + +.reveal .slides>section, +.reveal .slides>section>section { + line-height: 1.3; + font-weight: inherit; +} + +/********************************************* + * HEADERS + *********************************************/ + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: $headingMargin; + color: $headingColor; + + font-family: $headingFont; + font-weight: $headingFontWeight; + line-height: $headingLineHeight; + letter-spacing: $headingLetterSpacing; + + text-transform: $headingTextTransform; + text-shadow: $headingTextShadow; + + word-wrap: break-word; +} + +.reveal h1 {font-size: $heading1Size; } +.reveal h2 {font-size: $heading2Size; } +.reveal h3 {font-size: $heading3Size; } +.reveal h4 {font-size: $heading4Size; } + +.reveal h1 { + text-shadow: $heading1TextShadow; +} + + +/********************************************* + * OTHER + *********************************************/ + +.reveal p { + margin: $blockMargin 0; + line-height: 1.3; +} + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; +} +.reveal strong, +.reveal b { + font-weight: bold; +} + +.reveal em { + font-style: italic; +} + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + + text-align: left; + margin: 0 0 0 1em; +} + +.reveal ol { + list-style-type: decimal; +} + +.reveal ul { + list-style-type: disc; +} + +.reveal ul ul { + list-style-type: square; +} + +.reveal ul ul ul { + list-style-type: circle; +} + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; +} + +.reveal dt { + font-weight: bold; +} + +.reveal dd { + margin-left: 40px; +} + +.reveal q, +.reveal blockquote { + quotes: none; +} + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: $blockMargin auto; + padding: 5px; + + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0,0,0,0.2); +} + .reveal blockquote p:first-child, + .reveal blockquote p:last-child { + display: inline-block; + } + +.reveal q { + font-style: italic; +} + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: $blockMargin auto; + + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + + word-wrap: break-word; + + box-shadow: 0px 0px 6px rgba(0,0,0,0.3); +} +.reveal code { + font-family: monospace; +} + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; +} + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; +} + +.reveal table th { + font-weight: bold; +} + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; +} + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; +} + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; +} + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; +} + +.reveal sup { + vertical-align: super; +} +.reveal sub { + vertical-align: sub; +} + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; +} + +.reveal small * { + vertical-align: top; +} + + +/********************************************* + * LINKS + *********************************************/ + +.reveal a { + color: $linkColor; + text-decoration: none; + + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; +} + .reveal a:hover { + color: $linkColorHover; + + text-shadow: none; + border: none; + } + +.reveal .roll span:after { + color: #fff; + background: darken( $linkColor, 15% ); +} + + +/********************************************* + * IMAGES + *********************************************/ + +.reveal section img { + margin: 15px 0px; + background: rgba(255,255,255,0.12); + border: 4px solid $mainColor; + + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); +} + + .reveal section img.plain { + border: 0; + box-shadow: none; + } + + .reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; + } + + .reveal a:hover img { + background: rgba(255,255,255,0.2); + border-color: $linkColor; + + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); + } + + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ + +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: $linkColor; +} + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: $linkColor; +} + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: $linkColor; +} + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: $linkColor; +} + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: $linkColorHover; +} + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: $linkColorHover; +} + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: $linkColorHover; +} + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: $linkColorHover; +} + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + background: rgba(0,0,0,0.2); +} + .reveal .progress span { + background: $linkColor; + + -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + + diff --git a/lectures/css/theme/white.css b/lectures/css/theme/white.css new file mode 100644 index 00000000..b10dd0e8 --- /dev/null +++ b/lectures/css/theme/white.css @@ -0,0 +1,287 @@ +/** + * White theme for reveal.js. This is the opposite of the 'black' theme. + * + * By Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); +section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 { + color: #fff; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #fff; + background-color: #fff; } + +.reveal { + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-size: 38px; + font-weight: normal; + color: #222; } + +::selection { + color: #fff; + background: #98bdef; + text-shadow: none; } + +.reveal .slides > section, +.reveal .slides > section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #222; + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-weight: 600; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 2.5em; } + +.reveal h2 { + font-size: 1.6em; } + +.reveal h3 { + font-size: 1.3em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal q, +.reveal blockquote { + quotes: none; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } + +.reveal code { + font-family: monospace; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; } + +.reveal sub { + vertical-align: sub; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #2a76dd; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #6ca0e8; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a53a1; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #222; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #2a76dd; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls .navigate-left, +.reveal .controls .navigate-left.enabled { + border-right-color: #2a76dd; } + +.reveal .controls .navigate-right, +.reveal .controls .navigate-right.enabled { + border-left-color: #2a76dd; } + +.reveal .controls .navigate-up, +.reveal .controls .navigate-up.enabled { + border-bottom-color: #2a76dd; } + +.reveal .controls .navigate-down, +.reveal .controls .navigate-down.enabled { + border-top-color: #2a76dd; } + +.reveal .controls .navigate-left.enabled:hover { + border-right-color: #6ca0e8; } + +.reveal .controls .navigate-right.enabled:hover { + border-left-color: #6ca0e8; } + +.reveal .controls .navigate-up.enabled:hover { + border-bottom-color: #6ca0e8; } + +.reveal .controls .navigate-down.enabled:hover { + border-top-color: #6ca0e8; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); } + +.reveal .progress span { + background: #2a76dd; + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } diff --git a/lectures/flow.html b/lectures/flow.html new file mode 100644 index 00000000..2372c415 --- /dev/null +++ b/lectures/flow.html @@ -0,0 +1,788 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Flow routing and watershed analysis

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling + NCSU +

+
+ +
+

Learning objectives

+

+

    +
  • define cumulative terrain parameters based on flow routing +
  • understand methods for computing flow direction and flow accumulation +
  • identify methods for flow routing through depressions and flat areas +
  • perform stream extraction from a DEM +
  • perform watershed delineation +
  • identify methods to map inundation flooding +
+
+ +
+

Cumulative flow parameters

+

Flow routing over a DEM is used to derive the following parameters and features: +

+

    +
  • flow path length +
  • flow accumulation +
  • stream networks +
  • contributing areas +
  • watershed boundaries +
+
+ +
+

Computing flow direction

+

What is flow direction: +

    +
  • direction of surface gradient vector $\nabla z = (f_x, f_y)$ +
  • steepest slope direction +
  • aspect (orientation of hillslope) +
+

Methods to derive flow direction from a DEM: +

    +
  • discrete: D8, D16 +
  • continuous: D-infinity +
+
+ +
+

Discrete flow direction

+

+D8 algorithm +

+

    +
  • aspect discretized to 8 directions: 0, 45, 90, ... degrees +
  • estimated from elevation differences between the given grid cell and its 8 neighboring cells +
  • flow direction is in the direction of maximum elevation difference $\Delta z_{max}$ in 3x3 window +
+ +
+ +
+

Continuous flow direction

+

+D-infinity algorithm: gradient direction is derived from a continuous function (polynomial or spline) +$$\alpha^\circ = {\arccos} \left( -f_y / \sqrt{f_x^2+f_y^2} \right) = \arctan (f_y / f_x) $$ +

+

recall that $f_x = {\partial z \over \partial x}$ and $f_y = {\partial z \over \partial y}$ +

+ +
+

Flow routing

+Tracing flow in the gradient direction to compute +

+

    +
  • flowline: path of a single drop following gradient vector +
  • flow path length: flowline length measured over surface or in horizontal plane +
  • flow accumulation: density of flowlines generated from each grid cell +
+
+ +
+

Flow lines

+

+

    +
  • Lines along the steepest slope +
  • Perpendicular to contours +
  • Dinf: linear interpolation of aspect along the grid cell edges leads to smooth flowlines +
+

+ + +

Note: D8 flowlines are traced along grid lines and diagonals +

+ +
+

Flow path length

+

+

    +
  • length of a hillslope upslope from a given cell +
  • distance of given cell from the outlet +
+

+ +   + +

upslope flow tracing: hillslope length      downslope flow tracing: distance from an outlet +

+ +
+

The longest path to outlet

+
    +
  • length of the flow line from the grid cell that is the farthest from the outlet +
  • when water from this cell reaches outlet, all cells within a watershed have drained to outlet +
  • the longest path to outlet is used to compute time to concentration (time to steady state flow) +
+
+ +
+

Flow accumulation at a grid cell

+
    +
  • assuming a single flow line (drop) generated from each cell, +it is the number of flowlines (drops) passing through the given grid cell +
  • number of grid cells draining into the given grid cell +
  • upslope contributing area for the given grid cell (horizontal area, in cell units) +
+

+

+ +
+

Flow accumulation across landscape

+

+Evolution of steady state flow as water moves through the landscape +with steady rainfall and uniform flow velocity +

+
flow line density captured after each 10 flow routing steps +

+ +
+

Flow accumulation at steady state

+

+Measure of steady state flow depth when all flowlines reached the outlet or the edge of the map +

+
Flow accumulation represented as exagerrated 3D surface added to the elevation model highlights +the steady state flow accumulation +

+ +
+

Flow routing methods

+
    +
  • Single Flow Direction (SFD) moves entire unit of flow into a single downslope cell + (does not capture flow dispersal on hillslopes with convex tangential curvature) +
  • Multiple flow direction (MFD) partitions flow into two or more downslope directions +
  • both can be implemented with D8 or Dinf flow direction +
+ +
+ +
+

Flow routing methods

+

+Flow accumulation as a result of SFD routing +

using D8 and D-inf flow direction +

+ +

+ +
+

Flow routing methods

+Flow accumulation as a result of SFD and MFD routing with D8 flow direction +

+ + +

+ +
+

Weighted flow routing

+Each cell is assigned weight proportional to the amount of runoff it produces +(rainfall excess available for runoff after infiltration and vegetation intercept) +

+ +

Land use map with developed areas (orange) and associated runoff weights - in blue areas +all water gets routed, in grey areas only a fraction +

+ +
+

Weighted flow routing

+Spatially variable runoff reflects the impact of developed areas on flow accumulation +

+ +

+ +
+

Stream extraction

+
    +
  • Automated stream mapping: extracting connected stream network from flow accumulation map +
  • Stream raster map is derived using map algebra based on flow accumulation threshold +
  • Result is converted to vector representation of a connected stream network +
  • Stream origin is dynamic, often driven by groundwater: +additional information is needed for accurate identification +
+
+ +
+

Stream extraction

+Flow accumulation from 30m NED using SFD D8 method, threshold accumulation: 100 cells, +and a vectorized extracted stream network +

+

+ +
+

Flow routing in flat areas

+
    +
  • to create connected stream network flow needs to be routed through flats and depressions +
  • integer DEMs, lakes or filled depressions create flat areas +
  • flat areas: zero slope and undefined aspect +
  • solutions: +
      +
    • iterative assignment of direction from the first draining cell +
    • imposed gradient (small change in elevation) +
    +
+
+ +
+

Flow routing through depressions

+

Depressions "trap" flow +

Sources of depressions in DEMs: +

    +
  • real topographic features +
  • noise, measurements errors +
  • processing artifacts +
+ +
+ +
+

Handling depressions

+Filling +

+

+ +
+

Handling depressions

+Filling, carving +

+

+ +
+

Handling depressions

+Filling, carving, hybrid +

+

+ +
+

Handling depressions

+Filling, carving, hybrid, least cost path +

+

+ +
+

Depressions filling: lidar DEM

+Depressions in lidar-based DEM and MFD flow accumulation using DEM with filled depressions +

+

Many depressions are artificial lakes where bridges or roads create dams +

+ +
+

Depressions filling: radar DSM

+

Radar (SRTM, IFSARE) DSM include vegetation surface leading to complex, nested depressions +

+ +
Filling alters elevation in large areas +

+ + + +
+

Depressions: carving

+

Carving streams from digitized stream data may introduce artifacts, if the digitized streams +do not match the DEM +

+

+ +
+

Hydrologically enforced DEM

+

+Modified DEM with connected stream network where each grid cell drains into the outlet +

    +
  • hydrologically enforced DEM does not have depressions or flat areas +
  • it should not be referred to as hydrologically correct, because all wetlands are removed +
  • least cost path methods do not require depression filling +
+

Depending on application carefully evaluate whether depression filling is appropriate +

+ +
+

Stream mapping accuracy

+

+Measured as horizontal accuracy of stream centerline +

    +
  • topographic maps (blue lines): often the lowest accuracy, low order streams are missing +
  • National Hydrographic Data - updated, structured representation of stream and river networks +
  • extracted from lidar-based DEMs - better, but accuracy low in coastal plane, improved new lidar mapping +
  • digitized from high resolution orthophotos and on ground surveys - most accurate except forested areas +
  • structures require additional information (bridges are represented as dams in DEMs) +
+
+ +
+

Stream mapping accuracy

+

USGS NHD stream, stream extracted from 1ft resolution DEM, on ground GPS points +

+ +

+ +
+

Watersheds

+

+

    +
  • watershed - important land management unit +
  • water and mass from a watershed drains to a single point: outlet +
  • other terms for watershed: (drainage) basin, catchment, contributing area +
  • watersheds can be organized into hierarchies based on the size of contributing area +
+

see more at +USGS Hydrologic units: hierarchy of drainage areas for national river network, +the newest delineation is The Watershed Boundary Dataset (WBD) +

+ +
+

Watershed analysis

+
    +
  • find watershed boundaries for a given outlet, for example, a stream gauge +
  • find contributing area for a given stream segment +
  • partition a region into watersheds with the given approximate size +
+
+ +
+

Watershed analysis

+

+ Watershed boundaries for a given outlet using SFD-D8 +

+

+

Outlet must be located exactly on a stream grid cell - local flowaccumulation maximum +

+ +
+

Watershed analysis

+

+ Partition of a region into watersheds +

+

Southern Wake county +

+ +
+

Watersheds

+

Watershed and its subwatershes +

+

Chagres river watershed in Panama +

+ +
+

Wetness index

+

measure of topographic potential for zones of saturation +

+$$w = \ln (A / \tan \gamma)$$ +

    +
  • $A$ is upslope contributing area per unit contour width, +
  • $\gamma$ is slope +
  • $w$ increases with larger $A$ (more water) and lower slope (slower water flow). +
+

+Estimating wetness index in GIS: +

    +
  • $A$ - flow accumulation MFD, optionally weighted to account for soil and cover variability +
  • $\gamma$ - steepest slope (3x3 neighborhood polynomial or spline) +
  • Compute the expression using map algebra or a dedicated module/tool +
+ +
+ +
+

Wetness index

+

+

+ +
+

Mapping inundation flooding

+
    +
  • elevation threshold - bathtub model +
  • spread of water from source - friction gradient rather than elevation gradient +
  • hydrologically connected surface water level +
  • HAND: height above the nearest drainage technique +
+
+ +
+

Flooding - bathtub model

+

+

+ +
+

Flooding - lake model

+
    +
  • Creates hydrologically connected area (lake) from a given point at a given elevation +
  • Valid for small flat areas with point source, approximates steady state, uniform flooding +
+

+ + +

water level at 90m asl +

+ +
+

Flooding - lake model

+
    +
  • Simplified storm surge - series of lake models +
  • Neglects time and water mass: worst case scenario +
+

+

+ +
+

Flooding - inundation model

+
    +
  • over larger areas river channel has variable elevation: Height Above Nearest Drainage (HAND) methodology +
  • using flow direction, computes raster where each cell is $\Delta z$ between the given cell +and the the cell on the stream into which the cell drains. +
  • water level is then spread from the stream +
+

+ +

+ +
+

Flooding - inundation dynamic

+Implemented in mapbox by Corey White +
+ + + +
+

Summary

+
    +
  • we have defined cumulative terrain parameters based on flow routing: flow length, flow accumulation +
  • we have learned about methods for computing flow direction (D8, Dinf) and flow routing SFD, MFD +
  • we discussed flow through flat areas and depressions +
  • we have applied flow routing to extract streams and watersheds and to compute wetness index +
  • we have learned about methods to map inundation flooding +
+
+ +
+ + +
+ + + + + + +
+ +
+ + + + + + + + diff --git a/lectures/geodata_models.html b/lectures/geodata_models.html new file mode 100644 index 00000000..0a69bd66 --- /dev/null +++ b/lectures/geodata_models.html @@ -0,0 +1,825 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geospatial data models

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Learning objectives

+

+

    +
  • Define raster and vector data models +
  • Distinguish between continuous and discrete phenomena +
  • Understand and use data models transformations +
  • Recognize geospatial data formats +
  • Identify and use on-line geospatial data repositories and services
  • +
+
+ +
+

Geospatial data models

+

Mapped data, results of modeling or analysis are represented in GIS using +

    +
  • raster (regular grid) data model +
  • vector (feature) data model +
  • specialized representations: meshes +
+

+ +

+ +
+

Geospatial phenomena

+

+

    +
  • Continuous fields +
      +
    • elevation surfaces
    • +
    • temperature, precipitation
    • +
    • concentration of chemicals in soil or water bodies
    • +
    +

    +

  • Discrete features: lines, points or areas with attributes +
      +
    • roads, buildings, cell towers
    • +
    • land use types, administrative units
    • +
    +

    +

  • Some phenomena can be treated as both types +
      +
    • agricultural fields (crop type vs. crop height), soil properties
    • +
    • population densities
    • +
    +
+ +
+ +
+

Continuous fields

+

+

    +
  • each point in space is assigned a distinct value, + change in values between neighboring points is small
  • +
  • mathematical representation: bi-variate or multi-variate + continuous functions $w=f(x,y), w=f(x,y,z), w=f(x,y,z,t)$
  • +
  • often represented by a raster data model
  • +
  • vector model is also used: isolines, meshes, or points.
  • +
+

+ + + + +

+
+ +
+

Discrete objects / features

+

+

    +
  • points, lines, or areas (polygons) with attributes +
  • represented by vector data model as geometry(shape) with attribute table +
  • raster representation is also used +
+

+ + + +

+
+ +
+

Raster data model: 2D

+

+

    +
  • header: spatial extent and resolution, followed by matrix of values (INT, FP, DP), +
  • continuous field : value assigned to a grid point +
  • discrete object : category value assigned to pixel (area) +
+

+ +

+
+ +
+

Raster data model: continuous fields

+Elevation, 10m resolution (combined with shaded relief) + +
+Precipitation, 500m resolution (color map draped over shaded relief) + +
+ +
+

Raster data model: discrete features

+

+Land use classes at 30m resolution, qualitative data +

+ + +

+ +
+

Raster data model: discrete features

+

+Roads: Speed limits for roads and walking speed for off-road areas, 30m resolution, quantitative data +

+ +

+ +
+

Raster data model: 3D hybrid

+

+

+
    +
  • vertical stack of 2D raster layers +
  • can be used to represent soil horizons or geological layers +
  • combined representation: +
      +
    • continuous (horizontally) +
    • discrete (vertically) +
    +
+
+
+ +

Cross-sections through 3D model of soil horizons +

+
+ +
+

Raster data model: 3D grid

+

+

    +
  • header + 3D matrix of values, voxel model +
  • spatial extent N,S,E,W,Top, Bottom +
  • vertical resolution is usually much finer than horizontal +
  • often used for 3D continuous representation $w=f(x,y,z)$ +
+ + + + +

Soil properties: Percent organic carbon, soil pH reaction + +

+ +
+

Vector data model

+

+ Abstract representation of complex features +
school – point, road – centerline, park - polygon +

    +
  • Geometry: +
      +
    • Points [x,y,(z)] represent point, line, or polygon(area) features +
    • Set of points create elements of feature geometry: line: nodes, vertices; polygon: centroid, boundary +
    • Geospatial Topology defines how the elements of +feature geometry are interrelated and organized (don't confuse with topography!) +
    • Topology ensures integrity of features and efficiency by defining shared coincident geometry (shared +boundaries, nodes). +
    +

    +

  • Attributes are stored in data management systems +
+ +
+ +
+

Vector data model geometry

+
+

Point data: no topology + + +

+ +
+

Elements of line data: vertices, nodes +

+ +

+
+ +
+

Vector data model geometry

+

Elements: vertices(red), nodes(blue), centroids(green) +

+Polygons: vertices+nodes=boundaries, centroids +

+ +

+ +
+

Vector data model examples

+

Geometry and attributes for point, line and polygon data: +

+ + +

+ +
+

Vector data: 3D models

+

+Full 3D meshes: representation of structures +

+ +

+ +
+

Modifications of data representation

+

+

    +
  • Changing raster resolution, e.g., when model inputs are rasters at different resolutions +

    +

  • Changing vector geometry type, e.g., when model input requires different geometry than given data (points instead of lines) +
+
+ +
+

Raster data - changing resolution

+

Resolution: size of the grid cell (pixel) in map units (m) +

    +
  • continuous fields: interpolation +
      +
    • the higher resolution raster values are interpolated using the values of the neighboring lower resolution cells +
    • methods: + bi-linear, + bi-cubic, + spline. +
    +

    +

  • discrete raster data: nearest neighbor resampling +
      +
    • assigns the higher resolution cell the same value as the nearest lower resolution cell +
    • resulting raster has only the values present in the input raster +
    +

    +
+
+ +
+

Increasing resolution: continuous

+

Elevation at 30m resolution resampled to 10m resolution +
+ +
Nearest neighbor creates "flats" in the resampled DEM, interpolation preserves smooth surface. +
See equations for bi-linear interpolation +

+ +
+

Increasing resolution: discrete

+

Geology at 30m resolution resampled to 10m resolution +

+ +

Raster values are classes of observed geology + +

+ +
+

Increasing resolution: compare

+

Effect of resampling / reinterpolation on the results + + +
More complex downscaling techniques using additional variables and machine learning +may be needed if the difference in resolution is large +

+ + + + +
+

Decreasing resolution

+Continuous data: nearest neighbor, average, min, max, or re-interpolation is used +

+ +

Nearest neighbor resampling of 10m DEM to 30m and 20m DEMs +

+ +
+

Decreasing resolution

+Discrete data: nearest neighbor resampling, mode (most common or majority class) +

+ +

Nearest neighbor resampling of 10m soil typemap to 30m and 20m maps +

+ +
+

Modifying vector data

+

+

    +
  • Converting vector data type +
      +
    • lines to points, areas to lines or points +
    • points to lines: network building or interpolation may be needed +
    • usually preserves the shape +
    +

    +

  • Generalization +
      +
    • simplifying geometry while preserving important information +
    • both data geometry and type can be modified +
    • line to simplified line, polygon to simplified polygon or point +
    • selecting subset of features +
    • important when combining local, state and national scale data +
    +
  • +

    +
+
+ +
+

Changing vector data type

+

+Data geometry is not modified, +but subset is extracted and stored in a different data structure +

+Topology building is required for conversions point to line, line to polygon +

+ + + + +

+ +
+

Conversion between data models

+

+

    +
  • vector to raster +
      +
    • continuous: spatial interpolation (covered by a separate topic) +
    • discrete: nearest neighbor +
    +

    +

  • raster to vector +
      +
    • continuous: point sampling, isolines +
    • discrete: nearest neighbor, grid center or boundary +
    +
+

+

+ +
+

Continuous: vector to raster data

+Spatial interpolation is used to compute raster representation from point measurements +

+ + +

+ +
+

Discrete: vector to raster data

+
    +
  • lines, areas: nearest neighbor +
  • areas: attribute value applies to the entire polygon +
+

+ +

+ +
+

Raster to vector data

+

Continuous data: isolines, sampling points +

+ + + +

+ +
+

Raster to vector data

+

+

    +
  • points – centers of grid cells +
  • lines, polygon border lines: connected grid cell centers +
  • thinning and smoothing is often performed for lines +
+

+ + + +

+ +
+

Raster to vector data

+

+

    +
  • areas – boundary, centroid, requires building topology +
  • connects points on grid cell boundary +
+

+ +

+ +
+

Common geospatial data formats

+

Format: specific implementation of data model, +
open standard or proprietary +

Raster +

    +
  • GIS (ascii and binary): GeoTIFF, ArcGRID, GRASS, SURFER +
  • Imagery: MrSID, GeoTIFF, BIN, JPEG2000, IMG +
  • Graphics: GIF, JPG, PNG, Bitmap +
  • HDF, NetCDF +
+

+Vector +

    +
  • GeoPackage exchange format, KML, Shape, ArcSDE, GML, MapInfo, TIGER +
  • PostGIS, OracleSpatial +
+
+ +
+

Geospatial data format conversion

+

+Format description is usually stored with data: automated format recognition and conversion +

+General library for geospatial raster and vector format conversions: +
Geospatial Data Abstraction Library (GDAL/OGR) +
gdal.org +

+given format - single abstract model - new format +

+

+GDAL includes command line utilities for data processing +

+

+Coupled with PROJ library it also provides coordinate system transformations +

+
+ +
+

Data repositories

+Data repositories: WMS, WPS, WebGIS +
    +
  • Web mapping Service +
  • Web Processing Service +
+

+See +Webpage with links to relevant services + +

+ + + +
+

Summary

+
    +
  • raster and vector data models +
  • modifying raster and vector data representation +
  • converting between raster and vector data models +
  • geospatial data formats +
  • data repositories, wms services +
+
+ +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/geomorph_terrain.html b/lectures/geomorph_terrain.html new file mode 100644 index 00000000..d411ad8c --- /dev/null +++ b/lectures/geomorph_terrain.html @@ -0,0 +1,836 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geomorphometry I:

+

Elevation surface modeling

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Outline

+

+

    +
  • 3D mapping technologies +
  • digital elevation models +
  • triangular irregular networks +
  • regular grid (raster) +
  • isolines and meshes +
  • point clouds, multiple return data +
  • point cloud analysis and binning +
+
+ +
+

3D mapping technologies

+
    +
  • Continuous surface measured at discrete points +

    +

      +
    • Human selected points +
    • Automated point sampling +
    +

    +

  • Terrestrial (land) surface +
      +
    • Stereophotogrammetry: aerial and satellite imagery +
    • Lidar: aerial and terrestrial +
    • Interferometric radar: aerial, satellite, space shuttle +
    • RTK GPS +
    +

    +

  • Bathymetry mapping +
      +
    • single and multiple beam sonar +
    +
+
+ +
+

Ground-based 3D mapping

+

+Terrestrial lidar and acquired point cloud +

+ + +

+
+ +
+

Ground-based mobile 3D mapping

+Mobile RTK GPS: mapping Jockey's Ridge dune +

+ +

+

+ +
+

Aerial and satellite 3D mapping

+

+Shuttle, satellite, airplane, UAS platforms with +
radar, lidar, and/or camera sensors +

+ + + +

+
+ +
+

Bathymetry 3D mapping

+

+Single and multibeam sonar, topobathy lidar +

+ + +

Images from Geodynamics, see the website to learn +more about coastal surveying technologies +
Topobathy lidar, National Geodetic Survey
+

+
+ +
+

Digital elevation models

+
    +
  • Digital Terrain Model (DTM): +
      +
    • bare ground elevation surface +
    • interface between solid Earth and atmosphere/anthroposphere/biosphere +
    +
  • Digital Surface Model (DSM): +
      +
    • elevation surface including above ground features +
    • interface between Earth surface with water, vegetation, structures and atmosphere +
    +
  • Digital Bathymetry Model (DBM) +
      +
    • elevation surface at the bottom of water bodies +
    • interface between solid Earth surface and hydrosphere (bottom surface of lakes, rivers and ocean) +
    • Seamless topobathy: continuous solid earth surface, TBDEM +
    +
  • Digital Crop or Canopy Surface Model (DCM), +
    Digital Urban Model (DUM), .... +
+
+ +
+

DTM and DSM

+

Small rural watershed - NCSU experimental fields +
1 m res DTM and DSM interpolated from lidar point cloud +

+ +

+
+ +
+

DBM sonar and lidar

+

Multibeam sonar data for area near Cape Fear, NC, bathymetric lidar for a nearshore area in Florida +
raw data and interpolated 1m res DBM +

+ + +

+
+ +
+

DCM from lidar and UAS

+

Digital Canopy Model with canopy height at Mamoth Cave National Park (0.6m res) and +Digital Crop Surface model from UAS point cloud (0.05m res) +

+ + +

+

+Montgomery K., et al. 2020. Measures of Canopy Structure from Low-Cost UAS for Monitoring Crop Nutrient Status. In: Drones 4(3). +

+ +
+

DUM from lidar

+

Digital Urban Model: raster and vector representation +
Centennial Campus and Downtown Raleigh +

+ + +

+
+ +
+

From 3D mapping to DEM

+
+ +
+

Result of 3D mapping

+

+

    +
  • human selected points (photogrammetry and GPS) +
  • points along lines (digitized contours or profiles) +
  • point clouds (lidar, Structure from Motion) +
+

Examples +

+

+ +
+

Point cloud patterns

+ +

+ +

+ +
+

Digital Elevation Models

+

+

    +
  • Regular grid (raster) +
  • Unstructured meshes: Triangular Irregular Network (TIN) +
  • Contours - elevation isolines derived from grid or TIN +
  • Parametric Mesh: complex structures +
  • Unstructured point clouds: measured data +
+
+ +
+

Regular grid: raster DEM

+

+Derived from measured points by gridding: +

+

    +
  • if there is at least one point for each grid cell – binning, per-cell statistics +
  • if some grid cells do not include points – spatial interpolation or approximation +
+
+ +
+

Scattered points to raster

+

+From given scattered points to points at regular grid +

+ +

+

Raster representation generally does not preserve the original data points +

+ +
+

Scattered points to raster

+

+From given scattered points to points at regular grid +

+

+
+ +
+

Raster DEM properties

+
    +
  • simple data structure and algorithms +
  • easy to combine with imagery +
  • uniform resolution - potential for undersampling and oversampling +
  • representation of faults and sharp breaklines requires very high resolution +
  • most public elevation data are distributed as raster DEM through + +On-line repositories +
+
+ +
+

Unstructured mesh: TIN

+

+

    +
  • Triangular Irregular Network: constructed from the measured points by triangulation (before computer age this technique was used for manual interpolation of contours from surveyed points) +
  • Delaunay Triangulation: maximizes the smallest angle of the triangles to avoid skinny triangles +
  • Constrained Delaunay Triangulation – includes predefined edges that cannot be flipped +
  • TIN is a vector data model representation, that usually preserves the original data points +
+
+ +
+

Scattered points to TIN

+

+From given scattered points to Delaunay TIN +

+ +

+
+ +
+

Scattered points to TIN

+

+

No interpolation to raster DEM: +
3D TIN is the vector-based elevation model +

+

+
+ +
+

TIN properties

+

+

    +
  • requires pre-defined breaklines for man-made features, valleys, faults, etc. +
  • density of TIN is adjusted to surface complexity +
  • additional points may need to be interpolated to create smooth surface +
+ +

When to use TIN: +

    +
  • engineering applications, +
  • manual modification of model is desired(design), +
  • complex faults need to be represented, +
  • multiscale representation for visualization +
+
+ +
+

TIN issues

+

+

    +
  • discontinuity in first derivative along edges: artificial triangular structures on the surface +
  • dams can be created across valleys if stream is not defined as a breakline +
+

+

+
+ +
+

TIN issues

+

+If input are points on contours: flats on the top of hills or ridges if no peaks are defined +

+

+
+ +
+

Elevation isolines: contours

+
    +
  • traditional approach for representation of elevation, drawn by hand from measured mass points by interpolating along triangle edges +
  • automated procedures: from TIN or grid, +
  • not very suitable for highly detailed, noisy data such as lidar +
  • very useful when the surface has simple geometry +
  • selecting contour interval: depends on slope and resolution +
+
+ +
+

Contours from lidar

+

Contours from binned DEM and from a DEM inetrpolated with smoothing splines +

+ +

+
+ +
+

3D parametric meshes

+

When features cannot be represented by bivariate function, parameteric meshes are used +

+ +

+
+ +
+

Point clouds

+

+

    +
  • Set of $(x, y, z, r, i, ...)$ measured points reflected from Earth surface or objects on or above it, +
      +
    • $x,y,z$ are georeferenced coordinates +
    • $r$ is the return number and +
    • $i$ is intensity, +
    • r:g:b may be also measured +
    +
  • Formats + +
+
+ +
+

Multiple return point clouds

+

+ +

+
+ +
+

Multiple return point clouds

+

+ + +

+

Bare ground points (yellow x) are sparser in vegetated areas +

+ +
+

Point cloud processing

+

+

    +
  • filtering outliers (birds etc.) +
  • resolving swath overlaps +
  • classification +
      +
    • bare earth point extraction +
    • canopy extraction +
    • structures and power lines extraction +
    +
  • computing DEMs +
+

+
+ +
+

Point cloud analysis: binning

+

+Binning: fast method for analyzing point clouds and generating DEMs using per-cell processing +

    +
  • analysis: number of points per cell, range, stddv +
  • Methods for DEM: mean, min, max, nearest +
  • sufficient for many applications +
  • no need to import the points, on-fly raster generation +
  • may be noisy, include no-data spots +
+
+ + + +
+

Point elevation binning

+

Jockey's Ridge 1999: +unfiltered single return lidar: 1m grid cell binning using nearest neighbor elevation +

+

Result has many NULL cells – what to do? +

+ +
+

Point elevation mean

+

Jockey's Ridge 1999, +
3m grid cell binning using mean elevation +

+

Result is somewhat fuzzy – what to do? +

+ +
+

Interpolated DEM

+

Jockey's Ridge 1999, +
1m DEM interpolated by RST spline method +

+

Note visible edges from overlapping swaths +

+ +
+

Point density: 2013 Wake county lidar

+

Number of points per 1m grid cell: +
all returns and first return, high density in overlap +

+ +

+
+ +
+

Point density: 2013 Wake county lidar

+

Number of points per 1m grid cell: all returns and bare ground returns +

+ +

+

Compute DSM and DTM using nn, mean or max cell elevation in the assignment. + +

+ +
+

DSM with orthophoto

+DSM (1m res) computed from all returns using nn elevation binning, with draped orthophoto +

+

+ +
+

Interpolated DTM

+DTM (1m res) interpolated with RST method using filtered bare ground points +

+

+ +
+

Interpolated DSM

+DSM (1m res) interpolated with RST method using first return points +

+

Think about how to compute canopy and building height from DSM and DTM + +

+ +
+

Lidar and UAS DSm fusion

+Lidar-based DSM can be efficiently updated with DSM generated from UAS imagery using structure from motion +

+

+Petrasova, A., Mitasova, H., Petras, V., Jeziorska, J., 2017, Fusion of high-resolution DEMs for water flow modeling, Open Geospatial Data, Software and Standards 2(6), DOI: 10.1186/s40965-017-0019-2 +

+ +
+

Voxel model: Vegetation structure

+Multiple return lidar point cloud: voxel model used to derive 3D vegetation fragmentation index +

+

+Petras V., Newcomb D.J., Mitasova, H., 2017, Generalized 3D fragmentation index derived from lidar point clouds, Open Geospatial Data, Software and Standards 2(9), DOI: 10.1186/s40965-017-0021-8 +

+
+ + + +
+

Summary

+
    +
  • rapid evolution of 3D mapping technologies +
  • digital elevation models: DTM, DSM, DCM, BDEM +
  • regular grid (raster) +
  • triangular irregular networks +
  • isolines and meshes +
  • point cloud analysis and binning +
  • lidar and UAS +
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/geospatialdata.html b/lectures/geospatialdata.html new file mode 100644 index 00000000..a03ffcc7 --- /dev/null +++ b/lectures/geospatialdata.html @@ -0,0 +1,688 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geospatial data acquisition

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Learning objectives

+
    +
  • Understand the diversity of geospatial data sources
  • +
  • Classify modern mapping technologies
  • +
  • Understand the concept of georeferenced data
  • +
  • Explain differences between the basic coordinate reference systems (CRS)
  • +
  • Use CRS standards to find parameters for a given CRS
  • +
  • Understand concept of re-projection between CRSs
  • + +
+
+ +
+

Geospatial data acquisition

+

Current revolution in mapping technologies: +

continuous data collection anywhere by anyone +
+ +

+ +
+

Professional mapping technologies

+

+

    +
  • passive and active aerial and satellite sensors +
  • ground-based sensors: (RTK)GPS, total station, lidar +
  • in situ sensors for measuring environmental variables + such as air quality, river stages, water quality, soil moisture +
+

+Emergence of autonomous platforms: air, ground, water

+

+ + + +

+ +
+

Remote sensing: passive

+

Numerous satellite and airborne platforms and sensors, for example: +

    +
  • +Landsat 1-9: landcover since 1972, 30m, multispectral +
  • +Terra: MODIS temperature 250m; ASTER radiance, DEM +
  • +SENTINEL 1-5P: landcover, temperature, ocean currents, atmosphere, multispectral +
  • + +PLANET: new generation of small satellites: 170 small satellites mapping Earth daily at 3m resolution +
+See overview of Remote Sensors by NASA +

Learn in GIS512 Introduction to Environmental Remote Sensing +

+

+ +
+

Remote sensing: active

+

Satellite and airborne platforms and sensors, examples: +

+

+See overview of Remote Sensors by NASA +

Learn in GIS512 Introduction to Environmental Remote Sensing +

+ +
+

Satellite Remote Sensing

+

SRTM and LANDSAT example for Panama: +

+ + +
+ + +
Images and data by NASA and NCSU MEAS +

+ +
+

Satellite Remote Sensing

+

PLANET images for Jockey's Ridge change between September 2017 and July 2018 mapped at 3m resolution: +

+ +

+Data by planet.com +

+ +
+

Airborne Remote Sensing

+

Lidar and orthophoto example for NCSU fields - sub-meter resolution mapping: + +

+ +

Most current systems combine active and passive sensors +

+ +
+

Airborne Remote Sensing

+

3D construction site mapping at cm resolution using small unmanned aerial system (drone) +

+ +

Mapped in 2021 by William Reckling, NCSU graduate student +
NCSU GeoForAll Lab 3D models from UAS on sketchfab, +
learn in GIS584 Mapping and Analytics Using UAS
+

+ +
+

Ground-based passive

+

Airborne orthophoto compared with on-ground mobile 360 degree camera streetview +

+ +

Credits: Orthphoto from NC One Map, Ground-based image from Google streetview +

+ +
+

Ground-based active

+

Terrestrial lidar: monitoring eroding stream bank at mm resolutions +

+ +

Credits: Photo and data by Nathan Lyons, NCSU graduate student, 3D model by Helena Mitasova +

+ + + +
+

Non-traditional data sources

+

Widespread GPS enabled technology: +

+

    +
  • smartphones, tablets (GPS and lidar) +
  • webcams (AMOS) +
  • mobile sensor networks : cars, bicycles, scooters +
  • smart devices (internet of things): trash cans, utilities +
+ + +

Time spent by a group of people along a guided tour, displayed over a lidar-based DSM, learn more in +Mitas et al., 2020 +

+ + + +
+

From mapping to GIS

+

+Acquired data are transformed into georeferenced, +discrete representations of landscape features +

+

    +
  • georeferencing (often in real-time using GPS) +
  • feature or theme extraction (e.g. image classification) +
  • building GIS data model representation
    (geometry, attributes, time) +
  • generating metadata +
+
+ +
+

Georeferencing

+

+Georeferenced data: location on Earth is represented in a Coordinate Referenced System (CRS) +

+

    +
  • geodetic (geographic) coordinate system: +
    geoid -- ellipsoid -- latitude/longitude +

    +

  • projected reference systems: +
    geoid -- ellipsoid -- developable surface -- plane -- x,y +
+
+ +
+

Geodetic (Geographic) CRS

+

geoid -- ellipsoid -- latitude/longitude +

+ + +

    +
  • GPS, large regions, data exchange +
  • units: degree-minutes-seconds +
  • complex algorithms for distances, areas +
+

+
+ +
+

Projected CRS

+

+Projected reference systems (there are many): +
geoid -- ellipsoid -- developable surface -- plane -- x,y +

+

    +
  • developable surfaces: conic, cylindrical, azimuthal +
  • type of distortion: conformal, equidistant, equal area +
+

Map projection transitions + +Cartographic projections by Furuti +

+
+ +
+

National and state CRS

+

+Defined by: +

    +
  • Reference spheroid/geoid and datum:
    e.g. GRS80-NAD83, WGS84, NATR2022 +
  • Projection and its parameters, e.g. : +
      +
    • Lambert Conformal Conic (LCC): states in US +
    • Universal Transverse Mercator (UTM): USGS, military +
    • Albers Equal Area (conic): USGS national map +
    +
  • Vertical datum: e.g. NAVD88, NAPGD2022 +
+

+NAD83 and NAVD88 to be replaced +with North American Terrestrial Reference Frame (NATR2022) and North American-Pacific Geopotential Datum of 2022 (NAPGD2022) +

+ +
+

CRS standards

+

+International Organization of Oil and Gas Producers (OGP) Surveying and Positioning Committee, +established standard for CRS definition with assigned EPSG codes +(initiated by European Petroleum Survey Group - EPSG) +

Find the codes and CRS representation in many formats here epsg.io +Example: EPSG:4326 WGS84 used in GPS, or at +Spatial Reference website +

+Transition to ISO WKT 19162:2018 international standard notation (WKT:well known text, text markup language) +

+ + + +
+

Popular Visualization CRS

+

+Most common in on-line mapping systems: +
Pseudo-Mercator +

+EPSG statement +

We have reviewed the coordinate reference system used by Google, etc. +and believe that it is technically flawed. We will not devalue the EPSG dataset by +including such inappropriate geodesy and cartography. +
+In 1989, North American professional geographic organizations +called for a ban on all rectangular coordinate maps (especially Mercator). +

+

+https://geography.about.com/library/weekly/aa030201b.htm +
https://demonstrations.wolfram.com/WorldMapProjections/ +

+
+ + + +
+

Popular Visualization CRS

+

+World map in Pseudo Mercator with massive distortions farther from the equator, +compared with Winkel-Tripel projection with more realistic representation +

+ +Pseudo Mercator was eventually included as +EPSG 3857 +- it is not recommended for professional work +

+ +
+

Coordinate systems in GIS

+Representation of coordinate systems in GIS +
    +
  • Metadata file +
  • EPSG codes +
  • ESRI PRJ file +
  • PROJ format +
  • Transition towards ISO WKT 19162:2018 international standard notation (WKT) +
+ +

+
+ +
+

Coordinate transformations

+

+Geospatial data often come in different CRS, e.g.: +

    +
  • Federal agencies: Geodetic CRS (WGS84), Albers equal area, UTM +
  • State agencies: State Plane CRS +
  • Older data may have different datums (NAD27, NAD83) +
+

+Coordinate transformations +

+x,y -> longitude, latitude -> x’,y’ +

+often performed on-fly, may be inaccurate and time consuming +

    +
  • first reproject all data into a suitable common CRS +
  • then perform analysis and modeling +
+

+
+ +
+

Summary

+
    +
  • we provided overview of modern technologies for geospatial data acquisition +
  • we explained the concept of coordinate reference systems and related standards +
+
+ + + +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/geovisual.html b/lectures/geovisual.html new file mode 100644 index 00000000..89219526 --- /dev/null +++ b/lectures/geovisual.html @@ -0,0 +1,793 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Geovisualization

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Outline (learning objectives)

+

+

    +
  • display of raster and vector data: scaling properties +
  • color ramps for raster data, relief shading + +
  • 3D visualization: single and multiple surfaces +
  • dynamic visualization with animations +
  • tangible interaction +
  • Web GIS cartography +
+
+ +
+

Role of geovisualization

+

+

    +
  • Visual analytics: highlight spatial patterns or features +

    +

  • Communication of geospatial information +

    +

  • Example: Explore Global Weather Conditions at + +earth by Cameron Beccario +

    Near-real time dynamics, presented in several projections +

+
+ +
+

Display of raster and vector data

+ +
    +
  • all data displayed on computer screen are rasters, +what you see is controlled by the resolution of your map display +
  • raster data: as we zoom in, raster grid cells become visible, +reinterpolate to higher resolution to smooth out the effect +
  • vector data: vertices are connected by rasterized line, it is scalable, limited +only by the dispaly resolution +
+
+

+

+
+ +
+

Display of large rasters

+ If the number of rows or columns in a raster is greater than those of map display, +
not all pixels are visible (red): convert to vector representation (blue)
+
+
+ + +
Example:3000x3000 raster in 1000x1000 window only every third pixel shown, +zoom to 500x500 subset shows all pixels. + +
+ +
+

Working with color

+

+

    +
  • Color components: hue, brightness, and saturation +
  • Quantitative representation: Red + Green + Blue +
  • Color for raster data: discrete or continuous +
  • Continuous interpolates RGB values based on the values in the raster map +
  • Color for vector data: usually discrete by definition +
+

+Learn more about color (see supplemental material) + +

+ +
+ +
+

Colors for discrete raster data

+
    +
  • quantitative data: constant hue, color intensity is a function of values +
  • qualitative data: constant intensity, varied discrete hue +
+

+ +

+

Soil erodibility (see units here) and Soil ID maps + +

+ +
+

Colors for continuous raster data

+
    +
  • continuous color highlights continuous property +
  • discrete color: convert the continuous data to discrete classes; some information is lost +
+

+
note: default color ramp for FP maps is often greyscale with uniform interval

+
+ +
+

Colors for continuous raster data

+

+Distribution of color based on uniform raster data intervals +

+

+

Uniform intervals work for elevations in Piedmont, +but for entire NC this approach highlights that most NC is flat coastal +plane but we don't see its subtle topography structure

+
+ +
+

Histogram equalized color

+

Distribution of color based on histogram of raster data values and a custom color ramp +

+
Assigns color based on intervals which cover approximately the same area. +Highlights topography structure but distorts the elevation differences +

+ +
+

Color for non-linear distributions

+
    +
  • Flow accumulation data range over several magnitudes +
  • Uniform interval color ramp +
+

+

The flow accumulation values range between 1 and 73000 with large number of cells with +small values and small number of cells with very large values

+
+ +
+

Color for non-linear distributions

+
    +
  • Flow accumulation data range over several magnitudes +
  • Histogram equalized color ramp: green-yellow-blue +
+

+

The high flow accumulation which represents the main streams is lost.

+
+ +
+

Color for non-linear distributions

+
    +
  • Flow accumulation data range over several magnitudes +
  • Logarithmic color ramp: green-yellow-blue +
+

+

Highlights the main streams with good representation of smaller streams

+
+ +
+

Color for non-linear distributions

+
    +
  • Convert to vector model with stream order +
  • Color, width based on stream order +
+

+

GRASS GIS workflow provided in +GRASS GIS for Designers by Brendan Harmon

+
+ +
+

Color ramps for continuous data: summary

+
    +
  • discrete: based on discrete categories derived from continuous data +
  • continuous: colors (R,G,B) are interpolated based on raster data values +
  • histogram equalized: colors are distributed based on the raster map histogram +
  • logarithmic +
  • see +supplemental material for many others and explanation of the best practices +
+ + +
+

Maps with relief shading

+
    +
  • Color composite highlights relationship between +
      +
    • the theme values represented by hue +
    • surface structure represented by brightness derived as shaded relief (illuminated topography) +
    +
+

+

+ +
+

Relief shading

+

Resulting color composite for elevation theme +

+

+ +
+

Relief shading

+

Color composite for flow accumulation with elevation +

+ +

+ + + +
+

From image to map

+
    +
  • Display of raster and vector data does not make a map +
  • Map: cartographic representation of geospatial data +
  • Map elements position the image on earth and explain the content +
+
+ + + +
+

Map elements

+
    +
  • data frame - map content image +
  • elements outside the map image +
      +
    • legend and title, scale and north arrow +
    • coordinates, citation, metadata +
    +
+
+ +

Images from report by Hahn, GIS582 and +Corey White et al, 2022, +Rapid-DEM: Rapid Topographic Updates through Satellite Change Detection and UAS Data Fusion. Remote Sensing 14(7), 1718.

+
+ +
+

Visualization in 3D perspective

+
    +
  • Projection of 3D object into a 2D space: perspective +

    +

      +
    • paralel lines intersect in vanishing point(s) +
    • scale depends on distance from the viewer +
    • only visible part of surface is rendered: +interactive exploration is important for viewing obstructed data +
    +
+

+

+ +
+

Parameters of 3D perspective

+
    +
  • viewing position (height, distance and angle) +
  • surface position, z-scale, resolution +
  • surface color: raster map, vector data +
+

+ + +

+ +
+

Light and shading

+

Important for visual representation of surface structure +

Useful for identification of subtle features or artifacts +

+

+ +
+

Multiple surface visualization

+

Applications and properties +

    +
  • Lidar: bare ground and surface with vegetation +
  • Change in topography (coast, development) +
  • Geological or soil layers +

    +

  • Vertical scaling is important: vertical distances often 1-3 magnitudes smaller than horizontal +
  • Display: side-by-side or stacked +
  • Interactive cutting planes for exploration of stacked surfaces +
+
+ +
+

Multiple surface visualization

+

Side by side: Bare Earth and Vegetated Surfaces derived from lidar data +

+

+ +
+

Multiple surface visualization

+

Stacked surfaces with crossections +
+
+

+ + + +
+

Dynamic visualization: animations

+
    +
  • When to use animations: +

    +

      +
    • dynamic simulations: ocean surge, flooding, wind, pollution, migration, urban growth +
    • time series of data : migrating landforms, temperature, precipitation, melting of ice cap, urban growth +
    • method analysis – changing a parameter or crossections +
    +

    + + + +

+ + + +
+

Animations in 3D

+
    +
  • Dynamic process: overland flow simulation using path sampling method, time series +of particles and water depth maps draped over static DEM +
+

+ +

+ +
+

Animations in 3D: examples

+

Jockey's ridge: +Dynamic surfaces: series of changing surfaces, static viewing position +
+ +

+Mitas, O. et al., 2013, Managing Dune Landscape Changes at +Jockey's Ridge State Park, North Carolina, Tourism in Marine Environments 9(3-4), pp. 155-167. +

+
+ +
+

Space-time cube: landforms

+

Jockey's ridge: evolution of 16m elevation contour, isosurface evolving over time +
+

Animation by A. Petrasova, see also +Tateosian L., et al. 2014, Visualizations of Coastal Terrain Time-series, +Information Visualization, 13 (3) pp. 266 - 282. +

+ +
+

Animations for voxel models

+

3D vegetation structure from multiple return lidar point cloud: moving cross-section +

+

+Petras V., Newcomb D. J., Mitasova H, 2017. Generalized 3D fragmentation index derived from lidar point clouds. +

+ +
+

Animations in 3D

+

Fly-by: static features explored by moving viewing position +
Dynamic isourfaces from multi-temporal voxel model +

+ +

See more examples here +

+ +
+

Web-based visualization

+Interactive 3D visualization supported by WebGL +

Point cloud viewer +

Kepler: vector data display and analysis + +

Kepler Lab by Corey White +

+ +
+

Tangible Landscape

+

Bringing people together around GIS: Tangible user interface for GRASS GIS +

Designed to make working with geospatial data and simulations engaging, and fun

+

+ +

+Petrasova, A. et al. (2018). Tangible Modeling with Open Source GIS. Second edition. Springer International Publishing. +https://doi.org/10.1007/978-3-319-89303-7 + +

+ +
+

How does it work?

+ +    +

Tangible Landscape couples a digital and a physical model through a continuous cycle of 3D scanning, geospatial modeling, and projection

+
+ +
+

Interactions

+

+

+ +
+

Coupling with 3D rendering

+

+

+ +
+

Tangible Landscape for education

+

+ + +

TL Webinar +

+TL as a geosimulation environment in GIS714 +

+ +
+

Summary

+
    +
  • display of raster and vector data: scaling properties +
  • color ramps for raster data, relief shading +
  • map elements +
  • 3D visualization: single and multiple surfaces +
  • dynamic visualization with animations +
  • Web GIS cartography +
  • Tangible Landscape +
+
+ + + +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/grass.html b/lectures/grass.html new file mode 100644 index 00000000..74f71eec --- /dev/null +++ b/lectures/grass.html @@ -0,0 +1,916 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

+ Introduction to
+ GRASS GIS +

+

+ Helena Mitasova +
+ and Vaclav Petras

+

+ GIS/MEA582 Geospatial Modeling and Analysis + NCSU +

+
+ +
+

Learning Objectives

+

+This lecture is a brief introduction to GRASS GIS software +and overview of its features in the context of this course and +open source software in general. +

+
+ + +
+

Open Source and Licensing

+
    +
  • According to Stallman (2002), + there are four freedoms that as a user you should have: +
      +
    • the freedom to use the software for any purpose, +
    • the freedom to change the software to suit your needs, +
    • the freedom to share the software, and +
    • the freedom to share the changes you make. +
    +
+
+ +
Logo of GNU GPL license, version 3
+
+

+ +Stallman, R. M. (2002). Free software, free society: selected essays. Ed. by J. Gay. 1st. ed. OCLC: +253840339. Boston, Mass: Free Software Foundation. 220 pp. ISBN 978-1-882114-98-6. + +

+ + +
+

Free, Libre, and Open Source

+ +
    +
  • + free software (FS), + open source software (OSS), + free and open source software (FOSS), + free, libre and open source software (FLOSS) +
  • the term open source is often used for simplicity +
      +
    • often used by developers as it refers to a development model +
    +
  • the term FOSS is often used in geospatial community +
      +
    • free refers to user's freedom +
    • open source refers to open development model +
    • FOSS4G (free and open source software for geospatial) +
    +
+
+ + +
+

Commercial and FOSS

+ +
    +
  • FOSS can be used commercially +
  • FOSS can be commercial but not proprietary +
  • FOSS can be used to build closed platforms +
  • Famous FOSS examples (non-geospatial): +
      +
    • Red Hat Enterprise Linux/CentOS +
    • Android/Android Open Source Project +
    • Chrome/Chromium, Firefox +
    • WordPress, Drupal +
    • Moodle +
    • Python, R +
    • + Apple, + Google, + Facebook, + Amazon, + Netflix +
    +
+ +
+ + +
+

FOSS Ecosystem: Example of a Scientific Desktop Setup

+
+
QGIS, GRASS GIS
+
+GIS, remote sensing, cartography +
+
R, Octave, Python
+
+statistics, linear algebra, scripting, automation +
+
SQLite, PostgreSQL with PostGIS, LibreOffice
+
+database, tabular data +
+
Inkscape, Gimp, ImageMagic
+
+vector graphics, raster graphics +
+
+
    +
  • Portability: works on Mac, Linux, Windows +
  • Interoperability: programs designed to work with others +
+
+ + +
+

FOSS Ecosystem: Example of a Service Setup

+ +
+
GRASS GIS, R, SAGA GIS, GDAL
+
+backend processing +
+
OpenLayers or Leaflet, Django or Flask
+
+front end +
+
PostgreSQL with PostGIS
+
+database (spatial and non-spatial data storage) + +
+
ZOO-Project, PyWPS, GeoServer, or QGIS Server
+
+processing server and spatial data publishing server + + +
+
+ +
    +
  • Flexibility: standards and open formats allows to switch different components +
  • Scalability: can be copied to more machines at no cost +
+
+ +
+

GRASS GIS

+

+GRASS GIS (Geographic Resources Analysis Support System) is a Free and Open Source Software suite +for geospatial data management and analysis, image processing, spatial modeling, and visualization. +

+grass.osgeo.org +

+Source code in github +

+ +
+

GRASS GIS

+ Timeline: +
    +
  • 1983 started at US Army CERL + + as land management system + +
  • evolved into general purpose GIS +
  • 1999 GNU GPL, international team of developers +
  • 2008 OSGeo Project +
  • 40+ years of GRASS GIS development +
+ +
+ +
+

Historical Video

+

+ Historical promotional video from 1987 narrated by William Shatner +

+ +

+ watching 1 minute is sufficient to get the idea, + optionally you can watch the whole 15 minutes + and see metadata and transcript at + doi.org/10.5446/12963 +

+
+ +
+

Software Implementation

+
    +
  • portable: +
      +
    • many operating systems: MS Windows, Mac OS, Linux, ... +
    • high-end desktops, low-end laptops, + Raspberry Pi, + High-Performance Computing clusters, ... +
    +
  • single integrated software +
  • functionality implemented as 500+ tools (modules) +
  • written in C and Python +
+ + +
+ + +
+

Processing Capabilities

+
+
raster and 3D raster
+
+ map algebra, DEM, interpolation, flow, neighborhood, solar, cost surfaces, ... +
+
imagery (remote sensing)
+
+ rectification, multispectral, classification, segmentation, PCA, FFT, ML, ... +
+
vector and database
+
+ buffers, overlays, networks, topology, attribute management, SQL, ... +
+
spatio-temporal data (time series)
+
+ sampling, statistics, aggregation, temporal topology, algebra, ... +
+
+ +
+ + +
+

General Capabilities

+
+
visualization
+
+ 2D display, 3D visualization, temporal visualization, PNG, PS and PDF maps, ... +
+
interoperability
+
+ import from and export to different formats, WMS, ... +
+
extensibility
+
+ scriptable (e.g. Python), custom tools (typically Python or C), ... +
+
+ +
Visualization of a planned drone flight over digital surface model with ortho +
+ + +
+

Naming Convention for Tools (Modules)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PrefixFunctionalityExample
r.raster processingr.mapcalc: raster map algebra
v.vector processingv.surf.rst: interpolation from points to raster
g.general managementg.remove: removes maps
d.display, renderingd.rast: display raster map
i.imagery processingi.segment: image segmentation
r3.3D raster processingr3.stats: 3D raster statistics
t.temporal data processingt.rast.aggregate: temporal aggregation
+ +
+ + +
+

User Interfaces

+

+Tools (modules) can be accessed using: +

+

    +
  • Graphical User Interface (GUI) +
  • Command Line Interface (CLI) +
  • Python +
  • Third party interfaces (QGIS, R, ...) +
+ +
+ + +
+

Graphical User Interface

+
    +
  • The interface for a desktop +
+
+ + +
+ + +
+

GUI for tools (modules)

+
    +
  • All tools have standardized, unified interface layout. +
+
+ +

+Standard dialog (form) for the r.neighbors tool (module) generates also the command line version +

+
+ + +
+

Command Line

+
    +
  • The baseline interface for efficiency and reproducibility +
  • Available in GUI as Console with autocomplete functions +
    r.fill.dir input=elev output=fill direction=dir
    +
    +
  • and in terminal in Linux or Mac +
+ +
+ + +
+

Python

+
    +
  • grass package part of GRASS GIS +
  • access to tools (modules), but also to internal C functions +
  • integrated Python editor +
  • integrates with Jupyter Notebooks +
+
import grass.script as gs
+gs.run_command('r.fill.dir', input='elev',
+               output='fill', direction='dir')
+
+ +
+ + +
+

Duality between GUI and commands

+
+ +
+
+ Command line (Bash): +
+ + Python: +
+ +
+

+Examples in documentation and class instructions are +provided as commands which can be used to fill-in GUI, write Python +code, or run directly. +

+
+ + +
+

3rd Party Interfaces

+
    +
  • QGIS (Processing Plugin and GRASS Plugin) +
  • R (rgrass package) +
  • ... +
+
+ +
+ + +
+

3rd Party Interfaces

+
    +
  • Tangible Landscape +
      +
    • tangible user interface to GRASS GIS and Blender +
    • by NC State University, Center for Geospatial Analytics +
    +
+ + +

+Tools running: v.surf.rst, r.contour, r.fill.dir, r.sim.water +
see also Petrasova et al., 2018, Tangible Modeling with Open Source GIS, 2nd edition, Springer +

+
+ +
+

Documentation: Users manual

+Each tool (module) has a standardized manual page + +
+ +
+

Public Author & Accessible Code

+Manual page includes the author's name(s) and a link to source code +

+ +

+ + +
+

Link to Research Papers

+If available, the manual page also includes references to papers describing +the methods and algorithms in the tool +

+ +

+ +
+

Continuing development

+ +
+ +

+Example application: summer solstice solar radiation dynamics on lidar DEM (Centennial Campus) +

+
+ + + +
+

Addons Repository

+
    +
  • 300+ user contributed tools +
  • integrated with g.extension +
  • including compiled C and C++ for MS Windows +
  • automatically generated GUI + for Python and C/C++ +
+
+ +example from d.vect.thematic addon manual page + +
+ + + + + +
+

Try GRASS GIS with Jupyter Notebooks

+GRASS GIS workshops and tutorials implemented as Jupyter Notebooks in Binder: + +
+ + +
+

Summary

+
    +
  • General free and open source concepts +
  • Licensing: No "purchasing of licenses" needed for users +
  • Brief GRASS GIS overview: example open source geospatial software +
      +
    • processing capabilities +
    • several user interfaces +
        +
      • Class instructions are using GUI and command line +
      • Python and Jupyter are recommended for the projects +
      +
    • addon tools +
    + +
+
+ +
+ +
+ + +
+ +
+ +
+ + + + + + + + diff --git a/lectures/hydro_erosion.html b/lectures/hydro_erosion.html new file mode 100644 index 00000000..21d56fd7 --- /dev/null +++ b/lectures/hydro_erosion.html @@ -0,0 +1,702 @@ + + + + + + + + Lecture slides for GIS/MEA582 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+

Hydrologic and Erosion Modeling

+

+ Helena Mitasova

+

+ GIS/MEA582 Geospatial Modeling + NCSU +

+
+ +
+

Learning objectives

+

+

    + +
  • identify geospatial modeling of landscape processes +
  • distinguish spatially averaged and distributed models + +
  • compare methods for spatial hydrologic modeling +
  • apply modeling soil erosion, sediment transport and deposition +
+
+ +
+

Geospatial modeling of processes

+

+

    +
  • Numerical simulations: tools for gaining new knowledge - virtual experiments +
  • Geospatial numerical simulations: the modeled quantities are function of a location on Earth +

    +

  • Geospatial models have evolved: +
      +

      +

    • from: empirical, spatially averaged, static +

      +

    • to: process-based, spatially explicit and dynamic with + the aim to predict modeled quantity at any point in space and time +
    +

    +

  • Most geospatial models combine empirical and process-based approaches +
+
+ + + +
+

Modeling components

+

+

    +
  • Modeled quantity: + water depth [m], discharge [m$^3$/s], pollutant concentration[mg/l] +
  • Spatial and temporal scale: + e.g. modeling a first order stream may require 1m spatial and 1 min temporal resolution +
  • Configuration space and interactions: + water depth depends on precipitation, topography, soils, land use +
  • Governing equations: + continuity equations, diffusion, ... +
+
+ +
+

Geospatial representation

+

+

    +
  • Modeled quantities and environmental variables can be represented by continuous georeferenced fields +
  • To support numerical simulations these fields need to be discretized: +

    +

      +
    • spatially averaged units: discrete polygons (hydrologic units, hillslope elements, landscape patches) +
    • spatially distributed representation: structured and unstructured meshesi (grids), or random particles +
    • modeled quantities can also evolve along networks (streams, sewer networks) or represent discrete objects (particles, agents)

      +
    +
+ +
+

Spatially averaged models

+
    +
  • Spatially averaged models predict the modeled variable for each averaged unit, such as watershed, +the result is discrete polygons or a number +
+

+

+ +
+

Spatially distributed models

+
    +
  • Spatially distributed or spatially explicit models predict +the variable at any point in space and the result is continuous field +
+

+

+ + + +
+

Geospatial modeling and GIS

+

+

    +
  • workflow using standard GIS tools: simple empirical models with physics based components +
  • models fully integrated as modules: complex physics-based or empirical models +
  • models linked to GIS as extensions or add-ons: common structure and interface +
  • complex modeling systems linked through data: GIS is used for input data processing, +results analysis and visualization, but the model is independent from GIS. +
  • complex modeling systems can incorporate selected GIS capabilities +
+
+ + +
+

Hydrologic modeling

+

surface water flow +

+ +
+

Empirical model: Rational equation

+
    +
  • Simplest approximation of discharge from small watersheds +
  • Assumes steady state, uniform rainfall excess and constant velocity +
  • Discharge is then sum of rainfall excess produced by each grid cell routed to the outlet +
+
+ +
+

Rational equation

+

+$$ Q = C \, i \, A $$ +

+

    +
  • $Q$ [$\rm m^3/s$] is maximum rate of runoff (discharge) +

    +

  • $C$ is runoff coefficient + (ratio of rainfall that becomes runoff : forest 0.05-0.25, pavement 0.75-0.95) +

    +

  • $i$ [$\rm m/s$] average rainfall intensity +

    +

  • $A$ [$\rm m^2$] is upslope contributing area +

    +

  • to determine $i$ we need time to concentration +(time water needs to flow along the longest flowpath to reach the outlet), +duration of rainfall needed to reach the steady state +
+ +
+ +
+

Rational equation

+

+$$ Q = C \, i \, A $$ +

+ + + +

+ +
+

Spatially Distributed Models

+From geometry-based routing to continuity equation +

+

+
    +
  • a) DEM with depression
  • +
  • b) least cost path
  • +
  • c) depression as sink
  • +
  • d) water accumulates is depression: kinematic wave
  • +
  • e) water fills depression and flows out: diffusive wave
  • +
  • f) predefined channel through depression
  • +
+
+ + +
+ +
+

Dynamic Hydrologic Models

+Flow modeling with diffusion term: process-bsed simulation of flow through depression +

+

Instead of filling the DEM, we fill the depression with water +

+ +
+

Path sampling method

+
    +
  • duality between particle and field representation +
  • path sampling: water evolving according to the shallow + water bivariate continuity equation - drift and diffusion +
+

+ +

+ +
+

Overland water flow

+

Path sampling based simulation of water flow within a small agricultural watershed +

+ +

Note simulation of ponding and dispersed flow over the road +

+ +
+

Water flow in a suburb

+

High resolution (sub-meter) modeling of runoff +

+ +

Note (a) the role of stream buffer in storing water and slowing down the flow, +(b) accurate routing of water on roads along curbs indicating high accuracy of the lidar-based DEM +

+ + + +
+

Soil erosion modeling

+
    +
  • Modeled quantity: sediment transport rate [kg/(ms)], net erosion/deposition rate [kg/(m$^2$s)] +
  • Spatial and temporal scale: from hillslopes to watersheds, minutes (storms), annual rates +
  • Configuration space and interactions: sediment transport depends on water flow, topography, soil properties, land use +
  • Governing equations: continuity equation, diffusion, proliferation and decay +
+
+ +
+

Sediment transport equations

+

+Assuming steady state flow, sediment transport by shallow water flow +$q_s$ [kg/(ms)] can be approximated by sediment transport capacity $T_c$: +

+$$ q_s \approx T_c = K_T A^m (\sin \gamma)^n$$ +

+

    +
  • where $A$ is contributing area as measure of water flow +
  • $K_T$ is transport capacity coefficient +
  • $\gamma$ is slope angle +
  • $m,n$ are empirical coefficients, control the relative influence of flow accumulation and slope +
+
+ +
+

Evolution of sediment transport

+Water flow accumulates during rainfall, lower slope at foot of hillslopes reduces +sediment transport capacity +

+ + +

+ +
+

Sediment transport capacity regimes

+Spatial pattern of sediment transport: prevailing sheet flow (a, m=0.6), +concentrated flow (b, m=1.5), spatially variable flow regime (c) +

+ +

+ +
+

Net erosion and deposition

+

+Net erosion and deposition rate = +change in sediment transport capacity $T_c$ in the direction of flow $\alpha$ = +divergence of the sediment transport vector field: + +

+$$d_s =\nabla\cdot {\bf q}_s \approx {\partial (T_c \cos \alpha ) \over {\partial x}} + {\partial (T_c \sin \alpha ) \over {\partial y}}$$ +

Equation is easy to compute using functions for partial derivatives and map algebra. Note that partial derivatives + of a surface can also be computed using its slope $\beta$ and aspect $\alpha$ and keep in mind that instead of elevation our surface is the sediment +transport capacity field: + +

+$$ {{\partial z} \over {\partial x}} = \tan \beta \cos \alpha $$ +$$ {{\partial z} \over {\partial y}} = \tan \beta \sin \alpha $$ +

+ +
+

Net erosion and deposition

+Spatial pattern of net erosion and deposition estimated as change in sediment transport capacity +

+ + +

Net erosion and deposition draped over sediment transport capacity surface (left) and draped over +elevation surface (right) +

+ +
+

Net erosion-deposition regimes

+Spatial pattern of erosion-deposition for: +
sheet flow (a, m=0.6), concentrated flow (b, m=1.5) and spatially variable flow regime (c) +

+ +

+ +
+

Empirical equations

+Universal Soil Loss Equation (USLE, RUSLE) +$$E=R.K.L.S.C.P$$ +where empirical factors/coefficients are: +
    +
  • R - rainfall erosivity factor +
  • K - soil erodibility factor +
  • L - hillslope length or contributing area +
  • S - slope steepness factor +
  • C - cover-management factor +
  • P - protection measures factor +
+

+$L$ is a function of water flow over tilted plane, for complex topography +we can replace it by $A$, upslope contributing area and modify RUSLE +to estimate sediment transport capacity and net erosion-deposition +as a change in sediment transport in the direction of flow. + +

+ +
+

Sediment transport capacity

+Application to small rural watershed with spatially variable land cover +

+ +

+ +
+

Net erosion and deposition

+Application to small rural watershed with spatially variable land cover +

+ +

Read +Brief theoretical background document for detailed description of the equations and units +used in the assignment + +

+ +
+

Land use change application

+

Impact of construction on overald flow and erosion +

+

Note the highest erosion rates along the stream banks +

+ +
+

Summary

+
    +
  • we defined spatially averaged and distributed models and explained linking GIS and landscape process modeling +
  • we compared methods for spatial hydrologic modeling from simple empirical equation to process-based models +
  • we explained modeling soil erosion, sediment transport and deposition using empirical and processed based models +
  • we learned about applications of flow modeling using high resolution, lidar-based DEMs +
+
+ +
+ + +
+ + + + + + +
+ +
+ + + + + + + + diff --git a/lectures/img/4x1white.jpg b/lectures/img/4x1white.jpg new file mode 100644 index 00000000..1d1c2a7a Binary files /dev/null and b/lectures/img/4x1white.jpg differ diff --git a/lectures/img/GRASS8_4GUI.jpg b/lectures/img/GRASS8_4GUI.jpg new file mode 100644 index 00000000..bbb7b1a0 Binary files /dev/null and b/lectures/img/GRASS8_4GUI.jpg differ diff --git a/lectures/img/Headergeoforall_NCSU.jpg b/lectures/img/Headergeoforall_NCSU.jpg new file mode 100644 index 00000000..834f9fd4 Binary files /dev/null and b/lectures/img/Headergeoforall_NCSU.jpg differ diff --git a/lectures/img/JR_animation_2014.gif b/lectures/img/JR_animation_2014.gif new file mode 100755 index 00000000..82ec4eb4 Binary files /dev/null and b/lectures/img/JR_animation_2014.gif differ diff --git a/lectures/img/Mapalgebra_ndvi.jpg b/lectures/img/Mapalgebra_ndvi.jpg new file mode 100644 index 00000000..97afe7c6 Binary files /dev/null and b/lectures/img/Mapalgebra_ndvi.jpg differ diff --git a/lectures/img/addon_example_dvect.them2.jpg b/lectures/img/addon_example_dvect.them2.jpg new file mode 100644 index 00000000..dd0d8d19 Binary files /dev/null and b/lectures/img/addon_example_dvect.them2.jpg differ diff --git a/lectures/img/analysis_basicraster/LU_1cat_streetslg.png b/lectures/img/analysis_basicraster/LU_1cat_streetslg.png new file mode 100644 index 00000000..aa42619c Binary files /dev/null and b/lectures/img/analysis_basicraster/LU_1cat_streetslg.png differ diff --git a/lectures/img/analysis_basicraster/LUdiversity.png b/lectures/img/analysis_basicraster/LUdiversity.png new file mode 100644 index 00000000..e457ec52 Binary files /dev/null and b/lectures/img/analysis_basicraster/LUdiversity.png differ diff --git a/lectures/img/analysis_basicraster/MajorityLU_watersheds_roads.png b/lectures/img/analysis_basicraster/MajorityLU_watersheds_roads.png new file mode 100644 index 00000000..b8f6d1d9 Binary files /dev/null and b/lectures/img/analysis_basicraster/MajorityLU_watersheds_roads.png differ diff --git a/lectures/img/analysis_basicraster/SECREF2010_googlemap.jpg b/lectures/img/analysis_basicraster/SECREF2010_googlemap.jpg new file mode 100644 index 00000000..8d5703e5 Binary files /dev/null and b/lectures/img/analysis_basicraster/SECREF2010_googlemap.jpg differ diff --git a/lectures/img/analysis_basicraster/aspect-reclass.png b/lectures/img/analysis_basicraster/aspect-reclass.png new file mode 100644 index 00000000..6d823296 Binary files /dev/null and b/lectures/img/analysis_basicraster/aspect-reclass.png differ diff --git a/lectures/img/analysis_basicraster/aspect360.jpg b/lectures/img/analysis_basicraster/aspect360.jpg new file mode 100644 index 00000000..e92c25cd Binary files /dev/null and b/lectures/img/analysis_basicraster/aspect360.jpg differ diff --git a/lectures/img/analysis_basicraster/cfacbare.jpg b/lectures/img/analysis_basicraster/cfacbare.jpg new file mode 100644 index 00000000..bf78fa8a Binary files /dev/null and b/lectures/img/analysis_basicraster/cfacbare.jpg differ diff --git a/lectures/img/analysis_basicraster/cfacgrow.jpg b/lectures/img/analysis_basicraster/cfacgrow.jpg new file mode 100644 index 00000000..4f809531 Binary files /dev/null and b/lectures/img/analysis_basicraster/cfacgrow.jpg differ diff --git a/lectures/img/analysis_basicraster/dem_1m.jpg b/lectures/img/analysis_basicraster/dem_1m.jpg new file mode 100644 index 00000000..f7b203b9 Binary files /dev/null and b/lectures/img/analysis_basicraster/dem_1m.jpg differ diff --git a/lectures/img/analysis_basicraster/elev_correl.png b/lectures/img/analysis_basicraster/elev_correl.png new file mode 100644 index 00000000..d5e4f186 Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_correl.png differ diff --git a/lectures/img/analysis_basicraster/elev_dem1mhist.png b/lectures/img/analysis_basicraster/elev_dem1mhist.png new file mode 100644 index 00000000..1648b870 Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_dem1mhist.png differ diff --git a/lectures/img/analysis_basicraster/elev_rural_10m.jpg b/lectures/img/analysis_basicraster/elev_rural_10m.jpg new file mode 100644 index 00000000..177d1942 Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_rural_10m.jpg differ diff --git a/lectures/img/analysis_basicraster/elev_rural_30m.jpg b/lectures/img/analysis_basicraster/elev_rural_30m.jpg new file mode 100644 index 00000000..f520ef4e Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_rural_30m.jpg differ diff --git a/lectures/img/analysis_basicraster/elev_rural_srtm30m.jpg b/lectures/img/analysis_basicraster/elev_rural_srtm30m.jpg new file mode 100644 index 00000000..b64a6972 Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_rural_srtm30m.jpg differ diff --git a/lectures/img/analysis_basicraster/elev_srtmr_30mhist2.png b/lectures/img/analysis_basicraster/elev_srtmr_30mhist2.png new file mode 100644 index 00000000..a8863e14 Binary files /dev/null and b/lectures/img/analysis_basicraster/elev_srtmr_30mhist2.png differ diff --git a/lectures/img/analysis_basicraster/elevation_shade10m.jpg b/lectures/img/analysis_basicraster/elevation_shade10m.jpg new file mode 100644 index 00000000..0e056d63 Binary files /dev/null and b/lectures/img/analysis_basicraster/elevation_shade10m.jpg differ diff --git a/lectures/img/analysis_basicraster/elevrur_ned10hist.png b/lectures/img/analysis_basicraster/elevrur_ned10hist.png new file mode 100644 index 00000000..3e8b8a3d Binary files /dev/null and b/lectures/img/analysis_basicraster/elevrur_ned10hist.png differ diff --git a/lectures/img/analysis_basicraster/elevrur_ned30hist.png b/lectures/img/analysis_basicraster/elevrur_ned30hist.png new file mode 100644 index 00000000..3791c57e Binary files /dev/null and b/lectures/img/analysis_basicraster/elevrur_ned30hist.png differ diff --git a/lectures/img/analysis_basicraster/elevrur_srtm30hist.png b/lectures/img/analysis_basicraster/elevrur_srtm30hist.png new file mode 100644 index 00000000..8f0ccb69 Binary files /dev/null and b/lectures/img/analysis_basicraster/elevrur_srtm30hist.png differ diff --git a/lectures/img/analysis_basicraster/elevstats_table.png b/lectures/img/analysis_basicraster/elevstats_table.png new file mode 100644 index 00000000..df2654db Binary files /dev/null and b/lectures/img/analysis_basicraster/elevstats_table.png differ diff --git a/lectures/img/analysis_basicraster/elevstats_table_1m10m.png b/lectures/img/analysis_basicraster/elevstats_table_1m10m.png new file mode 100644 index 00000000..91598ac7 Binary files /dev/null and b/lectures/img/analysis_basicraster/elevstats_table_1m10m.png differ diff --git a/lectures/img/analysis_basicraster/elevstats_table_30mnedsrtm.png b/lectures/img/analysis_basicraster/elevstats_table_30mnedsrtm.png new file mode 100644 index 00000000..7f915b20 Binary files /dev/null and b/lectures/img/analysis_basicraster/elevstats_table_30mnedsrtm.png differ diff --git a/lectures/img/analysis_basicraster/highforest.jpg b/lectures/img/analysis_basicraster/highforest.jpg new file mode 100644 index 00000000..85066bcd Binary files /dev/null and b/lectures/img/analysis_basicraster/highforest.jpg differ diff --git a/lectures/img/analysis_basicraster/hist_equal_graph.png b/lectures/img/analysis_basicraster/hist_equal_graph.png new file mode 100644 index 00000000..8d517208 Binary files /dev/null and b/lectures/img/analysis_basicraster/hist_equal_graph.png differ diff --git a/lectures/img/analysis_basicraster/landclass96sh.png b/lectures/img/analysis_basicraster/landclass96sh.png new file mode 100644 index 00000000..0677cbe7 Binary files /dev/null and b/lectures/img/analysis_basicraster/landclass96sh.png differ diff --git a/lectures/img/analysis_basicraster/landclass_lg.png b/lectures/img/analysis_basicraster/landclass_lg.png new file mode 100644 index 00000000..b75a1524 Binary files /dev/null and b/lectures/img/analysis_basicraster/landclass_lg.png differ diff --git a/lectures/img/analysis_basicraster/landuse96_shade.jpg b/lectures/img/analysis_basicraster/landuse96_shade.jpg new file mode 100644 index 00000000..76c4baab Binary files /dev/null and b/lectures/img/analysis_basicraster/landuse96_shade.jpg differ diff --git a/lectures/img/analysis_basicraster/landusebyzip.png b/lectures/img/analysis_basicraster/landusebyzip.png new file mode 100644 index 00000000..691d9509 Binary files /dev/null and b/lectures/img/analysis_basicraster/landusebyzip.png differ diff --git a/lectures/img/analysis_basicraster/lsat7_2002_30.png b/lectures/img/analysis_basicraster/lsat7_2002_30.png new file mode 100644 index 00000000..082e79e1 Binary files /dev/null and b/lectures/img/analysis_basicraster/lsat7_2002_30.png differ diff --git a/lectures/img/analysis_basicraster/lsat7_2002_40.png b/lectures/img/analysis_basicraster/lsat7_2002_40.png new file mode 100644 index 00000000..e8b5ac05 Binary files /dev/null and b/lectures/img/analysis_basicraster/lsat7_2002_40.png differ diff --git a/lectures/img/analysis_basicraster/lu96_legbig.png b/lectures/img/analysis_basicraster/lu96_legbig.png new file mode 100644 index 00000000..0c5ba93b Binary files /dev/null and b/lectures/img/analysis_basicraster/lu96_legbig.png differ diff --git a/lectures/img/analysis_basicraster/lu_divers_lg.png b/lectures/img/analysis_basicraster/lu_divers_lg.png new file mode 100644 index 00000000..3e1378f1 Binary files /dev/null and b/lectures/img/analysis_basicraster/lu_divers_lg.png differ diff --git a/lectures/img/analysis_basicraster/mapcalc_nulls_in.jpg b/lectures/img/analysis_basicraster/mapcalc_nulls_in.jpg new file mode 100644 index 00000000..88be4832 Binary files /dev/null and b/lectures/img/analysis_basicraster/mapcalc_nulls_in.jpg differ diff --git a/lectures/img/analysis_basicraster/mapcalc_nulls_out.jpg b/lectures/img/analysis_basicraster/mapcalc_nulls_out.jpg new file mode 100644 index 00000000..72a6d454 Binary files /dev/null and b/lectures/img/analysis_basicraster/mapcalc_nulls_out.jpg differ diff --git a/lectures/img/analysis_basicraster/ndvi_0.png b/lectures/img/analysis_basicraster/ndvi_0.png new file mode 100644 index 00000000..abc6941e Binary files /dev/null and b/lectures/img/analysis_basicraster/ndvi_0.png differ diff --git a/lectures/img/analysis_basicraster/ndvi_fp.png b/lectures/img/analysis_basicraster/ndvi_fp.png new file mode 100644 index 00000000..8ea708d8 Binary files /dev/null and b/lectures/img/analysis_basicraster/ndvi_fp.png differ diff --git a/lectures/img/analysis_basicraster/ndvi_lg.png b/lectures/img/analysis_basicraster/ndvi_lg.png new file mode 100644 index 00000000..2e39f830 Binary files /dev/null and b/lectures/img/analysis_basicraster/ndvi_lg.png differ diff --git a/lectures/img/analysis_basicraster/patch_tiles.jpg b/lectures/img/analysis_basicraster/patch_tiles.jpg new file mode 100644 index 00000000..29d4af33 Binary files /dev/null and b/lectures/img/analysis_basicraster/patch_tiles.jpg differ diff --git a/lectures/img/analysis_basicraster/rastercont_elevlg.jpg b/lectures/img/analysis_basicraster/rastercont_elevlg.jpg new file mode 100644 index 00000000..9aba9833 Binary files /dev/null and b/lectures/img/analysis_basicraster/rastercont_elevlg.jpg differ diff --git a/lectures/img/analysis_basicraster/rneighbor_avg_srtm_in.jpg b/lectures/img/analysis_basicraster/rneighbor_avg_srtm_in.jpg new file mode 100644 index 00000000..4457a3d4 Binary files /dev/null and b/lectures/img/analysis_basicraster/rneighbor_avg_srtm_in.jpg differ diff --git a/lectures/img/analysis_basicraster/rneighbor_avg_srtm_out.jpg b/lectures/img/analysis_basicraster/rneighbor_avg_srtm_out.jpg new file mode 100644 index 00000000..324c3da2 Binary files /dev/null and b/lectures/img/analysis_basicraster/rneighbor_avg_srtm_out.jpg differ diff --git a/lectures/img/analysis_basicraster/rneighbor_mode_lu_in.png b/lectures/img/analysis_basicraster/rneighbor_mode_lu_in.png new file mode 100644 index 00000000..3dc8f028 Binary files /dev/null and b/lectures/img/analysis_basicraster/rneighbor_mode_lu_in.png differ diff --git a/lectures/img/analysis_basicraster/rneighbor_mode_lu_out.png b/lectures/img/analysis_basicraster/rneighbor_mode_lu_out.png new file mode 100644 index 00000000..163b449d Binary files /dev/null and b/lectures/img/analysis_basicraster/rneighbor_mode_lu_out.png differ diff --git a/lectures/img/analysis_basicraster/rpatch_lakes.png b/lectures/img/analysis_basicraster/rpatch_lakes.png new file mode 100644 index 00000000..65b04f25 Binary files /dev/null and b/lectures/img/analysis_basicraster/rpatch_lakes.png differ diff --git a/lectures/img/analysis_basicraster/rpatch_roads_30m.png b/lectures/img/analysis_basicraster/rpatch_roads_30m.png new file mode 100644 index 00000000..1d75f99e Binary files /dev/null and b/lectures/img/analysis_basicraster/rpatch_roads_30m.png differ diff --git a/lectures/img/analysis_basicraster/rpatchdem_result.png b/lectures/img/analysis_basicraster/rpatchdem_result.png new file mode 100644 index 00000000..e1c192cc Binary files /dev/null and b/lectures/img/analysis_basicraster/rpatchdem_result.png differ diff --git a/lectures/img/analysis_basicraster/rpatchsingle300dpi.png b/lectures/img/analysis_basicraster/rpatchsingle300dpi.png new file mode 100644 index 00000000..62d1e0ad Binary files /dev/null and b/lectures/img/analysis_basicraster/rpatchsingle300dpi.png differ diff --git a/lectures/img/analysis_basicraster/slope.png b/lectures/img/analysis_basicraster/slope.png new file mode 100644 index 00000000..85c31354 Binary files /dev/null and b/lectures/img/analysis_basicraster/slope.png differ diff --git a/lectures/img/analysis_basicraster/slope_c6.png b/lectures/img/analysis_basicraster/slope_c6.png new file mode 100644 index 00000000..eff676ad Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_c6.png differ diff --git a/lectures/img/analysis_basicraster/slope_c6b.png b/lectures/img/analysis_basicraster/slope_c6b.png new file mode 100644 index 00000000..6c67bb20 Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_c6b.png differ diff --git a/lectures/img/analysis_basicraster/slope_c6b_hist.png b/lectures/img/analysis_basicraster/slope_c6b_hist.png new file mode 100644 index 00000000..8677328a Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_c6b_hist.png differ diff --git a/lectures/img/analysis_basicraster/slope_ceq6.png b/lectures/img/analysis_basicraster/slope_ceq6.png new file mode 100644 index 00000000..5c4f7628 Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_ceq6.png differ diff --git a/lectures/img/analysis_basicraster/slope_ceq6_hist.png b/lectures/img/analysis_basicraster/slope_ceq6_hist.png new file mode 100644 index 00000000..82df7fd5 Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_ceq6_hist.png differ diff --git a/lectures/img/analysis_basicraster/slope_hist.png b/lectures/img/analysis_basicraster/slope_hist.png new file mode 100644 index 00000000..d7a40ee7 Binary files /dev/null and b/lectures/img/analysis_basicraster/slope_hist.png differ diff --git a/lectures/img/analysis_basicraster/surfacearea2.jpg b/lectures/img/analysis_basicraster/surfacearea2.jpg new file mode 100644 index 00000000..7391f444 Binary files /dev/null and b/lectures/img/analysis_basicraster/surfacearea2.jpg differ diff --git a/lectures/img/analysis_basicraster/tiltedplaneNW.jpg b/lectures/img/analysis_basicraster/tiltedplaneNW.jpg new file mode 100644 index 00000000..80bdbf11 Binary files /dev/null and b/lectures/img/analysis_basicraster/tiltedplaneNW.jpg differ diff --git a/lectures/img/analysis_basicraster/tiltedplane_mapalgebra.jpg b/lectures/img/analysis_basicraster/tiltedplane_mapalgebra.jpg new file mode 100644 index 00000000..17dda99d Binary files /dev/null and b/lectures/img/analysis_basicraster/tiltedplane_mapalgebra.jpg differ diff --git a/lectures/img/analysis_basicraster/volumesteps2.jpg b/lectures/img/analysis_basicraster/volumesteps2.jpg new file mode 100644 index 00000000..ec13b69d Binary files /dev/null and b/lectures/img/analysis_basicraster/volumesteps2.jpg differ diff --git a/lectures/img/analysis_basicraster/watersheds2d.png b/lectures/img/analysis_basicraster/watersheds2d.png new file mode 100644 index 00000000..afcb86fa Binary files /dev/null and b/lectures/img/analysis_basicraster/watersheds2d.png differ diff --git a/lectures/img/analysis_basicraster/waves2_3delev.jpg b/lectures/img/analysis_basicraster/waves2_3delev.jpg new file mode 100644 index 00000000..287a03f9 Binary files /dev/null and b/lectures/img/analysis_basicraster/waves2_3delev.jpg differ diff --git a/lectures/img/analysis_basicraster/waves_leg.jpg b/lectures/img/analysis_basicraster/waves_leg.jpg new file mode 100644 index 00000000..b7442980 Binary files /dev/null and b/lectures/img/analysis_basicraster/waves_leg.jpg differ diff --git a/lectures/img/analysis_basicraster/zip_to_townsshade.jpg b/lectures/img/analysis_basicraster/zip_to_townsshade.jpg new file mode 100644 index 00000000..aabaad63 Binary files /dev/null and b/lectures/img/analysis_basicraster/zip_to_townsshade.jpg differ diff --git a/lectures/img/analysis_basicraster/zipcodes_rast.png b/lectures/img/analysis_basicraster/zipcodes_rast.png new file mode 100644 index 00000000..55e2712b Binary files /dev/null and b/lectures/img/analysis_basicraster/zipcodes_rast.png differ diff --git a/lectures/img/analysis_basicraster/zipcodes_shade.jpg b/lectures/img/analysis_basicraster/zipcodes_shade.jpg new file mode 100644 index 00000000..b162dacd Binary files /dev/null and b/lectures/img/analysis_basicraster/zipcodes_shade.jpg differ diff --git a/lectures/img/analysis_basicraster/zonal_basinslope.png b/lectures/img/analysis_basicraster/zonal_basinslope.png new file mode 100644 index 00000000..ebccf1d7 Binary files /dev/null and b/lectures/img/analysis_basicraster/zonal_basinslope.png differ diff --git a/lectures/img/analysis_costsurf/Streams_NHD_GRASSlidar.png b/lectures/img/analysis_costsurf/Streams_NHD_GRASSlidar.png new file mode 100644 index 00000000..e6a94196 Binary files /dev/null and b/lectures/img/analysis_costsurf/Streams_NHD_GRASSlidar.png differ diff --git a/lectures/img/analysis_costsurf/backlinks_mea582.png b/lectures/img/analysis_costsurf/backlinks_mea582.png new file mode 100644 index 00000000..bcaeb64a Binary files /dev/null and b/lectures/img/analysis_costsurf/backlinks_mea582.png differ diff --git a/lectures/img/analysis_costsurf/buff_lakes_200m.png b/lectures/img/analysis_costsurf/buff_lakes_200m.png new file mode 100644 index 00000000..22d2a581 Binary files /dev/null and b/lectures/img/analysis_costsurf/buff_lakes_200m.png differ diff --git a/lectures/img/analysis_costsurf/buff_lakes_dev_anna.jpg b/lectures/img/analysis_costsurf/buff_lakes_dev_anna.jpg new file mode 100644 index 00000000..bd351a66 Binary files /dev/null and b/lectures/img/analysis_costsurf/buff_lakes_dev_anna.jpg differ diff --git a/lectures/img/analysis_costsurf/buff_lakesmanh_200m.png b/lectures/img/analysis_costsurf/buff_lakesmanh_200m.png new file mode 100644 index 00000000..a296ad29 Binary files /dev/null and b/lectures/img/analysis_costsurf/buff_lakesmanh_200m.png differ diff --git a/lectures/img/analysis_costsurf/buff_schools.png b/lectures/img/analysis_costsurf/buff_schools.png new file mode 100644 index 00000000..078e2e9b Binary files /dev/null and b/lectures/img/analysis_costsurf/buff_schools.png differ diff --git a/lectures/img/analysis_costsurf/buff_schools_veg.png b/lectures/img/analysis_costsurf/buff_schools_veg.png new file mode 100644 index 00000000..13bc55a7 Binary files /dev/null and b/lectures/img/analysis_costsurf/buff_schools_veg.png differ diff --git a/lectures/img/analysis_costsurf/buffer_rast_roads.png b/lectures/img/analysis_costsurf/buffer_rast_roads.png new file mode 100644 index 00000000..b4c52b73 Binary files /dev/null and b/lectures/img/analysis_costsurf/buffer_rast_roads.png differ diff --git a/lectures/img/analysis_costsurf/buffer_roads_num.png b/lectures/img/analysis_costsurf/buffer_roads_num.png new file mode 100644 index 00000000..231ff8ef Binary files /dev/null and b/lectures/img/analysis_costsurf/buffer_roads_num.png differ diff --git a/lectures/img/analysis_costsurf/buffrgrow_eucl.png b/lectures/img/analysis_costsurf/buffrgrow_eucl.png new file mode 100644 index 00000000..8c276472 Binary files /dev/null and b/lectures/img/analysis_costsurf/buffrgrow_eucl.png differ diff --git a/lectures/img/analysis_costsurf/buffrgrow_manh.png b/lectures/img/analysis_costsurf/buffrgrow_manh.png new file mode 100644 index 00000000..442f0e21 Binary files /dev/null and b/lectures/img/analysis_costsurf/buffrgrow_manh.png differ diff --git a/lectures/img/analysis_costsurf/buslinesstops.png b/lectures/img/analysis_costsurf/buslinesstops.png new file mode 100644 index 00000000..35402749 Binary files /dev/null and b/lectures/img/analysis_costsurf/buslinesstops.png differ diff --git a/lectures/img/analysis_costsurf/cary_sewer_subsewersheds.png b/lectures/img/analysis_costsurf/cary_sewer_subsewersheds.png new file mode 100644 index 00000000..2919d083 Binary files /dev/null and b/lectures/img/analysis_costsurf/cary_sewer_subsewersheds.png differ diff --git a/lectures/img/analysis_costsurf/carysewermaskedtime_co2.png b/lectures/img/analysis_costsurf/carysewermaskedtime_co2.png new file mode 100644 index 00000000..d74421c5 Binary files /dev/null and b/lectures/img/analysis_costsurf/carysewermaskedtime_co2.png differ diff --git a/lectures/img/analysis_costsurf/cost1D16.jpg b/lectures/img/analysis_costsurf/cost1D16.jpg new file mode 100644 index 00000000..5ac36c18 Binary files /dev/null and b/lectures/img/analysis_costsurf/cost1D16.jpg differ diff --git a/lectures/img/analysis_costsurf/cost1D8.jpg b/lectures/img/analysis_costsurf/cost1D8.jpg new file mode 100644 index 00000000..a130f91b Binary files /dev/null and b/lectures/img/analysis_costsurf/cost1D8.jpg differ diff --git a/lectures/img/analysis_costsurf/cost_traveltime.png b/lectures/img/analysis_costsurf/cost_traveltime.png new file mode 100644 index 00000000..4e1b8dd7 Binary files /dev/null and b/lectures/img/analysis_costsurf/cost_traveltime.png differ diff --git a/lectures/img/analysis_costsurf/costroads_3.png b/lectures/img/analysis_costsurf/costroads_3.png new file mode 100644 index 00000000..8854aac5 Binary files /dev/null and b/lectures/img/analysis_costsurf/costroads_3.png differ diff --git a/lectures/img/analysis_costsurf/costsurf_dist.jpg b/lectures/img/analysis_costsurf/costsurf_dist.jpg new file mode 100644 index 00000000..fbc073d9 Binary files /dev/null and b/lectures/img/analysis_costsurf/costsurf_dist.jpg differ diff --git a/lectures/img/analysis_costsurf/costsurf_distrd.jpg b/lectures/img/analysis_costsurf/costsurf_distrd.jpg new file mode 100644 index 00000000..c4407d46 Binary files /dev/null and b/lectures/img/analysis_costsurf/costsurf_distrd.jpg differ diff --git a/lectures/img/analysis_costsurf/costsurf_roads.png b/lectures/img/analysis_costsurf/costsurf_roads.png new file mode 100644 index 00000000..351bb388 Binary files /dev/null and b/lectures/img/analysis_costsurf/costsurf_roads.png differ diff --git a/lectures/img/analysis_costsurf/costsurface3dHR.png b/lectures/img/analysis_costsurf/costsurface3dHR.png new file mode 100644 index 00000000..ff34adfa Binary files /dev/null and b/lectures/img/analysis_costsurf/costsurface3dHR.png differ diff --git a/lectures/img/analysis_costsurf/cumcost_aspect_col.png.png b/lectures/img/analysis_costsurf/cumcost_aspect_col.png.png new file mode 100644 index 00000000..9b3aa518 Binary files /dev/null and b/lectures/img/analysis_costsurf/cumcost_aspect_col.png.png differ diff --git a/lectures/img/analysis_costsurf/friction2d.png b/lectures/img/analysis_costsurf/friction2d.png new file mode 100644 index 00000000..a60c4eb7 Binary files /dev/null and b/lectures/img/analysis_costsurf/friction2d.png differ diff --git a/lectures/img/analysis_costsurf/geodesic_rhumb_sm.png b/lectures/img/analysis_costsurf/geodesic_rhumb_sm.png new file mode 100644 index 00000000..130203bb Binary files /dev/null and b/lectures/img/analysis_costsurf/geodesic_rhumb_sm.png differ diff --git a/lectures/img/analysis_costsurf/leastcostfire3d.jpg b/lectures/img/analysis_costsurf/leastcostfire3d.jpg new file mode 100644 index 00000000..c15ad475 Binary files /dev/null and b/lectures/img/analysis_costsurf/leastcostfire3d.jpg differ diff --git a/lectures/img/analysis_costsurf/leastcostpath_fire.png b/lectures/img/analysis_costsurf/leastcostpath_fire.png new file mode 100644 index 00000000..0316e310 Binary files /dev/null and b/lectures/img/analysis_costsurf/leastcostpath_fire.png differ diff --git a/lectures/img/analysis_costsurf/leastcostpathnum.png b/lectures/img/analysis_costsurf/leastcostpathnum.png new file mode 100644 index 00000000..6728f17c Binary files /dev/null and b/lectures/img/analysis_costsurf/leastcostpathnum.png differ diff --git a/lectures/img/analysis_costsurf/lostperson3d.jpg b/lectures/img/analysis_costsurf/lostperson3d.jpg new file mode 100644 index 00000000..1c60c40f Binary files /dev/null and b/lectures/img/analysis_costsurf/lostperson3d.jpg differ diff --git a/lectures/img/analysis_costsurf/manhattam_metrics.png b/lectures/img/analysis_costsurf/manhattam_metrics.png new file mode 100644 index 00000000..a410b3f8 Binary files /dev/null and b/lectures/img/analysis_costsurf/manhattam_metrics.png differ diff --git a/lectures/img/analysis_costsurf/nc_shoreline_nc.png b/lectures/img/analysis_costsurf/nc_shoreline_nc.png new file mode 100644 index 00000000..984d9814 Binary files /dev/null and b/lectures/img/analysis_costsurf/nc_shoreline_nc.png differ diff --git a/lectures/img/analysis_costsurf/nc_shoreline_world.png b/lectures/img/analysis_costsurf/nc_shoreline_world.png new file mode 100644 index 00000000..fcc5bdbe Binary files /dev/null and b/lectures/img/analysis_costsurf/nc_shoreline_world.png differ diff --git a/lectures/img/analysis_costsurf/nc_shoreline_worldnc.png b/lectures/img/analysis_costsurf/nc_shoreline_worldnc.png new file mode 100644 index 00000000..e7b0717e Binary files /dev/null and b/lectures/img/analysis_costsurf/nc_shoreline_worldnc.png differ diff --git a/lectures/img/analysis_costsurf/noise_census.png b/lectures/img/analysis_costsurf/noise_census.png new file mode 100644 index 00000000..da0896e4 Binary files /dev/null and b/lectures/img/analysis_costsurf/noise_census.png differ diff --git a/lectures/img/analysis_costsurf/noise_schools.png b/lectures/img/analysis_costsurf/noise_schools.png new file mode 100644 index 00000000..d235739b Binary files /dev/null and b/lectures/img/analysis_costsurf/noise_schools.png differ diff --git a/lectures/img/analysis_costsurf/noise_schools_anna.png b/lectures/img/analysis_costsurf/noise_schools_anna.png new file mode 100644 index 00000000..cf5e3a8c Binary files /dev/null and b/lectures/img/analysis_costsurf/noise_schools_anna.png differ diff --git a/lectures/img/analysis_costsurf/noise_shadestr.png b/lectures/img/analysis_costsurf/noise_shadestr.png new file mode 100644 index 00000000..f27b701f Binary files /dev/null and b/lectures/img/analysis_costsurf/noise_shadestr.png differ diff --git a/lectures/img/analysis_costsurf/schoolsbuffer_lg.png b/lectures/img/analysis_costsurf/schoolsbuffer_lg.png new file mode 100644 index 00000000..c7b99d29 Binary files /dev/null and b/lectures/img/analysis_costsurf/schoolsbuffer_lg.png differ diff --git a/lectures/img/analysis_costsurf/speed_rast.png b/lectures/img/analysis_costsurf/speed_rast.png new file mode 100644 index 00000000..254d866d Binary files /dev/null and b/lectures/img/analysis_costsurf/speed_rast.png differ diff --git a/lectures/img/analysis_costsurf/stream_extraction_lidarc.png b/lectures/img/analysis_costsurf/stream_extraction_lidarc.png new file mode 100644 index 00000000..fcdc039f Binary files /dev/null and b/lectures/img/analysis_costsurf/stream_extraction_lidarc.png differ diff --git a/lectures/img/analysis_costsurf/streets_costarrows_lcp.png b/lectures/img/analysis_costsurf/streets_costarrows_lcp.png new file mode 100644 index 00000000..e6743224 Binary files /dev/null and b/lectures/img/analysis_costsurf/streets_costarrows_lcp.png differ diff --git a/lectures/img/analysis_costsurf/streets_costarrows_lcpzm.png b/lectures/img/analysis_costsurf/streets_costarrows_lcpzm.png new file mode 100644 index 00000000..8b3eec65 Binary files /dev/null and b/lectures/img/analysis_costsurf/streets_costarrows_lcpzm.png differ diff --git a/lectures/img/analysis_costsurf/walkcost_isochr.png b/lectures/img/analysis_costsurf/walkcost_isochr.png new file mode 100644 index 00000000..32ac42f6 Binary files /dev/null and b/lectures/img/analysis_costsurf/walkcost_isochr.png differ diff --git a/lectures/img/analysis_costsurf/walkcosthours.png b/lectures/img/analysis_costsurf/walkcosthours.png new file mode 100644 index 00000000..09f9a2fd Binary files /dev/null and b/lectures/img/analysis_costsurf/walkcosthours.png differ diff --git a/lectures/img/assign_composit.jpg b/lectures/img/assign_composit.jpg new file mode 100644 index 00000000..285d5c5a Binary files /dev/null and b/lectures/img/assign_composit.jpg differ diff --git a/lectures/img/cc_composit.png b/lectures/img/cc_composit.png new file mode 100644 index 00000000..48a9d9b9 Binary files /dev/null and b/lectures/img/cc_composit.png differ diff --git a/lectures/img/costsurface3dHR.jpg b/lectures/img/costsurface3dHR.jpg new file mode 100644 index 00000000..6f35de82 Binary files /dev/null and b/lectures/img/costsurface3dHR.jpg differ diff --git a/lectures/img/costsurface3dco.png b/lectures/img/costsurface3dco.png new file mode 100644 index 00000000..48d611b2 Binary files /dev/null and b/lectures/img/costsurface3dco.png differ diff --git a/lectures/img/course_header.jpg b/lectures/img/course_header.jpg new file mode 100644 index 00000000..c5532292 Binary files /dev/null and b/lectures/img/course_header.jpg differ diff --git a/lectures/img/current_res_composits.jpg b/lectures/img/current_res_composits.jpg new file mode 100644 index 00000000..f7af50f2 Binary files /dev/null and b/lectures/img/current_res_composits.jpg differ diff --git a/lectures/img/data_acquisition/2015_06_15_DSM_GCP_3dlg.jpg b/lectures/img/data_acquisition/2015_06_15_DSM_GCP_3dlg.jpg new file mode 100755 index 00000000..fcd4bd38 Binary files /dev/null and b/lectures/img/data_acquisition/2015_06_15_DSM_GCP_3dlg.jpg differ diff --git a/lectures/img/data_acquisition/Carypark_May2021.jpg b/lectures/img/data_acquisition/Carypark_May2021.jpg new file mode 100644 index 00000000..e0758ccb Binary files /dev/null and b/lectures/img/data_acquisition/Carypark_May2021.jpg differ diff --git a/lectures/img/data_acquisition/GeodynRTKGPS1sm.jpg b/lectures/img/data_acquisition/GeodynRTKGPS1sm.jpg new file mode 100644 index 00000000..40d5d858 Binary files /dev/null and b/lectures/img/data_acquisition/GeodynRTKGPS1sm.jpg differ diff --git a/lectures/img/data_acquisition/Jordanhall_groundphoto.jpg b/lectures/img/data_acquisition/Jordanhall_groundphoto.jpg new file mode 100644 index 00000000..1fac41ae Binary files /dev/null and b/lectures/img/data_acquisition/Jordanhall_groundphoto.jpg differ diff --git a/lectures/img/data_acquisition/Jordanhall_orthophoto.jpg b/lectures/img/data_acquisition/Jordanhall_orthophoto.jpg new file mode 100644 index 00000000..d001a48f Binary files /dev/null and b/lectures/img/data_acquisition/Jordanhall_orthophoto.jpg differ diff --git a/lectures/img/data_acquisition/LandsatETMengineer.jpg b/lectures/img/data_acquisition/LandsatETMengineer.jpg new file mode 100644 index 00000000..43792db2 Binary files /dev/null and b/lectures/img/data_acquisition/LandsatETMengineer.jpg differ diff --git a/lectures/img/data_acquisition/Lyonatstreambank_3.jpg b/lectures/img/data_acquisition/Lyonatstreambank_3.jpg new file mode 100644 index 00000000..ea64054e Binary files /dev/null and b/lectures/img/data_acquisition/Lyonatstreambank_3.jpg differ diff --git a/lectures/img/data_acquisition/PanamaPtsLandsat.jpg b/lectures/img/data_acquisition/PanamaPtsLandsat.jpg new file mode 100644 index 00000000..9954bcd1 Binary files /dev/null and b/lectures/img/data_acquisition/PanamaPtsLandsat.jpg differ diff --git a/lectures/img/data_acquisition/PseudoMercatorworld.jpg b/lectures/img/data_acquisition/PseudoMercatorworld.jpg new file mode 100644 index 00000000..3a728e56 Binary files /dev/null and b/lectures/img/data_acquisition/PseudoMercatorworld.jpg differ diff --git a/lectures/img/data_acquisition/SECREF2010_googlemap.jpg b/lectures/img/data_acquisition/SECREF2010_googlemap.jpg new file mode 100644 index 00000000..a541541d Binary files /dev/null and b/lectures/img/data_acquisition/SECREF2010_googlemap.jpg differ diff --git a/lectures/img/data_acquisition/Winkel-tripel-projection.jpg b/lectures/img/data_acquisition/Winkel-tripel-projection.jpg new file mode 100644 index 00000000..a452c42e Binary files /dev/null and b/lectures/img/data_acquisition/Winkel-tripel-projection.jpg differ diff --git a/lectures/img/data_acquisition/abank1_04_07_11_DTF_el.png b/lectures/img/data_acquisition/abank1_04_07_11_DTF_el.png new file mode 100644 index 00000000..0d68f537 Binary files /dev/null and b/lectures/img/data_acquisition/abank1_04_07_11_DTF_el.png differ diff --git a/lectures/img/data_acquisition/abank1_08_24_11_DTF_el.png b/lectures/img/data_acquisition/abank1_08_24_11_DTF_el.png new file mode 100644 index 00000000..9e632355 Binary files /dev/null and b/lectures/img/data_acquisition/abank1_08_24_11_DTF_el.png differ diff --git a/lectures/img/data_acquisition/airborne_lidar_mapping_schematic.jpg b/lectures/img/data_acquisition/airborne_lidar_mapping_schematic.jpg new file mode 100644 index 00000000..4dbe9193 Binary files /dev/null and b/lectures/img/data_acquisition/airborne_lidar_mapping_schematic.jpg differ diff --git a/lectures/img/data_acquisition/crs_elipsoid_latlong.jpg b/lectures/img/data_acquisition/crs_elipsoid_latlong.jpg new file mode 100644 index 00000000..0086dffb Binary files /dev/null and b/lectures/img/data_acquisition/crs_elipsoid_latlong.jpg differ diff --git a/lectures/img/data_acquisition/crs_projected.jpg b/lectures/img/data_acquisition/crs_projected.jpg new file mode 100644 index 00000000..e41562c9 Binary files /dev/null and b/lectures/img/data_acquisition/crs_projected.jpg differ diff --git a/lectures/img/data_acquisition/geoid.pdf b/lectures/img/data_acquisition/geoid.pdf new file mode 100644 index 00000000..93be692d Binary files /dev/null and b/lectures/img/data_acquisition/geoid.pdf differ diff --git a/lectures/img/data_acquisition/latlong.gif b/lectures/img/data_acquisition/latlong.gif new file mode 100644 index 00000000..6bf732fe Binary files /dev/null and b/lectures/img/data_acquisition/latlong.gif differ diff --git a/lectures/img/data_acquisition/latlongareagrid.gif b/lectures/img/data_acquisition/latlongareagrid.gif new file mode 100644 index 00000000..5bbf4d54 Binary files /dev/null and b/lectures/img/data_acquisition/latlongareagrid.gif differ diff --git a/lectures/img/data_acquisition/lidarmrpts3dcolored.jpg b/lectures/img/data_acquisition/lidarmrpts3dcolored.jpg new file mode 100644 index 00000000..f2ff8761 Binary files /dev/null and b/lectures/img/data_acquisition/lidarmrpts3dcolored.jpg differ diff --git a/lectures/img/data_acquisition/mercatorproj.gif b/lectures/img/data_acquisition/mercatorproj.gif new file mode 100644 index 00000000..80f3d0b3 Binary files /dev/null and b/lectures/img/data_acquisition/mercatorproj.gif differ diff --git a/lectures/img/data_acquisition/ngat2_dem02m_3d.jpg b/lectures/img/data_acquisition/ngat2_dem02m_3d.jpg new file mode 100755 index 00000000..bef3f3d7 Binary files /dev/null and b/lectures/img/data_acquisition/ngat2_dem02m_3d.jpg differ diff --git a/lectures/img/data_acquisition/ngat2_ortho02m_3dsmall.jpg b/lectures/img/data_acquisition/ngat2_ortho02m_3dsmall.jpg new file mode 100755 index 00000000..95912089 Binary files /dev/null and b/lectures/img/data_acquisition/ngat2_ortho02m_3dsmall.jpg differ diff --git a/lectures/img/data_acquisition/nuenen_kde_all_rad3_3DW.jpg b/lectures/img/data_acquisition/nuenen_kde_all_rad3_3DW.jpg new file mode 100644 index 00000000..c200446b Binary files /dev/null and b/lectures/img/data_acquisition/nuenen_kde_all_rad3_3DW.jpg differ diff --git a/lectures/img/data_acquisition/nuenen_kde_all_vjune19_rad7.png b/lectures/img/data_acquisition/nuenen_kde_all_vjune19_rad7.png new file mode 100644 index 00000000..7af847ae Binary files /dev/null and b/lectures/img/data_acquisition/nuenen_kde_all_vjune19_rad7.png differ diff --git a/lectures/img/data_acquisition/panamaSRTM90m.jpg b/lectures/img/data_acquisition/panamaSRTM90m.jpg new file mode 100644 index 00000000..e7f85c2d Binary files /dev/null and b/lectures/img/data_acquisition/panamaSRTM90m.jpg differ diff --git a/lectures/img/data_acquisition/quadcopter_midpines.jpg b/lectures/img/data_acquisition/quadcopter_midpines.jpg new file mode 100644 index 00000000..dd86d9b2 Binary files /dev/null and b/lectures/img/data_acquisition/quadcopter_midpines.jpg differ diff --git a/lectures/img/data_acquisition/reiglminingsm.jpg b/lectures/img/data_acquisition/reiglminingsm.jpg new file mode 100644 index 00000000..c5bfb914 Binary files /dev/null and b/lectures/img/data_acquisition/reiglminingsm.jpg differ diff --git a/lectures/img/data_acquisition/sep17_july18.mp4 b/lectures/img/data_acquisition/sep17_july18.mp4 new file mode 100644 index 00000000..61fd0d5f Binary files /dev/null and b/lectures/img/data_acquisition/sep17_july18.mp4 differ diff --git a/lectures/img/data_acquisition/srtmanim_small.gif b/lectures/img/data_acquisition/srtmanim_small.gif new file mode 100644 index 00000000..e18a4dd2 Binary files /dev/null and b/lectures/img/data_acquisition/srtmanim_small.gif differ diff --git a/lectures/img/data_acquisition/takeoff.jpg b/lectures/img/data_acquisition/takeoff.jpg new file mode 100755 index 00000000..79289c41 Binary files /dev/null and b/lectures/img/data_acquisition/takeoff.jpg differ diff --git a/lectures/img/data_acquisition/world-map.jpg b/lectures/img/data_acquisition/world-map.jpg new file mode 100644 index 00000000..86dc2e99 Binary files /dev/null and b/lectures/img/data_acquisition/world-map.jpg differ diff --git a/lectures/img/data_models/Datamodels_streamraster.png b/lectures/img/data_models/Datamodels_streamraster.png new file mode 100644 index 00000000..4c82edc8 Binary files /dev/null and b/lectures/img/data_models/Datamodels_streamraster.png differ diff --git a/lectures/img/data_models/Datamodels_streamvector.png b/lectures/img/data_models/Datamodels_streamvector.png new file mode 100644 index 00000000..9468b16c Binary files /dev/null and b/lectures/img/data_models/Datamodels_streamvector.png differ diff --git a/lectures/img/data_models/Datamodels_streamvectorzoom.png b/lectures/img/data_models/Datamodels_streamvectorzoom.png new file mode 100644 index 00000000..e14e588f Binary files /dev/null and b/lectures/img/data_models/Datamodels_streamvectorzoom.png differ diff --git a/lectures/img/data_models/TINgrassnvizrand2.jpg b/lectures/img/data_models/TINgrassnvizrand2.jpg new file mode 100644 index 00000000..24bb72a2 Binary files /dev/null and b/lectures/img/data_models/TINgrassnvizrand2.jpg differ diff --git a/lectures/img/data_models/Voxelcodbox.gif b/lectures/img/data_models/Voxelcodbox.gif new file mode 100644 index 00000000..f960769f Binary files /dev/null and b/lectures/img/data_models/Voxelcodbox.gif differ diff --git a/lectures/img/data_models/Voxelcodbox.mpg b/lectures/img/data_models/Voxelcodbox.mpg new file mode 100644 index 00000000..1eba0023 Binary files /dev/null and b/lectures/img/data_models/Voxelcodbox.mpg differ diff --git a/lectures/img/data_models/Voxelphfenc.gif b/lectures/img/data_models/Voxelphfenc.gif new file mode 100644 index 00000000..8b8d9fd4 Binary files /dev/null and b/lectures/img/data_models/Voxelphfenc.gif differ diff --git a/lectures/img/data_models/ccuas_blender_mesh.jpg b/lectures/img/data_models/ccuas_blender_mesh.jpg new file mode 100644 index 00000000..e0e60fe5 Binary files /dev/null and b/lectures/img/data_models/ccuas_blender_mesh.jpg differ diff --git a/lectures/img/data_models/census_nodesvertcentrlb2.png b/lectures/img/data_models/census_nodesvertcentrlb2.png new file mode 100644 index 00000000..535dea69 Binary files /dev/null and b/lectures/img/data_models/census_nodesvertcentrlb2.png differ diff --git a/lectures/img/data_models/datatypescomposit.jpg b/lectures/img/data_models/datatypescomposit.jpg new file mode 100644 index 00000000..6f43f2e3 Binary files /dev/null and b/lectures/img/data_models/datatypescomposit.jpg differ diff --git a/lectures/img/data_models/dem_1m.jpg b/lectures/img/data_models/dem_1m.jpg new file mode 100644 index 00000000..f7b203b9 Binary files /dev/null and b/lectures/img/data_models/dem_1m.jpg differ diff --git a/lectures/img/data_models/elcont1m_gen00.jpg b/lectures/img/data_models/elcont1m_gen00.jpg new file mode 100644 index 00000000..28a2943d Binary files /dev/null and b/lectures/img/data_models/elcont1m_gen00.jpg differ diff --git a/lectures/img/data_models/elevrandpts.jpg b/lectures/img/data_models/elevrandpts.jpg new file mode 100644 index 00000000..ee3b17a6 Binary files /dev/null and b/lectures/img/data_models/elevrandpts.jpg differ diff --git a/lectures/img/data_models/grass7composit.jpg b/lectures/img/data_models/grass7composit.jpg new file mode 100644 index 00000000..123a0ae7 Binary files /dev/null and b/lectures/img/data_models/grass7composit.jpg differ diff --git a/lectures/img/data_models/horiz2.gif b/lectures/img/data_models/horiz2.gif new file mode 100755 index 00000000..b4f4303d Binary files /dev/null and b/lectures/img/data_models/horiz2.gif differ diff --git a/lectures/img/data_models/landuse3d.jpg b/lectures/img/data_models/landuse3d.jpg new file mode 100644 index 00000000..28a0a4b2 Binary files /dev/null and b/lectures/img/data_models/landuse3d.jpg differ diff --git a/lectures/img/data_models/lg_soilph.gif b/lectures/img/data_models/lg_soilph.gif new file mode 100644 index 00000000..2ca37718 Binary files /dev/null and b/lectures/img/data_models/lg_soilph.gif differ diff --git a/lectures/img/data_models/lgsoilcorg.gif b/lectures/img/data_models/lgsoilcorg.gif new file mode 100644 index 00000000..5b8e476b Binary files /dev/null and b/lectures/img/data_models/lgsoilcorg.gif differ diff --git a/lectures/img/data_models/lu96_legbig.png b/lectures/img/data_models/lu96_legbig.png new file mode 100644 index 00000000..e54db998 Binary files /dev/null and b/lectures/img/data_models/lu96_legbig.png differ diff --git a/lectures/img/data_models/ncpfas_samples_pointdata.jpg b/lectures/img/data_models/ncpfas_samples_pointdata.jpg new file mode 100644 index 00000000..add25e14 Binary files /dev/null and b/lectures/img/data_models/ncpfas_samples_pointdata.jpg differ diff --git a/lectures/img/data_models/pointcloud.png b/lectures/img/data_models/pointcloud.png new file mode 100644 index 00000000..3c1f6a83 Binary files /dev/null and b/lectures/img/data_models/pointcloud.png differ diff --git a/lectures/img/data_models/pointdata.png b/lectures/img/data_models/pointdata.png new file mode 100644 index 00000000..2bd044bb Binary files /dev/null and b/lectures/img/data_models/pointdata.png differ diff --git a/lectures/img/data_models/preciptopo3d.jpg b/lectures/img/data_models/preciptopo3d.jpg new file mode 100644 index 00000000..fa1e5f2d Binary files /dev/null and b/lectures/img/data_models/preciptopo3d.jpg differ diff --git a/lectures/img/data_models/rast_resampl_elev.jpg b/lectures/img/data_models/rast_resampl_elev.jpg new file mode 100644 index 00000000..1357b092 Binary files /dev/null and b/lectures/img/data_models/rast_resampl_elev.jpg differ diff --git a/lectures/img/data_models/rast_resampl_elev_down.jpg b/lectures/img/data_models/rast_resampl_elev_down.jpg new file mode 100644 index 00000000..fcf0bb0c Binary files /dev/null and b/lectures/img/data_models/rast_resampl_elev_down.jpg differ diff --git a/lectures/img/data_models/rast_resampl_geol.jpg b/lectures/img/data_models/rast_resampl_geol.jpg new file mode 100644 index 00000000..183da604 Binary files /dev/null and b/lectures/img/data_models/rast_resampl_geol.jpg differ diff --git a/lectures/img/data_models/rast_resampl_geol_down.png b/lectures/img/data_models/rast_resampl_geol_down.png new file mode 100644 index 00000000..bfa6c90c Binary files /dev/null and b/lectures/img/data_models/rast_resampl_geol_down.png differ diff --git a/lectures/img/data_models/rast_resampl_geol_elev.jpg b/lectures/img/data_models/rast_resampl_geol_elev.jpg new file mode 100644 index 00000000..2ea98cea Binary files /dev/null and b/lectures/img/data_models/rast_resampl_geol_elev.jpg differ diff --git a/lectures/img/data_models/rast_resampl_geol_elev_30_20.jpg b/lectures/img/data_models/rast_resampl_geol_elev_30_20.jpg new file mode 100644 index 00000000..32d20425 Binary files /dev/null and b/lectures/img/data_models/rast_resampl_geol_elev_30_20.jpg differ diff --git a/lectures/img/data_models/rast_to_vect_cont.jpg b/lectures/img/data_models/rast_to_vect_cont.jpg new file mode 100644 index 00000000..52a9290b Binary files /dev/null and b/lectures/img/data_models/rast_to_vect_cont.jpg differ diff --git a/lectures/img/data_models/rast_to_vect_discr.jpg b/lectures/img/data_models/rast_to_vect_discr.jpg new file mode 100644 index 00000000..b7a28b66 Binary files /dev/null and b/lectures/img/data_models/rast_to_vect_discr.jpg differ diff --git a/lectures/img/data_models/rast_to_vect_discr_area.jpg b/lectures/img/data_models/rast_to_vect_discr_area.jpg new file mode 100644 index 00000000..ec6c802b Binary files /dev/null and b/lectures/img/data_models/rast_to_vect_discr_area.jpg differ diff --git a/lectures/img/data_models/raster_cont_discr.jpg b/lectures/img/data_models/raster_cont_discr.jpg new file mode 100644 index 00000000..4fc8ca76 Binary files /dev/null and b/lectures/img/data_models/raster_cont_discr.jpg differ diff --git a/lectures/img/data_models/raster_discr3dlu.jpg b/lectures/img/data_models/raster_discr3dlu.jpg new file mode 100644 index 00000000..e0b8bf84 Binary files /dev/null and b/lectures/img/data_models/raster_discr3dlu.jpg differ diff --git a/lectures/img/data_models/raster_discr3dlu.tif b/lectures/img/data_models/raster_discr3dlu.tif new file mode 100644 index 00000000..75f0bc4a Binary files /dev/null and b/lectures/img/data_models/raster_discr3dlu.tif differ diff --git a/lectures/img/data_models/rastercont_elev.jpg b/lectures/img/data_models/rastercont_elev.jpg new file mode 100644 index 00000000..ef7ac39c Binary files /dev/null and b/lectures/img/data_models/rastercont_elev.jpg differ diff --git a/lectures/img/data_models/rastercont_elev3d.jpg b/lectures/img/data_models/rastercont_elev3d.jpg new file mode 100644 index 00000000..75620f88 Binary files /dev/null and b/lectures/img/data_models/rastercont_elev3d.jpg differ diff --git a/lectures/img/data_models/rastercont_elev3d.tif b/lectures/img/data_models/rastercont_elev3d.tif new file mode 100644 index 00000000..ba3f7b34 Binary files /dev/null and b/lectures/img/data_models/rastercont_elev3d.tif differ diff --git a/lectures/img/data_models/rastercont_elevlg.jpg b/lectures/img/data_models/rastercont_elevlg.jpg new file mode 100644 index 00000000..9aba9833 Binary files /dev/null and b/lectures/img/data_models/rastercont_elevlg.jpg differ diff --git a/lectures/img/data_models/rasterdemzoom.jpg b/lectures/img/data_models/rasterdemzoom.jpg new file mode 100644 index 00000000..d083fa5b Binary files /dev/null and b/lectures/img/data_models/rasterdemzoom.jpg differ diff --git a/lectures/img/data_models/rasterdiscr_roads.jpg b/lectures/img/data_models/rasterdiscr_roads.jpg new file mode 100644 index 00000000..ba8ff742 Binary files /dev/null and b/lectures/img/data_models/rasterdiscr_roads.jpg differ diff --git a/lectures/img/data_models/rastresampdisc_geolint.3d.jpg b/lectures/img/data_models/rastresampdisc_geolint.3d.jpg new file mode 100644 index 00000000..80e585c1 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolint.3d.jpg differ diff --git a/lectures/img/data_models/rastresampdisc_geolint.3d.png.tif b/lectures/img/data_models/rastresampdisc_geolint.3d.png.tif new file mode 100644 index 00000000..15e83d98 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolint.3d.png.tif differ diff --git a/lectures/img/data_models/rastresampdisc_geolint.jpg b/lectures/img/data_models/rastresampdisc_geolint.jpg new file mode 100644 index 00000000..6bd05c22 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolint.jpg differ diff --git a/lectures/img/data_models/rastresampdisc_geolint.png b/lectures/img/data_models/rastresampdisc_geolint.png new file mode 100644 index 00000000..638d38ea Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolint.png differ diff --git a/lectures/img/data_models/rastresampdisc_geolnn.jpg b/lectures/img/data_models/rastresampdisc_geolnn.jpg new file mode 100644 index 00000000..3129a121 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolnn.jpg differ diff --git a/lectures/img/data_models/rastresampdisc_geolnn.png b/lectures/img/data_models/rastresampdisc_geolnn.png new file mode 100644 index 00000000..b4d8dbb3 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolnn.png differ diff --git a/lectures/img/data_models/rastresampdisc_geolnn3d.jpg b/lectures/img/data_models/rastresampdisc_geolnn3d.jpg new file mode 100644 index 00000000..2cde7ac2 Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolnn3d.jpg differ diff --git a/lectures/img/data_models/rastresampdisc_geolnn3d.tif b/lectures/img/data_models/rastresampdisc_geolnn3d.tif new file mode 100644 index 00000000..7f44cffa Binary files /dev/null and b/lectures/img/data_models/rastresampdisc_geolnn3d.tif differ diff --git a/lectures/img/data_models/rastvect_streamcompzoom.png b/lectures/img/data_models/rastvect_streamcompzoom.png new file mode 100644 index 00000000..f59a1022 Binary files /dev/null and b/lectures/img/data_models/rastvect_streamcompzoom.png differ diff --git a/lectures/img/data_models/rastvect_streamzoom.png b/lectures/img/data_models/rastvect_streamzoom.png new file mode 100644 index 00000000..0002594c Binary files /dev/null and b/lectures/img/data_models/rastvect_streamzoom.png differ diff --git a/lectures/img/data_models/resampling_methods_elev.png b/lectures/img/data_models/resampling_methods_elev.png new file mode 100644 index 00000000..39aa4242 Binary files /dev/null and b/lectures/img/data_models/resampling_methods_elev.png differ diff --git a/lectures/img/data_models/resampling_methods_geol.png b/lectures/img/data_models/resampling_methods_geol.png new file mode 100644 index 00000000..707ce09c Binary files /dev/null and b/lectures/img/data_models/resampling_methods_geol.png differ diff --git a/lectures/img/data_models/roads_nodes_vert.png b/lectures/img/data_models/roads_nodes_vert.png new file mode 100644 index 00000000..6e775c75 Binary files /dev/null and b/lectures/img/data_models/roads_nodes_vert.png differ diff --git a/lectures/img/data_models/streetsnoise.jpg b/lectures/img/data_models/streetsnoise.jpg new file mode 100644 index 00000000..a0fcd909 Binary files /dev/null and b/lectures/img/data_models/streetsnoise.jpg differ diff --git a/lectures/img/data_models/streetsnoiseviewshedlu.jpg b/lectures/img/data_models/streetsnoiseviewshedlu.jpg new file mode 100644 index 00000000..76183b6d Binary files /dev/null and b/lectures/img/data_models/streetsnoiseviewshedlu.jpg differ diff --git a/lectures/img/data_models/vect_to_rast.jpg b/lectures/img/data_models/vect_to_rast.jpg new file mode 100644 index 00000000..f32f3e6f Binary files /dev/null and b/lectures/img/data_models/vect_to_rast.jpg differ diff --git a/lectures/img/data_models/vectmodel_attrib.png b/lectures/img/data_models/vectmodel_attrib.png new file mode 100644 index 00000000..c6f5c67f Binary files /dev/null and b/lectures/img/data_models/vectmodel_attrib.png differ diff --git a/lectures/img/data_models/vectopoints_census.png.png b/lectures/img/data_models/vectopoints_census.png.png new file mode 100644 index 00000000..0f16484f Binary files /dev/null and b/lectures/img/data_models/vectopoints_census.png.png differ diff --git a/lectures/img/data_models/vectorast_census.png b/lectures/img/data_models/vectorast_census.png new file mode 100644 index 00000000..d6006920 Binary files /dev/null and b/lectures/img/data_models/vectorast_census.png differ diff --git a/lectures/img/data_models/vectorast_streets_num.png b/lectures/img/data_models/vectorast_streets_num.png new file mode 100644 index 00000000..7e19d3a2 Binary files /dev/null and b/lectures/img/data_models/vectorast_streets_num.png differ diff --git a/lectures/img/data_models/vectorboundary.png b/lectures/img/data_models/vectorboundary.png new file mode 100644 index 00000000..b126081f Binary files /dev/null and b/lectures/img/data_models/vectorboundary.png differ diff --git a/lectures/img/data_models/vectorimportgui.png b/lectures/img/data_models/vectorimportgui.png new file mode 100644 index 00000000..a73303f2 Binary files /dev/null and b/lectures/img/data_models/vectorimportgui.png differ diff --git a/lectures/img/data_models/vectormodel_geom.png b/lectures/img/data_models/vectormodel_geom.png new file mode 100644 index 00000000..c2ba7f4f Binary files /dev/null and b/lectures/img/data_models/vectormodel_geom.png differ diff --git a/lectures/img/data_models/vectovertices_census.png b/lectures/img/data_models/vectovertices_census.png new file mode 100644 index 00000000..d2cd3622 Binary files /dev/null and b/lectures/img/data_models/vectovertices_census.png differ diff --git a/lectures/img/data_models/vectpolytoline.png b/lectures/img/data_models/vectpolytoline.png new file mode 100644 index 00000000..bfbf0fee Binary files /dev/null and b/lectures/img/data_models/vectpolytoline.png differ diff --git a/lectures/img/data_visualize/Balsfanimwalk.gif b/lectures/img/data_visualize/Balsfanimwalk.gif new file mode 100644 index 00000000..79ef57d0 Binary files /dev/null and b/lectures/img/data_visualize/Balsfanimwalk.gif differ diff --git a/lectures/img/data_visualize/Color_raster_elev.jpg b/lectures/img/data_visualize/Color_raster_elev.jpg new file mode 100644 index 00000000..023f1c8c Binary files /dev/null and b/lectures/img/data_visualize/Color_raster_elev.jpg differ diff --git a/lectures/img/data_visualize/Color_raster_equalint.jpg b/lectures/img/data_visualize/Color_raster_equalint.jpg new file mode 100644 index 00000000..4c9db415 Binary files /dev/null and b/lectures/img/data_visualize/Color_raster_equalint.jpg differ diff --git a/lectures/img/data_visualize/Color_raster_histeq1.jpg b/lectures/img/data_visualize/Color_raster_histeq1.jpg new file mode 100644 index 00000000..79f85ad9 Binary files /dev/null and b/lectures/img/data_visualize/Color_raster_histeq1.jpg differ diff --git a/lectures/img/data_visualize/Color_raster_histeq2.jpg b/lectures/img/data_visualize/Color_raster_histeq2.jpg new file mode 100644 index 00000000..649d7ef4 Binary files /dev/null and b/lectures/img/data_visualize/Color_raster_histeq2.jpg differ diff --git a/lectures/img/data_visualize/GRASS_map_land_change_30m.png b/lectures/img/data_visualize/GRASS_map_land_change_30m.png new file mode 100644 index 00000000..0538153c Binary files /dev/null and b/lectures/img/data_visualize/GRASS_map_land_change_30m.png differ diff --git a/lectures/img/data_visualize/JR_STC_16m_anim.gif b/lectures/img/data_visualize/JR_STC_16m_anim.gif new file mode 100644 index 00000000..9c14c03a Binary files /dev/null and b/lectures/img/data_visualize/JR_STC_16m_anim.gif differ diff --git a/lectures/img/data_visualize/Map_RHahn_ArcGIS.png b/lectures/img/data_visualize/Map_RHahn_ArcGIS.png new file mode 100644 index 00000000..71ca7d47 Binary files /dev/null and b/lectures/img/data_visualize/Map_RHahn_ArcGIS.png differ diff --git a/lectures/img/data_visualize/NagsHead.gif b/lectures/img/data_visualize/NagsHead.gif new file mode 100644 index 00000000..20fb9585 Binary files /dev/null and b/lectures/img/data_visualize/NagsHead.gif differ diff --git a/lectures/img/data_visualize/NagsHead_animation.gif b/lectures/img/data_visualize/NagsHead_animation.gif new file mode 100644 index 00000000..16fdeacd Binary files /dev/null and b/lectures/img/data_visualize/NagsHead_animation.gif differ diff --git a/lectures/img/data_visualize/Pareviewshedarc.jpg b/lectures/img/data_visualize/Pareviewshedarc.jpg new file mode 100644 index 00000000..d4c7168c Binary files /dev/null and b/lectures/img/data_visualize/Pareviewshedarc.jpg differ diff --git a/lectures/img/data_visualize/accum_1m_log.jpg b/lectures/img/data_visualize/accum_1m_log.jpg new file mode 100644 index 00000000..4c475850 Binary files /dev/null and b/lectures/img/data_visualize/accum_1m_log.jpg differ diff --git a/lectures/img/data_visualize/accum_1m_unif.jpg b/lectures/img/data_visualize/accum_1m_unif.jpg new file mode 100644 index 00000000..82a72579 Binary files /dev/null and b/lectures/img/data_visualize/accum_1m_unif.jpg differ diff --git a/lectures/img/data_visualize/accum_50K_30mabs.png b/lectures/img/data_visualize/accum_50K_30mabs.png new file mode 100644 index 00000000..9d370bbf Binary files /dev/null and b/lectures/img/data_visualize/accum_50K_30mabs.png differ diff --git a/lectures/img/data_visualize/anim_storsurge.gif b/lectures/img/data_visualize/anim_storsurge.gif new file mode 100644 index 00000000..d604ef1c Binary files /dev/null and b/lectures/img/data_visualize/anim_storsurge.gif differ diff --git a/lectures/img/data_visualize/cartogrid_ll.png b/lectures/img/data_visualize/cartogrid_ll.png new file mode 100644 index 00000000..d771e763 Binary files /dev/null and b/lectures/img/data_visualize/cartogrid_ll.png differ diff --git a/lectures/img/data_visualize/cartogrid_xy.png b/lectures/img/data_visualize/cartogrid_xy.png new file mode 100644 index 00000000..01b40567 Binary files /dev/null and b/lectures/img/data_visualize/cartogrid_xy.png differ diff --git a/lectures/img/data_visualize/collaboration2.JPG b/lectures/img/data_visualize/collaboration2.JPG new file mode 100644 index 00000000..9a7001e2 Binary files /dev/null and b/lectures/img/data_visualize/collaboration2.JPG differ diff --git a/lectures/img/data_visualize/costsurf_roads.jpg b/lectures/img/data_visualize/costsurf_roads.jpg new file mode 100644 index 00000000..f1d77f6f Binary files /dev/null and b/lectures/img/data_visualize/costsurf_roads.jpg differ diff --git a/lectures/img/data_visualize/elev3d_S_30km_z1.jpg b/lectures/img/data_visualize/elev3d_S_30km_z1.jpg new file mode 100644 index 00000000..03fe83ff Binary files /dev/null and b/lectures/img/data_visualize/elev3d_S_30km_z1.jpg differ diff --git a/lectures/img/data_visualize/elev3d_S_5km_z5.jpg b/lectures/img/data_visualize/elev3d_S_5km_z5.jpg new file mode 100644 index 00000000..e0cb663b Binary files /dev/null and b/lectures/img/data_visualize/elev3d_S_5km_z5.jpg differ diff --git a/lectures/img/data_visualize/elev_histo.png b/lectures/img/data_visualize/elev_histo.png new file mode 100644 index 00000000..d899d580 Binary files /dev/null and b/lectures/img/data_visualize/elev_histo.png differ diff --git a/lectures/img/data_visualize/fanimhhcolp.gif b/lectures/img/data_visualize/fanimhhcolp.gif new file mode 100644 index 00000000..ea8cb845 Binary files /dev/null and b/lectures/img/data_visualize/fanimhhcolp.gif differ diff --git a/lectures/img/data_visualize/flowacc_histeq_lg.png b/lectures/img/data_visualize/flowacc_histeq_lg.png new file mode 100644 index 00000000..44281797 Binary files /dev/null and b/lectures/img/data_visualize/flowacc_histeq_lg.png differ diff --git a/lectures/img/data_visualize/flowacc_log_lg.jpg b/lectures/img/data_visualize/flowacc_log_lg.jpg new file mode 100644 index 00000000..f15d11e5 Binary files /dev/null and b/lectures/img/data_visualize/flowacc_log_lg.jpg differ diff --git a/lectures/img/data_visualize/flowlegend.png b/lectures/img/data_visualize/flowlegend.png new file mode 100644 index 00000000..38440b47 Binary files /dev/null and b/lectures/img/data_visualize/flowlegend.png differ diff --git a/lectures/img/data_visualize/jr_74_17_anim3dlgfix.gif b/lectures/img/data_visualize/jr_74_17_anim3dlgfix.gif new file mode 100644 index 00000000..bd8f2aff Binary files /dev/null and b/lectures/img/data_visualize/jr_74_17_anim3dlgfix.gif differ diff --git a/lectures/img/data_visualize/jr_74_17_cut3.jpg b/lectures/img/data_visualize/jr_74_17_cut3.jpg new file mode 100644 index 00000000..28702759 Binary files /dev/null and b/lectures/img/data_visualize/jr_74_17_cut3.jpg differ diff --git a/lectures/img/data_visualize/kepler_water_query.png b/lectures/img/data_visualize/kepler_water_query.png new file mode 100644 index 00000000..a294aeef Binary files /dev/null and b/lectures/img/data_visualize/kepler_water_query.png differ diff --git a/lectures/img/data_visualize/lidnvizmultiplesurf.jpg b/lectures/img/data_visualize/lidnvizmultiplesurf.jpg new file mode 100644 index 00000000..41e30472 Binary files /dev/null and b/lectures/img/data_visualize/lidnvizmultiplesurf.jpg differ diff --git a/lectures/img/data_visualize/mapdisplay.jpg b/lectures/img/data_visualize/mapdisplay.jpg new file mode 100644 index 00000000..9d85465e Binary files /dev/null and b/lectures/img/data_visualize/mapdisplay.jpg differ diff --git a/lectures/img/data_visualize/mymap.png b/lectures/img/data_visualize/mymap.png new file mode 100644 index 00000000..29589993 Binary files /dev/null and b/lectures/img/data_visualize/mymap.png differ diff --git a/lectures/img/data_visualize/nvizcutplane_lwDSMDEMS2.jpg b/lectures/img/data_visualize/nvizcutplane_lwDSMDEMS2.jpg new file mode 100644 index 00000000..bdd42ff1 Binary files /dev/null and b/lectures/img/data_visualize/nvizcutplane_lwDSMDEMS2.jpg differ diff --git a/lectures/img/data_visualize/nvizcutplanelwDEMDSMS.jpg b/lectures/img/data_visualize/nvizcutplanelwDEMDSMS.jpg new file mode 100644 index 00000000..5ef6fe17 Binary files /dev/null and b/lectures/img/data_visualize/nvizcutplanelwDEMDSMS.jpg differ diff --git a/lectures/img/data_visualize/nvizlightnew.jpg b/lectures/img/data_visualize/nvizlightnew.jpg new file mode 100644 index 00000000..2ab89d1e Binary files /dev/null and b/lectures/img/data_visualize/nvizlightnew.jpg differ diff --git a/lectures/img/data_visualize/pfas_kepler_3D.png b/lectures/img/data_visualize/pfas_kepler_3D.png new file mode 100644 index 00000000..e092b323 Binary files /dev/null and b/lectures/img/data_visualize/pfas_kepler_3D.png differ diff --git a/lectures/img/data_visualize/process4.png b/lectures/img/data_visualize/process4.png new file mode 100644 index 00000000..404cad97 Binary files /dev/null and b/lectures/img/data_visualize/process4.png differ diff --git a/lectures/img/data_visualize/raster_large_streams.jpg b/lectures/img/data_visualize/raster_large_streams.jpg new file mode 100644 index 00000000..8290ae2f Binary files /dev/null and b/lectures/img/data_visualize/raster_large_streams.jpg differ diff --git a/lectures/img/data_visualize/raster_large_streamszoom.jpg b/lectures/img/data_visualize/raster_large_streamszoom.jpg new file mode 100644 index 00000000..4a68adcc Binary files /dev/null and b/lectures/img/data_visualize/raster_large_streamszoom.jpg differ diff --git a/lectures/img/data_visualize/raster_vect_displ_zoom.jpg b/lectures/img/data_visualize/raster_vect_displ_zoom.jpg new file mode 100644 index 00000000..178dbdfe Binary files /dev/null and b/lectures/img/data_visualize/raster_vect_displ_zoom.jpg differ diff --git a/lectures/img/data_visualize/rastercont_elev.jpg b/lectures/img/data_visualize/rastercont_elev.jpg new file mode 100644 index 00000000..ef7ac39c Binary files /dev/null and b/lectures/img/data_visualize/rastercont_elev.jpg differ diff --git a/lectures/img/data_visualize/relief_shade_color.jpg b/lectures/img/data_visualize/relief_shade_color.jpg new file mode 100644 index 00000000..c83a426b Binary files /dev/null and b/lectures/img/data_visualize/relief_shade_color.jpg differ diff --git a/lectures/img/data_visualize/rendered_diagram_2.png b/lectures/img/data_visualize/rendered_diagram_2.png new file mode 100644 index 00000000..90e1cf2f Binary files /dev/null and b/lectures/img/data_visualize/rendered_diagram_2.png differ diff --git a/lectures/img/data_visualize/rgbcmykcolor.jpg b/lectures/img/data_visualize/rgbcmykcolor.jpg new file mode 100644 index 00000000..c03f9c7d Binary files /dev/null and b/lectures/img/data_visualize/rgbcmykcolor.jpg differ diff --git a/lectures/img/data_visualize/scalbar.png b/lectures/img/data_visualize/scalbar.png new file mode 100644 index 00000000..edc3a705 Binary files /dev/null and b/lectures/img/data_visualize/scalbar.png differ diff --git a/lectures/img/data_visualize/slope.png b/lectures/img/data_visualize/slope.png new file mode 100644 index 00000000..85c31354 Binary files /dev/null and b/lectures/img/data_visualize/slope.png differ diff --git a/lectures/img/data_visualize/slope_c6.png b/lectures/img/data_visualize/slope_c6.png new file mode 100644 index 00000000..eff676ad Binary files /dev/null and b/lectures/img/data_visualize/slope_c6.png differ diff --git a/lectures/img/data_visualize/slope_c6b.png b/lectures/img/data_visualize/slope_c6b.png new file mode 100644 index 00000000..6c67bb20 Binary files /dev/null and b/lectures/img/data_visualize/slope_c6b.png differ diff --git a/lectures/img/data_visualize/slope_c6b_hist.png b/lectures/img/data_visualize/slope_c6b_hist.png new file mode 100644 index 00000000..8677328a Binary files /dev/null and b/lectures/img/data_visualize/slope_c6b_hist.png differ diff --git a/lectures/img/data_visualize/slope_ceq6.png b/lectures/img/data_visualize/slope_ceq6.png new file mode 100644 index 00000000..5c4f7628 Binary files /dev/null and b/lectures/img/data_visualize/slope_ceq6.png differ diff --git a/lectures/img/data_visualize/slope_ceq6_hist.png b/lectures/img/data_visualize/slope_ceq6_hist.png new file mode 100644 index 00000000..82df7fd5 Binary files /dev/null and b/lectures/img/data_visualize/slope_ceq6_hist.png differ diff --git a/lectures/img/data_visualize/slope_hist.png b/lectures/img/data_visualize/slope_hist.png new file mode 100644 index 00000000..d7a40ee7 Binary files /dev/null and b/lectures/img/data_visualize/slope_hist.png differ diff --git a/lectures/img/data_visualize/soilsKfac_discrleg.png b/lectures/img/data_visualize/soilsKfac_discrleg.png new file mode 100644 index 00000000..87b68fa2 Binary files /dev/null and b/lectures/img/data_visualize/soilsKfac_discrleg.png differ diff --git a/lectures/img/data_visualize/soils_rural_1mID.png b/lectures/img/data_visualize/soils_rural_1mID.png new file mode 100644 index 00000000..426444e6 Binary files /dev/null and b/lectures/img/data_visualize/soils_rural_1mID.png differ diff --git a/lectures/img/data_visualize/streams_order.png b/lectures/img/data_visualize/streams_order.png new file mode 100644 index 00000000..d3ec6d88 Binary files /dev/null and b/lectures/img/data_visualize/streams_order.png differ diff --git a/lectures/img/data_visualize/tangible_landscape_compcrop.jpg b/lectures/img/data_visualize/tangible_landscape_compcrop.jpg new file mode 100644 index 00000000..1c23d630 Binary files /dev/null and b/lectures/img/data_visualize/tangible_landscape_compcrop.jpg differ diff --git a/lectures/img/data_visualize/tl_interactions_all.jpg b/lectures/img/data_visualize/tl_interactions_all.jpg new file mode 100644 index 00000000..a4298667 Binary files /dev/null and b/lectures/img/data_visualize/tl_interactions_all.jpg differ diff --git a/lectures/img/data_visualize/vector_large_streams.jpg b/lectures/img/data_visualize/vector_large_streams.jpg new file mode 100644 index 00000000..4eeec23e Binary files /dev/null and b/lectures/img/data_visualize/vector_large_streams.jpg differ diff --git a/lectures/img/data_visualize/vector_large_streamszoom.jpg b/lectures/img/data_visualize/vector_large_streamszoom.jpg new file mode 100644 index 00000000..b7c64339 Binary files /dev/null and b/lectures/img/data_visualize/vector_large_streamszoom.jpg differ diff --git a/lectures/img/data_visualize/vis3dcomposits.jpg b/lectures/img/data_visualize/vis3dcomposits.jpg new file mode 100644 index 00000000..0584b394 Binary files /dev/null and b/lectures/img/data_visualize/vis3dcomposits.jpg differ diff --git a/lectures/img/data_visualize/voxels_vegetation_anim.gif b/lectures/img/data_visualize/voxels_vegetation_anim.gif new file mode 100644 index 00000000..dbb3783a Binary files /dev/null and b/lectures/img/data_visualize/voxels_vegetation_anim.gif differ diff --git a/lectures/img/data_visualize/well456.gif b/lectures/img/data_visualize/well456.gif new file mode 100644 index 00000000..7735b81d Binary files /dev/null and b/lectures/img/data_visualize/well456.gif differ diff --git a/lectures/img/data_visualize/wellnew.gif b/lectures/img/data_visualize/wellnew.gif new file mode 100644 index 00000000..3f9b4ac7 Binary files /dev/null and b/lectures/img/data_visualize/wellnew.gif differ diff --git a/lectures/img/drone_3d.png b/lectures/img/drone_3d.png new file mode 100644 index 00000000..64c0380b Binary files /dev/null and b/lectures/img/drone_3d.png differ diff --git a/lectures/img/elevation_2d_grassgis_arcgis.jpg b/lectures/img/elevation_2d_grassgis_arcgis.jpg new file mode 100644 index 00000000..e5300006 Binary files /dev/null and b/lectures/img/elevation_2d_grassgis_arcgis.jpg differ diff --git a/lectures/img/exam_alet_LCP.png b/lectures/img/exam_alet_LCP.png new file mode 100644 index 00000000..b1f1c934 Binary files /dev/null and b/lectures/img/exam_alet_LCP.png differ diff --git a/lectures/img/exam_path_laura_arcgis.png b/lectures/img/exam_path_laura_arcgis.png new file mode 100644 index 00000000..a6db276c Binary files /dev/null and b/lectures/img/exam_path_laura_arcgis.png differ diff --git a/lectures/img/figprecip3dfinco.png b/lectures/img/figprecip3dfinco.png new file mode 100644 index 00000000..c7d59272 Binary files /dev/null and b/lectures/img/figprecip3dfinco.png differ diff --git a/lectures/img/flow_erosion/8-8-03Ditch.jpg b/lectures/img/flow_erosion/8-8-03Ditch.jpg new file mode 100644 index 00000000..55070796 Binary files /dev/null and b/lectures/img/flow_erosion/8-8-03Ditch.jpg differ diff --git a/lectures/img/flow_erosion/Flow3d_irwineldsdac5.png b/lectures/img/flow_erosion/Flow3d_irwineldsdac5.png new file mode 100644 index 00000000..adbec67f Binary files /dev/null and b/lectures/img/flow_erosion/Flow3d_irwineldsdac5.png differ diff --git a/lectures/img/flow_erosion/Streams_NHD_GRASSlidar.png b/lectures/img/flow_erosion/Streams_NHD_GRASSlidar.png new file mode 100644 index 00000000..6ead33d4 Binary files /dev/null and b/lectures/img/flow_erosion/Streams_NHD_GRASSlidar.png differ diff --git a/lectures/img/flow_erosion/accum5K_gr65_mfd.jpg b/lectures/img/flow_erosion/accum5K_gr65_mfd.jpg new file mode 100644 index 00000000..e142a21b Binary files /dev/null and b/lectures/img/flow_erosion/accum5K_gr65_mfd.jpg differ diff --git a/lectures/img/flow_erosion/accum5K_gr65_sep09b.jpg b/lectures/img/flow_erosion/accum5K_gr65_sep09b.jpg new file mode 100644 index 00000000..616cecfd Binary files /dev/null and b/lectures/img/flow_erosion/accum5K_gr65_sep09b.jpg differ diff --git a/lectures/img/flow_erosion/accum_runoffdiff_30m3d.jpg b/lectures/img/flow_erosion/accum_runoffdiff_30m3d.jpg new file mode 100644 index 00000000..587c02e4 Binary files /dev/null and b/lectures/img/flow_erosion/accum_runoffdiff_30m3d.jpg differ diff --git a/lectures/img/flow_erosion/accum_runoffuni_30m3d.jpg b/lectures/img/flow_erosion/accum_runoffuni_30m3d.jpg new file mode 100644 index 00000000..0c1551b5 Binary files /dev/null and b/lectures/img/flow_erosion/accum_runoffuni_30m3d.jpg differ diff --git a/lectures/img/flow_erosion/accum_runoffvar_30m3d.jpg b/lectures/img/flow_erosion/accum_runoffvar_30m3d.jpg new file mode 100644 index 00000000..3030e610 Binary files /dev/null and b/lectures/img/flow_erosion/accum_runoffvar_30m3d.jpg differ diff --git a/lectures/img/flow_erosion/aspectarrows.png b/lectures/img/flow_erosion/aspectarrows.png new file mode 100644 index 00000000..738a7206 Binary files /dev/null and b/lectures/img/flow_erosion/aspectarrows.png differ diff --git a/lectures/img/flow_erosion/carved_dem.jpg b/lectures/img/flow_erosion/carved_dem.jpg new file mode 100644 index 00000000..00716ab3 Binary files /dev/null and b/lectures/img/flow_erosion/carved_dem.jpg differ diff --git a/lectures/img/flow_erosion/cfacbare.jpg b/lectures/img/flow_erosion/cfacbare.jpg new file mode 100644 index 00000000..3f87426e Binary files /dev/null and b/lectures/img/flow_erosion/cfacbare.jpg differ diff --git a/lectures/img/flow_erosion/depressionfill_scheme.png b/lectures/img/flow_erosion/depressionfill_scheme.png new file mode 100644 index 00000000..f17e2b6f Binary files /dev/null and b/lectures/img/flow_erosion/depressionfill_scheme.png differ diff --git a/lectures/img/flow_erosion/depressions1.png b/lectures/img/flow_erosion/depressions1.png new file mode 100644 index 00000000..6518d235 Binary files /dev/null and b/lectures/img/flow_erosion/depressions1.png differ diff --git a/lectures/img/flow_erosion/depressions2.png b/lectures/img/flow_erosion/depressions2.png new file mode 100644 index 00000000..425196e3 Binary files /dev/null and b/lectures/img/flow_erosion/depressions2.png differ diff --git a/lectures/img/flow_erosion/depressions3.png b/lectures/img/flow_erosion/depressions3.png new file mode 100644 index 00000000..7cc116ad Binary files /dev/null and b/lectures/img/flow_erosion/depressions3.png differ diff --git a/lectures/img/flow_erosion/depressions4.png b/lectures/img/flow_erosion/depressions4.png new file mode 100644 index 00000000..e82883e1 Binary files /dev/null and b/lectures/img/flow_erosion/depressions4.png differ diff --git a/lectures/img/flow_erosion/depressions_ifsare.jpg b/lectures/img/flow_erosion/depressions_ifsare.jpg new file mode 100644 index 00000000..0c6f0858 Binary files /dev/null and b/lectures/img/flow_erosion/depressions_ifsare.jpg differ diff --git a/lectures/img/flow_erosion/depressions_lidardem.jpg b/lectures/img/flow_erosion/depressions_lidardem.jpg new file mode 100644 index 00000000..ddef37de Binary files /dev/null and b/lectures/img/flow_erosion/depressions_lidardem.jpg differ diff --git a/lectures/img/flow_erosion/elev_dischtest.gif b/lectures/img/flow_erosion/elev_dischtest.gif new file mode 100644 index 00000000..e95a24b4 Binary files /dev/null and b/lectures/img/flow_erosion/elev_dischtest.gif differ diff --git a/lectures/img/flow_erosion/erdep_cerl_3d.gif b/lectures/img/flow_erosion/erdep_cerl_3d.gif new file mode 100644 index 00000000..c8a81662 Binary files /dev/null and b/lectures/img/flow_erosion/erdep_cerl_3d.gif differ diff --git a/lectures/img/flow_erosion/erdep_cerl_dem.gif b/lectures/img/flow_erosion/erdep_cerl_dem.gif new file mode 100644 index 00000000..b5ae2afd Binary files /dev/null and b/lectures/img/flow_erosion/erdep_cerl_dem.gif differ diff --git a/lectures/img/flow_erosion/fanimhhcolp.gif b/lectures/img/flow_erosion/fanimhhcolp.gif new file mode 100644 index 00000000..ea8cb845 Binary files /dev/null and b/lectures/img/flow_erosion/fanimhhcolp.gif differ diff --git a/lectures/img/flow_erosion/fanimwalk.gif b/lectures/img/flow_erosion/fanimwalk.gif new file mode 100644 index 00000000..b47df251 Binary files /dev/null and b/lectures/img/flow_erosion/fanimwalk.gif differ diff --git a/lectures/img/flow_erosion/filled_dem.jpg b/lectures/img/flow_erosion/filled_dem.jpg new file mode 100644 index 00000000..26dcbabd Binary files /dev/null and b/lectures/img/flow_erosion/filled_dem.jpg differ diff --git a/lectures/img/flow_erosion/floodedarea.jpg b/lectures/img/flow_erosion/floodedarea.jpg new file mode 100644 index 00000000..33fb46f1 Binary files /dev/null and b/lectures/img/flow_erosion/floodedarea.jpg differ diff --git a/lectures/img/flow_erosion/flowD8dem.jpg b/lectures/img/flow_erosion/flowD8dem.jpg new file mode 100644 index 00000000..91f3a2b9 Binary files /dev/null and b/lectures/img/flow_erosion/flowD8dem.jpg differ diff --git a/lectures/img/flow_erosion/flowdinfdem.jpg b/lectures/img/flow_erosion/flowdinfdem.jpg new file mode 100644 index 00000000..14848a37 Binary files /dev/null and b/lectures/img/flow_erosion/flowdinfdem.jpg differ diff --git a/lectures/img/flow_erosion/flowdispersal.jpg b/lectures/img/flow_erosion/flowdispersal.jpg new file mode 100644 index 00000000..493e652f Binary files /dev/null and b/lectures/img/flow_erosion/flowdispersal.jpg differ diff --git a/lectures/img/flow_erosion/flowlgdown.jpg b/lectures/img/flow_erosion/flowlgdown.jpg new file mode 100644 index 00000000..c4cdcf54 Binary files /dev/null and b/lectures/img/flow_erosion/flowlgdown.jpg differ diff --git a/lectures/img/flow_erosion/flowlgup.jpg b/lectures/img/flow_erosion/flowlgup.jpg new file mode 100644 index 00000000..ac82915f Binary files /dev/null and b/lectures/img/flow_erosion/flowlgup.jpg differ diff --git a/lectures/img/flow_erosion/flowlines_and_contours.png b/lectures/img/flow_erosion/flowlines_and_contours.png new file mode 100644 index 00000000..2060a900 Binary files /dev/null and b/lectures/img/flow_erosion/flowlines_and_contours.png differ diff --git a/lectures/img/flow_erosion/flowlines_flowaccum.jpg b/lectures/img/flow_erosion/flowlines_flowaccum.jpg new file mode 100644 index 00000000..c253bf05 Binary files /dev/null and b/lectures/img/flow_erosion/flowlines_flowaccum.jpg differ diff --git a/lectures/img/flow_erosion/gimlcbf1dcchdcut2.jpg b/lectures/img/flow_erosion/gimlcbf1dcchdcut2.jpg new file mode 100644 index 00000000..09c9645b Binary files /dev/null and b/lectures/img/flow_erosion/gimlcbf1dcchdcut2.jpg differ diff --git a/lectures/img/flow_erosion/gimwaterchdcut2.jpg b/lectures/img/flow_erosion/gimwaterchdcut2.jpg new file mode 100644 index 00000000..b13b47f9 Binary files /dev/null and b/lectures/img/flow_erosion/gimwaterchdcut2.jpg differ diff --git a/lectures/img/flow_erosion/gimwaterdcchdcut2.jpg b/lectures/img/flow_erosion/gimwaterdcchdcut2.jpg new file mode 100644 index 00000000..54a8313b Binary files /dev/null and b/lectures/img/flow_erosion/gimwaterdcchdcut2.jpg differ diff --git a/lectures/img/flow_erosion/gisemflow1hh.gif b/lectures/img/flow_erosion/gisemflow1hh.gif new file mode 100644 index 00000000..cab65b19 Binary files /dev/null and b/lectures/img/flow_erosion/gisemflow1hh.gif differ diff --git a/lectures/img/flow_erosion/gisemhhdifu.gif b/lectures/img/flow_erosion/gisemhhdifu.gif new file mode 100644 index 00000000..d566c9c5 Binary files /dev/null and b/lectures/img/flow_erosion/gisemhhdifu.gif differ diff --git a/lectures/img/flow_erosion/hatteras_surge_rlake.gif b/lectures/img/flow_erosion/hatteras_surge_rlake.gif new file mode 100644 index 00000000..adfc4691 Binary files /dev/null and b/lectures/img/flow_erosion/hatteras_surge_rlake.gif differ diff --git a/lectures/img/flow_erosion/inundation_5m.jpg b/lectures/img/flow_erosion/inundation_5m.jpg new file mode 100644 index 00000000..e1b70a2b Binary files /dev/null and b/lectures/img/flow_erosion/inundation_5m.jpg differ diff --git a/lectures/img/flow_erosion/lakef1994.gif b/lectures/img/flow_erosion/lakef1994.gif new file mode 100644 index 00000000..9a6bab90 Binary files /dev/null and b/lectures/img/flow_erosion/lakef1994.gif differ diff --git a/lectures/img/flow_erosion/lakeflood_swwake_streets.jpg b/lectures/img/flow_erosion/lakeflood_swwake_streets.jpg new file mode 100644 index 00000000..86d589f8 Binary files /dev/null and b/lectures/img/flow_erosion/lakeflood_swwake_streets.jpg differ diff --git a/lectures/img/flow_erosion/landclass_30m.jpg b/lectures/img/flow_erosion/landclass_30m.jpg new file mode 100644 index 00000000..ef25d76e Binary files /dev/null and b/lectures/img/flow_erosion/landclass_30m.jpg differ diff --git a/lectures/img/flow_erosion/lcp_fill1_fill2_compare.jpg b/lectures/img/flow_erosion/lcp_fill1_fill2_compare.jpg new file mode 100644 index 00000000..50eb3419 Binary files /dev/null and b/lectures/img/flow_erosion/lcp_fill1_fill2_compare.jpg differ diff --git a/lectures/img/flow_erosion/lsfac1994.gif b/lectures/img/flow_erosion/lsfac1994.gif new file mode 100644 index 00000000..62f8d2e0 Binary files /dev/null and b/lectures/img/flow_erosion/lsfac1994.gif differ diff --git a/lectures/img/flow_erosion/lw_storm2006Alberto.jpg b/lectures/img/flow_erosion/lw_storm2006Alberto.jpg new file mode 100644 index 00000000..960588fc Binary files /dev/null and b/lectures/img/flow_erosion/lw_storm2006Alberto.jpg differ diff --git a/lectures/img/flow_erosion/mdf_photo.jpg b/lectures/img/flow_erosion/mdf_photo.jpg new file mode 100644 index 00000000..fc7e58de Binary files /dev/null and b/lectures/img/flow_erosion/mdf_photo.jpg differ diff --git a/lectures/img/flow_erosion/middleschool_scen.jpg b/lectures/img/flow_erosion/middleschool_scen.jpg new file mode 100644 index 00000000..0160944f Binary files /dev/null and b/lectures/img/flow_erosion/middleschool_scen.jpg differ diff --git a/lectures/img/flow_erosion/rflowfigure.jpg b/lectures/img/flow_erosion/rflowfigure.jpg new file mode 100644 index 00000000..7bba13fc Binary files /dev/null and b/lectures/img/flow_erosion/rflowfigure.jpg differ diff --git a/lectures/img/flow_erosion/smokies_transporteq_rev.png b/lectures/img/flow_erosion/smokies_transporteq_rev.png new file mode 100644 index 00000000..0f9a448a Binary files /dev/null and b/lectures/img/flow_erosion/smokies_transporteq_rev.png differ diff --git a/lectures/img/flow_erosion/smokies_uspedexp.jpg b/lectures/img/flow_erosion/smokies_uspedexp.jpg new file mode 100644 index 00000000..02b3fd84 Binary files /dev/null and b/lectures/img/flow_erosion/smokies_uspedexp.jpg differ diff --git a/lectures/img/flow_erosion/stream_extract.jpg b/lectures/img/flow_erosion/stream_extract.jpg new file mode 100644 index 00000000..015a9a28 Binary files /dev/null and b/lectures/img/flow_erosion/stream_extract.jpg differ diff --git a/lectures/img/flow_erosion/stream_extraction_lidarc.png b/lectures/img/flow_erosion/stream_extraction_lidarc.png new file mode 100644 index 00000000..f58a6289 Binary files /dev/null and b/lectures/img/flow_erosion/stream_extraction_lidarc.png differ diff --git a/lectures/img/flow_erosion/subwatersheds.jpg b/lectures/img/flow_erosion/subwatersheds.jpg new file mode 100644 index 00000000..8802c30a Binary files /dev/null and b/lectures/img/flow_erosion/subwatersheds.jpg differ diff --git a/lectures/img/flow_erosion/uspederdepdem.jpg b/lectures/img/flow_erosion/uspederdepdem.jpg new file mode 100644 index 00000000..5c00dfdb Binary files /dev/null and b/lectures/img/flow_erosion/uspederdepdem.jpg differ diff --git a/lectures/img/flow_erosion/uspedsedflowdem.jpg b/lectures/img/flow_erosion/uspedsedflowdem.jpg new file mode 100644 index 00000000..e92260ce Binary files /dev/null and b/lectures/img/flow_erosion/uspedsedflowdem.jpg differ diff --git a/lectures/img/flow_erosion/water.gif b/lectures/img/flow_erosion/water.gif new file mode 100644 index 00000000..9a567be5 Binary files /dev/null and b/lectures/img/flow_erosion/water.gif differ diff --git a/lectures/img/flow_erosion/water01dsmall.gif b/lectures/img/flow_erosion/water01dsmall.gif new file mode 100755 index 00000000..0e19d45a Binary files /dev/null and b/lectures/img/flow_erosion/water01dsmall.gif differ diff --git a/lectures/img/flow_erosion/water_ortho_lg.png b/lectures/img/flow_erosion/water_ortho_lg.png new file mode 100644 index 00000000..a2ab2ad6 Binary files /dev/null and b/lectures/img/flow_erosion/water_ortho_lg.png differ diff --git a/lectures/img/flow_erosion/water_stormdrains_zoom.jpg b/lectures/img/flow_erosion/water_stormdrains_zoom.jpg new file mode 100644 index 00000000..11141fa4 Binary files /dev/null and b/lectures/img/flow_erosion/water_stormdrains_zoom.jpg differ diff --git a/lectures/img/flow_erosion/watershedA30.png b/lectures/img/flow_erosion/watershedA30.png new file mode 100644 index 00000000..e0613b47 Binary files /dev/null and b/lectures/img/flow_erosion/watershedA30.png differ diff --git a/lectures/img/flow_erosion/watershed_from_outlet.jpg b/lectures/img/flow_erosion/watershed_from_outlet.jpg new file mode 100644 index 00000000..3ef6cab3 Binary files /dev/null and b/lectures/img/flow_erosion/watershed_from_outlet.jpg differ diff --git a/lectures/img/flow_erosion/watersheds.jpg b/lectures/img/flow_erosion/watersheds.jpg new file mode 100644 index 00000000..d6eaaa12 Binary files /dev/null and b/lectures/img/flow_erosion/watersheds.jpg differ diff --git a/lectures/img/flow_erosion/watersheds2.jpg b/lectures/img/flow_erosion/watersheds2.jpg new file mode 100644 index 00000000..e89e95ba Binary files /dev/null and b/lectures/img/flow_erosion/watersheds2.jpg differ diff --git a/lectures/img/flow_erosion/watersheds2d.png b/lectures/img/flow_erosion/watersheds2d.png new file mode 100644 index 00000000..afcb86fa Binary files /dev/null and b/lectures/img/flow_erosion/watersheds2d.png differ diff --git a/lectures/img/flow_erosion/wettnessindex.jpg b/lectures/img/flow_erosion/wettnessindex.jpg new file mode 100644 index 00000000..919fe45e Binary files /dev/null and b/lectures/img/flow_erosion/wettnessindex.jpg differ diff --git a/lectures/img/flowsimwedem.jpg b/lectures/img/flowsimwedem.jpg new file mode 100644 index 00000000..c03051ff Binary files /dev/null and b/lectures/img/flowsimwedem.jpg differ diff --git a/lectures/img/format_tabs.png b/lectures/img/format_tabs.png new file mode 100644 index 00000000..af919ec4 Binary files /dev/null and b/lectures/img/format_tabs.png differ diff --git a/lectures/img/geomorph_terrain/CC_lid2013_3D.jpg b/lectures/img/geomorph_terrain/CC_lid2013_3D.jpg new file mode 100644 index 00000000..21344747 Binary files /dev/null and b/lectures/img/geomorph_terrain/CC_lid2013_3D.jpg differ diff --git a/lectures/img/geomorph_terrain/GDsonarem3000.jpg b/lectures/img/geomorph_terrain/GDsonarem3000.jpg new file mode 100644 index 00000000..e088f11e Binary files /dev/null and b/lectures/img/geomorph_terrain/GDsonarem3000.jpg differ diff --git a/lectures/img/geomorph_terrain/GDsonarsb4.jpg b/lectures/img/geomorph_terrain/GDsonarsb4.jpg new file mode 100644 index 00000000..7969b7e9 Binary files /dev/null and b/lectures/img/geomorph_terrain/GDsonarsb4.jpg differ diff --git a/lectures/img/geomorph_terrain/GeodynRTKGPSJR.jpg b/lectures/img/geomorph_terrain/GeodynRTKGPSJR.jpg new file mode 100644 index 00000000..1ba1c0e9 Binary files /dev/null and b/lectures/img/geomorph_terrain/GeodynRTKGPSJR.jpg differ diff --git a/lectures/img/geomorph_terrain/LidarMayancityBelize.jpg b/lectures/img/geomorph_terrain/LidarMayancityBelize.jpg new file mode 100644 index 00000000..c0d5ab40 Binary files /dev/null and b/lectures/img/geomorph_terrain/LidarMayancityBelize.jpg differ diff --git a/lectures/img/geomorph_terrain/MRlidar.jpg b/lectures/img/geomorph_terrain/MRlidar.jpg new file mode 100644 index 00000000..d265bca1 Binary files /dev/null and b/lectures/img/geomorph_terrain/MRlidar.jpg differ diff --git a/lectures/img/geomorph_terrain/Mamoth_canopy06m.jpg b/lectures/img/geomorph_terrain/Mamoth_canopy06m.jpg new file mode 100644 index 00000000..4d6bd265 Binary files /dev/null and b/lectures/img/geomorph_terrain/Mamoth_canopy06m.jpg differ diff --git a/lectures/img/geomorph_terrain/Raleigh_3Dcity_bldg.jpg b/lectures/img/geomorph_terrain/Raleigh_3Dcity_bldg.jpg new file mode 100644 index 00000000..8d65dc3a Binary files /dev/null and b/lectures/img/geomorph_terrain/Raleigh_3Dcity_bldg.jpg differ diff --git a/lectures/img/geomorph_terrain/ScanImageMosaic.jpg b/lectures/img/geomorph_terrain/ScanImageMosaic.jpg new file mode 100644 index 00000000..656c3f2e Binary files /dev/null and b/lectures/img/geomorph_terrain/ScanImageMosaic.jpg differ diff --git a/lectures/img/geomorph_terrain/TINgrassnviz2.jpg b/lectures/img/geomorph_terrain/TINgrassnviz2.jpg new file mode 100644 index 00000000..bff9ad58 Binary files /dev/null and b/lectures/img/geomorph_terrain/TINgrassnviz2.jpg differ diff --git a/lectures/img/geomorph_terrain/TINgrassnvizrand2.jpg b/lectures/img/geomorph_terrain/TINgrassnvizrand2.jpg new file mode 100644 index 00000000..24bb72a2 Binary files /dev/null and b/lectures/img/geomorph_terrain/TINgrassnvizrand2.jpg differ diff --git a/lectures/img/geomorph_terrain/bathy_multibeam.jpg b/lectures/img/geomorph_terrain/bathy_multibeam.jpg new file mode 100644 index 00000000..01fe3ef5 Binary files /dev/null and b/lectures/img/geomorph_terrain/bathy_multibeam.jpg differ diff --git a/lectures/img/geomorph_terrain/bathylidar_florida.jpg b/lectures/img/geomorph_terrain/bathylidar_florida.jpg new file mode 100644 index 00000000..6933b248 Binary files /dev/null and b/lectures/img/geomorph_terrain/bathylidar_florida.jpg differ diff --git a/lectures/img/geomorph_terrain/chicago_fly.jpg b/lectures/img/geomorph_terrain/chicago_fly.jpg new file mode 100644 index 00000000..b10d2544 Binary files /dev/null and b/lectures/img/geomorph_terrain/chicago_fly.jpg differ diff --git a/lectures/img/geomorph_terrain/chimneyrock.jpg b/lectures/img/geomorph_terrain/chimneyrock.jpg new file mode 100644 index 00000000..1802e753 Binary files /dev/null and b/lectures/img/geomorph_terrain/chimneyrock.jpg differ diff --git a/lectures/img/geomorph_terrain/contours_lidrough.png b/lectures/img/geomorph_terrain/contours_lidrough.png new file mode 100644 index 00000000..f3103008 Binary files /dev/null and b/lectures/img/geomorph_terrain/contours_lidrough.png differ diff --git a/lectures/img/geomorph_terrain/contours_smooth.png b/lectures/img/geomorph_terrain/contours_smooth.png new file mode 100644 index 00000000..9ad88017 Binary files /dev/null and b/lectures/img/geomorph_terrain/contours_smooth.png differ diff --git a/lectures/img/geomorph_terrain/count_ground_terrlid.png b/lectures/img/geomorph_terrain/count_ground_terrlid.png new file mode 100644 index 00000000..c6a622d0 Binary files /dev/null and b/lectures/img/geomorph_terrain/count_ground_terrlid.png differ diff --git a/lectures/img/geomorph_terrain/cropcanopymodel_uas.jpg b/lectures/img/geomorph_terrain/cropcanopymodel_uas.jpg new file mode 100644 index 00000000..71172ed4 Binary files /dev/null and b/lectures/img/geomorph_terrain/cropcanopymodel_uas.jpg differ diff --git a/lectures/img/geomorph_terrain/dem_1m.jpg b/lectures/img/geomorph_terrain/dem_1m.jpg new file mode 100644 index 00000000..f7b203b9 Binary files /dev/null and b/lectures/img/geomorph_terrain/dem_1m.jpg differ diff --git a/lectures/img/geomorph_terrain/lid2013HL_13_16_3ft_3daysolarwinter.jpg b/lectures/img/geomorph_terrain/lid2013HL_13_16_3ft_3daysolarwinter.jpg new file mode 100644 index 00000000..80877cf6 Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013HL_13_16_3ft_3daysolarwinter.jpg differ diff --git a/lectures/img/geomorph_terrain/lid2013_1r_3ft_3d.jpg b/lectures/img/geomorph_terrain/lid2013_1r_3ft_3d.jpg new file mode 100644 index 00000000..9fa83ce7 Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013_1r_3ft_3d.jpg differ diff --git a/lectures/img/geomorph_terrain/lid2013_1r_n_3ftb.png b/lectures/img/geomorph_terrain/lid2013_1r_n_3ftb.png new file mode 100644 index 00000000..ab0964cd Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013_1r_n_3ftb.png differ diff --git a/lectures/img/geomorph_terrain/lid2013_all_n_3ftb.png b/lectures/img/geomorph_terrain/lid2013_all_n_3ftb.png new file mode 100644 index 00000000..d54dbc20 Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013_all_n_3ftb.png differ diff --git a/lectures/img/geomorph_terrain/lid2013_be_3ft_3d.jpg b/lectures/img/geomorph_terrain/lid2013_be_3ft_3d.jpg new file mode 100644 index 00000000..1233a0f2 Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013_be_3ft_3d.jpg differ diff --git a/lectures/img/geomorph_terrain/lid2013_be_n_3ftb.png b/lectures/img/geomorph_terrain/lid2013_be_n_3ftb.png new file mode 100644 index 00000000..2ee17963 Binary files /dev/null and b/lectures/img/geomorph_terrain/lid2013_be_n_3ftb.png differ diff --git a/lectures/img/geomorph_terrain/lidar_first_bare.jpg b/lectures/img/geomorph_terrain/lidar_first_bare.jpg new file mode 100644 index 00000000..91a81b52 Binary files /dev/null and b/lectures/img/geomorph_terrain/lidar_first_bare.jpg differ diff --git a/lectures/img/geomorph_terrain/lidar_keren.jpg b/lectures/img/geomorph_terrain/lidar_keren.jpg new file mode 100644 index 00000000..44b57b2c Binary files /dev/null and b/lectures/img/geomorph_terrain/lidar_keren.jpg differ diff --git a/lectures/img/geomorph_terrain/lidarfirstbeptscoverbldg.png b/lectures/img/geomorph_terrain/lidarfirstbeptscoverbldg.png new file mode 100644 index 00000000..5c9381a5 Binary files /dev/null and b/lectures/img/geomorph_terrain/lidarfirstbeptscoverbldg.png differ diff --git a/lectures/img/geomorph_terrain/liddfdm1e.jpg b/lectures/img/geomorph_terrain/liddfdm1e.jpg new file mode 100644 index 00000000..ef82e90e Binary files /dev/null and b/lectures/img/geomorph_terrain/liddfdm1e.jpg differ diff --git a/lectures/img/geomorph_terrain/lidpoints.png b/lectures/img/geomorph_terrain/lidpoints.png new file mode 100644 index 00000000..1ba5513f Binary files /dev/null and b/lectures/img/geomorph_terrain/lidpoints.png differ diff --git a/lectures/img/geomorph_terrain/lidstorast.jpg b/lectures/img/geomorph_terrain/lidstorast.jpg new file mode 100644 index 00000000..1ed586c7 Binary files /dev/null and b/lectures/img/geomorph_terrain/lidstorast.jpg differ diff --git a/lectures/img/geomorph_terrain/lidstorast1m.jpg b/lectures/img/geomorph_terrain/lidstorast1m.jpg new file mode 100644 index 00000000..9b80715f Binary files /dev/null and b/lectures/img/geomorph_terrain/lidstorast1m.jpg differ diff --git a/lectures/img/geomorph_terrain/points3d.png b/lectures/img/geomorph_terrain/points3d.png new file mode 100644 index 00000000..ec19a6ca Binary files /dev/null and b/lectures/img/geomorph_terrain/points3d.png differ diff --git a/lectures/img/geomorph_terrain/points_contours.jpg b/lectures/img/geomorph_terrain/points_contours.jpg new file mode 100644 index 00000000..dd9fbd17 Binary files /dev/null and b/lectures/img/geomorph_terrain/points_contours.jpg differ diff --git a/lectures/img/geomorph_terrain/points_lidar_gps.jpg b/lectures/img/geomorph_terrain/points_lidar_gps.jpg new file mode 100644 index 00000000..633fce5b Binary files /dev/null and b/lectures/img/geomorph_terrain/points_lidar_gps.jpg differ diff --git a/lectures/img/geomorph_terrain/profiles_points_and_ff.png b/lectures/img/geomorph_terrain/profiles_points_and_ff.png new file mode 100644 index 00000000..6bc8887d Binary files /dev/null and b/lectures/img/geomorph_terrain/profiles_points_and_ff.png differ diff --git a/lectures/img/geomorph_terrain/scalebar100m.png b/lectures/img/geomorph_terrain/scalebar100m.png new file mode 100644 index 00000000..6c3027d6 Binary files /dev/null and b/lectures/img/geomorph_terrain/scalebar100m.png differ diff --git a/lectures/img/geomorph_terrain/terrestrialscanpoints.jpg b/lectures/img/geomorph_terrain/terrestrialscanpoints.jpg new file mode 100644 index 00000000..4e14dadd Binary files /dev/null and b/lectures/img/geomorph_terrain/terrestrialscanpoints.jpg differ diff --git a/lectures/img/geomorph_terrain/textileschool_mesh_payam.png b/lectures/img/geomorph_terrain/textileschool_mesh_payam.png new file mode 100644 index 00000000..1eb3564a Binary files /dev/null and b/lectures/img/geomorph_terrain/textileschool_mesh_payam.png differ diff --git a/lectures/img/geomorph_terrain/tin2.jpg b/lectures/img/geomorph_terrain/tin2.jpg new file mode 100644 index 00000000..4018d3cd Binary files /dev/null and b/lectures/img/geomorph_terrain/tin2.jpg differ diff --git a/lectures/img/geomorph_terrain/tin2dstream.jpg b/lectures/img/geomorph_terrain/tin2dstream.jpg new file mode 100644 index 00000000..13448fb7 Binary files /dev/null and b/lectures/img/geomorph_terrain/tin2dstream.jpg differ diff --git a/lectures/img/geomorph_terrain/uas_lidar_update.gif b/lectures/img/geomorph_terrain/uas_lidar_update.gif new file mode 100644 index 00000000..3c1d8ae7 Binary files /dev/null and b/lectures/img/geomorph_terrain/uas_lidar_update.gif differ diff --git a/lectures/img/geomorph_terrain/voxels_vegetation_anim.gif b/lectures/img/geomorph_terrain/voxels_vegetation_anim.gif new file mode 100644 index 00000000..dbb3783a Binary files /dev/null and b/lectures/img/geomorph_terrain/voxels_vegetation_anim.gif differ diff --git a/lectures/img/gpl_logo.svg b/lectures/img/gpl_logo.svg new file mode 100644 index 00000000..999b59e5 --- /dev/null +++ b/lectures/img/gpl_logo.svg @@ -0,0 +1,245 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lectures/img/grass_addons.png b/lectures/img/grass_addons.png new file mode 100644 index 00000000..e6789773 Binary files /dev/null and b/lectures/img/grass_addons.png differ diff --git a/lectures/img/grass_bug_in_equation.png b/lectures/img/grass_bug_in_equation.png new file mode 100644 index 00000000..b542c897 Binary files /dev/null and b/lectures/img/grass_bug_in_equation.png differ diff --git a/lectures/img/grass_cli.png b/lectures/img/grass_cli.png new file mode 100644 index 00000000..1b06cdf7 Binary files /dev/null and b/lectures/img/grass_cli.png differ diff --git a/lectures/img/grass_computational_region.png b/lectures/img/grass_computational_region.png new file mode 100644 index 00000000..668b2e5c Binary files /dev/null and b/lectures/img/grass_computational_region.png differ diff --git a/lectures/img/grass_count_and_modules.png b/lectures/img/grass_count_and_modules.png new file mode 100644 index 00000000..e788d1eb Binary files /dev/null and b/lectures/img/grass_count_and_modules.png differ diff --git a/lectures/img/grass_data_tab.png b/lectures/img/grass_data_tab.png new file mode 100644 index 00000000..20e86297 Binary files /dev/null and b/lectures/img/grass_data_tab.png differ diff --git a/lectures/img/grass_data_tab.svg b/lectures/img/grass_data_tab.svg new file mode 100644 index 00000000..c6101df7 --- /dev/null +++ b/lectures/img/grass_data_tab.svg @@ -0,0 +1,792 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All spatial data in GRASS GISare stored in a database + Usually a directory named grassdata + A special mapset calledPERMANENT is in every location + All data in one location have the same SRS + Mapsets help organize the data + The database isdivided into locations + Each location isdivided into mapsets + + + + + + + + + diff --git a/lectures/img/grass_datacatalog0.jpg b/lectures/img/grass_datacatalog0.jpg new file mode 100644 index 00000000..92d535d4 Binary files /dev/null and b/lectures/img/grass_datacatalog0.jpg differ diff --git a/lectures/img/grass_datacatalog1.jpg b/lectures/img/grass_datacatalog1.jpg new file mode 100644 index 00000000..8d133995 Binary files /dev/null and b/lectures/img/grass_datacatalog1.jpg differ diff --git a/lectures/img/grass_datacatalog2.jpg b/lectures/img/grass_datacatalog2.jpg new file mode 100644 index 00000000..b2f073a3 Binary files /dev/null and b/lectures/img/grass_datacatalog2.jpg differ diff --git a/lectures/img/grass_datacatalog3.jpg b/lectures/img/grass_datacatalog3.jpg new file mode 100644 index 00000000..0aa367f2 Binary files /dev/null and b/lectures/img/grass_datacatalog3.jpg differ diff --git a/lectures/img/grass_gui.png b/lectures/img/grass_gui.png new file mode 100644 index 00000000..dece1e87 Binary files /dev/null and b/lectures/img/grass_gui.png differ diff --git a/lectures/img/grass_hexagons_3d_white_outlier.png b/lectures/img/grass_hexagons_3d_white_outlier.png new file mode 100644 index 00000000..d856bed0 Binary files /dev/null and b/lectures/img/grass_hexagons_3d_white_outlier.png differ diff --git a/lectures/img/grass_logo.png b/lectures/img/grass_logo.png new file mode 100644 index 00000000..07066ddb Binary files /dev/null and b/lectures/img/grass_logo.png differ diff --git a/lectures/img/grass_logo_development.png b/lectures/img/grass_logo_development.png new file mode 100644 index 00000000..496ed3a0 Binary files /dev/null and b/lectures/img/grass_logo_development.png differ diff --git a/lectures/img/grass_manpage.jpg b/lectures/img/grass_manpage.jpg new file mode 100644 index 00000000..12a45d84 Binary files /dev/null and b/lectures/img/grass_manpage.jpg differ diff --git a/lectures/img/grass_modeler_skyview.png b/lectures/img/grass_modeler_skyview.png new file mode 100644 index 00000000..19b7913d Binary files /dev/null and b/lectures/img/grass_modeler_skyview.png differ diff --git a/lectures/img/grass_module_author_source.png b/lectures/img/grass_module_author_source.png new file mode 100644 index 00000000..d6eb45a0 Binary files /dev/null and b/lectures/img/grass_module_author_source.png differ diff --git a/lectures/img/grass_module_references.png b/lectures/img/grass_module_references.png new file mode 100644 index 00000000..8ab37c58 Binary files /dev/null and b/lectures/img/grass_module_references.png differ diff --git a/lectures/img/grass_startup.png b/lectures/img/grass_startup.png new file mode 100644 index 00000000..efe61b76 Binary files /dev/null and b/lectures/img/grass_startup.png differ diff --git a/lectures/img/grass_user_mailing_list.png b/lectures/img/grass_user_mailing_list.png new file mode 100644 index 00000000..1d3cc4e0 Binary files /dev/null and b/lectures/img/grass_user_mailing_list.png differ diff --git a/lectures/img/grasslogo_variant_nobg.png b/lectures/img/grasslogo_variant_nobg.png new file mode 100644 index 00000000..e04c2ee5 Binary files /dev/null and b/lectures/img/grasslogo_variant_nobg.png differ diff --git a/lectures/img/hunt_vis.jpg b/lectures/img/hunt_vis.jpg new file mode 100644 index 00000000..cf5fcefc Binary files /dev/null and b/lectures/img/hunt_vis.jpg differ diff --git a/lectures/img/interpolationBW.jpg b/lectures/img/interpolationBW.jpg new file mode 100644 index 00000000..d314d236 Binary files /dev/null and b/lectures/img/interpolationBW.jpg differ diff --git a/lectures/img/interpolation_methods.jpg b/lectures/img/interpolation_methods.jpg new file mode 100644 index 00000000..7bdb49c4 Binary files /dev/null and b/lectures/img/interpolation_methods.jpg differ diff --git a/lectures/img/landforms.jpg b/lectures/img/landforms.jpg new file mode 100644 index 00000000..5322ccad Binary files /dev/null and b/lectures/img/landforms.jpg differ diff --git a/lectures/img/landforms_45c1m.jpg b/lectures/img/landforms_45c1m.jpg new file mode 100644 index 00000000..b8f49cbc Binary files /dev/null and b/lectures/img/landforms_45c1m.jpg differ diff --git a/lectures/img/leastcostfire3d.jpg b/lectures/img/leastcostfire3d.jpg new file mode 100644 index 00000000..c15ad475 Binary files /dev/null and b/lectures/img/leastcostfire3d.jpg differ diff --git a/lectures/img/leastcostpath.jpg b/lectures/img/leastcostpath.jpg new file mode 100644 index 00000000..606f3c4e Binary files /dev/null and b/lectures/img/leastcostpath.jpg differ diff --git a/lectures/img/lid2013_1r_3ft_3d.jpg b/lectures/img/lid2013_1r_3ft_3d.jpg new file mode 100644 index 00000000..9fa83ce7 Binary files /dev/null and b/lectures/img/lid2013_1r_3ft_3d.jpg differ diff --git a/lectures/img/lid2013_1r_n_3ftb.png b/lectures/img/lid2013_1r_n_3ftb.png new file mode 100644 index 00000000..ab0964cd Binary files /dev/null and b/lectures/img/lid2013_1r_n_3ftb.png differ diff --git a/lectures/img/lid2013_be_3ft_3d.tif b/lectures/img/lid2013_be_3ft_3d.tif new file mode 100644 index 00000000..62f98ac0 Binary files /dev/null and b/lectures/img/lid2013_be_3ft_3d.tif differ diff --git a/lectures/img/lidar_tension_curv.gif b/lectures/img/lidar_tension_curv.gif new file mode 100644 index 00000000..b843923c Binary files /dev/null and b/lectures/img/lidar_tension_curv.gif differ diff --git a/lectures/img/lidarmrpts3dcolored.jpg b/lectures/img/lidarmrpts3dcolored.jpg new file mode 100644 index 00000000..f2ff8761 Binary files /dev/null and b/lectures/img/lidarmrpts3dcolored.jpg differ diff --git a/lectures/img/lidnvizmultiplesurf.jpg b/lectures/img/lidnvizmultiplesurf.jpg new file mode 100644 index 00000000..41e30472 Binary files /dev/null and b/lectures/img/lidnvizmultiplesurf.jpg differ diff --git a/lectures/img/nc_elev_color.jpg b/lectures/img/nc_elev_color.jpg new file mode 100644 index 00000000..6d3f4c3e Binary files /dev/null and b/lectures/img/nc_elev_color.jpg differ diff --git a/lectures/img/nc_overview.jpg b/lectures/img/nc_overview.jpg new file mode 100644 index 00000000..8a2811ce Binary files /dev/null and b/lectures/img/nc_overview.jpg differ diff --git a/lectures/img/nvizcutplane_lwDSMDEMS2.jpg b/lectures/img/nvizcutplane_lwDSMDEMS2.jpg new file mode 100644 index 00000000..bdd42ff1 Binary files /dev/null and b/lectures/img/nvizcutplane_lwDSMDEMS2.jpg differ diff --git a/lectures/img/nvizcutplanelwDEMDSMS.jpg b/lectures/img/nvizcutplanelwDEMDSMS.jpg new file mode 100644 index 00000000..5ef6fe17 Binary files /dev/null and b/lectures/img/nvizcutplanelwDEMDSMS.jpg differ diff --git a/lectures/img/osgeo2.png b/lectures/img/osgeo2.png new file mode 100644 index 00000000..90cf4781 Binary files /dev/null and b/lectures/img/osgeo2.png differ diff --git a/lectures/img/osgeo_logo.png b/lectures/img/osgeo_logo.png new file mode 100644 index 00000000..f4ef3482 Binary files /dev/null and b/lectures/img/osgeo_logo.png differ diff --git a/lectures/img/project_anna.jpg b/lectures/img/project_anna.jpg new file mode 100644 index 00000000..42d20816 Binary files /dev/null and b/lectures/img/project_anna.jpg differ diff --git a/lectures/img/projectfiregrass_vasekcr.png b/lectures/img/projectfiregrass_vasekcr.png new file mode 100644 index 00000000..998e06e0 Binary files /dev/null and b/lectures/img/projectfiregrass_vasekcr.png differ diff --git a/lectures/img/pyedit.png b/lectures/img/pyedit.png new file mode 100644 index 00000000..f2cf2197 Binary files /dev/null and b/lectures/img/pyedit.png differ diff --git a/lectures/img/qgis_processing.png b/lectures/img/qgis_processing.png new file mode 100644 index 00000000..790c5914 Binary files /dev/null and b/lectures/img/qgis_processing.png differ diff --git a/lectures/img/r_in_lidar_command_in_bash.png b/lectures/img/r_in_lidar_command_in_bash.png new file mode 100644 index 00000000..0301909c Binary files /dev/null and b/lectures/img/r_in_lidar_command_in_bash.png differ diff --git a/lectures/img/r_in_lidar_command_in_python.png b/lectures/img/r_in_lidar_command_in_python.png new file mode 100644 index 00000000..7463637e Binary files /dev/null and b/lectures/img/r_in_lidar_command_in_python.png differ diff --git a/lectures/img/r_in_lidar_dialog.png b/lectures/img/r_in_lidar_dialog.png new file mode 100644 index 00000000..3c4d20ae Binary files /dev/null and b/lectures/img/r_in_lidar_dialog.png differ diff --git a/lectures/img/r_neighbors_dialog.png b/lectures/img/r_neighbors_dialog.png new file mode 100644 index 00000000..69ad8200 Binary files /dev/null and b/lectures/img/r_neighbors_dialog.png differ diff --git a/lectures/img/spatial_interpolation/DelaunayTIN1.png b/lectures/img/spatial_interpolation/DelaunayTIN1.png new file mode 100644 index 00000000..44a22306 Binary files /dev/null and b/lectures/img/spatial_interpolation/DelaunayTIN1.png differ diff --git a/lectures/img/spatial_interpolation/DelaunayTIN2.png b/lectures/img/spatial_interpolation/DelaunayTIN2.png new file mode 100644 index 00000000..6d0f8504 Binary files /dev/null and b/lectures/img/spatial_interpolation/DelaunayTIN2.png differ diff --git a/lectures/img/spatial_interpolation/DelaunayTIN_Voronoi.png b/lectures/img/spatial_interpolation/DelaunayTIN_Voronoi.png new file mode 100644 index 00000000..712b7939 Binary files /dev/null and b/lectures/img/spatial_interpolation/DelaunayTIN_Voronoi.png differ diff --git a/lectures/img/spatial_interpolation/GeostITC_variogramspher.jpg b/lectures/img/spatial_interpolation/GeostITC_variogramspher.jpg new file mode 100644 index 00000000..c3327e6c Binary files /dev/null and b/lectures/img/spatial_interpolation/GeostITC_variogramspher.jpg differ diff --git a/lectures/img/spatial_interpolation/IntF1a.gif b/lectures/img/spatial_interpolation/IntF1a.gif new file mode 100644 index 00000000..881d2414 Binary files /dev/null and b/lectures/img/spatial_interpolation/IntF1a.gif differ diff --git a/lectures/img/spatial_interpolation/IntIDWF1c.gif b/lectures/img/spatial_interpolation/IntIDWF1c.gif new file mode 100644 index 00000000..b2a397c4 Binary files /dev/null and b/lectures/img/spatial_interpolation/IntIDWF1c.gif differ diff --git a/lectures/img/spatial_interpolation/IntRSTF1f.gif b/lectures/img/spatial_interpolation/IntRSTF1f.gif new file mode 100644 index 00000000..e3608a26 Binary files /dev/null and b/lectures/img/spatial_interpolation/IntRSTF1f.gif differ diff --git a/lectures/img/spatial_interpolation/IntTinF1b.gif b/lectures/img/spatial_interpolation/IntTinF1b.gif new file mode 100644 index 00000000..0edd3242 Binary files /dev/null and b/lectures/img/spatial_interpolation/IntTinF1b.gif differ diff --git a/lectures/img/spatial_interpolation/IntkrigF1d.gif b/lectures/img/spatial_interpolation/IntkrigF1d.gif new file mode 100644 index 00000000..a60fde3c Binary files /dev/null and b/lectures/img/spatial_interpolation/IntkrigF1d.gif differ diff --git a/lectures/img/spatial_interpolation/InttopogrF1e.gif b/lectures/img/spatial_interpolation/InttopogrF1e.gif new file mode 100644 index 00000000..3f5d7016 Binary files /dev/null and b/lectures/img/spatial_interpolation/InttopogrF1e.gif differ diff --git a/lectures/img/spatial_interpolation/TINgrassnviz2.jpg b/lectures/img/spatial_interpolation/TINgrassnviz2.jpg new file mode 100644 index 00000000..bff9ad58 Binary files /dev/null and b/lectures/img/spatial_interpolation/TINgrassnviz2.jpg differ diff --git a/lectures/img/spatial_interpolation/TINgrassnvizrand2.jpg b/lectures/img/spatial_interpolation/TINgrassnvizrand2.jpg new file mode 100644 index 00000000..24bb72a2 Binary files /dev/null and b/lectures/img/spatial_interpolation/TINgrassnvizrand2.jpg differ diff --git a/lectures/img/spatial_interpolation/asp_rcont.png b/lectures/img/spatial_interpolation/asp_rcont.png new file mode 100644 index 00000000..1362c142 Binary files /dev/null and b/lectures/img/spatial_interpolation/asp_rcont.png differ diff --git a/lectures/img/spatial_interpolation/asp_rst_t10.png b/lectures/img/spatial_interpolation/asp_rst_t10.png new file mode 100644 index 00000000..3e4eaaab Binary files /dev/null and b/lectures/img/spatial_interpolation/asp_rst_t10.png differ diff --git a/lectures/img/spatial_interpolation/asp_rst_t160.png b/lectures/img/spatial_interpolation/asp_rst_t160.png new file mode 100644 index 00000000..2f528657 Binary files /dev/null and b/lectures/img/spatial_interpolation/asp_rst_t160.png differ diff --git a/lectures/img/spatial_interpolation/asp_rst_t40.png b/lectures/img/spatial_interpolation/asp_rst_t40.png new file mode 100644 index 00000000..fa638b12 Binary files /dev/null and b/lectures/img/spatial_interpolation/asp_rst_t40.png differ diff --git a/lectures/img/spatial_interpolation/bar_pts_all.png b/lectures/img/spatial_interpolation/bar_pts_all.png new file mode 100755 index 00000000..012029b7 Binary files /dev/null and b/lectures/img/spatial_interpolation/bar_pts_all.png differ diff --git a/lectures/img/spatial_interpolation/bar_simdem10m_10.png b/lectures/img/spatial_interpolation/bar_simdem10m_10.png new file mode 100755 index 00000000..0a041d6d Binary files /dev/null and b/lectures/img/spatial_interpolation/bar_simdem10m_10.png differ diff --git a/lectures/img/spatial_interpolation/chall4d.gif b/lectures/img/spatial_interpolation/chall4d.gif new file mode 100755 index 00000000..56d6d4df Binary files /dev/null and b/lectures/img/spatial_interpolation/chall4d.gif differ diff --git a/lectures/img/spatial_interpolation/chesap_hightens.jpg b/lectures/img/spatial_interpolation/chesap_hightens.jpg new file mode 100644 index 00000000..33548add Binary files /dev/null and b/lectures/img/spatial_interpolation/chesap_hightens.jpg differ diff --git a/lectures/img/spatial_interpolation/chesap_lowtens.jpg b/lectures/img/spatial_interpolation/chesap_lowtens.jpg new file mode 100644 index 00000000..8b0b340f Binary files /dev/null and b/lectures/img/spatial_interpolation/chesap_lowtens.jpg differ diff --git a/lectures/img/spatial_interpolation/chesap_midtens.jpg b/lectures/img/spatial_interpolation/chesap_midtens.jpg new file mode 100644 index 00000000..1accf3cb Binary files /dev/null and b/lectures/img/spatial_interpolation/chesap_midtens.jpg differ diff --git a/lectures/img/spatial_interpolation/chesaplg.gif b/lectures/img/spatial_interpolation/chesaplg.gif new file mode 100644 index 00000000..09c0f30f Binary files /dev/null and b/lectures/img/spatial_interpolation/chesaplg.gif differ diff --git a/lectures/img/spatial_interpolation/chesapsites.jpg b/lectures/img/spatial_interpolation/chesapsites.jpg new file mode 100644 index 00000000..586fafdb Binary files /dev/null and b/lectures/img/spatial_interpolation/chesapsites.jpg differ diff --git a/lectures/img/spatial_interpolation/clayfenc.gif b/lectures/img/spatial_interpolation/clayfenc.gif new file mode 100644 index 00000000..19bd5128 Binary files /dev/null and b/lectures/img/spatial_interpolation/clayfenc.gif differ diff --git a/lectures/img/spatial_interpolation/clayhigh.gif b/lectures/img/spatial_interpolation/clayhigh.gif new file mode 100644 index 00000000..483392b1 Binary files /dev/null and b/lectures/img/spatial_interpolation/clayhigh.gif differ diff --git a/lectures/img/spatial_interpolation/comput.gif b/lectures/img/spatial_interpolation/comput.gif new file mode 100755 index 00000000..bbaff06f Binary files /dev/null and b/lectures/img/spatial_interpolation/comput.gif differ diff --git a/lectures/img/spatial_interpolation/contour_interp.jpg b/lectures/img/spatial_interpolation/contour_interp.jpg new file mode 100644 index 00000000..6bea6e36 Binary files /dev/null and b/lectures/img/spatial_interpolation/contour_interp.jpg differ diff --git a/lectures/img/spatial_interpolation/crossval2d.png b/lectures/img/spatial_interpolation/crossval2d.png new file mode 100644 index 00000000..dec8a128 Binary files /dev/null and b/lectures/img/spatial_interpolation/crossval2d.png differ diff --git a/lectures/img/spatial_interpolation/crossval3d.jpg b/lectures/img/spatial_interpolation/crossval3d.jpg new file mode 100644 index 00000000..5cabc729 Binary files /dev/null and b/lectures/img/spatial_interpolation/crossval3d.jpg differ diff --git a/lectures/img/spatial_interpolation/devism01_3d.jpg b/lectures/img/spatial_interpolation/devism01_3d.jpg new file mode 100644 index 00000000..ee01c602 Binary files /dev/null and b/lectures/img/spatial_interpolation/devism01_3d.jpg differ diff --git a/lectures/img/spatial_interpolation/devism10_3d.jpg b/lectures/img/spatial_interpolation/devism10_3d.jpg new file mode 100644 index 00000000..04ccf45e Binary files /dev/null and b/lectures/img/spatial_interpolation/devism10_3d.jpg differ diff --git a/lectures/img/spatial_interpolation/exp_model_variogram_Mat_bar.png b/lectures/img/spatial_interpolation/exp_model_variogram_Mat_bar.png new file mode 100755 index 00000000..03108bd4 Binary files /dev/null and b/lectures/img/spatial_interpolation/exp_model_variogram_Mat_bar.png differ diff --git a/lectures/img/spatial_interpolation/exp_model_variogram_exp_bar.png b/lectures/img/spatial_interpolation/exp_model_variogram_exp_bar.png new file mode 100755 index 00000000..85609840 Binary files /dev/null and b/lectures/img/spatial_interpolation/exp_model_variogram_exp_bar.png differ diff --git a/lectures/img/spatial_interpolation/exp_model_variogram_gaus_bar.png b/lectures/img/spatial_interpolation/exp_model_variogram_gaus_bar.png new file mode 100755 index 00000000..2b4a51e3 Binary files /dev/null and b/lectures/img/spatial_interpolation/exp_model_variogram_gaus_bar.png differ diff --git a/lectures/img/spatial_interpolation/exp_model_variogram_lin_bar.png b/lectures/img/spatial_interpolation/exp_model_variogram_lin_bar.png new file mode 100755 index 00000000..64a20542 Binary files /dev/null and b/lectures/img/spatial_interpolation/exp_model_variogram_lin_bar.png differ diff --git a/lectures/img/spatial_interpolation/exp_model_variogram_spher_bar.png b/lectures/img/spatial_interpolation/exp_model_variogram_spher_bar.png new file mode 100755 index 00000000..9bd014f6 Binary files /dev/null and b/lectures/img/spatial_interpolation/exp_model_variogram_spher_bar.png differ diff --git a/lectures/img/spatial_interpolation/expvariogram_barania2.png b/lectures/img/spatial_interpolation/expvariogram_barania2.png new file mode 100755 index 00000000..197224c6 Binary files /dev/null and b/lectures/img/spatial_interpolation/expvariogram_barania2.png differ diff --git a/lectures/img/spatial_interpolation/idw_pointselect.png b/lectures/img/spatial_interpolation/idw_pointselect.png new file mode 100644 index 00000000..f33bc5af Binary files /dev/null and b/lectures/img/spatial_interpolation/idw_pointselect.png differ diff --git a/lectures/img/spatial_interpolation/idw_precip_contours2d.png b/lectures/img/spatial_interpolation/idw_precip_contours2d.png new file mode 100644 index 00000000..69fed0e9 Binary files /dev/null and b/lectures/img/spatial_interpolation/idw_precip_contours2d.png differ diff --git a/lectures/img/spatial_interpolation/idw_precip_default_3dpts.jpg b/lectures/img/spatial_interpolation/idw_precip_default_3dpts.jpg new file mode 100644 index 00000000..75ed3cf5 Binary files /dev/null and b/lectures/img/spatial_interpolation/idw_precip_default_3dpts.jpg differ diff --git a/lectures/img/spatial_interpolation/idw_precip_p05_3dpts.png b/lectures/img/spatial_interpolation/idw_precip_p05_3dpts.png new file mode 100644 index 00000000..d96a3655 Binary files /dev/null and b/lectures/img/spatial_interpolation/idw_precip_p05_3dpts.png differ diff --git a/lectures/img/spatial_interpolation/idw_precip_p5_3d_pts.jpg b/lectures/img/spatial_interpolation/idw_precip_p5_3d_pts.jpg new file mode 100644 index 00000000..4b93cd2a Binary files /dev/null and b/lectures/img/spatial_interpolation/idw_precip_p5_3d_pts.jpg differ diff --git a/lectures/img/spatial_interpolation/interp1d.gif b/lectures/img/spatial_interpolation/interp1d.gif new file mode 100644 index 00000000..cc4cc96e Binary files /dev/null and b/lectures/img/spatial_interpolation/interp1d.gif differ diff --git a/lectures/img/spatial_interpolation/interp1d_all.png b/lectures/img/spatial_interpolation/interp1d_all.png new file mode 100644 index 00000000..6ef78e3b Binary files /dev/null and b/lectures/img/spatial_interpolation/interp1d_all.png differ diff --git a/lectures/img/spatial_interpolation/interp1d_curve.png b/lectures/img/spatial_interpolation/interp1d_curve.png new file mode 100644 index 00000000..b1b4b9ae Binary files /dev/null and b/lectures/img/spatial_interpolation/interp1d_curve.png differ diff --git a/lectures/img/spatial_interpolation/interp1d_lin.png b/lectures/img/spatial_interpolation/interp1d_lin.png new file mode 100644 index 00000000..4ee755d5 Binary files /dev/null and b/lectures/img/spatial_interpolation/interp1d_lin.png differ diff --git a/lectures/img/spatial_interpolation/interp1d_nn.png b/lectures/img/spatial_interpolation/interp1d_nn.png new file mode 100644 index 00000000..b0b6a0cc Binary files /dev/null and b/lectures/img/spatial_interpolation/interp1d_nn.png differ diff --git a/lectures/img/spatial_interpolation/interp_lin_isolines.jpg b/lectures/img/spatial_interpolation/interp_lin_isolines.jpg new file mode 100644 index 00000000..36e7837d Binary files /dev/null and b/lectures/img/spatial_interpolation/interp_lin_isolines.jpg differ diff --git a/lectures/img/spatial_interpolation/interp_localpointsearch.png b/lectures/img/spatial_interpolation/interp_localpointsearch.png new file mode 100644 index 00000000..a5a41449 Binary files /dev/null and b/lectures/img/spatial_interpolation/interp_localpointsearch.png differ diff --git a/lectures/img/spatial_interpolation/interp_localpointsearch_contour.png b/lectures/img/spatial_interpolation/interp_localpointsearch_contour.png new file mode 100644 index 00000000..342445d9 Binary files /dev/null and b/lectures/img/spatial_interpolation/interp_localpointsearch_contour.png differ diff --git a/lectures/img/spatial_interpolation/interp_masking.jpg b/lectures/img/spatial_interpolation/interp_masking.jpg new file mode 100644 index 00000000..e9d95ae5 Binary files /dev/null and b/lectures/img/spatial_interpolation/interp_masking.jpg differ diff --git a/lectures/img/spatial_interpolation/lgsaprecip.png b/lectures/img/spatial_interpolation/lgsaprecip.png new file mode 100644 index 00000000..ae1fbe30 Binary files /dev/null and b/lectures/img/spatial_interpolation/lgsaprecip.png differ diff --git a/lectures/img/spatial_interpolation/point_to_grid.png b/lectures/img/spatial_interpolation/point_to_grid.png new file mode 100644 index 00000000..e4ed83eb Binary files /dev/null and b/lectures/img/spatial_interpolation/point_to_grid.png differ diff --git a/lectures/img/spatial_interpolation/pointspins.tif b/lectures/img/spatial_interpolation/pointspins.tif new file mode 100644 index 00000000..da514f6a Binary files /dev/null and b/lectures/img/spatial_interpolation/pointspins.tif differ diff --git a/lectures/img/spatial_interpolation/pointssplinesmooth.tif b/lectures/img/spatial_interpolation/pointssplinesmooth.tif new file mode 100644 index 00000000..72551e44 Binary files /dev/null and b/lectures/img/spatial_interpolation/pointssplinesmooth.tif differ diff --git a/lectures/img/spatial_interpolation/pointstogrid.jpg b/lectures/img/spatial_interpolation/pointstogrid.jpg new file mode 100644 index 00000000..ffce1907 Binary files /dev/null and b/lectures/img/spatial_interpolation/pointstogrid.jpg differ diff --git a/lectures/img/spatial_interpolation/quadtreecont.png b/lectures/img/spatial_interpolation/quadtreecont.png new file mode 100644 index 00000000..4f883506 Binary files /dev/null and b/lectures/img/spatial_interpolation/quadtreecont.png differ diff --git a/lectures/img/spatial_interpolation/quadtreeseg.png b/lectures/img/spatial_interpolation/quadtreeseg.png new file mode 100644 index 00000000..7d295069 Binary files /dev/null and b/lectures/img/spatial_interpolation/quadtreeseg.png differ diff --git a/lectures/img/spatial_interpolation/sapel.gif b/lectures/img/spatial_interpolation/sapel.gif new file mode 100755 index 00000000..4dae8834 Binary files /dev/null and b/lectures/img/spatial_interpolation/sapel.gif differ diff --git a/lectures/img/spatial_interpolation/scattered_pts.jpg b/lectures/img/spatial_interpolation/scattered_pts.jpg new file mode 100644 index 00000000..b1a4ddcb Binary files /dev/null and b/lectures/img/spatial_interpolation/scattered_pts.jpg differ diff --git a/lectures/img/spatial_interpolation/segm_overlapwindow.png b/lectures/img/spatial_interpolation/segm_overlapwindow.png new file mode 100644 index 00000000..b5f6ea60 Binary files /dev/null and b/lectures/img/spatial_interpolation/segm_overlapwindow.png differ diff --git a/lectures/img/spatial_interpolation/smooth.gif b/lectures/img/spatial_interpolation/smooth.gif new file mode 100644 index 00000000..0b309e9b Binary files /dev/null and b/lectures/img/spatial_interpolation/smooth.gif differ diff --git a/lectures/img/spatial_interpolation/soilpts.gif b/lectures/img/spatial_interpolation/soilpts.gif new file mode 100644 index 00000000..ad5f41ff Binary files /dev/null and b/lectures/img/spatial_interpolation/soilpts.gif differ diff --git a/lectures/img/spatial_interpolation/spline_anisotr_beachprofiles.jpg b/lectures/img/spatial_interpolation/spline_anisotr_beachprofiles.jpg new file mode 100644 index 00000000..a49c2017 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_anisotr_beachprofiles.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_anisotr_streamHK.png b/lectures/img/spatial_interpolation/spline_anisotr_streamHK.png new file mode 100644 index 00000000..220ac668 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_anisotr_streamHK.png differ diff --git a/lectures/img/spatial_interpolation/spline_from_contours.png b/lectures/img/spatial_interpolation/spline_from_contours.png new file mode 100644 index 00000000..a4501e9d Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_from_contours.png differ diff --git a/lectures/img/spatial_interpolation/spline_from_contours_segm.jpg b/lectures/img/spatial_interpolation/spline_from_contours_segm.jpg new file mode 100644 index 00000000..c1f6ea2d Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_from_contours_segm.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_smooth_springs.png b/lectures/img/spatial_interpolation/spline_smooth_springs.png new file mode 100644 index 00000000..6c016fe3 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_smooth_springs.png differ diff --git a/lectures/img/spatial_interpolation/spline_smoothvar_1mn.jpg b/lectures/img/spatial_interpolation/spline_smoothvar_1mn.jpg new file mode 100644 index 00000000..df78ce64 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_smoothvar_1mn.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_ten10_1mn.jpg b/lectures/img/spatial_interpolation/spline_ten10_1mn.jpg new file mode 100644 index 00000000..9dd07522 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_ten10_1mn.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_ten160_1mn.jpg b/lectures/img/spatial_interpolation/spline_ten160_1mn.jpg new file mode 100644 index 00000000..d1558f7f Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_ten160_1mn.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_ten40_1mn.jpg b/lectures/img/spatial_interpolation/spline_ten40_1mn.jpg new file mode 100644 index 00000000..7078f2f0 Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_ten40_1mn.jpg differ diff --git a/lectures/img/spatial_interpolation/spline_trivar_NCprecip.jpg b/lectures/img/spatial_interpolation/spline_trivar_NCprecip.jpg new file mode 100644 index 00000000..cd5d1e6e Binary files /dev/null and b/lectures/img/spatial_interpolation/spline_trivar_NCprecip.jpg differ diff --git a/lectures/img/spatial_interpolation/tension.gif b/lectures/img/spatial_interpolation/tension.gif new file mode 100644 index 00000000..30afb851 Binary files /dev/null and b/lectures/img/spatial_interpolation/tension.gif differ diff --git a/lectures/img/spatial_interpolation/tension3d.gif b/lectures/img/spatial_interpolation/tension3d.gif new file mode 100755 index 00000000..9efde6a4 Binary files /dev/null and b/lectures/img/spatial_interpolation/tension3d.gif differ diff --git a/lectures/img/spatial_interpolation/tin2dstream.jpg b/lectures/img/spatial_interpolation/tin2dstream.jpg new file mode 100644 index 00000000..13448fb7 Binary files /dev/null and b/lectures/img/spatial_interpolation/tin2dstream.jpg differ diff --git a/lectures/img/spatial_interpolation/tin_zoom_grid1.png b/lectures/img/spatial_interpolation/tin_zoom_grid1.png new file mode 100644 index 00000000..d43a93b4 Binary files /dev/null and b/lectures/img/spatial_interpolation/tin_zoom_grid1.png differ diff --git a/lectures/img/spatial_interpolation/voronoi_tin_zm.png b/lectures/img/spatial_interpolation/voronoi_tin_zm.png new file mode 100644 index 00000000..8c7acea9 Binary files /dev/null and b/lectures/img/spatial_interpolation/voronoi_tin_zm.png differ diff --git a/lectures/img/spatial_interpolation/voronoi_zoom.png b/lectures/img/spatial_interpolation/voronoi_zoom.png new file mode 100644 index 00000000..ede90813 Binary files /dev/null and b/lectures/img/spatial_interpolation/voronoi_zoom.png differ diff --git a/lectures/img/spatial_interpolation/voronoi_zoom_grid1.png b/lectures/img/spatial_interpolation/voronoi_zoom_grid1.png new file mode 100644 index 00000000..a35d280b Binary files /dev/null and b/lectures/img/spatial_interpolation/voronoi_zoom_grid1.png differ diff --git a/lectures/img/spatial_interpolation/voronoi_zoom_tin1.png b/lectures/img/spatial_interpolation/voronoi_zoom_tin1.png new file mode 100644 index 00000000..f05f8ae7 Binary files /dev/null and b/lectures/img/spatial_interpolation/voronoi_zoom_tin1.png differ diff --git a/lectures/img/spatial_interpolation/voronoi_zoom_tin2.png b/lectures/img/spatial_interpolation/voronoi_zoom_tin2.png new file mode 100644 index 00000000..725e2415 Binary files /dev/null and b/lectures/img/spatial_interpolation/voronoi_zoom_tin2.png differ diff --git a/lectures/img/spatial_interpolation/xmsap2d.gif b/lectures/img/spatial_interpolation/xmsap2d.gif new file mode 100644 index 00000000..693c5aa4 Binary files /dev/null and b/lectures/img/spatial_interpolation/xmsap2d.gif differ diff --git a/lectures/img/spatial_interpolation/xmsapel.gif b/lectures/img/spatial_interpolation/xmsapel.gif new file mode 100644 index 00000000..75ac10dc Binary files /dev/null and b/lectures/img/spatial_interpolation/xmsapel.gif differ diff --git a/lectures/img/spatial_interpolation/xmsapidw.gif b/lectures/img/spatial_interpolation/xmsapidw.gif new file mode 100644 index 00000000..0f15e3d6 Binary files /dev/null and b/lectures/img/spatial_interpolation/xmsapidw.gif differ diff --git a/lectures/img/summer_solstice_centennial.gif b/lectures/img/summer_solstice_centennial.gif new file mode 100644 index 00000000..918be20f Binary files /dev/null and b/lectures/img/summer_solstice_centennial.gif differ diff --git a/lectures/img/topoanalysis/MGflowforms.jpg b/lectures/img/topoanalysis/MGflowforms.jpg new file mode 100644 index 00000000..bc4527b9 Binary files /dev/null and b/lectures/img/topoanalysis/MGflowforms.jpg differ diff --git a/lectures/img/topoanalysis/MitGeom11_TEC2011_figs1.jpg b/lectures/img/topoanalysis/MitGeom11_TEC2011_figs1.jpg new file mode 100644 index 00000000..9e4472e8 Binary files /dev/null and b/lectures/img/topoanalysis/MitGeom11_TEC2011_figs1.jpg differ diff --git a/lectures/img/topoanalysis/NH9908f_coreenvslope.jpg b/lectures/img/topoanalysis/NH9908f_coreenvslope.jpg new file mode 100644 index 00000000..13326c36 Binary files /dev/null and b/lectures/img/topoanalysis/NH9908f_coreenvslope.jpg differ diff --git a/lectures/img/topoanalysis/NH_dem_stack.png b/lectures/img/topoanalysis/NH_dem_stack.png new file mode 100644 index 00000000..cbe2af61 Binary files /dev/null and b/lectures/img/topoanalysis/NH_dem_stack.png differ diff --git a/lectures/img/topoanalysis/NH_demsiff_96_08.jpg b/lectures/img/topoanalysis/NH_demsiff_96_08.jpg new file mode 100644 index 00000000..1db4a5fd Binary files /dev/null and b/lectures/img/topoanalysis/NH_demsiff_96_08.jpg differ diff --git a/lectures/img/topoanalysis/NH_homes_picBot.png b/lectures/img/topoanalysis/NH_homes_picBot.png new file mode 100644 index 00000000..451adfe3 Binary files /dev/null and b/lectures/img/topoanalysis/NH_homes_picBot.png differ diff --git a/lectures/img/topoanalysis/NH_shoreband9608.png b/lectures/img/topoanalysis/NH_shoreband9608.png new file mode 100644 index 00000000..91683ab6 Binary files /dev/null and b/lectures/img/topoanalysis/NH_shoreband9608.png differ diff --git a/lectures/img/topoanalysis/NagsHead.gif b/lectures/img/topoanalysis/NagsHead.gif new file mode 100644 index 00000000..20fb9585 Binary files /dev/null and b/lectures/img/topoanalysis/NagsHead.gif differ diff --git a/lectures/img/topoanalysis/aspect360grey_lg.jpg b/lectures/img/topoanalysis/aspect360grey_lg.jpg new file mode 100644 index 00000000..457cba62 Binary files /dev/null and b/lectures/img/topoanalysis/aspect360grey_lg.jpg differ diff --git a/lectures/img/topoanalysis/aspect_diagram.png b/lectures/img/topoanalysis/aspect_diagram.png new file mode 100644 index 00000000..431981fa Binary files /dev/null and b/lectures/img/topoanalysis/aspect_diagram.png differ diff --git a/lectures/img/topoanalysis/aspect_lgcolor.png b/lectures/img/topoanalysis/aspect_lgcolor.png new file mode 100644 index 00000000..883f2592 Binary files /dev/null and b/lectures/img/topoanalysis/aspect_lgcolor.png differ diff --git a/lectures/img/topoanalysis/aspectarrowscropped.png b/lectures/img/topoanalysis/aspectarrowscropped.png new file mode 100644 index 00000000..1cb3d16b Binary files /dev/null and b/lectures/img/topoanalysis/aspectarrowscropped.png differ diff --git a/lectures/img/topoanalysis/bus_route_toposlope.png b/lectures/img/topoanalysis/bus_route_toposlope.png new file mode 100644 index 00000000..6ceca616 Binary files /dev/null and b/lectures/img/topoanalysis/bus_route_toposlope.png differ diff --git a/lectures/img/topoanalysis/bus_routeslope.png b/lectures/img/topoanalysis/bus_routeslope.png new file mode 100644 index 00000000..76f04113 Binary files /dev/null and b/lectures/img/topoanalysis/bus_routeslope.png differ diff --git a/lectures/img/topoanalysis/bus_toposlope_cont.jpg b/lectures/img/topoanalysis/bus_toposlope_cont.jpg new file mode 100644 index 00000000..fa33e00d Binary files /dev/null and b/lectures/img/topoanalysis/bus_toposlope_cont.jpg differ diff --git a/lectures/img/topoanalysis/curvatures10m.jpg b/lectures/img/topoanalysis/curvatures10m.jpg new file mode 100644 index 00000000..29bc0867 Binary files /dev/null and b/lectures/img/topoanalysis/curvatures10m.jpg differ diff --git a/lectures/img/topoanalysis/curvatures_flow.png b/lectures/img/topoanalysis/curvatures_flow.png new file mode 100644 index 00000000..5ab5e73c Binary files /dev/null and b/lectures/img/topoanalysis/curvatures_flow.png differ diff --git a/lectures/img/topoanalysis/curvatures_radius.png b/lectures/img/topoanalysis/curvatures_radius.png new file mode 100644 index 00000000..56462cb9 Binary files /dev/null and b/lectures/img/topoanalysis/curvatures_radius.png differ diff --git a/lectures/img/topoanalysis/geomorph_legend.png b/lectures/img/topoanalysis/geomorph_legend.png new file mode 100644 index 00000000..747e1e82 Binary files /dev/null and b/lectures/img/topoanalysis/geomorph_legend.png differ diff --git a/lectures/img/topoanalysis/geomorphon.png b/lectures/img/topoanalysis/geomorphon.png new file mode 100644 index 00000000..aef697c4 Binary files /dev/null and b/lectures/img/topoanalysis/geomorphon.png differ diff --git a/lectures/img/topoanalysis/geomorphon_legendmap.png b/lectures/img/topoanalysis/geomorphon_legendmap.png new file mode 100644 index 00000000..3d2fb0f2 Binary files /dev/null and b/lectures/img/topoanalysis/geomorphon_legendmap.png differ diff --git a/lectures/img/topoanalysis/geomorphon_trees_PT_IJGI.jpg b/lectures/img/topoanalysis/geomorphon_trees_PT_IJGI.jpg new file mode 100644 index 00000000..cc69f760 Binary files /dev/null and b/lectures/img/topoanalysis/geomorphon_trees_PT_IJGI.jpg differ diff --git a/lectures/img/topoanalysis/geomorphons_buildings2.jpg b/lectures/img/topoanalysis/geomorphons_buildings2.jpg new file mode 100644 index 00000000..c6340fd0 Binary files /dev/null and b/lectures/img/topoanalysis/geomorphons_buildings2.jpg differ diff --git a/lectures/img/topoanalysis/geomorphons_treecrowns.jpg b/lectures/img/topoanalysis/geomorphons_treecrowns.jpg new file mode 100644 index 00000000..0af37746 Binary files /dev/null and b/lectures/img/topoanalysis/geomorphons_treecrowns.jpg differ diff --git a/lectures/img/topoanalysis/gradient_elev.png b/lectures/img/topoanalysis/gradient_elev.png new file mode 100644 index 00000000..c12deeda Binary files /dev/null and b/lectures/img/topoanalysis/gradient_elev.png differ diff --git a/lectures/img/topoanalysis/landforms_45c1m.jpg b/lectures/img/topoanalysis/landforms_45c1m.jpg new file mode 100644 index 00000000..b8f49cbc Binary files /dev/null and b/lectures/img/topoanalysis/landforms_45c1m.jpg differ diff --git a/lectures/img/topoanalysis/landforms_9c1m.jpg b/lectures/img/topoanalysis/landforms_9c1m.jpg new file mode 100644 index 00000000..75436c29 Binary files /dev/null and b/lectures/img/topoanalysis/landforms_9c1m.jpg differ diff --git a/lectures/img/topoanalysis/movingwindow3x3a.png b/lectures/img/topoanalysis/movingwindow3x3a.png new file mode 100644 index 00000000..23cc481e Binary files /dev/null and b/lectures/img/topoanalysis/movingwindow3x3a.png differ diff --git a/lectures/img/topoanalysis/movingwindow3x3b.png b/lectures/img/topoanalysis/movingwindow3x3b.png new file mode 100644 index 00000000..7bcd8f79 Binary files /dev/null and b/lectures/img/topoanalysis/movingwindow3x3b.png differ diff --git a/lectures/img/topoanalysis/movingwindow3x3c.png b/lectures/img/topoanalysis/movingwindow3x3c.png new file mode 100644 index 00000000..6da35750 Binary files /dev/null and b/lectures/img/topoanalysis/movingwindow3x3c.png differ diff --git a/lectures/img/topoanalysis/rstanal_aspt15.jpg b/lectures/img/topoanalysis/rstanal_aspt15.jpg new file mode 100644 index 00000000..053f558e Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_aspt15.jpg differ diff --git a/lectures/img/topoanalysis/rstanal_pcleg.jpg b/lectures/img/topoanalysis/rstanal_pcleg.jpg new file mode 100644 index 00000000..9f50702a Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_pcleg.jpg differ diff --git a/lectures/img/topoanalysis/rstanal_pct15n.jpg b/lectures/img/topoanalysis/rstanal_pct15n.jpg new file mode 100644 index 00000000..65cc4870 Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_pct15n.jpg differ diff --git a/lectures/img/topoanalysis/rstanal_slopelg.jpg b/lectures/img/topoanalysis/rstanal_slopelg.jpg new file mode 100644 index 00000000..a88bcfdc Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_slopelg.jpg differ diff --git a/lectures/img/topoanalysis/rstanal_tclid1stdefco.png b/lectures/img/topoanalysis/rstanal_tclid1stdefco.png new file mode 100644 index 00000000..2e37d5c1 Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_tclid1stdefco.png differ diff --git a/lectures/img/topoanalysis/rstanal_tclid1stt15co.png b/lectures/img/topoanalysis/rstanal_tclid1stt15co.png new file mode 100644 index 00000000..3a273320 Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_tclid1stt15co.png differ diff --git a/lectures/img/topoanalysis/rstanal_tct15n.jpg b/lectures/img/topoanalysis/rstanal_tct15n.jpg new file mode 100644 index 00000000..506cb6a2 Binary files /dev/null and b/lectures/img/topoanalysis/rstanal_tct15n.jpg differ diff --git a/lectures/img/topoanalysis/slope_integers.jpg b/lectures/img/topoanalysis/slope_integers.jpg new file mode 100644 index 00000000..07a40002 Binary files /dev/null and b/lectures/img/topoanalysis/slope_integers.jpg differ diff --git a/lectures/img/topoanalysis/slope_lg.png b/lectures/img/topoanalysis/slope_lg.png new file mode 100644 index 00000000..985a6570 Binary files /dev/null and b/lectures/img/topoanalysis/slope_lg.png differ diff --git a/lectures/img/topoanalysis/slopearrows.png b/lectures/img/topoanalysis/slopearrows.png new file mode 100644 index 00000000..457970bb Binary files /dev/null and b/lectures/img/topoanalysis/slopearrows.png differ diff --git a/lectures/img/topoanalysis/slopeaspect10m.jpg b/lectures/img/topoanalysis/slopeaspect10m.jpg new file mode 100644 index 00000000..b4525f3c Binary files /dev/null and b/lectures/img/topoanalysis/slopeaspect10m.jpg differ diff --git a/lectures/img/topoanalysis/splines_slope_curvature.jpg b/lectures/img/topoanalysis/splines_slope_curvature.jpg new file mode 100644 index 00000000..0b4541a4 Binary files /dev/null and b/lectures/img/topoanalysis/splines_slope_curvature.jpg differ diff --git a/lectures/img/topoanalysis/timeseries_graph.jpg b/lectures/img/topoanalysis/timeseries_graph.jpg new file mode 100644 index 00000000..a6c720f9 Binary files /dev/null and b/lectures/img/topoanalysis/timeseries_graph.jpg differ diff --git a/lectures/img/topoanalysis/us_geom_26642.jpg b/lectures/img/topoanalysis/us_geom_26642.jpg new file mode 100644 index 00000000..06f12abe Binary files /dev/null and b/lectures/img/topoanalysis/us_geom_26642.jpg differ diff --git a/lectures/img/topoanalysis/volume_dz.png b/lectures/img/topoanalysis/volume_dz.png new file mode 100644 index 00000000..be0d6a98 Binary files /dev/null and b/lectures/img/topoanalysis/volume_dz.png differ diff --git a/lectures/img/uspederdepdem.jpg b/lectures/img/uspederdepdem.jpg new file mode 100644 index 00000000..5c00dfdb Binary files /dev/null and b/lectures/img/uspederdepdem.jpg differ diff --git a/lectures/img/viewshed_solar/DSM_lidar_treestems1.jpg b/lectures/img/viewshed_solar/DSM_lidar_treestems1.jpg new file mode 100644 index 00000000..09c5a56c Binary files /dev/null and b/lectures/img/viewshed_solar/DSM_lidar_treestems1.jpg differ diff --git a/lectures/img/viewshed_solar/DSM_lidar_treestems2.jpg b/lectures/img/viewshed_solar/DSM_lidar_treestems2.jpg new file mode 100644 index 00000000..b999fef5 Binary files /dev/null and b/lectures/img/viewshed_solar/DSM_lidar_treestems2.jpg differ diff --git a/lectures/img/viewshed_solar/DSM_lidar_treestems_view.jpg b/lectures/img/viewshed_solar/DSM_lidar_treestems_view.jpg new file mode 100644 index 00000000..5a12dfde Binary files /dev/null and b/lectures/img/viewshed_solar/DSM_lidar_treestems_view.jpg differ diff --git a/lectures/img/viewshed_solar/lineofsight_nonvisible.jpg b/lectures/img/viewshed_solar/lineofsight_nonvisible.jpg new file mode 100644 index 00000000..65414630 Binary files /dev/null and b/lectures/img/viewshed_solar/lineofsight_nonvisible.jpg differ diff --git a/lectures/img/viewshed_solar/lineofsight_visible.jpg b/lectures/img/viewshed_solar/lineofsight_visible.jpg new file mode 100644 index 00000000..72cb4f7b Binary files /dev/null and b/lectures/img/viewshed_solar/lineofsight_visible.jpg differ diff --git a/lectures/img/viewshed_solar/nc_RHlos.jpg b/lectures/img/viewshed_solar/nc_RHlos.jpg new file mode 100644 index 00000000..eafd8609 Binary files /dev/null and b/lectures/img/viewshed_solar/nc_RHlos.jpg differ diff --git a/lectures/img/viewshed_solar/nc_towerlos3D.jpg b/lectures/img/viewshed_solar/nc_towerlos3D.jpg new file mode 100644 index 00000000..3ab035fc Binary files /dev/null and b/lectures/img/viewshed_solar/nc_towerlos3D.jpg differ diff --git a/lectures/img/viewshed_solar/rsuns.gif b/lectures/img/viewshed_solar/rsuns.gif new file mode 100644 index 00000000..cfeb4be1 Binary files /dev/null and b/lectures/img/viewshed_solar/rsuns.gif differ diff --git a/lectures/img/viewshed_solar/rsunw.gif b/lectures/img/viewshed_solar/rsunw.gif new file mode 100644 index 00000000..9745b499 Binary files /dev/null and b/lectures/img/viewshed_solar/rsunw.gif differ diff --git a/lectures/img/viewshed_solar/solar_rad_comp.png b/lectures/img/viewshed_solar/solar_rad_comp.png new file mode 100644 index 00000000..e4f2ff94 Binary files /dev/null and b/lectures/img/viewshed_solar/solar_rad_comp.png differ diff --git a/lectures/img/viewshed_solar/solarbeam180.jpg b/lectures/img/viewshed_solar/solarbeam180.jpg new file mode 100644 index 00000000..a3dab426 Binary files /dev/null and b/lectures/img/viewshed_solar/solarbeam180.jpg differ diff --git a/lectures/img/viewshed_solar/solarbeam356.jpg b/lectures/img/viewshed_solar/solarbeam356.jpg new file mode 100644 index 00000000..d36d808a Binary files /dev/null and b/lectures/img/viewshed_solar/solarbeam356.jpg differ diff --git a/lectures/img/viewshed_solar/solardiff356.jpg b/lectures/img/viewshed_solar/solardiff356.jpg new file mode 100644 index 00000000..0874a562 Binary files /dev/null and b/lectures/img/viewshed_solar/solardiff356.jpg differ diff --git a/lectures/img/viewshed_solar/solarincangleshadow.jpg b/lectures/img/viewshed_solar/solarincangleshadow.jpg new file mode 100644 index 00000000..2e02d65f Binary files /dev/null and b/lectures/img/viewshed_solar/solarincangleshadow.jpg differ diff --git a/lectures/img/viewshed_solar/solarincidangle.gif b/lectures/img/viewshed_solar/solarincidangle.gif new file mode 100644 index 00000000..4ed202b1 Binary files /dev/null and b/lectures/img/viewshed_solar/solarincidangle.gif differ diff --git a/lectures/img/viewshed_solar/solarrefl356.jpg b/lectures/img/viewshed_solar/solarrefl356.jpg new file mode 100644 index 00000000..f08fec13 Binary files /dev/null and b/lectures/img/viewshed_solar/solarrefl356.jpg differ diff --git a/lectures/img/viewshed_solar/solartime180.jpg b/lectures/img/viewshed_solar/solartime180.jpg new file mode 100644 index 00000000..460493b3 Binary files /dev/null and b/lectures/img/viewshed_solar/solartime180.jpg differ diff --git a/lectures/img/viewshed_solar/solartime356.jpg b/lectures/img/viewshed_solar/solartime356.jpg new file mode 100644 index 00000000..4247d857 Binary files /dev/null and b/lectures/img/viewshed_solar/solartime356.jpg differ diff --git a/lectures/img/viewshed_solar/summer_solstice_centennial.gif b/lectures/img/viewshed_solar/summer_solstice_centennial.gif new file mode 100644 index 00000000..918be20f Binary files /dev/null and b/lectures/img/viewshed_solar/summer_solstice_centennial.gif differ diff --git a/lectures/img/viewshed_solar/sun_position2.gif b/lectures/img/viewshed_solar/sun_position2.gif new file mode 100644 index 00000000..17e67a0b Binary files /dev/null and b/lectures/img/viewshed_solar/sun_position2.gif differ diff --git a/lectures/img/viewshed_solar/view_Hunt_dem_1m.png b/lectures/img/viewshed_solar/view_Hunt_dem_1m.png new file mode 100644 index 00000000..a84500ec Binary files /dev/null and b/lectures/img/viewshed_solar/view_Hunt_dem_1m.png differ diff --git a/lectures/img/viewshed_solar/view_Hunt_ned10m.jpg b/lectures/img/viewshed_solar/view_Hunt_ned10m.jpg new file mode 100644 index 00000000..5e7c4a6b Binary files /dev/null and b/lectures/img/viewshed_solar/view_Hunt_ned10m.jpg differ diff --git a/lectures/img/viewshed_solar/view_JH2_dem15_1m.png b/lectures/img/viewshed_solar/view_JH2_dem15_1m.png new file mode 100644 index 00000000..6524a6be Binary files /dev/null and b/lectures/img/viewshed_solar/view_JH2_dem15_1m.png differ diff --git a/lectures/img/viewshed_solar/viewshed_lw_webcam.jpg b/lectures/img/viewshed_solar/viewshed_lw_webcam.jpg new file mode 100644 index 00000000..2f17bf5b Binary files /dev/null and b/lectures/img/viewshed_solar/viewshed_lw_webcam.jpg differ diff --git a/lectures/img/viewshed_solar/winter_solstice_centennial.gif b/lectures/img/viewshed_solar/winter_solstice_centennial.gif new file mode 100644 index 00000000..4078c5bb Binary files /dev/null and b/lectures/img/viewshed_solar/winter_solstice_centennial.gif differ diff --git a/lectures/js/reveal.js b/lectures/js/reveal.js new file mode 100644 index 00000000..10c609e5 --- /dev/null +++ b/lectures/js/reveal.js @@ -0,0 +1,4744 @@ +/*! + * reveal.js + * http://lab.hakim.se/reveal-js + * MIT licensed + * + * Copyright (C) 2016 Hakim El Hattab, http://hakim.se + */ +(function( root, factory ) { + if( typeof define === 'function' && define.amd ) { + // AMD. Register as an anonymous module. + define( function() { + root.Reveal = factory(); + return root.Reveal; + } ); + } else if( typeof exports === 'object' ) { + // Node. Does not work with strict CommonJS. + module.exports = factory(); + } else { + // Browser globals. + root.Reveal = factory(); + } +}( this, function() { + + 'use strict'; + + var Reveal; + + // The reveal.js version + var VERSION = '3.3.0'; + + var SLIDES_SELECTOR = '.slides section', + HORIZONTAL_SLIDES_SELECTOR = '.slides>section', + VERTICAL_SLIDES_SELECTOR = '.slides>section.present>section', + HOME_SLIDE_SELECTOR = '.slides>section:first-of-type', + UA = navigator.userAgent, + + // Configuration defaults, can be overridden at initialization time + config = { + + // The "normal" size of the presentation, aspect ratio will be preserved + // when the presentation is scaled to fit different resolutions + width: 960, + height: 700, + + // Factor of the display size that should remain empty around the content + margin: 0.1, + + // Bounds for smallest/largest possible scale to apply to content + minScale: 0.2, + maxScale: 1.5, + + // Display controls in the bottom right corner + controls: true, + + // Display a presentation progress bar + progress: true, + + // Display the page number of the current slide + slideNumber: false, + + // Push each slide change to the browser history + history: false, + + // Enable keyboard shortcuts for navigation + keyboard: true, + + // Optional function that blocks keyboard events when retuning false + keyboardCondition: null, + + // Enable the slide overview mode + overview: true, + + // Vertical centering of slides + center: true, + + // Enables touch navigation on devices with touch input + touch: true, + + // Loop the presentation + loop: false, + + // Change the presentation direction to be RTL + rtl: false, + + // Randomizes the order of slides each time the presentation loads + shuffle: false, + + // Turns fragments on and off globally + fragments: true, + + // Flags if the presentation is running in an embedded mode, + // i.e. contained within a limited portion of the screen + embedded: false, + + // Flags if we should show a help overlay when the questionmark + // key is pressed + help: true, + + // Flags if it should be possible to pause the presentation (blackout) + pause: true, + + // Flags if speaker notes should be visible to all viewers + showNotes: false, + + // Number of milliseconds between automatically proceeding to the + // next slide, disabled when set to 0, this value can be overwritten + // by using a data-autoslide attribute on your slides + autoSlide: 0, + + // Stop auto-sliding after user input + autoSlideStoppable: true, + + // Use this method for navigation when auto-sliding (defaults to navigateNext) + autoSlideMethod: null, + + // Enable slide navigation via mouse wheel + mouseWheel: false, + + // Apply a 3D roll to links on hover + rollingLinks: false, + + // Hides the address bar on mobile devices + hideAddressBar: true, + + // Opens links in an iframe preview overlay + previewLinks: false, + + // Exposes the reveal.js API through window.postMessage + postMessage: true, + + // Dispatches all reveal.js events to the parent window through postMessage + postMessageEvents: false, + + // Focuses body when page changes visiblity to ensure keyboard shortcuts work + focusBodyOnPageVisibilityChange: true, + + // Transition style + transition: 'slide', // none/fade/slide/convex/concave/zoom + + // Transition speed + transitionSpeed: 'default', // default/fast/slow + + // Transition style for full page slide backgrounds + backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom + + // Parallax background image + parallaxBackgroundImage: '', // CSS syntax, e.g. "a.jpg" + + // Parallax background size + parallaxBackgroundSize: '', // CSS syntax, e.g. "3000px 2000px" + + // Amount of pixels to move the parallax background per slide step + parallaxBackgroundHorizontal: null, + parallaxBackgroundVertical: null, + + // Number of slides away from the current that are visible + viewDistance: 3, + + // Script dependencies to load + dependencies: [] + + }, + + // Flags if reveal.js is loaded (has dispatched the 'ready' event) + loaded = false, + + // Flags if the overview mode is currently active + overview = false, + + // Holds the dimensions of our overview slides, including margins + overviewSlideWidth = null, + overviewSlideHeight = null, + + // The horizontal and vertical index of the currently active slide + indexh, + indexv, + + // The previous and current slide HTML elements + previousSlide, + currentSlide, + + previousBackground, + + // Slides may hold a data-state attribute which we pick up and apply + // as a class to the body. This list contains the combined state of + // all current slides. + state = [], + + // The current scale of the presentation (see width/height config) + scale = 1, + + // CSS transform that is currently applied to the slides container, + // split into two groups + slidesTransform = { layout: '', overview: '' }, + + // Cached references to DOM elements + dom = {}, + + // Features supported by the browser, see #checkCapabilities() + features = {}, + + // Client is a mobile device, see #checkCapabilities() + isMobileDevice, + + // Client is a desktop Chrome, see #checkCapabilities() + isChrome, + + // Throttles mouse wheel navigation + lastMouseWheelStep = 0, + + // Delays updates to the URL due to a Chrome thumbnailer bug + writeURLTimeout = 0, + + // Flags if the interaction event listeners are bound + eventsAreBound = false, + + // The current auto-slide duration + autoSlide = 0, + + // Auto slide properties + autoSlidePlayer, + autoSlideTimeout = 0, + autoSlideStartTime = -1, + autoSlidePaused = false, + + // Holds information about the currently ongoing touch input + touch = { + startX: 0, + startY: 0, + startSpan: 0, + startCount: 0, + captured: false, + threshold: 40 + }, + + // Holds information about the keyboard shortcuts + keyboardShortcuts = { + 'N , SPACE': 'Next slide', + 'P': 'Previous slide', + '← , H': 'Navigate left', + '→ , L': 'Navigate right', + '↑ , K': 'Navigate up', + '↓ , J': 'Navigate down', + 'Home': 'First slide', + 'End': 'Last slide', + 'B , .': 'Pause', + 'F': 'Fullscreen', + 'ESC, O': 'Slide overview' + }; + + /** + * Starts up the presentation if the client is capable. + */ + function initialize( options ) { + + checkCapabilities(); + + if( !features.transforms2d && !features.transforms3d ) { + document.body.setAttribute( 'class', 'no-transforms' ); + + // Since JS won't be running any further, we load all lazy + // loading elements upfront + var images = toArray( document.getElementsByTagName( 'img' ) ), + iframes = toArray( document.getElementsByTagName( 'iframe' ) ); + + var lazyLoadable = images.concat( iframes ); + + for( var i = 0, len = lazyLoadable.length; i < len; i++ ) { + var element = lazyLoadable[i]; + if( element.getAttribute( 'data-src' ) ) { + element.setAttribute( 'src', element.getAttribute( 'data-src' ) ); + element.removeAttribute( 'data-src' ); + } + } + + // If the browser doesn't support core features we won't be + // using JavaScript to control the presentation + return; + } + + // Cache references to key DOM elements + dom.wrapper = document.querySelector( '.reveal' ); + dom.slides = document.querySelector( '.reveal .slides' ); + + // Force a layout when the whole page, incl fonts, has loaded + window.addEventListener( 'load', layout, false ); + + var query = Reveal.getQueryHash(); + + // Do not accept new dependencies via query config to avoid + // the potential of malicious script injection + if( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies']; + + // Copy options over to our config object + extend( config, options ); + extend( config, query ); + + // Hide the address bar in mobile browsers + hideAddressBar(); + + // Loads the dependencies and continues to #start() once done + load(); + + } + + /** + * Inspect the client to see what it's capable of, this + * should only happens once per runtime. + */ + function checkCapabilities() { + + isMobileDevice = /(iphone|ipod|ipad|android)/gi.test( UA ); + isChrome = /chrome/i.test( UA ) && !/edge/i.test( UA ); + + var testElement = document.createElement( 'div' ); + + features.transforms3d = 'WebkitPerspective' in testElement.style || + 'MozPerspective' in testElement.style || + 'msPerspective' in testElement.style || + 'OPerspective' in testElement.style || + 'perspective' in testElement.style; + + features.transforms2d = 'WebkitTransform' in testElement.style || + 'MozTransform' in testElement.style || + 'msTransform' in testElement.style || + 'OTransform' in testElement.style || + 'transform' in testElement.style; + + features.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame; + features.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function'; + + features.canvas = !!document.createElement( 'canvas' ).getContext; + + // Transitions in the overview are disabled in desktop and + // Safari due to lag + features.overviewTransitions = !/Version\/[\d\.]+.*Safari/.test( UA ); + + // Flags if we should use zoom instead of transform to scale + // up slides. Zoom produces crisper results but has a lot of + // xbrowser quirks so we only use it in whitelsited browsers. + features.zoom = 'zoom' in testElement.style && !isMobileDevice && + ( isChrome || /Version\/[\d\.]+.*Safari/.test( UA ) ); + + } + + /** + * Loads the dependencies of reveal.js. Dependencies are + * defined via the configuration option 'dependencies' + * and will be loaded prior to starting/binding reveal.js. + * Some dependencies may have an 'async' flag, if so they + * will load after reveal.js has been started up. + */ + function load() { + + var scripts = [], + scriptsAsync = [], + scriptsToPreload = 0; + + // Called once synchronous scripts finish loading + function proceed() { + if( scriptsAsync.length ) { + // Load asynchronous scripts + head.js.apply( null, scriptsAsync ); + } + + start(); + } + + function loadScript( s ) { + head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], function() { + // Extension may contain callback functions + if( typeof s.callback === 'function' ) { + s.callback.apply( this ); + } + + if( --scriptsToPreload === 0 ) { + proceed(); + } + }); + } + + for( var i = 0, len = config.dependencies.length; i < len; i++ ) { + var s = config.dependencies[i]; + + // Load if there's no condition or the condition is truthy + if( !s.condition || s.condition() ) { + if( s.async ) { + scriptsAsync.push( s.src ); + } + else { + scripts.push( s.src ); + } + + loadScript( s ); + } + } + + if( scripts.length ) { + scriptsToPreload = scripts.length; + + // Load synchronous scripts + head.js.apply( null, scripts ); + } + else { + proceed(); + } + + } + + /** + * Starts up reveal.js by binding input events and navigating + * to the current URL deeplink if there is one. + */ + function start() { + + // Make sure we've got all the DOM elements we need + setupDOM(); + + // Listen to messages posted to this window + setupPostMessage(); + + // Prevent the slides from being scrolled out of view + setupScrollPrevention(); + + // Resets all vertical slides so that only the first is visible + resetVerticalSlides(); + + // Updates the presentation to match the current configuration values + configure(); + + // Read the initial hash + readURL(); + + // Update all backgrounds + updateBackground( true ); + + // Notify listeners that the presentation is ready but use a 1ms + // timeout to ensure it's not fired synchronously after #initialize() + setTimeout( function() { + // Enable transitions now that we're loaded + dom.slides.classList.remove( 'no-transition' ); + + loaded = true; + + dispatchEvent( 'ready', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + }, 1 ); + + // Special setup and config is required when printing to PDF + if( isPrintingPDF() ) { + removeEventListeners(); + + // The document needs to have loaded for the PDF layout + // measurements to be accurate + if( document.readyState === 'complete' ) { + setupPDF(); + } + else { + window.addEventListener( 'load', setupPDF ); + } + } + + } + + /** + * Finds and stores references to DOM elements which are + * required by the presentation. If a required element is + * not found, it is created. + */ + function setupDOM() { + + // Prevent transitions while we're loading + dom.slides.classList.add( 'no-transition' ); + + // Background element + dom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null ); + + // Progress bar + dom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '' ); + dom.progressbar = dom.progress.querySelector( 'span' ); + + // Arrow controls + createSingletonNode( dom.wrapper, 'aside', 'controls', + '' + + '' + + '' + + '' ); + + // Slide number + dom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' ); + + // Element containing notes that are visible to the audience + dom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null ); + dom.speakerNotes.setAttribute( 'data-prevent-swipe', '' ); + + // Overlay graphic which is displayed during the paused mode + createSingletonNode( dom.wrapper, 'div', 'pause-overlay', null ); + + // Cache references to elements + dom.controls = document.querySelector( '.reveal .controls' ); + dom.theme = document.querySelector( '#theme' ); + + dom.wrapper.setAttribute( 'role', 'application' ); + + // There can be multiple instances of controls throughout the page + dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) ); + dom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) ); + dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) ); + dom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) ); + dom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) ); + dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) ); + + dom.statusDiv = createStatusDiv(); + } + + /** + * Creates a hidden div with role aria-live to announce the + * current slide content. Hide the div off-screen to make it + * available only to Assistive Technologies. + */ + function createStatusDiv() { + + var statusDiv = document.getElementById( 'aria-status-div' ); + if( !statusDiv ) { + statusDiv = document.createElement( 'div' ); + statusDiv.style.position = 'absolute'; + statusDiv.style.height = '1px'; + statusDiv.style.width = '1px'; + statusDiv.style.overflow ='hidden'; + statusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )'; + statusDiv.setAttribute( 'id', 'aria-status-div' ); + statusDiv.setAttribute( 'aria-live', 'polite' ); + statusDiv.setAttribute( 'aria-atomic','true' ); + dom.wrapper.appendChild( statusDiv ); + } + return statusDiv; + + } + + /** + * Configures the presentation for printing to a static + * PDF. + */ + function setupPDF() { + + var slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight ); + + // Dimensions of the PDF pages + var pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ), + pageHeight = Math.floor( slideSize.height * ( 1 + config.margin ) ); + + // Dimensions of slides within the pages + var slideWidth = slideSize.width, + slideHeight = slideSize.height; + + // Let the browser know what page size we want to print + injectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' ); + + // Limit the size of certain elements to the dimensions of the slide + injectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' ); + + document.body.classList.add( 'print-pdf' ); + document.body.style.width = pageWidth + 'px'; + document.body.style.height = pageHeight + 'px'; + + // Add each slide's index as attributes on itself, we need these + // indices to generate slide numbers below + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) { + hslide.setAttribute( 'data-index-h', h ); + + if( hslide.classList.contains( 'stack' ) ) { + toArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) { + vslide.setAttribute( 'data-index-h', h ); + vslide.setAttribute( 'data-index-v', v ); + } ); + } + } ); + + // Slide and slide background layout + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + + // Vertical stacks are not centred since their section + // children will be + if( slide.classList.contains( 'stack' ) === false ) { + // Center the slide inside of the page, giving the slide some margin + var left = ( pageWidth - slideWidth ) / 2, + top = ( pageHeight - slideHeight ) / 2; + + var contentHeight = getAbsoluteHeight( slide ); + var numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 ); + + // Center slides vertically + if( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) { + top = Math.max( ( pageHeight - contentHeight ) / 2, 0 ); + } + + // Position the slide inside of the page + slide.style.left = left + 'px'; + slide.style.top = top + 'px'; + slide.style.width = slideWidth + 'px'; + + // TODO Backgrounds need to be multiplied when the slide + // stretches over multiple pages + var background = slide.querySelector( '.slide-background' ); + if( background ) { + background.style.width = pageWidth + 'px'; + background.style.height = ( pageHeight * numberOfPages ) + 'px'; + background.style.top = -top + 'px'; + background.style.left = -left + 'px'; + } + + // Inject notes if `showNotes` is enabled + if( config.showNotes ) { + var notes = getSlideNotes( slide ); + if( notes ) { + var notesSpacing = 8; + var notesElement = document.createElement( 'div' ); + notesElement.classList.add( 'speaker-notes' ); + notesElement.classList.add( 'speaker-notes-pdf' ); + notesElement.innerHTML = notes; + notesElement.style.left = ( notesSpacing - left ) + 'px'; + notesElement.style.bottom = ( notesSpacing - top ) + 'px'; + notesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px'; + slide.appendChild( notesElement ); + } + } + + // Inject slide numbers if `slideNumbers` are enabled + if( config.slideNumber ) { + var slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1, + slideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1; + + var numberElement = document.createElement( 'div' ); + numberElement.classList.add( 'slide-number' ); + numberElement.classList.add( 'slide-number-pdf' ); + numberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV ); + background.appendChild( numberElement ); + } + } + + } ); + + // Show all fragments + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) { + fragment.classList.add( 'visible' ); + } ); + + } + + /** + * This is an unfortunate necessity. Some actions – such as + * an input field being focused in an iframe or using the + * keyboard to expand text selection beyond the bounds of + * a slide – can trigger our content to be pushed out of view. + * This scrolling can not be prevented by hiding overflow in + * CSS (we already do) so we have to resort to repeatedly + * checking if the slides have been offset :( + */ + function setupScrollPrevention() { + + setInterval( function() { + if( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) { + dom.wrapper.scrollTop = 0; + dom.wrapper.scrollLeft = 0; + } + }, 1000 ); + + } + + /** + * Creates an HTML element and returns a reference to it. + * If the element already exists the existing instance will + * be returned. + */ + function createSingletonNode( container, tagname, classname, innerHTML ) { + + // Find all nodes matching the description + var nodes = container.querySelectorAll( '.' + classname ); + + // Check all matches to find one which is a direct child of + // the specified container + for( var i = 0; i < nodes.length; i++ ) { + var testNode = nodes[i]; + if( testNode.parentNode === container ) { + return testNode; + } + } + + // If no node was found, create it now + var node = document.createElement( tagname ); + node.classList.add( classname ); + if( typeof innerHTML === 'string' ) { + node.innerHTML = innerHTML; + } + container.appendChild( node ); + + return node; + + } + + /** + * Creates the slide background elements and appends them + * to the background container. One element is created per + * slide no matter if the given slide has visible background. + */ + function createBackgrounds() { + + var printMode = isPrintingPDF(); + + // Clear prior backgrounds + dom.background.innerHTML = ''; + dom.background.classList.add( 'no-transition' ); + + // Iterate over all horizontal slides + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) { + + var backgroundStack; + + if( printMode ) { + backgroundStack = createBackground( slideh, slideh ); + } + else { + backgroundStack = createBackground( slideh, dom.background ); + } + + // Iterate over all vertical slides + toArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) { + + if( printMode ) { + createBackground( slidev, slidev ); + } + else { + createBackground( slidev, backgroundStack ); + } + + backgroundStack.classList.add( 'stack' ); + + } ); + + } ); + + // Add parallax background if specified + if( config.parallaxBackgroundImage ) { + + dom.background.style.backgroundImage = 'url("' + config.parallaxBackgroundImage + '")'; + dom.background.style.backgroundSize = config.parallaxBackgroundSize; + + // Make sure the below properties are set on the element - these properties are + // needed for proper transitions to be set on the element via CSS. To remove + // annoying background slide-in effect when the presentation starts, apply + // these properties after short time delay + setTimeout( function() { + dom.wrapper.classList.add( 'has-parallax-background' ); + }, 1 ); + + } + else { + + dom.background.style.backgroundImage = ''; + dom.wrapper.classList.remove( 'has-parallax-background' ); + + } + + } + + /** + * Creates a background for the given slide. + * + * @param {HTMLElement} slide + * @param {HTMLElement} container The element that the background + * should be appended to + */ + function createBackground( slide, container ) { + + var data = { + background: slide.getAttribute( 'data-background' ), + backgroundSize: slide.getAttribute( 'data-background-size' ), + backgroundImage: slide.getAttribute( 'data-background-image' ), + backgroundVideo: slide.getAttribute( 'data-background-video' ), + backgroundIframe: slide.getAttribute( 'data-background-iframe' ), + backgroundColor: slide.getAttribute( 'data-background-color' ), + backgroundRepeat: slide.getAttribute( 'data-background-repeat' ), + backgroundPosition: slide.getAttribute( 'data-background-position' ), + backgroundTransition: slide.getAttribute( 'data-background-transition' ) + }; + + var element = document.createElement( 'div' ); + + // Carry over custom classes from the slide to the background + element.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' ); + + if( data.background ) { + // Auto-wrap image urls in url(...) + if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) { + slide.setAttribute( 'data-background-image', data.background ); + } + else { + element.style.background = data.background; + } + } + + // Create a hash for this combination of background settings. + // This is used to determine when two slide backgrounds are + // the same. + if( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) { + element.setAttribute( 'data-background-hash', data.background + + data.backgroundSize + + data.backgroundImage + + data.backgroundVideo + + data.backgroundIframe + + data.backgroundColor + + data.backgroundRepeat + + data.backgroundPosition + + data.backgroundTransition ); + } + + // Additional and optional background properties + if( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize; + if( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor; + if( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat; + if( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition; + if( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition ); + + container.appendChild( element ); + + // If backgrounds are being recreated, clear old classes + slide.classList.remove( 'has-dark-background' ); + slide.classList.remove( 'has-light-background' ); + + // If this slide has a background color, add a class that + // signals if it is light or dark. If the slide has no background + // color, no class will be set + var computedBackgroundColor = window.getComputedStyle( element ).backgroundColor; + if( computedBackgroundColor ) { + var rgb = colorToRgb( computedBackgroundColor ); + + // Ignore fully transparent backgrounds. Some browsers return + // rgba(0,0,0,0) when reading the computed background color of + // an element with no background + if( rgb && rgb.a !== 0 ) { + if( colorBrightness( computedBackgroundColor ) < 128 ) { + slide.classList.add( 'has-dark-background' ); + } + else { + slide.classList.add( 'has-light-background' ); + } + } + } + + return element; + + } + + /** + * Registers a listener to postMessage events, this makes it + * possible to call all reveal.js API methods from another + * window. For example: + * + * revealWindow.postMessage( JSON.stringify({ + * method: 'slide', + * args: [ 2 ] + * }), '*' ); + */ + function setupPostMessage() { + + if( config.postMessage ) { + window.addEventListener( 'message', function ( event ) { + var data = event.data; + + // Make sure we're dealing with JSON + if( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) { + data = JSON.parse( data ); + + // Check if the requested method can be found + if( data.method && typeof Reveal[data.method] === 'function' ) { + Reveal[data.method].apply( Reveal, data.args ); + } + } + }, false ); + } + + } + + /** + * Applies the configuration settings from the config + * object. May be called multiple times. + */ + function configure( options ) { + + var numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length; + + dom.wrapper.classList.remove( config.transition ); + + // New config options may be passed when this method + // is invoked through the API after initialization + if( typeof options === 'object' ) extend( config, options ); + + // Force linear transition based on browser capabilities + if( features.transforms3d === false ) config.transition = 'linear'; + + dom.wrapper.classList.add( config.transition ); + + dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed ); + dom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition ); + + dom.controls.style.display = config.controls ? 'block' : 'none'; + dom.progress.style.display = config.progress ? 'block' : 'none'; + dom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none'; + + if( config.shuffle ) { + shuffle(); + } + + if( config.rtl ) { + dom.wrapper.classList.add( 'rtl' ); + } + else { + dom.wrapper.classList.remove( 'rtl' ); + } + + if( config.center ) { + dom.wrapper.classList.add( 'center' ); + } + else { + dom.wrapper.classList.remove( 'center' ); + } + + // Exit the paused mode if it was configured off + if( config.pause === false ) { + resume(); + } + + if( config.showNotes ) { + dom.speakerNotes.classList.add( 'visible' ); + } + else { + dom.speakerNotes.classList.remove( 'visible' ); + } + + if( config.mouseWheel ) { + document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF + document.addEventListener( 'mousewheel', onDocumentMouseScroll, false ); + } + else { + document.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF + document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false ); + } + + // Rolling 3D links + if( config.rollingLinks ) { + enableRollingLinks(); + } + else { + disableRollingLinks(); + } + + // Iframe link previews + if( config.previewLinks ) { + enablePreviewLinks(); + } + else { + disablePreviewLinks(); + enablePreviewLinks( '[data-preview-link]' ); + } + + // Remove existing auto-slide controls + if( autoSlidePlayer ) { + autoSlidePlayer.destroy(); + autoSlidePlayer = null; + } + + // Generate auto-slide controls if needed + if( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) { + autoSlidePlayer = new Playback( dom.wrapper, function() { + return Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 ); + } ); + + autoSlidePlayer.on( 'click', onAutoSlidePlayerClick ); + autoSlidePaused = false; + } + + // When fragments are turned off they should be visible + if( config.fragments === false ) { + toArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) { + element.classList.add( 'visible' ); + element.classList.remove( 'current-fragment' ); + } ); + } + + sync(); + + } + + /** + * Binds all event listeners. + */ + function addEventListeners() { + + eventsAreBound = true; + + window.addEventListener( 'hashchange', onWindowHashChange, false ); + window.addEventListener( 'resize', onWindowResize, false ); + + if( config.touch ) { + dom.wrapper.addEventListener( 'touchstart', onTouchStart, false ); + dom.wrapper.addEventListener( 'touchmove', onTouchMove, false ); + dom.wrapper.addEventListener( 'touchend', onTouchEnd, false ); + + // Support pointer-style touch interaction as well + if( window.navigator.pointerEnabled ) { + // IE 11 uses un-prefixed version of pointer events + dom.wrapper.addEventListener( 'pointerdown', onPointerDown, false ); + dom.wrapper.addEventListener( 'pointermove', onPointerMove, false ); + dom.wrapper.addEventListener( 'pointerup', onPointerUp, false ); + } + else if( window.navigator.msPointerEnabled ) { + // IE 10 uses prefixed version of pointer events + dom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false ); + dom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false ); + dom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false ); + } + } + + if( config.keyboard ) { + document.addEventListener( 'keydown', onDocumentKeyDown, false ); + document.addEventListener( 'keypress', onDocumentKeyPress, false ); + } + + if( config.progress && dom.progress ) { + dom.progress.addEventListener( 'click', onProgressClicked, false ); + } + + if( config.focusBodyOnPageVisibilityChange ) { + var visibilityChange; + + if( 'hidden' in document ) { + visibilityChange = 'visibilitychange'; + } + else if( 'msHidden' in document ) { + visibilityChange = 'msvisibilitychange'; + } + else if( 'webkitHidden' in document ) { + visibilityChange = 'webkitvisibilitychange'; + } + + if( visibilityChange ) { + document.addEventListener( visibilityChange, onPageVisibilityChange, false ); + } + } + + // Listen to both touch and click events, in case the device + // supports both + var pointerEvents = [ 'touchstart', 'click' ]; + + // Only support touch for Android, fixes double navigations in + // stock browser + if( UA.match( /android/gi ) ) { + pointerEvents = [ 'touchstart' ]; + } + + pointerEvents.forEach( function( eventName ) { + dom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } ); + dom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } ); + dom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } ); + dom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } ); + dom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } ); + dom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } ); + } ); + + } + + /** + * Unbinds all event listeners. + */ + function removeEventListeners() { + + eventsAreBound = false; + + document.removeEventListener( 'keydown', onDocumentKeyDown, false ); + document.removeEventListener( 'keypress', onDocumentKeyPress, false ); + window.removeEventListener( 'hashchange', onWindowHashChange, false ); + window.removeEventListener( 'resize', onWindowResize, false ); + + dom.wrapper.removeEventListener( 'touchstart', onTouchStart, false ); + dom.wrapper.removeEventListener( 'touchmove', onTouchMove, false ); + dom.wrapper.removeEventListener( 'touchend', onTouchEnd, false ); + + // IE11 + if( window.navigator.pointerEnabled ) { + dom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false ); + dom.wrapper.removeEventListener( 'pointermove', onPointerMove, false ); + dom.wrapper.removeEventListener( 'pointerup', onPointerUp, false ); + } + // IE10 + else if( window.navigator.msPointerEnabled ) { + dom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false ); + dom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false ); + dom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false ); + } + + if ( config.progress && dom.progress ) { + dom.progress.removeEventListener( 'click', onProgressClicked, false ); + } + + [ 'touchstart', 'click' ].forEach( function( eventName ) { + dom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } ); + dom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } ); + dom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } ); + dom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } ); + dom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } ); + dom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } ); + } ); + + } + + /** + * Extend object a with the properties of object b. + * If there's a conflict, object b takes precedence. + */ + function extend( a, b ) { + + for( var i in b ) { + a[ i ] = b[ i ]; + } + + } + + /** + * Converts the target object to an array. + */ + function toArray( o ) { + + return Array.prototype.slice.call( o ); + + } + + /** + * Utility for deserializing a value. + */ + function deserialize( value ) { + + if( typeof value === 'string' ) { + if( value === 'null' ) return null; + else if( value === 'true' ) return true; + else if( value === 'false' ) return false; + else if( value.match( /^\d+$/ ) ) return parseFloat( value ); + } + + return value; + + } + + /** + * Measures the distance in pixels between point a + * and point b. + * + * @param {Object} a point with x/y properties + * @param {Object} b point with x/y properties + */ + function distanceBetween( a, b ) { + + var dx = a.x - b.x, + dy = a.y - b.y; + + return Math.sqrt( dx*dx + dy*dy ); + + } + + /** + * Applies a CSS transform to the target element. + */ + function transformElement( element, transform ) { + + element.style.WebkitTransform = transform; + element.style.MozTransform = transform; + element.style.msTransform = transform; + element.style.transform = transform; + + } + + /** + * Applies CSS transforms to the slides container. The container + * is transformed from two separate sources: layout and the overview + * mode. + */ + function transformSlides( transforms ) { + + // Pick up new transforms from arguments + if( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout; + if( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview; + + // Apply the transforms to the slides container + if( slidesTransform.layout ) { + transformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview ); + } + else { + transformElement( dom.slides, slidesTransform.overview ); + } + + } + + /** + * Injects the given CSS styles into the DOM. + */ + function injectStyleSheet( value ) { + + var tag = document.createElement( 'style' ); + tag.type = 'text/css'; + if( tag.styleSheet ) { + tag.styleSheet.cssText = value; + } + else { + tag.appendChild( document.createTextNode( value ) ); + } + document.getElementsByTagName( 'head' )[0].appendChild( tag ); + + } + + /** + * Converts various color input formats to an {r:0,g:0,b:0} object. + * + * @param {String} color The string representation of a color, + * the following formats are supported: + * - #000 + * - #000000 + * - rgb(0,0,0) + */ + function colorToRgb( color ) { + + var hex3 = color.match( /^#([0-9a-f]{3})$/i ); + if( hex3 && hex3[1] ) { + hex3 = hex3[1]; + return { + r: parseInt( hex3.charAt( 0 ), 16 ) * 0x11, + g: parseInt( hex3.charAt( 1 ), 16 ) * 0x11, + b: parseInt( hex3.charAt( 2 ), 16 ) * 0x11 + }; + } + + var hex6 = color.match( /^#([0-9a-f]{6})$/i ); + if( hex6 && hex6[1] ) { + hex6 = hex6[1]; + return { + r: parseInt( hex6.substr( 0, 2 ), 16 ), + g: parseInt( hex6.substr( 2, 2 ), 16 ), + b: parseInt( hex6.substr( 4, 2 ), 16 ) + }; + } + + var rgb = color.match( /^rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/i ); + if( rgb ) { + return { + r: parseInt( rgb[1], 10 ), + g: parseInt( rgb[2], 10 ), + b: parseInt( rgb[3], 10 ) + }; + } + + var rgba = color.match( /^rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\,\s*([\d]+|[\d]*.[\d]+)\s*\)$/i ); + if( rgba ) { + return { + r: parseInt( rgba[1], 10 ), + g: parseInt( rgba[2], 10 ), + b: parseInt( rgba[3], 10 ), + a: parseFloat( rgba[4] ) + }; + } + + return null; + + } + + /** + * Calculates brightness on a scale of 0-255. + * + * @param color See colorStringToRgb for supported formats. + */ + function colorBrightness( color ) { + + if( typeof color === 'string' ) color = colorToRgb( color ); + + if( color ) { + return ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000; + } + + return null; + + } + + /** + * Retrieves the height of the given element by looking + * at the position and height of its immediate children. + */ + function getAbsoluteHeight( element ) { + + var height = 0; + + if( element ) { + var absoluteChildren = 0; + + toArray( element.childNodes ).forEach( function( child ) { + + if( typeof child.offsetTop === 'number' && child.style ) { + // Count # of abs children + if( window.getComputedStyle( child ).position === 'absolute' ) { + absoluteChildren += 1; + } + + height = Math.max( height, child.offsetTop + child.offsetHeight ); + } + + } ); + + // If there are no absolute children, use offsetHeight + if( absoluteChildren === 0 ) { + height = element.offsetHeight; + } + + } + + return height; + + } + + /** + * Returns the remaining height within the parent of the + * target element. + * + * remaining height = [ configured parent height ] - [ current parent height ] + */ + function getRemainingHeight( element, height ) { + + height = height || 0; + + if( element ) { + var newHeight, oldHeight = element.style.height; + + // Change the .stretch element height to 0 in order find the height of all + // the other elements + element.style.height = '0px'; + newHeight = height - element.parentNode.offsetHeight; + + // Restore the old height, just in case + element.style.height = oldHeight + 'px'; + + return newHeight; + } + + return height; + + } + + /** + * Checks if this instance is being used to print a PDF. + */ + function isPrintingPDF() { + + return ( /print-pdf/gi ).test( window.location.search ); + + } + + /** + * Hides the address bar if we're on a mobile device. + */ + function hideAddressBar() { + + if( config.hideAddressBar && isMobileDevice ) { + // Events that should trigger the address bar to hide + window.addEventListener( 'load', removeAddressBar, false ); + window.addEventListener( 'orientationchange', removeAddressBar, false ); + } + + } + + /** + * Causes the address bar to hide on mobile devices, + * more vertical space ftw. + */ + function removeAddressBar() { + + setTimeout( function() { + window.scrollTo( 0, 1 ); + }, 10 ); + + } + + /** + * Dispatches an event of the specified type from the + * reveal DOM element. + */ + function dispatchEvent( type, args ) { + + var event = document.createEvent( 'HTMLEvents', 1, 2 ); + event.initEvent( type, true, true ); + extend( event, args ); + dom.wrapper.dispatchEvent( event ); + + // If we're in an iframe, post each reveal.js event to the + // parent window. Used by the notes plugin + if( config.postMessageEvents && window.parent !== window.self ) { + window.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' ); + } + + } + + /** + * Wrap all links in 3D goodness. + */ + function enableRollingLinks() { + + if( features.transforms3d && !( 'msPerspective' in document.body.style ) ) { + var anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' ); + + for( var i = 0, len = anchors.length; i < len; i++ ) { + var anchor = anchors[i]; + + if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) { + var span = document.createElement('span'); + span.setAttribute('data-title', anchor.text); + span.innerHTML = anchor.innerHTML; + + anchor.classList.add( 'roll' ); + anchor.innerHTML = ''; + anchor.appendChild(span); + } + } + } + + } + + /** + * Unwrap all 3D links. + */ + function disableRollingLinks() { + + var anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' ); + + for( var i = 0, len = anchors.length; i < len; i++ ) { + var anchor = anchors[i]; + var span = anchor.querySelector( 'span' ); + + if( span ) { + anchor.classList.remove( 'roll' ); + anchor.innerHTML = span.innerHTML; + } + } + + } + + /** + * Bind preview frame links. + */ + function enablePreviewLinks( selector ) { + + var anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) ); + + anchors.forEach( function( element ) { + if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) { + element.addEventListener( 'click', onPreviewLinkClicked, false ); + } + } ); + + } + + /** + * Unbind preview frame links. + */ + function disablePreviewLinks() { + + var anchors = toArray( document.querySelectorAll( 'a' ) ); + + anchors.forEach( function( element ) { + if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) { + element.removeEventListener( 'click', onPreviewLinkClicked, false ); + } + } ); + + } + + /** + * Opens a preview window for the target URL. + */ + function showPreview( url ) { + + closeOverlay(); + + dom.overlay = document.createElement( 'div' ); + dom.overlay.classList.add( 'overlay' ); + dom.overlay.classList.add( 'overlay-preview' ); + dom.wrapper.appendChild( dom.overlay ); + + dom.overlay.innerHTML = [ + '
', + '', + '', + '
', + '
', + '
', + '', + '
' + ].join(''); + + dom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) { + dom.overlay.classList.add( 'loaded' ); + }, false ); + + dom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) { + closeOverlay(); + event.preventDefault(); + }, false ); + + dom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) { + closeOverlay(); + }, false ); + + setTimeout( function() { + dom.overlay.classList.add( 'visible' ); + }, 1 ); + + } + + /** + * Opens a overlay window with help material. + */ + function showHelp() { + + if( config.help ) { + + closeOverlay(); + + dom.overlay = document.createElement( 'div' ); + dom.overlay.classList.add( 'overlay' ); + dom.overlay.classList.add( 'overlay-help' ); + dom.wrapper.appendChild( dom.overlay ); + + var html = '

Keyboard Shortcuts


'; + + html += ''; + for( var key in keyboardShortcuts ) { + html += ''; + } + + html += '
KEYACTION
' + key + '' + keyboardShortcuts[ key ] + '
'; + + dom.overlay.innerHTML = [ + '
', + '', + '
', + '
', + '
'+ html +'
', + '
' + ].join(''); + + dom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) { + closeOverlay(); + event.preventDefault(); + }, false ); + + setTimeout( function() { + dom.overlay.classList.add( 'visible' ); + }, 1 ); + + } + + } + + /** + * Closes any currently open overlay. + */ + function closeOverlay() { + + if( dom.overlay ) { + dom.overlay.parentNode.removeChild( dom.overlay ); + dom.overlay = null; + } + + } + + /** + * Applies JavaScript-controlled layout rules to the + * presentation. + */ + function layout() { + + if( dom.wrapper && !isPrintingPDF() ) { + + var size = getComputedSlideSize(); + + var slidePadding = 20; // TODO Dig this out of DOM + + // Layout the contents of the slides + layoutSlideContents( config.width, config.height, slidePadding ); + + dom.slides.style.width = size.width + 'px'; + dom.slides.style.height = size.height + 'px'; + + // Determine scale of content to fit within available space + scale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height ); + + // Respect max/min scale settings + scale = Math.max( scale, config.minScale ); + scale = Math.min( scale, config.maxScale ); + + // Don't apply any scaling styles if scale is 1 + if( scale === 1 ) { + dom.slides.style.zoom = ''; + dom.slides.style.left = ''; + dom.slides.style.top = ''; + dom.slides.style.bottom = ''; + dom.slides.style.right = ''; + transformSlides( { layout: '' } ); + } + else { + // Prefer zoom for scaling up so that content remains crisp. + // Don't use zoom to scale down since that can lead to shifts + // in text layout/line breaks. + if( scale > 1 && features.zoom ) { + dom.slides.style.zoom = scale; + dom.slides.style.left = ''; + dom.slides.style.top = ''; + dom.slides.style.bottom = ''; + dom.slides.style.right = ''; + transformSlides( { layout: '' } ); + } + // Apply scale transform as a fallback + else { + dom.slides.style.zoom = ''; + dom.slides.style.left = '50%'; + dom.slides.style.top = '50%'; + dom.slides.style.bottom = 'auto'; + dom.slides.style.right = 'auto'; + transformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } ); + } + } + + // Select all slides, vertical and horizontal + var slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ); + + for( var i = 0, len = slides.length; i < len; i++ ) { + var slide = slides[ i ]; + + // Don't bother updating invisible slides + if( slide.style.display === 'none' ) { + continue; + } + + if( config.center || slide.classList.contains( 'center' ) ) { + // Vertical stacks are not centred since their section + // children will be + if( slide.classList.contains( 'stack' ) ) { + slide.style.top = 0; + } + else { + slide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px'; + } + } + else { + slide.style.top = ''; + } + + } + + updateProgress(); + updateParallax(); + + } + + } + + /** + * Applies layout logic to the contents of all slides in + * the presentation. + */ + function layoutSlideContents( width, height, padding ) { + + // Handle sizing of elements with the 'stretch' class + toArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) { + + // Determine how much vertical space we can use + var remainingHeight = getRemainingHeight( element, height ); + + // Consider the aspect ratio of media elements + if( /(img|video)/gi.test( element.nodeName ) ) { + var nw = element.naturalWidth || element.videoWidth, + nh = element.naturalHeight || element.videoHeight; + + var es = Math.min( width / nw, remainingHeight / nh ); + + element.style.width = ( nw * es ) + 'px'; + element.style.height = ( nh * es ) + 'px'; + + } + else { + element.style.width = width + 'px'; + element.style.height = remainingHeight + 'px'; + } + + } ); + + } + + /** + * Calculates the computed pixel size of our slides. These + * values are based on the width and height configuration + * options. + */ + function getComputedSlideSize( presentationWidth, presentationHeight ) { + + var size = { + // Slide size + width: config.width, + height: config.height, + + // Presentation size + presentationWidth: presentationWidth || dom.wrapper.offsetWidth, + presentationHeight: presentationHeight || dom.wrapper.offsetHeight + }; + + // Reduce available space by margin + size.presentationWidth -= ( size.presentationWidth * config.margin ); + size.presentationHeight -= ( size.presentationHeight * config.margin ); + + // Slide width may be a percentage of available width + if( typeof size.width === 'string' && /%$/.test( size.width ) ) { + size.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth; + } + + // Slide height may be a percentage of available height + if( typeof size.height === 'string' && /%$/.test( size.height ) ) { + size.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight; + } + + return size; + + } + + /** + * Stores the vertical index of a stack so that the same + * vertical slide can be selected when navigating to and + * from the stack. + * + * @param {HTMLElement} stack The vertical stack element + * @param {int} v Index to memorize + */ + function setPreviousVerticalIndex( stack, v ) { + + if( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) { + stack.setAttribute( 'data-previous-indexv', v || 0 ); + } + + } + + /** + * Retrieves the vertical index which was stored using + * #setPreviousVerticalIndex() or 0 if no previous index + * exists. + * + * @param {HTMLElement} stack The vertical stack element + */ + function getPreviousVerticalIndex( stack ) { + + if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) { + // Prefer manually defined start-indexv + var attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv'; + + return parseInt( stack.getAttribute( attributeName ) || 0, 10 ); + } + + return 0; + + } + + /** + * Displays the overview of slides (quick nav) by scaling + * down and arranging all slide elements. + */ + function activateOverview() { + + // Only proceed if enabled in config + if( config.overview && !isOverview() ) { + + overview = true; + + dom.wrapper.classList.add( 'overview' ); + dom.wrapper.classList.remove( 'overview-deactivating' ); + + if( features.overviewTransitions ) { + setTimeout( function() { + dom.wrapper.classList.add( 'overview-animated' ); + }, 1 ); + } + + // Don't auto-slide while in overview mode + cancelAutoSlide(); + + // Move the backgrounds element into the slide container to + // that the same scaling is applied + dom.slides.appendChild( dom.background ); + + // Clicking on an overview slide navigates to it + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + if( !slide.classList.contains( 'stack' ) ) { + slide.addEventListener( 'click', onOverviewSlideClicked, true ); + } + } ); + + // Calculate slide sizes + var margin = 70; + var slideSize = getComputedSlideSize(); + overviewSlideWidth = slideSize.width + margin; + overviewSlideHeight = slideSize.height + margin; + + // Reverse in RTL mode + if( config.rtl ) { + overviewSlideWidth = -overviewSlideWidth; + } + + updateSlidesVisibility(); + layoutOverview(); + updateOverview(); + + layout(); + + // Notify observers of the overview showing + dispatchEvent( 'overviewshown', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + + } + + } + + /** + * Uses CSS transforms to position all slides in a grid for + * display inside of the overview mode. + */ + function layoutOverview() { + + // Layout slides + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) { + hslide.setAttribute( 'data-index-h', h ); + transformElement( hslide, 'translate3d(' + ( h * overviewSlideWidth ) + 'px, 0, 0)' ); + + if( hslide.classList.contains( 'stack' ) ) { + + toArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) { + vslide.setAttribute( 'data-index-h', h ); + vslide.setAttribute( 'data-index-v', v ); + + transformElement( vslide, 'translate3d(0, ' + ( v * overviewSlideHeight ) + 'px, 0)' ); + } ); + + } + } ); + + // Layout slide backgrounds + toArray( dom.background.childNodes ).forEach( function( hbackground, h ) { + transformElement( hbackground, 'translate3d(' + ( h * overviewSlideWidth ) + 'px, 0, 0)' ); + + toArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) { + transformElement( vbackground, 'translate3d(0, ' + ( v * overviewSlideHeight ) + 'px, 0)' ); + } ); + } ); + + } + + /** + * Moves the overview viewport to the current slides. + * Called each time the current slide changes. + */ + function updateOverview() { + + transformSlides( { + overview: [ + 'translateX('+ ( -indexh * overviewSlideWidth ) +'px)', + 'translateY('+ ( -indexv * overviewSlideHeight ) +'px)', + 'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)' + ].join( ' ' ) + } ); + + } + + /** + * Exits the slide overview and enters the currently + * active slide. + */ + function deactivateOverview() { + + // Only proceed if enabled in config + if( config.overview ) { + + overview = false; + + dom.wrapper.classList.remove( 'overview' ); + dom.wrapper.classList.remove( 'overview-animated' ); + + // Temporarily add a class so that transitions can do different things + // depending on whether they are exiting/entering overview, or just + // moving from slide to slide + dom.wrapper.classList.add( 'overview-deactivating' ); + + setTimeout( function () { + dom.wrapper.classList.remove( 'overview-deactivating' ); + }, 1 ); + + // Move the background element back out + dom.wrapper.appendChild( dom.background ); + + // Clean up changes made to slides + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + transformElement( slide, '' ); + + slide.removeEventListener( 'click', onOverviewSlideClicked, true ); + } ); + + // Clean up changes made to backgrounds + toArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) { + transformElement( background, '' ); + } ); + + transformSlides( { overview: '' } ); + + slide( indexh, indexv ); + + layout(); + + cueAutoSlide(); + + // Notify observers of the overview hiding + dispatchEvent( 'overviewhidden', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + + } + } + + /** + * Toggles the slide overview mode on and off. + * + * @param {Boolean} override Optional flag which overrides the + * toggle logic and forcibly sets the desired state. True means + * overview is open, false means it's closed. + */ + function toggleOverview( override ) { + + if( typeof override === 'boolean' ) { + override ? activateOverview() : deactivateOverview(); + } + else { + isOverview() ? deactivateOverview() : activateOverview(); + } + + } + + /** + * Checks if the overview is currently active. + * + * @return {Boolean} true if the overview is active, + * false otherwise + */ + function isOverview() { + + return overview; + + } + + /** + * Checks if the current or specified slide is vertical + * (nested within another slide). + * + * @param {HTMLElement} slide [optional] The slide to check + * orientation of + */ + function isVerticalSlide( slide ) { + + // Prefer slide argument, otherwise use current slide + slide = slide ? slide : currentSlide; + + return slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i ); + + } + + /** + * Handling the fullscreen functionality via the fullscreen API + * + * @see http://fullscreen.spec.whatwg.org/ + * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode + */ + function enterFullscreen() { + + var element = document.body; + + // Check which implementation is available + var requestMethod = element.requestFullScreen || + element.webkitRequestFullscreen || + element.webkitRequestFullScreen || + element.mozRequestFullScreen || + element.msRequestFullscreen; + + if( requestMethod ) { + requestMethod.apply( element ); + } + + } + + /** + * Enters the paused mode which fades everything on screen to + * black. + */ + function pause() { + + if( config.pause ) { + var wasPaused = dom.wrapper.classList.contains( 'paused' ); + + cancelAutoSlide(); + dom.wrapper.classList.add( 'paused' ); + + if( wasPaused === false ) { + dispatchEvent( 'paused' ); + } + } + + } + + /** + * Exits from the paused mode. + */ + function resume() { + + var wasPaused = dom.wrapper.classList.contains( 'paused' ); + dom.wrapper.classList.remove( 'paused' ); + + cueAutoSlide(); + + if( wasPaused ) { + dispatchEvent( 'resumed' ); + } + + } + + /** + * Toggles the paused mode on and off. + */ + function togglePause( override ) { + + if( typeof override === 'boolean' ) { + override ? pause() : resume(); + } + else { + isPaused() ? resume() : pause(); + } + + } + + /** + * Checks if we are currently in the paused mode. + */ + function isPaused() { + + return dom.wrapper.classList.contains( 'paused' ); + + } + + /** + * Toggles the auto slide mode on and off. + * + * @param {Boolean} override Optional flag which sets the desired state. + * True means autoplay starts, false means it stops. + */ + + function toggleAutoSlide( override ) { + + if( typeof override === 'boolean' ) { + override ? resumeAutoSlide() : pauseAutoSlide(); + } + + else { + autoSlidePaused ? resumeAutoSlide() : pauseAutoSlide(); + } + + } + + /** + * Checks if the auto slide mode is currently on. + */ + function isAutoSliding() { + + return !!( autoSlide && !autoSlidePaused ); + + } + + /** + * Steps from the current point in the presentation to the + * slide which matches the specified horizontal and vertical + * indices. + * + * @param {int} h Horizontal index of the target slide + * @param {int} v Vertical index of the target slide + * @param {int} f Optional index of a fragment within the + * target slide to activate + * @param {int} o Optional origin for use in multimaster environments + */ + function slide( h, v, f, o ) { + + // Remember where we were at before + previousSlide = currentSlide; + + // Query all horizontal slides in the deck + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ); + + // If no vertical index is specified and the upcoming slide is a + // stack, resume at its previous vertical index + if( v === undefined && !isOverview() ) { + v = getPreviousVerticalIndex( horizontalSlides[ h ] ); + } + + // If we were on a vertical stack, remember what vertical index + // it was on so we can resume at the same position when returning + if( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) { + setPreviousVerticalIndex( previousSlide.parentNode, indexv ); + } + + // Remember the state before this slide + var stateBefore = state.concat(); + + // Reset the state array + state.length = 0; + + var indexhBefore = indexh || 0, + indexvBefore = indexv || 0; + + // Activate and transition to the new slide + indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h ); + indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v ); + + // Update the visibility of slides now that the indices have changed + updateSlidesVisibility(); + + layout(); + + // Apply the new state + stateLoop: for( var i = 0, len = state.length; i < len; i++ ) { + // Check if this state existed on the previous slide. If it + // did, we will avoid adding it repeatedly + for( var j = 0; j < stateBefore.length; j++ ) { + if( stateBefore[j] === state[i] ) { + stateBefore.splice( j, 1 ); + continue stateLoop; + } + } + + document.documentElement.classList.add( state[i] ); + + // Dispatch custom event matching the state's name + dispatchEvent( state[i] ); + } + + // Clean up the remains of the previous state + while( stateBefore.length ) { + document.documentElement.classList.remove( stateBefore.pop() ); + } + + // Update the overview if it's currently active + if( isOverview() ) { + updateOverview(); + } + + // Find the current horizontal slide and any possible vertical slides + // within it + var currentHorizontalSlide = horizontalSlides[ indexh ], + currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' ); + + // Store references to the previous and current slides + currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide; + + // Show fragment, if specified + if( typeof f !== 'undefined' ) { + navigateFragment( f ); + } + + // Dispatch an event if the slide changed + var slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore ); + if( slideChanged ) { + dispatchEvent( 'slidechanged', { + 'indexh': indexh, + 'indexv': indexv, + 'previousSlide': previousSlide, + 'currentSlide': currentSlide, + 'origin': o + } ); + } + else { + // Ensure that the previous slide is never the same as the current + previousSlide = null; + } + + // Solves an edge case where the previous slide maintains the + // 'present' class when navigating between adjacent vertical + // stacks + if( previousSlide ) { + previousSlide.classList.remove( 'present' ); + previousSlide.setAttribute( 'aria-hidden', 'true' ); + + // Reset all slides upon navigate to home + // Issue: #285 + if ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) { + // Launch async task + setTimeout( function () { + var slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i; + for( i in slides ) { + if( slides[i] ) { + // Reset stack + setPreviousVerticalIndex( slides[i], 0 ); + } + } + }, 0 ); + } + } + + // Handle embedded content + if( slideChanged || !previousSlide ) { + stopEmbeddedContent( previousSlide ); + startEmbeddedContent( currentSlide ); + } + + // Announce the current slide contents, for screen readers + dom.statusDiv.textContent = currentSlide.textContent; + + updateControls(); + updateProgress(); + updateBackground(); + updateParallax(); + updateSlideNumber(); + updateNotes(); + + // Update the URL hash + writeURL(); + + cueAutoSlide(); + + } + + /** + * Syncs the presentation with the current DOM. Useful + * when new slides or control elements are added or when + * the configuration has changed. + */ + function sync() { + + // Subscribe to input + removeEventListeners(); + addEventListeners(); + + // Force a layout to make sure the current config is accounted for + layout(); + + // Reflect the current autoSlide value + autoSlide = config.autoSlide; + + // Start auto-sliding if it's enabled + cueAutoSlide(); + + // Re-create the slide backgrounds + createBackgrounds(); + + // Write the current hash to the URL + writeURL(); + + sortAllFragments(); + + updateControls(); + updateProgress(); + updateBackground( true ); + updateSlideNumber(); + updateSlidesVisibility(); + updateNotes(); + + formatEmbeddedContent(); + startEmbeddedContent( currentSlide ); + + if( isOverview() ) { + layoutOverview(); + } + + } + + /** + * Resets all vertical slides so that only the first + * is visible. + */ + function resetVerticalSlides() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + horizontalSlides.forEach( function( horizontalSlide ) { + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + verticalSlides.forEach( function( verticalSlide, y ) { + + if( y > 0 ) { + verticalSlide.classList.remove( 'present' ); + verticalSlide.classList.remove( 'past' ); + verticalSlide.classList.add( 'future' ); + verticalSlide.setAttribute( 'aria-hidden', 'true' ); + } + + } ); + + } ); + + } + + /** + * Sorts and formats all of fragments in the + * presentation. + */ + function sortAllFragments() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + horizontalSlides.forEach( function( horizontalSlide ) { + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + verticalSlides.forEach( function( verticalSlide, y ) { + + sortFragments( verticalSlide.querySelectorAll( '.fragment' ) ); + + } ); + + if( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) ); + + } ); + + } + + /** + * Randomly shuffles all slides in the deck. + */ + function shuffle() { + + var slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + slides.forEach( function( slide ) { + + // Insert this slide next to another random slide. This may + // cause the slide to insert before itself but that's fine. + dom.slides.insertBefore( slide, slides[ Math.floor( Math.random() * slides.length ) ] ); + + } ); + + } + + /** + * Updates one dimension of slides by showing the slide + * with the specified index. + * + * @param {String} selector A CSS selector that will fetch + * the group of slides we are working with + * @param {Number} index The index of the slide that should be + * shown + * + * @return {Number} The index of the slide that is now shown, + * might differ from the passed in index if it was out of + * bounds. + */ + function updateSlides( selector, index ) { + + // Select all slides and convert the NodeList result to + // an array + var slides = toArray( dom.wrapper.querySelectorAll( selector ) ), + slidesLength = slides.length; + + var printMode = isPrintingPDF(); + + if( slidesLength ) { + + // Should the index loop? + if( config.loop ) { + index %= slidesLength; + + if( index < 0 ) { + index = slidesLength + index; + } + } + + // Enforce max and minimum index bounds + index = Math.max( Math.min( index, slidesLength - 1 ), 0 ); + + for( var i = 0; i < slidesLength; i++ ) { + var element = slides[i]; + + var reverse = config.rtl && !isVerticalSlide( element ); + + element.classList.remove( 'past' ); + element.classList.remove( 'present' ); + element.classList.remove( 'future' ); + + // http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute + element.setAttribute( 'hidden', '' ); + element.setAttribute( 'aria-hidden', 'true' ); + + // If this element contains vertical slides + if( element.querySelector( 'section' ) ) { + element.classList.add( 'stack' ); + } + + // If we're printing static slides, all slides are "present" + if( printMode ) { + element.classList.add( 'present' ); + continue; + } + + if( i < index ) { + // Any element previous to index is given the 'past' class + element.classList.add( reverse ? 'future' : 'past' ); + + if( config.fragments ) { + var pastFragments = toArray( element.querySelectorAll( '.fragment' ) ); + + // Show all fragments on prior slides + while( pastFragments.length ) { + var pastFragment = pastFragments.pop(); + pastFragment.classList.add( 'visible' ); + pastFragment.classList.remove( 'current-fragment' ); + } + } + } + else if( i > index ) { + // Any element subsequent to index is given the 'future' class + element.classList.add( reverse ? 'past' : 'future' ); + + if( config.fragments ) { + var futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) ); + + // No fragments in future slides should be visible ahead of time + while( futureFragments.length ) { + var futureFragment = futureFragments.pop(); + futureFragment.classList.remove( 'visible' ); + futureFragment.classList.remove( 'current-fragment' ); + } + } + } + } + + // Mark the current slide as present + slides[index].classList.add( 'present' ); + slides[index].removeAttribute( 'hidden' ); + slides[index].removeAttribute( 'aria-hidden' ); + + // If this slide has a state associated with it, add it + // onto the current state of the deck + var slideState = slides[index].getAttribute( 'data-state' ); + if( slideState ) { + state = state.concat( slideState.split( ' ' ) ); + } + + } + else { + // Since there are no slides we can't be anywhere beyond the + // zeroth index + index = 0; + } + + return index; + + } + + /** + * Optimization method; hide all slides that are far away + * from the present slide. + */ + function updateSlidesVisibility() { + + // Select all slides and convert the NodeList result to + // an array + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ), + horizontalSlidesLength = horizontalSlides.length, + distanceX, + distanceY; + + if( horizontalSlidesLength && typeof indexh !== 'undefined' ) { + + // The number of steps away from the present slide that will + // be visible + var viewDistance = isOverview() ? 10 : config.viewDistance; + + // Limit view distance on weaker devices + if( isMobileDevice ) { + viewDistance = isOverview() ? 6 : 2; + } + + // All slides need to be visible when exporting to PDF + if( isPrintingPDF() ) { + viewDistance = Number.MAX_VALUE; + } + + for( var x = 0; x < horizontalSlidesLength; x++ ) { + var horizontalSlide = horizontalSlides[x]; + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ), + verticalSlidesLength = verticalSlides.length; + + // Determine how far away this slide is from the present + distanceX = Math.abs( ( indexh || 0 ) - x ) || 0; + + // If the presentation is looped, distance should measure + // 1 between the first and last slides + if( config.loop ) { + distanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0; + } + + // Show the horizontal slide if it's within the view distance + if( distanceX < viewDistance ) { + showSlide( horizontalSlide ); + } + else { + hideSlide( horizontalSlide ); + } + + if( verticalSlidesLength ) { + + var oy = getPreviousVerticalIndex( horizontalSlide ); + + for( var y = 0; y < verticalSlidesLength; y++ ) { + var verticalSlide = verticalSlides[y]; + + distanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy ); + + if( distanceX + distanceY < viewDistance ) { + showSlide( verticalSlide ); + } + else { + hideSlide( verticalSlide ); + } + } + + } + } + + } + + } + + /** + * Pick up notes from the current slide and display tham + * to the viewer. + * + * @see `showNotes` config value + */ + function updateNotes() { + + if( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) { + + dom.speakerNotes.innerHTML = getSlideNotes() || ''; + + } + + } + + /** + * Updates the progress bar to reflect the current slide. + */ + function updateProgress() { + + // Update progress if enabled + if( config.progress && dom.progressbar ) { + + dom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px'; + + } + + } + + /** + * Updates the slide number div to reflect the current slide. + * + * The following slide number formats are available: + * "h.v": horizontal . vertical slide number (default) + * "h/v": horizontal / vertical slide number + * "c": flattened slide number + * "c/t": flattened slide number / total slides + */ + function updateSlideNumber() { + + // Update slide number if enabled + if( config.slideNumber && dom.slideNumber ) { + + var value = []; + var format = 'h.v'; + + // Check if a custom number format is available + if( typeof config.slideNumber === 'string' ) { + format = config.slideNumber; + } + + switch( format ) { + case 'c': + value.push( getSlidePastCount() + 1 ); + break; + case 'c/t': + value.push( getSlidePastCount() + 1, '/', getTotalSlides() ); + break; + case 'h/v': + value.push( indexh + 1 ); + if( isVerticalSlide() ) value.push( '/', indexv + 1 ); + break; + default: + value.push( indexh + 1 ); + if( isVerticalSlide() ) value.push( '.', indexv + 1 ); + } + + dom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] ); + } + + } + + /** + * Applies HTML formatting to a slide number before it's + * written to the DOM. + */ + function formatSlideNumber( a, delimiter, b ) { + + if( typeof b === 'number' && !isNaN( b ) ) { + return ''+ a +'' + + ''+ delimiter +'' + + ''+ b +''; + } + else { + return ''+ a +''; + } + + } + + /** + * Updates the state of all control/navigation arrows. + */ + function updateControls() { + + var routes = availableRoutes(); + var fragments = availableFragments(); + + // Remove the 'enabled' class from all directions + dom.controlsLeft.concat( dom.controlsRight ) + .concat( dom.controlsUp ) + .concat( dom.controlsDown ) + .concat( dom.controlsPrev ) + .concat( dom.controlsNext ).forEach( function( node ) { + node.classList.remove( 'enabled' ); + node.classList.remove( 'fragmented' ); + } ); + + // Add the 'enabled' class to the available routes + if( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + if( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + if( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + if( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + + // Prev/next buttons + if( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + if( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } ); + + // Highlight fragment directions + if( currentSlide ) { + + // Always apply fragment decorator to prev/next buttons + if( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + if( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + + // Apply fragment decorators to directional buttons based on + // what slide axis they are in + if( isVerticalSlide( currentSlide ) ) { + if( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + if( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + } + else { + if( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + if( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } ); + } + + } + + } + + /** + * Updates the background elements to reflect the current + * slide. + * + * @param {Boolean} includeAll If true, the backgrounds of + * all vertical slides (not just the present) will be updated. + */ + function updateBackground( includeAll ) { + + var currentBackground = null; + + // Reverse past/future classes when in RTL mode + var horizontalPast = config.rtl ? 'future' : 'past', + horizontalFuture = config.rtl ? 'past' : 'future'; + + // Update the classes of all backgrounds to match the + // states of their slides (past/present/future) + toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) { + + backgroundh.classList.remove( 'past' ); + backgroundh.classList.remove( 'present' ); + backgroundh.classList.remove( 'future' ); + + if( h < indexh ) { + backgroundh.classList.add( horizontalPast ); + } + else if ( h > indexh ) { + backgroundh.classList.add( horizontalFuture ); + } + else { + backgroundh.classList.add( 'present' ); + + // Store a reference to the current background element + currentBackground = backgroundh; + } + + if( includeAll || h === indexh ) { + toArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) { + + backgroundv.classList.remove( 'past' ); + backgroundv.classList.remove( 'present' ); + backgroundv.classList.remove( 'future' ); + + if( v < indexv ) { + backgroundv.classList.add( 'past' ); + } + else if ( v > indexv ) { + backgroundv.classList.add( 'future' ); + } + else { + backgroundv.classList.add( 'present' ); + + // Only if this is the present horizontal and vertical slide + if( h === indexh ) currentBackground = backgroundv; + } + + } ); + } + + } ); + + // Stop any currently playing video background + if( previousBackground ) { + + var previousVideo = previousBackground.querySelector( 'video' ); + if( previousVideo ) previousVideo.pause(); + + } + + if( currentBackground ) { + + // Start video playback + var currentVideo = currentBackground.querySelector( 'video' ); + if( currentVideo ) { + + var startVideo = function() { + currentVideo.currentTime = 0; + currentVideo.play(); + currentVideo.removeEventListener( 'loadeddata', startVideo ); + }; + + if( currentVideo.readyState > 1 ) { + startVideo(); + } + else { + currentVideo.addEventListener( 'loadeddata', startVideo ); + } + + } + + var backgroundImageURL = currentBackground.style.backgroundImage || ''; + + // Restart GIFs (doesn't work in Firefox) + if( /\.gif/i.test( backgroundImageURL ) ) { + currentBackground.style.backgroundImage = ''; + window.getComputedStyle( currentBackground ).opacity; + currentBackground.style.backgroundImage = backgroundImageURL; + } + + // Don't transition between identical backgrounds. This + // prevents unwanted flicker. + var previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null; + var currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' ); + if( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) { + dom.background.classList.add( 'no-transition' ); + } + + previousBackground = currentBackground; + + } + + // If there's a background brightness flag for this slide, + // bubble it to the .reveal container + if( currentSlide ) { + [ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) { + if( currentSlide.classList.contains( classToBubble ) ) { + dom.wrapper.classList.add( classToBubble ); + } + else { + dom.wrapper.classList.remove( classToBubble ); + } + } ); + } + + // Allow the first background to apply without transition + setTimeout( function() { + dom.background.classList.remove( 'no-transition' ); + }, 1 ); + + } + + /** + * Updates the position of the parallax background based + * on the current slide index. + */ + function updateParallax() { + + if( config.parallaxBackgroundImage ) { + + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ), + verticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR ); + + var backgroundSize = dom.background.style.backgroundSize.split( ' ' ), + backgroundWidth, backgroundHeight; + + if( backgroundSize.length === 1 ) { + backgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 ); + } + else { + backgroundWidth = parseInt( backgroundSize[0], 10 ); + backgroundHeight = parseInt( backgroundSize[1], 10 ); + } + + var slideWidth = dom.background.offsetWidth, + horizontalSlideCount = horizontalSlides.length, + horizontalOffsetMultiplier, + horizontalOffset; + + if( typeof config.parallaxBackgroundHorizontal === 'number' ) { + horizontalOffsetMultiplier = config.parallaxBackgroundHorizontal; + } + else { + horizontalOffsetMultiplier = horizontalSlideCount > 1 ? ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) : 0; + } + + horizontalOffset = horizontalOffsetMultiplier * indexh * -1; + + var slideHeight = dom.background.offsetHeight, + verticalSlideCount = verticalSlides.length, + verticalOffsetMultiplier, + verticalOffset; + + if( typeof config.parallaxBackgroundVertical === 'number' ) { + verticalOffsetMultiplier = config.parallaxBackgroundVertical; + } + else { + verticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 ); + } + + verticalOffset = verticalSlideCount > 0 ? verticalOffsetMultiplier * indexv * 1 : 0; + + dom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px'; + + } + + } + + /** + * Called when the given slide is within the configured view + * distance. Shows the slide element and loads any content + * that is set to load lazily (data-src). + */ + function showSlide( slide ) { + + // Show the slide element + slide.style.display = 'block'; + + // Media elements with data-src attributes + toArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) { + element.setAttribute( 'src', element.getAttribute( 'data-src' ) ); + element.removeAttribute( 'data-src' ); + } ); + + // Media elements with children + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) { + var sources = 0; + + toArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) { + source.setAttribute( 'src', source.getAttribute( 'data-src' ) ); + source.removeAttribute( 'data-src' ); + sources += 1; + } ); + + // If we rewrote sources for this video/audio element, we need + // to manually tell it to load from its new origin + if( sources > 0 ) { + media.load(); + } + } ); + + + // Show the corresponding background element + var indices = getIndices( slide ); + var background = getSlideBackground( indices.h, indices.v ); + if( background ) { + background.style.display = 'block'; + + // If the background contains media, load it + if( background.hasAttribute( 'data-loaded' ) === false ) { + background.setAttribute( 'data-loaded', 'true' ); + + var backgroundImage = slide.getAttribute( 'data-background-image' ), + backgroundVideo = slide.getAttribute( 'data-background-video' ), + backgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ), + backgroundVideoMuted = slide.hasAttribute( 'data-background-video-muted' ), + backgroundIframe = slide.getAttribute( 'data-background-iframe' ); + + // Images + if( backgroundImage ) { + background.style.backgroundImage = 'url('+ backgroundImage +')'; + } + // Videos + else if ( backgroundVideo && !isSpeakerNotes() ) { + var video = document.createElement( 'video' ); + + if( backgroundVideoLoop ) { + video.setAttribute( 'loop', '' ); + } + + if( backgroundVideoMuted ) { + video.muted = true; + } + + // Support comma separated lists of video sources + backgroundVideo.split( ',' ).forEach( function( source ) { + video.innerHTML += ''; + } ); + + background.appendChild( video ); + } + // Iframes + else if( backgroundIframe ) { + var iframe = document.createElement( 'iframe' ); + iframe.setAttribute( 'src', backgroundIframe ); + iframe.style.width = '100%'; + iframe.style.height = '100%'; + iframe.style.maxHeight = '100%'; + iframe.style.maxWidth = '100%'; + + background.appendChild( iframe ); + } + } + } + + } + + /** + * Called when the given slide is moved outside of the + * configured view distance. + */ + function hideSlide( slide ) { + + // Hide the slide element + slide.style.display = 'none'; + + // Hide the corresponding background element + var indices = getIndices( slide ); + var background = getSlideBackground( indices.h, indices.v ); + if( background ) { + background.style.display = 'none'; + } + + } + + /** + * Determine what available routes there are for navigation. + * + * @return {Object} containing four booleans: left/right/up/down + */ + function availableRoutes() { + + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ), + verticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR ); + + var routes = { + left: indexh > 0 || config.loop, + right: indexh < horizontalSlides.length - 1 || config.loop, + up: indexv > 0, + down: indexv < verticalSlides.length - 1 + }; + + // reverse horizontal controls for rtl + if( config.rtl ) { + var left = routes.left; + routes.left = routes.right; + routes.right = left; + } + + return routes; + + } + + /** + * Returns an object describing the available fragment + * directions. + * + * @return {Object} two boolean properties: prev/next + */ + function availableFragments() { + + if( currentSlide && config.fragments ) { + var fragments = currentSlide.querySelectorAll( '.fragment' ); + var hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' ); + + return { + prev: fragments.length - hiddenFragments.length > 0, + next: !!hiddenFragments.length + }; + } + else { + return { prev: false, next: false }; + } + + } + + /** + * Enforces origin-specific format rules for embedded media. + */ + function formatEmbeddedContent() { + + var _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) { + toArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*="'+ sourceURL +'"]' ) ).forEach( function( el ) { + var src = el.getAttribute( sourceAttribute ); + if( src && src.indexOf( param ) === -1 ) { + el.setAttribute( sourceAttribute, src + ( !/\?/.test( src ) ? '?' : '&' ) + param ); + } + }); + }; + + // YouTube frames must include "?enablejsapi=1" + _appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' ); + _appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' ); + + // Vimeo frames must include "?api=1" + _appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' ); + _appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' ); + + } + + /** + * Start playback of any embedded content inside of + * the targeted slide. + */ + function startEmbeddedContent( slide ) { + + if( slide && !isSpeakerNotes() ) { + // Restart GIFs + toArray( slide.querySelectorAll( 'img[src$=".gif"]' ) ).forEach( function( el ) { + // Setting the same unchanged source like this was confirmed + // to work in Chrome, FF & Safari + el.setAttribute( 'src', el.getAttribute( 'src' ) ); + } ); + + // HTML5 media elements + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) { + el.play(); + } + } ); + + // Normal iframes + toArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) { + startEmbeddedIframe( { target: el } ); + } ); + + // Lazy loading iframes + toArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) { + if( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) { + el.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes + el.addEventListener( 'load', startEmbeddedIframe ); + el.setAttribute( 'src', el.getAttribute( 'data-src' ) ); + } + } ); + } + + } + + /** + * "Starts" the content of an embedded iframe using the + * postmessage API. + */ + function startEmbeddedIframe( event ) { + + var iframe = event.target; + + // YouTube postMessage API + if( /youtube\.com\/embed\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) { + iframe.contentWindow.postMessage( '{"event":"command","func":"playVideo","args":""}', '*' ); + } + // Vimeo postMessage API + else if( /player\.vimeo\.com\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) { + iframe.contentWindow.postMessage( '{"method":"play"}', '*' ); + } + // Generic postMessage API + else { + iframe.contentWindow.postMessage( 'slide:start', '*' ); + } + + } + + /** + * Stop playback of any embedded content inside of + * the targeted slide. + */ + function stopEmbeddedContent( slide ) { + + if( slide && slide.parentNode ) { + // HTML5 media elements + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) { + el.pause(); + } + } ); + + // Generic postMessage API for non-lazy loaded iframes + toArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) { + el.contentWindow.postMessage( 'slide:stop', '*' ); + el.removeEventListener( 'load', startEmbeddedIframe ); + }); + + // YouTube postMessage API + toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) { + el.contentWindow.postMessage( '{"event":"command","func":"pauseVideo","args":""}', '*' ); + } + }); + + // Vimeo postMessage API + toArray( slide.querySelectorAll( 'iframe[src*="player.vimeo.com/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) { + el.contentWindow.postMessage( '{"method":"pause"}', '*' ); + } + }); + + // Lazy loading iframes + toArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) { + // Only removing the src doesn't actually unload the frame + // in all browsers (Firefox) so we set it to blank first + el.setAttribute( 'src', 'about:blank' ); + el.removeAttribute( 'src' ); + } ); + } + + } + + /** + * Returns the number of past slides. This can be used as a global + * flattened index for slides. + */ + function getSlidePastCount() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + // The number of past slides + var pastCount = 0; + + // Step through all slides and count the past ones + mainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) { + + var horizontalSlide = horizontalSlides[i]; + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + + for( var j = 0; j < verticalSlides.length; j++ ) { + + // Stop as soon as we arrive at the present + if( verticalSlides[j].classList.contains( 'present' ) ) { + break mainLoop; + } + + pastCount++; + + } + + // Stop as soon as we arrive at the present + if( horizontalSlide.classList.contains( 'present' ) ) { + break; + } + + // Don't count the wrapping section for vertical slides + if( horizontalSlide.classList.contains( 'stack' ) === false ) { + pastCount++; + } + + } + + return pastCount; + + } + + /** + * Returns a value ranging from 0-1 that represents + * how far into the presentation we have navigated. + */ + function getProgress() { + + // The number of past and total slides + var totalCount = getTotalSlides(); + var pastCount = getSlidePastCount(); + + if( currentSlide ) { + + var allFragments = currentSlide.querySelectorAll( '.fragment' ); + + // If there are fragments in the current slide those should be + // accounted for in the progress. + if( allFragments.length > 0 ) { + var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' ); + + // This value represents how big a portion of the slide progress + // that is made up by its fragments (0-1) + var fragmentWeight = 0.9; + + // Add fragment progress to the past slide count + pastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight; + } + + } + + return pastCount / ( totalCount - 1 ); + + } + + /** + * Checks if this presentation is running inside of the + * speaker notes window. + */ + function isSpeakerNotes() { + + return !!window.location.search.match( /receiver/gi ); + + } + + /** + * Reads the current URL (hash) and navigates accordingly. + */ + function readURL() { + + var hash = window.location.hash; + + // Attempt to parse the hash as either an index or name + var bits = hash.slice( 2 ).split( '/' ), + name = hash.replace( /#|\//gi, '' ); + + // If the first bit is invalid and there is a name we can + // assume that this is a named link + if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) { + var element; + + // Ensure the named link is a valid HTML ID attribute + if( /^[a-zA-Z][\w:.-]*$/.test( name ) ) { + // Find the slide with the specified ID + element = document.getElementById( name ); + } + + if( element ) { + // Find the position of the named slide and navigate to it + var indices = Reveal.getIndices( element ); + slide( indices.h, indices.v ); + } + // If the slide doesn't exist, navigate to the current slide + else { + slide( indexh || 0, indexv || 0 ); + } + } + else { + // Read the index components of the hash + var h = parseInt( bits[0], 10 ) || 0, + v = parseInt( bits[1], 10 ) || 0; + + if( h !== indexh || v !== indexv ) { + slide( h, v ); + } + } + + } + + /** + * Updates the page URL (hash) to reflect the current + * state. + * + * @param {Number} delay The time in ms to wait before + * writing the hash + */ + function writeURL( delay ) { + + if( config.history ) { + + // Make sure there's never more than one timeout running + clearTimeout( writeURLTimeout ); + + // If a delay is specified, timeout this call + if( typeof delay === 'number' ) { + writeURLTimeout = setTimeout( writeURL, delay ); + } + else if( currentSlide ) { + var url = '/'; + + // Attempt to create a named link based on the slide's ID + var id = currentSlide.getAttribute( 'id' ); + if( id ) { + id = id.replace( /[^a-zA-Z0-9\-\_\:\.]/g, '' ); + } + + // If the current slide has an ID, use that as a named link + if( typeof id === 'string' && id.length ) { + url = '/' + id; + } + // Otherwise use the /h/v index + else { + if( indexh > 0 || indexv > 0 ) url += indexh; + if( indexv > 0 ) url += '/' + indexv; + } + + window.location.hash = url; + } + } + + } + + /** + * Retrieves the h/v location of the current, or specified, + * slide. + * + * @param {HTMLElement} slide If specified, the returned + * index will be for this slide rather than the currently + * active one + * + * @return {Object} { h: , v: , f: } + */ + function getIndices( slide ) { + + // By default, return the current indices + var h = indexh, + v = indexv, + f; + + // If a slide is specified, return the indices of that slide + if( slide ) { + var isVertical = isVerticalSlide( slide ); + var slideh = isVertical ? slide.parentNode : slide; + + // Select all horizontal slides + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + // Now that we know which the horizontal slide is, get its index + h = Math.max( horizontalSlides.indexOf( slideh ), 0 ); + + // Assume we're not vertical + v = undefined; + + // If this is a vertical slide, grab the vertical index + if( isVertical ) { + v = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 ); + } + } + + if( !slide && currentSlide ) { + var hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0; + if( hasFragments ) { + var currentFragment = currentSlide.querySelector( '.current-fragment' ); + if( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) { + f = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 ); + } + else { + f = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1; + } + } + } + + return { h: h, v: v, f: f }; + + } + + /** + * Retrieves the total number of slides in this presentation. + */ + function getTotalSlides() { + + return dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length; + + } + + /** + * Returns the slide element matching the specified index. + */ + function getSlide( x, y ) { + + var horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ]; + var verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' ); + + if( verticalSlides && verticalSlides.length && typeof y === 'number' ) { + return verticalSlides ? verticalSlides[ y ] : undefined; + } + + return horizontalSlide; + + } + + /** + * Returns the background element for the given slide. + * All slides, even the ones with no background properties + * defined, have a background element so as long as the + * index is valid an element will be returned. + */ + function getSlideBackground( x, y ) { + + // When printing to PDF the slide backgrounds are nested + // inside of the slides + if( isPrintingPDF() ) { + var slide = getSlide( x, y ); + if( slide ) { + var background = slide.querySelector( '.slide-background' ); + if( background && background.parentNode === slide ) { + return background; + } + } + + return undefined; + } + + var horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ]; + var verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' ); + + if( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) { + return verticalBackgrounds ? verticalBackgrounds[ y ] : undefined; + } + + return horizontalBackground; + + } + + /** + * Retrieves the speaker notes from a slide. Notes can be + * defined in two ways: + * 1. As a data-notes attribute on the slide
+ * 2. As an